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