blob: bdf57ef7b5bd32d53942ee278d1d85c88ab25067 [file] [log] [blame]
Tom Rini83d290c2018-05-06 17:58:06 -04001// SPDX-License-Identifier: GPL-2.0
Simon Glass4bbc0242017-01-16 07:03:56 -07002/*
3 * Copyright (c) 2016 Google, Inc
Simon Glass4bbc0242017-01-16 07:03:56 -07004 */
5
6#include <common.h>
Simon Glass9edefc22019-11-14 12:57:37 -07007#include <cpu_func.h>
Simon Glass4bbc0242017-01-16 07:03:56 -07008#include <debug_uart.h>
Simon Glassc0e2c812019-10-20 21:37:49 -06009#include <dm.h>
Simon Glassdb41d652019-12-28 10:45:07 -070010#include <hang.h>
Simon Glass4d72caa2020-05-10 11:40:01 -060011#include <image.h>
Simon Glass691d7192020-05-10 11:40:02 -060012#include <init.h>
Simon Glassc30b7ad2019-11-14 12:57:41 -070013#include <irq_func.h>
Simon Glassf7ae49f2020-05-10 11:40:05 -060014#include <log.h>
Simon Glass7c03caf2019-05-02 10:52:12 -060015#include <malloc.h>
Simon Glass4bbc0242017-01-16 07:03:56 -070016#include <spl.h>
Simon Glassc0e2c812019-10-20 21:37:49 -060017#include <syscon.h>
Simon Glass4bbc0242017-01-16 07:03:56 -070018#include <asm/cpu.h>
Simon Glassc0e2c812019-10-20 21:37:49 -060019#include <asm/cpu_common.h>
Simon Glass7fe32b32022-03-04 08:43:05 -070020#include <asm/fsp2/fsp_api.h>
Simon Glass401d1c42020-10-30 21:38:53 -060021#include <asm/global_data.h>
Simon Glass7c03caf2019-05-02 10:52:12 -060022#include <asm/mrccache.h>
Simon Glass4bbc0242017-01-16 07:03:56 -070023#include <asm/mtrr.h>
Simon Glassc0e2c812019-10-20 21:37:49 -060024#include <asm/pci.h>
Simon Glass4bbc0242017-01-16 07:03:56 -070025#include <asm/processor.h>
Simon Glassdaade112019-09-25 08:11:39 -060026#include <asm/spl.h>
Simon Glass4bbc0242017-01-16 07:03:56 -070027#include <asm-generic/sections.h>
28
29DECLARE_GLOBAL_DATA_PTR;
30
Simon Glass7fe32b32022-03-04 08:43:05 -070031__weak int fsp_setup_pinctrl(void *ctx, struct event *event)
Bin Meng8f60ea02017-01-18 03:32:53 -080032{
33 return 0;
34}
35
Simon Glassc0e2c812019-10-20 21:37:49 -060036#ifdef CONFIG_TPL
37
38static int set_max_freq(void)
39{
40 if (cpu_get_burst_mode_state() == BURST_MODE_UNAVAILABLE) {
41 /*
42 * Burst Mode has been factory-configured as disabled and is not
43 * available in this physical processor package
44 */
45 debug("Burst Mode is factory-disabled\n");
46 return -ENOENT;
47 }
48
49 /* Enable burst mode */
50 cpu_set_burst_mode(true);
51
52 /* Enable speed step */
53 cpu_set_eist(true);
54
55 /* Set P-State ratio */
56 cpu_set_p_state_to_turbo_ratio();
57
58 return 0;
59}
60#endif
61
Simon Glass4bbc0242017-01-16 07:03:56 -070062static int x86_spl_init(void)
63{
Simon Glass7c03caf2019-05-02 10:52:12 -060064#ifndef CONFIG_TPL
Simon Glass4bbc0242017-01-16 07:03:56 -070065 /*
66 * TODO(sjg@chromium.org): We use this area of RAM for the stack
67 * and global_data in SPL. Once U-Boot starts up and releocates it
68 * is not needed. We could make this a CONFIG option or perhaps
Simon Glass98463902022-10-20 18:22:39 -060069 * place it immediately below CONFIG_TEXT_BASE.
Simon Glass4bbc0242017-01-16 07:03:56 -070070 */
Simon Glassfc486372020-04-30 21:21:42 -060071 __maybe_unused char *ptr = (char *)0x110000;
Simon Glassc0e2c812019-10-20 21:37:49 -060072#else
73 struct udevice *punit;
Simon Glass7c03caf2019-05-02 10:52:12 -060074#endif
Simon Glass4bbc0242017-01-16 07:03:56 -070075 int ret;
76
77 debug("%s starting\n", __func__);
Simon Glass0e72ac72019-10-20 21:37:55 -060078 if (IS_ENABLED(TPL))
79 ret = x86_cpu_reinit_f();
80 else
81 ret = x86_cpu_init_f();
Simon Glass4bbc0242017-01-16 07:03:56 -070082 ret = spl_init();
83 if (ret) {
84 debug("%s: spl_init() failed\n", __func__);
85 return ret;
86 }
Simon Glass4bbc0242017-01-16 07:03:56 -070087 ret = arch_cpu_init();
88 if (ret) {
89 debug("%s: arch_cpu_init() failed\n", __func__);
90 return ret;
91 }
Simon Glass7c03caf2019-05-02 10:52:12 -060092#ifndef CONFIG_TPL
Simon Glass7fe32b32022-03-04 08:43:05 -070093 ret = fsp_setup_pinctrl(NULL, NULL);
Simon Glass4bbc0242017-01-16 07:03:56 -070094 if (ret) {
Tom Rinie8272cb2023-01-14 15:49:35 -050095 debug("%s: fsp_setup_pinctrl() failed\n", __func__);
Simon Glass4bbc0242017-01-16 07:03:56 -070096 return ret;
97 }
Simon Glass7c03caf2019-05-02 10:52:12 -060098#endif
Simon Glass3ff09002017-03-19 12:59:21 -060099 preloader_console_init();
Simon Glass529d5f92021-03-15 18:11:18 +1300100#if !defined(CONFIG_TPL) && !CONFIG_IS_ENABLED(CPU)
Simon Glass4bbc0242017-01-16 07:03:56 -0700101 ret = print_cpuinfo();
102 if (ret) {
103 debug("%s: print_cpuinfo() failed\n", __func__);
104 return ret;
105 }
Simon Glass7c03caf2019-05-02 10:52:12 -0600106#endif
Simon Glass4bbc0242017-01-16 07:03:56 -0700107 ret = dram_init();
108 if (ret) {
109 debug("%s: dram_init() failed\n", __func__);
110 return ret;
111 }
Simon Glass7c03caf2019-05-02 10:52:12 -0600112 if (IS_ENABLED(CONFIG_ENABLE_MRC_CACHE)) {
113 ret = mrccache_spl_save();
114 if (ret)
115 debug("%s: Failed to write to mrccache (err=%d)\n",
116 __func__, ret);
117 }
118
Simon Glassfc486372020-04-30 21:21:42 -0600119#ifndef CONFIG_SYS_COREBOOT
Simon Glass4bbc0242017-01-16 07:03:56 -0700120 memset(&__bss_start, 0, (ulong)&__bss_end - (ulong)&__bss_start);
Simon Glass02840ca2021-01-24 10:06:10 -0700121# ifndef CONFIG_TPL
Simon Glass4bbc0242017-01-16 07:03:56 -0700122
123 /* TODO(sjg@chromium.org): Consider calling cpu_init_r() here */
124 ret = interrupt_init();
125 if (ret) {
126 debug("%s: interrupt_init() failed\n", __func__);
127 return ret;
128 }
129
130 /*
131 * The stack grows down from ptr. Put the global data at ptr. This
132 * will only be used for SPL. Once SPL loads U-Boot proper it will
133 * set up its own stack.
134 */
135 gd->new_gd = (struct global_data *)ptr;
136 memcpy(gd->new_gd, gd, sizeof(*gd));
137 arch_setup_gd(gd->new_gd);
138 gd->start_addr_sp = (ulong)ptr;
139
140 /* Cache the SPI flash. Otherwise copying the code to RAM takes ages */
141 ret = mtrr_add_request(MTRR_TYPE_WRBACK,
142 (1ULL << 32) - CONFIG_XIP_ROM_SIZE,
143 CONFIG_XIP_ROM_SIZE);
144 if (ret) {
Simon Glass7c03caf2019-05-02 10:52:12 -0600145 debug("%s: SPI cache setup failed (err=%d)\n", __func__, ret);
Simon Glass4bbc0242017-01-16 07:03:56 -0700146 return ret;
147 }
Simon Glass7c03caf2019-05-02 10:52:12 -0600148 mtrr_commit(true);
Simon Glassfc486372020-04-30 21:21:42 -0600149# else
Simon Glassc0e2c812019-10-20 21:37:49 -0600150 ret = syscon_get_by_driver_data(X86_SYSCON_PUNIT, &punit);
151 if (ret)
152 debug("Could not find PUNIT (err=%d)\n", ret);
153
154 ret = set_max_freq();
155 if (ret)
156 debug("Failed to set CPU frequency (err=%d)\n", ret);
Simon Glassfc486372020-04-30 21:21:42 -0600157# endif
Simon Glass7c03caf2019-05-02 10:52:12 -0600158#endif
Simon Glass4bbc0242017-01-16 07:03:56 -0700159
160 return 0;
161}
162
163void board_init_f(ulong flags)
164{
165 int ret;
166
167 ret = x86_spl_init();
168 if (ret) {
Simon Glassd7413de2020-05-27 06:58:48 -0600169 printf("x86_spl_init: error %d\n", ret);
170 hang();
Simon Glass4bbc0242017-01-16 07:03:56 -0700171 }
Simon Glassfc486372020-04-30 21:21:42 -0600172#if IS_ENABLED(CONFIG_TPL) || IS_ENABLED(CONFIG_SYS_COREBOOT)
Simon Glass7c03caf2019-05-02 10:52:12 -0600173 gd->bd = malloc(sizeof(*gd->bd));
174 if (!gd->bd) {
175 printf("Out of memory for bd_info size %x\n", sizeof(*gd->bd));
176 hang();
177 }
178 board_init_r(gd, 0);
179#else
Simon Glass4bbc0242017-01-16 07:03:56 -0700180 /* Uninit CAR and jump to board_init_f_r() */
181 board_init_f_r_trampoline(gd->start_addr_sp);
Simon Glass7c03caf2019-05-02 10:52:12 -0600182#endif
Simon Glass4bbc0242017-01-16 07:03:56 -0700183}
184
185void board_init_f_r(void)
186{
187 init_cache_f_r();
188 gd->flags &= ~GD_FLG_SERIAL_READY;
189 debug("cache status %d\n", dcache_status());
190 board_init_r(gd, 0);
191}
192
193u32 spl_boot_device(void)
194{
Simon Glassdaade112019-09-25 08:11:39 -0600195 return BOOT_DEVICE_SPI_MMAP;
Simon Glass4bbc0242017-01-16 07:03:56 -0700196}
197
198int spl_start_uboot(void)
199{
200 return 0;
201}
202
203void spl_board_announce_boot_device(void)
204{
205 printf("SPI flash");
206}
207
208static int spl_board_load_image(struct spl_image_info *spl_image,
209 struct spl_boot_device *bootdev)
210{
211 spl_image->size = CONFIG_SYS_MONITOR_LEN;
Simon Glass98463902022-10-20 18:22:39 -0600212 spl_image->entry_point = CONFIG_TEXT_BASE;
213 spl_image->load_addr = CONFIG_TEXT_BASE;
Simon Glass4bbc0242017-01-16 07:03:56 -0700214 spl_image->os = IH_OS_U_BOOT;
215 spl_image->name = "U-Boot";
216
Simon Glass37897c42020-04-30 21:21:41 -0600217 if (!IS_ENABLED(CONFIG_SYS_COREBOOT)) {
218 /*
219 * Copy U-Boot from ROM
220 * TODO(sjg@chromium.org): Figure out a way to get the text base
221 * correctly here, and in the device-tree binman definition.
222 *
223 * Also consider using FIT so we get the correct image length
224 * and parameters.
225 */
226 memcpy((char *)spl_image->load_addr, (char *)0xfff00000,
227 0x100000);
228 }
229
Simon Glass4bbc0242017-01-16 07:03:56 -0700230 debug("Loading to %lx\n", spl_image->load_addr);
231
232 return 0;
233}
Simon Glassdaade112019-09-25 08:11:39 -0600234SPL_LOAD_IMAGE_METHOD("SPI", 5, BOOT_DEVICE_SPI_MMAP, spl_board_load_image);
Simon Glass4bbc0242017-01-16 07:03:56 -0700235
236int spl_spi_load_image(void)
237{
238 return -EPERM;
239}
240
Simon Glass7c03caf2019-05-02 10:52:12 -0600241#ifdef CONFIG_X86_RUN_64BIT
Simon Glass4bbc0242017-01-16 07:03:56 -0700242void __noreturn jump_to_image_no_args(struct spl_image_info *spl_image)
243{
244 int ret;
245
246 printf("Jumping to 64-bit U-Boot: Note many features are missing\n");
247 ret = cpu_jump_to_64bit_uboot(spl_image->entry_point);
248 debug("ret=%d\n", ret);
Simon Glass14dd93b2019-09-25 08:11:38 -0600249 hang();
Simon Glass4bbc0242017-01-16 07:03:56 -0700250}
Simon Glass7c03caf2019-05-02 10:52:12 -0600251#endif
252
253void spl_board_init(void)
254{
255#ifndef CONFIG_TPL
256 preloader_console_init();
257#endif
258}