1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
|
// SPDX-License-Identifier: GPL-2.0+
/*
* Portions Copyright (C) 2015, Amlogic, Inc. All rights reserved.
* Copyright (C) 2023, Ferass El Hafidi <[email protected]>
*/
#include <spl.h>
#include <hang.h>
#include <asm/io.h>
#include <asm/spl.h>
#include <asm/arch/boot.h>
#include <vsprintf.h>
#include <asm/ptrace.h>
#include <asm/system.h>
#include <atf_common.h>
#include <image.h>
#include <asm/arch/gx.h>
#include <linux/delay.h>
#include <asm/arch/clock-gx.h>
u32 spl_boot_device(void)
{
int boot_device = meson_get_boot_device();
switch (boot_device) {
case BOOT_DEVICE_EMMC:
return BOOT_DEVICE_MMC2;
case BOOT_DEVICE_SD:
return BOOT_DEVICE_MMC1;
/*
* TODO: Get USB DFU to work
* Right now we just panic when booted from USB.
*/
case BOOT_DEVICE_USB:
if (CONFIG_IS_ENABLED(YMODEM_SUPPORT))
return BOOT_DEVICE_UART;
else
return BOOT_DEVICE_DFU;
}
panic("Unknown device %d\n", boot_device);
return BOOT_DEVICE_NONE; /* Never reached */
}
__weak struct legacy_img_hdr *spl_get_load_buffer(ssize_t offset, size_t size)
{
return (void *)CONFIG_TEXT_BASE + 0x4000000;
}
__weak void *board_spl_fit_buffer_addr(ulong fit_size, int sectors, int bl_len)
{
/* HACK: use same fit load buffer address as for mmc raw */
return spl_get_load_buffer(0, fit_size);
}
__weak bool spl_load_simple_fit_skip_processing(void)
{
return false;
}
/* To be defined in dram-${GENERATION}.c */
__weak int dram_init(void)
{
return 0;
}
/* Placeholder functions to be defined in SoC-specific spl-... file */
__weak void meson_power_init(void)
{
}
__weak int meson_pll_init(void)
{
return 0;
}
void board_init_f(ulong dummy)
{
int ret;
/* Restart execution at EL3 */
if (current_el() != 3) {
struct pt_regs regs = {0};
static struct entry_point_info spl_ep_info;
SET_PARAM_HEAD(&spl_ep_info, ATF_PARAM_BL31, ATF_VERSION_1, 0);
spl_ep_info.pc = CONFIG_SPL_TEXT_BASE;
spl_ep_info.spsr = SPSR_64(MODE_EL3, MODE_SP_ELX, DISABLE_ALL_EXECPTIONS);
regs.regs[0] = 0xc0000000;
regs.regs[1] = (unsigned long)&spl_ep_info;
smc_call(®s);
}
meson_power_init();
ret = meson_pll_init();
if (ret) {
debug("meson_pll_init() failed: %d\n", ret);
return;
}
ret = dram_init();
if (ret) {
debug("dram_init() failed: %d\n", ret);
hang();
}
if (CONFIG_IS_ENABLED(OF_CONTROL)) {
ret = spl_early_init();
if (ret) {
debug("spl_early_init() failed: %d\n", ret);
hang();
}
}
spl_init();
icache_enable();
preloader_console_init();
#if !CONFIG_IS_ENABLED(WDT_MESON_GXBB)
/* Disable watchdog */
clrbits_32(GX_WDT_CTRL_REG, (1 << 18) | (1 << 25));
#endif
}
|