Tom Rini | 6507f13 | 2012-08-22 15:31:05 -0700 | [diff] [blame] | 1 | /* |
| 2 | * (C) Copyright 2010-2012 |
| 3 | * Texas Instruments, <www.ti.com> |
| 4 | * |
| 5 | * Aneesh V <aneesh@ti.com> |
| 6 | * Tom Rini <trini@ti.com> |
| 7 | * |
Wolfgang Denk | 1a45966 | 2013-07-08 09:37:19 +0200 | [diff] [blame] | 8 | * SPDX-License-Identifier: GPL-2.0+ |
Tom Rini | 6507f13 | 2012-08-22 15:31:05 -0700 | [diff] [blame] | 9 | */ |
| 10 | #include <common.h> |
| 11 | #include <config.h> |
| 12 | #include <spl.h> |
| 13 | #include <image.h> |
| 14 | #include <linux/compiler.h> |
| 15 | |
Tom Rini | b5d92ba | 2015-07-31 19:55:10 -0400 | [diff] [blame] | 16 | #ifndef CONFIG_SPL_DM |
Tom Rini | 6507f13 | 2012-08-22 15:31:05 -0700 | [diff] [blame] | 17 | /* Pointer to as well as the global data structure for SPL */ |
| 18 | DECLARE_GLOBAL_DATA_PTR; |
Simon Glass | 480ca13 | 2014-12-23 12:04:51 -0700 | [diff] [blame] | 19 | |
| 20 | /* |
| 21 | * WARNING: This is going away very soon. Don't use it and don't submit |
| 22 | * pafches that rely on it. The global_data area is set up in crt0.S. |
| 23 | */ |
Tom Rini | 6507f13 | 2012-08-22 15:31:05 -0700 | [diff] [blame] | 24 | gd_t gdata __attribute__ ((section(".data"))); |
Simon Glass | fc8fdc7 | 2015-03-03 08:02:58 -0700 | [diff] [blame] | 25 | #endif |
Tom Rini | 6507f13 | 2012-08-22 15:31:05 -0700 | [diff] [blame] | 26 | |
| 27 | /* |
| 28 | * In the context of SPL, board_init_f must ensure that any clocks/etc for |
| 29 | * DDR are enabled, ensure that the stack pointer is valid, clear the BSS |
| 30 | * and call board_init_f. We provide this version by default but mark it |
| 31 | * as __weak to allow for platforms to do this in their own way if needed. |
| 32 | */ |
| 33 | void __weak board_init_f(ulong dummy) |
| 34 | { |
Tom Rini | 6507f13 | 2012-08-22 15:31:05 -0700 | [diff] [blame] | 35 | /* Clear the BSS. */ |
Simon Glass | 3929fb0 | 2013-03-14 06:54:53 +0000 | [diff] [blame] | 36 | memset(__bss_start, 0, __bss_end - __bss_start); |
Tom Rini | 6507f13 | 2012-08-22 15:31:05 -0700 | [diff] [blame] | 37 | |
Tom Rini | b5d92ba | 2015-07-31 19:55:10 -0400 | [diff] [blame] | 38 | #ifndef CONFIG_SPL_DM |
Simon Glass | 480ca13 | 2014-12-23 12:04:51 -0700 | [diff] [blame] | 39 | /* TODO: Remove settings of the global data pointer here */ |
Tom Rini | 1ee30ae | 2014-09-16 11:08:46 -0400 | [diff] [blame] | 40 | gd = &gdata; |
Simon Glass | fc8fdc7 | 2015-03-03 08:02:58 -0700 | [diff] [blame] | 41 | #endif |
Tom Rini | 1ee30ae | 2014-09-16 11:08:46 -0400 | [diff] [blame] | 42 | |
Tom Rini | 6507f13 | 2012-08-22 15:31:05 -0700 | [diff] [blame] | 43 | board_init_r(NULL, 0); |
| 44 | } |
| 45 | |
| 46 | /* |
| 47 | * This function jumps to an image with argument. Normally an FDT or ATAGS |
| 48 | * image. |
| 49 | * arg: Pointer to paramter image in RAM |
| 50 | */ |
| 51 | #ifdef CONFIG_SPL_OS_BOOT |
| 52 | void __noreturn jump_to_image_linux(void *arg) |
| 53 | { |
Tom Rini | ec101fd | 2013-08-09 11:22:15 -0400 | [diff] [blame] | 54 | unsigned long machid = 0xffffffff; |
| 55 | #ifdef CONFIG_MACH_TYPE |
| 56 | machid = CONFIG_MACH_TYPE; |
| 57 | #endif |
| 58 | |
Tom Rini | 6507f13 | 2012-08-22 15:31:05 -0700 | [diff] [blame] | 59 | debug("Entering kernel arg pointer: 0x%p\n", arg); |
| 60 | typedef void (*image_entry_arg_t)(int, int, void *) |
| 61 | __attribute__ ((noreturn)); |
| 62 | image_entry_arg_t image_entry = |
| 63 | (image_entry_arg_t) spl_image.entry_point; |
| 64 | cleanup_before_linux(); |
Tom Rini | ec101fd | 2013-08-09 11:22:15 -0400 | [diff] [blame] | 65 | image_entry(0, machid, arg); |
Tom Rini | 6507f13 | 2012-08-22 15:31:05 -0700 | [diff] [blame] | 66 | } |
| 67 | #endif |