blob: e00050ccbf8cd542b813b2dd64286922b50b9566 [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>
Peter Tyser561858e2008-11-03 09:30:59 -060020#include <timestamp.h>
Mike Frysinger01815c22008-10-06 03:52:24 -040021#include <status_led.h>
Mike Frysingerd5bffeb2008-02-19 00:54:20 -050022#include <version.h>
23
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
Wolfgang Denk1218abf2007-09-15 20:48:41 +020041DECLARE_GLOBAL_DATA_PTR;
42
Peter Tyser561858e2008-11-03 09:30:59 -060043const char version_string[] = U_BOOT_VERSION " ("U_BOOT_DATE" - "U_BOOT_TIME")";
Wolfgang Denk6cb142f2006-03-12 02:12:27 +010044
Mike Frysingerd5bffeb2008-02-19 00:54:20 -050045__attribute__((always_inline))
46static inline void serial_early_puts(const char *s)
47{
48#ifdef CONFIG_DEBUG_EARLY_SERIAL
49 serial_puts("Early: ");
50 serial_puts(s);
51#endif
52}
53
Wolfgang Denk6cb142f2006-03-12 02:12:27 +010054static int display_banner(void)
55{
Mike Frysingerd5bffeb2008-02-19 00:54:20 -050056 printf("\n\n%s\n\n", version_string);
Mike Frysinger5d891152010-08-09 17:39:22 -040057 printf("CPU: ADSP %s "
Mike Frysingerfc68f9f2009-01-06 06:16:19 -050058 "(Detected Rev: 0.%d) "
59 "(%s boot)\n",
Mike Frysinger5d891152010-08-09 17:39:22 -040060 gd->bd->bi_cpu,
Mike Frysingerfc68f9f2009-01-06 06:16:19 -050061 bfin_revid(),
62 get_bfin_boot_mode(CONFIG_BFIN_BOOT_MODE));
Mike Frysingerd5bffeb2008-02-19 00:54:20 -050063 return 0;
Wolfgang Denk6cb142f2006-03-12 02:12:27 +010064}
65
66static int init_baudrate(void)
67{
Mike Frysingerd5bffeb2008-02-19 00:54:20 -050068 char baudrate[15];
Wolfgang Denkcdb74972010-07-24 21:55:43 +020069 int i = getenv_f("baudrate", baudrate, sizeof(baudrate));
Wolfgang Denk6cb142f2006-03-12 02:12:27 +010070 gd->bd->bi_baudrate = gd->baudrate = (i > 0)
Mike Frysingerd5bffeb2008-02-19 00:54:20 -050071 ? simple_strtoul(baudrate, NULL, 10)
Aubrey.Li3f0606a2007-03-09 13:38:44 +080072 : CONFIG_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);
87 printf(" |-board_type: %lx\n", gd->board_type);
88 printf(" |-baudrate: %lu\n", gd->baudrate);
89 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_ip_addr: %lx\n", bd->bi_ip_addr);
97 printf(" |-bi_boot_params: %lx\n", bd->bi_boot_params);
98 printf(" |-bi_memstart: %lx\n", bd->bi_memstart);
99 printf(" |-bi_memsize: %lx\n", bd->bi_memsize);
100 printf(" |-bi_flashstart: %lx\n", bd->bi_flashstart);
101 printf(" |-bi_flashsize: %lx\n", bd->bi_flashsize);
102 printf(" \\-bi_flashoffset: %lx\n", bd->bi_flashoffset);
Mike Frysingerd5bffeb2008-02-19 00:54:20 -0500103}
Wolfgang Denk6cb142f2006-03-12 02:12:27 +0100104
Mike Frysingerd5bffeb2008-02-19 00:54:20 -0500105#define CPLB_PAGE_SIZE (4 * 1024 * 1024)
106#define CPLB_PAGE_MASK (~(CPLB_PAGE_SIZE - 1))
Aubrey.Li3f0606a2007-03-09 13:38:44 +0800107void init_cplbtables(void)
108{
Mike Frysingerd5bffeb2008-02-19 00:54:20 -0500109 volatile uint32_t *ICPLB_ADDR, *ICPLB_DATA;
110 volatile uint32_t *DCPLB_ADDR, *DCPLB_DATA;
111 uint32_t extern_memory;
112 size_t i;
Aubrey.Li3f0606a2007-03-09 13:38:44 +0800113
Mike Frysingerd5bffeb2008-02-19 00:54:20 -0500114 void icplb_add(uint32_t addr, uint32_t data)
115 {
116 *(ICPLB_ADDR + i) = addr;
117 *(ICPLB_DATA + i) = data;
Aubrey.Li3f0606a2007-03-09 13:38:44 +0800118 }
Mike Frysingerd5bffeb2008-02-19 00:54:20 -0500119 void dcplb_add(uint32_t addr, uint32_t data)
120 {
121 *(DCPLB_ADDR + i) = addr;
122 *(DCPLB_DATA + i) = data;
Aubrey.Li3f0606a2007-03-09 13:38:44 +0800123 }
124
Mike Frysingerd5bffeb2008-02-19 00:54:20 -0500125 /* populate a few common entries ... we'll let
126 * the memory map and cplb exception handler do
127 * the rest of the work.
128 */
129 i = 0;
130 ICPLB_ADDR = (uint32_t *)ICPLB_ADDR0;
131 ICPLB_DATA = (uint32_t *)ICPLB_DATA0;
132 DCPLB_ADDR = (uint32_t *)DCPLB_ADDR0;
133 DCPLB_DATA = (uint32_t *)DCPLB_DATA0;
134
135 icplb_add(0xFFA00000, L1_IMEMORY);
136 dcplb_add(0xFF800000, L1_DMEMORY);
137 ++i;
138
Mike Frysinger7527fee2009-11-09 19:38:23 -0500139 if (CONFIG_MEM_SIZE) {
140 uint32_t mbase = CONFIG_SYS_MONITOR_BASE;
141 uint32_t mend = mbase + CONFIG_SYS_MONITOR_LEN;
142 mbase &= CPLB_PAGE_MASK;
143 mend &= CPLB_PAGE_MASK;
Mike Frysingerd5bffeb2008-02-19 00:54:20 -0500144
Mike Frysinger7527fee2009-11-09 19:38:23 -0500145 icplb_add(mbase, SDRAM_IKERNEL);
146 dcplb_add(mbase, SDRAM_DKERNEL);
Mike Frysingerd5bffeb2008-02-19 00:54:20 -0500147 ++i;
Mike Frysinger7527fee2009-11-09 19:38:23 -0500148
149 /*
150 * If the monitor crosses a 4 meg boundary, we'll need
151 * to lock two entries for it. We assume it doesn't
152 * cross two 4 meg boundaries ...
153 */
154 if (mbase != mend) {
155 icplb_add(mend, SDRAM_IKERNEL);
156 dcplb_add(mend, SDRAM_DKERNEL);
157 ++i;
158 }
Mike Frysingerd5bffeb2008-02-19 00:54:20 -0500159 }
160
161 icplb_add(0x20000000, SDRAM_INON_CHBL);
162 dcplb_add(0x20000000, SDRAM_EBIU);
163 ++i;
164
165 /* Add entries for the rest of external RAM up to the bootrom */
166 extern_memory = 0;
167
168#ifdef CONFIG_DEBUG_NULL_PTR
169 icplb_add(extern_memory, (SDRAM_IKERNEL & ~PAGE_SIZE_MASK) | PAGE_SIZE_1KB);
170 dcplb_add(extern_memory, (SDRAM_DKERNEL & ~PAGE_SIZE_MASK) | PAGE_SIZE_1KB);
171 ++i;
172 icplb_add(extern_memory, SDRAM_IKERNEL);
173 dcplb_add(extern_memory, SDRAM_DKERNEL);
174 extern_memory += CPLB_PAGE_SIZE;
175 ++i;
176#endif
177
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200178 while (i < 16 && extern_memory < (CONFIG_SYS_MONITOR_BASE & CPLB_PAGE_MASK)) {
Mike Frysingerd5bffeb2008-02-19 00:54:20 -0500179 icplb_add(extern_memory, SDRAM_IGENERIC);
180 dcplb_add(extern_memory, SDRAM_DGENERIC);
181 extern_memory += CPLB_PAGE_SIZE;
182 ++i;
183 }
184 while (i < 16) {
185 icplb_add(0, 0);
186 dcplb_add(0, 0);
187 ++i;
188 }
Aubrey.Li3f0606a2007-03-09 13:38:44 +0800189}
190
Wolfgang Denk6cb142f2006-03-12 02:12:27 +0100191/*
192 * All attempts to come up with a "common" initialization sequence
193 * that works for all boards and architectures failed: some of the
194 * requirements are just _too_ different. To get rid of the resulting
195 * mess of board dependend #ifdef'ed code we now make the whole
196 * initialization sequence configurable to the user.
197 *
198 * The requirements for any new initalization function is simple: it
199 * receives a pointer to the "global data" structure as it's only
200 * argument, and returns an integer return code, where 0 means
201 * "continue" and != 0 means "fatal error, hang the system".
202 */
203
Mike Frysinger0c080aa2010-02-11 20:19:10 -0500204extern int watchdog_init(void);
Mike Frysingerd5bffeb2008-02-19 00:54:20 -0500205extern int exception_init(void);
206extern int irq_init(void);
Mike Frysingerd5bffeb2008-02-19 00:54:20 -0500207extern int timer_init(void);
208
Wolfgang Denk6cb142f2006-03-12 02:12:27 +0100209void board_init_f(ulong bootflag)
210{
Wolfgang Denk6cb142f2006-03-12 02:12:27 +0100211 bd_t *bd;
Mike Frysinger6dadc912008-10-20 16:15:04 -0400212 char buf[32];
Aubrey.Li3f0606a2007-03-09 13:38:44 +0800213
Mike Frysingerd5bffeb2008-02-19 00:54:20 -0500214#ifdef CONFIG_BOARD_EARLY_INIT_F
215 serial_early_puts("Board early init flash\n");
216 board_early_init_f();
217#endif
218
219 serial_early_puts("Init CPLB tables\n");
Aubrey.Li3f0606a2007-03-09 13:38:44 +0800220 init_cplbtables();
Wolfgang Denk6cb142f2006-03-12 02:12:27 +0100221
Mike Frysingerd5bffeb2008-02-19 00:54:20 -0500222 serial_early_puts("Exceptions setup\n");
223 exception_init();
224
225#ifndef CONFIG_ICACHE_OFF
226 serial_early_puts("Turn on ICACHE\n");
227 icache_enable();
228#endif
229#ifndef CONFIG_DCACHE_OFF
230 serial_early_puts("Turn on DCACHE\n");
231 dcache_enable();
232#endif
233
Mike Frysinger0c080aa2010-02-11 20:19:10 -0500234#ifdef CONFIG_WATCHDOG
235 serial_early_puts("Setting up external watchdog\n");
236 watchdog_init();
237#endif
238
Mike Frysinger78a0ba72008-10-06 03:57:39 -0400239#ifdef DEBUG
Wolfgang Denk25ddd1f2010-10-26 14:34:52 +0200240 if (GENERATED_GBL_DATA_SIZE < sizeof(*gd))
Mike Frysinger78a0ba72008-10-06 03:57:39 -0400241 hang();
242#endif
Mike Frysingerd5bffeb2008-02-19 00:54:20 -0500243 serial_early_puts("Init global data\n");
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200244 gd = (gd_t *) (CONFIG_SYS_GBL_DATA_ADDR);
Wolfgang Denk25ddd1f2010-10-26 14:34:52 +0200245 memset((void *)gd, 0, GENERATED_GBL_DATA_SIZE);
Wolfgang Denk6cb142f2006-03-12 02:12:27 +0100246
Mike Frysinger5a9a2c52010-12-24 12:48:16 -0500247 bd = (bd_t *) (CONFIG_SYS_BD_INFO_ADDR);
Wolfgang Denk6cb142f2006-03-12 02:12:27 +0100248 gd->bd = bd;
Mike Frysinger5a9a2c52010-12-24 12:48:16 -0500249 memset((void *)bd, 0, GENERATED_BD_INFO_SIZE);
Wolfgang Denk6cb142f2006-03-12 02:12:27 +0100250
Mike Frysingerd5bffeb2008-02-19 00:54:20 -0500251 bd->bi_r_version = version_string;
Mike Frysingerfbcf8e82010-12-23 14:58:37 -0500252 bd->bi_cpu = MK_STR(CONFIG_BFIN_CPU);
Mike Frysingerd5bffeb2008-02-19 00:54:20 -0500253 bd->bi_board_name = BFIN_BOARD_NAME;
254 bd->bi_vco = get_vco();
255 bd->bi_cclk = get_cclk();
256 bd->bi_sclk = get_sclk();
Mike Frysingerfa45bd42009-11-03 06:28:22 -0500257 bd->bi_memstart = CONFIG_SYS_SDRAM_BASE;
258 bd->bi_memsize = CONFIG_SYS_MAX_RAM_SIZE;
Aubrey.Li3f0606a2007-03-09 13:38:44 +0800259
Mike Frysingerd5bffeb2008-02-19 00:54:20 -0500260 /* Initialize */
261 serial_early_puts("IRQ init\n");
262 irq_init();
263 serial_early_puts("Environment init\n");
264 env_init();
265 serial_early_puts("Baudrate init\n");
266 init_baudrate();
267 serial_early_puts("Serial init\n");
268 serial_init();
Mike Frysinger635f3302011-04-29 23:23:28 -0400269#ifdef CONFIG_SERIAL_MULTI
270 serial_initialize();
271#endif
Mike Frysingerd5bffeb2008-02-19 00:54:20 -0500272 serial_early_puts("Console init flash\n");
273 console_init_f();
274 serial_early_puts("End of early debugging\n");
275 display_banner();
Aubrey.Li3f0606a2007-03-09 13:38:44 +0800276
Wolfgang Denk6cb142f2006-03-12 02:12:27 +0100277 checkboard();
Wolfgang Denk6cb142f2006-03-12 02:12:27 +0100278 timer_init();
Mike Frysingerd5bffeb2008-02-19 00:54:20 -0500279
Mike Frysinger6dadc912008-10-20 16:15:04 -0400280 printf("Clock: VCO: %s MHz, ", strmhz(buf, get_vco()));
281 printf("Core: %s MHz, ", strmhz(buf, get_cclk()));
282 printf("System: %s MHz\n", strmhz(buf, get_sclk()));
Mike Frysingerd5bffeb2008-02-19 00:54:20 -0500283
Mike Frysinger7d69dfd2010-12-20 05:18:55 -0500284 if (CONFIG_MEM_SIZE) {
285 printf("RAM: ");
286 print_size(bd->bi_memsize, "\n");
287 }
288
Mike Frysinger9171fc82008-03-30 15:46:13 -0400289#if defined(CONFIG_POST)
Aubrey.Li3f0606a2007-03-09 13:38:44 +0800290 post_init_f();
291 post_bootmode_init();
292 post_run(NULL, POST_ROM | post_bootmode_get(0));
293#endif
Mike Frysingerd5bffeb2008-02-19 00:54:20 -0500294
Wolfgang Denk6cb142f2006-03-12 02:12:27 +0100295 board_init_r((gd_t *) gd, 0x20000010);
296}
297
Mike Frysinger8996d162009-02-22 16:02:27 -0500298static void board_net_init_r(bd_t *bd)
299{
Luigi 'Comio' Mantellini310cecb2009-10-10 12:42:21 +0200300#ifdef CONFIG_BITBANGMII
301 bb_miiphy_init();
302#endif
Mike Frysinger8996d162009-02-22 16:02:27 -0500303#ifdef CONFIG_CMD_NET
Mike Frysinger8996d162009-02-22 16:02:27 -0500304 char *s;
305
306 if ((s = getenv("bootfile")) != NULL)
307 copy_filename(BootFile, s, sizeof(BootFile));
308
309 bd->bi_ip_addr = getenv_IPaddr("ipaddr");
310
311 printf("Net: ");
312 eth_initialize(gd->bd);
Mike Frysinger8996d162009-02-22 16:02:27 -0500313#endif
314}
315
Wolfgang Denk6cb142f2006-03-12 02:12:27 +0100316void board_init_r(gd_t * id, ulong dest_addr)
317{
Mike Frysingerd5bffeb2008-02-19 00:54:20 -0500318 char *s;
Wolfgang Denk6cb142f2006-03-12 02:12:27 +0100319 bd_t *bd;
Wolfgang Denk6cb142f2006-03-12 02:12:27 +0100320 gd = id;
321 gd->flags |= GD_FLG_RELOC; /* tell others: relocation done */
322 bd = gd->bd;
323
Mike Frysinger9171fc82008-03-30 15:46:13 -0400324#if defined(CONFIG_POST)
Aubrey.Li3f0606a2007-03-09 13:38:44 +0800325 post_output_backlog();
Aubrey.Li3f0606a2007-03-09 13:38:44 +0800326#endif
327
Stefan Roesec790b042009-05-11 15:50:12 +0200328 /* initialize malloc() area */
Peter Tysera483a162009-08-21 23:05:20 -0500329 mem_malloc_init(CONFIG_SYS_MALLOC_BASE, CONFIG_SYS_MALLOC_LEN);
Stefan Roesec790b042009-05-11 15:50:12 +0200330
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200331#if !defined(CONFIG_SYS_NO_FLASH)
Mike Frysingerb6edc712008-10-06 04:00:07 -0400332 /* Initialize the flash and protect u-boot by default */
Mike Frysingerd5bffeb2008-02-19 00:54:20 -0500333 extern flash_info_t flash_info[];
Mike Frysingerd5bffeb2008-02-19 00:54:20 -0500334 puts("Flash: ");
Mike Frysinger45c48952008-10-06 04:01:26 -0400335 ulong size = flash_init();
Mike Frysingerd5bffeb2008-02-19 00:54:20 -0500336 print_size(size, "\n");
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200337 flash_protect(FLAG_PROTECT_SET, CONFIG_SYS_FLASH_BASE,
Mike Frysingerb6edc712008-10-06 04:00:07 -0400338 CONFIG_SYS_FLASH_BASE + CONFIG_SYS_MONITOR_LEN - 1,
339 &flash_info[0]);
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200340 bd->bi_flashstart = CONFIG_SYS_FLASH_BASE;
Wolfgang Denk6cb142f2006-03-12 02:12:27 +0100341 bd->bi_flashsize = size;
342 bd->bi_flashoffset = 0;
343#else
344 bd->bi_flashstart = 0;
345 bd->bi_flashsize = 0;
346 bd->bi_flashoffset = 0;
347#endif
Wolfgang Denk6cb142f2006-03-12 02:12:27 +0100348
Mike Frysinger39782722008-10-06 03:55:25 -0400349#ifdef CONFIG_CMD_NAND
350 puts("NAND: ");
351 nand_init(); /* go init the NAND */
352#endif
353
Cliff Caie54c8202009-11-20 08:24:43 +0000354#ifdef CONFIG_GENERIC_MMC
Mike Frysingerd3c07a52010-09-29 14:46:42 -0400355 puts("MMC: ");
Cliff Caie54c8202009-11-20 08:24:43 +0000356 mmc_initialize(bd);
357#endif
358
Wolfgang Denk6cb142f2006-03-12 02:12:27 +0100359 /* relocate environment function pointers etc. */
360 env_relocate();
361
Jean-Christophe PLAGNIOL-VILLARD52cb4d42009-05-16 12:14:54 +0200362 /* Initialize stdio devices */
363 stdio_init();
Wolfgang Denk6cb142f2006-03-12 02:12:27 +0100364 jumptable_init();
365
366 /* Initialize the console (after the relocation and devices init) */
367 console_init_r();
368
Robin Getzf19fd872009-12-21 16:35:48 -0500369#ifdef CONFIG_CMD_KGDB
370 puts("KGDB: ");
371 kgdb_init();
372#endif
373
Mike Frysinger01815c22008-10-06 03:52:24 -0400374#ifdef CONFIG_STATUS_LED
375 status_led_set(STATUS_LED_BOOT, STATUS_LED_BLINKING);
376 status_led_set(STATUS_LED_CRASH, STATUS_LED_OFF);
377#endif
378
Wolfgang Denk6cb142f2006-03-12 02:12:27 +0100379 /* Initialize from environment */
Mike Frysingerd5bffeb2008-02-19 00:54:20 -0500380 if ((s = getenv("loadaddr")) != NULL)
Wolfgang Denk6cb142f2006-03-12 02:12:27 +0100381 load_addr = simple_strtoul(s, NULL, 16);
Aubrey.Li3f0606a2007-03-09 13:38:44 +0800382
Wolfgang Denk6cb142f2006-03-12 02:12:27 +0100383#if defined(CONFIG_MISC_INIT_R)
384 /* miscellaneous platform dependent initialisations */
385 misc_init_r();
386#endif
387
Mike Frysinger8996d162009-02-22 16:02:27 -0500388 board_net_init_r(bd);
Aubrey.Li3f0606a2007-03-09 13:38:44 +0800389
Aubrey.Li3f0606a2007-03-09 13:38:44 +0800390 display_global_data();
Aubrey.Li3f0606a2007-03-09 13:38:44 +0800391
Mike Frysinger9171fc82008-03-30 15:46:13 -0400392#if defined(CONFIG_POST)
Aubrey.Li3f0606a2007-03-09 13:38:44 +0800393 if (post_flag)
394 post_run(NULL, POST_RAM | post_bootmode_get(0));
Wolfgang Denk6cb142f2006-03-12 02:12:27 +0100395#endif
396
Mike Frysinger05e78252010-12-24 13:19:25 -0500397 if (CONFIG_MEM_SIZE && bfin_os_log_check()) {
Mike Frysinger909878f2009-07-09 01:15:05 -0400398 puts("\nLog buffer from operating system:\n");
399 bfin_os_log_dump();
400 puts("\n");
401 }
402
Wolfgang Denk6cb142f2006-03-12 02:12:27 +0100403 /* main_loop() can return to retry autoboot, if so just run it again. */
Mike Frysingerd5bffeb2008-02-19 00:54:20 -0500404 for (;;)
Wolfgang Denk6cb142f2006-03-12 02:12:27 +0100405 main_loop();
Wolfgang Denk6cb142f2006-03-12 02:12:27 +0100406}
407
Wolfgang Denk6cb142f2006-03-12 02:12:27 +0100408void hang(void)
409{
Mike Frysinger01815c22008-10-06 03:52:24 -0400410#ifdef CONFIG_STATUS_LED
411 status_led_set(STATUS_LED_BOOT, STATUS_LED_OFF);
412 status_led_set(STATUS_LED_CRASH, STATUS_LED_BLINKING);
413#endif
Wolfgang Denk6cb142f2006-03-12 02:12:27 +0100414 puts("### ERROR ### Please RESET the board ###\n");
Mike Frysingerd5bffeb2008-02-19 00:54:20 -0500415 while (1)
416 /* If a JTAG emulator is hooked up, we'll automatically trigger
417 * a breakpoint in it. If one isn't, this is just a NOP.
418 */
419 asm("emuexcpt;");
Wolfgang Denk6cb142f2006-03-12 02:12:27 +0100420}