blob: 0044b19450170f87cbfa7341c30c9198b520703d [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>
Peter Tyser561858e2008-11-03 09:30:59 -060028#include <timestamp.h>
wdenkc0218802003-03-27 12:09:35 +000029#include <version.h>
30#include <net.h>
31#include <environment.h>
Jason McMullane996bc32008-05-30 00:53:37 +090032#include <nand.h>
Stefan Roese9d23fc52008-11-12 13:18:19 +010033#include <onenand_uboot.h>
Jason McMullan89a15502008-05-30 00:53:37 +090034#include <spi.h>
wdenkc0218802003-03-27 12:09:35 +000035
Luigi 'Comio' Mantellini310cecb2009-10-10 12:42:21 +020036#ifdef CONFIG_BITBANGMII
37#include <miiphy.h>
38#endif
39
Wolfgang Denkc75eba32005-12-01 02:15:07 +010040DECLARE_GLOBAL_DATA_PTR;
41
wdenkc0218802003-03-27 12:09:35 +000042#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[] =
Peter Tyser561858e2008-11-03 09:30:59 -060054 U_BOOT_VERSION" (" U_BOOT_DATE " - " U_BOOT_TIME ")";
wdenkc0218802003-03-27 12:09:35 +000055
56static char *failed = "*** failed ***\n";
57
58/*
Jean-Christophe PLAGNIOL-VILLARD5c150102007-11-13 09:11:05 +010059 * mips_io_port_base is the begin of the address space to which x86 style
60 * I/O ports are mapped.
61 */
62unsigned long mips_io_port_base = -1;
wdenkc0218802003-03-27 12:09:35 +000063
Stefan Roesedb08eca2008-11-12 13:18:02 +010064int __board_early_init_f(void)
65{
66 /*
67 * Nothing to do in this dummy implementation
68 */
69 return 0;
70}
71int board_early_init_f(void) __attribute__((weak, alias("__board_early_init_f")));
72
wdenkc0218802003-03-27 12:09:35 +000073
74static int init_func_ram (void)
75{
wdenkc0218802003-03-27 12:09:35 +000076#ifdef CONFIG_BOARD_TYPES
77 int board_type = gd->board_type;
78#else
79 int board_type = 0; /* use dummy arg */
80#endif
81 puts ("DRAM: ");
82
83 if ((gd->ram_size = initdram (board_type)) > 0) {
84 print_size (gd->ram_size, "\n");
85 return (0);
86 }
87 puts (failed);
88 return (1);
89}
90
91static int display_banner(void)
92{
93
94 printf ("\n\n%s\n\n", version_string);
95 return (0);
96}
97
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +020098#ifndef CONFIG_SYS_NO_FLASH
wdenkc0218802003-03-27 12:09:35 +000099static void display_flash_config(ulong size)
100{
101 puts ("Flash: ");
102 print_size (size, "\n");
103}
Jean-Christophe PLAGNIOL-VILLARDbeeccf72008-02-17 16:58:04 +0100104#endif
wdenkc0218802003-03-27 12:09:35 +0000105
106static int init_baudrate (void)
107{
Wolfgang Denkf013dac2005-12-04 00:40:34 +0100108 char tmp[64]; /* long enough for environment variables */
Wolfgang Denkcdb74972010-07-24 21:55:43 +0200109 int i = getenv_f("baudrate", tmp, sizeof (tmp));
wdenkc0218802003-03-27 12:09:35 +0000110
111 gd->baudrate = (i > 0)
112 ? (int) simple_strtoul (tmp, NULL, 10)
113 : CONFIG_BAUDRATE;
114
115 return (0);
116}
117
118
119/*
120 * Breath some life into the board...
121 *
122 * The first part of initialization is running from Flash memory;
123 * its main purpose is to initialize the RAM so that we
124 * can relocate the monitor code to RAM.
125 */
126
127/*
128 * All attempts to come up with a "common" initialization sequence
129 * that works for all boards and architectures failed: some of the
130 * requirements are just _too_ different. To get rid of the resulting
131 * mess of board dependend #ifdef'ed code we now make the whole
132 * initialization sequence configurable to the user.
133 *
134 * The requirements for any new initalization function is simple: it
135 * receives a pointer to the "global data" structure as it's only
136 * argument, and returns an integer return code, where 0 means
137 * "continue" and != 0 means "fatal error, hang the system".
138 */
139typedef int (init_fnc_t) (void);
140
141init_fnc_t *init_sequence[] = {
Stefan Roesedb08eca2008-11-12 13:18:02 +0100142 board_early_init_f,
wdenkc0218802003-03-27 12:09:35 +0000143 timer_init,
144 env_init, /* initialize environment */
wdenk7cb22f92003-12-27 19:24:54 +0000145#ifdef CONFIG_INCA_IP
146 incaip_set_cpuclk, /* set cpu clock according to environment variable */
147#endif
wdenkc0218802003-03-27 12:09:35 +0000148 init_baudrate, /* initialze baudrate settings */
149 serial_init, /* serial communications setup */
150 console_init_f,
151 display_banner, /* say that we are here */
wdenk85ec0bc2003-03-31 16:34:49 +0000152 checkboard,
wdenkc0218802003-03-27 12:09:35 +0000153 init_func_ram,
154 NULL,
155};
156
157
158void board_init_f(ulong bootflag)
159{
wdenkc0218802003-03-27 12:09:35 +0000160 gd_t gd_data, *id;
161 bd_t *bd;
162 init_fnc_t **init_fnc_ptr;
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200163 ulong addr, addr_sp, len = (ulong)&uboot_end - CONFIG_SYS_MONITOR_BASE;
Wolfgang Denkc75eba32005-12-01 02:15:07 +0100164 ulong *s;
wdenk3e386912003-04-05 00:53:31 +0000165#ifdef CONFIG_PURPLE
166 void copy_code (ulong);
167#endif
wdenkc0218802003-03-27 12:09:35 +0000168
wdenk69459792004-05-29 16:53:29 +0000169 /* Pointer is writable since we allocated a register for it.
170 */
wdenkc0218802003-03-27 12:09:35 +0000171 gd = &gd_data;
wdenk93f6a672004-07-01 20:28:03 +0000172 /* compiler optimization barrier needed for GCC >= 3.4 */
173 __asm__ __volatile__("": : :"memory");
174
wdenk27b207f2003-07-24 23:38:38 +0000175 memset ((void *)gd, 0, sizeof (gd_t));
wdenkc0218802003-03-27 12:09:35 +0000176
177 for (init_fnc_ptr = init_sequence; *init_fnc_ptr; ++init_fnc_ptr) {
178 if ((*init_fnc_ptr)() != 0) {
179 hang ();
180 }
181 }
182
183 /*
184 * Now that we have DRAM mapped and working, we can
185 * relocate the code and continue running from DRAM.
186 */
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200187 addr = CONFIG_SYS_SDRAM_BASE + gd->ram_size;
wdenkc0218802003-03-27 12:09:35 +0000188
wdenk69459792004-05-29 16:53:29 +0000189 /* We can reserve some RAM "on top" here.
190 */
wdenkc0218802003-03-27 12:09:35 +0000191
wdenk69459792004-05-29 16:53:29 +0000192 /* round down to next 4 kB limit.
193 */
wdenkc0218802003-03-27 12:09:35 +0000194 addr &= ~(4096 - 1);
wdenk69459792004-05-29 16:53:29 +0000195 debug ("Top of RAM usable for U-Boot at: %08lx\n", addr);
wdenk8bde7f72003-06-27 21:31:46 +0000196
wdenk69459792004-05-29 16:53:29 +0000197 /* Reserve memory for U-Boot code, data & bss
198 * round down to next 16 kB limit
199 */
wdenkc0218802003-03-27 12:09:35 +0000200 addr -= len;
wdenk3b57fe02003-05-30 12:48:29 +0000201 addr &= ~(16 * 1024 - 1);
wdenkc0218802003-03-27 12:09:35 +0000202
wdenk69459792004-05-29 16:53:29 +0000203 debug ("Reserving %ldk for U-Boot at: %08lx\n", len >> 10, addr);
wdenkc0218802003-03-27 12:09:35 +0000204
wdenk69459792004-05-29 16:53:29 +0000205 /* Reserve memory for malloc() arena.
206 */
wdenkc0218802003-03-27 12:09:35 +0000207 addr_sp = addr - TOTAL_MALLOC_LEN;
wdenk69459792004-05-29 16:53:29 +0000208 debug ("Reserving %dk for malloc() at: %08lx\n",
wdenkc0218802003-03-27 12:09:35 +0000209 TOTAL_MALLOC_LEN >> 10, addr_sp);
wdenkc0218802003-03-27 12:09:35 +0000210
211 /*
212 * (permanently) allocate a Board Info struct
213 * and a permanent copy of the "global" data
214 */
215 addr_sp -= sizeof(bd_t);
216 bd = (bd_t *)addr_sp;
217 gd->bd = bd;
Wolfgang Denkb64f1902008-07-14 15:06:35 +0200218 debug ("Reserving %zu Bytes for Board Info at: %08lx\n",
wdenkc0218802003-03-27 12:09:35 +0000219 sizeof(bd_t), addr_sp);
wdenk69459792004-05-29 16:53:29 +0000220
wdenkc0218802003-03-27 12:09:35 +0000221 addr_sp -= sizeof(gd_t);
222 id = (gd_t *)addr_sp;
Wolfgang Denkb64f1902008-07-14 15:06:35 +0200223 debug ("Reserving %zu Bytes for Global Data at: %08lx\n",
wdenkc0218802003-03-27 12:09:35 +0000224 sizeof (gd_t), addr_sp);
wdenkc0218802003-03-27 12:09:35 +0000225
Jean-Christophe PLAGNIOL-VILLARDbeeccf72008-02-17 16:58:04 +0100226 /* Reserve memory for boot params.
wdenk69459792004-05-29 16:53:29 +0000227 */
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200228 addr_sp -= CONFIG_SYS_BOOTPARAMS_LEN;
wdenkc0218802003-03-27 12:09:35 +0000229 bd->bi_boot_params = addr_sp;
wdenk69459792004-05-29 16:53:29 +0000230 debug ("Reserving %dk for boot params() at: %08lx\n",
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200231 CONFIG_SYS_BOOTPARAMS_LEN >> 10, addr_sp);
wdenkc0218802003-03-27 12:09:35 +0000232
233 /*
234 * Finally, we set up a new (bigger) stack.
235 *
236 * Leave some safety gap for SP, force alignment on 16 byte boundary
237 * Clear initial stack frame
238 */
239 addr_sp -= 16;
240 addr_sp &= ~0xF;
Wolfgang Denkc75eba32005-12-01 02:15:07 +0100241 s = (ulong *)addr_sp;
242 *s-- = 0;
243 *s-- = 0;
244 addr_sp = (ulong)s;
wdenk69459792004-05-29 16:53:29 +0000245 debug ("Stack Pointer at: %08lx\n", addr_sp);
246
wdenkc0218802003-03-27 12:09:35 +0000247 /*
248 * Save local variables to board info struct
249 */
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200250 bd->bi_memstart = CONFIG_SYS_SDRAM_BASE; /* start of DRAM memory */
wdenkc0218802003-03-27 12:09:35 +0000251 bd->bi_memsize = gd->ram_size; /* size of DRAM memory in bytes */
252 bd->bi_baudrate = gd->baudrate; /* Console Baudrate */
253
wdenk27b207f2003-07-24 23:38:38 +0000254 memcpy (id, (void *)gd, sizeof (gd_t));
wdenk3e386912003-04-05 00:53:31 +0000255
256 /* On the purple board we copy the code in a special way
257 * in order to solve flash problems
258 */
259#ifdef CONFIG_PURPLE
260 copy_code(addr);
261#endif
262
wdenkc0218802003-03-27 12:09:35 +0000263 relocate_code (addr_sp, id, addr);
264
265 /* NOTREACHED - relocate_code() does not return */
266}
267/************************************************************************
268 *
269 * This is the next part if the initialization sequence: we are now
270 * running from RAM and have a "normal" C environment, i. e. global
271 * data can be written, BSS has been cleared, the stack size in not
272 * that critical any more, etc.
273 *
274 ************************************************************************
275 */
276
277void board_init_r (gd_t *id, ulong dest_addr)
278{
wdenkc0218802003-03-27 12:09:35 +0000279 cmd_tbl_t *cmdtp;
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200280#ifndef CONFIG_SYS_NO_FLASH
wdenkc0218802003-03-27 12:09:35 +0000281 ulong size;
Jean-Christophe PLAGNIOL-VILLARDbeeccf72008-02-17 16:58:04 +0100282#endif
wdenkc0218802003-03-27 12:09:35 +0000283 extern void malloc_bin_reloc (void);
Jean-Christophe PLAGNIOL-VILLARD93f6d722008-09-10 22:48:00 +0200284#ifndef CONFIG_ENV_IS_NOWHERE
wdenkc0218802003-03-27 12:09:35 +0000285 extern char * env_name_spec;
286#endif
Shinya Kuribayashic06326c2009-05-16 09:12:09 +0900287 char *s;
wdenkc0218802003-03-27 12:09:35 +0000288 bd_t *bd;
wdenkc0218802003-03-27 12:09:35 +0000289
290 gd = id;
291 gd->flags |= GD_FLG_RELOC; /* tell others: relocation done */
292
wdenk69459792004-05-29 16:53:29 +0000293 debug ("Now running in RAM - U-Boot at: %08lx\n", dest_addr);
wdenkc0218802003-03-27 12:09:35 +0000294
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200295 gd->reloc_off = dest_addr - CONFIG_SYS_MONITOR_BASE;
wdenkc0218802003-03-27 12:09:35 +0000296
wdenk3b57fe02003-05-30 12:48:29 +0000297 monitor_flash_len = (ulong)&uboot_end_data - dest_addr;
298
Heiko Schocher620f1f62010-09-17 13:10:33 +0200299#if !defined(CONFIG_RELOC_FIXUP_WORKS)
wdenkc0218802003-03-27 12:09:35 +0000300 /*
301 * We have to relocate the command table manually
302 */
Heiko Schocher620f1f62010-09-17 13:10:33 +0200303 fixup_cmdtable(&__u_boot_cmd_start,
304 (ulong)(&__u_boot_cmd_end - &__u_boot_cmd_start));
305#endif /* !defined(CONFIG_RELOC_FIXUP_WORKS) */
wdenkc0218802003-03-27 12:09:35 +0000306
wdenkc0218802003-03-27 12:09:35 +0000307 /* there are some other pointer constants we must deal with */
Jean-Christophe PLAGNIOL-VILLARD93f6d722008-09-10 22:48:00 +0200308#ifndef CONFIG_ENV_IS_NOWHERE
wdenkc0218802003-03-27 12:09:35 +0000309 env_name_spec += gd->reloc_off;
310#endif
wdenk8bde7f72003-06-27 21:31:46 +0000311
Jean-Christophe PLAGNIOL-VILLARDbeeccf72008-02-17 16:58:04 +0100312 bd = gd->bd;
313
Peter Tyserd4e8ada2009-08-21 23:05:21 -0500314 /* The Malloc area is immediately below the monitor copy in DRAM */
Peter Tysera483a162009-08-21 23:05:20 -0500315 mem_malloc_init(CONFIG_SYS_MONITOR_BASE + gd->reloc_off -
316 TOTAL_MALLOC_LEN, TOTAL_MALLOC_LEN);
Stefan Roesec790b042009-05-11 15:50:12 +0200317 malloc_bin_reloc();
318
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200319#ifndef CONFIG_SYS_NO_FLASH
wdenkc0218802003-03-27 12:09:35 +0000320 /* configure available FLASH banks */
321 size = flash_init();
322 display_flash_config (size);
wdenkc0218802003-03-27 12:09:35 +0000323 bd->bi_flashsize = size;
Jean-Christophe PLAGNIOL-VILLARDbeeccf72008-02-17 16:58:04 +0100324#endif
325
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200326 bd->bi_flashstart = CONFIG_SYS_FLASH_BASE;
327#if CONFIG_SYS_MONITOR_BASE == CONFIG_SYS_FLASH_BASE
wdenk3b57fe02003-05-30 12:48:29 +0000328 bd->bi_flashoffset = monitor_flash_len; /* reserved area for U-Boot */
wdenkc0218802003-03-27 12:09:35 +0000329#else
330 bd->bi_flashoffset = 0;
331#endif
332
Stefan Roese9d23fc52008-11-12 13:18:19 +0100333#ifdef CONFIG_CMD_NAND
334 puts ("NAND: ");
335 nand_init (); /* go init the NAND */
336#endif
337
338#if defined(CONFIG_CMD_ONENAND)
339 onenand_init();
340#endif
341
wdenkc0218802003-03-27 12:09:35 +0000342 /* relocate environment function pointers etc. */
343 env_relocate();
344
wdenkc0218802003-03-27 12:09:35 +0000345 /* IP Address */
346 bd->bi_ip_addr = getenv_IPaddr("ipaddr");
347
wdenkf4863a72004-02-07 01:27:10 +0000348#if defined(CONFIG_PCI)
349 /*
350 * Do pci configuration
351 */
352 pci_init();
353#endif
354
wdenkc0218802003-03-27 12:09:35 +0000355/** leave this here (after malloc(), environment and PCI are working) **/
Jean-Christophe PLAGNIOL-VILLARD52cb4d42009-05-16 12:14:54 +0200356 /* Initialize stdio devices */
357 stdio_init ();
wdenkc0218802003-03-27 12:09:35 +0000358
wdenk27b207f2003-07-24 23:38:38 +0000359 jumptable_init ();
wdenkc0218802003-03-27 12:09:35 +0000360
361 /* Initialize the console (after the relocation and devices init) */
362 console_init_r ();
363/** ** ** ** ** ** ** ** ** ** ** ** ** ** ** ** ** ** ** ** ** **/
364
wdenk3e386912003-04-05 00:53:31 +0000365 /* Initialize from environment */
366 if ((s = getenv ("loadaddr")) != NULL) {
367 load_addr = simple_strtoul (s, NULL, 16);
368 }
Jon Loeliger7def6b32007-07-09 18:02:11 -0500369#if defined(CONFIG_CMD_NET)
wdenk3e386912003-04-05 00:53:31 +0000370 if ((s = getenv ("bootfile")) != NULL) {
371 copy_filename (BootFile, s, sizeof (BootFile));
372 }
Jon Loeligerb3aff0c2007-07-10 11:19:50 -0500373#endif
wdenk3e386912003-04-05 00:53:31 +0000374
Jason McMullan89a15502008-05-30 00:53:37 +0900375#ifdef CONFIG_CMD_SPI
376 puts ("SPI: ");
377 spi_init (); /* go init the SPI */
378 puts ("ready\n");
379#endif
380
wdenk3e386912003-04-05 00:53:31 +0000381#if defined(CONFIG_MISC_INIT_R)
382 /* miscellaneous platform dependent initialisations */
383 misc_init_r ();
384#endif
385
Luigi 'Comio' Mantellini310cecb2009-10-10 12:42:21 +0200386#ifdef CONFIG_BITBANGMII
387 bb_miiphy_init();
388#endif
Jon Loeliger7def6b32007-07-09 18:02:11 -0500389#if defined(CONFIG_CMD_NET)
Marian Balakowicz63ff0042005-10-28 22:30:33 +0200390#if defined(CONFIG_NET_MULTI)
wdenkc0218802003-03-27 12:09:35 +0000391 puts ("Net: ");
Marian Balakowicz63ff0042005-10-28 22:30:33 +0200392#endif
wdenkc0218802003-03-27 12:09:35 +0000393 eth_initialize(gd->bd);
394#endif
395
396 /* main_loop() can return to retry autoboot, if so just run it again. */
397 for (;;) {
398 main_loop ();
399 }
400
401 /* NOTREACHED - no way out of command loop except booting */
402}
403
404void hang (void)
405{
406 puts ("### ERROR ### Please RESET the board ###\n");
407 for (;;);
408}