Tom Rini | 10e4779 | 2018-05-06 17:58:06 -0400 | [diff] [blame] | 1 | // SPDX-License-Identifier: GPL-2.0 |
Simon Glass | 030777d | 2017-01-16 07:03:56 -0700 | [diff] [blame] | 2 | /* |
| 3 | * Copyright (c) 2016 Google, Inc |
Simon Glass | 030777d | 2017-01-16 07:03:56 -0700 | [diff] [blame] | 4 | */ |
| 5 | |
Simon Glass | 3a1d96f | 2023-07-15 21:39:11 -0600 | [diff] [blame] | 6 | #define LOG_CATEGORY LOGC_BOOT |
| 7 | |
Simon Glass | 1d91ba7 | 2019-11-14 12:57:37 -0700 | [diff] [blame] | 8 | #include <cpu_func.h> |
Simon Glass | 030777d | 2017-01-16 07:03:56 -0700 | [diff] [blame] | 9 | #include <debug_uart.h> |
Simon Glass | 0b3c576 | 2019-10-20 21:37:49 -0600 | [diff] [blame] | 10 | #include <dm.h> |
Simon Glass | f11478f | 2019-12-28 10:45:07 -0700 | [diff] [blame] | 11 | #include <hang.h> |
Simon Glass | 2dc9c34 | 2020-05-10 11:40:01 -0600 | [diff] [blame] | 12 | #include <image.h> |
Simon Glass | 9758973 | 2020-05-10 11:40:02 -0600 | [diff] [blame] | 13 | #include <init.h> |
Simon Glass | 9b61c7c | 2019-11-14 12:57:41 -0700 | [diff] [blame] | 14 | #include <irq_func.h> |
Simon Glass | 0f2af88 | 2020-05-10 11:40:05 -0600 | [diff] [blame] | 15 | #include <log.h> |
Simon Glass | 7cf5fe0 | 2019-05-02 10:52:12 -0600 | [diff] [blame] | 16 | #include <malloc.h> |
Simon Glass | 030777d | 2017-01-16 07:03:56 -0700 | [diff] [blame] | 17 | #include <spl.h> |
Simon Glass | 0b3c576 | 2019-10-20 21:37:49 -0600 | [diff] [blame] | 18 | #include <syscon.h> |
Simon Glass | e50c455 | 2023-07-15 21:39:01 -0600 | [diff] [blame] | 19 | #include <vesa.h> |
Simon Glass | 030777d | 2017-01-16 07:03:56 -0700 | [diff] [blame] | 20 | #include <asm/cpu.h> |
Simon Glass | 0b3c576 | 2019-10-20 21:37:49 -0600 | [diff] [blame] | 21 | #include <asm/cpu_common.h> |
Simon Glass | fc55736 | 2022-03-04 08:43:05 -0700 | [diff] [blame] | 22 | #include <asm/fsp2/fsp_api.h> |
Simon Glass | 3ba929a | 2020-10-30 21:38:53 -0600 | [diff] [blame] | 23 | #include <asm/global_data.h> |
Simon Glass | fb84243 | 2023-07-15 21:38:36 -0600 | [diff] [blame] | 24 | #include <asm/mp.h> |
Simon Glass | 7cf5fe0 | 2019-05-02 10:52:12 -0600 | [diff] [blame] | 25 | #include <asm/mrccache.h> |
Simon Glass | 030777d | 2017-01-16 07:03:56 -0700 | [diff] [blame] | 26 | #include <asm/mtrr.h> |
Simon Glass | 0b3c576 | 2019-10-20 21:37:49 -0600 | [diff] [blame] | 27 | #include <asm/pci.h> |
Simon Glass | 030777d | 2017-01-16 07:03:56 -0700 | [diff] [blame] | 28 | #include <asm/processor.h> |
Simon Glass | 7dc0a45 | 2023-07-30 11:16:01 -0600 | [diff] [blame] | 29 | #include <asm/qemu.h> |
Simon Glass | 19da9c4 | 2019-09-25 08:11:39 -0600 | [diff] [blame] | 30 | #include <asm/spl.h> |
Tom Rini | dec7ea0 | 2024-05-20 13:35:03 -0600 | [diff] [blame] | 31 | #include <asm/u-boot-x86.h> |
Simon Glass | 030777d | 2017-01-16 07:03:56 -0700 | [diff] [blame] | 32 | #include <asm-generic/sections.h> |
| 33 | |
| 34 | DECLARE_GLOBAL_DATA_PTR; |
| 35 | |
Simon Glass | fc55736 | 2022-03-04 08:43:05 -0700 | [diff] [blame] | 36 | __weak int fsp_setup_pinctrl(void *ctx, struct event *event) |
Bin Meng | 2240fde | 2017-01-18 03:32:53 -0800 | [diff] [blame] | 37 | { |
| 38 | return 0; |
| 39 | } |
| 40 | |
Simon Glass | 0b3c576 | 2019-10-20 21:37:49 -0600 | [diff] [blame] | 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 | |
Simon Glass | 030777d | 2017-01-16 07:03:56 -0700 | [diff] [blame] | 67 | static int x86_spl_init(void) |
| 68 | { |
Simon Glass | b3f351f | 2023-07-15 21:39:13 -0600 | [diff] [blame] | 69 | struct udevice *dev; |
| 70 | |
Simon Glass | 7cf5fe0 | 2019-05-02 10:52:12 -0600 | [diff] [blame] | 71 | #ifndef CONFIG_TPL |
Simon Glass | 030777d | 2017-01-16 07:03:56 -0700 | [diff] [blame] | 72 | /* |
| 73 | * TODO(sjg@chromium.org): 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 |
Simon Glass | 72cc538 | 2022-10-20 18:22:39 -0600 | [diff] [blame] | 76 | * place it immediately below CONFIG_TEXT_BASE. |
Simon Glass | 030777d | 2017-01-16 07:03:56 -0700 | [diff] [blame] | 77 | */ |
Simon Glass | dae1153 | 2020-04-30 21:21:42 -0600 | [diff] [blame] | 78 | __maybe_unused char *ptr = (char *)0x110000; |
Simon Glass | 0b3c576 | 2019-10-20 21:37:49 -0600 | [diff] [blame] | 79 | #else |
| 80 | struct udevice *punit; |
Simon Glass | 7cf5fe0 | 2019-05-02 10:52:12 -0600 | [diff] [blame] | 81 | #endif |
Simon Glass | 030777d | 2017-01-16 07:03:56 -0700 | [diff] [blame] | 82 | int ret; |
| 83 | |
Simon Glass | 3a1d96f | 2023-07-15 21:39:11 -0600 | [diff] [blame] | 84 | log_debug("x86 spl starting\n"); |
Tom Rini | dcc44ec | 2025-02-26 14:31:26 -0600 | [diff] [blame] | 85 | if (IS_ENABLED(CONFIG_TPL)) |
Simon Glass | 81f1462 | 2019-10-20 21:37:55 -0600 | [diff] [blame] | 86 | ret = x86_cpu_reinit_f(); |
Simon Glass | 030777d | 2017-01-16 07:03:56 -0700 | [diff] [blame] | 87 | ret = spl_init(); |
| 88 | if (ret) { |
Simon Glass | 3a1d96f | 2023-07-15 21:39:11 -0600 | [diff] [blame] | 89 | log_debug("spl_init() failed (err=%d)\n", ret); |
Simon Glass | 030777d | 2017-01-16 07:03:56 -0700 | [diff] [blame] | 90 | return ret; |
| 91 | } |
Simon Glass | 030777d | 2017-01-16 07:03:56 -0700 | [diff] [blame] | 92 | ret = arch_cpu_init(); |
| 93 | if (ret) { |
Simon Glass | 3a1d96f | 2023-07-15 21:39:11 -0600 | [diff] [blame] | 94 | log_debug("arch_cpu_init() failed (err=%d)\n", ret); |
Simon Glass | 030777d | 2017-01-16 07:03:56 -0700 | [diff] [blame] | 95 | return ret; |
| 96 | } |
Simon Glass | 7cf5fe0 | 2019-05-02 10:52:12 -0600 | [diff] [blame] | 97 | #ifndef CONFIG_TPL |
Simon Glass | fc55736 | 2022-03-04 08:43:05 -0700 | [diff] [blame] | 98 | ret = fsp_setup_pinctrl(NULL, NULL); |
Simon Glass | 030777d | 2017-01-16 07:03:56 -0700 | [diff] [blame] | 99 | if (ret) { |
Simon Glass | 3a1d96f | 2023-07-15 21:39:11 -0600 | [diff] [blame] | 100 | log_debug("fsp_setup_pinctrl() failed (err=%d)\n", ret); |
Simon Glass | 030777d | 2017-01-16 07:03:56 -0700 | [diff] [blame] | 101 | return ret; |
| 102 | } |
Simon Glass | 7cf5fe0 | 2019-05-02 10:52:12 -0600 | [diff] [blame] | 103 | #endif |
Simon Glass | fbfb476 | 2023-07-15 21:39:00 -0600 | [diff] [blame] | 104 | /* |
| 105 | * spl_board_init() below sets up the console if enabled. If it isn't, |
| 106 | * do it here. We cannot call this twice since it results in a double |
| 107 | * banner and CI tests fail. |
| 108 | */ |
| 109 | if (!IS_ENABLED(CONFIG_SPL_BOARD_INIT)) |
| 110 | preloader_console_init(); |
Simon Glass | 2f00216 | 2021-03-15 18:11:18 +1300 | [diff] [blame] | 111 | #if !defined(CONFIG_TPL) && !CONFIG_IS_ENABLED(CPU) |
Simon Glass | 030777d | 2017-01-16 07:03:56 -0700 | [diff] [blame] | 112 | ret = print_cpuinfo(); |
| 113 | if (ret) { |
Simon Glass | 3a1d96f | 2023-07-15 21:39:11 -0600 | [diff] [blame] | 114 | log_debug("print_cpuinfo() failed (err=%d)\n", ret); |
Simon Glass | 030777d | 2017-01-16 07:03:56 -0700 | [diff] [blame] | 115 | return ret; |
| 116 | } |
Simon Glass | 7cf5fe0 | 2019-05-02 10:52:12 -0600 | [diff] [blame] | 117 | #endif |
Simon Glass | b3f351f | 2023-07-15 21:39:13 -0600 | [diff] [blame] | 118 | /* probe the LPC so we get the GPIO_BASE set up correctly */ |
| 119 | ret = uclass_first_device_err(UCLASS_LPC, &dev); |
| 120 | if (ret && ret != -ENODEV) { |
| 121 | log_debug("lpc probe failed\n"); |
| 122 | return ret; |
| 123 | } |
| 124 | |
Simon Glass | 030777d | 2017-01-16 07:03:56 -0700 | [diff] [blame] | 125 | ret = dram_init(); |
| 126 | if (ret) { |
Simon Glass | 3a1d96f | 2023-07-15 21:39:11 -0600 | [diff] [blame] | 127 | log_debug("dram_init() failed (err=%d)\n", ret); |
Simon Glass | 030777d | 2017-01-16 07:03:56 -0700 | [diff] [blame] | 128 | return ret; |
| 129 | } |
Simon Glass | 3a1d96f | 2023-07-15 21:39:11 -0600 | [diff] [blame] | 130 | log_debug("mrc\n"); |
Simon Glass | 7cf5fe0 | 2019-05-02 10:52:12 -0600 | [diff] [blame] | 131 | if (IS_ENABLED(CONFIG_ENABLE_MRC_CACHE)) { |
| 132 | ret = mrccache_spl_save(); |
| 133 | if (ret) |
Simon Glass | 3a1d96f | 2023-07-15 21:39:11 -0600 | [diff] [blame] | 134 | log_debug("Failed to write to mrccache (err=%d)\n", |
| 135 | ret); |
Simon Glass | 7cf5fe0 | 2019-05-02 10:52:12 -0600 | [diff] [blame] | 136 | } |
| 137 | |
Simon Glass | dae1153 | 2020-04-30 21:21:42 -0600 | [diff] [blame] | 138 | #ifndef CONFIG_SYS_COREBOOT |
Shiji Yang | eff11fa | 2023-08-03 09:47:17 +0800 | [diff] [blame] | 139 | debug("BSS clear from %lx to %lx len %lx\n", (ulong)__bss_start, |
| 140 | (ulong)__bss_end, (ulong)__bss_end - (ulong)__bss_start); |
| 141 | memset(__bss_start, 0, (ulong)__bss_end - (ulong)__bss_start); |
Simon Glass | 4771759 | 2021-01-24 10:06:10 -0700 | [diff] [blame] | 142 | # ifndef CONFIG_TPL |
Simon Glass | 030777d | 2017-01-16 07:03:56 -0700 | [diff] [blame] | 143 | |
| 144 | /* TODO(sjg@chromium.org): Consider calling cpu_init_r() here */ |
| 145 | ret = interrupt_init(); |
| 146 | if (ret) { |
| 147 | debug("%s: interrupt_init() failed\n", __func__); |
| 148 | return ret; |
| 149 | } |
| 150 | |
| 151 | /* |
| 152 | * The stack grows down from ptr. Put the global data at ptr. This |
| 153 | * will only be used for SPL. Once SPL loads U-Boot proper it will |
| 154 | * set up its own stack. |
| 155 | */ |
| 156 | gd->new_gd = (struct global_data *)ptr; |
| 157 | memcpy(gd->new_gd, gd, sizeof(*gd)); |
Simon Glass | 23ae5c3 | 2023-07-15 21:39:05 -0600 | [diff] [blame] | 158 | |
Simon Glass | 3a1d96f | 2023-07-15 21:39:11 -0600 | [diff] [blame] | 159 | log_debug("logging\n"); |
Simon Glass | 23ae5c3 | 2023-07-15 21:39:05 -0600 | [diff] [blame] | 160 | /* |
| 161 | * Make sure logging is disabled when we switch, since the log system |
| 162 | * list head will move |
| 163 | */ |
| 164 | gd->new_gd->flags &= ~GD_FLG_LOG_READY; |
Simon Glass | 030777d | 2017-01-16 07:03:56 -0700 | [diff] [blame] | 165 | arch_setup_gd(gd->new_gd); |
| 166 | gd->start_addr_sp = (ulong)ptr; |
| 167 | |
Simon Glass | 23ae5c3 | 2023-07-15 21:39:05 -0600 | [diff] [blame] | 168 | /* start up logging again, with the new list-head location */ |
| 169 | ret = log_init(); |
| 170 | if (ret) { |
| 171 | log_debug("Log setup failed (err=%d)\n", ret); |
| 172 | return ret; |
| 173 | } |
| 174 | |
Simon Glass | fb84243 | 2023-07-15 21:38:36 -0600 | [diff] [blame] | 175 | if (_LOG_DEBUG) { |
| 176 | ret = mtrr_list(mtrr_get_var_count(), MP_SELECT_BSP); |
| 177 | if (ret) |
| 178 | printf("mtrr_list failed\n"); |
| 179 | } |
| 180 | |
Simon Glass | 030777d | 2017-01-16 07:03:56 -0700 | [diff] [blame] | 181 | /* Cache the SPI flash. Otherwise copying the code to RAM takes ages */ |
| 182 | ret = mtrr_add_request(MTRR_TYPE_WRBACK, |
| 183 | (1ULL << 32) - CONFIG_XIP_ROM_SIZE, |
| 184 | CONFIG_XIP_ROM_SIZE); |
| 185 | if (ret) { |
Simon Glass | 7cf5fe0 | 2019-05-02 10:52:12 -0600 | [diff] [blame] | 186 | debug("%s: SPI cache setup failed (err=%d)\n", __func__, ret); |
Simon Glass | 030777d | 2017-01-16 07:03:56 -0700 | [diff] [blame] | 187 | return ret; |
| 188 | } |
Simon Glass | dae1153 | 2020-04-30 21:21:42 -0600 | [diff] [blame] | 189 | # else |
Simon Glass | 0b3c576 | 2019-10-20 21:37:49 -0600 | [diff] [blame] | 190 | ret = syscon_get_by_driver_data(X86_SYSCON_PUNIT, &punit); |
| 191 | if (ret) |
| 192 | debug("Could not find PUNIT (err=%d)\n", ret); |
| 193 | |
| 194 | ret = set_max_freq(); |
| 195 | if (ret) |
| 196 | debug("Failed to set CPU frequency (err=%d)\n", ret); |
Simon Glass | dae1153 | 2020-04-30 21:21:42 -0600 | [diff] [blame] | 197 | # endif |
Simon Glass | 7cf5fe0 | 2019-05-02 10:52:12 -0600 | [diff] [blame] | 198 | #endif |
Simon Glass | 3a1d96f | 2023-07-15 21:39:11 -0600 | [diff] [blame] | 199 | log_debug("done\n"); |
Simon Glass | 030777d | 2017-01-16 07:03:56 -0700 | [diff] [blame] | 200 | |
| 201 | return 0; |
| 202 | } |
| 203 | |
| 204 | void board_init_f(ulong flags) |
| 205 | { |
| 206 | int ret; |
| 207 | |
| 208 | ret = x86_spl_init(); |
| 209 | if (ret) { |
Simon Glass | a0185fa | 2020-05-27 06:58:48 -0600 | [diff] [blame] | 210 | printf("x86_spl_init: error %d\n", ret); |
| 211 | hang(); |
Simon Glass | 030777d | 2017-01-16 07:03:56 -0700 | [diff] [blame] | 212 | } |
Simon Glass | dae1153 | 2020-04-30 21:21:42 -0600 | [diff] [blame] | 213 | #if IS_ENABLED(CONFIG_TPL) || IS_ENABLED(CONFIG_SYS_COREBOOT) |
Simon Glass | 7cf5fe0 | 2019-05-02 10:52:12 -0600 | [diff] [blame] | 214 | gd->bd = malloc(sizeof(*gd->bd)); |
| 215 | if (!gd->bd) { |
| 216 | printf("Out of memory for bd_info size %x\n", sizeof(*gd->bd)); |
| 217 | hang(); |
| 218 | } |
| 219 | board_init_r(gd, 0); |
| 220 | #else |
Simon Glass | 030777d | 2017-01-16 07:03:56 -0700 | [diff] [blame] | 221 | /* Uninit CAR and jump to board_init_f_r() */ |
| 222 | board_init_f_r_trampoline(gd->start_addr_sp); |
Simon Glass | 7cf5fe0 | 2019-05-02 10:52:12 -0600 | [diff] [blame] | 223 | #endif |
Simon Glass | 030777d | 2017-01-16 07:03:56 -0700 | [diff] [blame] | 224 | } |
| 225 | |
| 226 | void board_init_f_r(void) |
| 227 | { |
Simon Glass | 6e7b1b5 | 2023-05-04 16:50:57 -0600 | [diff] [blame] | 228 | mtrr_commit(false); |
| 229 | init_cache(); |
Simon Glass | 030777d | 2017-01-16 07:03:56 -0700 | [diff] [blame] | 230 | gd->flags &= ~GD_FLG_SERIAL_READY; |
Simon Glass | 2a5cad0 | 2023-09-07 09:58:20 -0600 | [diff] [blame] | 231 | |
| 232 | /* make sure driver model is not accessed from now on */ |
| 233 | gd->flags |= GD_FLG_DM_DEAD; |
Simon Glass | 030777d | 2017-01-16 07:03:56 -0700 | [diff] [blame] | 234 | debug("cache status %d\n", dcache_status()); |
| 235 | board_init_r(gd, 0); |
| 236 | } |
| 237 | |
| 238 | u32 spl_boot_device(void) |
| 239 | { |
Simon Glass | 19da9c4 | 2019-09-25 08:11:39 -0600 | [diff] [blame] | 240 | return BOOT_DEVICE_SPI_MMAP; |
Simon Glass | 030777d | 2017-01-16 07:03:56 -0700 | [diff] [blame] | 241 | } |
| 242 | |
| 243 | int spl_start_uboot(void) |
| 244 | { |
| 245 | return 0; |
| 246 | } |
| 247 | |
| 248 | void spl_board_announce_boot_device(void) |
| 249 | { |
| 250 | printf("SPI flash"); |
| 251 | } |
| 252 | |
| 253 | static int spl_board_load_image(struct spl_image_info *spl_image, |
| 254 | struct spl_boot_device *bootdev) |
| 255 | { |
| 256 | spl_image->size = CONFIG_SYS_MONITOR_LEN; |
Simon Glass | 72cc538 | 2022-10-20 18:22:39 -0600 | [diff] [blame] | 257 | spl_image->entry_point = CONFIG_TEXT_BASE; |
| 258 | spl_image->load_addr = CONFIG_TEXT_BASE; |
Simon Glass | 030777d | 2017-01-16 07:03:56 -0700 | [diff] [blame] | 259 | spl_image->os = IH_OS_U_BOOT; |
| 260 | spl_image->name = "U-Boot"; |
| 261 | |
Simon Glass | 8c43434 | 2023-09-07 09:58:17 -0600 | [diff] [blame] | 262 | if (spl_image->load_addr != spl_get_image_pos()) { |
Simon Glass | 53ea0f6 | 2023-05-04 16:50:55 -0600 | [diff] [blame] | 263 | /* Copy U-Boot from ROM */ |
| 264 | memcpy((void *)spl_image->load_addr, |
| 265 | (void *)spl_get_image_pos(), spl_get_image_size()); |
Simon Glass | 91fcd1d | 2020-04-30 21:21:41 -0600 | [diff] [blame] | 266 | } |
| 267 | |
Simon Glass | 030777d | 2017-01-16 07:03:56 -0700 | [diff] [blame] | 268 | debug("Loading to %lx\n", spl_image->load_addr); |
| 269 | |
| 270 | return 0; |
| 271 | } |
Simon Glass | 19da9c4 | 2019-09-25 08:11:39 -0600 | [diff] [blame] | 272 | SPL_LOAD_IMAGE_METHOD("SPI", 5, BOOT_DEVICE_SPI_MMAP, spl_board_load_image); |
Simon Glass | 030777d | 2017-01-16 07:03:56 -0700 | [diff] [blame] | 273 | |
| 274 | int spl_spi_load_image(void) |
| 275 | { |
| 276 | return -EPERM; |
| 277 | } |
| 278 | |
Simon Glass | 7cf5fe0 | 2019-05-02 10:52:12 -0600 | [diff] [blame] | 279 | #ifdef CONFIG_X86_RUN_64BIT |
Simon Glass | b304075 | 2025-05-28 06:32:08 -0600 | [diff] [blame^] | 280 | void __noreturn jump_to_image(struct spl_image_info *spl_image) |
Simon Glass | 030777d | 2017-01-16 07:03:56 -0700 | [diff] [blame] | 281 | { |
| 282 | int ret; |
| 283 | |
Simon Glass | f0dab70 | 2025-03-15 14:25:34 +0000 | [diff] [blame] | 284 | log_debug("Jumping to 64-bit U-Boot\n"); |
Simon Glass | 030777d | 2017-01-16 07:03:56 -0700 | [diff] [blame] | 285 | ret = cpu_jump_to_64bit_uboot(spl_image->entry_point); |
| 286 | debug("ret=%d\n", ret); |
Simon Glass | 39c6f9b | 2019-09-25 08:11:38 -0600 | [diff] [blame] | 287 | hang(); |
Simon Glass | 030777d | 2017-01-16 07:03:56 -0700 | [diff] [blame] | 288 | } |
Simon Glass | 7cf5fe0 | 2019-05-02 10:52:12 -0600 | [diff] [blame] | 289 | #endif |
| 290 | |
| 291 | void spl_board_init(void) |
| 292 | { |
| 293 | #ifndef CONFIG_TPL |
| 294 | preloader_console_init(); |
| 295 | #endif |
Simon Glass | 7dc0a45 | 2023-07-30 11:16:01 -0600 | [diff] [blame] | 296 | if (IS_ENABLED(CONFIG_QEMU)) |
| 297 | qemu_chipset_init(); |
Simon Glass | e50c455 | 2023-07-15 21:39:01 -0600 | [diff] [blame] | 298 | |
Simon Glass | 8a4e46e | 2025-01-10 17:00:22 -0700 | [diff] [blame] | 299 | if (CONFIG_IS_ENABLED(UPL_OUT)) |
| 300 | gd->flags |= GD_FLG_UPL; |
| 301 | |
Simon Glass | e50c455 | 2023-07-15 21:39:01 -0600 | [diff] [blame] | 302 | if (CONFIG_IS_ENABLED(VIDEO)) { |
| 303 | struct udevice *dev; |
Simon Glass | 05f9c64 | 2025-01-10 17:00:20 -0700 | [diff] [blame] | 304 | int ret; |
Simon Glass | e50c455 | 2023-07-15 21:39:01 -0600 | [diff] [blame] | 305 | |
| 306 | /* Set up PCI video in SPL if required */ |
Simon Glass | 05f9c64 | 2025-01-10 17:00:20 -0700 | [diff] [blame] | 307 | ret = uclass_first_device_err(UCLASS_PCI, &dev); |
| 308 | if (ret) |
| 309 | panic("Failed to set up PCI"); |
| 310 | ret = uclass_first_device_err(UCLASS_VIDEO, &dev); |
| 311 | if (ret) |
| 312 | panic("Failed to set up video"); |
Simon Glass | e50c455 | 2023-07-15 21:39:01 -0600 | [diff] [blame] | 313 | } |
Simon Glass | 7cf5fe0 | 2019-05-02 10:52:12 -0600 | [diff] [blame] | 314 | } |