blob: 7c33893e39b36f8d1b39f1a99ea19a1e6c397a8b [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>
Wolfgang Denk6cb142f2006-03-12 02:12:27 +010015#include <environment.h>
Mike Frysingerd5bffeb2008-02-19 00:54:20 -050016#include <malloc.h>
Cliff Caie54c8202009-11-20 08:24:43 +000017#include <mmc.h>
Mike Frysingerd5bffeb2008-02-19 00:54:20 -050018#include <net.h>
Mike Frysinger01815c22008-10-06 03:52:24 -040019#include <status_led.h>
Mike Frysingerd5bffeb2008-02-19 00:54:20 -050020#include <version.h>
21
Aubrey.Li3f0606a2007-03-09 13:38:44 +080022#include <asm/cplb.h>
Mike Frysingerd5bffeb2008-02-19 00:54:20 -050023#include <asm/mach-common/bits/mpu.h>
Robin Getzf19fd872009-12-21 16:35:48 -050024#include <kgdb.h>
Mike Frysingerd5bffeb2008-02-19 00:54:20 -050025
26#ifdef CONFIG_CMD_NAND
27#include <nand.h> /* cannot even include nand.h if it isnt configured */
28#endif
Wolfgang Denk6cb142f2006-03-12 02:12:27 +010029
Luigi 'Comio' Mantellini310cecb2009-10-10 12:42:21 +020030#ifdef CONFIG_BITBANGMII
31#include <miiphy.h>
32#endif
33
Mike Frysinger9171fc82008-03-30 15:46:13 -040034#if defined(CONFIG_POST)
Aubrey.Li3f0606a2007-03-09 13:38:44 +080035#include <post.h>
36int post_flag;
37#endif
Wolfgang Denkd87080b2006-03-31 18:32:53 +020038
Wolfgang Denk1218abf2007-09-15 20:48:41 +020039DECLARE_GLOBAL_DATA_PTR;
40
Mike Frysingerd5bffeb2008-02-19 00:54:20 -050041__attribute__((always_inline))
42static inline void serial_early_puts(const char *s)
43{
44#ifdef CONFIG_DEBUG_EARLY_SERIAL
45 serial_puts("Early: ");
46 serial_puts(s);
47#endif
48}
49
Wolfgang Denk6cb142f2006-03-12 02:12:27 +010050static int display_banner(void)
51{
Mike Frysingerd5bffeb2008-02-19 00:54:20 -050052 printf("\n\n%s\n\n", version_string);
Mike Frysinger5d891152010-08-09 17:39:22 -040053 printf("CPU: ADSP %s "
Mike Frysingerfc68f9f2009-01-06 06:16:19 -050054 "(Detected Rev: 0.%d) "
55 "(%s boot)\n",
Mike Frysinger5d891152010-08-09 17:39:22 -040056 gd->bd->bi_cpu,
Mike Frysingerfc68f9f2009-01-06 06:16:19 -050057 bfin_revid(),
58 get_bfin_boot_mode(CONFIG_BFIN_BOOT_MODE));
Mike Frysingerd5bffeb2008-02-19 00:54:20 -050059 return 0;
Wolfgang Denk6cb142f2006-03-12 02:12:27 +010060}
61
62static int init_baudrate(void)
63{
Mike Frysingerd5bffeb2008-02-19 00:54:20 -050064 char baudrate[15];
Wolfgang Denkcdb74972010-07-24 21:55:43 +020065 int i = getenv_f("baudrate", baudrate, sizeof(baudrate));
Wolfgang Denk6cb142f2006-03-12 02:12:27 +010066 gd->bd->bi_baudrate = gd->baudrate = (i > 0)
Mike Frysingerd5bffeb2008-02-19 00:54:20 -050067 ? simple_strtoul(baudrate, NULL, 10)
Aubrey.Li3f0606a2007-03-09 13:38:44 +080068 : CONFIG_BAUDRATE;
Mike Frysingerd5bffeb2008-02-19 00:54:20 -050069 return 0;
Wolfgang Denk6cb142f2006-03-12 02:12:27 +010070}
71
Wolfgang Denk6cb142f2006-03-12 02:12:27 +010072static void display_global_data(void)
73{
Wolfgang Denk6cb142f2006-03-12 02:12:27 +010074 bd_t *bd;
Mike Frysinger03f70532010-01-19 15:39:07 -050075
76#ifndef CONFIG_DEBUG_EARLY_SERIAL
77 return;
78#endif
79
Wolfgang Denk6cb142f2006-03-12 02:12:27 +010080 bd = gd->bd;
Mike Frysingerf541e1d2009-08-24 19:03:18 -040081 printf(" gd: %p\n", gd);
82 printf(" |-flags: %lx\n", gd->flags);
83 printf(" |-board_type: %lx\n", gd->board_type);
84 printf(" |-baudrate: %lu\n", gd->baudrate);
85 printf(" |-have_console: %lx\n", gd->have_console);
86 printf(" |-ram_size: %lx\n", gd->ram_size);
Mike Frysingerf541e1d2009-08-24 19:03:18 -040087 printf(" |-env_addr: %lx\n", gd->env_addr);
88 printf(" |-env_valid: %lx\n", gd->env_valid);
89 printf(" |-jt(%p): %p\n", gd->jt, *(gd->jt));
90 printf(" \\-bd: %p\n", gd->bd);
Mike Frysingerd5bffeb2008-02-19 00:54:20 -050091 printf(" |-bi_baudrate: %x\n", bd->bi_baudrate);
Mike Frysingerf541e1d2009-08-24 19:03:18 -040092 printf(" |-bi_ip_addr: %lx\n", bd->bi_ip_addr);
93 printf(" |-bi_boot_params: %lx\n", bd->bi_boot_params);
94 printf(" |-bi_memstart: %lx\n", bd->bi_memstart);
95 printf(" |-bi_memsize: %lx\n", bd->bi_memsize);
96 printf(" |-bi_flashstart: %lx\n", bd->bi_flashstart);
97 printf(" |-bi_flashsize: %lx\n", bd->bi_flashsize);
98 printf(" \\-bi_flashoffset: %lx\n", bd->bi_flashoffset);
Mike Frysingerd5bffeb2008-02-19 00:54:20 -050099}
Wolfgang Denk6cb142f2006-03-12 02:12:27 +0100100
Mike Frysingerd5bffeb2008-02-19 00:54:20 -0500101#define CPLB_PAGE_SIZE (4 * 1024 * 1024)
102#define CPLB_PAGE_MASK (~(CPLB_PAGE_SIZE - 1))
Aubrey.Li3f0606a2007-03-09 13:38:44 +0800103void init_cplbtables(void)
104{
Mike Frysingerd5bffeb2008-02-19 00:54:20 -0500105 volatile uint32_t *ICPLB_ADDR, *ICPLB_DATA;
106 volatile uint32_t *DCPLB_ADDR, *DCPLB_DATA;
107 uint32_t extern_memory;
108 size_t i;
Aubrey.Li3f0606a2007-03-09 13:38:44 +0800109
Mike Frysingerd5bffeb2008-02-19 00:54:20 -0500110 void icplb_add(uint32_t addr, uint32_t data)
111 {
112 *(ICPLB_ADDR + i) = addr;
113 *(ICPLB_DATA + i) = data;
Aubrey.Li3f0606a2007-03-09 13:38:44 +0800114 }
Mike Frysingerd5bffeb2008-02-19 00:54:20 -0500115 void dcplb_add(uint32_t addr, uint32_t data)
116 {
117 *(DCPLB_ADDR + i) = addr;
118 *(DCPLB_DATA + i) = data;
Aubrey.Li3f0606a2007-03-09 13:38:44 +0800119 }
120
Mike Frysingerd5bffeb2008-02-19 00:54:20 -0500121 /* populate a few common entries ... we'll let
122 * the memory map and cplb exception handler do
123 * the rest of the work.
124 */
125 i = 0;
126 ICPLB_ADDR = (uint32_t *)ICPLB_ADDR0;
127 ICPLB_DATA = (uint32_t *)ICPLB_DATA0;
128 DCPLB_ADDR = (uint32_t *)DCPLB_ADDR0;
129 DCPLB_DATA = (uint32_t *)DCPLB_DATA0;
130
131 icplb_add(0xFFA00000, L1_IMEMORY);
132 dcplb_add(0xFF800000, L1_DMEMORY);
133 ++i;
134
Mike Frysinger7527fee2009-11-09 19:38:23 -0500135 if (CONFIG_MEM_SIZE) {
136 uint32_t mbase = CONFIG_SYS_MONITOR_BASE;
137 uint32_t mend = mbase + CONFIG_SYS_MONITOR_LEN;
138 mbase &= CPLB_PAGE_MASK;
139 mend &= CPLB_PAGE_MASK;
Mike Frysingerd5bffeb2008-02-19 00:54:20 -0500140
Mike Frysinger7527fee2009-11-09 19:38:23 -0500141 icplb_add(mbase, SDRAM_IKERNEL);
142 dcplb_add(mbase, SDRAM_DKERNEL);
Mike Frysingerd5bffeb2008-02-19 00:54:20 -0500143 ++i;
Mike Frysinger7527fee2009-11-09 19:38:23 -0500144
145 /*
146 * If the monitor crosses a 4 meg boundary, we'll need
147 * to lock two entries for it. We assume it doesn't
148 * cross two 4 meg boundaries ...
149 */
150 if (mbase != mend) {
151 icplb_add(mend, SDRAM_IKERNEL);
152 dcplb_add(mend, SDRAM_DKERNEL);
153 ++i;
154 }
Mike Frysingerd5bffeb2008-02-19 00:54:20 -0500155 }
156
157 icplb_add(0x20000000, SDRAM_INON_CHBL);
158 dcplb_add(0x20000000, SDRAM_EBIU);
159 ++i;
160
161 /* Add entries for the rest of external RAM up to the bootrom */
162 extern_memory = 0;
163
164#ifdef CONFIG_DEBUG_NULL_PTR
165 icplb_add(extern_memory, (SDRAM_IKERNEL & ~PAGE_SIZE_MASK) | PAGE_SIZE_1KB);
166 dcplb_add(extern_memory, (SDRAM_DKERNEL & ~PAGE_SIZE_MASK) | PAGE_SIZE_1KB);
167 ++i;
168 icplb_add(extern_memory, SDRAM_IKERNEL);
169 dcplb_add(extern_memory, SDRAM_DKERNEL);
170 extern_memory += CPLB_PAGE_SIZE;
171 ++i;
172#endif
173
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200174 while (i < 16 && extern_memory < (CONFIG_SYS_MONITOR_BASE & CPLB_PAGE_MASK)) {
Mike Frysingerd5bffeb2008-02-19 00:54:20 -0500175 icplb_add(extern_memory, SDRAM_IGENERIC);
176 dcplb_add(extern_memory, SDRAM_DGENERIC);
177 extern_memory += CPLB_PAGE_SIZE;
178 ++i;
179 }
180 while (i < 16) {
181 icplb_add(0, 0);
182 dcplb_add(0, 0);
183 ++i;
184 }
Aubrey.Li3f0606a2007-03-09 13:38:44 +0800185}
186
Wolfgang Denk6cb142f2006-03-12 02:12:27 +0100187/*
188 * All attempts to come up with a "common" initialization sequence
189 * that works for all boards and architectures failed: some of the
190 * requirements are just _too_ different. To get rid of the resulting
191 * mess of board dependend #ifdef'ed code we now make the whole
192 * initialization sequence configurable to the user.
193 *
194 * The requirements for any new initalization function is simple: it
195 * receives a pointer to the "global data" structure as it's only
196 * argument, and returns an integer return code, where 0 means
197 * "continue" and != 0 means "fatal error, hang the system".
198 */
199
Mike Frysinger0c080aa2010-02-11 20:19:10 -0500200extern int watchdog_init(void);
Mike Frysingerd5bffeb2008-02-19 00:54:20 -0500201extern int exception_init(void);
202extern int irq_init(void);
Mike Frysingerd5bffeb2008-02-19 00:54:20 -0500203extern int timer_init(void);
204
Wolfgang Denk6cb142f2006-03-12 02:12:27 +0100205void board_init_f(ulong bootflag)
206{
Wolfgang Denk6cb142f2006-03-12 02:12:27 +0100207 bd_t *bd;
Mike Frysinger6dadc912008-10-20 16:15:04 -0400208 char buf[32];
Aubrey.Li3f0606a2007-03-09 13:38:44 +0800209
Mike Frysingerd5bffeb2008-02-19 00:54:20 -0500210#ifdef CONFIG_BOARD_EARLY_INIT_F
211 serial_early_puts("Board early init flash\n");
212 board_early_init_f();
213#endif
214
215 serial_early_puts("Init CPLB tables\n");
Aubrey.Li3f0606a2007-03-09 13:38:44 +0800216 init_cplbtables();
Wolfgang Denk6cb142f2006-03-12 02:12:27 +0100217
Mike Frysingerd5bffeb2008-02-19 00:54:20 -0500218 serial_early_puts("Exceptions setup\n");
219 exception_init();
220
221#ifndef CONFIG_ICACHE_OFF
222 serial_early_puts("Turn on ICACHE\n");
223 icache_enable();
224#endif
225#ifndef CONFIG_DCACHE_OFF
226 serial_early_puts("Turn on DCACHE\n");
227 dcache_enable();
228#endif
229
Mike Frysinger0c080aa2010-02-11 20:19:10 -0500230#ifdef CONFIG_WATCHDOG
231 serial_early_puts("Setting up external watchdog\n");
232 watchdog_init();
233#endif
234
Mike Frysinger78a0ba72008-10-06 03:57:39 -0400235#ifdef DEBUG
Wolfgang Denk25ddd1f2010-10-26 14:34:52 +0200236 if (GENERATED_GBL_DATA_SIZE < sizeof(*gd))
Mike Frysinger78a0ba72008-10-06 03:57:39 -0400237 hang();
238#endif
Mike Frysingerd5bffeb2008-02-19 00:54:20 -0500239 serial_early_puts("Init global data\n");
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200240 gd = (gd_t *) (CONFIG_SYS_GBL_DATA_ADDR);
Wolfgang Denk25ddd1f2010-10-26 14:34:52 +0200241 memset((void *)gd, 0, GENERATED_GBL_DATA_SIZE);
Wolfgang Denk6cb142f2006-03-12 02:12:27 +0100242
Mike Frysinger5a9a2c52010-12-24 12:48:16 -0500243 bd = (bd_t *) (CONFIG_SYS_BD_INFO_ADDR);
Wolfgang Denk6cb142f2006-03-12 02:12:27 +0100244 gd->bd = bd;
Mike Frysinger5a9a2c52010-12-24 12:48:16 -0500245 memset((void *)bd, 0, GENERATED_BD_INFO_SIZE);
Wolfgang Denk6cb142f2006-03-12 02:12:27 +0100246
Mike Frysingerd5bffeb2008-02-19 00:54:20 -0500247 bd->bi_r_version = version_string;
Mike Frysingerfbcf8e82010-12-23 14:58:37 -0500248 bd->bi_cpu = MK_STR(CONFIG_BFIN_CPU);
Mike Frysingerd5bffeb2008-02-19 00:54:20 -0500249 bd->bi_board_name = BFIN_BOARD_NAME;
250 bd->bi_vco = get_vco();
251 bd->bi_cclk = get_cclk();
252 bd->bi_sclk = get_sclk();
Mike Frysingerfa45bd42009-11-03 06:28:22 -0500253 bd->bi_memstart = CONFIG_SYS_SDRAM_BASE;
254 bd->bi_memsize = CONFIG_SYS_MAX_RAM_SIZE;
Aubrey.Li3f0606a2007-03-09 13:38:44 +0800255
Mike Frysingerd5bffeb2008-02-19 00:54:20 -0500256 /* Initialize */
257 serial_early_puts("IRQ init\n");
258 irq_init();
259 serial_early_puts("Environment init\n");
260 env_init();
261 serial_early_puts("Baudrate init\n");
262 init_baudrate();
263 serial_early_puts("Serial init\n");
264 serial_init();
265 serial_early_puts("Console init flash\n");
266 console_init_f();
267 serial_early_puts("End of early debugging\n");
268 display_banner();
Aubrey.Li3f0606a2007-03-09 13:38:44 +0800269
Wolfgang Denk6cb142f2006-03-12 02:12:27 +0100270 checkboard();
Wolfgang Denk6cb142f2006-03-12 02:12:27 +0100271 timer_init();
Mike Frysingerd5bffeb2008-02-19 00:54:20 -0500272
Mike Frysinger6dadc912008-10-20 16:15:04 -0400273 printf("Clock: VCO: %s MHz, ", strmhz(buf, get_vco()));
274 printf("Core: %s MHz, ", strmhz(buf, get_cclk()));
275 printf("System: %s MHz\n", strmhz(buf, get_sclk()));
Mike Frysingerd5bffeb2008-02-19 00:54:20 -0500276
Mike Frysinger7d69dfd2010-12-20 05:18:55 -0500277 if (CONFIG_MEM_SIZE) {
278 printf("RAM: ");
279 print_size(bd->bi_memsize, "\n");
280 }
281
Mike Frysinger9171fc82008-03-30 15:46:13 -0400282#if defined(CONFIG_POST)
Aubrey.Li3f0606a2007-03-09 13:38:44 +0800283 post_init_f();
284 post_bootmode_init();
285 post_run(NULL, POST_ROM | post_bootmode_get(0));
286#endif
Mike Frysingerd5bffeb2008-02-19 00:54:20 -0500287
Wolfgang Denk6cb142f2006-03-12 02:12:27 +0100288 board_init_r((gd_t *) gd, 0x20000010);
289}
290
Mike Frysinger8996d162009-02-22 16:02:27 -0500291static void board_net_init_r(bd_t *bd)
292{
Luigi 'Comio' Mantellini310cecb2009-10-10 12:42:21 +0200293#ifdef CONFIG_BITBANGMII
294 bb_miiphy_init();
295#endif
Mike Frysinger8996d162009-02-22 16:02:27 -0500296#ifdef CONFIG_CMD_NET
Mike Frysinger8996d162009-02-22 16:02:27 -0500297 char *s;
298
299 if ((s = getenv("bootfile")) != NULL)
300 copy_filename(BootFile, s, sizeof(BootFile));
301
302 bd->bi_ip_addr = getenv_IPaddr("ipaddr");
303
304 printf("Net: ");
305 eth_initialize(gd->bd);
Mike Frysinger8996d162009-02-22 16:02:27 -0500306#endif
307}
308
Wolfgang Denk6cb142f2006-03-12 02:12:27 +0100309void board_init_r(gd_t * id, ulong dest_addr)
310{
Mike Frysingerd5bffeb2008-02-19 00:54:20 -0500311 char *s;
Wolfgang Denk6cb142f2006-03-12 02:12:27 +0100312 bd_t *bd;
Wolfgang Denk6cb142f2006-03-12 02:12:27 +0100313 gd = id;
314 gd->flags |= GD_FLG_RELOC; /* tell others: relocation done */
315 bd = gd->bd;
316
Mike Frysinger9171fc82008-03-30 15:46:13 -0400317#if defined(CONFIG_POST)
Aubrey.Li3f0606a2007-03-09 13:38:44 +0800318 post_output_backlog();
Aubrey.Li3f0606a2007-03-09 13:38:44 +0800319#endif
320
Stefan Roesec790b042009-05-11 15:50:12 +0200321 /* initialize malloc() area */
Peter Tysera483a162009-08-21 23:05:20 -0500322 mem_malloc_init(CONFIG_SYS_MALLOC_BASE, CONFIG_SYS_MALLOC_LEN);
Stefan Roesec790b042009-05-11 15:50:12 +0200323
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200324#if !defined(CONFIG_SYS_NO_FLASH)
Mike Frysingerb6edc712008-10-06 04:00:07 -0400325 /* Initialize the flash and protect u-boot by default */
Mike Frysingerd5bffeb2008-02-19 00:54:20 -0500326 extern flash_info_t flash_info[];
Mike Frysingerd5bffeb2008-02-19 00:54:20 -0500327 puts("Flash: ");
Mike Frysinger45c48952008-10-06 04:01:26 -0400328 ulong size = flash_init();
Mike Frysingerd5bffeb2008-02-19 00:54:20 -0500329 print_size(size, "\n");
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200330 flash_protect(FLAG_PROTECT_SET, CONFIG_SYS_FLASH_BASE,
Mike Frysingerb6edc712008-10-06 04:00:07 -0400331 CONFIG_SYS_FLASH_BASE + CONFIG_SYS_MONITOR_LEN - 1,
332 &flash_info[0]);
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200333 bd->bi_flashstart = CONFIG_SYS_FLASH_BASE;
Wolfgang Denk6cb142f2006-03-12 02:12:27 +0100334 bd->bi_flashsize = size;
335 bd->bi_flashoffset = 0;
336#else
337 bd->bi_flashstart = 0;
338 bd->bi_flashsize = 0;
339 bd->bi_flashoffset = 0;
340#endif
Wolfgang Denk6cb142f2006-03-12 02:12:27 +0100341
Mike Frysinger39782722008-10-06 03:55:25 -0400342#ifdef CONFIG_CMD_NAND
343 puts("NAND: ");
344 nand_init(); /* go init the NAND */
345#endif
346
Cliff Caie54c8202009-11-20 08:24:43 +0000347#ifdef CONFIG_GENERIC_MMC
Mike Frysingerd3c07a52010-09-29 14:46:42 -0400348 puts("MMC: ");
Cliff Caie54c8202009-11-20 08:24:43 +0000349 mmc_initialize(bd);
350#endif
351
Wolfgang Denk6cb142f2006-03-12 02:12:27 +0100352 /* relocate environment function pointers etc. */
353 env_relocate();
354
Jean-Christophe PLAGNIOL-VILLARD52cb4d42009-05-16 12:14:54 +0200355 /* Initialize stdio devices */
356 stdio_init();
Wolfgang Denk6cb142f2006-03-12 02:12:27 +0100357 jumptable_init();
358
359 /* Initialize the console (after the relocation and devices init) */
360 console_init_r();
361
Robin Getzf19fd872009-12-21 16:35:48 -0500362#ifdef CONFIG_CMD_KGDB
363 puts("KGDB: ");
364 kgdb_init();
365#endif
366
Mike Frysinger01815c22008-10-06 03:52:24 -0400367#ifdef CONFIG_STATUS_LED
368 status_led_set(STATUS_LED_BOOT, STATUS_LED_BLINKING);
369 status_led_set(STATUS_LED_CRASH, STATUS_LED_OFF);
370#endif
371
Wolfgang Denk6cb142f2006-03-12 02:12:27 +0100372 /* Initialize from environment */
Mike Frysingerd5bffeb2008-02-19 00:54:20 -0500373 if ((s = getenv("loadaddr")) != NULL)
Wolfgang Denk6cb142f2006-03-12 02:12:27 +0100374 load_addr = simple_strtoul(s, NULL, 16);
Aubrey.Li3f0606a2007-03-09 13:38:44 +0800375
Wolfgang Denk6cb142f2006-03-12 02:12:27 +0100376#if defined(CONFIG_MISC_INIT_R)
377 /* miscellaneous platform dependent initialisations */
378 misc_init_r();
379#endif
380
Mike Frysinger8996d162009-02-22 16:02:27 -0500381 board_net_init_r(bd);
Aubrey.Li3f0606a2007-03-09 13:38:44 +0800382
Aubrey.Li3f0606a2007-03-09 13:38:44 +0800383 display_global_data();
Aubrey.Li3f0606a2007-03-09 13:38:44 +0800384
Mike Frysinger9171fc82008-03-30 15:46:13 -0400385#if defined(CONFIG_POST)
Aubrey.Li3f0606a2007-03-09 13:38:44 +0800386 if (post_flag)
387 post_run(NULL, POST_RAM | post_bootmode_get(0));
Wolfgang Denk6cb142f2006-03-12 02:12:27 +0100388#endif
389
Mike Frysinger05e78252010-12-24 13:19:25 -0500390 if (CONFIG_MEM_SIZE && bfin_os_log_check()) {
Mike Frysinger909878f2009-07-09 01:15:05 -0400391 puts("\nLog buffer from operating system:\n");
392 bfin_os_log_dump();
393 puts("\n");
394 }
395
Wolfgang Denk6cb142f2006-03-12 02:12:27 +0100396 /* main_loop() can return to retry autoboot, if so just run it again. */
Mike Frysingerd5bffeb2008-02-19 00:54:20 -0500397 for (;;)
Wolfgang Denk6cb142f2006-03-12 02:12:27 +0100398 main_loop();
Wolfgang Denk6cb142f2006-03-12 02:12:27 +0100399}
400
Wolfgang Denk6cb142f2006-03-12 02:12:27 +0100401void hang(void)
402{
Mike Frysinger01815c22008-10-06 03:52:24 -0400403#ifdef CONFIG_STATUS_LED
404 status_led_set(STATUS_LED_BOOT, STATUS_LED_OFF);
405 status_led_set(STATUS_LED_CRASH, STATUS_LED_BLINKING);
406#endif
Wolfgang Denk6cb142f2006-03-12 02:12:27 +0100407 puts("### ERROR ### Please RESET the board ###\n");
Mike Frysingerd5bffeb2008-02-19 00:54:20 -0500408 while (1)
409 /* If a JTAG emulator is hooked up, we'll automatically trigger
410 * a breakpoint in it. If one isn't, this is just a NOP.
411 */
412 asm("emuexcpt;");
Wolfgang Denk6cb142f2006-03-12 02:12:27 +0100413}