blob: a814e7d7a649896c0c13e945dc9392bd54e543f5 [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 Glass0f2af882020-05-10 11:40:05 -060028#include <log.h>
Simon Glass463fac22014-10-10 08:21:55 -060029#include <malloc.h>
Bin Menga4559642016-06-08 05:07:38 -070030#include <syscon.h>
Simon Glass50461092020-04-08 16:57:35 -060031#include <acpi/acpi_s3.h>
Simon Glass858fed12020-04-08 16:57:36 -060032#include <acpi/acpi_table.h>
Bin Mengac630252018-07-18 21:42:15 -070033#include <asm/acpi.h>
Stefan Reinauer2acf8482012-12-02 04:49:50 +000034#include <asm/control_regs.h>
Bin Meng1c9da372016-05-11 07:45:01 -070035#include <asm/coreboot_tables.h>
Simon Glass463fac22014-10-10 08:21:55 -060036#include <asm/cpu.h>
Bin Mengf967f9a2015-06-17 11:15:36 +080037#include <asm/lapic.h>
Simon Glass8dda5872016-03-11 22:07:11 -070038#include <asm/microcode.h>
Bin Mengf967f9a2015-06-17 11:15:36 +080039#include <asm/mp.h>
Bin Meng1141fcf2016-05-11 07:45:00 -070040#include <asm/mrccache.h>
Bin Mengc45a93b2015-07-06 16:31:30 +080041#include <asm/msr.h>
42#include <asm/mtrr.h>
Simon Glass9f0afe72014-11-12 22:42:26 -070043#include <asm/post.h>
Graeme Russ25391d12011-02-12 15:11:30 +110044#include <asm/processor.h>
Graeme Russ93efcb22011-02-12 15:11:32 +110045#include <asm/processor-flags.h>
Graeme Russ278638d2008-12-07 10:29:02 +110046#include <asm/interrupt.h>
Bin Mengf17cea62015-04-24 18:10:04 +080047#include <asm/tables.h>
Gabe Black6ed18882011-11-16 23:32:50 +000048#include <linux/compiler.h>
wdenk591dda52002-11-18 00:14:45 +000049
Bin Meng035c1d22014-11-09 22:18:56 +080050DECLARE_GLOBAL_DATA_PTR;
51
Simon Glassdd45a7a2019-12-06 21:41:51 -070052#ifndef CONFIG_TPL_BUILD
Bin Meng035c1d22014-11-09 22:18:56 +080053static const char *const x86_vendor_name[] = {
54 [X86_VENDOR_INTEL] = "Intel",
55 [X86_VENDOR_CYRIX] = "Cyrix",
56 [X86_VENDOR_AMD] = "AMD",
57 [X86_VENDOR_UMC] = "UMC",
58 [X86_VENDOR_NEXGEN] = "NexGen",
59 [X86_VENDOR_CENTAUR] = "Centaur",
60 [X86_VENDOR_RISE] = "Rise",
61 [X86_VENDOR_TRANSMETA] = "Transmeta",
62 [X86_VENDOR_NSC] = "NSC",
63 [X86_VENDOR_SIS] = "SiS",
64};
Simon Glassdd45a7a2019-12-06 21:41:51 -070065#endif
Bin Meng035c1d22014-11-09 22:18:56 +080066
Gabe Black846d08e2012-10-20 12:33:10 +000067int __weak x86_cleanup_before_linux(void)
68{
Simon Glassbcc28da2013-04-17 16:13:35 +000069#ifdef CONFIG_BOOTSTAGE_STASH
Simon Glass5322d622015-03-02 17:04:37 -070070 bootstage_stash((void *)CONFIG_BOOTSTAGE_STASH_ADDR,
Simon Glassbcc28da2013-04-17 16:13:35 +000071 CONFIG_BOOTSTAGE_STASH_SIZE);
72#endif
73
Gabe Black846d08e2012-10-20 12:33:10 +000074 return 0;
75}
76
Graeme Russ6e256002011-12-27 22:46:43 +110077int x86_init_cache(void)
78{
79 enable_caches();
80
wdenk591dda52002-11-18 00:14:45 +000081 return 0;
82}
Graeme Russ6e256002011-12-27 22:46:43 +110083int init_cache(void) __attribute__((weak, alias("x86_init_cache")));
wdenk591dda52002-11-18 00:14:45 +000084
Graeme Russfdee8b12011-11-08 02:33:13 +000085void flush_cache(unsigned long dummy1, unsigned long dummy2)
wdenk591dda52002-11-18 00:14:45 +000086{
87 asm("wbinvd\n");
wdenk591dda52002-11-18 00:14:45 +000088}
Graeme Russ278638d2008-12-07 10:29:02 +110089
Stefan Reinauer2acf8482012-12-02 04:49:50 +000090/* Define these functions to allow ehch-hcd to function */
91void flush_dcache_range(unsigned long start, unsigned long stop)
92{
93}
94
95void invalidate_dcache_range(unsigned long start, unsigned long stop)
96{
97}
Simon Glass2baa3bb2013-02-28 19:26:11 +000098
99void dcache_enable(void)
100{
101 enable_caches();
102}
103
104void dcache_disable(void)
105{
106 disable_caches();
107}
108
109void icache_enable(void)
110{
111}
112
113void icache_disable(void)
114{
115}
116
117int icache_status(void)
118{
119 return 1;
120}
Simon Glassd8d9fec2014-10-10 08:21:52 -0600121
Simon Glassdd45a7a2019-12-06 21:41:51 -0700122#ifndef CONFIG_TPL_BUILD
Bin Meng035c1d22014-11-09 22:18:56 +0800123const char *cpu_vendor_name(int vendor)
124{
125 const char *name;
126 name = "<invalid cpu vendor>";
Heinrich Schuchardt5e5fe802017-11-20 19:45:56 +0100127 if (vendor < ARRAY_SIZE(x86_vendor_name) &&
128 x86_vendor_name[vendor])
Bin Meng035c1d22014-11-09 22:18:56 +0800129 name = x86_vendor_name[vendor];
Simon Glass2f2efbc2014-10-10 08:21:54 -0600130
Bin Meng035c1d22014-11-09 22:18:56 +0800131 return name;
Simon Glass2f2efbc2014-10-10 08:21:54 -0600132}
Simon Glassdd45a7a2019-12-06 21:41:51 -0700133#endif
Simon Glass2f2efbc2014-10-10 08:21:54 -0600134
Simon Glass543bb142014-11-10 18:00:26 -0700135char *cpu_get_name(char *name)
Simon Glass2f2efbc2014-10-10 08:21:54 -0600136{
Simon Glass543bb142014-11-10 18:00:26 -0700137 unsigned int *name_as_ints = (unsigned int *)name;
Bin Meng035c1d22014-11-09 22:18:56 +0800138 struct cpuid_result regs;
Simon Glass543bb142014-11-10 18:00:26 -0700139 char *ptr;
Bin Meng035c1d22014-11-09 22:18:56 +0800140 int i;
Simon Glass2f2efbc2014-10-10 08:21:54 -0600141
Simon Glass543bb142014-11-10 18:00:26 -0700142 /* This bit adds up to 48 bytes */
Bin Meng035c1d22014-11-09 22:18:56 +0800143 for (i = 0; i < 3; i++) {
144 regs = cpuid(0x80000002 + i);
145 name_as_ints[i * 4 + 0] = regs.eax;
146 name_as_ints[i * 4 + 1] = regs.ebx;
147 name_as_ints[i * 4 + 2] = regs.ecx;
148 name_as_ints[i * 4 + 3] = regs.edx;
149 }
Simon Glass543bb142014-11-10 18:00:26 -0700150 name[CPU_MAX_NAME_LEN - 1] = '\0';
Simon Glass2f2efbc2014-10-10 08:21:54 -0600151
Bin Meng035c1d22014-11-09 22:18:56 +0800152 /* Skip leading spaces. */
Simon Glass543bb142014-11-10 18:00:26 -0700153 ptr = name;
154 while (*ptr == ' ')
155 ptr++;
Bin Meng035c1d22014-11-09 22:18:56 +0800156
Simon Glass543bb142014-11-10 18:00:26 -0700157 return ptr;
Simon Glass2f2efbc2014-10-10 08:21:54 -0600158}
159
Simon Glass543bb142014-11-10 18:00:26 -0700160int default_print_cpuinfo(void)
Simon Glass2f2efbc2014-10-10 08:21:54 -0600161{
Bin Meng035c1d22014-11-09 22:18:56 +0800162 printf("CPU: %s, vendor %s, device %xh\n",
163 cpu_has_64bit() ? "x86_64" : "x86",
164 cpu_vendor_name(gd->arch.x86_vendor), gd->arch.x86_device);
Simon Glass2f2efbc2014-10-10 08:21:54 -0600165
Bin Mengef61f772017-04-21 07:24:32 -0700166#ifdef CONFIG_HAVE_ACPI_RESUME
167 debug("ACPI previous sleep state: %s\n",
168 acpi_ss_string(gd->arch.prev_sleep_state));
169#endif
170
Simon Glass2f2efbc2014-10-10 08:21:54 -0600171 return 0;
172}
Simon Glass463fac22014-10-10 08:21:55 -0600173
Simon Glass9f0afe72014-11-12 22:42:26 -0700174void show_boot_progress(int val)
175{
Simon Glass9f0afe72014-11-12 22:42:26 -0700176 outb(val, POST_PORT);
177}
Bin Mengf17cea62015-04-24 18:10:04 +0800178
Bin Mengdb59dd32018-06-17 05:57:53 -0700179#if !defined(CONFIG_SYS_COREBOOT) && !defined(CONFIG_EFI_STUB)
Bin Meng2f8560c2016-05-11 07:44:56 -0700180/*
181 * Implement a weak default function for boards that optionally
182 * need to clean up the system before jumping to the kernel.
183 */
184__weak void board_final_cleanup(void)
185{
186}
187
Bin Mengf17cea62015-04-24 18:10:04 +0800188int last_stage_init(void)
189{
Bin Meng467f4112018-07-18 21:42:16 -0700190 struct acpi_fadt __maybe_unused *fadt;
191
Bin Meng159661d2017-04-21 07:24:41 -0700192 board_final_cleanup();
193
Bin Meng467f4112018-07-18 21:42:16 -0700194#ifdef CONFIG_HAVE_ACPI_RESUME
195 fadt = acpi_find_fadt();
Bin Meng710d2152017-04-21 07:24:37 -0700196
Bin Meng467f4112018-07-18 21:42:16 -0700197 if (fadt && gd->arch.prev_sleep_state == ACPI_S3)
Bin Meng280aebe2017-04-21 07:24:44 -0700198 acpi_resume(fadt);
Bin Meng710d2152017-04-21 07:24:37 -0700199#endif
200
Bin Mengf17cea62015-04-24 18:10:04 +0800201 write_tables();
202
Bin Meng467f4112018-07-18 21:42:16 -0700203#ifdef CONFIG_GENERATE_ACPI_TABLE
204 fadt = acpi_find_fadt();
205
206 /* Don't touch ACPI hardware on HW reduced platforms */
207 if (fadt && !(fadt->flags & ACPI_FADT_HW_REDUCED_ACPI)) {
208 /*
209 * Other than waiting for OSPM to request us to switch to ACPI
210 * mode, do it by ourselves, since SMI will not be triggered.
211 */
212 enter_acpi_mode(fadt->pm1a_cnt_blk);
213 }
214#endif
215
Bin Mengf17cea62015-04-24 18:10:04 +0800216 return 0;
217}
218#endif
Simon Glass02fe5e62015-04-29 22:26:01 -0600219
Simon Glass0aa7bfa2016-01-17 16:11:28 -0700220static int x86_init_cpus(void)
Simon Glass02fe5e62015-04-29 22:26:01 -0600221{
Bin Mengf967f9a2015-06-17 11:15:36 +0800222#ifdef CONFIG_SMP
223 debug("Init additional CPUs\n");
224 x86_mp_init();
Bin Meng89727762015-07-22 01:21:12 -0700225#else
226 struct udevice *dev;
227
228 /*
229 * This causes the cpu-x86 driver to be probed.
230 * We don't check return value here as we want to allow boards
231 * which have not been converted to use cpu uclass driver to boot.
232 */
233 uclass_first_device(UCLASS_CPU, &dev);
Bin Mengf967f9a2015-06-17 11:15:36 +0800234#endif
235
Simon Glass02fe5e62015-04-29 22:26:01 -0600236 return 0;
237}
238
239int cpu_init_r(void)
240{
Simon Glass00431f62016-01-17 16:11:30 -0700241 struct udevice *dev;
242 int ret;
243
Simon Glass8b8e7542020-04-26 09:12:55 -0600244 if (!ll_boot_init()) {
245 uclass_first_device(UCLASS_PCI, &dev);
Simon Glass00431f62016-01-17 16:11:30 -0700246 return 0;
Simon Glass8b8e7542020-04-26 09:12:55 -0600247 }
Simon Glass00431f62016-01-17 16:11:30 -0700248
249 ret = x86_init_cpus();
250 if (ret)
251 return ret;
252
253 /*
254 * Set up the northbridge, PCH and LPC if available. Note that these
255 * may have had some limited pre-relocation init if they were probed
256 * before relocation, but this is post relocation.
257 */
258 uclass_first_device(UCLASS_NORTHBRIDGE, &dev);
259 uclass_first_device(UCLASS_PCH, &dev);
260 uclass_first_device(UCLASS_LPC, &dev);
Simon Glass2b6d80b2015-08-04 12:34:00 -0600261
Bin Menga4559642016-06-08 05:07:38 -0700262 /* Set up pin control if available */
263 ret = syscon_get_by_driver_data(X86_SYSCON_PINCONF, &dev);
264 debug("%s, pinctrl=%p, ret=%d\n", __func__, dev, ret);
265
Simon Glass2b6d80b2015-08-04 12:34:00 -0600266 return 0;
Simon Glass02fe5e62015-04-29 22:26:01 -0600267}
Bin Meng1141fcf2016-05-11 07:45:00 -0700268
269#ifndef CONFIG_EFI_STUB
270int reserve_arch(void)
271{
272#ifdef CONFIG_ENABLE_MRC_CACHE
Bin Meng1c9da372016-05-11 07:45:01 -0700273 mrccache_reserve();
274#endif
275
276#ifdef CONFIG_SEABIOS
277 high_table_reserve();
Bin Meng1141fcf2016-05-11 07:45:00 -0700278#endif
Bin Meng1c9da372016-05-11 07:45:01 -0700279
Bin Meng353f5cb2017-04-21 07:24:47 -0700280#ifdef CONFIG_HAVE_ACPI_RESUME
281 acpi_s3_reserve();
282
283#ifdef CONFIG_HAVE_FSP
Bin Mengcf200302017-04-21 07:24:39 -0700284 /*
285 * Save stack address to CMOS so that at next S3 boot,
286 * we can use it as the stack address for fsp_contiue()
287 */
288 fsp_save_s3_stack();
Bin Meng353f5cb2017-04-21 07:24:47 -0700289#endif /* CONFIG_HAVE_FSP */
290#endif /* CONFIG_HAVE_ACPI_RESUME */
Bin Mengcf200302017-04-21 07:24:39 -0700291
Bin Meng1c9da372016-05-11 07:45:01 -0700292 return 0;
Bin Meng1141fcf2016-05-11 07:45:00 -0700293}
294#endif
Simon Glass46f4c582020-04-30 21:21:39 -0600295
296long detect_coreboot_table_at(ulong start, ulong size)
297{
298 u32 *ptr, *end;
299
300 size /= 4;
301 for (ptr = (void *)start, end = ptr + size; ptr < end; ptr += 4) {
302 if (*ptr == 0x4f49424c) /* "LBIO" */
303 return (long)ptr;
304 }
305
306 return -ENOENT;
307}
308
309long locate_coreboot_table(void)
310{
311 long addr;
312
313 /* We look for LBIO in the first 4K of RAM and again at 960KB */
314 addr = detect_coreboot_table_at(0x0, 0x1000);
315 if (addr < 0)
316 addr = detect_coreboot_table_at(0xf0000, 0x1000);
317
318 return addr;
319}