blob: 6245b3678f15ae31b2073f6be4b3cc59a6e326e9 [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>
Jeroen Hofstee5dfd1622014-07-13 22:01:51 +020011#include <fdt_support.h>
Nikita Kiryanov033167c2015-02-03 13:32:31 +020012#include <fdt_simplefb.h>
Stephen Warrenea697ae2013-05-27 18:31:18 +000013#include <lcd.h>
Simon Glasscf92e052015-09-02 17:24:58 -060014#include <memalign.h>
Jeroen Hofstee5dfd1622014-07-13 22:01:51 +020015#include <mmc.h>
Simon Glass41e98e02014-09-22 17:30:56 -060016#include <asm/gpio.h>
Stephen Warren3f397782013-01-29 16:37:37 +000017#include <asm/arch/mbox.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>
Simon Glass11506662014-11-24 21:36:34 -070020#include <dm/platform_data/serial_pl01x.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
Simon Glass41e98e02014-09-22 17:30:56 -060028static const struct bcm2835_gpio_platdata gpio_platdata = {
29 .base = BCM2835_GPIO_BASE,
30};
31
32U_BOOT_DEVICE(bcm2835_gpios) = {
33 .name = "gpio_bcm2835",
34 .platdata = &gpio_platdata,
35};
36
Stephen Warrenf031f502016-03-24 22:15:20 -060037#ifdef CONFIG_PL01X_SERIAL
Simon Glass11506662014-11-24 21:36:34 -070038static const struct pl01x_serial_platdata serial_platdata = {
Stephen Warrened7481c2016-03-16 21:40:56 -060039#ifndef CONFIG_BCM2835
Stephen Warren46414292015-02-16 12:16:15 -070040 .base = 0x3f201000,
41#else
Simon Glass11506662014-11-24 21:36:34 -070042 .base = 0x20201000,
Stephen Warren46414292015-02-16 12:16:15 -070043#endif
Simon Glass11506662014-11-24 21:36:34 -070044 .type = TYPE_PL011,
Eric Anholtcd0fa5b2016-03-13 18:16:54 -070045 .skip_init = true,
Simon Glass11506662014-11-24 21:36:34 -070046};
47
48U_BOOT_DEVICE(bcm2835_serials) = {
49 .name = "serial_pl01x",
50 .platdata = &serial_platdata,
51};
Stephen Warrenf031f502016-03-24 22:15:20 -060052#else
Alexander Graf601147b2016-08-15 17:48:51 +020053static struct bcm283x_mu_serial_platdata serial_platdata = {
Stephen Warrenf031f502016-03-24 22:15:20 -060054 .base = 0x3f215040,
55 .clock = 250000000,
56 .skip_init = true,
57};
58
59U_BOOT_DEVICE(bcm2837_serials) = {
60 .name = "serial_bcm283x_mu",
61 .platdata = &serial_platdata,
62};
63#endif
Simon Glass11506662014-11-24 21:36:34 -070064
Stephen Warren3f397782013-01-29 16:37:37 +000065struct msg_get_arm_mem {
66 struct bcm2835_mbox_hdr hdr;
67 struct bcm2835_mbox_tag_get_arm_mem get_arm_mem;
68 u32 end_tag;
69};
70
Stephen Warren6fe78452014-11-18 21:40:21 -070071struct msg_get_board_rev {
72 struct bcm2835_mbox_hdr hdr;
73 struct bcm2835_mbox_tag_get_board_rev get_board_rev;
74 u32 end_tag;
75};
76
Lubomir Rintel757cd142016-02-22 22:06:47 +010077struct msg_get_board_serial {
78 struct bcm2835_mbox_hdr hdr;
79 struct bcm2835_mbox_tag_get_board_serial get_board_serial;
80 u32 end_tag;
81};
82
Stephen Warren4f80a062014-09-26 20:51:39 -060083struct msg_get_mac_address {
84 struct bcm2835_mbox_hdr hdr;
85 struct bcm2835_mbox_tag_get_mac_address get_mac_address;
86 u32 end_tag;
87};
88
Stephen Warrenf66f2aa2014-01-13 19:50:11 -070089struct msg_set_power_state {
90 struct bcm2835_mbox_hdr hdr;
91 struct bcm2835_mbox_tag_set_power_state set_power_state;
92 u32 end_tag;
93};
94
Stephen Warren131a1e62013-01-29 16:37:42 +000095struct msg_get_clock_rate {
96 struct bcm2835_mbox_hdr hdr;
97 struct bcm2835_mbox_tag_get_clock_rate get_clock_rate;
98 u32 end_tag;
99};
100
Stephen Warrendbe6f1e2015-12-04 22:07:44 -0700101/*
102 * http://raspberryalphaomega.org.uk/2013/02/06/automatic-raspberry-pi-board-revision-detection-model-a-b1-and-b2/
103 * http://www.raspberrypi.org/forums/viewtopic.php?f=63&t=32733
Stephen Warrenc4ea1ed2015-12-04 22:07:45 -0700104 * 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 -0700105 *
106 * In http://lists.denx.de/pipermail/u-boot/2016-January/243752.html
107 * ("[U-Boot] [PATCH] rpi: fix up Model B entries") Dom Cobley at the RPi
108 * Foundation stated that the following source was accurate:
109 * https://github.com/AndrewFromMelbourne/raspberry_pi_revision
Stephen Warrendbe6f1e2015-12-04 22:07:44 -0700110 */
Stephen Warrenc4ea1ed2015-12-04 22:07:45 -0700111struct rpi_model {
Stephen Warren6fe78452014-11-18 21:40:21 -0700112 const char *name;
113 const char *fdtfile;
Stephen Warren3207d8f2014-12-05 20:56:46 -0700114 bool has_onboard_eth;
Stephen Warrenc4ea1ed2015-12-04 22:07:45 -0700115};
116
117static const struct rpi_model rpi_model_unknown = {
118 "Unknown model",
Stephen Warren29937ca2016-03-24 22:15:17 -0600119 "bcm283x-rpi-other.dtb",
Stephen Warrenc4ea1ed2015-12-04 22:07:45 -0700120 false,
121};
122
123static const struct rpi_model rpi_models_new_scheme[] = {
Stephen Warrendbe6f1e2015-12-04 22:07:44 -0700124 [0x4] = {
Stephen Warren46414292015-02-16 12:16:15 -0700125 "2 Model B",
126 "bcm2836-rpi-2-b.dtb",
127 true,
128 },
Stephen Warren7233fb32016-03-24 22:15:18 -0600129 [0x8] = {
130 "3 Model B",
131 "bcm2837-rpi-3-b.dtb",
132 true,
133 },
Stephen Warrenaf7c03e2015-12-04 22:07:46 -0700134 [0x9] = {
135 "Zero",
136 "bcm2835-rpi-zero.dtb",
137 false,
138 },
Stephen Warrenc4ea1ed2015-12-04 22:07:45 -0700139};
140
141static const struct rpi_model rpi_models_old_scheme[] = {
Stephen Warrendbe6f1e2015-12-04 22:07:44 -0700142 [0x2] = {
Lubomir Rintel7443a9c2016-01-29 09:35:52 +0100143 "Model B",
144 "bcm2835-rpi-b.dtb",
Stephen Warren3207d8f2014-12-05 20:56:46 -0700145 true,
Stephen Warren6fe78452014-11-18 21:40:21 -0700146 },
Stephen Warrendbe6f1e2015-12-04 22:07:44 -0700147 [0x3] = {
Lubomir Rintel7443a9c2016-01-29 09:35:52 +0100148 "Model B",
149 "bcm2835-rpi-b.dtb",
Stephen Warren3207d8f2014-12-05 20:56:46 -0700150 true,
Stephen Warren6fe78452014-11-18 21:40:21 -0700151 },
Stephen Warrendbe6f1e2015-12-04 22:07:44 -0700152 [0x4] = {
Lubomir Rintel7443a9c2016-01-29 09:35:52 +0100153 "Model B rev2",
154 "bcm2835-rpi-b-rev2.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 [0x5] = {
Lubomir Rintel7443a9c2016-01-29 09:35:52 +0100158 "Model B rev2",
159 "bcm2835-rpi-b-rev2.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 [0x6] = {
Lubomir Rintel7443a9c2016-01-29 09:35:52 +0100163 "Model B rev2",
164 "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 [0x7] = {
Stephen Warren6fe78452014-11-18 21:40:21 -0700168 "Model A",
169 "bcm2835-rpi-a.dtb",
Stephen Warren3207d8f2014-12-05 20:56:46 -0700170 false,
Stephen Warren6fe78452014-11-18 21:40:21 -0700171 },
Stephen Warrendbe6f1e2015-12-04 22:07:44 -0700172 [0x8] = {
Stephen Warren6fe78452014-11-18 21:40:21 -0700173 "Model A",
174 "bcm2835-rpi-a.dtb",
Stephen Warren3207d8f2014-12-05 20:56:46 -0700175 false,
Stephen Warren6fe78452014-11-18 21:40:21 -0700176 },
Stephen Warrendbe6f1e2015-12-04 22:07:44 -0700177 [0x9] = {
Stephen Warren6fe78452014-11-18 21:40:21 -0700178 "Model A",
179 "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 [0xd] = {
Stephen Warren6fe78452014-11-18 21:40:21 -0700183 "Model B rev2",
184 "bcm2835-rpi-b-rev2.dtb",
Stephen Warren3207d8f2014-12-05 20:56:46 -0700185 true,
Stephen Warren6fe78452014-11-18 21:40:21 -0700186 },
Stephen Warrendbe6f1e2015-12-04 22:07:44 -0700187 [0xe] = {
Stephen Warren6fe78452014-11-18 21:40:21 -0700188 "Model B rev2",
189 "bcm2835-rpi-b-rev2.dtb",
Stephen Warren3207d8f2014-12-05 20:56:46 -0700190 true,
Stephen Warren6fe78452014-11-18 21:40:21 -0700191 },
Stephen Warrendbe6f1e2015-12-04 22:07:44 -0700192 [0xf] = {
Stephen Warren6fe78452014-11-18 21:40:21 -0700193 "Model B rev2",
194 "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 [0x10] = {
Stephen Warren6fe78452014-11-18 21:40:21 -0700198 "Model B+",
199 "bcm2835-rpi-b-plus.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 [0x11] = {
Stephen Warren6fe78452014-11-18 21:40:21 -0700203 "Compute Module",
204 "bcm2835-rpi-cm.dtb",
Stephen Warren3207d8f2014-12-05 20:56:46 -0700205 false,
Stephen Warren6fe78452014-11-18 21:40:21 -0700206 },
Stephen Warrendbe6f1e2015-12-04 22:07:44 -0700207 [0x12] = {
Stephen Warren47705ef2014-12-23 20:01:43 -0700208 "Model A+",
209 "bcm2835-rpi-a-plus.dtb",
210 false,
211 },
Stephen Warrendbe6f1e2015-12-04 22:07:44 -0700212 [0x13] = {
Stephen Warren787affb2015-04-12 21:43:25 -0600213 "Model B+",
214 "bcm2835-rpi-b-plus.dtb",
215 true,
216 },
Stephen Warrendbe6f1e2015-12-04 22:07:44 -0700217 [0x14] = {
Stephen Warren787affb2015-04-12 21:43:25 -0600218 "Compute Module",
219 "bcm2835-rpi-cm.dtb",
220 false,
221 },
Stephen Warrendbe6f1e2015-12-04 22:07:44 -0700222 [0x15] = {
Lubomir Rintel79ad5ce2015-10-14 17:17:54 +0200223 "Model A+",
224 "bcm2835-rpi-a-plus.dtb",
225 false,
226 },
Stephen Warren6fe78452014-11-18 21:40:21 -0700227};
228
Stephen Warrenc4ea1ed2015-12-04 22:07:45 -0700229static uint32_t revision;
230static uint32_t rev_scheme;
231static uint32_t rev_type;
232static const struct rpi_model *model;
Stephen Warren6fe78452014-11-18 21:40:21 -0700233
Stephen Warrend22a7652016-04-01 21:14:15 -0600234#ifdef CONFIG_ARM64
235static struct mm_region bcm2837_mem_map[] = {
236 {
York Suncd4b0c52016-06-24 16:46:22 -0700237 .virt = 0x00000000UL,
238 .phys = 0x00000000UL,
Stephen Warrend22a7652016-04-01 21:14:15 -0600239 .size = 0x3f000000UL,
240 .attrs = PTE_BLOCK_MEMTYPE(MT_NORMAL) |
241 PTE_BLOCK_INNER_SHARE
242 }, {
York Suncd4b0c52016-06-24 16:46:22 -0700243 .virt = 0x3f000000UL,
244 .phys = 0x3f000000UL,
Stephen Warrend22a7652016-04-01 21:14:15 -0600245 .size = 0x01000000UL,
246 .attrs = PTE_BLOCK_MEMTYPE(MT_DEVICE_NGNRNE) |
247 PTE_BLOCK_NON_SHARE |
248 PTE_BLOCK_PXN | PTE_BLOCK_UXN
249 }, {
250 /* List terminator */
251 0,
252 }
253};
254
255struct mm_region *mem_map = bcm2837_mem_map;
256#endif
257
Stephen Warren0d04f342012-08-05 16:07:22 +0000258int dram_init(void)
259{
Alexander Stein927753a2015-07-24 09:22:12 +0200260 ALLOC_CACHE_ALIGN_BUFFER(struct msg_get_arm_mem, msg, 1);
Stephen Warren3f397782013-01-29 16:37:37 +0000261 int ret;
262
263 BCM2835_MBOX_INIT_HDR(msg);
264 BCM2835_MBOX_INIT_TAG(&msg->get_arm_mem, GET_ARM_MEMORY);
265
266 ret = bcm2835_mbox_call_prop(BCM2835_MBOX_PROP_CHAN, &msg->hdr);
267 if (ret) {
268 printf("bcm2835: Could not query ARM memory size\n");
269 return -1;
270 }
271
272 gd->ram_size = msg->get_arm_mem.body.resp.mem_size;
Stephen Warren0d04f342012-08-05 16:07:22 +0000273
274 return 0;
275}
276
Stephen Warren6fe78452014-11-18 21:40:21 -0700277static void set_fdtfile(void)
278{
279 const char *fdtfile;
280
281 if (getenv("fdtfile"))
282 return;
283
Stephen Warrenc4ea1ed2015-12-04 22:07:45 -0700284 fdtfile = model->fdtfile;
Stephen Warren6fe78452014-11-18 21:40:21 -0700285 setenv("fdtfile", fdtfile);
286}
287
288static void set_usbethaddr(void)
Stephen Warren4f80a062014-09-26 20:51:39 -0600289{
Alexander Stein927753a2015-07-24 09:22:12 +0200290 ALLOC_CACHE_ALIGN_BUFFER(struct msg_get_mac_address, msg, 1);
Stephen Warren4f80a062014-09-26 20:51:39 -0600291 int ret;
292
Stephen Warrenc4ea1ed2015-12-04 22:07:45 -0700293 if (!model->has_onboard_eth)
Stephen Warren3207d8f2014-12-05 20:56:46 -0700294 return;
295
Stephen Warren4f80a062014-09-26 20:51:39 -0600296 if (getenv("usbethaddr"))
Stephen Warren6fe78452014-11-18 21:40:21 -0700297 return;
Stephen Warren4f80a062014-09-26 20:51:39 -0600298
299 BCM2835_MBOX_INIT_HDR(msg);
300 BCM2835_MBOX_INIT_TAG(&msg->get_mac_address, GET_MAC_ADDRESS);
301
302 ret = bcm2835_mbox_call_prop(BCM2835_MBOX_PROP_CHAN, &msg->hdr);
303 if (ret) {
304 printf("bcm2835: Could not query MAC address\n");
305 /* Ignore error; not critical */
Stephen Warren6fe78452014-11-18 21:40:21 -0700306 return;
Stephen Warren4f80a062014-09-26 20:51:39 -0600307 }
308
309 eth_setenv_enetaddr("usbethaddr", msg->get_mac_address.body.resp.mac);
310
Lubomir Rintel859f1432016-02-03 16:08:09 +0100311 if (!getenv("ethaddr"))
312 setenv("ethaddr", getenv("usbethaddr"));
313
Stephen Warren6fe78452014-11-18 21:40:21 -0700314 return;
315}
316
Guillaume GARDETbff78562015-08-25 15:10:26 +0200317#ifdef CONFIG_ENV_VARS_UBOOT_RUNTIME_CONFIG
318static void set_board_info(void)
319{
Stephen Warrenc4ea1ed2015-12-04 22:07:45 -0700320 char s[11];
321
322 snprintf(s, sizeof(s), "0x%X", revision);
323 setenv("board_revision", s);
324 snprintf(s, sizeof(s), "%d", rev_scheme);
325 setenv("board_rev_scheme", s);
326 /* Can't rename this to board_rev_type since it's an ABI for scripts */
327 snprintf(s, sizeof(s), "0x%X", rev_type);
328 setenv("board_rev", s);
329 setenv("board_name", model->name);
Guillaume GARDETbff78562015-08-25 15:10:26 +0200330}
331#endif /* CONFIG_ENV_VARS_UBOOT_RUNTIME_CONFIG */
332
Lubomir Rintel757cd142016-02-22 22:06:47 +0100333static void set_serial_number(void)
334{
335 ALLOC_CACHE_ALIGN_BUFFER(struct msg_get_board_serial, msg, 1);
336 int ret;
337 char serial_string[17] = { 0 };
338
339 if (getenv("serial#"))
340 return;
341
342 BCM2835_MBOX_INIT_HDR(msg);
343 BCM2835_MBOX_INIT_TAG_NO_REQ(&msg->get_board_serial, GET_BOARD_SERIAL);
344
345 ret = bcm2835_mbox_call_prop(BCM2835_MBOX_PROP_CHAN, &msg->hdr);
346 if (ret) {
347 printf("bcm2835: Could not query board serial\n");
348 /* Ignore error; not critical */
349 return;
350 }
351
352 snprintf(serial_string, sizeof(serial_string), "%016" PRIx64,
353 msg->get_board_serial.body.resp.serial);
354 setenv("serial#", serial_string);
355}
356
Stephen Warren6fe78452014-11-18 21:40:21 -0700357int misc_init_r(void)
358{
359 set_fdtfile();
360 set_usbethaddr();
Guillaume GARDETbff78562015-08-25 15:10:26 +0200361#ifdef CONFIG_ENV_VARS_UBOOT_RUNTIME_CONFIG
362 set_board_info();
363#endif
Lubomir Rintel757cd142016-02-22 22:06:47 +0100364 set_serial_number();
365
Stephen Warren4f80a062014-09-26 20:51:39 -0600366 return 0;
367}
368
Stephen Warrenf66f2aa2014-01-13 19:50:11 -0700369static int power_on_module(u32 module)
370{
Alexander Stein927753a2015-07-24 09:22:12 +0200371 ALLOC_CACHE_ALIGN_BUFFER(struct msg_set_power_state, msg_pwr, 1);
Stephen Warrenf66f2aa2014-01-13 19:50:11 -0700372 int ret;
373
374 BCM2835_MBOX_INIT_HDR(msg_pwr);
375 BCM2835_MBOX_INIT_TAG(&msg_pwr->set_power_state,
376 SET_POWER_STATE);
377 msg_pwr->set_power_state.body.req.device_id = module;
378 msg_pwr->set_power_state.body.req.state =
379 BCM2835_MBOX_SET_POWER_STATE_REQ_ON |
380 BCM2835_MBOX_SET_POWER_STATE_REQ_WAIT;
381
382 ret = bcm2835_mbox_call_prop(BCM2835_MBOX_PROP_CHAN,
383 &msg_pwr->hdr);
384 if (ret) {
385 printf("bcm2835: Could not set module %u power state\n",
386 module);
387 return -1;
388 }
389
390 return 0;
391}
392
Stephen Warren6fe78452014-11-18 21:40:21 -0700393static void get_board_rev(void)
394{
Alexander Stein927753a2015-07-24 09:22:12 +0200395 ALLOC_CACHE_ALIGN_BUFFER(struct msg_get_board_rev, msg, 1);
Stephen Warren6fe78452014-11-18 21:40:21 -0700396 int ret;
Stephen Warrenc4ea1ed2015-12-04 22:07:45 -0700397 const struct rpi_model *models;
398 uint32_t models_count;
Stephen Warren6fe78452014-11-18 21:40:21 -0700399
400 BCM2835_MBOX_INIT_HDR(msg);
401 BCM2835_MBOX_INIT_TAG(&msg->get_board_rev, GET_BOARD_REV);
402
403 ret = bcm2835_mbox_call_prop(BCM2835_MBOX_PROP_CHAN, &msg->hdr);
404 if (ret) {
405 printf("bcm2835: Could not query board revision\n");
406 /* Ignore error; not critical */
407 return;
408 }
409
Stephen Warren46414292015-02-16 12:16:15 -0700410 /*
411 * For details of old-vs-new scheme, see:
412 * https://github.com/pimoroni/RPi.version/blob/master/RPi/version.py
413 * http://www.raspberrypi.org/forums/viewtopic.php?f=63&t=99293&p=690282
414 * (a few posts down)
Stephen Warren95b4f112015-03-23 23:00:25 -0600415 *
416 * For the RPi 1, bit 24 is the "warranty bit", so we mask off just the
417 * lower byte to use as the board rev:
418 * http://www.raspberrypi.org/forums/viewtopic.php?f=63&t=98367&start=250
419 * http://www.raspberrypi.org/forums/viewtopic.php?f=31&t=20594
Stephen Warren46414292015-02-16 12:16:15 -0700420 */
Stephen Warrenc4ea1ed2015-12-04 22:07:45 -0700421 revision = msg->get_board_rev.body.resp.rev;
422 if (revision & 0x800000) {
423 rev_scheme = 1;
424 rev_type = (revision >> 4) & 0xff;
425 models = rpi_models_new_scheme;
426 models_count = ARRAY_SIZE(rpi_models_new_scheme);
427 } else {
428 rev_scheme = 0;
429 rev_type = revision & 0xff;
430 models = rpi_models_old_scheme;
431 models_count = ARRAY_SIZE(rpi_models_old_scheme);
Stephen Warren47705ef2014-12-23 20:01:43 -0700432 }
Stephen Warrenc4ea1ed2015-12-04 22:07:45 -0700433 if (rev_type >= models_count) {
434 printf("RPI: Board rev 0x%x outside known range\n", rev_type);
435 model = &rpi_model_unknown;
436 } else if (!models[rev_type].name) {
437 printf("RPI: Board rev 0x%x unknown\n", rev_type);
438 model = &rpi_model_unknown;
439 } else {
440 model = &models[rev_type];
Stephen Warren914627f2014-12-23 20:01:44 -0700441 }
Stephen Warren6fe78452014-11-18 21:40:21 -0700442
Stephen Warrenc4ea1ed2015-12-04 22:07:45 -0700443 printf("RPI %s (0x%x)\n", model->name, revision);
Stephen Warren6fe78452014-11-18 21:40:21 -0700444}
445
Stephen Warren0d04f342012-08-05 16:07:22 +0000446int board_init(void)
447{
Stephen Warren6fe78452014-11-18 21:40:21 -0700448 get_board_rev();
449
Stephen Warren0d04f342012-08-05 16:07:22 +0000450 gd->bd->bi_boot_params = 0x100;
451
Stephen Warrenf66f2aa2014-01-13 19:50:11 -0700452 return power_on_module(BCM2835_MBOX_POWER_DEVID_USB_HCD);
Stephen Warren0d04f342012-08-05 16:07:22 +0000453}
Stephen Warren131a1e62013-01-29 16:37:42 +0000454
Alexander Graf601147b2016-08-15 17:48:51 +0200455#ifndef CONFIG_PL01X_SERIAL
456static bool rpi_is_serial_active(void)
457{
458 int serial_gpio = 15;
459 struct udevice *dev;
460
461 /*
462 * The RPi3 disables the mini uart by default. The easiest way to find
463 * out whether it is available is to check if the RX pin is muxed.
464 */
465
466 if (uclass_first_device(UCLASS_GPIO, &dev) || !dev)
467 return true;
468
469 if (bcm2835_gpio_get_func_id(dev, serial_gpio) != BCM2835_GPIO_ALT5)
470 return false;
471
472 return true;
473}
474#endif
475
476int board_early_init_f(void)
477{
478#ifndef CONFIG_PL01X_SERIAL
479 /* Disable mini-UART I/O if it's not pinmuxed to our pins */
480 if (!rpi_is_serial_active())
481 serial_platdata.disabled = true;
482#endif
483
484 return 0;
485}
486
Jeroen Hofstee5dfd1622014-07-13 22:01:51 +0200487int board_mmc_init(bd_t *bis)
Stephen Warren131a1e62013-01-29 16:37:42 +0000488{
Alexander Stein927753a2015-07-24 09:22:12 +0200489 ALLOC_CACHE_ALIGN_BUFFER(struct msg_get_clock_rate, msg_clk, 1);
Stephen Warren131a1e62013-01-29 16:37:42 +0000490 int ret;
491
Stephen Warrenf66f2aa2014-01-13 19:50:11 -0700492 power_on_module(BCM2835_MBOX_POWER_DEVID_SDHCI);
493
Stephen Warren131a1e62013-01-29 16:37:42 +0000494 BCM2835_MBOX_INIT_HDR(msg_clk);
495 BCM2835_MBOX_INIT_TAG(&msg_clk->get_clock_rate, GET_CLOCK_RATE);
496 msg_clk->get_clock_rate.body.req.clock_id = BCM2835_MBOX_CLOCK_ID_EMMC;
497
498 ret = bcm2835_mbox_call_prop(BCM2835_MBOX_PROP_CHAN, &msg_clk->hdr);
499 if (ret) {
500 printf("bcm2835: Could not query eMMC clock rate\n");
501 return -1;
502 }
503
504 return bcm2835_sdhci_init(BCM2835_SDHCI_BASE,
505 msg_clk->get_clock_rate.body.resp.rate_hz);
506}
Stephen Warrenea697ae2013-05-27 18:31:18 +0000507
Simon Glasse895a4b2014-10-23 18:58:47 -0600508int ft_board_setup(void *blob, bd_t *bd)
Stephen Warrenea697ae2013-05-27 18:31:18 +0000509{
510 /*
511 * For now, we simply always add the simplefb DT node. Later, we
512 * should be more intelligent, and e.g. only do this if no enabled DT
513 * node exists for the "real" graphics driver.
514 */
515 lcd_dt_simplefb_add_node(blob);
Simon Glasse895a4b2014-10-23 18:58:47 -0600516
517 return 0;
Stephen Warrenea697ae2013-05-27 18:31:18 +0000518}