blob: ff826614473928e11e076431a12515b468b1770c [file] [log] [blame]
Martin Roth9df9e9392016-01-12 15:55:28 -07001/*
2 * This file is part of the coreboot project.
3 *
4 * This program is free software; you can redistribute it and/or modify
5 * it under the terms of the GNU General Public License as published by
6 * the Free Software Foundation; version 2 of the License.
7 *
8 * This program is distributed in the hope that it will be useful,
9 * but WITHOUT ANY WARRANTY; without even the implied warranty of
10 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
11 * GNU General Public License for more details.
12 */
13
Aaron Durbinb21e3622016-12-07 00:32:19 -060014#include <bootstate.h>
Aaron Durbinf6ada1c2016-02-10 10:52:47 -060015#include <boot/coreboot_tables.h>
Eric Biederman8ca8d762003-04-22 19:02:15 +000016#include <console/console.h>
17#include <cpu/cpu.h>
Eric Biederman8ca8d762003-04-22 19:02:15 +000018#include <arch/io.h>
19#include <string.h>
Aaron Durbinb21e3622016-12-07 00:32:19 -060020#include <cpu/x86/mp.h>
Eric Biedermanb78c1972004-10-14 20:54:17 +000021#include <cpu/x86/mtrr.h>
22#include <cpu/x86/msr.h>
23#include <cpu/x86/lapic.h>
Aaron Durbine0969ae2016-02-10 10:56:06 -060024#include <cpu/x86/tsc.h>
Eric Biedermanb78c1972004-10-14 20:54:17 +000025#include <arch/cpu.h>
26#include <device/path.h>
27#include <device/device.h>
28#include <smp/spinlock.h>
Eric Biederman8ca8d762003-04-22 19:02:15 +000029
Stefan Reinauer96938852015-06-18 01:23:48 -070030#ifndef __x86_64__
Eric Biedermanb78c1972004-10-14 20:54:17 +000031/* Standard macro to see if a specific flag is changeable */
32static inline int flag_is_changeable_p(uint32_t flag)
Eric Biederman8ca8d762003-04-22 19:02:15 +000033{
Eric Biedermanb78c1972004-10-14 20:54:17 +000034 uint32_t f1, f2;
Eric Biederman8ca8d762003-04-22 19:02:15 +000035
Eric Biedermanb78c1972004-10-14 20:54:17 +000036 asm(
37 "pushfl\n\t"
38 "pushfl\n\t"
39 "popl %0\n\t"
40 "movl %0,%1\n\t"
41 "xorl %2,%0\n\t"
42 "pushl %0\n\t"
43 "popfl\n\t"
44 "pushfl\n\t"
45 "popl %0\n\t"
46 "popfl\n\t"
47 : "=&r" (f1), "=&r" (f2)
48 : "ir" (flag));
49 return ((f1^f2) & flag) != 0;
Eric Biederman8ca8d762003-04-22 19:02:15 +000050}
51
Eric Biedermanb78c1972004-10-14 20:54:17 +000052/*
53 * Cyrix CPUs without cpuid or with cpuid not yet enabled can be detected
54 * by the fact that they preserve the flags across the division of 5/2.
55 * PII and PPro exhibit this behavior too, but they have cpuid available.
56 */
Stefan Reinauer14e22772010-04-27 06:56:47 +000057
Eric Biedermanb78c1972004-10-14 20:54:17 +000058/*
59 * Perform the Cyrix 5/2 test. A Cyrix won't change
60 * the flags, while other 486 chips will.
61 */
62static inline int test_cyrix_52div(void)
63{
64 unsigned int test;
65
66 __asm__ __volatile__(
67 "sahf\n\t" /* clear flags (%eax = 0x0005) */
68 "div %b2\n\t" /* divide 5 by 2 */
69 "lahf" /* store flags into %ah */
70 : "=a" (test)
71 : "0" (5), "q" (2)
72 : "cc");
73
74 /* AH is 0x02 on Cyrix after the divide.. */
75 return (unsigned char) (test >> 8) == 0x02;
76}
77
78/*
79 * Detect a NexGen CPU running without BIOS hypercode new enough
80 * to have CPUID. (Thanks to Herbert Oppmann)
81 */
Stefan Reinauer14e22772010-04-27 06:56:47 +000082
Eric Biedermanb78c1972004-10-14 20:54:17 +000083static int deep_magic_nexgen_probe(void)
84{
85 int ret;
Stefan Reinauer14e22772010-04-27 06:56:47 +000086
Eric Biedermanb78c1972004-10-14 20:54:17 +000087 __asm__ __volatile__ (
88 " movw $0x5555, %%ax\n"
89 " xorw %%dx,%%dx\n"
90 " movw $2, %%cx\n"
91 " divw %%cx\n"
92 " movl $0, %%eax\n"
93 " jnz 1f\n"
94 " movl $1, %%eax\n"
Stefan Reinauer14e22772010-04-27 06:56:47 +000095 "1:\n"
Lee Leahy024b13d2017-03-16 13:41:11 -070096 : "=a" (ret) : : "cx", "dx");
Eric Biedermanb78c1972004-10-14 20:54:17 +000097 return ret;
98}
Stefan Reinauer96938852015-06-18 01:23:48 -070099#endif
Eric Biedermanb78c1972004-10-14 20:54:17 +0000100
Elyes HAOUAS777ea892016-07-29 07:40:41 +0200101/* List of CPU vendor strings along with their normalized
Eric Biedermanb78c1972004-10-14 20:54:17 +0000102 * id values.
103 */
104static struct {
105 int vendor;
106 const char *name;
107} x86_vendors[] = {
108 { X86_VENDOR_INTEL, "GenuineIntel", },
109 { X86_VENDOR_CYRIX, "CyrixInstead", },
Stefan Reinauer14e22772010-04-27 06:56:47 +0000110 { X86_VENDOR_AMD, "AuthenticAMD", },
Eric Biedermanb78c1972004-10-14 20:54:17 +0000111 { X86_VENDOR_UMC, "UMC UMC UMC ", },
112 { X86_VENDOR_NEXGEN, "NexGenDriven", },
113 { X86_VENDOR_CENTAUR, "CentaurHauls", },
Martin Rothe3690102016-01-06 15:21:02 -0700114 { X86_VENDOR_RISE, "RiseRiseRise", },
115 { X86_VENDOR_TRANSMETA, "GenuineTMx86", },
Eric Biedermanb78c1972004-10-14 20:54:17 +0000116 { X86_VENDOR_TRANSMETA, "TransmetaCPU", },
117 { X86_VENDOR_NSC, "Geode by NSC", },
118 { X86_VENDOR_SIS, "SiS SiS SiS ", },
119};
120
Lee Leahy0b5678f2017-03-16 16:01:40 -0700121static const char * const x86_vendor_name[] = {
Eric Biedermanb78c1972004-10-14 20:54:17 +0000122 [X86_VENDOR_INTEL] = "Intel",
123 [X86_VENDOR_CYRIX] = "Cyrix",
124 [X86_VENDOR_AMD] = "AMD",
125 [X86_VENDOR_UMC] = "UMC",
126 [X86_VENDOR_NEXGEN] = "NexGen",
127 [X86_VENDOR_CENTAUR] = "Centaur",
128 [X86_VENDOR_RISE] = "Rise",
129 [X86_VENDOR_TRANSMETA] = "Transmeta",
130 [X86_VENDOR_NSC] = "NSC",
131 [X86_VENDOR_SIS] = "SiS",
132};
133
134static const char *cpu_vendor_name(int vendor)
135{
136 const char *name;
Elyes HAOUAS777ea892016-07-29 07:40:41 +0200137 name = "<invalid CPU vendor>";
Carl-Daniel Hailfinger2ee67792008-10-01 12:52:52 +0000138 if ((vendor < (ARRAY_SIZE(x86_vendor_name))) &&
Stefan Reinauer14e22772010-04-27 06:56:47 +0000139 (x86_vendor_name[vendor] != 0))
Eric Biedermanb78c1972004-10-14 20:54:17 +0000140 name = x86_vendor_name[vendor];
Eric Biedermanb78c1972004-10-14 20:54:17 +0000141 return name;
142}
143
144static void identify_cpu(struct device *cpu)
145{
146 char vendor_name[16];
Eric Biedermanb78c1972004-10-14 20:54:17 +0000147 int i;
148
149 vendor_name[0] = '\0'; /* Unset */
Eric Biedermanb78c1972004-10-14 20:54:17 +0000150
Stefan Reinauer96938852015-06-18 01:23:48 -0700151#ifndef __x86_64__
Eric Biedermanb78c1972004-10-14 20:54:17 +0000152 /* Find the id and vendor_name */
Rudolf Marek06253cd2012-02-25 23:51:12 +0100153 if (!cpu_have_cpuid()) {
Eric Biedermanb78c1972004-10-14 20:54:17 +0000154 /* Its a 486 if we can modify the AC flag */
Lee Leahy9c7c6f72017-03-16 11:24:09 -0700155 if (flag_is_changeable_p(X86_EFLAGS_AC))
Eric Biedermanb78c1972004-10-14 20:54:17 +0000156 cpu->device = 0x00000400; /* 486 */
Lee Leahy9c7c6f72017-03-16 11:24:09 -0700157 else
Eric Biedermanb78c1972004-10-14 20:54:17 +0000158 cpu->device = 0x00000300; /* 386 */
Lee Leahy9c7c6f72017-03-16 11:24:09 -0700159 if ((cpu->device == 0x00000400) && test_cyrix_52div())
Eric Biedermanb78c1972004-10-14 20:54:17 +0000160 memcpy(vendor_name, "CyrixInstead", 13);
161 /* If we ever care we can enable cpuid here */
Eric Biedermanb78c1972004-10-14 20:54:17 +0000162 /* Detect NexGen with old hypercode */
Lee Leahy9c7c6f72017-03-16 11:24:09 -0700163 else if (deep_magic_nexgen_probe())
Eric Biedermanb78c1972004-10-14 20:54:17 +0000164 memcpy(vendor_name, "NexGenDriven", 13);
Eric Biedermanb78c1972004-10-14 20:54:17 +0000165 }
Stefan Reinauer96938852015-06-18 01:23:48 -0700166#endif
Rudolf Marek06253cd2012-02-25 23:51:12 +0100167 if (cpu_have_cpuid()) {
Stefan Reinauer4b556a12009-05-26 12:33:06 +0000168 int cpuid_level;
Eric Biedermanb78c1972004-10-14 20:54:17 +0000169 struct cpuid_result result;
170 result = cpuid(0x00000000);
Lee Leahy024b13d2017-03-16 13:41:11 -0700171 cpuid_level = result.eax;
172 vendor_name[0] = (result.ebx >> 0) & 0xff;
173 vendor_name[1] = (result.ebx >> 8) & 0xff;
174 vendor_name[2] = (result.ebx >> 16) & 0xff;
175 vendor_name[3] = (result.ebx >> 24) & 0xff;
176 vendor_name[4] = (result.edx >> 0) & 0xff;
177 vendor_name[5] = (result.edx >> 8) & 0xff;
178 vendor_name[6] = (result.edx >> 16) & 0xff;
179 vendor_name[7] = (result.edx >> 24) & 0xff;
180 vendor_name[8] = (result.ecx >> 0) & 0xff;
181 vendor_name[9] = (result.ecx >> 8) & 0xff;
Eric Biedermanb78c1972004-10-14 20:54:17 +0000182 vendor_name[10] = (result.ecx >> 16) & 0xff;
183 vendor_name[11] = (result.ecx >> 24) & 0xff;
184 vendor_name[12] = '\0';
Stefan Reinauer14e22772010-04-27 06:56:47 +0000185
Eric Biedermanb78c1972004-10-14 20:54:17 +0000186 /* Intel-defined flags: level 0x00000001 */
Lee Leahy9c7c6f72017-03-16 11:24:09 -0700187 if (cpuid_level >= 0x00000001)
Eric Biedermanb78c1972004-10-14 20:54:17 +0000188 cpu->device = cpuid_eax(0x00000001);
Lee Leahy9c7c6f72017-03-16 11:24:09 -0700189 else
Eric Biedermanb78c1972004-10-14 20:54:17 +0000190 /* Have CPUID level 0 only unheard of */
191 cpu->device = 0x00000400;
Eric Biedermanb78c1972004-10-14 20:54:17 +0000192 }
193 cpu->vendor = X86_VENDOR_UNKNOWN;
Elyes HAOUASdbf30672016-08-21 17:37:15 +0200194 for (i = 0; i < ARRAY_SIZE(x86_vendors); i++) {
Eric Biedermanb78c1972004-10-14 20:54:17 +0000195 if (memcmp(vendor_name, x86_vendors[i].name, 12) == 0) {
196 cpu->vendor = x86_vendors[i].vendor;
197 break;
198 }
199 }
200}
201
Stefan Reinauer6293d302012-04-03 16:07:56 -0700202struct cpu_driver *find_cpu_driver(struct device *cpu)
Eric Biedermanb78c1972004-10-14 20:54:17 +0000203{
204 struct cpu_driver *driver;
Aaron Durbin03758152015-09-03 17:23:08 -0500205 for (driver = _cpu_drivers; driver < _ecpu_drivers; driver++) {
Eric Biedermanb78c1972004-10-14 20:54:17 +0000206 struct cpu_device_id *id;
Stefan Reinauer6293d302012-04-03 16:07:56 -0700207 for (id = driver->id_table;
208 id->vendor != X86_VENDOR_INVALID; id++) {
Eric Biedermanb78c1972004-10-14 20:54:17 +0000209 if ((cpu->vendor == id->vendor) &&
Stefan Reinauer14e22772010-04-27 06:56:47 +0000210 (cpu->device == id->device))
Stefan Reinauer6293d302012-04-03 16:07:56 -0700211 return driver;
Lee Leahy0b5678f2017-03-16 16:01:40 -0700212 if (id->vendor == X86_VENDOR_ANY)
Gerd Hoffmanncbf30732013-05-31 09:23:26 +0200213 return driver;
Eric Biedermanb78c1972004-10-14 20:54:17 +0000214 }
215 }
Stefan Reinauer6293d302012-04-03 16:07:56 -0700216 return NULL;
217}
218
219static void set_cpu_ops(struct device *cpu)
220{
221 struct cpu_driver *driver = find_cpu_driver(cpu);
222 cpu->ops = driver ? driver->ops : NULL;
Eric Biedermanb78c1972004-10-14 20:54:17 +0000223}
224
Ronald G. Minnich8b930592012-06-05 14:41:27 -0700225void cpu_initialize(unsigned int index)
Eric Biederman8ca8d762003-04-22 19:02:15 +0000226{
227 /* Because we busy wait at the printk spinlock.
228 * It is important to keep the number of printed messages
229 * from secondary cpus to a minimum, when debugging is
230 * disabled.
231 */
Eric Biedermanb78c1972004-10-14 20:54:17 +0000232 struct device *cpu;
Sven Schnelle51676b12012-07-29 19:18:03 +0200233 struct cpu_info *info;
Yinghai Lud4b278c2006-10-04 20:46:15 +0000234 struct cpuinfo_x86 c;
Stefan Reinauer14e22772010-04-27 06:56:47 +0000235
Sven Schnelle51676b12012-07-29 19:18:03 +0200236 info = cpu_info();
Eric Biederman83b991a2003-10-11 06:20:25 +0000237
Ronald G. Minnich8b930592012-06-05 14:41:27 -0700238 printk(BIOS_INFO, "Initializing CPU #%d\n", index);
Kyösti Mälkkibc8c9962012-07-10 10:19:40 +0300239
Sven Schnelle51676b12012-07-29 19:18:03 +0200240 cpu = info->cpu;
Lee Leahy9c7c6f72017-03-16 11:24:09 -0700241 if (!cpu)
Elyes HAOUAS777ea892016-07-29 07:40:41 +0200242 die("CPU: missing CPU device structure");
Li-Ta Lo8cb91dc2004-03-26 18:34:48 +0000243
Damien Zammit149c4c52015-11-28 21:27:05 +1100244 if (cpu->initialized)
245 return;
246
Duncan Laurie8adf7a22013-06-10 10:34:20 -0700247 post_log_path(cpu);
248
Elyes HAOUAS777ea892016-07-29 07:40:41 +0200249 /* Find what type of CPU we are dealing with */
Yinghai Lu30b4abe2007-04-06 19:57:42 +0000250 identify_cpu(cpu);
Stefan Reinauerc02b4fc2010-03-22 11:42:32 +0000251 printk(BIOS_DEBUG, "CPU: vendor %s device %x\n",
Yinghai Lu30b4abe2007-04-06 19:57:42 +0000252 cpu_vendor_name(cpu->vendor), cpu->device);
Li-Ta Lofd3f2d72004-05-12 16:34:46 +0000253
Yinghai Lu30b4abe2007-04-06 19:57:42 +0000254 get_fms(&c, cpu->device);
Yinghai Lud4b278c2006-10-04 20:46:15 +0000255
Stefan Reinauer5f5436f2010-04-25 20:42:02 +0000256 printk(BIOS_DEBUG, "CPU: family %02x, model %02x, stepping %02x\n",
257 c.x86, c.x86_model, c.x86_mask);
Stefan Reinauer14e22772010-04-27 06:56:47 +0000258
Yinghai Lu30b4abe2007-04-06 19:57:42 +0000259 /* Lookup the cpu's operations */
260 set_cpu_ops(cpu);
Yinghai Lud4b278c2006-10-04 20:46:15 +0000261
Elyes HAOUASdbf30672016-08-21 17:37:15 +0200262 if (!cpu->ops) {
Yinghai Lu30b4abe2007-04-06 19:57:42 +0000263 /* mask out the stepping and try again */
264 cpu->device -= c.x86_mask;
Steven J. Magnanieccc3572005-09-14 13:53:45 +0000265 set_cpu_ops(cpu);
Yinghai Lu30b4abe2007-04-06 19:57:42 +0000266 cpu->device += c.x86_mask;
Lee Leahy0b5678f2017-03-16 16:01:40 -0700267 if (!cpu->ops)
268 die("Unknown cpu");
Elyes HAOUAS777ea892016-07-29 07:40:41 +0200269 printk(BIOS_DEBUG, "Using generic CPU ops (good)\n");
Ronald G. Minnich43225bc2005-11-22 00:07:02 +0000270 }
Stefan Reinauer14e22772010-04-27 06:56:47 +0000271
Sven Schnelle51676b12012-07-29 19:18:03 +0200272
Elyes HAOUAS777ea892016-07-29 07:40:41 +0200273 /* Initialize the CPU */
Yinghai Lu30b4abe2007-04-06 19:57:42 +0000274 if (cpu->ops && cpu->ops->init) {
275 cpu->enabled = 1;
276 cpu->initialized = 1;
277 cpu->ops->init(cpu);
278 }
Duncan Laurie8adf7a22013-06-10 10:34:20 -0700279 post_log_clear();
Yinghai Lu30b4abe2007-04-06 19:57:42 +0000280
Ronald G. Minnich8b930592012-06-05 14:41:27 -0700281 printk(BIOS_INFO, "CPU #%d initialized\n", index);
Eric Biederman8ca8d762003-04-22 19:02:15 +0000282}
Aaron Durbinf6ada1c2016-02-10 10:52:47 -0600283
284void lb_arch_add_records(struct lb_header *header)
285{
Aaron Durbine0969ae2016-02-10 10:56:06 -0600286 uint32_t freq_khz;
287 struct lb_tsc_info *tsc_info;
288
289 /* Don't advertise a TSC rate unless it's constant. */
290 if (!IS_ENABLED(CONFIG_TSC_CONSTANT_RATE))
291 return;
292
293 freq_khz = tsc_freq_mhz() * 1000;
294
295 /* No use exposing a TSC frequency that is zero. */
296 if (freq_khz == 0)
297 return;
298
299 tsc_info = (void *)lb_new_record(header);
300 tsc_info->tag = LB_TAG_TSC_INFO;
301 tsc_info->size = sizeof(*tsc_info);
302 tsc_info->freq_khz = freq_khz;
Aaron Durbinf6ada1c2016-02-10 10:52:47 -0600303}
Aaron Durbinb21e3622016-12-07 00:32:19 -0600304
305void arch_bootstate_coreboot_exit(void)
306{
307 /* APs are already parked by existing infrastructure. */
308 if (!IS_ENABLED(CONFIG_PARALLEL_MP_AP_WORK))
309 return;
310
311 /* APs are waiting for work. Last thing to do is park them. */
312 if (mp_park_aps())
313 printk(BIOS_ERR, "Parking APs failed.\n");
314}