blob: db36553d059b411ecf08efdc45e92b1260222c66 [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>
22#include <command.h>
Bin Meng6e6f4ce2015-06-17 11:15:36 +080023#include <dm.h>
Simon Glass200182a2014-10-10 08:21:55 -060024#include <errno.h>
25#include <malloc.h>
Bin Mengd8906c12016-06-08 05:07:38 -070026#include <syscon.h>
Bin Mengb7279612017-04-21 07:24:32 -070027#include <asm/acpi_s3.h>
Bin Meng3a34cae2017-04-21 07:24:37 -070028#include <asm/acpi_table.h>
Stefan Reinauer095593c2012-12-02 04:49:50 +000029#include <asm/control_regs.h>
Bin Mengd19c9072016-05-11 07:45:01 -070030#include <asm/coreboot_tables.h>
Simon Glass200182a2014-10-10 08:21:55 -060031#include <asm/cpu.h>
Bin Meng6e6f4ce2015-06-17 11:15:36 +080032#include <asm/lapic.h>
Simon Glasse77b62e2016-03-11 22:07:11 -070033#include <asm/microcode.h>
Bin Meng6e6f4ce2015-06-17 11:15:36 +080034#include <asm/mp.h>
Bin Meng0c2b7ee2016-05-11 07:45:00 -070035#include <asm/mrccache.h>
Bin Meng43dd22f2015-07-06 16:31:30 +080036#include <asm/msr.h>
37#include <asm/mtrr.h>
Simon Glassa49e3c72014-11-12 22:42:26 -070038#include <asm/post.h>
Graeme Russc53fd2b2011-02-12 15:11:30 +110039#include <asm/processor.h>
Graeme Russ0c24c9c2011-02-12 15:11:32 +110040#include <asm/processor-flags.h>
Graeme Russ3f5f18d2008-12-07 10:29:02 +110041#include <asm/interrupt.h>
Bin Meng5e2400e2015-04-24 18:10:04 +080042#include <asm/tables.h>
Gabe Black60a9b6b2011-11-16 23:32:50 +000043#include <linux/compiler.h>
wdenk2262cfe2002-11-18 00:14:45 +000044
Bin Meng52f952b2014-11-09 22:18:56 +080045DECLARE_GLOBAL_DATA_PTR;
46
Bin Meng52f952b2014-11-09 22:18:56 +080047static const char *const x86_vendor_name[] = {
48 [X86_VENDOR_INTEL] = "Intel",
49 [X86_VENDOR_CYRIX] = "Cyrix",
50 [X86_VENDOR_AMD] = "AMD",
51 [X86_VENDOR_UMC] = "UMC",
52 [X86_VENDOR_NEXGEN] = "NexGen",
53 [X86_VENDOR_CENTAUR] = "Centaur",
54 [X86_VENDOR_RISE] = "Rise",
55 [X86_VENDOR_TRANSMETA] = "Transmeta",
56 [X86_VENDOR_NSC] = "NSC",
57 [X86_VENDOR_SIS] = "SiS",
58};
59
Gabe Blackf30fc4d2012-10-20 12:33:10 +000060int __weak x86_cleanup_before_linux(void)
61{
Simon Glass79497032013-04-17 16:13:35 +000062#ifdef CONFIG_BOOTSTAGE_STASH
Simon Glassee2b2432015-03-02 17:04:37 -070063 bootstage_stash((void *)CONFIG_BOOTSTAGE_STASH_ADDR,
Simon Glass79497032013-04-17 16:13:35 +000064 CONFIG_BOOTSTAGE_STASH_SIZE);
65#endif
66
Gabe Blackf30fc4d2012-10-20 12:33:10 +000067 return 0;
68}
69
Graeme Russd6532442011-12-27 22:46:43 +110070int x86_init_cache(void)
71{
72 enable_caches();
73
wdenk2262cfe2002-11-18 00:14:45 +000074 return 0;
75}
Graeme Russd6532442011-12-27 22:46:43 +110076int init_cache(void) __attribute__((weak, alias("x86_init_cache")));
wdenk2262cfe2002-11-18 00:14:45 +000077
Wolfgang Denk54841ab2010-06-28 22:00:46 +020078int do_reset(cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[])
wdenk2262cfe2002-11-18 00:14:45 +000079{
Graeme Russ717979f2011-11-08 02:33:13 +000080 printf("resetting ...\n");
Graeme Russdbf71152011-04-13 19:43:26 +100081
82 /* wait 50 ms */
83 udelay(50000);
wdenk2262cfe2002-11-18 00:14:45 +000084 disable_interrupts();
85 reset_cpu(0);
86
87 /*NOTREACHED*/
88 return 0;
89}
90
Graeme Russ717979f2011-11-08 02:33:13 +000091void flush_cache(unsigned long dummy1, unsigned long dummy2)
wdenk2262cfe2002-11-18 00:14:45 +000092{
93 asm("wbinvd\n");
wdenk2262cfe2002-11-18 00:14:45 +000094}
Graeme Russ3f5f18d2008-12-07 10:29:02 +110095
Simon Glasse1ffd812014-11-06 13:20:08 -070096__weak void reset_cpu(ulong addr)
Graeme Russ3f5f18d2008-12-07 10:29:02 +110097{
Simon Glassff6a8f32015-04-28 20:11:29 -060098 /* Do a hard reset through the chipset's reset control register */
Simon Glass2a605d42016-03-11 22:06:59 -070099 outb(SYS_RST | RST_CPU, IO_PORT_RESET);
Simon Glassff6a8f32015-04-28 20:11:29 -0600100 for (;;)
101 cpu_hlt();
102}
103
104void x86_full_reset(void)
105{
Simon Glass2a605d42016-03-11 22:06:59 -0700106 outb(FULL_RST | SYS_RST | RST_CPU, IO_PORT_RESET);
Graeme Russ3f5f18d2008-12-07 10:29:02 +1100107}
Stefan Reinauer095593c2012-12-02 04:49:50 +0000108
Stefan Reinauer095593c2012-12-02 04:49:50 +0000109/* Define these functions to allow ehch-hcd to function */
110void flush_dcache_range(unsigned long start, unsigned long stop)
111{
112}
113
114void invalidate_dcache_range(unsigned long start, unsigned long stop)
115{
116}
Simon Glass89371402013-02-28 19:26:11 +0000117
118void dcache_enable(void)
119{
120 enable_caches();
121}
122
123void dcache_disable(void)
124{
125 disable_caches();
126}
127
128void icache_enable(void)
129{
130}
131
132void icache_disable(void)
133{
134}
135
136int icache_status(void)
137{
138 return 1;
139}
Simon Glass7bddac92014-10-10 08:21:52 -0600140
Bin Meng52f952b2014-11-09 22:18:56 +0800141const char *cpu_vendor_name(int vendor)
142{
143 const char *name;
144 name = "<invalid cpu vendor>";
Heinrich Schuchardt39670c32017-11-20 19:45:56 +0100145 if (vendor < ARRAY_SIZE(x86_vendor_name) &&
146 x86_vendor_name[vendor])
Bin Meng52f952b2014-11-09 22:18:56 +0800147 name = x86_vendor_name[vendor];
148
149 return name;
150}
151
Simon Glass727c1a92014-11-10 18:00:26 -0700152char *cpu_get_name(char *name)
Bin Meng52f952b2014-11-09 22:18:56 +0800153{
Simon Glass727c1a92014-11-10 18:00:26 -0700154 unsigned int *name_as_ints = (unsigned int *)name;
Bin Meng52f952b2014-11-09 22:18:56 +0800155 struct cpuid_result regs;
Simon Glass727c1a92014-11-10 18:00:26 -0700156 char *ptr;
Bin Meng52f952b2014-11-09 22:18:56 +0800157 int i;
158
Simon Glass727c1a92014-11-10 18:00:26 -0700159 /* This bit adds up to 48 bytes */
Bin Meng52f952b2014-11-09 22:18:56 +0800160 for (i = 0; i < 3; i++) {
161 regs = cpuid(0x80000002 + i);
162 name_as_ints[i * 4 + 0] = regs.eax;
163 name_as_ints[i * 4 + 1] = regs.ebx;
164 name_as_ints[i * 4 + 2] = regs.ecx;
165 name_as_ints[i * 4 + 3] = regs.edx;
166 }
Simon Glass727c1a92014-11-10 18:00:26 -0700167 name[CPU_MAX_NAME_LEN - 1] = '\0';
Bin Meng52f952b2014-11-09 22:18:56 +0800168
169 /* Skip leading spaces. */
Simon Glass727c1a92014-11-10 18:00:26 -0700170 ptr = name;
171 while (*ptr == ' ')
172 ptr++;
Bin Meng52f952b2014-11-09 22:18:56 +0800173
Simon Glass727c1a92014-11-10 18:00:26 -0700174 return ptr;
Bin Meng52f952b2014-11-09 22:18:56 +0800175}
176
Simon Glass727c1a92014-11-10 18:00:26 -0700177int default_print_cpuinfo(void)
Simon Glass92cc94a2014-10-10 08:21:54 -0600178{
Bin Meng52f952b2014-11-09 22:18:56 +0800179 printf("CPU: %s, vendor %s, device %xh\n",
180 cpu_has_64bit() ? "x86_64" : "x86",
181 cpu_vendor_name(gd->arch.x86_vendor), gd->arch.x86_device);
Simon Glass92cc94a2014-10-10 08:21:54 -0600182
Bin Mengb7279612017-04-21 07:24:32 -0700183#ifdef CONFIG_HAVE_ACPI_RESUME
184 debug("ACPI previous sleep state: %s\n",
185 acpi_ss_string(gd->arch.prev_sleep_state));
186#endif
187
Simon Glass92cc94a2014-10-10 08:21:54 -0600188 return 0;
189}
Simon Glass200182a2014-10-10 08:21:55 -0600190
Simon Glassa49e3c72014-11-12 22:42:26 -0700191void show_boot_progress(int val)
192{
Simon Glassa49e3c72014-11-12 22:42:26 -0700193 outb(val, POST_PORT);
194}
Bin Meng5e2400e2015-04-24 18:10:04 +0800195
196#ifndef CONFIG_SYS_COREBOOT
Bin Meng1e2f7b92016-05-11 07:44:56 -0700197/*
198 * Implement a weak default function for boards that optionally
199 * need to clean up the system before jumping to the kernel.
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 Mengbffd7982017-04-21 07:24:41 -0700207 board_final_cleanup();
208
Bin Meng3a34cae2017-04-21 07:24:37 -0700209#if CONFIG_HAVE_ACPI_RESUME
Bin Meng0f4e2582017-04-21 07:24:44 -0700210 struct acpi_fadt *fadt = acpi_find_fadt();
Bin Meng3a34cae2017-04-21 07:24:37 -0700211
Bin Meng0f4e2582017-04-21 07:24:44 -0700212 if (fadt != NULL && gd->arch.prev_sleep_state == ACPI_S3)
213 acpi_resume(fadt);
Bin Meng3a34cae2017-04-21 07:24:37 -0700214#endif
215
Bin Meng5e2400e2015-04-24 18:10:04 +0800216 write_tables();
217
218 return 0;
219}
220#endif
Simon Glassbcb0c612015-04-29 22:26:01 -0600221
Simon Glassafd5d502016-01-17 16:11:28 -0700222static int x86_init_cpus(void)
Simon Glassbcb0c612015-04-29 22:26:01 -0600223{
Bin Meng6e6f4ce2015-06-17 11:15:36 +0800224#ifdef CONFIG_SMP
225 debug("Init additional CPUs\n");
226 x86_mp_init();
Bin Mengc77b8912015-07-22 01:21:12 -0700227#else
228 struct udevice *dev;
229
230 /*
231 * This causes the cpu-x86 driver to be probed.
232 * We don't check return value here as we want to allow boards
233 * which have not been converted to use cpu uclass driver to boot.
234 */
235 uclass_first_device(UCLASS_CPU, &dev);
Bin Meng6e6f4ce2015-06-17 11:15:36 +0800236#endif
237
Simon Glassbcb0c612015-04-29 22:26:01 -0600238 return 0;
239}
240
241int cpu_init_r(void)
242{
Simon Glassac643e02016-01-17 16:11:30 -0700243 struct udevice *dev;
244 int ret;
245
246 if (!ll_boot_init())
247 return 0;
248
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 Glasse49ccea2015-08-04 12:34:00 -0600261
Bin Mengd8906c12016-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 Glasse49ccea2015-08-04 12:34:00 -0600266 return 0;
Simon Glassbcb0c612015-04-29 22:26:01 -0600267}
Bin Meng0c2b7ee2016-05-11 07:45:00 -0700268
269#ifndef CONFIG_EFI_STUB
270int reserve_arch(void)
271{
272#ifdef CONFIG_ENABLE_MRC_CACHE
Bin Mengd19c9072016-05-11 07:45:01 -0700273 mrccache_reserve();
Bin Meng0c2b7ee2016-05-11 07:45:00 -0700274#endif
Bin Mengd19c9072016-05-11 07:45:01 -0700275
276#ifdef CONFIG_SEABIOS
277 high_table_reserve();
278#endif
279
Bin Meng5ae5aa92017-04-21 07:24:47 -0700280#ifdef CONFIG_HAVE_ACPI_RESUME
281 acpi_s3_reserve();
282
283#ifdef CONFIG_HAVE_FSP
Bin Mengba658082017-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 Meng5ae5aa92017-04-21 07:24:47 -0700289#endif /* CONFIG_HAVE_FSP */
290#endif /* CONFIG_HAVE_ACPI_RESUME */
Bin Mengba658082017-04-21 07:24:39 -0700291
Bin Mengd19c9072016-05-11 07:45:01 -0700292 return 0;
Bin Meng0c2b7ee2016-05-11 07:45:00 -0700293}
294#endif