blob: 2e27d782d1bd76334651fedf1b9e8711ab0f7bd9 [file] [log] [blame]
wdenk2262cfe2002-11-18 00:14:45 +00001/*
Graeme Russdbf71152011-04-13 19:43:26 +10002 * (C) Copyright 2008-2011
3 * Graeme Russ, <graeme.russ@gmail.com>
4 *
wdenk2262cfe2002-11-18 00:14:45 +00005 * (C) Copyright 2002
Albert ARIBAUDfa82f872011-08-04 18:45:45 +02006 * Daniel Engström, Omicron Ceti AB, <daniel@omicron.se>
wdenk8bde7f72003-06-27 21:31:46 +00007 *
wdenk2262cfe2002-11-18 00:14:45 +00008 * (C) Copyright 2002
9 * Sysgo Real-Time Solutions, GmbH <www.elinos.com>
10 * Marius Groeger <mgroeger@sysgo.de>
11 *
12 * (C) Copyright 2002
13 * Sysgo Real-Time Solutions, GmbH <www.elinos.com>
14 * Alex Zuepke <azu@sysgo.de>
15 *
Bin Meng52f952b2014-11-09 22:18:56 +080016 * Part of this file is adapted from coreboot
17 * src/arch/x86/lib/cpu.c
18 *
Wolfgang Denk1a459662013-07-08 09:37:19 +020019 * SPDX-License-Identifier: GPL-2.0+
wdenk2262cfe2002-11-18 00:14:45 +000020 */
21
wdenk2262cfe2002-11-18 00:14:45 +000022#include <common.h>
23#include <command.h>
Bin Meng6e6f4ce2015-06-17 11:15:36 +080024#include <dm.h>
Simon Glass200182a2014-10-10 08:21:55 -060025#include <errno.h>
26#include <malloc.h>
Stefan Reinauer095593c2012-12-02 04:49:50 +000027#include <asm/control_regs.h>
Simon Glass200182a2014-10-10 08:21:55 -060028#include <asm/cpu.h>
Bin Meng6e6f4ce2015-06-17 11:15:36 +080029#include <asm/lapic.h>
Simon Glasse77b62e2016-03-11 22:07:11 -070030#include <asm/microcode.h>
Bin Meng6e6f4ce2015-06-17 11:15:36 +080031#include <asm/mp.h>
Bin Meng0c2b7ee2016-05-11 07:45:00 -070032#include <asm/mrccache.h>
Bin Meng43dd22f2015-07-06 16:31:30 +080033#include <asm/msr.h>
34#include <asm/mtrr.h>
Simon Glassa49e3c72014-11-12 22:42:26 -070035#include <asm/post.h>
Graeme Russc53fd2b2011-02-12 15:11:30 +110036#include <asm/processor.h>
Graeme Russ0c24c9c2011-02-12 15:11:32 +110037#include <asm/processor-flags.h>
Graeme Russ3f5f18d2008-12-07 10:29:02 +110038#include <asm/interrupt.h>
Bin Meng5e2400e2015-04-24 18:10:04 +080039#include <asm/tables.h>
Gabe Black60a9b6b2011-11-16 23:32:50 +000040#include <linux/compiler.h>
wdenk2262cfe2002-11-18 00:14:45 +000041
Bin Meng52f952b2014-11-09 22:18:56 +080042DECLARE_GLOBAL_DATA_PTR;
43
Graeme Russdbf71152011-04-13 19:43:26 +100044/*
45 * Constructor for a conventional segment GDT (or LDT) entry
46 * This is a macro so it can be used in initialisers
47 */
Graeme Russ59c6d0e2010-10-07 20:03:21 +110048#define GDT_ENTRY(flags, base, limit) \
49 ((((base) & 0xff000000ULL) << (56-24)) | \
50 (((flags) & 0x0000f0ffULL) << 40) | \
51 (((limit) & 0x000f0000ULL) << (48-16)) | \
52 (((base) & 0x00ffffffULL) << 16) | \
53 (((limit) & 0x0000ffffULL)))
54
Graeme Russ59c6d0e2010-10-07 20:03:21 +110055struct gdt_ptr {
56 u16 len;
57 u32 ptr;
Graeme Russ717979f2011-11-08 02:33:13 +000058} __packed;
Graeme Russ59c6d0e2010-10-07 20:03:21 +110059
Bin Meng52f952b2014-11-09 22:18:56 +080060struct cpu_device_id {
61 unsigned vendor;
62 unsigned device;
63};
64
65struct cpuinfo_x86 {
66 uint8_t x86; /* CPU family */
67 uint8_t x86_vendor; /* CPU vendor */
68 uint8_t x86_model;
69 uint8_t x86_mask;
70};
71
72/*
73 * List of cpu vendor strings along with their normalized
74 * id values.
75 */
Simon Glass6d24a1e2016-03-06 19:27:57 -070076static const struct {
Bin Meng52f952b2014-11-09 22:18:56 +080077 int vendor;
78 const char *name;
79} x86_vendors[] = {
80 { X86_VENDOR_INTEL, "GenuineIntel", },
81 { X86_VENDOR_CYRIX, "CyrixInstead", },
82 { X86_VENDOR_AMD, "AuthenticAMD", },
83 { X86_VENDOR_UMC, "UMC UMC UMC ", },
84 { X86_VENDOR_NEXGEN, "NexGenDriven", },
85 { X86_VENDOR_CENTAUR, "CentaurHauls", },
86 { X86_VENDOR_RISE, "RiseRiseRise", },
87 { X86_VENDOR_TRANSMETA, "GenuineTMx86", },
88 { X86_VENDOR_TRANSMETA, "TransmetaCPU", },
89 { X86_VENDOR_NSC, "Geode by NSC", },
90 { X86_VENDOR_SIS, "SiS SiS SiS ", },
91};
92
93static const char *const x86_vendor_name[] = {
94 [X86_VENDOR_INTEL] = "Intel",
95 [X86_VENDOR_CYRIX] = "Cyrix",
96 [X86_VENDOR_AMD] = "AMD",
97 [X86_VENDOR_UMC] = "UMC",
98 [X86_VENDOR_NEXGEN] = "NexGen",
99 [X86_VENDOR_CENTAUR] = "Centaur",
100 [X86_VENDOR_RISE] = "Rise",
101 [X86_VENDOR_TRANSMETA] = "Transmeta",
102 [X86_VENDOR_NSC] = "NSC",
103 [X86_VENDOR_SIS] = "SiS",
104};
105
Graeme Russ74bfbe12011-12-29 21:45:33 +1100106static void load_ds(u32 segment)
Graeme Russ59c6d0e2010-10-07 20:03:21 +1100107{
Graeme Russ74bfbe12011-12-29 21:45:33 +1100108 asm volatile("movl %0, %%ds" : : "r" (segment * X86_GDT_ENTRY_SIZE));
109}
Graeme Russ59c6d0e2010-10-07 20:03:21 +1100110
Graeme Russ74bfbe12011-12-29 21:45:33 +1100111static void load_es(u32 segment)
112{
113 asm volatile("movl %0, %%es" : : "r" (segment * X86_GDT_ENTRY_SIZE));
114}
Graeme Russ59c6d0e2010-10-07 20:03:21 +1100115
Graeme Russ74bfbe12011-12-29 21:45:33 +1100116static void load_fs(u32 segment)
117{
118 asm volatile("movl %0, %%fs" : : "r" (segment * X86_GDT_ENTRY_SIZE));
119}
120
121static void load_gs(u32 segment)
122{
123 asm volatile("movl %0, %%gs" : : "r" (segment * X86_GDT_ENTRY_SIZE));
124}
125
126static void load_ss(u32 segment)
127{
128 asm volatile("movl %0, %%ss" : : "r" (segment * X86_GDT_ENTRY_SIZE));
129}
130
131static void load_gdt(const u64 *boot_gdt, u16 num_entries)
132{
133 struct gdt_ptr gdt;
134
Simon Glasse34aef12014-11-14 20:56:29 -0700135 gdt.len = (num_entries * X86_GDT_ENTRY_SIZE) - 1;
Graeme Russ74bfbe12011-12-29 21:45:33 +1100136 gdt.ptr = (u32)boot_gdt;
137
138 asm volatile("lgdtl %0\n" : : "m" (gdt));
Graeme Russ59c6d0e2010-10-07 20:03:21 +1100139}
140
Simon Glassf0c7d9c2015-08-10 20:44:32 -0600141void arch_setup_gd(gd_t *new_gd)
Graeme Russ9e6c5722011-12-31 22:58:15 +1100142{
Simon Glassf0c7d9c2015-08-10 20:44:32 -0600143 u64 *gdt_addr;
144
Simon Glass2db93742015-08-10 20:44:31 -0600145 gdt_addr = new_gd->arch.gdt;
146
Bin Meng19038e12015-10-07 20:19:09 -0700147 /*
148 * CS: code, read/execute, 4 GB, base 0
149 *
150 * Some OS (like VxWorks) requires GDT entry 1 to be the 32-bit CS
151 */
152 gdt_addr[X86_GDT_ENTRY_UNUSED] = GDT_ENTRY(0xc09b, 0, 0xfffff);
Graeme Russ9e6c5722011-12-31 22:58:15 +1100153 gdt_addr[X86_GDT_ENTRY_32BIT_CS] = GDT_ENTRY(0xc09b, 0, 0xfffff);
154
155 /* DS: data, read/write, 4 GB, base 0 */
156 gdt_addr[X86_GDT_ENTRY_32BIT_DS] = GDT_ENTRY(0xc093, 0, 0xfffff);
157
158 /* FS: data, read/write, 4 GB, base (Global Data Pointer) */
Simon Glass2db93742015-08-10 20:44:31 -0600159 new_gd->arch.gd_addr = new_gd;
Simon Glass0cecc3b2012-12-13 20:48:42 +0000160 gdt_addr[X86_GDT_ENTRY_32BIT_FS] = GDT_ENTRY(0xc093,
Simon Glass2db93742015-08-10 20:44:31 -0600161 (ulong)&new_gd->arch.gd_addr, 0xfffff);
Graeme Russ9e6c5722011-12-31 22:58:15 +1100162
163 /* 16-bit CS: code, read/execute, 64 kB, base 0 */
Simon Glasse34aef12014-11-14 20:56:29 -0700164 gdt_addr[X86_GDT_ENTRY_16BIT_CS] = GDT_ENTRY(0x009b, 0, 0x0ffff);
Graeme Russ9e6c5722011-12-31 22:58:15 +1100165
166 /* 16-bit DS: data, read/write, 64 kB, base 0 */
Simon Glasse34aef12014-11-14 20:56:29 -0700167 gdt_addr[X86_GDT_ENTRY_16BIT_DS] = GDT_ENTRY(0x0093, 0, 0x0ffff);
168
169 gdt_addr[X86_GDT_ENTRY_16BIT_FLAT_CS] = GDT_ENTRY(0x809b, 0, 0xfffff);
170 gdt_addr[X86_GDT_ENTRY_16BIT_FLAT_DS] = GDT_ENTRY(0x8093, 0, 0xfffff);
Graeme Russ9e6c5722011-12-31 22:58:15 +1100171
172 load_gdt(gdt_addr, X86_GDT_NUM_ENTRIES);
173 load_ds(X86_GDT_ENTRY_32BIT_DS);
174 load_es(X86_GDT_ENTRY_32BIT_DS);
175 load_gs(X86_GDT_ENTRY_32BIT_DS);
176 load_ss(X86_GDT_ENTRY_32BIT_DS);
177 load_fs(X86_GDT_ENTRY_32BIT_FS);
178}
179
Bin Meng002610f2015-06-07 11:33:13 +0800180#ifdef CONFIG_HAVE_FSP
181/*
182 * Setup FSP execution environment GDT
183 *
184 * Per Intel FSP external architecture specification, before calling any FSP
185 * APIs, we need make sure the system is in flat 32-bit mode and both the code
186 * and data selectors should have full 4GB access range. Here we reuse the one
187 * we used in arch/x86/cpu/start16.S, and reload the segement registers.
188 */
189void setup_fsp_gdt(void)
190{
191 load_gdt((const u64 *)(gdt_rom + CONFIG_RESET_SEG_START), 4);
192 load_ds(X86_GDT_ENTRY_32BIT_DS);
193 load_ss(X86_GDT_ENTRY_32BIT_DS);
194 load_es(X86_GDT_ENTRY_32BIT_DS);
195 load_fs(X86_GDT_ENTRY_32BIT_DS);
196 load_gs(X86_GDT_ENTRY_32BIT_DS);
197}
198#endif
199
Gabe Blackf30fc4d2012-10-20 12:33:10 +0000200int __weak x86_cleanup_before_linux(void)
201{
Simon Glass79497032013-04-17 16:13:35 +0000202#ifdef CONFIG_BOOTSTAGE_STASH
Simon Glassee2b2432015-03-02 17:04:37 -0700203 bootstage_stash((void *)CONFIG_BOOTSTAGE_STASH_ADDR,
Simon Glass79497032013-04-17 16:13:35 +0000204 CONFIG_BOOTSTAGE_STASH_SIZE);
205#endif
206
Gabe Blackf30fc4d2012-10-20 12:33:10 +0000207 return 0;
208}
209
Bin Meng52f952b2014-11-09 22:18:56 +0800210/*
211 * Cyrix CPUs without cpuid or with cpuid not yet enabled can be detected
212 * by the fact that they preserve the flags across the division of 5/2.
213 * PII and PPro exhibit this behavior too, but they have cpuid available.
214 */
215
216/*
217 * Perform the Cyrix 5/2 test. A Cyrix won't change
218 * the flags, while other 486 chips will.
219 */
220static inline int test_cyrix_52div(void)
221{
222 unsigned int test;
223
224 __asm__ __volatile__(
225 "sahf\n\t" /* clear flags (%eax = 0x0005) */
226 "div %b2\n\t" /* divide 5 by 2 */
227 "lahf" /* store flags into %ah */
228 : "=a" (test)
229 : "0" (5), "q" (2)
230 : "cc");
231
232 /* AH is 0x02 on Cyrix after the divide.. */
233 return (unsigned char) (test >> 8) == 0x02;
234}
235
236/*
237 * Detect a NexGen CPU running without BIOS hypercode new enough
238 * to have CPUID. (Thanks to Herbert Oppmann)
239 */
240
241static int deep_magic_nexgen_probe(void)
242{
243 int ret;
244
245 __asm__ __volatile__ (
246 " movw $0x5555, %%ax\n"
247 " xorw %%dx,%%dx\n"
248 " movw $2, %%cx\n"
249 " divw %%cx\n"
250 " movl $0, %%eax\n"
251 " jnz 1f\n"
252 " movl $1, %%eax\n"
253 "1:\n"
254 : "=a" (ret) : : "cx", "dx");
255 return ret;
256}
257
258static bool has_cpuid(void)
259{
260 return flag_is_changeable_p(X86_EFLAGS_ID);
261}
262
Bin Meng49491662015-01-22 11:29:40 +0800263static bool has_mtrr(void)
264{
265 return cpuid_edx(0x00000001) & (1 << 12) ? true : false;
266}
267
Bin Meng52f952b2014-11-09 22:18:56 +0800268static int build_vendor_name(char *vendor_name)
269{
270 struct cpuid_result result;
271 result = cpuid(0x00000000);
272 unsigned int *name_as_ints = (unsigned int *)vendor_name;
273
274 name_as_ints[0] = result.ebx;
275 name_as_ints[1] = result.edx;
276 name_as_ints[2] = result.ecx;
277
278 return result.eax;
279}
280
281static void identify_cpu(struct cpu_device_id *cpu)
282{
283 char vendor_name[16];
284 int i;
285
286 vendor_name[0] = '\0'; /* Unset */
Simon Glass6cba6b92014-11-12 20:27:55 -0700287 cpu->device = 0; /* fix gcc 4.4.4 warning */
Bin Meng52f952b2014-11-09 22:18:56 +0800288
289 /* Find the id and vendor_name */
290 if (!has_cpuid()) {
291 /* Its a 486 if we can modify the AC flag */
292 if (flag_is_changeable_p(X86_EFLAGS_AC))
293 cpu->device = 0x00000400; /* 486 */
294 else
295 cpu->device = 0x00000300; /* 386 */
296 if ((cpu->device == 0x00000400) && test_cyrix_52div()) {
297 memcpy(vendor_name, "CyrixInstead", 13);
298 /* If we ever care we can enable cpuid here */
299 }
300 /* Detect NexGen with old hypercode */
301 else if (deep_magic_nexgen_probe())
302 memcpy(vendor_name, "NexGenDriven", 13);
303 }
304 if (has_cpuid()) {
305 int cpuid_level;
306
307 cpuid_level = build_vendor_name(vendor_name);
308 vendor_name[12] = '\0';
309
310 /* Intel-defined flags: level 0x00000001 */
311 if (cpuid_level >= 0x00000001) {
312 cpu->device = cpuid_eax(0x00000001);
313 } else {
314 /* Have CPUID level 0 only unheard of */
315 cpu->device = 0x00000400;
316 }
317 }
318 cpu->vendor = X86_VENDOR_UNKNOWN;
319 for (i = 0; i < ARRAY_SIZE(x86_vendors); i++) {
320 if (memcmp(vendor_name, x86_vendors[i].name, 12) == 0) {
321 cpu->vendor = x86_vendors[i].vendor;
322 break;
323 }
324 }
325}
326
327static inline void get_fms(struct cpuinfo_x86 *c, uint32_t tfms)
328{
329 c->x86 = (tfms >> 8) & 0xf;
330 c->x86_model = (tfms >> 4) & 0xf;
331 c->x86_mask = tfms & 0xf;
332 if (c->x86 == 0xf)
333 c->x86 += (tfms >> 20) & 0xff;
334 if (c->x86 >= 0x6)
335 c->x86_model += ((tfms >> 16) & 0xF) << 4;
336}
337
Simon Glass342727a2016-03-11 22:06:52 -0700338u32 cpu_get_family_model(void)
339{
340 return gd->arch.x86_device & 0x0fff0ff0;
341}
342
343u32 cpu_get_stepping(void)
344{
345 return gd->arch.x86_mask;
346}
347
Graeme Russ0ea76e92011-02-12 15:11:35 +1100348int x86_cpu_init_f(void)
wdenk2262cfe2002-11-18 00:14:45 +0000349{
Graeme Russ0c24c9c2011-02-12 15:11:32 +1100350 const u32 em_rst = ~X86_CR0_EM;
351 const u32 mp_ne_set = X86_CR0_MP | X86_CR0_NE;
352
Simon Glasse49ccea2015-08-04 12:34:00 -0600353 if (ll_boot_init()) {
354 /* initialize FPU, reset EM, set MP and NE */
355 asm ("fninit\n" \
356 "movl %%cr0, %%eax\n" \
357 "andl %0, %%eax\n" \
358 "orl %1, %%eax\n" \
359 "movl %%eax, %%cr0\n" \
360 : : "i" (em_rst), "i" (mp_ne_set) : "eax");
361 }
wdenk8bde7f72003-06-27 21:31:46 +0000362
Bin Meng52f952b2014-11-09 22:18:56 +0800363 /* identify CPU via cpuid and store the decoded info into gd->arch */
364 if (has_cpuid()) {
365 struct cpu_device_id cpu;
366 struct cpuinfo_x86 c;
367
368 identify_cpu(&cpu);
369 get_fms(&c, cpu.device);
370 gd->arch.x86 = c.x86;
371 gd->arch.x86_vendor = cpu.vendor;
372 gd->arch.x86_model = c.x86_model;
373 gd->arch.x86_mask = c.x86_mask;
374 gd->arch.x86_device = cpu.device;
Bin Meng49491662015-01-22 11:29:40 +0800375
376 gd->arch.has_mtrr = has_mtrr();
Bin Meng52f952b2014-11-09 22:18:56 +0800377 }
Simon Glassb9da5082015-07-03 18:28:27 -0600378 /* Don't allow PCI region 3 to use memory in the 2-4GB memory hole */
379 gd->pci_ram_top = 0x80000000U;
Bin Meng52f952b2014-11-09 22:18:56 +0800380
Bin Meng43dd22f2015-07-06 16:31:30 +0800381 /* Configure fixed range MTRRs for some legacy regions */
382 if (gd->arch.has_mtrr) {
383 u64 mtrr_cap;
384
385 mtrr_cap = native_read_msr(MTRR_CAP_MSR);
386 if (mtrr_cap & MTRR_CAP_FIX) {
387 /* Mark the VGA RAM area as uncacheable */
Bin Meng8ba25ee2015-07-15 16:23:38 +0800388 native_write_msr(MTRR_FIX_16K_A0000_MSR,
389 MTRR_FIX_TYPE(MTRR_TYPE_UNCACHEABLE),
390 MTRR_FIX_TYPE(MTRR_TYPE_UNCACHEABLE));
Bin Meng43dd22f2015-07-06 16:31:30 +0800391
Bin Meng8ba25ee2015-07-15 16:23:38 +0800392 /*
393 * Mark the PCI ROM area as cacheable to improve ROM
394 * execution performance.
395 */
396 native_write_msr(MTRR_FIX_4K_C0000_MSR,
397 MTRR_FIX_TYPE(MTRR_TYPE_WRBACK),
398 MTRR_FIX_TYPE(MTRR_TYPE_WRBACK));
399 native_write_msr(MTRR_FIX_4K_C8000_MSR,
400 MTRR_FIX_TYPE(MTRR_TYPE_WRBACK),
401 MTRR_FIX_TYPE(MTRR_TYPE_WRBACK));
402 native_write_msr(MTRR_FIX_4K_D0000_MSR,
403 MTRR_FIX_TYPE(MTRR_TYPE_WRBACK),
404 MTRR_FIX_TYPE(MTRR_TYPE_WRBACK));
405 native_write_msr(MTRR_FIX_4K_D8000_MSR,
406 MTRR_FIX_TYPE(MTRR_TYPE_WRBACK),
407 MTRR_FIX_TYPE(MTRR_TYPE_WRBACK));
Bin Meng43dd22f2015-07-06 16:31:30 +0800408
409 /* Enable the fixed range MTRRs */
410 msr_setbits_64(MTRR_DEF_TYPE_MSR, MTRR_DEF_TYPE_FIX_EN);
411 }
412 }
413
Bin Meng49324432015-12-08 17:31:39 -0800414#ifdef CONFIG_I8254_TIMER
415 /* Set up the i8254 timer if required */
416 i8254_init();
417#endif
418
Graeme Russ1c409bc2009-11-24 20:04:21 +1100419 return 0;
420}
421
Graeme Russd6532442011-12-27 22:46:43 +1100422void x86_enable_caches(void)
423{
Stefan Reinauer095593c2012-12-02 04:49:50 +0000424 unsigned long cr0;
Graeme Russ0ea76e92011-02-12 15:11:35 +1100425
Stefan Reinauer095593c2012-12-02 04:49:50 +0000426 cr0 = read_cr0();
427 cr0 &= ~(X86_CR0_NW | X86_CR0_CD);
428 write_cr0(cr0);
429 wbinvd();
Graeme Russd6532442011-12-27 22:46:43 +1100430}
431void enable_caches(void) __attribute__((weak, alias("x86_enable_caches")));
Graeme Russ0ea76e92011-02-12 15:11:35 +1100432
Stefan Reinauer095593c2012-12-02 04:49:50 +0000433void x86_disable_caches(void)
434{
435 unsigned long cr0;
436
437 cr0 = read_cr0();
438 cr0 |= X86_CR0_NW | X86_CR0_CD;
439 wbinvd();
440 write_cr0(cr0);
441 wbinvd();
442}
443void disable_caches(void) __attribute__((weak, alias("x86_disable_caches")));
444
Graeme Russd6532442011-12-27 22:46:43 +1100445int x86_init_cache(void)
446{
447 enable_caches();
448
wdenk2262cfe2002-11-18 00:14:45 +0000449 return 0;
450}
Graeme Russd6532442011-12-27 22:46:43 +1100451int init_cache(void) __attribute__((weak, alias("x86_init_cache")));
wdenk2262cfe2002-11-18 00:14:45 +0000452
Wolfgang Denk54841ab2010-06-28 22:00:46 +0200453int do_reset(cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[])
wdenk2262cfe2002-11-18 00:14:45 +0000454{
Graeme Russ717979f2011-11-08 02:33:13 +0000455 printf("resetting ...\n");
Graeme Russdbf71152011-04-13 19:43:26 +1000456
457 /* wait 50 ms */
458 udelay(50000);
wdenk2262cfe2002-11-18 00:14:45 +0000459 disable_interrupts();
460 reset_cpu(0);
461
462 /*NOTREACHED*/
463 return 0;
464}
465
Graeme Russ717979f2011-11-08 02:33:13 +0000466void flush_cache(unsigned long dummy1, unsigned long dummy2)
wdenk2262cfe2002-11-18 00:14:45 +0000467{
468 asm("wbinvd\n");
wdenk2262cfe2002-11-18 00:14:45 +0000469}
Graeme Russ3f5f18d2008-12-07 10:29:02 +1100470
Simon Glasse1ffd812014-11-06 13:20:08 -0700471__weak void reset_cpu(ulong addr)
Graeme Russ3f5f18d2008-12-07 10:29:02 +1100472{
Simon Glassff6a8f32015-04-28 20:11:29 -0600473 /* Do a hard reset through the chipset's reset control register */
Simon Glass2a605d42016-03-11 22:06:59 -0700474 outb(SYS_RST | RST_CPU, IO_PORT_RESET);
Simon Glassff6a8f32015-04-28 20:11:29 -0600475 for (;;)
476 cpu_hlt();
477}
478
479void x86_full_reset(void)
480{
Simon Glass2a605d42016-03-11 22:06:59 -0700481 outb(FULL_RST | SYS_RST | RST_CPU, IO_PORT_RESET);
Graeme Russ3f5f18d2008-12-07 10:29:02 +1100482}
Stefan Reinauer095593c2012-12-02 04:49:50 +0000483
484int dcache_status(void)
485{
Simon Glassb6c9a202015-07-31 09:31:26 -0600486 return !(read_cr0() & X86_CR0_CD);
Stefan Reinauer095593c2012-12-02 04:49:50 +0000487}
488
489/* Define these functions to allow ehch-hcd to function */
490void flush_dcache_range(unsigned long start, unsigned long stop)
491{
492}
493
494void invalidate_dcache_range(unsigned long start, unsigned long stop)
495{
496}
Simon Glass89371402013-02-28 19:26:11 +0000497
498void dcache_enable(void)
499{
500 enable_caches();
501}
502
503void dcache_disable(void)
504{
505 disable_caches();
506}
507
508void icache_enable(void)
509{
510}
511
512void icache_disable(void)
513{
514}
515
516int icache_status(void)
517{
518 return 1;
519}
Simon Glass7bddac92014-10-10 08:21:52 -0600520
521void cpu_enable_paging_pae(ulong cr3)
522{
523 __asm__ __volatile__(
524 /* Load the page table address */
525 "movl %0, %%cr3\n"
526 /* Enable pae */
527 "movl %%cr4, %%eax\n"
528 "orl $0x00000020, %%eax\n"
529 "movl %%eax, %%cr4\n"
530 /* Enable paging */
531 "movl %%cr0, %%eax\n"
532 "orl $0x80000000, %%eax\n"
533 "movl %%eax, %%cr0\n"
534 :
535 : "r" (cr3)
536 : "eax");
537}
538
539void cpu_disable_paging_pae(void)
540{
541 /* Turn off paging */
542 __asm__ __volatile__ (
543 /* Disable paging */
544 "movl %%cr0, %%eax\n"
545 "andl $0x7fffffff, %%eax\n"
546 "movl %%eax, %%cr0\n"
547 /* Disable pae */
548 "movl %%cr4, %%eax\n"
549 "andl $0xffffffdf, %%eax\n"
550 "movl %%eax, %%cr4\n"
551 :
552 :
553 : "eax");
554}
Simon Glass92cc94a2014-10-10 08:21:54 -0600555
Simon Glass92cc94a2014-10-10 08:21:54 -0600556static bool can_detect_long_mode(void)
557{
Bin Meng52f952b2014-11-09 22:18:56 +0800558 return cpuid_eax(0x80000000) > 0x80000000UL;
Simon Glass92cc94a2014-10-10 08:21:54 -0600559}
560
561static bool has_long_mode(void)
562{
Bin Meng52f952b2014-11-09 22:18:56 +0800563 return cpuid_edx(0x80000001) & (1 << 29) ? true : false;
Simon Glass92cc94a2014-10-10 08:21:54 -0600564}
565
566int cpu_has_64bit(void)
567{
568 return has_cpuid() && can_detect_long_mode() &&
569 has_long_mode();
570}
571
Bin Meng52f952b2014-11-09 22:18:56 +0800572const char *cpu_vendor_name(int vendor)
573{
574 const char *name;
575 name = "<invalid cpu vendor>";
576 if ((vendor < (ARRAY_SIZE(x86_vendor_name))) &&
577 (x86_vendor_name[vendor] != 0))
578 name = x86_vendor_name[vendor];
579
580 return name;
581}
582
Simon Glass727c1a92014-11-10 18:00:26 -0700583char *cpu_get_name(char *name)
Bin Meng52f952b2014-11-09 22:18:56 +0800584{
Simon Glass727c1a92014-11-10 18:00:26 -0700585 unsigned int *name_as_ints = (unsigned int *)name;
Bin Meng52f952b2014-11-09 22:18:56 +0800586 struct cpuid_result regs;
Simon Glass727c1a92014-11-10 18:00:26 -0700587 char *ptr;
Bin Meng52f952b2014-11-09 22:18:56 +0800588 int i;
589
Simon Glass727c1a92014-11-10 18:00:26 -0700590 /* This bit adds up to 48 bytes */
Bin Meng52f952b2014-11-09 22:18:56 +0800591 for (i = 0; i < 3; i++) {
592 regs = cpuid(0x80000002 + i);
593 name_as_ints[i * 4 + 0] = regs.eax;
594 name_as_ints[i * 4 + 1] = regs.ebx;
595 name_as_ints[i * 4 + 2] = regs.ecx;
596 name_as_ints[i * 4 + 3] = regs.edx;
597 }
Simon Glass727c1a92014-11-10 18:00:26 -0700598 name[CPU_MAX_NAME_LEN - 1] = '\0';
Bin Meng52f952b2014-11-09 22:18:56 +0800599
600 /* Skip leading spaces. */
Simon Glass727c1a92014-11-10 18:00:26 -0700601 ptr = name;
602 while (*ptr == ' ')
603 ptr++;
Bin Meng52f952b2014-11-09 22:18:56 +0800604
Simon Glass727c1a92014-11-10 18:00:26 -0700605 return ptr;
Bin Meng52f952b2014-11-09 22:18:56 +0800606}
607
Simon Glass727c1a92014-11-10 18:00:26 -0700608int default_print_cpuinfo(void)
Simon Glass92cc94a2014-10-10 08:21:54 -0600609{
Bin Meng52f952b2014-11-09 22:18:56 +0800610 printf("CPU: %s, vendor %s, device %xh\n",
611 cpu_has_64bit() ? "x86_64" : "x86",
612 cpu_vendor_name(gd->arch.x86_vendor), gd->arch.x86_device);
Simon Glass92cc94a2014-10-10 08:21:54 -0600613
614 return 0;
615}
Simon Glass200182a2014-10-10 08:21:55 -0600616
617#define PAGETABLE_SIZE (6 * 4096)
618
619/**
620 * build_pagetable() - build a flat 4GiB page table structure for 64-bti mode
621 *
622 * @pgtable: Pointer to a 24iKB block of memory
623 */
624static void build_pagetable(uint32_t *pgtable)
625{
626 uint i;
627
628 memset(pgtable, '\0', PAGETABLE_SIZE);
629
630 /* Level 4 needs a single entry */
631 pgtable[0] = (uint32_t)&pgtable[1024] + 7;
632
633 /* Level 3 has one 64-bit entry for each GiB of memory */
634 for (i = 0; i < 4; i++) {
635 pgtable[1024 + i * 2] = (uint32_t)&pgtable[2048] +
636 0x1000 * i + 7;
637 }
638
639 /* Level 2 has 2048 64-bit entries, each repesenting 2MiB */
640 for (i = 0; i < 2048; i++)
641 pgtable[2048 + i * 2] = 0x183 + (i << 21UL);
642}
643
644int cpu_jump_to_64bit(ulong setup_base, ulong target)
645{
646 uint32_t *pgtable;
647
648 pgtable = memalign(4096, PAGETABLE_SIZE);
649 if (!pgtable)
650 return -ENOMEM;
651
652 build_pagetable(pgtable);
653 cpu_call64((ulong)pgtable, setup_base, target);
654 free(pgtable);
655
656 return -EFAULT;
657}
Simon Glassa49e3c72014-11-12 22:42:26 -0700658
659void show_boot_progress(int val)
660{
Simon Glassa49e3c72014-11-12 22:42:26 -0700661 outb(val, POST_PORT);
662}
Bin Meng5e2400e2015-04-24 18:10:04 +0800663
664#ifndef CONFIG_SYS_COREBOOT
Bin Meng1e2f7b92016-05-11 07:44:56 -0700665/*
666 * Implement a weak default function for boards that optionally
667 * need to clean up the system before jumping to the kernel.
668 */
669__weak void board_final_cleanup(void)
670{
671}
672
Bin Meng5e2400e2015-04-24 18:10:04 +0800673int last_stage_init(void)
674{
675 write_tables();
676
Bin Meng1e2f7b92016-05-11 07:44:56 -0700677 board_final_cleanup();
678
Bin Meng5e2400e2015-04-24 18:10:04 +0800679 return 0;
680}
681#endif
Simon Glassbcb0c612015-04-29 22:26:01 -0600682
Bin Meng6e6f4ce2015-06-17 11:15:36 +0800683#ifdef CONFIG_SMP
684static int enable_smis(struct udevice *cpu, void *unused)
685{
686 return 0;
687}
688
689static struct mp_flight_record mp_steps[] = {
690 MP_FR_BLOCK_APS(mp_init_cpu, NULL, mp_init_cpu, NULL),
691 /* Wait for APs to finish initialization before proceeding */
692 MP_FR_BLOCK_APS(NULL, NULL, enable_smis, NULL),
693};
694
695static int x86_mp_init(void)
696{
697 struct mp_params mp_params;
698
Bin Meng6e6f4ce2015-06-17 11:15:36 +0800699 mp_params.parallel_microcode_load = 0,
700 mp_params.flight_plan = &mp_steps[0];
701 mp_params.num_records = ARRAY_SIZE(mp_steps);
702 mp_params.microcode_pointer = 0;
703
704 if (mp_init(&mp_params)) {
705 printf("Warning: MP init failure\n");
706 return -EIO;
707 }
708
709 return 0;
710}
711#endif
712
Simon Glassafd5d502016-01-17 16:11:28 -0700713static int x86_init_cpus(void)
Simon Glassbcb0c612015-04-29 22:26:01 -0600714{
Bin Meng6e6f4ce2015-06-17 11:15:36 +0800715#ifdef CONFIG_SMP
716 debug("Init additional CPUs\n");
717 x86_mp_init();
Bin Mengc77b8912015-07-22 01:21:12 -0700718#else
719 struct udevice *dev;
720
721 /*
722 * This causes the cpu-x86 driver to be probed.
723 * We don't check return value here as we want to allow boards
724 * which have not been converted to use cpu uclass driver to boot.
725 */
726 uclass_first_device(UCLASS_CPU, &dev);
Bin Meng6e6f4ce2015-06-17 11:15:36 +0800727#endif
728
Simon Glassbcb0c612015-04-29 22:26:01 -0600729 return 0;
730}
731
732int cpu_init_r(void)
733{
Simon Glassac643e02016-01-17 16:11:30 -0700734 struct udevice *dev;
735 int ret;
736
737 if (!ll_boot_init())
738 return 0;
739
740 ret = x86_init_cpus();
741 if (ret)
742 return ret;
743
744 /*
745 * Set up the northbridge, PCH and LPC if available. Note that these
746 * may have had some limited pre-relocation init if they were probed
747 * before relocation, but this is post relocation.
748 */
749 uclass_first_device(UCLASS_NORTHBRIDGE, &dev);
750 uclass_first_device(UCLASS_PCH, &dev);
751 uclass_first_device(UCLASS_LPC, &dev);
Simon Glasse49ccea2015-08-04 12:34:00 -0600752
753 return 0;
Simon Glassbcb0c612015-04-29 22:26:01 -0600754}
Bin Meng0c2b7ee2016-05-11 07:45:00 -0700755
756#ifndef CONFIG_EFI_STUB
757int reserve_arch(void)
758{
759#ifdef CONFIG_ENABLE_MRC_CACHE
760 return mrccache_reserve();
761#else
762 return 0;
763#endif
764}
765#endif