Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1 | #include <linux/init.h> |
| 2 | #include <linux/kernel.h> |
| 3 | |
| 4 | #include <linux/string.h> |
| 5 | #include <linux/bitops.h> |
| 6 | #include <linux/smp.h> |
| 7 | #include <linux/thread_info.h> |
Nick Piggin | 53e86b9 | 2005-11-13 16:07:23 -0800 | [diff] [blame] | 8 | #include <linux/module.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 9 | |
| 10 | #include <asm/processor.h> |
Sam Ravnborg | d72b1b4 | 2007-10-17 18:04:33 +0200 | [diff] [blame] | 11 | #include <asm/pgtable.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 12 | #include <asm/msr.h> |
| 13 | #include <asm/uaccess.h> |
Markus Metzger | eee3af4 | 2008-01-30 13:31:09 +0100 | [diff] [blame] | 14 | #include <asm/ptrace.h> |
| 15 | #include <asm/ds.h> |
Harvey Harrison | 73bdb73 | 2008-02-04 16:48:04 +0100 | [diff] [blame] | 16 | #include <asm/bugs.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 17 | |
Yinghai Lu | 185f3b9 | 2008-09-09 16:40:35 -0700 | [diff] [blame^] | 18 | #ifdef CONFIG_X86_64 |
| 19 | #include <asm/topology.h> |
| 20 | #include <asm/numa_64.h> |
| 21 | #endif |
| 22 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 23 | #include "cpu.h" |
| 24 | |
| 25 | #ifdef CONFIG_X86_LOCAL_APIC |
| 26 | #include <asm/mpspec.h> |
| 27 | #include <asm/apic.h> |
| 28 | #include <mach_apic.h> |
| 29 | #endif |
| 30 | |
Thomas Petazzoni | 03ae576 | 2008-02-15 12:00:23 +0100 | [diff] [blame] | 31 | static void __cpuinit early_init_intel(struct cpuinfo_x86 *c) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 32 | { |
Andi Kleen | 2b16a23 | 2008-01-30 13:32:40 +0100 | [diff] [blame] | 33 | if ((c->x86 == 0xf && c->x86_model >= 0x03) || |
| 34 | (c->x86 == 0x6 && c->x86_model >= 0x0e)) |
| 35 | set_cpu_cap(c, X86_FEATURE_CONSTANT_TSC); |
Yinghai Lu | 185f3b9 | 2008-09-09 16:40:35 -0700 | [diff] [blame^] | 36 | |
| 37 | #ifdef CONFIG_X86_64 |
| 38 | set_cpu_cap(c, X86_FEATURE_SYSENTER32); |
| 39 | #else |
| 40 | /* Netburst reports 64 bytes clflush size, but does IO in 128 bytes */ |
| 41 | if (c->x86 == 15 && c->x86_cache_alignment == 64) |
| 42 | c->x86_cache_alignment = 128; |
| 43 | #endif |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 44 | } |
| 45 | |
Yinghai Lu | 185f3b9 | 2008-09-09 16:40:35 -0700 | [diff] [blame^] | 46 | #ifdef CONFIG_X86_32 |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 47 | /* |
| 48 | * Early probe support logic for ppro memory erratum #50 |
| 49 | * |
| 50 | * This is called before we do cpu ident work |
| 51 | */ |
Paolo Ciarrocchi | 65eb6b4 | 2008-02-22 23:09:42 +0100 | [diff] [blame] | 52 | |
Chuck Ebbert | 3bc9b76 | 2006-03-23 02:59:33 -0800 | [diff] [blame] | 53 | int __cpuinit ppro_with_ram_bug(void) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 54 | { |
| 55 | /* Uses data from early_cpu_detect now */ |
| 56 | if (boot_cpu_data.x86_vendor == X86_VENDOR_INTEL && |
| 57 | boot_cpu_data.x86 == 6 && |
| 58 | boot_cpu_data.x86_model == 1 && |
| 59 | boot_cpu_data.x86_mask < 8) { |
| 60 | printk(KERN_INFO "Pentium Pro with Errata#50 detected. Taking evasive action.\n"); |
| 61 | return 1; |
| 62 | } |
| 63 | return 0; |
| 64 | } |
Paolo Ciarrocchi | 65eb6b4 | 2008-02-22 23:09:42 +0100 | [diff] [blame] | 65 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 66 | |
| 67 | /* |
| 68 | * P4 Xeon errata 037 workaround. |
| 69 | * Hardware prefetcher may cause stale data to be loaded into the cache. |
| 70 | */ |
Chuck Ebbert | 3bc9b76 | 2006-03-23 02:59:33 -0800 | [diff] [blame] | 71 | static void __cpuinit Intel_errata_workarounds(struct cpuinfo_x86 *c) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 72 | { |
| 73 | unsigned long lo, hi; |
| 74 | |
| 75 | if ((c->x86 == 15) && (c->x86_model == 1) && (c->x86_mask == 1)) { |
Paolo Ciarrocchi | 65eb6b4 | 2008-02-22 23:09:42 +0100 | [diff] [blame] | 76 | rdmsr(MSR_IA32_MISC_ENABLE, lo, hi); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 77 | if ((lo & (1<<9)) == 0) { |
| 78 | printk (KERN_INFO "CPU: C0 stepping P4 Xeon detected.\n"); |
| 79 | printk (KERN_INFO "CPU: Disabling hardware prefetching (Errata 037)\n"); |
| 80 | lo |= (1<<9); /* Disable hw prefetching */ |
| 81 | wrmsr (MSR_IA32_MISC_ENABLE, lo, hi); |
| 82 | } |
| 83 | } |
| 84 | } |
| 85 | |
| 86 | |
Yinghai Lu | 185f3b9 | 2008-09-09 16:40:35 -0700 | [diff] [blame^] | 87 | |
| 88 | #ifdef CONFIG_X86_F00F_BUG |
| 89 | static void __cpuinit trap_init_f00f_bug(void) |
| 90 | { |
| 91 | __set_fixmap(FIX_F00F_IDT, __pa(&idt_table), PAGE_KERNEL_RO); |
| 92 | |
| 93 | /* |
| 94 | * Update the IDT descriptor and reload the IDT so that |
| 95 | * it uses the read-only mapped virtual address. |
| 96 | */ |
| 97 | idt_descr.address = fix_to_virt(FIX_F00F_IDT); |
| 98 | load_idt(&idt_descr); |
| 99 | } |
| 100 | #endif |
| 101 | #endif |
| 102 | |
| 103 | static void __cpuinit srat_detect_node(void) |
| 104 | { |
| 105 | #if defined(CONFIG_NUMA) && defined(CONFIG_X86_64) |
| 106 | unsigned node; |
| 107 | int cpu = smp_processor_id(); |
| 108 | int apicid = hard_smp_processor_id(); |
| 109 | |
| 110 | /* Don't do the funky fallback heuristics the AMD version employs |
| 111 | for now. */ |
| 112 | node = apicid_to_node[apicid]; |
| 113 | if (node == NUMA_NO_NODE || !node_online(node)) |
| 114 | node = first_node(node_online_map); |
| 115 | numa_set_node(cpu, node); |
| 116 | |
| 117 | printk(KERN_INFO "CPU %d/%x -> Node %d\n", cpu, apicid, node); |
| 118 | #endif |
| 119 | } |
| 120 | |
Andi Kleen | 3dd9d51 | 2005-04-16 15:25:15 -0700 | [diff] [blame] | 121 | /* |
| 122 | * find out the number of processor cores on the die |
| 123 | */ |
Yinghai Lu | f69feff | 2008-09-07 17:58:58 -0700 | [diff] [blame] | 124 | static int __cpuinit intel_num_cpu_cores(struct cpuinfo_x86 *c) |
Andi Kleen | 3dd9d51 | 2005-04-16 15:25:15 -0700 | [diff] [blame] | 125 | { |
Zachary Amsden | f2ab446 | 2005-09-03 15:56:42 -0700 | [diff] [blame] | 126 | unsigned int eax, ebx, ecx, edx; |
Andi Kleen | 3dd9d51 | 2005-04-16 15:25:15 -0700 | [diff] [blame] | 127 | |
| 128 | if (c->cpuid_level < 4) |
| 129 | return 1; |
| 130 | |
Zachary Amsden | f2ab446 | 2005-09-03 15:56:42 -0700 | [diff] [blame] | 131 | /* Intel has a non-standard dependency on %ecx for this CPUID level. */ |
| 132 | cpuid_count(4, 0, &eax, &ebx, &ecx, &edx); |
Andi Kleen | 3dd9d51 | 2005-04-16 15:25:15 -0700 | [diff] [blame] | 133 | if (eax & 0x1f) |
| 134 | return ((eax >> 26) + 1); |
| 135 | else |
| 136 | return 1; |
| 137 | } |
| 138 | |
Chuck Ebbert | 3bc9b76 | 2006-03-23 02:59:33 -0800 | [diff] [blame] | 139 | static void __cpuinit init_intel(struct cpuinfo_x86 *c) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 140 | { |
| 141 | unsigned int l2 = 0; |
| 142 | char *p = NULL; |
| 143 | |
Andi Kleen | 2b16a23 | 2008-01-30 13:32:40 +0100 | [diff] [blame] | 144 | early_init_intel(c); |
| 145 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 146 | #ifdef CONFIG_X86_F00F_BUG |
| 147 | /* |
| 148 | * All current models of Pentium and Pentium with MMX technology CPUs |
| 149 | * have the F0 0F bug, which lets nonprivileged users lock up the system. |
| 150 | * Note that the workaround only should be initialized once... |
| 151 | */ |
| 152 | c->f00f_bug = 0; |
Rusty Russell | 4f205fd | 2006-12-07 02:14:08 +0100 | [diff] [blame] | 153 | if (!paravirt_enabled() && c->x86 == 5) { |
Paolo Ciarrocchi | 65eb6b4 | 2008-02-22 23:09:42 +0100 | [diff] [blame] | 154 | static int f00f_workaround_enabled; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 155 | |
| 156 | c->f00f_bug = 1; |
Paolo Ciarrocchi | 65eb6b4 | 2008-02-22 23:09:42 +0100 | [diff] [blame] | 157 | if (!f00f_workaround_enabled) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 158 | trap_init_f00f_bug(); |
| 159 | printk(KERN_NOTICE "Intel Pentium with F0 0F bug - workaround enabled.\n"); |
| 160 | f00f_workaround_enabled = 1; |
| 161 | } |
| 162 | } |
| 163 | #endif |
| 164 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 165 | l2 = init_intel_cacheinfo(c); |
Paolo Ciarrocchi | 65eb6b4 | 2008-02-22 23:09:42 +0100 | [diff] [blame] | 166 | if (c->cpuid_level > 9) { |
Venkatesh Pallipadi | 0080e66 | 2006-06-26 13:59:59 +0200 | [diff] [blame] | 167 | unsigned eax = cpuid_eax(10); |
| 168 | /* Check for version and the number of counters */ |
| 169 | if ((eax & 0xff) && (((eax>>8) & 0xff) > 1)) |
Ingo Molnar | d0e95eb | 2008-02-26 08:52:33 +0100 | [diff] [blame] | 170 | set_cpu_cap(c, X86_FEATURE_ARCH_PERFMON); |
Venkatesh Pallipadi | 0080e66 | 2006-06-26 13:59:59 +0200 | [diff] [blame] | 171 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 172 | |
Yinghai Lu | 185f3b9 | 2008-09-09 16:40:35 -0700 | [diff] [blame^] | 173 | #ifdef CONFIG_X86_32 |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 174 | /* SEP CPUID bug: Pentium Pro reports SEP but doesn't have it until model 3 mask 3 */ |
| 175 | if ((c->x86<<8 | c->x86_model<<4 | c->x86_mask) < 0x633) |
Ingo Molnar | d0e95eb | 2008-02-26 08:52:33 +0100 | [diff] [blame] | 176 | clear_cpu_cap(c, X86_FEATURE_SEP); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 177 | |
Paolo Ciarrocchi | 65eb6b4 | 2008-02-22 23:09:42 +0100 | [diff] [blame] | 178 | /* |
| 179 | * Names for the Pentium II/Celeron processors |
| 180 | * detectable only by also checking the cache size. |
| 181 | * Dixon is NOT a Celeron. |
| 182 | */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 183 | if (c->x86 == 6) { |
| 184 | switch (c->x86_model) { |
| 185 | case 5: |
| 186 | if (c->x86_mask == 0) { |
| 187 | if (l2 == 0) |
| 188 | p = "Celeron (Covington)"; |
| 189 | else if (l2 == 256) |
| 190 | p = "Mobile Pentium II (Dixon)"; |
| 191 | } |
| 192 | break; |
Paolo Ciarrocchi | 65eb6b4 | 2008-02-22 23:09:42 +0100 | [diff] [blame] | 193 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 194 | case 6: |
| 195 | if (l2 == 128) |
| 196 | p = "Celeron (Mendocino)"; |
| 197 | else if (c->x86_mask == 0 || c->x86_mask == 5) |
| 198 | p = "Celeron-A"; |
| 199 | break; |
Paolo Ciarrocchi | 65eb6b4 | 2008-02-22 23:09:42 +0100 | [diff] [blame] | 200 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 201 | case 8: |
| 202 | if (l2 == 128) |
| 203 | p = "Celeron (Coppermine)"; |
| 204 | break; |
| 205 | } |
| 206 | } |
| 207 | |
Paolo Ciarrocchi | 65eb6b4 | 2008-02-22 23:09:42 +0100 | [diff] [blame] | 208 | if (p) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 209 | strcpy(c->x86_model_id, p); |
Paolo Ciarrocchi | 65eb6b4 | 2008-02-22 23:09:42 +0100 | [diff] [blame] | 210 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 211 | Intel_errata_workarounds(c); |
| 212 | |
| 213 | #ifdef CONFIG_X86_INTEL_USERCOPY |
| 214 | /* |
| 215 | * Set up the preferred alignment for movsl bulk memory moves |
| 216 | */ |
| 217 | switch (c->x86) { |
| 218 | case 4: /* 486: untested */ |
| 219 | break; |
| 220 | case 5: /* Old Pentia: untested */ |
| 221 | break; |
| 222 | case 6: /* PII/PIII only like movsl with 8-byte alignment */ |
| 223 | movsl_mask.mask = 7; |
| 224 | break; |
| 225 | case 15: /* P4 is OK down to 8-byte alignment */ |
| 226 | movsl_mask.mask = 7; |
| 227 | break; |
| 228 | } |
| 229 | #endif |
| 230 | |
Yinghai Lu | 185f3b9 | 2008-09-09 16:40:35 -0700 | [diff] [blame^] | 231 | #endif |
| 232 | |
Ingo Molnar | 6d5f718 | 2008-01-30 13:32:38 +0100 | [diff] [blame] | 233 | if (cpu_has_xmm2) |
Ingo Molnar | d0e95eb | 2008-02-26 08:52:33 +0100 | [diff] [blame] | 234 | set_cpu_cap(c, X86_FEATURE_LFENCE_RDTSC); |
Stephane Eranian | 42ed458 | 2006-12-07 02:14:01 +0100 | [diff] [blame] | 235 | if (cpu_has_ds) { |
| 236 | unsigned int l1; |
| 237 | rdmsr(MSR_IA32_MISC_ENABLE, l1, l2); |
Stephane Eranian | 538f188 | 2006-12-07 02:14:11 +0100 | [diff] [blame] | 238 | if (!(l1 & (1<<11))) |
Ingo Molnar | d0e95eb | 2008-02-26 08:52:33 +0100 | [diff] [blame] | 239 | set_cpu_cap(c, X86_FEATURE_BTS); |
Stephane Eranian | 42ed458 | 2006-12-07 02:14:01 +0100 | [diff] [blame] | 240 | if (!(l1 & (1<<12))) |
Ingo Molnar | d0e95eb | 2008-02-26 08:52:33 +0100 | [diff] [blame] | 241 | set_cpu_cap(c, X86_FEATURE_PEBS); |
Markus Metzger | 93fa763 | 2008-04-08 11:01:58 +0200 | [diff] [blame] | 242 | ds_init_intel(c); |
Stephane Eranian | 42ed458 | 2006-12-07 02:14:01 +0100 | [diff] [blame] | 243 | } |
Markus Metzger | eee3af4 | 2008-01-30 13:31:09 +0100 | [diff] [blame] | 244 | |
Yinghai Lu | 185f3b9 | 2008-09-09 16:40:35 -0700 | [diff] [blame^] | 245 | #ifdef CONFIG_X86_64 |
| 246 | if (c->x86 == 15) |
| 247 | c->x86_cache_alignment = c->x86_clflush_size * 2; |
| 248 | if (c->x86 == 6) |
| 249 | set_cpu_cap(c, X86_FEATURE_REP_GOOD); |
| 250 | #else |
| 251 | if (c->x86 == 15) |
| 252 | set_cpu_cap(c, X86_FEATURE_P4); |
| 253 | if (c->x86 == 6) |
| 254 | set_cpu_cap(c, X86_FEATURE_P3); |
| 255 | |
Markus Metzger | eee3af4 | 2008-01-30 13:31:09 +0100 | [diff] [blame] | 256 | if (cpu_has_bts) |
Markus Metzger | 93fa763 | 2008-04-08 11:01:58 +0200 | [diff] [blame] | 257 | ptrace_bts_init_intel(c); |
Yinghai Lu | 3d88cca | 2008-07-12 22:52:55 -0700 | [diff] [blame] | 258 | |
Maciej W. Rozycki | 593f4a7 | 2008-07-16 19:15:30 +0100 | [diff] [blame] | 259 | /* |
| 260 | * See if we have a good local APIC by checking for buggy Pentia, |
| 261 | * i.e. all B steppings and the C2 stepping of P54C when using their |
| 262 | * integrated APIC (see 11AP erratum in "Pentium Processor |
| 263 | * Specification Update"). |
| 264 | */ |
| 265 | if (cpu_has_apic && (c->x86<<8 | c->x86_model<<4) == 0x520 && |
| 266 | (c->x86_mask < 0x6 || c->x86_mask == 0xb)) |
| 267 | set_cpu_cap(c, X86_FEATURE_11AP); |
| 268 | |
Yinghai Lu | 3d88cca | 2008-07-12 22:52:55 -0700 | [diff] [blame] | 269 | #ifdef CONFIG_X86_NUMAQ |
| 270 | numaq_tsc_disable(); |
| 271 | #endif |
Yinghai Lu | 185f3b9 | 2008-09-09 16:40:35 -0700 | [diff] [blame^] | 272 | #endif |
| 273 | |
| 274 | detect_extended_topology(c); |
| 275 | if (!cpu_has(c, X86_FEATURE_XTOPOLOGY)) { |
| 276 | /* |
| 277 | * let's use the legacy cpuid vector 0x1 and 0x4 for topology |
| 278 | * detection. |
| 279 | */ |
| 280 | c->x86_max_cores = intel_num_cpu_cores(c); |
| 281 | #ifdef CONFIG_X86_32 |
| 282 | detect_ht(c); |
| 283 | #endif |
| 284 | } |
| 285 | |
| 286 | /* Work around errata */ |
| 287 | srat_detect_node(); |
Stephane Eranian | 42ed458 | 2006-12-07 02:14:01 +0100 | [diff] [blame] | 288 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 289 | |
Yinghai Lu | 185f3b9 | 2008-09-09 16:40:35 -0700 | [diff] [blame^] | 290 | #ifdef CONFIG_X86_32 |
Paolo Ciarrocchi | 65eb6b4 | 2008-02-22 23:09:42 +0100 | [diff] [blame] | 291 | static unsigned int __cpuinit intel_size_cache(struct cpuinfo_x86 *c, unsigned int size) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 292 | { |
Paolo Ciarrocchi | 65eb6b4 | 2008-02-22 23:09:42 +0100 | [diff] [blame] | 293 | /* |
| 294 | * Intel PIII Tualatin. This comes in two flavours. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 295 | * One has 256kb of cache, the other 512. We have no way |
| 296 | * to determine which, so we use a boottime override |
| 297 | * for the 512kb model, and assume 256 otherwise. |
| 298 | */ |
| 299 | if ((c->x86 == 6) && (c->x86_model == 11) && (size == 0)) |
| 300 | size = 256; |
| 301 | return size; |
| 302 | } |
Yinghai Lu | 185f3b9 | 2008-09-09 16:40:35 -0700 | [diff] [blame^] | 303 | #endif |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 304 | |
Chuck Ebbert | 3bc9b76 | 2006-03-23 02:59:33 -0800 | [diff] [blame] | 305 | static struct cpu_dev intel_cpu_dev __cpuinitdata = { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 306 | .c_vendor = "Intel", |
Paolo Ciarrocchi | 65eb6b4 | 2008-02-22 23:09:42 +0100 | [diff] [blame] | 307 | .c_ident = { "GenuineIntel" }, |
Yinghai Lu | 185f3b9 | 2008-09-09 16:40:35 -0700 | [diff] [blame^] | 308 | #ifdef CONFIG_X86_32 |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 309 | .c_models = { |
Paolo Ciarrocchi | 65eb6b4 | 2008-02-22 23:09:42 +0100 | [diff] [blame] | 310 | { .vendor = X86_VENDOR_INTEL, .family = 4, .model_names = |
| 311 | { |
| 312 | [0] = "486 DX-25/33", |
| 313 | [1] = "486 DX-50", |
| 314 | [2] = "486 SX", |
| 315 | [3] = "486 DX/2", |
| 316 | [4] = "486 SL", |
| 317 | [5] = "486 SX/2", |
| 318 | [7] = "486 DX/2-WB", |
| 319 | [8] = "486 DX/4", |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 320 | [9] = "486 DX/4-WB" |
| 321 | } |
| 322 | }, |
| 323 | { .vendor = X86_VENDOR_INTEL, .family = 5, .model_names = |
Paolo Ciarrocchi | 65eb6b4 | 2008-02-22 23:09:42 +0100 | [diff] [blame] | 324 | { |
| 325 | [0] = "Pentium 60/66 A-step", |
| 326 | [1] = "Pentium 60/66", |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 327 | [2] = "Pentium 75 - 200", |
Paolo Ciarrocchi | 65eb6b4 | 2008-02-22 23:09:42 +0100 | [diff] [blame] | 328 | [3] = "OverDrive PODP5V83", |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 329 | [4] = "Pentium MMX", |
Paolo Ciarrocchi | 65eb6b4 | 2008-02-22 23:09:42 +0100 | [diff] [blame] | 330 | [7] = "Mobile Pentium 75 - 200", |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 331 | [8] = "Mobile Pentium MMX" |
| 332 | } |
| 333 | }, |
| 334 | { .vendor = X86_VENDOR_INTEL, .family = 6, .model_names = |
Paolo Ciarrocchi | 65eb6b4 | 2008-02-22 23:09:42 +0100 | [diff] [blame] | 335 | { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 336 | [0] = "Pentium Pro A-step", |
Paolo Ciarrocchi | 65eb6b4 | 2008-02-22 23:09:42 +0100 | [diff] [blame] | 337 | [1] = "Pentium Pro", |
| 338 | [3] = "Pentium II (Klamath)", |
| 339 | [4] = "Pentium II (Deschutes)", |
| 340 | [5] = "Pentium II (Deschutes)", |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 341 | [6] = "Mobile Pentium II", |
Paolo Ciarrocchi | 65eb6b4 | 2008-02-22 23:09:42 +0100 | [diff] [blame] | 342 | [7] = "Pentium III (Katmai)", |
| 343 | [8] = "Pentium III (Coppermine)", |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 344 | [10] = "Pentium III (Cascades)", |
| 345 | [11] = "Pentium III (Tualatin)", |
| 346 | } |
| 347 | }, |
| 348 | { .vendor = X86_VENDOR_INTEL, .family = 15, .model_names = |
| 349 | { |
| 350 | [0] = "Pentium 4 (Unknown)", |
| 351 | [1] = "Pentium 4 (Willamette)", |
| 352 | [2] = "Pentium 4 (Northwood)", |
| 353 | [4] = "Pentium 4 (Foster)", |
| 354 | [5] = "Pentium 4 (Foster)", |
| 355 | } |
| 356 | }, |
| 357 | }, |
Yinghai Lu | 185f3b9 | 2008-09-09 16:40:35 -0700 | [diff] [blame^] | 358 | .c_size_cache = intel_size_cache, |
| 359 | #endif |
Thomas Petazzoni | 03ae576 | 2008-02-15 12:00:23 +0100 | [diff] [blame] | 360 | .c_early_init = early_init_intel, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 361 | .c_init = init_intel, |
Yinghai Lu | 10a434f | 2008-09-04 21:09:45 +0200 | [diff] [blame] | 362 | .c_x86_vendor = X86_VENDOR_INTEL, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 363 | }; |
| 364 | |
Yinghai Lu | 10a434f | 2008-09-04 21:09:45 +0200 | [diff] [blame] | 365 | cpu_dev_register(intel_cpu_dev); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 366 | |