Tom Rini | 10e4779 | 2018-05-06 17:58:06 -0400 | [diff] [blame] | 1 | // SPDX-License-Identifier: GPL-2.0+ |
wdenk | 591dda5 | 2002-11-18 00:14:45 +0000 | [diff] [blame] | 2 | /* |
Graeme Russ | 45fc1d8 | 2011-04-13 19:43:26 +1000 | [diff] [blame] | 3 | * (C) Copyright 2008-2011 |
| 4 | * Graeme Russ, <graeme.russ@gmail.com> |
| 5 | * |
wdenk | 591dda5 | 2002-11-18 00:14:45 +0000 | [diff] [blame] | 6 | * (C) Copyright 2002 |
Albert ARIBAUD | 60fbc8d | 2011-08-04 18:45:45 +0200 | [diff] [blame] | 7 | * Daniel Engström, Omicron Ceti AB, <daniel@omicron.se> |
wdenk | 57b2d80 | 2003-06-27 21:31:46 +0000 | [diff] [blame] | 8 | * |
wdenk | 591dda5 | 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 | 035c1d2 | 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 | 591dda5 | 2002-11-18 00:14:45 +0000 | [diff] [blame] | 19 | */ |
| 20 | |
Simon Glass | e50129a | 2020-11-04 09:57:18 -0700 | [diff] [blame] | 21 | #define LOG_CATEGORY UCLASS_CPU |
| 22 | |
wdenk | 591dda5 | 2002-11-18 00:14:45 +0000 | [diff] [blame] | 23 | #include <common.h> |
Simon Glass | 1ea9789 | 2020-05-10 11:40:00 -0600 | [diff] [blame] | 24 | #include <bootstage.h> |
wdenk | 591dda5 | 2002-11-18 00:14:45 +0000 | [diff] [blame] | 25 | #include <command.h> |
Simon Glass | 1d91ba7 | 2019-11-14 12:57:37 -0700 | [diff] [blame] | 26 | #include <cpu_func.h> |
Bin Meng | f967f9a | 2015-06-17 11:15:36 +0800 | [diff] [blame] | 27 | #include <dm.h> |
Simon Glass | 463fac2 | 2014-10-10 08:21:55 -0600 | [diff] [blame] | 28 | #include <errno.h> |
Simon Glass | da25eff | 2019-12-28 10:44:56 -0700 | [diff] [blame] | 29 | #include <init.h> |
Simon Glass | d89f193 | 2020-07-16 21:22:30 -0600 | [diff] [blame] | 30 | #include <irq.h> |
Simon Glass | 0f2af88 | 2020-05-10 11:40:05 -0600 | [diff] [blame] | 31 | #include <log.h> |
Simon Glass | 463fac2 | 2014-10-10 08:21:55 -0600 | [diff] [blame] | 32 | #include <malloc.h> |
Bin Meng | a455964 | 2016-06-08 05:07:38 -0700 | [diff] [blame] | 33 | #include <syscon.h> |
Simon Glass | 5046109 | 2020-04-08 16:57:35 -0600 | [diff] [blame] | 34 | #include <acpi/acpi_s3.h> |
Simon Glass | 858fed1 | 2020-04-08 16:57:36 -0600 | [diff] [blame] | 35 | #include <acpi/acpi_table.h> |
Bin Meng | ac63025 | 2018-07-18 21:42:15 -0700 | [diff] [blame] | 36 | #include <asm/acpi.h> |
Stefan Reinauer | 2acf848 | 2012-12-02 04:49:50 +0000 | [diff] [blame] | 37 | #include <asm/control_regs.h> |
Bin Meng | 1c9da37 | 2016-05-11 07:45:01 -0700 | [diff] [blame] | 38 | #include <asm/coreboot_tables.h> |
Simon Glass | 463fac2 | 2014-10-10 08:21:55 -0600 | [diff] [blame] | 39 | #include <asm/cpu.h> |
Bin Meng | f967f9a | 2015-06-17 11:15:36 +0800 | [diff] [blame] | 40 | #include <asm/lapic.h> |
Simon Glass | 8dda587 | 2016-03-11 22:07:11 -0700 | [diff] [blame] | 41 | #include <asm/microcode.h> |
Bin Meng | f967f9a | 2015-06-17 11:15:36 +0800 | [diff] [blame] | 42 | #include <asm/mp.h> |
Bin Meng | 1141fcf | 2016-05-11 07:45:00 -0700 | [diff] [blame] | 43 | #include <asm/mrccache.h> |
Bin Meng | c45a93b | 2015-07-06 16:31:30 +0800 | [diff] [blame] | 44 | #include <asm/msr.h> |
| 45 | #include <asm/mtrr.h> |
Simon Glass | 9f0afe7 | 2014-11-12 22:42:26 -0700 | [diff] [blame] | 46 | #include <asm/post.h> |
Graeme Russ | 25391d1 | 2011-02-12 15:11:30 +1100 | [diff] [blame] | 47 | #include <asm/processor.h> |
Graeme Russ | 93efcb2 | 2011-02-12 15:11:32 +1100 | [diff] [blame] | 48 | #include <asm/processor-flags.h> |
Graeme Russ | 278638d | 2008-12-07 10:29:02 +1100 | [diff] [blame] | 49 | #include <asm/interrupt.h> |
Bin Meng | f17cea6 | 2015-04-24 18:10:04 +0800 | [diff] [blame] | 50 | #include <asm/tables.h> |
Gabe Black | 6ed1888 | 2011-11-16 23:32:50 +0000 | [diff] [blame] | 51 | #include <linux/compiler.h> |
wdenk | 591dda5 | 2002-11-18 00:14:45 +0000 | [diff] [blame] | 52 | |
Bin Meng | 035c1d2 | 2014-11-09 22:18:56 +0800 | [diff] [blame] | 53 | DECLARE_GLOBAL_DATA_PTR; |
| 54 | |
Simon Glass | dd45a7a | 2019-12-06 21:41:51 -0700 | [diff] [blame] | 55 | #ifndef CONFIG_TPL_BUILD |
Bin Meng | 035c1d2 | 2014-11-09 22:18:56 +0800 | [diff] [blame] | 56 | static const char *const x86_vendor_name[] = { |
| 57 | [X86_VENDOR_INTEL] = "Intel", |
| 58 | [X86_VENDOR_CYRIX] = "Cyrix", |
| 59 | [X86_VENDOR_AMD] = "AMD", |
| 60 | [X86_VENDOR_UMC] = "UMC", |
| 61 | [X86_VENDOR_NEXGEN] = "NexGen", |
| 62 | [X86_VENDOR_CENTAUR] = "Centaur", |
| 63 | [X86_VENDOR_RISE] = "Rise", |
| 64 | [X86_VENDOR_TRANSMETA] = "Transmeta", |
| 65 | [X86_VENDOR_NSC] = "NSC", |
| 66 | [X86_VENDOR_SIS] = "SiS", |
| 67 | }; |
Simon Glass | dd45a7a | 2019-12-06 21:41:51 -0700 | [diff] [blame] | 68 | #endif |
Bin Meng | 035c1d2 | 2014-11-09 22:18:56 +0800 | [diff] [blame] | 69 | |
Gabe Black | 846d08e | 2012-10-20 12:33:10 +0000 | [diff] [blame] | 70 | int __weak x86_cleanup_before_linux(void) |
| 71 | { |
Simon Glass | 32d5695 | 2020-07-17 08:48:20 -0600 | [diff] [blame] | 72 | int ret; |
| 73 | |
| 74 | ret = mp_park_aps(); |
| 75 | if (ret) |
| 76 | return log_msg_ret("park", ret); |
Simon Glass | 5322d62 | 2015-03-02 17:04:37 -0700 | [diff] [blame] | 77 | bootstage_stash((void *)CONFIG_BOOTSTAGE_STASH_ADDR, |
Simon Glass | bcc28da | 2013-04-17 16:13:35 +0000 | [diff] [blame] | 78 | CONFIG_BOOTSTAGE_STASH_SIZE); |
Simon Glass | bcc28da | 2013-04-17 16:13:35 +0000 | [diff] [blame] | 79 | |
Gabe Black | 846d08e | 2012-10-20 12:33:10 +0000 | [diff] [blame] | 80 | return 0; |
| 81 | } |
| 82 | |
Graeme Russ | 6e25600 | 2011-12-27 22:46:43 +1100 | [diff] [blame] | 83 | int x86_init_cache(void) |
| 84 | { |
| 85 | enable_caches(); |
| 86 | |
wdenk | 591dda5 | 2002-11-18 00:14:45 +0000 | [diff] [blame] | 87 | return 0; |
| 88 | } |
Graeme Russ | 6e25600 | 2011-12-27 22:46:43 +1100 | [diff] [blame] | 89 | int init_cache(void) __attribute__((weak, alias("x86_init_cache"))); |
wdenk | 591dda5 | 2002-11-18 00:14:45 +0000 | [diff] [blame] | 90 | |
Graeme Russ | fdee8b1 | 2011-11-08 02:33:13 +0000 | [diff] [blame] | 91 | void flush_cache(unsigned long dummy1, unsigned long dummy2) |
wdenk | 591dda5 | 2002-11-18 00:14:45 +0000 | [diff] [blame] | 92 | { |
| 93 | asm("wbinvd\n"); |
wdenk | 591dda5 | 2002-11-18 00:14:45 +0000 | [diff] [blame] | 94 | } |
Graeme Russ | 278638d | 2008-12-07 10:29:02 +1100 | [diff] [blame] | 95 | |
Stefan Reinauer | 2acf848 | 2012-12-02 04:49:50 +0000 | [diff] [blame] | 96 | /* Define these functions to allow ehch-hcd to function */ |
| 97 | void flush_dcache_range(unsigned long start, unsigned long stop) |
| 98 | { |
| 99 | } |
| 100 | |
| 101 | void invalidate_dcache_range(unsigned long start, unsigned long stop) |
| 102 | { |
| 103 | } |
Simon Glass | 2baa3bb | 2013-02-28 19:26:11 +0000 | [diff] [blame] | 104 | |
| 105 | void dcache_enable(void) |
| 106 | { |
| 107 | enable_caches(); |
| 108 | } |
| 109 | |
| 110 | void dcache_disable(void) |
| 111 | { |
| 112 | disable_caches(); |
| 113 | } |
| 114 | |
| 115 | void icache_enable(void) |
| 116 | { |
| 117 | } |
| 118 | |
| 119 | void icache_disable(void) |
| 120 | { |
| 121 | } |
| 122 | |
| 123 | int icache_status(void) |
| 124 | { |
| 125 | return 1; |
| 126 | } |
Simon Glass | d8d9fec | 2014-10-10 08:21:52 -0600 | [diff] [blame] | 127 | |
Simon Glass | dd45a7a | 2019-12-06 21:41:51 -0700 | [diff] [blame] | 128 | #ifndef CONFIG_TPL_BUILD |
Bin Meng | 035c1d2 | 2014-11-09 22:18:56 +0800 | [diff] [blame] | 129 | const char *cpu_vendor_name(int vendor) |
| 130 | { |
| 131 | const char *name; |
| 132 | name = "<invalid cpu vendor>"; |
Heinrich Schuchardt | 5e5fe80 | 2017-11-20 19:45:56 +0100 | [diff] [blame] | 133 | if (vendor < ARRAY_SIZE(x86_vendor_name) && |
| 134 | x86_vendor_name[vendor]) |
Bin Meng | 035c1d2 | 2014-11-09 22:18:56 +0800 | [diff] [blame] | 135 | name = x86_vendor_name[vendor]; |
Simon Glass | 2f2efbc | 2014-10-10 08:21:54 -0600 | [diff] [blame] | 136 | |
Bin Meng | 035c1d2 | 2014-11-09 22:18:56 +0800 | [diff] [blame] | 137 | return name; |
Simon Glass | 2f2efbc | 2014-10-10 08:21:54 -0600 | [diff] [blame] | 138 | } |
Simon Glass | dd45a7a | 2019-12-06 21:41:51 -0700 | [diff] [blame] | 139 | #endif |
Simon Glass | 2f2efbc | 2014-10-10 08:21:54 -0600 | [diff] [blame] | 140 | |
Simon Glass | 543bb14 | 2014-11-10 18:00:26 -0700 | [diff] [blame] | 141 | char *cpu_get_name(char *name) |
Simon Glass | 2f2efbc | 2014-10-10 08:21:54 -0600 | [diff] [blame] | 142 | { |
Simon Glass | 543bb14 | 2014-11-10 18:00:26 -0700 | [diff] [blame] | 143 | unsigned int *name_as_ints = (unsigned int *)name; |
Bin Meng | 035c1d2 | 2014-11-09 22:18:56 +0800 | [diff] [blame] | 144 | struct cpuid_result regs; |
Simon Glass | 543bb14 | 2014-11-10 18:00:26 -0700 | [diff] [blame] | 145 | char *ptr; |
Bin Meng | 035c1d2 | 2014-11-09 22:18:56 +0800 | [diff] [blame] | 146 | int i; |
Simon Glass | 2f2efbc | 2014-10-10 08:21:54 -0600 | [diff] [blame] | 147 | |
Simon Glass | 543bb14 | 2014-11-10 18:00:26 -0700 | [diff] [blame] | 148 | /* This bit adds up to 48 bytes */ |
Bin Meng | 035c1d2 | 2014-11-09 22:18:56 +0800 | [diff] [blame] | 149 | for (i = 0; i < 3; i++) { |
| 150 | regs = cpuid(0x80000002 + i); |
| 151 | name_as_ints[i * 4 + 0] = regs.eax; |
| 152 | name_as_ints[i * 4 + 1] = regs.ebx; |
| 153 | name_as_ints[i * 4 + 2] = regs.ecx; |
| 154 | name_as_ints[i * 4 + 3] = regs.edx; |
| 155 | } |
Simon Glass | 543bb14 | 2014-11-10 18:00:26 -0700 | [diff] [blame] | 156 | name[CPU_MAX_NAME_LEN - 1] = '\0'; |
Simon Glass | 2f2efbc | 2014-10-10 08:21:54 -0600 | [diff] [blame] | 157 | |
Bin Meng | 035c1d2 | 2014-11-09 22:18:56 +0800 | [diff] [blame] | 158 | /* Skip leading spaces. */ |
Simon Glass | 543bb14 | 2014-11-10 18:00:26 -0700 | [diff] [blame] | 159 | ptr = name; |
| 160 | while (*ptr == ' ') |
| 161 | ptr++; |
Bin Meng | 035c1d2 | 2014-11-09 22:18:56 +0800 | [diff] [blame] | 162 | |
Simon Glass | 543bb14 | 2014-11-10 18:00:26 -0700 | [diff] [blame] | 163 | return ptr; |
Simon Glass | 2f2efbc | 2014-10-10 08:21:54 -0600 | [diff] [blame] | 164 | } |
| 165 | |
Simon Glass | 543bb14 | 2014-11-10 18:00:26 -0700 | [diff] [blame] | 166 | int default_print_cpuinfo(void) |
Simon Glass | 2f2efbc | 2014-10-10 08:21:54 -0600 | [diff] [blame] | 167 | { |
Bin Meng | 035c1d2 | 2014-11-09 22:18:56 +0800 | [diff] [blame] | 168 | printf("CPU: %s, vendor %s, device %xh\n", |
| 169 | cpu_has_64bit() ? "x86_64" : "x86", |
| 170 | cpu_vendor_name(gd->arch.x86_vendor), gd->arch.x86_device); |
Simon Glass | 2f2efbc | 2014-10-10 08:21:54 -0600 | [diff] [blame] | 171 | |
Simon Glass | e6ad202 | 2020-07-09 18:43:16 -0600 | [diff] [blame] | 172 | if (IS_ENABLED(CONFIG_HAVE_ACPI_RESUME)) { |
| 173 | debug("ACPI previous sleep state: %s\n", |
| 174 | acpi_ss_string(gd->arch.prev_sleep_state)); |
| 175 | } |
Bin Meng | ef61f77 | 2017-04-21 07:24:32 -0700 | [diff] [blame] | 176 | |
Simon Glass | 2f2efbc | 2014-10-10 08:21:54 -0600 | [diff] [blame] | 177 | return 0; |
| 178 | } |
Simon Glass | 463fac2 | 2014-10-10 08:21:55 -0600 | [diff] [blame] | 179 | |
Simon Glass | 9f0afe7 | 2014-11-12 22:42:26 -0700 | [diff] [blame] | 180 | void show_boot_progress(int val) |
| 181 | { |
Simon Glass | 9f0afe7 | 2014-11-12 22:42:26 -0700 | [diff] [blame] | 182 | outb(val, POST_PORT); |
| 183 | } |
Bin Meng | f17cea6 | 2015-04-24 18:10:04 +0800 | [diff] [blame] | 184 | |
Bin Meng | db59dd3 | 2018-06-17 05:57:53 -0700 | [diff] [blame] | 185 | #if !defined(CONFIG_SYS_COREBOOT) && !defined(CONFIG_EFI_STUB) |
Bin Meng | 2f8560c | 2016-05-11 07:44:56 -0700 | [diff] [blame] | 186 | /* |
Simon Glass | 75ece5f | 2020-07-16 21:22:38 -0600 | [diff] [blame] | 187 | * Implement a weak default function for boards that need to do some final init |
| 188 | * before the system is ready. |
Bin Meng | 2f8560c | 2016-05-11 07:44:56 -0700 | [diff] [blame] | 189 | */ |
Simon Glass | 75ece5f | 2020-07-16 21:22:38 -0600 | [diff] [blame] | 190 | __weak void board_final_init(void) |
Bin Meng | 2f8560c | 2016-05-11 07:44:56 -0700 | [diff] [blame] | 191 | { |
| 192 | } |
| 193 | |
Simon Glass | ad7bb30 | 2020-09-22 12:45:28 -0600 | [diff] [blame] | 194 | /* |
| 195 | * Implement a weak default function for boards that need to do some final |
| 196 | * processing before booting the OS. |
| 197 | */ |
| 198 | __weak void board_final_cleanup(void) |
| 199 | { |
| 200 | } |
| 201 | |
Bin Meng | f17cea6 | 2015-04-24 18:10:04 +0800 | [diff] [blame] | 202 | int last_stage_init(void) |
| 203 | { |
Bin Meng | 467f411 | 2018-07-18 21:42:16 -0700 | [diff] [blame] | 204 | struct acpi_fadt __maybe_unused *fadt; |
Simon Glass | e50129a | 2020-11-04 09:57:18 -0700 | [diff] [blame] | 205 | int ret; |
Bin Meng | 467f411 | 2018-07-18 21:42:16 -0700 | [diff] [blame] | 206 | |
Simon Glass | 75ece5f | 2020-07-16 21:22:38 -0600 | [diff] [blame] | 207 | board_final_init(); |
Bin Meng | 159661d | 2017-04-21 07:24:41 -0700 | [diff] [blame] | 208 | |
Simon Glass | e6ad202 | 2020-07-09 18:43:16 -0600 | [diff] [blame] | 209 | if (IS_ENABLED(CONFIG_HAVE_ACPI_RESUME)) { |
| 210 | fadt = acpi_find_fadt(); |
Bin Meng | 710d215 | 2017-04-21 07:24:37 -0700 | [diff] [blame] | 211 | |
Simon Glass | e6ad202 | 2020-07-09 18:43:16 -0600 | [diff] [blame] | 212 | if (fadt && gd->arch.prev_sleep_state == ACPI_S3) |
| 213 | acpi_resume(fadt); |
| 214 | } |
Bin Meng | 710d215 | 2017-04-21 07:24:37 -0700 | [diff] [blame] | 215 | |
Simon Glass | e50129a | 2020-11-04 09:57:18 -0700 | [diff] [blame] | 216 | ret = write_tables(); |
| 217 | if (ret) { |
| 218 | log_err("Failed to write tables\n"); |
| 219 | return log_msg_ret("table", ret); |
| 220 | } |
Bin Meng | f17cea6 | 2015-04-24 18:10:04 +0800 | [diff] [blame] | 221 | |
Simon Glass | 84163ae | 2020-07-17 08:48:15 -0600 | [diff] [blame] | 222 | if (IS_ENABLED(CONFIG_GENERATE_ACPI_TABLE)) { |
| 223 | fadt = acpi_find_fadt(); |
Bin Meng | 467f411 | 2018-07-18 21:42:16 -0700 | [diff] [blame] | 224 | |
Simon Glass | 84163ae | 2020-07-17 08:48:15 -0600 | [diff] [blame] | 225 | /* Don't touch ACPI hardware on HW reduced platforms */ |
| 226 | if (fadt && !(fadt->flags & ACPI_FADT_HW_REDUCED_ACPI)) { |
| 227 | /* |
| 228 | * Other than waiting for OSPM to request us to switch |
| 229 | * to ACPI * mode, do it by ourselves, since SMI will |
| 230 | * not be triggered. |
| 231 | */ |
| 232 | enter_acpi_mode(fadt->pm1a_cnt_blk); |
| 233 | } |
Bin Meng | 467f411 | 2018-07-18 21:42:16 -0700 | [diff] [blame] | 234 | } |
Bin Meng | 467f411 | 2018-07-18 21:42:16 -0700 | [diff] [blame] | 235 | |
Simon Glass | ad7bb30 | 2020-09-22 12:45:28 -0600 | [diff] [blame] | 236 | /* |
| 237 | * TODO(sjg@chromium.org): Move this to bootm_announce_and_cleanup() |
| 238 | * once APL FSP-S at 0x200000 does not overlap with the bzimage at |
| 239 | * 0x100000. |
| 240 | */ |
| 241 | board_final_cleanup(); |
| 242 | |
Bin Meng | f17cea6 | 2015-04-24 18:10:04 +0800 | [diff] [blame] | 243 | return 0; |
| 244 | } |
| 245 | #endif |
Simon Glass | 02fe5e6 | 2015-04-29 22:26:01 -0600 | [diff] [blame] | 246 | |
Simon Glass | 0aa7bfa | 2016-01-17 16:11:28 -0700 | [diff] [blame] | 247 | static int x86_init_cpus(void) |
Simon Glass | 02fe5e6 | 2015-04-29 22:26:01 -0600 | [diff] [blame] | 248 | { |
Simon Glass | 84163ae | 2020-07-17 08:48:15 -0600 | [diff] [blame] | 249 | if (IS_ENABLED(CONFIG_SMP)) { |
| 250 | debug("Init additional CPUs\n"); |
| 251 | x86_mp_init(); |
| 252 | } else { |
| 253 | struct udevice *dev; |
Bin Meng | 8972776 | 2015-07-22 01:21:12 -0700 | [diff] [blame] | 254 | |
Simon Glass | 84163ae | 2020-07-17 08:48:15 -0600 | [diff] [blame] | 255 | /* |
| 256 | * This causes the cpu-x86 driver to be probed. |
| 257 | * We don't check return value here as we want to allow boards |
| 258 | * which have not been converted to use cpu uclass driver to |
| 259 | * boot. |
| 260 | */ |
| 261 | uclass_first_device(UCLASS_CPU, &dev); |
| 262 | } |
Bin Meng | f967f9a | 2015-06-17 11:15:36 +0800 | [diff] [blame] | 263 | |
Simon Glass | 02fe5e6 | 2015-04-29 22:26:01 -0600 | [diff] [blame] | 264 | return 0; |
| 265 | } |
| 266 | |
| 267 | int cpu_init_r(void) |
| 268 | { |
Simon Glass | 00431f6 | 2016-01-17 16:11:30 -0700 | [diff] [blame] | 269 | struct udevice *dev; |
| 270 | int ret; |
| 271 | |
Simon Glass | 8b8e754 | 2020-04-26 09:12:55 -0600 | [diff] [blame] | 272 | if (!ll_boot_init()) { |
| 273 | uclass_first_device(UCLASS_PCI, &dev); |
Simon Glass | 00431f6 | 2016-01-17 16:11:30 -0700 | [diff] [blame] | 274 | return 0; |
Simon Glass | 8b8e754 | 2020-04-26 09:12:55 -0600 | [diff] [blame] | 275 | } |
Simon Glass | 00431f6 | 2016-01-17 16:11:30 -0700 | [diff] [blame] | 276 | |
| 277 | ret = x86_init_cpus(); |
| 278 | if (ret) |
| 279 | return ret; |
| 280 | |
| 281 | /* |
| 282 | * Set up the northbridge, PCH and LPC if available. Note that these |
| 283 | * may have had some limited pre-relocation init if they were probed |
| 284 | * before relocation, but this is post relocation. |
| 285 | */ |
| 286 | uclass_first_device(UCLASS_NORTHBRIDGE, &dev); |
| 287 | uclass_first_device(UCLASS_PCH, &dev); |
| 288 | uclass_first_device(UCLASS_LPC, &dev); |
Simon Glass | 2b6d80b | 2015-08-04 12:34:00 -0600 | [diff] [blame] | 289 | |
Bin Meng | a455964 | 2016-06-08 05:07:38 -0700 | [diff] [blame] | 290 | /* Set up pin control if available */ |
| 291 | ret = syscon_get_by_driver_data(X86_SYSCON_PINCONF, &dev); |
| 292 | debug("%s, pinctrl=%p, ret=%d\n", __func__, dev, ret); |
| 293 | |
Simon Glass | 2b6d80b | 2015-08-04 12:34:00 -0600 | [diff] [blame] | 294 | return 0; |
Simon Glass | 02fe5e6 | 2015-04-29 22:26:01 -0600 | [diff] [blame] | 295 | } |
Bin Meng | 1141fcf | 2016-05-11 07:45:00 -0700 | [diff] [blame] | 296 | |
| 297 | #ifndef CONFIG_EFI_STUB |
| 298 | int reserve_arch(void) |
| 299 | { |
Simon Glass | d89f193 | 2020-07-16 21:22:30 -0600 | [diff] [blame] | 300 | struct udevice *itss; |
| 301 | int ret; |
| 302 | |
| 303 | if (IS_ENABLED(CONFIG_ENABLE_MRC_CACHE)) |
| 304 | mrccache_reserve(); |
Bin Meng | 1c9da37 | 2016-05-11 07:45:01 -0700 | [diff] [blame] | 305 | |
Simon Glass | 84163ae | 2020-07-17 08:48:15 -0600 | [diff] [blame] | 306 | if (IS_ENABLED(CONFIG_SEABIOS)) |
| 307 | high_table_reserve(); |
Bin Meng | 1c9da37 | 2016-05-11 07:45:01 -0700 | [diff] [blame] | 308 | |
Simon Glass | e6ad202 | 2020-07-09 18:43:16 -0600 | [diff] [blame] | 309 | if (IS_ENABLED(CONFIG_HAVE_ACPI_RESUME)) { |
| 310 | acpi_s3_reserve(); |
Bin Meng | 353f5cb | 2017-04-21 07:24:47 -0700 | [diff] [blame] | 311 | |
Simon Glass | e6ad202 | 2020-07-09 18:43:16 -0600 | [diff] [blame] | 312 | if (IS_ENABLED(CONFIG_HAVE_FSP)) { |
| 313 | /* |
| 314 | * Save stack address to CMOS so that at next S3 boot, |
| 315 | * we can use it as the stack address for fsp_contiue() |
| 316 | */ |
| 317 | fsp_save_s3_stack(); |
| 318 | } |
| 319 | } |
Simon Glass | d89f193 | 2020-07-16 21:22:30 -0600 | [diff] [blame] | 320 | ret = irq_first_device_type(X86_IRQT_ITSS, &itss); |
| 321 | if (!ret) { |
| 322 | /* |
| 323 | * Snapshot the current GPIO IRQ polarities. FSP-S is about to |
| 324 | * run and will set a default policy that doesn't honour boards' |
| 325 | * requirements |
| 326 | */ |
| 327 | irq_snapshot_polarities(itss); |
| 328 | } |
Bin Meng | cf20030 | 2017-04-21 07:24:39 -0700 | [diff] [blame] | 329 | |
Bin Meng | 1c9da37 | 2016-05-11 07:45:01 -0700 | [diff] [blame] | 330 | return 0; |
Bin Meng | 1141fcf | 2016-05-11 07:45:00 -0700 | [diff] [blame] | 331 | } |
| 332 | #endif |
Simon Glass | 46f4c58 | 2020-04-30 21:21:39 -0600 | [diff] [blame] | 333 | |
| 334 | long detect_coreboot_table_at(ulong start, ulong size) |
| 335 | { |
| 336 | u32 *ptr, *end; |
| 337 | |
| 338 | size /= 4; |
| 339 | for (ptr = (void *)start, end = ptr + size; ptr < end; ptr += 4) { |
| 340 | if (*ptr == 0x4f49424c) /* "LBIO" */ |
| 341 | return (long)ptr; |
| 342 | } |
| 343 | |
| 344 | return -ENOENT; |
| 345 | } |
| 346 | |
| 347 | long locate_coreboot_table(void) |
| 348 | { |
| 349 | long addr; |
| 350 | |
| 351 | /* We look for LBIO in the first 4K of RAM and again at 960KB */ |
| 352 | addr = detect_coreboot_table_at(0x0, 0x1000); |
| 353 | if (addr < 0) |
| 354 | addr = detect_coreboot_table_at(0xf0000, 0x1000); |
| 355 | |
| 356 | return addr; |
| 357 | } |