blob: 62342014a4703570e2d190d1219e5942218ff3e7 [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>
Tom Rini130fbeb2014-02-20 10:14:10 -050026#include <asm/clock.h>
Robin Getzf19fd872009-12-21 16:35:48 -050027#include <kgdb.h>
Mike Frysingerd5bffeb2008-02-19 00:54:20 -050028
29#ifdef CONFIG_CMD_NAND
30#include <nand.h> /* cannot even include nand.h if it isnt configured */
31#endif
Wolfgang Denk6cb142f2006-03-12 02:12:27 +010032
Luigi 'Comio' Mantellini310cecb2009-10-10 12:42:21 +020033#ifdef CONFIG_BITBANGMII
34#include <miiphy.h>
35#endif
36
Mike Frysinger9171fc82008-03-30 15:46:13 -040037#if defined(CONFIG_POST)
Aubrey.Li3f0606a2007-03-09 13:38:44 +080038#include <post.h>
39int post_flag;
40#endif
Wolfgang Denkd87080b2006-03-31 18:32:53 +020041
Heiko Schocher3f4978c2012-01-16 21:12:24 +000042#if defined(CONFIG_SYS_I2C)
43#include <i2c.h>
44#endif
45
Wolfgang Denk1218abf2007-09-15 20:48:41 +020046DECLARE_GLOBAL_DATA_PTR;
47
Mike Frysingerd5bffeb2008-02-19 00:54:20 -050048__attribute__((always_inline))
49static inline void serial_early_puts(const char *s)
50{
51#ifdef CONFIG_DEBUG_EARLY_SERIAL
52 serial_puts("Early: ");
53 serial_puts(s);
54#endif
55}
56
Wolfgang Denk6cb142f2006-03-12 02:12:27 +010057static int display_banner(void)
58{
Mike Frysingerbb838752011-06-30 18:26:39 -040059 display_options();
Mike Frysinger5d891152010-08-09 17:39:22 -040060 printf("CPU: ADSP %s "
Mike Frysingerfc68f9f2009-01-06 06:16:19 -050061 "(Detected Rev: 0.%d) "
62 "(%s boot)\n",
Mike Frysinger5d891152010-08-09 17:39:22 -040063 gd->bd->bi_cpu,
Mike Frysingerfc68f9f2009-01-06 06:16:19 -050064 bfin_revid(),
65 get_bfin_boot_mode(CONFIG_BFIN_BOOT_MODE));
Mike Frysingerd5bffeb2008-02-19 00:54:20 -050066 return 0;
Wolfgang Denk6cb142f2006-03-12 02:12:27 +010067}
68
69static int init_baudrate(void)
70{
Simon Glassc1f485a2011-10-13 14:43:08 +000071 gd->baudrate = getenv_ulong("baudrate", 10, CONFIG_BAUDRATE);
Axel Lin53086be2013-07-01 13:16:17 +080072 gd->bd->bi_baudrate = gd->baudrate;
Mike Frysingerd5bffeb2008-02-19 00:54:20 -050073 return 0;
Wolfgang Denk6cb142f2006-03-12 02:12:27 +010074}
75
Wolfgang Denk6cb142f2006-03-12 02:12:27 +010076static void display_global_data(void)
77{
Wolfgang Denk6cb142f2006-03-12 02:12:27 +010078 bd_t *bd;
Mike Frysinger03f70532010-01-19 15:39:07 -050079
80#ifndef CONFIG_DEBUG_EARLY_SERIAL
81 return;
82#endif
83
Wolfgang Denk6cb142f2006-03-12 02:12:27 +010084 bd = gd->bd;
Mike Frysingerf541e1d2009-08-24 19:03:18 -040085 printf(" gd: %p\n", gd);
86 printf(" |-flags: %lx\n", gd->flags);
Simon Glass4da25512013-03-05 14:39:59 +000087 printf(" |-board_type: %lx\n", gd->arch.board_type);
Simon Glass5e84e5a2012-10-12 14:21:17 +000088 printf(" |-baudrate: %u\n", gd->baudrate);
Mike Frysingerf541e1d2009-08-24 19:03:18 -040089 printf(" |-have_console: %lx\n", gd->have_console);
90 printf(" |-ram_size: %lx\n", gd->ram_size);
Mike Frysingerf541e1d2009-08-24 19:03:18 -040091 printf(" |-env_addr: %lx\n", gd->env_addr);
92 printf(" |-env_valid: %lx\n", gd->env_valid);
93 printf(" |-jt(%p): %p\n", gd->jt, *(gd->jt));
94 printf(" \\-bd: %p\n", gd->bd);
Mike Frysingerd5bffeb2008-02-19 00:54:20 -050095 printf(" |-bi_baudrate: %x\n", bd->bi_baudrate);
Mike Frysingerf541e1d2009-08-24 19:03:18 -040096 printf(" |-bi_boot_params: %lx\n", bd->bi_boot_params);
97 printf(" |-bi_memstart: %lx\n", bd->bi_memstart);
98 printf(" |-bi_memsize: %lx\n", bd->bi_memsize);
99 printf(" |-bi_flashstart: %lx\n", bd->bi_flashstart);
100 printf(" |-bi_flashsize: %lx\n", bd->bi_flashsize);
101 printf(" \\-bi_flashoffset: %lx\n", bd->bi_flashoffset);
Mike Frysingerd5bffeb2008-02-19 00:54:20 -0500102}
Wolfgang Denk6cb142f2006-03-12 02:12:27 +0100103
Mike Frysingerd5bffeb2008-02-19 00:54:20 -0500104#define CPLB_PAGE_SIZE (4 * 1024 * 1024)
105#define CPLB_PAGE_MASK (~(CPLB_PAGE_SIZE - 1))
Bob Liu7677d652011-10-25 18:07:58 +0800106#if defined(__ADSPBF60x__)
107#define CPLB_EX_PAGE_SIZE (16 * 1024 * 1024)
108#define CPLB_EX_PAGE_MASK (~(CPLB_EX_PAGE_SIZE - 1))
109#else
110#define CPLB_EX_PAGE_SIZE CPLB_PAGE_SIZE
111#define CPLB_EX_PAGE_MASK CPLB_PAGE_MASK
112#endif
Aubrey.Li3f0606a2007-03-09 13:38:44 +0800113void init_cplbtables(void)
114{
Mike Frysingerd5bffeb2008-02-19 00:54:20 -0500115 volatile uint32_t *ICPLB_ADDR, *ICPLB_DATA;
116 volatile uint32_t *DCPLB_ADDR, *DCPLB_DATA;
117 uint32_t extern_memory;
118 size_t i;
Aubrey.Li3f0606a2007-03-09 13:38:44 +0800119
Mike Frysingerd5bffeb2008-02-19 00:54:20 -0500120 void icplb_add(uint32_t addr, uint32_t data)
121 {
122 *(ICPLB_ADDR + i) = addr;
123 *(ICPLB_DATA + i) = data;
Aubrey.Li3f0606a2007-03-09 13:38:44 +0800124 }
Mike Frysingerd5bffeb2008-02-19 00:54:20 -0500125 void dcplb_add(uint32_t addr, uint32_t data)
126 {
127 *(DCPLB_ADDR + i) = addr;
128 *(DCPLB_DATA + i) = data;
Aubrey.Li3f0606a2007-03-09 13:38:44 +0800129 }
130
Mike Frysingerd5bffeb2008-02-19 00:54:20 -0500131 /* populate a few common entries ... we'll let
132 * the memory map and cplb exception handler do
133 * the rest of the work.
134 */
135 i = 0;
136 ICPLB_ADDR = (uint32_t *)ICPLB_ADDR0;
137 ICPLB_DATA = (uint32_t *)ICPLB_DATA0;
138 DCPLB_ADDR = (uint32_t *)DCPLB_ADDR0;
139 DCPLB_DATA = (uint32_t *)DCPLB_DATA0;
140
141 icplb_add(0xFFA00000, L1_IMEMORY);
142 dcplb_add(0xFF800000, L1_DMEMORY);
143 ++i;
Bob Liu7677d652011-10-25 18:07:58 +0800144#if defined(__ADSPBF60x__)
145 icplb_add(0x0, 0x0);
Sonic Zhang861aa632014-01-22 16:04:19 +0800146 dcplb_add(CONFIG_SYS_FLASH_BASE, PAGE_SIZE_16MB | CPLB_DIRTY |
147 CPLB_SUPV_WR | CPLB_USER_WR | CPLB_USER_RD | CPLB_VALID);
Bob Liu7677d652011-10-25 18:07:58 +0800148 ++i;
149#endif
Mike Frysingerd5bffeb2008-02-19 00:54:20 -0500150
Mike Frysinger7527fee2009-11-09 19:38:23 -0500151 if (CONFIG_MEM_SIZE) {
152 uint32_t mbase = CONFIG_SYS_MONITOR_BASE;
153 uint32_t mend = mbase + CONFIG_SYS_MONITOR_LEN;
154 mbase &= CPLB_PAGE_MASK;
155 mend &= CPLB_PAGE_MASK;
Mike Frysingerd5bffeb2008-02-19 00:54:20 -0500156
Mike Frysinger7527fee2009-11-09 19:38:23 -0500157 icplb_add(mbase, SDRAM_IKERNEL);
158 dcplb_add(mbase, SDRAM_DKERNEL);
Mike Frysingerd5bffeb2008-02-19 00:54:20 -0500159 ++i;
Mike Frysinger7527fee2009-11-09 19:38:23 -0500160
161 /*
162 * If the monitor crosses a 4 meg boundary, we'll need
163 * to lock two entries for it. We assume it doesn't
164 * cross two 4 meg boundaries ...
165 */
166 if (mbase != mend) {
167 icplb_add(mend, SDRAM_IKERNEL);
168 dcplb_add(mend, SDRAM_DKERNEL);
169 ++i;
170 }
Mike Frysingerd5bffeb2008-02-19 00:54:20 -0500171 }
172
Bob Liu7677d652011-10-25 18:07:58 +0800173#ifndef __ADSPBF60x__
Mike Frysingerd5bffeb2008-02-19 00:54:20 -0500174 icplb_add(0x20000000, SDRAM_INON_CHBL);
175 dcplb_add(0x20000000, SDRAM_EBIU);
176 ++i;
Bob Liu7677d652011-10-25 18:07:58 +0800177#endif
Mike Frysingerd5bffeb2008-02-19 00:54:20 -0500178
179 /* Add entries for the rest of external RAM up to the bootrom */
180 extern_memory = 0;
181
182#ifdef CONFIG_DEBUG_NULL_PTR
183 icplb_add(extern_memory, (SDRAM_IKERNEL & ~PAGE_SIZE_MASK) | PAGE_SIZE_1KB);
184 dcplb_add(extern_memory, (SDRAM_DKERNEL & ~PAGE_SIZE_MASK) | PAGE_SIZE_1KB);
185 ++i;
186 icplb_add(extern_memory, SDRAM_IKERNEL);
187 dcplb_add(extern_memory, SDRAM_DKERNEL);
188 extern_memory += CPLB_PAGE_SIZE;
189 ++i;
190#endif
191
Bob Liu7677d652011-10-25 18:07:58 +0800192 while (i < 16 && extern_memory <
193 (CONFIG_SYS_MONITOR_BASE & CPLB_EX_PAGE_MASK)) {
Mike Frysingerd5bffeb2008-02-19 00:54:20 -0500194 icplb_add(extern_memory, SDRAM_IGENERIC);
195 dcplb_add(extern_memory, SDRAM_DGENERIC);
Bob Liu7677d652011-10-25 18:07:58 +0800196 extern_memory += CPLB_EX_PAGE_SIZE;
Mike Frysingerd5bffeb2008-02-19 00:54:20 -0500197 ++i;
198 }
199 while (i < 16) {
200 icplb_add(0, 0);
201 dcplb_add(0, 0);
202 ++i;
203 }
Aubrey.Li3f0606a2007-03-09 13:38:44 +0800204}
205
Mike Frysingera4932d72012-02-29 22:48:10 -0500206static int global_board_data_init(void)
207{
208#ifndef CONFIG_SYS_GBL_DATA_ADDR
209# define CONFIG_SYS_GBL_DATA_ADDR 0
210#endif
211#ifndef CONFIG_SYS_BD_INFO_ADDR
212# define CONFIG_SYS_BD_INFO_ADDR 0
213#endif
214
215 bd_t *bd;
216
217 if (CONFIG_SYS_GBL_DATA_ADDR) {
218 gd = (gd_t *) (CONFIG_SYS_GBL_DATA_ADDR);
219 memset((void *)gd, 0, GENERATED_GBL_DATA_SIZE);
220 } else {
221 static gd_t _bfin_gd;
222 gd = &_bfin_gd;
223 }
224
225 if (CONFIG_SYS_BD_INFO_ADDR) {
226 bd = (bd_t *) (CONFIG_SYS_BD_INFO_ADDR);
227 memset(bd, 0, GENERATED_BD_INFO_SIZE);
228 } else {
229 static bd_t _bfin_bd;
230 bd = &_bfin_bd;
231 }
232 gd->bd = bd;
233
234 bd->bi_r_version = version_string;
Marek Vasut5368c552012-09-23 17:41:24 +0200235 bd->bi_cpu = __stringify(CONFIG_BFIN_CPU);
Mike Frysingera4932d72012-02-29 22:48:10 -0500236 bd->bi_board_name = BFIN_BOARD_NAME;
237 bd->bi_vco = get_vco();
238 bd->bi_cclk = get_cclk();
239 bd->bi_sclk = get_sclk();
240 bd->bi_memstart = CONFIG_SYS_SDRAM_BASE;
241 bd->bi_memsize = CONFIG_SYS_MAX_RAM_SIZE;
242
243 return 0;
244}
245
Wolfgang Denk6cb142f2006-03-12 02:12:27 +0100246/*
247 * All attempts to come up with a "common" initialization sequence
248 * that works for all boards and architectures failed: some of the
249 * requirements are just _too_ different. To get rid of the resulting
250 * mess of board dependend #ifdef'ed code we now make the whole
251 * initialization sequence configurable to the user.
252 *
253 * The requirements for any new initalization function is simple: it
254 * receives a pointer to the "global data" structure as it's only
255 * argument, and returns an integer return code, where 0 means
256 * "continue" and != 0 means "fatal error, hang the system".
257 */
258
Mike Frysinger0c080aa2010-02-11 20:19:10 -0500259extern int watchdog_init(void);
Mike Frysingerd5bffeb2008-02-19 00:54:20 -0500260extern int exception_init(void);
261extern int irq_init(void);
Mike Frysingerd5bffeb2008-02-19 00:54:20 -0500262extern int timer_init(void);
263
Wolfgang Denk6cb142f2006-03-12 02:12:27 +0100264void board_init_f(ulong bootflag)
265{
Mike Frysinger6dadc912008-10-20 16:15:04 -0400266 char buf[32];
Aubrey.Li3f0606a2007-03-09 13:38:44 +0800267
Mike Frysingerd5bffeb2008-02-19 00:54:20 -0500268#ifdef CONFIG_BOARD_EARLY_INIT_F
269 serial_early_puts("Board early init flash\n");
270 board_early_init_f();
271#endif
272
273 serial_early_puts("Init CPLB tables\n");
Aubrey.Li3f0606a2007-03-09 13:38:44 +0800274 init_cplbtables();
Wolfgang Denk6cb142f2006-03-12 02:12:27 +0100275
Mike Frysingerd5bffeb2008-02-19 00:54:20 -0500276 serial_early_puts("Exceptions setup\n");
277 exception_init();
278
279#ifndef CONFIG_ICACHE_OFF
280 serial_early_puts("Turn on ICACHE\n");
281 icache_enable();
282#endif
283#ifndef CONFIG_DCACHE_OFF
284 serial_early_puts("Turn on DCACHE\n");
285 dcache_enable();
286#endif
287
Sonic Zhange9a389a2013-04-07 18:02:37 +0800288#ifdef CONFIG_HW_WATCHDOG
Mike Frysinger0c080aa2010-02-11 20:19:10 -0500289 serial_early_puts("Setting up external watchdog\n");
Sonic Zhange9a389a2013-04-07 18:02:37 +0800290 hw_watchdog_init();
Mike Frysinger0c080aa2010-02-11 20:19:10 -0500291#endif
292
Mike Frysinger78a0ba72008-10-06 03:57:39 -0400293#ifdef DEBUG
Wolfgang Denk25ddd1f2010-10-26 14:34:52 +0200294 if (GENERATED_GBL_DATA_SIZE < sizeof(*gd))
Mike Frysinger78a0ba72008-10-06 03:57:39 -0400295 hang();
296#endif
Mike Frysingerd5bffeb2008-02-19 00:54:20 -0500297 serial_early_puts("Init global data\n");
Wolfgang Denk6cb142f2006-03-12 02:12:27 +0100298
Mike Frysingera4932d72012-02-29 22:48:10 -0500299 global_board_data_init();
Aubrey.Li3f0606a2007-03-09 13:38:44 +0800300
Mike Frysingerd5bffeb2008-02-19 00:54:20 -0500301 /* Initialize */
302 serial_early_puts("IRQ init\n");
303 irq_init();
304 serial_early_puts("Environment init\n");
305 env_init();
306 serial_early_puts("Baudrate init\n");
307 init_baudrate();
308 serial_early_puts("Serial init\n");
309 serial_init();
Mike Frysinger635f3302011-04-29 23:23:28 -0400310 serial_initialize();
Mike Frysingerd5bffeb2008-02-19 00:54:20 -0500311 serial_early_puts("Console init flash\n");
312 console_init_f();
313 serial_early_puts("End of early debugging\n");
314 display_banner();
Aubrey.Li3f0606a2007-03-09 13:38:44 +0800315
Wolfgang Denk6cb142f2006-03-12 02:12:27 +0100316 checkboard();
Wolfgang Denk6cb142f2006-03-12 02:12:27 +0100317 timer_init();
Mike Frysingerd5bffeb2008-02-19 00:54:20 -0500318
Mike Frysinger6dadc912008-10-20 16:15:04 -0400319 printf("Clock: VCO: %s MHz, ", strmhz(buf, get_vco()));
320 printf("Core: %s MHz, ", strmhz(buf, get_cclk()));
Sonic Zhanga2979dc2012-08-16 11:56:14 +0800321#if defined(__ADSPBF60x__)
322 printf("System0: %s MHz, ", strmhz(buf, get_sclk0()));
323 printf("System1: %s MHz, ", strmhz(buf, get_sclk1()));
324 printf("Dclk: %s MHz\n", strmhz(buf, get_dclk()));
325#else
Mike Frysinger6dadc912008-10-20 16:15:04 -0400326 printf("System: %s MHz\n", strmhz(buf, get_sclk()));
Sonic Zhanga2979dc2012-08-16 11:56:14 +0800327#endif
Mike Frysingerd5bffeb2008-02-19 00:54:20 -0500328
Mike Frysinger7d69dfd2010-12-20 05:18:55 -0500329 if (CONFIG_MEM_SIZE) {
330 printf("RAM: ");
Mike Frysingera4932d72012-02-29 22:48:10 -0500331 print_size(gd->bd->bi_memsize, "\n");
Mike Frysinger7d69dfd2010-12-20 05:18:55 -0500332 }
333
Mike Frysinger9171fc82008-03-30 15:46:13 -0400334#if defined(CONFIG_POST)
Aubrey.Li3f0606a2007-03-09 13:38:44 +0800335 post_init_f();
336 post_bootmode_init();
337 post_run(NULL, POST_ROM | post_bootmode_get(0));
338#endif
Mike Frysingerd5bffeb2008-02-19 00:54:20 -0500339
Wolfgang Denk6cb142f2006-03-12 02:12:27 +0100340 board_init_r((gd_t *) gd, 0x20000010);
341}
342
Mike Frysinger8996d162009-02-22 16:02:27 -0500343static void board_net_init_r(bd_t *bd)
344{
Luigi 'Comio' Mantellini310cecb2009-10-10 12:42:21 +0200345#ifdef CONFIG_BITBANGMII
346 bb_miiphy_init();
347#endif
Mike Frysinger8996d162009-02-22 16:02:27 -0500348#ifdef CONFIG_CMD_NET
Mike Frysinger8996d162009-02-22 16:02:27 -0500349 printf("Net: ");
Mike Frysingerde301222012-04-04 18:53:41 +0000350 eth_initialize(bd);
Mike Frysinger8996d162009-02-22 16:02:27 -0500351#endif
352}
353
Wolfgang Denk6cb142f2006-03-12 02:12:27 +0100354void board_init_r(gd_t * id, ulong dest_addr)
355{
Wolfgang Denk6cb142f2006-03-12 02:12:27 +0100356 bd_t *bd;
Wolfgang Denk6cb142f2006-03-12 02:12:27 +0100357 gd = id;
358 gd->flags |= GD_FLG_RELOC; /* tell others: relocation done */
359 bd = gd->bd;
360
Mike Frysinger9171fc82008-03-30 15:46:13 -0400361#if defined(CONFIG_POST)
Aubrey.Li3f0606a2007-03-09 13:38:44 +0800362 post_output_backlog();
Aubrey.Li3f0606a2007-03-09 13:38:44 +0800363#endif
364
Stefan Roesec790b042009-05-11 15:50:12 +0200365 /* initialize malloc() area */
Peter Tysera483a162009-08-21 23:05:20 -0500366 mem_malloc_init(CONFIG_SYS_MALLOC_BASE, CONFIG_SYS_MALLOC_LEN);
Stefan Roesec790b042009-05-11 15:50:12 +0200367
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200368#if !defined(CONFIG_SYS_NO_FLASH)
Mike Frysingerb6edc712008-10-06 04:00:07 -0400369 /* Initialize the flash and protect u-boot by default */
Mike Frysingerd5bffeb2008-02-19 00:54:20 -0500370 extern flash_info_t flash_info[];
Mike Frysingerd5bffeb2008-02-19 00:54:20 -0500371 puts("Flash: ");
Mike Frysinger45c48952008-10-06 04:01:26 -0400372 ulong size = flash_init();
Mike Frysingerd5bffeb2008-02-19 00:54:20 -0500373 print_size(size, "\n");
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200374 flash_protect(FLAG_PROTECT_SET, CONFIG_SYS_FLASH_BASE,
Mike Frysingerb6edc712008-10-06 04:00:07 -0400375 CONFIG_SYS_FLASH_BASE + CONFIG_SYS_MONITOR_LEN - 1,
376 &flash_info[0]);
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200377 bd->bi_flashstart = CONFIG_SYS_FLASH_BASE;
Wolfgang Denk6cb142f2006-03-12 02:12:27 +0100378 bd->bi_flashsize = size;
379 bd->bi_flashoffset = 0;
380#else
381 bd->bi_flashstart = 0;
382 bd->bi_flashsize = 0;
383 bd->bi_flashoffset = 0;
384#endif
Wolfgang Denk6cb142f2006-03-12 02:12:27 +0100385
Mike Frysinger39782722008-10-06 03:55:25 -0400386#ifdef CONFIG_CMD_NAND
387 puts("NAND: ");
388 nand_init(); /* go init the NAND */
389#endif
390
Cliff Caie54c8202009-11-20 08:24:43 +0000391#ifdef CONFIG_GENERIC_MMC
Mike Frysingerd3c07a52010-09-29 14:46:42 -0400392 puts("MMC: ");
Cliff Caie54c8202009-11-20 08:24:43 +0000393 mmc_initialize(bd);
394#endif
395
Heiko Schocher3f4978c2012-01-16 21:12:24 +0000396#if defined(CONFIG_SYS_I2C)
397 i2c_reloc_fixup();
398#endif
Wolfgang Denk6cb142f2006-03-12 02:12:27 +0100399 /* relocate environment function pointers etc. */
400 env_relocate();
401
Jean-Christophe PLAGNIOL-VILLARD52cb4d42009-05-16 12:14:54 +0200402 /* Initialize stdio devices */
403 stdio_init();
Wolfgang Denk6cb142f2006-03-12 02:12:27 +0100404 jumptable_init();
405
406 /* Initialize the console (after the relocation and devices init) */
407 console_init_r();
408
Robin Getzf19fd872009-12-21 16:35:48 -0500409#ifdef CONFIG_CMD_KGDB
410 puts("KGDB: ");
411 kgdb_init();
412#endif
413
Mike Frysinger01815c22008-10-06 03:52:24 -0400414#ifdef CONFIG_STATUS_LED
415 status_led_set(STATUS_LED_BOOT, STATUS_LED_BLINKING);
416 status_led_set(STATUS_LED_CRASH, STATUS_LED_OFF);
417#endif
418
Wolfgang Denk6cb142f2006-03-12 02:12:27 +0100419 /* Initialize from environment */
Simon Glassc1f485a2011-10-13 14:43:08 +0000420 load_addr = getenv_ulong("loadaddr", 16, load_addr);
Aubrey.Li3f0606a2007-03-09 13:38:44 +0800421
Wolfgang Denk6cb142f2006-03-12 02:12:27 +0100422#if defined(CONFIG_MISC_INIT_R)
423 /* miscellaneous platform dependent initialisations */
424 misc_init_r();
425#endif
426
Mike Frysinger8996d162009-02-22 16:02:27 -0500427 board_net_init_r(bd);
Aubrey.Li3f0606a2007-03-09 13:38:44 +0800428
Aubrey.Li3f0606a2007-03-09 13:38:44 +0800429 display_global_data();
Aubrey.Li3f0606a2007-03-09 13:38:44 +0800430
Mike Frysinger9171fc82008-03-30 15:46:13 -0400431#if defined(CONFIG_POST)
Aubrey.Li3f0606a2007-03-09 13:38:44 +0800432 if (post_flag)
433 post_run(NULL, POST_RAM | post_bootmode_get(0));
Wolfgang Denk6cb142f2006-03-12 02:12:27 +0100434#endif
435
Mike Frysinger05e78252010-12-24 13:19:25 -0500436 if (CONFIG_MEM_SIZE && bfin_os_log_check()) {
Mike Frysinger909878f2009-07-09 01:15:05 -0400437 puts("\nLog buffer from operating system:\n");
438 bfin_os_log_dump();
439 puts("\n");
440 }
441
Wolfgang Denk6cb142f2006-03-12 02:12:27 +0100442 /* main_loop() can return to retry autoboot, if so just run it again. */
Mike Frysingerd5bffeb2008-02-19 00:54:20 -0500443 for (;;)
Wolfgang Denk6cb142f2006-03-12 02:12:27 +0100444 main_loop();
Wolfgang Denk6cb142f2006-03-12 02:12:27 +0100445}