blob: 1d3a4e09cfa3c3f2ca12d253c1c64ea947722908 [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 Warren46414292015-02-16 12:16:15 -070034#ifdef CONFIG_BCM2836
35 .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,
40 .clock = 3000000,
41};
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 Warren46414292015-02-16 12:16:15 -0700102#ifdef CONFIG_BCM2836
Stephen Warrenc4ea1ed2015-12-04 22:07:45 -0700103 "bcm2836-rpi-other.dtb",
Stephen Warren46414292015-02-16 12:16:15 -0700104#else
Stephen Warrenc4ea1ed2015-12-04 22:07:45 -0700105 "bcm2835-rpi-other.dtb",
Stephen Warren46414292015-02-16 12:16:15 -0700106#endif
Stephen Warrenc4ea1ed2015-12-04 22:07:45 -0700107 false,
108};
109
110static const struct rpi_model rpi_models_new_scheme[] = {
Stephen Warrendbe6f1e2015-12-04 22:07:44 -0700111 [0x4] = {
Stephen Warren46414292015-02-16 12:16:15 -0700112 "2 Model B",
113 "bcm2836-rpi-2-b.dtb",
114 true,
115 },
Stephen Warrenaf7c03e2015-12-04 22:07:46 -0700116 [0x9] = {
117 "Zero",
118 "bcm2835-rpi-zero.dtb",
119 false,
120 },
Stephen Warrenc4ea1ed2015-12-04 22:07:45 -0700121};
122
123static const struct rpi_model rpi_models_old_scheme[] = {
Stephen Warrendbe6f1e2015-12-04 22:07:44 -0700124 [0x2] = {
Lubomir Rintel7443a9c2016-01-29 09:35:52 +0100125 "Model B",
126 "bcm2835-rpi-b.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 [0x3] = {
Lubomir Rintel7443a9c2016-01-29 09:35:52 +0100130 "Model B",
131 "bcm2835-rpi-b.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 [0x4] = {
Lubomir Rintel7443a9c2016-01-29 09:35:52 +0100135 "Model B rev2",
136 "bcm2835-rpi-b-rev2.dtb",
Stephen Warren3207d8f2014-12-05 20:56:46 -0700137 true,
Stephen Warren6fe78452014-11-18 21:40:21 -0700138 },
Stephen Warrendbe6f1e2015-12-04 22:07:44 -0700139 [0x5] = {
Lubomir Rintel7443a9c2016-01-29 09:35:52 +0100140 "Model B rev2",
141 "bcm2835-rpi-b-rev2.dtb",
Stephen Warren3207d8f2014-12-05 20:56:46 -0700142 true,
Stephen Warren6fe78452014-11-18 21:40:21 -0700143 },
Stephen Warrendbe6f1e2015-12-04 22:07:44 -0700144 [0x6] = {
Lubomir Rintel7443a9c2016-01-29 09:35:52 +0100145 "Model B rev2",
146 "bcm2835-rpi-b-rev2.dtb",
Stephen Warren3207d8f2014-12-05 20:56:46 -0700147 true,
Stephen Warren6fe78452014-11-18 21:40:21 -0700148 },
Stephen Warrendbe6f1e2015-12-04 22:07:44 -0700149 [0x7] = {
Stephen Warren6fe78452014-11-18 21:40:21 -0700150 "Model A",
151 "bcm2835-rpi-a.dtb",
Stephen Warren3207d8f2014-12-05 20:56:46 -0700152 false,
Stephen Warren6fe78452014-11-18 21:40:21 -0700153 },
Stephen Warrendbe6f1e2015-12-04 22:07:44 -0700154 [0x8] = {
Stephen Warren6fe78452014-11-18 21:40:21 -0700155 "Model A",
156 "bcm2835-rpi-a.dtb",
Stephen Warren3207d8f2014-12-05 20:56:46 -0700157 false,
Stephen Warren6fe78452014-11-18 21:40:21 -0700158 },
Stephen Warrendbe6f1e2015-12-04 22:07:44 -0700159 [0x9] = {
Stephen Warren6fe78452014-11-18 21:40:21 -0700160 "Model A",
161 "bcm2835-rpi-a.dtb",
Stephen Warren3207d8f2014-12-05 20:56:46 -0700162 false,
Stephen Warren6fe78452014-11-18 21:40:21 -0700163 },
Stephen Warrendbe6f1e2015-12-04 22:07:44 -0700164 [0xd] = {
Stephen Warren6fe78452014-11-18 21:40:21 -0700165 "Model B rev2",
166 "bcm2835-rpi-b-rev2.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 [0xe] = {
Stephen Warren6fe78452014-11-18 21:40:21 -0700170 "Model B rev2",
171 "bcm2835-rpi-b-rev2.dtb",
Stephen Warren3207d8f2014-12-05 20:56:46 -0700172 true,
Stephen Warren6fe78452014-11-18 21:40:21 -0700173 },
Stephen Warrendbe6f1e2015-12-04 22:07:44 -0700174 [0xf] = {
Stephen Warren6fe78452014-11-18 21:40:21 -0700175 "Model B rev2",
176 "bcm2835-rpi-b-rev2.dtb",
Stephen Warren3207d8f2014-12-05 20:56:46 -0700177 true,
Stephen Warren6fe78452014-11-18 21:40:21 -0700178 },
Stephen Warrendbe6f1e2015-12-04 22:07:44 -0700179 [0x10] = {
Stephen Warren6fe78452014-11-18 21:40:21 -0700180 "Model B+",
181 "bcm2835-rpi-b-plus.dtb",
Stephen Warren3207d8f2014-12-05 20:56:46 -0700182 true,
Stephen Warren6fe78452014-11-18 21:40:21 -0700183 },
Stephen Warrendbe6f1e2015-12-04 22:07:44 -0700184 [0x11] = {
Stephen Warren6fe78452014-11-18 21:40:21 -0700185 "Compute Module",
186 "bcm2835-rpi-cm.dtb",
Stephen Warren3207d8f2014-12-05 20:56:46 -0700187 false,
Stephen Warren6fe78452014-11-18 21:40:21 -0700188 },
Stephen Warrendbe6f1e2015-12-04 22:07:44 -0700189 [0x12] = {
Stephen Warren47705ef2014-12-23 20:01:43 -0700190 "Model A+",
191 "bcm2835-rpi-a-plus.dtb",
192 false,
193 },
Stephen Warrendbe6f1e2015-12-04 22:07:44 -0700194 [0x13] = {
Stephen Warren787affb2015-04-12 21:43:25 -0600195 "Model B+",
196 "bcm2835-rpi-b-plus.dtb",
197 true,
198 },
Stephen Warrendbe6f1e2015-12-04 22:07:44 -0700199 [0x14] = {
Stephen Warren787affb2015-04-12 21:43:25 -0600200 "Compute Module",
201 "bcm2835-rpi-cm.dtb",
202 false,
203 },
Stephen Warrendbe6f1e2015-12-04 22:07:44 -0700204 [0x15] = {
Lubomir Rintel79ad5ce2015-10-14 17:17:54 +0200205 "Model A+",
206 "bcm2835-rpi-a-plus.dtb",
207 false,
208 },
Stephen Warren6fe78452014-11-18 21:40:21 -0700209};
210
Stephen Warrenc4ea1ed2015-12-04 22:07:45 -0700211static uint32_t revision;
212static uint32_t rev_scheme;
213static uint32_t rev_type;
214static const struct rpi_model *model;
Stephen Warren6fe78452014-11-18 21:40:21 -0700215
Stephen Warren0d04f342012-08-05 16:07:22 +0000216int dram_init(void)
217{
Alexander Stein927753a2015-07-24 09:22:12 +0200218 ALLOC_CACHE_ALIGN_BUFFER(struct msg_get_arm_mem, msg, 1);
Stephen Warren3f397782013-01-29 16:37:37 +0000219 int ret;
220
221 BCM2835_MBOX_INIT_HDR(msg);
222 BCM2835_MBOX_INIT_TAG(&msg->get_arm_mem, GET_ARM_MEMORY);
223
224 ret = bcm2835_mbox_call_prop(BCM2835_MBOX_PROP_CHAN, &msg->hdr);
225 if (ret) {
226 printf("bcm2835: Could not query ARM memory size\n");
227 return -1;
228 }
229
230 gd->ram_size = msg->get_arm_mem.body.resp.mem_size;
Stephen Warren0d04f342012-08-05 16:07:22 +0000231
232 return 0;
233}
234
Stephen Warren6fe78452014-11-18 21:40:21 -0700235static void set_fdtfile(void)
236{
237 const char *fdtfile;
238
239 if (getenv("fdtfile"))
240 return;
241
Stephen Warrenc4ea1ed2015-12-04 22:07:45 -0700242 fdtfile = model->fdtfile;
Stephen Warren6fe78452014-11-18 21:40:21 -0700243 setenv("fdtfile", fdtfile);
244}
245
246static void set_usbethaddr(void)
Stephen Warren4f80a062014-09-26 20:51:39 -0600247{
Alexander Stein927753a2015-07-24 09:22:12 +0200248 ALLOC_CACHE_ALIGN_BUFFER(struct msg_get_mac_address, msg, 1);
Stephen Warren4f80a062014-09-26 20:51:39 -0600249 int ret;
250
Stephen Warrenc4ea1ed2015-12-04 22:07:45 -0700251 if (!model->has_onboard_eth)
Stephen Warren3207d8f2014-12-05 20:56:46 -0700252 return;
253
Stephen Warren4f80a062014-09-26 20:51:39 -0600254 if (getenv("usbethaddr"))
Stephen Warren6fe78452014-11-18 21:40:21 -0700255 return;
Stephen Warren4f80a062014-09-26 20:51:39 -0600256
257 BCM2835_MBOX_INIT_HDR(msg);
258 BCM2835_MBOX_INIT_TAG(&msg->get_mac_address, GET_MAC_ADDRESS);
259
260 ret = bcm2835_mbox_call_prop(BCM2835_MBOX_PROP_CHAN, &msg->hdr);
261 if (ret) {
262 printf("bcm2835: Could not query MAC address\n");
263 /* Ignore error; not critical */
Stephen Warren6fe78452014-11-18 21:40:21 -0700264 return;
Stephen Warren4f80a062014-09-26 20:51:39 -0600265 }
266
267 eth_setenv_enetaddr("usbethaddr", msg->get_mac_address.body.resp.mac);
268
Lubomir Rintel859f1432016-02-03 16:08:09 +0100269 if (!getenv("ethaddr"))
270 setenv("ethaddr", getenv("usbethaddr"));
271
Stephen Warren6fe78452014-11-18 21:40:21 -0700272 return;
273}
274
Guillaume GARDETbff78562015-08-25 15:10:26 +0200275#ifdef CONFIG_ENV_VARS_UBOOT_RUNTIME_CONFIG
276static void set_board_info(void)
277{
Stephen Warrenc4ea1ed2015-12-04 22:07:45 -0700278 char s[11];
279
280 snprintf(s, sizeof(s), "0x%X", revision);
281 setenv("board_revision", s);
282 snprintf(s, sizeof(s), "%d", rev_scheme);
283 setenv("board_rev_scheme", s);
284 /* Can't rename this to board_rev_type since it's an ABI for scripts */
285 snprintf(s, sizeof(s), "0x%X", rev_type);
286 setenv("board_rev", s);
287 setenv("board_name", model->name);
Guillaume GARDETbff78562015-08-25 15:10:26 +0200288}
289#endif /* CONFIG_ENV_VARS_UBOOT_RUNTIME_CONFIG */
290
Lubomir Rintel757cd142016-02-22 22:06:47 +0100291static void set_serial_number(void)
292{
293 ALLOC_CACHE_ALIGN_BUFFER(struct msg_get_board_serial, msg, 1);
294 int ret;
295 char serial_string[17] = { 0 };
296
297 if (getenv("serial#"))
298 return;
299
300 BCM2835_MBOX_INIT_HDR(msg);
301 BCM2835_MBOX_INIT_TAG_NO_REQ(&msg->get_board_serial, GET_BOARD_SERIAL);
302
303 ret = bcm2835_mbox_call_prop(BCM2835_MBOX_PROP_CHAN, &msg->hdr);
304 if (ret) {
305 printf("bcm2835: Could not query board serial\n");
306 /* Ignore error; not critical */
307 return;
308 }
309
310 snprintf(serial_string, sizeof(serial_string), "%016" PRIx64,
311 msg->get_board_serial.body.resp.serial);
312 setenv("serial#", serial_string);
313}
314
Stephen Warren6fe78452014-11-18 21:40:21 -0700315int misc_init_r(void)
316{
317 set_fdtfile();
318 set_usbethaddr();
Guillaume GARDETbff78562015-08-25 15:10:26 +0200319#ifdef CONFIG_ENV_VARS_UBOOT_RUNTIME_CONFIG
320 set_board_info();
321#endif
Lubomir Rintel757cd142016-02-22 22:06:47 +0100322 set_serial_number();
323
Stephen Warren4f80a062014-09-26 20:51:39 -0600324 return 0;
325}
326
Stephen Warrenf66f2aa2014-01-13 19:50:11 -0700327static int power_on_module(u32 module)
328{
Alexander Stein927753a2015-07-24 09:22:12 +0200329 ALLOC_CACHE_ALIGN_BUFFER(struct msg_set_power_state, msg_pwr, 1);
Stephen Warrenf66f2aa2014-01-13 19:50:11 -0700330 int ret;
331
332 BCM2835_MBOX_INIT_HDR(msg_pwr);
333 BCM2835_MBOX_INIT_TAG(&msg_pwr->set_power_state,
334 SET_POWER_STATE);
335 msg_pwr->set_power_state.body.req.device_id = module;
336 msg_pwr->set_power_state.body.req.state =
337 BCM2835_MBOX_SET_POWER_STATE_REQ_ON |
338 BCM2835_MBOX_SET_POWER_STATE_REQ_WAIT;
339
340 ret = bcm2835_mbox_call_prop(BCM2835_MBOX_PROP_CHAN,
341 &msg_pwr->hdr);
342 if (ret) {
343 printf("bcm2835: Could not set module %u power state\n",
344 module);
345 return -1;
346 }
347
348 return 0;
349}
350
Stephen Warren6fe78452014-11-18 21:40:21 -0700351static void get_board_rev(void)
352{
Alexander Stein927753a2015-07-24 09:22:12 +0200353 ALLOC_CACHE_ALIGN_BUFFER(struct msg_get_board_rev, msg, 1);
Stephen Warren6fe78452014-11-18 21:40:21 -0700354 int ret;
Stephen Warrenc4ea1ed2015-12-04 22:07:45 -0700355 const struct rpi_model *models;
356 uint32_t models_count;
Stephen Warren6fe78452014-11-18 21:40:21 -0700357
358 BCM2835_MBOX_INIT_HDR(msg);
359 BCM2835_MBOX_INIT_TAG(&msg->get_board_rev, GET_BOARD_REV);
360
361 ret = bcm2835_mbox_call_prop(BCM2835_MBOX_PROP_CHAN, &msg->hdr);
362 if (ret) {
363 printf("bcm2835: Could not query board revision\n");
364 /* Ignore error; not critical */
365 return;
366 }
367
Stephen Warren46414292015-02-16 12:16:15 -0700368 /*
369 * For details of old-vs-new scheme, see:
370 * https://github.com/pimoroni/RPi.version/blob/master/RPi/version.py
371 * http://www.raspberrypi.org/forums/viewtopic.php?f=63&t=99293&p=690282
372 * (a few posts down)
Stephen Warren95b4f112015-03-23 23:00:25 -0600373 *
374 * For the RPi 1, bit 24 is the "warranty bit", so we mask off just the
375 * lower byte to use as the board rev:
376 * http://www.raspberrypi.org/forums/viewtopic.php?f=63&t=98367&start=250
377 * http://www.raspberrypi.org/forums/viewtopic.php?f=31&t=20594
Stephen Warren46414292015-02-16 12:16:15 -0700378 */
Stephen Warrenc4ea1ed2015-12-04 22:07:45 -0700379 revision = msg->get_board_rev.body.resp.rev;
380 if (revision & 0x800000) {
381 rev_scheme = 1;
382 rev_type = (revision >> 4) & 0xff;
383 models = rpi_models_new_scheme;
384 models_count = ARRAY_SIZE(rpi_models_new_scheme);
385 } else {
386 rev_scheme = 0;
387 rev_type = revision & 0xff;
388 models = rpi_models_old_scheme;
389 models_count = ARRAY_SIZE(rpi_models_old_scheme);
Stephen Warren47705ef2014-12-23 20:01:43 -0700390 }
Stephen Warrenc4ea1ed2015-12-04 22:07:45 -0700391 if (rev_type >= models_count) {
392 printf("RPI: Board rev 0x%x outside known range\n", rev_type);
393 model = &rpi_model_unknown;
394 } else if (!models[rev_type].name) {
395 printf("RPI: Board rev 0x%x unknown\n", rev_type);
396 model = &rpi_model_unknown;
397 } else {
398 model = &models[rev_type];
Stephen Warren914627f2014-12-23 20:01:44 -0700399 }
Stephen Warren6fe78452014-11-18 21:40:21 -0700400
Stephen Warrenc4ea1ed2015-12-04 22:07:45 -0700401 printf("RPI %s (0x%x)\n", model->name, revision);
Stephen Warren6fe78452014-11-18 21:40:21 -0700402}
403
Stephen Warren0d04f342012-08-05 16:07:22 +0000404int board_init(void)
405{
Stephen Warren6fe78452014-11-18 21:40:21 -0700406 get_board_rev();
407
Stephen Warren0d04f342012-08-05 16:07:22 +0000408 gd->bd->bi_boot_params = 0x100;
409
Stephen Warrenf66f2aa2014-01-13 19:50:11 -0700410 return power_on_module(BCM2835_MBOX_POWER_DEVID_USB_HCD);
Stephen Warren0d04f342012-08-05 16:07:22 +0000411}
Stephen Warren131a1e62013-01-29 16:37:42 +0000412
Jeroen Hofstee5dfd1622014-07-13 22:01:51 +0200413int board_mmc_init(bd_t *bis)
Stephen Warren131a1e62013-01-29 16:37:42 +0000414{
Alexander Stein927753a2015-07-24 09:22:12 +0200415 ALLOC_CACHE_ALIGN_BUFFER(struct msg_get_clock_rate, msg_clk, 1);
Stephen Warren131a1e62013-01-29 16:37:42 +0000416 int ret;
417
Stephen Warrenf66f2aa2014-01-13 19:50:11 -0700418 power_on_module(BCM2835_MBOX_POWER_DEVID_SDHCI);
419
Stephen Warren131a1e62013-01-29 16:37:42 +0000420 BCM2835_MBOX_INIT_HDR(msg_clk);
421 BCM2835_MBOX_INIT_TAG(&msg_clk->get_clock_rate, GET_CLOCK_RATE);
422 msg_clk->get_clock_rate.body.req.clock_id = BCM2835_MBOX_CLOCK_ID_EMMC;
423
424 ret = bcm2835_mbox_call_prop(BCM2835_MBOX_PROP_CHAN, &msg_clk->hdr);
425 if (ret) {
426 printf("bcm2835: Could not query eMMC clock rate\n");
427 return -1;
428 }
429
430 return bcm2835_sdhci_init(BCM2835_SDHCI_BASE,
431 msg_clk->get_clock_rate.body.resp.rate_hz);
432}
Stephen Warrenea697ae2013-05-27 18:31:18 +0000433
Simon Glasse895a4b2014-10-23 18:58:47 -0600434int ft_board_setup(void *blob, bd_t *bd)
Stephen Warrenea697ae2013-05-27 18:31:18 +0000435{
436 /*
437 * For now, we simply always add the simplefb DT node. Later, we
438 * should be more intelligent, and e.g. only do this if no enabled DT
439 * node exists for the "real" graphics driver.
440 */
441 lcd_dt_simplefb_add_node(blob);
Simon Glasse895a4b2014-10-23 18:58:47 -0600442
443 return 0;
Stephen Warrenea697ae2013-05-27 18:31:18 +0000444}