]> Git Repo - u-boot.git/blame - arch/x86/cpu/cpu.c
common: Drop asm/global_data.h from common header
[u-boot.git] / arch / x86 / cpu / cpu.c
CommitLineData
83d290c5 1// SPDX-License-Identifier: GPL-2.0+
2262cfee 2/*
dbf7115a
GR
3 * (C) Copyright 2008-2011
4 * Graeme Russ, <[email protected]>
5 *
2262cfee 6 * (C) Copyright 2002
fa82f871 7 * Daniel Engström, Omicron Ceti AB, <[email protected]>
8bde7f77 8 *
2262cfee
WD
9 * (C) Copyright 2002
10 * Sysgo Real-Time Solutions, GmbH <www.elinos.com>
11 * Marius Groeger <[email protected]>
12 *
13 * (C) Copyright 2002
14 * Sysgo Real-Time Solutions, GmbH <www.elinos.com>
15 * Alex Zuepke <[email protected]>
16 *
52f952bf
BM
17 * Part of this file is adapted from coreboot
18 * src/arch/x86/lib/cpu.c
2262cfee
WD
19 */
20
38e498c3
SG
21#define LOG_CATEGORY UCLASS_CPU
22
2262cfee 23#include <common.h>
52f24238 24#include <bootstage.h>
2262cfee 25#include <command.h>
9edefc27 26#include <cpu_func.h>
6e6f4ce4 27#include <dm.h>
200182a7 28#include <errno.h>
35a3f871 29#include <init.h>
b95611f6 30#include <irq.h>
f7ae49fc 31#include <log.h>
200182a7 32#include <malloc.h>
d8906c1f 33#include <syscon.h>
3cabcf96 34#include <acpi/acpi_s3.h>
776cc201 35#include <acpi/acpi_table.h>
a0609a8d 36#include <asm/acpi.h>
095593c0 37#include <asm/control_regs.h>
d19c9074 38#include <asm/coreboot_tables.h>
200182a7 39#include <asm/cpu.h>
401d1c4f 40#include <asm/global_data.h>
6e6f4ce4 41#include <asm/lapic.h>
e77b62e2 42#include <asm/microcode.h>
6e6f4ce4 43#include <asm/mp.h>
0c2b7eef 44#include <asm/mrccache.h>
43dd22f5
BM
45#include <asm/msr.h>
46#include <asm/mtrr.h>
a49e3c7f 47#include <asm/post.h>
c53fd2bb 48#include <asm/processor.h>
0c24c9cc 49#include <asm/processor-flags.h>
3f5f18d1 50#include <asm/interrupt.h>
5e2400e8 51#include <asm/tables.h>
60a9b6bf 52#include <linux/compiler.h>
2262cfee 53
52f952bf
BM
54DECLARE_GLOBAL_DATA_PTR;
55
caca13f6 56#ifndef CONFIG_TPL_BUILD
52f952bf
BM
57static 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};
caca13f6 69#endif
52f952bf 70
f30fc4de
GB
71int __weak x86_cleanup_before_linux(void)
72{
99a573fb
SG
73 int ret;
74
75 ret = mp_park_aps();
76 if (ret)
77 return log_msg_ret("park", ret);
ee2b2434 78 bootstage_stash((void *)CONFIG_BOOTSTAGE_STASH_ADDR,
7949703a 79 CONFIG_BOOTSTAGE_STASH_SIZE);
7949703a 80
f30fc4de
GB
81 return 0;
82}
83
d653244b
GR
84int x86_init_cache(void)
85{
86 enable_caches();
0ea76e92 87
2262cfee
WD
88 return 0;
89}
d653244b 90int init_cache(void) __attribute__((weak, alias("x86_init_cache")));
2262cfee 91
717979fd 92void flush_cache(unsigned long dummy1, unsigned long dummy2)
2262cfee
WD
93{
94 asm("wbinvd\n");
2262cfee 95}
3f5f18d1 96
095593c0
SR
97/* 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}
89371409
SG
105
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}
7bddac94 128
caca13f6 129#ifndef CONFIG_TPL_BUILD
52f952bf
BM
130const char *cpu_vendor_name(int vendor)
131{
132 const char *name;
133 name = "<invalid cpu vendor>";
39670c34
HS
134 if (vendor < ARRAY_SIZE(x86_vendor_name) &&
135 x86_vendor_name[vendor])
52f952bf 136 name = x86_vendor_name[vendor];
92cc94a1 137
52f952bf 138 return name;
92cc94a1 139}
caca13f6 140#endif
92cc94a1 141
727c1a98 142char *cpu_get_name(char *name)
92cc94a1 143{
727c1a98 144 unsigned int *name_as_ints = (unsigned int *)name;
52f952bf 145 struct cpuid_result regs;
727c1a98 146 char *ptr;
52f952bf 147 int i;
92cc94a1 148
727c1a98 149 /* This bit adds up to 48 bytes */
52f952bf
BM
150 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 }
727c1a98 157 name[CPU_MAX_NAME_LEN - 1] = '\0';
92cc94a1 158
52f952bf 159 /* Skip leading spaces. */
727c1a98
SG
160 ptr = name;
161 while (*ptr == ' ')
162 ptr++;
52f952bf 163
727c1a98 164 return ptr;
92cc94a1
SG
165}
166
727c1a98 167int default_print_cpuinfo(void)
92cc94a1 168{
52f952bf
BM
169 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);
92cc94a1 172
ef5f5f6c
SG
173 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 }
b727961b 177
92cc94a1
SG
178 return 0;
179}
200182a7 180
a49e3c7f
SG
181void show_boot_progress(int val)
182{
a49e3c7f
SG
183 outb(val, POST_PORT);
184}
5e2400e8 185
1ab2c010 186#if !defined(CONFIG_SYS_COREBOOT) && !defined(CONFIG_EFI_STUB)
1e2f7b9e 187/*
4021ee63
SG
188 * Implement a weak default function for boards that need to do some final init
189 * before the system is ready.
1e2f7b9e 190 */
4021ee63 191__weak void board_final_init(void)
1e2f7b9e
BM
192{
193}
194
7c73cea4
SG
195/*
196 * Implement a weak default function for boards that need to do some final
197 * processing before booting the OS.
198 */
199__weak void board_final_cleanup(void)
200{
201}
202
5e2400e8
BM
203int last_stage_init(void)
204{
474a62bc 205 struct acpi_fadt __maybe_unused *fadt;
38e498c3 206 int ret;
474a62bc 207
4021ee63 208 board_final_init();
bffd7981 209
ef5f5f6c
SG
210 if (IS_ENABLED(CONFIG_HAVE_ACPI_RESUME)) {
211 fadt = acpi_find_fadt();
3a34cae0 212
ef5f5f6c
SG
213 if (fadt && gd->arch.prev_sleep_state == ACPI_S3)
214 acpi_resume(fadt);
215 }
3a34cae0 216
38e498c3
SG
217 ret = write_tables();
218 if (ret) {
219 log_err("Failed to write tables\n");
220 return log_msg_ret("table", ret);
221 }
5e2400e8 222
8bccbc5a
SG
223 if (IS_ENABLED(CONFIG_GENERATE_ACPI_TABLE)) {
224 fadt = acpi_find_fadt();
474a62bc 225
8bccbc5a
SG
226 /* Don't touch ACPI hardware on HW reduced platforms */
227 if (fadt && !(fadt->flags & ACPI_FADT_HW_REDUCED_ACPI)) {
228 /*
229 * Other than waiting for OSPM to request us to switch
230 * to ACPI * mode, do it by ourselves, since SMI will
231 * not be triggered.
232 */
233 enter_acpi_mode(fadt->pm1a_cnt_blk);
234 }
474a62bc 235 }
474a62bc 236
7c73cea4
SG
237 /*
238 * TODO([email protected]): Move this to bootm_announce_and_cleanup()
239 * once APL FSP-S at 0x200000 does not overlap with the bzimage at
240 * 0x100000.
241 */
242 board_final_cleanup();
243
5e2400e8
BM
244 return 0;
245}
246#endif
bcb0c61e 247
afd5d50c 248static int x86_init_cpus(void)
bcb0c61e 249{
8bccbc5a
SG
250 if (IS_ENABLED(CONFIG_SMP)) {
251 debug("Init additional CPUs\n");
252 x86_mp_init();
253 } else {
254 struct udevice *dev;
c77b8912 255
8bccbc5a
SG
256 /*
257 * This causes the cpu-x86 driver to be probed.
258 * We don't check return value here as we want to allow boards
259 * which have not been converted to use cpu uclass driver to
260 * boot.
261 */
262 uclass_first_device(UCLASS_CPU, &dev);
263 }
6e6f4ce4 264
bcb0c61e
SG
265 return 0;
266}
267
268int cpu_init_r(void)
269{
ac643e03
SG
270 struct udevice *dev;
271 int ret;
272
526aabec
SG
273 if (!ll_boot_init()) {
274 uclass_first_device(UCLASS_PCI, &dev);
ac643e03 275 return 0;
526aabec 276 }
ac643e03
SG
277
278 ret = x86_init_cpus();
279 if (ret)
280 return ret;
281
282 /*
283 * Set up the northbridge, PCH and LPC if available. Note that these
284 * may have had some limited pre-relocation init if they were probed
285 * before relocation, but this is post relocation.
286 */
287 uclass_first_device(UCLASS_NORTHBRIDGE, &dev);
288 uclass_first_device(UCLASS_PCH, &dev);
289 uclass_first_device(UCLASS_LPC, &dev);
e49cceac 290
d8906c1f
BM
291 /* Set up pin control if available */
292 ret = syscon_get_by_driver_data(X86_SYSCON_PINCONF, &dev);
293 debug("%s, pinctrl=%p, ret=%d\n", __func__, dev, ret);
294
e49cceac 295 return 0;
bcb0c61e 296}
0c2b7eef
BM
297
298#ifndef CONFIG_EFI_STUB
299int reserve_arch(void)
300{
b95611f6
SG
301 struct udevice *itss;
302 int ret;
303
304 if (IS_ENABLED(CONFIG_ENABLE_MRC_CACHE))
305 mrccache_reserve();
d19c9074 306
8bccbc5a
SG
307 if (IS_ENABLED(CONFIG_SEABIOS))
308 high_table_reserve();
d19c9074 309
ef5f5f6c
SG
310 if (IS_ENABLED(CONFIG_HAVE_ACPI_RESUME)) {
311 acpi_s3_reserve();
5ae5aa93 312
ef5f5f6c
SG
313 if (IS_ENABLED(CONFIG_HAVE_FSP)) {
314 /*
315 * Save stack address to CMOS so that at next S3 boot,
316 * we can use it as the stack address for fsp_contiue()
317 */
318 fsp_save_s3_stack();
319 }
320 }
b95611f6
SG
321 ret = irq_first_device_type(X86_IRQT_ITSS, &itss);
322 if (!ret) {
323 /*
324 * Snapshot the current GPIO IRQ polarities. FSP-S is about to
325 * run and will set a default policy that doesn't honour boards'
326 * requirements
327 */
328 irq_snapshot_polarities(itss);
329 }
ba65808e 330
d19c9074 331 return 0;
0c2b7eef
BM
332}
333#endif
7ec0e7b6
SG
334
335long detect_coreboot_table_at(ulong start, ulong size)
336{
337 u32 *ptr, *end;
338
339 size /= 4;
340 for (ptr = (void *)start, end = ptr + size; ptr < end; ptr += 4) {
341 if (*ptr == 0x4f49424c) /* "LBIO" */
342 return (long)ptr;
343 }
344
345 return -ENOENT;
346}
347
348long locate_coreboot_table(void)
349{
350 long addr;
351
352 /* We look for LBIO in the first 4K of RAM and again at 960KB */
353 addr = detect_coreboot_table_at(0x0, 0x1000);
354 if (addr < 0)
355 addr = detect_coreboot_table_at(0xf0000, 0x1000);
356
357 return addr;
358}
This page took 0.392203 seconds and 4 git commands to generate.