blob: 5fc63d5a78decc0d2d5e305e60c6484bbe199c6e [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 +000041extern int timer_init(void);
42
wdenk7cb22f92003-12-27 19:24:54 +000043extern int incaip_set_cpuclk(void);
44
wdenk3b57fe02003-05-30 12:48:29 +000045extern ulong uboot_end_data;
46extern ulong uboot_end;
47
48ulong monitor_flash_len;
49
wdenkc0218802003-03-27 12:09:35 +000050static char *failed = "*** failed ***\n";
51
52/*
Jean-Christophe PLAGNIOL-VILLARD5c150102007-11-13 09:11:05 +010053 * mips_io_port_base is the begin of the address space to which x86 style
54 * I/O ports are mapped.
55 */
56unsigned long mips_io_port_base = -1;
wdenkc0218802003-03-27 12:09:35 +000057
Stefan Roesedb08eca2008-11-12 13:18:02 +010058int __board_early_init_f(void)
59{
60 /*
61 * Nothing to do in this dummy implementation
62 */
63 return 0;
64}
Wolfgang Denkcc257e42011-12-08 02:01:49 +000065int board_early_init_f(void)
66 __attribute__((weak, alias("__board_early_init_f")));
Stefan Roesedb08eca2008-11-12 13:18:02 +010067
Wolfgang Denkcc257e42011-12-08 02:01:49 +000068static int init_func_ram(void)
wdenkc0218802003-03-27 12:09:35 +000069{
wdenkc0218802003-03-27 12:09:35 +000070#ifdef CONFIG_BOARD_TYPES
71 int board_type = gd->board_type;
72#else
73 int board_type = 0; /* use dummy arg */
74#endif
Wolfgang Denkcc257e42011-12-08 02:01:49 +000075 puts("DRAM: ");
wdenkc0218802003-03-27 12:09:35 +000076
Wolfgang Denkcc257e42011-12-08 02:01:49 +000077 gd->ram_size = initdram(board_type);
78 if (gd->ram_size > 0) {
79 print_size(gd->ram_size, "\n");
80 return 0;
wdenkc0218802003-03-27 12:09:35 +000081 }
Wolfgang Denkcc257e42011-12-08 02:01:49 +000082 puts(failed);
83 return 1;
wdenkc0218802003-03-27 12:09:35 +000084}
85
86static int display_banner(void)
87{
88
Wolfgang Denkcc257e42011-12-08 02:01:49 +000089 printf("\n\n%s\n\n", version_string);
90 return 0;
wdenkc0218802003-03-27 12:09:35 +000091}
92
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +020093#ifndef CONFIG_SYS_NO_FLASH
wdenkc0218802003-03-27 12:09:35 +000094static void display_flash_config(ulong size)
95{
Wolfgang Denkcc257e42011-12-08 02:01:49 +000096 puts("Flash: ");
97 print_size(size, "\n");
wdenkc0218802003-03-27 12:09:35 +000098}
Jean-Christophe PLAGNIOL-VILLARDbeeccf72008-02-17 16:58:04 +010099#endif
wdenkc0218802003-03-27 12:09:35 +0000100
Wolfgang Denkcc257e42011-12-08 02:01:49 +0000101static int init_baudrate(void)
wdenkc0218802003-03-27 12:09:35 +0000102{
Simon Glass98e46112011-10-13 14:43:11 +0000103 gd->baudrate = getenv_ulong("baudrate", 10, CONFIG_BAUDRATE);
104 return 0;
wdenkc0218802003-03-27 12:09:35 +0000105}
106
107
108/*
109 * Breath some life into the board...
110 *
111 * The first part of initialization is running from Flash memory;
112 * its main purpose is to initialize the RAM so that we
113 * can relocate the monitor code to RAM.
114 */
115
116/*
117 * All attempts to come up with a "common" initialization sequence
118 * that works for all boards and architectures failed: some of the
119 * requirements are just _too_ different. To get rid of the resulting
120 * mess of board dependend #ifdef'ed code we now make the whole
121 * initialization sequence configurable to the user.
122 *
123 * The requirements for any new initalization function is simple: it
124 * receives a pointer to the "global data" structure as it's only
125 * argument, and returns an integer return code, where 0 means
126 * "continue" and != 0 means "fatal error, hang the system".
127 */
Wolfgang Denkcc257e42011-12-08 02:01:49 +0000128typedef int (init_fnc_t)(void);
wdenkc0218802003-03-27 12:09:35 +0000129
130init_fnc_t *init_sequence[] = {
Stefan Roesedb08eca2008-11-12 13:18:02 +0100131 board_early_init_f,
wdenkc0218802003-03-27 12:09:35 +0000132 timer_init,
133 env_init, /* initialize environment */
wdenk7cb22f92003-12-27 19:24:54 +0000134#ifdef CONFIG_INCA_IP
Wolfgang Denkcc257e42011-12-08 02:01:49 +0000135 incaip_set_cpuclk, /* set cpu clock according to env. variable */
wdenk7cb22f92003-12-27 19:24:54 +0000136#endif
Wolfgang Denkcc257e42011-12-08 02:01:49 +0000137 init_baudrate, /* initialize baudrate settings */
wdenkc0218802003-03-27 12:09:35 +0000138 serial_init, /* serial communications setup */
139 console_init_f,
140 display_banner, /* say that we are here */
wdenk85ec0bc2003-03-31 16:34:49 +0000141 checkboard,
wdenkc0218802003-03-27 12:09:35 +0000142 init_func_ram,
143 NULL,
144};
145
146
147void board_init_f(ulong bootflag)
148{
wdenkc0218802003-03-27 12:09:35 +0000149 gd_t gd_data, *id;
150 bd_t *bd;
151 init_fnc_t **init_fnc_ptr;
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200152 ulong addr, addr_sp, len = (ulong)&uboot_end - CONFIG_SYS_MONITOR_BASE;
Wolfgang Denkc75eba32005-12-01 02:15:07 +0100153 ulong *s;
wdenkc0218802003-03-27 12:09:35 +0000154
wdenk69459792004-05-29 16:53:29 +0000155 /* Pointer is writable since we allocated a register for it.
156 */
wdenkc0218802003-03-27 12:09:35 +0000157 gd = &gd_data;
wdenk93f6a672004-07-01 20:28:03 +0000158 /* compiler optimization barrier needed for GCC >= 3.4 */
Wolfgang Denkcc257e42011-12-08 02:01:49 +0000159 __asm__ __volatile__("" : : : "memory");
wdenk93f6a672004-07-01 20:28:03 +0000160
Wolfgang Denkcc257e42011-12-08 02:01:49 +0000161 memset((void *)gd, 0, sizeof(gd_t));
wdenkc0218802003-03-27 12:09:35 +0000162
163 for (init_fnc_ptr = init_sequence; *init_fnc_ptr; ++init_fnc_ptr) {
Wolfgang Denkcc257e42011-12-08 02:01:49 +0000164 if ((*init_fnc_ptr)() != 0)
165 hang();
wdenkc0218802003-03-27 12:09:35 +0000166 }
167
168 /*
169 * Now that we have DRAM mapped and working, we can
170 * relocate the code and continue running from DRAM.
171 */
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200172 addr = CONFIG_SYS_SDRAM_BASE + gd->ram_size;
wdenkc0218802003-03-27 12:09:35 +0000173
wdenk69459792004-05-29 16:53:29 +0000174 /* We can reserve some RAM "on top" here.
175 */
wdenkc0218802003-03-27 12:09:35 +0000176
wdenk69459792004-05-29 16:53:29 +0000177 /* round down to next 4 kB limit.
178 */
wdenkc0218802003-03-27 12:09:35 +0000179 addr &= ~(4096 - 1);
Wolfgang Denkcc257e42011-12-08 02:01:49 +0000180 debug("Top of RAM usable for U-Boot at: %08lx\n", addr);
wdenk8bde7f72003-06-27 21:31:46 +0000181
wdenk69459792004-05-29 16:53:29 +0000182 /* Reserve memory for U-Boot code, data & bss
183 * round down to next 16 kB limit
184 */
wdenkc0218802003-03-27 12:09:35 +0000185 addr -= len;
wdenk3b57fe02003-05-30 12:48:29 +0000186 addr &= ~(16 * 1024 - 1);
wdenkc0218802003-03-27 12:09:35 +0000187
Wolfgang Denkcc257e42011-12-08 02:01:49 +0000188 debug("Reserving %ldk for U-Boot at: %08lx\n", len >> 10, addr);
wdenkc0218802003-03-27 12:09:35 +0000189
wdenk69459792004-05-29 16:53:29 +0000190 /* Reserve memory for malloc() arena.
191 */
wdenkc0218802003-03-27 12:09:35 +0000192 addr_sp = addr - TOTAL_MALLOC_LEN;
Wolfgang Denkcc257e42011-12-08 02:01:49 +0000193 debug("Reserving %dk for malloc() at: %08lx\n",
wdenkc0218802003-03-27 12:09:35 +0000194 TOTAL_MALLOC_LEN >> 10, addr_sp);
wdenkc0218802003-03-27 12:09:35 +0000195
196 /*
197 * (permanently) allocate a Board Info struct
198 * and a permanent copy of the "global" data
199 */
200 addr_sp -= sizeof(bd_t);
201 bd = (bd_t *)addr_sp;
202 gd->bd = bd;
Wolfgang Denkcc257e42011-12-08 02:01:49 +0000203 debug("Reserving %zu Bytes for Board Info at: %08lx\n",
wdenkc0218802003-03-27 12:09:35 +0000204 sizeof(bd_t), addr_sp);
wdenk69459792004-05-29 16:53:29 +0000205
wdenkc0218802003-03-27 12:09:35 +0000206 addr_sp -= sizeof(gd_t);
207 id = (gd_t *)addr_sp;
Wolfgang Denkcc257e42011-12-08 02:01:49 +0000208 debug("Reserving %zu Bytes for Global Data at: %08lx\n",
209 sizeof(gd_t), addr_sp);
wdenkc0218802003-03-27 12:09:35 +0000210
Jean-Christophe PLAGNIOL-VILLARDbeeccf72008-02-17 16:58:04 +0100211 /* Reserve memory for boot params.
wdenk69459792004-05-29 16:53:29 +0000212 */
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200213 addr_sp -= CONFIG_SYS_BOOTPARAMS_LEN;
wdenkc0218802003-03-27 12:09:35 +0000214 bd->bi_boot_params = addr_sp;
Wolfgang Denkcc257e42011-12-08 02:01:49 +0000215 debug("Reserving %dk for boot params() at: %08lx\n",
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200216 CONFIG_SYS_BOOTPARAMS_LEN >> 10, addr_sp);
wdenkc0218802003-03-27 12:09:35 +0000217
218 /*
219 * Finally, we set up a new (bigger) stack.
220 *
221 * Leave some safety gap for SP, force alignment on 16 byte boundary
222 * Clear initial stack frame
223 */
224 addr_sp -= 16;
225 addr_sp &= ~0xF;
Wolfgang Denkc75eba32005-12-01 02:15:07 +0100226 s = (ulong *)addr_sp;
227 *s-- = 0;
228 *s-- = 0;
229 addr_sp = (ulong)s;
Wolfgang Denkcc257e42011-12-08 02:01:49 +0000230 debug("Stack Pointer at: %08lx\n", addr_sp);
wdenk69459792004-05-29 16:53:29 +0000231
wdenkc0218802003-03-27 12:09:35 +0000232 /*
233 * Save local variables to board info struct
234 */
Wolfgang Denkcc257e42011-12-08 02:01:49 +0000235 bd->bi_memstart = CONFIG_SYS_SDRAM_BASE; /* start of DRAM */
236 bd->bi_memsize = gd->ram_size; /* size of DRAM in bytes */
wdenkc0218802003-03-27 12:09:35 +0000237 bd->bi_baudrate = gd->baudrate; /* Console Baudrate */
238
Wolfgang Denkcc257e42011-12-08 02:01:49 +0000239 memcpy(id, (void *)gd, sizeof(gd_t));
wdenk3e386912003-04-05 00:53:31 +0000240
Wolfgang Denkcc257e42011-12-08 02:01:49 +0000241 relocate_code(addr_sp, id, addr);
wdenkc0218802003-03-27 12:09:35 +0000242
243 /* NOTREACHED - relocate_code() does not return */
244}
Wolfgang Denkcc257e42011-12-08 02:01:49 +0000245
246/*
wdenkc0218802003-03-27 12:09:35 +0000247 * This is the next part if the initialization sequence: we are now
248 * running from RAM and have a "normal" C environment, i. e. global
249 * data can be written, BSS has been cleared, the stack size in not
250 * that critical any more, etc.
wdenkc0218802003-03-27 12:09:35 +0000251 */
252
Wolfgang Denkcc257e42011-12-08 02:01:49 +0000253void board_init_r(gd_t *id, ulong dest_addr)
wdenkc0218802003-03-27 12:09:35 +0000254{
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200255#ifndef CONFIG_SYS_NO_FLASH
wdenkc0218802003-03-27 12:09:35 +0000256 ulong size;
Jean-Christophe PLAGNIOL-VILLARDbeeccf72008-02-17 16:58:04 +0100257#endif
Wolfgang Denkcc257e42011-12-08 02:01:49 +0000258 extern void malloc_bin_reloc(void);
Jean-Christophe PLAGNIOL-VILLARD93f6d722008-09-10 22:48:00 +0200259#ifndef CONFIG_ENV_IS_NOWHERE
Wolfgang Denkcc257e42011-12-08 02:01:49 +0000260 extern char *env_name_spec;
wdenkc0218802003-03-27 12:09:35 +0000261#endif
Shinya Kuribayashic06326c2009-05-16 09:12:09 +0900262 char *s;
wdenkc0218802003-03-27 12:09:35 +0000263 bd_t *bd;
wdenkc0218802003-03-27 12:09:35 +0000264
265 gd = id;
266 gd->flags |= GD_FLG_RELOC; /* tell others: relocation done */
267
Wolfgang Denkcc257e42011-12-08 02:01:49 +0000268 debug("Now running in RAM - U-Boot at: %08lx\n", dest_addr);
wdenkc0218802003-03-27 12:09:35 +0000269
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200270 gd->reloc_off = dest_addr - CONFIG_SYS_MONITOR_BASE;
wdenkc0218802003-03-27 12:09:35 +0000271
wdenk3b57fe02003-05-30 12:48:29 +0000272 monitor_flash_len = (ulong)&uboot_end_data - dest_addr;
273
Wolfgang Denk2e5167c2010-10-28 20:00:11 +0200274#if defined(CONFIG_NEEDS_MANUAL_RELOC)
wdenkc0218802003-03-27 12:09:35 +0000275 /*
276 * We have to relocate the command table manually
277 */
Heiko Schocher620f1f62010-09-17 13:10:33 +0200278 fixup_cmdtable(&__u_boot_cmd_start,
279 (ulong)(&__u_boot_cmd_end - &__u_boot_cmd_start));
Wolfgang Denk2e5167c2010-10-28 20:00:11 +0200280#endif /* defined(CONFIG_NEEDS_MANUAL_RELOC) */
wdenkc0218802003-03-27 12:09:35 +0000281
wdenkc0218802003-03-27 12:09:35 +0000282 /* there are some other pointer constants we must deal with */
Jean-Christophe PLAGNIOL-VILLARD93f6d722008-09-10 22:48:00 +0200283#ifndef CONFIG_ENV_IS_NOWHERE
wdenkc0218802003-03-27 12:09:35 +0000284 env_name_spec += gd->reloc_off;
285#endif
wdenk8bde7f72003-06-27 21:31:46 +0000286
Jean-Christophe PLAGNIOL-VILLARDbeeccf72008-02-17 16:58:04 +0100287 bd = gd->bd;
288
Peter Tyserd4e8ada2009-08-21 23:05:21 -0500289 /* The Malloc area is immediately below the monitor copy in DRAM */
Peter Tysera483a162009-08-21 23:05:20 -0500290 mem_malloc_init(CONFIG_SYS_MONITOR_BASE + gd->reloc_off -
291 TOTAL_MALLOC_LEN, TOTAL_MALLOC_LEN);
Stefan Roesec790b042009-05-11 15:50:12 +0200292 malloc_bin_reloc();
293
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200294#ifndef CONFIG_SYS_NO_FLASH
wdenkc0218802003-03-27 12:09:35 +0000295 /* configure available FLASH banks */
296 size = flash_init();
Wolfgang Denkcc257e42011-12-08 02:01:49 +0000297 display_flash_config(size);
wdenkc0218802003-03-27 12:09:35 +0000298 bd->bi_flashsize = size;
Jean-Christophe PLAGNIOL-VILLARDbeeccf72008-02-17 16:58:04 +0100299#endif
300
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200301 bd->bi_flashstart = CONFIG_SYS_FLASH_BASE;
302#if CONFIG_SYS_MONITOR_BASE == CONFIG_SYS_FLASH_BASE
wdenk3b57fe02003-05-30 12:48:29 +0000303 bd->bi_flashoffset = monitor_flash_len; /* reserved area for U-Boot */
wdenkc0218802003-03-27 12:09:35 +0000304#else
305 bd->bi_flashoffset = 0;
306#endif
307
Stefan Roese9d23fc52008-11-12 13:18:19 +0100308#ifdef CONFIG_CMD_NAND
Wolfgang Denkcc257e42011-12-08 02:01:49 +0000309 puts("NAND: ");
310 nand_init(); /* go init the NAND */
Stefan Roese9d23fc52008-11-12 13:18:19 +0100311#endif
312
313#if defined(CONFIG_CMD_ONENAND)
314 onenand_init();
315#endif
316
wdenkc0218802003-03-27 12:09:35 +0000317 /* relocate environment function pointers etc. */
318 env_relocate();
319
wdenkc0218802003-03-27 12:09:35 +0000320 /* IP Address */
321 bd->bi_ip_addr = getenv_IPaddr("ipaddr");
322
wdenkf4863a72004-02-07 01:27:10 +0000323#if defined(CONFIG_PCI)
324 /*
325 * Do pci configuration
326 */
327 pci_init();
328#endif
329
wdenkc0218802003-03-27 12:09:35 +0000330/** leave this here (after malloc(), environment and PCI are working) **/
Jean-Christophe PLAGNIOL-VILLARD52cb4d42009-05-16 12:14:54 +0200331 /* Initialize stdio devices */
Wolfgang Denkcc257e42011-12-08 02:01:49 +0000332 stdio_init();
wdenkc0218802003-03-27 12:09:35 +0000333
Wolfgang Denkcc257e42011-12-08 02:01:49 +0000334 jumptable_init();
wdenkc0218802003-03-27 12:09:35 +0000335
336 /* Initialize the console (after the relocation and devices init) */
Wolfgang Denkcc257e42011-12-08 02:01:49 +0000337 console_init_r();
wdenkc0218802003-03-27 12:09:35 +0000338/** ** ** ** ** ** ** ** ** ** ** ** ** ** ** ** ** ** ** ** ** **/
339
wdenk3e386912003-04-05 00:53:31 +0000340 /* Initialize from environment */
Simon Glass98e46112011-10-13 14:43:11 +0000341 load_addr = getenv_ulong("loadaddr", 16, load_addr);
Jon Loeliger7def6b32007-07-09 18:02:11 -0500342#if defined(CONFIG_CMD_NET)
Wolfgang Denkcc257e42011-12-08 02:01:49 +0000343 s = getenv("bootfile");
344 if (s != NULL)
345 copy_filename(BootFile, s, sizeof(BootFile));
Jon Loeligerb3aff0c2007-07-10 11:19:50 -0500346#endif
wdenk3e386912003-04-05 00:53:31 +0000347
Jason McMullan89a15502008-05-30 00:53:37 +0900348#ifdef CONFIG_CMD_SPI
Wolfgang Denkcc257e42011-12-08 02:01:49 +0000349 puts("SPI: ");
350 spi_init(); /* go init the SPI */
351 puts("ready\n");
Jason McMullan89a15502008-05-30 00:53:37 +0900352#endif
353
wdenk3e386912003-04-05 00:53:31 +0000354#if defined(CONFIG_MISC_INIT_R)
355 /* miscellaneous platform dependent initialisations */
Wolfgang Denkcc257e42011-12-08 02:01:49 +0000356 misc_init_r();
wdenk3e386912003-04-05 00:53:31 +0000357#endif
358
Luigi 'Comio' Mantellini310cecb2009-10-10 12:42:21 +0200359#ifdef CONFIG_BITBANGMII
360 bb_miiphy_init();
361#endif
Jon Loeliger7def6b32007-07-09 18:02:11 -0500362#if defined(CONFIG_CMD_NET)
Wolfgang Denkcc257e42011-12-08 02:01:49 +0000363 puts("Net: ");
wdenkc0218802003-03-27 12:09:35 +0000364 eth_initialize(gd->bd);
365#endif
366
367 /* main_loop() can return to retry autoboot, if so just run it again. */
Wolfgang Denkcc257e42011-12-08 02:01:49 +0000368 for (;;)
369 main_loop();
wdenkc0218802003-03-27 12:09:35 +0000370
371 /* NOTREACHED - no way out of command loop except booting */
372}
373
Wolfgang Denkcc257e42011-12-08 02:01:49 +0000374void hang(void)
wdenkc0218802003-03-27 12:09:35 +0000375{
Wolfgang Denkcc257e42011-12-08 02:01:49 +0000376 puts("### ERROR ### Please RESET the board ###\n");
377 for (;;)
378 ;
wdenkc0218802003-03-27 12:09:35 +0000379}