blob: 17d1f468dd3a53b0394d4beebbe52f000f41a811 [file] [log] [blame]
Wolfgang Denk6cb142f2006-03-12 02:12:27 +01001/*
2 * U-boot - board.c First C file to be called contains init routines
3 *
Mike Frysingerd5bffeb2008-02-19 00:54:20 -05004 * Copyright (c) 2005-2008 Analog Devices Inc.
Wolfgang Denk6cb142f2006-03-12 02:12:27 +01005 *
6 * (C) Copyright 2000-2004
7 * Wolfgang Denk, DENX Software Engineering, wd@denx.de.
8 *
Mike Frysingerd5bffeb2008-02-19 00:54:20 -05009 * Licensed under the GPL-2 or later.
Wolfgang Denk6cb142f2006-03-12 02:12:27 +010010 */
11
12#include <common.h>
13#include <command.h>
Jean-Christophe PLAGNIOL-VILLARD52cb4d42009-05-16 12:14:54 +020014#include <stdio_dev.h>
Mike Frysinger635f3302011-04-29 23:23:28 -040015#include <serial.h>
Wolfgang Denk6cb142f2006-03-12 02:12:27 +010016#include <environment.h>
Mike Frysingerd5bffeb2008-02-19 00:54:20 -050017#include <malloc.h>
Cliff Caie54c8202009-11-20 08:24:43 +000018#include <mmc.h>
Mike Frysingerd5bffeb2008-02-19 00:54:20 -050019#include <net.h>
Mike Frysinger01815c22008-10-06 03:52:24 -040020#include <status_led.h>
Mike Frysingerd5bffeb2008-02-19 00:54:20 -050021#include <version.h>
22
Aubrey.Li3f0606a2007-03-09 13:38:44 +080023#include <asm/cplb.h>
Mike Frysingerd5bffeb2008-02-19 00:54:20 -050024#include <asm/mach-common/bits/mpu.h>
Robin Getzf19fd872009-12-21 16:35:48 -050025#include <kgdb.h>
Mike Frysingerd5bffeb2008-02-19 00:54:20 -050026
27#ifdef CONFIG_CMD_NAND
28#include <nand.h> /* cannot even include nand.h if it isnt configured */
29#endif
Wolfgang Denk6cb142f2006-03-12 02:12:27 +010030
Luigi 'Comio' Mantellini310cecb2009-10-10 12:42:21 +020031#ifdef CONFIG_BITBANGMII
32#include <miiphy.h>
33#endif
34
Mike Frysinger9171fc82008-03-30 15:46:13 -040035#if defined(CONFIG_POST)
Aubrey.Li3f0606a2007-03-09 13:38:44 +080036#include <post.h>
37int post_flag;
38#endif
Wolfgang Denkd87080b2006-03-31 18:32:53 +020039
Heiko Schocher3f4978c2012-01-16 21:12:24 +000040#if defined(CONFIG_SYS_I2C)
41#include <i2c.h>
42#endif
43
Wolfgang Denk1218abf2007-09-15 20:48:41 +020044DECLARE_GLOBAL_DATA_PTR;
45
Mike Frysingerd5bffeb2008-02-19 00:54:20 -050046__attribute__((always_inline))
47static inline void serial_early_puts(const char *s)
48{
49#ifdef CONFIG_DEBUG_EARLY_SERIAL
50 serial_puts("Early: ");
51 serial_puts(s);
52#endif
53}
54
Wolfgang Denk6cb142f2006-03-12 02:12:27 +010055static int display_banner(void)
56{
Mike Frysingerbb838752011-06-30 18:26:39 -040057 display_options();
Mike Frysinger5d891152010-08-09 17:39:22 -040058 printf("CPU: ADSP %s "
Mike Frysingerfc68f9f2009-01-06 06:16:19 -050059 "(Detected Rev: 0.%d) "
60 "(%s boot)\n",
Mike Frysinger5d891152010-08-09 17:39:22 -040061 gd->bd->bi_cpu,
Mike Frysingerfc68f9f2009-01-06 06:16:19 -050062 bfin_revid(),
63 get_bfin_boot_mode(CONFIG_BFIN_BOOT_MODE));
Mike Frysingerd5bffeb2008-02-19 00:54:20 -050064 return 0;
Wolfgang Denk6cb142f2006-03-12 02:12:27 +010065}
66
67static int init_baudrate(void)
68{
Simon Glassc1f485a2011-10-13 14:43:08 +000069 gd->baudrate = getenv_ulong("baudrate", 10, CONFIG_BAUDRATE);
Axel Lin53086be2013-07-01 13:16:17 +080070 gd->bd->bi_baudrate = gd->baudrate;
Mike Frysingerd5bffeb2008-02-19 00:54:20 -050071 return 0;
Wolfgang Denk6cb142f2006-03-12 02:12:27 +010072}
73
Wolfgang Denk6cb142f2006-03-12 02:12:27 +010074static void display_global_data(void)
75{
Wolfgang Denk6cb142f2006-03-12 02:12:27 +010076 bd_t *bd;
Mike Frysinger03f70532010-01-19 15:39:07 -050077
78#ifndef CONFIG_DEBUG_EARLY_SERIAL
79 return;
80#endif
81
Wolfgang Denk6cb142f2006-03-12 02:12:27 +010082 bd = gd->bd;
Mike Frysingerf541e1d2009-08-24 19:03:18 -040083 printf(" gd: %p\n", gd);
84 printf(" |-flags: %lx\n", gd->flags);
Simon Glass4da25512013-03-05 14:39:59 +000085 printf(" |-board_type: %lx\n", gd->arch.board_type);
Simon Glass5e84e5a2012-10-12 14:21:17 +000086 printf(" |-baudrate: %u\n", gd->baudrate);
Mike Frysingerf541e1d2009-08-24 19:03:18 -040087 printf(" |-have_console: %lx\n", gd->have_console);
88 printf(" |-ram_size: %lx\n", gd->ram_size);
Mike Frysingerf541e1d2009-08-24 19:03:18 -040089 printf(" |-env_addr: %lx\n", gd->env_addr);
90 printf(" |-env_valid: %lx\n", gd->env_valid);
91 printf(" |-jt(%p): %p\n", gd->jt, *(gd->jt));
92 printf(" \\-bd: %p\n", gd->bd);
Mike Frysingerd5bffeb2008-02-19 00:54:20 -050093 printf(" |-bi_baudrate: %x\n", bd->bi_baudrate);
Mike Frysingerf541e1d2009-08-24 19:03:18 -040094 printf(" |-bi_boot_params: %lx\n", bd->bi_boot_params);
95 printf(" |-bi_memstart: %lx\n", bd->bi_memstart);
96 printf(" |-bi_memsize: %lx\n", bd->bi_memsize);
97 printf(" |-bi_flashstart: %lx\n", bd->bi_flashstart);
98 printf(" |-bi_flashsize: %lx\n", bd->bi_flashsize);
99 printf(" \\-bi_flashoffset: %lx\n", bd->bi_flashoffset);
Mike Frysingerd5bffeb2008-02-19 00:54:20 -0500100}
Wolfgang Denk6cb142f2006-03-12 02:12:27 +0100101
Mike Frysingerd5bffeb2008-02-19 00:54:20 -0500102#define CPLB_PAGE_SIZE (4 * 1024 * 1024)
103#define CPLB_PAGE_MASK (~(CPLB_PAGE_SIZE - 1))
Bob Liu7677d652011-10-25 18:07:58 +0800104#if defined(__ADSPBF60x__)
105#define CPLB_EX_PAGE_SIZE (16 * 1024 * 1024)
106#define CPLB_EX_PAGE_MASK (~(CPLB_EX_PAGE_SIZE - 1))
107#else
108#define CPLB_EX_PAGE_SIZE CPLB_PAGE_SIZE
109#define CPLB_EX_PAGE_MASK CPLB_PAGE_MASK
110#endif
Aubrey.Li3f0606a2007-03-09 13:38:44 +0800111void init_cplbtables(void)
112{
Mike Frysingerd5bffeb2008-02-19 00:54:20 -0500113 volatile uint32_t *ICPLB_ADDR, *ICPLB_DATA;
114 volatile uint32_t *DCPLB_ADDR, *DCPLB_DATA;
115 uint32_t extern_memory;
116 size_t i;
Aubrey.Li3f0606a2007-03-09 13:38:44 +0800117
Mike Frysingerd5bffeb2008-02-19 00:54:20 -0500118 void icplb_add(uint32_t addr, uint32_t data)
119 {
120 *(ICPLB_ADDR + i) = addr;
121 *(ICPLB_DATA + i) = data;
Aubrey.Li3f0606a2007-03-09 13:38:44 +0800122 }
Mike Frysingerd5bffeb2008-02-19 00:54:20 -0500123 void dcplb_add(uint32_t addr, uint32_t data)
124 {
125 *(DCPLB_ADDR + i) = addr;
126 *(DCPLB_DATA + i) = data;
Aubrey.Li3f0606a2007-03-09 13:38:44 +0800127 }
128
Mike Frysingerd5bffeb2008-02-19 00:54:20 -0500129 /* populate a few common entries ... we'll let
130 * the memory map and cplb exception handler do
131 * the rest of the work.
132 */
133 i = 0;
134 ICPLB_ADDR = (uint32_t *)ICPLB_ADDR0;
135 ICPLB_DATA = (uint32_t *)ICPLB_DATA0;
136 DCPLB_ADDR = (uint32_t *)DCPLB_ADDR0;
137 DCPLB_DATA = (uint32_t *)DCPLB_DATA0;
138
139 icplb_add(0xFFA00000, L1_IMEMORY);
140 dcplb_add(0xFF800000, L1_DMEMORY);
141 ++i;
Bob Liu7677d652011-10-25 18:07:58 +0800142#if defined(__ADSPBF60x__)
143 icplb_add(0x0, 0x0);
144 dcplb_add(CONFIG_SYS_FLASH_BASE, SDRAM_EBIU);
145 ++i;
146#endif
Mike Frysingerd5bffeb2008-02-19 00:54:20 -0500147
Mike Frysinger7527fee2009-11-09 19:38:23 -0500148 if (CONFIG_MEM_SIZE) {
149 uint32_t mbase = CONFIG_SYS_MONITOR_BASE;
150 uint32_t mend = mbase + CONFIG_SYS_MONITOR_LEN;
151 mbase &= CPLB_PAGE_MASK;
152 mend &= CPLB_PAGE_MASK;
Mike Frysingerd5bffeb2008-02-19 00:54:20 -0500153
Mike Frysinger7527fee2009-11-09 19:38:23 -0500154 icplb_add(mbase, SDRAM_IKERNEL);
155 dcplb_add(mbase, SDRAM_DKERNEL);
Mike Frysingerd5bffeb2008-02-19 00:54:20 -0500156 ++i;
Mike Frysinger7527fee2009-11-09 19:38:23 -0500157
158 /*
159 * If the monitor crosses a 4 meg boundary, we'll need
160 * to lock two entries for it. We assume it doesn't
161 * cross two 4 meg boundaries ...
162 */
163 if (mbase != mend) {
164 icplb_add(mend, SDRAM_IKERNEL);
165 dcplb_add(mend, SDRAM_DKERNEL);
166 ++i;
167 }
Mike Frysingerd5bffeb2008-02-19 00:54:20 -0500168 }
169
Bob Liu7677d652011-10-25 18:07:58 +0800170#ifndef __ADSPBF60x__
Mike Frysingerd5bffeb2008-02-19 00:54:20 -0500171 icplb_add(0x20000000, SDRAM_INON_CHBL);
172 dcplb_add(0x20000000, SDRAM_EBIU);
173 ++i;
Bob Liu7677d652011-10-25 18:07:58 +0800174#endif
Mike Frysingerd5bffeb2008-02-19 00:54:20 -0500175
176 /* Add entries for the rest of external RAM up to the bootrom */
177 extern_memory = 0;
178
179#ifdef CONFIG_DEBUG_NULL_PTR
180 icplb_add(extern_memory, (SDRAM_IKERNEL & ~PAGE_SIZE_MASK) | PAGE_SIZE_1KB);
181 dcplb_add(extern_memory, (SDRAM_DKERNEL & ~PAGE_SIZE_MASK) | PAGE_SIZE_1KB);
182 ++i;
183 icplb_add(extern_memory, SDRAM_IKERNEL);
184 dcplb_add(extern_memory, SDRAM_DKERNEL);
185 extern_memory += CPLB_PAGE_SIZE;
186 ++i;
187#endif
188
Bob Liu7677d652011-10-25 18:07:58 +0800189 while (i < 16 && extern_memory <
190 (CONFIG_SYS_MONITOR_BASE & CPLB_EX_PAGE_MASK)) {
Mike Frysingerd5bffeb2008-02-19 00:54:20 -0500191 icplb_add(extern_memory, SDRAM_IGENERIC);
192 dcplb_add(extern_memory, SDRAM_DGENERIC);
Bob Liu7677d652011-10-25 18:07:58 +0800193 extern_memory += CPLB_EX_PAGE_SIZE;
Mike Frysingerd5bffeb2008-02-19 00:54:20 -0500194 ++i;
195 }
196 while (i < 16) {
197 icplb_add(0, 0);
198 dcplb_add(0, 0);
199 ++i;
200 }
Aubrey.Li3f0606a2007-03-09 13:38:44 +0800201}
202
Mike Frysingera4932d72012-02-29 22:48:10 -0500203static int global_board_data_init(void)
204{
205#ifndef CONFIG_SYS_GBL_DATA_ADDR
206# define CONFIG_SYS_GBL_DATA_ADDR 0
207#endif
208#ifndef CONFIG_SYS_BD_INFO_ADDR
209# define CONFIG_SYS_BD_INFO_ADDR 0
210#endif
211
212 bd_t *bd;
213
214 if (CONFIG_SYS_GBL_DATA_ADDR) {
215 gd = (gd_t *) (CONFIG_SYS_GBL_DATA_ADDR);
216 memset((void *)gd, 0, GENERATED_GBL_DATA_SIZE);
217 } else {
218 static gd_t _bfin_gd;
219 gd = &_bfin_gd;
220 }
221
222 if (CONFIG_SYS_BD_INFO_ADDR) {
223 bd = (bd_t *) (CONFIG_SYS_BD_INFO_ADDR);
224 memset(bd, 0, GENERATED_BD_INFO_SIZE);
225 } else {
226 static bd_t _bfin_bd;
227 bd = &_bfin_bd;
228 }
229 gd->bd = bd;
230
231 bd->bi_r_version = version_string;
Marek Vasut5368c552012-09-23 17:41:24 +0200232 bd->bi_cpu = __stringify(CONFIG_BFIN_CPU);
Mike Frysingera4932d72012-02-29 22:48:10 -0500233 bd->bi_board_name = BFIN_BOARD_NAME;
234 bd->bi_vco = get_vco();
235 bd->bi_cclk = get_cclk();
236 bd->bi_sclk = get_sclk();
237 bd->bi_memstart = CONFIG_SYS_SDRAM_BASE;
238 bd->bi_memsize = CONFIG_SYS_MAX_RAM_SIZE;
239
240 return 0;
241}
242
Wolfgang Denk6cb142f2006-03-12 02:12:27 +0100243/*
244 * All attempts to come up with a "common" initialization sequence
245 * that works for all boards and architectures failed: some of the
246 * requirements are just _too_ different. To get rid of the resulting
247 * mess of board dependend #ifdef'ed code we now make the whole
248 * initialization sequence configurable to the user.
249 *
250 * The requirements for any new initalization function is simple: it
251 * receives a pointer to the "global data" structure as it's only
252 * argument, and returns an integer return code, where 0 means
253 * "continue" and != 0 means "fatal error, hang the system".
254 */
255
Mike Frysinger0c080aa2010-02-11 20:19:10 -0500256extern int watchdog_init(void);
Mike Frysingerd5bffeb2008-02-19 00:54:20 -0500257extern int exception_init(void);
258extern int irq_init(void);
Mike Frysingerd5bffeb2008-02-19 00:54:20 -0500259extern int timer_init(void);
260
Wolfgang Denk6cb142f2006-03-12 02:12:27 +0100261void board_init_f(ulong bootflag)
262{
Mike Frysinger6dadc912008-10-20 16:15:04 -0400263 char buf[32];
Aubrey.Li3f0606a2007-03-09 13:38:44 +0800264
Mike Frysingerd5bffeb2008-02-19 00:54:20 -0500265#ifdef CONFIG_BOARD_EARLY_INIT_F
266 serial_early_puts("Board early init flash\n");
267 board_early_init_f();
268#endif
269
270 serial_early_puts("Init CPLB tables\n");
Aubrey.Li3f0606a2007-03-09 13:38:44 +0800271 init_cplbtables();
Wolfgang Denk6cb142f2006-03-12 02:12:27 +0100272
Mike Frysingerd5bffeb2008-02-19 00:54:20 -0500273 serial_early_puts("Exceptions setup\n");
274 exception_init();
275
276#ifndef CONFIG_ICACHE_OFF
277 serial_early_puts("Turn on ICACHE\n");
278 icache_enable();
279#endif
280#ifndef CONFIG_DCACHE_OFF
281 serial_early_puts("Turn on DCACHE\n");
282 dcache_enable();
283#endif
284
Sonic Zhange9a389a2013-04-07 18:02:37 +0800285#ifdef CONFIG_HW_WATCHDOG
Mike Frysinger0c080aa2010-02-11 20:19:10 -0500286 serial_early_puts("Setting up external watchdog\n");
Sonic Zhange9a389a2013-04-07 18:02:37 +0800287 hw_watchdog_init();
Mike Frysinger0c080aa2010-02-11 20:19:10 -0500288#endif
289
Mike Frysinger78a0ba72008-10-06 03:57:39 -0400290#ifdef DEBUG
Wolfgang Denk25ddd1f2010-10-26 14:34:52 +0200291 if (GENERATED_GBL_DATA_SIZE < sizeof(*gd))
Mike Frysinger78a0ba72008-10-06 03:57:39 -0400292 hang();
293#endif
Mike Frysingerd5bffeb2008-02-19 00:54:20 -0500294 serial_early_puts("Init global data\n");
Wolfgang Denk6cb142f2006-03-12 02:12:27 +0100295
Mike Frysingera4932d72012-02-29 22:48:10 -0500296 global_board_data_init();
Aubrey.Li3f0606a2007-03-09 13:38:44 +0800297
Mike Frysingerd5bffeb2008-02-19 00:54:20 -0500298 /* Initialize */
299 serial_early_puts("IRQ init\n");
300 irq_init();
301 serial_early_puts("Environment init\n");
302 env_init();
303 serial_early_puts("Baudrate init\n");
304 init_baudrate();
305 serial_early_puts("Serial init\n");
306 serial_init();
Mike Frysinger635f3302011-04-29 23:23:28 -0400307 serial_initialize();
Mike Frysingerd5bffeb2008-02-19 00:54:20 -0500308 serial_early_puts("Console init flash\n");
309 console_init_f();
310 serial_early_puts("End of early debugging\n");
311 display_banner();
Aubrey.Li3f0606a2007-03-09 13:38:44 +0800312
Wolfgang Denk6cb142f2006-03-12 02:12:27 +0100313 checkboard();
Wolfgang Denk6cb142f2006-03-12 02:12:27 +0100314 timer_init();
Mike Frysingerd5bffeb2008-02-19 00:54:20 -0500315
Mike Frysinger6dadc912008-10-20 16:15:04 -0400316 printf("Clock: VCO: %s MHz, ", strmhz(buf, get_vco()));
317 printf("Core: %s MHz, ", strmhz(buf, get_cclk()));
Sonic Zhanga2979dc2012-08-16 11:56:14 +0800318#if defined(__ADSPBF60x__)
319 printf("System0: %s MHz, ", strmhz(buf, get_sclk0()));
320 printf("System1: %s MHz, ", strmhz(buf, get_sclk1()));
321 printf("Dclk: %s MHz\n", strmhz(buf, get_dclk()));
322#else
Mike Frysinger6dadc912008-10-20 16:15:04 -0400323 printf("System: %s MHz\n", strmhz(buf, get_sclk()));
Sonic Zhanga2979dc2012-08-16 11:56:14 +0800324#endif
Mike Frysingerd5bffeb2008-02-19 00:54:20 -0500325
Mike Frysinger7d69dfd2010-12-20 05:18:55 -0500326 if (CONFIG_MEM_SIZE) {
327 printf("RAM: ");
Mike Frysingera4932d72012-02-29 22:48:10 -0500328 print_size(gd->bd->bi_memsize, "\n");
Mike Frysinger7d69dfd2010-12-20 05:18:55 -0500329 }
330
Mike Frysinger9171fc82008-03-30 15:46:13 -0400331#if defined(CONFIG_POST)
Aubrey.Li3f0606a2007-03-09 13:38:44 +0800332 post_init_f();
333 post_bootmode_init();
334 post_run(NULL, POST_ROM | post_bootmode_get(0));
335#endif
Mike Frysingerd5bffeb2008-02-19 00:54:20 -0500336
Wolfgang Denk6cb142f2006-03-12 02:12:27 +0100337 board_init_r((gd_t *) gd, 0x20000010);
338}
339
Mike Frysinger8996d162009-02-22 16:02:27 -0500340static void board_net_init_r(bd_t *bd)
341{
Luigi 'Comio' Mantellini310cecb2009-10-10 12:42:21 +0200342#ifdef CONFIG_BITBANGMII
343 bb_miiphy_init();
344#endif
Mike Frysinger8996d162009-02-22 16:02:27 -0500345#ifdef CONFIG_CMD_NET
Mike Frysinger8996d162009-02-22 16:02:27 -0500346 printf("Net: ");
Mike Frysingerde301222012-04-04 18:53:41 +0000347 eth_initialize(bd);
Mike Frysinger8996d162009-02-22 16:02:27 -0500348#endif
349}
350
Wolfgang Denk6cb142f2006-03-12 02:12:27 +0100351void board_init_r(gd_t * id, ulong dest_addr)
352{
Wolfgang Denk6cb142f2006-03-12 02:12:27 +0100353 bd_t *bd;
Wolfgang Denk6cb142f2006-03-12 02:12:27 +0100354 gd = id;
355 gd->flags |= GD_FLG_RELOC; /* tell others: relocation done */
356 bd = gd->bd;
357
Mike Frysinger9171fc82008-03-30 15:46:13 -0400358#if defined(CONFIG_POST)
Aubrey.Li3f0606a2007-03-09 13:38:44 +0800359 post_output_backlog();
Aubrey.Li3f0606a2007-03-09 13:38:44 +0800360#endif
361
Stefan Roesec790b042009-05-11 15:50:12 +0200362 /* initialize malloc() area */
Peter Tysera483a162009-08-21 23:05:20 -0500363 mem_malloc_init(CONFIG_SYS_MALLOC_BASE, CONFIG_SYS_MALLOC_LEN);
Stefan Roesec790b042009-05-11 15:50:12 +0200364
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200365#if !defined(CONFIG_SYS_NO_FLASH)
Mike Frysingerb6edc712008-10-06 04:00:07 -0400366 /* Initialize the flash and protect u-boot by default */
Mike Frysingerd5bffeb2008-02-19 00:54:20 -0500367 extern flash_info_t flash_info[];
Mike Frysingerd5bffeb2008-02-19 00:54:20 -0500368 puts("Flash: ");
Mike Frysinger45c48952008-10-06 04:01:26 -0400369 ulong size = flash_init();
Mike Frysingerd5bffeb2008-02-19 00:54:20 -0500370 print_size(size, "\n");
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200371 flash_protect(FLAG_PROTECT_SET, CONFIG_SYS_FLASH_BASE,
Mike Frysingerb6edc712008-10-06 04:00:07 -0400372 CONFIG_SYS_FLASH_BASE + CONFIG_SYS_MONITOR_LEN - 1,
373 &flash_info[0]);
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200374 bd->bi_flashstart = CONFIG_SYS_FLASH_BASE;
Wolfgang Denk6cb142f2006-03-12 02:12:27 +0100375 bd->bi_flashsize = size;
376 bd->bi_flashoffset = 0;
377#else
378 bd->bi_flashstart = 0;
379 bd->bi_flashsize = 0;
380 bd->bi_flashoffset = 0;
381#endif
Wolfgang Denk6cb142f2006-03-12 02:12:27 +0100382
Mike Frysinger39782722008-10-06 03:55:25 -0400383#ifdef CONFIG_CMD_NAND
384 puts("NAND: ");
385 nand_init(); /* go init the NAND */
386#endif
387
Cliff Caie54c8202009-11-20 08:24:43 +0000388#ifdef CONFIG_GENERIC_MMC
Mike Frysingerd3c07a52010-09-29 14:46:42 -0400389 puts("MMC: ");
Cliff Caie54c8202009-11-20 08:24:43 +0000390 mmc_initialize(bd);
391#endif
392
Heiko Schocher3f4978c2012-01-16 21:12:24 +0000393#if defined(CONFIG_SYS_I2C)
394 i2c_reloc_fixup();
395#endif
Wolfgang Denk6cb142f2006-03-12 02:12:27 +0100396 /* relocate environment function pointers etc. */
397 env_relocate();
398
Jean-Christophe PLAGNIOL-VILLARD52cb4d42009-05-16 12:14:54 +0200399 /* Initialize stdio devices */
400 stdio_init();
Wolfgang Denk6cb142f2006-03-12 02:12:27 +0100401 jumptable_init();
402
403 /* Initialize the console (after the relocation and devices init) */
404 console_init_r();
405
Robin Getzf19fd872009-12-21 16:35:48 -0500406#ifdef CONFIG_CMD_KGDB
407 puts("KGDB: ");
408 kgdb_init();
409#endif
410
Mike Frysinger01815c22008-10-06 03:52:24 -0400411#ifdef CONFIG_STATUS_LED
412 status_led_set(STATUS_LED_BOOT, STATUS_LED_BLINKING);
413 status_led_set(STATUS_LED_CRASH, STATUS_LED_OFF);
414#endif
415
Wolfgang Denk6cb142f2006-03-12 02:12:27 +0100416 /* Initialize from environment */
Simon Glassc1f485a2011-10-13 14:43:08 +0000417 load_addr = getenv_ulong("loadaddr", 16, load_addr);
Aubrey.Li3f0606a2007-03-09 13:38:44 +0800418
Wolfgang Denk6cb142f2006-03-12 02:12:27 +0100419#if defined(CONFIG_MISC_INIT_R)
420 /* miscellaneous platform dependent initialisations */
421 misc_init_r();
422#endif
423
Mike Frysinger8996d162009-02-22 16:02:27 -0500424 board_net_init_r(bd);
Aubrey.Li3f0606a2007-03-09 13:38:44 +0800425
Aubrey.Li3f0606a2007-03-09 13:38:44 +0800426 display_global_data();
Aubrey.Li3f0606a2007-03-09 13:38:44 +0800427
Mike Frysinger9171fc82008-03-30 15:46:13 -0400428#if defined(CONFIG_POST)
Aubrey.Li3f0606a2007-03-09 13:38:44 +0800429 if (post_flag)
430 post_run(NULL, POST_RAM | post_bootmode_get(0));
Wolfgang Denk6cb142f2006-03-12 02:12:27 +0100431#endif
432
Mike Frysinger05e78252010-12-24 13:19:25 -0500433 if (CONFIG_MEM_SIZE && bfin_os_log_check()) {
Mike Frysinger909878f2009-07-09 01:15:05 -0400434 puts("\nLog buffer from operating system:\n");
435 bfin_os_log_dump();
436 puts("\n");
437 }
438
Wolfgang Denk6cb142f2006-03-12 02:12:27 +0100439 /* main_loop() can return to retry autoboot, if so just run it again. */
Mike Frysingerd5bffeb2008-02-19 00:54:20 -0500440 for (;;)
Wolfgang Denk6cb142f2006-03-12 02:12:27 +0100441 main_loop();
Wolfgang Denk6cb142f2006-03-12 02:12:27 +0100442}