]> git.kernelconcepts.de Git - karo-tx-uboot.git/blob - lib_ppc/board.c
a6464f0016eaed86d5e4940b037d73a07463b4f5
[karo-tx-uboot.git] / lib_ppc / board.c
1 /*
2  * (C) Copyright 2000-2002
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 <watchdog.h>
26 #include <command.h>
27 #include <malloc.h>
28 #include <devices.h>
29 #include <syscall.h>
30 #ifdef CONFIG_8xx
31 #include <mpc8xx.h>
32 #endif
33 #if (CONFIG_COMMANDS & CFG_CMD_IDE)
34 #include <ide.h>
35 #endif
36 #if (CONFIG_COMMANDS & CFG_CMD_SCSI)
37 #include <scsi.h>
38 #endif
39 #if (CONFIG_COMMANDS & CFG_CMD_KGDB)
40 #include <kgdb.h>
41 #endif
42 #ifdef CONFIG_STATUS_LED
43 #include <status_led.h>
44 #endif
45 #include <net.h>
46 #if (CONFIG_COMMANDS & CFG_CMD_BEDBUG)
47 #include <cmd_bedbug.h>
48 #endif
49 #ifdef CFG_ALLOC_DPRAM
50 #include <commproc.h>
51 #endif
52 #include <version.h>
53 #if defined(CONFIG_BAB7xx)
54 #include <w83c553f.h>
55 #endif
56 #include <dtt.h>
57 #if defined(CONFIG_POST)
58 #include <post.h>
59 #endif
60 #if defined(CONFIG_LOGBUFFER)
61 #include <logbuff.h>
62 #endif
63
64 #if (CONFIG_COMMANDS & CFG_CMD_DOC)
65 void doc_init (void);
66 #endif
67 #if defined(CONFIG_HARD_I2C) || \
68     defined(CONFIG_SOFT_I2C)
69 #include <i2c.h>
70 #endif
71
72 static char *failed = "*** failed ***\n";
73
74 #if defined(CONFIG_PCU_E) || defined(CONFIG_OXC)
75 extern flash_info_t flash_info[];
76 #endif
77
78 #include <environment.h>
79
80 #if ( ((CFG_ENV_ADDR+CFG_ENV_SIZE) < CFG_MONITOR_BASE) || \
81       (CFG_ENV_ADDR >= (CFG_MONITOR_BASE + CFG_MONITOR_LEN)) ) || \
82     defined(CFG_ENV_IS_IN_NVRAM)
83 #define TOTAL_MALLOC_LEN        (CFG_MALLOC_LEN + CFG_ENV_SIZE)
84 #else
85 #define TOTAL_MALLOC_LEN        CFG_MALLOC_LEN
86 #endif
87
88 /*
89  * Begin and End of memory area for malloc(), and current "brk"
90  */
91 static  ulong   mem_malloc_start = 0;
92 static  ulong   mem_malloc_end   = 0;
93 static  ulong   mem_malloc_brk   = 0;
94
95 /************************************************************************
96  * Utilities                                                            *
97  ************************************************************************
98  */
99
100 /*
101  * The Malloc area is immediately below the monitor copy in DRAM
102  */
103 static void mem_malloc_init (void)
104 {
105         DECLARE_GLOBAL_DATA_PTR;
106
107         ulong dest_addr = CFG_MONITOR_BASE + gd->reloc_off;
108
109         mem_malloc_end = dest_addr;
110         mem_malloc_start = dest_addr - TOTAL_MALLOC_LEN;
111         mem_malloc_brk = mem_malloc_start;
112
113         memset ((void *) mem_malloc_start,
114                 0,
115                 mem_malloc_end - mem_malloc_start);
116 }
117
118 void *sbrk (ptrdiff_t increment)
119 {
120         ulong old = mem_malloc_brk;
121         ulong new = old + increment;
122
123         if ((new < mem_malloc_start) || (new > mem_malloc_end)) {
124                 return (NULL);
125         }
126         mem_malloc_brk = new;
127         return ((void *) old);
128 }
129
130 char *strmhz (char *buf, long hz)
131 {
132         long l, n;
133         long m;
134
135         n = hz / 1000000L;
136         l = sprintf (buf, "%ld", n);
137         m = (hz % 1000000L) / 1000L;
138         if (m != 0)
139                 sprintf (buf + l, ".%03ld", m);
140         return (buf);
141 }
142
143 static void syscalls_init (void)
144 {
145         ulong *addr;
146
147         syscall_tbl[SYSCALL_MALLOC] = (void *) malloc;
148         syscall_tbl[SYSCALL_FREE] = (void *) free;
149
150         syscall_tbl[SYSCALL_INSTALL_HDLR] = (void *) irq_install_handler;
151         syscall_tbl[SYSCALL_FREE_HDLR] = (void *) irq_free_handler;
152         syscall_tbl[SYSCALL_GET_TIMER] = (void *)get_timer;
153         syscall_tbl[SYSCALL_UDELAY] = (void *)udelay;
154
155         addr = (ulong *) 0xc00;         /* syscall ISR addr */
156
157         /* patch ISR code */
158         *addr++ |= (ulong) syscall_tbl >> 16;
159         *addr++ |= (ulong) syscall_tbl & 0xFFFF;
160         *addr++ |= NR_SYSCALLS >> 16;
161         *addr++ |= NR_SYSCALLS & 0xFFFF;
162
163         flush_cache (0x0C00, 0x10);
164
165         /* Initialize syscalls stack pointer                                 */
166         addr = (ulong *) 0xCFC;
167         *addr = (ulong)addr;
168         flush_cache ((ulong)addr, 0x10);
169 }
170
171 /*
172  * All attempts to come up with a "common" initialization sequence
173  * that works for all boards and architectures failed: some of the
174  * requirements are just _too_ different. To get rid of the resulting
175  * mess of board dependend #ifdef'ed code we now make the whole
176  * initialization sequence configurable to the user.
177  *
178  * The requirements for any new initalization function is simple: it
179  * receives a pointer to the "global data" structure as it's only
180  * argument, and returns an integer return code, where 0 means
181  * "continue" and != 0 means "fatal error, hang the system".
182  */
183 typedef int (init_fnc_t) (void);
184
185 /************************************************************************
186  * Init Utilities                                                       *
187  ************************************************************************
188  * Some of this code should be moved into the core functions,
189  * but let's get it working (again) first...
190  */
191
192 static int init_baudrate (void)
193 {
194         DECLARE_GLOBAL_DATA_PTR;
195
196         uchar tmp[64];  /* long enough for environment variables */
197         int i = getenv_r ("baudrate", tmp, sizeof (tmp));
198
199         gd->baudrate = (i > 0)
200                         ? (int) simple_strtoul (tmp, NULL, 10)
201                         : CONFIG_BAUDRATE;
202
203         return (0);
204 }
205
206 /***********************************************************************/
207
208 static int init_func_ram (void)
209 {
210         DECLARE_GLOBAL_DATA_PTR;
211
212 #ifdef  CONFIG_BOARD_TYPES
213         int board_type = gd->board_type;
214 #else
215         int board_type = 0;     /* use dummy arg */
216 #endif
217         puts ("DRAM:  ");
218
219         if ((gd->ram_size = initdram (board_type)) > 0) {
220                 print_size (gd->ram_size, "\n");
221                 return (0);
222         }
223         puts (failed);
224         return (1);
225 }
226
227 /***********************************************************************/
228
229 #if defined(CONFIG_HARD_I2C) || defined(CONFIG_SOFT_I2C)
230 static int init_func_i2c (void)
231 {
232         puts ("I2C:   ");
233         i2c_init (CFG_I2C_SPEED, CFG_I2C_SLAVE);
234         puts ("ready\n");
235         return (0);
236 }
237 #endif
238
239 /***********************************************************************/
240
241 #if defined(CONFIG_WATCHDOG)
242 static int init_func_watchdog_init (void)
243 {
244         puts ("       Watchdog enabled\n");
245         WATCHDOG_RESET ();
246         return (0);
247 }
248 # define INIT_FUNC_WATCHDOG_INIT        init_func_watchdog_init,
249
250 static int init_func_watchdog_reset (void)
251 {
252         WATCHDOG_RESET ();
253         return (0);
254 }
255 # define INIT_FUNC_WATCHDOG_RESET       init_func_watchdog_reset,
256 #else
257 # define INIT_FUNC_WATCHDOG_INIT        /* undef */
258 # define INIT_FUNC_WATCHDOG_RESET       /* undef */
259 #endif /* CONFIG_WATCHDOG */
260
261 /************************************************************************
262  * Initialization sequence                                              *
263  ************************************************************************
264  */
265
266 init_fnc_t *init_sequence[] = {
267
268 #if defined(CONFIG_BOARD_PRE_INIT)
269         board_pre_init,         /* very early board init code (fpga boot, etc.) */
270 #endif
271
272         get_clocks,             /* get CPU and bus clocks (etc.) */
273         init_timebase,
274 #ifdef CFG_ALLOC_DPRAM
275         dpram_init,
276 #endif
277 #if defined(CONFIG_BOARD_POSTCLK_INIT)
278         board_postclk_init,
279 #endif
280         env_init,
281         init_baudrate,
282         serial_init,
283         console_init_f,
284         display_options,
285 #if defined(CONFIG_8260)
286         prt_8260_rsr,
287         prt_8260_clks,
288 #endif /* CONFIG_8260 */
289         checkcpu,
290         checkboard,
291         INIT_FUNC_WATCHDOG_INIT
292 #if defined(CONFIG_BMW)         || \
293     defined(CONFIG_COGENT)      || \
294     defined(CONFIG_HYMOD)       || \
295     defined(CONFIG_RSD_PROTO)   || \
296     defined(CONFIG_W7O)
297         misc_init_f,
298 #endif
299         INIT_FUNC_WATCHDOG_RESET
300 #if defined(CONFIG_HARD_I2C) || defined(CONFIG_SOFT_I2C)
301         init_func_i2c,
302 #endif
303 #if defined(CONFIG_DTT)         /* Digital Thermometers and Thermostats */
304         dtt_init,
305 #endif
306         INIT_FUNC_WATCHDOG_RESET
307         init_func_ram,
308 #if defined(CFG_DRAM_TEST)
309         testdram,
310 #endif /* CFG_DRAM_TEST */
311         INIT_FUNC_WATCHDOG_RESET
312
313         NULL,                   /* Terminate this list */
314 };
315
316 /************************************************************************
317  *
318  * This is the first part of the initialization sequence that is
319  * implemented in C, but still running from ROM.
320  *
321  * The main purpose is to provide a (serial) console interface as
322  * soon as possible (so we can see any error messages), and to
323  * initialize the RAM so that we can relocate the monitor code to
324  * RAM.
325  *
326  * Be aware of the restrictions: global data is read-only, BSS is not
327  * initialized, and stack space is limited to a few kB.
328  *
329  ************************************************************************
330  */
331
332 void board_init_f (ulong bootflag)
333 {
334         DECLARE_GLOBAL_DATA_PTR;
335
336         bd_t *bd;
337         ulong len, addr, addr_sp;
338         gd_t *id;
339         init_fnc_t **init_fnc_ptr;
340 #ifdef CONFIG_PRAM
341         int i;
342         ulong reg;
343         uchar tmp[64];          /* long enough for environment variables */
344 #endif
345
346         /* Pointer is writable since we allocated a register for it */
347         gd = (gd_t *) (CFG_INIT_RAM_ADDR + CFG_GBL_DATA_OFFSET);
348
349 #ifndef CONFIG_8260
350         /* Clear initial global data */
351         memset ((void *) gd, 0, sizeof (gd_t));
352 #endif
353
354         for (init_fnc_ptr = init_sequence; *init_fnc_ptr; ++init_fnc_ptr) {
355                 if ((*init_fnc_ptr) () != 0) {
356                         hang ();
357                 }
358         }
359
360         /*
361          * Now that we have DRAM mapped and working, we can
362          * relocate the code and continue running from DRAM.
363          *
364          * Reserve memory at end of RAM for (top down in that order):
365          *  - kernel log buffer
366          *  - protected RAM
367          *  - LCD framebuffer
368          *  - monitor code
369          *  - board info struct
370          */
371         len = get_endaddr () - CFG_MONITOR_BASE;
372
373         if (len > CFG_MONITOR_LEN) {
374                 printf ("*** U-Boot size %ld > reserved memory (%d)\n",
375                                 len, CFG_MONITOR_LEN);
376                 hang ();
377         }
378
379         if (CFG_MONITOR_LEN > len)
380                 len = CFG_MONITOR_LEN;
381
382 #ifndef CONFIG_VERY_BIG_RAM
383         addr = CFG_SDRAM_BASE + gd->ram_size;
384 #else
385         /* only allow stack below 256M */
386         addr = CFG_SDRAM_BASE +
387                (gd->ram_size > 256 << 20) ? 256 << 20 : gd->ram_size;
388 #endif
389
390 #ifdef CONFIG_LOGBUFFER
391         /* reserve kernel log buffer */
392         addr -= (LOGBUFF_RESERVE);
393 # ifdef DEBUG
394         printf ("Reserving %ldk for kernel logbuffer at %08lx\n", LOGBUFF_LEN, addr);
395 # endif
396 #endif
397
398 #ifdef CONFIG_PRAM
399         /*
400          * reserve protected RAM
401          */
402         i = getenv_r ("pram", tmp, sizeof (tmp));
403         reg = (i > 0) ? simple_strtoul (tmp, NULL, 10) : CONFIG_PRAM;
404         addr -= (reg << 10);            /* size is in kB */
405 # ifdef DEBUG
406         printf ("Reserving %ldk for protected RAM at %08lx\n", reg, addr);
407 # endif
408 #endif /* CONFIG_PRAM */
409
410         /* round down to next 4 kB limit */
411         addr &= ~(4096 - 1);
412 #ifdef DEBUG
413         printf ("Top of RAM usable for U-Boot at: %08lx\n", addr);
414 #endif
415
416 #ifdef CONFIG_LCD
417         /* reserve memory for LCD display (always full pages) */
418         addr = lcd_setmem (addr);
419         gd->fb_base = addr;
420 #endif /* CONFIG_LCD */
421
422 #if defined(CONFIG_VIDEO) && defined(CONFIG_8xx)
423         /* reserve memory for video display (always full pages) */
424         addr = video_setmem (addr);
425         gd->fb_base = addr;
426 #endif /* CONFIG_VIDEO  */
427
428         /*
429          * reserve memory for U-Boot code, data & bss
430          * round down to next 4 kB limit
431          */
432         addr -= len;
433         addr &= ~(4096 - 1);
434
435 #ifdef DEBUG
436         printf ("Reserving %ldk for U-Boot at: %08lx\n", len >> 10, addr);
437 #endif
438
439 #ifdef CONFIG_AMIGAONEG3SE
440         gd->relocaddr = addr;
441 #endif
442
443         /*
444          * reserve memory for malloc() arena
445          */
446         addr_sp = addr - TOTAL_MALLOC_LEN;
447 #ifdef DEBUG
448         printf ("Reserving %dk for malloc() at: %08lx\n",
449                         TOTAL_MALLOC_LEN >> 10, addr_sp);
450 #endif
451
452         /*
453          * (permanently) allocate a Board Info struct
454          * and a permanent copy of the "global" data
455          */
456         addr_sp -= sizeof (bd_t);
457         bd = (bd_t *) addr_sp;
458         gd->bd = bd;
459 #ifdef DEBUG
460         printf ("Reserving %d Bytes for Board Info at: %08lx\n",
461                         sizeof (bd_t), addr_sp);
462 #endif
463         addr_sp -= sizeof (gd_t);
464         id = (gd_t *) addr_sp;
465 #ifdef DEBUG
466         printf ("Reserving %d Bytes for Global Data at: %08lx\n",
467                         sizeof (gd_t), addr_sp);
468 #endif
469
470         /*
471          * Finally, we set up a new (bigger) stack.
472          *
473          * Leave some safety gap for SP, force alignment on 16 byte boundary
474          * Clear initial stack frame
475          */
476         addr_sp -= 16;
477         addr_sp &= ~0xF;
478         *((ulong *) addr_sp)-- = 0;
479         *((ulong *) addr_sp)-- = 0;
480 #ifdef DEBUG
481         printf ("Stack Pointer at: %08lx\n", addr_sp);
482 #endif
483
484         /*
485          * Save local variables to board info struct
486          */
487
488         bd->bi_memstart  = CFG_SDRAM_BASE;      /* start of  DRAM memory      */
489         bd->bi_memsize   = gd->ram_size;        /* size  of  DRAM memory in bytes */
490
491 #ifdef CONFIG_IP860
492         bd->bi_sramstart = SRAM_BASE;   /* start of  SRAM memory      */
493         bd->bi_sramsize  = SRAM_SIZE;   /* size  of  SRAM memory      */
494 #else
495         bd->bi_sramstart = 0;           /* FIXME */ /* start of  SRAM memory      */
496         bd->bi_sramsize  = 0;           /* FIXME */ /* size  of  SRAM memory      */
497 #endif
498
499 #if defined(CONFIG_8xx) || defined(CONFIG_8260)
500         bd->bi_immr_base = CFG_IMMR;    /* base  of IMMR register     */
501 #endif
502
503         bd->bi_bootflags = bootflag;    /* boot / reboot flag (for LynxOS)    */
504
505         WATCHDOG_RESET ();
506         bd->bi_intfreq = gd->cpu_clk;   /* Internal Freq, in Hz */
507         bd->bi_busfreq = gd->bus_clk;   /* Bus Freq,      in Hz */
508 #if defined(CONFIG_8260)
509         bd->bi_cpmfreq = gd->cpm_clk;
510         bd->bi_brgfreq = gd->brg_clk;
511         bd->bi_sccfreq = gd->scc_clk;
512         bd->bi_vco     = gd->vco_out;
513 #endif /* CONFIG_8260 */
514
515         bd->bi_baudrate = gd->baudrate; /* Console Baudrate     */
516
517 #ifdef CFG_EXTBDINFO
518         strncpy (bd->bi_s_version, "1.2", sizeof (bd->bi_s_version));
519         strncpy (bd->bi_r_version, U_BOOT_VERSION, sizeof (bd->bi_r_version));
520
521         bd->bi_procfreq = gd->cpu_clk;  /* Processor Speed, In Hz */
522         bd->bi_plb_busfreq = gd->bus_clk;
523 #ifdef CONFIG_405GP
524         bd->bi_pci_busfreq = get_PCI_freq ();
525 #endif
526 #endif
527
528 #ifdef DEBUG
529         printf ("New Stack Pointer is: %08lx\n", addr_sp);
530 #endif
531
532         WATCHDOG_RESET ();
533
534 #ifdef CONFIG_POST
535         post_bootmode_init();
536         post_run (NULL, POST_ROM | post_bootmode_get(0));
537 #endif
538
539         WATCHDOG_RESET();
540
541         memcpy (id, gd, sizeof (gd_t));
542
543         relocate_code (addr_sp, id, addr);
544
545         /* NOTREACHED - relocate_code() does not return */
546 }
547
548
549 /************************************************************************
550  *
551  * This is the next part if the initialization sequence: we are now
552  * running from RAM and have a "normal" C environment, i. e. global
553  * data can be written, BSS has been cleared, the stack size in not
554  * that critical any more, etc.
555  *
556  ************************************************************************
557  */
558
559 void board_init_r (gd_t *id, ulong dest_addr)
560 {
561         DECLARE_GLOBAL_DATA_PTR;
562
563         cmd_tbl_t *cmdtp;
564         char *s, *e;
565         bd_t *bd;
566         int i;
567         extern void malloc_bin_reloc (void);
568 #ifndef CFG_ENV_IS_NOWHERE
569         extern char * env_name_spec;
570 #endif
571
572 #ifndef CFG_NO_FLASH
573         ulong flash_size;
574 #endif
575
576         gd = id;                /* initialize RAM version of global data */
577         bd = gd->bd;
578
579         gd->flags |= GD_FLG_RELOC;      /* tell others: relocation done */
580
581 #ifdef DEBUG
582         printf ("Now running in RAM - U-Boot at: %08lx\n", dest_addr);
583 #endif
584
585         WATCHDOG_RESET ();
586
587         gd->reloc_off = dest_addr - CFG_MONITOR_BASE;
588
589         /*
590          * We have to relocate the command table manually
591          */
592         for (cmdtp = &cmd_tbl[0]; cmdtp->name; cmdtp++) {
593                 ulong addr;
594
595                 addr = (ulong) (cmdtp->cmd) + gd->reloc_off;
596 #if 0
597                 printf ("Command \"%s\": 0x%08lx => 0x%08lx\n",
598                                 cmdtp->name, (ulong) (cmdtp->cmd), addr);
599 #endif
600                 cmdtp->cmd =
601                         (int (*)(struct cmd_tbl_s *, int, int, char *[]))addr;
602
603                 addr = (ulong)(cmdtp->name) + gd->reloc_off;
604                 cmdtp->name = (char *)addr;
605
606                 if (cmdtp->usage) {
607                         addr = (ulong)(cmdtp->usage) + gd->reloc_off;
608                         cmdtp->usage = (char *)addr;
609                 }
610 #ifdef  CFG_LONGHELP
611                 if (cmdtp->help) {
612                         addr = (ulong)(cmdtp->help) + gd->reloc_off;
613                         cmdtp->help = (char *)addr;
614                 }
615 #endif
616         }
617         /* there are some other pointer constants we must deal with */
618 #ifndef CFG_ENV_IS_NOWHERE
619         env_name_spec += gd->reloc_off;
620 #endif
621
622         WATCHDOG_RESET ();
623
624 #ifdef CONFIG_LOGBUFFER
625         logbuff_init_ptrs ();
626 #endif
627 #ifdef CONFIG_POST
628         post_output_backlog ();
629         post_reloc ();
630 #endif
631
632         WATCHDOG_RESET();
633
634 #if defined(CONFIG_IP860) || defined(CONFIG_PCU_E) || defined (CONFIG_FLAGADM)
635         icache_enable ();       /* it's time to enable the instruction cache */
636 #endif
637
638 #if defined(CONFIG_BAB7xx)
639         /*
640          * Do pci configuration on BAB 7xx _before_ the flash
641          * is initialised, because we need the ISA bridge there.
642          */
643         pci_init ();
644         /*
645          * Initialise the ISA bridge
646          */
647         initialise_w83c553f ();
648 #endif
649
650         asm ("sync ; isync");
651
652         /*
653          * Setup trap handlers
654          */
655         trap_init (dest_addr);
656
657 #if !defined(CFG_NO_FLASH)
658         puts ("FLASH: ");
659
660         if ((flash_size = flash_init ()) > 0) {
661 #ifdef CFG_FLASH_CHECKSUM
662                 print_size (flash_size, "");
663                 /*
664                  * Compute and print flash CRC if flashchecksum is set to 'y'
665                  *
666                  * NOTE: Maybe we should add some WATCHDOG_RESET()? XXX
667                  */
668                 s = getenv ("flashchecksum");
669                 if (s && (*s == 'y')) {
670                         printf ("  CRC: %08lX",
671                                         crc32 (0,
672                                                    (const unsigned char *) CFG_FLASH_BASE,
673                                                    flash_size)
674                                         );
675                 }
676                 putc ('\n');
677 #else
678                 print_size (flash_size, "\n");
679 #endif /* CFG_FLASH_CHECKSUM */
680         } else {
681                 puts (failed);
682                 hang ();
683         }
684
685         bd->bi_flashstart = CFG_FLASH_BASE;     /* update start of FLASH memory    */
686         bd->bi_flashsize = flash_size;  /* size of FLASH memory (final value) */
687 #if defined(CONFIG_PCU_E) || defined(CONFIG_OXC)
688         bd->bi_flashoffset = 0;
689 #elif CFG_MONITOR_BASE == CFG_FLASH_BASE
690         bd->bi_flashoffset = CFG_MONITOR_LEN;   /* reserved area for startup monitor  */
691 #else
692         bd->bi_flashoffset = 0;
693 #endif
694 #else
695
696         bd->bi_flashsize = 0;
697         bd->bi_flashstart = 0;
698         bd->bi_flashoffset = 0;
699 #endif /* !CFG_NO_FLASH */
700
701         WATCHDOG_RESET ();
702
703         /* initialize higher level parts of CPU like time base and timers */
704         cpu_init_r ();
705
706         WATCHDOG_RESET ();
707
708         /* initialize malloc() area */
709         mem_malloc_init ();
710         malloc_bin_reloc ();
711
712 #ifdef CONFIG_SPI
713 # if !defined(CFG_ENV_IS_IN_EEPROM)
714         spi_init_f ();
715 # endif
716         spi_init_r ();
717 #endif
718
719         /* relocate environment function pointers etc. */
720         env_relocate ();
721
722         /*
723          * Fill in missing fields of bd_info.
724          * We do this here, where we have "normal" access to the
725          * environment; we used to do this still running from ROM,
726          * where had to use getenv_r(), which can be pretty slow when
727          * the environment is in EEPROM.
728          */
729         s = getenv ("ethaddr");
730 #if defined (CONFIG_MBX) || defined (CONFIG_RPXCLASSIC) || defined(CONFIG_IAD210)
731         if (s == NULL)
732                 board_get_enetaddr (bd->bi_enetaddr);
733         else
734 #endif
735                 for (i = 0; i < 6; ++i) {
736                         bd->bi_enetaddr[i] = s ? simple_strtoul (s, &e, 16) : 0;
737                         if (s)
738                                 s = (*e) ? e + 1 : e;
739                 }
740 #ifdef  CONFIG_HERMES
741         if ((gd->board_type >> 16) == 2)
742                 bd->bi_ethspeed = gd->board_type & 0xFFFF;
743         else
744                 bd->bi_ethspeed = 0xFFFF;
745 #endif
746
747 #ifdef CONFIG_NX823
748         load_sernum_ethaddr ();
749 #endif
750
751 #if defined(CFG_GT_6426x) || defined(CONFIG_PN62)
752         /* handle the 2nd ethernet address */
753
754         s = getenv ("eth1addr");
755
756         for (i = 0; i < 6; ++i) {
757                 bd->bi_enet1addr[i] = s ? simple_strtoul (s, &e, 16) : 0;
758                 if (s)
759                         s = (*e) ? e + 1 : e;
760         }
761 #endif
762 #if defined(CFG_GT_6426x)
763         /* handle the 3rd ethernet address */
764
765         s = getenv ("eth2addr");
766
767         for (i = 0; i < 6; ++i) {
768                 bd->bi_enet2addr[i] = s ? simple_strtoul (s, &e, 16) : 0;
769                 if (s)
770                         s = (*e) ? e + 1 : e;
771         }
772 #endif
773
774
775 #if defined(CONFIG_TQM8xxL) || defined(CONFIG_TQM8260) || \
776     defined(CONFIG_CCM)
777         load_sernum_ethaddr ();
778 #endif
779         /* IP Address */
780         bd->bi_ip_addr = getenv_IPaddr ("ipaddr");
781
782         WATCHDOG_RESET ();
783
784 #if defined(CONFIG_PCI) && !defined(CONFIG_BAB7xx)
785         /*
786          * Do pci configuration
787          */
788         pci_init ();
789 #endif
790
791 /** leave this here (after malloc(), environment and PCI are working) **/
792         /* Initialize devices */
793         devices_init ();
794
795         /* allocate syscalls table (console_init_r will fill it in */
796         syscall_tbl = (void **) malloc (NR_SYSCALLS * sizeof (void *));
797
798         /* Initialize the console (after the relocation and devices init) */
799         console_init_r ();
800 /** ** ** ** ** ** ** ** ** ** ** ** ** ** ** ** ** ** ** ** ** **/
801         syscalls_init ();
802
803 #if defined(CONFIG_CCM)         || \
804     defined(CONFIG_COGENT)      || \
805     defined(CONFIG_CPCI405)     || \
806     defined(CONFIG_EVB64260)    || \
807     defined(CONFIG_HYMOD)       || \
808     defined(CONFIG_KUP4K)       || \
809     defined(CONFIG_LWMON)       || \
810     defined(CONFIG_PCU_E)       || \
811     defined(CONFIG_W7O)         || \
812     defined(CONFIG_MISC_INIT_R)
813         /* miscellaneous platform dependent initialisations */
814         misc_init_r ();
815 #endif
816
817 #ifdef  CONFIG_HERMES
818         if (bd->bi_ethspeed != 0xFFFF)
819                 hermes_start_lxt980 ((int) bd->bi_ethspeed);
820 #endif
821
822 #if (CONFIG_COMMANDS & CFG_CMD_NET) && ( \
823     defined(CONFIG_CCM)         || \
824     defined(CONFIG_EP8260)      || \
825     defined(CONFIG_IP860)       || \
826     defined(CONFIG_IVML24)      || \
827     defined(CONFIG_IVMS8)       || \
828     defined(CONFIG_LWMON)       || \
829     defined(CONFIG_MPC8260ADS)  || \
830     defined(CONFIG_PCU_E)       || \
831     defined(CONFIG_RPXSUPER)    || \
832     defined(CONFIG_SPD823TS)    )
833
834         WATCHDOG_RESET ();
835 # ifdef DEBUG
836         puts ("Reset Ethernet PHY\n");
837 # endif
838         reset_phy ();
839 #endif
840
841 #if (CONFIG_COMMANDS & CFG_CMD_KGDB)
842         WATCHDOG_RESET ();
843         puts ("KGDB:  ");
844         kgdb_init ();
845 #endif
846
847 #ifdef DEBUG
848         printf ("U-Boot relocated to %08lx\n", dest_addr);
849 #endif
850
851         /*
852          * Enable Interrupts
853          */
854         interrupt_init ();
855
856         /* Must happen after interrupts are initialized since
857          * an irq handler gets installed
858          */
859 #ifdef CONFIG_SERIAL_SOFTWARE_FIFO
860         serial_buffered_init();
861 #endif
862
863 #ifdef CONFIG_STATUS_LED
864         status_led_set (STATUS_LED_BOOT, STATUS_LED_BLINKING);
865 #endif
866
867         udelay (20);
868
869         set_timer (0);
870
871         /* Insert function pointers now that we have relocated the code */
872
873         /* Initialize from environment */
874         if ((s = getenv ("loadaddr")) != NULL) {
875                 load_addr = simple_strtoul (s, NULL, 16);
876         }
877 #if (CONFIG_COMMANDS & CFG_CMD_NET)
878         if ((s = getenv ("bootfile")) != NULL) {
879                 copy_filename (BootFile, s, sizeof (BootFile));
880         }
881 #endif /* CFG_CMD_NET */
882
883         WATCHDOG_RESET ();
884
885 #if (CONFIG_COMMANDS & CFG_CMD_SCSI)
886         WATCHDOG_RESET ();
887         puts ("SCSI:  ");
888         scsi_init ();
889 #endif
890
891 #if (CONFIG_COMMANDS & CFG_CMD_DOC)
892         WATCHDOG_RESET ();
893         puts ("DOC:   ");
894         doc_init ();
895 #endif
896
897 #if (CONFIG_COMMANDS & CFG_CMD_NET) && defined(CONFIG_NET_MULTI)
898         WATCHDOG_RESET ();
899         puts ("Net:   ");
900         eth_initialize (bd);
901 #endif
902
903 #ifdef CONFIG_POST
904         post_run (NULL, POST_RAM | post_bootmode_get(0));
905         if (post_bootmode_get(0) & POST_POWERFAIL) {
906                 post_bootmode_clear();
907                 board_poweroff();
908         }
909 #endif
910
911 #if (CONFIG_COMMANDS & CFG_CMD_PCMCIA) && !(CONFIG_COMMANDS & CFG_CMD_IDE)
912         WATCHDOG_RESET ();
913         puts ("PCMCIA:");
914         pcmcia_init ();
915 #endif
916
917 #if (CONFIG_COMMANDS & CFG_CMD_IDE)
918         WATCHDOG_RESET ();
919 # ifdef CONFIG_IDE_8xx_PCCARD
920         puts ("PCMCIA:");
921 # else
922         puts ("IDE:   ");
923 #endif
924         ide_init ();
925 #endif /* CFG_CMD_IDE */
926
927 #ifdef CONFIG_LAST_STAGE_INIT
928         WATCHDOG_RESET ();
929         /*
930          * Some parts can be only initialized if all others (like
931          * Interrupts) are up and running (i.e. the PC-style ISA
932          * keyboard).
933          */
934         last_stage_init ();
935 #endif
936
937 #if (CONFIG_COMMANDS & CFG_CMD_BEDBUG)
938         WATCHDOG_RESET ();
939         bedbug_init ();
940 #endif
941
942 #if defined(CONFIG_PRAM) || defined(CONFIG_LOGBUFFER)
943         /*
944          * Export available size of memory for Linux,
945          * taking into account the protected RAM at top of memory
946          */
947         {
948                 ulong pram;
949                 uchar memsz[32];
950 #ifdef CONFIG_PRAM
951                 char *s;
952
953                 if ((s = getenv ("pram")) != NULL) {
954                         pram = simple_strtoul (s, NULL, 10);
955                 } else {
956                         pram = CONFIG_PRAM;
957                 }
958 #else
959                 pram=0;
960 #endif
961 #ifdef CONFIG_LOGBUFFER
962                 /* Also take the logbuffer into account (pram is in kB) */
963                 pram += (LOGBUFF_LEN+LOGBUFF_OVERHEAD)/1024;
964 #endif
965                 sprintf (memsz, "%ldk", (bd->bi_memsize / 1024) - pram);
966                 setenv ("mem", memsz);
967         }
968 #endif
969
970         /* Initialization complete - start the monitor */
971
972         /* main_loop() can return to retry autoboot, if so just run it again. */
973         for (;;) {
974                 WATCHDOG_RESET ();
975                 main_loop ();
976         }
977
978         /* NOTREACHED - no way out of command loop except booting */
979 }
980
981 void hang (void)
982 {
983         puts ("### ERROR ### Please RESET the board ###\n");
984         for (;;);
985 }
986
987 #if 0 /* We could use plain global data, but the resulting code is bigger */
988 /*
989  * Pointer to initial global data area
990  *
991  * Here we initialize it.
992  */
993 #undef  XTRN_DECLARE_GLOBAL_DATA_PTR
994 #define XTRN_DECLARE_GLOBAL_DATA_PTR    /* empty = allocate here */
995 DECLARE_GLOBAL_DATA_PTR = (gd_t *) (CFG_INIT_RAM_ADDR + CFG_GBL_DATA_OFFSET);
996 #endif  /* 0 */
997
998 /************************************************************************/