1
2
3
4
5
6
7
8
9
10#include <common.h>
11#include <config.h>
12#include <init.h>
13#include <log.h>
14#include <spl.h>
15#include <image.h>
16#include <asm/cache.h>
17#include <asm/global_data.h>
18#include <linux/compiler.h>
19#include <asm/mach-types.h>
20
21#ifndef CONFIG_SPL_DM
22
23DECLARE_GLOBAL_DATA_PTR;
24
25
26
27
28
29gd_t gdata __section(".data");
30#endif
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45void __weak board_init_f(ulong dummy)
46{
47}
48
49
50
51
52
53#if CONFIG_IS_ENABLED(OS_BOOT)
54#ifdef CONFIG_ARM64
55void __noreturn jump_to_image_linux(struct spl_image_info *spl_image)
56{
57 debug("Entering kernel arg pointer: 0x%p\n", spl_image->arg);
58 cleanup_before_linux();
59 armv8_switch_to_el2((u64)spl_image->arg, 0, 0, 0,
60 spl_image->entry_point, ES_TO_AARCH64);
61}
62#else
63void __noreturn jump_to_image_linux(struct spl_image_info *spl_image)
64{
65 unsigned long machid = 0xffffffff;
66#ifdef CONFIG_MACH_TYPE
67 machid = CONFIG_MACH_TYPE;
68#endif
69
70 debug("Entering kernel arg pointer: 0x%p\n", spl_image->arg);
71 typedef void (*image_entry_arg_t)(int, int, void *)
72 __attribute__ ((noreturn));
73 image_entry_arg_t image_entry =
74 (image_entry_arg_t)(uintptr_t) spl_image->entry_point;
75 cleanup_before_linux();
76 image_entry(0, machid, spl_image->arg);
77}
78#endif
79#endif
80
81#if CONFIG_IS_ENABLED(OPTEE_IMAGE)
82void __noreturn jump_to_image_optee(struct spl_image_info *spl_image)
83{
84
85 cleanup_before_linux();
86
87 spl_optee_entry(NULL, NULL, spl_image->fdt_addr,
88 (void *)spl_image->entry_point);
89}
90#endif
91