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 | |
wdenk | 2262cfe | 2002-11-18 00:14:45 +0000 | [diff] [blame] | 21 | #include <common.h> |
| 22 | #include <command.h> |
Bin Meng | 6e6f4ce | 2015-06-17 11:15:36 +0800 | [diff] [blame] | 23 | #include <dm.h> |
Simon Glass | 200182a | 2014-10-10 08:21:55 -0600 | [diff] [blame] | 24 | #include <errno.h> |
| 25 | #include <malloc.h> |
Bin Meng | d8906c1 | 2016-06-08 05:07:38 -0700 | [diff] [blame] | 26 | #include <syscon.h> |
Bin Meng | a0609a8 | 2018-07-18 21:42:15 -0700 | [diff] [blame^] | 27 | #include <asm/acpi.h> |
Bin Meng | b727961 | 2017-04-21 07:24:32 -0700 | [diff] [blame] | 28 | #include <asm/acpi_s3.h> |
Bin Meng | 3a34cae | 2017-04-21 07:24:37 -0700 | [diff] [blame] | 29 | #include <asm/acpi_table.h> |
Stefan Reinauer | 095593c | 2012-12-02 04:49:50 +0000 | [diff] [blame] | 30 | #include <asm/control_regs.h> |
Bin Meng | d19c907 | 2016-05-11 07:45:01 -0700 | [diff] [blame] | 31 | #include <asm/coreboot_tables.h> |
Simon Glass | 200182a | 2014-10-10 08:21:55 -0600 | [diff] [blame] | 32 | #include <asm/cpu.h> |
Bin Meng | 6e6f4ce | 2015-06-17 11:15:36 +0800 | [diff] [blame] | 33 | #include <asm/lapic.h> |
Simon Glass | e77b62e | 2016-03-11 22:07:11 -0700 | [diff] [blame] | 34 | #include <asm/microcode.h> |
Bin Meng | 6e6f4ce | 2015-06-17 11:15:36 +0800 | [diff] [blame] | 35 | #include <asm/mp.h> |
Bin Meng | 0c2b7ee | 2016-05-11 07:45:00 -0700 | [diff] [blame] | 36 | #include <asm/mrccache.h> |
Bin Meng | 43dd22f | 2015-07-06 16:31:30 +0800 | [diff] [blame] | 37 | #include <asm/msr.h> |
| 38 | #include <asm/mtrr.h> |
Simon Glass | a49e3c7 | 2014-11-12 22:42:26 -0700 | [diff] [blame] | 39 | #include <asm/post.h> |
Graeme Russ | c53fd2b | 2011-02-12 15:11:30 +1100 | [diff] [blame] | 40 | #include <asm/processor.h> |
Graeme Russ | 0c24c9c | 2011-02-12 15:11:32 +1100 | [diff] [blame] | 41 | #include <asm/processor-flags.h> |
Graeme Russ | 3f5f18d | 2008-12-07 10:29:02 +1100 | [diff] [blame] | 42 | #include <asm/interrupt.h> |
Bin Meng | 5e2400e | 2015-04-24 18:10:04 +0800 | [diff] [blame] | 43 | #include <asm/tables.h> |
Gabe Black | 60a9b6b | 2011-11-16 23:32:50 +0000 | [diff] [blame] | 44 | #include <linux/compiler.h> |
wdenk | 2262cfe | 2002-11-18 00:14:45 +0000 | [diff] [blame] | 45 | |
Bin Meng | 52f952b | 2014-11-09 22:18:56 +0800 | [diff] [blame] | 46 | DECLARE_GLOBAL_DATA_PTR; |
| 47 | |
Bin Meng | 52f952b | 2014-11-09 22:18:56 +0800 | [diff] [blame] | 48 | static const char *const x86_vendor_name[] = { |
| 49 | [X86_VENDOR_INTEL] = "Intel", |
| 50 | [X86_VENDOR_CYRIX] = "Cyrix", |
| 51 | [X86_VENDOR_AMD] = "AMD", |
| 52 | [X86_VENDOR_UMC] = "UMC", |
| 53 | [X86_VENDOR_NEXGEN] = "NexGen", |
| 54 | [X86_VENDOR_CENTAUR] = "Centaur", |
| 55 | [X86_VENDOR_RISE] = "Rise", |
| 56 | [X86_VENDOR_TRANSMETA] = "Transmeta", |
| 57 | [X86_VENDOR_NSC] = "NSC", |
| 58 | [X86_VENDOR_SIS] = "SiS", |
| 59 | }; |
| 60 | |
Gabe Black | f30fc4d | 2012-10-20 12:33:10 +0000 | [diff] [blame] | 61 | int __weak x86_cleanup_before_linux(void) |
| 62 | { |
Simon Glass | 7949703 | 2013-04-17 16:13:35 +0000 | [diff] [blame] | 63 | #ifdef CONFIG_BOOTSTAGE_STASH |
Simon Glass | ee2b243 | 2015-03-02 17:04:37 -0700 | [diff] [blame] | 64 | bootstage_stash((void *)CONFIG_BOOTSTAGE_STASH_ADDR, |
Simon Glass | 7949703 | 2013-04-17 16:13:35 +0000 | [diff] [blame] | 65 | CONFIG_BOOTSTAGE_STASH_SIZE); |
| 66 | #endif |
| 67 | |
Gabe Black | f30fc4d | 2012-10-20 12:33:10 +0000 | [diff] [blame] | 68 | return 0; |
| 69 | } |
| 70 | |
Graeme Russ | d653244 | 2011-12-27 22:46:43 +1100 | [diff] [blame] | 71 | int x86_init_cache(void) |
| 72 | { |
| 73 | enable_caches(); |
| 74 | |
wdenk | 2262cfe | 2002-11-18 00:14:45 +0000 | [diff] [blame] | 75 | return 0; |
| 76 | } |
Graeme Russ | d653244 | 2011-12-27 22:46:43 +1100 | [diff] [blame] | 77 | int init_cache(void) __attribute__((weak, alias("x86_init_cache"))); |
wdenk | 2262cfe | 2002-11-18 00:14:45 +0000 | [diff] [blame] | 78 | |
Graeme Russ | 717979f | 2011-11-08 02:33:13 +0000 | [diff] [blame] | 79 | void flush_cache(unsigned long dummy1, unsigned long dummy2) |
wdenk | 2262cfe | 2002-11-18 00:14:45 +0000 | [diff] [blame] | 80 | { |
| 81 | asm("wbinvd\n"); |
wdenk | 2262cfe | 2002-11-18 00:14:45 +0000 | [diff] [blame] | 82 | } |
Graeme Russ | 3f5f18d | 2008-12-07 10:29:02 +1100 | [diff] [blame] | 83 | |
Stefan Reinauer | 095593c | 2012-12-02 04:49:50 +0000 | [diff] [blame] | 84 | /* Define these functions to allow ehch-hcd to function */ |
| 85 | void flush_dcache_range(unsigned long start, unsigned long stop) |
| 86 | { |
| 87 | } |
| 88 | |
| 89 | void invalidate_dcache_range(unsigned long start, unsigned long stop) |
| 90 | { |
| 91 | } |
Simon Glass | 8937140 | 2013-02-28 19:26:11 +0000 | [diff] [blame] | 92 | |
| 93 | void dcache_enable(void) |
| 94 | { |
| 95 | enable_caches(); |
| 96 | } |
| 97 | |
| 98 | void dcache_disable(void) |
| 99 | { |
| 100 | disable_caches(); |
| 101 | } |
| 102 | |
| 103 | void icache_enable(void) |
| 104 | { |
| 105 | } |
| 106 | |
| 107 | void icache_disable(void) |
| 108 | { |
| 109 | } |
| 110 | |
| 111 | int icache_status(void) |
| 112 | { |
| 113 | return 1; |
| 114 | } |
Simon Glass | 7bddac9 | 2014-10-10 08:21:52 -0600 | [diff] [blame] | 115 | |
Bin Meng | 52f952b | 2014-11-09 22:18:56 +0800 | [diff] [blame] | 116 | const char *cpu_vendor_name(int vendor) |
| 117 | { |
| 118 | const char *name; |
| 119 | name = "<invalid cpu vendor>"; |
Heinrich Schuchardt | 39670c3 | 2017-11-20 19:45:56 +0100 | [diff] [blame] | 120 | if (vendor < ARRAY_SIZE(x86_vendor_name) && |
| 121 | x86_vendor_name[vendor]) |
Bin Meng | 52f952b | 2014-11-09 22:18:56 +0800 | [diff] [blame] | 122 | name = x86_vendor_name[vendor]; |
| 123 | |
| 124 | return name; |
| 125 | } |
| 126 | |
Simon Glass | 727c1a9 | 2014-11-10 18:00:26 -0700 | [diff] [blame] | 127 | char *cpu_get_name(char *name) |
Bin Meng | 52f952b | 2014-11-09 22:18:56 +0800 | [diff] [blame] | 128 | { |
Simon Glass | 727c1a9 | 2014-11-10 18:00:26 -0700 | [diff] [blame] | 129 | unsigned int *name_as_ints = (unsigned int *)name; |
Bin Meng | 52f952b | 2014-11-09 22:18:56 +0800 | [diff] [blame] | 130 | struct cpuid_result regs; |
Simon Glass | 727c1a9 | 2014-11-10 18:00:26 -0700 | [diff] [blame] | 131 | char *ptr; |
Bin Meng | 52f952b | 2014-11-09 22:18:56 +0800 | [diff] [blame] | 132 | int i; |
| 133 | |
Simon Glass | 727c1a9 | 2014-11-10 18:00:26 -0700 | [diff] [blame] | 134 | /* This bit adds up to 48 bytes */ |
Bin Meng | 52f952b | 2014-11-09 22:18:56 +0800 | [diff] [blame] | 135 | for (i = 0; i < 3; i++) { |
| 136 | regs = cpuid(0x80000002 + i); |
| 137 | name_as_ints[i * 4 + 0] = regs.eax; |
| 138 | name_as_ints[i * 4 + 1] = regs.ebx; |
| 139 | name_as_ints[i * 4 + 2] = regs.ecx; |
| 140 | name_as_ints[i * 4 + 3] = regs.edx; |
| 141 | } |
Simon Glass | 727c1a9 | 2014-11-10 18:00:26 -0700 | [diff] [blame] | 142 | name[CPU_MAX_NAME_LEN - 1] = '\0'; |
Bin Meng | 52f952b | 2014-11-09 22:18:56 +0800 | [diff] [blame] | 143 | |
| 144 | /* Skip leading spaces. */ |
Simon Glass | 727c1a9 | 2014-11-10 18:00:26 -0700 | [diff] [blame] | 145 | ptr = name; |
| 146 | while (*ptr == ' ') |
| 147 | ptr++; |
Bin Meng | 52f952b | 2014-11-09 22:18:56 +0800 | [diff] [blame] | 148 | |
Simon Glass | 727c1a9 | 2014-11-10 18:00:26 -0700 | [diff] [blame] | 149 | return ptr; |
Bin Meng | 52f952b | 2014-11-09 22:18:56 +0800 | [diff] [blame] | 150 | } |
| 151 | |
Simon Glass | 727c1a9 | 2014-11-10 18:00:26 -0700 | [diff] [blame] | 152 | int default_print_cpuinfo(void) |
Simon Glass | 92cc94a | 2014-10-10 08:21:54 -0600 | [diff] [blame] | 153 | { |
Bin Meng | 52f952b | 2014-11-09 22:18:56 +0800 | [diff] [blame] | 154 | printf("CPU: %s, vendor %s, device %xh\n", |
| 155 | cpu_has_64bit() ? "x86_64" : "x86", |
| 156 | cpu_vendor_name(gd->arch.x86_vendor), gd->arch.x86_device); |
Simon Glass | 92cc94a | 2014-10-10 08:21:54 -0600 | [diff] [blame] | 157 | |
Bin Meng | b727961 | 2017-04-21 07:24:32 -0700 | [diff] [blame] | 158 | #ifdef CONFIG_HAVE_ACPI_RESUME |
| 159 | debug("ACPI previous sleep state: %s\n", |
| 160 | acpi_ss_string(gd->arch.prev_sleep_state)); |
| 161 | #endif |
| 162 | |
Simon Glass | 92cc94a | 2014-10-10 08:21:54 -0600 | [diff] [blame] | 163 | return 0; |
| 164 | } |
Simon Glass | 200182a | 2014-10-10 08:21:55 -0600 | [diff] [blame] | 165 | |
Simon Glass | a49e3c7 | 2014-11-12 22:42:26 -0700 | [diff] [blame] | 166 | void show_boot_progress(int val) |
| 167 | { |
Simon Glass | a49e3c7 | 2014-11-12 22:42:26 -0700 | [diff] [blame] | 168 | outb(val, POST_PORT); |
| 169 | } |
Bin Meng | 5e2400e | 2015-04-24 18:10:04 +0800 | [diff] [blame] | 170 | |
Bin Meng | 1ab2c01 | 2018-06-17 05:57:53 -0700 | [diff] [blame] | 171 | #if !defined(CONFIG_SYS_COREBOOT) && !defined(CONFIG_EFI_STUB) |
Bin Meng | 1e2f7b9 | 2016-05-11 07:44:56 -0700 | [diff] [blame] | 172 | /* |
| 173 | * Implement a weak default function for boards that optionally |
| 174 | * need to clean up the system before jumping to the kernel. |
| 175 | */ |
| 176 | __weak void board_final_cleanup(void) |
| 177 | { |
| 178 | } |
| 179 | |
Bin Meng | 5e2400e | 2015-04-24 18:10:04 +0800 | [diff] [blame] | 180 | int last_stage_init(void) |
| 181 | { |
Bin Meng | bffd798 | 2017-04-21 07:24:41 -0700 | [diff] [blame] | 182 | board_final_cleanup(); |
| 183 | |
Bin Meng | 3a34cae | 2017-04-21 07:24:37 -0700 | [diff] [blame] | 184 | #if CONFIG_HAVE_ACPI_RESUME |
Bin Meng | 0f4e258 | 2017-04-21 07:24:44 -0700 | [diff] [blame] | 185 | struct acpi_fadt *fadt = acpi_find_fadt(); |
Bin Meng | 3a34cae | 2017-04-21 07:24:37 -0700 | [diff] [blame] | 186 | |
Bin Meng | 0f4e258 | 2017-04-21 07:24:44 -0700 | [diff] [blame] | 187 | if (fadt != NULL && gd->arch.prev_sleep_state == ACPI_S3) |
| 188 | acpi_resume(fadt); |
Bin Meng | 3a34cae | 2017-04-21 07:24:37 -0700 | [diff] [blame] | 189 | #endif |
| 190 | |
Bin Meng | 5e2400e | 2015-04-24 18:10:04 +0800 | [diff] [blame] | 191 | write_tables(); |
| 192 | |
| 193 | return 0; |
| 194 | } |
| 195 | #endif |
Simon Glass | bcb0c61 | 2015-04-29 22:26:01 -0600 | [diff] [blame] | 196 | |
Simon Glass | afd5d50 | 2016-01-17 16:11:28 -0700 | [diff] [blame] | 197 | static int x86_init_cpus(void) |
Simon Glass | bcb0c61 | 2015-04-29 22:26:01 -0600 | [diff] [blame] | 198 | { |
Bin Meng | 6e6f4ce | 2015-06-17 11:15:36 +0800 | [diff] [blame] | 199 | #ifdef CONFIG_SMP |
| 200 | debug("Init additional CPUs\n"); |
| 201 | x86_mp_init(); |
Bin Meng | c77b891 | 2015-07-22 01:21:12 -0700 | [diff] [blame] | 202 | #else |
| 203 | struct udevice *dev; |
| 204 | |
| 205 | /* |
| 206 | * This causes the cpu-x86 driver to be probed. |
| 207 | * We don't check return value here as we want to allow boards |
| 208 | * which have not been converted to use cpu uclass driver to boot. |
| 209 | */ |
| 210 | uclass_first_device(UCLASS_CPU, &dev); |
Bin Meng | 6e6f4ce | 2015-06-17 11:15:36 +0800 | [diff] [blame] | 211 | #endif |
| 212 | |
Simon Glass | bcb0c61 | 2015-04-29 22:26:01 -0600 | [diff] [blame] | 213 | return 0; |
| 214 | } |
| 215 | |
| 216 | int cpu_init_r(void) |
| 217 | { |
Simon Glass | ac643e0 | 2016-01-17 16:11:30 -0700 | [diff] [blame] | 218 | struct udevice *dev; |
| 219 | int ret; |
| 220 | |
| 221 | if (!ll_boot_init()) |
| 222 | return 0; |
| 223 | |
| 224 | ret = x86_init_cpus(); |
| 225 | if (ret) |
| 226 | return ret; |
| 227 | |
| 228 | /* |
| 229 | * Set up the northbridge, PCH and LPC if available. Note that these |
| 230 | * may have had some limited pre-relocation init if they were probed |
| 231 | * before relocation, but this is post relocation. |
| 232 | */ |
| 233 | uclass_first_device(UCLASS_NORTHBRIDGE, &dev); |
| 234 | uclass_first_device(UCLASS_PCH, &dev); |
| 235 | uclass_first_device(UCLASS_LPC, &dev); |
Simon Glass | e49ccea | 2015-08-04 12:34:00 -0600 | [diff] [blame] | 236 | |
Bin Meng | d8906c1 | 2016-06-08 05:07:38 -0700 | [diff] [blame] | 237 | /* Set up pin control if available */ |
| 238 | ret = syscon_get_by_driver_data(X86_SYSCON_PINCONF, &dev); |
| 239 | debug("%s, pinctrl=%p, ret=%d\n", __func__, dev, ret); |
| 240 | |
Simon Glass | e49ccea | 2015-08-04 12:34:00 -0600 | [diff] [blame] | 241 | return 0; |
Simon Glass | bcb0c61 | 2015-04-29 22:26:01 -0600 | [diff] [blame] | 242 | } |
Bin Meng | 0c2b7ee | 2016-05-11 07:45:00 -0700 | [diff] [blame] | 243 | |
| 244 | #ifndef CONFIG_EFI_STUB |
| 245 | int reserve_arch(void) |
| 246 | { |
| 247 | #ifdef CONFIG_ENABLE_MRC_CACHE |
Bin Meng | d19c907 | 2016-05-11 07:45:01 -0700 | [diff] [blame] | 248 | mrccache_reserve(); |
Bin Meng | 0c2b7ee | 2016-05-11 07:45:00 -0700 | [diff] [blame] | 249 | #endif |
Bin Meng | d19c907 | 2016-05-11 07:45:01 -0700 | [diff] [blame] | 250 | |
| 251 | #ifdef CONFIG_SEABIOS |
| 252 | high_table_reserve(); |
| 253 | #endif |
| 254 | |
Bin Meng | 5ae5aa9 | 2017-04-21 07:24:47 -0700 | [diff] [blame] | 255 | #ifdef CONFIG_HAVE_ACPI_RESUME |
| 256 | acpi_s3_reserve(); |
| 257 | |
| 258 | #ifdef CONFIG_HAVE_FSP |
Bin Meng | ba65808 | 2017-04-21 07:24:39 -0700 | [diff] [blame] | 259 | /* |
| 260 | * Save stack address to CMOS so that at next S3 boot, |
| 261 | * we can use it as the stack address for fsp_contiue() |
| 262 | */ |
| 263 | fsp_save_s3_stack(); |
Bin Meng | 5ae5aa9 | 2017-04-21 07:24:47 -0700 | [diff] [blame] | 264 | #endif /* CONFIG_HAVE_FSP */ |
| 265 | #endif /* CONFIG_HAVE_ACPI_RESUME */ |
Bin Meng | ba65808 | 2017-04-21 07:24:39 -0700 | [diff] [blame] | 266 | |
Bin Meng | d19c907 | 2016-05-11 07:45:01 -0700 | [diff] [blame] | 267 | return 0; |
Bin Meng | 0c2b7ee | 2016-05-11 07:45:00 -0700 | [diff] [blame] | 268 | } |
| 269 | #endif |