blob: f8692753963d81104a3f888f4f370bbf35e081c5 [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
wdenk2262cfe2002-11-18 00:14:45 +000021#include <common.h>
Simon Glass52f24232020-05-10 11:40:00 -060022#include <bootstage.h>
wdenk2262cfe2002-11-18 00:14:45 +000023#include <command.h>
Simon Glass9edefc22019-11-14 12:57:37 -070024#include <cpu_func.h>
Bin Meng6e6f4ce2015-06-17 11:15:36 +080025#include <dm.h>
Simon Glass200182a2014-10-10 08:21:55 -060026#include <errno.h>
Simon Glass35a3f872019-12-28 10:44:56 -070027#include <init.h>
Simon Glassb95611f2020-07-16 21:22:30 -060028#include <irq.h>
Simon Glassf7ae49f2020-05-10 11:40:05 -060029#include <log.h>
Simon Glass200182a2014-10-10 08:21:55 -060030#include <malloc.h>
Bin Mengd8906c12016-06-08 05:07:38 -070031#include <syscon.h>
Simon Glass3cabcf92020-04-08 16:57:35 -060032#include <acpi/acpi_s3.h>
Simon Glass776cc202020-04-08 16:57:36 -060033#include <acpi/acpi_table.h>
Bin Menga0609a82018-07-18 21:42:15 -070034#include <asm/acpi.h>
Stefan Reinauer095593c2012-12-02 04:49:50 +000035#include <asm/control_regs.h>
Bin Mengd19c9072016-05-11 07:45:01 -070036#include <asm/coreboot_tables.h>
Simon Glass200182a2014-10-10 08:21:55 -060037#include <asm/cpu.h>
Bin Meng6e6f4ce2015-06-17 11:15:36 +080038#include <asm/lapic.h>
Simon Glasse77b62e2016-03-11 22:07:11 -070039#include <asm/microcode.h>
Bin Meng6e6f4ce2015-06-17 11:15:36 +080040#include <asm/mp.h>
Bin Meng0c2b7ee2016-05-11 07:45:00 -070041#include <asm/mrccache.h>
Bin Meng43dd22f2015-07-06 16:31:30 +080042#include <asm/msr.h>
43#include <asm/mtrr.h>
Simon Glassa49e3c72014-11-12 22:42:26 -070044#include <asm/post.h>
Graeme Russc53fd2b2011-02-12 15:11:30 +110045#include <asm/processor.h>
Graeme Russ0c24c9c2011-02-12 15:11:32 +110046#include <asm/processor-flags.h>
Graeme Russ3f5f18d2008-12-07 10:29:02 +110047#include <asm/interrupt.h>
Bin Meng5e2400e2015-04-24 18:10:04 +080048#include <asm/tables.h>
Gabe Black60a9b6b2011-11-16 23:32:50 +000049#include <linux/compiler.h>
wdenk2262cfe2002-11-18 00:14:45 +000050
Bin Meng52f952b2014-11-09 22:18:56 +080051DECLARE_GLOBAL_DATA_PTR;
52
Simon Glasscaca13f2019-12-06 21:41:51 -070053#ifndef CONFIG_TPL_BUILD
Bin Meng52f952b2014-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 Glasscaca13f2019-12-06 21:41:51 -070066#endif
Bin Meng52f952b2014-11-09 22:18:56 +080067
Gabe Blackf30fc4d2012-10-20 12:33:10 +000068int __weak x86_cleanup_before_linux(void)
69{
Simon Glass99a573f2020-07-17 08:48:20 -060070 int ret;
71
72 ret = mp_park_aps();
73 if (ret)
74 return log_msg_ret("park", ret);
Simon Glassee2b2432015-03-02 17:04:37 -070075 bootstage_stash((void *)CONFIG_BOOTSTAGE_STASH_ADDR,
Simon Glass79497032013-04-17 16:13:35 +000076 CONFIG_BOOTSTAGE_STASH_SIZE);
Simon Glass79497032013-04-17 16:13:35 +000077
Gabe Blackf30fc4d2012-10-20 12:33:10 +000078 return 0;
79}
80
Graeme Russd6532442011-12-27 22:46:43 +110081int x86_init_cache(void)
82{
83 enable_caches();
84
wdenk2262cfe2002-11-18 00:14:45 +000085 return 0;
86}
Graeme Russd6532442011-12-27 22:46:43 +110087int init_cache(void) __attribute__((weak, alias("x86_init_cache")));
wdenk2262cfe2002-11-18 00:14:45 +000088
Graeme Russ717979f2011-11-08 02:33:13 +000089void flush_cache(unsigned long dummy1, unsigned long dummy2)
wdenk2262cfe2002-11-18 00:14:45 +000090{
91 asm("wbinvd\n");
wdenk2262cfe2002-11-18 00:14:45 +000092}
Graeme Russ3f5f18d2008-12-07 10:29:02 +110093
Stefan Reinauer095593c2012-12-02 04:49:50 +000094/* Define these functions to allow ehch-hcd to function */
95void flush_dcache_range(unsigned long start, unsigned long stop)
96{
97}
98
99void invalidate_dcache_range(unsigned long start, unsigned long stop)
100{
101}
Simon Glass89371402013-02-28 19:26:11 +0000102
103void dcache_enable(void)
104{
105 enable_caches();
106}
107
108void dcache_disable(void)
109{
110 disable_caches();
111}
112
113void icache_enable(void)
114{
115}
116
117void icache_disable(void)
118{
119}
120
121int icache_status(void)
122{
123 return 1;
124}
Simon Glass7bddac92014-10-10 08:21:52 -0600125
Simon Glasscaca13f2019-12-06 21:41:51 -0700126#ifndef CONFIG_TPL_BUILD
Bin Meng52f952b2014-11-09 22:18:56 +0800127const char *cpu_vendor_name(int vendor)
128{
129 const char *name;
130 name = "<invalid cpu vendor>";
Heinrich Schuchardt39670c32017-11-20 19:45:56 +0100131 if (vendor < ARRAY_SIZE(x86_vendor_name) &&
132 x86_vendor_name[vendor])
Bin Meng52f952b2014-11-09 22:18:56 +0800133 name = x86_vendor_name[vendor];
134
135 return name;
136}
Simon Glasscaca13f2019-12-06 21:41:51 -0700137#endif
Bin Meng52f952b2014-11-09 22:18:56 +0800138
Simon Glass727c1a92014-11-10 18:00:26 -0700139char *cpu_get_name(char *name)
Bin Meng52f952b2014-11-09 22:18:56 +0800140{
Simon Glass727c1a92014-11-10 18:00:26 -0700141 unsigned int *name_as_ints = (unsigned int *)name;
Bin Meng52f952b2014-11-09 22:18:56 +0800142 struct cpuid_result regs;
Simon Glass727c1a92014-11-10 18:00:26 -0700143 char *ptr;
Bin Meng52f952b2014-11-09 22:18:56 +0800144 int i;
145
Simon Glass727c1a92014-11-10 18:00:26 -0700146 /* This bit adds up to 48 bytes */
Bin Meng52f952b2014-11-09 22:18:56 +0800147 for (i = 0; i < 3; i++) {
148 regs = cpuid(0x80000002 + i);
149 name_as_ints[i * 4 + 0] = regs.eax;
150 name_as_ints[i * 4 + 1] = regs.ebx;
151 name_as_ints[i * 4 + 2] = regs.ecx;
152 name_as_ints[i * 4 + 3] = regs.edx;
153 }
Simon Glass727c1a92014-11-10 18:00:26 -0700154 name[CPU_MAX_NAME_LEN - 1] = '\0';
Bin Meng52f952b2014-11-09 22:18:56 +0800155
156 /* Skip leading spaces. */
Simon Glass727c1a92014-11-10 18:00:26 -0700157 ptr = name;
158 while (*ptr == ' ')
159 ptr++;
Bin Meng52f952b2014-11-09 22:18:56 +0800160
Simon Glass727c1a92014-11-10 18:00:26 -0700161 return ptr;
Bin Meng52f952b2014-11-09 22:18:56 +0800162}
163
Simon Glass727c1a92014-11-10 18:00:26 -0700164int default_print_cpuinfo(void)
Simon Glass92cc94a2014-10-10 08:21:54 -0600165{
Bin Meng52f952b2014-11-09 22:18:56 +0800166 printf("CPU: %s, vendor %s, device %xh\n",
167 cpu_has_64bit() ? "x86_64" : "x86",
168 cpu_vendor_name(gd->arch.x86_vendor), gd->arch.x86_device);
Simon Glass92cc94a2014-10-10 08:21:54 -0600169
Simon Glassef5f5f62020-07-09 18:43:16 -0600170 if (IS_ENABLED(CONFIG_HAVE_ACPI_RESUME)) {
171 debug("ACPI previous sleep state: %s\n",
172 acpi_ss_string(gd->arch.prev_sleep_state));
173 }
Bin Mengb7279612017-04-21 07:24:32 -0700174
Simon Glass92cc94a2014-10-10 08:21:54 -0600175 return 0;
176}
Simon Glass200182a2014-10-10 08:21:55 -0600177
Simon Glassa49e3c72014-11-12 22:42:26 -0700178void show_boot_progress(int val)
179{
Simon Glassa49e3c72014-11-12 22:42:26 -0700180 outb(val, POST_PORT);
181}
Bin Meng5e2400e2015-04-24 18:10:04 +0800182
Bin Meng1ab2c012018-06-17 05:57:53 -0700183#if !defined(CONFIG_SYS_COREBOOT) && !defined(CONFIG_EFI_STUB)
Bin Meng1e2f7b92016-05-11 07:44:56 -0700184/*
Simon Glass4021ee62020-07-16 21:22:38 -0600185 * Implement a weak default function for boards that need to do some final init
186 * before the system is ready.
Bin Meng1e2f7b92016-05-11 07:44:56 -0700187 */
Simon Glass4021ee62020-07-16 21:22:38 -0600188__weak void board_final_init(void)
Bin Meng1e2f7b92016-05-11 07:44:56 -0700189{
190}
191
Simon Glass7c73cea2020-09-22 12:45:28 -0600192/*
193 * Implement a weak default function for boards that need to do some final
194 * processing before booting the OS.
195 */
196__weak void board_final_cleanup(void)
197{
198}
199
Bin Meng5e2400e2015-04-24 18:10:04 +0800200int last_stage_init(void)
201{
Bin Meng474a62b2018-07-18 21:42:16 -0700202 struct acpi_fadt __maybe_unused *fadt;
203
Simon Glass4021ee62020-07-16 21:22:38 -0600204 board_final_init();
Bin Mengbffd7982017-04-21 07:24:41 -0700205
Simon Glassef5f5f62020-07-09 18:43:16 -0600206 if (IS_ENABLED(CONFIG_HAVE_ACPI_RESUME)) {
207 fadt = acpi_find_fadt();
Bin Meng3a34cae2017-04-21 07:24:37 -0700208
Simon Glassef5f5f62020-07-09 18:43:16 -0600209 if (fadt && gd->arch.prev_sleep_state == ACPI_S3)
210 acpi_resume(fadt);
211 }
Bin Meng3a34cae2017-04-21 07:24:37 -0700212
Bin Meng5e2400e2015-04-24 18:10:04 +0800213 write_tables();
214
Simon Glass8bccbc52020-07-17 08:48:15 -0600215 if (IS_ENABLED(CONFIG_GENERATE_ACPI_TABLE)) {
216 fadt = acpi_find_fadt();
Bin Meng474a62b2018-07-18 21:42:16 -0700217
Simon Glass8bccbc52020-07-17 08:48:15 -0600218 /* Don't touch ACPI hardware on HW reduced platforms */
219 if (fadt && !(fadt->flags & ACPI_FADT_HW_REDUCED_ACPI)) {
220 /*
221 * Other than waiting for OSPM to request us to switch
222 * to ACPI * mode, do it by ourselves, since SMI will
223 * not be triggered.
224 */
225 enter_acpi_mode(fadt->pm1a_cnt_blk);
226 }
Bin Meng474a62b2018-07-18 21:42:16 -0700227 }
Bin Meng474a62b2018-07-18 21:42:16 -0700228
Simon Glass7c73cea2020-09-22 12:45:28 -0600229 /*
230 * TODO(sjg@chromium.org): Move this to bootm_announce_and_cleanup()
231 * once APL FSP-S at 0x200000 does not overlap with the bzimage at
232 * 0x100000.
233 */
234 board_final_cleanup();
235
Bin Meng5e2400e2015-04-24 18:10:04 +0800236 return 0;
237}
238#endif
Simon Glassbcb0c612015-04-29 22:26:01 -0600239
Simon Glassafd5d502016-01-17 16:11:28 -0700240static int x86_init_cpus(void)
Simon Glassbcb0c612015-04-29 22:26:01 -0600241{
Simon Glass8bccbc52020-07-17 08:48:15 -0600242 if (IS_ENABLED(CONFIG_SMP)) {
243 debug("Init additional CPUs\n");
244 x86_mp_init();
245 } else {
246 struct udevice *dev;
Bin Mengc77b8912015-07-22 01:21:12 -0700247
Simon Glass8bccbc52020-07-17 08:48:15 -0600248 /*
249 * This causes the cpu-x86 driver to be probed.
250 * We don't check return value here as we want to allow boards
251 * which have not been converted to use cpu uclass driver to
252 * boot.
253 */
254 uclass_first_device(UCLASS_CPU, &dev);
255 }
Bin Meng6e6f4ce2015-06-17 11:15:36 +0800256
Simon Glassbcb0c612015-04-29 22:26:01 -0600257 return 0;
258}
259
260int cpu_init_r(void)
261{
Simon Glassac643e02016-01-17 16:11:30 -0700262 struct udevice *dev;
263 int ret;
264
Simon Glass526aabe2020-04-26 09:12:55 -0600265 if (!ll_boot_init()) {
266 uclass_first_device(UCLASS_PCI, &dev);
Simon Glassac643e02016-01-17 16:11:30 -0700267 return 0;
Simon Glass526aabe2020-04-26 09:12:55 -0600268 }
Simon Glassac643e02016-01-17 16:11:30 -0700269
270 ret = x86_init_cpus();
271 if (ret)
272 return ret;
273
274 /*
275 * Set up the northbridge, PCH and LPC if available. Note that these
276 * may have had some limited pre-relocation init if they were probed
277 * before relocation, but this is post relocation.
278 */
279 uclass_first_device(UCLASS_NORTHBRIDGE, &dev);
280 uclass_first_device(UCLASS_PCH, &dev);
281 uclass_first_device(UCLASS_LPC, &dev);
Simon Glasse49ccea2015-08-04 12:34:00 -0600282
Bin Mengd8906c12016-06-08 05:07:38 -0700283 /* Set up pin control if available */
284 ret = syscon_get_by_driver_data(X86_SYSCON_PINCONF, &dev);
285 debug("%s, pinctrl=%p, ret=%d\n", __func__, dev, ret);
286
Simon Glasse49ccea2015-08-04 12:34:00 -0600287 return 0;
Simon Glassbcb0c612015-04-29 22:26:01 -0600288}
Bin Meng0c2b7ee2016-05-11 07:45:00 -0700289
290#ifndef CONFIG_EFI_STUB
291int reserve_arch(void)
292{
Simon Glassb95611f2020-07-16 21:22:30 -0600293 struct udevice *itss;
294 int ret;
295
296 if (IS_ENABLED(CONFIG_ENABLE_MRC_CACHE))
297 mrccache_reserve();
Bin Mengd19c9072016-05-11 07:45:01 -0700298
Simon Glass8bccbc52020-07-17 08:48:15 -0600299 if (IS_ENABLED(CONFIG_SEABIOS))
300 high_table_reserve();
Bin Mengd19c9072016-05-11 07:45:01 -0700301
Simon Glassef5f5f62020-07-09 18:43:16 -0600302 if (IS_ENABLED(CONFIG_HAVE_ACPI_RESUME)) {
303 acpi_s3_reserve();
Bin Meng5ae5aa92017-04-21 07:24:47 -0700304
Simon Glassef5f5f62020-07-09 18:43:16 -0600305 if (IS_ENABLED(CONFIG_HAVE_FSP)) {
306 /*
307 * Save stack address to CMOS so that at next S3 boot,
308 * we can use it as the stack address for fsp_contiue()
309 */
310 fsp_save_s3_stack();
311 }
312 }
Simon Glassb95611f2020-07-16 21:22:30 -0600313 ret = irq_first_device_type(X86_IRQT_ITSS, &itss);
314 if (!ret) {
315 /*
316 * Snapshot the current GPIO IRQ polarities. FSP-S is about to
317 * run and will set a default policy that doesn't honour boards'
318 * requirements
319 */
320 irq_snapshot_polarities(itss);
321 }
Bin Mengba658082017-04-21 07:24:39 -0700322
Bin Mengd19c9072016-05-11 07:45:01 -0700323 return 0;
Bin Meng0c2b7ee2016-05-11 07:45:00 -0700324}
325#endif
Simon Glass7ec0e7b2020-04-30 21:21:39 -0600326
327long detect_coreboot_table_at(ulong start, ulong size)
328{
329 u32 *ptr, *end;
330
331 size /= 4;
332 for (ptr = (void *)start, end = ptr + size; ptr < end; ptr += 4) {
333 if (*ptr == 0x4f49424c) /* "LBIO" */
334 return (long)ptr;
335 }
336
337 return -ENOENT;
338}
339
340long locate_coreboot_table(void)
341{
342 long addr;
343
344 /* We look for LBIO in the first 4K of RAM and again at 960KB */
345 addr = detect_coreboot_table_at(0x0, 0x1000);
346 if (addr < 0)
347 addr = detect_coreboot_table_at(0xf0000, 0x1000);
348
349 return addr;
350}