blob: e0f23bb509060c333ee44030327113d516e4399a [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 Glass463fac22014-10-10 08:21:55 -060028#include <malloc.h>
Bin Menga4559642016-06-08 05:07:38 -070029#include <syscon.h>
Simon Glass50461092020-04-08 16:57:35 -060030#include <acpi/acpi_s3.h>
Simon Glass858fed12020-04-08 16:57:36 -060031#include <acpi/acpi_table.h>
Bin Mengac630252018-07-18 21:42:15 -070032#include <asm/acpi.h>
Stefan Reinauer2acf8482012-12-02 04:49:50 +000033#include <asm/control_regs.h>
Bin Meng1c9da372016-05-11 07:45:01 -070034#include <asm/coreboot_tables.h>
Simon Glass463fac22014-10-10 08:21:55 -060035#include <asm/cpu.h>
Bin Mengf967f9a2015-06-17 11:15:36 +080036#include <asm/lapic.h>
Simon Glass8dda5872016-03-11 22:07:11 -070037#include <asm/microcode.h>
Bin Mengf967f9a2015-06-17 11:15:36 +080038#include <asm/mp.h>
Bin Meng1141fcf2016-05-11 07:45:00 -070039#include <asm/mrccache.h>
Bin Mengc45a93b2015-07-06 16:31:30 +080040#include <asm/msr.h>
41#include <asm/mtrr.h>
Simon Glass9f0afe72014-11-12 22:42:26 -070042#include <asm/post.h>
Graeme Russ25391d12011-02-12 15:11:30 +110043#include <asm/processor.h>
Graeme Russ93efcb22011-02-12 15:11:32 +110044#include <asm/processor-flags.h>
Graeme Russ278638d2008-12-07 10:29:02 +110045#include <asm/interrupt.h>
Bin Mengf17cea62015-04-24 18:10:04 +080046#include <asm/tables.h>
Gabe Black6ed18882011-11-16 23:32:50 +000047#include <linux/compiler.h>
wdenk591dda52002-11-18 00:14:45 +000048
Bin Meng035c1d22014-11-09 22:18:56 +080049DECLARE_GLOBAL_DATA_PTR;
50
Simon Glassdd45a7a2019-12-06 21:41:51 -070051#ifndef CONFIG_TPL_BUILD
Bin Meng035c1d22014-11-09 22:18:56 +080052static const char *const x86_vendor_name[] = {
53 [X86_VENDOR_INTEL] = "Intel",
54 [X86_VENDOR_CYRIX] = "Cyrix",
55 [X86_VENDOR_AMD] = "AMD",
56 [X86_VENDOR_UMC] = "UMC",
57 [X86_VENDOR_NEXGEN] = "NexGen",
58 [X86_VENDOR_CENTAUR] = "Centaur",
59 [X86_VENDOR_RISE] = "Rise",
60 [X86_VENDOR_TRANSMETA] = "Transmeta",
61 [X86_VENDOR_NSC] = "NSC",
62 [X86_VENDOR_SIS] = "SiS",
63};
Simon Glassdd45a7a2019-12-06 21:41:51 -070064#endif
Bin Meng035c1d22014-11-09 22:18:56 +080065
Gabe Black846d08e2012-10-20 12:33:10 +000066int __weak x86_cleanup_before_linux(void)
67{
Simon Glassbcc28da2013-04-17 16:13:35 +000068#ifdef CONFIG_BOOTSTAGE_STASH
Simon Glass5322d622015-03-02 17:04:37 -070069 bootstage_stash((void *)CONFIG_BOOTSTAGE_STASH_ADDR,
Simon Glassbcc28da2013-04-17 16:13:35 +000070 CONFIG_BOOTSTAGE_STASH_SIZE);
71#endif
72
Gabe Black846d08e2012-10-20 12:33:10 +000073 return 0;
74}
75
Graeme Russ6e256002011-12-27 22:46:43 +110076int x86_init_cache(void)
77{
78 enable_caches();
79
wdenk591dda52002-11-18 00:14:45 +000080 return 0;
81}
Graeme Russ6e256002011-12-27 22:46:43 +110082int init_cache(void) __attribute__((weak, alias("x86_init_cache")));
wdenk591dda52002-11-18 00:14:45 +000083
Graeme Russfdee8b12011-11-08 02:33:13 +000084void flush_cache(unsigned long dummy1, unsigned long dummy2)
wdenk591dda52002-11-18 00:14:45 +000085{
86 asm("wbinvd\n");
wdenk591dda52002-11-18 00:14:45 +000087}
Graeme Russ278638d2008-12-07 10:29:02 +110088
Stefan Reinauer2acf8482012-12-02 04:49:50 +000089/* Define these functions to allow ehch-hcd to function */
90void flush_dcache_range(unsigned long start, unsigned long stop)
91{
92}
93
94void invalidate_dcache_range(unsigned long start, unsigned long stop)
95{
96}
Simon Glass2baa3bb2013-02-28 19:26:11 +000097
98void dcache_enable(void)
99{
100 enable_caches();
101}
102
103void dcache_disable(void)
104{
105 disable_caches();
106}
107
108void icache_enable(void)
109{
110}
111
112void icache_disable(void)
113{
114}
115
116int icache_status(void)
117{
118 return 1;
119}
Simon Glassd8d9fec2014-10-10 08:21:52 -0600120
Simon Glassdd45a7a2019-12-06 21:41:51 -0700121#ifndef CONFIG_TPL_BUILD
Bin Meng035c1d22014-11-09 22:18:56 +0800122const char *cpu_vendor_name(int vendor)
123{
124 const char *name;
125 name = "<invalid cpu vendor>";
Heinrich Schuchardt5e5fe802017-11-20 19:45:56 +0100126 if (vendor < ARRAY_SIZE(x86_vendor_name) &&
127 x86_vendor_name[vendor])
Bin Meng035c1d22014-11-09 22:18:56 +0800128 name = x86_vendor_name[vendor];
Simon Glass2f2efbc2014-10-10 08:21:54 -0600129
Bin Meng035c1d22014-11-09 22:18:56 +0800130 return name;
Simon Glass2f2efbc2014-10-10 08:21:54 -0600131}
Simon Glassdd45a7a2019-12-06 21:41:51 -0700132#endif
Simon Glass2f2efbc2014-10-10 08:21:54 -0600133
Simon Glass543bb142014-11-10 18:00:26 -0700134char *cpu_get_name(char *name)
Simon Glass2f2efbc2014-10-10 08:21:54 -0600135{
Simon Glass543bb142014-11-10 18:00:26 -0700136 unsigned int *name_as_ints = (unsigned int *)name;
Bin Meng035c1d22014-11-09 22:18:56 +0800137 struct cpuid_result regs;
Simon Glass543bb142014-11-10 18:00:26 -0700138 char *ptr;
Bin Meng035c1d22014-11-09 22:18:56 +0800139 int i;
Simon Glass2f2efbc2014-10-10 08:21:54 -0600140
Simon Glass543bb142014-11-10 18:00:26 -0700141 /* This bit adds up to 48 bytes */
Bin Meng035c1d22014-11-09 22:18:56 +0800142 for (i = 0; i < 3; i++) {
143 regs = cpuid(0x80000002 + i);
144 name_as_ints[i * 4 + 0] = regs.eax;
145 name_as_ints[i * 4 + 1] = regs.ebx;
146 name_as_ints[i * 4 + 2] = regs.ecx;
147 name_as_ints[i * 4 + 3] = regs.edx;
148 }
Simon Glass543bb142014-11-10 18:00:26 -0700149 name[CPU_MAX_NAME_LEN - 1] = '\0';
Simon Glass2f2efbc2014-10-10 08:21:54 -0600150
Bin Meng035c1d22014-11-09 22:18:56 +0800151 /* Skip leading spaces. */
Simon Glass543bb142014-11-10 18:00:26 -0700152 ptr = name;
153 while (*ptr == ' ')
154 ptr++;
Bin Meng035c1d22014-11-09 22:18:56 +0800155
Simon Glass543bb142014-11-10 18:00:26 -0700156 return ptr;
Simon Glass2f2efbc2014-10-10 08:21:54 -0600157}
158
Simon Glass543bb142014-11-10 18:00:26 -0700159int default_print_cpuinfo(void)
Simon Glass2f2efbc2014-10-10 08:21:54 -0600160{
Bin Meng035c1d22014-11-09 22:18:56 +0800161 printf("CPU: %s, vendor %s, device %xh\n",
162 cpu_has_64bit() ? "x86_64" : "x86",
163 cpu_vendor_name(gd->arch.x86_vendor), gd->arch.x86_device);
Simon Glass2f2efbc2014-10-10 08:21:54 -0600164
Bin Mengef61f772017-04-21 07:24:32 -0700165#ifdef CONFIG_HAVE_ACPI_RESUME
166 debug("ACPI previous sleep state: %s\n",
167 acpi_ss_string(gd->arch.prev_sleep_state));
168#endif
169
Simon Glass2f2efbc2014-10-10 08:21:54 -0600170 return 0;
171}
Simon Glass463fac22014-10-10 08:21:55 -0600172
Simon Glass9f0afe72014-11-12 22:42:26 -0700173void show_boot_progress(int val)
174{
Simon Glass9f0afe72014-11-12 22:42:26 -0700175 outb(val, POST_PORT);
176}
Bin Mengf17cea62015-04-24 18:10:04 +0800177
Bin Mengdb59dd32018-06-17 05:57:53 -0700178#if !defined(CONFIG_SYS_COREBOOT) && !defined(CONFIG_EFI_STUB)
Bin Meng2f8560c2016-05-11 07:44:56 -0700179/*
180 * Implement a weak default function for boards that optionally
181 * need to clean up the system before jumping to the kernel.
182 */
183__weak void board_final_cleanup(void)
184{
185}
186
Bin Mengf17cea62015-04-24 18:10:04 +0800187int last_stage_init(void)
188{
Bin Meng467f4112018-07-18 21:42:16 -0700189 struct acpi_fadt __maybe_unused *fadt;
190
Bin Meng159661d2017-04-21 07:24:41 -0700191 board_final_cleanup();
192
Bin Meng467f4112018-07-18 21:42:16 -0700193#ifdef CONFIG_HAVE_ACPI_RESUME
194 fadt = acpi_find_fadt();
Bin Meng710d2152017-04-21 07:24:37 -0700195
Bin Meng467f4112018-07-18 21:42:16 -0700196 if (fadt && gd->arch.prev_sleep_state == ACPI_S3)
Bin Meng280aebe2017-04-21 07:24:44 -0700197 acpi_resume(fadt);
Bin Meng710d2152017-04-21 07:24:37 -0700198#endif
199
Bin Mengf17cea62015-04-24 18:10:04 +0800200 write_tables();
201
Bin Meng467f4112018-07-18 21:42:16 -0700202#ifdef CONFIG_GENERATE_ACPI_TABLE
203 fadt = acpi_find_fadt();
204
205 /* Don't touch ACPI hardware on HW reduced platforms */
206 if (fadt && !(fadt->flags & ACPI_FADT_HW_REDUCED_ACPI)) {
207 /*
208 * Other than waiting for OSPM to request us to switch to ACPI
209 * mode, do it by ourselves, since SMI will not be triggered.
210 */
211 enter_acpi_mode(fadt->pm1a_cnt_blk);
212 }
213#endif
214
Bin Mengf17cea62015-04-24 18:10:04 +0800215 return 0;
216}
217#endif
Simon Glass02fe5e62015-04-29 22:26:01 -0600218
Simon Glass0aa7bfa2016-01-17 16:11:28 -0700219static int x86_init_cpus(void)
Simon Glass02fe5e62015-04-29 22:26:01 -0600220{
Bin Mengf967f9a2015-06-17 11:15:36 +0800221#ifdef CONFIG_SMP
222 debug("Init additional CPUs\n");
223 x86_mp_init();
Bin Meng89727762015-07-22 01:21:12 -0700224#else
225 struct udevice *dev;
226
227 /*
228 * This causes the cpu-x86 driver to be probed.
229 * We don't check return value here as we want to allow boards
230 * which have not been converted to use cpu uclass driver to boot.
231 */
232 uclass_first_device(UCLASS_CPU, &dev);
Bin Mengf967f9a2015-06-17 11:15:36 +0800233#endif
234
Simon Glass02fe5e62015-04-29 22:26:01 -0600235 return 0;
236}
237
238int cpu_init_r(void)
239{
Simon Glass00431f62016-01-17 16:11:30 -0700240 struct udevice *dev;
241 int ret;
242
Simon Glass8b8e7542020-04-26 09:12:55 -0600243 if (!ll_boot_init()) {
244 uclass_first_device(UCLASS_PCI, &dev);
Simon Glass00431f62016-01-17 16:11:30 -0700245 return 0;
Simon Glass8b8e7542020-04-26 09:12:55 -0600246 }
Simon Glass00431f62016-01-17 16:11:30 -0700247
248 ret = x86_init_cpus();
249 if (ret)
250 return ret;
251
252 /*
253 * Set up the northbridge, PCH and LPC if available. Note that these
254 * may have had some limited pre-relocation init if they were probed
255 * before relocation, but this is post relocation.
256 */
257 uclass_first_device(UCLASS_NORTHBRIDGE, &dev);
258 uclass_first_device(UCLASS_PCH, &dev);
259 uclass_first_device(UCLASS_LPC, &dev);
Simon Glass2b6d80b2015-08-04 12:34:00 -0600260
Bin Menga4559642016-06-08 05:07:38 -0700261 /* Set up pin control if available */
262 ret = syscon_get_by_driver_data(X86_SYSCON_PINCONF, &dev);
263 debug("%s, pinctrl=%p, ret=%d\n", __func__, dev, ret);
264
Simon Glass2b6d80b2015-08-04 12:34:00 -0600265 return 0;
Simon Glass02fe5e62015-04-29 22:26:01 -0600266}
Bin Meng1141fcf2016-05-11 07:45:00 -0700267
268#ifndef CONFIG_EFI_STUB
269int reserve_arch(void)
270{
271#ifdef CONFIG_ENABLE_MRC_CACHE
Bin Meng1c9da372016-05-11 07:45:01 -0700272 mrccache_reserve();
273#endif
274
275#ifdef CONFIG_SEABIOS
276 high_table_reserve();
Bin Meng1141fcf2016-05-11 07:45:00 -0700277#endif
Bin Meng1c9da372016-05-11 07:45:01 -0700278
Bin Meng353f5cb2017-04-21 07:24:47 -0700279#ifdef CONFIG_HAVE_ACPI_RESUME
280 acpi_s3_reserve();
281
282#ifdef CONFIG_HAVE_FSP
Bin Mengcf200302017-04-21 07:24:39 -0700283 /*
284 * Save stack address to CMOS so that at next S3 boot,
285 * we can use it as the stack address for fsp_contiue()
286 */
287 fsp_save_s3_stack();
Bin Meng353f5cb2017-04-21 07:24:47 -0700288#endif /* CONFIG_HAVE_FSP */
289#endif /* CONFIG_HAVE_ACPI_RESUME */
Bin Mengcf200302017-04-21 07:24:39 -0700290
Bin Meng1c9da372016-05-11 07:45:01 -0700291 return 0;
Bin Meng1141fcf2016-05-11 07:45:00 -0700292}
293#endif
Simon Glass46f4c582020-04-30 21:21:39 -0600294
295long detect_coreboot_table_at(ulong start, ulong size)
296{
297 u32 *ptr, *end;
298
299 size /= 4;
300 for (ptr = (void *)start, end = ptr + size; ptr < end; ptr += 4) {
301 if (*ptr == 0x4f49424c) /* "LBIO" */
302 return (long)ptr;
303 }
304
305 return -ENOENT;
306}
307
308long locate_coreboot_table(void)
309{
310 long addr;
311
312 /* We look for LBIO in the first 4K of RAM and again at 960KB */
313 addr = detect_coreboot_table_at(0x0, 0x1000);
314 if (addr < 0)
315 addr = detect_coreboot_table_at(0xf0000, 0x1000);
316
317 return addr;
318}