blob: d31a79c661d9c3b84c269724517d35cd7cd074f2 [file] [log] [blame]
Stephen Warren0d04f342012-08-05 16:07:22 +00001/*
Stephen Warren46414292015-02-16 12:16:15 -07002 * (C) Copyright 2012-2013,2015 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 Warren0d04f342012-08-05 16:07:22 +000021
22DECLARE_GLOBAL_DATA_PTR;
23
Simon Glass41e98e02014-09-22 17:30:56 -060024static const struct bcm2835_gpio_platdata gpio_platdata = {
25 .base = BCM2835_GPIO_BASE,
26};
27
28U_BOOT_DEVICE(bcm2835_gpios) = {
29 .name = "gpio_bcm2835",
30 .platdata = &gpio_platdata,
31};
32
Simon Glass11506662014-11-24 21:36:34 -070033static const struct pl01x_serial_platdata serial_platdata = {
Stephen Warrened7481c2016-03-16 21:40:56 -060034#ifndef CONFIG_BCM2835
Stephen Warren46414292015-02-16 12:16:15 -070035 .base = 0x3f201000,
36#else
Simon Glass11506662014-11-24 21:36:34 -070037 .base = 0x20201000,
Stephen Warren46414292015-02-16 12:16:15 -070038#endif
Simon Glass11506662014-11-24 21:36:34 -070039 .type = TYPE_PL011,
Eric Anholtcd0fa5b2016-03-13 18:16:54 -070040 .skip_init = true,
Simon Glass11506662014-11-24 21:36:34 -070041};
42
43U_BOOT_DEVICE(bcm2835_serials) = {
44 .name = "serial_pl01x",
45 .platdata = &serial_platdata,
46};
47
Stephen Warren3f397782013-01-29 16:37:37 +000048struct msg_get_arm_mem {
49 struct bcm2835_mbox_hdr hdr;
50 struct bcm2835_mbox_tag_get_arm_mem get_arm_mem;
51 u32 end_tag;
52};
53
Stephen Warren6fe78452014-11-18 21:40:21 -070054struct msg_get_board_rev {
55 struct bcm2835_mbox_hdr hdr;
56 struct bcm2835_mbox_tag_get_board_rev get_board_rev;
57 u32 end_tag;
58};
59
Lubomir Rintel757cd142016-02-22 22:06:47 +010060struct msg_get_board_serial {
61 struct bcm2835_mbox_hdr hdr;
62 struct bcm2835_mbox_tag_get_board_serial get_board_serial;
63 u32 end_tag;
64};
65
Stephen Warren4f80a062014-09-26 20:51:39 -060066struct msg_get_mac_address {
67 struct bcm2835_mbox_hdr hdr;
68 struct bcm2835_mbox_tag_get_mac_address get_mac_address;
69 u32 end_tag;
70};
71
Stephen Warrenf66f2aa2014-01-13 19:50:11 -070072struct msg_set_power_state {
73 struct bcm2835_mbox_hdr hdr;
74 struct bcm2835_mbox_tag_set_power_state set_power_state;
75 u32 end_tag;
76};
77
Stephen Warren131a1e62013-01-29 16:37:42 +000078struct msg_get_clock_rate {
79 struct bcm2835_mbox_hdr hdr;
80 struct bcm2835_mbox_tag_get_clock_rate get_clock_rate;
81 u32 end_tag;
82};
83
Stephen Warrendbe6f1e2015-12-04 22:07:44 -070084/*
85 * http://raspberryalphaomega.org.uk/2013/02/06/automatic-raspberry-pi-board-revision-detection-model-a-b1-and-b2/
86 * http://www.raspberrypi.org/forums/viewtopic.php?f=63&t=32733
Stephen Warrenc4ea1ed2015-12-04 22:07:45 -070087 * 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 -070088 *
89 * In http://lists.denx.de/pipermail/u-boot/2016-January/243752.html
90 * ("[U-Boot] [PATCH] rpi: fix up Model B entries") Dom Cobley at the RPi
91 * Foundation stated that the following source was accurate:
92 * https://github.com/AndrewFromMelbourne/raspberry_pi_revision
Stephen Warrendbe6f1e2015-12-04 22:07:44 -070093 */
Stephen Warrenc4ea1ed2015-12-04 22:07:45 -070094struct rpi_model {
Stephen Warren6fe78452014-11-18 21:40:21 -070095 const char *name;
96 const char *fdtfile;
Stephen Warren3207d8f2014-12-05 20:56:46 -070097 bool has_onboard_eth;
Stephen Warrenc4ea1ed2015-12-04 22:07:45 -070098};
99
100static const struct rpi_model rpi_model_unknown = {
101 "Unknown model",
Stephen Warren29937ca2016-03-24 22:15:17 -0600102 "bcm283x-rpi-other.dtb",
Stephen Warrenc4ea1ed2015-12-04 22:07:45 -0700103 false,
104};
105
106static const struct rpi_model rpi_models_new_scheme[] = {
Stephen Warrendbe6f1e2015-12-04 22:07:44 -0700107 [0x4] = {
Stephen Warren46414292015-02-16 12:16:15 -0700108 "2 Model B",
109 "bcm2836-rpi-2-b.dtb",
110 true,
111 },
Stephen Warren7233fb32016-03-24 22:15:18 -0600112 [0x8] = {
113 "3 Model B",
114 "bcm2837-rpi-3-b.dtb",
115 true,
116 },
Stephen Warrenaf7c03e2015-12-04 22:07:46 -0700117 [0x9] = {
118 "Zero",
119 "bcm2835-rpi-zero.dtb",
120 false,
121 },
Stephen Warrenc4ea1ed2015-12-04 22:07:45 -0700122};
123
124static const struct rpi_model rpi_models_old_scheme[] = {
Stephen Warrendbe6f1e2015-12-04 22:07:44 -0700125 [0x2] = {
Lubomir Rintel7443a9c2016-01-29 09:35:52 +0100126 "Model B",
127 "bcm2835-rpi-b.dtb",
Stephen Warren3207d8f2014-12-05 20:56:46 -0700128 true,
Stephen Warren6fe78452014-11-18 21:40:21 -0700129 },
Stephen Warrendbe6f1e2015-12-04 22:07:44 -0700130 [0x3] = {
Lubomir Rintel7443a9c2016-01-29 09:35:52 +0100131 "Model B",
132 "bcm2835-rpi-b.dtb",
Stephen Warren3207d8f2014-12-05 20:56:46 -0700133 true,
Stephen Warren6fe78452014-11-18 21:40:21 -0700134 },
Stephen Warrendbe6f1e2015-12-04 22:07:44 -0700135 [0x4] = {
Lubomir Rintel7443a9c2016-01-29 09:35:52 +0100136 "Model B rev2",
137 "bcm2835-rpi-b-rev2.dtb",
Stephen Warren3207d8f2014-12-05 20:56:46 -0700138 true,
Stephen Warren6fe78452014-11-18 21:40:21 -0700139 },
Stephen Warrendbe6f1e2015-12-04 22:07:44 -0700140 [0x5] = {
Lubomir Rintel7443a9c2016-01-29 09:35:52 +0100141 "Model B rev2",
142 "bcm2835-rpi-b-rev2.dtb",
Stephen Warren3207d8f2014-12-05 20:56:46 -0700143 true,
Stephen Warren6fe78452014-11-18 21:40:21 -0700144 },
Stephen Warrendbe6f1e2015-12-04 22:07:44 -0700145 [0x6] = {
Lubomir Rintel7443a9c2016-01-29 09:35:52 +0100146 "Model B rev2",
147 "bcm2835-rpi-b-rev2.dtb",
Stephen Warren3207d8f2014-12-05 20:56:46 -0700148 true,
Stephen Warren6fe78452014-11-18 21:40:21 -0700149 },
Stephen Warrendbe6f1e2015-12-04 22:07:44 -0700150 [0x7] = {
Stephen Warren6fe78452014-11-18 21:40:21 -0700151 "Model A",
152 "bcm2835-rpi-a.dtb",
Stephen Warren3207d8f2014-12-05 20:56:46 -0700153 false,
Stephen Warren6fe78452014-11-18 21:40:21 -0700154 },
Stephen Warrendbe6f1e2015-12-04 22:07:44 -0700155 [0x8] = {
Stephen Warren6fe78452014-11-18 21:40:21 -0700156 "Model A",
157 "bcm2835-rpi-a.dtb",
Stephen Warren3207d8f2014-12-05 20:56:46 -0700158 false,
Stephen Warren6fe78452014-11-18 21:40:21 -0700159 },
Stephen Warrendbe6f1e2015-12-04 22:07:44 -0700160 [0x9] = {
Stephen Warren6fe78452014-11-18 21:40:21 -0700161 "Model A",
162 "bcm2835-rpi-a.dtb",
Stephen Warren3207d8f2014-12-05 20:56:46 -0700163 false,
Stephen Warren6fe78452014-11-18 21:40:21 -0700164 },
Stephen Warrendbe6f1e2015-12-04 22:07:44 -0700165 [0xd] = {
Stephen Warren6fe78452014-11-18 21:40:21 -0700166 "Model B rev2",
167 "bcm2835-rpi-b-rev2.dtb",
Stephen Warren3207d8f2014-12-05 20:56:46 -0700168 true,
Stephen Warren6fe78452014-11-18 21:40:21 -0700169 },
Stephen Warrendbe6f1e2015-12-04 22:07:44 -0700170 [0xe] = {
Stephen Warren6fe78452014-11-18 21:40:21 -0700171 "Model B rev2",
172 "bcm2835-rpi-b-rev2.dtb",
Stephen Warren3207d8f2014-12-05 20:56:46 -0700173 true,
Stephen Warren6fe78452014-11-18 21:40:21 -0700174 },
Stephen Warrendbe6f1e2015-12-04 22:07:44 -0700175 [0xf] = {
Stephen Warren6fe78452014-11-18 21:40:21 -0700176 "Model B rev2",
177 "bcm2835-rpi-b-rev2.dtb",
Stephen Warren3207d8f2014-12-05 20:56:46 -0700178 true,
Stephen Warren6fe78452014-11-18 21:40:21 -0700179 },
Stephen Warrendbe6f1e2015-12-04 22:07:44 -0700180 [0x10] = {
Stephen Warren6fe78452014-11-18 21:40:21 -0700181 "Model B+",
182 "bcm2835-rpi-b-plus.dtb",
Stephen Warren3207d8f2014-12-05 20:56:46 -0700183 true,
Stephen Warren6fe78452014-11-18 21:40:21 -0700184 },
Stephen Warrendbe6f1e2015-12-04 22:07:44 -0700185 [0x11] = {
Stephen Warren6fe78452014-11-18 21:40:21 -0700186 "Compute Module",
187 "bcm2835-rpi-cm.dtb",
Stephen Warren3207d8f2014-12-05 20:56:46 -0700188 false,
Stephen Warren6fe78452014-11-18 21:40:21 -0700189 },
Stephen Warrendbe6f1e2015-12-04 22:07:44 -0700190 [0x12] = {
Stephen Warren47705ef2014-12-23 20:01:43 -0700191 "Model A+",
192 "bcm2835-rpi-a-plus.dtb",
193 false,
194 },
Stephen Warrendbe6f1e2015-12-04 22:07:44 -0700195 [0x13] = {
Stephen Warren787affb2015-04-12 21:43:25 -0600196 "Model B+",
197 "bcm2835-rpi-b-plus.dtb",
198 true,
199 },
Stephen Warrendbe6f1e2015-12-04 22:07:44 -0700200 [0x14] = {
Stephen Warren787affb2015-04-12 21:43:25 -0600201 "Compute Module",
202 "bcm2835-rpi-cm.dtb",
203 false,
204 },
Stephen Warrendbe6f1e2015-12-04 22:07:44 -0700205 [0x15] = {
Lubomir Rintel79ad5ce2015-10-14 17:17:54 +0200206 "Model A+",
207 "bcm2835-rpi-a-plus.dtb",
208 false,
209 },
Stephen Warren6fe78452014-11-18 21:40:21 -0700210};
211
Stephen Warrenc4ea1ed2015-12-04 22:07:45 -0700212static uint32_t revision;
213static uint32_t rev_scheme;
214static uint32_t rev_type;
215static const struct rpi_model *model;
Stephen Warren6fe78452014-11-18 21:40:21 -0700216
Stephen Warren0d04f342012-08-05 16:07:22 +0000217int dram_init(void)
218{
Alexander Stein927753a2015-07-24 09:22:12 +0200219 ALLOC_CACHE_ALIGN_BUFFER(struct msg_get_arm_mem, msg, 1);
Stephen Warren3f397782013-01-29 16:37:37 +0000220 int ret;
221
222 BCM2835_MBOX_INIT_HDR(msg);
223 BCM2835_MBOX_INIT_TAG(&msg->get_arm_mem, GET_ARM_MEMORY);
224
225 ret = bcm2835_mbox_call_prop(BCM2835_MBOX_PROP_CHAN, &msg->hdr);
226 if (ret) {
227 printf("bcm2835: Could not query ARM memory size\n");
228 return -1;
229 }
230
231 gd->ram_size = msg->get_arm_mem.body.resp.mem_size;
Stephen Warren0d04f342012-08-05 16:07:22 +0000232
233 return 0;
234}
235
Stephen Warren6fe78452014-11-18 21:40:21 -0700236static void set_fdtfile(void)
237{
238 const char *fdtfile;
239
240 if (getenv("fdtfile"))
241 return;
242
Stephen Warrenc4ea1ed2015-12-04 22:07:45 -0700243 fdtfile = model->fdtfile;
Stephen Warren6fe78452014-11-18 21:40:21 -0700244 setenv("fdtfile", fdtfile);
245}
246
247static void set_usbethaddr(void)
Stephen Warren4f80a062014-09-26 20:51:39 -0600248{
Alexander Stein927753a2015-07-24 09:22:12 +0200249 ALLOC_CACHE_ALIGN_BUFFER(struct msg_get_mac_address, msg, 1);
Stephen Warren4f80a062014-09-26 20:51:39 -0600250 int ret;
251
Stephen Warrenc4ea1ed2015-12-04 22:07:45 -0700252 if (!model->has_onboard_eth)
Stephen Warren3207d8f2014-12-05 20:56:46 -0700253 return;
254
Stephen Warren4f80a062014-09-26 20:51:39 -0600255 if (getenv("usbethaddr"))
Stephen Warren6fe78452014-11-18 21:40:21 -0700256 return;
Stephen Warren4f80a062014-09-26 20:51:39 -0600257
258 BCM2835_MBOX_INIT_HDR(msg);
259 BCM2835_MBOX_INIT_TAG(&msg->get_mac_address, GET_MAC_ADDRESS);
260
261 ret = bcm2835_mbox_call_prop(BCM2835_MBOX_PROP_CHAN, &msg->hdr);
262 if (ret) {
263 printf("bcm2835: Could not query MAC address\n");
264 /* Ignore error; not critical */
Stephen Warren6fe78452014-11-18 21:40:21 -0700265 return;
Stephen Warren4f80a062014-09-26 20:51:39 -0600266 }
267
268 eth_setenv_enetaddr("usbethaddr", msg->get_mac_address.body.resp.mac);
269
Lubomir Rintel859f1432016-02-03 16:08:09 +0100270 if (!getenv("ethaddr"))
271 setenv("ethaddr", getenv("usbethaddr"));
272
Stephen Warren6fe78452014-11-18 21:40:21 -0700273 return;
274}
275
Guillaume GARDETbff78562015-08-25 15:10:26 +0200276#ifdef CONFIG_ENV_VARS_UBOOT_RUNTIME_CONFIG
277static void set_board_info(void)
278{
Stephen Warrenc4ea1ed2015-12-04 22:07:45 -0700279 char s[11];
280
281 snprintf(s, sizeof(s), "0x%X", revision);
282 setenv("board_revision", s);
283 snprintf(s, sizeof(s), "%d", rev_scheme);
284 setenv("board_rev_scheme", s);
285 /* Can't rename this to board_rev_type since it's an ABI for scripts */
286 snprintf(s, sizeof(s), "0x%X", rev_type);
287 setenv("board_rev", s);
288 setenv("board_name", model->name);
Guillaume GARDETbff78562015-08-25 15:10:26 +0200289}
290#endif /* CONFIG_ENV_VARS_UBOOT_RUNTIME_CONFIG */
291
Lubomir Rintel757cd142016-02-22 22:06:47 +0100292static void set_serial_number(void)
293{
294 ALLOC_CACHE_ALIGN_BUFFER(struct msg_get_board_serial, msg, 1);
295 int ret;
296 char serial_string[17] = { 0 };
297
298 if (getenv("serial#"))
299 return;
300
301 BCM2835_MBOX_INIT_HDR(msg);
302 BCM2835_MBOX_INIT_TAG_NO_REQ(&msg->get_board_serial, GET_BOARD_SERIAL);
303
304 ret = bcm2835_mbox_call_prop(BCM2835_MBOX_PROP_CHAN, &msg->hdr);
305 if (ret) {
306 printf("bcm2835: Could not query board serial\n");
307 /* Ignore error; not critical */
308 return;
309 }
310
311 snprintf(serial_string, sizeof(serial_string), "%016" PRIx64,
312 msg->get_board_serial.body.resp.serial);
313 setenv("serial#", serial_string);
314}
315
Stephen Warren6fe78452014-11-18 21:40:21 -0700316int misc_init_r(void)
317{
318 set_fdtfile();
319 set_usbethaddr();
Guillaume GARDETbff78562015-08-25 15:10:26 +0200320#ifdef CONFIG_ENV_VARS_UBOOT_RUNTIME_CONFIG
321 set_board_info();
322#endif
Lubomir Rintel757cd142016-02-22 22:06:47 +0100323 set_serial_number();
324
Stephen Warren4f80a062014-09-26 20:51:39 -0600325 return 0;
326}
327
Stephen Warrenf66f2aa2014-01-13 19:50:11 -0700328static int power_on_module(u32 module)
329{
Alexander Stein927753a2015-07-24 09:22:12 +0200330 ALLOC_CACHE_ALIGN_BUFFER(struct msg_set_power_state, msg_pwr, 1);
Stephen Warrenf66f2aa2014-01-13 19:50:11 -0700331 int ret;
332
333 BCM2835_MBOX_INIT_HDR(msg_pwr);
334 BCM2835_MBOX_INIT_TAG(&msg_pwr->set_power_state,
335 SET_POWER_STATE);
336 msg_pwr->set_power_state.body.req.device_id = module;
337 msg_pwr->set_power_state.body.req.state =
338 BCM2835_MBOX_SET_POWER_STATE_REQ_ON |
339 BCM2835_MBOX_SET_POWER_STATE_REQ_WAIT;
340
341 ret = bcm2835_mbox_call_prop(BCM2835_MBOX_PROP_CHAN,
342 &msg_pwr->hdr);
343 if (ret) {
344 printf("bcm2835: Could not set module %u power state\n",
345 module);
346 return -1;
347 }
348
349 return 0;
350}
351
Stephen Warren6fe78452014-11-18 21:40:21 -0700352static void get_board_rev(void)
353{
Alexander Stein927753a2015-07-24 09:22:12 +0200354 ALLOC_CACHE_ALIGN_BUFFER(struct msg_get_board_rev, msg, 1);
Stephen Warren6fe78452014-11-18 21:40:21 -0700355 int ret;
Stephen Warrenc4ea1ed2015-12-04 22:07:45 -0700356 const struct rpi_model *models;
357 uint32_t models_count;
Stephen Warren6fe78452014-11-18 21:40:21 -0700358
359 BCM2835_MBOX_INIT_HDR(msg);
360 BCM2835_MBOX_INIT_TAG(&msg->get_board_rev, GET_BOARD_REV);
361
362 ret = bcm2835_mbox_call_prop(BCM2835_MBOX_PROP_CHAN, &msg->hdr);
363 if (ret) {
364 printf("bcm2835: Could not query board revision\n");
365 /* Ignore error; not critical */
366 return;
367 }
368
Stephen Warren46414292015-02-16 12:16:15 -0700369 /*
370 * For details of old-vs-new scheme, see:
371 * https://github.com/pimoroni/RPi.version/blob/master/RPi/version.py
372 * http://www.raspberrypi.org/forums/viewtopic.php?f=63&t=99293&p=690282
373 * (a few posts down)
Stephen Warren95b4f112015-03-23 23:00:25 -0600374 *
375 * For the RPi 1, bit 24 is the "warranty bit", so we mask off just the
376 * lower byte to use as the board rev:
377 * http://www.raspberrypi.org/forums/viewtopic.php?f=63&t=98367&start=250
378 * http://www.raspberrypi.org/forums/viewtopic.php?f=31&t=20594
Stephen Warren46414292015-02-16 12:16:15 -0700379 */
Stephen Warrenc4ea1ed2015-12-04 22:07:45 -0700380 revision = msg->get_board_rev.body.resp.rev;
381 if (revision & 0x800000) {
382 rev_scheme = 1;
383 rev_type = (revision >> 4) & 0xff;
384 models = rpi_models_new_scheme;
385 models_count = ARRAY_SIZE(rpi_models_new_scheme);
386 } else {
387 rev_scheme = 0;
388 rev_type = revision & 0xff;
389 models = rpi_models_old_scheme;
390 models_count = ARRAY_SIZE(rpi_models_old_scheme);
Stephen Warren47705ef2014-12-23 20:01:43 -0700391 }
Stephen Warrenc4ea1ed2015-12-04 22:07:45 -0700392 if (rev_type >= models_count) {
393 printf("RPI: Board rev 0x%x outside known range\n", rev_type);
394 model = &rpi_model_unknown;
395 } else if (!models[rev_type].name) {
396 printf("RPI: Board rev 0x%x unknown\n", rev_type);
397 model = &rpi_model_unknown;
398 } else {
399 model = &models[rev_type];
Stephen Warren914627f2014-12-23 20:01:44 -0700400 }
Stephen Warren6fe78452014-11-18 21:40:21 -0700401
Stephen Warrenc4ea1ed2015-12-04 22:07:45 -0700402 printf("RPI %s (0x%x)\n", model->name, revision);
Stephen Warren6fe78452014-11-18 21:40:21 -0700403}
404
Stephen Warren0d04f342012-08-05 16:07:22 +0000405int board_init(void)
406{
Stephen Warren6fe78452014-11-18 21:40:21 -0700407 get_board_rev();
408
Stephen Warren0d04f342012-08-05 16:07:22 +0000409 gd->bd->bi_boot_params = 0x100;
410
Stephen Warrenf66f2aa2014-01-13 19:50:11 -0700411 return power_on_module(BCM2835_MBOX_POWER_DEVID_USB_HCD);
Stephen Warren0d04f342012-08-05 16:07:22 +0000412}
Stephen Warren131a1e62013-01-29 16:37:42 +0000413
Jeroen Hofstee5dfd1622014-07-13 22:01:51 +0200414int board_mmc_init(bd_t *bis)
Stephen Warren131a1e62013-01-29 16:37:42 +0000415{
Alexander Stein927753a2015-07-24 09:22:12 +0200416 ALLOC_CACHE_ALIGN_BUFFER(struct msg_get_clock_rate, msg_clk, 1);
Stephen Warren131a1e62013-01-29 16:37:42 +0000417 int ret;
418
Stephen Warrenf66f2aa2014-01-13 19:50:11 -0700419 power_on_module(BCM2835_MBOX_POWER_DEVID_SDHCI);
420
Stephen Warren131a1e62013-01-29 16:37:42 +0000421 BCM2835_MBOX_INIT_HDR(msg_clk);
422 BCM2835_MBOX_INIT_TAG(&msg_clk->get_clock_rate, GET_CLOCK_RATE);
423 msg_clk->get_clock_rate.body.req.clock_id = BCM2835_MBOX_CLOCK_ID_EMMC;
424
425 ret = bcm2835_mbox_call_prop(BCM2835_MBOX_PROP_CHAN, &msg_clk->hdr);
426 if (ret) {
427 printf("bcm2835: Could not query eMMC clock rate\n");
428 return -1;
429 }
430
431 return bcm2835_sdhci_init(BCM2835_SDHCI_BASE,
432 msg_clk->get_clock_rate.body.resp.rate_hz);
433}
Stephen Warrenea697ae2013-05-27 18:31:18 +0000434
Simon Glasse895a4b2014-10-23 18:58:47 -0600435int ft_board_setup(void *blob, bd_t *bd)
Stephen Warrenea697ae2013-05-27 18:31:18 +0000436{
437 /*
438 * For now, we simply always add the simplefb DT node. Later, we
439 * should be more intelligent, and e.g. only do this if no enabled DT
440 * node exists for the "real" graphics driver.
441 */
442 lcd_dt_simplefb_add_node(blob);
Simon Glasse895a4b2014-10-23 18:58:47 -0600443
444 return 0;
Stephen Warrenea697ae2013-05-27 18:31:18 +0000445}