blob: 9c997f1908f4a9177e41c5a76ed6d59136b92baa [file] [log] [blame]
wdenkc0218802003-03-27 12:09:35 +00001/*
2 * (C) Copyright 2003
3 * Wolfgang Denk, DENX Software Engineering, wd@denx.de.
4 *
5 * See file CREDITS for list of people who contributed to this
6 * project.
7 *
8 * This program is free software; you can redistribute it and/or
9 * modify it under the terms of the GNU General Public License as
10 * published by the Free Software Foundation; either version 2 of
11 * the License, or (at your option) any later version.
12 *
13 * This program is distributed in the hope that it will be useful,
14 * but WITHOUT ANY WARRANTY; without even the implied warranty of
15 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 * GNU General Public License for more details.
17 *
18 * You should have received a copy of the GNU General Public License
19 * along with this program; if not, write to the Free Software
20 * Foundation, Inc., 59 Temple Place, Suite 330, Boston,
21 * MA 02111-1307 USA
22 */
23
24#include <common.h>
25#include <command.h>
26#include <malloc.h>
27#include <devices.h>
Peter Tyser561858e2008-11-03 09:30:59 -060028#include <timestamp.h>
wdenkc0218802003-03-27 12:09:35 +000029#include <version.h>
30#include <net.h>
31#include <environment.h>
Jason McMullane996bc32008-05-30 00:53:37 +090032#include <nand.h>
Jason McMullan89a15502008-05-30 00:53:37 +090033#include <spi.h>
wdenkc0218802003-03-27 12:09:35 +000034
Wolfgang Denkc75eba32005-12-01 02:15:07 +010035DECLARE_GLOBAL_DATA_PTR;
36
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +020037#if ( ((CONFIG_ENV_ADDR+CONFIG_ENV_SIZE) < CONFIG_SYS_MONITOR_BASE) || \
38 (CONFIG_ENV_ADDR >= (CONFIG_SYS_MONITOR_BASE + CONFIG_SYS_MONITOR_LEN)) ) || \
Jean-Christophe PLAGNIOL-VILLARD9314cee2008-09-10 22:47:59 +020039 defined(CONFIG_ENV_IS_IN_NVRAM)
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +020040#define TOTAL_MALLOC_LEN (CONFIG_SYS_MALLOC_LEN + CONFIG_ENV_SIZE)
wdenkc0218802003-03-27 12:09:35 +000041#else
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +020042#define TOTAL_MALLOC_LEN CONFIG_SYS_MALLOC_LEN
wdenkc0218802003-03-27 12:09:35 +000043#endif
44
45#undef DEBUG
46
47extern int timer_init(void);
48
wdenk7cb22f92003-12-27 19:24:54 +000049extern int incaip_set_cpuclk(void);
50
wdenk3b57fe02003-05-30 12:48:29 +000051extern ulong uboot_end_data;
52extern ulong uboot_end;
53
54ulong monitor_flash_len;
55
wdenkc0218802003-03-27 12:09:35 +000056const char version_string[] =
Peter Tyser561858e2008-11-03 09:30:59 -060057 U_BOOT_VERSION" (" U_BOOT_DATE " - " U_BOOT_TIME ")";
wdenkc0218802003-03-27 12:09:35 +000058
59static char *failed = "*** failed ***\n";
60
61/*
62 * Begin and End of memory area for malloc(), and current "brk"
63 */
64static ulong mem_malloc_start;
65static ulong mem_malloc_end;
66static ulong mem_malloc_brk;
67
Jean-Christophe PLAGNIOL-VILLARD5c150102007-11-13 09:11:05 +010068/*
69 * mips_io_port_base is the begin of the address space to which x86 style
70 * I/O ports are mapped.
71 */
72unsigned long mips_io_port_base = -1;
wdenkc0218802003-03-27 12:09:35 +000073
74/*
75 * The Malloc area is immediately below the monitor copy in DRAM
76 */
77static void mem_malloc_init (void)
78{
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +020079 ulong dest_addr = CONFIG_SYS_MONITOR_BASE + gd->reloc_off;
wdenkc0218802003-03-27 12:09:35 +000080
81 mem_malloc_end = dest_addr;
82 mem_malloc_start = dest_addr - TOTAL_MALLOC_LEN;
83 mem_malloc_brk = mem_malloc_start;
84
85 memset ((void *) mem_malloc_start,
86 0,
87 mem_malloc_end - mem_malloc_start);
88}
89
90void *sbrk (ptrdiff_t increment)
91{
92 ulong old = mem_malloc_brk;
93 ulong new = old + increment;
94
95 if ((new < mem_malloc_start) || (new > mem_malloc_end)) {
96 return (NULL);
97 }
98 mem_malloc_brk = new;
99 return ((void *) old);
100}
101
102
103static int init_func_ram (void)
104{
wdenkc0218802003-03-27 12:09:35 +0000105#ifdef CONFIG_BOARD_TYPES
106 int board_type = gd->board_type;
107#else
108 int board_type = 0; /* use dummy arg */
109#endif
110 puts ("DRAM: ");
111
112 if ((gd->ram_size = initdram (board_type)) > 0) {
113 print_size (gd->ram_size, "\n");
114 return (0);
115 }
116 puts (failed);
117 return (1);
118}
119
120static int display_banner(void)
121{
122
123 printf ("\n\n%s\n\n", version_string);
124 return (0);
125}
126
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200127#ifndef CONFIG_SYS_NO_FLASH
wdenkc0218802003-03-27 12:09:35 +0000128static void display_flash_config(ulong size)
129{
130 puts ("Flash: ");
131 print_size (size, "\n");
132}
Jean-Christophe PLAGNIOL-VILLARDbeeccf72008-02-17 16:58:04 +0100133#endif
wdenkc0218802003-03-27 12:09:35 +0000134
135static int init_baudrate (void)
136{
Wolfgang Denkf013dac2005-12-04 00:40:34 +0100137 char tmp[64]; /* long enough for environment variables */
wdenkc0218802003-03-27 12:09:35 +0000138 int i = getenv_r ("baudrate", tmp, sizeof (tmp));
139
140 gd->baudrate = (i > 0)
141 ? (int) simple_strtoul (tmp, NULL, 10)
142 : CONFIG_BAUDRATE;
143
144 return (0);
145}
146
147
148/*
149 * Breath some life into the board...
150 *
151 * The first part of initialization is running from Flash memory;
152 * its main purpose is to initialize the RAM so that we
153 * can relocate the monitor code to RAM.
154 */
155
156/*
157 * All attempts to come up with a "common" initialization sequence
158 * that works for all boards and architectures failed: some of the
159 * requirements are just _too_ different. To get rid of the resulting
160 * mess of board dependend #ifdef'ed code we now make the whole
161 * initialization sequence configurable to the user.
162 *
163 * The requirements for any new initalization function is simple: it
164 * receives a pointer to the "global data" structure as it's only
165 * argument, and returns an integer return code, where 0 means
166 * "continue" and != 0 means "fatal error, hang the system".
167 */
168typedef int (init_fnc_t) (void);
169
170init_fnc_t *init_sequence[] = {
171 timer_init,
172 env_init, /* initialize environment */
wdenk7cb22f92003-12-27 19:24:54 +0000173#ifdef CONFIG_INCA_IP
174 incaip_set_cpuclk, /* set cpu clock according to environment variable */
175#endif
wdenkc0218802003-03-27 12:09:35 +0000176 init_baudrate, /* initialze baudrate settings */
177 serial_init, /* serial communications setup */
178 console_init_f,
179 display_banner, /* say that we are here */
wdenk85ec0bc2003-03-31 16:34:49 +0000180 checkboard,
wdenkc0218802003-03-27 12:09:35 +0000181 init_func_ram,
182 NULL,
183};
184
185
186void board_init_f(ulong bootflag)
187{
wdenkc0218802003-03-27 12:09:35 +0000188 gd_t gd_data, *id;
189 bd_t *bd;
190 init_fnc_t **init_fnc_ptr;
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200191 ulong addr, addr_sp, len = (ulong)&uboot_end - CONFIG_SYS_MONITOR_BASE;
Wolfgang Denkc75eba32005-12-01 02:15:07 +0100192 ulong *s;
wdenk3e386912003-04-05 00:53:31 +0000193#ifdef CONFIG_PURPLE
194 void copy_code (ulong);
195#endif
wdenkc0218802003-03-27 12:09:35 +0000196
wdenk69459792004-05-29 16:53:29 +0000197 /* Pointer is writable since we allocated a register for it.
198 */
wdenkc0218802003-03-27 12:09:35 +0000199 gd = &gd_data;
wdenk93f6a672004-07-01 20:28:03 +0000200 /* compiler optimization barrier needed for GCC >= 3.4 */
201 __asm__ __volatile__("": : :"memory");
202
wdenk27b207f2003-07-24 23:38:38 +0000203 memset ((void *)gd, 0, sizeof (gd_t));
wdenkc0218802003-03-27 12:09:35 +0000204
205 for (init_fnc_ptr = init_sequence; *init_fnc_ptr; ++init_fnc_ptr) {
206 if ((*init_fnc_ptr)() != 0) {
207 hang ();
208 }
209 }
210
211 /*
212 * Now that we have DRAM mapped and working, we can
213 * relocate the code and continue running from DRAM.
214 */
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200215 addr = CONFIG_SYS_SDRAM_BASE + gd->ram_size;
wdenkc0218802003-03-27 12:09:35 +0000216
wdenk69459792004-05-29 16:53:29 +0000217 /* We can reserve some RAM "on top" here.
218 */
wdenkc0218802003-03-27 12:09:35 +0000219
wdenk69459792004-05-29 16:53:29 +0000220 /* round down to next 4 kB limit.
221 */
wdenkc0218802003-03-27 12:09:35 +0000222 addr &= ~(4096 - 1);
wdenk69459792004-05-29 16:53:29 +0000223 debug ("Top of RAM usable for U-Boot at: %08lx\n", addr);
wdenk8bde7f72003-06-27 21:31:46 +0000224
wdenk69459792004-05-29 16:53:29 +0000225 /* Reserve memory for U-Boot code, data & bss
226 * round down to next 16 kB limit
227 */
wdenkc0218802003-03-27 12:09:35 +0000228 addr -= len;
wdenk3b57fe02003-05-30 12:48:29 +0000229 addr &= ~(16 * 1024 - 1);
wdenkc0218802003-03-27 12:09:35 +0000230
wdenk69459792004-05-29 16:53:29 +0000231 debug ("Reserving %ldk for U-Boot at: %08lx\n", len >> 10, addr);
wdenkc0218802003-03-27 12:09:35 +0000232
wdenk69459792004-05-29 16:53:29 +0000233 /* Reserve memory for malloc() arena.
234 */
wdenkc0218802003-03-27 12:09:35 +0000235 addr_sp = addr - TOTAL_MALLOC_LEN;
wdenk69459792004-05-29 16:53:29 +0000236 debug ("Reserving %dk for malloc() at: %08lx\n",
wdenkc0218802003-03-27 12:09:35 +0000237 TOTAL_MALLOC_LEN >> 10, addr_sp);
wdenkc0218802003-03-27 12:09:35 +0000238
239 /*
240 * (permanently) allocate a Board Info struct
241 * and a permanent copy of the "global" data
242 */
243 addr_sp -= sizeof(bd_t);
244 bd = (bd_t *)addr_sp;
245 gd->bd = bd;
Wolfgang Denkb64f1902008-07-14 15:06:35 +0200246 debug ("Reserving %zu Bytes for Board Info at: %08lx\n",
wdenkc0218802003-03-27 12:09:35 +0000247 sizeof(bd_t), addr_sp);
wdenk69459792004-05-29 16:53:29 +0000248
wdenkc0218802003-03-27 12:09:35 +0000249 addr_sp -= sizeof(gd_t);
250 id = (gd_t *)addr_sp;
Wolfgang Denkb64f1902008-07-14 15:06:35 +0200251 debug ("Reserving %zu Bytes for Global Data at: %08lx\n",
wdenkc0218802003-03-27 12:09:35 +0000252 sizeof (gd_t), addr_sp);
wdenkc0218802003-03-27 12:09:35 +0000253
Jean-Christophe PLAGNIOL-VILLARDbeeccf72008-02-17 16:58:04 +0100254 /* Reserve memory for boot params.
wdenk69459792004-05-29 16:53:29 +0000255 */
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200256 addr_sp -= CONFIG_SYS_BOOTPARAMS_LEN;
wdenkc0218802003-03-27 12:09:35 +0000257 bd->bi_boot_params = addr_sp;
wdenk69459792004-05-29 16:53:29 +0000258 debug ("Reserving %dk for boot params() at: %08lx\n",
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200259 CONFIG_SYS_BOOTPARAMS_LEN >> 10, addr_sp);
wdenkc0218802003-03-27 12:09:35 +0000260
261 /*
262 * Finally, we set up a new (bigger) stack.
263 *
264 * Leave some safety gap for SP, force alignment on 16 byte boundary
265 * Clear initial stack frame
266 */
267 addr_sp -= 16;
268 addr_sp &= ~0xF;
Wolfgang Denkc75eba32005-12-01 02:15:07 +0100269 s = (ulong *)addr_sp;
270 *s-- = 0;
271 *s-- = 0;
272 addr_sp = (ulong)s;
wdenk69459792004-05-29 16:53:29 +0000273 debug ("Stack Pointer at: %08lx\n", addr_sp);
274
wdenkc0218802003-03-27 12:09:35 +0000275 /*
276 * Save local variables to board info struct
277 */
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200278 bd->bi_memstart = CONFIG_SYS_SDRAM_BASE; /* start of DRAM memory */
wdenkc0218802003-03-27 12:09:35 +0000279 bd->bi_memsize = gd->ram_size; /* size of DRAM memory in bytes */
280 bd->bi_baudrate = gd->baudrate; /* Console Baudrate */
281
wdenk27b207f2003-07-24 23:38:38 +0000282 memcpy (id, (void *)gd, sizeof (gd_t));
wdenk3e386912003-04-05 00:53:31 +0000283
284 /* On the purple board we copy the code in a special way
285 * in order to solve flash problems
286 */
287#ifdef CONFIG_PURPLE
288 copy_code(addr);
289#endif
290
wdenkc0218802003-03-27 12:09:35 +0000291 relocate_code (addr_sp, id, addr);
292
293 /* NOTREACHED - relocate_code() does not return */
294}
295/************************************************************************
296 *
297 * This is the next part if the initialization sequence: we are now
298 * running from RAM and have a "normal" C environment, i. e. global
299 * data can be written, BSS has been cleared, the stack size in not
300 * that critical any more, etc.
301 *
302 ************************************************************************
303 */
304
305void board_init_r (gd_t *id, ulong dest_addr)
306{
wdenkc0218802003-03-27 12:09:35 +0000307 cmd_tbl_t *cmdtp;
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200308#ifndef CONFIG_SYS_NO_FLASH
wdenkc0218802003-03-27 12:09:35 +0000309 ulong size;
Jean-Christophe PLAGNIOL-VILLARDbeeccf72008-02-17 16:58:04 +0100310#endif
wdenkc0218802003-03-27 12:09:35 +0000311 extern void malloc_bin_reloc (void);
Jean-Christophe PLAGNIOL-VILLARD93f6d722008-09-10 22:48:00 +0200312#ifndef CONFIG_ENV_IS_NOWHERE
wdenkc0218802003-03-27 12:09:35 +0000313 extern char * env_name_spec;
314#endif
315 char *s, *e;
316 bd_t *bd;
317 int i;
318
319 gd = id;
320 gd->flags |= GD_FLG_RELOC; /* tell others: relocation done */
321
wdenk69459792004-05-29 16:53:29 +0000322 debug ("Now running in RAM - U-Boot at: %08lx\n", dest_addr);
wdenkc0218802003-03-27 12:09:35 +0000323
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200324 gd->reloc_off = dest_addr - CONFIG_SYS_MONITOR_BASE;
wdenkc0218802003-03-27 12:09:35 +0000325
wdenk3b57fe02003-05-30 12:48:29 +0000326 monitor_flash_len = (ulong)&uboot_end_data - dest_addr;
327
wdenkc0218802003-03-27 12:09:35 +0000328 /*
329 * We have to relocate the command table manually
330 */
Jean-Christophe PLAGNIOL-VILLARDbeeccf72008-02-17 16:58:04 +0100331 for (cmdtp = &__u_boot_cmd_start; cmdtp != &__u_boot_cmd_end; cmdtp++) {
wdenkc0218802003-03-27 12:09:35 +0000332 ulong addr;
333
334 addr = (ulong) (cmdtp->cmd) + gd->reloc_off;
335#if 0
336 printf ("Command \"%s\": 0x%08lx => 0x%08lx\n",
337 cmdtp->name, (ulong) (cmdtp->cmd), addr);
338#endif
339 cmdtp->cmd =
340 (int (*)(struct cmd_tbl_s *, int, int, char *[]))addr;
341
342 addr = (ulong)(cmdtp->name) + gd->reloc_off;
343 cmdtp->name = (char *)addr;
344
345 if (cmdtp->usage) {
346 addr = (ulong)(cmdtp->usage) + gd->reloc_off;
347 cmdtp->usage = (char *)addr;
348 }
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200349#ifdef CONFIG_SYS_LONGHELP
wdenkc0218802003-03-27 12:09:35 +0000350 if (cmdtp->help) {
351 addr = (ulong)(cmdtp->help) + gd->reloc_off;
352 cmdtp->help = (char *)addr;
353 }
354#endif
355 }
356 /* there are some other pointer constants we must deal with */
Jean-Christophe PLAGNIOL-VILLARD93f6d722008-09-10 22:48:00 +0200357#ifndef CONFIG_ENV_IS_NOWHERE
wdenkc0218802003-03-27 12:09:35 +0000358 env_name_spec += gd->reloc_off;
359#endif
wdenk8bde7f72003-06-27 21:31:46 +0000360
Jean-Christophe PLAGNIOL-VILLARDbeeccf72008-02-17 16:58:04 +0100361 bd = gd->bd;
362
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200363#ifndef CONFIG_SYS_NO_FLASH
wdenkc0218802003-03-27 12:09:35 +0000364 /* configure available FLASH banks */
365 size = flash_init();
366 display_flash_config (size);
wdenkc0218802003-03-27 12:09:35 +0000367 bd->bi_flashsize = size;
Jean-Christophe PLAGNIOL-VILLARDbeeccf72008-02-17 16:58:04 +0100368#endif
369
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200370 bd->bi_flashstart = CONFIG_SYS_FLASH_BASE;
371#if CONFIG_SYS_MONITOR_BASE == CONFIG_SYS_FLASH_BASE
wdenk3b57fe02003-05-30 12:48:29 +0000372 bd->bi_flashoffset = monitor_flash_len; /* reserved area for U-Boot */
wdenkc0218802003-03-27 12:09:35 +0000373#else
374 bd->bi_flashoffset = 0;
375#endif
376
377 /* initialize malloc() area */
378 mem_malloc_init();
379 malloc_bin_reloc();
380
381 /* relocate environment function pointers etc. */
382 env_relocate();
383
384 /* board MAC address */
385 s = getenv ("ethaddr");
386 for (i = 0; i < 6; ++i) {
387 bd->bi_enetaddr[i] = s ? simple_strtoul (s, &e, 16) : 0;
388 if (s)
389 s = (*e) ? e + 1 : e;
390 }
391
392 /* IP Address */
393 bd->bi_ip_addr = getenv_IPaddr("ipaddr");
394
wdenkf4863a72004-02-07 01:27:10 +0000395#if defined(CONFIG_PCI)
396 /*
397 * Do pci configuration
398 */
399 pci_init();
400#endif
401
wdenkc0218802003-03-27 12:09:35 +0000402/** leave this here (after malloc(), environment and PCI are working) **/
403 /* Initialize devices */
404 devices_init ();
405
wdenk27b207f2003-07-24 23:38:38 +0000406 jumptable_init ();
wdenkc0218802003-03-27 12:09:35 +0000407
408 /* Initialize the console (after the relocation and devices init) */
409 console_init_r ();
410/** ** ** ** ** ** ** ** ** ** ** ** ** ** ** ** ** ** ** ** ** **/
411
wdenk3e386912003-04-05 00:53:31 +0000412 /* Initialize from environment */
413 if ((s = getenv ("loadaddr")) != NULL) {
414 load_addr = simple_strtoul (s, NULL, 16);
415 }
Jon Loeliger7def6b32007-07-09 18:02:11 -0500416#if defined(CONFIG_CMD_NET)
wdenk3e386912003-04-05 00:53:31 +0000417 if ((s = getenv ("bootfile")) != NULL) {
418 copy_filename (BootFile, s, sizeof (BootFile));
419 }
Jon Loeligerb3aff0c2007-07-10 11:19:50 -0500420#endif
wdenk3e386912003-04-05 00:53:31 +0000421
Jason McMullane996bc32008-05-30 00:53:37 +0900422#ifdef CONFIG_CMD_NAND
423 puts ("NAND: ");
424 nand_init (); /* go init the NAND */
425#endif
426
Jason McMullan89a15502008-05-30 00:53:37 +0900427#ifdef CONFIG_CMD_SPI
428 puts ("SPI: ");
429 spi_init (); /* go init the SPI */
430 puts ("ready\n");
431#endif
432
wdenk3e386912003-04-05 00:53:31 +0000433#if defined(CONFIG_MISC_INIT_R)
434 /* miscellaneous platform dependent initialisations */
435 misc_init_r ();
436#endif
437
Jon Loeliger7def6b32007-07-09 18:02:11 -0500438#if defined(CONFIG_CMD_NET)
Marian Balakowicz63ff0042005-10-28 22:30:33 +0200439#if defined(CONFIG_NET_MULTI)
wdenkc0218802003-03-27 12:09:35 +0000440 puts ("Net: ");
Marian Balakowicz63ff0042005-10-28 22:30:33 +0200441#endif
wdenkc0218802003-03-27 12:09:35 +0000442 eth_initialize(gd->bd);
443#endif
444
445 /* main_loop() can return to retry autoboot, if so just run it again. */
446 for (;;) {
447 main_loop ();
448 }
449
450 /* NOTREACHED - no way out of command loop except booting */
451}
452
453void hang (void)
454{
455 puts ("### ERROR ### Please RESET the board ###\n");
456 for (;;);
457}