blob: 279a9c3cda922150c1ea37bce511ba45a3a09bf9 [file] [log] [blame]
Stephen Warren0e012c32012-08-05 16:07:22 +00001/*
Stephen Warrend6f47c82016-03-24 22:15:20 -06002 * (C) Copyright 2012-2016 Stephen Warren
Stephen Warren0e012c32012-08-05 16:07:22 +00003 *
Stephen Warren29e494c2015-02-16 12:16:13 -07004 * SPDX-License-Identifier: GPL-2.0
Stephen Warren0e012c32012-08-05 16:07:22 +00005 */
6
7#include <common.h>
Lubomir Rintel7d33bb62016-02-22 22:06:47 +01008#include <inttypes.h>
Stephen Warrenaa44d532013-05-27 18:31:18 +00009#include <config.h>
Simon Glass74807622014-09-22 17:30:56 -060010#include <dm.h>
Alexander Graf013e9ae2016-11-02 10:36:20 +010011#include <efi_loader.h>
Jeroen Hofsteed5b2fed2014-07-13 22:01:51 +020012#include <fdt_support.h>
Nikita Kiryanovb071e4c2015-02-03 13:32:31 +020013#include <fdt_simplefb.h>
Stephen Warrenaa44d532013-05-27 18:31:18 +000014#include <lcd.h>
Simon Glass2dd337a2015-09-02 17:24:58 -060015#include <memalign.h>
Jeroen Hofsteed5b2fed2014-07-13 22:01:51 +020016#include <mmc.h>
Simon Glass74807622014-09-22 17:30:56 -060017#include <asm/gpio.h>
Stephen Warrenacc8bf42013-01-29 16:37:37 +000018#include <asm/arch/mbox.h>
Simon Glass558ec672017-04-05 16:23:36 -060019#include <asm/arch/msg.h>
Stephen Warrenc4ab9712013-01-29 16:37:42 +000020#include <asm/arch/sdhci.h>
Stephen Warren0e012c32012-08-05 16:07:22 +000021#include <asm/global_data.h>
Stephen Warrend6f47c82016-03-24 22:15:20 -060022#include <dm/platform_data/serial_bcm283x_mu.h>
Stephen Warren93ea5262016-04-01 21:14:15 -060023#ifdef CONFIG_ARM64
24#include <asm/armv8/mmu.h>
25#endif
Paolo Pisati6213c552017-02-10 17:28:05 +010026#include <watchdog.h>
Alexander Graffce8e5c2018-01-23 18:05:21 +010027#include <dm/pinctrl.h>
Stephen Warren0e012c32012-08-05 16:07:22 +000028
29DECLARE_GLOBAL_DATA_PTR;
30
Cédric Schieli9473f532016-11-11 11:59:07 +010031/* From lowlevel_init.S */
32extern unsigned long fw_dtb_pointer;
33
Simon Glass56991cd2017-04-05 16:23:45 -060034/* TODO(sjg@chromium.org): Move these to the msg.c file */
Stephen Warrenacc8bf42013-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 Warrencd210c12014-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 Rintel7d33bb62016-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 Warrenaf6e20d2014-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 Warrenc4ab9712013-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 Tynkkynen9266d1d2017-01-23 01:34:39 +020065#ifdef CONFIG_ARM64
66#define DTB_DIR "broadcom/"
67#else
68#define DTB_DIR ""
69#endif
70
Stephen Warrenbe8efec2015-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 Warren26683852015-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 Warrena33dc8b2016-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 Warrenbe8efec2015-12-04 22:07:44 -070080 */
Stephen Warren26683852015-12-04 22:07:45 -070081struct rpi_model {
Stephen Warrencd210c12014-11-18 21:40:21 -070082 const char *name;
83 const char *fdtfile;
Stephen Warrenb2fa38362014-12-05 20:56:46 -070084 bool has_onboard_eth;
Stephen Warren26683852015-12-04 22:07:45 -070085};
86
87static const struct rpi_model rpi_model_unknown = {
88 "Unknown model",
Tuomas Tynkkynen9266d1d2017-01-23 01:34:39 +020089 DTB_DIR "bcm283x-rpi-other.dtb",
Stephen Warren26683852015-12-04 22:07:45 -070090 false,
91};
92
93static const struct rpi_model rpi_models_new_scheme[] = {
Stephen Warrenbe8efec2015-12-04 22:07:44 -070094 [0x4] = {
Stephen Warrendc7ea682015-02-16 12:16:15 -070095 "2 Model B",
Tuomas Tynkkynen9266d1d2017-01-23 01:34:39 +020096 DTB_DIR "bcm2836-rpi-2-b.dtb",
Stephen Warrendc7ea682015-02-16 12:16:15 -070097 true,
98 },
Stephen Warren303244a2016-03-24 22:15:18 -060099 [0x8] = {
100 "3 Model B",
Tuomas Tynkkynen9266d1d2017-01-23 01:34:39 +0200101 DTB_DIR "bcm2837-rpi-3-b.dtb",
Stephen Warren303244a2016-03-24 22:15:18 -0600102 true,
103 },
Stephen Warren2f1f20b2015-12-04 22:07:46 -0700104 [0x9] = {
105 "Zero",
Tuomas Tynkkynen9266d1d2017-01-23 01:34:39 +0200106 DTB_DIR "bcm2835-rpi-zero.dtb",
Stephen Warren2f1f20b2015-12-04 22:07:46 -0700107 false,
108 },
Dmitry Korunov3f887412017-11-26 13:38:53 +0400109 [0xC] = {
110 "Zero W",
111 DTB_DIR "bcm2835-rpi-zero-w.dtb",
112 false,
113 },
Alexander Grafd0043a02018-03-15 15:05:37 +0100114 [0xD] = {
115 "3 Model B+",
116 DTB_DIR "bcm2837-rpi-3-b-plus.dtb",
117 true,
118 },
Stephen Warren26683852015-12-04 22:07:45 -0700119};
120
121static const struct rpi_model rpi_models_old_scheme[] = {
Stephen Warrenbe8efec2015-12-04 22:07:44 -0700122 [0x2] = {
Lubomir Rintelc44f76e2016-01-29 09:35:52 +0100123 "Model B",
Tuomas Tynkkynen9266d1d2017-01-23 01:34:39 +0200124 DTB_DIR "bcm2835-rpi-b.dtb",
Stephen Warrenb2fa38362014-12-05 20:56:46 -0700125 true,
Stephen Warrencd210c12014-11-18 21:40:21 -0700126 },
Stephen Warrenbe8efec2015-12-04 22:07:44 -0700127 [0x3] = {
Lubomir Rintelc44f76e2016-01-29 09:35:52 +0100128 "Model B",
Tuomas Tynkkynen9266d1d2017-01-23 01:34:39 +0200129 DTB_DIR "bcm2835-rpi-b.dtb",
Stephen Warrenb2fa38362014-12-05 20:56:46 -0700130 true,
Stephen Warrencd210c12014-11-18 21:40:21 -0700131 },
Stephen Warrenbe8efec2015-12-04 22:07:44 -0700132 [0x4] = {
Lubomir Rintelc44f76e2016-01-29 09:35:52 +0100133 "Model B rev2",
Tuomas Tynkkynen9266d1d2017-01-23 01:34:39 +0200134 DTB_DIR "bcm2835-rpi-b-rev2.dtb",
Stephen Warrenb2fa38362014-12-05 20:56:46 -0700135 true,
Stephen Warrencd210c12014-11-18 21:40:21 -0700136 },
Stephen Warrenbe8efec2015-12-04 22:07:44 -0700137 [0x5] = {
Lubomir Rintelc44f76e2016-01-29 09:35:52 +0100138 "Model B rev2",
Tuomas Tynkkynen9266d1d2017-01-23 01:34:39 +0200139 DTB_DIR "bcm2835-rpi-b-rev2.dtb",
Stephen Warrenb2fa38362014-12-05 20:56:46 -0700140 true,
Stephen Warrencd210c12014-11-18 21:40:21 -0700141 },
Stephen Warrenbe8efec2015-12-04 22:07:44 -0700142 [0x6] = {
Lubomir Rintelc44f76e2016-01-29 09:35:52 +0100143 "Model B rev2",
Tuomas Tynkkynen9266d1d2017-01-23 01:34:39 +0200144 DTB_DIR "bcm2835-rpi-b-rev2.dtb",
Stephen Warrenb2fa38362014-12-05 20:56:46 -0700145 true,
Stephen Warrencd210c12014-11-18 21:40:21 -0700146 },
Stephen Warrenbe8efec2015-12-04 22:07:44 -0700147 [0x7] = {
Stephen Warrencd210c12014-11-18 21:40:21 -0700148 "Model A",
Tuomas Tynkkynen9266d1d2017-01-23 01:34:39 +0200149 DTB_DIR "bcm2835-rpi-a.dtb",
Stephen Warrenb2fa38362014-12-05 20:56:46 -0700150 false,
Stephen Warrencd210c12014-11-18 21:40:21 -0700151 },
Stephen Warrenbe8efec2015-12-04 22:07:44 -0700152 [0x8] = {
Stephen Warrencd210c12014-11-18 21:40:21 -0700153 "Model A",
Tuomas Tynkkynen9266d1d2017-01-23 01:34:39 +0200154 DTB_DIR "bcm2835-rpi-a.dtb",
Stephen Warrenb2fa38362014-12-05 20:56:46 -0700155 false,
Stephen Warrencd210c12014-11-18 21:40:21 -0700156 },
Stephen Warrenbe8efec2015-12-04 22:07:44 -0700157 [0x9] = {
Stephen Warrencd210c12014-11-18 21:40:21 -0700158 "Model A",
Tuomas Tynkkynen9266d1d2017-01-23 01:34:39 +0200159 DTB_DIR "bcm2835-rpi-a.dtb",
Stephen Warrenb2fa38362014-12-05 20:56:46 -0700160 false,
Stephen Warrencd210c12014-11-18 21:40:21 -0700161 },
Stephen Warrenbe8efec2015-12-04 22:07:44 -0700162 [0xd] = {
Stephen Warrencd210c12014-11-18 21:40:21 -0700163 "Model B rev2",
Tuomas Tynkkynen9266d1d2017-01-23 01:34:39 +0200164 DTB_DIR "bcm2835-rpi-b-rev2.dtb",
Stephen Warrenb2fa38362014-12-05 20:56:46 -0700165 true,
Stephen Warrencd210c12014-11-18 21:40:21 -0700166 },
Stephen Warrenbe8efec2015-12-04 22:07:44 -0700167 [0xe] = {
Stephen Warrencd210c12014-11-18 21:40:21 -0700168 "Model B rev2",
Tuomas Tynkkynen9266d1d2017-01-23 01:34:39 +0200169 DTB_DIR "bcm2835-rpi-b-rev2.dtb",
Stephen Warrenb2fa38362014-12-05 20:56:46 -0700170 true,
Stephen Warrencd210c12014-11-18 21:40:21 -0700171 },
Stephen Warrenbe8efec2015-12-04 22:07:44 -0700172 [0xf] = {
Stephen Warrencd210c12014-11-18 21:40:21 -0700173 "Model B rev2",
Tuomas Tynkkynen9266d1d2017-01-23 01:34:39 +0200174 DTB_DIR "bcm2835-rpi-b-rev2.dtb",
Stephen Warrenb2fa38362014-12-05 20:56:46 -0700175 true,
Stephen Warrencd210c12014-11-18 21:40:21 -0700176 },
Stephen Warrenbe8efec2015-12-04 22:07:44 -0700177 [0x10] = {
Stephen Warrencd210c12014-11-18 21:40:21 -0700178 "Model B+",
Tuomas Tynkkynen9266d1d2017-01-23 01:34:39 +0200179 DTB_DIR "bcm2835-rpi-b-plus.dtb",
Stephen Warrenb2fa38362014-12-05 20:56:46 -0700180 true,
Stephen Warrencd210c12014-11-18 21:40:21 -0700181 },
Stephen Warrenbe8efec2015-12-04 22:07:44 -0700182 [0x11] = {
Stephen Warrencd210c12014-11-18 21:40:21 -0700183 "Compute Module",
Tuomas Tynkkynen9266d1d2017-01-23 01:34:39 +0200184 DTB_DIR "bcm2835-rpi-cm.dtb",
Stephen Warrenb2fa38362014-12-05 20:56:46 -0700185 false,
Stephen Warrencd210c12014-11-18 21:40:21 -0700186 },
Stephen Warrenbe8efec2015-12-04 22:07:44 -0700187 [0x12] = {
Stephen Warren18a5fc62014-12-23 20:01:43 -0700188 "Model A+",
Tuomas Tynkkynen9266d1d2017-01-23 01:34:39 +0200189 DTB_DIR "bcm2835-rpi-a-plus.dtb",
Stephen Warren18a5fc62014-12-23 20:01:43 -0700190 false,
191 },
Stephen Warrenbe8efec2015-12-04 22:07:44 -0700192 [0x13] = {
Stephen Warren3648a852015-04-12 21:43:25 -0600193 "Model B+",
Tuomas Tynkkynen9266d1d2017-01-23 01:34:39 +0200194 DTB_DIR "bcm2835-rpi-b-plus.dtb",
Stephen Warren3648a852015-04-12 21:43:25 -0600195 true,
196 },
Stephen Warrenbe8efec2015-12-04 22:07:44 -0700197 [0x14] = {
Stephen Warren3648a852015-04-12 21:43:25 -0600198 "Compute Module",
Tuomas Tynkkynen9266d1d2017-01-23 01:34:39 +0200199 DTB_DIR "bcm2835-rpi-cm.dtb",
Stephen Warren3648a852015-04-12 21:43:25 -0600200 false,
201 },
Stephen Warrenbe8efec2015-12-04 22:07:44 -0700202 [0x15] = {
Lubomir Rintelc87458c2015-10-14 17:17:54 +0200203 "Model A+",
Tuomas Tynkkynen9266d1d2017-01-23 01:34:39 +0200204 DTB_DIR "bcm2835-rpi-a-plus.dtb",
Lubomir Rintelc87458c2015-10-14 17:17:54 +0200205 false,
206 },
Stephen Warrencd210c12014-11-18 21:40:21 -0700207};
208
Stephen Warren26683852015-12-04 22:07:45 -0700209static uint32_t revision;
210static uint32_t rev_scheme;
211static uint32_t rev_type;
212static const struct rpi_model *model;
Stephen Warrencd210c12014-11-18 21:40:21 -0700213
Stephen Warren93ea5262016-04-01 21:14:15 -0600214#ifdef CONFIG_ARM64
215static struct mm_region bcm2837_mem_map[] = {
216 {
York Sunc7104e52016-06-24 16:46:22 -0700217 .virt = 0x00000000UL,
218 .phys = 0x00000000UL,
Stephen Warren93ea5262016-04-01 21:14:15 -0600219 .size = 0x3f000000UL,
220 .attrs = PTE_BLOCK_MEMTYPE(MT_NORMAL) |
221 PTE_BLOCK_INNER_SHARE
222 }, {
York Sunc7104e52016-06-24 16:46:22 -0700223 .virt = 0x3f000000UL,
224 .phys = 0x3f000000UL,
Stephen Warren93ea5262016-04-01 21:14:15 -0600225 .size = 0x01000000UL,
226 .attrs = PTE_BLOCK_MEMTYPE(MT_DEVICE_NGNRNE) |
227 PTE_BLOCK_NON_SHARE |
228 PTE_BLOCK_PXN | PTE_BLOCK_UXN
229 }, {
230 /* List terminator */
231 0,
232 }
233};
234
235struct mm_region *mem_map = bcm2837_mem_map;
236#endif
237
Stephen Warren0e012c32012-08-05 16:07:22 +0000238int dram_init(void)
239{
Alexander Steinc56c9472015-07-24 09:22:12 +0200240 ALLOC_CACHE_ALIGN_BUFFER(struct msg_get_arm_mem, msg, 1);
Stephen Warrenacc8bf42013-01-29 16:37:37 +0000241 int ret;
242
243 BCM2835_MBOX_INIT_HDR(msg);
244 BCM2835_MBOX_INIT_TAG(&msg->get_arm_mem, GET_ARM_MEMORY);
245
246 ret = bcm2835_mbox_call_prop(BCM2835_MBOX_PROP_CHAN, &msg->hdr);
247 if (ret) {
248 printf("bcm2835: Could not query ARM memory size\n");
249 return -1;
250 }
251
252 gd->ram_size = msg->get_arm_mem.body.resp.mem_size;
Stephen Warren0e012c32012-08-05 16:07:22 +0000253
254 return 0;
255}
256
Stephen Warrencd210c12014-11-18 21:40:21 -0700257static void set_fdtfile(void)
258{
259 const char *fdtfile;
260
Simon Glass64b723f2017-08-03 12:22:12 -0600261 if (env_get("fdtfile"))
Stephen Warrencd210c12014-11-18 21:40:21 -0700262 return;
263
Stephen Warren26683852015-12-04 22:07:45 -0700264 fdtfile = model->fdtfile;
Simon Glass6a38e412017-08-03 12:22:09 -0600265 env_set("fdtfile", fdtfile);
Stephen Warrencd210c12014-11-18 21:40:21 -0700266}
267
Cédric Schieli9473f532016-11-11 11:59:07 +0100268/*
269 * If the firmware provided a valid FDT at boot time, let's expose it in
270 * ${fdt_addr} so it may be passed unmodified to the kernel.
271 */
272static void set_fdt_addr(void)
273{
Simon Glass64b723f2017-08-03 12:22:12 -0600274 if (env_get("fdt_addr"))
Cédric Schieli9473f532016-11-11 11:59:07 +0100275 return;
276
277 if (fdt_magic(fw_dtb_pointer) != FDT_MAGIC)
278 return;
279
Simon Glass4d949a22017-08-03 12:22:10 -0600280 env_set_hex("fdt_addr", fw_dtb_pointer);
Cédric Schieli9473f532016-11-11 11:59:07 +0100281}
282
283/*
284 * Prevent relocation from stomping on a firmware provided FDT blob.
285 */
286unsigned long board_get_usable_ram_top(unsigned long total_size)
287{
288 if ((gd->ram_top - fw_dtb_pointer) > SZ_64M)
289 return gd->ram_top;
290 return fw_dtb_pointer & ~0xffff;
291}
292
Stephen Warrencd210c12014-11-18 21:40:21 -0700293static void set_usbethaddr(void)
Stephen Warrenaf6e20d2014-09-26 20:51:39 -0600294{
Alexander Steinc56c9472015-07-24 09:22:12 +0200295 ALLOC_CACHE_ALIGN_BUFFER(struct msg_get_mac_address, msg, 1);
Stephen Warrenaf6e20d2014-09-26 20:51:39 -0600296 int ret;
297
Stephen Warren26683852015-12-04 22:07:45 -0700298 if (!model->has_onboard_eth)
Stephen Warrenb2fa38362014-12-05 20:56:46 -0700299 return;
300
Simon Glass64b723f2017-08-03 12:22:12 -0600301 if (env_get("usbethaddr"))
Stephen Warrencd210c12014-11-18 21:40:21 -0700302 return;
Stephen Warrenaf6e20d2014-09-26 20:51:39 -0600303
304 BCM2835_MBOX_INIT_HDR(msg);
305 BCM2835_MBOX_INIT_TAG(&msg->get_mac_address, GET_MAC_ADDRESS);
306
307 ret = bcm2835_mbox_call_prop(BCM2835_MBOX_PROP_CHAN, &msg->hdr);
308 if (ret) {
309 printf("bcm2835: Could not query MAC address\n");
310 /* Ignore error; not critical */
Stephen Warrencd210c12014-11-18 21:40:21 -0700311 return;
Stephen Warrenaf6e20d2014-09-26 20:51:39 -0600312 }
313
Simon Glass8551d552017-08-03 12:22:11 -0600314 eth_env_set_enetaddr("usbethaddr", msg->get_mac_address.body.resp.mac);
Stephen Warrenaf6e20d2014-09-26 20:51:39 -0600315
Simon Glass64b723f2017-08-03 12:22:12 -0600316 if (!env_get("ethaddr"))
317 env_set("ethaddr", env_get("usbethaddr"));
Lubomir Rintel3ac09f82016-02-03 16:08:09 +0100318
Stephen Warrencd210c12014-11-18 21:40:21 -0700319 return;
320}
321
Guillaume GARDET25fa8602015-08-25 15:10:26 +0200322#ifdef CONFIG_ENV_VARS_UBOOT_RUNTIME_CONFIG
323static void set_board_info(void)
324{
Stephen Warren26683852015-12-04 22:07:45 -0700325 char s[11];
326
327 snprintf(s, sizeof(s), "0x%X", revision);
Simon Glass6a38e412017-08-03 12:22:09 -0600328 env_set("board_revision", s);
Stephen Warren26683852015-12-04 22:07:45 -0700329 snprintf(s, sizeof(s), "%d", rev_scheme);
Simon Glass6a38e412017-08-03 12:22:09 -0600330 env_set("board_rev_scheme", s);
Stephen Warren26683852015-12-04 22:07:45 -0700331 /* Can't rename this to board_rev_type since it's an ABI for scripts */
332 snprintf(s, sizeof(s), "0x%X", rev_type);
Simon Glass6a38e412017-08-03 12:22:09 -0600333 env_set("board_rev", s);
334 env_set("board_name", model->name);
Guillaume GARDET25fa8602015-08-25 15:10:26 +0200335}
336#endif /* CONFIG_ENV_VARS_UBOOT_RUNTIME_CONFIG */
337
Lubomir Rintel7d33bb62016-02-22 22:06:47 +0100338static void set_serial_number(void)
339{
340 ALLOC_CACHE_ALIGN_BUFFER(struct msg_get_board_serial, msg, 1);
341 int ret;
342 char serial_string[17] = { 0 };
343
Simon Glass64b723f2017-08-03 12:22:12 -0600344 if (env_get("serial#"))
Lubomir Rintel7d33bb62016-02-22 22:06:47 +0100345 return;
346
347 BCM2835_MBOX_INIT_HDR(msg);
348 BCM2835_MBOX_INIT_TAG_NO_REQ(&msg->get_board_serial, GET_BOARD_SERIAL);
349
350 ret = bcm2835_mbox_call_prop(BCM2835_MBOX_PROP_CHAN, &msg->hdr);
351 if (ret) {
352 printf("bcm2835: Could not query board serial\n");
353 /* Ignore error; not critical */
354 return;
355 }
356
357 snprintf(serial_string, sizeof(serial_string), "%016" PRIx64,
358 msg->get_board_serial.body.resp.serial);
Simon Glass6a38e412017-08-03 12:22:09 -0600359 env_set("serial#", serial_string);
Lubomir Rintel7d33bb62016-02-22 22:06:47 +0100360}
361
Stephen Warrencd210c12014-11-18 21:40:21 -0700362int misc_init_r(void)
363{
Cédric Schieli9473f532016-11-11 11:59:07 +0100364 set_fdt_addr();
Stephen Warrencd210c12014-11-18 21:40:21 -0700365 set_fdtfile();
366 set_usbethaddr();
Guillaume GARDET25fa8602015-08-25 15:10:26 +0200367#ifdef CONFIG_ENV_VARS_UBOOT_RUNTIME_CONFIG
368 set_board_info();
369#endif
Lubomir Rintel7d33bb62016-02-22 22:06:47 +0100370 set_serial_number();
371
Stephen Warrenaf6e20d2014-09-26 20:51:39 -0600372 return 0;
373}
374
Stephen Warrencd210c12014-11-18 21:40:21 -0700375static void get_board_rev(void)
376{
Alexander Steinc56c9472015-07-24 09:22:12 +0200377 ALLOC_CACHE_ALIGN_BUFFER(struct msg_get_board_rev, msg, 1);
Stephen Warrencd210c12014-11-18 21:40:21 -0700378 int ret;
Stephen Warren26683852015-12-04 22:07:45 -0700379 const struct rpi_model *models;
380 uint32_t models_count;
Stephen Warrencd210c12014-11-18 21:40:21 -0700381
382 BCM2835_MBOX_INIT_HDR(msg);
383 BCM2835_MBOX_INIT_TAG(&msg->get_board_rev, GET_BOARD_REV);
384
385 ret = bcm2835_mbox_call_prop(BCM2835_MBOX_PROP_CHAN, &msg->hdr);
386 if (ret) {
387 printf("bcm2835: Could not query board revision\n");
388 /* Ignore error; not critical */
389 return;
390 }
391
Stephen Warrendc7ea682015-02-16 12:16:15 -0700392 /*
393 * For details of old-vs-new scheme, see:
394 * https://github.com/pimoroni/RPi.version/blob/master/RPi/version.py
395 * http://www.raspberrypi.org/forums/viewtopic.php?f=63&t=99293&p=690282
396 * (a few posts down)
Stephen Warrenb834af82015-03-23 23:00:25 -0600397 *
398 * For the RPi 1, bit 24 is the "warranty bit", so we mask off just the
399 * lower byte to use as the board rev:
400 * http://www.raspberrypi.org/forums/viewtopic.php?f=63&t=98367&start=250
401 * http://www.raspberrypi.org/forums/viewtopic.php?f=31&t=20594
Stephen Warrendc7ea682015-02-16 12:16:15 -0700402 */
Stephen Warren26683852015-12-04 22:07:45 -0700403 revision = msg->get_board_rev.body.resp.rev;
404 if (revision & 0x800000) {
405 rev_scheme = 1;
406 rev_type = (revision >> 4) & 0xff;
407 models = rpi_models_new_scheme;
408 models_count = ARRAY_SIZE(rpi_models_new_scheme);
409 } else {
410 rev_scheme = 0;
411 rev_type = revision & 0xff;
412 models = rpi_models_old_scheme;
413 models_count = ARRAY_SIZE(rpi_models_old_scheme);
Stephen Warren18a5fc62014-12-23 20:01:43 -0700414 }
Stephen Warren26683852015-12-04 22:07:45 -0700415 if (rev_type >= models_count) {
416 printf("RPI: Board rev 0x%x outside known range\n", rev_type);
417 model = &rpi_model_unknown;
418 } else if (!models[rev_type].name) {
419 printf("RPI: Board rev 0x%x unknown\n", rev_type);
420 model = &rpi_model_unknown;
421 } else {
422 model = &models[rev_type];
Stephen Warren18a5fc62014-12-23 20:01:43 -0700423 }
Stephen Warrenc61dfd12014-12-23 20:01:44 -0700424
Stephen Warren26683852015-12-04 22:07:45 -0700425 printf("RPI %s (0x%x)\n", model->name, revision);
Stephen Warrencd210c12014-11-18 21:40:21 -0700426}
427
Fabian Vogt1d317b72016-09-26 14:26:50 +0200428int board_init(void)
Alexander Grafafb99072016-08-15 17:48:51 +0200429{
Paolo Pisati6213c552017-02-10 17:28:05 +0100430#ifdef CONFIG_HW_WATCHDOG
431 hw_watchdog_init();
432#endif
Alexander Grafafb99072016-08-15 17:48:51 +0200433
Fabian Vogt1d317b72016-09-26 14:26:50 +0200434 get_board_rev();
435
436 gd->bd->bi_boot_params = 0x100;
437
Simon Glass558ec672017-04-05 16:23:36 -0600438 return bcm2835_power_on_module(BCM2835_MBOX_POWER_DEVID_USB_HCD);
Alexander Grafafb99072016-08-15 17:48:51 +0200439}
440
Alex Deymo5b661ec2017-04-02 01:25:20 -0700441/*
442 * If the firmware passed a device tree use it for U-Boot.
443 */
444void *board_fdt_blob_setup(void)
445{
446 if (fdt_magic(fw_dtb_pointer) != FDT_MAGIC)
447 return NULL;
448 return (void *)fw_dtb_pointer;
449}
450
Simon Glass2aec3cc2014-10-23 18:58:47 -0600451int ft_board_setup(void *blob, bd_t *bd)
Stephen Warrenaa44d532013-05-27 18:31:18 +0000452{
453 /*
454 * For now, we simply always add the simplefb DT node. Later, we
455 * should be more intelligent, and e.g. only do this if no enabled DT
456 * node exists for the "real" graphics driver.
457 */
458 lcd_dt_simplefb_add_node(blob);
Simon Glass2aec3cc2014-10-23 18:58:47 -0600459
Alexander Graf013e9ae2016-11-02 10:36:20 +0100460#ifdef CONFIG_EFI_LOADER
461 /* Reserve the spin table */
462 efi_add_memory_map(0, 1, EFI_RESERVED_MEMORY_TYPE, 0);
463#endif
464
Simon Glass2aec3cc2014-10-23 18:58:47 -0600465 return 0;
Stephen Warrenaa44d532013-05-27 18:31:18 +0000466}