]> git.ipfire.org Git - people/ms/u-boot.git/blob - common/board_f.c
board_f: call timer_init on MIPS
[people/ms/u-boot.git] / common / board_f.c
1 /*
2 * Copyright (c) 2011 The Chromium OS Authors.
3 * (C) Copyright 2002-2006
4 * Wolfgang Denk, DENX Software Engineering, wd@denx.de.
5 *
6 * (C) Copyright 2002
7 * Sysgo Real-Time Solutions, GmbH <www.elinos.com>
8 * Marius Groeger <mgroeger@sysgo.de>
9 *
10 * SPDX-License-Identifier: GPL-2.0+
11 */
12
13 #include <common.h>
14 #include <linux/compiler.h>
15 #include <version.h>
16 #include <environment.h>
17 #include <fdtdec.h>
18 #include <fs.h>
19 #if defined(CONFIG_CMD_IDE)
20 #include <ide.h>
21 #endif
22 #include <i2c.h>
23 #include <initcall.h>
24 #include <logbuff.h>
25
26 /* TODO: Can we move these into arch/ headers? */
27 #ifdef CONFIG_8xx
28 #include <mpc8xx.h>
29 #endif
30 #ifdef CONFIG_5xx
31 #include <mpc5xx.h>
32 #endif
33 #ifdef CONFIG_MPC5xxx
34 #include <mpc5xxx.h>
35 #endif
36
37 #include <os.h>
38 #include <post.h>
39 #include <spi.h>
40 #include <trace.h>
41 #include <watchdog.h>
42 #include <asm/errno.h>
43 #include <asm/io.h>
44 #ifdef CONFIG_MP
45 #include <asm/mp.h>
46 #endif
47 #include <asm/sections.h>
48 #ifdef CONFIG_X86
49 #include <asm/init_helpers.h>
50 #include <asm/relocate.h>
51 #endif
52 #ifdef CONFIG_SANDBOX
53 #include <asm/state.h>
54 #endif
55 #include <linux/compiler.h>
56
57 /*
58 * Pointer to initial global data area
59 *
60 * Here we initialize it if needed.
61 */
62 #ifdef XTRN_DECLARE_GLOBAL_DATA_PTR
63 #undef XTRN_DECLARE_GLOBAL_DATA_PTR
64 #define XTRN_DECLARE_GLOBAL_DATA_PTR /* empty = allocate here */
65 DECLARE_GLOBAL_DATA_PTR = (gd_t *) (CONFIG_SYS_INIT_GD_ADDR);
66 #else
67 DECLARE_GLOBAL_DATA_PTR;
68 #endif
69
70 /*
71 * sjg: IMO this code should be
72 * refactored to a single function, something like:
73 *
74 * void led_set_state(enum led_colour_t colour, int on);
75 */
76 /************************************************************************
77 * Coloured LED functionality
78 ************************************************************************
79 * May be supplied by boards if desired
80 */
81 inline void __coloured_LED_init(void) {}
82 void coloured_LED_init(void)
83 __attribute__((weak, alias("__coloured_LED_init")));
84 inline void __red_led_on(void) {}
85 void red_led_on(void) __attribute__((weak, alias("__red_led_on")));
86 inline void __red_led_off(void) {}
87 void red_led_off(void) __attribute__((weak, alias("__red_led_off")));
88 inline void __green_led_on(void) {}
89 void green_led_on(void) __attribute__((weak, alias("__green_led_on")));
90 inline void __green_led_off(void) {}
91 void green_led_off(void) __attribute__((weak, alias("__green_led_off")));
92 inline void __yellow_led_on(void) {}
93 void yellow_led_on(void) __attribute__((weak, alias("__yellow_led_on")));
94 inline void __yellow_led_off(void) {}
95 void yellow_led_off(void) __attribute__((weak, alias("__yellow_led_off")));
96 inline void __blue_led_on(void) {}
97 void blue_led_on(void) __attribute__((weak, alias("__blue_led_on")));
98 inline void __blue_led_off(void) {}
99 void blue_led_off(void) __attribute__((weak, alias("__blue_led_off")));
100
101 /*
102 * Why is gd allocated a register? Prior to reloc it might be better to
103 * just pass it around to each function in this file?
104 *
105 * After reloc one could argue that it is hardly used and doesn't need
106 * to be in a register. Or if it is it should perhaps hold pointers to all
107 * global data for all modules, so that post-reloc we can avoid the massive
108 * literal pool we get on ARM. Or perhaps just encourage each module to use
109 * a structure...
110 */
111
112 /*
113 * Could the CONFIG_SPL_BUILD infection become a flag in gd?
114 */
115
116 #if defined(CONFIG_WATCHDOG)
117 static int init_func_watchdog_init(void)
118 {
119 puts(" Watchdog enabled\n");
120 WATCHDOG_RESET();
121
122 return 0;
123 }
124
125 int init_func_watchdog_reset(void)
126 {
127 WATCHDOG_RESET();
128
129 return 0;
130 }
131 #endif /* CONFIG_WATCHDOG */
132
133 void __board_add_ram_info(int use_default)
134 {
135 /* please define platform specific board_add_ram_info() */
136 }
137
138 void board_add_ram_info(int)
139 __attribute__ ((weak, alias("__board_add_ram_info")));
140
141 static int init_baud_rate(void)
142 {
143 gd->baudrate = getenv_ulong("baudrate", 10, CONFIG_BAUDRATE);
144 return 0;
145 }
146
147 static int display_text_info(void)
148 {
149 #ifndef CONFIG_SANDBOX
150 ulong bss_start, bss_end;
151
152 bss_start = (ulong)&__bss_start;
153 bss_end = (ulong)&__bss_end;
154
155 debug("U-Boot code: %08X -> %08lX BSS: -> %08lX\n",
156 CONFIG_SYS_TEXT_BASE, bss_start, bss_end);
157 #endif
158
159 #ifdef CONFIG_MODEM_SUPPORT
160 debug("Modem Support enabled\n");
161 #endif
162 #ifdef CONFIG_USE_IRQ
163 debug("IRQ Stack: %08lx\n", IRQ_STACK_START);
164 debug("FIQ Stack: %08lx\n", FIQ_STACK_START);
165 #endif
166
167 return 0;
168 }
169
170 static int announce_dram_init(void)
171 {
172 puts("DRAM: ");
173 return 0;
174 }
175
176 #if defined(CONFIG_MIPS) || defined(CONFIG_PPC)
177 static int init_func_ram(void)
178 {
179 #ifdef CONFIG_BOARD_TYPES
180 int board_type = gd->board_type;
181 #else
182 int board_type = 0; /* use dummy arg */
183 #endif
184
185 gd->ram_size = initdram(board_type);
186
187 if (gd->ram_size > 0)
188 return 0;
189
190 puts("*** failed ***\n");
191 return 1;
192 }
193 #endif
194
195 static int show_dram_config(void)
196 {
197 ulong size;
198
199 #ifdef CONFIG_NR_DRAM_BANKS
200 int i;
201
202 debug("\nRAM Configuration:\n");
203 for (i = size = 0; i < CONFIG_NR_DRAM_BANKS; i++) {
204 size += gd->bd->bi_dram[i].size;
205 debug("Bank #%d: %08lx ", i, gd->bd->bi_dram[i].start);
206 #ifdef DEBUG
207 print_size(gd->bd->bi_dram[i].size, "\n");
208 #endif
209 }
210 debug("\nDRAM: ");
211 #else
212 size = gd->ram_size;
213 #endif
214
215 print_size(size, "");
216 board_add_ram_info(0);
217 putc('\n');
218
219 return 0;
220 }
221
222 void __dram_init_banksize(void)
223 {
224 #if defined(CONFIG_NR_DRAM_BANKS) && defined(CONFIG_SYS_SDRAM_BASE)
225 gd->bd->bi_dram[0].start = CONFIG_SYS_SDRAM_BASE;
226 gd->bd->bi_dram[0].size = get_effective_memsize();
227 #endif
228 }
229
230 void dram_init_banksize(void)
231 __attribute__((weak, alias("__dram_init_banksize")));
232
233 #if defined(CONFIG_HARD_I2C) || defined(CONFIG_SYS_I2C)
234 static int init_func_i2c(void)
235 {
236 puts("I2C: ");
237 #ifdef CONFIG_SYS_I2C
238 i2c_init_all();
239 #else
240 i2c_init(CONFIG_SYS_I2C_SPEED, CONFIG_SYS_I2C_SLAVE);
241 #endif
242 puts("ready\n");
243 return 0;
244 }
245 #endif
246
247 #if defined(CONFIG_HARD_SPI)
248 static int init_func_spi(void)
249 {
250 puts("SPI: ");
251 spi_init();
252 puts("ready\n");
253 return 0;
254 }
255 #endif
256
257 __maybe_unused
258 static int zero_global_data(void)
259 {
260 memset((void *)gd, '\0', sizeof(gd_t));
261
262 return 0;
263 }
264
265 static int setup_mon_len(void)
266 {
267 #ifdef __ARM__
268 gd->mon_len = (ulong)&__bss_end - (ulong)_start;
269 #elif defined(CONFIG_SANDBOX)
270 gd->mon_len = (ulong)&_end - (ulong)_init;
271 #else
272 /* TODO: use (ulong)&__bss_end - (ulong)&__text_start; ? */
273 gd->mon_len = (ulong)&__bss_end - CONFIG_SYS_MONITOR_BASE;
274 #endif
275 return 0;
276 }
277
278 __weak int arch_cpu_init(void)
279 {
280 return 0;
281 }
282
283 #ifdef CONFIG_OF_HOSTFILE
284
285 static int read_fdt_from_file(void)
286 {
287 struct sandbox_state *state = state_get_current();
288 const char *fname = state->fdt_fname;
289 void *blob;
290 ssize_t size;
291 int err;
292 int fd;
293
294 blob = map_sysmem(CONFIG_SYS_FDT_LOAD_ADDR, 0);
295 if (!state->fdt_fname) {
296 err = fdt_create_empty_tree(blob, 256);
297 if (!err)
298 goto done;
299 printf("Unable to create empty FDT: %s\n", fdt_strerror(err));
300 return -EINVAL;
301 }
302
303 size = os_get_filesize(fname);
304 if (size < 0) {
305 printf("Failed to file FDT file '%s'\n", fname);
306 return -ENOENT;
307 }
308 fd = os_open(fname, OS_O_RDONLY);
309 if (fd < 0) {
310 printf("Failed to open FDT file '%s'\n", fname);
311 return -EACCES;
312 }
313 if (os_read(fd, blob, size) != size) {
314 os_close(fd);
315 return -EIO;
316 }
317 os_close(fd);
318
319 done:
320 gd->fdt_blob = blob;
321
322 return 0;
323 }
324 #endif
325
326 #ifdef CONFIG_SANDBOX
327 static int setup_ram_buf(void)
328 {
329 struct sandbox_state *state = state_get_current();
330
331 gd->arch.ram_buf = state->ram_buf;
332 gd->ram_size = state->ram_size;
333
334 return 0;
335 }
336 #endif
337
338 static int setup_fdt(void)
339 {
340 #ifdef CONFIG_OF_EMBED
341 /* Get a pointer to the FDT */
342 gd->fdt_blob = __dtb_dt_begin;
343 #elif defined CONFIG_OF_SEPARATE
344 /* FDT is at end of image */
345 gd->fdt_blob = (ulong *)&_end;
346 #elif defined(CONFIG_OF_HOSTFILE)
347 if (read_fdt_from_file()) {
348 puts("Failed to read control FDT\n");
349 return -1;
350 }
351 #endif
352 /* Allow the early environment to override the fdt address */
353 gd->fdt_blob = (void *)getenv_ulong("fdtcontroladdr", 16,
354 (uintptr_t)gd->fdt_blob);
355 return 0;
356 }
357
358 /* Get the top of usable RAM */
359 __weak ulong board_get_usable_ram_top(ulong total_size)
360 {
361 return gd->ram_top;
362 }
363
364 static int setup_dest_addr(void)
365 {
366 debug("Monitor len: %08lX\n", gd->mon_len);
367 /*
368 * Ram is setup, size stored in gd !!
369 */
370 debug("Ram size: %08lX\n", (ulong)gd->ram_size);
371 #if defined(CONFIG_SYS_MEM_TOP_HIDE)
372 /*
373 * Subtract specified amount of memory to hide so that it won't
374 * get "touched" at all by U-Boot. By fixing up gd->ram_size
375 * the Linux kernel should now get passed the now "corrected"
376 * memory size and won't touch it either. This should work
377 * for arch/ppc and arch/powerpc. Only Linux board ports in
378 * arch/powerpc with bootwrapper support, that recalculate the
379 * memory size from the SDRAM controller setup will have to
380 * get fixed.
381 */
382 gd->ram_size -= CONFIG_SYS_MEM_TOP_HIDE;
383 #endif
384 #ifdef CONFIG_SYS_SDRAM_BASE
385 gd->ram_top = CONFIG_SYS_SDRAM_BASE;
386 #endif
387 gd->ram_top += get_effective_memsize();
388 gd->ram_top = board_get_usable_ram_top(gd->mon_len);
389 gd->relocaddr = gd->ram_top;
390 debug("Ram top: %08lX\n", (ulong)gd->ram_top);
391 #if defined(CONFIG_MP) && (defined(CONFIG_MPC86xx) || defined(CONFIG_E500))
392 /*
393 * We need to make sure the location we intend to put secondary core
394 * boot code is reserved and not used by any part of u-boot
395 */
396 if (gd->relocaddr > determine_mp_bootpg(NULL)) {
397 gd->relocaddr = determine_mp_bootpg(NULL);
398 debug("Reserving MP boot page to %08lx\n", gd->relocaddr);
399 }
400 #endif
401 return 0;
402 }
403
404 #if defined(CONFIG_LOGBUFFER) && !defined(CONFIG_ALT_LB_ADDR)
405 static int reserve_logbuffer(void)
406 {
407 /* reserve kernel log buffer */
408 gd->relocaddr -= LOGBUFF_RESERVE;
409 debug("Reserving %dk for kernel logbuffer at %08lx\n", LOGBUFF_LEN,
410 gd->relocaddr);
411 return 0;
412 }
413 #endif
414
415 #ifdef CONFIG_PRAM
416 /* reserve protected RAM */
417 static int reserve_pram(void)
418 {
419 ulong reg;
420
421 reg = getenv_ulong("pram", 10, CONFIG_PRAM);
422 gd->relocaddr -= (reg << 10); /* size is in kB */
423 debug("Reserving %ldk for protected RAM at %08lx\n", reg,
424 gd->relocaddr);
425 return 0;
426 }
427 #endif /* CONFIG_PRAM */
428
429 /* Round memory pointer down to next 4 kB limit */
430 static int reserve_round_4k(void)
431 {
432 gd->relocaddr &= ~(4096 - 1);
433 return 0;
434 }
435
436 #if !(defined(CONFIG_SYS_ICACHE_OFF) && defined(CONFIG_SYS_DCACHE_OFF)) && \
437 defined(CONFIG_ARM)
438 static int reserve_mmu(void)
439 {
440 /* reserve TLB table */
441 gd->arch.tlb_size = PGTABLE_SIZE;
442 gd->relocaddr -= gd->arch.tlb_size;
443
444 /* round down to next 64 kB limit */
445 gd->relocaddr &= ~(0x10000 - 1);
446
447 gd->arch.tlb_addr = gd->relocaddr;
448 debug("TLB table from %08lx to %08lx\n", gd->arch.tlb_addr,
449 gd->arch.tlb_addr + gd->arch.tlb_size);
450 return 0;
451 }
452 #endif
453
454 #ifdef CONFIG_LCD
455 static int reserve_lcd(void)
456 {
457 #ifdef CONFIG_FB_ADDR
458 gd->fb_base = CONFIG_FB_ADDR;
459 #else
460 /* reserve memory for LCD display (always full pages) */
461 gd->relocaddr = lcd_setmem(gd->relocaddr);
462 gd->fb_base = gd->relocaddr;
463 #endif /* CONFIG_FB_ADDR */
464 return 0;
465 }
466 #endif /* CONFIG_LCD */
467
468 static int reserve_trace(void)
469 {
470 #ifdef CONFIG_TRACE
471 gd->relocaddr -= CONFIG_TRACE_BUFFER_SIZE;
472 gd->trace_buff = map_sysmem(gd->relocaddr, CONFIG_TRACE_BUFFER_SIZE);
473 debug("Reserving %dk for trace data at: %08lx\n",
474 CONFIG_TRACE_BUFFER_SIZE >> 10, gd->relocaddr);
475 #endif
476
477 return 0;
478 }
479
480 #if defined(CONFIG_VIDEO) && (!defined(CONFIG_PPC) || defined(CONFIG_8xx)) \
481 && !defined(CONFIG_ARM) && !defined(CONFIG_X86)
482 static int reserve_video(void)
483 {
484 /* reserve memory for video display (always full pages) */
485 gd->relocaddr = video_setmem(gd->relocaddr);
486 gd->fb_base = gd->relocaddr;
487
488 return 0;
489 }
490 #endif
491
492 static int reserve_uboot(void)
493 {
494 /*
495 * reserve memory for U-Boot code, data & bss
496 * round down to next 4 kB limit
497 */
498 gd->relocaddr -= gd->mon_len;
499 gd->relocaddr &= ~(4096 - 1);
500 #ifdef CONFIG_E500
501 /* round down to next 64 kB limit so that IVPR stays aligned */
502 gd->relocaddr &= ~(65536 - 1);
503 #endif
504
505 debug("Reserving %ldk for U-Boot at: %08lx\n", gd->mon_len >> 10,
506 gd->relocaddr);
507
508 gd->start_addr_sp = gd->relocaddr;
509
510 return 0;
511 }
512
513 #ifndef CONFIG_SPL_BUILD
514 /* reserve memory for malloc() area */
515 static int reserve_malloc(void)
516 {
517 gd->start_addr_sp = gd->start_addr_sp - TOTAL_MALLOC_LEN;
518 debug("Reserving %dk for malloc() at: %08lx\n",
519 TOTAL_MALLOC_LEN >> 10, gd->start_addr_sp);
520 return 0;
521 }
522
523 /* (permanently) allocate a Board Info struct */
524 static int reserve_board(void)
525 {
526 gd->start_addr_sp -= sizeof(bd_t);
527 gd->bd = (bd_t *)map_sysmem(gd->start_addr_sp, sizeof(bd_t));
528 memset(gd->bd, '\0', sizeof(bd_t));
529 debug("Reserving %zu Bytes for Board Info at: %08lx\n",
530 sizeof(bd_t), gd->start_addr_sp);
531 return 0;
532 }
533 #endif
534
535 static int setup_machine(void)
536 {
537 #ifdef CONFIG_MACH_TYPE
538 gd->bd->bi_arch_number = CONFIG_MACH_TYPE; /* board id for Linux */
539 #endif
540 return 0;
541 }
542
543 static int reserve_global_data(void)
544 {
545 gd->start_addr_sp -= sizeof(gd_t);
546 gd->new_gd = (gd_t *)map_sysmem(gd->start_addr_sp, sizeof(gd_t));
547 debug("Reserving %zu Bytes for Global Data at: %08lx\n",
548 sizeof(gd_t), gd->start_addr_sp);
549 return 0;
550 }
551
552 static int reserve_fdt(void)
553 {
554 /*
555 * If the device tree is sitting immediate above our image then we
556 * must relocate it. If it is embedded in the data section, then it
557 * will be relocated with other data.
558 */
559 if (gd->fdt_blob) {
560 gd->fdt_size = ALIGN(fdt_totalsize(gd->fdt_blob) + 0x1000, 32);
561
562 gd->start_addr_sp -= gd->fdt_size;
563 gd->new_fdt = map_sysmem(gd->start_addr_sp, gd->fdt_size);
564 debug("Reserving %lu Bytes for FDT at: %08lx\n",
565 gd->fdt_size, gd->start_addr_sp);
566 }
567
568 return 0;
569 }
570
571 static int reserve_stacks(void)
572 {
573 #ifdef CONFIG_SPL_BUILD
574 # ifdef CONFIG_ARM
575 gd->start_addr_sp -= 128; /* leave 32 words for abort-stack */
576 gd->irq_sp = gd->start_addr_sp;
577 # endif
578 #else
579 # ifdef CONFIG_PPC
580 ulong *s;
581 # endif
582
583 /* setup stack pointer for exceptions */
584 gd->start_addr_sp -= 16;
585 gd->start_addr_sp &= ~0xf;
586 gd->irq_sp = gd->start_addr_sp;
587
588 /*
589 * Handle architecture-specific things here
590 * TODO(sjg@chromium.org): Perhaps create arch_reserve_stack()
591 * to handle this and put in arch/xxx/lib/stack.c
592 */
593 # if defined(CONFIG_ARM) && !defined(CONFIG_ARM64)
594 # ifdef CONFIG_USE_IRQ
595 gd->start_addr_sp -= (CONFIG_STACKSIZE_IRQ + CONFIG_STACKSIZE_FIQ);
596 debug("Reserving %zu Bytes for IRQ stack at: %08lx\n",
597 CONFIG_STACKSIZE_IRQ + CONFIG_STACKSIZE_FIQ, gd->start_addr_sp);
598
599 /* 8-byte alignment for ARM ABI compliance */
600 gd->start_addr_sp &= ~0x07;
601 # endif
602 /* leave 3 words for abort-stack, plus 1 for alignment */
603 gd->start_addr_sp -= 16;
604 # elif defined(CONFIG_PPC)
605 /* Clear initial stack frame */
606 s = (ulong *) gd->start_addr_sp;
607 *s = 0; /* Terminate back chain */
608 *++s = 0; /* NULL return address */
609 # endif /* Architecture specific code */
610
611 return 0;
612 #endif
613 }
614
615 static int display_new_sp(void)
616 {
617 debug("New Stack Pointer is: %08lx\n", gd->start_addr_sp);
618
619 return 0;
620 }
621
622 #ifdef CONFIG_PPC
623 static int setup_board_part1(void)
624 {
625 bd_t *bd = gd->bd;
626
627 /*
628 * Save local variables to board info struct
629 */
630
631 bd->bi_memstart = CONFIG_SYS_SDRAM_BASE; /* start of memory */
632 bd->bi_memsize = gd->ram_size; /* size in bytes */
633
634 #ifdef CONFIG_SYS_SRAM_BASE
635 bd->bi_sramstart = CONFIG_SYS_SRAM_BASE; /* start of SRAM */
636 bd->bi_sramsize = CONFIG_SYS_SRAM_SIZE; /* size of SRAM */
637 #endif
638
639 #if defined(CONFIG_8xx) || defined(CONFIG_MPC8260) || defined(CONFIG_5xx) || \
640 defined(CONFIG_E500) || defined(CONFIG_MPC86xx)
641 bd->bi_immr_base = CONFIG_SYS_IMMR; /* base of IMMR register */
642 #endif
643 #if defined(CONFIG_MPC5xxx)
644 bd->bi_mbar_base = CONFIG_SYS_MBAR; /* base of internal registers */
645 #endif
646 #if defined(CONFIG_MPC83xx)
647 bd->bi_immrbar = CONFIG_SYS_IMMR;
648 #endif
649
650 return 0;
651 }
652
653 static int setup_board_part2(void)
654 {
655 bd_t *bd = gd->bd;
656
657 bd->bi_intfreq = gd->cpu_clk; /* Internal Freq, in Hz */
658 bd->bi_busfreq = gd->bus_clk; /* Bus Freq, in Hz */
659 #if defined(CONFIG_CPM2)
660 bd->bi_cpmfreq = gd->arch.cpm_clk;
661 bd->bi_brgfreq = gd->arch.brg_clk;
662 bd->bi_sccfreq = gd->arch.scc_clk;
663 bd->bi_vco = gd->arch.vco_out;
664 #endif /* CONFIG_CPM2 */
665 #if defined(CONFIG_MPC512X)
666 bd->bi_ipsfreq = gd->arch.ips_clk;
667 #endif /* CONFIG_MPC512X */
668 #if defined(CONFIG_MPC5xxx)
669 bd->bi_ipbfreq = gd->arch.ipb_clk;
670 bd->bi_pcifreq = gd->pci_clk;
671 #endif /* CONFIG_MPC5xxx */
672
673 return 0;
674 }
675 #endif
676
677 #ifdef CONFIG_SYS_EXTBDINFO
678 static int setup_board_extra(void)
679 {
680 bd_t *bd = gd->bd;
681
682 strncpy((char *) bd->bi_s_version, "1.2", sizeof(bd->bi_s_version));
683 strncpy((char *) bd->bi_r_version, U_BOOT_VERSION,
684 sizeof(bd->bi_r_version));
685
686 bd->bi_procfreq = gd->cpu_clk; /* Processor Speed, In Hz */
687 bd->bi_plb_busfreq = gd->bus_clk;
688 #if defined(CONFIG_405GP) || defined(CONFIG_405EP) || \
689 defined(CONFIG_440EP) || defined(CONFIG_440GR) || \
690 defined(CONFIG_440EPX) || defined(CONFIG_440GRX)
691 bd->bi_pci_busfreq = get_PCI_freq();
692 bd->bi_opbfreq = get_OPB_freq();
693 #elif defined(CONFIG_XILINX_405)
694 bd->bi_pci_busfreq = get_PCI_freq();
695 #endif
696
697 return 0;
698 }
699 #endif
700
701 #ifdef CONFIG_POST
702 static int init_post(void)
703 {
704 post_bootmode_init();
705 post_run(NULL, POST_ROM | post_bootmode_get(0));
706
707 return 0;
708 }
709 #endif
710
711 static int setup_baud_rate(void)
712 {
713 /* Ick, can we get rid of this line? */
714 gd->bd->bi_baudrate = gd->baudrate;
715
716 return 0;
717 }
718
719 static int setup_dram_config(void)
720 {
721 /* Ram is board specific, so move it to board code ... */
722 dram_init_banksize();
723
724 return 0;
725 }
726
727 static int reloc_fdt(void)
728 {
729 if (gd->new_fdt) {
730 memcpy(gd->new_fdt, gd->fdt_blob, gd->fdt_size);
731 gd->fdt_blob = gd->new_fdt;
732 }
733
734 return 0;
735 }
736
737 static int setup_reloc(void)
738 {
739 gd->reloc_off = gd->relocaddr - CONFIG_SYS_TEXT_BASE;
740 memcpy(gd->new_gd, (char *)gd, sizeof(gd_t));
741
742 debug("Relocation Offset is: %08lx\n", gd->reloc_off);
743 debug("Relocating to %08lx, new gd at %08lx, sp at %08lx\n",
744 gd->relocaddr, (ulong)map_to_sysmem(gd->new_gd),
745 gd->start_addr_sp);
746
747 return 0;
748 }
749
750 /* ARM calls relocate_code from its crt0.S */
751 #if !defined(CONFIG_ARM) && !defined(CONFIG_SANDBOX)
752
753 static int jump_to_copy(void)
754 {
755 /*
756 * x86 is special, but in a nice way. It uses a trampoline which
757 * enables the dcache if possible.
758 *
759 * For now, other archs use relocate_code(), which is implemented
760 * similarly for all archs. When we do generic relocation, hopefully
761 * we can make all archs enable the dcache prior to relocation.
762 */
763 #ifdef CONFIG_X86
764 /*
765 * SDRAM and console are now initialised. The final stack can now
766 * be setup in SDRAM. Code execution will continue in Flash, but
767 * with the stack in SDRAM and Global Data in temporary memory
768 * (CPU cache)
769 */
770 board_init_f_r_trampoline(gd->start_addr_sp);
771 #else
772 relocate_code(gd->start_addr_sp, gd->new_gd, gd->relocaddr);
773 #endif
774
775 return 0;
776 }
777 #endif
778
779 /* Record the board_init_f() bootstage (after arch_cpu_init()) */
780 static int mark_bootstage(void)
781 {
782 bootstage_mark_name(BOOTSTAGE_ID_START_UBOOT_F, "board_init_f");
783
784 return 0;
785 }
786
787 static init_fnc_t init_sequence_f[] = {
788 #ifdef CONFIG_SANDBOX
789 setup_ram_buf,
790 #endif
791 setup_mon_len,
792 setup_fdt,
793 trace_early_init,
794 #if defined(CONFIG_MPC85xx) || defined(CONFIG_MPC86xx)
795 /* TODO: can this go into arch_cpu_init()? */
796 probecpu,
797 #endif
798 arch_cpu_init, /* basic arch cpu dependent setup */
799 #ifdef CONFIG_X86
800 cpu_init_f, /* TODO(sjg@chromium.org): remove */
801 # ifdef CONFIG_OF_CONTROL
802 find_fdt, /* TODO(sjg@chromium.org): remove */
803 # endif
804 #endif
805 mark_bootstage,
806 #ifdef CONFIG_OF_CONTROL
807 fdtdec_check_fdt,
808 #endif
809 #if defined(CONFIG_BOARD_EARLY_INIT_F)
810 board_early_init_f,
811 #endif
812 /* TODO: can any of this go into arch_cpu_init()? */
813 #if defined(CONFIG_PPC) && !defined(CONFIG_8xx_CPUCLK_DEFAULT)
814 get_clocks, /* get CPU and bus clocks (etc.) */
815 #if defined(CONFIG_TQM8xxL) && !defined(CONFIG_TQM866M) \
816 && !defined(CONFIG_TQM885D)
817 adjust_sdram_tbs_8xx,
818 #endif
819 /* TODO: can we rename this to timer_init()? */
820 init_timebase,
821 #endif
822 #if defined(CONFIG_ARM) || defined(CONFIG_MIPS)
823 timer_init, /* initialize timer */
824 #endif
825 #ifdef CONFIG_SYS_ALLOC_DPRAM
826 #if !defined(CONFIG_CPM2)
827 dpram_init,
828 #endif
829 #endif
830 #if defined(CONFIG_BOARD_POSTCLK_INIT)
831 board_postclk_init,
832 #endif
833 #ifdef CONFIG_FSL_ESDHC
834 get_clocks,
835 #endif
836 env_init, /* initialize environment */
837 #if defined(CONFIG_8xx_CPUCLK_DEFAULT)
838 /* get CPU and bus clocks according to the environment variable */
839 get_clocks_866,
840 /* adjust sdram refresh rate according to the new clock */
841 sdram_adjust_866,
842 init_timebase,
843 #endif
844 init_baud_rate, /* initialze baudrate settings */
845 serial_init, /* serial communications setup */
846 console_init_f, /* stage 1 init of console */
847 #ifdef CONFIG_SANDBOX
848 sandbox_early_getopt_check,
849 #endif
850 #ifdef CONFIG_OF_CONTROL
851 fdtdec_prepare_fdt,
852 #endif
853 display_options, /* say that we are here */
854 display_text_info, /* show debugging info if required */
855 #if defined(CONFIG_MPC8260)
856 prt_8260_rsr,
857 prt_8260_clks,
858 #endif /* CONFIG_MPC8260 */
859 #if defined(CONFIG_MPC83xx)
860 prt_83xx_rsr,
861 #endif
862 #ifdef CONFIG_PPC
863 checkcpu,
864 #endif
865 print_cpuinfo, /* display cpu info (and speed) */
866 #if defined(CONFIG_MPC5xxx)
867 prt_mpc5xxx_clks,
868 #endif /* CONFIG_MPC5xxx */
869 #if defined(CONFIG_DISPLAY_BOARDINFO)
870 checkboard, /* display board info */
871 #endif
872 INIT_FUNC_WATCHDOG_INIT
873 #if defined(CONFIG_MISC_INIT_F)
874 misc_init_f,
875 #endif
876 INIT_FUNC_WATCHDOG_RESET
877 #if defined(CONFIG_HARD_I2C) || defined(CONFIG_SYS_I2C)
878 init_func_i2c,
879 #endif
880 #if defined(CONFIG_HARD_SPI)
881 init_func_spi,
882 #endif
883 #ifdef CONFIG_X86
884 dram_init_f, /* configure available RAM banks */
885 calculate_relocation_address,
886 #endif
887 announce_dram_init,
888 /* TODO: unify all these dram functions? */
889 #ifdef CONFIG_ARM
890 dram_init, /* configure available RAM banks */
891 #endif
892 #if defined(CONFIG_MIPS) || defined(CONFIG_PPC)
893 init_func_ram,
894 #endif
895 #ifdef CONFIG_POST
896 post_init_f,
897 #endif
898 INIT_FUNC_WATCHDOG_RESET
899 #if defined(CONFIG_SYS_DRAM_TEST)
900 testdram,
901 #endif /* CONFIG_SYS_DRAM_TEST */
902 INIT_FUNC_WATCHDOG_RESET
903
904 #ifdef CONFIG_POST
905 init_post,
906 #endif
907 INIT_FUNC_WATCHDOG_RESET
908 /*
909 * Now that we have DRAM mapped and working, we can
910 * relocate the code and continue running from DRAM.
911 *
912 * Reserve memory at end of RAM for (top down in that order):
913 * - area that won't get touched by U-Boot and Linux (optional)
914 * - kernel log buffer
915 * - protected RAM
916 * - LCD framebuffer
917 * - monitor code
918 * - board info struct
919 */
920 setup_dest_addr,
921 #if defined(CONFIG_LOGBUFFER) && !defined(CONFIG_ALT_LB_ADDR)
922 reserve_logbuffer,
923 #endif
924 #ifdef CONFIG_PRAM
925 reserve_pram,
926 #endif
927 reserve_round_4k,
928 #if !(defined(CONFIG_SYS_ICACHE_OFF) && defined(CONFIG_SYS_DCACHE_OFF)) && \
929 defined(CONFIG_ARM)
930 reserve_mmu,
931 #endif
932 #ifdef CONFIG_LCD
933 reserve_lcd,
934 #endif
935 reserve_trace,
936 /* TODO: Why the dependency on CONFIG_8xx? */
937 #if defined(CONFIG_VIDEO) && (!defined(CONFIG_PPC) || defined(CONFIG_8xx)) \
938 && !defined(CONFIG_ARM) && !defined(CONFIG_X86)
939 reserve_video,
940 #endif
941 reserve_uboot,
942 #ifndef CONFIG_SPL_BUILD
943 reserve_malloc,
944 reserve_board,
945 #endif
946 setup_machine,
947 reserve_global_data,
948 reserve_fdt,
949 reserve_stacks,
950 setup_dram_config,
951 show_dram_config,
952 #ifdef CONFIG_PPC
953 setup_board_part1,
954 INIT_FUNC_WATCHDOG_RESET
955 setup_board_part2,
956 #endif
957 setup_baud_rate,
958 display_new_sp,
959 #ifdef CONFIG_SYS_EXTBDINFO
960 setup_board_extra,
961 #endif
962 INIT_FUNC_WATCHDOG_RESET
963 reloc_fdt,
964 setup_reloc,
965 #if !defined(CONFIG_ARM) && !defined(CONFIG_SANDBOX)
966 jump_to_copy,
967 #endif
968 NULL,
969 };
970
971 void board_init_f(ulong boot_flags)
972 {
973 #ifndef CONFIG_X86
974 gd_t data;
975
976 gd = &data;
977 #endif
978
979 /*
980 * Clear global data before it is accessed at debug print
981 * in initcall_run_list. Otherwise the debug print probably
982 * get the wrong vaule of gd->have_console.
983 */
984 #if !defined(CONFIG_CPM2) && !defined(CONFIG_MPC512X) && \
985 !defined(CONFIG_MPC83xx) && !defined(CONFIG_MPC85xx) && \
986 !defined(CONFIG_MPC86xx) && !defined(CONFIG_X86)
987 zero_global_data();
988 #endif
989
990 gd->flags = boot_flags;
991 gd->have_console = 0;
992
993 if (initcall_run_list(init_sequence_f))
994 hang();
995
996 #if !defined(CONFIG_ARM) && !defined(CONFIG_SANDBOX)
997 /* NOTREACHED - jump_to_copy() does not return */
998 hang();
999 #endif
1000 }
1001
1002 #ifdef CONFIG_X86
1003 /*
1004 * For now this code is only used on x86.
1005 *
1006 * init_sequence_f_r is the list of init functions which are run when
1007 * U-Boot is executing from Flash with a semi-limited 'C' environment.
1008 * The following limitations must be considered when implementing an
1009 * '_f_r' function:
1010 * - 'static' variables are read-only
1011 * - Global Data (gd->xxx) is read/write
1012 *
1013 * The '_f_r' sequence must, as a minimum, copy U-Boot to RAM (if
1014 * supported). It _should_, if possible, copy global data to RAM and
1015 * initialise the CPU caches (to speed up the relocation process)
1016 *
1017 * NOTE: At present only x86 uses this route, but it is intended that
1018 * all archs will move to this when generic relocation is implemented.
1019 */
1020 static init_fnc_t init_sequence_f_r[] = {
1021 init_cache_f_r,
1022 copy_uboot_to_ram,
1023 clear_bss,
1024 do_elf_reloc_fixups,
1025
1026 NULL,
1027 };
1028
1029 void board_init_f_r(void)
1030 {
1031 if (initcall_run_list(init_sequence_f_r))
1032 hang();
1033
1034 /*
1035 * U-Boot has been copied into SDRAM, the BSS has been cleared etc.
1036 * Transfer execution from Flash to RAM by calculating the address
1037 * of the in-RAM copy of board_init_r() and calling it
1038 */
1039 (board_init_r + gd->reloc_off)(gd, gd->relocaddr);
1040
1041 /* NOTREACHED - board_init_r() does not return */
1042 hang();
1043 }
1044 #endif /* CONFIG_X86 */