blob: fde4bbe0ff9feb35fc6815e7b6c76ff0c1b3a554 [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>
Wolfgang Denk6cb142f2006-03-12 02:12:27 +010014#include <devices.h>
Wolfgang Denk6cb142f2006-03-12 02:12:27 +010015#include <environment.h>
Aubrey.Li3f0606a2007-03-09 13:38:44 +080016#include <i2c.h>
Mike Frysingerd5bffeb2008-02-19 00:54:20 -050017#include <malloc.h>
18#include <net.h>
Peter Tyser561858e2008-11-03 09:30:59 -060019#include <timestamp.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
47/* Get the input voltage */
48static u_long get_vco(void)
Aubrey.Li3f0606a2007-03-09 13:38:44 +080049{
50 u_long msel;
51 u_long vco;
52
53 msel = (*pPLL_CTL >> 9) & 0x3F;
54 if (0 == msel)
55 msel = 64;
56
57 vco = CONFIG_CLKIN_HZ;
58 vco >>= (1 & *pPLL_CTL); /* DF bit */
59 vco = msel * vco;
60 return vco;
61}
62
Mike Frysingerd5bffeb2008-02-19 00:54:20 -050063/* Get the Core clock */
Aubrey.Li3f0606a2007-03-09 13:38:44 +080064u_long get_cclk(void)
65{
66 u_long csel, ssel;
67 if (*pPLL_STAT & 0x1)
68 return CONFIG_CLKIN_HZ;
69
70 ssel = *pPLL_DIV;
71 csel = ((ssel >> 4) & 0x03);
72 ssel &= 0xf;
73 if (ssel && ssel < (1 << csel)) /* SCLK > CCLK */
74 return get_vco() / ssel;
75 return get_vco() >> csel;
76}
77
78/* Get the System clock */
79u_long get_sclk(void)
80{
81 u_long ssel;
82
83 if (*pPLL_STAT & 0x1)
84 return CONFIG_CLKIN_HZ;
85
86 ssel = (*pPLL_DIV & 0xf);
87
88 return get_vco() / ssel;
89}
Wolfgang Denk6cb142f2006-03-12 02:12:27 +010090
Mike Frysingerd5bffeb2008-02-19 00:54:20 -050091static void *mem_malloc_start, *mem_malloc_end, *mem_malloc_brk;
92
Wolfgang Denk6cb142f2006-03-12 02:12:27 +010093static void mem_malloc_init(void)
94{
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +020095 mem_malloc_start = (void *)CONFIG_SYS_MALLOC_BASE;
96 mem_malloc_end = (void *)(CONFIG_SYS_MALLOC_BASE + CONFIG_SYS_MALLOC_LEN);
Wolfgang Denk6cb142f2006-03-12 02:12:27 +010097 mem_malloc_brk = mem_malloc_start;
Mike Frysingerd5bffeb2008-02-19 00:54:20 -050098 memset(mem_malloc_start, 0, mem_malloc_end - mem_malloc_start);
Wolfgang Denk6cb142f2006-03-12 02:12:27 +010099}
100
101void *sbrk(ptrdiff_t increment)
102{
Mike Frysingerd5bffeb2008-02-19 00:54:20 -0500103 void *old = mem_malloc_brk;
104 void *new = old + increment;
Wolfgang Denk6cb142f2006-03-12 02:12:27 +0100105
Mike Frysingerd5bffeb2008-02-19 00:54:20 -0500106 if (new < mem_malloc_start || new > mem_malloc_end)
107 return NULL;
108
Wolfgang Denk6cb142f2006-03-12 02:12:27 +0100109 mem_malloc_brk = new;
110
Mike Frysingerd5bffeb2008-02-19 00:54:20 -0500111 return old;
Wolfgang Denk6cb142f2006-03-12 02:12:27 +0100112}
113
114static int display_banner(void)
115{
Mike Frysingerd5bffeb2008-02-19 00:54:20 -0500116 printf("\n\n%s\n\n", version_string);
Mike Frysingerf7ce12c2008-02-18 05:26:48 -0500117 printf("CPU: ADSP " MK_STR(CONFIG_BFIN_CPU) " (Detected Rev: 0.%d)\n", bfin_revid());
Mike Frysingerd5bffeb2008-02-19 00:54:20 -0500118 return 0;
Wolfgang Denk6cb142f2006-03-12 02:12:27 +0100119}
120
121static int init_baudrate(void)
122{
Mike Frysingerd5bffeb2008-02-19 00:54:20 -0500123 char baudrate[15];
124 int i = getenv_r("baudrate", baudrate, sizeof(baudrate));
Wolfgang Denk6cb142f2006-03-12 02:12:27 +0100125 gd->bd->bi_baudrate = gd->baudrate = (i > 0)
Mike Frysingerd5bffeb2008-02-19 00:54:20 -0500126 ? simple_strtoul(baudrate, NULL, 10)
Aubrey.Li3f0606a2007-03-09 13:38:44 +0800127 : CONFIG_BAUDRATE;
Mike Frysingerd5bffeb2008-02-19 00:54:20 -0500128 return 0;
Wolfgang Denk6cb142f2006-03-12 02:12:27 +0100129}
130
Wolfgang Denk6cb142f2006-03-12 02:12:27 +0100131static void display_global_data(void)
132{
Mike Frysingerd5bffeb2008-02-19 00:54:20 -0500133#ifdef CONFIG_DEBUG_EARLY_SERIAL
Wolfgang Denk6cb142f2006-03-12 02:12:27 +0100134 bd_t *bd;
135 bd = gd->bd;
Mike Frysingerd5bffeb2008-02-19 00:54:20 -0500136 printf(" gd: %x\n", gd);
137 printf(" |-flags: %x\n", gd->flags);
138 printf(" |-board_type: %x\n", gd->board_type);
139 printf(" |-baudrate: %i\n", gd->baudrate);
140 printf(" |-have_console: %x\n", gd->have_console);
141 printf(" |-ram_size: %x\n", gd->ram_size);
142 printf(" |-reloc_off: %x\n", gd->reloc_off);
143 printf(" |-env_addr: %x\n", gd->env_addr);
144 printf(" |-env_valid: %x\n", gd->env_valid);
145 printf(" |-jt(%x): %x\n", gd->jt, *(gd->jt));
146 printf(" \\-bd: %x\n", gd->bd);
147 printf(" |-bi_baudrate: %x\n", bd->bi_baudrate);
148 printf(" |-bi_ip_addr: %x\n", bd->bi_ip_addr);
149 printf(" |-bi_enetaddr: %x %x %x %x %x %x\n",
150 bd->bi_enetaddr[0], bd->bi_enetaddr[1],
151 bd->bi_enetaddr[2], bd->bi_enetaddr[3],
152 bd->bi_enetaddr[4], bd->bi_enetaddr[5]);
153 printf(" |-bi_boot_params: %x\n", bd->bi_boot_params);
154 printf(" |-bi_memstart: %x\n", bd->bi_memstart);
155 printf(" |-bi_memsize: %x\n", bd->bi_memsize);
156 printf(" |-bi_flashstart: %x\n", bd->bi_flashstart);
157 printf(" |-bi_flashsize: %x\n", bd->bi_flashsize);
158 printf(" \\-bi_flashoffset: %x\n", bd->bi_flashoffset);
Wolfgang Denk6cb142f2006-03-12 02:12:27 +0100159#endif
Mike Frysingerd5bffeb2008-02-19 00:54:20 -0500160}
Wolfgang Denk6cb142f2006-03-12 02:12:27 +0100161
Mike Frysingerd5bffeb2008-02-19 00:54:20 -0500162#define CPLB_PAGE_SIZE (4 * 1024 * 1024)
163#define CPLB_PAGE_MASK (~(CPLB_PAGE_SIZE - 1))
Aubrey.Li3f0606a2007-03-09 13:38:44 +0800164void init_cplbtables(void)
165{
Mike Frysingerd5bffeb2008-02-19 00:54:20 -0500166 volatile uint32_t *ICPLB_ADDR, *ICPLB_DATA;
167 volatile uint32_t *DCPLB_ADDR, *DCPLB_DATA;
168 uint32_t extern_memory;
169 size_t i;
Aubrey.Li3f0606a2007-03-09 13:38:44 +0800170
Mike Frysingerd5bffeb2008-02-19 00:54:20 -0500171 void icplb_add(uint32_t addr, uint32_t data)
172 {
173 *(ICPLB_ADDR + i) = addr;
174 *(ICPLB_DATA + i) = data;
Aubrey.Li3f0606a2007-03-09 13:38:44 +0800175 }
Mike Frysingerd5bffeb2008-02-19 00:54:20 -0500176 void dcplb_add(uint32_t addr, uint32_t data)
177 {
178 *(DCPLB_ADDR + i) = addr;
179 *(DCPLB_DATA + i) = data;
Aubrey.Li3f0606a2007-03-09 13:38:44 +0800180 }
181
Mike Frysingerd5bffeb2008-02-19 00:54:20 -0500182 /* populate a few common entries ... we'll let
183 * the memory map and cplb exception handler do
184 * the rest of the work.
185 */
186 i = 0;
187 ICPLB_ADDR = (uint32_t *)ICPLB_ADDR0;
188 ICPLB_DATA = (uint32_t *)ICPLB_DATA0;
189 DCPLB_ADDR = (uint32_t *)DCPLB_ADDR0;
190 DCPLB_DATA = (uint32_t *)DCPLB_DATA0;
191
192 icplb_add(0xFFA00000, L1_IMEMORY);
193 dcplb_add(0xFF800000, L1_DMEMORY);
194 ++i;
195
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200196 icplb_add(CONFIG_SYS_MONITOR_BASE & CPLB_PAGE_MASK, SDRAM_IKERNEL);
197 dcplb_add(CONFIG_SYS_MONITOR_BASE & CPLB_PAGE_MASK, SDRAM_DKERNEL);
Mike Frysingerd5bffeb2008-02-19 00:54:20 -0500198 ++i;
199
200 /* If the monitor crosses a 4 meg boundary, we'll need
201 * to lock two entries for it.
202 */
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200203 if ((CONFIG_SYS_MONITOR_BASE & CPLB_PAGE_MASK) != ((CONFIG_SYS_MONITOR_BASE + CONFIG_SYS_MONITOR_LEN) & CPLB_PAGE_MASK)) {
204 icplb_add((CONFIG_SYS_MONITOR_BASE + CONFIG_SYS_MONITOR_LEN) & CPLB_PAGE_MASK, SDRAM_IKERNEL);
205 dcplb_add((CONFIG_SYS_MONITOR_BASE + CONFIG_SYS_MONITOR_LEN) & CPLB_PAGE_MASK, SDRAM_DKERNEL);
Mike Frysingerd5bffeb2008-02-19 00:54:20 -0500206 ++i;
207 }
208
209 icplb_add(0x20000000, SDRAM_INON_CHBL);
210 dcplb_add(0x20000000, SDRAM_EBIU);
211 ++i;
212
213 /* Add entries for the rest of external RAM up to the bootrom */
214 extern_memory = 0;
215
216#ifdef CONFIG_DEBUG_NULL_PTR
217 icplb_add(extern_memory, (SDRAM_IKERNEL & ~PAGE_SIZE_MASK) | PAGE_SIZE_1KB);
218 dcplb_add(extern_memory, (SDRAM_DKERNEL & ~PAGE_SIZE_MASK) | PAGE_SIZE_1KB);
219 ++i;
220 icplb_add(extern_memory, SDRAM_IKERNEL);
221 dcplb_add(extern_memory, SDRAM_DKERNEL);
222 extern_memory += CPLB_PAGE_SIZE;
223 ++i;
224#endif
225
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200226 while (i < 16 && extern_memory < (CONFIG_SYS_MONITOR_BASE & CPLB_PAGE_MASK)) {
Mike Frysingerd5bffeb2008-02-19 00:54:20 -0500227 icplb_add(extern_memory, SDRAM_IGENERIC);
228 dcplb_add(extern_memory, SDRAM_DGENERIC);
229 extern_memory += CPLB_PAGE_SIZE;
230 ++i;
231 }
232 while (i < 16) {
233 icplb_add(0, 0);
234 dcplb_add(0, 0);
235 ++i;
236 }
Aubrey.Li3f0606a2007-03-09 13:38:44 +0800237}
238
Wolfgang Denk6cb142f2006-03-12 02:12:27 +0100239/*
240 * All attempts to come up with a "common" initialization sequence
241 * that works for all boards and architectures failed: some of the
242 * requirements are just _too_ different. To get rid of the resulting
243 * mess of board dependend #ifdef'ed code we now make the whole
244 * initialization sequence configurable to the user.
245 *
246 * The requirements for any new initalization function is simple: it
247 * receives a pointer to the "global data" structure as it's only
248 * argument, and returns an integer return code, where 0 means
249 * "continue" and != 0 means "fatal error, hang the system".
250 */
251
Mike Frysingerd5bffeb2008-02-19 00:54:20 -0500252extern int exception_init(void);
253extern int irq_init(void);
Mike Frysingerd5bffeb2008-02-19 00:54:20 -0500254extern int timer_init(void);
255
Wolfgang Denk6cb142f2006-03-12 02:12:27 +0100256void board_init_f(ulong bootflag)
257{
Wolfgang Denk6cb142f2006-03-12 02:12:27 +0100258 ulong addr;
259 bd_t *bd;
Aubrey.Li3f0606a2007-03-09 13:38:44 +0800260
Mike Frysingerd5bffeb2008-02-19 00:54:20 -0500261#ifdef CONFIG_BOARD_EARLY_INIT_F
262 serial_early_puts("Board early init flash\n");
263 board_early_init_f();
264#endif
265
266 serial_early_puts("Init CPLB tables\n");
Aubrey.Li3f0606a2007-03-09 13:38:44 +0800267 init_cplbtables();
Wolfgang Denk6cb142f2006-03-12 02:12:27 +0100268
Mike Frysingerd5bffeb2008-02-19 00:54:20 -0500269 serial_early_puts("Exceptions setup\n");
270 exception_init();
271
272#ifndef CONFIG_ICACHE_OFF
273 serial_early_puts("Turn on ICACHE\n");
274 icache_enable();
275#endif
276#ifndef CONFIG_DCACHE_OFF
277 serial_early_puts("Turn on DCACHE\n");
278 dcache_enable();
279#endif
280
281 serial_early_puts("Init global data\n");
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200282 gd = (gd_t *) (CONFIG_SYS_GBL_DATA_ADDR);
Aubrey.Li3f0606a2007-03-09 13:38:44 +0800283 memset((void *)gd, 0, sizeof(gd_t));
Wolfgang Denk6cb142f2006-03-12 02:12:27 +0100284
285 /* Board data initialization */
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200286 addr = (CONFIG_SYS_GBL_DATA_ADDR + sizeof(gd_t));
Wolfgang Denk6cb142f2006-03-12 02:12:27 +0100287
288 /* Align to 4 byte boundary */
Wolfgang Denk8e7b7032006-03-12 02:55:22 +0100289 addr &= ~(4 - 1);
Aubrey.Li3f0606a2007-03-09 13:38:44 +0800290 bd = (bd_t *) addr;
Wolfgang Denk6cb142f2006-03-12 02:12:27 +0100291 gd->bd = bd;
Aubrey.Li3f0606a2007-03-09 13:38:44 +0800292 memset((void *)bd, 0, sizeof(bd_t));
Wolfgang Denk6cb142f2006-03-12 02:12:27 +0100293
Mike Frysingerd5bffeb2008-02-19 00:54:20 -0500294 bd->bi_r_version = version_string;
295 bd->bi_cpu = MK_STR(CONFIG_BFIN_CPU);
296 bd->bi_board_name = BFIN_BOARD_NAME;
297 bd->bi_vco = get_vco();
298 bd->bi_cclk = get_cclk();
299 bd->bi_sclk = get_sclk();
Aubrey.Li3f0606a2007-03-09 13:38:44 +0800300
Mike Frysingerd5bffeb2008-02-19 00:54:20 -0500301 /* Initialize */
302 serial_early_puts("IRQ init\n");
303 irq_init();
304 serial_early_puts("Environment init\n");
305 env_init();
306 serial_early_puts("Baudrate init\n");
307 init_baudrate();
308 serial_early_puts("Serial init\n");
309 serial_init();
310 serial_early_puts("Console init flash\n");
311 console_init_f();
312 serial_early_puts("End of early debugging\n");
313 display_banner();
Aubrey.Li3f0606a2007-03-09 13:38:44 +0800314
Wolfgang Denk6cb142f2006-03-12 02:12:27 +0100315 checkboard();
Wolfgang Denk6cb142f2006-03-12 02:12:27 +0100316 timer_init();
Mike Frysingerd5bffeb2008-02-19 00:54:20 -0500317
Aubrey.Li3f0606a2007-03-09 13:38:44 +0800318 printf("Clock: VCO: %lu MHz, Core: %lu MHz, System: %lu MHz\n",
319 get_vco() / 1000000, get_cclk() / 1000000, get_sclk() / 1000000);
Mike Frysingerd5bffeb2008-02-19 00:54:20 -0500320
321 printf("RAM: ");
Wolfgang Denk6cb142f2006-03-12 02:12:27 +0100322 print_size(initdram(0), "\n");
Mike Frysinger9171fc82008-03-30 15:46:13 -0400323#if defined(CONFIG_POST)
Aubrey.Li3f0606a2007-03-09 13:38:44 +0800324 post_init_f();
325 post_bootmode_init();
326 post_run(NULL, POST_ROM | post_bootmode_get(0));
327#endif
Mike Frysingerd5bffeb2008-02-19 00:54:20 -0500328
Wolfgang Denk6cb142f2006-03-12 02:12:27 +0100329 board_init_r((gd_t *) gd, 0x20000010);
330}
331
Aubrey.Li3f0606a2007-03-09 13:38:44 +0800332#if defined(CONFIG_SOFT_I2C) || defined(CONFIG_HARD_I2C)
333static int init_func_i2c(void)
334{
335 puts("I2C: ");
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200336 i2c_init(CONFIG_SYS_I2C_SPEED, CONFIG_SYS_I2C_SLAVE);
Aubrey.Li3f0606a2007-03-09 13:38:44 +0800337 puts("ready\n");
338 return (0);
339}
340#endif
341
Wolfgang Denk6cb142f2006-03-12 02:12:27 +0100342void board_init_r(gd_t * id, ulong dest_addr)
343{
Wolfgang Denk6cb142f2006-03-12 02:12:27 +0100344 extern void malloc_bin_reloc(void);
Mike Frysingerd5bffeb2008-02-19 00:54:20 -0500345 char *s;
Wolfgang Denk6cb142f2006-03-12 02:12:27 +0100346 bd_t *bd;
Wolfgang Denk6cb142f2006-03-12 02:12:27 +0100347 gd = id;
348 gd->flags |= GD_FLG_RELOC; /* tell others: relocation done */
349 bd = gd->bd;
350
Mike Frysinger9171fc82008-03-30 15:46:13 -0400351#if defined(CONFIG_POST)
Aubrey.Li3f0606a2007-03-09 13:38:44 +0800352 post_output_backlog();
353 post_reloc();
354#endif
355
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200356#if !defined(CONFIG_SYS_NO_FLASH)
Wolfgang Denk6cb142f2006-03-12 02:12:27 +0100357 /* There are some other pointer constants we must deal with */
358 /* configure available FLASH banks */
Mike Frysingerd5bffeb2008-02-19 00:54:20 -0500359 extern flash_info_t flash_info[];
360 ulong size = flash_init();
361 puts("Flash: ");
362 print_size(size, "\n");
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200363 flash_protect(FLAG_PROTECT_SET, CONFIG_SYS_FLASH_BASE,
364 CONFIG_SYS_FLASH_BASE + 0x1ffff, &flash_info[0]);
365 bd->bi_flashstart = CONFIG_SYS_FLASH_BASE;
Wolfgang Denk6cb142f2006-03-12 02:12:27 +0100366 bd->bi_flashsize = size;
367 bd->bi_flashoffset = 0;
368#else
369 bd->bi_flashstart = 0;
370 bd->bi_flashsize = 0;
371 bd->bi_flashoffset = 0;
372#endif
373 /* initialize malloc() area */
374 mem_malloc_init();
375 malloc_bin_reloc();
376
Aubrey.Li3f0606a2007-03-09 13:38:44 +0800377#ifdef CONFIG_SPI
Jean-Christophe PLAGNIOL-VILLARDbb1f8b42008-09-05 09:19:30 +0200378# if ! defined(CONFIG_ENV_IS_IN_EEPROM)
Aubrey.Li3f0606a2007-03-09 13:38:44 +0800379 spi_init_f();
380# endif
381 spi_init_r();
382#endif
383
Mike Frysinger39782722008-10-06 03:55:25 -0400384#ifdef CONFIG_CMD_NAND
385 puts("NAND: ");
386 nand_init(); /* go init the NAND */
387#endif
388
Wolfgang Denk6cb142f2006-03-12 02:12:27 +0100389 /* relocate environment function pointers etc. */
390 env_relocate();
391
Mike Frysingerd5bffeb2008-02-19 00:54:20 -0500392#ifdef CONFIG_CMD_NET
Wolfgang Denk6cb142f2006-03-12 02:12:27 +0100393 /* board MAC address */
394 s = getenv("ethaddr");
Mike Frysingerd5bffeb2008-02-19 00:54:20 -0500395 if (s == NULL) {
396# ifndef CONFIG_ETHADDR
397# if 0
398 if (!board_get_enetaddr(bd->bi_enetaddr)) {
399 char nid[20];
400 sprintf(nid, "%02X:%02X:%02X:%02X:%02X:%02X",
401 bd->bi_enetaddr[0], bd->bi_enetaddr[1],
402 bd->bi_enetaddr[2], bd->bi_enetaddr[3],
403 bd->bi_enetaddr[4], bd->bi_enetaddr[5]);
404 setenv("ethaddr", nid);
405 }
406# endif
407# endif
408 } else {
409 int i;
410 char *e;
411 for (i = 0; i < 6; ++i) {
412 bd->bi_enetaddr[i] = simple_strtoul(s, &e, 16);
Wolfgang Denk6cb142f2006-03-12 02:12:27 +0100413 s = (*e) ? e + 1 : e;
Mike Frysingerd5bffeb2008-02-19 00:54:20 -0500414 }
Wolfgang Denk6cb142f2006-03-12 02:12:27 +0100415 }
416
417 /* IP Address */
418 bd->bi_ip_addr = getenv_IPaddr("ipaddr");
Mike Frysingerd5bffeb2008-02-19 00:54:20 -0500419#endif
Wolfgang Denk6cb142f2006-03-12 02:12:27 +0100420
421 /* Initialize devices */
422 devices_init();
423 jumptable_init();
424
425 /* Initialize the console (after the relocation and devices init) */
426 console_init_r();
427
428 /* Initialize from environment */
Mike Frysingerd5bffeb2008-02-19 00:54:20 -0500429 if ((s = getenv("loadaddr")) != NULL)
Wolfgang Denk6cb142f2006-03-12 02:12:27 +0100430 load_addr = simple_strtoul(s, NULL, 16);
Mike Frysingerd5bffeb2008-02-19 00:54:20 -0500431#ifdef CONFIG_CMD_NET
432 if ((s = getenv("bootfile")) != NULL)
Wolfgang Denk6cb142f2006-03-12 02:12:27 +0100433 copy_filename(BootFile, s, sizeof(BootFile));
Wolfgang Denk6cb142f2006-03-12 02:12:27 +0100434#endif
Aubrey.Li3f0606a2007-03-09 13:38:44 +0800435
Wolfgang Denk6cb142f2006-03-12 02:12:27 +0100436#if defined(CONFIG_MISC_INIT_R)
437 /* miscellaneous platform dependent initialisations */
438 misc_init_r();
439#endif
440
Mike Frysingerf7ce12c2008-02-18 05:26:48 -0500441#ifdef CONFIG_CMD_NET
Mike Frysingerd5bffeb2008-02-19 00:54:20 -0500442 printf("Net: ");
443 eth_initialize(gd->bd);
444 if (getenv("ethaddr"))
445 printf("MAC: %02X:%02X:%02X:%02X:%02X:%02X\n",
446 bd->bi_enetaddr[0], bd->bi_enetaddr[1], bd->bi_enetaddr[2],
447 bd->bi_enetaddr[3], bd->bi_enetaddr[4], bd->bi_enetaddr[5]);
Aubrey.Li3f0606a2007-03-09 13:38:44 +0800448#endif
449
Aubrey.Li3f0606a2007-03-09 13:38:44 +0800450#if defined(CONFIG_SOFT_I2C) || defined(CONFIG_HARD_I2C)
Wolfgang Denk6cb142f2006-03-12 02:12:27 +0100451 init_func_i2c();
452#endif
453
Aubrey.Li3f0606a2007-03-09 13:38:44 +0800454 display_global_data();
Aubrey.Li3f0606a2007-03-09 13:38:44 +0800455
Mike Frysinger9171fc82008-03-30 15:46:13 -0400456#if defined(CONFIG_POST)
Aubrey.Li3f0606a2007-03-09 13:38:44 +0800457 if (post_flag)
458 post_run(NULL, POST_RAM | post_bootmode_get(0));
Wolfgang Denk6cb142f2006-03-12 02:12:27 +0100459#endif
460
461 /* main_loop() can return to retry autoboot, if so just run it again. */
Mike Frysingerd5bffeb2008-02-19 00:54:20 -0500462 for (;;)
Wolfgang Denk6cb142f2006-03-12 02:12:27 +0100463 main_loop();
Wolfgang Denk6cb142f2006-03-12 02:12:27 +0100464}
465
Wolfgang Denk6cb142f2006-03-12 02:12:27 +0100466void hang(void)
467{
468 puts("### ERROR ### Please RESET the board ###\n");
Mike Frysingerd5bffeb2008-02-19 00:54:20 -0500469 while (1)
470 /* If a JTAG emulator is hooked up, we'll automatically trigger
471 * a breakpoint in it. If one isn't, this is just a NOP.
472 */
473 asm("emuexcpt;");
Wolfgang Denk6cb142f2006-03-12 02:12:27 +0100474}