blob: d79e1837d9a37c21c07556618a22dc9c60e173e7 [file] [log] [blame]
wdenkbb1b8262003-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>
Joe Hershberger7fe0ac82012-12-11 17:52:50 +000027#include <serial.h>
Jean-Christophe PLAGNIOL-VILLARD2a7a0312009-05-16 12:14:54 +020028#include <stdio_dev.h>
wdenkbb1b8262003-03-27 12:09:35 +000029#include <version.h>
30#include <net.h>
31#include <environment.h>
Jason McMullan7d32b002008-05-30 00:53:37 +090032#include <nand.h>
Stefan Roese1af2a0d2008-11-12 13:18:19 +010033#include <onenand_uboot.h>
Jason McMullan733ad782008-05-30 00:53:37 +090034#include <spi.h>
wdenkbb1b8262003-03-27 12:09:35 +000035
Luigi 'Comio' Mantellini01db1552009-10-10 12:42:21 +020036#ifdef CONFIG_BITBANGMII
37#include <miiphy.h>
38#endif
39
Wolfgang Denk117b0b12005-12-01 02:15:07 +010040DECLARE_GLOBAL_DATA_PTR;
41
wdenkb9a83a92003-05-30 12:48:29 +000042ulong monitor_flash_len;
43
wdenkbb1b8262003-03-27 12:09:35 +000044static char *failed = "*** failed ***\n";
45
46/*
Jean-Christophe PLAGNIOL-VILLARD089dbb72007-11-13 09:11:05 +010047 * mips_io_port_base is the begin of the address space to which x86 style
48 * I/O ports are mapped.
49 */
Daniel Schwierzeck689eecd2012-12-12 13:13:48 +010050const unsigned long mips_io_port_base = -1;
wdenkbb1b8262003-03-27 12:09:35 +000051
Stefan Roese2b1c8152008-11-12 13:18:02 +010052int __board_early_init_f(void)
53{
54 /*
55 * Nothing to do in this dummy implementation
56 */
57 return 0;
58}
Wolfgang Denk11f98842011-12-08 02:01:49 +000059int board_early_init_f(void)
60 __attribute__((weak, alias("__board_early_init_f")));
Stefan Roese2b1c8152008-11-12 13:18:02 +010061
Wolfgang Denk11f98842011-12-08 02:01:49 +000062static int init_func_ram(void)
wdenkbb1b8262003-03-27 12:09:35 +000063{
wdenkbb1b8262003-03-27 12:09:35 +000064#ifdef CONFIG_BOARD_TYPES
65 int board_type = gd->board_type;
66#else
67 int board_type = 0; /* use dummy arg */
68#endif
Wolfgang Denk11f98842011-12-08 02:01:49 +000069 puts("DRAM: ");
wdenkbb1b8262003-03-27 12:09:35 +000070
Wolfgang Denk11f98842011-12-08 02:01:49 +000071 gd->ram_size = initdram(board_type);
72 if (gd->ram_size > 0) {
73 print_size(gd->ram_size, "\n");
74 return 0;
wdenkbb1b8262003-03-27 12:09:35 +000075 }
Wolfgang Denk11f98842011-12-08 02:01:49 +000076 puts(failed);
77 return 1;
wdenkbb1b8262003-03-27 12:09:35 +000078}
79
80static int display_banner(void)
81{
82
Wolfgang Denk11f98842011-12-08 02:01:49 +000083 printf("\n\n%s\n\n", version_string);
84 return 0;
wdenkbb1b8262003-03-27 12:09:35 +000085}
86
Jean-Christophe PLAGNIOL-VILLARD03836942008-10-16 15:01:15 +020087#ifndef CONFIG_SYS_NO_FLASH
wdenkbb1b8262003-03-27 12:09:35 +000088static void display_flash_config(ulong size)
89{
Wolfgang Denk11f98842011-12-08 02:01:49 +000090 puts("Flash: ");
91 print_size(size, "\n");
wdenkbb1b8262003-03-27 12:09:35 +000092}
Jean-Christophe PLAGNIOL-VILLARD3bd04ce2008-02-17 16:58:04 +010093#endif
wdenkbb1b8262003-03-27 12:09:35 +000094
Wolfgang Denk11f98842011-12-08 02:01:49 +000095static int init_baudrate(void)
wdenkbb1b8262003-03-27 12:09:35 +000096{
Simon Glass8ccbef92011-10-13 14:43:11 +000097 gd->baudrate = getenv_ulong("baudrate", 10, CONFIG_BAUDRATE);
98 return 0;
wdenkbb1b8262003-03-27 12:09:35 +000099}
100
101
102/*
103 * Breath some life into the board...
104 *
105 * The first part of initialization is running from Flash memory;
106 * its main purpose is to initialize the RAM so that we
107 * can relocate the monitor code to RAM.
108 */
109
110/*
111 * All attempts to come up with a "common" initialization sequence
112 * that works for all boards and architectures failed: some of the
113 * requirements are just _too_ different. To get rid of the resulting
114 * mess of board dependend #ifdef'ed code we now make the whole
115 * initialization sequence configurable to the user.
116 *
117 * The requirements for any new initalization function is simple: it
118 * receives a pointer to the "global data" structure as it's only
119 * argument, and returns an integer return code, where 0 means
120 * "continue" and != 0 means "fatal error, hang the system".
121 */
Wolfgang Denk11f98842011-12-08 02:01:49 +0000122typedef int (init_fnc_t)(void);
wdenkbb1b8262003-03-27 12:09:35 +0000123
124init_fnc_t *init_sequence[] = {
Stefan Roese2b1c8152008-11-12 13:18:02 +0100125 board_early_init_f,
wdenkbb1b8262003-03-27 12:09:35 +0000126 timer_init,
127 env_init, /* initialize environment */
wdenk67f13362003-12-27 19:24:54 +0000128#ifdef CONFIG_INCA_IP
Wolfgang Denk11f98842011-12-08 02:01:49 +0000129 incaip_set_cpuclk, /* set cpu clock according to env. variable */
wdenk67f13362003-12-27 19:24:54 +0000130#endif
Wolfgang Denk11f98842011-12-08 02:01:49 +0000131 init_baudrate, /* initialize baudrate settings */
wdenkbb1b8262003-03-27 12:09:35 +0000132 serial_init, /* serial communications setup */
133 console_init_f,
134 display_banner, /* say that we are here */
wdenk8dba0502003-03-31 16:34:49 +0000135 checkboard,
wdenkbb1b8262003-03-27 12:09:35 +0000136 init_func_ram,
137 NULL,
138};
139
140
141void board_init_f(ulong bootflag)
142{
wdenkbb1b8262003-03-27 12:09:35 +0000143 gd_t gd_data, *id;
144 bd_t *bd;
145 init_fnc_t **init_fnc_ptr;
Jean-Christophe PLAGNIOL-VILLARD03836942008-10-16 15:01:15 +0200146 ulong addr, addr_sp, len = (ulong)&uboot_end - CONFIG_SYS_MONITOR_BASE;
Wolfgang Denk117b0b12005-12-01 02:15:07 +0100147 ulong *s;
wdenkbb1b8262003-03-27 12:09:35 +0000148
wdenkcd914452004-05-29 16:53:29 +0000149 /* Pointer is writable since we allocated a register for it.
150 */
wdenkbb1b8262003-03-27 12:09:35 +0000151 gd = &gd_data;
wdenk3337af42004-07-01 20:28:03 +0000152 /* compiler optimization barrier needed for GCC >= 3.4 */
Wolfgang Denk11f98842011-12-08 02:01:49 +0000153 __asm__ __volatile__("" : : : "memory");
wdenk3337af42004-07-01 20:28:03 +0000154
Wolfgang Denk11f98842011-12-08 02:01:49 +0000155 memset((void *)gd, 0, sizeof(gd_t));
wdenkbb1b8262003-03-27 12:09:35 +0000156
157 for (init_fnc_ptr = init_sequence; *init_fnc_ptr; ++init_fnc_ptr) {
Wolfgang Denk11f98842011-12-08 02:01:49 +0000158 if ((*init_fnc_ptr)() != 0)
159 hang();
wdenkbb1b8262003-03-27 12:09:35 +0000160 }
161
162 /*
163 * Now that we have DRAM mapped and working, we can
164 * relocate the code and continue running from DRAM.
165 */
Jean-Christophe PLAGNIOL-VILLARD03836942008-10-16 15:01:15 +0200166 addr = CONFIG_SYS_SDRAM_BASE + gd->ram_size;
wdenkbb1b8262003-03-27 12:09:35 +0000167
wdenkcd914452004-05-29 16:53:29 +0000168 /* We can reserve some RAM "on top" here.
169 */
wdenkbb1b8262003-03-27 12:09:35 +0000170
wdenkcd914452004-05-29 16:53:29 +0000171 /* round down to next 4 kB limit.
172 */
wdenkbb1b8262003-03-27 12:09:35 +0000173 addr &= ~(4096 - 1);
Wolfgang Denk11f98842011-12-08 02:01:49 +0000174 debug("Top of RAM usable for U-Boot at: %08lx\n", addr);
wdenk57b2d802003-06-27 21:31:46 +0000175
wdenkcd914452004-05-29 16:53:29 +0000176 /* Reserve memory for U-Boot code, data & bss
177 * round down to next 16 kB limit
178 */
wdenkbb1b8262003-03-27 12:09:35 +0000179 addr -= len;
wdenkb9a83a92003-05-30 12:48:29 +0000180 addr &= ~(16 * 1024 - 1);
wdenkbb1b8262003-03-27 12:09:35 +0000181
Wolfgang Denk11f98842011-12-08 02:01:49 +0000182 debug("Reserving %ldk for U-Boot at: %08lx\n", len >> 10, addr);
wdenkbb1b8262003-03-27 12:09:35 +0000183
wdenkcd914452004-05-29 16:53:29 +0000184 /* Reserve memory for malloc() arena.
185 */
wdenkbb1b8262003-03-27 12:09:35 +0000186 addr_sp = addr - TOTAL_MALLOC_LEN;
Wolfgang Denk11f98842011-12-08 02:01:49 +0000187 debug("Reserving %dk for malloc() at: %08lx\n",
wdenkbb1b8262003-03-27 12:09:35 +0000188 TOTAL_MALLOC_LEN >> 10, addr_sp);
wdenkbb1b8262003-03-27 12:09:35 +0000189
190 /*
191 * (permanently) allocate a Board Info struct
192 * and a permanent copy of the "global" data
193 */
194 addr_sp -= sizeof(bd_t);
195 bd = (bd_t *)addr_sp;
196 gd->bd = bd;
Wolfgang Denk11f98842011-12-08 02:01:49 +0000197 debug("Reserving %zu Bytes for Board Info at: %08lx\n",
wdenkbb1b8262003-03-27 12:09:35 +0000198 sizeof(bd_t), addr_sp);
wdenkcd914452004-05-29 16:53:29 +0000199
wdenkbb1b8262003-03-27 12:09:35 +0000200 addr_sp -= sizeof(gd_t);
201 id = (gd_t *)addr_sp;
Wolfgang Denk11f98842011-12-08 02:01:49 +0000202 debug("Reserving %zu Bytes for Global Data at: %08lx\n",
203 sizeof(gd_t), addr_sp);
wdenkbb1b8262003-03-27 12:09:35 +0000204
Jean-Christophe PLAGNIOL-VILLARD3bd04ce2008-02-17 16:58:04 +0100205 /* Reserve memory for boot params.
wdenkcd914452004-05-29 16:53:29 +0000206 */
Jean-Christophe PLAGNIOL-VILLARD03836942008-10-16 15:01:15 +0200207 addr_sp -= CONFIG_SYS_BOOTPARAMS_LEN;
wdenkbb1b8262003-03-27 12:09:35 +0000208 bd->bi_boot_params = addr_sp;
Wolfgang Denk11f98842011-12-08 02:01:49 +0000209 debug("Reserving %dk for boot params() at: %08lx\n",
Jean-Christophe PLAGNIOL-VILLARD03836942008-10-16 15:01:15 +0200210 CONFIG_SYS_BOOTPARAMS_LEN >> 10, addr_sp);
wdenkbb1b8262003-03-27 12:09:35 +0000211
212 /*
213 * Finally, we set up a new (bigger) stack.
214 *
215 * Leave some safety gap for SP, force alignment on 16 byte boundary
216 * Clear initial stack frame
217 */
218 addr_sp -= 16;
219 addr_sp &= ~0xF;
Wolfgang Denk117b0b12005-12-01 02:15:07 +0100220 s = (ulong *)addr_sp;
221 *s-- = 0;
222 *s-- = 0;
223 addr_sp = (ulong)s;
Wolfgang Denk11f98842011-12-08 02:01:49 +0000224 debug("Stack Pointer at: %08lx\n", addr_sp);
wdenkcd914452004-05-29 16:53:29 +0000225
wdenkbb1b8262003-03-27 12:09:35 +0000226 /*
227 * Save local variables to board info struct
228 */
Wolfgang Denk11f98842011-12-08 02:01:49 +0000229 bd->bi_memstart = CONFIG_SYS_SDRAM_BASE; /* start of DRAM */
230 bd->bi_memsize = gd->ram_size; /* size of DRAM in bytes */
wdenkbb1b8262003-03-27 12:09:35 +0000231 bd->bi_baudrate = gd->baudrate; /* Console Baudrate */
232
Wolfgang Denk11f98842011-12-08 02:01:49 +0000233 memcpy(id, (void *)gd, sizeof(gd_t));
wdenkb02744a2003-04-05 00:53:31 +0000234
Wolfgang Denk11f98842011-12-08 02:01:49 +0000235 relocate_code(addr_sp, id, addr);
wdenkbb1b8262003-03-27 12:09:35 +0000236
237 /* NOTREACHED - relocate_code() does not return */
238}
Wolfgang Denk11f98842011-12-08 02:01:49 +0000239
240/*
wdenkbb1b8262003-03-27 12:09:35 +0000241 * This is the next part if the initialization sequence: we are now
242 * running from RAM and have a "normal" C environment, i. e. global
243 * data can be written, BSS has been cleared, the stack size in not
244 * that critical any more, etc.
wdenkbb1b8262003-03-27 12:09:35 +0000245 */
246
Wolfgang Denk11f98842011-12-08 02:01:49 +0000247void board_init_r(gd_t *id, ulong dest_addr)
wdenkbb1b8262003-03-27 12:09:35 +0000248{
Jean-Christophe PLAGNIOL-VILLARD03836942008-10-16 15:01:15 +0200249#ifndef CONFIG_SYS_NO_FLASH
wdenkbb1b8262003-03-27 12:09:35 +0000250 ulong size;
Jean-Christophe PLAGNIOL-VILLARD3bd04ce2008-02-17 16:58:04 +0100251#endif
Jean-Christophe PLAGNIOL-VILLARD68a87562008-09-10 22:48:00 +0200252#ifndef CONFIG_ENV_IS_NOWHERE
Wolfgang Denk11f98842011-12-08 02:01:49 +0000253 extern char *env_name_spec;
wdenkbb1b8262003-03-27 12:09:35 +0000254#endif
wdenkbb1b8262003-03-27 12:09:35 +0000255 bd_t *bd;
wdenkbb1b8262003-03-27 12:09:35 +0000256
257 gd = id;
258 gd->flags |= GD_FLG_RELOC; /* tell others: relocation done */
259
Wolfgang Denk11f98842011-12-08 02:01:49 +0000260 debug("Now running in RAM - U-Boot at: %08lx\n", dest_addr);
wdenkbb1b8262003-03-27 12:09:35 +0000261
Jean-Christophe PLAGNIOL-VILLARD03836942008-10-16 15:01:15 +0200262 gd->reloc_off = dest_addr - CONFIG_SYS_MONITOR_BASE;
wdenkbb1b8262003-03-27 12:09:35 +0000263
wdenkb9a83a92003-05-30 12:48:29 +0000264 monitor_flash_len = (ulong)&uboot_end_data - dest_addr;
265
Joe Hershberger7fe0ac82012-12-11 17:52:50 +0000266 serial_initialize();
267
Wolfgang Denkd0813e52010-10-28 20:00:11 +0200268#if defined(CONFIG_NEEDS_MANUAL_RELOC)
wdenkbb1b8262003-03-27 12:09:35 +0000269 /*
270 * We have to relocate the command table manually
271 */
Marek Vasut69c5e342012-10-12 10:27:04 +0000272 fixup_cmdtable(ll_entry_start(cmd_tbl_t, cmd),
273 ll_entry_count(cmd_tbl_t, cmd));
Wolfgang Denkd0813e52010-10-28 20:00:11 +0200274#endif /* defined(CONFIG_NEEDS_MANUAL_RELOC) */
wdenkbb1b8262003-03-27 12:09:35 +0000275
wdenkbb1b8262003-03-27 12:09:35 +0000276 /* there are some other pointer constants we must deal with */
Jean-Christophe PLAGNIOL-VILLARD68a87562008-09-10 22:48:00 +0200277#ifndef CONFIG_ENV_IS_NOWHERE
wdenkbb1b8262003-03-27 12:09:35 +0000278 env_name_spec += gd->reloc_off;
279#endif
wdenk57b2d802003-06-27 21:31:46 +0000280
Jean-Christophe PLAGNIOL-VILLARD3bd04ce2008-02-17 16:58:04 +0100281 bd = gd->bd;
282
Peter Tyser781c9b82009-08-21 23:05:21 -0500283 /* The Malloc area is immediately below the monitor copy in DRAM */
Peter Tysered527702009-08-21 23:05:20 -0500284 mem_malloc_init(CONFIG_SYS_MONITOR_BASE + gd->reloc_off -
285 TOTAL_MALLOC_LEN, TOTAL_MALLOC_LEN);
Stefan Roeseb81464e2009-05-11 15:50:12 +0200286 malloc_bin_reloc();
287
Jean-Christophe PLAGNIOL-VILLARD03836942008-10-16 15:01:15 +0200288#ifndef CONFIG_SYS_NO_FLASH
wdenkbb1b8262003-03-27 12:09:35 +0000289 /* configure available FLASH banks */
290 size = flash_init();
Wolfgang Denk11f98842011-12-08 02:01:49 +0000291 display_flash_config(size);
Daniel Schwierzeck0d15d2a2012-04-02 02:57:54 +0000292 bd->bi_flashstart = CONFIG_SYS_FLASH_BASE;
Jean-Christophe PLAGNIOL-VILLARD3bd04ce2008-02-17 16:58:04 +0100293 bd->bi_flashsize = size;
wdenkbb1b8262003-03-27 12:09:35 +0000294
Jean-Christophe PLAGNIOL-VILLARD03836942008-10-16 15:01:15 +0200295#if CONFIG_SYS_MONITOR_BASE == CONFIG_SYS_FLASH_BASE
wdenkb9a83a92003-05-30 12:48:29 +0000296 bd->bi_flashoffset = monitor_flash_len; /* reserved area for U-Boot */
wdenkbb1b8262003-03-27 12:09:35 +0000297#else
298 bd->bi_flashoffset = 0;
299#endif
Daniel Schwierzeck0d15d2a2012-04-02 02:57:54 +0000300#else
301 bd->bi_flashstart = 0;
302 bd->bi_flashsize = 0;
303 bd->bi_flashoffset = 0;
304#endif
wdenkbb1b8262003-03-27 12:09:35 +0000305
Stefan Roese1af2a0d2008-11-12 13:18:19 +0100306#ifdef CONFIG_CMD_NAND
Wolfgang Denk11f98842011-12-08 02:01:49 +0000307 puts("NAND: ");
308 nand_init(); /* go init the NAND */
Stefan Roese1af2a0d2008-11-12 13:18:19 +0100309#endif
310
311#if defined(CONFIG_CMD_ONENAND)
312 onenand_init();
313#endif
314
wdenkbb1b8262003-03-27 12:09:35 +0000315 /* relocate environment function pointers etc. */
316 env_relocate();
317
wdenk5401de42004-02-07 01:27:10 +0000318#if defined(CONFIG_PCI)
319 /*
320 * Do pci configuration
321 */
322 pci_init();
323#endif
324
wdenkbb1b8262003-03-27 12:09:35 +0000325/** leave this here (after malloc(), environment and PCI are working) **/
Jean-Christophe PLAGNIOL-VILLARD2a7a0312009-05-16 12:14:54 +0200326 /* Initialize stdio devices */
Wolfgang Denk11f98842011-12-08 02:01:49 +0000327 stdio_init();
wdenkbb1b8262003-03-27 12:09:35 +0000328
Wolfgang Denk11f98842011-12-08 02:01:49 +0000329 jumptable_init();
wdenkbb1b8262003-03-27 12:09:35 +0000330
331 /* Initialize the console (after the relocation and devices init) */
Wolfgang Denk11f98842011-12-08 02:01:49 +0000332 console_init_r();
wdenkbb1b8262003-03-27 12:09:35 +0000333/** ** ** ** ** ** ** ** ** ** ** ** ** ** ** ** ** ** ** ** ** **/
334
wdenkb02744a2003-04-05 00:53:31 +0000335 /* Initialize from environment */
Simon Glass8ccbef92011-10-13 14:43:11 +0000336 load_addr = getenv_ulong("loadaddr", 16, load_addr);
wdenkb02744a2003-04-05 00:53:31 +0000337
Jason McMullan733ad782008-05-30 00:53:37 +0900338#ifdef CONFIG_CMD_SPI
Wolfgang Denk11f98842011-12-08 02:01:49 +0000339 puts("SPI: ");
340 spi_init(); /* go init the SPI */
341 puts("ready\n");
Jason McMullan733ad782008-05-30 00:53:37 +0900342#endif
343
wdenkb02744a2003-04-05 00:53:31 +0000344#if defined(CONFIG_MISC_INIT_R)
345 /* miscellaneous platform dependent initialisations */
Wolfgang Denk11f98842011-12-08 02:01:49 +0000346 misc_init_r();
wdenkb02744a2003-04-05 00:53:31 +0000347#endif
348
Luigi 'Comio' Mantellini01db1552009-10-10 12:42:21 +0200349#ifdef CONFIG_BITBANGMII
350 bb_miiphy_init();
351#endif
Jon Loeliger6b233052007-07-09 18:02:11 -0500352#if defined(CONFIG_CMD_NET)
Wolfgang Denk11f98842011-12-08 02:01:49 +0000353 puts("Net: ");
wdenkbb1b8262003-03-27 12:09:35 +0000354 eth_initialize(gd->bd);
355#endif
356
357 /* main_loop() can return to retry autoboot, if so just run it again. */
Wolfgang Denk11f98842011-12-08 02:01:49 +0000358 for (;;)
359 main_loop();
wdenkbb1b8262003-03-27 12:09:35 +0000360
361 /* NOTREACHED - no way out of command loop except booting */
362}
363
Wolfgang Denk11f98842011-12-08 02:01:49 +0000364void hang(void)
wdenkbb1b8262003-03-27 12:09:35 +0000365{
Wolfgang Denk11f98842011-12-08 02:01:49 +0000366 puts("### ERROR ### Please RESET the board ###\n");
367 for (;;)
368 ;
wdenkbb1b8262003-03-27 12:09:35 +0000369}