blob: 948078b958f7be8685f5f28af156aec38aacc198 [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>
Nikita Kiryanov033167c2015-02-03 13:32:31 +020021#include <fdt_simplefb.h>
Stephen Warrenea697ae2013-05-27 18:31:18 +000022#include <lcd.h>
Jeroen Hofstee5dfd1622014-07-13 22:01:51 +020023#include <mmc.h>
Simon Glass41e98e02014-09-22 17:30:56 -060024#include <asm/gpio.h>
Stephen Warren3f397782013-01-29 16:37:37 +000025#include <asm/arch/mbox.h>
Stephen Warren131a1e62013-01-29 16:37:42 +000026#include <asm/arch/sdhci.h>
Stephen Warren0d04f342012-08-05 16:07:22 +000027#include <asm/global_data.h>
Simon Glass11506662014-11-24 21:36:34 -070028#include <dm/platform_data/serial_pl01x.h>
Stephen Warren0d04f342012-08-05 16:07:22 +000029
30DECLARE_GLOBAL_DATA_PTR;
31
Simon Glass41e98e02014-09-22 17:30:56 -060032static const struct bcm2835_gpio_platdata gpio_platdata = {
33 .base = BCM2835_GPIO_BASE,
34};
35
36U_BOOT_DEVICE(bcm2835_gpios) = {
37 .name = "gpio_bcm2835",
38 .platdata = &gpio_platdata,
39};
40
Simon Glass11506662014-11-24 21:36:34 -070041static const struct pl01x_serial_platdata serial_platdata = {
42 .base = 0x20201000,
43 .type = TYPE_PL011,
44 .clock = 3000000,
45};
46
47U_BOOT_DEVICE(bcm2835_serials) = {
48 .name = "serial_pl01x",
49 .platdata = &serial_platdata,
50};
51
Stephen Warren3f397782013-01-29 16:37:37 +000052struct msg_get_arm_mem {
53 struct bcm2835_mbox_hdr hdr;
54 struct bcm2835_mbox_tag_get_arm_mem get_arm_mem;
55 u32 end_tag;
56};
57
Stephen Warren6fe78452014-11-18 21:40:21 -070058struct msg_get_board_rev {
59 struct bcm2835_mbox_hdr hdr;
60 struct bcm2835_mbox_tag_get_board_rev get_board_rev;
61 u32 end_tag;
62};
63
Stephen Warren4f80a062014-09-26 20:51:39 -060064struct msg_get_mac_address {
65 struct bcm2835_mbox_hdr hdr;
66 struct bcm2835_mbox_tag_get_mac_address get_mac_address;
67 u32 end_tag;
68};
69
Stephen Warrenf66f2aa2014-01-13 19:50:11 -070070struct msg_set_power_state {
71 struct bcm2835_mbox_hdr hdr;
72 struct bcm2835_mbox_tag_set_power_state set_power_state;
73 u32 end_tag;
74};
75
Stephen Warren131a1e62013-01-29 16:37:42 +000076struct msg_get_clock_rate {
77 struct bcm2835_mbox_hdr hdr;
78 struct bcm2835_mbox_tag_get_clock_rate get_clock_rate;
79 u32 end_tag;
80};
81
Stephen Warren6fe78452014-11-18 21:40:21 -070082/* See comments in mbox.h for data source */
83static const struct {
84 const char *name;
85 const char *fdtfile;
Stephen Warren3207d8f2014-12-05 20:56:46 -070086 bool has_onboard_eth;
Stephen Warren6fe78452014-11-18 21:40:21 -070087} models[] = {
Stephen Warren914627f2014-12-23 20:01:44 -070088 [0] = {
89 "Unknown model",
90 "bcm2835-rpi-other.dtb",
91 false,
92 },
Stephen Warren6fe78452014-11-18 21:40:21 -070093 [BCM2835_BOARD_REV_B_I2C0_2] = {
94 "Model B (no P5)",
95 "bcm2835-rpi-b-i2c0.dtb",
Stephen Warren3207d8f2014-12-05 20:56:46 -070096 true,
Stephen Warren6fe78452014-11-18 21:40:21 -070097 },
98 [BCM2835_BOARD_REV_B_I2C0_3] = {
99 "Model B (no P5)",
100 "bcm2835-rpi-b-i2c0.dtb",
Stephen Warren3207d8f2014-12-05 20:56:46 -0700101 true,
Stephen Warren6fe78452014-11-18 21:40:21 -0700102 },
103 [BCM2835_BOARD_REV_B_I2C1_4] = {
104 "Model B",
105 "bcm2835-rpi-b.dtb",
Stephen Warren3207d8f2014-12-05 20:56:46 -0700106 true,
Stephen Warren6fe78452014-11-18 21:40:21 -0700107 },
108 [BCM2835_BOARD_REV_B_I2C1_5] = {
109 "Model B",
110 "bcm2835-rpi-b.dtb",
Stephen Warren3207d8f2014-12-05 20:56:46 -0700111 true,
Stephen Warren6fe78452014-11-18 21:40:21 -0700112 },
113 [BCM2835_BOARD_REV_B_I2C1_6] = {
114 "Model B",
115 "bcm2835-rpi-b.dtb",
Stephen Warren3207d8f2014-12-05 20:56:46 -0700116 true,
Stephen Warren6fe78452014-11-18 21:40:21 -0700117 },
118 [BCM2835_BOARD_REV_A_7] = {
119 "Model A",
120 "bcm2835-rpi-a.dtb",
Stephen Warren3207d8f2014-12-05 20:56:46 -0700121 false,
Stephen Warren6fe78452014-11-18 21:40:21 -0700122 },
123 [BCM2835_BOARD_REV_A_8] = {
124 "Model A",
125 "bcm2835-rpi-a.dtb",
Stephen Warren3207d8f2014-12-05 20:56:46 -0700126 false,
Stephen Warren6fe78452014-11-18 21:40:21 -0700127 },
128 [BCM2835_BOARD_REV_A_9] = {
129 "Model A",
130 "bcm2835-rpi-a.dtb",
Stephen Warren3207d8f2014-12-05 20:56:46 -0700131 false,
Stephen Warren6fe78452014-11-18 21:40:21 -0700132 },
133 [BCM2835_BOARD_REV_B_REV2_d] = {
134 "Model B rev2",
135 "bcm2835-rpi-b-rev2.dtb",
Stephen Warren3207d8f2014-12-05 20:56:46 -0700136 true,
Stephen Warren6fe78452014-11-18 21:40:21 -0700137 },
138 [BCM2835_BOARD_REV_B_REV2_e] = {
139 "Model B rev2",
140 "bcm2835-rpi-b-rev2.dtb",
Stephen Warren3207d8f2014-12-05 20:56:46 -0700141 true,
Stephen Warren6fe78452014-11-18 21:40:21 -0700142 },
143 [BCM2835_BOARD_REV_B_REV2_f] = {
144 "Model B rev2",
145 "bcm2835-rpi-b-rev2.dtb",
Stephen Warren3207d8f2014-12-05 20:56:46 -0700146 true,
Stephen Warren6fe78452014-11-18 21:40:21 -0700147 },
148 [BCM2835_BOARD_REV_B_PLUS] = {
149 "Model B+",
150 "bcm2835-rpi-b-plus.dtb",
Stephen Warren3207d8f2014-12-05 20:56:46 -0700151 true,
Stephen Warren6fe78452014-11-18 21:40:21 -0700152 },
153 [BCM2835_BOARD_REV_CM] = {
154 "Compute Module",
155 "bcm2835-rpi-cm.dtb",
Stephen Warren3207d8f2014-12-05 20:56:46 -0700156 false,
Stephen Warren6fe78452014-11-18 21:40:21 -0700157 },
Stephen Warren47705ef2014-12-23 20:01:43 -0700158 [BCM2835_BOARD_REV_A_PLUS] = {
159 "Model A+",
160 "bcm2835-rpi-a-plus.dtb",
161 false,
162 },
Stephen Warren6fe78452014-11-18 21:40:21 -0700163};
164
165u32 rpi_board_rev = 0;
166
Stephen Warren0d04f342012-08-05 16:07:22 +0000167int dram_init(void)
168{
Stephen Warren3f397782013-01-29 16:37:37 +0000169 ALLOC_ALIGN_BUFFER(struct msg_get_arm_mem, msg, 1, 16);
170 int ret;
171
172 BCM2835_MBOX_INIT_HDR(msg);
173 BCM2835_MBOX_INIT_TAG(&msg->get_arm_mem, GET_ARM_MEMORY);
174
175 ret = bcm2835_mbox_call_prop(BCM2835_MBOX_PROP_CHAN, &msg->hdr);
176 if (ret) {
177 printf("bcm2835: Could not query ARM memory size\n");
178 return -1;
179 }
180
181 gd->ram_size = msg->get_arm_mem.body.resp.mem_size;
Stephen Warren0d04f342012-08-05 16:07:22 +0000182
183 return 0;
184}
185
Stephen Warren6fe78452014-11-18 21:40:21 -0700186static void set_fdtfile(void)
187{
188 const char *fdtfile;
189
190 if (getenv("fdtfile"))
191 return;
192
193 fdtfile = models[rpi_board_rev].fdtfile;
Stephen Warren6fe78452014-11-18 21:40:21 -0700194 setenv("fdtfile", fdtfile);
195}
196
197static void set_usbethaddr(void)
Stephen Warren4f80a062014-09-26 20:51:39 -0600198{
199 ALLOC_ALIGN_BUFFER(struct msg_get_mac_address, msg, 1, 16);
200 int ret;
201
Stephen Warren3207d8f2014-12-05 20:56:46 -0700202 if (!models[rpi_board_rev].has_onboard_eth)
203 return;
204
Stephen Warren4f80a062014-09-26 20:51:39 -0600205 if (getenv("usbethaddr"))
Stephen Warren6fe78452014-11-18 21:40:21 -0700206 return;
Stephen Warren4f80a062014-09-26 20:51:39 -0600207
208 BCM2835_MBOX_INIT_HDR(msg);
209 BCM2835_MBOX_INIT_TAG(&msg->get_mac_address, GET_MAC_ADDRESS);
210
211 ret = bcm2835_mbox_call_prop(BCM2835_MBOX_PROP_CHAN, &msg->hdr);
212 if (ret) {
213 printf("bcm2835: Could not query MAC address\n");
214 /* Ignore error; not critical */
Stephen Warren6fe78452014-11-18 21:40:21 -0700215 return;
Stephen Warren4f80a062014-09-26 20:51:39 -0600216 }
217
218 eth_setenv_enetaddr("usbethaddr", msg->get_mac_address.body.resp.mac);
219
Stephen Warren6fe78452014-11-18 21:40:21 -0700220 return;
221}
222
223int misc_init_r(void)
224{
225 set_fdtfile();
226 set_usbethaddr();
Stephen Warren4f80a062014-09-26 20:51:39 -0600227 return 0;
228}
229
Stephen Warrenf66f2aa2014-01-13 19:50:11 -0700230static int power_on_module(u32 module)
231{
232 ALLOC_ALIGN_BUFFER(struct msg_set_power_state, msg_pwr, 1, 16);
233 int ret;
234
235 BCM2835_MBOX_INIT_HDR(msg_pwr);
236 BCM2835_MBOX_INIT_TAG(&msg_pwr->set_power_state,
237 SET_POWER_STATE);
238 msg_pwr->set_power_state.body.req.device_id = module;
239 msg_pwr->set_power_state.body.req.state =
240 BCM2835_MBOX_SET_POWER_STATE_REQ_ON |
241 BCM2835_MBOX_SET_POWER_STATE_REQ_WAIT;
242
243 ret = bcm2835_mbox_call_prop(BCM2835_MBOX_PROP_CHAN,
244 &msg_pwr->hdr);
245 if (ret) {
246 printf("bcm2835: Could not set module %u power state\n",
247 module);
248 return -1;
249 }
250
251 return 0;
252}
253
Stephen Warren6fe78452014-11-18 21:40:21 -0700254static void get_board_rev(void)
255{
256 ALLOC_ALIGN_BUFFER(struct msg_get_board_rev, msg, 1, 16);
257 int ret;
258 const char *name;
259
260 BCM2835_MBOX_INIT_HDR(msg);
261 BCM2835_MBOX_INIT_TAG(&msg->get_board_rev, GET_BOARD_REV);
262
263 ret = bcm2835_mbox_call_prop(BCM2835_MBOX_PROP_CHAN, &msg->hdr);
264 if (ret) {
265 printf("bcm2835: Could not query board revision\n");
266 /* Ignore error; not critical */
267 return;
268 }
269
270 rpi_board_rev = msg->get_board_rev.body.resp.rev;
Stephen Warren47705ef2014-12-23 20:01:43 -0700271 if (rpi_board_rev >= ARRAY_SIZE(models)) {
272 printf("RPI: Board rev %u outside known range\n",
273 rpi_board_rev);
Stephen Warren6fe78452014-11-18 21:40:21 -0700274 rpi_board_rev = 0;
Stephen Warren47705ef2014-12-23 20:01:43 -0700275 }
Stephen Warren914627f2014-12-23 20:01:44 -0700276 if (!models[rpi_board_rev].name) {
277 printf("RPI: Board rev %u unknown\n", rpi_board_rev);
278 rpi_board_rev = 0;
279 }
Stephen Warren6fe78452014-11-18 21:40:21 -0700280
281 name = models[rpi_board_rev].name;
Stephen Warren6fe78452014-11-18 21:40:21 -0700282 printf("RPI model: %s\n", name);
283}
284
Stephen Warren0d04f342012-08-05 16:07:22 +0000285int board_init(void)
286{
Stephen Warren6fe78452014-11-18 21:40:21 -0700287 get_board_rev();
288
Stephen Warren0d04f342012-08-05 16:07:22 +0000289 gd->bd->bi_boot_params = 0x100;
290
Stephen Warrenf66f2aa2014-01-13 19:50:11 -0700291 return power_on_module(BCM2835_MBOX_POWER_DEVID_USB_HCD);
Stephen Warren0d04f342012-08-05 16:07:22 +0000292}
Stephen Warren131a1e62013-01-29 16:37:42 +0000293
Jeroen Hofstee5dfd1622014-07-13 22:01:51 +0200294int board_mmc_init(bd_t *bis)
Stephen Warren131a1e62013-01-29 16:37:42 +0000295{
296 ALLOC_ALIGN_BUFFER(struct msg_get_clock_rate, msg_clk, 1, 16);
297 int ret;
298
Stephen Warrenf66f2aa2014-01-13 19:50:11 -0700299 power_on_module(BCM2835_MBOX_POWER_DEVID_SDHCI);
300
Stephen Warren131a1e62013-01-29 16:37:42 +0000301 BCM2835_MBOX_INIT_HDR(msg_clk);
302 BCM2835_MBOX_INIT_TAG(&msg_clk->get_clock_rate, GET_CLOCK_RATE);
303 msg_clk->get_clock_rate.body.req.clock_id = BCM2835_MBOX_CLOCK_ID_EMMC;
304
305 ret = bcm2835_mbox_call_prop(BCM2835_MBOX_PROP_CHAN, &msg_clk->hdr);
306 if (ret) {
307 printf("bcm2835: Could not query eMMC clock rate\n");
308 return -1;
309 }
310
311 return bcm2835_sdhci_init(BCM2835_SDHCI_BASE,
312 msg_clk->get_clock_rate.body.resp.rate_hz);
313}
Stephen Warrenea697ae2013-05-27 18:31:18 +0000314
Simon Glasse895a4b2014-10-23 18:58:47 -0600315int ft_board_setup(void *blob, bd_t *bd)
Stephen Warrenea697ae2013-05-27 18:31:18 +0000316{
317 /*
318 * For now, we simply always add the simplefb DT node. Later, we
319 * should be more intelligent, and e.g. only do this if no enabled DT
320 * node exists for the "real" graphics driver.
321 */
322 lcd_dt_simplefb_add_node(blob);
Simon Glasse895a4b2014-10-23 18:58:47 -0600323
324 return 0;
Stephen Warrenea697ae2013-05-27 18:31:18 +0000325}