2 * (C) Copyright 2012-2013 Stephen Warren
4 * See file CREDITS for list of people who contributed to this
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.
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.
20 #include <fdt_support.h>
24 #include <asm/arch/mbox.h>
25 #include <asm/arch/sdhci.h>
26 #include <asm/global_data.h>
27 #include <dm/platform_data/serial_pl01x.h>
29 DECLARE_GLOBAL_DATA_PTR;
31 static const struct bcm2835_gpio_platdata gpio_platdata = {
32 .base = BCM2835_GPIO_BASE,
35 U_BOOT_DEVICE(bcm2835_gpios) = {
36 .name = "gpio_bcm2835",
37 .platdata = &gpio_platdata,
40 static const struct pl01x_serial_platdata serial_platdata = {
46 U_BOOT_DEVICE(bcm2835_serials) = {
47 .name = "serial_pl01x",
48 .platdata = &serial_platdata,
51 struct msg_get_arm_mem {
52 struct bcm2835_mbox_hdr hdr;
53 struct bcm2835_mbox_tag_get_arm_mem get_arm_mem;
57 struct msg_get_board_rev {
58 struct bcm2835_mbox_hdr hdr;
59 struct bcm2835_mbox_tag_get_board_rev get_board_rev;
63 struct msg_get_mac_address {
64 struct bcm2835_mbox_hdr hdr;
65 struct bcm2835_mbox_tag_get_mac_address get_mac_address;
69 struct msg_set_power_state {
70 struct bcm2835_mbox_hdr hdr;
71 struct bcm2835_mbox_tag_set_power_state set_power_state;
75 struct msg_get_clock_rate {
76 struct bcm2835_mbox_hdr hdr;
77 struct bcm2835_mbox_tag_get_clock_rate get_clock_rate;
81 /* See comments in mbox.h for data source */
86 [BCM2835_BOARD_REV_B_I2C0_2] = {
88 "bcm2835-rpi-b-i2c0.dtb",
90 [BCM2835_BOARD_REV_B_I2C0_3] = {
92 "bcm2835-rpi-b-i2c0.dtb",
94 [BCM2835_BOARD_REV_B_I2C1_4] = {
98 [BCM2835_BOARD_REV_B_I2C1_5] = {
102 [BCM2835_BOARD_REV_B_I2C1_6] = {
106 [BCM2835_BOARD_REV_A_7] = {
110 [BCM2835_BOARD_REV_A_8] = {
114 [BCM2835_BOARD_REV_A_9] = {
118 [BCM2835_BOARD_REV_B_REV2_d] = {
120 "bcm2835-rpi-b-rev2.dtb",
122 [BCM2835_BOARD_REV_B_REV2_e] = {
124 "bcm2835-rpi-b-rev2.dtb",
126 [BCM2835_BOARD_REV_B_REV2_f] = {
128 "bcm2835-rpi-b-rev2.dtb",
130 [BCM2835_BOARD_REV_B_PLUS] = {
132 "bcm2835-rpi-b-plus.dtb",
134 [BCM2835_BOARD_REV_CM] = {
136 "bcm2835-rpi-cm.dtb",
140 u32 rpi_board_rev = 0;
144 ALLOC_ALIGN_BUFFER(struct msg_get_arm_mem, msg, 1, 16);
147 BCM2835_MBOX_INIT_HDR(msg);
148 BCM2835_MBOX_INIT_TAG(&msg->get_arm_mem, GET_ARM_MEMORY);
150 ret = bcm2835_mbox_call_prop(BCM2835_MBOX_PROP_CHAN, &msg->hdr);
152 printf("bcm2835: Could not query ARM memory size\n");
156 gd->ram_size = msg->get_arm_mem.body.resp.mem_size;
161 static void set_fdtfile(void)
165 if (getenv("fdtfile"))
168 fdtfile = models[rpi_board_rev].fdtfile;
170 fdtfile = "bcm2835-rpi-other.dtb";
172 setenv("fdtfile", fdtfile);
175 static void set_usbethaddr(void)
177 ALLOC_ALIGN_BUFFER(struct msg_get_mac_address, msg, 1, 16);
180 if (getenv("usbethaddr"))
183 BCM2835_MBOX_INIT_HDR(msg);
184 BCM2835_MBOX_INIT_TAG(&msg->get_mac_address, GET_MAC_ADDRESS);
186 ret = bcm2835_mbox_call_prop(BCM2835_MBOX_PROP_CHAN, &msg->hdr);
188 printf("bcm2835: Could not query MAC address\n");
189 /* Ignore error; not critical */
193 eth_setenv_enetaddr("usbethaddr", msg->get_mac_address.body.resp.mac);
198 int misc_init_r(void)
205 static int power_on_module(u32 module)
207 ALLOC_ALIGN_BUFFER(struct msg_set_power_state, msg_pwr, 1, 16);
210 BCM2835_MBOX_INIT_HDR(msg_pwr);
211 BCM2835_MBOX_INIT_TAG(&msg_pwr->set_power_state,
213 msg_pwr->set_power_state.body.req.device_id = module;
214 msg_pwr->set_power_state.body.req.state =
215 BCM2835_MBOX_SET_POWER_STATE_REQ_ON |
216 BCM2835_MBOX_SET_POWER_STATE_REQ_WAIT;
218 ret = bcm2835_mbox_call_prop(BCM2835_MBOX_PROP_CHAN,
221 printf("bcm2835: Could not set module %u power state\n",
229 static void get_board_rev(void)
231 ALLOC_ALIGN_BUFFER(struct msg_get_board_rev, msg, 1, 16);
235 BCM2835_MBOX_INIT_HDR(msg);
236 BCM2835_MBOX_INIT_TAG(&msg->get_board_rev, GET_BOARD_REV);
238 ret = bcm2835_mbox_call_prop(BCM2835_MBOX_PROP_CHAN, &msg->hdr);
240 printf("bcm2835: Could not query board revision\n");
241 /* Ignore error; not critical */
245 rpi_board_rev = msg->get_board_rev.body.resp.rev;
246 if (rpi_board_rev >= ARRAY_SIZE(models))
249 name = models[rpi_board_rev].name;
251 name = "Unknown model";
252 printf("RPI model: %s\n", name);
259 gd->bd->bi_boot_params = 0x100;
261 return power_on_module(BCM2835_MBOX_POWER_DEVID_USB_HCD);
264 int board_mmc_init(bd_t *bis)
266 ALLOC_ALIGN_BUFFER(struct msg_get_clock_rate, msg_clk, 1, 16);
269 power_on_module(BCM2835_MBOX_POWER_DEVID_SDHCI);
271 BCM2835_MBOX_INIT_HDR(msg_clk);
272 BCM2835_MBOX_INIT_TAG(&msg_clk->get_clock_rate, GET_CLOCK_RATE);
273 msg_clk->get_clock_rate.body.req.clock_id = BCM2835_MBOX_CLOCK_ID_EMMC;
275 ret = bcm2835_mbox_call_prop(BCM2835_MBOX_PROP_CHAN, &msg_clk->hdr);
277 printf("bcm2835: Could not query eMMC clock rate\n");
281 return bcm2835_sdhci_init(BCM2835_SDHCI_BASE,
282 msg_clk->get_clock_rate.body.resp.rate_hz);
285 int ft_board_setup(void *blob, bd_t *bd)
288 * For now, we simply always add the simplefb DT node. Later, we
289 * should be more intelligent, and e.g. only do this if no enabled DT
290 * node exists for the "real" graphics driver.
292 lcd_dt_simplefb_add_node(blob);