blob: 35f59395520731b304ef12df5919b7b85ac890bb [file] [log] [blame]
Tom Rini83d290c2018-05-06 17:58:06 -04001// SPDX-License-Identifier: GPL-2.0
Stephen Warren0d04f342012-08-05 16:07:22 +00002/*
Stephen Warrenf031f502016-03-24 22:15:20 -06003 * (C) Copyright 2012-2016 Stephen Warren
Stephen Warren0d04f342012-08-05 16:07:22 +00004 */
5
6#include <common.h>
Lubomir Rintel757cd142016-02-22 22:06:47 +01007#include <inttypes.h>
Stephen Warrenea697ae2013-05-27 18:31:18 +00008#include <config.h>
Simon Glass41e98e02014-09-22 17:30:56 -06009#include <dm.h>
Alex Kiernan9925f1d2018-04-01 09:22:38 +000010#include <environment.h>
Alexander Graf1bcf7a32016-11-02 10:36:20 +010011#include <efi_loader.h>
Jeroen Hofstee5dfd1622014-07-13 22:01:51 +020012#include <fdt_support.h>
Nikita Kiryanov033167c2015-02-03 13:32:31 +020013#include <fdt_simplefb.h>
Stephen Warrenea697ae2013-05-27 18:31:18 +000014#include <lcd.h>
Simon Glasscf92e052015-09-02 17:24:58 -060015#include <memalign.h>
Jeroen Hofstee5dfd1622014-07-13 22:01:51 +020016#include <mmc.h>
Simon Glass41e98e02014-09-22 17:30:56 -060017#include <asm/gpio.h>
Stephen Warren3f397782013-01-29 16:37:37 +000018#include <asm/arch/mbox.h>
Simon Glass70997d82017-04-05 16:23:36 -060019#include <asm/arch/msg.h>
Stephen Warren131a1e62013-01-29 16:37:42 +000020#include <asm/arch/sdhci.h>
Stephen Warren0d04f342012-08-05 16:07:22 +000021#include <asm/global_data.h>
Stephen Warrenf031f502016-03-24 22:15:20 -060022#include <dm/platform_data/serial_bcm283x_mu.h>
Stephen Warrend22a7652016-04-01 21:14:15 -060023#ifdef CONFIG_ARM64
24#include <asm/armv8/mmu.h>
25#endif
Paolo Pisati45a6d232017-02-10 17:28:05 +010026#include <watchdog.h>
Alexander Grafcaf22332018-01-23 18:05:21 +010027#include <dm/pinctrl.h>
Stephen Warren0d04f342012-08-05 16:07:22 +000028
29DECLARE_GLOBAL_DATA_PTR;
30
Cédric Schieliade243a2016-11-11 11:59:07 +010031/* From lowlevel_init.S */
32extern unsigned long fw_dtb_pointer;
33
Simon Glass3e167052017-04-05 16:23:45 -060034/* TODO(sjg@chromium.org): Move these to the msg.c file */
Stephen Warren3f397782013-01-29 16:37:37 +000035struct msg_get_arm_mem {
36 struct bcm2835_mbox_hdr hdr;
37 struct bcm2835_mbox_tag_get_arm_mem get_arm_mem;
38 u32 end_tag;
39};
40
Stephen Warren6fe78452014-11-18 21:40:21 -070041struct msg_get_board_rev {
42 struct bcm2835_mbox_hdr hdr;
43 struct bcm2835_mbox_tag_get_board_rev get_board_rev;
44 u32 end_tag;
45};
46
Lubomir Rintel757cd142016-02-22 22:06:47 +010047struct msg_get_board_serial {
48 struct bcm2835_mbox_hdr hdr;
49 struct bcm2835_mbox_tag_get_board_serial get_board_serial;
50 u32 end_tag;
51};
52
Stephen Warren4f80a062014-09-26 20:51:39 -060053struct msg_get_mac_address {
54 struct bcm2835_mbox_hdr hdr;
55 struct bcm2835_mbox_tag_get_mac_address get_mac_address;
56 u32 end_tag;
57};
58
Stephen Warren131a1e62013-01-29 16:37:42 +000059struct msg_get_clock_rate {
60 struct bcm2835_mbox_hdr hdr;
61 struct bcm2835_mbox_tag_get_clock_rate get_clock_rate;
62 u32 end_tag;
63};
64
Tuomas Tynkkynen5d3c4ba2017-01-23 01:34:39 +020065#ifdef CONFIG_ARM64
66#define DTB_DIR "broadcom/"
67#else
68#define DTB_DIR ""
69#endif
70
Stephen Warrendbe6f1e2015-12-04 22:07:44 -070071/*
72 * http://raspberryalphaomega.org.uk/2013/02/06/automatic-raspberry-pi-board-revision-detection-model-a-b1-and-b2/
73 * http://www.raspberrypi.org/forums/viewtopic.php?f=63&t=32733
Stephen Warrenc4ea1ed2015-12-04 22:07:45 -070074 * http://git.drogon.net/?p=wiringPi;a=blob;f=wiringPi/wiringPi.c;h=503151f61014418b9c42f4476a6086f75cd4e64b;hb=refs/heads/master#l922
Stephen Warrendba060c2016-01-28 22:24:44 -070075 *
76 * In http://lists.denx.de/pipermail/u-boot/2016-January/243752.html
77 * ("[U-Boot] [PATCH] rpi: fix up Model B entries") Dom Cobley at the RPi
78 * Foundation stated that the following source was accurate:
79 * https://github.com/AndrewFromMelbourne/raspberry_pi_revision
Stephen Warrendbe6f1e2015-12-04 22:07:44 -070080 */
Stephen Warrenc4ea1ed2015-12-04 22:07:45 -070081struct rpi_model {
Stephen Warren6fe78452014-11-18 21:40:21 -070082 const char *name;
83 const char *fdtfile;
Stephen Warren3207d8f2014-12-05 20:56:46 -070084 bool has_onboard_eth;
Stephen Warrenc4ea1ed2015-12-04 22:07:45 -070085};
86
87static const struct rpi_model rpi_model_unknown = {
88 "Unknown model",
Tuomas Tynkkynen5d3c4ba2017-01-23 01:34:39 +020089 DTB_DIR "bcm283x-rpi-other.dtb",
Stephen Warrenc4ea1ed2015-12-04 22:07:45 -070090 false,
91};
92
93static const struct rpi_model rpi_models_new_scheme[] = {
Jonathan Gray91e1bc52018-04-06 18:45:49 +100094 [0x0] = {
95 "Model A",
96 DTB_DIR "bcm2835-rpi-a.dtb",
97 false,
98 },
99 [0x1] = {
100 "Model B",
101 DTB_DIR "bcm2835-rpi-b.dtb",
102 true,
103 },
104 [0x2] = {
105 "Model A+",
106 DTB_DIR "bcm2835-rpi-a-plus.dtb",
107 false,
108 },
109 [0x3] = {
110 "Model B+",
111 DTB_DIR "bcm2835-rpi-b-plus.dtb",
112 true,
113 },
Stephen Warrendbe6f1e2015-12-04 22:07:44 -0700114 [0x4] = {
Stephen Warren46414292015-02-16 12:16:15 -0700115 "2 Model B",
Tuomas Tynkkynen5d3c4ba2017-01-23 01:34:39 +0200116 DTB_DIR "bcm2836-rpi-2-b.dtb",
Stephen Warren46414292015-02-16 12:16:15 -0700117 true,
118 },
Jonathan Gray91e1bc52018-04-06 18:45:49 +1000119 [0x6] = {
120 "Compute Module",
121 DTB_DIR "bcm2835-rpi-cm.dtb",
122 false,
123 },
Stephen Warren7233fb32016-03-24 22:15:18 -0600124 [0x8] = {
125 "3 Model B",
Tuomas Tynkkynen5d3c4ba2017-01-23 01:34:39 +0200126 DTB_DIR "bcm2837-rpi-3-b.dtb",
Stephen Warren7233fb32016-03-24 22:15:18 -0600127 true,
128 },
Stephen Warrenaf7c03e2015-12-04 22:07:46 -0700129 [0x9] = {
130 "Zero",
Tuomas Tynkkynen5d3c4ba2017-01-23 01:34:39 +0200131 DTB_DIR "bcm2835-rpi-zero.dtb",
Stephen Warrenaf7c03e2015-12-04 22:07:46 -0700132 false,
133 },
Jonathan Gray91e1bc52018-04-06 18:45:49 +1000134 [0xA] = {
135 "Compute Module 3",
136 DTB_DIR "bcm2837-rpi-cm3.dtb",
137 false,
138 },
Dmitry Korunov89930562017-11-26 13:38:53 +0400139 [0xC] = {
140 "Zero W",
141 DTB_DIR "bcm2835-rpi-zero-w.dtb",
142 false,
143 },
Alexander Graf7fe77222018-03-15 15:05:37 +0100144 [0xD] = {
145 "3 Model B+",
146 DTB_DIR "bcm2837-rpi-3-b-plus.dtb",
147 true,
148 },
Stephen Warrenc4ea1ed2015-12-04 22:07:45 -0700149};
150
151static const struct rpi_model rpi_models_old_scheme[] = {
Stephen Warrendbe6f1e2015-12-04 22:07:44 -0700152 [0x2] = {
Lubomir Rintel7443a9c2016-01-29 09:35:52 +0100153 "Model B",
Tuomas Tynkkynen5d3c4ba2017-01-23 01:34:39 +0200154 DTB_DIR "bcm2835-rpi-b.dtb",
Stephen Warren3207d8f2014-12-05 20:56:46 -0700155 true,
Stephen Warren6fe78452014-11-18 21:40:21 -0700156 },
Stephen Warrendbe6f1e2015-12-04 22:07:44 -0700157 [0x3] = {
Lubomir Rintel7443a9c2016-01-29 09:35:52 +0100158 "Model B",
Tuomas Tynkkynen5d3c4ba2017-01-23 01:34:39 +0200159 DTB_DIR "bcm2835-rpi-b.dtb",
Stephen Warren3207d8f2014-12-05 20:56:46 -0700160 true,
Stephen Warren6fe78452014-11-18 21:40:21 -0700161 },
Stephen Warrendbe6f1e2015-12-04 22:07:44 -0700162 [0x4] = {
Lubomir Rintel7443a9c2016-01-29 09:35:52 +0100163 "Model B rev2",
Tuomas Tynkkynen5d3c4ba2017-01-23 01:34:39 +0200164 DTB_DIR "bcm2835-rpi-b-rev2.dtb",
Stephen Warren3207d8f2014-12-05 20:56:46 -0700165 true,
Stephen Warren6fe78452014-11-18 21:40:21 -0700166 },
Stephen Warrendbe6f1e2015-12-04 22:07:44 -0700167 [0x5] = {
Lubomir Rintel7443a9c2016-01-29 09:35:52 +0100168 "Model B rev2",
Tuomas Tynkkynen5d3c4ba2017-01-23 01:34:39 +0200169 DTB_DIR "bcm2835-rpi-b-rev2.dtb",
Stephen Warren3207d8f2014-12-05 20:56:46 -0700170 true,
Stephen Warren6fe78452014-11-18 21:40:21 -0700171 },
Stephen Warrendbe6f1e2015-12-04 22:07:44 -0700172 [0x6] = {
Lubomir Rintel7443a9c2016-01-29 09:35:52 +0100173 "Model B rev2",
Tuomas Tynkkynen5d3c4ba2017-01-23 01:34:39 +0200174 DTB_DIR "bcm2835-rpi-b-rev2.dtb",
Stephen Warren3207d8f2014-12-05 20:56:46 -0700175 true,
Stephen Warren6fe78452014-11-18 21:40:21 -0700176 },
Stephen Warrendbe6f1e2015-12-04 22:07:44 -0700177 [0x7] = {
Stephen Warren6fe78452014-11-18 21:40:21 -0700178 "Model A",
Tuomas Tynkkynen5d3c4ba2017-01-23 01:34:39 +0200179 DTB_DIR "bcm2835-rpi-a.dtb",
Stephen Warren3207d8f2014-12-05 20:56:46 -0700180 false,
Stephen Warren6fe78452014-11-18 21:40:21 -0700181 },
Stephen Warrendbe6f1e2015-12-04 22:07:44 -0700182 [0x8] = {
Stephen Warren6fe78452014-11-18 21:40:21 -0700183 "Model A",
Tuomas Tynkkynen5d3c4ba2017-01-23 01:34:39 +0200184 DTB_DIR "bcm2835-rpi-a.dtb",
Stephen Warren3207d8f2014-12-05 20:56:46 -0700185 false,
Stephen Warren6fe78452014-11-18 21:40:21 -0700186 },
Stephen Warrendbe6f1e2015-12-04 22:07:44 -0700187 [0x9] = {
Stephen Warren6fe78452014-11-18 21:40:21 -0700188 "Model A",
Tuomas Tynkkynen5d3c4ba2017-01-23 01:34:39 +0200189 DTB_DIR "bcm2835-rpi-a.dtb",
Stephen Warren3207d8f2014-12-05 20:56:46 -0700190 false,
Stephen Warren6fe78452014-11-18 21:40:21 -0700191 },
Stephen Warrendbe6f1e2015-12-04 22:07:44 -0700192 [0xd] = {
Stephen Warren6fe78452014-11-18 21:40:21 -0700193 "Model B rev2",
Tuomas Tynkkynen5d3c4ba2017-01-23 01:34:39 +0200194 DTB_DIR "bcm2835-rpi-b-rev2.dtb",
Stephen Warren3207d8f2014-12-05 20:56:46 -0700195 true,
Stephen Warren6fe78452014-11-18 21:40:21 -0700196 },
Stephen Warrendbe6f1e2015-12-04 22:07:44 -0700197 [0xe] = {
Stephen Warren6fe78452014-11-18 21:40:21 -0700198 "Model B rev2",
Tuomas Tynkkynen5d3c4ba2017-01-23 01:34:39 +0200199 DTB_DIR "bcm2835-rpi-b-rev2.dtb",
Stephen Warren3207d8f2014-12-05 20:56:46 -0700200 true,
Stephen Warren6fe78452014-11-18 21:40:21 -0700201 },
Stephen Warrendbe6f1e2015-12-04 22:07:44 -0700202 [0xf] = {
Stephen Warren6fe78452014-11-18 21:40:21 -0700203 "Model B rev2",
Tuomas Tynkkynen5d3c4ba2017-01-23 01:34:39 +0200204 DTB_DIR "bcm2835-rpi-b-rev2.dtb",
Stephen Warren3207d8f2014-12-05 20:56:46 -0700205 true,
Stephen Warren6fe78452014-11-18 21:40:21 -0700206 },
Stephen Warrendbe6f1e2015-12-04 22:07:44 -0700207 [0x10] = {
Stephen Warren6fe78452014-11-18 21:40:21 -0700208 "Model B+",
Tuomas Tynkkynen5d3c4ba2017-01-23 01:34:39 +0200209 DTB_DIR "bcm2835-rpi-b-plus.dtb",
Stephen Warren3207d8f2014-12-05 20:56:46 -0700210 true,
Stephen Warren6fe78452014-11-18 21:40:21 -0700211 },
Stephen Warrendbe6f1e2015-12-04 22:07:44 -0700212 [0x11] = {
Stephen Warren6fe78452014-11-18 21:40:21 -0700213 "Compute Module",
Tuomas Tynkkynen5d3c4ba2017-01-23 01:34:39 +0200214 DTB_DIR "bcm2835-rpi-cm.dtb",
Stephen Warren3207d8f2014-12-05 20:56:46 -0700215 false,
Stephen Warren6fe78452014-11-18 21:40:21 -0700216 },
Stephen Warrendbe6f1e2015-12-04 22:07:44 -0700217 [0x12] = {
Stephen Warren47705ef2014-12-23 20:01:43 -0700218 "Model A+",
Tuomas Tynkkynen5d3c4ba2017-01-23 01:34:39 +0200219 DTB_DIR "bcm2835-rpi-a-plus.dtb",
Stephen Warren47705ef2014-12-23 20:01:43 -0700220 false,
221 },
Stephen Warrendbe6f1e2015-12-04 22:07:44 -0700222 [0x13] = {
Stephen Warren787affb2015-04-12 21:43:25 -0600223 "Model B+",
Tuomas Tynkkynen5d3c4ba2017-01-23 01:34:39 +0200224 DTB_DIR "bcm2835-rpi-b-plus.dtb",
Stephen Warren787affb2015-04-12 21:43:25 -0600225 true,
226 },
Stephen Warrendbe6f1e2015-12-04 22:07:44 -0700227 [0x14] = {
Stephen Warren787affb2015-04-12 21:43:25 -0600228 "Compute Module",
Tuomas Tynkkynen5d3c4ba2017-01-23 01:34:39 +0200229 DTB_DIR "bcm2835-rpi-cm.dtb",
Stephen Warren787affb2015-04-12 21:43:25 -0600230 false,
231 },
Stephen Warrendbe6f1e2015-12-04 22:07:44 -0700232 [0x15] = {
Lubomir Rintel79ad5ce2015-10-14 17:17:54 +0200233 "Model A+",
Tuomas Tynkkynen5d3c4ba2017-01-23 01:34:39 +0200234 DTB_DIR "bcm2835-rpi-a-plus.dtb",
Lubomir Rintel79ad5ce2015-10-14 17:17:54 +0200235 false,
236 },
Stephen Warren6fe78452014-11-18 21:40:21 -0700237};
238
Stephen Warrenc4ea1ed2015-12-04 22:07:45 -0700239static uint32_t revision;
240static uint32_t rev_scheme;
241static uint32_t rev_type;
242static const struct rpi_model *model;
Stephen Warren6fe78452014-11-18 21:40:21 -0700243
Stephen Warrend22a7652016-04-01 21:14:15 -0600244#ifdef CONFIG_ARM64
245static struct mm_region bcm2837_mem_map[] = {
246 {
York Suncd4b0c52016-06-24 16:46:22 -0700247 .virt = 0x00000000UL,
248 .phys = 0x00000000UL,
Stephen Warrend22a7652016-04-01 21:14:15 -0600249 .size = 0x3f000000UL,
250 .attrs = PTE_BLOCK_MEMTYPE(MT_NORMAL) |
251 PTE_BLOCK_INNER_SHARE
252 }, {
York Suncd4b0c52016-06-24 16:46:22 -0700253 .virt = 0x3f000000UL,
254 .phys = 0x3f000000UL,
Stephen Warrend22a7652016-04-01 21:14:15 -0600255 .size = 0x01000000UL,
256 .attrs = PTE_BLOCK_MEMTYPE(MT_DEVICE_NGNRNE) |
257 PTE_BLOCK_NON_SHARE |
258 PTE_BLOCK_PXN | PTE_BLOCK_UXN
259 }, {
260 /* List terminator */
261 0,
262 }
263};
264
265struct mm_region *mem_map = bcm2837_mem_map;
266#endif
267
Stephen Warren0d04f342012-08-05 16:07:22 +0000268int dram_init(void)
269{
Alexander Stein927753a2015-07-24 09:22:12 +0200270 ALLOC_CACHE_ALIGN_BUFFER(struct msg_get_arm_mem, msg, 1);
Stephen Warren3f397782013-01-29 16:37:37 +0000271 int ret;
272
273 BCM2835_MBOX_INIT_HDR(msg);
274 BCM2835_MBOX_INIT_TAG(&msg->get_arm_mem, GET_ARM_MEMORY);
275
276 ret = bcm2835_mbox_call_prop(BCM2835_MBOX_PROP_CHAN, &msg->hdr);
277 if (ret) {
278 printf("bcm2835: Could not query ARM memory size\n");
279 return -1;
280 }
281
282 gd->ram_size = msg->get_arm_mem.body.resp.mem_size;
Stephen Warren0d04f342012-08-05 16:07:22 +0000283
284 return 0;
285}
286
Stephen Warren6fe78452014-11-18 21:40:21 -0700287static void set_fdtfile(void)
288{
289 const char *fdtfile;
290
Simon Glass00caae62017-08-03 12:22:12 -0600291 if (env_get("fdtfile"))
Stephen Warren6fe78452014-11-18 21:40:21 -0700292 return;
293
Stephen Warrenc4ea1ed2015-12-04 22:07:45 -0700294 fdtfile = model->fdtfile;
Simon Glass382bee52017-08-03 12:22:09 -0600295 env_set("fdtfile", fdtfile);
Stephen Warren6fe78452014-11-18 21:40:21 -0700296}
297
Cédric Schieliade243a2016-11-11 11:59:07 +0100298/*
299 * If the firmware provided a valid FDT at boot time, let's expose it in
300 * ${fdt_addr} so it may be passed unmodified to the kernel.
301 */
302static void set_fdt_addr(void)
303{
Simon Glass00caae62017-08-03 12:22:12 -0600304 if (env_get("fdt_addr"))
Cédric Schieliade243a2016-11-11 11:59:07 +0100305 return;
306
307 if (fdt_magic(fw_dtb_pointer) != FDT_MAGIC)
308 return;
309
Simon Glass018f5302017-08-03 12:22:10 -0600310 env_set_hex("fdt_addr", fw_dtb_pointer);
Cédric Schieliade243a2016-11-11 11:59:07 +0100311}
312
313/*
314 * Prevent relocation from stomping on a firmware provided FDT blob.
315 */
316unsigned long board_get_usable_ram_top(unsigned long total_size)
317{
318 if ((gd->ram_top - fw_dtb_pointer) > SZ_64M)
319 return gd->ram_top;
320 return fw_dtb_pointer & ~0xffff;
321}
322
Stephen Warren6fe78452014-11-18 21:40:21 -0700323static void set_usbethaddr(void)
Stephen Warren4f80a062014-09-26 20:51:39 -0600324{
Alexander Stein927753a2015-07-24 09:22:12 +0200325 ALLOC_CACHE_ALIGN_BUFFER(struct msg_get_mac_address, msg, 1);
Stephen Warren4f80a062014-09-26 20:51:39 -0600326 int ret;
327
Stephen Warrenc4ea1ed2015-12-04 22:07:45 -0700328 if (!model->has_onboard_eth)
Stephen Warren3207d8f2014-12-05 20:56:46 -0700329 return;
330
Simon Glass00caae62017-08-03 12:22:12 -0600331 if (env_get("usbethaddr"))
Stephen Warren6fe78452014-11-18 21:40:21 -0700332 return;
Stephen Warren4f80a062014-09-26 20:51:39 -0600333
334 BCM2835_MBOX_INIT_HDR(msg);
335 BCM2835_MBOX_INIT_TAG(&msg->get_mac_address, GET_MAC_ADDRESS);
336
337 ret = bcm2835_mbox_call_prop(BCM2835_MBOX_PROP_CHAN, &msg->hdr);
338 if (ret) {
339 printf("bcm2835: Could not query MAC address\n");
340 /* Ignore error; not critical */
Stephen Warren6fe78452014-11-18 21:40:21 -0700341 return;
Stephen Warren4f80a062014-09-26 20:51:39 -0600342 }
343
Simon Glassfd1e9592017-08-03 12:22:11 -0600344 eth_env_set_enetaddr("usbethaddr", msg->get_mac_address.body.resp.mac);
Stephen Warren4f80a062014-09-26 20:51:39 -0600345
Simon Glass00caae62017-08-03 12:22:12 -0600346 if (!env_get("ethaddr"))
347 env_set("ethaddr", env_get("usbethaddr"));
Lubomir Rintel859f1432016-02-03 16:08:09 +0100348
Stephen Warren6fe78452014-11-18 21:40:21 -0700349 return;
350}
351
Guillaume GARDETbff78562015-08-25 15:10:26 +0200352#ifdef CONFIG_ENV_VARS_UBOOT_RUNTIME_CONFIG
353static void set_board_info(void)
354{
Stephen Warrenc4ea1ed2015-12-04 22:07:45 -0700355 char s[11];
356
357 snprintf(s, sizeof(s), "0x%X", revision);
Simon Glass382bee52017-08-03 12:22:09 -0600358 env_set("board_revision", s);
Stephen Warrenc4ea1ed2015-12-04 22:07:45 -0700359 snprintf(s, sizeof(s), "%d", rev_scheme);
Simon Glass382bee52017-08-03 12:22:09 -0600360 env_set("board_rev_scheme", s);
Stephen Warrenc4ea1ed2015-12-04 22:07:45 -0700361 /* Can't rename this to board_rev_type since it's an ABI for scripts */
362 snprintf(s, sizeof(s), "0x%X", rev_type);
Simon Glass382bee52017-08-03 12:22:09 -0600363 env_set("board_rev", s);
364 env_set("board_name", model->name);
Guillaume GARDETbff78562015-08-25 15:10:26 +0200365}
366#endif /* CONFIG_ENV_VARS_UBOOT_RUNTIME_CONFIG */
367
Lubomir Rintel757cd142016-02-22 22:06:47 +0100368static void set_serial_number(void)
369{
370 ALLOC_CACHE_ALIGN_BUFFER(struct msg_get_board_serial, msg, 1);
371 int ret;
372 char serial_string[17] = { 0 };
373
Simon Glass00caae62017-08-03 12:22:12 -0600374 if (env_get("serial#"))
Lubomir Rintel757cd142016-02-22 22:06:47 +0100375 return;
376
377 BCM2835_MBOX_INIT_HDR(msg);
378 BCM2835_MBOX_INIT_TAG_NO_REQ(&msg->get_board_serial, GET_BOARD_SERIAL);
379
380 ret = bcm2835_mbox_call_prop(BCM2835_MBOX_PROP_CHAN, &msg->hdr);
381 if (ret) {
382 printf("bcm2835: Could not query board serial\n");
383 /* Ignore error; not critical */
384 return;
385 }
386
387 snprintf(serial_string, sizeof(serial_string), "%016" PRIx64,
388 msg->get_board_serial.body.resp.serial);
Simon Glass382bee52017-08-03 12:22:09 -0600389 env_set("serial#", serial_string);
Lubomir Rintel757cd142016-02-22 22:06:47 +0100390}
391
Stephen Warren6fe78452014-11-18 21:40:21 -0700392int misc_init_r(void)
393{
Cédric Schieliade243a2016-11-11 11:59:07 +0100394 set_fdt_addr();
Stephen Warren6fe78452014-11-18 21:40:21 -0700395 set_fdtfile();
396 set_usbethaddr();
Guillaume GARDETbff78562015-08-25 15:10:26 +0200397#ifdef CONFIG_ENV_VARS_UBOOT_RUNTIME_CONFIG
398 set_board_info();
399#endif
Lubomir Rintel757cd142016-02-22 22:06:47 +0100400 set_serial_number();
401
Stephen Warren4f80a062014-09-26 20:51:39 -0600402 return 0;
403}
404
Stephen Warren6fe78452014-11-18 21:40:21 -0700405static void get_board_rev(void)
406{
Alexander Stein927753a2015-07-24 09:22:12 +0200407 ALLOC_CACHE_ALIGN_BUFFER(struct msg_get_board_rev, msg, 1);
Stephen Warren6fe78452014-11-18 21:40:21 -0700408 int ret;
Stephen Warrenc4ea1ed2015-12-04 22:07:45 -0700409 const struct rpi_model *models;
410 uint32_t models_count;
Stephen Warren6fe78452014-11-18 21:40:21 -0700411
412 BCM2835_MBOX_INIT_HDR(msg);
413 BCM2835_MBOX_INIT_TAG(&msg->get_board_rev, GET_BOARD_REV);
414
415 ret = bcm2835_mbox_call_prop(BCM2835_MBOX_PROP_CHAN, &msg->hdr);
416 if (ret) {
417 printf("bcm2835: Could not query board revision\n");
418 /* Ignore error; not critical */
419 return;
420 }
421
Stephen Warren46414292015-02-16 12:16:15 -0700422 /*
423 * For details of old-vs-new scheme, see:
424 * https://github.com/pimoroni/RPi.version/blob/master/RPi/version.py
425 * http://www.raspberrypi.org/forums/viewtopic.php?f=63&t=99293&p=690282
426 * (a few posts down)
Stephen Warren95b4f112015-03-23 23:00:25 -0600427 *
428 * For the RPi 1, bit 24 is the "warranty bit", so we mask off just the
429 * lower byte to use as the board rev:
430 * http://www.raspberrypi.org/forums/viewtopic.php?f=63&t=98367&start=250
431 * http://www.raspberrypi.org/forums/viewtopic.php?f=31&t=20594
Stephen Warren46414292015-02-16 12:16:15 -0700432 */
Stephen Warrenc4ea1ed2015-12-04 22:07:45 -0700433 revision = msg->get_board_rev.body.resp.rev;
434 if (revision & 0x800000) {
435 rev_scheme = 1;
436 rev_type = (revision >> 4) & 0xff;
437 models = rpi_models_new_scheme;
438 models_count = ARRAY_SIZE(rpi_models_new_scheme);
439 } else {
440 rev_scheme = 0;
441 rev_type = revision & 0xff;
442 models = rpi_models_old_scheme;
443 models_count = ARRAY_SIZE(rpi_models_old_scheme);
Stephen Warren47705ef2014-12-23 20:01:43 -0700444 }
Stephen Warrenc4ea1ed2015-12-04 22:07:45 -0700445 if (rev_type >= models_count) {
446 printf("RPI: Board rev 0x%x outside known range\n", rev_type);
447 model = &rpi_model_unknown;
448 } else if (!models[rev_type].name) {
449 printf("RPI: Board rev 0x%x unknown\n", rev_type);
450 model = &rpi_model_unknown;
451 } else {
452 model = &models[rev_type];
Stephen Warren914627f2014-12-23 20:01:44 -0700453 }
Stephen Warren6fe78452014-11-18 21:40:21 -0700454
Stephen Warrenc4ea1ed2015-12-04 22:07:45 -0700455 printf("RPI %s (0x%x)\n", model->name, revision);
Stephen Warren6fe78452014-11-18 21:40:21 -0700456}
457
Fabian Vogtd8396a32016-09-26 14:26:50 +0200458int board_init(void)
Alexander Graf601147b2016-08-15 17:48:51 +0200459{
Paolo Pisati45a6d232017-02-10 17:28:05 +0100460#ifdef CONFIG_HW_WATCHDOG
461 hw_watchdog_init();
462#endif
Alexander Graf601147b2016-08-15 17:48:51 +0200463
Fabian Vogtd8396a32016-09-26 14:26:50 +0200464 get_board_rev();
465
466 gd->bd->bi_boot_params = 0x100;
467
Simon Glass70997d82017-04-05 16:23:36 -0600468 return bcm2835_power_on_module(BCM2835_MBOX_POWER_DEVID_USB_HCD);
Alexander Graf601147b2016-08-15 17:48:51 +0200469}
470
Alex Deymo82f766d2017-04-02 01:25:20 -0700471/*
472 * If the firmware passed a device tree use it for U-Boot.
473 */
474void *board_fdt_blob_setup(void)
475{
476 if (fdt_magic(fw_dtb_pointer) != FDT_MAGIC)
477 return NULL;
478 return (void *)fw_dtb_pointer;
479}
480
Simon Glasse895a4b2014-10-23 18:58:47 -0600481int ft_board_setup(void *blob, bd_t *bd)
Stephen Warrenea697ae2013-05-27 18:31:18 +0000482{
483 /*
484 * For now, we simply always add the simplefb DT node. Later, we
485 * should be more intelligent, and e.g. only do this if no enabled DT
486 * node exists for the "real" graphics driver.
487 */
488 lcd_dt_simplefb_add_node(blob);
Simon Glasse895a4b2014-10-23 18:58:47 -0600489
Alexander Graf1bcf7a32016-11-02 10:36:20 +0100490#ifdef CONFIG_EFI_LOADER
491 /* Reserve the spin table */
492 efi_add_memory_map(0, 1, EFI_RESERVED_MEMORY_TYPE, 0);
493#endif
494
Simon Glasse895a4b2014-10-23 18:58:47 -0600495 return 0;
Stephen Warrenea697ae2013-05-27 18:31:18 +0000496}