]>
Commit | Line | Data |
---|---|---|
83d290c5 | 1 | // SPDX-License-Identifier: GPL-2.0 |
4bbc0245 SG |
2 | /* |
3 | * Copyright (c) 2016 Google, Inc | |
4bbc0245 SG |
4 | */ |
5 | ||
e2e7de87 SG |
6 | #define LOG_CATEGORY LOGC_BOOT |
7 | ||
9edefc27 | 8 | #include <cpu_func.h> |
4bbc0245 | 9 | #include <debug_uart.h> |
c0e2c81d | 10 | #include <dm.h> |
db41d65a | 11 | #include <hang.h> |
4d72caa5 | 12 | #include <image.h> |
691d719d | 13 | #include <init.h> |
c30b7adb | 14 | #include <irq_func.h> |
f7ae49fc | 15 | #include <log.h> |
7c03caf6 | 16 | #include <malloc.h> |
4bbc0245 | 17 | #include <spl.h> |
c0e2c81d | 18 | #include <syscon.h> |
7c10e111 | 19 | #include <vesa.h> |
4bbc0245 | 20 | #include <asm/cpu.h> |
c0e2c81d | 21 | #include <asm/cpu_common.h> |
7fe32b34 | 22 | #include <asm/fsp2/fsp_api.h> |
401d1c4f | 23 | #include <asm/global_data.h> |
4fb2536e | 24 | #include <asm/mp.h> |
7c03caf6 | 25 | #include <asm/mrccache.h> |
4bbc0245 | 26 | #include <asm/mtrr.h> |
c0e2c81d | 27 | #include <asm/pci.h> |
4bbc0245 | 28 | #include <asm/processor.h> |
ea6eef27 | 29 | #include <asm/qemu.h> |
daade119 | 30 | #include <asm/spl.h> |
03de305e | 31 | #include <asm/u-boot-x86.h> |
4bbc0245 SG |
32 | #include <asm-generic/sections.h> |
33 | ||
34 | DECLARE_GLOBAL_DATA_PTR; | |
35 | ||
7fe32b34 | 36 | __weak int fsp_setup_pinctrl(void *ctx, struct event *event) |
8f60ea00 BM |
37 | { |
38 | return 0; | |
39 | } | |
40 | ||
c0e2c81d SG |
41 | #ifdef CONFIG_TPL |
42 | ||
43 | static int set_max_freq(void) | |
44 | { | |
45 | if (cpu_get_burst_mode_state() == BURST_MODE_UNAVAILABLE) { | |
46 | /* | |
47 | * Burst Mode has been factory-configured as disabled and is not | |
48 | * available in this physical processor package | |
49 | */ | |
50 | debug("Burst Mode is factory-disabled\n"); | |
51 | return -ENOENT; | |
52 | } | |
53 | ||
54 | /* Enable burst mode */ | |
55 | cpu_set_burst_mode(true); | |
56 | ||
57 | /* Enable speed step */ | |
58 | cpu_set_eist(true); | |
59 | ||
60 | /* Set P-State ratio */ | |
61 | cpu_set_p_state_to_turbo_ratio(); | |
62 | ||
63 | return 0; | |
64 | } | |
65 | #endif | |
66 | ||
4bbc0245 SG |
67 | static int x86_spl_init(void) |
68 | { | |
dac1fa5c SG |
69 | struct udevice *dev; |
70 | ||
7c03caf6 | 71 | #ifndef CONFIG_TPL |
4bbc0245 SG |
72 | /* |
73 | * TODO([email protected]): We use this area of RAM for the stack | |
74 | * and global_data in SPL. Once U-Boot starts up and releocates it | |
75 | * is not needed. We could make this a CONFIG option or perhaps | |
98463903 | 76 | * place it immediately below CONFIG_TEXT_BASE. |
4bbc0245 | 77 | */ |
fc486371 | 78 | __maybe_unused char *ptr = (char *)0x110000; |
c0e2c81d SG |
79 | #else |
80 | struct udevice *punit; | |
7c03caf6 | 81 | #endif |
4bbc0245 SG |
82 | int ret; |
83 | ||
e2e7de87 | 84 | log_debug("x86 spl starting\n"); |
0e72ac71 SG |
85 | if (IS_ENABLED(TPL)) |
86 | ret = x86_cpu_reinit_f(); | |
87 | else | |
88 | ret = x86_cpu_init_f(); | |
4bbc0245 SG |
89 | ret = spl_init(); |
90 | if (ret) { | |
e2e7de87 | 91 | log_debug("spl_init() failed (err=%d)\n", ret); |
4bbc0245 SG |
92 | return ret; |
93 | } | |
4bbc0245 SG |
94 | ret = arch_cpu_init(); |
95 | if (ret) { | |
e2e7de87 | 96 | log_debug("arch_cpu_init() failed (err=%d)\n", ret); |
4bbc0245 SG |
97 | return ret; |
98 | } | |
7c03caf6 | 99 | #ifndef CONFIG_TPL |
7fe32b34 | 100 | ret = fsp_setup_pinctrl(NULL, NULL); |
4bbc0245 | 101 | if (ret) { |
e2e7de87 | 102 | log_debug("fsp_setup_pinctrl() failed (err=%d)\n", ret); |
4bbc0245 SG |
103 | return ret; |
104 | } | |
7c03caf6 | 105 | #endif |
35252580 SG |
106 | /* |
107 | * spl_board_init() below sets up the console if enabled. If it isn't, | |
108 | * do it here. We cannot call this twice since it results in a double | |
109 | * banner and CI tests fail. | |
110 | */ | |
111 | if (!IS_ENABLED(CONFIG_SPL_BOARD_INIT)) | |
112 | preloader_console_init(); | |
529d5f96 | 113 | #if !defined(CONFIG_TPL) && !CONFIG_IS_ENABLED(CPU) |
4bbc0245 SG |
114 | ret = print_cpuinfo(); |
115 | if (ret) { | |
e2e7de87 | 116 | log_debug("print_cpuinfo() failed (err=%d)\n", ret); |
4bbc0245 SG |
117 | return ret; |
118 | } | |
7c03caf6 | 119 | #endif |
dac1fa5c SG |
120 | /* probe the LPC so we get the GPIO_BASE set up correctly */ |
121 | ret = uclass_first_device_err(UCLASS_LPC, &dev); | |
122 | if (ret && ret != -ENODEV) { | |
123 | log_debug("lpc probe failed\n"); | |
124 | return ret; | |
125 | } | |
126 | ||
4bbc0245 SG |
127 | ret = dram_init(); |
128 | if (ret) { | |
e2e7de87 | 129 | log_debug("dram_init() failed (err=%d)\n", ret); |
4bbc0245 SG |
130 | return ret; |
131 | } | |
e2e7de87 | 132 | log_debug("mrc\n"); |
7c03caf6 SG |
133 | if (IS_ENABLED(CONFIG_ENABLE_MRC_CACHE)) { |
134 | ret = mrccache_spl_save(); | |
135 | if (ret) | |
e2e7de87 SG |
136 | log_debug("Failed to write to mrccache (err=%d)\n", |
137 | ret); | |
7c03caf6 SG |
138 | } |
139 | ||
fc486371 | 140 | #ifndef CONFIG_SYS_COREBOOT |
ccea96f4 SY |
141 | debug("BSS clear from %lx to %lx len %lx\n", (ulong)__bss_start, |
142 | (ulong)__bss_end, (ulong)__bss_end - (ulong)__bss_start); | |
143 | memset(__bss_start, 0, (ulong)__bss_end - (ulong)__bss_start); | |
02840ca1 | 144 | # ifndef CONFIG_TPL |
4bbc0245 SG |
145 | |
146 | /* TODO([email protected]): Consider calling cpu_init_r() here */ | |
147 | ret = interrupt_init(); | |
148 | if (ret) { | |
149 | debug("%s: interrupt_init() failed\n", __func__); | |
150 | return ret; | |
151 | } | |
152 | ||
153 | /* | |
154 | * The stack grows down from ptr. Put the global data at ptr. This | |
155 | * will only be used for SPL. Once SPL loads U-Boot proper it will | |
156 | * set up its own stack. | |
157 | */ | |
158 | gd->new_gd = (struct global_data *)ptr; | |
159 | memcpy(gd->new_gd, gd, sizeof(*gd)); | |
e7595aa3 | 160 | |
e2e7de87 | 161 | log_debug("logging\n"); |
e7595aa3 SG |
162 | /* |
163 | * Make sure logging is disabled when we switch, since the log system | |
164 | * list head will move | |
165 | */ | |
166 | gd->new_gd->flags &= ~GD_FLG_LOG_READY; | |
4bbc0245 SG |
167 | arch_setup_gd(gd->new_gd); |
168 | gd->start_addr_sp = (ulong)ptr; | |
169 | ||
e7595aa3 SG |
170 | /* start up logging again, with the new list-head location */ |
171 | ret = log_init(); | |
172 | if (ret) { | |
173 | log_debug("Log setup failed (err=%d)\n", ret); | |
174 | return ret; | |
175 | } | |
176 | ||
4fb2536e SG |
177 | if (_LOG_DEBUG) { |
178 | ret = mtrr_list(mtrr_get_var_count(), MP_SELECT_BSP); | |
179 | if (ret) | |
180 | printf("mtrr_list failed\n"); | |
181 | } | |
182 | ||
4bbc0245 SG |
183 | /* Cache the SPI flash. Otherwise copying the code to RAM takes ages */ |
184 | ret = mtrr_add_request(MTRR_TYPE_WRBACK, | |
185 | (1ULL << 32) - CONFIG_XIP_ROM_SIZE, | |
186 | CONFIG_XIP_ROM_SIZE); | |
187 | if (ret) { | |
7c03caf6 | 188 | debug("%s: SPI cache setup failed (err=%d)\n", __func__, ret); |
4bbc0245 SG |
189 | return ret; |
190 | } | |
fc486371 | 191 | # else |
c0e2c81d SG |
192 | ret = syscon_get_by_driver_data(X86_SYSCON_PUNIT, &punit); |
193 | if (ret) | |
194 | debug("Could not find PUNIT (err=%d)\n", ret); | |
195 | ||
196 | ret = set_max_freq(); | |
197 | if (ret) | |
198 | debug("Failed to set CPU frequency (err=%d)\n", ret); | |
fc486371 | 199 | # endif |
7c03caf6 | 200 | #endif |
e2e7de87 | 201 | log_debug("done\n"); |
4bbc0245 SG |
202 | |
203 | return 0; | |
204 | } | |
205 | ||
206 | void board_init_f(ulong flags) | |
207 | { | |
208 | int ret; | |
209 | ||
210 | ret = x86_spl_init(); | |
211 | if (ret) { | |
d7413dea SG |
212 | printf("x86_spl_init: error %d\n", ret); |
213 | hang(); | |
4bbc0245 | 214 | } |
fc486371 | 215 | #if IS_ENABLED(CONFIG_TPL) || IS_ENABLED(CONFIG_SYS_COREBOOT) |
7c03caf6 SG |
216 | gd->bd = malloc(sizeof(*gd->bd)); |
217 | if (!gd->bd) { | |
218 | printf("Out of memory for bd_info size %x\n", sizeof(*gd->bd)); | |
219 | hang(); | |
220 | } | |
221 | board_init_r(gd, 0); | |
222 | #else | |
4bbc0245 SG |
223 | /* Uninit CAR and jump to board_init_f_r() */ |
224 | board_init_f_r_trampoline(gd->start_addr_sp); | |
7c03caf6 | 225 | #endif |
4bbc0245 SG |
226 | } |
227 | ||
228 | void board_init_f_r(void) | |
229 | { | |
80831b2a SG |
230 | mtrr_commit(false); |
231 | init_cache(); | |
4bbc0245 | 232 | gd->flags &= ~GD_FLG_SERIAL_READY; |
6acc0723 SG |
233 | |
234 | /* make sure driver model is not accessed from now on */ | |
235 | gd->flags |= GD_FLG_DM_DEAD; | |
4bbc0245 SG |
236 | debug("cache status %d\n", dcache_status()); |
237 | board_init_r(gd, 0); | |
238 | } | |
239 | ||
240 | u32 spl_boot_device(void) | |
241 | { | |
daade119 | 242 | return BOOT_DEVICE_SPI_MMAP; |
4bbc0245 SG |
243 | } |
244 | ||
245 | int spl_start_uboot(void) | |
246 | { | |
247 | return 0; | |
248 | } | |
249 | ||
250 | void spl_board_announce_boot_device(void) | |
251 | { | |
252 | printf("SPI flash"); | |
253 | } | |
254 | ||
255 | static int spl_board_load_image(struct spl_image_info *spl_image, | |
256 | struct spl_boot_device *bootdev) | |
257 | { | |
258 | spl_image->size = CONFIG_SYS_MONITOR_LEN; | |
98463903 SG |
259 | spl_image->entry_point = CONFIG_TEXT_BASE; |
260 | spl_image->load_addr = CONFIG_TEXT_BASE; | |
4bbc0245 SG |
261 | spl_image->os = IH_OS_U_BOOT; |
262 | spl_image->name = "U-Boot"; | |
263 | ||
623b3e8f | 264 | if (spl_image->load_addr != spl_get_image_pos()) { |
4e7cbf74 SG |
265 | /* Copy U-Boot from ROM */ |
266 | memcpy((void *)spl_image->load_addr, | |
267 | (void *)spl_get_image_pos(), spl_get_image_size()); | |
37897c40 SG |
268 | } |
269 | ||
4bbc0245 SG |
270 | debug("Loading to %lx\n", spl_image->load_addr); |
271 | ||
272 | return 0; | |
273 | } | |
daade119 | 274 | SPL_LOAD_IMAGE_METHOD("SPI", 5, BOOT_DEVICE_SPI_MMAP, spl_board_load_image); |
4bbc0245 SG |
275 | |
276 | int spl_spi_load_image(void) | |
277 | { | |
278 | return -EPERM; | |
279 | } | |
280 | ||
7c03caf6 | 281 | #ifdef CONFIG_X86_RUN_64BIT |
4bbc0245 SG |
282 | void __noreturn jump_to_image_no_args(struct spl_image_info *spl_image) |
283 | { | |
284 | int ret; | |
285 | ||
cdd20e3f | 286 | printf("Jumping to 64-bit U-Boot: Note many features are missing\n"); |
4bbc0245 SG |
287 | ret = cpu_jump_to_64bit_uboot(spl_image->entry_point); |
288 | debug("ret=%d\n", ret); | |
14dd93be | 289 | hang(); |
4bbc0245 | 290 | } |
7c03caf6 SG |
291 | #endif |
292 | ||
293 | void spl_board_init(void) | |
294 | { | |
295 | #ifndef CONFIG_TPL | |
296 | preloader_console_init(); | |
297 | #endif | |
ea6eef27 SG |
298 | if (IS_ENABLED(CONFIG_QEMU)) |
299 | qemu_chipset_init(); | |
7c10e111 | 300 | |
4339a82a SG |
301 | if (CONFIG_IS_ENABLED(UPL_OUT)) |
302 | gd->flags |= GD_FLG_UPL; | |
303 | ||
7c10e111 SG |
304 | if (CONFIG_IS_ENABLED(VIDEO)) { |
305 | struct udevice *dev; | |
44e39ff6 | 306 | int ret; |
7c10e111 SG |
307 | |
308 | /* Set up PCI video in SPL if required */ | |
44e39ff6 SG |
309 | ret = uclass_first_device_err(UCLASS_PCI, &dev); |
310 | if (ret) | |
311 | panic("Failed to set up PCI"); | |
312 | ret = uclass_first_device_err(UCLASS_VIDEO, &dev); | |
313 | if (ret) | |
314 | panic("Failed to set up video"); | |
7c10e111 | 315 | } |
7c03caf6 | 316 | } |