blob: 392d72d23214064224208c795eefb9d07cb91387 [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>
Sonic Zhang31d5d4e2013-12-09 12:56:27 +080022#include <watchdog.h>
Mike Frysingerd5bffeb2008-02-19 00:54:20 -050023
Aubrey.Li3f0606a2007-03-09 13:38:44 +080024#include <asm/cplb.h>
Mike Frysingerd5bffeb2008-02-19 00:54:20 -050025#include <asm/mach-common/bits/mpu.h>
Robin Getzf19fd872009-12-21 16:35:48 -050026#include <kgdb.h>
Mike Frysingerd5bffeb2008-02-19 00:54:20 -050027
28#ifdef CONFIG_CMD_NAND
29#include <nand.h> /* cannot even include nand.h if it isnt configured */
30#endif
Wolfgang Denk6cb142f2006-03-12 02:12:27 +010031
Luigi 'Comio' Mantellini310cecb2009-10-10 12:42:21 +020032#ifdef CONFIG_BITBANGMII
33#include <miiphy.h>
34#endif
35
Mike Frysinger9171fc82008-03-30 15:46:13 -040036#if defined(CONFIG_POST)
Aubrey.Li3f0606a2007-03-09 13:38:44 +080037#include <post.h>
38int post_flag;
39#endif
Wolfgang Denkd87080b2006-03-31 18:32:53 +020040
Heiko Schocher3f4978c2012-01-16 21:12:24 +000041#if defined(CONFIG_SYS_I2C)
42#include <i2c.h>
43#endif
44
Wolfgang Denk1218abf2007-09-15 20:48:41 +020045DECLARE_GLOBAL_DATA_PTR;
46
Mike Frysingerd5bffeb2008-02-19 00:54:20 -050047__attribute__((always_inline))
48static inline void serial_early_puts(const char *s)
49{
50#ifdef CONFIG_DEBUG_EARLY_SERIAL
51 serial_puts("Early: ");
52 serial_puts(s);
53#endif
54}
55
Wolfgang Denk6cb142f2006-03-12 02:12:27 +010056static int display_banner(void)
57{
Mike Frysingerbb838752011-06-30 18:26:39 -040058 display_options();
Mike Frysinger5d891152010-08-09 17:39:22 -040059 printf("CPU: ADSP %s "
Mike Frysingerfc68f9f2009-01-06 06:16:19 -050060 "(Detected Rev: 0.%d) "
61 "(%s boot)\n",
Mike Frysinger5d891152010-08-09 17:39:22 -040062 gd->bd->bi_cpu,
Mike Frysingerfc68f9f2009-01-06 06:16:19 -050063 bfin_revid(),
64 get_bfin_boot_mode(CONFIG_BFIN_BOOT_MODE));
Mike Frysingerd5bffeb2008-02-19 00:54:20 -050065 return 0;
Wolfgang Denk6cb142f2006-03-12 02:12:27 +010066}
67
68static int init_baudrate(void)
69{
Simon Glassc1f485a2011-10-13 14:43:08 +000070 gd->baudrate = getenv_ulong("baudrate", 10, CONFIG_BAUDRATE);
Axel Lin53086be2013-07-01 13:16:17 +080071 gd->bd->bi_baudrate = gd->baudrate;
Mike Frysingerd5bffeb2008-02-19 00:54:20 -050072 return 0;
Wolfgang Denk6cb142f2006-03-12 02:12:27 +010073}
74
Wolfgang Denk6cb142f2006-03-12 02:12:27 +010075static void display_global_data(void)
76{
Wolfgang Denk6cb142f2006-03-12 02:12:27 +010077 bd_t *bd;
Mike Frysinger03f70532010-01-19 15:39:07 -050078
79#ifndef CONFIG_DEBUG_EARLY_SERIAL
80 return;
81#endif
82
Wolfgang Denk6cb142f2006-03-12 02:12:27 +010083 bd = gd->bd;
Mike Frysingerf541e1d2009-08-24 19:03:18 -040084 printf(" gd: %p\n", gd);
85 printf(" |-flags: %lx\n", gd->flags);
Simon Glass4da25512013-03-05 14:39:59 +000086 printf(" |-board_type: %lx\n", gd->arch.board_type);
Simon Glass5e84e5a2012-10-12 14:21:17 +000087 printf(" |-baudrate: %u\n", gd->baudrate);
Mike Frysingerf541e1d2009-08-24 19:03:18 -040088 printf(" |-have_console: %lx\n", gd->have_console);
89 printf(" |-ram_size: %lx\n", gd->ram_size);
Mike Frysingerf541e1d2009-08-24 19:03:18 -040090 printf(" |-env_addr: %lx\n", gd->env_addr);
91 printf(" |-env_valid: %lx\n", gd->env_valid);
92 printf(" |-jt(%p): %p\n", gd->jt, *(gd->jt));
93 printf(" \\-bd: %p\n", gd->bd);
Mike Frysingerd5bffeb2008-02-19 00:54:20 -050094 printf(" |-bi_baudrate: %x\n", bd->bi_baudrate);
Mike Frysingerf541e1d2009-08-24 19:03:18 -040095 printf(" |-bi_boot_params: %lx\n", bd->bi_boot_params);
96 printf(" |-bi_memstart: %lx\n", bd->bi_memstart);
97 printf(" |-bi_memsize: %lx\n", bd->bi_memsize);
98 printf(" |-bi_flashstart: %lx\n", bd->bi_flashstart);
99 printf(" |-bi_flashsize: %lx\n", bd->bi_flashsize);
100 printf(" \\-bi_flashoffset: %lx\n", bd->bi_flashoffset);
Mike Frysingerd5bffeb2008-02-19 00:54:20 -0500101}
Wolfgang Denk6cb142f2006-03-12 02:12:27 +0100102
Mike Frysingerd5bffeb2008-02-19 00:54:20 -0500103#define CPLB_PAGE_SIZE (4 * 1024 * 1024)
104#define CPLB_PAGE_MASK (~(CPLB_PAGE_SIZE - 1))
Bob Liu7677d652011-10-25 18:07:58 +0800105#if defined(__ADSPBF60x__)
106#define CPLB_EX_PAGE_SIZE (16 * 1024 * 1024)
107#define CPLB_EX_PAGE_MASK (~(CPLB_EX_PAGE_SIZE - 1))
108#else
109#define CPLB_EX_PAGE_SIZE CPLB_PAGE_SIZE
110#define CPLB_EX_PAGE_MASK CPLB_PAGE_MASK
111#endif
Aubrey.Li3f0606a2007-03-09 13:38:44 +0800112void init_cplbtables(void)
113{
Mike Frysingerd5bffeb2008-02-19 00:54:20 -0500114 volatile uint32_t *ICPLB_ADDR, *ICPLB_DATA;
115 volatile uint32_t *DCPLB_ADDR, *DCPLB_DATA;
116 uint32_t extern_memory;
117 size_t i;
Aubrey.Li3f0606a2007-03-09 13:38:44 +0800118
Mike Frysingerd5bffeb2008-02-19 00:54:20 -0500119 void icplb_add(uint32_t addr, uint32_t data)
120 {
121 *(ICPLB_ADDR + i) = addr;
122 *(ICPLB_DATA + i) = data;
Aubrey.Li3f0606a2007-03-09 13:38:44 +0800123 }
Mike Frysingerd5bffeb2008-02-19 00:54:20 -0500124 void dcplb_add(uint32_t addr, uint32_t data)
125 {
126 *(DCPLB_ADDR + i) = addr;
127 *(DCPLB_DATA + i) = data;
Aubrey.Li3f0606a2007-03-09 13:38:44 +0800128 }
129
Mike Frysingerd5bffeb2008-02-19 00:54:20 -0500130 /* populate a few common entries ... we'll let
131 * the memory map and cplb exception handler do
132 * the rest of the work.
133 */
134 i = 0;
135 ICPLB_ADDR = (uint32_t *)ICPLB_ADDR0;
136 ICPLB_DATA = (uint32_t *)ICPLB_DATA0;
137 DCPLB_ADDR = (uint32_t *)DCPLB_ADDR0;
138 DCPLB_DATA = (uint32_t *)DCPLB_DATA0;
139
140 icplb_add(0xFFA00000, L1_IMEMORY);
141 dcplb_add(0xFF800000, L1_DMEMORY);
142 ++i;
Bob Liu7677d652011-10-25 18:07:58 +0800143#if defined(__ADSPBF60x__)
144 icplb_add(0x0, 0x0);
145 dcplb_add(CONFIG_SYS_FLASH_BASE, SDRAM_EBIU);
146 ++i;
147#endif
Mike Frysingerd5bffeb2008-02-19 00:54:20 -0500148
Mike Frysinger7527fee2009-11-09 19:38:23 -0500149 if (CONFIG_MEM_SIZE) {
150 uint32_t mbase = CONFIG_SYS_MONITOR_BASE;
151 uint32_t mend = mbase + CONFIG_SYS_MONITOR_LEN;
152 mbase &= CPLB_PAGE_MASK;
153 mend &= CPLB_PAGE_MASK;
Mike Frysingerd5bffeb2008-02-19 00:54:20 -0500154
Mike Frysinger7527fee2009-11-09 19:38:23 -0500155 icplb_add(mbase, SDRAM_IKERNEL);
156 dcplb_add(mbase, SDRAM_DKERNEL);
Mike Frysingerd5bffeb2008-02-19 00:54:20 -0500157 ++i;
Mike Frysinger7527fee2009-11-09 19:38:23 -0500158
159 /*
160 * If the monitor crosses a 4 meg boundary, we'll need
161 * to lock two entries for it. We assume it doesn't
162 * cross two 4 meg boundaries ...
163 */
164 if (mbase != mend) {
165 icplb_add(mend, SDRAM_IKERNEL);
166 dcplb_add(mend, SDRAM_DKERNEL);
167 ++i;
168 }
Mike Frysingerd5bffeb2008-02-19 00:54:20 -0500169 }
170
Bob Liu7677d652011-10-25 18:07:58 +0800171#ifndef __ADSPBF60x__
Mike Frysingerd5bffeb2008-02-19 00:54:20 -0500172 icplb_add(0x20000000, SDRAM_INON_CHBL);
173 dcplb_add(0x20000000, SDRAM_EBIU);
174 ++i;
Bob Liu7677d652011-10-25 18:07:58 +0800175#endif
Mike Frysingerd5bffeb2008-02-19 00:54:20 -0500176
177 /* Add entries for the rest of external RAM up to the bootrom */
178 extern_memory = 0;
179
180#ifdef CONFIG_DEBUG_NULL_PTR
181 icplb_add(extern_memory, (SDRAM_IKERNEL & ~PAGE_SIZE_MASK) | PAGE_SIZE_1KB);
182 dcplb_add(extern_memory, (SDRAM_DKERNEL & ~PAGE_SIZE_MASK) | PAGE_SIZE_1KB);
183 ++i;
184 icplb_add(extern_memory, SDRAM_IKERNEL);
185 dcplb_add(extern_memory, SDRAM_DKERNEL);
186 extern_memory += CPLB_PAGE_SIZE;
187 ++i;
188#endif
189
Bob Liu7677d652011-10-25 18:07:58 +0800190 while (i < 16 && extern_memory <
191 (CONFIG_SYS_MONITOR_BASE & CPLB_EX_PAGE_MASK)) {
Mike Frysingerd5bffeb2008-02-19 00:54:20 -0500192 icplb_add(extern_memory, SDRAM_IGENERIC);
193 dcplb_add(extern_memory, SDRAM_DGENERIC);
Bob Liu7677d652011-10-25 18:07:58 +0800194 extern_memory += CPLB_EX_PAGE_SIZE;
Mike Frysingerd5bffeb2008-02-19 00:54:20 -0500195 ++i;
196 }
197 while (i < 16) {
198 icplb_add(0, 0);
199 dcplb_add(0, 0);
200 ++i;
201 }
Aubrey.Li3f0606a2007-03-09 13:38:44 +0800202}
203
Mike Frysingera4932d72012-02-29 22:48:10 -0500204static int global_board_data_init(void)
205{
206#ifndef CONFIG_SYS_GBL_DATA_ADDR
207# define CONFIG_SYS_GBL_DATA_ADDR 0
208#endif
209#ifndef CONFIG_SYS_BD_INFO_ADDR
210# define CONFIG_SYS_BD_INFO_ADDR 0
211#endif
212
213 bd_t *bd;
214
215 if (CONFIG_SYS_GBL_DATA_ADDR) {
216 gd = (gd_t *) (CONFIG_SYS_GBL_DATA_ADDR);
217 memset((void *)gd, 0, GENERATED_GBL_DATA_SIZE);
218 } else {
219 static gd_t _bfin_gd;
220 gd = &_bfin_gd;
221 }
222
223 if (CONFIG_SYS_BD_INFO_ADDR) {
224 bd = (bd_t *) (CONFIG_SYS_BD_INFO_ADDR);
225 memset(bd, 0, GENERATED_BD_INFO_SIZE);
226 } else {
227 static bd_t _bfin_bd;
228 bd = &_bfin_bd;
229 }
230 gd->bd = bd;
231
232 bd->bi_r_version = version_string;
Marek Vasut5368c552012-09-23 17:41:24 +0200233 bd->bi_cpu = __stringify(CONFIG_BFIN_CPU);
Mike Frysingera4932d72012-02-29 22:48:10 -0500234 bd->bi_board_name = BFIN_BOARD_NAME;
235 bd->bi_vco = get_vco();
236 bd->bi_cclk = get_cclk();
237 bd->bi_sclk = get_sclk();
238 bd->bi_memstart = CONFIG_SYS_SDRAM_BASE;
239 bd->bi_memsize = CONFIG_SYS_MAX_RAM_SIZE;
240
241 return 0;
242}
243
Wolfgang Denk6cb142f2006-03-12 02:12:27 +0100244/*
245 * All attempts to come up with a "common" initialization sequence
246 * that works for all boards and architectures failed: some of the
247 * requirements are just _too_ different. To get rid of the resulting
248 * mess of board dependend #ifdef'ed code we now make the whole
249 * initialization sequence configurable to the user.
250 *
251 * The requirements for any new initalization function is simple: it
252 * receives a pointer to the "global data" structure as it's only
253 * argument, and returns an integer return code, where 0 means
254 * "continue" and != 0 means "fatal error, hang the system".
255 */
256
Mike Frysinger0c080aa2010-02-11 20:19:10 -0500257extern int watchdog_init(void);
Mike Frysingerd5bffeb2008-02-19 00:54:20 -0500258extern int exception_init(void);
259extern int irq_init(void);
Mike Frysingerd5bffeb2008-02-19 00:54:20 -0500260extern int timer_init(void);
261
Wolfgang Denk6cb142f2006-03-12 02:12:27 +0100262void board_init_f(ulong bootflag)
263{
Mike Frysinger6dadc912008-10-20 16:15:04 -0400264 char buf[32];
Aubrey.Li3f0606a2007-03-09 13:38:44 +0800265
Mike Frysingerd5bffeb2008-02-19 00:54:20 -0500266#ifdef CONFIG_BOARD_EARLY_INIT_F
267 serial_early_puts("Board early init flash\n");
268 board_early_init_f();
269#endif
270
271 serial_early_puts("Init CPLB tables\n");
Aubrey.Li3f0606a2007-03-09 13:38:44 +0800272 init_cplbtables();
Wolfgang Denk6cb142f2006-03-12 02:12:27 +0100273
Mike Frysingerd5bffeb2008-02-19 00:54:20 -0500274 serial_early_puts("Exceptions setup\n");
275 exception_init();
276
277#ifndef CONFIG_ICACHE_OFF
278 serial_early_puts("Turn on ICACHE\n");
279 icache_enable();
280#endif
281#ifndef CONFIG_DCACHE_OFF
282 serial_early_puts("Turn on DCACHE\n");
283 dcache_enable();
284#endif
285
Sonic Zhange9a389a2013-04-07 18:02:37 +0800286#ifdef CONFIG_HW_WATCHDOG
Mike Frysinger0c080aa2010-02-11 20:19:10 -0500287 serial_early_puts("Setting up external watchdog\n");
Sonic Zhange9a389a2013-04-07 18:02:37 +0800288 hw_watchdog_init();
Mike Frysinger0c080aa2010-02-11 20:19:10 -0500289#endif
290
Mike Frysinger78a0ba72008-10-06 03:57:39 -0400291#ifdef DEBUG
Wolfgang Denk25ddd1f2010-10-26 14:34:52 +0200292 if (GENERATED_GBL_DATA_SIZE < sizeof(*gd))
Mike Frysinger78a0ba72008-10-06 03:57:39 -0400293 hang();
294#endif
Mike Frysingerd5bffeb2008-02-19 00:54:20 -0500295 serial_early_puts("Init global data\n");
Wolfgang Denk6cb142f2006-03-12 02:12:27 +0100296
Mike Frysingera4932d72012-02-29 22:48:10 -0500297 global_board_data_init();
Aubrey.Li3f0606a2007-03-09 13:38:44 +0800298
Mike Frysingerd5bffeb2008-02-19 00:54:20 -0500299 /* Initialize */
300 serial_early_puts("IRQ init\n");
301 irq_init();
302 serial_early_puts("Environment init\n");
303 env_init();
304 serial_early_puts("Baudrate init\n");
305 init_baudrate();
306 serial_early_puts("Serial init\n");
307 serial_init();
Mike Frysinger635f3302011-04-29 23:23:28 -0400308 serial_initialize();
Mike Frysingerd5bffeb2008-02-19 00:54:20 -0500309 serial_early_puts("Console init flash\n");
310 console_init_f();
311 serial_early_puts("End of early debugging\n");
312 display_banner();
Aubrey.Li3f0606a2007-03-09 13:38:44 +0800313
Wolfgang Denk6cb142f2006-03-12 02:12:27 +0100314 checkboard();
Wolfgang Denk6cb142f2006-03-12 02:12:27 +0100315 timer_init();
Mike Frysingerd5bffeb2008-02-19 00:54:20 -0500316
Mike Frysinger6dadc912008-10-20 16:15:04 -0400317 printf("Clock: VCO: %s MHz, ", strmhz(buf, get_vco()));
318 printf("Core: %s MHz, ", strmhz(buf, get_cclk()));
Sonic Zhanga2979dc2012-08-16 11:56:14 +0800319#if defined(__ADSPBF60x__)
320 printf("System0: %s MHz, ", strmhz(buf, get_sclk0()));
321 printf("System1: %s MHz, ", strmhz(buf, get_sclk1()));
322 printf("Dclk: %s MHz\n", strmhz(buf, get_dclk()));
323#else
Mike Frysinger6dadc912008-10-20 16:15:04 -0400324 printf("System: %s MHz\n", strmhz(buf, get_sclk()));
Sonic Zhanga2979dc2012-08-16 11:56:14 +0800325#endif
Mike Frysingerd5bffeb2008-02-19 00:54:20 -0500326
Mike Frysinger7d69dfd2010-12-20 05:18:55 -0500327 if (CONFIG_MEM_SIZE) {
328 printf("RAM: ");
Mike Frysingera4932d72012-02-29 22:48:10 -0500329 print_size(gd->bd->bi_memsize, "\n");
Mike Frysinger7d69dfd2010-12-20 05:18:55 -0500330 }
331
Mike Frysinger9171fc82008-03-30 15:46:13 -0400332#if defined(CONFIG_POST)
Aubrey.Li3f0606a2007-03-09 13:38:44 +0800333 post_init_f();
334 post_bootmode_init();
335 post_run(NULL, POST_ROM | post_bootmode_get(0));
336#endif
Mike Frysingerd5bffeb2008-02-19 00:54:20 -0500337
Wolfgang Denk6cb142f2006-03-12 02:12:27 +0100338 board_init_r((gd_t *) gd, 0x20000010);
339}
340
Mike Frysinger8996d162009-02-22 16:02:27 -0500341static void board_net_init_r(bd_t *bd)
342{
Luigi 'Comio' Mantellini310cecb2009-10-10 12:42:21 +0200343#ifdef CONFIG_BITBANGMII
344 bb_miiphy_init();
345#endif
Mike Frysinger8996d162009-02-22 16:02:27 -0500346#ifdef CONFIG_CMD_NET
Mike Frysinger8996d162009-02-22 16:02:27 -0500347 printf("Net: ");
Mike Frysingerde301222012-04-04 18:53:41 +0000348 eth_initialize(bd);
Mike Frysinger8996d162009-02-22 16:02:27 -0500349#endif
350}
351
Wolfgang Denk6cb142f2006-03-12 02:12:27 +0100352void board_init_r(gd_t * id, ulong dest_addr)
353{
Wolfgang Denk6cb142f2006-03-12 02:12:27 +0100354 bd_t *bd;
Wolfgang Denk6cb142f2006-03-12 02:12:27 +0100355 gd = id;
356 gd->flags |= GD_FLG_RELOC; /* tell others: relocation done */
357 bd = gd->bd;
358
Mike Frysinger9171fc82008-03-30 15:46:13 -0400359#if defined(CONFIG_POST)
Aubrey.Li3f0606a2007-03-09 13:38:44 +0800360 post_output_backlog();
Aubrey.Li3f0606a2007-03-09 13:38:44 +0800361#endif
362
Stefan Roesec790b042009-05-11 15:50:12 +0200363 /* initialize malloc() area */
Peter Tysera483a162009-08-21 23:05:20 -0500364 mem_malloc_init(CONFIG_SYS_MALLOC_BASE, CONFIG_SYS_MALLOC_LEN);
Stefan Roesec790b042009-05-11 15:50:12 +0200365
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200366#if !defined(CONFIG_SYS_NO_FLASH)
Mike Frysingerb6edc712008-10-06 04:00:07 -0400367 /* Initialize the flash and protect u-boot by default */
Mike Frysingerd5bffeb2008-02-19 00:54:20 -0500368 extern flash_info_t flash_info[];
Mike Frysingerd5bffeb2008-02-19 00:54:20 -0500369 puts("Flash: ");
Mike Frysinger45c48952008-10-06 04:01:26 -0400370 ulong size = flash_init();
Mike Frysingerd5bffeb2008-02-19 00:54:20 -0500371 print_size(size, "\n");
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200372 flash_protect(FLAG_PROTECT_SET, CONFIG_SYS_FLASH_BASE,
Mike Frysingerb6edc712008-10-06 04:00:07 -0400373 CONFIG_SYS_FLASH_BASE + CONFIG_SYS_MONITOR_LEN - 1,
374 &flash_info[0]);
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200375 bd->bi_flashstart = CONFIG_SYS_FLASH_BASE;
Wolfgang Denk6cb142f2006-03-12 02:12:27 +0100376 bd->bi_flashsize = size;
377 bd->bi_flashoffset = 0;
378#else
379 bd->bi_flashstart = 0;
380 bd->bi_flashsize = 0;
381 bd->bi_flashoffset = 0;
382#endif
Wolfgang Denk6cb142f2006-03-12 02:12:27 +0100383
Mike Frysinger39782722008-10-06 03:55:25 -0400384#ifdef CONFIG_CMD_NAND
385 puts("NAND: ");
386 nand_init(); /* go init the NAND */
387#endif
388
Cliff Caie54c8202009-11-20 08:24:43 +0000389#ifdef CONFIG_GENERIC_MMC
Mike Frysingerd3c07a52010-09-29 14:46:42 -0400390 puts("MMC: ");
Cliff Caie54c8202009-11-20 08:24:43 +0000391 mmc_initialize(bd);
392#endif
393
Heiko Schocher3f4978c2012-01-16 21:12:24 +0000394#if defined(CONFIG_SYS_I2C)
395 i2c_reloc_fixup();
396#endif
Wolfgang Denk6cb142f2006-03-12 02:12:27 +0100397 /* relocate environment function pointers etc. */
398 env_relocate();
399
Jean-Christophe PLAGNIOL-VILLARD52cb4d42009-05-16 12:14:54 +0200400 /* Initialize stdio devices */
401 stdio_init();
Wolfgang Denk6cb142f2006-03-12 02:12:27 +0100402 jumptable_init();
403
404 /* Initialize the console (after the relocation and devices init) */
405 console_init_r();
406
Robin Getzf19fd872009-12-21 16:35:48 -0500407#ifdef CONFIG_CMD_KGDB
408 puts("KGDB: ");
409 kgdb_init();
410#endif
411
Mike Frysinger01815c22008-10-06 03:52:24 -0400412#ifdef CONFIG_STATUS_LED
413 status_led_set(STATUS_LED_BOOT, STATUS_LED_BLINKING);
414 status_led_set(STATUS_LED_CRASH, STATUS_LED_OFF);
415#endif
416
Wolfgang Denk6cb142f2006-03-12 02:12:27 +0100417 /* Initialize from environment */
Simon Glassc1f485a2011-10-13 14:43:08 +0000418 load_addr = getenv_ulong("loadaddr", 16, load_addr);
Aubrey.Li3f0606a2007-03-09 13:38:44 +0800419
Wolfgang Denk6cb142f2006-03-12 02:12:27 +0100420#if defined(CONFIG_MISC_INIT_R)
421 /* miscellaneous platform dependent initialisations */
422 misc_init_r();
423#endif
424
Mike Frysinger8996d162009-02-22 16:02:27 -0500425 board_net_init_r(bd);
Aubrey.Li3f0606a2007-03-09 13:38:44 +0800426
Aubrey.Li3f0606a2007-03-09 13:38:44 +0800427 display_global_data();
Aubrey.Li3f0606a2007-03-09 13:38:44 +0800428
Mike Frysinger9171fc82008-03-30 15:46:13 -0400429#if defined(CONFIG_POST)
Aubrey.Li3f0606a2007-03-09 13:38:44 +0800430 if (post_flag)
431 post_run(NULL, POST_RAM | post_bootmode_get(0));
Wolfgang Denk6cb142f2006-03-12 02:12:27 +0100432#endif
433
Mike Frysinger05e78252010-12-24 13:19:25 -0500434 if (CONFIG_MEM_SIZE && bfin_os_log_check()) {
Mike Frysinger909878f2009-07-09 01:15:05 -0400435 puts("\nLog buffer from operating system:\n");
436 bfin_os_log_dump();
437 puts("\n");
438 }
439
Wolfgang Denk6cb142f2006-03-12 02:12:27 +0100440 /* main_loop() can return to retry autoboot, if so just run it again. */
Mike Frysingerd5bffeb2008-02-19 00:54:20 -0500441 for (;;)
Wolfgang Denk6cb142f2006-03-12 02:12:27 +0100442 main_loop();
Wolfgang Denk6cb142f2006-03-12 02:12:27 +0100443}