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 | */ |
York Sun | fb97b86 | 2017-09-28 08:42:14 -0700 | [diff] [blame] | 10 | |
Tom Rini | 6507f13 | 2012-08-22 15:31:05 -0700 | [diff] [blame] | 11 | #include <common.h> |
| 12 | #include <config.h> |
| 13 | #include <spl.h> |
| 14 | #include <image.h> |
| 15 | #include <linux/compiler.h> |
Simon Glass | c62db35 | 2017-05-31 19:47:48 -0600 | [diff] [blame] | 16 | #include <asm/mach-types.h> |
Tom Rini | 6507f13 | 2012-08-22 15:31:05 -0700 | [diff] [blame] | 17 | |
Tom Rini | b5d92ba | 2015-07-31 19:55:10 -0400 | [diff] [blame] | 18 | #ifndef CONFIG_SPL_DM |
Tom Rini | 6507f13 | 2012-08-22 15:31:05 -0700 | [diff] [blame] | 19 | /* Pointer to as well as the global data structure for SPL */ |
| 20 | DECLARE_GLOBAL_DATA_PTR; |
Simon Glass | 480ca13 | 2014-12-23 12:04:51 -0700 | [diff] [blame] | 21 | |
| 22 | /* |
| 23 | * WARNING: This is going away very soon. Don't use it and don't submit |
| 24 | * pafches that rely on it. The global_data area is set up in crt0.S. |
| 25 | */ |
Tom Rini | 6507f13 | 2012-08-22 15:31:05 -0700 | [diff] [blame] | 26 | gd_t gdata __attribute__ ((section(".data"))); |
Simon Glass | fc8fdc7 | 2015-03-03 08:02:58 -0700 | [diff] [blame] | 27 | #endif |
Tom Rini | 6507f13 | 2012-08-22 15:31:05 -0700 | [diff] [blame] | 28 | |
| 29 | /* |
Jeremy Hunt | b8cb51d | 2016-07-18 12:01:02 -0400 | [diff] [blame] | 30 | * In the context of SPL, board_init_f() prepares the hardware for execution |
| 31 | * from system RAM (DRAM, DDR...). As system RAM may not be available yet, |
| 32 | * board_init_f() must use the current GD to store any data which must be |
| 33 | * passed on to later stages. These data include the relocation destination, |
| 34 | * the future stack, and the future GD location. BSS is cleared after this |
| 35 | * function (and therefore must be accessible). |
| 36 | * |
| 37 | * We provide this version by default but mark it as __weak to allow for |
| 38 | * platforms to do this in their own way if needed. Please see the top |
| 39 | * level U-Boot README "Board Initialization Flow" section for info on what |
| 40 | * to put in this function. |
Tom Rini | 6507f13 | 2012-08-22 15:31:05 -0700 | [diff] [blame] | 41 | */ |
| 42 | void __weak board_init_f(ulong dummy) |
| 43 | { |
Tom Rini | 6507f13 | 2012-08-22 15:31:05 -0700 | [diff] [blame] | 44 | } |
| 45 | |
| 46 | /* |
| 47 | * This function jumps to an image with argument. Normally an FDT or ATAGS |
| 48 | * image. |
Tom Rini | 6507f13 | 2012-08-22 15:31:05 -0700 | [diff] [blame] | 49 | */ |
| 50 | #ifdef CONFIG_SPL_OS_BOOT |
York Sun | fb97b86 | 2017-09-28 08:42:14 -0700 | [diff] [blame] | 51 | #ifdef CONFIG_ARM64 |
| 52 | void __noreturn jump_to_image_linux(struct spl_image_info *spl_image) |
| 53 | { |
| 54 | debug("Entering kernel arg pointer: 0x%p\n", spl_image->arg); |
| 55 | cleanup_before_linux(); |
| 56 | armv8_switch_to_el2((u64)spl_image->arg, 0, 0, 0, |
| 57 | spl_image->entry_point, ES_TO_AARCH64); |
| 58 | } |
| 59 | #else |
Vikas Manocha | 5bf5250 | 2017-04-07 15:38:13 -0700 | [diff] [blame] | 60 | void __noreturn jump_to_image_linux(struct spl_image_info *spl_image) |
Tom Rini | 6507f13 | 2012-08-22 15:31:05 -0700 | [diff] [blame] | 61 | { |
Tom Rini | ec101fd | 2013-08-09 11:22:15 -0400 | [diff] [blame] | 62 | unsigned long machid = 0xffffffff; |
| 63 | #ifdef CONFIG_MACH_TYPE |
| 64 | machid = CONFIG_MACH_TYPE; |
| 65 | #endif |
| 66 | |
Vikas Manocha | 5bf5250 | 2017-04-07 15:38:13 -0700 | [diff] [blame] | 67 | debug("Entering kernel arg pointer: 0x%p\n", spl_image->arg); |
Tom Rini | 6507f13 | 2012-08-22 15:31:05 -0700 | [diff] [blame] | 68 | typedef void (*image_entry_arg_t)(int, int, void *) |
| 69 | __attribute__ ((noreturn)); |
| 70 | image_entry_arg_t image_entry = |
Simon Glass | ca12e65 | 2016-09-24 18:19:54 -0600 | [diff] [blame] | 71 | (image_entry_arg_t)(uintptr_t) spl_image->entry_point; |
Tom Rini | 6507f13 | 2012-08-22 15:31:05 -0700 | [diff] [blame] | 72 | cleanup_before_linux(); |
Vikas Manocha | 5bf5250 | 2017-04-07 15:38:13 -0700 | [diff] [blame] | 73 | image_entry(0, machid, spl_image->arg); |
Tom Rini | 6507f13 | 2012-08-22 15:31:05 -0700 | [diff] [blame] | 74 | } |
York Sun | fb97b86 | 2017-09-28 08:42:14 -0700 | [diff] [blame] | 75 | #endif /* CONFIG_ARM64 */ |
Tom Rini | 6507f13 | 2012-08-22 15:31:05 -0700 | [diff] [blame] | 76 | #endif |