Tom Rini | 83d290c | 2018-05-06 17:58:06 -0400 | [diff] [blame] | 1 | // SPDX-License-Identifier: GPL-2.0+ |
wdenk | 2262cfe | 2002-11-18 00:14:45 +0000 | [diff] [blame] | 2 | /* |
Graeme Russ | dbf7115 | 2011-04-13 19:43:26 +1000 | [diff] [blame] | 3 | * (C) Copyright 2008-2011 |
| 4 | * Graeme Russ, <graeme.russ@gmail.com> |
| 5 | * |
wdenk | 2262cfe | 2002-11-18 00:14:45 +0000 | [diff] [blame] | 6 | * (C) Copyright 2002 |
Albert ARIBAUD | fa82f87 | 2011-08-04 18:45:45 +0200 | [diff] [blame] | 7 | * Daniel Engström, Omicron Ceti AB, <daniel@omicron.se> |
wdenk | 8bde7f7 | 2003-06-27 21:31:46 +0000 | [diff] [blame] | 8 | * |
wdenk | 2262cfe | 2002-11-18 00:14:45 +0000 | [diff] [blame] | 9 | * (C) Copyright 2002 |
| 10 | * Sysgo Real-Time Solutions, GmbH <www.elinos.com> |
| 11 | * Marius Groeger <mgroeger@sysgo.de> |
| 12 | * |
| 13 | * (C) Copyright 2002 |
| 14 | * Sysgo Real-Time Solutions, GmbH <www.elinos.com> |
| 15 | * Alex Zuepke <azu@sysgo.de> |
| 16 | * |
Bin Meng | 52f952b | 2014-11-09 22:18:56 +0800 | [diff] [blame] | 17 | * Part of this file is adapted from coreboot |
| 18 | * src/arch/x86/lib/cpu.c |
wdenk | 2262cfe | 2002-11-18 00:14:45 +0000 | [diff] [blame] | 19 | */ |
| 20 | |
Simon Glass | 38e498c | 2020-11-04 09:57:18 -0700 | [diff] [blame] | 21 | #define LOG_CATEGORY UCLASS_CPU |
| 22 | |
wdenk | 2262cfe | 2002-11-18 00:14:45 +0000 | [diff] [blame] | 23 | #include <common.h> |
Simon Glass | 52f2423 | 2020-05-10 11:40:00 -0600 | [diff] [blame] | 24 | #include <bootstage.h> |
wdenk | 2262cfe | 2002-11-18 00:14:45 +0000 | [diff] [blame] | 25 | #include <command.h> |
Simon Glass | 9edefc2 | 2019-11-14 12:57:37 -0700 | [diff] [blame] | 26 | #include <cpu_func.h> |
Bin Meng | 6e6f4ce | 2015-06-17 11:15:36 +0800 | [diff] [blame] | 27 | #include <dm.h> |
Simon Glass | 200182a | 2014-10-10 08:21:55 -0600 | [diff] [blame] | 28 | #include <errno.h> |
Simon Glass | 91caa3b | 2023-08-21 21:17:01 -0600 | [diff] [blame] | 29 | #include <event.h> |
Simon Glass | 35a3f87 | 2019-12-28 10:44:56 -0700 | [diff] [blame] | 30 | #include <init.h> |
Simon Glass | b95611f | 2020-07-16 21:22:30 -0600 | [diff] [blame] | 31 | #include <irq.h> |
Simon Glass | f7ae49f | 2020-05-10 11:40:05 -0600 | [diff] [blame] | 32 | #include <log.h> |
Simon Glass | 200182a | 2014-10-10 08:21:55 -0600 | [diff] [blame] | 33 | #include <malloc.h> |
Bin Meng | d8906c1 | 2016-06-08 05:07:38 -0700 | [diff] [blame] | 34 | #include <syscon.h> |
Simon Glass | 3cabcf9 | 2020-04-08 16:57:35 -0600 | [diff] [blame] | 35 | #include <acpi/acpi_s3.h> |
Simon Glass | 776cc20 | 2020-04-08 16:57:36 -0600 | [diff] [blame] | 36 | #include <acpi/acpi_table.h> |
Bin Meng | a0609a8 | 2018-07-18 21:42:15 -0700 | [diff] [blame] | 37 | #include <asm/acpi.h> |
Stefan Reinauer | 095593c | 2012-12-02 04:49:50 +0000 | [diff] [blame] | 38 | #include <asm/control_regs.h> |
Bin Meng | d19c907 | 2016-05-11 07:45:01 -0700 | [diff] [blame] | 39 | #include <asm/coreboot_tables.h> |
Simon Glass | 200182a | 2014-10-10 08:21:55 -0600 | [diff] [blame] | 40 | #include <asm/cpu.h> |
Simon Glass | 401d1c4 | 2020-10-30 21:38:53 -0600 | [diff] [blame] | 41 | #include <asm/global_data.h> |
Bin Meng | 6e6f4ce | 2015-06-17 11:15:36 +0800 | [diff] [blame] | 42 | #include <asm/lapic.h> |
Simon Glass | e77b62e | 2016-03-11 22:07:11 -0700 | [diff] [blame] | 43 | #include <asm/microcode.h> |
Bin Meng | 6e6f4ce | 2015-06-17 11:15:36 +0800 | [diff] [blame] | 44 | #include <asm/mp.h> |
Bin Meng | 0c2b7ee | 2016-05-11 07:45:00 -0700 | [diff] [blame] | 45 | #include <asm/mrccache.h> |
Bin Meng | 43dd22f | 2015-07-06 16:31:30 +0800 | [diff] [blame] | 46 | #include <asm/msr.h> |
| 47 | #include <asm/mtrr.h> |
Simon Glass | a49e3c7 | 2014-11-12 22:42:26 -0700 | [diff] [blame] | 48 | #include <asm/post.h> |
Graeme Russ | c53fd2b | 2011-02-12 15:11:30 +1100 | [diff] [blame] | 49 | #include <asm/processor.h> |
Graeme Russ | 0c24c9c | 2011-02-12 15:11:32 +1100 | [diff] [blame] | 50 | #include <asm/processor-flags.h> |
Graeme Russ | 3f5f18d | 2008-12-07 10:29:02 +1100 | [diff] [blame] | 51 | #include <asm/interrupt.h> |
Bin Meng | 5e2400e | 2015-04-24 18:10:04 +0800 | [diff] [blame] | 52 | #include <asm/tables.h> |
Gabe Black | 60a9b6b | 2011-11-16 23:32:50 +0000 | [diff] [blame] | 53 | #include <linux/compiler.h> |
wdenk | 2262cfe | 2002-11-18 00:14:45 +0000 | [diff] [blame] | 54 | |
Bin Meng | 52f952b | 2014-11-09 22:18:56 +0800 | [diff] [blame] | 55 | DECLARE_GLOBAL_DATA_PTR; |
| 56 | |
Simon Glass | caca13f | 2019-12-06 21:41:51 -0700 | [diff] [blame] | 57 | #ifndef CONFIG_TPL_BUILD |
Bin Meng | 52f952b | 2014-11-09 22:18:56 +0800 | [diff] [blame] | 58 | static const char *const x86_vendor_name[] = { |
| 59 | [X86_VENDOR_INTEL] = "Intel", |
| 60 | [X86_VENDOR_CYRIX] = "Cyrix", |
| 61 | [X86_VENDOR_AMD] = "AMD", |
| 62 | [X86_VENDOR_UMC] = "UMC", |
| 63 | [X86_VENDOR_NEXGEN] = "NexGen", |
| 64 | [X86_VENDOR_CENTAUR] = "Centaur", |
| 65 | [X86_VENDOR_RISE] = "Rise", |
| 66 | [X86_VENDOR_TRANSMETA] = "Transmeta", |
| 67 | [X86_VENDOR_NSC] = "NSC", |
| 68 | [X86_VENDOR_SIS] = "SiS", |
| 69 | }; |
Simon Glass | caca13f | 2019-12-06 21:41:51 -0700 | [diff] [blame] | 70 | #endif |
Bin Meng | 52f952b | 2014-11-09 22:18:56 +0800 | [diff] [blame] | 71 | |
Gabe Black | f30fc4d | 2012-10-20 12:33:10 +0000 | [diff] [blame] | 72 | int __weak x86_cleanup_before_linux(void) |
| 73 | { |
Simon Glass | 99a573f | 2020-07-17 08:48:20 -0600 | [diff] [blame] | 74 | int ret; |
| 75 | |
| 76 | ret = mp_park_aps(); |
| 77 | if (ret) |
| 78 | return log_msg_ret("park", ret); |
Simon Glass | ee2b243 | 2015-03-02 17:04:37 -0700 | [diff] [blame] | 79 | bootstage_stash((void *)CONFIG_BOOTSTAGE_STASH_ADDR, |
Simon Glass | 7949703 | 2013-04-17 16:13:35 +0000 | [diff] [blame] | 80 | CONFIG_BOOTSTAGE_STASH_SIZE); |
Simon Glass | 7949703 | 2013-04-17 16:13:35 +0000 | [diff] [blame] | 81 | |
Gabe Black | f30fc4d | 2012-10-20 12:33:10 +0000 | [diff] [blame] | 82 | return 0; |
| 83 | } |
| 84 | |
Graeme Russ | d653244 | 2011-12-27 22:46:43 +1100 | [diff] [blame] | 85 | int x86_init_cache(void) |
| 86 | { |
| 87 | enable_caches(); |
| 88 | |
wdenk | 2262cfe | 2002-11-18 00:14:45 +0000 | [diff] [blame] | 89 | return 0; |
| 90 | } |
Graeme Russ | d653244 | 2011-12-27 22:46:43 +1100 | [diff] [blame] | 91 | int init_cache(void) __attribute__((weak, alias("x86_init_cache"))); |
wdenk | 2262cfe | 2002-11-18 00:14:45 +0000 | [diff] [blame] | 92 | |
Graeme Russ | 717979f | 2011-11-08 02:33:13 +0000 | [diff] [blame] | 93 | void flush_cache(unsigned long dummy1, unsigned long dummy2) |
wdenk | 2262cfe | 2002-11-18 00:14:45 +0000 | [diff] [blame] | 94 | { |
| 95 | asm("wbinvd\n"); |
wdenk | 2262cfe | 2002-11-18 00:14:45 +0000 | [diff] [blame] | 96 | } |
Graeme Russ | 3f5f18d | 2008-12-07 10:29:02 +1100 | [diff] [blame] | 97 | |
Stefan Reinauer | 095593c | 2012-12-02 04:49:50 +0000 | [diff] [blame] | 98 | /* Define these functions to allow ehch-hcd to function */ |
| 99 | void flush_dcache_range(unsigned long start, unsigned long stop) |
| 100 | { |
| 101 | } |
| 102 | |
| 103 | void invalidate_dcache_range(unsigned long start, unsigned long stop) |
| 104 | { |
| 105 | } |
Simon Glass | 8937140 | 2013-02-28 19:26:11 +0000 | [diff] [blame] | 106 | |
| 107 | void dcache_enable(void) |
| 108 | { |
| 109 | enable_caches(); |
| 110 | } |
| 111 | |
| 112 | void dcache_disable(void) |
| 113 | { |
| 114 | disable_caches(); |
| 115 | } |
| 116 | |
| 117 | void icache_enable(void) |
| 118 | { |
| 119 | } |
| 120 | |
| 121 | void icache_disable(void) |
| 122 | { |
| 123 | } |
| 124 | |
| 125 | int icache_status(void) |
| 126 | { |
| 127 | return 1; |
| 128 | } |
Simon Glass | 7bddac9 | 2014-10-10 08:21:52 -0600 | [diff] [blame] | 129 | |
Simon Glass | caca13f | 2019-12-06 21:41:51 -0700 | [diff] [blame] | 130 | #ifndef CONFIG_TPL_BUILD |
Bin Meng | 52f952b | 2014-11-09 22:18:56 +0800 | [diff] [blame] | 131 | const char *cpu_vendor_name(int vendor) |
| 132 | { |
| 133 | const char *name; |
| 134 | name = "<invalid cpu vendor>"; |
Heinrich Schuchardt | 39670c3 | 2017-11-20 19:45:56 +0100 | [diff] [blame] | 135 | if (vendor < ARRAY_SIZE(x86_vendor_name) && |
| 136 | x86_vendor_name[vendor]) |
Bin Meng | 52f952b | 2014-11-09 22:18:56 +0800 | [diff] [blame] | 137 | name = x86_vendor_name[vendor]; |
| 138 | |
| 139 | return name; |
| 140 | } |
Simon Glass | caca13f | 2019-12-06 21:41:51 -0700 | [diff] [blame] | 141 | #endif |
Bin Meng | 52f952b | 2014-11-09 22:18:56 +0800 | [diff] [blame] | 142 | |
Simon Glass | 727c1a9 | 2014-11-10 18:00:26 -0700 | [diff] [blame] | 143 | char *cpu_get_name(char *name) |
Bin Meng | 52f952b | 2014-11-09 22:18:56 +0800 | [diff] [blame] | 144 | { |
Simon Glass | 727c1a9 | 2014-11-10 18:00:26 -0700 | [diff] [blame] | 145 | unsigned int *name_as_ints = (unsigned int *)name; |
Bin Meng | 52f952b | 2014-11-09 22:18:56 +0800 | [diff] [blame] | 146 | struct cpuid_result regs; |
Simon Glass | 727c1a9 | 2014-11-10 18:00:26 -0700 | [diff] [blame] | 147 | char *ptr; |
Bin Meng | 52f952b | 2014-11-09 22:18:56 +0800 | [diff] [blame] | 148 | int i; |
| 149 | |
Simon Glass | 727c1a9 | 2014-11-10 18:00:26 -0700 | [diff] [blame] | 150 | /* This bit adds up to 48 bytes */ |
Bin Meng | 52f952b | 2014-11-09 22:18:56 +0800 | [diff] [blame] | 151 | for (i = 0; i < 3; i++) { |
| 152 | regs = cpuid(0x80000002 + i); |
| 153 | name_as_ints[i * 4 + 0] = regs.eax; |
| 154 | name_as_ints[i * 4 + 1] = regs.ebx; |
| 155 | name_as_ints[i * 4 + 2] = regs.ecx; |
| 156 | name_as_ints[i * 4 + 3] = regs.edx; |
| 157 | } |
Simon Glass | 727c1a9 | 2014-11-10 18:00:26 -0700 | [diff] [blame] | 158 | name[CPU_MAX_NAME_LEN - 1] = '\0'; |
Bin Meng | 52f952b | 2014-11-09 22:18:56 +0800 | [diff] [blame] | 159 | |
| 160 | /* Skip leading spaces. */ |
Simon Glass | 727c1a9 | 2014-11-10 18:00:26 -0700 | [diff] [blame] | 161 | ptr = name; |
| 162 | while (*ptr == ' ') |
| 163 | ptr++; |
Bin Meng | 52f952b | 2014-11-09 22:18:56 +0800 | [diff] [blame] | 164 | |
Simon Glass | 727c1a9 | 2014-11-10 18:00:26 -0700 | [diff] [blame] | 165 | return ptr; |
Bin Meng | 52f952b | 2014-11-09 22:18:56 +0800 | [diff] [blame] | 166 | } |
| 167 | |
Simon Glass | 727c1a9 | 2014-11-10 18:00:26 -0700 | [diff] [blame] | 168 | int default_print_cpuinfo(void) |
Simon Glass | 92cc94a | 2014-10-10 08:21:54 -0600 | [diff] [blame] | 169 | { |
Bin Meng | 52f952b | 2014-11-09 22:18:56 +0800 | [diff] [blame] | 170 | printf("CPU: %s, vendor %s, device %xh\n", |
| 171 | cpu_has_64bit() ? "x86_64" : "x86", |
| 172 | cpu_vendor_name(gd->arch.x86_vendor), gd->arch.x86_device); |
Simon Glass | 92cc94a | 2014-10-10 08:21:54 -0600 | [diff] [blame] | 173 | |
Simon Glass | ef5f5f6 | 2020-07-09 18:43:16 -0600 | [diff] [blame] | 174 | if (IS_ENABLED(CONFIG_HAVE_ACPI_RESUME)) { |
| 175 | debug("ACPI previous sleep state: %s\n", |
| 176 | acpi_ss_string(gd->arch.prev_sleep_state)); |
| 177 | } |
Bin Meng | b727961 | 2017-04-21 07:24:32 -0700 | [diff] [blame] | 178 | |
Simon Glass | 92cc94a | 2014-10-10 08:21:54 -0600 | [diff] [blame] | 179 | return 0; |
| 180 | } |
Simon Glass | 200182a | 2014-10-10 08:21:55 -0600 | [diff] [blame] | 181 | |
Marek Vasut | b55881d | 2021-10-23 03:06:03 +0200 | [diff] [blame] | 182 | #if CONFIG_IS_ENABLED(SHOW_BOOT_PROGRESS) |
Simon Glass | a49e3c7 | 2014-11-12 22:42:26 -0700 | [diff] [blame] | 183 | void show_boot_progress(int val) |
| 184 | { |
Simon Glass | a49e3c7 | 2014-11-12 22:42:26 -0700 | [diff] [blame] | 185 | outb(val, POST_PORT); |
| 186 | } |
Tom Rini | cb80ff2 | 2021-05-03 16:48:58 -0400 | [diff] [blame] | 187 | #endif |
Bin Meng | 5e2400e | 2015-04-24 18:10:04 +0800 | [diff] [blame] | 188 | |
Simon Glass | 91caa3b | 2023-08-21 21:17:01 -0600 | [diff] [blame] | 189 | #if !defined(CONFIG_SYS_COREBOOT) && !defined(CONFIG_EFI_STUB) && \ |
| 190 | !defined(CONFIG_SPL_BUILD) |
Bin Meng | 1e2f7b9 | 2016-05-11 07:44:56 -0700 | [diff] [blame] | 191 | /* |
Simon Glass | 4021ee6 | 2020-07-16 21:22:38 -0600 | [diff] [blame] | 192 | * Implement a weak default function for boards that need to do some final init |
| 193 | * before the system is ready. |
Bin Meng | 1e2f7b9 | 2016-05-11 07:44:56 -0700 | [diff] [blame] | 194 | */ |
Simon Glass | 4021ee6 | 2020-07-16 21:22:38 -0600 | [diff] [blame] | 195 | __weak void board_final_init(void) |
Bin Meng | 1e2f7b9 | 2016-05-11 07:44:56 -0700 | [diff] [blame] | 196 | { |
| 197 | } |
| 198 | |
Simon Glass | 7c73cea | 2020-09-22 12:45:28 -0600 | [diff] [blame] | 199 | /* |
| 200 | * Implement a weak default function for boards that need to do some final |
| 201 | * processing before booting the OS. |
| 202 | */ |
| 203 | __weak void board_final_cleanup(void) |
| 204 | { |
| 205 | } |
| 206 | |
Simon Glass | 91caa3b | 2023-08-21 21:17:01 -0600 | [diff] [blame] | 207 | static int last_stage_init(void) |
Bin Meng | 5e2400e | 2015-04-24 18:10:04 +0800 | [diff] [blame] | 208 | { |
Bin Meng | 474a62b | 2018-07-18 21:42:16 -0700 | [diff] [blame] | 209 | struct acpi_fadt __maybe_unused *fadt; |
Simon Glass | 38e498c | 2020-11-04 09:57:18 -0700 | [diff] [blame] | 210 | int ret; |
Bin Meng | 474a62b | 2018-07-18 21:42:16 -0700 | [diff] [blame] | 211 | |
Simon Glass | 4021ee6 | 2020-07-16 21:22:38 -0600 | [diff] [blame] | 212 | board_final_init(); |
Bin Meng | bffd798 | 2017-04-21 07:24:41 -0700 | [diff] [blame] | 213 | |
Simon Glass | ef5f5f6 | 2020-07-09 18:43:16 -0600 | [diff] [blame] | 214 | if (IS_ENABLED(CONFIG_HAVE_ACPI_RESUME)) { |
| 215 | fadt = acpi_find_fadt(); |
Bin Meng | 3a34cae | 2017-04-21 07:24:37 -0700 | [diff] [blame] | 216 | |
Simon Glass | ef5f5f6 | 2020-07-09 18:43:16 -0600 | [diff] [blame] | 217 | if (fadt && gd->arch.prev_sleep_state == ACPI_S3) |
| 218 | acpi_resume(fadt); |
| 219 | } |
Bin Meng | 3a34cae | 2017-04-21 07:24:37 -0700 | [diff] [blame] | 220 | |
Simon Glass | 38e498c | 2020-11-04 09:57:18 -0700 | [diff] [blame] | 221 | ret = write_tables(); |
| 222 | if (ret) { |
| 223 | log_err("Failed to write tables\n"); |
| 224 | return log_msg_ret("table", ret); |
| 225 | } |
Bin Meng | 5e2400e | 2015-04-24 18:10:04 +0800 | [diff] [blame] | 226 | |
Simon Glass | 8bccbc5 | 2020-07-17 08:48:15 -0600 | [diff] [blame] | 227 | if (IS_ENABLED(CONFIG_GENERATE_ACPI_TABLE)) { |
| 228 | fadt = acpi_find_fadt(); |
Bin Meng | 474a62b | 2018-07-18 21:42:16 -0700 | [diff] [blame] | 229 | |
Simon Glass | 8bccbc5 | 2020-07-17 08:48:15 -0600 | [diff] [blame] | 230 | /* Don't touch ACPI hardware on HW reduced platforms */ |
| 231 | if (fadt && !(fadt->flags & ACPI_FADT_HW_REDUCED_ACPI)) { |
| 232 | /* |
| 233 | * Other than waiting for OSPM to request us to switch |
| 234 | * to ACPI * mode, do it by ourselves, since SMI will |
| 235 | * not be triggered. |
| 236 | */ |
| 237 | enter_acpi_mode(fadt->pm1a_cnt_blk); |
| 238 | } |
Bin Meng | 474a62b | 2018-07-18 21:42:16 -0700 | [diff] [blame] | 239 | } |
Bin Meng | 474a62b | 2018-07-18 21:42:16 -0700 | [diff] [blame] | 240 | |
Simon Glass | 7c73cea | 2020-09-22 12:45:28 -0600 | [diff] [blame] | 241 | /* |
| 242 | * TODO(sjg@chromium.org): Move this to bootm_announce_and_cleanup() |
| 243 | * once APL FSP-S at 0x200000 does not overlap with the bzimage at |
| 244 | * 0x100000. |
| 245 | */ |
| 246 | board_final_cleanup(); |
| 247 | |
Bin Meng | 5e2400e | 2015-04-24 18:10:04 +0800 | [diff] [blame] | 248 | return 0; |
| 249 | } |
Simon Glass | 91caa3b | 2023-08-21 21:17:01 -0600 | [diff] [blame] | 250 | EVENT_SPY_SIMPLE(EVT_LAST_STAGE_INIT, last_stage_init); |
| 251 | |
| 252 | #endif /* !SYS_COREBOOT && !EFI_STUB && !SPL_BUILD */ |
Simon Glass | bcb0c61 | 2015-04-29 22:26:01 -0600 | [diff] [blame] | 253 | |
Simon Glass | afd5d50 | 2016-01-17 16:11:28 -0700 | [diff] [blame] | 254 | static int x86_init_cpus(void) |
Simon Glass | bcb0c61 | 2015-04-29 22:26:01 -0600 | [diff] [blame] | 255 | { |
Simon Glass | 8bccbc5 | 2020-07-17 08:48:15 -0600 | [diff] [blame] | 256 | if (IS_ENABLED(CONFIG_SMP)) { |
| 257 | debug("Init additional CPUs\n"); |
| 258 | x86_mp_init(); |
| 259 | } else { |
| 260 | struct udevice *dev; |
Bin Meng | c77b891 | 2015-07-22 01:21:12 -0700 | [diff] [blame] | 261 | |
Simon Glass | 8bccbc5 | 2020-07-17 08:48:15 -0600 | [diff] [blame] | 262 | /* |
| 263 | * This causes the cpu-x86 driver to be probed. |
| 264 | * We don't check return value here as we want to allow boards |
| 265 | * which have not been converted to use cpu uclass driver to |
| 266 | * boot. |
| 267 | */ |
| 268 | uclass_first_device(UCLASS_CPU, &dev); |
| 269 | } |
Bin Meng | 6e6f4ce | 2015-06-17 11:15:36 +0800 | [diff] [blame] | 270 | |
Simon Glass | bcb0c61 | 2015-04-29 22:26:01 -0600 | [diff] [blame] | 271 | return 0; |
| 272 | } |
| 273 | |
| 274 | int cpu_init_r(void) |
| 275 | { |
Simon Glass | ac643e0 | 2016-01-17 16:11:30 -0700 | [diff] [blame] | 276 | struct udevice *dev; |
| 277 | int ret; |
| 278 | |
Simon Glass | 526aabe | 2020-04-26 09:12:55 -0600 | [diff] [blame] | 279 | if (!ll_boot_init()) { |
| 280 | uclass_first_device(UCLASS_PCI, &dev); |
Simon Glass | ac643e0 | 2016-01-17 16:11:30 -0700 | [diff] [blame] | 281 | return 0; |
Simon Glass | 526aabe | 2020-04-26 09:12:55 -0600 | [diff] [blame] | 282 | } |
Simon Glass | ac643e0 | 2016-01-17 16:11:30 -0700 | [diff] [blame] | 283 | |
| 284 | ret = x86_init_cpus(); |
| 285 | if (ret) |
| 286 | return ret; |
| 287 | |
| 288 | /* |
| 289 | * Set up the northbridge, PCH and LPC if available. Note that these |
| 290 | * may have had some limited pre-relocation init if they were probed |
| 291 | * before relocation, but this is post relocation. |
| 292 | */ |
| 293 | uclass_first_device(UCLASS_NORTHBRIDGE, &dev); |
| 294 | uclass_first_device(UCLASS_PCH, &dev); |
| 295 | uclass_first_device(UCLASS_LPC, &dev); |
Simon Glass | e49ccea | 2015-08-04 12:34:00 -0600 | [diff] [blame] | 296 | |
Bin Meng | d8906c1 | 2016-06-08 05:07:38 -0700 | [diff] [blame] | 297 | /* Set up pin control if available */ |
| 298 | ret = syscon_get_by_driver_data(X86_SYSCON_PINCONF, &dev); |
| 299 | debug("%s, pinctrl=%p, ret=%d\n", __func__, dev, ret); |
| 300 | |
Simon Glass | e49ccea | 2015-08-04 12:34:00 -0600 | [diff] [blame] | 301 | return 0; |
Simon Glass | bcb0c61 | 2015-04-29 22:26:01 -0600 | [diff] [blame] | 302 | } |
Bin Meng | 0c2b7ee | 2016-05-11 07:45:00 -0700 | [diff] [blame] | 303 | |
| 304 | #ifndef CONFIG_EFI_STUB |
| 305 | int reserve_arch(void) |
| 306 | { |
Simon Glass | b95611f | 2020-07-16 21:22:30 -0600 | [diff] [blame] | 307 | struct udevice *itss; |
| 308 | int ret; |
| 309 | |
| 310 | if (IS_ENABLED(CONFIG_ENABLE_MRC_CACHE)) |
| 311 | mrccache_reserve(); |
Bin Meng | d19c907 | 2016-05-11 07:45:01 -0700 | [diff] [blame] | 312 | |
Simon Glass | 8bccbc5 | 2020-07-17 08:48:15 -0600 | [diff] [blame] | 313 | if (IS_ENABLED(CONFIG_SEABIOS)) |
| 314 | high_table_reserve(); |
Bin Meng | d19c907 | 2016-05-11 07:45:01 -0700 | [diff] [blame] | 315 | |
Simon Glass | ef5f5f6 | 2020-07-09 18:43:16 -0600 | [diff] [blame] | 316 | if (IS_ENABLED(CONFIG_HAVE_ACPI_RESUME)) { |
| 317 | acpi_s3_reserve(); |
Bin Meng | 5ae5aa9 | 2017-04-21 07:24:47 -0700 | [diff] [blame] | 318 | |
Simon Glass | ef5f5f6 | 2020-07-09 18:43:16 -0600 | [diff] [blame] | 319 | if (IS_ENABLED(CONFIG_HAVE_FSP)) { |
| 320 | /* |
| 321 | * Save stack address to CMOS so that at next S3 boot, |
Bin Meng | 58e2a35 | 2022-11-24 11:39:23 +0800 | [diff] [blame] | 322 | * we can use it as the stack address for fsp_continue() |
Simon Glass | ef5f5f6 | 2020-07-09 18:43:16 -0600 | [diff] [blame] | 323 | */ |
| 324 | fsp_save_s3_stack(); |
| 325 | } |
| 326 | } |
Simon Glass | b95611f | 2020-07-16 21:22:30 -0600 | [diff] [blame] | 327 | ret = irq_first_device_type(X86_IRQT_ITSS, &itss); |
| 328 | if (!ret) { |
| 329 | /* |
| 330 | * Snapshot the current GPIO IRQ polarities. FSP-S is about to |
| 331 | * run and will set a default policy that doesn't honour boards' |
| 332 | * requirements |
| 333 | */ |
| 334 | irq_snapshot_polarities(itss); |
| 335 | } |
Bin Meng | ba65808 | 2017-04-21 07:24:39 -0700 | [diff] [blame] | 336 | |
Bin Meng | d19c907 | 2016-05-11 07:45:01 -0700 | [diff] [blame] | 337 | return 0; |
Bin Meng | 0c2b7ee | 2016-05-11 07:45:00 -0700 | [diff] [blame] | 338 | } |
| 339 | #endif |
Simon Glass | 7ec0e7b | 2020-04-30 21:21:39 -0600 | [diff] [blame] | 340 | |
| 341 | long detect_coreboot_table_at(ulong start, ulong size) |
| 342 | { |
| 343 | u32 *ptr, *end; |
| 344 | |
| 345 | size /= 4; |
| 346 | for (ptr = (void *)start, end = ptr + size; ptr < end; ptr += 4) { |
| 347 | if (*ptr == 0x4f49424c) /* "LBIO" */ |
| 348 | return (long)ptr; |
| 349 | } |
| 350 | |
| 351 | return -ENOENT; |
| 352 | } |
| 353 | |
| 354 | long locate_coreboot_table(void) |
| 355 | { |
| 356 | long addr; |
| 357 | |
Simon Glass | 7a187a8 | 2023-05-04 16:54:55 -0600 | [diff] [blame] | 358 | /* We look for LBIO from addresses 1K-4K and again at 960KB */ |
| 359 | addr = detect_coreboot_table_at(0x400, 0xc00); |
Simon Glass | 7ec0e7b | 2020-04-30 21:21:39 -0600 | [diff] [blame] | 360 | if (addr < 0) |
| 361 | addr = detect_coreboot_table_at(0xf0000, 0x1000); |
| 362 | |
| 363 | return addr; |
| 364 | } |