blob: 22e87a2a13d7465496a7dd30d3f994beab95da63 [file] [log] [blame]
Stephen Warren0d04f342012-08-05 16:07:22 +00001/*
Stephen Warrenf031f502016-03-24 22:15:20 -06002 * (C) Copyright 2012-2016 Stephen Warren
Stephen Warren0d04f342012-08-05 16:07:22 +00003 *
Stephen Warrena0331712015-02-16 12:16:13 -07004 * SPDX-License-Identifier: GPL-2.0
Stephen Warren0d04f342012-08-05 16:07:22 +00005 */
6
7#include <common.h>
Lubomir Rintel757cd142016-02-22 22:06:47 +01008#include <inttypes.h>
Stephen Warrenea697ae2013-05-27 18:31:18 +00009#include <config.h>
Simon Glass41e98e02014-09-22 17:30:56 -060010#include <dm.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>
Stephen Warren131a1e62013-01-29 16:37:42 +000019#include <asm/arch/sdhci.h>
Stephen Warren0d04f342012-08-05 16:07:22 +000020#include <asm/global_data.h>
Stephen Warrenf031f502016-03-24 22:15:20 -060021#include <dm/platform_data/serial_bcm283x_mu.h>
Stephen Warrend22a7652016-04-01 21:14:15 -060022#ifdef CONFIG_ARM64
23#include <asm/armv8/mmu.h>
24#endif
Stephen Warren0d04f342012-08-05 16:07:22 +000025
26DECLARE_GLOBAL_DATA_PTR;
27
Cédric Schieliade243a2016-11-11 11:59:07 +010028/* From lowlevel_init.S */
29extern unsigned long fw_dtb_pointer;
30
Simon Glass11506662014-11-24 21:36:34 -070031
Stephen Warren3f397782013-01-29 16:37:37 +000032struct msg_get_arm_mem {
33 struct bcm2835_mbox_hdr hdr;
34 struct bcm2835_mbox_tag_get_arm_mem get_arm_mem;
35 u32 end_tag;
36};
37
Stephen Warren6fe78452014-11-18 21:40:21 -070038struct msg_get_board_rev {
39 struct bcm2835_mbox_hdr hdr;
40 struct bcm2835_mbox_tag_get_board_rev get_board_rev;
41 u32 end_tag;
42};
43
Lubomir Rintel757cd142016-02-22 22:06:47 +010044struct msg_get_board_serial {
45 struct bcm2835_mbox_hdr hdr;
46 struct bcm2835_mbox_tag_get_board_serial get_board_serial;
47 u32 end_tag;
48};
49
Stephen Warren4f80a062014-09-26 20:51:39 -060050struct msg_get_mac_address {
51 struct bcm2835_mbox_hdr hdr;
52 struct bcm2835_mbox_tag_get_mac_address get_mac_address;
53 u32 end_tag;
54};
55
Stephen Warrenf66f2aa2014-01-13 19:50:11 -070056struct msg_set_power_state {
57 struct bcm2835_mbox_hdr hdr;
58 struct bcm2835_mbox_tag_set_power_state set_power_state;
59 u32 end_tag;
60};
61
Stephen Warren131a1e62013-01-29 16:37:42 +000062struct msg_get_clock_rate {
63 struct bcm2835_mbox_hdr hdr;
64 struct bcm2835_mbox_tag_get_clock_rate get_clock_rate;
65 u32 end_tag;
66};
67
Stephen Warrendbe6f1e2015-12-04 22:07:44 -070068/*
69 * http://raspberryalphaomega.org.uk/2013/02/06/automatic-raspberry-pi-board-revision-detection-model-a-b1-and-b2/
70 * http://www.raspberrypi.org/forums/viewtopic.php?f=63&t=32733
Stephen Warrenc4ea1ed2015-12-04 22:07:45 -070071 * 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 -070072 *
73 * In http://lists.denx.de/pipermail/u-boot/2016-January/243752.html
74 * ("[U-Boot] [PATCH] rpi: fix up Model B entries") Dom Cobley at the RPi
75 * Foundation stated that the following source was accurate:
76 * https://github.com/AndrewFromMelbourne/raspberry_pi_revision
Stephen Warrendbe6f1e2015-12-04 22:07:44 -070077 */
Stephen Warrenc4ea1ed2015-12-04 22:07:45 -070078struct rpi_model {
Stephen Warren6fe78452014-11-18 21:40:21 -070079 const char *name;
80 const char *fdtfile;
Stephen Warren3207d8f2014-12-05 20:56:46 -070081 bool has_onboard_eth;
Stephen Warrenc4ea1ed2015-12-04 22:07:45 -070082};
83
84static const struct rpi_model rpi_model_unknown = {
85 "Unknown model",
Stephen Warren29937ca2016-03-24 22:15:17 -060086 "bcm283x-rpi-other.dtb",
Stephen Warrenc4ea1ed2015-12-04 22:07:45 -070087 false,
88};
89
90static const struct rpi_model rpi_models_new_scheme[] = {
Stephen Warrendbe6f1e2015-12-04 22:07:44 -070091 [0x4] = {
Stephen Warren46414292015-02-16 12:16:15 -070092 "2 Model B",
93 "bcm2836-rpi-2-b.dtb",
94 true,
95 },
Stephen Warren7233fb32016-03-24 22:15:18 -060096 [0x8] = {
97 "3 Model B",
98 "bcm2837-rpi-3-b.dtb",
99 true,
100 },
Stephen Warrenaf7c03e2015-12-04 22:07:46 -0700101 [0x9] = {
102 "Zero",
103 "bcm2835-rpi-zero.dtb",
104 false,
105 },
Stephen Warrenc4ea1ed2015-12-04 22:07:45 -0700106};
107
108static const struct rpi_model rpi_models_old_scheme[] = {
Stephen Warrendbe6f1e2015-12-04 22:07:44 -0700109 [0x2] = {
Lubomir Rintel7443a9c2016-01-29 09:35:52 +0100110 "Model B",
111 "bcm2835-rpi-b.dtb",
Stephen Warren3207d8f2014-12-05 20:56:46 -0700112 true,
Stephen Warren6fe78452014-11-18 21:40:21 -0700113 },
Stephen Warrendbe6f1e2015-12-04 22:07:44 -0700114 [0x3] = {
Lubomir Rintel7443a9c2016-01-29 09:35:52 +0100115 "Model B",
116 "bcm2835-rpi-b.dtb",
Stephen Warren3207d8f2014-12-05 20:56:46 -0700117 true,
Stephen Warren6fe78452014-11-18 21:40:21 -0700118 },
Stephen Warrendbe6f1e2015-12-04 22:07:44 -0700119 [0x4] = {
Lubomir Rintel7443a9c2016-01-29 09:35:52 +0100120 "Model B rev2",
121 "bcm2835-rpi-b-rev2.dtb",
Stephen Warren3207d8f2014-12-05 20:56:46 -0700122 true,
Stephen Warren6fe78452014-11-18 21:40:21 -0700123 },
Stephen Warrendbe6f1e2015-12-04 22:07:44 -0700124 [0x5] = {
Lubomir Rintel7443a9c2016-01-29 09:35:52 +0100125 "Model B rev2",
126 "bcm2835-rpi-b-rev2.dtb",
Stephen Warren3207d8f2014-12-05 20:56:46 -0700127 true,
Stephen Warren6fe78452014-11-18 21:40:21 -0700128 },
Stephen Warrendbe6f1e2015-12-04 22:07:44 -0700129 [0x6] = {
Lubomir Rintel7443a9c2016-01-29 09:35:52 +0100130 "Model B rev2",
131 "bcm2835-rpi-b-rev2.dtb",
Stephen Warren3207d8f2014-12-05 20:56:46 -0700132 true,
Stephen Warren6fe78452014-11-18 21:40:21 -0700133 },
Stephen Warrendbe6f1e2015-12-04 22:07:44 -0700134 [0x7] = {
Stephen Warren6fe78452014-11-18 21:40:21 -0700135 "Model A",
136 "bcm2835-rpi-a.dtb",
Stephen Warren3207d8f2014-12-05 20:56:46 -0700137 false,
Stephen Warren6fe78452014-11-18 21:40:21 -0700138 },
Stephen Warrendbe6f1e2015-12-04 22:07:44 -0700139 [0x8] = {
Stephen Warren6fe78452014-11-18 21:40:21 -0700140 "Model A",
141 "bcm2835-rpi-a.dtb",
Stephen Warren3207d8f2014-12-05 20:56:46 -0700142 false,
Stephen Warren6fe78452014-11-18 21:40:21 -0700143 },
Stephen Warrendbe6f1e2015-12-04 22:07:44 -0700144 [0x9] = {
Stephen Warren6fe78452014-11-18 21:40:21 -0700145 "Model A",
146 "bcm2835-rpi-a.dtb",
Stephen Warren3207d8f2014-12-05 20:56:46 -0700147 false,
Stephen Warren6fe78452014-11-18 21:40:21 -0700148 },
Stephen Warrendbe6f1e2015-12-04 22:07:44 -0700149 [0xd] = {
Stephen Warren6fe78452014-11-18 21:40:21 -0700150 "Model B rev2",
151 "bcm2835-rpi-b-rev2.dtb",
Stephen Warren3207d8f2014-12-05 20:56:46 -0700152 true,
Stephen Warren6fe78452014-11-18 21:40:21 -0700153 },
Stephen Warrendbe6f1e2015-12-04 22:07:44 -0700154 [0xe] = {
Stephen Warren6fe78452014-11-18 21:40:21 -0700155 "Model B rev2",
156 "bcm2835-rpi-b-rev2.dtb",
Stephen Warren3207d8f2014-12-05 20:56:46 -0700157 true,
Stephen Warren6fe78452014-11-18 21:40:21 -0700158 },
Stephen Warrendbe6f1e2015-12-04 22:07:44 -0700159 [0xf] = {
Stephen Warren6fe78452014-11-18 21:40:21 -0700160 "Model B rev2",
161 "bcm2835-rpi-b-rev2.dtb",
Stephen Warren3207d8f2014-12-05 20:56:46 -0700162 true,
Stephen Warren6fe78452014-11-18 21:40:21 -0700163 },
Stephen Warrendbe6f1e2015-12-04 22:07:44 -0700164 [0x10] = {
Stephen Warren6fe78452014-11-18 21:40:21 -0700165 "Model B+",
166 "bcm2835-rpi-b-plus.dtb",
Stephen Warren3207d8f2014-12-05 20:56:46 -0700167 true,
Stephen Warren6fe78452014-11-18 21:40:21 -0700168 },
Stephen Warrendbe6f1e2015-12-04 22:07:44 -0700169 [0x11] = {
Stephen Warren6fe78452014-11-18 21:40:21 -0700170 "Compute Module",
171 "bcm2835-rpi-cm.dtb",
Stephen Warren3207d8f2014-12-05 20:56:46 -0700172 false,
Stephen Warren6fe78452014-11-18 21:40:21 -0700173 },
Stephen Warrendbe6f1e2015-12-04 22:07:44 -0700174 [0x12] = {
Stephen Warren47705ef2014-12-23 20:01:43 -0700175 "Model A+",
176 "bcm2835-rpi-a-plus.dtb",
177 false,
178 },
Stephen Warrendbe6f1e2015-12-04 22:07:44 -0700179 [0x13] = {
Stephen Warren787affb2015-04-12 21:43:25 -0600180 "Model B+",
181 "bcm2835-rpi-b-plus.dtb",
182 true,
183 },
Stephen Warrendbe6f1e2015-12-04 22:07:44 -0700184 [0x14] = {
Stephen Warren787affb2015-04-12 21:43:25 -0600185 "Compute Module",
186 "bcm2835-rpi-cm.dtb",
187 false,
188 },
Stephen Warrendbe6f1e2015-12-04 22:07:44 -0700189 [0x15] = {
Lubomir Rintel79ad5ce2015-10-14 17:17:54 +0200190 "Model A+",
191 "bcm2835-rpi-a-plus.dtb",
192 false,
193 },
Stephen Warren6fe78452014-11-18 21:40:21 -0700194};
195
Stephen Warrenc4ea1ed2015-12-04 22:07:45 -0700196static uint32_t revision;
197static uint32_t rev_scheme;
198static uint32_t rev_type;
199static const struct rpi_model *model;
Stephen Warren6fe78452014-11-18 21:40:21 -0700200
Stephen Warrend22a7652016-04-01 21:14:15 -0600201#ifdef CONFIG_ARM64
202static struct mm_region bcm2837_mem_map[] = {
203 {
York Suncd4b0c52016-06-24 16:46:22 -0700204 .virt = 0x00000000UL,
205 .phys = 0x00000000UL,
Stephen Warrend22a7652016-04-01 21:14:15 -0600206 .size = 0x3f000000UL,
207 .attrs = PTE_BLOCK_MEMTYPE(MT_NORMAL) |
208 PTE_BLOCK_INNER_SHARE
209 }, {
York Suncd4b0c52016-06-24 16:46:22 -0700210 .virt = 0x3f000000UL,
211 .phys = 0x3f000000UL,
Stephen Warrend22a7652016-04-01 21:14:15 -0600212 .size = 0x01000000UL,
213 .attrs = PTE_BLOCK_MEMTYPE(MT_DEVICE_NGNRNE) |
214 PTE_BLOCK_NON_SHARE |
215 PTE_BLOCK_PXN | PTE_BLOCK_UXN
216 }, {
217 /* List terminator */
218 0,
219 }
220};
221
222struct mm_region *mem_map = bcm2837_mem_map;
223#endif
224
Stephen Warren0d04f342012-08-05 16:07:22 +0000225int dram_init(void)
226{
Alexander Stein927753a2015-07-24 09:22:12 +0200227 ALLOC_CACHE_ALIGN_BUFFER(struct msg_get_arm_mem, msg, 1);
Stephen Warren3f397782013-01-29 16:37:37 +0000228 int ret;
229
230 BCM2835_MBOX_INIT_HDR(msg);
231 BCM2835_MBOX_INIT_TAG(&msg->get_arm_mem, GET_ARM_MEMORY);
232
233 ret = bcm2835_mbox_call_prop(BCM2835_MBOX_PROP_CHAN, &msg->hdr);
234 if (ret) {
235 printf("bcm2835: Could not query ARM memory size\n");
236 return -1;
237 }
238
239 gd->ram_size = msg->get_arm_mem.body.resp.mem_size;
Stephen Warren0d04f342012-08-05 16:07:22 +0000240
241 return 0;
242}
243
Stephen Warren6fe78452014-11-18 21:40:21 -0700244static void set_fdtfile(void)
245{
246 const char *fdtfile;
247
248 if (getenv("fdtfile"))
249 return;
250
Stephen Warrenc4ea1ed2015-12-04 22:07:45 -0700251 fdtfile = model->fdtfile;
Stephen Warren6fe78452014-11-18 21:40:21 -0700252 setenv("fdtfile", fdtfile);
253}
254
Cédric Schieliade243a2016-11-11 11:59:07 +0100255/*
256 * If the firmware provided a valid FDT at boot time, let's expose it in
257 * ${fdt_addr} so it may be passed unmodified to the kernel.
258 */
259static void set_fdt_addr(void)
260{
261 if (getenv("fdt_addr"))
262 return;
263
264 if (fdt_magic(fw_dtb_pointer) != FDT_MAGIC)
265 return;
266
267 setenv_hex("fdt_addr", fw_dtb_pointer);
268}
269
270/*
271 * Prevent relocation from stomping on a firmware provided FDT blob.
272 */
273unsigned long board_get_usable_ram_top(unsigned long total_size)
274{
275 if ((gd->ram_top - fw_dtb_pointer) > SZ_64M)
276 return gd->ram_top;
277 return fw_dtb_pointer & ~0xffff;
278}
279
Stephen Warren6fe78452014-11-18 21:40:21 -0700280static void set_usbethaddr(void)
Stephen Warren4f80a062014-09-26 20:51:39 -0600281{
Alexander Stein927753a2015-07-24 09:22:12 +0200282 ALLOC_CACHE_ALIGN_BUFFER(struct msg_get_mac_address, msg, 1);
Stephen Warren4f80a062014-09-26 20:51:39 -0600283 int ret;
284
Stephen Warrenc4ea1ed2015-12-04 22:07:45 -0700285 if (!model->has_onboard_eth)
Stephen Warren3207d8f2014-12-05 20:56:46 -0700286 return;
287
Stephen Warren4f80a062014-09-26 20:51:39 -0600288 if (getenv("usbethaddr"))
Stephen Warren6fe78452014-11-18 21:40:21 -0700289 return;
Stephen Warren4f80a062014-09-26 20:51:39 -0600290
291 BCM2835_MBOX_INIT_HDR(msg);
292 BCM2835_MBOX_INIT_TAG(&msg->get_mac_address, GET_MAC_ADDRESS);
293
294 ret = bcm2835_mbox_call_prop(BCM2835_MBOX_PROP_CHAN, &msg->hdr);
295 if (ret) {
296 printf("bcm2835: Could not query MAC address\n");
297 /* Ignore error; not critical */
Stephen Warren6fe78452014-11-18 21:40:21 -0700298 return;
Stephen Warren4f80a062014-09-26 20:51:39 -0600299 }
300
301 eth_setenv_enetaddr("usbethaddr", msg->get_mac_address.body.resp.mac);
302
Lubomir Rintel859f1432016-02-03 16:08:09 +0100303 if (!getenv("ethaddr"))
304 setenv("ethaddr", getenv("usbethaddr"));
305
Stephen Warren6fe78452014-11-18 21:40:21 -0700306 return;
307}
308
Guillaume GARDETbff78562015-08-25 15:10:26 +0200309#ifdef CONFIG_ENV_VARS_UBOOT_RUNTIME_CONFIG
310static void set_board_info(void)
311{
Stephen Warrenc4ea1ed2015-12-04 22:07:45 -0700312 char s[11];
313
314 snprintf(s, sizeof(s), "0x%X", revision);
315 setenv("board_revision", s);
316 snprintf(s, sizeof(s), "%d", rev_scheme);
317 setenv("board_rev_scheme", s);
318 /* Can't rename this to board_rev_type since it's an ABI for scripts */
319 snprintf(s, sizeof(s), "0x%X", rev_type);
320 setenv("board_rev", s);
321 setenv("board_name", model->name);
Guillaume GARDETbff78562015-08-25 15:10:26 +0200322}
323#endif /* CONFIG_ENV_VARS_UBOOT_RUNTIME_CONFIG */
324
Lubomir Rintel757cd142016-02-22 22:06:47 +0100325static void set_serial_number(void)
326{
327 ALLOC_CACHE_ALIGN_BUFFER(struct msg_get_board_serial, msg, 1);
328 int ret;
329 char serial_string[17] = { 0 };
330
331 if (getenv("serial#"))
332 return;
333
334 BCM2835_MBOX_INIT_HDR(msg);
335 BCM2835_MBOX_INIT_TAG_NO_REQ(&msg->get_board_serial, GET_BOARD_SERIAL);
336
337 ret = bcm2835_mbox_call_prop(BCM2835_MBOX_PROP_CHAN, &msg->hdr);
338 if (ret) {
339 printf("bcm2835: Could not query board serial\n");
340 /* Ignore error; not critical */
341 return;
342 }
343
344 snprintf(serial_string, sizeof(serial_string), "%016" PRIx64,
345 msg->get_board_serial.body.resp.serial);
346 setenv("serial#", serial_string);
347}
348
Stephen Warren6fe78452014-11-18 21:40:21 -0700349int misc_init_r(void)
350{
Cédric Schieliade243a2016-11-11 11:59:07 +0100351 set_fdt_addr();
Stephen Warren6fe78452014-11-18 21:40:21 -0700352 set_fdtfile();
353 set_usbethaddr();
Guillaume GARDETbff78562015-08-25 15:10:26 +0200354#ifdef CONFIG_ENV_VARS_UBOOT_RUNTIME_CONFIG
355 set_board_info();
356#endif
Lubomir Rintel757cd142016-02-22 22:06:47 +0100357 set_serial_number();
358
Stephen Warren4f80a062014-09-26 20:51:39 -0600359 return 0;
360}
361
Stephen Warrenf66f2aa2014-01-13 19:50:11 -0700362static int power_on_module(u32 module)
363{
Alexander Stein927753a2015-07-24 09:22:12 +0200364 ALLOC_CACHE_ALIGN_BUFFER(struct msg_set_power_state, msg_pwr, 1);
Stephen Warrenf66f2aa2014-01-13 19:50:11 -0700365 int ret;
366
367 BCM2835_MBOX_INIT_HDR(msg_pwr);
368 BCM2835_MBOX_INIT_TAG(&msg_pwr->set_power_state,
369 SET_POWER_STATE);
370 msg_pwr->set_power_state.body.req.device_id = module;
371 msg_pwr->set_power_state.body.req.state =
372 BCM2835_MBOX_SET_POWER_STATE_REQ_ON |
373 BCM2835_MBOX_SET_POWER_STATE_REQ_WAIT;
374
375 ret = bcm2835_mbox_call_prop(BCM2835_MBOX_PROP_CHAN,
376 &msg_pwr->hdr);
377 if (ret) {
378 printf("bcm2835: Could not set module %u power state\n",
379 module);
380 return -1;
381 }
382
383 return 0;
384}
385
Stephen Warren6fe78452014-11-18 21:40:21 -0700386static void get_board_rev(void)
387{
Alexander Stein927753a2015-07-24 09:22:12 +0200388 ALLOC_CACHE_ALIGN_BUFFER(struct msg_get_board_rev, msg, 1);
Stephen Warren6fe78452014-11-18 21:40:21 -0700389 int ret;
Stephen Warrenc4ea1ed2015-12-04 22:07:45 -0700390 const struct rpi_model *models;
391 uint32_t models_count;
Stephen Warren6fe78452014-11-18 21:40:21 -0700392
393 BCM2835_MBOX_INIT_HDR(msg);
394 BCM2835_MBOX_INIT_TAG(&msg->get_board_rev, GET_BOARD_REV);
395
396 ret = bcm2835_mbox_call_prop(BCM2835_MBOX_PROP_CHAN, &msg->hdr);
397 if (ret) {
398 printf("bcm2835: Could not query board revision\n");
399 /* Ignore error; not critical */
400 return;
401 }
402
Stephen Warren46414292015-02-16 12:16:15 -0700403 /*
404 * For details of old-vs-new scheme, see:
405 * https://github.com/pimoroni/RPi.version/blob/master/RPi/version.py
406 * http://www.raspberrypi.org/forums/viewtopic.php?f=63&t=99293&p=690282
407 * (a few posts down)
Stephen Warren95b4f112015-03-23 23:00:25 -0600408 *
409 * For the RPi 1, bit 24 is the "warranty bit", so we mask off just the
410 * lower byte to use as the board rev:
411 * http://www.raspberrypi.org/forums/viewtopic.php?f=63&t=98367&start=250
412 * http://www.raspberrypi.org/forums/viewtopic.php?f=31&t=20594
Stephen Warren46414292015-02-16 12:16:15 -0700413 */
Stephen Warrenc4ea1ed2015-12-04 22:07:45 -0700414 revision = msg->get_board_rev.body.resp.rev;
415 if (revision & 0x800000) {
416 rev_scheme = 1;
417 rev_type = (revision >> 4) & 0xff;
418 models = rpi_models_new_scheme;
419 models_count = ARRAY_SIZE(rpi_models_new_scheme);
420 } else {
421 rev_scheme = 0;
422 rev_type = revision & 0xff;
423 models = rpi_models_old_scheme;
424 models_count = ARRAY_SIZE(rpi_models_old_scheme);
Stephen Warren47705ef2014-12-23 20:01:43 -0700425 }
Stephen Warrenc4ea1ed2015-12-04 22:07:45 -0700426 if (rev_type >= models_count) {
427 printf("RPI: Board rev 0x%x outside known range\n", rev_type);
428 model = &rpi_model_unknown;
429 } else if (!models[rev_type].name) {
430 printf("RPI: Board rev 0x%x unknown\n", rev_type);
431 model = &rpi_model_unknown;
432 } else {
433 model = &models[rev_type];
Stephen Warren914627f2014-12-23 20:01:44 -0700434 }
Stephen Warren6fe78452014-11-18 21:40:21 -0700435
Stephen Warrenc4ea1ed2015-12-04 22:07:45 -0700436 printf("RPI %s (0x%x)\n", model->name, revision);
Stephen Warren6fe78452014-11-18 21:40:21 -0700437}
438
Alexander Graf601147b2016-08-15 17:48:51 +0200439#ifndef CONFIG_PL01X_SERIAL
440static bool rpi_is_serial_active(void)
441{
442 int serial_gpio = 15;
443 struct udevice *dev;
444
445 /*
446 * The RPi3 disables the mini uart by default. The easiest way to find
447 * out whether it is available is to check if the RX pin is muxed.
448 */
449
450 if (uclass_first_device(UCLASS_GPIO, &dev) || !dev)
451 return true;
452
453 if (bcm2835_gpio_get_func_id(dev, serial_gpio) != BCM2835_GPIO_ALT5)
454 return false;
455
456 return true;
457}
Fabian Vogtd8396a32016-09-26 14:26:50 +0200458
459/* Disable mini-UART I/O if it's not pinmuxed to our pins.
460 * The firmware only enables it if explicitly done in config.txt: enable_uart=1
461 */
462static void rpi_disable_inactive_uart(void)
463{
464 struct udevice *dev;
465 struct bcm283x_mu_serial_platdata *plat;
466
467 if (uclass_get_device_by_driver(UCLASS_SERIAL,
468 DM_GET_DRIVER(serial_bcm283x_mu),
469 &dev) || !dev)
470 return;
471
472 if (!rpi_is_serial_active()) {
473 plat = dev_get_platdata(dev);
474 plat->disabled = true;
475 }
476}
Alexander Graf601147b2016-08-15 17:48:51 +0200477#endif
478
Fabian Vogtd8396a32016-09-26 14:26:50 +0200479int board_init(void)
Alexander Graf601147b2016-08-15 17:48:51 +0200480{
481#ifndef CONFIG_PL01X_SERIAL
Fabian Vogtd8396a32016-09-26 14:26:50 +0200482 rpi_disable_inactive_uart();
Alexander Graf601147b2016-08-15 17:48:51 +0200483#endif
484
Fabian Vogtd8396a32016-09-26 14:26:50 +0200485 get_board_rev();
486
487 gd->bd->bi_boot_params = 0x100;
488
489 return power_on_module(BCM2835_MBOX_POWER_DEVID_USB_HCD);
Alexander Graf601147b2016-08-15 17:48:51 +0200490}
491
Jeroen Hofstee5dfd1622014-07-13 22:01:51 +0200492int board_mmc_init(bd_t *bis)
Stephen Warren131a1e62013-01-29 16:37:42 +0000493{
Alexander Stein927753a2015-07-24 09:22:12 +0200494 ALLOC_CACHE_ALIGN_BUFFER(struct msg_get_clock_rate, msg_clk, 1);
Stephen Warren131a1e62013-01-29 16:37:42 +0000495 int ret;
496
Stephen Warrenf66f2aa2014-01-13 19:50:11 -0700497 power_on_module(BCM2835_MBOX_POWER_DEVID_SDHCI);
498
Stephen Warren131a1e62013-01-29 16:37:42 +0000499 BCM2835_MBOX_INIT_HDR(msg_clk);
500 BCM2835_MBOX_INIT_TAG(&msg_clk->get_clock_rate, GET_CLOCK_RATE);
501 msg_clk->get_clock_rate.body.req.clock_id = BCM2835_MBOX_CLOCK_ID_EMMC;
502
503 ret = bcm2835_mbox_call_prop(BCM2835_MBOX_PROP_CHAN, &msg_clk->hdr);
504 if (ret) {
505 printf("bcm2835: Could not query eMMC clock rate\n");
506 return -1;
507 }
508
509 return bcm2835_sdhci_init(BCM2835_SDHCI_BASE,
510 msg_clk->get_clock_rate.body.resp.rate_hz);
511}
Stephen Warrenea697ae2013-05-27 18:31:18 +0000512
Simon Glasse895a4b2014-10-23 18:58:47 -0600513int ft_board_setup(void *blob, bd_t *bd)
Stephen Warrenea697ae2013-05-27 18:31:18 +0000514{
515 /*
516 * For now, we simply always add the simplefb DT node. Later, we
517 * should be more intelligent, and e.g. only do this if no enabled DT
518 * node exists for the "real" graphics driver.
519 */
520 lcd_dt_simplefb_add_node(blob);
Simon Glasse895a4b2014-10-23 18:58:47 -0600521
Alexander Graf1bcf7a32016-11-02 10:36:20 +0100522#ifdef CONFIG_EFI_LOADER
523 /* Reserve the spin table */
524 efi_add_memory_map(0, 1, EFI_RESERVED_MEMORY_TYPE, 0);
525#endif
526
Simon Glasse895a4b2014-10-23 18:58:47 -0600527 return 0;
Stephen Warrenea697ae2013-05-27 18:31:18 +0000528}