1 // SPDX-License-Identifier: GPL-2.0+
3 * (C) Copyright 2008-2011
4 * Graeme Russ, <graeme.russ@gmail.com>
7 * Daniel Engström, Omicron Ceti AB, <daniel@omicron.se>
10 * Sysgo Real-Time Solutions, GmbH <www.elinos.com>
11 * Marius Groeger <mgroeger@sysgo.de>
14 * Sysgo Real-Time Solutions, GmbH <www.elinos.com>
15 * Alex Zuepke <azu@sysgo.de>
17 * Part of this file is adapted from coreboot
18 * src/arch/x86/lib/cpu.c
27 #include <asm/acpi_s3.h>
28 #include <asm/acpi_table.h>
29 #include <asm/control_regs.h>
30 #include <asm/coreboot_tables.h>
32 #include <asm/lapic.h>
33 #include <asm/microcode.h>
35 #include <asm/mrccache.h>
39 #include <asm/processor.h>
40 #include <asm/processor-flags.h>
41 #include <asm/interrupt.h>
42 #include <asm/tables.h>
43 #include <linux/compiler.h>
45 DECLARE_GLOBAL_DATA_PTR;
47 static 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",
60 int __weak x86_cleanup_before_linux(void)
62 #ifdef CONFIG_BOOTSTAGE_STASH
63 bootstage_stash((void *)CONFIG_BOOTSTAGE_STASH_ADDR,
64 CONFIG_BOOTSTAGE_STASH_SIZE);
70 int x86_init_cache(void)
76 int init_cache(void) __attribute__((weak, alias("x86_init_cache")));
78 int do_reset(cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[])
80 printf("resetting ...\n");
91 void flush_cache(unsigned long dummy1, unsigned long dummy2)
96 __weak void reset_cpu(ulong addr)
98 /* Do a hard reset through the chipset's reset control register */
99 outb(SYS_RST | RST_CPU, IO_PORT_RESET);
104 void x86_full_reset(void)
106 outb(FULL_RST | SYS_RST | RST_CPU, IO_PORT_RESET);
109 /* Define these functions to allow ehch-hcd to function */
110 void flush_dcache_range(unsigned long start, unsigned long stop)
114 void invalidate_dcache_range(unsigned long start, unsigned long stop)
118 void dcache_enable(void)
123 void dcache_disable(void)
128 void icache_enable(void)
132 void icache_disable(void)
136 int icache_status(void)
141 const char *cpu_vendor_name(int vendor)
144 name = "<invalid cpu vendor>";
145 if (vendor < ARRAY_SIZE(x86_vendor_name) &&
146 x86_vendor_name[vendor])
147 name = x86_vendor_name[vendor];
152 char *cpu_get_name(char *name)
154 unsigned int *name_as_ints = (unsigned int *)name;
155 struct cpuid_result regs;
159 /* This bit adds up to 48 bytes */
160 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;
167 name[CPU_MAX_NAME_LEN - 1] = '\0';
169 /* Skip leading spaces. */
177 int default_print_cpuinfo(void)
179 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);
183 #ifdef CONFIG_HAVE_ACPI_RESUME
184 debug("ACPI previous sleep state: %s\n",
185 acpi_ss_string(gd->arch.prev_sleep_state));
191 void show_boot_progress(int val)
193 outb(val, POST_PORT);
196 #if !defined(CONFIG_SYS_COREBOOT) && !defined(CONFIG_EFI_STUB)
198 * Implement a weak default function for boards that optionally
199 * need to clean up the system before jumping to the kernel.
201 __weak void board_final_cleanup(void)
205 int last_stage_init(void)
207 board_final_cleanup();
209 #if CONFIG_HAVE_ACPI_RESUME
210 struct acpi_fadt *fadt = acpi_find_fadt();
212 if (fadt != NULL && gd->arch.prev_sleep_state == ACPI_S3)
222 static int x86_init_cpus(void)
225 debug("Init additional CPUs\n");
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.
235 uclass_first_device(UCLASS_CPU, &dev);
249 ret = x86_init_cpus();
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.
258 uclass_first_device(UCLASS_NORTHBRIDGE, &dev);
259 uclass_first_device(UCLASS_PCH, &dev);
260 uclass_first_device(UCLASS_LPC, &dev);
262 /* 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);
269 #ifndef CONFIG_EFI_STUB
270 int reserve_arch(void)
272 #ifdef CONFIG_ENABLE_MRC_CACHE
276 #ifdef CONFIG_SEABIOS
277 high_table_reserve();
280 #ifdef CONFIG_HAVE_ACPI_RESUME
283 #ifdef CONFIG_HAVE_FSP
285 * Save stack address to CMOS so that at next S3 boot,
286 * we can use it as the stack address for fsp_contiue()
289 #endif /* CONFIG_HAVE_FSP */
290 #endif /* CONFIG_HAVE_ACPI_RESUME */