blob: 6cade7d1102e2d968ab3148732ee33f5ea934e6f [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>
17#include <net.h>
Peter Tyser561858e2008-11-03 09:30:59 -060018#include <timestamp.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>
24
25#ifdef CONFIG_CMD_NAND
26#include <nand.h> /* cannot even include nand.h if it isnt configured */
27#endif
Wolfgang Denk6cb142f2006-03-12 02:12:27 +010028
Luigi 'Comio' Mantellini310cecb2009-10-10 12:42:21 +020029#ifdef CONFIG_BITBANGMII
30#include <miiphy.h>
31#endif
32
Mike Frysinger9171fc82008-03-30 15:46:13 -040033#if defined(CONFIG_POST)
Aubrey.Li3f0606a2007-03-09 13:38:44 +080034#include <post.h>
35int post_flag;
36#endif
Wolfgang Denkd87080b2006-03-31 18:32:53 +020037
Wolfgang Denk1218abf2007-09-15 20:48:41 +020038DECLARE_GLOBAL_DATA_PTR;
39
Peter Tyser561858e2008-11-03 09:30:59 -060040const char version_string[] = U_BOOT_VERSION " ("U_BOOT_DATE" - "U_BOOT_TIME")";
Wolfgang Denk6cb142f2006-03-12 02:12:27 +010041
Mike Frysingerd5bffeb2008-02-19 00:54:20 -050042__attribute__((always_inline))
43static inline void serial_early_puts(const char *s)
44{
45#ifdef CONFIG_DEBUG_EARLY_SERIAL
46 serial_puts("Early: ");
47 serial_puts(s);
48#endif
49}
50
Wolfgang Denk6cb142f2006-03-12 02:12:27 +010051static int display_banner(void)
52{
Mike Frysingerd5bffeb2008-02-19 00:54:20 -050053 printf("\n\n%s\n\n", version_string);
Mike Frysingerfc68f9f2009-01-06 06:16:19 -050054 printf("CPU: ADSP " MK_STR(CONFIG_BFIN_CPU) " "
55 "(Detected Rev: 0.%d) "
56 "(%s boot)\n",
57 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];
65 int i = getenv_r("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{
Mike Frysingerd5bffeb2008-02-19 00:54:20 -050074#ifdef CONFIG_DEBUG_EARLY_SERIAL
Wolfgang Denk6cb142f2006-03-12 02:12:27 +010075 bd_t *bd;
76 bd = gd->bd;
Mike Frysingerf541e1d2009-08-24 19:03:18 -040077 printf(" gd: %p\n", gd);
78 printf(" |-flags: %lx\n", gd->flags);
79 printf(" |-board_type: %lx\n", gd->board_type);
80 printf(" |-baudrate: %lu\n", gd->baudrate);
81 printf(" |-have_console: %lx\n", gd->have_console);
82 printf(" |-ram_size: %lx\n", gd->ram_size);
83 printf(" |-reloc_off: %lx\n", gd->reloc_off);
84 printf(" |-env_addr: %lx\n", gd->env_addr);
85 printf(" |-env_valid: %lx\n", gd->env_valid);
86 printf(" |-jt(%p): %p\n", gd->jt, *(gd->jt));
87 printf(" \\-bd: %p\n", gd->bd);
Mike Frysingerd5bffeb2008-02-19 00:54:20 -050088 printf(" |-bi_baudrate: %x\n", bd->bi_baudrate);
Mike Frysingerf541e1d2009-08-24 19:03:18 -040089 printf(" |-bi_ip_addr: %lx\n", bd->bi_ip_addr);
90 printf(" |-bi_boot_params: %lx\n", bd->bi_boot_params);
91 printf(" |-bi_memstart: %lx\n", bd->bi_memstart);
92 printf(" |-bi_memsize: %lx\n", bd->bi_memsize);
93 printf(" |-bi_flashstart: %lx\n", bd->bi_flashstart);
94 printf(" |-bi_flashsize: %lx\n", bd->bi_flashsize);
95 printf(" \\-bi_flashoffset: %lx\n", bd->bi_flashoffset);
Wolfgang Denk6cb142f2006-03-12 02:12:27 +010096#endif
Mike Frysingerd5bffeb2008-02-19 00:54:20 -050097}
Wolfgang Denk6cb142f2006-03-12 02:12:27 +010098
Mike Frysingerd5bffeb2008-02-19 00:54:20 -050099#define CPLB_PAGE_SIZE (4 * 1024 * 1024)
100#define CPLB_PAGE_MASK (~(CPLB_PAGE_SIZE - 1))
Aubrey.Li3f0606a2007-03-09 13:38:44 +0800101void init_cplbtables(void)
102{
Mike Frysingerd5bffeb2008-02-19 00:54:20 -0500103 volatile uint32_t *ICPLB_ADDR, *ICPLB_DATA;
104 volatile uint32_t *DCPLB_ADDR, *DCPLB_DATA;
105 uint32_t extern_memory;
106 size_t i;
Aubrey.Li3f0606a2007-03-09 13:38:44 +0800107
Mike Frysingerd5bffeb2008-02-19 00:54:20 -0500108 void icplb_add(uint32_t addr, uint32_t data)
109 {
110 *(ICPLB_ADDR + i) = addr;
111 *(ICPLB_DATA + i) = data;
Aubrey.Li3f0606a2007-03-09 13:38:44 +0800112 }
Mike Frysingerd5bffeb2008-02-19 00:54:20 -0500113 void dcplb_add(uint32_t addr, uint32_t data)
114 {
115 *(DCPLB_ADDR + i) = addr;
116 *(DCPLB_DATA + i) = data;
Aubrey.Li3f0606a2007-03-09 13:38:44 +0800117 }
118
Mike Frysingerd5bffeb2008-02-19 00:54:20 -0500119 /* populate a few common entries ... we'll let
120 * the memory map and cplb exception handler do
121 * the rest of the work.
122 */
123 i = 0;
124 ICPLB_ADDR = (uint32_t *)ICPLB_ADDR0;
125 ICPLB_DATA = (uint32_t *)ICPLB_DATA0;
126 DCPLB_ADDR = (uint32_t *)DCPLB_ADDR0;
127 DCPLB_DATA = (uint32_t *)DCPLB_DATA0;
128
129 icplb_add(0xFFA00000, L1_IMEMORY);
130 dcplb_add(0xFF800000, L1_DMEMORY);
131 ++i;
132
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200133 icplb_add(CONFIG_SYS_MONITOR_BASE & CPLB_PAGE_MASK, SDRAM_IKERNEL);
134 dcplb_add(CONFIG_SYS_MONITOR_BASE & CPLB_PAGE_MASK, SDRAM_DKERNEL);
Mike Frysingerd5bffeb2008-02-19 00:54:20 -0500135 ++i;
136
137 /* If the monitor crosses a 4 meg boundary, we'll need
138 * to lock two entries for it.
139 */
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200140 if ((CONFIG_SYS_MONITOR_BASE & CPLB_PAGE_MASK) != ((CONFIG_SYS_MONITOR_BASE + CONFIG_SYS_MONITOR_LEN) & CPLB_PAGE_MASK)) {
141 icplb_add((CONFIG_SYS_MONITOR_BASE + CONFIG_SYS_MONITOR_LEN) & CPLB_PAGE_MASK, SDRAM_IKERNEL);
142 dcplb_add((CONFIG_SYS_MONITOR_BASE + CONFIG_SYS_MONITOR_LEN) & CPLB_PAGE_MASK, SDRAM_DKERNEL);
Mike Frysingerd5bffeb2008-02-19 00:54:20 -0500143 ++i;
144 }
145
146 icplb_add(0x20000000, SDRAM_INON_CHBL);
147 dcplb_add(0x20000000, SDRAM_EBIU);
148 ++i;
149
150 /* Add entries for the rest of external RAM up to the bootrom */
151 extern_memory = 0;
152
153#ifdef CONFIG_DEBUG_NULL_PTR
154 icplb_add(extern_memory, (SDRAM_IKERNEL & ~PAGE_SIZE_MASK) | PAGE_SIZE_1KB);
155 dcplb_add(extern_memory, (SDRAM_DKERNEL & ~PAGE_SIZE_MASK) | PAGE_SIZE_1KB);
156 ++i;
157 icplb_add(extern_memory, SDRAM_IKERNEL);
158 dcplb_add(extern_memory, SDRAM_DKERNEL);
159 extern_memory += CPLB_PAGE_SIZE;
160 ++i;
161#endif
162
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200163 while (i < 16 && extern_memory < (CONFIG_SYS_MONITOR_BASE & CPLB_PAGE_MASK)) {
Mike Frysingerd5bffeb2008-02-19 00:54:20 -0500164 icplb_add(extern_memory, SDRAM_IGENERIC);
165 dcplb_add(extern_memory, SDRAM_DGENERIC);
166 extern_memory += CPLB_PAGE_SIZE;
167 ++i;
168 }
169 while (i < 16) {
170 icplb_add(0, 0);
171 dcplb_add(0, 0);
172 ++i;
173 }
Aubrey.Li3f0606a2007-03-09 13:38:44 +0800174}
175
Wolfgang Denk6cb142f2006-03-12 02:12:27 +0100176/*
177 * All attempts to come up with a "common" initialization sequence
178 * that works for all boards and architectures failed: some of the
179 * requirements are just _too_ different. To get rid of the resulting
180 * mess of board dependend #ifdef'ed code we now make the whole
181 * initialization sequence configurable to the user.
182 *
183 * The requirements for any new initalization function is simple: it
184 * receives a pointer to the "global data" structure as it's only
185 * argument, and returns an integer return code, where 0 means
186 * "continue" and != 0 means "fatal error, hang the system".
187 */
188
Mike Frysingerd5bffeb2008-02-19 00:54:20 -0500189extern int exception_init(void);
190extern int irq_init(void);
Mike Frysingerd5bffeb2008-02-19 00:54:20 -0500191extern int timer_init(void);
192
Wolfgang Denk6cb142f2006-03-12 02:12:27 +0100193void board_init_f(ulong bootflag)
194{
Wolfgang Denk6cb142f2006-03-12 02:12:27 +0100195 ulong addr;
196 bd_t *bd;
Mike Frysinger6dadc912008-10-20 16:15:04 -0400197 char buf[32];
Aubrey.Li3f0606a2007-03-09 13:38:44 +0800198
Mike Frysingerd5bffeb2008-02-19 00:54:20 -0500199#ifdef CONFIG_BOARD_EARLY_INIT_F
200 serial_early_puts("Board early init flash\n");
201 board_early_init_f();
202#endif
203
204 serial_early_puts("Init CPLB tables\n");
Aubrey.Li3f0606a2007-03-09 13:38:44 +0800205 init_cplbtables();
Wolfgang Denk6cb142f2006-03-12 02:12:27 +0100206
Mike Frysingerd5bffeb2008-02-19 00:54:20 -0500207 serial_early_puts("Exceptions setup\n");
208 exception_init();
209
210#ifndef CONFIG_ICACHE_OFF
211 serial_early_puts("Turn on ICACHE\n");
212 icache_enable();
213#endif
214#ifndef CONFIG_DCACHE_OFF
215 serial_early_puts("Turn on DCACHE\n");
216 dcache_enable();
217#endif
218
Mike Frysinger78a0ba72008-10-06 03:57:39 -0400219#ifdef DEBUG
220 if (CONFIG_SYS_GBL_DATA_SIZE < sizeof(*gd))
221 hang();
222#endif
Mike Frysingerd5bffeb2008-02-19 00:54:20 -0500223 serial_early_puts("Init global data\n");
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200224 gd = (gd_t *) (CONFIG_SYS_GBL_DATA_ADDR);
Mike Frysinger78a0ba72008-10-06 03:57:39 -0400225 memset((void *)gd, 0, CONFIG_SYS_GBL_DATA_SIZE);
Wolfgang Denk6cb142f2006-03-12 02:12:27 +0100226
227 /* Board data initialization */
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200228 addr = (CONFIG_SYS_GBL_DATA_ADDR + sizeof(gd_t));
Wolfgang Denk6cb142f2006-03-12 02:12:27 +0100229
230 /* Align to 4 byte boundary */
Wolfgang Denk8e7b7032006-03-12 02:55:22 +0100231 addr &= ~(4 - 1);
Aubrey.Li3f0606a2007-03-09 13:38:44 +0800232 bd = (bd_t *) addr;
Wolfgang Denk6cb142f2006-03-12 02:12:27 +0100233 gd->bd = bd;
Aubrey.Li3f0606a2007-03-09 13:38:44 +0800234 memset((void *)bd, 0, sizeof(bd_t));
Wolfgang Denk6cb142f2006-03-12 02:12:27 +0100235
Mike Frysingerd5bffeb2008-02-19 00:54:20 -0500236 bd->bi_r_version = version_string;
237 bd->bi_cpu = MK_STR(CONFIG_BFIN_CPU);
238 bd->bi_board_name = BFIN_BOARD_NAME;
239 bd->bi_vco = get_vco();
240 bd->bi_cclk = get_cclk();
241 bd->bi_sclk = get_sclk();
Aubrey.Li3f0606a2007-03-09 13:38:44 +0800242
Mike Frysingerd5bffeb2008-02-19 00:54:20 -0500243 /* Initialize */
244 serial_early_puts("IRQ init\n");
245 irq_init();
246 serial_early_puts("Environment init\n");
247 env_init();
248 serial_early_puts("Baudrate init\n");
249 init_baudrate();
250 serial_early_puts("Serial init\n");
251 serial_init();
252 serial_early_puts("Console init flash\n");
253 console_init_f();
254 serial_early_puts("End of early debugging\n");
255 display_banner();
Aubrey.Li3f0606a2007-03-09 13:38:44 +0800256
Wolfgang Denk6cb142f2006-03-12 02:12:27 +0100257 checkboard();
Wolfgang Denk6cb142f2006-03-12 02:12:27 +0100258 timer_init();
Mike Frysingerd5bffeb2008-02-19 00:54:20 -0500259
Mike Frysinger6dadc912008-10-20 16:15:04 -0400260 printf("Clock: VCO: %s MHz, ", strmhz(buf, get_vco()));
261 printf("Core: %s MHz, ", strmhz(buf, get_cclk()));
262 printf("System: %s MHz\n", strmhz(buf, get_sclk()));
Mike Frysingerd5bffeb2008-02-19 00:54:20 -0500263
264 printf("RAM: ");
Wolfgang Denk6cb142f2006-03-12 02:12:27 +0100265 print_size(initdram(0), "\n");
Mike Frysinger9171fc82008-03-30 15:46:13 -0400266#if defined(CONFIG_POST)
Aubrey.Li3f0606a2007-03-09 13:38:44 +0800267 post_init_f();
268 post_bootmode_init();
269 post_run(NULL, POST_ROM | post_bootmode_get(0));
270#endif
Mike Frysingerd5bffeb2008-02-19 00:54:20 -0500271
Wolfgang Denk6cb142f2006-03-12 02:12:27 +0100272 board_init_r((gd_t *) gd, 0x20000010);
273}
274
Mike Frysinger8996d162009-02-22 16:02:27 -0500275static void board_net_init_r(bd_t *bd)
276{
Luigi 'Comio' Mantellini310cecb2009-10-10 12:42:21 +0200277#ifdef CONFIG_BITBANGMII
278 bb_miiphy_init();
279#endif
Mike Frysinger8996d162009-02-22 16:02:27 -0500280#ifdef CONFIG_CMD_NET
Mike Frysinger8996d162009-02-22 16:02:27 -0500281 char *s;
282
283 if ((s = getenv("bootfile")) != NULL)
284 copy_filename(BootFile, s, sizeof(BootFile));
285
286 bd->bi_ip_addr = getenv_IPaddr("ipaddr");
287
288 printf("Net: ");
289 eth_initialize(gd->bd);
Mike Frysinger8996d162009-02-22 16:02:27 -0500290#endif
291}
292
Wolfgang Denk6cb142f2006-03-12 02:12:27 +0100293void board_init_r(gd_t * id, ulong dest_addr)
294{
Mike Frysingerd5bffeb2008-02-19 00:54:20 -0500295 char *s;
Wolfgang Denk6cb142f2006-03-12 02:12:27 +0100296 bd_t *bd;
Wolfgang Denk6cb142f2006-03-12 02:12:27 +0100297 gd = id;
298 gd->flags |= GD_FLG_RELOC; /* tell others: relocation done */
299 bd = gd->bd;
300
Mike Frysinger9171fc82008-03-30 15:46:13 -0400301#if defined(CONFIG_POST)
Aubrey.Li3f0606a2007-03-09 13:38:44 +0800302 post_output_backlog();
303 post_reloc();
304#endif
305
Stefan Roesec790b042009-05-11 15:50:12 +0200306 /* initialize malloc() area */
Peter Tysera483a162009-08-21 23:05:20 -0500307 mem_malloc_init(CONFIG_SYS_MALLOC_BASE, CONFIG_SYS_MALLOC_LEN);
Stefan Roesec790b042009-05-11 15:50:12 +0200308
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200309#if !defined(CONFIG_SYS_NO_FLASH)
Mike Frysingerb6edc712008-10-06 04:00:07 -0400310 /* Initialize the flash and protect u-boot by default */
Mike Frysingerd5bffeb2008-02-19 00:54:20 -0500311 extern flash_info_t flash_info[];
Mike Frysingerd5bffeb2008-02-19 00:54:20 -0500312 puts("Flash: ");
Mike Frysinger45c48952008-10-06 04:01:26 -0400313 ulong size = flash_init();
Mike Frysingerd5bffeb2008-02-19 00:54:20 -0500314 print_size(size, "\n");
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200315 flash_protect(FLAG_PROTECT_SET, CONFIG_SYS_FLASH_BASE,
Mike Frysingerb6edc712008-10-06 04:00:07 -0400316 CONFIG_SYS_FLASH_BASE + CONFIG_SYS_MONITOR_LEN - 1,
317 &flash_info[0]);
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200318 bd->bi_flashstart = CONFIG_SYS_FLASH_BASE;
Wolfgang Denk6cb142f2006-03-12 02:12:27 +0100319 bd->bi_flashsize = size;
320 bd->bi_flashoffset = 0;
321#else
322 bd->bi_flashstart = 0;
323 bd->bi_flashsize = 0;
324 bd->bi_flashoffset = 0;
325#endif
Wolfgang Denk6cb142f2006-03-12 02:12:27 +0100326
Mike Frysinger39782722008-10-06 03:55:25 -0400327#ifdef CONFIG_CMD_NAND
328 puts("NAND: ");
329 nand_init(); /* go init the NAND */
330#endif
331
Wolfgang Denk6cb142f2006-03-12 02:12:27 +0100332 /* relocate environment function pointers etc. */
333 env_relocate();
334
Jean-Christophe PLAGNIOL-VILLARD52cb4d42009-05-16 12:14:54 +0200335 /* Initialize stdio devices */
336 stdio_init();
Wolfgang Denk6cb142f2006-03-12 02:12:27 +0100337 jumptable_init();
338
339 /* Initialize the console (after the relocation and devices init) */
340 console_init_r();
341
Mike Frysinger01815c22008-10-06 03:52:24 -0400342#ifdef CONFIG_STATUS_LED
343 status_led_set(STATUS_LED_BOOT, STATUS_LED_BLINKING);
344 status_led_set(STATUS_LED_CRASH, STATUS_LED_OFF);
345#endif
346
Wolfgang Denk6cb142f2006-03-12 02:12:27 +0100347 /* Initialize from environment */
Mike Frysingerd5bffeb2008-02-19 00:54:20 -0500348 if ((s = getenv("loadaddr")) != NULL)
Wolfgang Denk6cb142f2006-03-12 02:12:27 +0100349 load_addr = simple_strtoul(s, NULL, 16);
Aubrey.Li3f0606a2007-03-09 13:38:44 +0800350
Wolfgang Denk6cb142f2006-03-12 02:12:27 +0100351#if defined(CONFIG_MISC_INIT_R)
352 /* miscellaneous platform dependent initialisations */
353 misc_init_r();
354#endif
355
Mike Frysinger8996d162009-02-22 16:02:27 -0500356 board_net_init_r(bd);
Aubrey.Li3f0606a2007-03-09 13:38:44 +0800357
Aubrey.Li3f0606a2007-03-09 13:38:44 +0800358 display_global_data();
Aubrey.Li3f0606a2007-03-09 13:38:44 +0800359
Mike Frysinger9171fc82008-03-30 15:46:13 -0400360#if defined(CONFIG_POST)
Aubrey.Li3f0606a2007-03-09 13:38:44 +0800361 if (post_flag)
362 post_run(NULL, POST_RAM | post_bootmode_get(0));
Wolfgang Denk6cb142f2006-03-12 02:12:27 +0100363#endif
364
Mike Frysinger909878f2009-07-09 01:15:05 -0400365 if (bfin_os_log_check()) {
366 puts("\nLog buffer from operating system:\n");
367 bfin_os_log_dump();
368 puts("\n");
369 }
370
Wolfgang Denk6cb142f2006-03-12 02:12:27 +0100371 /* main_loop() can return to retry autoboot, if so just run it again. */
Mike Frysingerd5bffeb2008-02-19 00:54:20 -0500372 for (;;)
Wolfgang Denk6cb142f2006-03-12 02:12:27 +0100373 main_loop();
Wolfgang Denk6cb142f2006-03-12 02:12:27 +0100374}
375
Wolfgang Denk6cb142f2006-03-12 02:12:27 +0100376void hang(void)
377{
Mike Frysinger01815c22008-10-06 03:52:24 -0400378#ifdef CONFIG_STATUS_LED
379 status_led_set(STATUS_LED_BOOT, STATUS_LED_OFF);
380 status_led_set(STATUS_LED_CRASH, STATUS_LED_BLINKING);
381#endif
Wolfgang Denk6cb142f2006-03-12 02:12:27 +0100382 puts("### ERROR ### Please RESET the board ###\n");
Mike Frysingerd5bffeb2008-02-19 00:54:20 -0500383 while (1)
384 /* If a JTAG emulator is hooked up, we'll automatically trigger
385 * a breakpoint in it. If one isn't, this is just a NOP.
386 */
387 asm("emuexcpt;");
Wolfgang Denk6cb142f2006-03-12 02:12:27 +0100388}