blob: 01dece5769c875403fd1719293064ddca3cf64a5 [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 Glass35a3f872019-12-28 10:44:56 -070029#include <init.h>
Simon Glassb95611f2020-07-16 21:22:30 -060030#include <irq.h>
Simon Glassf7ae49f2020-05-10 11:40:05 -060031#include <log.h>
Simon Glass200182a2014-10-10 08:21:55 -060032#include <malloc.h>
Bin Mengd8906c12016-06-08 05:07:38 -070033#include <syscon.h>
Simon Glass3cabcf92020-04-08 16:57:35 -060034#include <acpi/acpi_s3.h>
Simon Glass776cc202020-04-08 16:57:36 -060035#include <acpi/acpi_table.h>
Bin Menga0609a82018-07-18 21:42:15 -070036#include <asm/acpi.h>
Stefan Reinauer095593c2012-12-02 04:49:50 +000037#include <asm/control_regs.h>
Bin Mengd19c9072016-05-11 07:45:01 -070038#include <asm/coreboot_tables.h>
Simon Glass200182a2014-10-10 08:21:55 -060039#include <asm/cpu.h>
Simon Glass401d1c42020-10-30 21:38:53 -060040#include <asm/global_data.h>
Bin Meng6e6f4ce2015-06-17 11:15:36 +080041#include <asm/lapic.h>
Simon Glasse77b62e2016-03-11 22:07:11 -070042#include <asm/microcode.h>
Bin Meng6e6f4ce2015-06-17 11:15:36 +080043#include <asm/mp.h>
Bin Meng0c2b7ee2016-05-11 07:45:00 -070044#include <asm/mrccache.h>
Bin Meng43dd22f2015-07-06 16:31:30 +080045#include <asm/msr.h>
46#include <asm/mtrr.h>
Simon Glassa49e3c72014-11-12 22:42:26 -070047#include <asm/post.h>
Graeme Russc53fd2b2011-02-12 15:11:30 +110048#include <asm/processor.h>
Graeme Russ0c24c9c2011-02-12 15:11:32 +110049#include <asm/processor-flags.h>
Graeme Russ3f5f18d2008-12-07 10:29:02 +110050#include <asm/interrupt.h>
Bin Meng5e2400e2015-04-24 18:10:04 +080051#include <asm/tables.h>
Gabe Black60a9b6b2011-11-16 23:32:50 +000052#include <linux/compiler.h>
wdenk2262cfe2002-11-18 00:14:45 +000053
Bin Meng52f952b2014-11-09 22:18:56 +080054DECLARE_GLOBAL_DATA_PTR;
55
Simon Glasscaca13f2019-12-06 21:41:51 -070056#ifndef CONFIG_TPL_BUILD
Bin Meng52f952b2014-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 Glasscaca13f2019-12-06 21:41:51 -070069#endif
Bin Meng52f952b2014-11-09 22:18:56 +080070
Gabe Blackf30fc4d2012-10-20 12:33:10 +000071int __weak x86_cleanup_before_linux(void)
72{
Simon Glass99a573f2020-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 Glassee2b2432015-03-02 17:04:37 -070078 bootstage_stash((void *)CONFIG_BOOTSTAGE_STASH_ADDR,
Simon Glass79497032013-04-17 16:13:35 +000079 CONFIG_BOOTSTAGE_STASH_SIZE);
Simon Glass79497032013-04-17 16:13:35 +000080
Gabe Blackf30fc4d2012-10-20 12:33:10 +000081 return 0;
82}
83
Graeme Russd6532442011-12-27 22:46:43 +110084int x86_init_cache(void)
85{
86 enable_caches();
87
wdenk2262cfe2002-11-18 00:14:45 +000088 return 0;
89}
Graeme Russd6532442011-12-27 22:46:43 +110090int init_cache(void) __attribute__((weak, alias("x86_init_cache")));
wdenk2262cfe2002-11-18 00:14:45 +000091
Graeme Russ717979f2011-11-08 02:33:13 +000092void flush_cache(unsigned long dummy1, unsigned long dummy2)
wdenk2262cfe2002-11-18 00:14:45 +000093{
94 asm("wbinvd\n");
wdenk2262cfe2002-11-18 00:14:45 +000095}
Graeme Russ3f5f18d2008-12-07 10:29:02 +110096
Stefan Reinauer095593c2012-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 Glass89371402013-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 Glass7bddac92014-10-10 08:21:52 -0600128
Simon Glasscaca13f2019-12-06 21:41:51 -0700129#ifndef CONFIG_TPL_BUILD
Bin Meng52f952b2014-11-09 22:18:56 +0800130const char *cpu_vendor_name(int vendor)
131{
132 const char *name;
133 name = "<invalid cpu vendor>";
Heinrich Schuchardt39670c32017-11-20 19:45:56 +0100134 if (vendor < ARRAY_SIZE(x86_vendor_name) &&
135 x86_vendor_name[vendor])
Bin Meng52f952b2014-11-09 22:18:56 +0800136 name = x86_vendor_name[vendor];
137
138 return name;
139}
Simon Glasscaca13f2019-12-06 21:41:51 -0700140#endif
Bin Meng52f952b2014-11-09 22:18:56 +0800141
Simon Glass727c1a92014-11-10 18:00:26 -0700142char *cpu_get_name(char *name)
Bin Meng52f952b2014-11-09 22:18:56 +0800143{
Simon Glass727c1a92014-11-10 18:00:26 -0700144 unsigned int *name_as_ints = (unsigned int *)name;
Bin Meng52f952b2014-11-09 22:18:56 +0800145 struct cpuid_result regs;
Simon Glass727c1a92014-11-10 18:00:26 -0700146 char *ptr;
Bin Meng52f952b2014-11-09 22:18:56 +0800147 int i;
148
Simon Glass727c1a92014-11-10 18:00:26 -0700149 /* This bit adds up to 48 bytes */
Bin Meng52f952b2014-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 Glass727c1a92014-11-10 18:00:26 -0700157 name[CPU_MAX_NAME_LEN - 1] = '\0';
Bin Meng52f952b2014-11-09 22:18:56 +0800158
159 /* Skip leading spaces. */
Simon Glass727c1a92014-11-10 18:00:26 -0700160 ptr = name;
161 while (*ptr == ' ')
162 ptr++;
Bin Meng52f952b2014-11-09 22:18:56 +0800163
Simon Glass727c1a92014-11-10 18:00:26 -0700164 return ptr;
Bin Meng52f952b2014-11-09 22:18:56 +0800165}
166
Simon Glass727c1a92014-11-10 18:00:26 -0700167int default_print_cpuinfo(void)
Simon Glass92cc94a2014-10-10 08:21:54 -0600168{
Bin Meng52f952b2014-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 Glass92cc94a2014-10-10 08:21:54 -0600172
Simon Glassef5f5f62020-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 Mengb7279612017-04-21 07:24:32 -0700177
Simon Glass92cc94a2014-10-10 08:21:54 -0600178 return 0;
179}
Simon Glass200182a2014-10-10 08:21:55 -0600180
Tom Rinicb80ff22021-05-03 16:48:58 -0400181#if CONFIG_IS_ENABLED(BOOTSTAGE)
Simon Glassa49e3c72014-11-12 22:42:26 -0700182void show_boot_progress(int val)
183{
Simon Glassa49e3c72014-11-12 22:42:26 -0700184 outb(val, POST_PORT);
185}
Tom Rinicb80ff22021-05-03 16:48:58 -0400186#endif
Bin Meng5e2400e2015-04-24 18:10:04 +0800187
Bin Meng1ab2c012018-06-17 05:57:53 -0700188#if !defined(CONFIG_SYS_COREBOOT) && !defined(CONFIG_EFI_STUB)
Bin Meng1e2f7b92016-05-11 07:44:56 -0700189/*
Simon Glass4021ee62020-07-16 21:22:38 -0600190 * Implement a weak default function for boards that need to do some final init
191 * before the system is ready.
Bin Meng1e2f7b92016-05-11 07:44:56 -0700192 */
Simon Glass4021ee62020-07-16 21:22:38 -0600193__weak void board_final_init(void)
Bin Meng1e2f7b92016-05-11 07:44:56 -0700194{
195}
196
Simon Glass7c73cea2020-09-22 12:45:28 -0600197/*
198 * Implement a weak default function for boards that need to do some final
199 * processing before booting the OS.
200 */
201__weak void board_final_cleanup(void)
202{
203}
204
Bin Meng5e2400e2015-04-24 18:10:04 +0800205int last_stage_init(void)
206{
Bin Meng474a62b2018-07-18 21:42:16 -0700207 struct acpi_fadt __maybe_unused *fadt;
Simon Glass38e498c2020-11-04 09:57:18 -0700208 int ret;
Bin Meng474a62b2018-07-18 21:42:16 -0700209
Simon Glass4021ee62020-07-16 21:22:38 -0600210 board_final_init();
Bin Mengbffd7982017-04-21 07:24:41 -0700211
Simon Glassef5f5f62020-07-09 18:43:16 -0600212 if (IS_ENABLED(CONFIG_HAVE_ACPI_RESUME)) {
213 fadt = acpi_find_fadt();
Bin Meng3a34cae2017-04-21 07:24:37 -0700214
Simon Glassef5f5f62020-07-09 18:43:16 -0600215 if (fadt && gd->arch.prev_sleep_state == ACPI_S3)
216 acpi_resume(fadt);
217 }
Bin Meng3a34cae2017-04-21 07:24:37 -0700218
Simon Glass38e498c2020-11-04 09:57:18 -0700219 ret = write_tables();
220 if (ret) {
221 log_err("Failed to write tables\n");
222 return log_msg_ret("table", ret);
223 }
Bin Meng5e2400e2015-04-24 18:10:04 +0800224
Simon Glass8bccbc52020-07-17 08:48:15 -0600225 if (IS_ENABLED(CONFIG_GENERATE_ACPI_TABLE)) {
226 fadt = acpi_find_fadt();
Bin Meng474a62b2018-07-18 21:42:16 -0700227
Simon Glass8bccbc52020-07-17 08:48:15 -0600228 /* Don't touch ACPI hardware on HW reduced platforms */
229 if (fadt && !(fadt->flags & ACPI_FADT_HW_REDUCED_ACPI)) {
230 /*
231 * Other than waiting for OSPM to request us to switch
232 * to ACPI * mode, do it by ourselves, since SMI will
233 * not be triggered.
234 */
235 enter_acpi_mode(fadt->pm1a_cnt_blk);
236 }
Bin Meng474a62b2018-07-18 21:42:16 -0700237 }
Bin Meng474a62b2018-07-18 21:42:16 -0700238
Simon Glass7c73cea2020-09-22 12:45:28 -0600239 /*
240 * TODO(sjg@chromium.org): Move this to bootm_announce_and_cleanup()
241 * once APL FSP-S at 0x200000 does not overlap with the bzimage at
242 * 0x100000.
243 */
244 board_final_cleanup();
245
Bin Meng5e2400e2015-04-24 18:10:04 +0800246 return 0;
247}
248#endif
Simon Glassbcb0c612015-04-29 22:26:01 -0600249
Simon Glassafd5d502016-01-17 16:11:28 -0700250static int x86_init_cpus(void)
Simon Glassbcb0c612015-04-29 22:26:01 -0600251{
Simon Glass8bccbc52020-07-17 08:48:15 -0600252 if (IS_ENABLED(CONFIG_SMP)) {
253 debug("Init additional CPUs\n");
254 x86_mp_init();
255 } else {
256 struct udevice *dev;
Bin Mengc77b8912015-07-22 01:21:12 -0700257
Simon Glass8bccbc52020-07-17 08:48:15 -0600258 /*
259 * This causes the cpu-x86 driver to be probed.
260 * We don't check return value here as we want to allow boards
261 * which have not been converted to use cpu uclass driver to
262 * boot.
263 */
264 uclass_first_device(UCLASS_CPU, &dev);
265 }
Bin Meng6e6f4ce2015-06-17 11:15:36 +0800266
Simon Glassbcb0c612015-04-29 22:26:01 -0600267 return 0;
268}
269
270int cpu_init_r(void)
271{
Simon Glassac643e02016-01-17 16:11:30 -0700272 struct udevice *dev;
273 int ret;
274
Simon Glass526aabe2020-04-26 09:12:55 -0600275 if (!ll_boot_init()) {
276 uclass_first_device(UCLASS_PCI, &dev);
Simon Glassac643e02016-01-17 16:11:30 -0700277 return 0;
Simon Glass526aabe2020-04-26 09:12:55 -0600278 }
Simon Glassac643e02016-01-17 16:11:30 -0700279
280 ret = x86_init_cpus();
281 if (ret)
282 return ret;
283
284 /*
285 * Set up the northbridge, PCH and LPC if available. Note that these
286 * may have had some limited pre-relocation init if they were probed
287 * before relocation, but this is post relocation.
288 */
289 uclass_first_device(UCLASS_NORTHBRIDGE, &dev);
290 uclass_first_device(UCLASS_PCH, &dev);
291 uclass_first_device(UCLASS_LPC, &dev);
Simon Glasse49ccea2015-08-04 12:34:00 -0600292
Bin Mengd8906c12016-06-08 05:07:38 -0700293 /* Set up pin control if available */
294 ret = syscon_get_by_driver_data(X86_SYSCON_PINCONF, &dev);
295 debug("%s, pinctrl=%p, ret=%d\n", __func__, dev, ret);
296
Simon Glasse49ccea2015-08-04 12:34:00 -0600297 return 0;
Simon Glassbcb0c612015-04-29 22:26:01 -0600298}
Bin Meng0c2b7ee2016-05-11 07:45:00 -0700299
300#ifndef CONFIG_EFI_STUB
301int reserve_arch(void)
302{
Simon Glassb95611f2020-07-16 21:22:30 -0600303 struct udevice *itss;
304 int ret;
305
306 if (IS_ENABLED(CONFIG_ENABLE_MRC_CACHE))
307 mrccache_reserve();
Bin Mengd19c9072016-05-11 07:45:01 -0700308
Simon Glass8bccbc52020-07-17 08:48:15 -0600309 if (IS_ENABLED(CONFIG_SEABIOS))
310 high_table_reserve();
Bin Mengd19c9072016-05-11 07:45:01 -0700311
Simon Glassef5f5f62020-07-09 18:43:16 -0600312 if (IS_ENABLED(CONFIG_HAVE_ACPI_RESUME)) {
313 acpi_s3_reserve();
Bin Meng5ae5aa92017-04-21 07:24:47 -0700314
Simon Glassef5f5f62020-07-09 18:43:16 -0600315 if (IS_ENABLED(CONFIG_HAVE_FSP)) {
316 /*
317 * Save stack address to CMOS so that at next S3 boot,
318 * we can use it as the stack address for fsp_contiue()
319 */
320 fsp_save_s3_stack();
321 }
322 }
Simon Glassb95611f2020-07-16 21:22:30 -0600323 ret = irq_first_device_type(X86_IRQT_ITSS, &itss);
324 if (!ret) {
325 /*
326 * Snapshot the current GPIO IRQ polarities. FSP-S is about to
327 * run and will set a default policy that doesn't honour boards'
328 * requirements
329 */
330 irq_snapshot_polarities(itss);
331 }
Bin Mengba658082017-04-21 07:24:39 -0700332
Bin Mengd19c9072016-05-11 07:45:01 -0700333 return 0;
Bin Meng0c2b7ee2016-05-11 07:45:00 -0700334}
335#endif
Simon Glass7ec0e7b2020-04-30 21:21:39 -0600336
337long detect_coreboot_table_at(ulong start, ulong size)
338{
339 u32 *ptr, *end;
340
341 size /= 4;
342 for (ptr = (void *)start, end = ptr + size; ptr < end; ptr += 4) {
343 if (*ptr == 0x4f49424c) /* "LBIO" */
344 return (long)ptr;
345 }
346
347 return -ENOENT;
348}
349
350long locate_coreboot_table(void)
351{
352 long addr;
353
354 /* We look for LBIO in the first 4K of RAM and again at 960KB */
355 addr = detect_coreboot_table_at(0x0, 0x1000);
356 if (addr < 0)
357 addr = detect_coreboot_table_at(0xf0000, 0x1000);
358
359 return addr;
360}