blob: e3ee4cd353e364e0c8acbdda7889fb081c69c438 [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>
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
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 Frysingerbb838752011-06-30 18:26:39 -040053 display_options();
Mike Frysinger5d891152010-08-09 17:39:22 -040054 printf("CPU: ADSP %s "
Mike Frysingerfc68f9f2009-01-06 06:16:19 -050055 "(Detected Rev: 0.%d) "
56 "(%s boot)\n",
Mike Frysinger5d891152010-08-09 17:39:22 -040057 gd->bd->bi_cpu,
Mike Frysingerfc68f9f2009-01-06 06:16:19 -050058 bfin_revid(),
59 get_bfin_boot_mode(CONFIG_BFIN_BOOT_MODE));
Mike Frysingerd5bffeb2008-02-19 00:54:20 -050060 return 0;
Wolfgang Denk6cb142f2006-03-12 02:12:27 +010061}
62
63static int init_baudrate(void)
64{
Simon Glassc1f485a2011-10-13 14:43:08 +000065 gd->baudrate = getenv_ulong("baudrate", 10, CONFIG_BAUDRATE);
Mike Frysingerd5bffeb2008-02-19 00:54:20 -050066 return 0;
Wolfgang Denk6cb142f2006-03-12 02:12:27 +010067}
68
Wolfgang Denk6cb142f2006-03-12 02:12:27 +010069static void display_global_data(void)
70{
Wolfgang Denk6cb142f2006-03-12 02:12:27 +010071 bd_t *bd;
Mike Frysinger03f70532010-01-19 15:39:07 -050072
73#ifndef CONFIG_DEBUG_EARLY_SERIAL
74 return;
75#endif
76
Wolfgang Denk6cb142f2006-03-12 02:12:27 +010077 bd = gd->bd;
Mike Frysingerf541e1d2009-08-24 19:03:18 -040078 printf(" gd: %p\n", gd);
79 printf(" |-flags: %lx\n", gd->flags);
80 printf(" |-board_type: %lx\n", gd->board_type);
81 printf(" |-baudrate: %lu\n", gd->baudrate);
82 printf(" |-have_console: %lx\n", gd->have_console);
83 printf(" |-ram_size: %lx\n", gd->ram_size);
Mike Frysingerf541e1d2009-08-24 19:03:18 -040084 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);
Mike Frysingerd5bffeb2008-02-19 00:54:20 -050096}
Wolfgang Denk6cb142f2006-03-12 02:12:27 +010097
Mike Frysingerd5bffeb2008-02-19 00:54:20 -050098#define CPLB_PAGE_SIZE (4 * 1024 * 1024)
99#define CPLB_PAGE_MASK (~(CPLB_PAGE_SIZE - 1))
Aubrey.Li3f0606a2007-03-09 13:38:44 +0800100void init_cplbtables(void)
101{
Mike Frysingerd5bffeb2008-02-19 00:54:20 -0500102 volatile uint32_t *ICPLB_ADDR, *ICPLB_DATA;
103 volatile uint32_t *DCPLB_ADDR, *DCPLB_DATA;
104 uint32_t extern_memory;
105 size_t i;
Aubrey.Li3f0606a2007-03-09 13:38:44 +0800106
Mike Frysingerd5bffeb2008-02-19 00:54:20 -0500107 void icplb_add(uint32_t addr, uint32_t data)
108 {
109 *(ICPLB_ADDR + i) = addr;
110 *(ICPLB_DATA + i) = data;
Aubrey.Li3f0606a2007-03-09 13:38:44 +0800111 }
Mike Frysingerd5bffeb2008-02-19 00:54:20 -0500112 void dcplb_add(uint32_t addr, uint32_t data)
113 {
114 *(DCPLB_ADDR + i) = addr;
115 *(DCPLB_DATA + i) = data;
Aubrey.Li3f0606a2007-03-09 13:38:44 +0800116 }
117
Mike Frysingerd5bffeb2008-02-19 00:54:20 -0500118 /* populate a few common entries ... we'll let
119 * the memory map and cplb exception handler do
120 * the rest of the work.
121 */
122 i = 0;
123 ICPLB_ADDR = (uint32_t *)ICPLB_ADDR0;
124 ICPLB_DATA = (uint32_t *)ICPLB_DATA0;
125 DCPLB_ADDR = (uint32_t *)DCPLB_ADDR0;
126 DCPLB_DATA = (uint32_t *)DCPLB_DATA0;
127
128 icplb_add(0xFFA00000, L1_IMEMORY);
129 dcplb_add(0xFF800000, L1_DMEMORY);
130 ++i;
131
Mike Frysinger7527fee2009-11-09 19:38:23 -0500132 if (CONFIG_MEM_SIZE) {
133 uint32_t mbase = CONFIG_SYS_MONITOR_BASE;
134 uint32_t mend = mbase + CONFIG_SYS_MONITOR_LEN;
135 mbase &= CPLB_PAGE_MASK;
136 mend &= CPLB_PAGE_MASK;
Mike Frysingerd5bffeb2008-02-19 00:54:20 -0500137
Mike Frysinger7527fee2009-11-09 19:38:23 -0500138 icplb_add(mbase, SDRAM_IKERNEL);
139 dcplb_add(mbase, SDRAM_DKERNEL);
Mike Frysingerd5bffeb2008-02-19 00:54:20 -0500140 ++i;
Mike Frysinger7527fee2009-11-09 19:38:23 -0500141
142 /*
143 * If the monitor crosses a 4 meg boundary, we'll need
144 * to lock two entries for it. We assume it doesn't
145 * cross two 4 meg boundaries ...
146 */
147 if (mbase != mend) {
148 icplb_add(mend, SDRAM_IKERNEL);
149 dcplb_add(mend, SDRAM_DKERNEL);
150 ++i;
151 }
Mike Frysingerd5bffeb2008-02-19 00:54:20 -0500152 }
153
154 icplb_add(0x20000000, SDRAM_INON_CHBL);
155 dcplb_add(0x20000000, SDRAM_EBIU);
156 ++i;
157
158 /* Add entries for the rest of external RAM up to the bootrom */
159 extern_memory = 0;
160
161#ifdef CONFIG_DEBUG_NULL_PTR
162 icplb_add(extern_memory, (SDRAM_IKERNEL & ~PAGE_SIZE_MASK) | PAGE_SIZE_1KB);
163 dcplb_add(extern_memory, (SDRAM_DKERNEL & ~PAGE_SIZE_MASK) | PAGE_SIZE_1KB);
164 ++i;
165 icplb_add(extern_memory, SDRAM_IKERNEL);
166 dcplb_add(extern_memory, SDRAM_DKERNEL);
167 extern_memory += CPLB_PAGE_SIZE;
168 ++i;
169#endif
170
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200171 while (i < 16 && extern_memory < (CONFIG_SYS_MONITOR_BASE & CPLB_PAGE_MASK)) {
Mike Frysingerd5bffeb2008-02-19 00:54:20 -0500172 icplb_add(extern_memory, SDRAM_IGENERIC);
173 dcplb_add(extern_memory, SDRAM_DGENERIC);
174 extern_memory += CPLB_PAGE_SIZE;
175 ++i;
176 }
177 while (i < 16) {
178 icplb_add(0, 0);
179 dcplb_add(0, 0);
180 ++i;
181 }
Aubrey.Li3f0606a2007-03-09 13:38:44 +0800182}
183
Wolfgang Denk6cb142f2006-03-12 02:12:27 +0100184/*
185 * All attempts to come up with a "common" initialization sequence
186 * that works for all boards and architectures failed: some of the
187 * requirements are just _too_ different. To get rid of the resulting
188 * mess of board dependend #ifdef'ed code we now make the whole
189 * initialization sequence configurable to the user.
190 *
191 * The requirements for any new initalization function is simple: it
192 * receives a pointer to the "global data" structure as it's only
193 * argument, and returns an integer return code, where 0 means
194 * "continue" and != 0 means "fatal error, hang the system".
195 */
196
Mike Frysinger0c080aa2010-02-11 20:19:10 -0500197extern int watchdog_init(void);
Mike Frysingerd5bffeb2008-02-19 00:54:20 -0500198extern int exception_init(void);
199extern int irq_init(void);
Mike Frysingerd5bffeb2008-02-19 00:54:20 -0500200extern int timer_init(void);
201
Wolfgang Denk6cb142f2006-03-12 02:12:27 +0100202void board_init_f(ulong bootflag)
203{
Wolfgang Denk6cb142f2006-03-12 02:12:27 +0100204 bd_t *bd;
Mike Frysinger6dadc912008-10-20 16:15:04 -0400205 char buf[32];
Aubrey.Li3f0606a2007-03-09 13:38:44 +0800206
Mike Frysingerd5bffeb2008-02-19 00:54:20 -0500207#ifdef CONFIG_BOARD_EARLY_INIT_F
208 serial_early_puts("Board early init flash\n");
209 board_early_init_f();
210#endif
211
212 serial_early_puts("Init CPLB tables\n");
Aubrey.Li3f0606a2007-03-09 13:38:44 +0800213 init_cplbtables();
Wolfgang Denk6cb142f2006-03-12 02:12:27 +0100214
Mike Frysingerd5bffeb2008-02-19 00:54:20 -0500215 serial_early_puts("Exceptions setup\n");
216 exception_init();
217
218#ifndef CONFIG_ICACHE_OFF
219 serial_early_puts("Turn on ICACHE\n");
220 icache_enable();
221#endif
222#ifndef CONFIG_DCACHE_OFF
223 serial_early_puts("Turn on DCACHE\n");
224 dcache_enable();
225#endif
226
Mike Frysinger0c080aa2010-02-11 20:19:10 -0500227#ifdef CONFIG_WATCHDOG
228 serial_early_puts("Setting up external watchdog\n");
229 watchdog_init();
230#endif
231
Mike Frysinger78a0ba72008-10-06 03:57:39 -0400232#ifdef DEBUG
Wolfgang Denk25ddd1f2010-10-26 14:34:52 +0200233 if (GENERATED_GBL_DATA_SIZE < sizeof(*gd))
Mike Frysinger78a0ba72008-10-06 03:57:39 -0400234 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);
Wolfgang Denk25ddd1f2010-10-26 14:34:52 +0200238 memset((void *)gd, 0, GENERATED_GBL_DATA_SIZE);
Wolfgang Denk6cb142f2006-03-12 02:12:27 +0100239
Mike Frysinger5a9a2c52010-12-24 12:48:16 -0500240 bd = (bd_t *) (CONFIG_SYS_BD_INFO_ADDR);
Wolfgang Denk6cb142f2006-03-12 02:12:27 +0100241 gd->bd = bd;
Mike Frysinger5a9a2c52010-12-24 12:48:16 -0500242 memset((void *)bd, 0, GENERATED_BD_INFO_SIZE);
Wolfgang Denk6cb142f2006-03-12 02:12:27 +0100243
Mike Frysingerd5bffeb2008-02-19 00:54:20 -0500244 bd->bi_r_version = version_string;
Mike Frysingerfbcf8e82010-12-23 14:58:37 -0500245 bd->bi_cpu = MK_STR(CONFIG_BFIN_CPU);
Mike Frysingerd5bffeb2008-02-19 00:54:20 -0500246 bd->bi_board_name = BFIN_BOARD_NAME;
247 bd->bi_vco = get_vco();
248 bd->bi_cclk = get_cclk();
249 bd->bi_sclk = get_sclk();
Mike Frysingerfa45bd42009-11-03 06:28:22 -0500250 bd->bi_memstart = CONFIG_SYS_SDRAM_BASE;
251 bd->bi_memsize = CONFIG_SYS_MAX_RAM_SIZE;
Aubrey.Li3f0606a2007-03-09 13:38:44 +0800252
Mike Frysingerd5bffeb2008-02-19 00:54:20 -0500253 /* Initialize */
254 serial_early_puts("IRQ init\n");
255 irq_init();
256 serial_early_puts("Environment init\n");
257 env_init();
258 serial_early_puts("Baudrate init\n");
259 init_baudrate();
260 serial_early_puts("Serial init\n");
261 serial_init();
Mike Frysinger635f3302011-04-29 23:23:28 -0400262#ifdef CONFIG_SERIAL_MULTI
263 serial_initialize();
264#endif
Mike Frysingerd5bffeb2008-02-19 00:54:20 -0500265 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{
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();
Aubrey.Li3f0606a2007-03-09 13:38:44 +0800318#endif
319
Stefan Roesec790b042009-05-11 15:50:12 +0200320 /* initialize malloc() area */
Peter Tysera483a162009-08-21 23:05:20 -0500321 mem_malloc_init(CONFIG_SYS_MALLOC_BASE, CONFIG_SYS_MALLOC_LEN);
Stefan Roesec790b042009-05-11 15:50:12 +0200322
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200323#if !defined(CONFIG_SYS_NO_FLASH)
Mike Frysingerb6edc712008-10-06 04:00:07 -0400324 /* Initialize the flash and protect u-boot by default */
Mike Frysingerd5bffeb2008-02-19 00:54:20 -0500325 extern flash_info_t flash_info[];
Mike Frysingerd5bffeb2008-02-19 00:54:20 -0500326 puts("Flash: ");
Mike Frysinger45c48952008-10-06 04:01:26 -0400327 ulong size = flash_init();
Mike Frysingerd5bffeb2008-02-19 00:54:20 -0500328 print_size(size, "\n");
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200329 flash_protect(FLAG_PROTECT_SET, CONFIG_SYS_FLASH_BASE,
Mike Frysingerb6edc712008-10-06 04:00:07 -0400330 CONFIG_SYS_FLASH_BASE + CONFIG_SYS_MONITOR_LEN - 1,
331 &flash_info[0]);
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200332 bd->bi_flashstart = CONFIG_SYS_FLASH_BASE;
Wolfgang Denk6cb142f2006-03-12 02:12:27 +0100333 bd->bi_flashsize = size;
334 bd->bi_flashoffset = 0;
335#else
336 bd->bi_flashstart = 0;
337 bd->bi_flashsize = 0;
338 bd->bi_flashoffset = 0;
339#endif
Wolfgang Denk6cb142f2006-03-12 02:12:27 +0100340
Mike Frysinger39782722008-10-06 03:55:25 -0400341#ifdef CONFIG_CMD_NAND
342 puts("NAND: ");
343 nand_init(); /* go init the NAND */
344#endif
345
Cliff Caie54c8202009-11-20 08:24:43 +0000346#ifdef CONFIG_GENERIC_MMC
Mike Frysingerd3c07a52010-09-29 14:46:42 -0400347 puts("MMC: ");
Cliff Caie54c8202009-11-20 08:24:43 +0000348 mmc_initialize(bd);
349#endif
350
Wolfgang Denk6cb142f2006-03-12 02:12:27 +0100351 /* relocate environment function pointers etc. */
352 env_relocate();
353
Jean-Christophe PLAGNIOL-VILLARD52cb4d42009-05-16 12:14:54 +0200354 /* Initialize stdio devices */
355 stdio_init();
Wolfgang Denk6cb142f2006-03-12 02:12:27 +0100356 jumptable_init();
357
358 /* Initialize the console (after the relocation and devices init) */
359 console_init_r();
360
Robin Getzf19fd872009-12-21 16:35:48 -0500361#ifdef CONFIG_CMD_KGDB
362 puts("KGDB: ");
363 kgdb_init();
364#endif
365
Mike Frysinger01815c22008-10-06 03:52:24 -0400366#ifdef CONFIG_STATUS_LED
367 status_led_set(STATUS_LED_BOOT, STATUS_LED_BLINKING);
368 status_led_set(STATUS_LED_CRASH, STATUS_LED_OFF);
369#endif
370
Wolfgang Denk6cb142f2006-03-12 02:12:27 +0100371 /* Initialize from environment */
Simon Glassc1f485a2011-10-13 14:43:08 +0000372 load_addr = getenv_ulong("loadaddr", 16, load_addr);
Aubrey.Li3f0606a2007-03-09 13:38:44 +0800373
Wolfgang Denk6cb142f2006-03-12 02:12:27 +0100374#if defined(CONFIG_MISC_INIT_R)
375 /* miscellaneous platform dependent initialisations */
376 misc_init_r();
377#endif
378
Mike Frysinger8996d162009-02-22 16:02:27 -0500379 board_net_init_r(bd);
Aubrey.Li3f0606a2007-03-09 13:38:44 +0800380
Aubrey.Li3f0606a2007-03-09 13:38:44 +0800381 display_global_data();
Aubrey.Li3f0606a2007-03-09 13:38:44 +0800382
Mike Frysinger9171fc82008-03-30 15:46:13 -0400383#if defined(CONFIG_POST)
Aubrey.Li3f0606a2007-03-09 13:38:44 +0800384 if (post_flag)
385 post_run(NULL, POST_RAM | post_bootmode_get(0));
Wolfgang Denk6cb142f2006-03-12 02:12:27 +0100386#endif
387
Mike Frysinger05e78252010-12-24 13:19:25 -0500388 if (CONFIG_MEM_SIZE && bfin_os_log_check()) {
Mike Frysinger909878f2009-07-09 01:15:05 -0400389 puts("\nLog buffer from operating system:\n");
390 bfin_os_log_dump();
391 puts("\n");
392 }
393
Wolfgang Denk6cb142f2006-03-12 02:12:27 +0100394 /* main_loop() can return to retry autoboot, if so just run it again. */
Mike Frysingerd5bffeb2008-02-19 00:54:20 -0500395 for (;;)
Wolfgang Denk6cb142f2006-03-12 02:12:27 +0100396 main_loop();
Wolfgang Denk6cb142f2006-03-12 02:12:27 +0100397}
398
Wolfgang Denk6cb142f2006-03-12 02:12:27 +0100399void hang(void)
400{
Mike Frysinger01815c22008-10-06 03:52:24 -0400401#ifdef CONFIG_STATUS_LED
402 status_led_set(STATUS_LED_BOOT, STATUS_LED_OFF);
403 status_led_set(STATUS_LED_CRASH, STATUS_LED_BLINKING);
404#endif
Wolfgang Denk6cb142f2006-03-12 02:12:27 +0100405 puts("### ERROR ### Please RESET the board ###\n");
Mike Frysingerd5bffeb2008-02-19 00:54:20 -0500406 while (1)
407 /* If a JTAG emulator is hooked up, we'll automatically trigger
408 * a breakpoint in it. If one isn't, this is just a NOP.
409 */
410 asm("emuexcpt;");
Wolfgang Denk6cb142f2006-03-12 02:12:27 +0100411}