2 * (C) Copyright 2012-2013,2015 Stephen Warren
4 * SPDX-License-Identifier: GPL-2.0
10 #include <fdt_support.h>
11 #include <fdt_simplefb.h>
16 #include <asm/arch/mbox.h>
17 #include <asm/arch/sdhci.h>
18 #include <asm/global_data.h>
19 #include <dm/platform_data/serial_pl01x.h>
21 DECLARE_GLOBAL_DATA_PTR;
23 static const struct bcm2835_gpio_platdata gpio_platdata = {
24 .base = BCM2835_GPIO_BASE,
27 U_BOOT_DEVICE(bcm2835_gpios) = {
28 .name = "gpio_bcm2835",
29 .platdata = &gpio_platdata,
32 static const struct pl01x_serial_platdata serial_platdata = {
42 U_BOOT_DEVICE(bcm2835_serials) = {
43 .name = "serial_pl01x",
44 .platdata = &serial_platdata,
47 struct msg_get_arm_mem {
48 struct bcm2835_mbox_hdr hdr;
49 struct bcm2835_mbox_tag_get_arm_mem get_arm_mem;
53 struct msg_get_board_rev {
54 struct bcm2835_mbox_hdr hdr;
55 struct bcm2835_mbox_tag_get_board_rev get_board_rev;
59 struct msg_get_mac_address {
60 struct bcm2835_mbox_hdr hdr;
61 struct bcm2835_mbox_tag_get_mac_address get_mac_address;
65 struct msg_set_power_state {
66 struct bcm2835_mbox_hdr hdr;
67 struct bcm2835_mbox_tag_set_power_state set_power_state;
71 struct msg_get_clock_rate {
72 struct bcm2835_mbox_hdr hdr;
73 struct bcm2835_mbox_tag_get_clock_rate get_clock_rate;
78 * http://raspberryalphaomega.org.uk/2013/02/06/automatic-raspberry-pi-board-revision-detection-model-a-b1-and-b2/
79 * http://www.raspberrypi.org/forums/viewtopic.php?f=63&t=32733
80 * http://git.drogon.net/?p=wiringPi;a=blob;f=wiringPi/wiringPi.c;h=503151f61014418b9c42f4476a6086f75cd4e64b;hb=refs/heads/master#l922
82 * In http://lists.denx.de/pipermail/u-boot/2016-January/243752.html
83 * ("[U-Boot] [PATCH] rpi: fix up Model B entries") Dom Cobley at the RPi
84 * Foundation stated that the following source was accurate:
85 * https://github.com/AndrewFromMelbourne/raspberry_pi_revision
93 static const struct rpi_model rpi_model_unknown = {
96 "bcm2836-rpi-other.dtb",
98 "bcm2835-rpi-other.dtb",
103 static const struct rpi_model rpi_models_new_scheme[] = {
106 "bcm2836-rpi-2-b.dtb",
111 "bcm2835-rpi-zero.dtb",
116 static const struct rpi_model rpi_models_old_scheme[] = {
119 "bcm2835-rpi-b-i2c0.dtb",
124 "bcm2835-rpi-b-i2c0.dtb",
159 "bcm2835-rpi-b-rev2.dtb",
164 "bcm2835-rpi-b-rev2.dtb",
169 "bcm2835-rpi-b-rev2.dtb",
174 "bcm2835-rpi-b-plus.dtb",
179 "bcm2835-rpi-cm.dtb",
184 "bcm2835-rpi-a-plus.dtb",
189 "bcm2835-rpi-b-plus.dtb",
194 "bcm2835-rpi-cm.dtb",
199 "bcm2835-rpi-a-plus.dtb",
204 static uint32_t revision;
205 static uint32_t rev_scheme;
206 static uint32_t rev_type;
207 static const struct rpi_model *model;
211 ALLOC_CACHE_ALIGN_BUFFER(struct msg_get_arm_mem, msg, 1);
214 BCM2835_MBOX_INIT_HDR(msg);
215 BCM2835_MBOX_INIT_TAG(&msg->get_arm_mem, GET_ARM_MEMORY);
217 ret = bcm2835_mbox_call_prop(BCM2835_MBOX_PROP_CHAN, &msg->hdr);
219 printf("bcm2835: Could not query ARM memory size\n");
223 gd->ram_size = msg->get_arm_mem.body.resp.mem_size;
228 static void set_fdtfile(void)
232 if (getenv("fdtfile"))
235 fdtfile = model->fdtfile;
236 setenv("fdtfile", fdtfile);
239 static void set_usbethaddr(void)
241 ALLOC_CACHE_ALIGN_BUFFER(struct msg_get_mac_address, msg, 1);
244 if (!model->has_onboard_eth)
247 if (getenv("usbethaddr"))
250 BCM2835_MBOX_INIT_HDR(msg);
251 BCM2835_MBOX_INIT_TAG(&msg->get_mac_address, GET_MAC_ADDRESS);
253 ret = bcm2835_mbox_call_prop(BCM2835_MBOX_PROP_CHAN, &msg->hdr);
255 printf("bcm2835: Could not query MAC address\n");
256 /* Ignore error; not critical */
260 eth_setenv_enetaddr("usbethaddr", msg->get_mac_address.body.resp.mac);
265 #ifdef CONFIG_ENV_VARS_UBOOT_RUNTIME_CONFIG
266 static void set_board_info(void)
270 snprintf(s, sizeof(s), "0x%X", revision);
271 setenv("board_revision", s);
272 snprintf(s, sizeof(s), "%d", rev_scheme);
273 setenv("board_rev_scheme", s);
274 /* Can't rename this to board_rev_type since it's an ABI for scripts */
275 snprintf(s, sizeof(s), "0x%X", rev_type);
276 setenv("board_rev", s);
277 setenv("board_name", model->name);
279 #endif /* CONFIG_ENV_VARS_UBOOT_RUNTIME_CONFIG */
281 int misc_init_r(void)
285 #ifdef CONFIG_ENV_VARS_UBOOT_RUNTIME_CONFIG
291 static int power_on_module(u32 module)
293 ALLOC_CACHE_ALIGN_BUFFER(struct msg_set_power_state, msg_pwr, 1);
296 BCM2835_MBOX_INIT_HDR(msg_pwr);
297 BCM2835_MBOX_INIT_TAG(&msg_pwr->set_power_state,
299 msg_pwr->set_power_state.body.req.device_id = module;
300 msg_pwr->set_power_state.body.req.state =
301 BCM2835_MBOX_SET_POWER_STATE_REQ_ON |
302 BCM2835_MBOX_SET_POWER_STATE_REQ_WAIT;
304 ret = bcm2835_mbox_call_prop(BCM2835_MBOX_PROP_CHAN,
307 printf("bcm2835: Could not set module %u power state\n",
315 static void get_board_rev(void)
317 ALLOC_CACHE_ALIGN_BUFFER(struct msg_get_board_rev, msg, 1);
319 const struct rpi_model *models;
320 uint32_t models_count;
322 BCM2835_MBOX_INIT_HDR(msg);
323 BCM2835_MBOX_INIT_TAG(&msg->get_board_rev, GET_BOARD_REV);
325 ret = bcm2835_mbox_call_prop(BCM2835_MBOX_PROP_CHAN, &msg->hdr);
327 printf("bcm2835: Could not query board revision\n");
328 /* Ignore error; not critical */
333 * For details of old-vs-new scheme, see:
334 * https://github.com/pimoroni/RPi.version/blob/master/RPi/version.py
335 * http://www.raspberrypi.org/forums/viewtopic.php?f=63&t=99293&p=690282
338 * For the RPi 1, bit 24 is the "warranty bit", so we mask off just the
339 * lower byte to use as the board rev:
340 * http://www.raspberrypi.org/forums/viewtopic.php?f=63&t=98367&start=250
341 * http://www.raspberrypi.org/forums/viewtopic.php?f=31&t=20594
343 revision = msg->get_board_rev.body.resp.rev;
344 if (revision & 0x800000) {
346 rev_type = (revision >> 4) & 0xff;
347 models = rpi_models_new_scheme;
348 models_count = ARRAY_SIZE(rpi_models_new_scheme);
351 rev_type = revision & 0xff;
352 models = rpi_models_old_scheme;
353 models_count = ARRAY_SIZE(rpi_models_old_scheme);
355 if (rev_type >= models_count) {
356 printf("RPI: Board rev 0x%x outside known range\n", rev_type);
357 model = &rpi_model_unknown;
358 } else if (!models[rev_type].name) {
359 printf("RPI: Board rev 0x%x unknown\n", rev_type);
360 model = &rpi_model_unknown;
362 model = &models[rev_type];
365 printf("RPI %s (0x%x)\n", model->name, revision);
372 gd->bd->bi_boot_params = 0x100;
374 return power_on_module(BCM2835_MBOX_POWER_DEVID_USB_HCD);
377 int board_mmc_init(bd_t *bis)
379 ALLOC_CACHE_ALIGN_BUFFER(struct msg_get_clock_rate, msg_clk, 1);
382 power_on_module(BCM2835_MBOX_POWER_DEVID_SDHCI);
384 BCM2835_MBOX_INIT_HDR(msg_clk);
385 BCM2835_MBOX_INIT_TAG(&msg_clk->get_clock_rate, GET_CLOCK_RATE);
386 msg_clk->get_clock_rate.body.req.clock_id = BCM2835_MBOX_CLOCK_ID_EMMC;
388 ret = bcm2835_mbox_call_prop(BCM2835_MBOX_PROP_CHAN, &msg_clk->hdr);
390 printf("bcm2835: Could not query eMMC clock rate\n");
394 return bcm2835_sdhci_init(BCM2835_SDHCI_BASE,
395 msg_clk->get_clock_rate.body.resp.rate_hz);
398 int ft_board_setup(void *blob, bd_t *bd)
401 * For now, we simply always add the simplefb DT node. Later, we
402 * should be more intelligent, and e.g. only do this if no enabled DT
403 * node exists for the "real" graphics driver.
405 lcd_dt_simplefb_add_node(blob);