blob: 3732ae296e96d7f0573b572d497b0640d27c496c [file] [log] [blame]
Eric Biederman8ca8d762003-04-22 19:02:15 +00001#include <console/console.h>
2#include <cpu/cpu.h>
Eric Biederman8ca8d762003-04-22 19:02:15 +00003#include <arch/io.h>
4#include <string.h>
Eric Biedermanb78c1972004-10-14 20:54:17 +00005#include <cpu/x86/mtrr.h>
6#include <cpu/x86/msr.h>
7#include <cpu/x86/lapic.h>
8#include <arch/cpu.h>
9#include <device/path.h>
10#include <device/device.h>
11#include <smp/spinlock.h>
Eric Biederman8ca8d762003-04-22 19:02:15 +000012
Eric Biedermanb78c1972004-10-14 20:54:17 +000013/* Standard macro to see if a specific flag is changeable */
14static inline int flag_is_changeable_p(uint32_t flag)
Eric Biederman8ca8d762003-04-22 19:02:15 +000015{
Eric Biedermanb78c1972004-10-14 20:54:17 +000016 uint32_t f1, f2;
Eric Biederman8ca8d762003-04-22 19:02:15 +000017
Eric Biedermanb78c1972004-10-14 20:54:17 +000018 asm(
19 "pushfl\n\t"
20 "pushfl\n\t"
21 "popl %0\n\t"
22 "movl %0,%1\n\t"
23 "xorl %2,%0\n\t"
24 "pushl %0\n\t"
25 "popfl\n\t"
26 "pushfl\n\t"
27 "popl %0\n\t"
28 "popfl\n\t"
29 : "=&r" (f1), "=&r" (f2)
30 : "ir" (flag));
31 return ((f1^f2) & flag) != 0;
Eric Biederman8ca8d762003-04-22 19:02:15 +000032}
33
Eric Biedermanb78c1972004-10-14 20:54:17 +000034
35/* Probe for the CPUID instruction */
36static int have_cpuid_p(void)
Eric Biederman8ca8d762003-04-22 19:02:15 +000037{
Eric Biedermanb78c1972004-10-14 20:54:17 +000038 return flag_is_changeable_p(X86_EFLAGS_ID);
Eric Biederman8ca8d762003-04-22 19:02:15 +000039}
40
Eric Biedermanb78c1972004-10-14 20:54:17 +000041/*
42 * Cyrix CPUs without cpuid or with cpuid not yet enabled can be detected
43 * by the fact that they preserve the flags across the division of 5/2.
44 * PII and PPro exhibit this behavior too, but they have cpuid available.
45 */
Stefan Reinauer14e22772010-04-27 06:56:47 +000046
Eric Biedermanb78c1972004-10-14 20:54:17 +000047/*
48 * Perform the Cyrix 5/2 test. A Cyrix won't change
49 * the flags, while other 486 chips will.
50 */
51static inline int test_cyrix_52div(void)
52{
53 unsigned int test;
54
55 __asm__ __volatile__(
56 "sahf\n\t" /* clear flags (%eax = 0x0005) */
57 "div %b2\n\t" /* divide 5 by 2 */
58 "lahf" /* store flags into %ah */
59 : "=a" (test)
60 : "0" (5), "q" (2)
61 : "cc");
62
63 /* AH is 0x02 on Cyrix after the divide.. */
64 return (unsigned char) (test >> 8) == 0x02;
65}
66
67/*
68 * Detect a NexGen CPU running without BIOS hypercode new enough
69 * to have CPUID. (Thanks to Herbert Oppmann)
70 */
Stefan Reinauer14e22772010-04-27 06:56:47 +000071
Eric Biedermanb78c1972004-10-14 20:54:17 +000072static int deep_magic_nexgen_probe(void)
73{
74 int ret;
Stefan Reinauer14e22772010-04-27 06:56:47 +000075
Eric Biedermanb78c1972004-10-14 20:54:17 +000076 __asm__ __volatile__ (
77 " movw $0x5555, %%ax\n"
78 " xorw %%dx,%%dx\n"
79 " movw $2, %%cx\n"
80 " divw %%cx\n"
81 " movl $0, %%eax\n"
82 " jnz 1f\n"
83 " movl $1, %%eax\n"
Stefan Reinauer14e22772010-04-27 06:56:47 +000084 "1:\n"
Eric Biedermanb78c1972004-10-14 20:54:17 +000085 : "=a" (ret) : : "cx", "dx" );
86 return ret;
87}
88
89/* List of cpu vendor strings along with their normalized
90 * id values.
91 */
92static struct {
93 int vendor;
94 const char *name;
95} x86_vendors[] = {
96 { X86_VENDOR_INTEL, "GenuineIntel", },
97 { X86_VENDOR_CYRIX, "CyrixInstead", },
Stefan Reinauer14e22772010-04-27 06:56:47 +000098 { X86_VENDOR_AMD, "AuthenticAMD", },
Eric Biedermanb78c1972004-10-14 20:54:17 +000099 { X86_VENDOR_UMC, "UMC UMC UMC ", },
100 { X86_VENDOR_NEXGEN, "NexGenDriven", },
101 { X86_VENDOR_CENTAUR, "CentaurHauls", },
102 { X86_VENDOR_RISE, "RiseRiseRise", },
103 { X86_VENDOR_TRANSMETA, "GenuineTMx86", },
104 { X86_VENDOR_TRANSMETA, "TransmetaCPU", },
105 { X86_VENDOR_NSC, "Geode by NSC", },
106 { X86_VENDOR_SIS, "SiS SiS SiS ", },
107};
108
109static const char *x86_vendor_name[] = {
110 [X86_VENDOR_INTEL] = "Intel",
111 [X86_VENDOR_CYRIX] = "Cyrix",
112 [X86_VENDOR_AMD] = "AMD",
113 [X86_VENDOR_UMC] = "UMC",
114 [X86_VENDOR_NEXGEN] = "NexGen",
115 [X86_VENDOR_CENTAUR] = "Centaur",
116 [X86_VENDOR_RISE] = "Rise",
117 [X86_VENDOR_TRANSMETA] = "Transmeta",
118 [X86_VENDOR_NSC] = "NSC",
119 [X86_VENDOR_SIS] = "SiS",
120};
121
122static const char *cpu_vendor_name(int vendor)
123{
124 const char *name;
125 name = "<invalid cpu vendor>";
Carl-Daniel Hailfinger2ee67792008-10-01 12:52:52 +0000126 if ((vendor < (ARRAY_SIZE(x86_vendor_name))) &&
Stefan Reinauer14e22772010-04-27 06:56:47 +0000127 (x86_vendor_name[vendor] != 0))
Eric Biedermanb78c1972004-10-14 20:54:17 +0000128 {
129 name = x86_vendor_name[vendor];
130 }
131 return name;
132}
133
134static void identify_cpu(struct device *cpu)
135{
136 char vendor_name[16];
Eric Biedermanb78c1972004-10-14 20:54:17 +0000137 int i;
138
139 vendor_name[0] = '\0'; /* Unset */
Eric Biedermanb78c1972004-10-14 20:54:17 +0000140
141 /* Find the id and vendor_name */
142 if (!have_cpuid_p()) {
143 /* Its a 486 if we can modify the AC flag */
144 if (flag_is_changeable_p(X86_EFLAGS_AC)) {
145 cpu->device = 0x00000400; /* 486 */
146 } else {
147 cpu->device = 0x00000300; /* 386 */
148 }
149 if ((cpu->device == 0x00000400) && test_cyrix_52div()) {
150 memcpy(vendor_name, "CyrixInstead", 13);
151 /* If we ever care we can enable cpuid here */
152 }
153 /* Detect NexGen with old hypercode */
154 else if (deep_magic_nexgen_probe()) {
155 memcpy(vendor_name, "NexGenDriven", 13);
156 }
157 }
158 if (have_cpuid_p()) {
Stefan Reinauer4b556a12009-05-26 12:33:06 +0000159 int cpuid_level;
Eric Biedermanb78c1972004-10-14 20:54:17 +0000160 struct cpuid_result result;
161 result = cpuid(0x00000000);
162 cpuid_level = result.eax;
163 vendor_name[ 0] = (result.ebx >> 0) & 0xff;
164 vendor_name[ 1] = (result.ebx >> 8) & 0xff;
165 vendor_name[ 2] = (result.ebx >> 16) & 0xff;
166 vendor_name[ 3] = (result.ebx >> 24) & 0xff;
167 vendor_name[ 4] = (result.edx >> 0) & 0xff;
168 vendor_name[ 5] = (result.edx >> 8) & 0xff;
169 vendor_name[ 6] = (result.edx >> 16) & 0xff;
170 vendor_name[ 7] = (result.edx >> 24) & 0xff;
171 vendor_name[ 8] = (result.ecx >> 0) & 0xff;
172 vendor_name[ 9] = (result.ecx >> 8) & 0xff;
173 vendor_name[10] = (result.ecx >> 16) & 0xff;
174 vendor_name[11] = (result.ecx >> 24) & 0xff;
175 vendor_name[12] = '\0';
Stefan Reinauer14e22772010-04-27 06:56:47 +0000176
Eric Biedermanb78c1972004-10-14 20:54:17 +0000177 /* Intel-defined flags: level 0x00000001 */
178 if (cpuid_level >= 0x00000001) {
179 cpu->device = cpuid_eax(0x00000001);
180 }
181 else {
182 /* Have CPUID level 0 only unheard of */
183 cpu->device = 0x00000400;
184 }
185 }
186 cpu->vendor = X86_VENDOR_UNKNOWN;
Carl-Daniel Hailfinger2ee67792008-10-01 12:52:52 +0000187 for(i = 0; i < ARRAY_SIZE(x86_vendors); i++) {
Eric Biedermanb78c1972004-10-14 20:54:17 +0000188 if (memcmp(vendor_name, x86_vendors[i].name, 12) == 0) {
189 cpu->vendor = x86_vendors[i].vendor;
190 break;
191 }
192 }
193}
194
195static void set_cpu_ops(struct device *cpu)
196{
197 struct cpu_driver *driver;
198 cpu->ops = 0;
199 for (driver = cpu_drivers; driver < ecpu_drivers; driver++) {
200 struct cpu_device_id *id;
201 for(id = driver->id_table; id->vendor != X86_VENDOR_INVALID; id++) {
202 if ((cpu->vendor == id->vendor) &&
Stefan Reinauer14e22772010-04-27 06:56:47 +0000203 (cpu->device == id->device))
Eric Biedermanb78c1972004-10-14 20:54:17 +0000204 {
205 goto found;
206 }
207 }
208 }
Eric Biedermanb78c1972004-10-14 20:54:17 +0000209 return;
210 found:
211 cpu->ops = driver->ops;
212}
213
214void cpu_initialize(void)
Eric Biederman8ca8d762003-04-22 19:02:15 +0000215{
216 /* Because we busy wait at the printk spinlock.
217 * It is important to keep the number of printed messages
218 * from secondary cpus to a minimum, when debugging is
219 * disabled.
220 */
Eric Biedermanb78c1972004-10-14 20:54:17 +0000221 struct device *cpu;
222 struct cpu_info *info;
Yinghai Lud4b278c2006-10-04 20:46:15 +0000223 struct cpuinfo_x86 c;
Stefan Reinauer14e22772010-04-27 06:56:47 +0000224
Eric Biedermanb78c1972004-10-14 20:54:17 +0000225 info = cpu_info();
Eric Biederman83b991a2003-10-11 06:20:25 +0000226
Stefan Reinauerc02b4fc2010-03-22 11:42:32 +0000227 printk(BIOS_INFO, "Initializing CPU #%ld\n", info->index);
Eric Biederman8ca8d762003-04-22 19:02:15 +0000228
Eric Biedermanb78c1972004-10-14 20:54:17 +0000229 cpu = info->cpu;
230 if (!cpu) {
231 die("CPU: missing cpu device structure");
232 }
Li-Ta Lo8cb91dc2004-03-26 18:34:48 +0000233
Yinghai Lu30b4abe2007-04-06 19:57:42 +0000234 /* Find what type of cpu we are dealing with */
235 identify_cpu(cpu);
Stefan Reinauerc02b4fc2010-03-22 11:42:32 +0000236 printk(BIOS_DEBUG, "CPU: vendor %s device %x\n",
Yinghai Lu30b4abe2007-04-06 19:57:42 +0000237 cpu_vendor_name(cpu->vendor), cpu->device);
Li-Ta Lofd3f2d72004-05-12 16:34:46 +0000238
Yinghai Lu30b4abe2007-04-06 19:57:42 +0000239 get_fms(&c, cpu->device);
Yinghai Lud4b278c2006-10-04 20:46:15 +0000240
Stefan Reinauer5f5436f2010-04-25 20:42:02 +0000241 printk(BIOS_DEBUG, "CPU: family %02x, model %02x, stepping %02x\n",
242 c.x86, c.x86_model, c.x86_mask);
Stefan Reinauer14e22772010-04-27 06:56:47 +0000243
Yinghai Lu30b4abe2007-04-06 19:57:42 +0000244 /* Lookup the cpu's operations */
245 set_cpu_ops(cpu);
Yinghai Lud4b278c2006-10-04 20:46:15 +0000246
Stefan Reinauer14e22772010-04-27 06:56:47 +0000247 if(!cpu->ops) {
Yinghai Lu30b4abe2007-04-06 19:57:42 +0000248 /* mask out the stepping and try again */
249 cpu->device -= c.x86_mask;
Steven J. Magnanieccc3572005-09-14 13:53:45 +0000250 set_cpu_ops(cpu);
Yinghai Lu30b4abe2007-04-06 19:57:42 +0000251 cpu->device += c.x86_mask;
252 if(!cpu->ops) die("Unknown cpu");
Stefan Reinauerc02b4fc2010-03-22 11:42:32 +0000253 printk(BIOS_DEBUG, "Using generic cpu ops (good)\n");
Ronald G. Minnich43225bc2005-11-22 00:07:02 +0000254 }
Stefan Reinauer14e22772010-04-27 06:56:47 +0000255
Yinghai Lu30b4abe2007-04-06 19:57:42 +0000256
257 /* Initialize the cpu */
258 if (cpu->ops && cpu->ops->init) {
259 cpu->enabled = 1;
260 cpu->initialized = 1;
261 cpu->ops->init(cpu);
262 }
263
Stefan Reinauerc02b4fc2010-03-22 11:42:32 +0000264 printk(BIOS_INFO, "CPU #%ld initialized\n", info->index);
Yinghai Lu30b4abe2007-04-06 19:57:42 +0000265
Eric Biedermanb78c1972004-10-14 20:54:17 +0000266 return;
Eric Biederman8ca8d762003-04-22 19:02:15 +0000267}
268