]>
Commit | Line | Data |
---|---|---|
1938f4a5 SG |
1 | /* |
2 | * Copyright (c) 2011 The Chromium OS Authors. | |
3 | * (C) Copyright 2002-2006 | |
4 | * Wolfgang Denk, DENX Software Engineering, [email protected]. | |
5 | * | |
6 | * (C) Copyright 2002 | |
7 | * Sysgo Real-Time Solutions, GmbH <www.elinos.com> | |
8 | * Marius Groeger <[email protected]> | |
9 | * | |
1a459660 | 10 | * SPDX-License-Identifier: GPL-2.0+ |
1938f4a5 SG |
11 | */ |
12 | ||
13 | #include <common.h> | |
14 | #include <linux/compiler.h> | |
15 | #include <version.h> | |
16 | #include <environment.h> | |
17 | #include <fdtdec.h> | |
f828bf25 | 18 | #include <fs.h> |
e4fef6cf SG |
19 | #if defined(CONFIG_CMD_IDE) |
20 | #include <ide.h> | |
21 | #endif | |
22 | #include <i2c.h> | |
1938f4a5 SG |
23 | #include <initcall.h> |
24 | #include <logbuff.h> | |
e4fef6cf SG |
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 | ||
a733b06b | 37 | #include <os.h> |
1938f4a5 | 38 | #include <post.h> |
e4fef6cf | 39 | #include <spi.h> |
71c52dba | 40 | #include <trace.h> |
e4fef6cf | 41 | #include <watchdog.h> |
a733b06b | 42 | #include <asm/errno.h> |
1938f4a5 | 43 | #include <asm/io.h> |
e4fef6cf SG |
44 | #ifdef CONFIG_MP |
45 | #include <asm/mp.h> | |
46 | #endif | |
1938f4a5 | 47 | #include <asm/sections.h> |
48a33806 SG |
48 | #ifdef CONFIG_X86 |
49 | #include <asm/init_helpers.h> | |
50 | #include <asm/relocate.h> | |
51 | #endif | |
a733b06b SG |
52 | #ifdef CONFIG_SANDBOX |
53 | #include <asm/state.h> | |
54 | #endif | |
1938f4a5 SG |
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 | ||
e4fef6cf SG |
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 | ||
1938f4a5 SG |
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 | { | |
a733b06b | 149 | #ifndef CONFIG_SANDBOX |
1938f4a5 SG |
150 | ulong bss_start, bss_end; |
151 | ||
632efa74 SG |
152 | bss_start = (ulong)&__bss_start; |
153 | bss_end = (ulong)&__bss_end; | |
b60eff31 | 154 | |
1938f4a5 SG |
155 | debug("U-Boot code: %08X -> %08lX BSS: -> %08lX\n", |
156 | CONFIG_SYS_TEXT_BASE, bss_start, bss_end); | |
a733b06b | 157 | #endif |
1938f4a5 SG |
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 | ||
e4fef6cf SG |
176 | #ifdef 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 | ||
1938f4a5 SG |
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 | ||
e4fef6cf SG |
215 | print_size(size, ""); |
216 | board_add_ram_info(0); | |
217 | putc('\n'); | |
1938f4a5 SG |
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 | ||
ea818dbb | 233 | #if defined(CONFIG_HARD_I2C) || defined(CONFIG_SYS_I2C) |
e4fef6cf SG |
234 | static int init_func_i2c(void) |
235 | { | |
236 | puts("I2C: "); | |
815a76f2 | 237 | #ifdef CONFIG_SYS_I2C |
238 | i2c_init_all(); | |
239 | #else | |
e4fef6cf | 240 | i2c_init(CONFIG_SYS_I2C_SPEED, CONFIG_SYS_I2C_SLAVE); |
815a76f2 | 241 | #endif |
e4fef6cf SG |
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 | |
1938f4a5 SG |
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 | { | |
b60eff31 AA |
267 | #ifdef __ARM__ |
268 | gd->mon_len = (ulong)&__bss_end - (ulong)_start; | |
a733b06b SG |
269 | #elif defined(CONFIG_SANDBOX) |
270 | gd->mon_len = (ulong)&_end - (ulong)_init; | |
632efa74 | 271 | #else |
e4fef6cf SG |
272 | /* TODO: use (ulong)&__bss_end - (ulong)&__text_start; ? */ |
273 | gd->mon_len = (ulong)&__bss_end - CONFIG_SYS_MONITOR_BASE; | |
632efa74 | 274 | #endif |
1938f4a5 SG |
275 | return 0; |
276 | } | |
277 | ||
278 | __weak int arch_cpu_init(void) | |
279 | { | |
280 | return 0; | |
281 | } | |
282 | ||
f828bf25 SG |
283 | #ifdef CONFIG_OF_HOSTFILE |
284 | ||
285 | #define CHECK(x) err = (x); if (err) goto failed; | |
286 | ||
287 | /* Create an empty device tree blob */ | |
288 | static int make_empty_fdt(void *fdt) | |
289 | { | |
290 | int err; | |
291 | ||
292 | CHECK(fdt_create(fdt, 256)); | |
293 | CHECK(fdt_finish_reservemap(fdt)); | |
294 | CHECK(fdt_begin_node(fdt, "")); | |
295 | CHECK(fdt_end_node(fdt)); | |
296 | CHECK(fdt_finish(fdt)); | |
297 | ||
298 | return 0; | |
299 | failed: | |
300 | printf("Unable to create empty FDT: %s\n", fdt_strerror(err)); | |
301 | return -EACCES; | |
302 | } | |
303 | ||
304 | static int read_fdt_from_file(void) | |
305 | { | |
306 | struct sandbox_state *state = state_get_current(); | |
307 | void *blob; | |
308 | int size; | |
309 | int err; | |
310 | ||
311 | blob = map_sysmem(CONFIG_SYS_FDT_LOAD_ADDR, 0); | |
312 | if (!state->fdt_fname) { | |
313 | err = make_empty_fdt(blob); | |
314 | if (!err) | |
315 | goto done; | |
316 | return err; | |
317 | } | |
318 | err = fs_set_blk_dev("host", NULL, FS_TYPE_SANDBOX); | |
319 | if (err) | |
320 | return err; | |
321 | size = fs_read(state->fdt_fname, CONFIG_SYS_FDT_LOAD_ADDR, 0, 0); | |
322 | if (size < 0) | |
323 | return -EIO; | |
324 | ||
325 | done: | |
326 | gd->fdt_blob = blob; | |
327 | ||
328 | return 0; | |
329 | } | |
330 | #endif | |
331 | ||
a733b06b SG |
332 | #ifdef CONFIG_SANDBOX |
333 | static int setup_ram_buf(void) | |
334 | { | |
5c2859cd SG |
335 | struct sandbox_state *state = state_get_current(); |
336 | ||
337 | gd->arch.ram_buf = state->ram_buf; | |
338 | gd->ram_size = state->ram_size; | |
a733b06b SG |
339 | |
340 | return 0; | |
341 | } | |
342 | #endif | |
343 | ||
1938f4a5 SG |
344 | static int setup_fdt(void) |
345 | { | |
346 | #ifdef CONFIG_OF_EMBED | |
347 | /* Get a pointer to the FDT */ | |
6ab6b2af | 348 | gd->fdt_blob = __dtb_dt_begin; |
1938f4a5 SG |
349 | #elif defined CONFIG_OF_SEPARATE |
350 | /* FDT is at end of image */ | |
632efa74 | 351 | gd->fdt_blob = (ulong *)&_end; |
f828bf25 SG |
352 | #elif defined(CONFIG_OF_HOSTFILE) |
353 | if (read_fdt_from_file()) { | |
354 | puts("Failed to read control FDT\n"); | |
355 | return -1; | |
356 | } | |
1938f4a5 SG |
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 | return 0; | |
362 | } | |
363 | ||
364 | /* Get the top of usable RAM */ | |
365 | __weak ulong board_get_usable_ram_top(ulong total_size) | |
366 | { | |
367 | return gd->ram_top; | |
368 | } | |
369 | ||
370 | static int setup_dest_addr(void) | |
371 | { | |
372 | debug("Monitor len: %08lX\n", gd->mon_len); | |
373 | /* | |
374 | * Ram is setup, size stored in gd !! | |
375 | */ | |
376 | debug("Ram size: %08lX\n", (ulong)gd->ram_size); | |
377 | #if defined(CONFIG_SYS_MEM_TOP_HIDE) | |
378 | /* | |
379 | * Subtract specified amount of memory to hide so that it won't | |
380 | * get "touched" at all by U-Boot. By fixing up gd->ram_size | |
381 | * the Linux kernel should now get passed the now "corrected" | |
382 | * memory size and won't touch it either. This should work | |
383 | * for arch/ppc and arch/powerpc. Only Linux board ports in | |
384 | * arch/powerpc with bootwrapper support, that recalculate the | |
385 | * memory size from the SDRAM controller setup will have to | |
386 | * get fixed. | |
387 | */ | |
388 | gd->ram_size -= CONFIG_SYS_MEM_TOP_HIDE; | |
389 | #endif | |
390 | #ifdef CONFIG_SYS_SDRAM_BASE | |
391 | gd->ram_top = CONFIG_SYS_SDRAM_BASE; | |
392 | #endif | |
e4fef6cf | 393 | gd->ram_top += get_effective_memsize(); |
1938f4a5 | 394 | gd->ram_top = board_get_usable_ram_top(gd->mon_len); |
a0ba279a | 395 | gd->relocaddr = gd->ram_top; |
1938f4a5 | 396 | debug("Ram top: %08lX\n", (ulong)gd->ram_top); |
e4fef6cf SG |
397 | #if defined(CONFIG_MP) && (defined(CONFIG_MPC86xx) || defined(CONFIG_E500)) |
398 | /* | |
399 | * We need to make sure the location we intend to put secondary core | |
400 | * boot code is reserved and not used by any part of u-boot | |
401 | */ | |
a0ba279a MY |
402 | if (gd->relocaddr > determine_mp_bootpg(NULL)) { |
403 | gd->relocaddr = determine_mp_bootpg(NULL); | |
404 | debug("Reserving MP boot page to %08lx\n", gd->relocaddr); | |
e4fef6cf SG |
405 | } |
406 | #endif | |
1938f4a5 SG |
407 | return 0; |
408 | } | |
409 | ||
410 | #if defined(CONFIG_LOGBUFFER) && !defined(CONFIG_ALT_LB_ADDR) | |
411 | static int reserve_logbuffer(void) | |
412 | { | |
413 | /* reserve kernel log buffer */ | |
a0ba279a | 414 | gd->relocaddr -= LOGBUFF_RESERVE; |
1938f4a5 | 415 | debug("Reserving %dk for kernel logbuffer at %08lx\n", LOGBUFF_LEN, |
a0ba279a | 416 | gd->relocaddr); |
1938f4a5 SG |
417 | return 0; |
418 | } | |
419 | #endif | |
420 | ||
421 | #ifdef CONFIG_PRAM | |
422 | /* reserve protected RAM */ | |
423 | static int reserve_pram(void) | |
424 | { | |
425 | ulong reg; | |
426 | ||
427 | reg = getenv_ulong("pram", 10, CONFIG_PRAM); | |
a0ba279a | 428 | gd->relocaddr -= (reg << 10); /* size is in kB */ |
1938f4a5 | 429 | debug("Reserving %ldk for protected RAM at %08lx\n", reg, |
a0ba279a | 430 | gd->relocaddr); |
1938f4a5 SG |
431 | return 0; |
432 | } | |
433 | #endif /* CONFIG_PRAM */ | |
434 | ||
435 | /* Round memory pointer down to next 4 kB limit */ | |
436 | static int reserve_round_4k(void) | |
437 | { | |
a0ba279a | 438 | gd->relocaddr &= ~(4096 - 1); |
1938f4a5 SG |
439 | return 0; |
440 | } | |
441 | ||
442 | #if !(defined(CONFIG_SYS_ICACHE_OFF) && defined(CONFIG_SYS_DCACHE_OFF)) && \ | |
443 | defined(CONFIG_ARM) | |
444 | static int reserve_mmu(void) | |
445 | { | |
446 | /* reserve TLB table */ | |
cce6be7f | 447 | gd->arch.tlb_size = PGTABLE_SIZE; |
a0ba279a | 448 | gd->relocaddr -= gd->arch.tlb_size; |
1938f4a5 SG |
449 | |
450 | /* round down to next 64 kB limit */ | |
a0ba279a | 451 | gd->relocaddr &= ~(0x10000 - 1); |
1938f4a5 | 452 | |
a0ba279a | 453 | gd->arch.tlb_addr = gd->relocaddr; |
1938f4a5 SG |
454 | debug("TLB table from %08lx to %08lx\n", gd->arch.tlb_addr, |
455 | gd->arch.tlb_addr + gd->arch.tlb_size); | |
456 | return 0; | |
457 | } | |
458 | #endif | |
459 | ||
460 | #ifdef CONFIG_LCD | |
461 | static int reserve_lcd(void) | |
462 | { | |
463 | #ifdef CONFIG_FB_ADDR | |
464 | gd->fb_base = CONFIG_FB_ADDR; | |
465 | #else | |
466 | /* reserve memory for LCD display (always full pages) */ | |
a0ba279a MY |
467 | gd->relocaddr = lcd_setmem(gd->relocaddr); |
468 | gd->fb_base = gd->relocaddr; | |
1938f4a5 SG |
469 | #endif /* CONFIG_FB_ADDR */ |
470 | return 0; | |
471 | } | |
472 | #endif /* CONFIG_LCD */ | |
473 | ||
71c52dba SG |
474 | static int reserve_trace(void) |
475 | { | |
476 | #ifdef CONFIG_TRACE | |
477 | gd->relocaddr -= CONFIG_TRACE_BUFFER_SIZE; | |
478 | gd->trace_buff = map_sysmem(gd->relocaddr, CONFIG_TRACE_BUFFER_SIZE); | |
479 | debug("Reserving %dk for trace data at: %08lx\n", | |
480 | CONFIG_TRACE_BUFFER_SIZE >> 10, gd->relocaddr); | |
481 | #endif | |
482 | ||
483 | return 0; | |
484 | } | |
485 | ||
e4fef6cf | 486 | #if defined(CONFIG_VIDEO) && (!defined(CONFIG_PPC) || defined(CONFIG_8xx)) \ |
48a33806 | 487 | && !defined(CONFIG_ARM) && !defined(CONFIG_X86) |
e4fef6cf SG |
488 | static int reserve_video(void) |
489 | { | |
490 | /* reserve memory for video display (always full pages) */ | |
a0ba279a MY |
491 | gd->relocaddr = video_setmem(gd->relocaddr); |
492 | gd->fb_base = gd->relocaddr; | |
e4fef6cf SG |
493 | |
494 | return 0; | |
495 | } | |
496 | #endif | |
497 | ||
1938f4a5 SG |
498 | static int reserve_uboot(void) |
499 | { | |
500 | /* | |
501 | * reserve memory for U-Boot code, data & bss | |
502 | * round down to next 4 kB limit | |
503 | */ | |
a0ba279a MY |
504 | gd->relocaddr -= gd->mon_len; |
505 | gd->relocaddr &= ~(4096 - 1); | |
e4fef6cf SG |
506 | #ifdef CONFIG_E500 |
507 | /* round down to next 64 kB limit so that IVPR stays aligned */ | |
a0ba279a | 508 | gd->relocaddr &= ~(65536 - 1); |
e4fef6cf | 509 | #endif |
1938f4a5 SG |
510 | |
511 | debug("Reserving %ldk for U-Boot at: %08lx\n", gd->mon_len >> 10, | |
a0ba279a MY |
512 | gd->relocaddr); |
513 | ||
514 | gd->start_addr_sp = gd->relocaddr; | |
515 | ||
1938f4a5 SG |
516 | return 0; |
517 | } | |
518 | ||
8cae8a68 | 519 | #ifndef CONFIG_SPL_BUILD |
1938f4a5 SG |
520 | /* reserve memory for malloc() area */ |
521 | static int reserve_malloc(void) | |
522 | { | |
a0ba279a | 523 | gd->start_addr_sp = gd->start_addr_sp - TOTAL_MALLOC_LEN; |
1938f4a5 | 524 | debug("Reserving %dk for malloc() at: %08lx\n", |
a0ba279a | 525 | TOTAL_MALLOC_LEN >> 10, gd->start_addr_sp); |
1938f4a5 SG |
526 | return 0; |
527 | } | |
528 | ||
529 | /* (permanently) allocate a Board Info struct */ | |
530 | static int reserve_board(void) | |
531 | { | |
a0ba279a MY |
532 | gd->start_addr_sp -= sizeof(bd_t); |
533 | gd->bd = (bd_t *)map_sysmem(gd->start_addr_sp, sizeof(bd_t)); | |
1938f4a5 SG |
534 | memset(gd->bd, '\0', sizeof(bd_t)); |
535 | debug("Reserving %zu Bytes for Board Info at: %08lx\n", | |
a0ba279a | 536 | sizeof(bd_t), gd->start_addr_sp); |
1938f4a5 SG |
537 | return 0; |
538 | } | |
8cae8a68 | 539 | #endif |
1938f4a5 SG |
540 | |
541 | static int setup_machine(void) | |
542 | { | |
543 | #ifdef CONFIG_MACH_TYPE | |
544 | gd->bd->bi_arch_number = CONFIG_MACH_TYPE; /* board id for Linux */ | |
545 | #endif | |
546 | return 0; | |
547 | } | |
548 | ||
549 | static int reserve_global_data(void) | |
550 | { | |
a0ba279a MY |
551 | gd->start_addr_sp -= sizeof(gd_t); |
552 | gd->new_gd = (gd_t *)map_sysmem(gd->start_addr_sp, sizeof(gd_t)); | |
1938f4a5 | 553 | debug("Reserving %zu Bytes for Global Data at: %08lx\n", |
a0ba279a | 554 | sizeof(gd_t), gd->start_addr_sp); |
1938f4a5 SG |
555 | return 0; |
556 | } | |
557 | ||
558 | static int reserve_fdt(void) | |
559 | { | |
560 | /* | |
561 | * If the device tree is sitting immediate above our image then we | |
562 | * must relocate it. If it is embedded in the data section, then it | |
563 | * will be relocated with other data. | |
564 | */ | |
565 | if (gd->fdt_blob) { | |
566 | gd->fdt_size = ALIGN(fdt_totalsize(gd->fdt_blob) + 0x1000, 32); | |
567 | ||
a0ba279a MY |
568 | gd->start_addr_sp -= gd->fdt_size; |
569 | gd->new_fdt = map_sysmem(gd->start_addr_sp, gd->fdt_size); | |
a733b06b | 570 | debug("Reserving %lu Bytes for FDT at: %08lx\n", |
a0ba279a | 571 | gd->fdt_size, gd->start_addr_sp); |
1938f4a5 SG |
572 | } |
573 | ||
574 | return 0; | |
575 | } | |
576 | ||
577 | static int reserve_stacks(void) | |
578 | { | |
8cae8a68 SG |
579 | #ifdef CONFIG_SPL_BUILD |
580 | # ifdef CONFIG_ARM | |
a0ba279a MY |
581 | gd->start_addr_sp -= 128; /* leave 32 words for abort-stack */ |
582 | gd->irq_sp = gd->start_addr_sp; | |
8cae8a68 SG |
583 | # endif |
584 | #else | |
e4fef6cf SG |
585 | # ifdef CONFIG_PPC |
586 | ulong *s; | |
587 | # endif | |
8cae8a68 | 588 | |
1938f4a5 | 589 | /* setup stack pointer for exceptions */ |
a0ba279a MY |
590 | gd->start_addr_sp -= 16; |
591 | gd->start_addr_sp &= ~0xf; | |
592 | gd->irq_sp = gd->start_addr_sp; | |
1938f4a5 SG |
593 | |
594 | /* | |
595 | * Handle architecture-specific things here | |
596 | * TODO([email protected]): Perhaps create arch_reserve_stack() | |
597 | * to handle this and put in arch/xxx/lib/stack.c | |
598 | */ | |
cce6be7f | 599 | # if defined(CONFIG_ARM) && !defined(CONFIG_ARM64) |
1938f4a5 | 600 | # ifdef CONFIG_USE_IRQ |
a0ba279a | 601 | gd->start_addr_sp -= (CONFIG_STACKSIZE_IRQ + CONFIG_STACKSIZE_FIQ); |
1938f4a5 | 602 | debug("Reserving %zu Bytes for IRQ stack at: %08lx\n", |
a0ba279a | 603 | CONFIG_STACKSIZE_IRQ + CONFIG_STACKSIZE_FIQ, gd->start_addr_sp); |
1938f4a5 SG |
604 | |
605 | /* 8-byte alignment for ARM ABI compliance */ | |
a0ba279a | 606 | gd->start_addr_sp &= ~0x07; |
1938f4a5 SG |
607 | # endif |
608 | /* leave 3 words for abort-stack, plus 1 for alignment */ | |
a0ba279a | 609 | gd->start_addr_sp -= 16; |
e4fef6cf SG |
610 | # elif defined(CONFIG_PPC) |
611 | /* Clear initial stack frame */ | |
a0ba279a | 612 | s = (ulong *) gd->start_addr_sp; |
e4fef6cf SG |
613 | *s = 0; /* Terminate back chain */ |
614 | *++s = 0; /* NULL return address */ | |
8cae8a68 | 615 | # endif /* Architecture specific code */ |
1938f4a5 SG |
616 | |
617 | return 0; | |
8cae8a68 | 618 | #endif |
1938f4a5 SG |
619 | } |
620 | ||
621 | static int display_new_sp(void) | |
622 | { | |
a0ba279a | 623 | debug("New Stack Pointer is: %08lx\n", gd->start_addr_sp); |
1938f4a5 SG |
624 | |
625 | return 0; | |
626 | } | |
627 | ||
e4fef6cf SG |
628 | #ifdef CONFIG_PPC |
629 | static int setup_board_part1(void) | |
630 | { | |
631 | bd_t *bd = gd->bd; | |
632 | ||
633 | /* | |
634 | * Save local variables to board info struct | |
635 | */ | |
636 | ||
637 | bd->bi_memstart = CONFIG_SYS_SDRAM_BASE; /* start of memory */ | |
638 | bd->bi_memsize = gd->ram_size; /* size in bytes */ | |
639 | ||
640 | #ifdef CONFIG_SYS_SRAM_BASE | |
641 | bd->bi_sramstart = CONFIG_SYS_SRAM_BASE; /* start of SRAM */ | |
642 | bd->bi_sramsize = CONFIG_SYS_SRAM_SIZE; /* size of SRAM */ | |
643 | #endif | |
644 | ||
58dac327 | 645 | #if defined(CONFIG_8xx) || defined(CONFIG_MPC8260) || defined(CONFIG_5xx) || \ |
e4fef6cf SG |
646 | defined(CONFIG_E500) || defined(CONFIG_MPC86xx) |
647 | bd->bi_immr_base = CONFIG_SYS_IMMR; /* base of IMMR register */ | |
648 | #endif | |
649 | #if defined(CONFIG_MPC5xxx) | |
650 | bd->bi_mbar_base = CONFIG_SYS_MBAR; /* base of internal registers */ | |
651 | #endif | |
652 | #if defined(CONFIG_MPC83xx) | |
653 | bd->bi_immrbar = CONFIG_SYS_IMMR; | |
654 | #endif | |
e4fef6cf SG |
655 | |
656 | return 0; | |
657 | } | |
658 | ||
659 | static int setup_board_part2(void) | |
660 | { | |
661 | bd_t *bd = gd->bd; | |
662 | ||
663 | bd->bi_intfreq = gd->cpu_clk; /* Internal Freq, in Hz */ | |
664 | bd->bi_busfreq = gd->bus_clk; /* Bus Freq, in Hz */ | |
665 | #if defined(CONFIG_CPM2) | |
666 | bd->bi_cpmfreq = gd->arch.cpm_clk; | |
667 | bd->bi_brgfreq = gd->arch.brg_clk; | |
668 | bd->bi_sccfreq = gd->arch.scc_clk; | |
669 | bd->bi_vco = gd->arch.vco_out; | |
670 | #endif /* CONFIG_CPM2 */ | |
671 | #if defined(CONFIG_MPC512X) | |
672 | bd->bi_ipsfreq = gd->arch.ips_clk; | |
673 | #endif /* CONFIG_MPC512X */ | |
674 | #if defined(CONFIG_MPC5xxx) | |
675 | bd->bi_ipbfreq = gd->arch.ipb_clk; | |
676 | bd->bi_pcifreq = gd->pci_clk; | |
677 | #endif /* CONFIG_MPC5xxx */ | |
678 | ||
679 | return 0; | |
680 | } | |
681 | #endif | |
682 | ||
683 | #ifdef CONFIG_SYS_EXTBDINFO | |
684 | static int setup_board_extra(void) | |
685 | { | |
686 | bd_t *bd = gd->bd; | |
687 | ||
688 | strncpy((char *) bd->bi_s_version, "1.2", sizeof(bd->bi_s_version)); | |
689 | strncpy((char *) bd->bi_r_version, U_BOOT_VERSION, | |
690 | sizeof(bd->bi_r_version)); | |
691 | ||
692 | bd->bi_procfreq = gd->cpu_clk; /* Processor Speed, In Hz */ | |
693 | bd->bi_plb_busfreq = gd->bus_clk; | |
694 | #if defined(CONFIG_405GP) || defined(CONFIG_405EP) || \ | |
695 | defined(CONFIG_440EP) || defined(CONFIG_440GR) || \ | |
696 | defined(CONFIG_440EPX) || defined(CONFIG_440GRX) | |
697 | bd->bi_pci_busfreq = get_PCI_freq(); | |
698 | bd->bi_opbfreq = get_OPB_freq(); | |
699 | #elif defined(CONFIG_XILINX_405) | |
700 | bd->bi_pci_busfreq = get_PCI_freq(); | |
701 | #endif | |
702 | ||
703 | return 0; | |
704 | } | |
705 | #endif | |
706 | ||
1938f4a5 SG |
707 | #ifdef CONFIG_POST |
708 | static int init_post(void) | |
709 | { | |
710 | post_bootmode_init(); | |
711 | post_run(NULL, POST_ROM | post_bootmode_get(0)); | |
712 | ||
713 | return 0; | |
714 | } | |
715 | #endif | |
716 | ||
717 | static int setup_baud_rate(void) | |
718 | { | |
719 | /* Ick, can we get rid of this line? */ | |
720 | gd->bd->bi_baudrate = gd->baudrate; | |
721 | ||
722 | return 0; | |
723 | } | |
724 | ||
725 | static int setup_dram_config(void) | |
726 | { | |
727 | /* Ram is board specific, so move it to board code ... */ | |
728 | dram_init_banksize(); | |
729 | ||
730 | return 0; | |
731 | } | |
732 | ||
733 | static int reloc_fdt(void) | |
734 | { | |
735 | if (gd->new_fdt) { | |
736 | memcpy(gd->new_fdt, gd->fdt_blob, gd->fdt_size); | |
737 | gd->fdt_blob = gd->new_fdt; | |
738 | } | |
739 | ||
740 | return 0; | |
741 | } | |
742 | ||
743 | static int setup_reloc(void) | |
744 | { | |
a0ba279a | 745 | gd->reloc_off = gd->relocaddr - CONFIG_SYS_TEXT_BASE; |
1938f4a5 SG |
746 | memcpy(gd->new_gd, (char *)gd, sizeof(gd_t)); |
747 | ||
748 | debug("Relocation Offset is: %08lx\n", gd->reloc_off); | |
a733b06b | 749 | debug("Relocating to %08lx, new gd at %08lx, sp at %08lx\n", |
a0ba279a MY |
750 | gd->relocaddr, (ulong)map_to_sysmem(gd->new_gd), |
751 | gd->start_addr_sp); | |
1938f4a5 SG |
752 | |
753 | return 0; | |
754 | } | |
755 | ||
756 | /* ARM calls relocate_code from its crt0.S */ | |
808434cd | 757 | #if !defined(CONFIG_ARM) && !defined(CONFIG_SANDBOX) |
1938f4a5 SG |
758 | |
759 | static int jump_to_copy(void) | |
760 | { | |
48a33806 SG |
761 | /* |
762 | * x86 is special, but in a nice way. It uses a trampoline which | |
763 | * enables the dcache if possible. | |
764 | * | |
765 | * For now, other archs use relocate_code(), which is implemented | |
766 | * similarly for all archs. When we do generic relocation, hopefully | |
767 | * we can make all archs enable the dcache prior to relocation. | |
768 | */ | |
769 | #ifdef CONFIG_X86 | |
770 | /* | |
771 | * SDRAM and console are now initialised. The final stack can now | |
772 | * be setup in SDRAM. Code execution will continue in Flash, but | |
773 | * with the stack in SDRAM and Global Data in temporary memory | |
774 | * (CPU cache) | |
775 | */ | |
776 | board_init_f_r_trampoline(gd->start_addr_sp); | |
777 | #else | |
a0ba279a | 778 | relocate_code(gd->start_addr_sp, gd->new_gd, gd->relocaddr); |
48a33806 | 779 | #endif |
1938f4a5 SG |
780 | |
781 | return 0; | |
782 | } | |
783 | #endif | |
784 | ||
785 | /* Record the board_init_f() bootstage (after arch_cpu_init()) */ | |
786 | static int mark_bootstage(void) | |
787 | { | |
788 | bootstage_mark_name(BOOTSTAGE_ID_START_UBOOT_F, "board_init_f"); | |
789 | ||
790 | return 0; | |
791 | } | |
792 | ||
793 | static init_fnc_t init_sequence_f[] = { | |
a733b06b SG |
794 | #ifdef CONFIG_SANDBOX |
795 | setup_ram_buf, | |
e4fef6cf | 796 | #endif |
1938f4a5 | 797 | setup_mon_len, |
71c52dba SG |
798 | setup_fdt, |
799 | trace_early_init, | |
e4fef6cf SG |
800 | #if defined(CONFIG_MPC85xx) || defined(CONFIG_MPC86xx) |
801 | /* TODO: can this go into arch_cpu_init()? */ | |
802 | probecpu, | |
803 | #endif | |
1938f4a5 | 804 | arch_cpu_init, /* basic arch cpu dependent setup */ |
48a33806 SG |
805 | #ifdef CONFIG_X86 |
806 | cpu_init_f, /* TODO([email protected]): remove */ | |
807 | # ifdef CONFIG_OF_CONTROL | |
808 | find_fdt, /* TODO([email protected]): remove */ | |
809 | # endif | |
810 | #endif | |
1938f4a5 SG |
811 | mark_bootstage, |
812 | #ifdef CONFIG_OF_CONTROL | |
813 | fdtdec_check_fdt, | |
814 | #endif | |
815 | #if defined(CONFIG_BOARD_EARLY_INIT_F) | |
816 | board_early_init_f, | |
817 | #endif | |
e4fef6cf SG |
818 | /* TODO: can any of this go into arch_cpu_init()? */ |
819 | #if defined(CONFIG_PPC) && !defined(CONFIG_8xx_CPUCLK_DEFAULT) | |
820 | get_clocks, /* get CPU and bus clocks (etc.) */ | |
821 | #if defined(CONFIG_TQM8xxL) && !defined(CONFIG_TQM866M) \ | |
822 | && !defined(CONFIG_TQM885D) | |
823 | adjust_sdram_tbs_8xx, | |
824 | #endif | |
825 | /* TODO: can we rename this to timer_init()? */ | |
826 | init_timebase, | |
827 | #endif | |
e4fef6cf | 828 | #ifdef CONFIG_ARM |
1938f4a5 | 829 | timer_init, /* initialize timer */ |
e4fef6cf | 830 | #endif |
e4fef6cf SG |
831 | #ifdef CONFIG_SYS_ALLOC_DPRAM |
832 | #if !defined(CONFIG_CPM2) | |
833 | dpram_init, | |
834 | #endif | |
835 | #endif | |
836 | #if defined(CONFIG_BOARD_POSTCLK_INIT) | |
837 | board_postclk_init, | |
b8521b74 MY |
838 | #endif |
839 | #ifdef CONFIG_FSL_ESDHC | |
840 | get_clocks, | |
1938f4a5 SG |
841 | #endif |
842 | env_init, /* initialize environment */ | |
e4fef6cf SG |
843 | #if defined(CONFIG_8xx_CPUCLK_DEFAULT) |
844 | /* get CPU and bus clocks according to the environment variable */ | |
845 | get_clocks_866, | |
846 | /* adjust sdram refresh rate according to the new clock */ | |
847 | sdram_adjust_866, | |
848 | init_timebase, | |
849 | #endif | |
1938f4a5 SG |
850 | init_baud_rate, /* initialze baudrate settings */ |
851 | serial_init, /* serial communications setup */ | |
852 | console_init_f, /* stage 1 init of console */ | |
a733b06b SG |
853 | #ifdef CONFIG_SANDBOX |
854 | sandbox_early_getopt_check, | |
855 | #endif | |
856 | #ifdef CONFIG_OF_CONTROL | |
857 | fdtdec_prepare_fdt, | |
48a33806 | 858 | #endif |
1938f4a5 SG |
859 | display_options, /* say that we are here */ |
860 | display_text_info, /* show debugging info if required */ | |
58dac327 | 861 | #if defined(CONFIG_MPC8260) |
e4fef6cf SG |
862 | prt_8260_rsr, |
863 | prt_8260_clks, | |
58dac327 | 864 | #endif /* CONFIG_MPC8260 */ |
e4fef6cf SG |
865 | #if defined(CONFIG_MPC83xx) |
866 | prt_83xx_rsr, | |
867 | #endif | |
868 | #ifdef CONFIG_PPC | |
869 | checkcpu, | |
870 | #endif | |
1938f4a5 | 871 | print_cpuinfo, /* display cpu info (and speed) */ |
e4fef6cf SG |
872 | #if defined(CONFIG_MPC5xxx) |
873 | prt_mpc5xxx_clks, | |
874 | #endif /* CONFIG_MPC5xxx */ | |
1938f4a5 SG |
875 | #if defined(CONFIG_DISPLAY_BOARDINFO) |
876 | checkboard, /* display board info */ | |
e4fef6cf SG |
877 | #endif |
878 | INIT_FUNC_WATCHDOG_INIT | |
879 | #if defined(CONFIG_MISC_INIT_F) | |
880 | misc_init_f, | |
881 | #endif | |
882 | INIT_FUNC_WATCHDOG_RESET | |
ea818dbb | 883 | #if defined(CONFIG_HARD_I2C) || defined(CONFIG_SYS_I2C) |
e4fef6cf SG |
884 | init_func_i2c, |
885 | #endif | |
886 | #if defined(CONFIG_HARD_SPI) | |
887 | init_func_spi, | |
888 | #endif | |
889 | #ifdef CONFIG_X86 | |
890 | dram_init_f, /* configure available RAM banks */ | |
8b42dfc3 | 891 | calculate_relocation_address, |
1938f4a5 SG |
892 | #endif |
893 | announce_dram_init, | |
894 | /* TODO: unify all these dram functions? */ | |
895 | #ifdef CONFIG_ARM | |
896 | dram_init, /* configure available RAM banks */ | |
897 | #endif | |
e4fef6cf SG |
898 | #ifdef CONFIG_PPC |
899 | init_func_ram, | |
900 | #endif | |
901 | #ifdef CONFIG_POST | |
902 | post_init_f, | |
903 | #endif | |
904 | INIT_FUNC_WATCHDOG_RESET | |
905 | #if defined(CONFIG_SYS_DRAM_TEST) | |
906 | testdram, | |
907 | #endif /* CONFIG_SYS_DRAM_TEST */ | |
908 | INIT_FUNC_WATCHDOG_RESET | |
909 | ||
1938f4a5 SG |
910 | #ifdef CONFIG_POST |
911 | init_post, | |
912 | #endif | |
e4fef6cf | 913 | INIT_FUNC_WATCHDOG_RESET |
1938f4a5 SG |
914 | /* |
915 | * Now that we have DRAM mapped and working, we can | |
916 | * relocate the code and continue running from DRAM. | |
917 | * | |
918 | * Reserve memory at end of RAM for (top down in that order): | |
919 | * - area that won't get touched by U-Boot and Linux (optional) | |
920 | * - kernel log buffer | |
921 | * - protected RAM | |
922 | * - LCD framebuffer | |
923 | * - monitor code | |
924 | * - board info struct | |
925 | */ | |
926 | setup_dest_addr, | |
927 | #if defined(CONFIG_LOGBUFFER) && !defined(CONFIG_ALT_LB_ADDR) | |
928 | reserve_logbuffer, | |
929 | #endif | |
930 | #ifdef CONFIG_PRAM | |
931 | reserve_pram, | |
932 | #endif | |
933 | reserve_round_4k, | |
934 | #if !(defined(CONFIG_SYS_ICACHE_OFF) && defined(CONFIG_SYS_DCACHE_OFF)) && \ | |
935 | defined(CONFIG_ARM) | |
936 | reserve_mmu, | |
937 | #endif | |
938 | #ifdef CONFIG_LCD | |
939 | reserve_lcd, | |
e4fef6cf | 940 | #endif |
71c52dba | 941 | reserve_trace, |
e4fef6cf SG |
942 | /* TODO: Why the dependency on CONFIG_8xx? */ |
943 | #if defined(CONFIG_VIDEO) && (!defined(CONFIG_PPC) || defined(CONFIG_8xx)) \ | |
48a33806 | 944 | && !defined(CONFIG_ARM) && !defined(CONFIG_X86) |
e4fef6cf | 945 | reserve_video, |
1938f4a5 SG |
946 | #endif |
947 | reserve_uboot, | |
8cae8a68 | 948 | #ifndef CONFIG_SPL_BUILD |
1938f4a5 SG |
949 | reserve_malloc, |
950 | reserve_board, | |
8cae8a68 | 951 | #endif |
1938f4a5 SG |
952 | setup_machine, |
953 | reserve_global_data, | |
954 | reserve_fdt, | |
955 | reserve_stacks, | |
956 | setup_dram_config, | |
957 | show_dram_config, | |
e4fef6cf SG |
958 | #ifdef CONFIG_PPC |
959 | setup_board_part1, | |
960 | INIT_FUNC_WATCHDOG_RESET | |
961 | setup_board_part2, | |
962 | #endif | |
1938f4a5 SG |
963 | setup_baud_rate, |
964 | display_new_sp, | |
e4fef6cf SG |
965 | #ifdef CONFIG_SYS_EXTBDINFO |
966 | setup_board_extra, | |
967 | #endif | |
968 | INIT_FUNC_WATCHDOG_RESET | |
1938f4a5 SG |
969 | reloc_fdt, |
970 | setup_reloc, | |
808434cd | 971 | #if !defined(CONFIG_ARM) && !defined(CONFIG_SANDBOX) |
1938f4a5 SG |
972 | jump_to_copy, |
973 | #endif | |
974 | NULL, | |
975 | }; | |
976 | ||
977 | void board_init_f(ulong boot_flags) | |
978 | { | |
48a33806 | 979 | #ifndef CONFIG_X86 |
1938f4a5 SG |
980 | gd_t data; |
981 | ||
982 | gd = &data; | |
48a33806 | 983 | #endif |
1938f4a5 | 984 | |
cce6be7f DF |
985 | /* |
986 | * Clear global data before it is accessed at debug print | |
987 | * in initcall_run_list. Otherwise the debug print probably | |
988 | * get the wrong vaule of gd->have_console. | |
989 | */ | |
990 | #if !defined(CONFIG_CPM2) && !defined(CONFIG_MPC512X) && \ | |
991 | !defined(CONFIG_MPC83xx) && !defined(CONFIG_MPC85xx) && \ | |
992 | !defined(CONFIG_MPC86xx) && !defined(CONFIG_X86) | |
993 | zero_global_data(); | |
994 | #endif | |
995 | ||
1938f4a5 | 996 | gd->flags = boot_flags; |
9aed5a27 | 997 | gd->have_console = 0; |
1938f4a5 SG |
998 | |
999 | if (initcall_run_list(init_sequence_f)) | |
1000 | hang(); | |
1001 | ||
808434cd | 1002 | #if !defined(CONFIG_ARM) && !defined(CONFIG_SANDBOX) |
1938f4a5 SG |
1003 | /* NOTREACHED - jump_to_copy() does not return */ |
1004 | hang(); | |
1005 | #endif | |
1006 | } | |
1007 | ||
48a33806 SG |
1008 | #ifdef CONFIG_X86 |
1009 | /* | |
1010 | * For now this code is only used on x86. | |
1011 | * | |
1012 | * init_sequence_f_r is the list of init functions which are run when | |
1013 | * U-Boot is executing from Flash with a semi-limited 'C' environment. | |
1014 | * The following limitations must be considered when implementing an | |
1015 | * '_f_r' function: | |
1016 | * - 'static' variables are read-only | |
1017 | * - Global Data (gd->xxx) is read/write | |
1018 | * | |
1019 | * The '_f_r' sequence must, as a minimum, copy U-Boot to RAM (if | |
1020 | * supported). It _should_, if possible, copy global data to RAM and | |
1021 | * initialise the CPU caches (to speed up the relocation process) | |
1022 | * | |
1023 | * NOTE: At present only x86 uses this route, but it is intended that | |
1024 | * all archs will move to this when generic relocation is implemented. | |
1025 | */ | |
1026 | static init_fnc_t init_sequence_f_r[] = { | |
1027 | init_cache_f_r, | |
1028 | copy_uboot_to_ram, | |
1029 | clear_bss, | |
1030 | do_elf_reloc_fixups, | |
1031 | ||
1032 | NULL, | |
1033 | }; | |
1034 | ||
1035 | void board_init_f_r(void) | |
1036 | { | |
1037 | if (initcall_run_list(init_sequence_f_r)) | |
1038 | hang(); | |
1039 | ||
1040 | /* | |
1041 | * U-Boot has been copied into SDRAM, the BSS has been cleared etc. | |
1042 | * Transfer execution from Flash to RAM by calculating the address | |
1043 | * of the in-RAM copy of board_init_r() and calling it | |
1044 | */ | |
1045 | (board_init_r + gd->reloc_off)(gd, gd->relocaddr); | |
1046 | ||
1047 | /* NOTREACHED - board_init_r() does not return */ | |
1048 | hang(); | |
1049 | } | |
1050 | #endif /* CONFIG_X86 */ |