blob: b0b52b2ba87c6d6d78bc06ed8622e9092ca95cd0 [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>
Peter Tyser561858e2008-11-03 09:30:59 -060019#include <timestamp.h>
Mike Frysinger01815c22008-10-06 03:52:24 -040020#include <status_led.h>
Mike Frysingerd5bffeb2008-02-19 00:54:20 -050021#include <version.h>
22
Aubrey.Li3f0606a2007-03-09 13:38:44 +080023#include <asm/cplb.h>
Mike Frysingerd5bffeb2008-02-19 00:54:20 -050024#include <asm/mach-common/bits/mpu.h>
Robin Getzf19fd872009-12-21 16:35:48 -050025#include <kgdb.h>
Mike Frysingerd5bffeb2008-02-19 00:54:20 -050026
27#ifdef CONFIG_CMD_NAND
28#include <nand.h> /* cannot even include nand.h if it isnt configured */
29#endif
Wolfgang Denk6cb142f2006-03-12 02:12:27 +010030
Luigi 'Comio' Mantellini310cecb2009-10-10 12:42:21 +020031#ifdef CONFIG_BITBANGMII
32#include <miiphy.h>
33#endif
34
Mike Frysinger9171fc82008-03-30 15:46:13 -040035#if defined(CONFIG_POST)
Aubrey.Li3f0606a2007-03-09 13:38:44 +080036#include <post.h>
37int post_flag;
38#endif
Wolfgang Denkd87080b2006-03-31 18:32:53 +020039
Wolfgang Denk1218abf2007-09-15 20:48:41 +020040DECLARE_GLOBAL_DATA_PTR;
41
Peter Tyser561858e2008-11-03 09:30:59 -060042const char version_string[] = U_BOOT_VERSION " ("U_BOOT_DATE" - "U_BOOT_TIME")";
Wolfgang Denk6cb142f2006-03-12 02:12:27 +010043
Mike Frysingerd5bffeb2008-02-19 00:54:20 -050044__attribute__((always_inline))
45static inline void serial_early_puts(const char *s)
46{
47#ifdef CONFIG_DEBUG_EARLY_SERIAL
48 serial_puts("Early: ");
49 serial_puts(s);
50#endif
51}
52
Wolfgang Denk6cb142f2006-03-12 02:12:27 +010053static int display_banner(void)
54{
Mike Frysingerd5bffeb2008-02-19 00:54:20 -050055 printf("\n\n%s\n\n", version_string);
Mike Frysingerfc68f9f2009-01-06 06:16:19 -050056 printf("CPU: ADSP " MK_STR(CONFIG_BFIN_CPU) " "
57 "(Detected Rev: 0.%d) "
58 "(%s boot)\n",
59 bfin_revid(),
60 get_bfin_boot_mode(CONFIG_BFIN_BOOT_MODE));
Mike Frysingerd5bffeb2008-02-19 00:54:20 -050061 return 0;
Wolfgang Denk6cb142f2006-03-12 02:12:27 +010062}
63
64static int init_baudrate(void)
65{
Mike Frysingerd5bffeb2008-02-19 00:54:20 -050066 char baudrate[15];
67 int i = getenv_r("baudrate", baudrate, sizeof(baudrate));
Wolfgang Denk6cb142f2006-03-12 02:12:27 +010068 gd->bd->bi_baudrate = gd->baudrate = (i > 0)
Mike Frysingerd5bffeb2008-02-19 00:54:20 -050069 ? simple_strtoul(baudrate, NULL, 10)
Aubrey.Li3f0606a2007-03-09 13:38:44 +080070 : CONFIG_BAUDRATE;
Mike Frysingerd5bffeb2008-02-19 00:54:20 -050071 return 0;
Wolfgang Denk6cb142f2006-03-12 02:12:27 +010072}
73
Wolfgang Denk6cb142f2006-03-12 02:12:27 +010074static void display_global_data(void)
75{
Wolfgang Denk6cb142f2006-03-12 02:12:27 +010076 bd_t *bd;
Mike Frysinger03f70532010-01-19 15:39:07 -050077
78#ifndef CONFIG_DEBUG_EARLY_SERIAL
79 return;
80#endif
81
Wolfgang Denk6cb142f2006-03-12 02:12:27 +010082 bd = gd->bd;
Mike Frysingerf541e1d2009-08-24 19:03:18 -040083 printf(" gd: %p\n", gd);
84 printf(" |-flags: %lx\n", gd->flags);
85 printf(" |-board_type: %lx\n", gd->board_type);
86 printf(" |-baudrate: %lu\n", gd->baudrate);
87 printf(" |-have_console: %lx\n", gd->have_console);
88 printf(" |-ram_size: %lx\n", gd->ram_size);
Mike Frysingerf541e1d2009-08-24 19:03:18 -040089 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);
Mike Frysingerd5bffeb2008-02-19 00:54:20 -0500101}
Wolfgang Denk6cb142f2006-03-12 02:12:27 +0100102
Mike Frysingerd5bffeb2008-02-19 00:54:20 -0500103#define CPLB_PAGE_SIZE (4 * 1024 * 1024)
104#define CPLB_PAGE_MASK (~(CPLB_PAGE_SIZE - 1))
Aubrey.Li3f0606a2007-03-09 13:38:44 +0800105void init_cplbtables(void)
106{
Mike Frysingerd5bffeb2008-02-19 00:54:20 -0500107 volatile uint32_t *ICPLB_ADDR, *ICPLB_DATA;
108 volatile uint32_t *DCPLB_ADDR, *DCPLB_DATA;
109 uint32_t extern_memory;
110 size_t i;
Aubrey.Li3f0606a2007-03-09 13:38:44 +0800111
Mike Frysingerd5bffeb2008-02-19 00:54:20 -0500112 void icplb_add(uint32_t addr, uint32_t data)
113 {
114 *(ICPLB_ADDR + i) = addr;
115 *(ICPLB_DATA + i) = data;
Aubrey.Li3f0606a2007-03-09 13:38:44 +0800116 }
Mike Frysingerd5bffeb2008-02-19 00:54:20 -0500117 void dcplb_add(uint32_t addr, uint32_t data)
118 {
119 *(DCPLB_ADDR + i) = addr;
120 *(DCPLB_DATA + i) = data;
Aubrey.Li3f0606a2007-03-09 13:38:44 +0800121 }
122
Mike Frysingerd5bffeb2008-02-19 00:54:20 -0500123 /* populate a few common entries ... we'll let
124 * the memory map and cplb exception handler do
125 * the rest of the work.
126 */
127 i = 0;
128 ICPLB_ADDR = (uint32_t *)ICPLB_ADDR0;
129 ICPLB_DATA = (uint32_t *)ICPLB_DATA0;
130 DCPLB_ADDR = (uint32_t *)DCPLB_ADDR0;
131 DCPLB_DATA = (uint32_t *)DCPLB_DATA0;
132
133 icplb_add(0xFFA00000, L1_IMEMORY);
134 dcplb_add(0xFF800000, L1_DMEMORY);
135 ++i;
136
Mike Frysinger7527fee2009-11-09 19:38:23 -0500137 if (CONFIG_MEM_SIZE) {
138 uint32_t mbase = CONFIG_SYS_MONITOR_BASE;
139 uint32_t mend = mbase + CONFIG_SYS_MONITOR_LEN;
140 mbase &= CPLB_PAGE_MASK;
141 mend &= CPLB_PAGE_MASK;
Mike Frysingerd5bffeb2008-02-19 00:54:20 -0500142
Mike Frysinger7527fee2009-11-09 19:38:23 -0500143 icplb_add(mbase, SDRAM_IKERNEL);
144 dcplb_add(mbase, SDRAM_DKERNEL);
Mike Frysingerd5bffeb2008-02-19 00:54:20 -0500145 ++i;
Mike Frysinger7527fee2009-11-09 19:38:23 -0500146
147 /*
148 * If the monitor crosses a 4 meg boundary, we'll need
149 * to lock two entries for it. We assume it doesn't
150 * cross two 4 meg boundaries ...
151 */
152 if (mbase != mend) {
153 icplb_add(mend, SDRAM_IKERNEL);
154 dcplb_add(mend, SDRAM_DKERNEL);
155 ++i;
156 }
Mike Frysingerd5bffeb2008-02-19 00:54:20 -0500157 }
158
159 icplb_add(0x20000000, SDRAM_INON_CHBL);
160 dcplb_add(0x20000000, SDRAM_EBIU);
161 ++i;
162
163 /* Add entries for the rest of external RAM up to the bootrom */
164 extern_memory = 0;
165
166#ifdef CONFIG_DEBUG_NULL_PTR
167 icplb_add(extern_memory, (SDRAM_IKERNEL & ~PAGE_SIZE_MASK) | PAGE_SIZE_1KB);
168 dcplb_add(extern_memory, (SDRAM_DKERNEL & ~PAGE_SIZE_MASK) | PAGE_SIZE_1KB);
169 ++i;
170 icplb_add(extern_memory, SDRAM_IKERNEL);
171 dcplb_add(extern_memory, SDRAM_DKERNEL);
172 extern_memory += CPLB_PAGE_SIZE;
173 ++i;
174#endif
175
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200176 while (i < 16 && extern_memory < (CONFIG_SYS_MONITOR_BASE & CPLB_PAGE_MASK)) {
Mike Frysingerd5bffeb2008-02-19 00:54:20 -0500177 icplb_add(extern_memory, SDRAM_IGENERIC);
178 dcplb_add(extern_memory, SDRAM_DGENERIC);
179 extern_memory += CPLB_PAGE_SIZE;
180 ++i;
181 }
182 while (i < 16) {
183 icplb_add(0, 0);
184 dcplb_add(0, 0);
185 ++i;
186 }
Aubrey.Li3f0606a2007-03-09 13:38:44 +0800187}
188
Wolfgang Denk6cb142f2006-03-12 02:12:27 +0100189/*
190 * All attempts to come up with a "common" initialization sequence
191 * that works for all boards and architectures failed: some of the
192 * requirements are just _too_ different. To get rid of the resulting
193 * mess of board dependend #ifdef'ed code we now make the whole
194 * initialization sequence configurable to the user.
195 *
196 * The requirements for any new initalization function is simple: it
197 * receives a pointer to the "global data" structure as it's only
198 * argument, and returns an integer return code, where 0 means
199 * "continue" and != 0 means "fatal error, hang the system".
200 */
201
Mike Frysingerd5bffeb2008-02-19 00:54:20 -0500202extern int exception_init(void);
203extern int irq_init(void);
Mike Frysingerd5bffeb2008-02-19 00:54:20 -0500204extern int timer_init(void);
205
Wolfgang Denk6cb142f2006-03-12 02:12:27 +0100206void board_init_f(ulong bootflag)
207{
Wolfgang Denk6cb142f2006-03-12 02:12:27 +0100208 ulong addr;
209 bd_t *bd;
Mike Frysinger6dadc912008-10-20 16:15:04 -0400210 char buf[32];
Aubrey.Li3f0606a2007-03-09 13:38:44 +0800211
Mike Frysingerd5bffeb2008-02-19 00:54:20 -0500212#ifdef CONFIG_BOARD_EARLY_INIT_F
213 serial_early_puts("Board early init flash\n");
214 board_early_init_f();
215#endif
216
217 serial_early_puts("Init CPLB tables\n");
Aubrey.Li3f0606a2007-03-09 13:38:44 +0800218 init_cplbtables();
Wolfgang Denk6cb142f2006-03-12 02:12:27 +0100219
Mike Frysingerd5bffeb2008-02-19 00:54:20 -0500220 serial_early_puts("Exceptions setup\n");
221 exception_init();
222
223#ifndef CONFIG_ICACHE_OFF
224 serial_early_puts("Turn on ICACHE\n");
225 icache_enable();
226#endif
227#ifndef CONFIG_DCACHE_OFF
228 serial_early_puts("Turn on DCACHE\n");
229 dcache_enable();
230#endif
231
Mike Frysinger78a0ba72008-10-06 03:57:39 -0400232#ifdef DEBUG
233 if (CONFIG_SYS_GBL_DATA_SIZE < sizeof(*gd))
234 hang();
235#endif
Mike Frysingerd5bffeb2008-02-19 00:54:20 -0500236 serial_early_puts("Init global data\n");
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200237 gd = (gd_t *) (CONFIG_SYS_GBL_DATA_ADDR);
Mike Frysinger78a0ba72008-10-06 03:57:39 -0400238 memset((void *)gd, 0, CONFIG_SYS_GBL_DATA_SIZE);
Wolfgang Denk6cb142f2006-03-12 02:12:27 +0100239
240 /* Board data initialization */
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200241 addr = (CONFIG_SYS_GBL_DATA_ADDR + sizeof(gd_t));
Wolfgang Denk6cb142f2006-03-12 02:12:27 +0100242
243 /* Align to 4 byte boundary */
Wolfgang Denk8e7b7032006-03-12 02:55:22 +0100244 addr &= ~(4 - 1);
Aubrey.Li3f0606a2007-03-09 13:38:44 +0800245 bd = (bd_t *) addr;
Wolfgang Denk6cb142f2006-03-12 02:12:27 +0100246 gd->bd = bd;
Aubrey.Li3f0606a2007-03-09 13:38:44 +0800247 memset((void *)bd, 0, sizeof(bd_t));
Wolfgang Denk6cb142f2006-03-12 02:12:27 +0100248
Mike Frysingerd5bffeb2008-02-19 00:54:20 -0500249 bd->bi_r_version = version_string;
250 bd->bi_cpu = MK_STR(CONFIG_BFIN_CPU);
251 bd->bi_board_name = BFIN_BOARD_NAME;
252 bd->bi_vco = get_vco();
253 bd->bi_cclk = get_cclk();
254 bd->bi_sclk = get_sclk();
Mike Frysingerfa45bd42009-11-03 06:28:22 -0500255 bd->bi_memstart = CONFIG_SYS_SDRAM_BASE;
256 bd->bi_memsize = CONFIG_SYS_MAX_RAM_SIZE;
Aubrey.Li3f0606a2007-03-09 13:38:44 +0800257
Mike Frysingerd5bffeb2008-02-19 00:54:20 -0500258 /* Initialize */
259 serial_early_puts("IRQ init\n");
260 irq_init();
261 serial_early_puts("Environment init\n");
262 env_init();
263 serial_early_puts("Baudrate init\n");
264 init_baudrate();
265 serial_early_puts("Serial init\n");
266 serial_init();
267 serial_early_puts("Console init flash\n");
268 console_init_f();
269 serial_early_puts("End of early debugging\n");
270 display_banner();
Aubrey.Li3f0606a2007-03-09 13:38:44 +0800271
Wolfgang Denk6cb142f2006-03-12 02:12:27 +0100272 checkboard();
Wolfgang Denk6cb142f2006-03-12 02:12:27 +0100273 timer_init();
Mike Frysingerd5bffeb2008-02-19 00:54:20 -0500274
Mike Frysinger6dadc912008-10-20 16:15:04 -0400275 printf("Clock: VCO: %s MHz, ", strmhz(buf, get_vco()));
276 printf("Core: %s MHz, ", strmhz(buf, get_cclk()));
277 printf("System: %s MHz\n", strmhz(buf, get_sclk()));
Mike Frysingerd5bffeb2008-02-19 00:54:20 -0500278
279 printf("RAM: ");
Mike Frysingerfa45bd42009-11-03 06:28:22 -0500280 print_size(bd->bi_memsize, "\n");
Mike Frysinger9171fc82008-03-30 15:46:13 -0400281#if defined(CONFIG_POST)
Aubrey.Li3f0606a2007-03-09 13:38:44 +0800282 post_init_f();
283 post_bootmode_init();
284 post_run(NULL, POST_ROM | post_bootmode_get(0));
285#endif
Mike Frysingerd5bffeb2008-02-19 00:54:20 -0500286
Wolfgang Denk6cb142f2006-03-12 02:12:27 +0100287 board_init_r((gd_t *) gd, 0x20000010);
288}
289
Mike Frysinger8996d162009-02-22 16:02:27 -0500290static void board_net_init_r(bd_t *bd)
291{
Luigi 'Comio' Mantellini310cecb2009-10-10 12:42:21 +0200292#ifdef CONFIG_BITBANGMII
293 bb_miiphy_init();
294#endif
Mike Frysinger8996d162009-02-22 16:02:27 -0500295#ifdef CONFIG_CMD_NET
Mike Frysinger8996d162009-02-22 16:02:27 -0500296 char *s;
297
298 if ((s = getenv("bootfile")) != NULL)
299 copy_filename(BootFile, s, sizeof(BootFile));
300
301 bd->bi_ip_addr = getenv_IPaddr("ipaddr");
302
303 printf("Net: ");
304 eth_initialize(gd->bd);
Mike Frysinger8996d162009-02-22 16:02:27 -0500305#endif
306}
307
Wolfgang Denk6cb142f2006-03-12 02:12:27 +0100308void board_init_r(gd_t * id, ulong dest_addr)
309{
Mike Frysingerd5bffeb2008-02-19 00:54:20 -0500310 char *s;
Wolfgang Denk6cb142f2006-03-12 02:12:27 +0100311 bd_t *bd;
Wolfgang Denk6cb142f2006-03-12 02:12:27 +0100312 gd = id;
313 gd->flags |= GD_FLG_RELOC; /* tell others: relocation done */
314 bd = gd->bd;
315
Mike Frysinger9171fc82008-03-30 15:46:13 -0400316#if defined(CONFIG_POST)
Aubrey.Li3f0606a2007-03-09 13:38:44 +0800317 post_output_backlog();
318 post_reloc();
319#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
348 puts("MMC: ");
349 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 Frysinger909878f2009-07-09 01:15:05 -0400390 if (bfin_os_log_check()) {
391 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}