blob: c8433360f28e9c54dd9928b7b64521cf0c3121f9 [file] [log] [blame]
Tom Rini10e47792018-05-06 17:58:06 -04001// SPDX-License-Identifier: GPL-2.0+
wdenk591dda52002-11-18 00:14:45 +00002/*
Graeme Russ45fc1d82011-04-13 19:43:26 +10003 * (C) Copyright 2008-2011
4 * Graeme Russ, <graeme.russ@gmail.com>
5 *
wdenk591dda52002-11-18 00:14:45 +00006 * (C) Copyright 2002
Albert ARIBAUD60fbc8d2011-08-04 18:45:45 +02007 * Daniel Engström, Omicron Ceti AB, <daniel@omicron.se>
wdenk57b2d802003-06-27 21:31:46 +00008 *
wdenk591dda52002-11-18 00:14:45 +00009 * (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 Meng035c1d22014-11-09 22:18:56 +080017 * Part of this file is adapted from coreboot
18 * src/arch/x86/lib/cpu.c
wdenk591dda52002-11-18 00:14:45 +000019 */
20
Simon Glasse50129a2020-11-04 09:57:18 -070021#define LOG_CATEGORY UCLASS_CPU
22
Simon Glass1ea97892020-05-10 11:40:00 -060023#include <bootstage.h>
wdenk591dda52002-11-18 00:14:45 +000024#include <command.h>
Simon Glass1d91ba72019-11-14 12:57:37 -070025#include <cpu_func.h>
Bin Mengf967f9a2015-06-17 11:15:36 +080026#include <dm.h>
Simon Glass463fac22014-10-10 08:21:55 -060027#include <errno.h>
Simon Glass1cedca12023-08-21 21:17:01 -060028#include <event.h>
Simon Glassda25eff2019-12-28 10:44:56 -070029#include <init.h>
Simon Glassd89f1932020-07-16 21:22:30 -060030#include <irq.h>
Simon Glass0f2af882020-05-10 11:40:05 -060031#include <log.h>
Simon Glass463fac22014-10-10 08:21:55 -060032#include <malloc.h>
Bin Menga4559642016-06-08 05:07:38 -070033#include <syscon.h>
Simon Glass50461092020-04-08 16:57:35 -060034#include <acpi/acpi_s3.h>
Simon Glass858fed12020-04-08 16:57:36 -060035#include <acpi/acpi_table.h>
Bin Mengac630252018-07-18 21:42:15 -070036#include <asm/acpi.h>
Stefan Reinauer2acf8482012-12-02 04:49:50 +000037#include <asm/control_regs.h>
Bin Meng1c9da372016-05-11 07:45:01 -070038#include <asm/coreboot_tables.h>
Simon Glass463fac22014-10-10 08:21:55 -060039#include <asm/cpu.h>
Simon Glass3ba929a2020-10-30 21:38:53 -060040#include <asm/global_data.h>
Bin Mengf967f9a2015-06-17 11:15:36 +080041#include <asm/lapic.h>
Simon Glass8dda5872016-03-11 22:07:11 -070042#include <asm/microcode.h>
Bin Mengf967f9a2015-06-17 11:15:36 +080043#include <asm/mp.h>
Bin Meng1141fcf2016-05-11 07:45:00 -070044#include <asm/mrccache.h>
Bin Mengc45a93b2015-07-06 16:31:30 +080045#include <asm/msr.h>
46#include <asm/mtrr.h>
Simon Glass9f0afe72014-11-12 22:42:26 -070047#include <asm/post.h>
Graeme Russ25391d12011-02-12 15:11:30 +110048#include <asm/processor.h>
Graeme Russ93efcb22011-02-12 15:11:32 +110049#include <asm/processor-flags.h>
Graeme Russ278638d2008-12-07 10:29:02 +110050#include <asm/interrupt.h>
Bin Mengf17cea62015-04-24 18:10:04 +080051#include <asm/tables.h>
Gabe Black6ed18882011-11-16 23:32:50 +000052#include <linux/compiler.h>
wdenk591dda52002-11-18 00:14:45 +000053
Bin Meng035c1d22014-11-09 22:18:56 +080054DECLARE_GLOBAL_DATA_PTR;
55
Simon Glassdd45a7a2019-12-06 21:41:51 -070056#ifndef CONFIG_TPL_BUILD
Bin Meng035c1d22014-11-09 22:18:56 +080057static const char *const x86_vendor_name[] = {
58 [X86_VENDOR_INTEL] = "Intel",
59 [X86_VENDOR_CYRIX] = "Cyrix",
60 [X86_VENDOR_AMD] = "AMD",
61 [X86_VENDOR_UMC] = "UMC",
62 [X86_VENDOR_NEXGEN] = "NexGen",
63 [X86_VENDOR_CENTAUR] = "Centaur",
64 [X86_VENDOR_RISE] = "Rise",
65 [X86_VENDOR_TRANSMETA] = "Transmeta",
66 [X86_VENDOR_NSC] = "NSC",
67 [X86_VENDOR_SIS] = "SiS",
68};
Simon Glassdd45a7a2019-12-06 21:41:51 -070069#endif
Bin Meng035c1d22014-11-09 22:18:56 +080070
Gabe Black846d08e2012-10-20 12:33:10 +000071int __weak x86_cleanup_before_linux(void)
72{
Simon Glass32d56952020-07-17 08:48:20 -060073 int ret;
74
75 ret = mp_park_aps();
76 if (ret)
77 return log_msg_ret("park", ret);
Simon Glass5322d622015-03-02 17:04:37 -070078 bootstage_stash((void *)CONFIG_BOOTSTAGE_STASH_ADDR,
Simon Glassbcc28da2013-04-17 16:13:35 +000079 CONFIG_BOOTSTAGE_STASH_SIZE);
Simon Glassbcc28da2013-04-17 16:13:35 +000080
Gabe Black846d08e2012-10-20 12:33:10 +000081 return 0;
82}
83
Graeme Russ6e256002011-12-27 22:46:43 +110084int x86_init_cache(void)
85{
86 enable_caches();
87
wdenk591dda52002-11-18 00:14:45 +000088 return 0;
89}
Graeme Russ6e256002011-12-27 22:46:43 +110090int init_cache(void) __attribute__((weak, alias("x86_init_cache")));
wdenk591dda52002-11-18 00:14:45 +000091
Graeme Russfdee8b12011-11-08 02:33:13 +000092void flush_cache(unsigned long dummy1, unsigned long dummy2)
wdenk591dda52002-11-18 00:14:45 +000093{
94 asm("wbinvd\n");
wdenk591dda52002-11-18 00:14:45 +000095}
Graeme Russ278638d2008-12-07 10:29:02 +110096
Stefan Reinauer2acf8482012-12-02 04:49:50 +000097/* Define these functions to allow ehch-hcd to function */
98void flush_dcache_range(unsigned long start, unsigned long stop)
99{
100}
101
102void invalidate_dcache_range(unsigned long start, unsigned long stop)
103{
104}
Simon Glass2baa3bb2013-02-28 19:26:11 +0000105
106void dcache_enable(void)
107{
108 enable_caches();
109}
110
111void dcache_disable(void)
112{
113 disable_caches();
114}
115
116void icache_enable(void)
117{
118}
119
120void icache_disable(void)
121{
122}
123
124int icache_status(void)
125{
126 return 1;
127}
Simon Glassd8d9fec2014-10-10 08:21:52 -0600128
Simon Glassdd45a7a2019-12-06 21:41:51 -0700129#ifndef CONFIG_TPL_BUILD
Bin Meng035c1d22014-11-09 22:18:56 +0800130const char *cpu_vendor_name(int vendor)
131{
132 const char *name;
133 name = "<invalid cpu vendor>";
Heinrich Schuchardt5e5fe802017-11-20 19:45:56 +0100134 if (vendor < ARRAY_SIZE(x86_vendor_name) &&
135 x86_vendor_name[vendor])
Bin Meng035c1d22014-11-09 22:18:56 +0800136 name = x86_vendor_name[vendor];
Simon Glass2f2efbc2014-10-10 08:21:54 -0600137
Bin Meng035c1d22014-11-09 22:18:56 +0800138 return name;
Simon Glass2f2efbc2014-10-10 08:21:54 -0600139}
Simon Glassdd45a7a2019-12-06 21:41:51 -0700140#endif
Simon Glass2f2efbc2014-10-10 08:21:54 -0600141
Simon Glass543bb142014-11-10 18:00:26 -0700142char *cpu_get_name(char *name)
Simon Glass2f2efbc2014-10-10 08:21:54 -0600143{
Simon Glass543bb142014-11-10 18:00:26 -0700144 unsigned int *name_as_ints = (unsigned int *)name;
Bin Meng035c1d22014-11-09 22:18:56 +0800145 struct cpuid_result regs;
Simon Glass543bb142014-11-10 18:00:26 -0700146 char *ptr;
Bin Meng035c1d22014-11-09 22:18:56 +0800147 int i;
Simon Glass2f2efbc2014-10-10 08:21:54 -0600148
Simon Glass543bb142014-11-10 18:00:26 -0700149 /* This bit adds up to 48 bytes */
Bin Meng035c1d22014-11-09 22:18:56 +0800150 for (i = 0; i < 3; i++) {
151 regs = cpuid(0x80000002 + i);
152 name_as_ints[i * 4 + 0] = regs.eax;
153 name_as_ints[i * 4 + 1] = regs.ebx;
154 name_as_ints[i * 4 + 2] = regs.ecx;
155 name_as_ints[i * 4 + 3] = regs.edx;
156 }
Simon Glass543bb142014-11-10 18:00:26 -0700157 name[CPU_MAX_NAME_LEN - 1] = '\0';
Simon Glass2f2efbc2014-10-10 08:21:54 -0600158
Bin Meng035c1d22014-11-09 22:18:56 +0800159 /* Skip leading spaces. */
Simon Glass543bb142014-11-10 18:00:26 -0700160 ptr = name;
161 while (*ptr == ' ')
162 ptr++;
Bin Meng035c1d22014-11-09 22:18:56 +0800163
Simon Glass543bb142014-11-10 18:00:26 -0700164 return ptr;
Simon Glass2f2efbc2014-10-10 08:21:54 -0600165}
166
Simon Glass543bb142014-11-10 18:00:26 -0700167int default_print_cpuinfo(void)
Simon Glass2f2efbc2014-10-10 08:21:54 -0600168{
Bin Meng035c1d22014-11-09 22:18:56 +0800169 printf("CPU: %s, vendor %s, device %xh\n",
170 cpu_has_64bit() ? "x86_64" : "x86",
171 cpu_vendor_name(gd->arch.x86_vendor), gd->arch.x86_device);
Simon Glass2f2efbc2014-10-10 08:21:54 -0600172
Simon Glasse6ad2022020-07-09 18:43:16 -0600173 if (IS_ENABLED(CONFIG_HAVE_ACPI_RESUME)) {
174 debug("ACPI previous sleep state: %s\n",
175 acpi_ss_string(gd->arch.prev_sleep_state));
176 }
Bin Mengef61f772017-04-21 07:24:32 -0700177
Simon Glass2f2efbc2014-10-10 08:21:54 -0600178 return 0;
179}
Simon Glass463fac22014-10-10 08:21:55 -0600180
Marek Vasut98154342021-10-23 03:06:03 +0200181#if CONFIG_IS_ENABLED(SHOW_BOOT_PROGRESS)
Simon Glass9f0afe72014-11-12 22:42:26 -0700182void show_boot_progress(int val)
183{
Simon Glass9f0afe72014-11-12 22:42:26 -0700184 outb(val, POST_PORT);
185}
Tom Rinia9765d02021-05-03 16:48:58 -0400186#endif
Bin Mengf17cea62015-04-24 18:10:04 +0800187
Simon Glass1cedca12023-08-21 21:17:01 -0600188#if !defined(CONFIG_SYS_COREBOOT) && !defined(CONFIG_EFI_STUB) && \
189 !defined(CONFIG_SPL_BUILD)
Bin Meng2f8560c2016-05-11 07:44:56 -0700190/*
Simon Glass75ece5f2020-07-16 21:22:38 -0600191 * Implement a weak default function for boards that need to do some final init
192 * before the system is ready.
Bin Meng2f8560c2016-05-11 07:44:56 -0700193 */
Simon Glass75ece5f2020-07-16 21:22:38 -0600194__weak void board_final_init(void)
Bin Meng2f8560c2016-05-11 07:44:56 -0700195{
196}
197
Simon Glassad7bb302020-09-22 12:45:28 -0600198/*
199 * Implement a weak default function for boards that need to do some final
200 * processing before booting the OS.
201 */
202__weak void board_final_cleanup(void)
203{
204}
205
Simon Glass1cedca12023-08-21 21:17:01 -0600206static int last_stage_init(void)
Bin Mengf17cea62015-04-24 18:10:04 +0800207{
Bin Meng467f4112018-07-18 21:42:16 -0700208 struct acpi_fadt __maybe_unused *fadt;
Simon Glasse50129a2020-11-04 09:57:18 -0700209 int ret;
Bin Meng467f4112018-07-18 21:42:16 -0700210
Simon Glass75ece5f2020-07-16 21:22:38 -0600211 board_final_init();
Bin Meng159661d2017-04-21 07:24:41 -0700212
Simon Glasse6ad2022020-07-09 18:43:16 -0600213 if (IS_ENABLED(CONFIG_HAVE_ACPI_RESUME)) {
214 fadt = acpi_find_fadt();
Bin Meng710d2152017-04-21 07:24:37 -0700215
Simon Glasse6ad2022020-07-09 18:43:16 -0600216 if (fadt && gd->arch.prev_sleep_state == ACPI_S3)
217 acpi_resume(fadt);
218 }
Bin Meng710d2152017-04-21 07:24:37 -0700219
Simon Glasse50129a2020-11-04 09:57:18 -0700220 ret = write_tables();
221 if (ret) {
222 log_err("Failed to write tables\n");
223 return log_msg_ret("table", ret);
224 }
Bin Mengf17cea62015-04-24 18:10:04 +0800225
Simon Glass84163ae2020-07-17 08:48:15 -0600226 if (IS_ENABLED(CONFIG_GENERATE_ACPI_TABLE)) {
227 fadt = acpi_find_fadt();
Bin Meng467f4112018-07-18 21:42:16 -0700228
Simon Glass84163ae2020-07-17 08:48:15 -0600229 /* Don't touch ACPI hardware on HW reduced platforms */
230 if (fadt && !(fadt->flags & ACPI_FADT_HW_REDUCED_ACPI)) {
231 /*
232 * Other than waiting for OSPM to request us to switch
233 * to ACPI * mode, do it by ourselves, since SMI will
234 * not be triggered.
235 */
236 enter_acpi_mode(fadt->pm1a_cnt_blk);
237 }
Bin Meng467f4112018-07-18 21:42:16 -0700238 }
Bin Meng467f4112018-07-18 21:42:16 -0700239
Simon Glassad7bb302020-09-22 12:45:28 -0600240 /*
241 * TODO(sjg@chromium.org): Move this to bootm_announce_and_cleanup()
242 * once APL FSP-S at 0x200000 does not overlap with the bzimage at
243 * 0x100000.
244 */
245 board_final_cleanup();
246
Bin Mengf17cea62015-04-24 18:10:04 +0800247 return 0;
248}
Simon Glass1cedca12023-08-21 21:17:01 -0600249EVENT_SPY_SIMPLE(EVT_LAST_STAGE_INIT, last_stage_init);
250
251#endif /* !SYS_COREBOOT && !EFI_STUB && !SPL_BUILD */
Simon Glass02fe5e62015-04-29 22:26:01 -0600252
Simon Glass0aa7bfa2016-01-17 16:11:28 -0700253static int x86_init_cpus(void)
Simon Glass02fe5e62015-04-29 22:26:01 -0600254{
Simon Glass84163ae2020-07-17 08:48:15 -0600255 if (IS_ENABLED(CONFIG_SMP)) {
256 debug("Init additional CPUs\n");
257 x86_mp_init();
258 } else {
259 struct udevice *dev;
Bin Meng89727762015-07-22 01:21:12 -0700260
Simon Glass84163ae2020-07-17 08:48:15 -0600261 /*
262 * This causes the cpu-x86 driver to be probed.
263 * We don't check return value here as we want to allow boards
264 * which have not been converted to use cpu uclass driver to
265 * boot.
266 */
267 uclass_first_device(UCLASS_CPU, &dev);
268 }
Bin Mengf967f9a2015-06-17 11:15:36 +0800269
Simon Glass02fe5e62015-04-29 22:26:01 -0600270 return 0;
271}
272
273int cpu_init_r(void)
274{
Simon Glass00431f62016-01-17 16:11:30 -0700275 struct udevice *dev;
276 int ret;
277
Simon Glass8b8e7542020-04-26 09:12:55 -0600278 if (!ll_boot_init()) {
279 uclass_first_device(UCLASS_PCI, &dev);
Simon Glass00431f62016-01-17 16:11:30 -0700280 return 0;
Simon Glass8b8e7542020-04-26 09:12:55 -0600281 }
Simon Glass00431f62016-01-17 16:11:30 -0700282
283 ret = x86_init_cpus();
284 if (ret)
285 return ret;
286
287 /*
288 * Set up the northbridge, PCH and LPC if available. Note that these
289 * may have had some limited pre-relocation init if they were probed
290 * before relocation, but this is post relocation.
291 */
292 uclass_first_device(UCLASS_NORTHBRIDGE, &dev);
293 uclass_first_device(UCLASS_PCH, &dev);
294 uclass_first_device(UCLASS_LPC, &dev);
Simon Glass2b6d80b2015-08-04 12:34:00 -0600295
Bin Menga4559642016-06-08 05:07:38 -0700296 /* Set up pin control if available */
297 ret = syscon_get_by_driver_data(X86_SYSCON_PINCONF, &dev);
298 debug("%s, pinctrl=%p, ret=%d\n", __func__, dev, ret);
299
Simon Glass2b6d80b2015-08-04 12:34:00 -0600300 return 0;
Simon Glass02fe5e62015-04-29 22:26:01 -0600301}
Bin Meng1141fcf2016-05-11 07:45:00 -0700302
303#ifndef CONFIG_EFI_STUB
304int reserve_arch(void)
305{
Simon Glassd89f1932020-07-16 21:22:30 -0600306 struct udevice *itss;
307 int ret;
308
309 if (IS_ENABLED(CONFIG_ENABLE_MRC_CACHE))
310 mrccache_reserve();
Bin Meng1c9da372016-05-11 07:45:01 -0700311
Simon Glass84163ae2020-07-17 08:48:15 -0600312 if (IS_ENABLED(CONFIG_SEABIOS))
313 high_table_reserve();
Bin Meng1c9da372016-05-11 07:45:01 -0700314
Simon Glasse6ad2022020-07-09 18:43:16 -0600315 if (IS_ENABLED(CONFIG_HAVE_ACPI_RESUME)) {
316 acpi_s3_reserve();
Bin Meng353f5cb2017-04-21 07:24:47 -0700317
Simon Glasse6ad2022020-07-09 18:43:16 -0600318 if (IS_ENABLED(CONFIG_HAVE_FSP)) {
319 /*
320 * Save stack address to CMOS so that at next S3 boot,
Bin Meng639a0892022-11-24 11:39:23 +0800321 * we can use it as the stack address for fsp_continue()
Simon Glasse6ad2022020-07-09 18:43:16 -0600322 */
323 fsp_save_s3_stack();
324 }
325 }
Simon Glassd89f1932020-07-16 21:22:30 -0600326 ret = irq_first_device_type(X86_IRQT_ITSS, &itss);
327 if (!ret) {
328 /*
329 * Snapshot the current GPIO IRQ polarities. FSP-S is about to
330 * run and will set a default policy that doesn't honour boards'
331 * requirements
332 */
333 irq_snapshot_polarities(itss);
334 }
Bin Mengcf200302017-04-21 07:24:39 -0700335
Bin Meng1c9da372016-05-11 07:45:01 -0700336 return 0;
Bin Meng1141fcf2016-05-11 07:45:00 -0700337}
338#endif
Simon Glass46f4c582020-04-30 21:21:39 -0600339
340long detect_coreboot_table_at(ulong start, ulong size)
341{
342 u32 *ptr, *end;
343
344 size /= 4;
345 for (ptr = (void *)start, end = ptr + size; ptr < end; ptr += 4) {
346 if (*ptr == 0x4f49424c) /* "LBIO" */
347 return (long)ptr;
348 }
349
350 return -ENOENT;
351}
352
353long locate_coreboot_table(void)
354{
355 long addr;
356
Simon Glass1297d312023-05-04 16:54:55 -0600357 /* We look for LBIO from addresses 1K-4K and again at 960KB */
358 addr = detect_coreboot_table_at(0x400, 0xc00);
Simon Glass46f4c582020-04-30 21:21:39 -0600359 if (addr < 0)
360 addr = detect_coreboot_table_at(0xf0000, 0x1000);
361
362 return addr;
363}