]> Git Repo - J-u-boot.git/blame - arch/mips/lib/board.c
relocation: fixup cmdtable
[J-u-boot.git] / arch / mips / lib / board.c
CommitLineData
c021880a
WD
1/*
2 * (C) Copyright 2003
3 * Wolfgang Denk, DENX Software Engineering, [email protected].
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>
52cb4d4f 27#include <stdio_dev.h>
561858ee 28#include <timestamp.h>
c021880a
WD
29#include <version.h>
30#include <net.h>
31#include <environment.h>
e996bc33 32#include <nand.h>
9d23fc58 33#include <onenand_uboot.h>
89a1550e 34#include <spi.h>
c021880a 35
310cecb8
LCM
36#ifdef CONFIG_BITBANGMII
37#include <miiphy.h>
38#endif
39
c75eba3b
WD
40DECLARE_GLOBAL_DATA_PTR;
41
6d0f6bcf
JCPV
42#if ( ((CONFIG_ENV_ADDR+CONFIG_ENV_SIZE) < CONFIG_SYS_MONITOR_BASE) || \
43 (CONFIG_ENV_ADDR >= (CONFIG_SYS_MONITOR_BASE + CONFIG_SYS_MONITOR_LEN)) ) || \
9314cee6 44 defined(CONFIG_ENV_IS_IN_NVRAM)
6d0f6bcf 45#define TOTAL_MALLOC_LEN (CONFIG_SYS_MALLOC_LEN + CONFIG_ENV_SIZE)
c021880a 46#else
6d0f6bcf 47#define TOTAL_MALLOC_LEN CONFIG_SYS_MALLOC_LEN
c021880a
WD
48#endif
49
50#undef DEBUG
51
52extern int timer_init(void);
53
7cb22f97
WD
54extern int incaip_set_cpuclk(void);
55
3b57fe0a
WD
56extern ulong uboot_end_data;
57extern ulong uboot_end;
58
59ulong monitor_flash_len;
60
c021880a 61const char version_string[] =
561858ee 62 U_BOOT_VERSION" (" U_BOOT_DATE " - " U_BOOT_TIME ")";
c021880a
WD
63
64static char *failed = "*** failed ***\n";
65
5c15010e
JCPV
66/*
67 * mips_io_port_base is the begin of the address space to which x86 style
68 * I/O ports are mapped.
69 */
70unsigned long mips_io_port_base = -1;
c021880a 71
db08ecaa
SR
72int __board_early_init_f(void)
73{
74 /*
75 * Nothing to do in this dummy implementation
76 */
77 return 0;
78}
79int board_early_init_f(void) __attribute__((weak, alias("__board_early_init_f")));
80
c021880a
WD
81
82static int init_func_ram (void)
83{
c021880a
WD
84#ifdef CONFIG_BOARD_TYPES
85 int board_type = gd->board_type;
86#else
87 int board_type = 0; /* use dummy arg */
88#endif
89 puts ("DRAM: ");
90
91 if ((gd->ram_size = initdram (board_type)) > 0) {
92 print_size (gd->ram_size, "\n");
93 return (0);
94 }
95 puts (failed);
96 return (1);
97}
98
99static int display_banner(void)
100{
101
102 printf ("\n\n%s\n\n", version_string);
103 return (0);
104}
105
6d0f6bcf 106#ifndef CONFIG_SYS_NO_FLASH
c021880a
WD
107static void display_flash_config(ulong size)
108{
109 puts ("Flash: ");
110 print_size (size, "\n");
111}
beeccf7a 112#endif
c021880a
WD
113
114static int init_baudrate (void)
115{
f013dacf 116 char tmp[64]; /* long enough for environment variables */
cdb74977 117 int i = getenv_f("baudrate", tmp, sizeof (tmp));
c021880a
WD
118
119 gd->baudrate = (i > 0)
120 ? (int) simple_strtoul (tmp, NULL, 10)
121 : CONFIG_BAUDRATE;
122
123 return (0);
124}
125
126
127/*
128 * Breath some life into the board...
129 *
130 * The first part of initialization is running from Flash memory;
131 * its main purpose is to initialize the RAM so that we
132 * can relocate the monitor code to RAM.
133 */
134
135/*
136 * All attempts to come up with a "common" initialization sequence
137 * that works for all boards and architectures failed: some of the
138 * requirements are just _too_ different. To get rid of the resulting
139 * mess of board dependend #ifdef'ed code we now make the whole
140 * initialization sequence configurable to the user.
141 *
142 * The requirements for any new initalization function is simple: it
143 * receives a pointer to the "global data" structure as it's only
144 * argument, and returns an integer return code, where 0 means
145 * "continue" and != 0 means "fatal error, hang the system".
146 */
147typedef int (init_fnc_t) (void);
148
149init_fnc_t *init_sequence[] = {
db08ecaa 150 board_early_init_f,
c021880a
WD
151 timer_init,
152 env_init, /* initialize environment */
7cb22f97
WD
153#ifdef CONFIG_INCA_IP
154 incaip_set_cpuclk, /* set cpu clock according to environment variable */
155#endif
c021880a
WD
156 init_baudrate, /* initialze baudrate settings */
157 serial_init, /* serial communications setup */
158 console_init_f,
159 display_banner, /* say that we are here */
85ec0bcc 160 checkboard,
c021880a
WD
161 init_func_ram,
162 NULL,
163};
164
165
166void board_init_f(ulong bootflag)
167{
c021880a
WD
168 gd_t gd_data, *id;
169 bd_t *bd;
170 init_fnc_t **init_fnc_ptr;
6d0f6bcf 171 ulong addr, addr_sp, len = (ulong)&uboot_end - CONFIG_SYS_MONITOR_BASE;
c75eba3b 172 ulong *s;
3e38691e
WD
173#ifdef CONFIG_PURPLE
174 void copy_code (ulong);
175#endif
c021880a 176
69459791
WD
177 /* Pointer is writable since we allocated a register for it.
178 */
c021880a 179 gd = &gd_data;
93f6a677
WD
180 /* compiler optimization barrier needed for GCC >= 3.4 */
181 __asm__ __volatile__("": : :"memory");
182
27b207fd 183 memset ((void *)gd, 0, sizeof (gd_t));
c021880a
WD
184
185 for (init_fnc_ptr = init_sequence; *init_fnc_ptr; ++init_fnc_ptr) {
186 if ((*init_fnc_ptr)() != 0) {
187 hang ();
188 }
189 }
190
191 /*
192 * Now that we have DRAM mapped and working, we can
193 * relocate the code and continue running from DRAM.
194 */
6d0f6bcf 195 addr = CONFIG_SYS_SDRAM_BASE + gd->ram_size;
c021880a 196
69459791
WD
197 /* We can reserve some RAM "on top" here.
198 */
c021880a 199
69459791
WD
200 /* round down to next 4 kB limit.
201 */
c021880a 202 addr &= ~(4096 - 1);
69459791 203 debug ("Top of RAM usable for U-Boot at: %08lx\n", addr);
8bde7f77 204
69459791
WD
205 /* Reserve memory for U-Boot code, data & bss
206 * round down to next 16 kB limit
207 */
c021880a 208 addr -= len;
3b57fe0a 209 addr &= ~(16 * 1024 - 1);
c021880a 210
69459791 211 debug ("Reserving %ldk for U-Boot at: %08lx\n", len >> 10, addr);
c021880a 212
69459791
WD
213 /* Reserve memory for malloc() arena.
214 */
c021880a 215 addr_sp = addr - TOTAL_MALLOC_LEN;
69459791 216 debug ("Reserving %dk for malloc() at: %08lx\n",
c021880a 217 TOTAL_MALLOC_LEN >> 10, addr_sp);
c021880a
WD
218
219 /*
220 * (permanently) allocate a Board Info struct
221 * and a permanent copy of the "global" data
222 */
223 addr_sp -= sizeof(bd_t);
224 bd = (bd_t *)addr_sp;
225 gd->bd = bd;
b64f190b 226 debug ("Reserving %zu Bytes for Board Info at: %08lx\n",
c021880a 227 sizeof(bd_t), addr_sp);
69459791 228
c021880a
WD
229 addr_sp -= sizeof(gd_t);
230 id = (gd_t *)addr_sp;
b64f190b 231 debug ("Reserving %zu Bytes for Global Data at: %08lx\n",
c021880a 232 sizeof (gd_t), addr_sp);
c021880a 233
beeccf7a 234 /* Reserve memory for boot params.
69459791 235 */
6d0f6bcf 236 addr_sp -= CONFIG_SYS_BOOTPARAMS_LEN;
c021880a 237 bd->bi_boot_params = addr_sp;
69459791 238 debug ("Reserving %dk for boot params() at: %08lx\n",
6d0f6bcf 239 CONFIG_SYS_BOOTPARAMS_LEN >> 10, addr_sp);
c021880a
WD
240
241 /*
242 * Finally, we set up a new (bigger) stack.
243 *
244 * Leave some safety gap for SP, force alignment on 16 byte boundary
245 * Clear initial stack frame
246 */
247 addr_sp -= 16;
248 addr_sp &= ~0xF;
c75eba3b
WD
249 s = (ulong *)addr_sp;
250 *s-- = 0;
251 *s-- = 0;
252 addr_sp = (ulong)s;
69459791
WD
253 debug ("Stack Pointer at: %08lx\n", addr_sp);
254
c021880a
WD
255 /*
256 * Save local variables to board info struct
257 */
6d0f6bcf 258 bd->bi_memstart = CONFIG_SYS_SDRAM_BASE; /* start of DRAM memory */
c021880a
WD
259 bd->bi_memsize = gd->ram_size; /* size of DRAM memory in bytes */
260 bd->bi_baudrate = gd->baudrate; /* Console Baudrate */
261
27b207fd 262 memcpy (id, (void *)gd, sizeof (gd_t));
3e38691e
WD
263
264 /* On the purple board we copy the code in a special way
265 * in order to solve flash problems
266 */
267#ifdef CONFIG_PURPLE
268 copy_code(addr);
269#endif
270
c021880a
WD
271 relocate_code (addr_sp, id, addr);
272
273 /* NOTREACHED - relocate_code() does not return */
274}
275/************************************************************************
276 *
277 * This is the next part if the initialization sequence: we are now
278 * running from RAM and have a "normal" C environment, i. e. global
279 * data can be written, BSS has been cleared, the stack size in not
280 * that critical any more, etc.
281 *
282 ************************************************************************
283 */
284
285void board_init_r (gd_t *id, ulong dest_addr)
286{
c021880a 287 cmd_tbl_t *cmdtp;
6d0f6bcf 288#ifndef CONFIG_SYS_NO_FLASH
c021880a 289 ulong size;
beeccf7a 290#endif
c021880a 291 extern void malloc_bin_reloc (void);
93f6d725 292#ifndef CONFIG_ENV_IS_NOWHERE
c021880a
WD
293 extern char * env_name_spec;
294#endif
c06326c7 295 char *s;
c021880a 296 bd_t *bd;
c021880a
WD
297
298 gd = id;
299 gd->flags |= GD_FLG_RELOC; /* tell others: relocation done */
300
69459791 301 debug ("Now running in RAM - U-Boot at: %08lx\n", dest_addr);
c021880a 302
6d0f6bcf 303 gd->reloc_off = dest_addr - CONFIG_SYS_MONITOR_BASE;
c021880a 304
3b57fe0a
WD
305 monitor_flash_len = (ulong)&uboot_end_data - dest_addr;
306
620f1f6a 307#if !defined(CONFIG_RELOC_FIXUP_WORKS)
c021880a
WD
308 /*
309 * We have to relocate the command table manually
310 */
620f1f6a
HS
311 fixup_cmdtable(&__u_boot_cmd_start,
312 (ulong)(&__u_boot_cmd_end - &__u_boot_cmd_start));
313#endif /* !defined(CONFIG_RELOC_FIXUP_WORKS) */
c021880a 314
c021880a 315 /* there are some other pointer constants we must deal with */
93f6d725 316#ifndef CONFIG_ENV_IS_NOWHERE
c021880a
WD
317 env_name_spec += gd->reloc_off;
318#endif
8bde7f77 319
beeccf7a
JCPV
320 bd = gd->bd;
321
d4e8ada0 322 /* The Malloc area is immediately below the monitor copy in DRAM */
a483a167
PT
323 mem_malloc_init(CONFIG_SYS_MONITOR_BASE + gd->reloc_off -
324 TOTAL_MALLOC_LEN, TOTAL_MALLOC_LEN);
c790b04d
SR
325 malloc_bin_reloc();
326
6d0f6bcf 327#ifndef CONFIG_SYS_NO_FLASH
c021880a
WD
328 /* configure available FLASH banks */
329 size = flash_init();
330 display_flash_config (size);
beeccf7a
JCPV
331 bd->bi_flashsize = size;
332#endif
c021880a 333
6d0f6bcf
JCPV
334 bd->bi_flashstart = CONFIG_SYS_FLASH_BASE;
335#if CONFIG_SYS_MONITOR_BASE == CONFIG_SYS_FLASH_BASE
3b57fe0a 336 bd->bi_flashoffset = monitor_flash_len; /* reserved area for U-Boot */
c021880a
WD
337#else
338 bd->bi_flashoffset = 0;
339#endif
340
9d23fc58
SR
341#ifdef CONFIG_CMD_NAND
342 puts ("NAND: ");
343 nand_init (); /* go init the NAND */
344#endif
345
346#if defined(CONFIG_CMD_ONENAND)
347 onenand_init();
348#endif
349
c021880a
WD
350 /* relocate environment function pointers etc. */
351 env_relocate();
352
c021880a
WD
353 /* IP Address */
354 bd->bi_ip_addr = getenv_IPaddr("ipaddr");
355
f4863a7a
WD
356#if defined(CONFIG_PCI)
357 /*
358 * Do pci configuration
359 */
360 pci_init();
361#endif
362
c021880a 363/** leave this here (after malloc(), environment and PCI are working) **/
52cb4d4f
JCPV
364 /* Initialize stdio devices */
365 stdio_init ();
c021880a 366
27b207fd 367 jumptable_init ();
c021880a
WD
368
369 /* Initialize the console (after the relocation and devices init) */
370 console_init_r ();
371/** ** ** ** ** ** ** ** ** ** ** ** ** ** ** ** ** ** ** ** ** **/
372
3e38691e
WD
373 /* Initialize from environment */
374 if ((s = getenv ("loadaddr")) != NULL) {
375 load_addr = simple_strtoul (s, NULL, 16);
376 }
7def6b34 377#if defined(CONFIG_CMD_NET)
3e38691e
WD
378 if ((s = getenv ("bootfile")) != NULL) {
379 copy_filename (BootFile, s, sizeof (BootFile));
380 }
b3aff0cb 381#endif
3e38691e 382
89a1550e
JM
383#ifdef CONFIG_CMD_SPI
384 puts ("SPI: ");
385 spi_init (); /* go init the SPI */
386 puts ("ready\n");
387#endif
388
3e38691e
WD
389#if defined(CONFIG_MISC_INIT_R)
390 /* miscellaneous platform dependent initialisations */
391 misc_init_r ();
392#endif
393
310cecb8
LCM
394#ifdef CONFIG_BITBANGMII
395 bb_miiphy_init();
396#endif
7def6b34 397#if defined(CONFIG_CMD_NET)
63ff004c 398#if defined(CONFIG_NET_MULTI)
c021880a 399 puts ("Net: ");
63ff004c 400#endif
c021880a
WD
401 eth_initialize(gd->bd);
402#endif
403
404 /* main_loop() can return to retry autoboot, if so just run it again. */
405 for (;;) {
406 main_loop ();
407 }
408
409 /* NOTREACHED - no way out of command loop except booting */
410}
411
412void hang (void)
413{
414 puts ("### ERROR ### Please RESET the board ###\n");
415 for (;;);
416}
This page took 0.253142 seconds and 4 git commands to generate.