blob: ab5ea85cf9f84c5e454974acd7532af8ee821b46 [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
Stephen Warrenea697ae2013-05-27 18:31:18 +00006#include <config.h>
Simon Glass41e98e02014-09-22 17:30:56 -06007#include <dm.h>
Simon Glassc7694dd2019-08-01 09:46:46 -06008#include <env.h>
Alexander Graf1bcf7a32016-11-02 10:36:20 +01009#include <efi_loader.h>
Jeroen Hofstee5dfd1622014-07-13 22:01:51 +020010#include <fdt_support.h>
Nikita Kiryanov033167c2015-02-03 13:32:31 +020011#include <fdt_simplefb.h>
Simon Glass67c4e9f2019-11-14 12:57:45 -070012#include <init.h>
Simon Glasscf92e052015-09-02 17:24:58 -060013#include <memalign.h>
Jeroen Hofstee5dfd1622014-07-13 22:01:51 +020014#include <mmc.h>
Simon Glass41e98e02014-09-22 17:30:56 -060015#include <asm/gpio.h>
Stephen Warren3f397782013-01-29 16:37:37 +000016#include <asm/arch/mbox.h>
Simon Glass70997d82017-04-05 16:23:36 -060017#include <asm/arch/msg.h>
Stephen Warren131a1e62013-01-29 16:37:42 +000018#include <asm/arch/sdhci.h>
Stephen Warren0d04f342012-08-05 16:07:22 +000019#include <asm/global_data.h>
Stephen Warrenf031f502016-03-24 22:15:20 -060020#include <dm/platform_data/serial_bcm283x_mu.h>
Stephen Warrend22a7652016-04-01 21:14:15 -060021#ifdef CONFIG_ARM64
22#include <asm/armv8/mmu.h>
23#endif
Paolo Pisati45a6d232017-02-10 17:28:05 +010024#include <watchdog.h>
Alexander Grafcaf22332018-01-23 18:05:21 +010025#include <dm/pinctrl.h>
Stephen Warren0d04f342012-08-05 16:07:22 +000026
27DECLARE_GLOBAL_DATA_PTR;
28
Matthias Brugger37964492019-11-19 16:01:02 +010029/* Assigned in lowlevel_init.S
30 * Push the variable into the .data section so that it
31 * does not get cleared later.
32 */
33unsigned long __section(".data") fw_dtb_pointer;
Cédric Schieliade243a2016-11-11 11:59:07 +010034
Simon Glass3e167052017-04-05 16:23:45 -060035/* TODO(sjg@chromium.org): Move these to the msg.c file */
Stephen Warren3f397782013-01-29 16:37:37 +000036struct msg_get_arm_mem {
37 struct bcm2835_mbox_hdr hdr;
38 struct bcm2835_mbox_tag_get_arm_mem get_arm_mem;
39 u32 end_tag;
40};
41
Stephen Warren6fe78452014-11-18 21:40:21 -070042struct msg_get_board_rev {
43 struct bcm2835_mbox_hdr hdr;
44 struct bcm2835_mbox_tag_get_board_rev get_board_rev;
45 u32 end_tag;
46};
47
Lubomir Rintel757cd142016-02-22 22:06:47 +010048struct msg_get_board_serial {
49 struct bcm2835_mbox_hdr hdr;
50 struct bcm2835_mbox_tag_get_board_serial get_board_serial;
51 u32 end_tag;
52};
53
Stephen Warren4f80a062014-09-26 20:51:39 -060054struct msg_get_mac_address {
55 struct bcm2835_mbox_hdr hdr;
56 struct bcm2835_mbox_tag_get_mac_address get_mac_address;
57 u32 end_tag;
58};
59
Stephen Warren131a1e62013-01-29 16:37:42 +000060struct msg_get_clock_rate {
61 struct bcm2835_mbox_hdr hdr;
62 struct bcm2835_mbox_tag_get_clock_rate get_clock_rate;
63 u32 end_tag;
64};
65
Tuomas Tynkkynen5d3c4ba2017-01-23 01:34:39 +020066#ifdef CONFIG_ARM64
67#define DTB_DIR "broadcom/"
68#else
69#define DTB_DIR ""
70#endif
71
Stephen Warrendbe6f1e2015-12-04 22:07:44 -070072/*
Peter Robinson3ede1a62021-11-21 17:03:45 +000073 * https://www.raspberrypi.com/documentation/computers/raspberry-pi.html#raspberry-pi-revision-codes
Stephen Warrendbe6f1e2015-12-04 22:07:44 -070074 */
Stephen Warrenc4ea1ed2015-12-04 22:07:45 -070075struct rpi_model {
Stephen Warren6fe78452014-11-18 21:40:21 -070076 const char *name;
77 const char *fdtfile;
Stephen Warren3207d8f2014-12-05 20:56:46 -070078 bool has_onboard_eth;
Stephen Warrenc4ea1ed2015-12-04 22:07:45 -070079};
80
81static const struct rpi_model rpi_model_unknown = {
82 "Unknown model",
Tuomas Tynkkynen5d3c4ba2017-01-23 01:34:39 +020083 DTB_DIR "bcm283x-rpi-other.dtb",
Stephen Warrenc4ea1ed2015-12-04 22:07:45 -070084 false,
85};
86
87static const struct rpi_model rpi_models_new_scheme[] = {
Jonathan Gray91e1bc52018-04-06 18:45:49 +100088 [0x0] = {
89 "Model A",
90 DTB_DIR "bcm2835-rpi-a.dtb",
91 false,
92 },
93 [0x1] = {
94 "Model B",
95 DTB_DIR "bcm2835-rpi-b.dtb",
96 true,
97 },
98 [0x2] = {
99 "Model A+",
100 DTB_DIR "bcm2835-rpi-a-plus.dtb",
101 false,
102 },
103 [0x3] = {
104 "Model B+",
105 DTB_DIR "bcm2835-rpi-b-plus.dtb",
106 true,
107 },
Stephen Warrendbe6f1e2015-12-04 22:07:44 -0700108 [0x4] = {
Stephen Warren46414292015-02-16 12:16:15 -0700109 "2 Model B",
Tuomas Tynkkynen5d3c4ba2017-01-23 01:34:39 +0200110 DTB_DIR "bcm2836-rpi-2-b.dtb",
Stephen Warren46414292015-02-16 12:16:15 -0700111 true,
112 },
Jonathan Gray91e1bc52018-04-06 18:45:49 +1000113 [0x6] = {
114 "Compute Module",
115 DTB_DIR "bcm2835-rpi-cm.dtb",
116 false,
117 },
Stephen Warren7233fb32016-03-24 22:15:18 -0600118 [0x8] = {
119 "3 Model B",
Tuomas Tynkkynen5d3c4ba2017-01-23 01:34:39 +0200120 DTB_DIR "bcm2837-rpi-3-b.dtb",
Stephen Warren7233fb32016-03-24 22:15:18 -0600121 true,
122 },
Stephen Warrenaf7c03e2015-12-04 22:07:46 -0700123 [0x9] = {
124 "Zero",
Tuomas Tynkkynen5d3c4ba2017-01-23 01:34:39 +0200125 DTB_DIR "bcm2835-rpi-zero.dtb",
Stephen Warrenaf7c03e2015-12-04 22:07:46 -0700126 false,
127 },
Jonathan Gray91e1bc52018-04-06 18:45:49 +1000128 [0xA] = {
129 "Compute Module 3",
130 DTB_DIR "bcm2837-rpi-cm3.dtb",
131 false,
132 },
Dmitry Korunov89930562017-11-26 13:38:53 +0400133 [0xC] = {
134 "Zero W",
135 DTB_DIR "bcm2835-rpi-zero-w.dtb",
136 false,
137 },
Alexander Graf7fe77222018-03-15 15:05:37 +0100138 [0xD] = {
139 "3 Model B+",
140 DTB_DIR "bcm2837-rpi-3-b-plus.dtb",
141 true,
142 },
Jonathan Grayd61cf132018-11-16 23:07:39 +1100143 [0xE] = {
144 "3 Model A+",
145 DTB_DIR "bcm2837-rpi-3-a-plus.dtb",
146 false,
147 },
Jonathan Gray7e2ae622019-01-31 09:24:44 +1100148 [0x10] = {
149 "Compute Module 3+",
150 DTB_DIR "bcm2837-rpi-cm3.dtb",
151 false,
152 },
Andrei Gherzan32a84c92019-07-24 15:39:07 +0100153 [0x11] = {
154 "4 Model B",
155 DTB_DIR "bcm2711-rpi-4-b.dtb",
156 true,
157 },
Peter Robinson5e7e6612021-11-21 17:03:46 +0000158 [0x12] = {
159 "Zero 2 W",
Peter Robinson0e8c9402023-02-28 10:17:26 +0000160 DTB_DIR "bcm2837-rpi-zero-2-w.dtb",
Peter Robinson5e7e6612021-11-21 17:03:46 +0000161 false,
162 },
Nicolas Saenz Juliennef10f5362021-01-12 13:55:19 +0100163 [0x13] = {
164 "400",
165 DTB_DIR "bcm2711-rpi-400.dtb",
166 true,
167 },
Nicolas Saenz Julienne561bce32021-01-12 13:55:20 +0100168 [0x14] = {
169 "Compute Module 4",
170 DTB_DIR "bcm2711-rpi-cm4.dtb",
171 true,
172 },
Ivan T. Ivanov08a5b4b2024-01-23 10:07:55 +0200173 [0x17] = {
174 "5 Model B",
175 DTB_DIR "bcm2712-rpi-5-b.dtb",
176 true,
177 },
Stephen Warrenc4ea1ed2015-12-04 22:07:45 -0700178};
179
180static const struct rpi_model rpi_models_old_scheme[] = {
Stephen Warrendbe6f1e2015-12-04 22:07:44 -0700181 [0x2] = {
Lubomir Rintel7443a9c2016-01-29 09:35:52 +0100182 "Model B",
Tuomas Tynkkynen5d3c4ba2017-01-23 01:34:39 +0200183 DTB_DIR "bcm2835-rpi-b.dtb",
Stephen Warren3207d8f2014-12-05 20:56:46 -0700184 true,
Stephen Warren6fe78452014-11-18 21:40:21 -0700185 },
Stephen Warrendbe6f1e2015-12-04 22:07:44 -0700186 [0x3] = {
Lubomir Rintel7443a9c2016-01-29 09:35:52 +0100187 "Model B",
Tuomas Tynkkynen5d3c4ba2017-01-23 01:34:39 +0200188 DTB_DIR "bcm2835-rpi-b.dtb",
Stephen Warren3207d8f2014-12-05 20:56:46 -0700189 true,
Stephen Warren6fe78452014-11-18 21:40:21 -0700190 },
Stephen Warrendbe6f1e2015-12-04 22:07:44 -0700191 [0x4] = {
Lubomir Rintel7443a9c2016-01-29 09:35:52 +0100192 "Model B rev2",
Tuomas Tynkkynen5d3c4ba2017-01-23 01:34:39 +0200193 DTB_DIR "bcm2835-rpi-b-rev2.dtb",
Stephen Warren3207d8f2014-12-05 20:56:46 -0700194 true,
Stephen Warren6fe78452014-11-18 21:40:21 -0700195 },
Stephen Warrendbe6f1e2015-12-04 22:07:44 -0700196 [0x5] = {
Lubomir Rintel7443a9c2016-01-29 09:35:52 +0100197 "Model B rev2",
Tuomas Tynkkynen5d3c4ba2017-01-23 01:34:39 +0200198 DTB_DIR "bcm2835-rpi-b-rev2.dtb",
Stephen Warren3207d8f2014-12-05 20:56:46 -0700199 true,
Stephen Warren6fe78452014-11-18 21:40:21 -0700200 },
Stephen Warrendbe6f1e2015-12-04 22:07:44 -0700201 [0x6] = {
Lubomir Rintel7443a9c2016-01-29 09:35:52 +0100202 "Model B rev2",
Tuomas Tynkkynen5d3c4ba2017-01-23 01:34:39 +0200203 DTB_DIR "bcm2835-rpi-b-rev2.dtb",
Stephen Warren3207d8f2014-12-05 20:56:46 -0700204 true,
Stephen Warren6fe78452014-11-18 21:40:21 -0700205 },
Stephen Warrendbe6f1e2015-12-04 22:07:44 -0700206 [0x7] = {
Stephen Warren6fe78452014-11-18 21:40:21 -0700207 "Model A",
Tuomas Tynkkynen5d3c4ba2017-01-23 01:34:39 +0200208 DTB_DIR "bcm2835-rpi-a.dtb",
Stephen Warren3207d8f2014-12-05 20:56:46 -0700209 false,
Stephen Warren6fe78452014-11-18 21:40:21 -0700210 },
Stephen Warrendbe6f1e2015-12-04 22:07:44 -0700211 [0x8] = {
Stephen Warren6fe78452014-11-18 21:40:21 -0700212 "Model A",
Tuomas Tynkkynen5d3c4ba2017-01-23 01:34:39 +0200213 DTB_DIR "bcm2835-rpi-a.dtb",
Stephen Warren3207d8f2014-12-05 20:56:46 -0700214 false,
Stephen Warren6fe78452014-11-18 21:40:21 -0700215 },
Stephen Warrendbe6f1e2015-12-04 22:07:44 -0700216 [0x9] = {
Stephen Warren6fe78452014-11-18 21:40:21 -0700217 "Model A",
Tuomas Tynkkynen5d3c4ba2017-01-23 01:34:39 +0200218 DTB_DIR "bcm2835-rpi-a.dtb",
Stephen Warren3207d8f2014-12-05 20:56:46 -0700219 false,
Stephen Warren6fe78452014-11-18 21:40:21 -0700220 },
Stephen Warrendbe6f1e2015-12-04 22:07:44 -0700221 [0xd] = {
Stephen Warren6fe78452014-11-18 21:40:21 -0700222 "Model B rev2",
Tuomas Tynkkynen5d3c4ba2017-01-23 01:34:39 +0200223 DTB_DIR "bcm2835-rpi-b-rev2.dtb",
Stephen Warren3207d8f2014-12-05 20:56:46 -0700224 true,
Stephen Warren6fe78452014-11-18 21:40:21 -0700225 },
Stephen Warrendbe6f1e2015-12-04 22:07:44 -0700226 [0xe] = {
Stephen Warren6fe78452014-11-18 21:40:21 -0700227 "Model B rev2",
Tuomas Tynkkynen5d3c4ba2017-01-23 01:34:39 +0200228 DTB_DIR "bcm2835-rpi-b-rev2.dtb",
Stephen Warren3207d8f2014-12-05 20:56:46 -0700229 true,
Stephen Warren6fe78452014-11-18 21:40:21 -0700230 },
Stephen Warrendbe6f1e2015-12-04 22:07:44 -0700231 [0xf] = {
Stephen Warren6fe78452014-11-18 21:40:21 -0700232 "Model B rev2",
Tuomas Tynkkynen5d3c4ba2017-01-23 01:34:39 +0200233 DTB_DIR "bcm2835-rpi-b-rev2.dtb",
Stephen Warren3207d8f2014-12-05 20:56:46 -0700234 true,
Stephen Warren6fe78452014-11-18 21:40:21 -0700235 },
Stephen Warrendbe6f1e2015-12-04 22:07:44 -0700236 [0x10] = {
Stephen Warren6fe78452014-11-18 21:40:21 -0700237 "Model B+",
Tuomas Tynkkynen5d3c4ba2017-01-23 01:34:39 +0200238 DTB_DIR "bcm2835-rpi-b-plus.dtb",
Stephen Warren3207d8f2014-12-05 20:56:46 -0700239 true,
Stephen Warren6fe78452014-11-18 21:40:21 -0700240 },
Stephen Warrendbe6f1e2015-12-04 22:07:44 -0700241 [0x11] = {
Stephen Warren6fe78452014-11-18 21:40:21 -0700242 "Compute Module",
Tuomas Tynkkynen5d3c4ba2017-01-23 01:34:39 +0200243 DTB_DIR "bcm2835-rpi-cm.dtb",
Stephen Warren3207d8f2014-12-05 20:56:46 -0700244 false,
Stephen Warren6fe78452014-11-18 21:40:21 -0700245 },
Stephen Warrendbe6f1e2015-12-04 22:07:44 -0700246 [0x12] = {
Stephen Warren47705ef2014-12-23 20:01:43 -0700247 "Model A+",
Tuomas Tynkkynen5d3c4ba2017-01-23 01:34:39 +0200248 DTB_DIR "bcm2835-rpi-a-plus.dtb",
Stephen Warren47705ef2014-12-23 20:01:43 -0700249 false,
250 },
Stephen Warrendbe6f1e2015-12-04 22:07:44 -0700251 [0x13] = {
Stephen Warren787affb2015-04-12 21:43:25 -0600252 "Model B+",
Tuomas Tynkkynen5d3c4ba2017-01-23 01:34:39 +0200253 DTB_DIR "bcm2835-rpi-b-plus.dtb",
Stephen Warren787affb2015-04-12 21:43:25 -0600254 true,
255 },
Stephen Warrendbe6f1e2015-12-04 22:07:44 -0700256 [0x14] = {
Stephen Warren787affb2015-04-12 21:43:25 -0600257 "Compute Module",
Tuomas Tynkkynen5d3c4ba2017-01-23 01:34:39 +0200258 DTB_DIR "bcm2835-rpi-cm.dtb",
Stephen Warren787affb2015-04-12 21:43:25 -0600259 false,
260 },
Stephen Warrendbe6f1e2015-12-04 22:07:44 -0700261 [0x15] = {
Lubomir Rintel79ad5ce2015-10-14 17:17:54 +0200262 "Model A+",
Tuomas Tynkkynen5d3c4ba2017-01-23 01:34:39 +0200263 DTB_DIR "bcm2835-rpi-a-plus.dtb",
Lubomir Rintel79ad5ce2015-10-14 17:17:54 +0200264 false,
265 },
Stephen Warren6fe78452014-11-18 21:40:21 -0700266};
267
Stephen Warrenc4ea1ed2015-12-04 22:07:45 -0700268static uint32_t revision;
269static uint32_t rev_scheme;
270static uint32_t rev_type;
271static const struct rpi_model *model;
Stephen Warren6fe78452014-11-18 21:40:21 -0700272
Stephen Warren0d04f342012-08-05 16:07:22 +0000273int dram_init(void)
274{
Alexander Stein927753a2015-07-24 09:22:12 +0200275 ALLOC_CACHE_ALIGN_BUFFER(struct msg_get_arm_mem, msg, 1);
Stephen Warren3f397782013-01-29 16:37:37 +0000276 int ret;
277
278 BCM2835_MBOX_INIT_HDR(msg);
279 BCM2835_MBOX_INIT_TAG(&msg->get_arm_mem, GET_ARM_MEMORY);
280
281 ret = bcm2835_mbox_call_prop(BCM2835_MBOX_PROP_CHAN, &msg->hdr);
282 if (ret) {
283 printf("bcm2835: Could not query ARM memory size\n");
284 return -1;
285 }
286
287 gd->ram_size = msg->get_arm_mem.body.resp.mem_size;
Stephen Warren0d04f342012-08-05 16:07:22 +0000288
Marek Szyprowski6b3d18c2021-02-01 12:16:33 +0100289 /*
290 * In some configurations the memory size returned by VideoCore
291 * is not aligned to the section size, what is mandatory for
292 * the u-boot's memory setup.
293 */
294 gd->ram_size &= ~MMU_SECTION_SIZE;
295
Stephen Warren0d04f342012-08-05 16:07:22 +0000296 return 0;
297}
298
Matthias Brugger9de5b892019-09-09 18:31:56 +0200299#ifdef CONFIG_OF_BOARD
Matthias Brugger9de5b892019-09-09 18:31:56 +0200300int dram_init_banksize(void)
301{
Matthias Bruggere19cfcc2019-12-05 18:53:13 +0100302 int ret;
303
304 ret = fdtdec_setup_memory_banksize();
305 if (ret)
306 return ret;
307
308 return fdtdec_setup_mem_size_base();
Matthias Brugger9de5b892019-09-09 18:31:56 +0200309}
310#endif
Matthias Brugger9de5b892019-09-09 18:31:56 +0200311
Stephen Warren6fe78452014-11-18 21:40:21 -0700312static void set_fdtfile(void)
313{
314 const char *fdtfile;
315
Simon Glass00caae62017-08-03 12:22:12 -0600316 if (env_get("fdtfile"))
Stephen Warren6fe78452014-11-18 21:40:21 -0700317 return;
318
Stephen Warrenc4ea1ed2015-12-04 22:07:45 -0700319 fdtfile = model->fdtfile;
Simon Glass382bee52017-08-03 12:22:09 -0600320 env_set("fdtfile", fdtfile);
Stephen Warren6fe78452014-11-18 21:40:21 -0700321}
322
Cédric Schieliade243a2016-11-11 11:59:07 +0100323/*
324 * If the firmware provided a valid FDT at boot time, let's expose it in
325 * ${fdt_addr} so it may be passed unmodified to the kernel.
326 */
327static void set_fdt_addr(void)
328{
Simon Glass00caae62017-08-03 12:22:12 -0600329 if (env_get("fdt_addr"))
Cédric Schieliade243a2016-11-11 11:59:07 +0100330 return;
331
332 if (fdt_magic(fw_dtb_pointer) != FDT_MAGIC)
333 return;
334
Simon Glass018f5302017-08-03 12:22:10 -0600335 env_set_hex("fdt_addr", fw_dtb_pointer);
Cédric Schieliade243a2016-11-11 11:59:07 +0100336}
337
338/*
339 * Prevent relocation from stomping on a firmware provided FDT blob.
340 */
Heinrich Schuchardtd768dd82023-08-12 20:16:58 +0200341phys_addr_t board_get_usable_ram_top(phys_size_t total_size)
Cédric Schieliade243a2016-11-11 11:59:07 +0100342{
343 if ((gd->ram_top - fw_dtb_pointer) > SZ_64M)
344 return gd->ram_top;
345 return fw_dtb_pointer & ~0xffff;
346}
347
Stephen Warren6fe78452014-11-18 21:40:21 -0700348static void set_usbethaddr(void)
Stephen Warren4f80a062014-09-26 20:51:39 -0600349{
Alexander Stein927753a2015-07-24 09:22:12 +0200350 ALLOC_CACHE_ALIGN_BUFFER(struct msg_get_mac_address, msg, 1);
Stephen Warren4f80a062014-09-26 20:51:39 -0600351 int ret;
352
Stephen Warrenc4ea1ed2015-12-04 22:07:45 -0700353 if (!model->has_onboard_eth)
Stephen Warren3207d8f2014-12-05 20:56:46 -0700354 return;
355
Simon Glass00caae62017-08-03 12:22:12 -0600356 if (env_get("usbethaddr"))
Stephen Warren6fe78452014-11-18 21:40:21 -0700357 return;
Stephen Warren4f80a062014-09-26 20:51:39 -0600358
359 BCM2835_MBOX_INIT_HDR(msg);
360 BCM2835_MBOX_INIT_TAG(&msg->get_mac_address, GET_MAC_ADDRESS);
361
362 ret = bcm2835_mbox_call_prop(BCM2835_MBOX_PROP_CHAN, &msg->hdr);
363 if (ret) {
364 printf("bcm2835: Could not query MAC address\n");
365 /* Ignore error; not critical */
Stephen Warren6fe78452014-11-18 21:40:21 -0700366 return;
Stephen Warren4f80a062014-09-26 20:51:39 -0600367 }
368
Simon Glassfd1e9592017-08-03 12:22:11 -0600369 eth_env_set_enetaddr("usbethaddr", msg->get_mac_address.body.resp.mac);
Stephen Warren4f80a062014-09-26 20:51:39 -0600370
Simon Glass00caae62017-08-03 12:22:12 -0600371 if (!env_get("ethaddr"))
372 env_set("ethaddr", env_get("usbethaddr"));
Lubomir Rintel859f1432016-02-03 16:08:09 +0100373
Stephen Warren6fe78452014-11-18 21:40:21 -0700374 return;
375}
376
Guillaume GARDETbff78562015-08-25 15:10:26 +0200377#ifdef CONFIG_ENV_VARS_UBOOT_RUNTIME_CONFIG
378static void set_board_info(void)
379{
Stephen Warrenc4ea1ed2015-12-04 22:07:45 -0700380 char s[11];
381
382 snprintf(s, sizeof(s), "0x%X", revision);
Simon Glass382bee52017-08-03 12:22:09 -0600383 env_set("board_revision", s);
Francois Berderc06687a2024-07-09 14:20:48 +0200384 snprintf(s, sizeof(s), "%u", rev_scheme);
Simon Glass382bee52017-08-03 12:22:09 -0600385 env_set("board_rev_scheme", s);
Stephen Warrenc4ea1ed2015-12-04 22:07:45 -0700386 /* Can't rename this to board_rev_type since it's an ABI for scripts */
387 snprintf(s, sizeof(s), "0x%X", rev_type);
Simon Glass382bee52017-08-03 12:22:09 -0600388 env_set("board_rev", s);
389 env_set("board_name", model->name);
Guillaume GARDETbff78562015-08-25 15:10:26 +0200390}
391#endif /* CONFIG_ENV_VARS_UBOOT_RUNTIME_CONFIG */
392
Lubomir Rintel757cd142016-02-22 22:06:47 +0100393static void set_serial_number(void)
394{
395 ALLOC_CACHE_ALIGN_BUFFER(struct msg_get_board_serial, msg, 1);
396 int ret;
397 char serial_string[17] = { 0 };
398
Simon Glass00caae62017-08-03 12:22:12 -0600399 if (env_get("serial#"))
Lubomir Rintel757cd142016-02-22 22:06:47 +0100400 return;
401
402 BCM2835_MBOX_INIT_HDR(msg);
403 BCM2835_MBOX_INIT_TAG_NO_REQ(&msg->get_board_serial, GET_BOARD_SERIAL);
404
405 ret = bcm2835_mbox_call_prop(BCM2835_MBOX_PROP_CHAN, &msg->hdr);
406 if (ret) {
407 printf("bcm2835: Could not query board serial\n");
408 /* Ignore error; not critical */
409 return;
410 }
411
Masahiro Yamadadee37fc2018-08-06 20:47:40 +0900412 snprintf(serial_string, sizeof(serial_string), "%016llx",
Lubomir Rintel757cd142016-02-22 22:06:47 +0100413 msg->get_board_serial.body.resp.serial);
Simon Glass382bee52017-08-03 12:22:09 -0600414 env_set("serial#", serial_string);
Lubomir Rintel757cd142016-02-22 22:06:47 +0100415}
416
Stephen Warren6fe78452014-11-18 21:40:21 -0700417int misc_init_r(void)
418{
Cédric Schieliade243a2016-11-11 11:59:07 +0100419 set_fdt_addr();
Stephen Warren6fe78452014-11-18 21:40:21 -0700420 set_fdtfile();
421 set_usbethaddr();
Guillaume GARDETbff78562015-08-25 15:10:26 +0200422#ifdef CONFIG_ENV_VARS_UBOOT_RUNTIME_CONFIG
423 set_board_info();
424#endif
Lubomir Rintel757cd142016-02-22 22:06:47 +0100425 set_serial_number();
426
Stephen Warren4f80a062014-09-26 20:51:39 -0600427 return 0;
428}
429
Tom Rini97744622021-08-30 09:16:30 -0400430static void get_board_revision(void)
Stephen Warren6fe78452014-11-18 21:40:21 -0700431{
Alexander Stein927753a2015-07-24 09:22:12 +0200432 ALLOC_CACHE_ALIGN_BUFFER(struct msg_get_board_rev, msg, 1);
Stephen Warren6fe78452014-11-18 21:40:21 -0700433 int ret;
Stephen Warrenc4ea1ed2015-12-04 22:07:45 -0700434 const struct rpi_model *models;
435 uint32_t models_count;
Ivan T. Ivanov08a5b4b2024-01-23 10:07:55 +0200436 ofnode node;
Stephen Warren6fe78452014-11-18 21:40:21 -0700437
438 BCM2835_MBOX_INIT_HDR(msg);
439 BCM2835_MBOX_INIT_TAG(&msg->get_board_rev, GET_BOARD_REV);
440
441 ret = bcm2835_mbox_call_prop(BCM2835_MBOX_PROP_CHAN, &msg->hdr);
442 if (ret) {
Stephen Warren6fe78452014-11-18 21:40:21 -0700443 /* Ignore error; not critical */
Ivan T. Ivanov08a5b4b2024-01-23 10:07:55 +0200444 node = ofnode_path("/system");
445 if (!ofnode_valid(node)) {
446 printf("bcm2835: Could not find /system node\n");
447 return;
448 }
449
450 ret = ofnode_read_u32(node, "linux,revision", &revision);
451 if (ret) {
452 printf("bcm2835: Could not find linux,revision\n");
453 return;
454 }
455 } else {
456 revision = msg->get_board_rev.body.resp.rev;
Stephen Warren6fe78452014-11-18 21:40:21 -0700457 }
458
Stephen Warren46414292015-02-16 12:16:15 -0700459 /*
460 * For details of old-vs-new scheme, see:
461 * https://github.com/pimoroni/RPi.version/blob/master/RPi/version.py
462 * http://www.raspberrypi.org/forums/viewtopic.php?f=63&t=99293&p=690282
463 * (a few posts down)
Stephen Warren95b4f112015-03-23 23:00:25 -0600464 *
465 * For the RPi 1, bit 24 is the "warranty bit", so we mask off just the
466 * lower byte to use as the board rev:
467 * http://www.raspberrypi.org/forums/viewtopic.php?f=63&t=98367&start=250
468 * http://www.raspberrypi.org/forums/viewtopic.php?f=31&t=20594
Stephen Warren46414292015-02-16 12:16:15 -0700469 */
Stephen Warrenc4ea1ed2015-12-04 22:07:45 -0700470 if (revision & 0x800000) {
471 rev_scheme = 1;
472 rev_type = (revision >> 4) & 0xff;
473 models = rpi_models_new_scheme;
474 models_count = ARRAY_SIZE(rpi_models_new_scheme);
475 } else {
476 rev_scheme = 0;
477 rev_type = revision & 0xff;
478 models = rpi_models_old_scheme;
479 models_count = ARRAY_SIZE(rpi_models_old_scheme);
Stephen Warren47705ef2014-12-23 20:01:43 -0700480 }
Stephen Warrenc4ea1ed2015-12-04 22:07:45 -0700481 if (rev_type >= models_count) {
482 printf("RPI: Board rev 0x%x outside known range\n", rev_type);
483 model = &rpi_model_unknown;
484 } else if (!models[rev_type].name) {
485 printf("RPI: Board rev 0x%x unknown\n", rev_type);
486 model = &rpi_model_unknown;
487 } else {
488 model = &models[rev_type];
Stephen Warren914627f2014-12-23 20:01:44 -0700489 }
Stephen Warren6fe78452014-11-18 21:40:21 -0700490
Stephen Warrenc4ea1ed2015-12-04 22:07:45 -0700491 printf("RPI %s (0x%x)\n", model->name, revision);
Stephen Warren6fe78452014-11-18 21:40:21 -0700492}
493
Fabian Vogtd8396a32016-09-26 14:26:50 +0200494int board_init(void)
Alexander Graf601147b2016-08-15 17:48:51 +0200495{
Tom Rini97744622021-08-30 09:16:30 -0400496 get_board_revision();
Fabian Vogtd8396a32016-09-26 14:26:50 +0200497
498 gd->bd->bi_boot_params = 0x100;
499
Simon Glass70997d82017-04-05 16:23:36 -0600500 return bcm2835_power_on_module(BCM2835_MBOX_POWER_DEVID_USB_HCD);
Alexander Graf601147b2016-08-15 17:48:51 +0200501}
502
Alex Deymo82f766d2017-04-02 01:25:20 -0700503/*
504 * If the firmware passed a device tree use it for U-Boot.
505 */
Ilias Apalodimase7fb7892021-10-26 09:12:33 +0300506void *board_fdt_blob_setup(int *err)
Alex Deymo82f766d2017-04-02 01:25:20 -0700507{
Ilias Apalodimase7fb7892021-10-26 09:12:33 +0300508 *err = 0;
509 if (fdt_magic(fw_dtb_pointer) != FDT_MAGIC) {
510 *err = -ENXIO;
Alex Deymo82f766d2017-04-02 01:25:20 -0700511 return NULL;
Ilias Apalodimase7fb7892021-10-26 09:12:33 +0300512 }
513
Alex Deymo82f766d2017-04-02 01:25:20 -0700514 return (void *)fw_dtb_pointer;
515}
516
Antoine Mazeas6d064242022-08-19 10:56:45 +0200517int copy_property(void *dst, void *src, char *path, char *property)
518{
519 int dst_offset, src_offset;
520 const fdt32_t *prop;
521 int len;
522
523 src_offset = fdt_path_offset(src, path);
524 dst_offset = fdt_path_offset(dst, path);
525
526 if (src_offset < 0 || dst_offset < 0)
527 return -1;
528
529 prop = fdt_getprop(src, src_offset, property, &len);
530 if (!prop)
531 return -1;
532
533 return fdt_setprop(dst, dst_offset, property, prop, len);
534}
535
536/* Copy tweaks from the firmware dtb to the loaded dtb */
537void update_fdt_from_fw(void *fdt, void *fw_fdt)
538{
539 /* Using dtb from firmware directly; leave it alone */
540 if (fdt == fw_fdt)
541 return;
542
543 /* The firmware provides a more precie model; so copy that */
544 copy_property(fdt, fw_fdt, "/", "model");
545
546 /* memory reserve as suggested by the firmware */
547 copy_property(fdt, fw_fdt, "/", "memreserve");
548
549 /* Adjust dma-ranges for the SD card and PCI bus as they can depend on
550 * the SoC revision
551 */
552 copy_property(fdt, fw_fdt, "emmc2bus", "dma-ranges");
553 copy_property(fdt, fw_fdt, "pcie0", "dma-ranges");
554
555 /* Bootloader configuration template exposes as nvmem */
556 if (copy_property(fdt, fw_fdt, "blconfig", "reg") == 0)
557 copy_property(fdt, fw_fdt, "blconfig", "status");
558
559 /* kernel address randomisation seed as provided by the firmware */
560 copy_property(fdt, fw_fdt, "/chosen", "kaslr-seed");
Antoine Mazeas4a450862022-08-19 10:56:46 +0200561
562 /* address of the PHY device as provided by the firmware */
563 copy_property(fdt, fw_fdt, "ethernet0/mdio@e14/ethernet-phy@1", "reg");
Antoine Mazeas6d064242022-08-19 10:56:45 +0200564}
565
Masahiro Yamadab75d8dc2020-06-26 15:13:33 +0900566int ft_board_setup(void *blob, struct bd_info *bd)
Stephen Warrenea697ae2013-05-27 18:31:18 +0000567{
Ivan T. Ivanovacc69872021-08-10 16:31:14 +0200568 int node;
569
Antoine Mazeas6d064242022-08-19 10:56:45 +0200570 update_fdt_from_fw(blob, (void *)fw_dtb_pointer);
571
Ivan T. Ivanovacc69872021-08-10 16:31:14 +0200572 node = fdt_node_offset_by_compatible(blob, -1, "simple-framebuffer");
573 if (node < 0)
Patrick Delaunayfded97a2021-11-15 16:32:19 +0100574 fdt_simplefb_add_node(blob);
Meng Li04cc66c2023-07-26 10:42:35 +0800575 else
576 fdt_simplefb_enable_and_mem_rsv(blob);
Simon Glasse895a4b2014-10-23 18:58:47 -0600577
Alexander Graf1bcf7a32016-11-02 10:36:20 +0100578#ifdef CONFIG_EFI_LOADER
579 /* Reserve the spin table */
Michael Walle714497e2020-05-17 12:29:19 +0200580 efi_add_memory_map(0, CONFIG_RPI_EFI_NR_SPIN_PAGES << EFI_PAGE_SHIFT,
581 EFI_RESERVED_MEMORY_TYPE);
Alexander Graf1bcf7a32016-11-02 10:36:20 +0100582#endif
583
Simon Glasse895a4b2014-10-23 18:58:47 -0600584 return 0;
Stephen Warrenea697ae2013-05-27 18:31:18 +0000585}