blob: ce55efc454bfa35b7939e300737b9ddb8bcb26fc [file] [log] [blame]
Tom Rini83d290c2018-05-06 17:58:06 -04001// SPDX-License-Identifier: GPL-2.0+
wdenk2262cfe2002-11-18 00:14:45 +00002/*
Graeme Russdbf71152011-04-13 19:43:26 +10003 * (C) Copyright 2008-2011
4 * Graeme Russ, <graeme.russ@gmail.com>
5 *
wdenk2262cfe2002-11-18 00:14:45 +00006 * (C) Copyright 2002
Albert ARIBAUDfa82f872011-08-04 18:45:45 +02007 * Daniel Engström, Omicron Ceti AB, <daniel@omicron.se>
wdenk8bde7f72003-06-27 21:31:46 +00008 *
wdenk2262cfe2002-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 Meng52f952b2014-11-09 22:18:56 +080017 * Part of this file is adapted from coreboot
18 * src/arch/x86/lib/cpu.c
wdenk2262cfe2002-11-18 00:14:45 +000019 */
20
Simon Glass38e498c2020-11-04 09:57:18 -070021#define LOG_CATEGORY UCLASS_CPU
22
wdenk2262cfe2002-11-18 00:14:45 +000023#include <common.h>
Simon Glass52f24232020-05-10 11:40:00 -060024#include <bootstage.h>
wdenk2262cfe2002-11-18 00:14:45 +000025#include <command.h>
Simon Glass9edefc22019-11-14 12:57:37 -070026#include <cpu_func.h>
Bin Meng6e6f4ce2015-06-17 11:15:36 +080027#include <dm.h>
Simon Glass200182a2014-10-10 08:21:55 -060028#include <errno.h>
Simon Glass91caa3b2023-08-21 21:17:01 -060029#include <event.h>
Simon Glass35a3f872019-12-28 10:44:56 -070030#include <init.h>
Simon Glassb95611f2020-07-16 21:22:30 -060031#include <irq.h>
Simon Glassf7ae49f2020-05-10 11:40:05 -060032#include <log.h>
Simon Glass200182a2014-10-10 08:21:55 -060033#include <malloc.h>
Bin Mengd8906c12016-06-08 05:07:38 -070034#include <syscon.h>
Simon Glass3cabcf92020-04-08 16:57:35 -060035#include <acpi/acpi_s3.h>
Simon Glass776cc202020-04-08 16:57:36 -060036#include <acpi/acpi_table.h>
Bin Menga0609a82018-07-18 21:42:15 -070037#include <asm/acpi.h>
Stefan Reinauer095593c2012-12-02 04:49:50 +000038#include <asm/control_regs.h>
Bin Mengd19c9072016-05-11 07:45:01 -070039#include <asm/coreboot_tables.h>
Simon Glass200182a2014-10-10 08:21:55 -060040#include <asm/cpu.h>
Simon Glass401d1c42020-10-30 21:38:53 -060041#include <asm/global_data.h>
Bin Meng6e6f4ce2015-06-17 11:15:36 +080042#include <asm/lapic.h>
Simon Glasse77b62e2016-03-11 22:07:11 -070043#include <asm/microcode.h>
Bin Meng6e6f4ce2015-06-17 11:15:36 +080044#include <asm/mp.h>
Bin Meng0c2b7ee2016-05-11 07:45:00 -070045#include <asm/mrccache.h>
Bin Meng43dd22f2015-07-06 16:31:30 +080046#include <asm/msr.h>
47#include <asm/mtrr.h>
Simon Glassa49e3c72014-11-12 22:42:26 -070048#include <asm/post.h>
Graeme Russc53fd2b2011-02-12 15:11:30 +110049#include <asm/processor.h>
Graeme Russ0c24c9c2011-02-12 15:11:32 +110050#include <asm/processor-flags.h>
Graeme Russ3f5f18d2008-12-07 10:29:02 +110051#include <asm/interrupt.h>
Bin Meng5e2400e2015-04-24 18:10:04 +080052#include <asm/tables.h>
Gabe Black60a9b6b2011-11-16 23:32:50 +000053#include <linux/compiler.h>
wdenk2262cfe2002-11-18 00:14:45 +000054
Bin Meng52f952b2014-11-09 22:18:56 +080055DECLARE_GLOBAL_DATA_PTR;
56
Simon Glasscaca13f2019-12-06 21:41:51 -070057#ifndef CONFIG_TPL_BUILD
Bin Meng52f952b2014-11-09 22:18:56 +080058static 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 Glasscaca13f2019-12-06 21:41:51 -070070#endif
Bin Meng52f952b2014-11-09 22:18:56 +080071
Gabe Blackf30fc4d2012-10-20 12:33:10 +000072int __weak x86_cleanup_before_linux(void)
73{
Simon Glass99a573f2020-07-17 08:48:20 -060074 int ret;
75
76 ret = mp_park_aps();
77 if (ret)
78 return log_msg_ret("park", ret);
Simon Glassee2b2432015-03-02 17:04:37 -070079 bootstage_stash((void *)CONFIG_BOOTSTAGE_STASH_ADDR,
Simon Glass79497032013-04-17 16:13:35 +000080 CONFIG_BOOTSTAGE_STASH_SIZE);
Simon Glass79497032013-04-17 16:13:35 +000081
Gabe Blackf30fc4d2012-10-20 12:33:10 +000082 return 0;
83}
84
Graeme Russd6532442011-12-27 22:46:43 +110085int x86_init_cache(void)
86{
87 enable_caches();
88
wdenk2262cfe2002-11-18 00:14:45 +000089 return 0;
90}
Graeme Russd6532442011-12-27 22:46:43 +110091int init_cache(void) __attribute__((weak, alias("x86_init_cache")));
wdenk2262cfe2002-11-18 00:14:45 +000092
Graeme Russ717979f2011-11-08 02:33:13 +000093void flush_cache(unsigned long dummy1, unsigned long dummy2)
wdenk2262cfe2002-11-18 00:14:45 +000094{
95 asm("wbinvd\n");
wdenk2262cfe2002-11-18 00:14:45 +000096}
Graeme Russ3f5f18d2008-12-07 10:29:02 +110097
Stefan Reinauer095593c2012-12-02 04:49:50 +000098/* Define these functions to allow ehch-hcd to function */
99void flush_dcache_range(unsigned long start, unsigned long stop)
100{
101}
102
103void invalidate_dcache_range(unsigned long start, unsigned long stop)
104{
105}
Simon Glass89371402013-02-28 19:26:11 +0000106
107void dcache_enable(void)
108{
109 enable_caches();
110}
111
112void dcache_disable(void)
113{
114 disable_caches();
115}
116
117void icache_enable(void)
118{
119}
120
121void icache_disable(void)
122{
123}
124
125int icache_status(void)
126{
127 return 1;
128}
Simon Glass7bddac92014-10-10 08:21:52 -0600129
Simon Glasscaca13f2019-12-06 21:41:51 -0700130#ifndef CONFIG_TPL_BUILD
Bin Meng52f952b2014-11-09 22:18:56 +0800131const char *cpu_vendor_name(int vendor)
132{
133 const char *name;
134 name = "<invalid cpu vendor>";
Heinrich Schuchardt39670c32017-11-20 19:45:56 +0100135 if (vendor < ARRAY_SIZE(x86_vendor_name) &&
136 x86_vendor_name[vendor])
Bin Meng52f952b2014-11-09 22:18:56 +0800137 name = x86_vendor_name[vendor];
138
139 return name;
140}
Simon Glasscaca13f2019-12-06 21:41:51 -0700141#endif
Bin Meng52f952b2014-11-09 22:18:56 +0800142
Simon Glass727c1a92014-11-10 18:00:26 -0700143char *cpu_get_name(char *name)
Bin Meng52f952b2014-11-09 22:18:56 +0800144{
Simon Glass727c1a92014-11-10 18:00:26 -0700145 unsigned int *name_as_ints = (unsigned int *)name;
Bin Meng52f952b2014-11-09 22:18:56 +0800146 struct cpuid_result regs;
Simon Glass727c1a92014-11-10 18:00:26 -0700147 char *ptr;
Bin Meng52f952b2014-11-09 22:18:56 +0800148 int i;
149
Simon Glass727c1a92014-11-10 18:00:26 -0700150 /* This bit adds up to 48 bytes */
Bin Meng52f952b2014-11-09 22:18:56 +0800151 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 Glass727c1a92014-11-10 18:00:26 -0700158 name[CPU_MAX_NAME_LEN - 1] = '\0';
Bin Meng52f952b2014-11-09 22:18:56 +0800159
160 /* Skip leading spaces. */
Simon Glass727c1a92014-11-10 18:00:26 -0700161 ptr = name;
162 while (*ptr == ' ')
163 ptr++;
Bin Meng52f952b2014-11-09 22:18:56 +0800164
Simon Glass727c1a92014-11-10 18:00:26 -0700165 return ptr;
Bin Meng52f952b2014-11-09 22:18:56 +0800166}
167
Simon Glass727c1a92014-11-10 18:00:26 -0700168int default_print_cpuinfo(void)
Simon Glass92cc94a2014-10-10 08:21:54 -0600169{
Bin Meng52f952b2014-11-09 22:18:56 +0800170 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 Glass92cc94a2014-10-10 08:21:54 -0600173
Simon Glassef5f5f62020-07-09 18:43:16 -0600174 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 Mengb7279612017-04-21 07:24:32 -0700178
Simon Glass92cc94a2014-10-10 08:21:54 -0600179 return 0;
180}
Simon Glass200182a2014-10-10 08:21:55 -0600181
Marek Vasutb55881d2021-10-23 03:06:03 +0200182#if CONFIG_IS_ENABLED(SHOW_BOOT_PROGRESS)
Simon Glassa49e3c72014-11-12 22:42:26 -0700183void show_boot_progress(int val)
184{
Simon Glassa49e3c72014-11-12 22:42:26 -0700185 outb(val, POST_PORT);
186}
Tom Rinicb80ff22021-05-03 16:48:58 -0400187#endif
Bin Meng5e2400e2015-04-24 18:10:04 +0800188
Simon Glass91caa3b2023-08-21 21:17:01 -0600189#if !defined(CONFIG_SYS_COREBOOT) && !defined(CONFIG_EFI_STUB) && \
190 !defined(CONFIG_SPL_BUILD)
Bin Meng1e2f7b92016-05-11 07:44:56 -0700191/*
Simon Glass4021ee62020-07-16 21:22:38 -0600192 * Implement a weak default function for boards that need to do some final init
193 * before the system is ready.
Bin Meng1e2f7b92016-05-11 07:44:56 -0700194 */
Simon Glass4021ee62020-07-16 21:22:38 -0600195__weak void board_final_init(void)
Bin Meng1e2f7b92016-05-11 07:44:56 -0700196{
197}
198
Simon Glass7c73cea2020-09-22 12:45:28 -0600199/*
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 Glass91caa3b2023-08-21 21:17:01 -0600207static int last_stage_init(void)
Bin Meng5e2400e2015-04-24 18:10:04 +0800208{
Bin Meng474a62b2018-07-18 21:42:16 -0700209 struct acpi_fadt __maybe_unused *fadt;
Simon Glass38e498c2020-11-04 09:57:18 -0700210 int ret;
Bin Meng474a62b2018-07-18 21:42:16 -0700211
Simon Glass4021ee62020-07-16 21:22:38 -0600212 board_final_init();
Bin Mengbffd7982017-04-21 07:24:41 -0700213
Simon Glassef5f5f62020-07-09 18:43:16 -0600214 if (IS_ENABLED(CONFIG_HAVE_ACPI_RESUME)) {
215 fadt = acpi_find_fadt();
Bin Meng3a34cae2017-04-21 07:24:37 -0700216
Simon Glassef5f5f62020-07-09 18:43:16 -0600217 if (fadt && gd->arch.prev_sleep_state == ACPI_S3)
218 acpi_resume(fadt);
219 }
Bin Meng3a34cae2017-04-21 07:24:37 -0700220
Simon Glass38e498c2020-11-04 09:57:18 -0700221 ret = write_tables();
222 if (ret) {
223 log_err("Failed to write tables\n");
224 return log_msg_ret("table", ret);
225 }
Bin Meng5e2400e2015-04-24 18:10:04 +0800226
Simon Glass8bccbc52020-07-17 08:48:15 -0600227 if (IS_ENABLED(CONFIG_GENERATE_ACPI_TABLE)) {
228 fadt = acpi_find_fadt();
Bin Meng474a62b2018-07-18 21:42:16 -0700229
Simon Glass8bccbc52020-07-17 08:48:15 -0600230 /* 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 Meng474a62b2018-07-18 21:42:16 -0700239 }
Bin Meng474a62b2018-07-18 21:42:16 -0700240
Simon Glass7c73cea2020-09-22 12:45:28 -0600241 /*
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 Meng5e2400e2015-04-24 18:10:04 +0800248 return 0;
249}
Simon Glass91caa3b2023-08-21 21:17:01 -0600250EVENT_SPY_SIMPLE(EVT_LAST_STAGE_INIT, last_stage_init);
251
252#endif /* !SYS_COREBOOT && !EFI_STUB && !SPL_BUILD */
Simon Glassbcb0c612015-04-29 22:26:01 -0600253
Simon Glassafd5d502016-01-17 16:11:28 -0700254static int x86_init_cpus(void)
Simon Glassbcb0c612015-04-29 22:26:01 -0600255{
Simon Glass8bccbc52020-07-17 08:48:15 -0600256 if (IS_ENABLED(CONFIG_SMP)) {
257 debug("Init additional CPUs\n");
258 x86_mp_init();
259 } else {
260 struct udevice *dev;
Bin Mengc77b8912015-07-22 01:21:12 -0700261
Simon Glass8bccbc52020-07-17 08:48:15 -0600262 /*
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 Meng6e6f4ce2015-06-17 11:15:36 +0800270
Simon Glassbcb0c612015-04-29 22:26:01 -0600271 return 0;
272}
273
274int cpu_init_r(void)
275{
Simon Glassac643e02016-01-17 16:11:30 -0700276 struct udevice *dev;
277 int ret;
278
Simon Glass526aabe2020-04-26 09:12:55 -0600279 if (!ll_boot_init()) {
280 uclass_first_device(UCLASS_PCI, &dev);
Simon Glassac643e02016-01-17 16:11:30 -0700281 return 0;
Simon Glass526aabe2020-04-26 09:12:55 -0600282 }
Simon Glassac643e02016-01-17 16:11:30 -0700283
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 Glasse49ccea2015-08-04 12:34:00 -0600296
Bin Mengd8906c12016-06-08 05:07:38 -0700297 /* 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 Glasse49ccea2015-08-04 12:34:00 -0600301 return 0;
Simon Glassbcb0c612015-04-29 22:26:01 -0600302}
Bin Meng0c2b7ee2016-05-11 07:45:00 -0700303
304#ifndef CONFIG_EFI_STUB
305int reserve_arch(void)
306{
Simon Glassb95611f2020-07-16 21:22:30 -0600307 struct udevice *itss;
308 int ret;
309
310 if (IS_ENABLED(CONFIG_ENABLE_MRC_CACHE))
311 mrccache_reserve();
Bin Mengd19c9072016-05-11 07:45:01 -0700312
Simon Glass8bccbc52020-07-17 08:48:15 -0600313 if (IS_ENABLED(CONFIG_SEABIOS))
314 high_table_reserve();
Bin Mengd19c9072016-05-11 07:45:01 -0700315
Simon Glassef5f5f62020-07-09 18:43:16 -0600316 if (IS_ENABLED(CONFIG_HAVE_ACPI_RESUME)) {
317 acpi_s3_reserve();
Bin Meng5ae5aa92017-04-21 07:24:47 -0700318
Simon Glassef5f5f62020-07-09 18:43:16 -0600319 if (IS_ENABLED(CONFIG_HAVE_FSP)) {
320 /*
321 * Save stack address to CMOS so that at next S3 boot,
Bin Meng58e2a352022-11-24 11:39:23 +0800322 * we can use it as the stack address for fsp_continue()
Simon Glassef5f5f62020-07-09 18:43:16 -0600323 */
324 fsp_save_s3_stack();
325 }
326 }
Simon Glassb95611f2020-07-16 21:22:30 -0600327 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 Mengba658082017-04-21 07:24:39 -0700336
Bin Mengd19c9072016-05-11 07:45:01 -0700337 return 0;
Bin Meng0c2b7ee2016-05-11 07:45:00 -0700338}
339#endif
Simon Glass7ec0e7b2020-04-30 21:21:39 -0600340
341long 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
354long locate_coreboot_table(void)
355{
356 long addr;
357
Simon Glass7a187a82023-05-04 16:54:55 -0600358 /* We look for LBIO from addresses 1K-4K and again at 960KB */
359 addr = detect_coreboot_table_at(0x400, 0xc00);
Simon Glass7ec0e7b2020-04-30 21:21:39 -0600360 if (addr < 0)
361 addr = detect_coreboot_table_at(0xf0000, 0x1000);
362
363 return addr;
364}