blob: 91ccec04df76b04ed20816a212176a2857d8e040 [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>
wdenkc0218802003-03-27 12:09:35 +000028#include <version.h>
29#include <net.h>
30#include <environment.h>
31
Wolfgang Denkc75eba32005-12-01 02:15:07 +010032DECLARE_GLOBAL_DATA_PTR;
33
wdenkc0218802003-03-27 12:09:35 +000034#if ( ((CFG_ENV_ADDR+CFG_ENV_SIZE) < CFG_MONITOR_BASE) || \
35 (CFG_ENV_ADDR >= (CFG_MONITOR_BASE + CFG_MONITOR_LEN)) ) || \
36 defined(CFG_ENV_IS_IN_NVRAM)
37#define TOTAL_MALLOC_LEN (CFG_MALLOC_LEN + CFG_ENV_SIZE)
38#else
39#define TOTAL_MALLOC_LEN CFG_MALLOC_LEN
40#endif
41
42#undef DEBUG
43
44extern int timer_init(void);
45
wdenk7cb22f92003-12-27 19:24:54 +000046extern int incaip_set_cpuclk(void);
47
wdenk3b57fe02003-05-30 12:48:29 +000048extern ulong uboot_end_data;
49extern ulong uboot_end;
50
51ulong monitor_flash_len;
52
wdenkc0218802003-03-27 12:09:35 +000053const char version_string[] =
54 U_BOOT_VERSION" (" __DATE__ " - " __TIME__ ")";
55
56static char *failed = "*** failed ***\n";
57
58/*
59 * Begin and End of memory area for malloc(), and current "brk"
60 */
61static ulong mem_malloc_start;
62static ulong mem_malloc_end;
63static ulong mem_malloc_brk;
64
65
66/*
67 * The Malloc area is immediately below the monitor copy in DRAM
68 */
69static void mem_malloc_init (void)
70{
wdenkc0218802003-03-27 12:09:35 +000071 ulong dest_addr = CFG_MONITOR_BASE + gd->reloc_off;
72
73 mem_malloc_end = dest_addr;
74 mem_malloc_start = dest_addr - TOTAL_MALLOC_LEN;
75 mem_malloc_brk = mem_malloc_start;
76
77 memset ((void *) mem_malloc_start,
78 0,
79 mem_malloc_end - mem_malloc_start);
80}
81
82void *sbrk (ptrdiff_t increment)
83{
84 ulong old = mem_malloc_brk;
85 ulong new = old + increment;
86
87 if ((new < mem_malloc_start) || (new > mem_malloc_end)) {
88 return (NULL);
89 }
90 mem_malloc_brk = new;
91 return ((void *) old);
92}
93
94
95static int init_func_ram (void)
96{
wdenkc0218802003-03-27 12:09:35 +000097#ifdef CONFIG_BOARD_TYPES
98 int board_type = gd->board_type;
99#else
100 int board_type = 0; /* use dummy arg */
101#endif
102 puts ("DRAM: ");
103
104 if ((gd->ram_size = initdram (board_type)) > 0) {
105 print_size (gd->ram_size, "\n");
106 return (0);
107 }
108 puts (failed);
109 return (1);
110}
111
112static int display_banner(void)
113{
114
115 printf ("\n\n%s\n\n", version_string);
116 return (0);
117}
118
119static void display_flash_config(ulong size)
120{
121 puts ("Flash: ");
122 print_size (size, "\n");
123}
124
125
126static int init_baudrate (void)
127{
Wolfgang Denkf013dac2005-12-04 00:40:34 +0100128 char tmp[64]; /* long enough for environment variables */
wdenkc0218802003-03-27 12:09:35 +0000129 int i = getenv_r ("baudrate", tmp, sizeof (tmp));
130
131 gd->baudrate = (i > 0)
132 ? (int) simple_strtoul (tmp, NULL, 10)
133 : CONFIG_BAUDRATE;
134
135 return (0);
136}
137
138
139/*
140 * Breath some life into the board...
141 *
142 * The first part of initialization is running from Flash memory;
143 * its main purpose is to initialize the RAM so that we
144 * can relocate the monitor code to RAM.
145 */
146
147/*
148 * All attempts to come up with a "common" initialization sequence
149 * that works for all boards and architectures failed: some of the
150 * requirements are just _too_ different. To get rid of the resulting
151 * mess of board dependend #ifdef'ed code we now make the whole
152 * initialization sequence configurable to the user.
153 *
154 * The requirements for any new initalization function is simple: it
155 * receives a pointer to the "global data" structure as it's only
156 * argument, and returns an integer return code, where 0 means
157 * "continue" and != 0 means "fatal error, hang the system".
158 */
159typedef int (init_fnc_t) (void);
160
161init_fnc_t *init_sequence[] = {
162 timer_init,
163 env_init, /* initialize environment */
wdenk7cb22f92003-12-27 19:24:54 +0000164#ifdef CONFIG_INCA_IP
165 incaip_set_cpuclk, /* set cpu clock according to environment variable */
166#endif
wdenkc0218802003-03-27 12:09:35 +0000167 init_baudrate, /* initialze baudrate settings */
168 serial_init, /* serial communications setup */
169 console_init_f,
170 display_banner, /* say that we are here */
wdenk85ec0bc2003-03-31 16:34:49 +0000171 checkboard,
wdenkc0218802003-03-27 12:09:35 +0000172 init_func_ram,
173 NULL,
174};
175
176
177void board_init_f(ulong bootflag)
178{
wdenkc0218802003-03-27 12:09:35 +0000179 gd_t gd_data, *id;
180 bd_t *bd;
181 init_fnc_t **init_fnc_ptr;
wdenk3b57fe02003-05-30 12:48:29 +0000182 ulong addr, addr_sp, len = (ulong)&uboot_end - CFG_MONITOR_BASE;
Wolfgang Denkc75eba32005-12-01 02:15:07 +0100183 ulong *s;
wdenk3e386912003-04-05 00:53:31 +0000184#ifdef CONFIG_PURPLE
185 void copy_code (ulong);
186#endif
wdenkc0218802003-03-27 12:09:35 +0000187
wdenk69459792004-05-29 16:53:29 +0000188 /* Pointer is writable since we allocated a register for it.
189 */
wdenkc0218802003-03-27 12:09:35 +0000190 gd = &gd_data;
wdenk93f6a672004-07-01 20:28:03 +0000191 /* compiler optimization barrier needed for GCC >= 3.4 */
192 __asm__ __volatile__("": : :"memory");
193
wdenk27b207f2003-07-24 23:38:38 +0000194 memset ((void *)gd, 0, sizeof (gd_t));
wdenkc0218802003-03-27 12:09:35 +0000195
196 for (init_fnc_ptr = init_sequence; *init_fnc_ptr; ++init_fnc_ptr) {
197 if ((*init_fnc_ptr)() != 0) {
198 hang ();
199 }
200 }
201
202 /*
203 * Now that we have DRAM mapped and working, we can
204 * relocate the code and continue running from DRAM.
205 */
206 addr = CFG_SDRAM_BASE + gd->ram_size;
207
wdenk69459792004-05-29 16:53:29 +0000208 /* We can reserve some RAM "on top" here.
209 */
wdenkc0218802003-03-27 12:09:35 +0000210
wdenk69459792004-05-29 16:53:29 +0000211 /* round down to next 4 kB limit.
212 */
wdenkc0218802003-03-27 12:09:35 +0000213 addr &= ~(4096 - 1);
wdenk69459792004-05-29 16:53:29 +0000214 debug ("Top of RAM usable for U-Boot at: %08lx\n", addr);
wdenk8bde7f72003-06-27 21:31:46 +0000215
wdenk69459792004-05-29 16:53:29 +0000216 /* Reserve memory for U-Boot code, data & bss
217 * round down to next 16 kB limit
218 */
wdenkc0218802003-03-27 12:09:35 +0000219 addr -= len;
wdenk3b57fe02003-05-30 12:48:29 +0000220 addr &= ~(16 * 1024 - 1);
wdenkc0218802003-03-27 12:09:35 +0000221
wdenk69459792004-05-29 16:53:29 +0000222 debug ("Reserving %ldk for U-Boot at: %08lx\n", len >> 10, addr);
wdenkc0218802003-03-27 12:09:35 +0000223
wdenk69459792004-05-29 16:53:29 +0000224 /* Reserve memory for malloc() arena.
225 */
wdenkc0218802003-03-27 12:09:35 +0000226 addr_sp = addr - TOTAL_MALLOC_LEN;
wdenk69459792004-05-29 16:53:29 +0000227 debug ("Reserving %dk for malloc() at: %08lx\n",
wdenkc0218802003-03-27 12:09:35 +0000228 TOTAL_MALLOC_LEN >> 10, addr_sp);
wdenkc0218802003-03-27 12:09:35 +0000229
230 /*
231 * (permanently) allocate a Board Info struct
232 * and a permanent copy of the "global" data
233 */
234 addr_sp -= sizeof(bd_t);
235 bd = (bd_t *)addr_sp;
236 gd->bd = bd;
wdenk69459792004-05-29 16:53:29 +0000237 debug ("Reserving %d Bytes for Board Info at: %08lx\n",
wdenkc0218802003-03-27 12:09:35 +0000238 sizeof(bd_t), addr_sp);
wdenk69459792004-05-29 16:53:29 +0000239
wdenkc0218802003-03-27 12:09:35 +0000240 addr_sp -= sizeof(gd_t);
241 id = (gd_t *)addr_sp;
wdenk69459792004-05-29 16:53:29 +0000242 debug ("Reserving %d Bytes for Global Data at: %08lx\n",
wdenkc0218802003-03-27 12:09:35 +0000243 sizeof (gd_t), addr_sp);
wdenkc0218802003-03-27 12:09:35 +0000244
wdenk69459792004-05-29 16:53:29 +0000245 /* Reserve memory for boot params.
246 */
wdenkc0218802003-03-27 12:09:35 +0000247 addr_sp -= CFG_BOOTPARAMS_LEN;
248 bd->bi_boot_params = addr_sp;
wdenk69459792004-05-29 16:53:29 +0000249 debug ("Reserving %dk for boot params() at: %08lx\n",
wdenkc0218802003-03-27 12:09:35 +0000250 CFG_BOOTPARAMS_LEN >> 10, addr_sp);
wdenkc0218802003-03-27 12:09:35 +0000251
252 /*
253 * Finally, we set up a new (bigger) stack.
254 *
255 * Leave some safety gap for SP, force alignment on 16 byte boundary
256 * Clear initial stack frame
257 */
258 addr_sp -= 16;
259 addr_sp &= ~0xF;
Wolfgang Denkc75eba32005-12-01 02:15:07 +0100260 s = (ulong *)addr_sp;
261 *s-- = 0;
262 *s-- = 0;
263 addr_sp = (ulong)s;
wdenk69459792004-05-29 16:53:29 +0000264 debug ("Stack Pointer at: %08lx\n", addr_sp);
265
wdenkc0218802003-03-27 12:09:35 +0000266 /*
267 * Save local variables to board info struct
268 */
269 bd->bi_memstart = CFG_SDRAM_BASE; /* start of DRAM memory */
270 bd->bi_memsize = gd->ram_size; /* size of DRAM memory in bytes */
271 bd->bi_baudrate = gd->baudrate; /* Console Baudrate */
272
wdenk27b207f2003-07-24 23:38:38 +0000273 memcpy (id, (void *)gd, sizeof (gd_t));
wdenk3e386912003-04-05 00:53:31 +0000274
275 /* On the purple board we copy the code in a special way
276 * in order to solve flash problems
277 */
278#ifdef CONFIG_PURPLE
279 copy_code(addr);
280#endif
281
wdenkc0218802003-03-27 12:09:35 +0000282 relocate_code (addr_sp, id, addr);
283
284 /* NOTREACHED - relocate_code() does not return */
285}
286/************************************************************************
287 *
288 * This is the next part if the initialization sequence: we are now
289 * running from RAM and have a "normal" C environment, i. e. global
290 * data can be written, BSS has been cleared, the stack size in not
291 * that critical any more, etc.
292 *
293 ************************************************************************
294 */
295
296void board_init_r (gd_t *id, ulong dest_addr)
297{
wdenkc0218802003-03-27 12:09:35 +0000298 cmd_tbl_t *cmdtp;
299 ulong size;
300 extern void malloc_bin_reloc (void);
301#ifndef CFG_ENV_IS_NOWHERE
302 extern char * env_name_spec;
303#endif
304 char *s, *e;
305 bd_t *bd;
306 int i;
307
308 gd = id;
309 gd->flags |= GD_FLG_RELOC; /* tell others: relocation done */
310
wdenk69459792004-05-29 16:53:29 +0000311 debug ("Now running in RAM - U-Boot at: %08lx\n", dest_addr);
wdenkc0218802003-03-27 12:09:35 +0000312
313 gd->reloc_off = dest_addr - CFG_MONITOR_BASE;
314
wdenk3b57fe02003-05-30 12:48:29 +0000315 monitor_flash_len = (ulong)&uboot_end_data - dest_addr;
316
wdenkc0218802003-03-27 12:09:35 +0000317 /*
318 * We have to relocate the command table manually
319 */
wdenk8bde7f72003-06-27 21:31:46 +0000320 for (cmdtp = &__u_boot_cmd_start; cmdtp != &__u_boot_cmd_end; cmdtp++) {
wdenkc0218802003-03-27 12:09:35 +0000321 ulong addr;
322
323 addr = (ulong) (cmdtp->cmd) + gd->reloc_off;
324#if 0
325 printf ("Command \"%s\": 0x%08lx => 0x%08lx\n",
326 cmdtp->name, (ulong) (cmdtp->cmd), addr);
327#endif
328 cmdtp->cmd =
329 (int (*)(struct cmd_tbl_s *, int, int, char *[]))addr;
330
331 addr = (ulong)(cmdtp->name) + gd->reloc_off;
332 cmdtp->name = (char *)addr;
333
334 if (cmdtp->usage) {
335 addr = (ulong)(cmdtp->usage) + gd->reloc_off;
336 cmdtp->usage = (char *)addr;
337 }
338#ifdef CFG_LONGHELP
339 if (cmdtp->help) {
340 addr = (ulong)(cmdtp->help) + gd->reloc_off;
341 cmdtp->help = (char *)addr;
342 }
343#endif
344 }
345 /* there are some other pointer constants we must deal with */
346#ifndef CFG_ENV_IS_NOWHERE
347 env_name_spec += gd->reloc_off;
348#endif
wdenk8bde7f72003-06-27 21:31:46 +0000349
wdenkc0218802003-03-27 12:09:35 +0000350 /* configure available FLASH banks */
351 size = flash_init();
352 display_flash_config (size);
353
354 bd = gd->bd;
355 bd->bi_flashstart = CFG_FLASH_BASE;
356 bd->bi_flashsize = size;
357#if CFG_MONITOR_BASE == CFG_FLASH_BASE
wdenk3b57fe02003-05-30 12:48:29 +0000358 bd->bi_flashoffset = monitor_flash_len; /* reserved area for U-Boot */
wdenkc0218802003-03-27 12:09:35 +0000359#else
360 bd->bi_flashoffset = 0;
361#endif
362
363 /* initialize malloc() area */
364 mem_malloc_init();
365 malloc_bin_reloc();
366
367 /* relocate environment function pointers etc. */
368 env_relocate();
369
370 /* board MAC address */
371 s = getenv ("ethaddr");
372 for (i = 0; i < 6; ++i) {
373 bd->bi_enetaddr[i] = s ? simple_strtoul (s, &e, 16) : 0;
374 if (s)
375 s = (*e) ? e + 1 : e;
376 }
377
378 /* IP Address */
379 bd->bi_ip_addr = getenv_IPaddr("ipaddr");
380
wdenkf4863a72004-02-07 01:27:10 +0000381#if defined(CONFIG_PCI)
382 /*
383 * Do pci configuration
384 */
385 pci_init();
386#endif
387
wdenkc0218802003-03-27 12:09:35 +0000388/** leave this here (after malloc(), environment and PCI are working) **/
389 /* Initialize devices */
390 devices_init ();
391
wdenk27b207f2003-07-24 23:38:38 +0000392 jumptable_init ();
wdenkc0218802003-03-27 12:09:35 +0000393
394 /* Initialize the console (after the relocation and devices init) */
395 console_init_r ();
396/** ** ** ** ** ** ** ** ** ** ** ** ** ** ** ** ** ** ** ** ** **/
397
wdenk3e386912003-04-05 00:53:31 +0000398 /* Initialize from environment */
399 if ((s = getenv ("loadaddr")) != NULL) {
400 load_addr = simple_strtoul (s, NULL, 16);
401 }
Jon Loeliger7def6b32007-07-09 18:02:11 -0500402#if defined(CONFIG_CMD_NET)
wdenk3e386912003-04-05 00:53:31 +0000403 if ((s = getenv ("bootfile")) != NULL) {
404 copy_filename (BootFile, s, sizeof (BootFile));
405 }
Jon Loeligerb3aff0c2007-07-10 11:19:50 -0500406#endif
wdenk3e386912003-04-05 00:53:31 +0000407
408#if defined(CONFIG_MISC_INIT_R)
409 /* miscellaneous platform dependent initialisations */
410 misc_init_r ();
411#endif
412
Jon Loeliger7def6b32007-07-09 18:02:11 -0500413#if defined(CONFIG_CMD_NET)
Marian Balakowicz63ff0042005-10-28 22:30:33 +0200414#if defined(CONFIG_NET_MULTI)
wdenkc0218802003-03-27 12:09:35 +0000415 puts ("Net: ");
Marian Balakowicz63ff0042005-10-28 22:30:33 +0200416#endif
wdenkc0218802003-03-27 12:09:35 +0000417 eth_initialize(gd->bd);
418#endif
419
420 /* main_loop() can return to retry autoboot, if so just run it again. */
421 for (;;) {
422 main_loop ();
423 }
424
425 /* NOTREACHED - no way out of command loop except booting */
426}
427
428void hang (void)
429{
430 puts ("### ERROR ### Please RESET the board ###\n");
431 for (;;);
432}