blob: 4f85bbdab2799307641b7e9b5aed1953b0744d44 [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>
Jean-Christophe PLAGNIOL-VILLARD52cb4d42009-05-16 12:14:54 +020027#include <stdio_dev.h>
wdenkc0218802003-03-27 12:09:35 +000028#include <version.h>
29#include <net.h>
30#include <environment.h>
Jason McMullane996bc32008-05-30 00:53:37 +090031#include <nand.h>
Stefan Roese9d23fc52008-11-12 13:18:19 +010032#include <onenand_uboot.h>
Jason McMullan89a15502008-05-30 00:53:37 +090033#include <spi.h>
wdenkc0218802003-03-27 12:09:35 +000034
Luigi 'Comio' Mantellini310cecb2009-10-10 12:42:21 +020035#ifdef CONFIG_BITBANGMII
36#include <miiphy.h>
37#endif
38
Wolfgang Denkc75eba32005-12-01 02:15:07 +010039DECLARE_GLOBAL_DATA_PTR;
40
wdenkc0218802003-03-27 12:09:35 +000041#undef DEBUG
42
43extern int timer_init(void);
44
wdenk7cb22f92003-12-27 19:24:54 +000045extern int incaip_set_cpuclk(void);
46
wdenk3b57fe02003-05-30 12:48:29 +000047extern ulong uboot_end_data;
48extern ulong uboot_end;
49
50ulong monitor_flash_len;
51
wdenkc0218802003-03-27 12:09:35 +000052static char *failed = "*** failed ***\n";
53
54/*
Jean-Christophe PLAGNIOL-VILLARD5c150102007-11-13 09:11:05 +010055 * mips_io_port_base is the begin of the address space to which x86 style
56 * I/O ports are mapped.
57 */
58unsigned long mips_io_port_base = -1;
wdenkc0218802003-03-27 12:09:35 +000059
Stefan Roesedb08eca2008-11-12 13:18:02 +010060int __board_early_init_f(void)
61{
62 /*
63 * Nothing to do in this dummy implementation
64 */
65 return 0;
66}
67int board_early_init_f(void) __attribute__((weak, alias("__board_early_init_f")));
68
wdenkc0218802003-03-27 12:09:35 +000069
70static int init_func_ram (void)
71{
wdenkc0218802003-03-27 12:09:35 +000072#ifdef CONFIG_BOARD_TYPES
73 int board_type = gd->board_type;
74#else
75 int board_type = 0; /* use dummy arg */
76#endif
77 puts ("DRAM: ");
78
79 if ((gd->ram_size = initdram (board_type)) > 0) {
80 print_size (gd->ram_size, "\n");
81 return (0);
82 }
83 puts (failed);
84 return (1);
85}
86
87static int display_banner(void)
88{
89
90 printf ("\n\n%s\n\n", version_string);
91 return (0);
92}
93
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +020094#ifndef CONFIG_SYS_NO_FLASH
wdenkc0218802003-03-27 12:09:35 +000095static void display_flash_config(ulong size)
96{
97 puts ("Flash: ");
98 print_size (size, "\n");
99}
Jean-Christophe PLAGNIOL-VILLARDbeeccf72008-02-17 16:58:04 +0100100#endif
wdenkc0218802003-03-27 12:09:35 +0000101
102static int init_baudrate (void)
103{
Wolfgang Denkf013dac2005-12-04 00:40:34 +0100104 char tmp[64]; /* long enough for environment variables */
Wolfgang Denkcdb74972010-07-24 21:55:43 +0200105 int i = getenv_f("baudrate", tmp, sizeof (tmp));
wdenkc0218802003-03-27 12:09:35 +0000106
107 gd->baudrate = (i > 0)
108 ? (int) simple_strtoul (tmp, NULL, 10)
109 : CONFIG_BAUDRATE;
110
111 return (0);
112}
113
114
115/*
116 * Breath some life into the board...
117 *
118 * The first part of initialization is running from Flash memory;
119 * its main purpose is to initialize the RAM so that we
120 * can relocate the monitor code to RAM.
121 */
122
123/*
124 * All attempts to come up with a "common" initialization sequence
125 * that works for all boards and architectures failed: some of the
126 * requirements are just _too_ different. To get rid of the resulting
127 * mess of board dependend #ifdef'ed code we now make the whole
128 * initialization sequence configurable to the user.
129 *
130 * The requirements for any new initalization function is simple: it
131 * receives a pointer to the "global data" structure as it's only
132 * argument, and returns an integer return code, where 0 means
133 * "continue" and != 0 means "fatal error, hang the system".
134 */
135typedef int (init_fnc_t) (void);
136
137init_fnc_t *init_sequence[] = {
Stefan Roesedb08eca2008-11-12 13:18:02 +0100138 board_early_init_f,
wdenkc0218802003-03-27 12:09:35 +0000139 timer_init,
140 env_init, /* initialize environment */
wdenk7cb22f92003-12-27 19:24:54 +0000141#ifdef CONFIG_INCA_IP
142 incaip_set_cpuclk, /* set cpu clock according to environment variable */
143#endif
wdenkc0218802003-03-27 12:09:35 +0000144 init_baudrate, /* initialze baudrate settings */
145 serial_init, /* serial communications setup */
146 console_init_f,
147 display_banner, /* say that we are here */
wdenk85ec0bc2003-03-31 16:34:49 +0000148 checkboard,
wdenkc0218802003-03-27 12:09:35 +0000149 init_func_ram,
150 NULL,
151};
152
153
154void board_init_f(ulong bootflag)
155{
wdenkc0218802003-03-27 12:09:35 +0000156 gd_t gd_data, *id;
157 bd_t *bd;
158 init_fnc_t **init_fnc_ptr;
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200159 ulong addr, addr_sp, len = (ulong)&uboot_end - CONFIG_SYS_MONITOR_BASE;
Wolfgang Denkc75eba32005-12-01 02:15:07 +0100160 ulong *s;
wdenkc0218802003-03-27 12:09:35 +0000161
wdenk69459792004-05-29 16:53:29 +0000162 /* Pointer is writable since we allocated a register for it.
163 */
wdenkc0218802003-03-27 12:09:35 +0000164 gd = &gd_data;
wdenk93f6a672004-07-01 20:28:03 +0000165 /* compiler optimization barrier needed for GCC >= 3.4 */
166 __asm__ __volatile__("": : :"memory");
167
wdenk27b207f2003-07-24 23:38:38 +0000168 memset ((void *)gd, 0, sizeof (gd_t));
wdenkc0218802003-03-27 12:09:35 +0000169
170 for (init_fnc_ptr = init_sequence; *init_fnc_ptr; ++init_fnc_ptr) {
171 if ((*init_fnc_ptr)() != 0) {
172 hang ();
173 }
174 }
175
176 /*
177 * Now that we have DRAM mapped and working, we can
178 * relocate the code and continue running from DRAM.
179 */
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200180 addr = CONFIG_SYS_SDRAM_BASE + gd->ram_size;
wdenkc0218802003-03-27 12:09:35 +0000181
wdenk69459792004-05-29 16:53:29 +0000182 /* We can reserve some RAM "on top" here.
183 */
wdenkc0218802003-03-27 12:09:35 +0000184
wdenk69459792004-05-29 16:53:29 +0000185 /* round down to next 4 kB limit.
186 */
wdenkc0218802003-03-27 12:09:35 +0000187 addr &= ~(4096 - 1);
wdenk69459792004-05-29 16:53:29 +0000188 debug ("Top of RAM usable for U-Boot at: %08lx\n", addr);
wdenk8bde7f72003-06-27 21:31:46 +0000189
wdenk69459792004-05-29 16:53:29 +0000190 /* Reserve memory for U-Boot code, data & bss
191 * round down to next 16 kB limit
192 */
wdenkc0218802003-03-27 12:09:35 +0000193 addr -= len;
wdenk3b57fe02003-05-30 12:48:29 +0000194 addr &= ~(16 * 1024 - 1);
wdenkc0218802003-03-27 12:09:35 +0000195
wdenk69459792004-05-29 16:53:29 +0000196 debug ("Reserving %ldk for U-Boot at: %08lx\n", len >> 10, addr);
wdenkc0218802003-03-27 12:09:35 +0000197
wdenk69459792004-05-29 16:53:29 +0000198 /* Reserve memory for malloc() arena.
199 */
wdenkc0218802003-03-27 12:09:35 +0000200 addr_sp = addr - TOTAL_MALLOC_LEN;
wdenk69459792004-05-29 16:53:29 +0000201 debug ("Reserving %dk for malloc() at: %08lx\n",
wdenkc0218802003-03-27 12:09:35 +0000202 TOTAL_MALLOC_LEN >> 10, addr_sp);
wdenkc0218802003-03-27 12:09:35 +0000203
204 /*
205 * (permanently) allocate a Board Info struct
206 * and a permanent copy of the "global" data
207 */
208 addr_sp -= sizeof(bd_t);
209 bd = (bd_t *)addr_sp;
210 gd->bd = bd;
Wolfgang Denkb64f1902008-07-14 15:06:35 +0200211 debug ("Reserving %zu Bytes for Board Info at: %08lx\n",
wdenkc0218802003-03-27 12:09:35 +0000212 sizeof(bd_t), addr_sp);
wdenk69459792004-05-29 16:53:29 +0000213
wdenkc0218802003-03-27 12:09:35 +0000214 addr_sp -= sizeof(gd_t);
215 id = (gd_t *)addr_sp;
Wolfgang Denkb64f1902008-07-14 15:06:35 +0200216 debug ("Reserving %zu Bytes for Global Data at: %08lx\n",
wdenkc0218802003-03-27 12:09:35 +0000217 sizeof (gd_t), addr_sp);
wdenkc0218802003-03-27 12:09:35 +0000218
Jean-Christophe PLAGNIOL-VILLARDbeeccf72008-02-17 16:58:04 +0100219 /* Reserve memory for boot params.
wdenk69459792004-05-29 16:53:29 +0000220 */
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200221 addr_sp -= CONFIG_SYS_BOOTPARAMS_LEN;
wdenkc0218802003-03-27 12:09:35 +0000222 bd->bi_boot_params = addr_sp;
wdenk69459792004-05-29 16:53:29 +0000223 debug ("Reserving %dk for boot params() at: %08lx\n",
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200224 CONFIG_SYS_BOOTPARAMS_LEN >> 10, addr_sp);
wdenkc0218802003-03-27 12:09:35 +0000225
226 /*
227 * Finally, we set up a new (bigger) stack.
228 *
229 * Leave some safety gap for SP, force alignment on 16 byte boundary
230 * Clear initial stack frame
231 */
232 addr_sp -= 16;
233 addr_sp &= ~0xF;
Wolfgang Denkc75eba32005-12-01 02:15:07 +0100234 s = (ulong *)addr_sp;
235 *s-- = 0;
236 *s-- = 0;
237 addr_sp = (ulong)s;
wdenk69459792004-05-29 16:53:29 +0000238 debug ("Stack Pointer at: %08lx\n", addr_sp);
239
wdenkc0218802003-03-27 12:09:35 +0000240 /*
241 * Save local variables to board info struct
242 */
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200243 bd->bi_memstart = CONFIG_SYS_SDRAM_BASE; /* start of DRAM memory */
wdenkc0218802003-03-27 12:09:35 +0000244 bd->bi_memsize = gd->ram_size; /* size of DRAM memory in bytes */
245 bd->bi_baudrate = gd->baudrate; /* Console Baudrate */
246
wdenk27b207f2003-07-24 23:38:38 +0000247 memcpy (id, (void *)gd, sizeof (gd_t));
wdenk3e386912003-04-05 00:53:31 +0000248
wdenkc0218802003-03-27 12:09:35 +0000249 relocate_code (addr_sp, id, addr);
250
251 /* NOTREACHED - relocate_code() does not return */
252}
253/************************************************************************
254 *
255 * This is the next part if the initialization sequence: we are now
256 * running from RAM and have a "normal" C environment, i. e. global
257 * data can be written, BSS has been cleared, the stack size in not
258 * that critical any more, etc.
259 *
260 ************************************************************************
261 */
262
263void board_init_r (gd_t *id, ulong dest_addr)
264{
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200265#ifndef CONFIG_SYS_NO_FLASH
wdenkc0218802003-03-27 12:09:35 +0000266 ulong size;
Jean-Christophe PLAGNIOL-VILLARDbeeccf72008-02-17 16:58:04 +0100267#endif
wdenkc0218802003-03-27 12:09:35 +0000268 extern void malloc_bin_reloc (void);
Jean-Christophe PLAGNIOL-VILLARD93f6d722008-09-10 22:48:00 +0200269#ifndef CONFIG_ENV_IS_NOWHERE
wdenkc0218802003-03-27 12:09:35 +0000270 extern char * env_name_spec;
271#endif
Shinya Kuribayashic06326c2009-05-16 09:12:09 +0900272 char *s;
wdenkc0218802003-03-27 12:09:35 +0000273 bd_t *bd;
wdenkc0218802003-03-27 12:09:35 +0000274
275 gd = id;
276 gd->flags |= GD_FLG_RELOC; /* tell others: relocation done */
277
wdenk69459792004-05-29 16:53:29 +0000278 debug ("Now running in RAM - U-Boot at: %08lx\n", dest_addr);
wdenkc0218802003-03-27 12:09:35 +0000279
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200280 gd->reloc_off = dest_addr - CONFIG_SYS_MONITOR_BASE;
wdenkc0218802003-03-27 12:09:35 +0000281
wdenk3b57fe02003-05-30 12:48:29 +0000282 monitor_flash_len = (ulong)&uboot_end_data - dest_addr;
283
Wolfgang Denk2e5167c2010-10-28 20:00:11 +0200284#if defined(CONFIG_NEEDS_MANUAL_RELOC)
wdenkc0218802003-03-27 12:09:35 +0000285 /*
286 * We have to relocate the command table manually
287 */
Heiko Schocher620f1f62010-09-17 13:10:33 +0200288 fixup_cmdtable(&__u_boot_cmd_start,
289 (ulong)(&__u_boot_cmd_end - &__u_boot_cmd_start));
Wolfgang Denk2e5167c2010-10-28 20:00:11 +0200290#endif /* defined(CONFIG_NEEDS_MANUAL_RELOC) */
wdenkc0218802003-03-27 12:09:35 +0000291
wdenkc0218802003-03-27 12:09:35 +0000292 /* there are some other pointer constants we must deal with */
Jean-Christophe PLAGNIOL-VILLARD93f6d722008-09-10 22:48:00 +0200293#ifndef CONFIG_ENV_IS_NOWHERE
wdenkc0218802003-03-27 12:09:35 +0000294 env_name_spec += gd->reloc_off;
295#endif
wdenk8bde7f72003-06-27 21:31:46 +0000296
Jean-Christophe PLAGNIOL-VILLARDbeeccf72008-02-17 16:58:04 +0100297 bd = gd->bd;
298
Peter Tyserd4e8ada2009-08-21 23:05:21 -0500299 /* The Malloc area is immediately below the monitor copy in DRAM */
Peter Tysera483a162009-08-21 23:05:20 -0500300 mem_malloc_init(CONFIG_SYS_MONITOR_BASE + gd->reloc_off -
301 TOTAL_MALLOC_LEN, TOTAL_MALLOC_LEN);
Stefan Roesec790b042009-05-11 15:50:12 +0200302 malloc_bin_reloc();
303
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200304#ifndef CONFIG_SYS_NO_FLASH
wdenkc0218802003-03-27 12:09:35 +0000305 /* configure available FLASH banks */
306 size = flash_init();
307 display_flash_config (size);
wdenkc0218802003-03-27 12:09:35 +0000308 bd->bi_flashsize = size;
Jean-Christophe PLAGNIOL-VILLARDbeeccf72008-02-17 16:58:04 +0100309#endif
310
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200311 bd->bi_flashstart = CONFIG_SYS_FLASH_BASE;
312#if CONFIG_SYS_MONITOR_BASE == CONFIG_SYS_FLASH_BASE
wdenk3b57fe02003-05-30 12:48:29 +0000313 bd->bi_flashoffset = monitor_flash_len; /* reserved area for U-Boot */
wdenkc0218802003-03-27 12:09:35 +0000314#else
315 bd->bi_flashoffset = 0;
316#endif
317
Stefan Roese9d23fc52008-11-12 13:18:19 +0100318#ifdef CONFIG_CMD_NAND
319 puts ("NAND: ");
320 nand_init (); /* go init the NAND */
321#endif
322
323#if defined(CONFIG_CMD_ONENAND)
324 onenand_init();
325#endif
326
wdenkc0218802003-03-27 12:09:35 +0000327 /* relocate environment function pointers etc. */
328 env_relocate();
329
wdenkc0218802003-03-27 12:09:35 +0000330 /* IP Address */
331 bd->bi_ip_addr = getenv_IPaddr("ipaddr");
332
wdenkf4863a72004-02-07 01:27:10 +0000333#if defined(CONFIG_PCI)
334 /*
335 * Do pci configuration
336 */
337 pci_init();
338#endif
339
wdenkc0218802003-03-27 12:09:35 +0000340/** leave this here (after malloc(), environment and PCI are working) **/
Jean-Christophe PLAGNIOL-VILLARD52cb4d42009-05-16 12:14:54 +0200341 /* Initialize stdio devices */
342 stdio_init ();
wdenkc0218802003-03-27 12:09:35 +0000343
wdenk27b207f2003-07-24 23:38:38 +0000344 jumptable_init ();
wdenkc0218802003-03-27 12:09:35 +0000345
346 /* Initialize the console (after the relocation and devices init) */
347 console_init_r ();
348/** ** ** ** ** ** ** ** ** ** ** ** ** ** ** ** ** ** ** ** ** **/
349
wdenk3e386912003-04-05 00:53:31 +0000350 /* Initialize from environment */
351 if ((s = getenv ("loadaddr")) != NULL) {
352 load_addr = simple_strtoul (s, NULL, 16);
353 }
Jon Loeliger7def6b32007-07-09 18:02:11 -0500354#if defined(CONFIG_CMD_NET)
wdenk3e386912003-04-05 00:53:31 +0000355 if ((s = getenv ("bootfile")) != NULL) {
356 copy_filename (BootFile, s, sizeof (BootFile));
357 }
Jon Loeligerb3aff0c2007-07-10 11:19:50 -0500358#endif
wdenk3e386912003-04-05 00:53:31 +0000359
Jason McMullan89a15502008-05-30 00:53:37 +0900360#ifdef CONFIG_CMD_SPI
361 puts ("SPI: ");
362 spi_init (); /* go init the SPI */
363 puts ("ready\n");
364#endif
365
wdenk3e386912003-04-05 00:53:31 +0000366#if defined(CONFIG_MISC_INIT_R)
367 /* miscellaneous platform dependent initialisations */
368 misc_init_r ();
369#endif
370
Luigi 'Comio' Mantellini310cecb2009-10-10 12:42:21 +0200371#ifdef CONFIG_BITBANGMII
372 bb_miiphy_init();
373#endif
Jon Loeliger7def6b32007-07-09 18:02:11 -0500374#if defined(CONFIG_CMD_NET)
Marian Balakowicz63ff0042005-10-28 22:30:33 +0200375#if defined(CONFIG_NET_MULTI)
wdenkc0218802003-03-27 12:09:35 +0000376 puts ("Net: ");
Marian Balakowicz63ff0042005-10-28 22:30:33 +0200377#endif
wdenkc0218802003-03-27 12:09:35 +0000378 eth_initialize(gd->bd);
379#endif
380
381 /* main_loop() can return to retry autoboot, if so just run it again. */
382 for (;;) {
383 main_loop ();
384 }
385
386 /* NOTREACHED - no way out of command loop except booting */
387}
388
389void hang (void)
390{
391 puts ("### ERROR ### Please RESET the board ###\n");
392 for (;;);
393}