1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21#define LOG_CATEGORY UCLASS_CPU
22
23#include <common.h>
24#include <bootstage.h>
25#include <command.h>
26#include <cpu_func.h>
27#include <dm.h>
28#include <errno.h>
29#include <init.h>
30#include <irq.h>
31#include <log.h>
32#include <malloc.h>
33#include <syscon.h>
34#include <acpi/acpi_s3.h>
35#include <acpi/acpi_table.h>
36#include <asm/acpi.h>
37#include <asm/control_regs.h>
38#include <asm/coreboot_tables.h>
39#include <asm/cpu.h>
40#include <asm/global_data.h>
41#include <asm/lapic.h>
42#include <asm/microcode.h>
43#include <asm/mp.h>
44#include <asm/mrccache.h>
45#include <asm/msr.h>
46#include <asm/mtrr.h>
47#include <asm/post.h>
48#include <asm/processor.h>
49#include <asm/processor-flags.h>
50#include <asm/interrupt.h>
51#include <asm/tables.h>
52#include <linux/compiler.h>
53
54DECLARE_GLOBAL_DATA_PTR;
55
56#ifndef CONFIG_TPL_BUILD
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};
69#endif
70
71int __weak x86_cleanup_before_linux(void)
72{
73 int ret;
74
75 ret = mp_park_aps();
76 if (ret)
77 return log_msg_ret("park", ret);
78 bootstage_stash((void *)CONFIG_BOOTSTAGE_STASH_ADDR,
79 CONFIG_BOOTSTAGE_STASH_SIZE);
80
81 return 0;
82}
83
84int x86_init_cache(void)
85{
86 enable_caches();
87
88 return 0;
89}
90int init_cache(void) __attribute__((weak, alias("x86_init_cache")));
91
92void flush_cache(unsigned long dummy1, unsigned long dummy2)
93{
94 asm("wbinvd\n");
95}
96
97
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}
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}
128
129#ifndef CONFIG_TPL_BUILD
130const char *cpu_vendor_name(int vendor)
131{
132 const char *name;
133 name = "<invalid cpu vendor>";
134 if (vendor < ARRAY_SIZE(x86_vendor_name) &&
135 x86_vendor_name[vendor])
136 name = x86_vendor_name[vendor];
137
138 return name;
139}
140#endif
141
142char *cpu_get_name(char *name)
143{
144 unsigned int *name_as_ints = (unsigned int *)name;
145 struct cpuid_result regs;
146 char *ptr;
147 int i;
148
149
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 }
157 name[CPU_MAX_NAME_LEN - 1] = '\0';
158
159
160 ptr = name;
161 while (*ptr == ' ')
162 ptr++;
163
164 return ptr;
165}
166
167int default_print_cpuinfo(void)
168{
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);
172
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 }
177
178 return 0;
179}
180
181#if CONFIG_IS_ENABLED(SHOW_BOOT_PROGRESS)
182void show_boot_progress(int val)
183{
184 outb(val, POST_PORT);
185}
186#endif
187
188#if !defined(CONFIG_SYS_COREBOOT) && !defined(CONFIG_EFI_STUB)
189
190
191
192
193__weak void board_final_init(void)
194{
195}
196
197
198
199
200
201__weak void board_final_cleanup(void)
202{
203}
204
205int last_stage_init(void)
206{
207 struct acpi_fadt __maybe_unused *fadt;
208 int ret;
209
210 board_final_init();
211
212 if (IS_ENABLED(CONFIG_HAVE_ACPI_RESUME)) {
213 fadt = acpi_find_fadt();
214
215 if (fadt && gd->arch.prev_sleep_state == ACPI_S3)
216 acpi_resume(fadt);
217 }
218
219 ret = write_tables();
220 if (ret) {
221 log_err("Failed to write tables\n");
222 return log_msg_ret("table", ret);
223 }
224
225 if (IS_ENABLED(CONFIG_GENERATE_ACPI_TABLE)) {
226 fadt = acpi_find_fadt();
227
228
229 if (fadt && !(fadt->flags & ACPI_FADT_HW_REDUCED_ACPI)) {
230
231
232
233
234
235 enter_acpi_mode(fadt->pm1a_cnt_blk);
236 }
237 }
238
239
240
241
242
243
244 board_final_cleanup();
245
246 return 0;
247}
248#endif
249
250static int x86_init_cpus(void)
251{
252 if (IS_ENABLED(CONFIG_SMP)) {
253 debug("Init additional CPUs\n");
254 x86_mp_init();
255 } else {
256 struct udevice *dev;
257
258
259
260
261
262
263
264 uclass_first_device(UCLASS_CPU, &dev);
265 }
266
267 return 0;
268}
269
270int cpu_init_r(void)
271{
272 struct udevice *dev;
273 int ret;
274
275 if (!ll_boot_init()) {
276 uclass_first_device(UCLASS_PCI, &dev);
277 return 0;
278 }
279
280 ret = x86_init_cpus();
281 if (ret)
282 return ret;
283
284
285
286
287
288
289 uclass_first_device(UCLASS_NORTHBRIDGE, &dev);
290 uclass_first_device(UCLASS_PCH, &dev);
291 uclass_first_device(UCLASS_LPC, &dev);
292
293
294 ret = syscon_get_by_driver_data(X86_SYSCON_PINCONF, &dev);
295 debug("%s, pinctrl=%p, ret=%d\n", __func__, dev, ret);
296
297 return 0;
298}
299
300#ifndef CONFIG_EFI_STUB
301int reserve_arch(void)
302{
303 struct udevice *itss;
304 int ret;
305
306 if (IS_ENABLED(CONFIG_ENABLE_MRC_CACHE))
307 mrccache_reserve();
308
309 if (IS_ENABLED(CONFIG_SEABIOS))
310 high_table_reserve();
311
312 if (IS_ENABLED(CONFIG_HAVE_ACPI_RESUME)) {
313 acpi_s3_reserve();
314
315 if (IS_ENABLED(CONFIG_HAVE_FSP)) {
316
317
318
319
320 fsp_save_s3_stack();
321 }
322 }
323 ret = irq_first_device_type(X86_IRQT_ITSS, &itss);
324 if (!ret) {
325
326
327
328
329
330 irq_snapshot_polarities(itss);
331 }
332
333 return 0;
334}
335#endif
336
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)
344 return (long)ptr;
345 }
346
347 return -ENOENT;
348}
349
350long locate_coreboot_table(void)
351{
352 long addr;
353
354
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}
361