blob: c18271fce823f7523a8958352701bfe3ea7086c7 [file] [log] [blame]
Stephen Warren0d04f342012-08-05 16:07:22 +00001/*
Stephen Warrenea697ae2013-05-27 18:31:18 +00002 * (C) Copyright 2012-2013 Stephen Warren
Stephen Warren0d04f342012-08-05 16:07:22 +00003 *
4 * See file CREDITS for list of people who contributed to this
5 * project.
6 *
7 * This program is free software; you can redistribute it and/or
8 * modify it under the terms of the GNU General Public License
9 * version 2 as published by the Free Software Foundation.
10 *
11 * This program is distributed in the hope that it will be useful, but
12 * WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 * GNU General Public License for more details.
15 */
16
17#include <common.h>
Stephen Warrenea697ae2013-05-27 18:31:18 +000018#include <config.h>
Simon Glass41e98e02014-09-22 17:30:56 -060019#include <dm.h>
Jeroen Hofstee5dfd1622014-07-13 22:01:51 +020020#include <fdt_support.h>
Stephen Warrenea697ae2013-05-27 18:31:18 +000021#include <lcd.h>
Jeroen Hofstee5dfd1622014-07-13 22:01:51 +020022#include <mmc.h>
Simon Glass41e98e02014-09-22 17:30:56 -060023#include <asm/gpio.h>
Stephen Warren3f397782013-01-29 16:37:37 +000024#include <asm/arch/mbox.h>
Stephen Warren131a1e62013-01-29 16:37:42 +000025#include <asm/arch/sdhci.h>
Stephen Warren0d04f342012-08-05 16:07:22 +000026#include <asm/global_data.h>
Simon Glass11506662014-11-24 21:36:34 -070027#include <dm/platform_data/serial_pl01x.h>
Stephen Warren0d04f342012-08-05 16:07:22 +000028
29DECLARE_GLOBAL_DATA_PTR;
30
Simon Glass41e98e02014-09-22 17:30:56 -060031static const struct bcm2835_gpio_platdata gpio_platdata = {
32 .base = BCM2835_GPIO_BASE,
33};
34
35U_BOOT_DEVICE(bcm2835_gpios) = {
36 .name = "gpio_bcm2835",
37 .platdata = &gpio_platdata,
38};
39
Simon Glass11506662014-11-24 21:36:34 -070040static const struct pl01x_serial_platdata serial_platdata = {
41 .base = 0x20201000,
42 .type = TYPE_PL011,
43 .clock = 3000000,
44};
45
46U_BOOT_DEVICE(bcm2835_serials) = {
47 .name = "serial_pl01x",
48 .platdata = &serial_platdata,
49};
50
Stephen Warren3f397782013-01-29 16:37:37 +000051struct msg_get_arm_mem {
52 struct bcm2835_mbox_hdr hdr;
53 struct bcm2835_mbox_tag_get_arm_mem get_arm_mem;
54 u32 end_tag;
55};
56
Stephen Warren6fe78452014-11-18 21:40:21 -070057struct msg_get_board_rev {
58 struct bcm2835_mbox_hdr hdr;
59 struct bcm2835_mbox_tag_get_board_rev get_board_rev;
60 u32 end_tag;
61};
62
Stephen Warren4f80a062014-09-26 20:51:39 -060063struct msg_get_mac_address {
64 struct bcm2835_mbox_hdr hdr;
65 struct bcm2835_mbox_tag_get_mac_address get_mac_address;
66 u32 end_tag;
67};
68
Stephen Warrenf66f2aa2014-01-13 19:50:11 -070069struct msg_set_power_state {
70 struct bcm2835_mbox_hdr hdr;
71 struct bcm2835_mbox_tag_set_power_state set_power_state;
72 u32 end_tag;
73};
74
Stephen Warren131a1e62013-01-29 16:37:42 +000075struct msg_get_clock_rate {
76 struct bcm2835_mbox_hdr hdr;
77 struct bcm2835_mbox_tag_get_clock_rate get_clock_rate;
78 u32 end_tag;
79};
80
Stephen Warren6fe78452014-11-18 21:40:21 -070081/* See comments in mbox.h for data source */
82static const struct {
83 const char *name;
84 const char *fdtfile;
Stephen Warren3207d8f2014-12-05 20:56:46 -070085 bool has_onboard_eth;
Stephen Warren6fe78452014-11-18 21:40:21 -070086} models[] = {
Stephen Warren914627f2014-12-23 20:01:44 -070087 [0] = {
88 "Unknown model",
89 "bcm2835-rpi-other.dtb",
90 false,
91 },
Stephen Warren6fe78452014-11-18 21:40:21 -070092 [BCM2835_BOARD_REV_B_I2C0_2] = {
93 "Model B (no P5)",
94 "bcm2835-rpi-b-i2c0.dtb",
Stephen Warren3207d8f2014-12-05 20:56:46 -070095 true,
Stephen Warren6fe78452014-11-18 21:40:21 -070096 },
97 [BCM2835_BOARD_REV_B_I2C0_3] = {
98 "Model B (no P5)",
99 "bcm2835-rpi-b-i2c0.dtb",
Stephen Warren3207d8f2014-12-05 20:56:46 -0700100 true,
Stephen Warren6fe78452014-11-18 21:40:21 -0700101 },
102 [BCM2835_BOARD_REV_B_I2C1_4] = {
103 "Model B",
104 "bcm2835-rpi-b.dtb",
Stephen Warren3207d8f2014-12-05 20:56:46 -0700105 true,
Stephen Warren6fe78452014-11-18 21:40:21 -0700106 },
107 [BCM2835_BOARD_REV_B_I2C1_5] = {
108 "Model B",
109 "bcm2835-rpi-b.dtb",
Stephen Warren3207d8f2014-12-05 20:56:46 -0700110 true,
Stephen Warren6fe78452014-11-18 21:40:21 -0700111 },
112 [BCM2835_BOARD_REV_B_I2C1_6] = {
113 "Model B",
114 "bcm2835-rpi-b.dtb",
Stephen Warren3207d8f2014-12-05 20:56:46 -0700115 true,
Stephen Warren6fe78452014-11-18 21:40:21 -0700116 },
117 [BCM2835_BOARD_REV_A_7] = {
118 "Model A",
119 "bcm2835-rpi-a.dtb",
Stephen Warren3207d8f2014-12-05 20:56:46 -0700120 false,
Stephen Warren6fe78452014-11-18 21:40:21 -0700121 },
122 [BCM2835_BOARD_REV_A_8] = {
123 "Model A",
124 "bcm2835-rpi-a.dtb",
Stephen Warren3207d8f2014-12-05 20:56:46 -0700125 false,
Stephen Warren6fe78452014-11-18 21:40:21 -0700126 },
127 [BCM2835_BOARD_REV_A_9] = {
128 "Model A",
129 "bcm2835-rpi-a.dtb",
Stephen Warren3207d8f2014-12-05 20:56:46 -0700130 false,
Stephen Warren6fe78452014-11-18 21:40:21 -0700131 },
132 [BCM2835_BOARD_REV_B_REV2_d] = {
133 "Model B rev2",
134 "bcm2835-rpi-b-rev2.dtb",
Stephen Warren3207d8f2014-12-05 20:56:46 -0700135 true,
Stephen Warren6fe78452014-11-18 21:40:21 -0700136 },
137 [BCM2835_BOARD_REV_B_REV2_e] = {
138 "Model B rev2",
139 "bcm2835-rpi-b-rev2.dtb",
Stephen Warren3207d8f2014-12-05 20:56:46 -0700140 true,
Stephen Warren6fe78452014-11-18 21:40:21 -0700141 },
142 [BCM2835_BOARD_REV_B_REV2_f] = {
143 "Model B rev2",
144 "bcm2835-rpi-b-rev2.dtb",
Stephen Warren3207d8f2014-12-05 20:56:46 -0700145 true,
Stephen Warren6fe78452014-11-18 21:40:21 -0700146 },
147 [BCM2835_BOARD_REV_B_PLUS] = {
148 "Model B+",
149 "bcm2835-rpi-b-plus.dtb",
Stephen Warren3207d8f2014-12-05 20:56:46 -0700150 true,
Stephen Warren6fe78452014-11-18 21:40:21 -0700151 },
152 [BCM2835_BOARD_REV_CM] = {
153 "Compute Module",
154 "bcm2835-rpi-cm.dtb",
Stephen Warren3207d8f2014-12-05 20:56:46 -0700155 false,
Stephen Warren6fe78452014-11-18 21:40:21 -0700156 },
Stephen Warren47705ef2014-12-23 20:01:43 -0700157 [BCM2835_BOARD_REV_A_PLUS] = {
158 "Model A+",
159 "bcm2835-rpi-a-plus.dtb",
160 false,
161 },
Stephen Warren6fe78452014-11-18 21:40:21 -0700162};
163
164u32 rpi_board_rev = 0;
165
Stephen Warren0d04f342012-08-05 16:07:22 +0000166int dram_init(void)
167{
Stephen Warren3f397782013-01-29 16:37:37 +0000168 ALLOC_ALIGN_BUFFER(struct msg_get_arm_mem, msg, 1, 16);
169 int ret;
170
171 BCM2835_MBOX_INIT_HDR(msg);
172 BCM2835_MBOX_INIT_TAG(&msg->get_arm_mem, GET_ARM_MEMORY);
173
174 ret = bcm2835_mbox_call_prop(BCM2835_MBOX_PROP_CHAN, &msg->hdr);
175 if (ret) {
176 printf("bcm2835: Could not query ARM memory size\n");
177 return -1;
178 }
179
180 gd->ram_size = msg->get_arm_mem.body.resp.mem_size;
Stephen Warren0d04f342012-08-05 16:07:22 +0000181
182 return 0;
183}
184
Stephen Warren6fe78452014-11-18 21:40:21 -0700185static void set_fdtfile(void)
186{
187 const char *fdtfile;
188
189 if (getenv("fdtfile"))
190 return;
191
192 fdtfile = models[rpi_board_rev].fdtfile;
Stephen Warren6fe78452014-11-18 21:40:21 -0700193 setenv("fdtfile", fdtfile);
194}
195
196static void set_usbethaddr(void)
Stephen Warren4f80a062014-09-26 20:51:39 -0600197{
198 ALLOC_ALIGN_BUFFER(struct msg_get_mac_address, msg, 1, 16);
199 int ret;
200
Stephen Warren3207d8f2014-12-05 20:56:46 -0700201 if (!models[rpi_board_rev].has_onboard_eth)
202 return;
203
Stephen Warren4f80a062014-09-26 20:51:39 -0600204 if (getenv("usbethaddr"))
Stephen Warren6fe78452014-11-18 21:40:21 -0700205 return;
Stephen Warren4f80a062014-09-26 20:51:39 -0600206
207 BCM2835_MBOX_INIT_HDR(msg);
208 BCM2835_MBOX_INIT_TAG(&msg->get_mac_address, GET_MAC_ADDRESS);
209
210 ret = bcm2835_mbox_call_prop(BCM2835_MBOX_PROP_CHAN, &msg->hdr);
211 if (ret) {
212 printf("bcm2835: Could not query MAC address\n");
213 /* Ignore error; not critical */
Stephen Warren6fe78452014-11-18 21:40:21 -0700214 return;
Stephen Warren4f80a062014-09-26 20:51:39 -0600215 }
216
217 eth_setenv_enetaddr("usbethaddr", msg->get_mac_address.body.resp.mac);
218
Stephen Warren6fe78452014-11-18 21:40:21 -0700219 return;
220}
221
222int misc_init_r(void)
223{
224 set_fdtfile();
225 set_usbethaddr();
Stephen Warren4f80a062014-09-26 20:51:39 -0600226 return 0;
227}
228
Stephen Warrenf66f2aa2014-01-13 19:50:11 -0700229static int power_on_module(u32 module)
230{
231 ALLOC_ALIGN_BUFFER(struct msg_set_power_state, msg_pwr, 1, 16);
232 int ret;
233
234 BCM2835_MBOX_INIT_HDR(msg_pwr);
235 BCM2835_MBOX_INIT_TAG(&msg_pwr->set_power_state,
236 SET_POWER_STATE);
237 msg_pwr->set_power_state.body.req.device_id = module;
238 msg_pwr->set_power_state.body.req.state =
239 BCM2835_MBOX_SET_POWER_STATE_REQ_ON |
240 BCM2835_MBOX_SET_POWER_STATE_REQ_WAIT;
241
242 ret = bcm2835_mbox_call_prop(BCM2835_MBOX_PROP_CHAN,
243 &msg_pwr->hdr);
244 if (ret) {
245 printf("bcm2835: Could not set module %u power state\n",
246 module);
247 return -1;
248 }
249
250 return 0;
251}
252
Stephen Warren6fe78452014-11-18 21:40:21 -0700253static void get_board_rev(void)
254{
255 ALLOC_ALIGN_BUFFER(struct msg_get_board_rev, msg, 1, 16);
256 int ret;
257 const char *name;
258
259 BCM2835_MBOX_INIT_HDR(msg);
260 BCM2835_MBOX_INIT_TAG(&msg->get_board_rev, GET_BOARD_REV);
261
262 ret = bcm2835_mbox_call_prop(BCM2835_MBOX_PROP_CHAN, &msg->hdr);
263 if (ret) {
264 printf("bcm2835: Could not query board revision\n");
265 /* Ignore error; not critical */
266 return;
267 }
268
269 rpi_board_rev = msg->get_board_rev.body.resp.rev;
Stephen Warren47705ef2014-12-23 20:01:43 -0700270 if (rpi_board_rev >= ARRAY_SIZE(models)) {
271 printf("RPI: Board rev %u outside known range\n",
272 rpi_board_rev);
Stephen Warren6fe78452014-11-18 21:40:21 -0700273 rpi_board_rev = 0;
Stephen Warren47705ef2014-12-23 20:01:43 -0700274 }
Stephen Warren914627f2014-12-23 20:01:44 -0700275 if (!models[rpi_board_rev].name) {
276 printf("RPI: Board rev %u unknown\n", rpi_board_rev);
277 rpi_board_rev = 0;
278 }
Stephen Warren6fe78452014-11-18 21:40:21 -0700279
280 name = models[rpi_board_rev].name;
Stephen Warren6fe78452014-11-18 21:40:21 -0700281 printf("RPI model: %s\n", name);
282}
283
Stephen Warren0d04f342012-08-05 16:07:22 +0000284int board_init(void)
285{
Stephen Warren6fe78452014-11-18 21:40:21 -0700286 get_board_rev();
287
Stephen Warren0d04f342012-08-05 16:07:22 +0000288 gd->bd->bi_boot_params = 0x100;
289
Stephen Warrenf66f2aa2014-01-13 19:50:11 -0700290 return power_on_module(BCM2835_MBOX_POWER_DEVID_USB_HCD);
Stephen Warren0d04f342012-08-05 16:07:22 +0000291}
Stephen Warren131a1e62013-01-29 16:37:42 +0000292
Jeroen Hofstee5dfd1622014-07-13 22:01:51 +0200293int board_mmc_init(bd_t *bis)
Stephen Warren131a1e62013-01-29 16:37:42 +0000294{
295 ALLOC_ALIGN_BUFFER(struct msg_get_clock_rate, msg_clk, 1, 16);
296 int ret;
297
Stephen Warrenf66f2aa2014-01-13 19:50:11 -0700298 power_on_module(BCM2835_MBOX_POWER_DEVID_SDHCI);
299
Stephen Warren131a1e62013-01-29 16:37:42 +0000300 BCM2835_MBOX_INIT_HDR(msg_clk);
301 BCM2835_MBOX_INIT_TAG(&msg_clk->get_clock_rate, GET_CLOCK_RATE);
302 msg_clk->get_clock_rate.body.req.clock_id = BCM2835_MBOX_CLOCK_ID_EMMC;
303
304 ret = bcm2835_mbox_call_prop(BCM2835_MBOX_PROP_CHAN, &msg_clk->hdr);
305 if (ret) {
306 printf("bcm2835: Could not query eMMC clock rate\n");
307 return -1;
308 }
309
310 return bcm2835_sdhci_init(BCM2835_SDHCI_BASE,
311 msg_clk->get_clock_rate.body.resp.rate_hz);
312}
Stephen Warrenea697ae2013-05-27 18:31:18 +0000313
Simon Glasse895a4b2014-10-23 18:58:47 -0600314int ft_board_setup(void *blob, bd_t *bd)
Stephen Warrenea697ae2013-05-27 18:31:18 +0000315{
316 /*
317 * For now, we simply always add the simplefb DT node. Later, we
318 * should be more intelligent, and e.g. only do this if no enabled DT
319 * node exists for the "real" graphics driver.
320 */
321 lcd_dt_simplefb_add_node(blob);
Simon Glasse895a4b2014-10-23 18:58:47 -0600322
323 return 0;
Stephen Warrenea697ae2013-05-27 18:31:18 +0000324}