blob: 98ed66e67d70451be10e3332c8755899d431372b [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
wdenk591dda52002-11-18 00:14:45 +000021#include <common.h>
Simon Glass1ea97892020-05-10 11:40:00 -060022#include <bootstage.h>
wdenk591dda52002-11-18 00:14:45 +000023#include <command.h>
Simon Glass1d91ba72019-11-14 12:57:37 -070024#include <cpu_func.h>
Bin Mengf967f9a2015-06-17 11:15:36 +080025#include <dm.h>
Simon Glass463fac22014-10-10 08:21:55 -060026#include <errno.h>
Simon Glassda25eff2019-12-28 10:44:56 -070027#include <init.h>
Simon Glassd89f1932020-07-16 21:22:30 -060028#include <irq.h>
Simon Glass0f2af882020-05-10 11:40:05 -060029#include <log.h>
Simon Glass463fac22014-10-10 08:21:55 -060030#include <malloc.h>
Bin Menga4559642016-06-08 05:07:38 -070031#include <syscon.h>
Simon Glass50461092020-04-08 16:57:35 -060032#include <acpi/acpi_s3.h>
Simon Glass858fed12020-04-08 16:57:36 -060033#include <acpi/acpi_table.h>
Bin Mengac630252018-07-18 21:42:15 -070034#include <asm/acpi.h>
Stefan Reinauer2acf8482012-12-02 04:49:50 +000035#include <asm/control_regs.h>
Bin Meng1c9da372016-05-11 07:45:01 -070036#include <asm/coreboot_tables.h>
Simon Glass463fac22014-10-10 08:21:55 -060037#include <asm/cpu.h>
Bin Mengf967f9a2015-06-17 11:15:36 +080038#include <asm/lapic.h>
Simon Glass8dda5872016-03-11 22:07:11 -070039#include <asm/microcode.h>
Bin Mengf967f9a2015-06-17 11:15:36 +080040#include <asm/mp.h>
Bin Meng1141fcf2016-05-11 07:45:00 -070041#include <asm/mrccache.h>
Bin Mengc45a93b2015-07-06 16:31:30 +080042#include <asm/msr.h>
43#include <asm/mtrr.h>
Simon Glass9f0afe72014-11-12 22:42:26 -070044#include <asm/post.h>
Graeme Russ25391d12011-02-12 15:11:30 +110045#include <asm/processor.h>
Graeme Russ93efcb22011-02-12 15:11:32 +110046#include <asm/processor-flags.h>
Graeme Russ278638d2008-12-07 10:29:02 +110047#include <asm/interrupt.h>
Bin Mengf17cea62015-04-24 18:10:04 +080048#include <asm/tables.h>
Gabe Black6ed18882011-11-16 23:32:50 +000049#include <linux/compiler.h>
wdenk591dda52002-11-18 00:14:45 +000050
Bin Meng035c1d22014-11-09 22:18:56 +080051DECLARE_GLOBAL_DATA_PTR;
52
Simon Glassdd45a7a2019-12-06 21:41:51 -070053#ifndef CONFIG_TPL_BUILD
Bin Meng035c1d22014-11-09 22:18:56 +080054static const char *const x86_vendor_name[] = {
55 [X86_VENDOR_INTEL] = "Intel",
56 [X86_VENDOR_CYRIX] = "Cyrix",
57 [X86_VENDOR_AMD] = "AMD",
58 [X86_VENDOR_UMC] = "UMC",
59 [X86_VENDOR_NEXGEN] = "NexGen",
60 [X86_VENDOR_CENTAUR] = "Centaur",
61 [X86_VENDOR_RISE] = "Rise",
62 [X86_VENDOR_TRANSMETA] = "Transmeta",
63 [X86_VENDOR_NSC] = "NSC",
64 [X86_VENDOR_SIS] = "SiS",
65};
Simon Glassdd45a7a2019-12-06 21:41:51 -070066#endif
Bin Meng035c1d22014-11-09 22:18:56 +080067
Gabe Black846d08e2012-10-20 12:33:10 +000068int __weak x86_cleanup_before_linux(void)
69{
Simon Glassbcc28da2013-04-17 16:13:35 +000070#ifdef CONFIG_BOOTSTAGE_STASH
Simon Glass5322d622015-03-02 17:04:37 -070071 bootstage_stash((void *)CONFIG_BOOTSTAGE_STASH_ADDR,
Simon Glassbcc28da2013-04-17 16:13:35 +000072 CONFIG_BOOTSTAGE_STASH_SIZE);
73#endif
74
Gabe Black846d08e2012-10-20 12:33:10 +000075 return 0;
76}
77
Graeme Russ6e256002011-12-27 22:46:43 +110078int x86_init_cache(void)
79{
80 enable_caches();
81
wdenk591dda52002-11-18 00:14:45 +000082 return 0;
83}
Graeme Russ6e256002011-12-27 22:46:43 +110084int init_cache(void) __attribute__((weak, alias("x86_init_cache")));
wdenk591dda52002-11-18 00:14:45 +000085
Graeme Russfdee8b12011-11-08 02:33:13 +000086void flush_cache(unsigned long dummy1, unsigned long dummy2)
wdenk591dda52002-11-18 00:14:45 +000087{
88 asm("wbinvd\n");
wdenk591dda52002-11-18 00:14:45 +000089}
Graeme Russ278638d2008-12-07 10:29:02 +110090
Stefan Reinauer2acf8482012-12-02 04:49:50 +000091/* Define these functions to allow ehch-hcd to function */
92void flush_dcache_range(unsigned long start, unsigned long stop)
93{
94}
95
96void invalidate_dcache_range(unsigned long start, unsigned long stop)
97{
98}
Simon Glass2baa3bb2013-02-28 19:26:11 +000099
100void dcache_enable(void)
101{
102 enable_caches();
103}
104
105void dcache_disable(void)
106{
107 disable_caches();
108}
109
110void icache_enable(void)
111{
112}
113
114void icache_disable(void)
115{
116}
117
118int icache_status(void)
119{
120 return 1;
121}
Simon Glassd8d9fec2014-10-10 08:21:52 -0600122
Simon Glassdd45a7a2019-12-06 21:41:51 -0700123#ifndef CONFIG_TPL_BUILD
Bin Meng035c1d22014-11-09 22:18:56 +0800124const char *cpu_vendor_name(int vendor)
125{
126 const char *name;
127 name = "<invalid cpu vendor>";
Heinrich Schuchardt5e5fe802017-11-20 19:45:56 +0100128 if (vendor < ARRAY_SIZE(x86_vendor_name) &&
129 x86_vendor_name[vendor])
Bin Meng035c1d22014-11-09 22:18:56 +0800130 name = x86_vendor_name[vendor];
Simon Glass2f2efbc2014-10-10 08:21:54 -0600131
Bin Meng035c1d22014-11-09 22:18:56 +0800132 return name;
Simon Glass2f2efbc2014-10-10 08:21:54 -0600133}
Simon Glassdd45a7a2019-12-06 21:41:51 -0700134#endif
Simon Glass2f2efbc2014-10-10 08:21:54 -0600135
Simon Glass543bb142014-11-10 18:00:26 -0700136char *cpu_get_name(char *name)
Simon Glass2f2efbc2014-10-10 08:21:54 -0600137{
Simon Glass543bb142014-11-10 18:00:26 -0700138 unsigned int *name_as_ints = (unsigned int *)name;
Bin Meng035c1d22014-11-09 22:18:56 +0800139 struct cpuid_result regs;
Simon Glass543bb142014-11-10 18:00:26 -0700140 char *ptr;
Bin Meng035c1d22014-11-09 22:18:56 +0800141 int i;
Simon Glass2f2efbc2014-10-10 08:21:54 -0600142
Simon Glass543bb142014-11-10 18:00:26 -0700143 /* This bit adds up to 48 bytes */
Bin Meng035c1d22014-11-09 22:18:56 +0800144 for (i = 0; i < 3; i++) {
145 regs = cpuid(0x80000002 + i);
146 name_as_ints[i * 4 + 0] = regs.eax;
147 name_as_ints[i * 4 + 1] = regs.ebx;
148 name_as_ints[i * 4 + 2] = regs.ecx;
149 name_as_ints[i * 4 + 3] = regs.edx;
150 }
Simon Glass543bb142014-11-10 18:00:26 -0700151 name[CPU_MAX_NAME_LEN - 1] = '\0';
Simon Glass2f2efbc2014-10-10 08:21:54 -0600152
Bin Meng035c1d22014-11-09 22:18:56 +0800153 /* Skip leading spaces. */
Simon Glass543bb142014-11-10 18:00:26 -0700154 ptr = name;
155 while (*ptr == ' ')
156 ptr++;
Bin Meng035c1d22014-11-09 22:18:56 +0800157
Simon Glass543bb142014-11-10 18:00:26 -0700158 return ptr;
Simon Glass2f2efbc2014-10-10 08:21:54 -0600159}
160
Simon Glass543bb142014-11-10 18:00:26 -0700161int default_print_cpuinfo(void)
Simon Glass2f2efbc2014-10-10 08:21:54 -0600162{
Bin Meng035c1d22014-11-09 22:18:56 +0800163 printf("CPU: %s, vendor %s, device %xh\n",
164 cpu_has_64bit() ? "x86_64" : "x86",
165 cpu_vendor_name(gd->arch.x86_vendor), gd->arch.x86_device);
Simon Glass2f2efbc2014-10-10 08:21:54 -0600166
Simon Glasse6ad2022020-07-09 18:43:16 -0600167 if (IS_ENABLED(CONFIG_HAVE_ACPI_RESUME)) {
168 debug("ACPI previous sleep state: %s\n",
169 acpi_ss_string(gd->arch.prev_sleep_state));
170 }
Bin Mengef61f772017-04-21 07:24:32 -0700171
Simon Glass2f2efbc2014-10-10 08:21:54 -0600172 return 0;
173}
Simon Glass463fac22014-10-10 08:21:55 -0600174
Simon Glass9f0afe72014-11-12 22:42:26 -0700175void show_boot_progress(int val)
176{
Simon Glass9f0afe72014-11-12 22:42:26 -0700177 outb(val, POST_PORT);
178}
Bin Mengf17cea62015-04-24 18:10:04 +0800179
Bin Mengdb59dd32018-06-17 05:57:53 -0700180#if !defined(CONFIG_SYS_COREBOOT) && !defined(CONFIG_EFI_STUB)
Bin Meng2f8560c2016-05-11 07:44:56 -0700181/*
Simon Glass75ece5f2020-07-16 21:22:38 -0600182 * Implement a weak default function for boards that need to do some final init
183 * before the system is ready.
Bin Meng2f8560c2016-05-11 07:44:56 -0700184 */
Simon Glass75ece5f2020-07-16 21:22:38 -0600185__weak void board_final_init(void)
Bin Meng2f8560c2016-05-11 07:44:56 -0700186{
187}
188
Bin Mengf17cea62015-04-24 18:10:04 +0800189int last_stage_init(void)
190{
Bin Meng467f4112018-07-18 21:42:16 -0700191 struct acpi_fadt __maybe_unused *fadt;
192
Simon Glass75ece5f2020-07-16 21:22:38 -0600193 board_final_init();
Bin Meng159661d2017-04-21 07:24:41 -0700194
Simon Glasse6ad2022020-07-09 18:43:16 -0600195 if (IS_ENABLED(CONFIG_HAVE_ACPI_RESUME)) {
196 fadt = acpi_find_fadt();
Bin Meng710d2152017-04-21 07:24:37 -0700197
Simon Glasse6ad2022020-07-09 18:43:16 -0600198 if (fadt && gd->arch.prev_sleep_state == ACPI_S3)
199 acpi_resume(fadt);
200 }
Bin Meng710d2152017-04-21 07:24:37 -0700201
Bin Mengf17cea62015-04-24 18:10:04 +0800202 write_tables();
203
Bin Meng467f4112018-07-18 21:42:16 -0700204#ifdef CONFIG_GENERATE_ACPI_TABLE
205 fadt = acpi_find_fadt();
206
207 /* Don't touch ACPI hardware on HW reduced platforms */
208 if (fadt && !(fadt->flags & ACPI_FADT_HW_REDUCED_ACPI)) {
209 /*
210 * Other than waiting for OSPM to request us to switch to ACPI
211 * mode, do it by ourselves, since SMI will not be triggered.
212 */
213 enter_acpi_mode(fadt->pm1a_cnt_blk);
214 }
215#endif
216
Bin Mengf17cea62015-04-24 18:10:04 +0800217 return 0;
218}
219#endif
Simon Glass02fe5e62015-04-29 22:26:01 -0600220
Simon Glass0aa7bfa2016-01-17 16:11:28 -0700221static int x86_init_cpus(void)
Simon Glass02fe5e62015-04-29 22:26:01 -0600222{
Bin Mengf967f9a2015-06-17 11:15:36 +0800223#ifdef CONFIG_SMP
224 debug("Init additional CPUs\n");
225 x86_mp_init();
Bin Meng89727762015-07-22 01:21:12 -0700226#else
227 struct udevice *dev;
228
229 /*
230 * This causes the cpu-x86 driver to be probed.
231 * We don't check return value here as we want to allow boards
232 * which have not been converted to use cpu uclass driver to boot.
233 */
234 uclass_first_device(UCLASS_CPU, &dev);
Bin Mengf967f9a2015-06-17 11:15:36 +0800235#endif
236
Simon Glass02fe5e62015-04-29 22:26:01 -0600237 return 0;
238}
239
240int cpu_init_r(void)
241{
Simon Glass00431f62016-01-17 16:11:30 -0700242 struct udevice *dev;
243 int ret;
244
Simon Glass8b8e7542020-04-26 09:12:55 -0600245 if (!ll_boot_init()) {
246 uclass_first_device(UCLASS_PCI, &dev);
Simon Glass00431f62016-01-17 16:11:30 -0700247 return 0;
Simon Glass8b8e7542020-04-26 09:12:55 -0600248 }
Simon Glass00431f62016-01-17 16:11:30 -0700249
250 ret = x86_init_cpus();
251 if (ret)
252 return ret;
253
254 /*
255 * Set up the northbridge, PCH and LPC if available. Note that these
256 * may have had some limited pre-relocation init if they were probed
257 * before relocation, but this is post relocation.
258 */
259 uclass_first_device(UCLASS_NORTHBRIDGE, &dev);
260 uclass_first_device(UCLASS_PCH, &dev);
261 uclass_first_device(UCLASS_LPC, &dev);
Simon Glass2b6d80b2015-08-04 12:34:00 -0600262
Bin Menga4559642016-06-08 05:07:38 -0700263 /* Set up pin control if available */
264 ret = syscon_get_by_driver_data(X86_SYSCON_PINCONF, &dev);
265 debug("%s, pinctrl=%p, ret=%d\n", __func__, dev, ret);
266
Simon Glass2b6d80b2015-08-04 12:34:00 -0600267 return 0;
Simon Glass02fe5e62015-04-29 22:26:01 -0600268}
Bin Meng1141fcf2016-05-11 07:45:00 -0700269
270#ifndef CONFIG_EFI_STUB
271int reserve_arch(void)
272{
Simon Glassd89f1932020-07-16 21:22:30 -0600273 struct udevice *itss;
274 int ret;
275
276 if (IS_ENABLED(CONFIG_ENABLE_MRC_CACHE))
277 mrccache_reserve();
Bin Meng1c9da372016-05-11 07:45:01 -0700278
279#ifdef CONFIG_SEABIOS
280 high_table_reserve();
Bin Meng1141fcf2016-05-11 07:45:00 -0700281#endif
Bin Meng1c9da372016-05-11 07:45:01 -0700282
Simon Glasse6ad2022020-07-09 18:43:16 -0600283 if (IS_ENABLED(CONFIG_HAVE_ACPI_RESUME)) {
284 acpi_s3_reserve();
Bin Meng353f5cb2017-04-21 07:24:47 -0700285
Simon Glasse6ad2022020-07-09 18:43:16 -0600286 if (IS_ENABLED(CONFIG_HAVE_FSP)) {
287 /*
288 * Save stack address to CMOS so that at next S3 boot,
289 * we can use it as the stack address for fsp_contiue()
290 */
291 fsp_save_s3_stack();
292 }
293 }
Simon Glassd89f1932020-07-16 21:22:30 -0600294 ret = irq_first_device_type(X86_IRQT_ITSS, &itss);
295 if (!ret) {
296 /*
297 * Snapshot the current GPIO IRQ polarities. FSP-S is about to
298 * run and will set a default policy that doesn't honour boards'
299 * requirements
300 */
301 irq_snapshot_polarities(itss);
302 }
Bin Mengcf200302017-04-21 07:24:39 -0700303
Bin Meng1c9da372016-05-11 07:45:01 -0700304 return 0;
Bin Meng1141fcf2016-05-11 07:45:00 -0700305}
306#endif
Simon Glass46f4c582020-04-30 21:21:39 -0600307
308long detect_coreboot_table_at(ulong start, ulong size)
309{
310 u32 *ptr, *end;
311
312 size /= 4;
313 for (ptr = (void *)start, end = ptr + size; ptr < end; ptr += 4) {
314 if (*ptr == 0x4f49424c) /* "LBIO" */
315 return (long)ptr;
316 }
317
318 return -ENOENT;
319}
320
321long locate_coreboot_table(void)
322{
323 long addr;
324
325 /* We look for LBIO in the first 4K of RAM and again at 960KB */
326 addr = detect_coreboot_table_at(0x0, 0x1000);
327 if (addr < 0)
328 addr = detect_coreboot_table_at(0xf0000, 0x1000);
329
330 return addr;
331}