blob: 17681f6f8ead52e9263082f40b2617de616b215d [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
Mike Frysinger9171fc82008-03-30 15:46:13 -040029#if defined(CONFIG_POST)
Aubrey.Li3f0606a2007-03-09 13:38:44 +080030#include <post.h>
31int post_flag;
32#endif
Wolfgang Denkd87080b2006-03-31 18:32:53 +020033
Wolfgang Denk1218abf2007-09-15 20:48:41 +020034DECLARE_GLOBAL_DATA_PTR;
35
Peter Tyser561858e2008-11-03 09:30:59 -060036const char version_string[] = U_BOOT_VERSION " ("U_BOOT_DATE" - "U_BOOT_TIME")";
Wolfgang Denk6cb142f2006-03-12 02:12:27 +010037
Mike Frysingerd5bffeb2008-02-19 00:54:20 -050038__attribute__((always_inline))
39static inline void serial_early_puts(const char *s)
40{
41#ifdef CONFIG_DEBUG_EARLY_SERIAL
42 serial_puts("Early: ");
43 serial_puts(s);
44#endif
45}
46
Peter Tysera483a162009-08-21 23:05:20 -050047static void mem_malloc_init(ulong start, ulong size)
Wolfgang Denk6cb142f2006-03-12 02:12:27 +010048{
Peter Tysera483a162009-08-21 23:05:20 -050049 mem_malloc_start = start;
50 mem_malloc_end = start + size;
51 mem_malloc_brk = start;
Wolfgang Denk6cb142f2006-03-12 02:12:27 +010052
Peter Tysera483a162009-08-21 23:05:20 -050053 memset((void*)mem_malloc_start, 0, size);
Wolfgang Denk6cb142f2006-03-12 02:12:27 +010054}
55
56static int display_banner(void)
57{
Mike Frysingerd5bffeb2008-02-19 00:54:20 -050058 printf("\n\n%s\n\n", version_string);
Mike Frysingerfc68f9f2009-01-06 06:16:19 -050059 printf("CPU: ADSP " MK_STR(CONFIG_BFIN_CPU) " "
60 "(Detected Rev: 0.%d) "
61 "(%s boot)\n",
62 bfin_revid(),
63 get_bfin_boot_mode(CONFIG_BFIN_BOOT_MODE));
Mike Frysingerd5bffeb2008-02-19 00:54:20 -050064 return 0;
Wolfgang Denk6cb142f2006-03-12 02:12:27 +010065}
66
67static int init_baudrate(void)
68{
Mike Frysingerd5bffeb2008-02-19 00:54:20 -050069 char baudrate[15];
70 int i = getenv_r("baudrate", baudrate, sizeof(baudrate));
Wolfgang Denk6cb142f2006-03-12 02:12:27 +010071 gd->bd->bi_baudrate = gd->baudrate = (i > 0)
Mike Frysingerd5bffeb2008-02-19 00:54:20 -050072 ? simple_strtoul(baudrate, NULL, 10)
Aubrey.Li3f0606a2007-03-09 13:38:44 +080073 : CONFIG_BAUDRATE;
Mike Frysingerd5bffeb2008-02-19 00:54:20 -050074 return 0;
Wolfgang Denk6cb142f2006-03-12 02:12:27 +010075}
76
Wolfgang Denk6cb142f2006-03-12 02:12:27 +010077static void display_global_data(void)
78{
Mike Frysingerd5bffeb2008-02-19 00:54:20 -050079#ifdef CONFIG_DEBUG_EARLY_SERIAL
Wolfgang Denk6cb142f2006-03-12 02:12:27 +010080 bd_t *bd;
81 bd = gd->bd;
Mike Frysingerf541e1d2009-08-24 19:03:18 -040082 printf(" gd: %p\n", gd);
83 printf(" |-flags: %lx\n", gd->flags);
84 printf(" |-board_type: %lx\n", gd->board_type);
85 printf(" |-baudrate: %lu\n", gd->baudrate);
86 printf(" |-have_console: %lx\n", gd->have_console);
87 printf(" |-ram_size: %lx\n", gd->ram_size);
88 printf(" |-reloc_off: %lx\n", gd->reloc_off);
89 printf(" |-env_addr: %lx\n", gd->env_addr);
90 printf(" |-env_valid: %lx\n", gd->env_valid);
91 printf(" |-jt(%p): %p\n", gd->jt, *(gd->jt));
92 printf(" \\-bd: %p\n", gd->bd);
Mike Frysingerd5bffeb2008-02-19 00:54:20 -050093 printf(" |-bi_baudrate: %x\n", bd->bi_baudrate);
Mike Frysingerf541e1d2009-08-24 19:03:18 -040094 printf(" |-bi_ip_addr: %lx\n", bd->bi_ip_addr);
95 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);
Wolfgang Denk6cb142f2006-03-12 02:12:27 +0100101#endif
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))
Aubrey.Li3f0606a2007-03-09 13:38:44 +0800106void init_cplbtables(void)
107{
Mike Frysingerd5bffeb2008-02-19 00:54:20 -0500108 volatile uint32_t *ICPLB_ADDR, *ICPLB_DATA;
109 volatile uint32_t *DCPLB_ADDR, *DCPLB_DATA;
110 uint32_t extern_memory;
111 size_t i;
Aubrey.Li3f0606a2007-03-09 13:38:44 +0800112
Mike Frysingerd5bffeb2008-02-19 00:54:20 -0500113 void icplb_add(uint32_t addr, uint32_t data)
114 {
115 *(ICPLB_ADDR + i) = addr;
116 *(ICPLB_DATA + i) = data;
Aubrey.Li3f0606a2007-03-09 13:38:44 +0800117 }
Mike Frysingerd5bffeb2008-02-19 00:54:20 -0500118 void dcplb_add(uint32_t addr, uint32_t data)
119 {
120 *(DCPLB_ADDR + i) = addr;
121 *(DCPLB_DATA + i) = data;
Aubrey.Li3f0606a2007-03-09 13:38:44 +0800122 }
123
Mike Frysingerd5bffeb2008-02-19 00:54:20 -0500124 /* populate a few common entries ... we'll let
125 * the memory map and cplb exception handler do
126 * the rest of the work.
127 */
128 i = 0;
129 ICPLB_ADDR = (uint32_t *)ICPLB_ADDR0;
130 ICPLB_DATA = (uint32_t *)ICPLB_DATA0;
131 DCPLB_ADDR = (uint32_t *)DCPLB_ADDR0;
132 DCPLB_DATA = (uint32_t *)DCPLB_DATA0;
133
134 icplb_add(0xFFA00000, L1_IMEMORY);
135 dcplb_add(0xFF800000, L1_DMEMORY);
136 ++i;
137
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200138 icplb_add(CONFIG_SYS_MONITOR_BASE & CPLB_PAGE_MASK, SDRAM_IKERNEL);
139 dcplb_add(CONFIG_SYS_MONITOR_BASE & CPLB_PAGE_MASK, SDRAM_DKERNEL);
Mike Frysingerd5bffeb2008-02-19 00:54:20 -0500140 ++i;
141
142 /* If the monitor crosses a 4 meg boundary, we'll need
143 * to lock two entries for it.
144 */
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200145 if ((CONFIG_SYS_MONITOR_BASE & CPLB_PAGE_MASK) != ((CONFIG_SYS_MONITOR_BASE + CONFIG_SYS_MONITOR_LEN) & CPLB_PAGE_MASK)) {
146 icplb_add((CONFIG_SYS_MONITOR_BASE + CONFIG_SYS_MONITOR_LEN) & CPLB_PAGE_MASK, SDRAM_IKERNEL);
147 dcplb_add((CONFIG_SYS_MONITOR_BASE + CONFIG_SYS_MONITOR_LEN) & CPLB_PAGE_MASK, SDRAM_DKERNEL);
Mike Frysingerd5bffeb2008-02-19 00:54:20 -0500148 ++i;
149 }
150
151 icplb_add(0x20000000, SDRAM_INON_CHBL);
152 dcplb_add(0x20000000, SDRAM_EBIU);
153 ++i;
154
155 /* Add entries for the rest of external RAM up to the bootrom */
156 extern_memory = 0;
157
158#ifdef CONFIG_DEBUG_NULL_PTR
159 icplb_add(extern_memory, (SDRAM_IKERNEL & ~PAGE_SIZE_MASK) | PAGE_SIZE_1KB);
160 dcplb_add(extern_memory, (SDRAM_DKERNEL & ~PAGE_SIZE_MASK) | PAGE_SIZE_1KB);
161 ++i;
162 icplb_add(extern_memory, SDRAM_IKERNEL);
163 dcplb_add(extern_memory, SDRAM_DKERNEL);
164 extern_memory += CPLB_PAGE_SIZE;
165 ++i;
166#endif
167
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200168 while (i < 16 && extern_memory < (CONFIG_SYS_MONITOR_BASE & CPLB_PAGE_MASK)) {
Mike Frysingerd5bffeb2008-02-19 00:54:20 -0500169 icplb_add(extern_memory, SDRAM_IGENERIC);
170 dcplb_add(extern_memory, SDRAM_DGENERIC);
171 extern_memory += CPLB_PAGE_SIZE;
172 ++i;
173 }
174 while (i < 16) {
175 icplb_add(0, 0);
176 dcplb_add(0, 0);
177 ++i;
178 }
Aubrey.Li3f0606a2007-03-09 13:38:44 +0800179}
180
Wolfgang Denk6cb142f2006-03-12 02:12:27 +0100181/*
182 * All attempts to come up with a "common" initialization sequence
183 * that works for all boards and architectures failed: some of the
184 * requirements are just _too_ different. To get rid of the resulting
185 * mess of board dependend #ifdef'ed code we now make the whole
186 * initialization sequence configurable to the user.
187 *
188 * The requirements for any new initalization function is simple: it
189 * receives a pointer to the "global data" structure as it's only
190 * argument, and returns an integer return code, where 0 means
191 * "continue" and != 0 means "fatal error, hang the system".
192 */
193
Mike Frysingerd5bffeb2008-02-19 00:54:20 -0500194extern int exception_init(void);
195extern int irq_init(void);
Mike Frysingerd5bffeb2008-02-19 00:54:20 -0500196extern int timer_init(void);
197
Wolfgang Denk6cb142f2006-03-12 02:12:27 +0100198void board_init_f(ulong bootflag)
199{
Wolfgang Denk6cb142f2006-03-12 02:12:27 +0100200 ulong addr;
201 bd_t *bd;
Mike Frysinger6dadc912008-10-20 16:15:04 -0400202 char buf[32];
Aubrey.Li3f0606a2007-03-09 13:38:44 +0800203
Mike Frysingerd5bffeb2008-02-19 00:54:20 -0500204#ifdef CONFIG_BOARD_EARLY_INIT_F
205 serial_early_puts("Board early init flash\n");
206 board_early_init_f();
207#endif
208
209 serial_early_puts("Init CPLB tables\n");
Aubrey.Li3f0606a2007-03-09 13:38:44 +0800210 init_cplbtables();
Wolfgang Denk6cb142f2006-03-12 02:12:27 +0100211
Mike Frysingerd5bffeb2008-02-19 00:54:20 -0500212 serial_early_puts("Exceptions setup\n");
213 exception_init();
214
215#ifndef CONFIG_ICACHE_OFF
216 serial_early_puts("Turn on ICACHE\n");
217 icache_enable();
218#endif
219#ifndef CONFIG_DCACHE_OFF
220 serial_early_puts("Turn on DCACHE\n");
221 dcache_enable();
222#endif
223
Mike Frysinger78a0ba72008-10-06 03:57:39 -0400224#ifdef DEBUG
225 if (CONFIG_SYS_GBL_DATA_SIZE < sizeof(*gd))
226 hang();
227#endif
Mike Frysingerd5bffeb2008-02-19 00:54:20 -0500228 serial_early_puts("Init global data\n");
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200229 gd = (gd_t *) (CONFIG_SYS_GBL_DATA_ADDR);
Mike Frysinger78a0ba72008-10-06 03:57:39 -0400230 memset((void *)gd, 0, CONFIG_SYS_GBL_DATA_SIZE);
Wolfgang Denk6cb142f2006-03-12 02:12:27 +0100231
232 /* Board data initialization */
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200233 addr = (CONFIG_SYS_GBL_DATA_ADDR + sizeof(gd_t));
Wolfgang Denk6cb142f2006-03-12 02:12:27 +0100234
235 /* Align to 4 byte boundary */
Wolfgang Denk8e7b7032006-03-12 02:55:22 +0100236 addr &= ~(4 - 1);
Aubrey.Li3f0606a2007-03-09 13:38:44 +0800237 bd = (bd_t *) addr;
Wolfgang Denk6cb142f2006-03-12 02:12:27 +0100238 gd->bd = bd;
Aubrey.Li3f0606a2007-03-09 13:38:44 +0800239 memset((void *)bd, 0, sizeof(bd_t));
Wolfgang Denk6cb142f2006-03-12 02:12:27 +0100240
Mike Frysingerd5bffeb2008-02-19 00:54:20 -0500241 bd->bi_r_version = version_string;
242 bd->bi_cpu = MK_STR(CONFIG_BFIN_CPU);
243 bd->bi_board_name = BFIN_BOARD_NAME;
244 bd->bi_vco = get_vco();
245 bd->bi_cclk = get_cclk();
246 bd->bi_sclk = get_sclk();
Aubrey.Li3f0606a2007-03-09 13:38:44 +0800247
Mike Frysingerd5bffeb2008-02-19 00:54:20 -0500248 /* Initialize */
249 serial_early_puts("IRQ init\n");
250 irq_init();
251 serial_early_puts("Environment init\n");
252 env_init();
253 serial_early_puts("Baudrate init\n");
254 init_baudrate();
255 serial_early_puts("Serial init\n");
256 serial_init();
257 serial_early_puts("Console init flash\n");
258 console_init_f();
259 serial_early_puts("End of early debugging\n");
260 display_banner();
Aubrey.Li3f0606a2007-03-09 13:38:44 +0800261
Wolfgang Denk6cb142f2006-03-12 02:12:27 +0100262 checkboard();
Wolfgang Denk6cb142f2006-03-12 02:12:27 +0100263 timer_init();
Mike Frysingerd5bffeb2008-02-19 00:54:20 -0500264
Mike Frysinger6dadc912008-10-20 16:15:04 -0400265 printf("Clock: VCO: %s MHz, ", strmhz(buf, get_vco()));
266 printf("Core: %s MHz, ", strmhz(buf, get_cclk()));
267 printf("System: %s MHz\n", strmhz(buf, get_sclk()));
Mike Frysingerd5bffeb2008-02-19 00:54:20 -0500268
269 printf("RAM: ");
Wolfgang Denk6cb142f2006-03-12 02:12:27 +0100270 print_size(initdram(0), "\n");
Mike Frysinger9171fc82008-03-30 15:46:13 -0400271#if defined(CONFIG_POST)
Aubrey.Li3f0606a2007-03-09 13:38:44 +0800272 post_init_f();
273 post_bootmode_init();
274 post_run(NULL, POST_ROM | post_bootmode_get(0));
275#endif
Mike Frysingerd5bffeb2008-02-19 00:54:20 -0500276
Wolfgang Denk6cb142f2006-03-12 02:12:27 +0100277 board_init_r((gd_t *) gd, 0x20000010);
278}
279
Mike Frysinger8996d162009-02-22 16:02:27 -0500280static void board_net_init_r(bd_t *bd)
281{
282#ifdef CONFIG_CMD_NET
283 uchar enetaddr[6];
284 char *s;
285
286 if ((s = getenv("bootfile")) != NULL)
287 copy_filename(BootFile, s, sizeof(BootFile));
288
289 bd->bi_ip_addr = getenv_IPaddr("ipaddr");
290
291 printf("Net: ");
292 eth_initialize(gd->bd);
293
294 eth_getenv_enetaddr("ethaddr", enetaddr);
295 printf("MAC: %pM\n", enetaddr);
296#endif
297}
298
Wolfgang Denk6cb142f2006-03-12 02:12:27 +0100299void board_init_r(gd_t * id, ulong dest_addr)
300{
Wolfgang Denk6cb142f2006-03-12 02:12:27 +0100301 extern void malloc_bin_reloc(void);
Mike Frysingerd5bffeb2008-02-19 00:54:20 -0500302 char *s;
Wolfgang Denk6cb142f2006-03-12 02:12:27 +0100303 bd_t *bd;
Wolfgang Denk6cb142f2006-03-12 02:12:27 +0100304 gd = id;
305 gd->flags |= GD_FLG_RELOC; /* tell others: relocation done */
306 bd = gd->bd;
307
Mike Frysinger9171fc82008-03-30 15:46:13 -0400308#if defined(CONFIG_POST)
Aubrey.Li3f0606a2007-03-09 13:38:44 +0800309 post_output_backlog();
310 post_reloc();
311#endif
312
Stefan Roesec790b042009-05-11 15:50:12 +0200313 /* initialize malloc() area */
Peter Tysera483a162009-08-21 23:05:20 -0500314 mem_malloc_init(CONFIG_SYS_MALLOC_BASE, CONFIG_SYS_MALLOC_LEN);
Stefan Roesec790b042009-05-11 15:50:12 +0200315 malloc_bin_reloc();
316
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200317#if !defined(CONFIG_SYS_NO_FLASH)
Mike Frysingerb6edc712008-10-06 04:00:07 -0400318 /* Initialize the flash and protect u-boot by default */
Mike Frysingerd5bffeb2008-02-19 00:54:20 -0500319 extern flash_info_t flash_info[];
Mike Frysingerd5bffeb2008-02-19 00:54:20 -0500320 puts("Flash: ");
Mike Frysinger45c48952008-10-06 04:01:26 -0400321 ulong size = flash_init();
Mike Frysingerd5bffeb2008-02-19 00:54:20 -0500322 print_size(size, "\n");
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200323 flash_protect(FLAG_PROTECT_SET, CONFIG_SYS_FLASH_BASE,
Mike Frysingerb6edc712008-10-06 04:00:07 -0400324 CONFIG_SYS_FLASH_BASE + CONFIG_SYS_MONITOR_LEN - 1,
325 &flash_info[0]);
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200326 bd->bi_flashstart = CONFIG_SYS_FLASH_BASE;
Wolfgang Denk6cb142f2006-03-12 02:12:27 +0100327 bd->bi_flashsize = size;
328 bd->bi_flashoffset = 0;
329#else
330 bd->bi_flashstart = 0;
331 bd->bi_flashsize = 0;
332 bd->bi_flashoffset = 0;
333#endif
Wolfgang Denk6cb142f2006-03-12 02:12:27 +0100334
Mike Frysinger39782722008-10-06 03:55:25 -0400335#ifdef CONFIG_CMD_NAND
336 puts("NAND: ");
337 nand_init(); /* go init the NAND */
338#endif
339
Wolfgang Denk6cb142f2006-03-12 02:12:27 +0100340 /* relocate environment function pointers etc. */
341 env_relocate();
342
Jean-Christophe PLAGNIOL-VILLARD52cb4d42009-05-16 12:14:54 +0200343 /* Initialize stdio devices */
344 stdio_init();
Wolfgang Denk6cb142f2006-03-12 02:12:27 +0100345 jumptable_init();
346
347 /* Initialize the console (after the relocation and devices init) */
348 console_init_r();
349
Mike Frysinger01815c22008-10-06 03:52:24 -0400350#ifdef CONFIG_STATUS_LED
351 status_led_set(STATUS_LED_BOOT, STATUS_LED_BLINKING);
352 status_led_set(STATUS_LED_CRASH, STATUS_LED_OFF);
353#endif
354
Wolfgang Denk6cb142f2006-03-12 02:12:27 +0100355 /* Initialize from environment */
Mike Frysingerd5bffeb2008-02-19 00:54:20 -0500356 if ((s = getenv("loadaddr")) != NULL)
Wolfgang Denk6cb142f2006-03-12 02:12:27 +0100357 load_addr = simple_strtoul(s, NULL, 16);
Aubrey.Li3f0606a2007-03-09 13:38:44 +0800358
Wolfgang Denk6cb142f2006-03-12 02:12:27 +0100359#if defined(CONFIG_MISC_INIT_R)
360 /* miscellaneous platform dependent initialisations */
361 misc_init_r();
362#endif
363
Mike Frysinger8996d162009-02-22 16:02:27 -0500364 board_net_init_r(bd);
Aubrey.Li3f0606a2007-03-09 13:38:44 +0800365
Aubrey.Li3f0606a2007-03-09 13:38:44 +0800366 display_global_data();
Aubrey.Li3f0606a2007-03-09 13:38:44 +0800367
Mike Frysinger9171fc82008-03-30 15:46:13 -0400368#if defined(CONFIG_POST)
Aubrey.Li3f0606a2007-03-09 13:38:44 +0800369 if (post_flag)
370 post_run(NULL, POST_RAM | post_bootmode_get(0));
Wolfgang Denk6cb142f2006-03-12 02:12:27 +0100371#endif
372
Mike Frysinger909878f2009-07-09 01:15:05 -0400373 if (bfin_os_log_check()) {
374 puts("\nLog buffer from operating system:\n");
375 bfin_os_log_dump();
376 puts("\n");
377 }
378
Wolfgang Denk6cb142f2006-03-12 02:12:27 +0100379 /* main_loop() can return to retry autoboot, if so just run it again. */
Mike Frysingerd5bffeb2008-02-19 00:54:20 -0500380 for (;;)
Wolfgang Denk6cb142f2006-03-12 02:12:27 +0100381 main_loop();
Wolfgang Denk6cb142f2006-03-12 02:12:27 +0100382}
383
Wolfgang Denk6cb142f2006-03-12 02:12:27 +0100384void hang(void)
385{
Mike Frysinger01815c22008-10-06 03:52:24 -0400386#ifdef CONFIG_STATUS_LED
387 status_led_set(STATUS_LED_BOOT, STATUS_LED_OFF);
388 status_led_set(STATUS_LED_CRASH, STATUS_LED_BLINKING);
389#endif
Wolfgang Denk6cb142f2006-03-12 02:12:27 +0100390 puts("### ERROR ### Please RESET the board ###\n");
Mike Frysingerd5bffeb2008-02-19 00:54:20 -0500391 while (1)
392 /* If a JTAG emulator is hooked up, we'll automatically trigger
393 * a breakpoint in it. If one isn't, this is just a NOP.
394 */
395 asm("emuexcpt;");
Wolfgang Denk6cb142f2006-03-12 02:12:27 +0100396}