blob: 611da2898b2b43a5c454a0ee51a13eb064f04f5b [file] [log] [blame]
H. Peter Anvin7b11fb52008-01-30 13:30:07 +01001/*
2 * Defines x86 CPU feature bits
3 */
4#ifndef _ASM_X86_CPUFEATURE_H
5#define _ASM_X86_CPUFEATURE_H
6
H. Peter Anvin7b11fb52008-01-30 13:30:07 +01007#include <asm/required-features.h>
8
9#define NCAPINTS 8 /* N 32-bit words worth of info */
10
H. Peter Anvin7414aa42008-08-27 17:56:44 -070011/*
12 * Note: If the comment begins with a quoted string, that string is used
13 * in /proc/cpuinfo instead of the macro name. If the string is "",
14 * this feature bit is not displayed in /proc/cpuinfo at all.
15 */
16
H. Peter Anvin7b11fb52008-01-30 13:30:07 +010017/* Intel-defined CPU features, CPUID level 0x00000001 (edx), word 0 */
18#define X86_FEATURE_FPU (0*32+ 0) /* Onboard FPU */
19#define X86_FEATURE_VME (0*32+ 1) /* Virtual Mode Extensions */
20#define X86_FEATURE_DE (0*32+ 2) /* Debugging Extensions */
21#define X86_FEATURE_PSE (0*32+ 3) /* Page Size Extensions */
22#define X86_FEATURE_TSC (0*32+ 4) /* Time Stamp Counter */
23#define X86_FEATURE_MSR (0*32+ 5) /* Model-Specific Registers, RDMSR, WRMSR */
24#define X86_FEATURE_PAE (0*32+ 6) /* Physical Address Extensions */
25#define X86_FEATURE_MCE (0*32+ 7) /* Machine Check Architecture */
26#define X86_FEATURE_CX8 (0*32+ 8) /* CMPXCHG8 instruction */
27#define X86_FEATURE_APIC (0*32+ 9) /* Onboard APIC */
28#define X86_FEATURE_SEP (0*32+11) /* SYSENTER/SYSEXIT */
29#define X86_FEATURE_MTRR (0*32+12) /* Memory Type Range Registers */
30#define X86_FEATURE_PGE (0*32+13) /* Page Global Enable */
31#define X86_FEATURE_MCA (0*32+14) /* Machine Check Architecture */
32#define X86_FEATURE_CMOV (0*32+15) /* CMOV instruction (FCMOVCC and FCOMI too if FPU present) */
33#define X86_FEATURE_PAT (0*32+16) /* Page Attribute Table */
34#define X86_FEATURE_PSE36 (0*32+17) /* 36-bit PSEs */
35#define X86_FEATURE_PN (0*32+18) /* Processor serial number */
H. Peter Anvin7414aa42008-08-27 17:56:44 -070036#define X86_FEATURE_CLFLSH (0*32+19) /* "clflush" Supports the CLFLUSH instruction */
37#define X86_FEATURE_DS (0*32+21) /* "dts" Debug Store */
H. Peter Anvin7b11fb52008-01-30 13:30:07 +010038#define X86_FEATURE_ACPI (0*32+22) /* ACPI via MSR */
39#define X86_FEATURE_MMX (0*32+23) /* Multimedia Extensions */
H. Peter Anvin7414aa42008-08-27 17:56:44 -070040#define X86_FEATURE_FXSR (0*32+24) /* FXSAVE/FXRSTOR, CR4.OSFXSR */
41#define X86_FEATURE_XMM (0*32+25) /* "sse" */
42#define X86_FEATURE_XMM2 (0*32+26) /* "sse2" */
43#define X86_FEATURE_SELFSNOOP (0*32+27) /* "ss" CPU self snoop */
H. Peter Anvin7b11fb52008-01-30 13:30:07 +010044#define X86_FEATURE_HT (0*32+28) /* Hyper-Threading */
H. Peter Anvin7414aa42008-08-27 17:56:44 -070045#define X86_FEATURE_ACC (0*32+29) /* "tm" Automatic clock control */
H. Peter Anvin7b11fb52008-01-30 13:30:07 +010046#define X86_FEATURE_IA64 (0*32+30) /* IA-64 processor */
H. Peter Anvin7414aa42008-08-27 17:56:44 -070047#define X86_FEATURE_PBE (0*32+31) /* Pending Break Enable */
H. Peter Anvin7b11fb52008-01-30 13:30:07 +010048
49/* AMD-defined CPU features, CPUID level 0x80000001, word 1 */
50/* Don't duplicate feature flags which are redundant with Intel! */
51#define X86_FEATURE_SYSCALL (1*32+11) /* SYSCALL/SYSRET */
52#define X86_FEATURE_MP (1*32+19) /* MP Capable. */
53#define X86_FEATURE_NX (1*32+20) /* Execute Disable */
54#define X86_FEATURE_MMXEXT (1*32+22) /* AMD MMX extensions */
H. Peter Anvin7414aa42008-08-27 17:56:44 -070055#define X86_FEATURE_FXSR_OPT (1*32+25) /* FXSAVE/FXRSTOR optimizations */
56#define X86_FEATURE_GBPAGES (1*32+26) /* "pdpe1gb" GB pages */
H. Peter Anvin7b11fb52008-01-30 13:30:07 +010057#define X86_FEATURE_RDTSCP (1*32+27) /* RDTSCP */
58#define X86_FEATURE_LM (1*32+29) /* Long Mode (x86-64) */
59#define X86_FEATURE_3DNOWEXT (1*32+30) /* AMD 3DNow! extensions */
60#define X86_FEATURE_3DNOW (1*32+31) /* 3DNow! */
61
62/* Transmeta-defined CPU features, CPUID level 0x80860001, word 2 */
63#define X86_FEATURE_RECOVERY (2*32+ 0) /* CPU in recovery mode */
64#define X86_FEATURE_LONGRUN (2*32+ 1) /* Longrun power control */
65#define X86_FEATURE_LRTI (2*32+ 3) /* LongRun table interface */
66
67/* Other features, Linux-defined mapping, word 3 */
68/* This range is used for feature bits which conflict or are synthesized */
69#define X86_FEATURE_CXMMX (3*32+ 0) /* Cyrix MMX extensions */
70#define X86_FEATURE_K6_MTRR (3*32+ 1) /* AMD K6 nonstandard MTRRs */
71#define X86_FEATURE_CYRIX_ARR (3*32+ 2) /* Cyrix ARRs (= MTRRs) */
72#define X86_FEATURE_CENTAUR_MCR (3*32+ 3) /* Centaur MCRs (= MTRRs) */
73/* cpu types for specific tunings: */
H. Peter Anvin7414aa42008-08-27 17:56:44 -070074#define X86_FEATURE_K8 (3*32+ 4) /* "" Opteron, Athlon64 */
75#define X86_FEATURE_K7 (3*32+ 5) /* "" Athlon */
76#define X86_FEATURE_P3 (3*32+ 6) /* "" P3 */
77#define X86_FEATURE_P4 (3*32+ 7) /* "" P4 */
H. Peter Anvin7b11fb52008-01-30 13:30:07 +010078#define X86_FEATURE_CONSTANT_TSC (3*32+ 8) /* TSC ticks at a constant rate */
79#define X86_FEATURE_UP (3*32+ 9) /* smp kernel running on up */
H. Peter Anvin7414aa42008-08-27 17:56:44 -070080#define X86_FEATURE_FXSAVE_LEAK (3*32+10) /* "" FXSAVE leaks FOP/FIP/FOP */
H. Peter Anvin7b11fb52008-01-30 13:30:07 +010081#define X86_FEATURE_ARCH_PERFMON (3*32+11) /* Intel Architectural PerfMon */
H. Peter Anvin7e00df52008-08-18 17:39:32 -070082#define X86_FEATURE_PEBS (3*32+12) /* Precise-Event Based Sampling */
83#define X86_FEATURE_BTS (3*32+13) /* Branch Trace Store */
H. Peter Anvin7414aa42008-08-27 17:56:44 -070084#define X86_FEATURE_SYSCALL32 (3*32+14) /* "" syscall in ia32 userspace */
85#define X86_FEATURE_SYSENTER32 (3*32+15) /* "" sysenter in ia32 userspace */
H. Peter Anvin7b11fb52008-01-30 13:30:07 +010086#define X86_FEATURE_REP_GOOD (3*32+16) /* rep microcode works well on this CPU */
H. Peter Anvin7414aa42008-08-27 17:56:44 -070087#define X86_FEATURE_MFENCE_RDTSC (3*32+17) /* "" Mfence synchronizes RDTSC */
88#define X86_FEATURE_LFENCE_RDTSC (3*32+18) /* "" Lfence synchronizes RDTSC */
89#define X86_FEATURE_11AP (3*32+19) /* "" Bad local APIC aka 11AP */
H. Peter Anvin7e00df52008-08-18 17:39:32 -070090#define X86_FEATURE_NOPL (3*32+20) /* The NOPL (0F 1F) instructions */
H. Peter Anvin7b11fb52008-01-30 13:30:07 +010091
92/* Intel-defined CPU features, CPUID level 0x00000001 (ecx), word 4 */
H. Peter Anvin7414aa42008-08-27 17:56:44 -070093#define X86_FEATURE_XMM3 (4*32+ 0) /* "pni" SSE-3 */
94#define X86_FEATURE_MWAIT (4*32+ 3) /* "monitor" Monitor/Mwait support */
95#define X86_FEATURE_DSCPL (4*32+ 4) /* "ds_cpl" CPL Qual. Debug Store */
96#define X86_FEATURE_VMX (4*32+ 5) /* Hardware virtualization */
97#define X86_FEATURE_SMX (4*32+ 6) /* "Safer" mode */
H. Peter Anvin7b11fb52008-01-30 13:30:07 +010098#define X86_FEATURE_EST (4*32+ 7) /* Enhanced SpeedStep */
99#define X86_FEATURE_TM2 (4*32+ 8) /* Thermal Monitor 2 */
H. Peter Anvin7414aa42008-08-27 17:56:44 -0700100#define X86_FEATURE_SSSE3 (4*32+ 9) /* Supplemental SSE-3 */
H. Peter Anvin7b11fb52008-01-30 13:30:07 +0100101#define X86_FEATURE_CID (4*32+10) /* Context ID */
102#define X86_FEATURE_CX16 (4*32+13) /* CMPXCHG16B */
103#define X86_FEATURE_XTPR (4*32+14) /* Send Task Priority Messages */
104#define X86_FEATURE_DCA (4*32+18) /* Direct Cache Access */
H. Peter Anvin7414aa42008-08-27 17:56:44 -0700105#define X86_FEATURE_XMM4_1 (4*32+19) /* "sse4_1" SSE-4.1 */
106#define X86_FEATURE_XMM4_2 (4*32+20) /* "sse4_2" SSE-4.2 */
H. Peter Anvin7b11fb52008-01-30 13:30:07 +0100107
108/* VIA/Cyrix/Centaur-defined CPU features, CPUID level 0xC0000001, word 5 */
H. Peter Anvin7414aa42008-08-27 17:56:44 -0700109#define X86_FEATURE_XSTORE (5*32+ 2) /* "rng" RNG present (xstore) */
110#define X86_FEATURE_XSTORE_EN (5*32+ 3) /* "rng_en" RNG enabled */
111#define X86_FEATURE_XCRYPT (5*32+ 6) /* "ace" on-CPU crypto (xcrypt) */
112#define X86_FEATURE_XCRYPT_EN (5*32+ 7) /* "ace_en" on-CPU crypto enabled */
H. Peter Anvin7b11fb52008-01-30 13:30:07 +0100113#define X86_FEATURE_ACE2 (5*32+ 8) /* Advanced Cryptography Engine v2 */
114#define X86_FEATURE_ACE2_EN (5*32+ 9) /* ACE v2 enabled */
H. Peter Anvin7414aa42008-08-27 17:56:44 -0700115#define X86_FEATURE_PHE (5*32+10) /* PadLock Hash Engine */
116#define X86_FEATURE_PHE_EN (5*32+11) /* PHE enabled */
117#define X86_FEATURE_PMM (5*32+12) /* PadLock Montgomery Multiplier */
118#define X86_FEATURE_PMM_EN (5*32+13) /* PMM enabled */
H. Peter Anvin7b11fb52008-01-30 13:30:07 +0100119
120/* More extended AMD flags: CPUID level 0x80000001, ecx, word 6 */
121#define X86_FEATURE_LAHF_LM (6*32+ 0) /* LAHF/SAHF in long mode */
122#define X86_FEATURE_CMP_LEGACY (6*32+ 1) /* If yes HyperThreading not valid */
H. Peter Anvin7414aa42008-08-27 17:56:44 -0700123#define X86_FEATURE_SVM (6*32+ 2) /* Secure virtual machine */
124#define X86_FEATURE_EXTAPIC (6*32+ 3) /* Extended APIC space */
125#define X86_FEATURE_CR8_LEGACY (6*32+ 4) /* CR8 in 32-bit mode */
126#define X86_FEATURE_ABM (6*32+ 5) /* Advanced bit manipulation */
127#define X86_FEATURE_SSE4A (6*32+ 6) /* SSE-4A */
128#define X86_FEATURE_MISALIGNSSE (6*32+ 7) /* Misaligned SSE mode */
129#define X86_FEATURE_3DNOWPREFETCH (6*32+ 8) /* 3DNow prefetch instructions */
130#define X86_FEATURE_OSVW (6*32+ 9) /* OS Visible Workaround */
131#define X86_FEATURE_IBS (6*32+10) /* Instruction Based Sampling */
132#define X86_FEATURE_SSE5 (6*32+11) /* SSE-5 */
133#define X86_FEATURE_SKINIT (6*32+12) /* SKINIT/STGI instructions */
134#define X86_FEATURE_WDT (6*32+13) /* Watchdog timer */
H. Peter Anvin7b11fb52008-01-30 13:30:07 +0100135
136/*
137 * Auxiliary flags: Linux defined - For features scattered in various
138 * CPUID levels like 0x6, 0xA etc
139 */
140#define X86_FEATURE_IDA (7*32+ 0) /* Intel Dynamic Acceleration */
141
H. Peter Anvinfa1408e2008-02-04 16:48:00 +0100142#if defined(__KERNEL__) && !defined(__ASSEMBLY__)
143
144#include <linux/bitops.h>
145
146extern const char * const x86_cap_flags[NCAPINTS*32];
147extern const char * const x86_power_flags[32];
148
Ingo Molnar0f8d2b92008-02-26 08:34:21 +0100149#define test_cpu_cap(c, bit) \
150 test_bit(bit, (unsigned long *)((c)->x86_capability))
151
H. Peter Anvin7b11fb52008-01-30 13:30:07 +0100152#define cpu_has(c, bit) \
153 (__builtin_constant_p(bit) && \
154 ( (((bit)>>5)==0 && (1UL<<((bit)&31) & REQUIRED_MASK0)) || \
155 (((bit)>>5)==1 && (1UL<<((bit)&31) & REQUIRED_MASK1)) || \
156 (((bit)>>5)==2 && (1UL<<((bit)&31) & REQUIRED_MASK2)) || \
157 (((bit)>>5)==3 && (1UL<<((bit)&31) & REQUIRED_MASK3)) || \
158 (((bit)>>5)==4 && (1UL<<((bit)&31) & REQUIRED_MASK4)) || \
159 (((bit)>>5)==5 && (1UL<<((bit)&31) & REQUIRED_MASK5)) || \
160 (((bit)>>5)==6 && (1UL<<((bit)&31) & REQUIRED_MASK6)) || \
161 (((bit)>>5)==7 && (1UL<<((bit)&31) & REQUIRED_MASK7)) ) \
162 ? 1 : \
Ingo Molnar0f8d2b92008-02-26 08:34:21 +0100163 test_cpu_cap(c, bit))
164
H. Peter Anvin7b11fb52008-01-30 13:30:07 +0100165#define boot_cpu_has(bit) cpu_has(&boot_cpu_data, bit)
166
Jeremy Fitzhardinge53756d32008-01-30 13:30:55 +0100167#define set_cpu_cap(c, bit) set_bit(bit, (unsigned long *)((c)->x86_capability))
168#define clear_cpu_cap(c, bit) clear_bit(bit, (unsigned long *)((c)->x86_capability))
Andi Kleen7d851c82008-01-30 13:33:20 +0100169#define setup_clear_cpu_cap(bit) do { \
170 clear_cpu_cap(&boot_cpu_data, bit); \
Andrew Morton23eb2712008-05-14 16:10:39 -0700171 set_bit(bit, (unsigned long *)cleared_cpu_caps); \
Andi Kleen7d851c82008-01-30 13:33:20 +0100172} while (0)
Andi Kleen404ee5b2008-01-30 13:33:20 +0100173#define setup_force_cpu_cap(bit) do { \
174 set_cpu_cap(&boot_cpu_data, bit); \
Andrew Morton23eb2712008-05-14 16:10:39 -0700175 clear_bit(bit, (unsigned long *)cleared_cpu_caps); \
Andi Kleen404ee5b2008-01-30 13:33:20 +0100176} while (0)
Jeremy Fitzhardinge53756d32008-01-30 13:30:55 +0100177
H. Peter Anvin7b11fb52008-01-30 13:30:07 +0100178#define cpu_has_fpu boot_cpu_has(X86_FEATURE_FPU)
179#define cpu_has_vme boot_cpu_has(X86_FEATURE_VME)
180#define cpu_has_de boot_cpu_has(X86_FEATURE_DE)
181#define cpu_has_pse boot_cpu_has(X86_FEATURE_PSE)
182#define cpu_has_tsc boot_cpu_has(X86_FEATURE_TSC)
183#define cpu_has_pae boot_cpu_has(X86_FEATURE_PAE)
184#define cpu_has_pge boot_cpu_has(X86_FEATURE_PGE)
185#define cpu_has_apic boot_cpu_has(X86_FEATURE_APIC)
186#define cpu_has_sep boot_cpu_has(X86_FEATURE_SEP)
187#define cpu_has_mtrr boot_cpu_has(X86_FEATURE_MTRR)
188#define cpu_has_mmx boot_cpu_has(X86_FEATURE_MMX)
189#define cpu_has_fxsr boot_cpu_has(X86_FEATURE_FXSR)
190#define cpu_has_xmm boot_cpu_has(X86_FEATURE_XMM)
191#define cpu_has_xmm2 boot_cpu_has(X86_FEATURE_XMM2)
192#define cpu_has_xmm3 boot_cpu_has(X86_FEATURE_XMM3)
193#define cpu_has_ht boot_cpu_has(X86_FEATURE_HT)
194#define cpu_has_mp boot_cpu_has(X86_FEATURE_MP)
195#define cpu_has_nx boot_cpu_has(X86_FEATURE_NX)
196#define cpu_has_k6_mtrr boot_cpu_has(X86_FEATURE_K6_MTRR)
197#define cpu_has_cyrix_arr boot_cpu_has(X86_FEATURE_CYRIX_ARR)
198#define cpu_has_centaur_mcr boot_cpu_has(X86_FEATURE_CENTAUR_MCR)
199#define cpu_has_xstore boot_cpu_has(X86_FEATURE_XSTORE)
200#define cpu_has_xstore_enabled boot_cpu_has(X86_FEATURE_XSTORE_EN)
201#define cpu_has_xcrypt boot_cpu_has(X86_FEATURE_XCRYPT)
202#define cpu_has_xcrypt_enabled boot_cpu_has(X86_FEATURE_XCRYPT_EN)
203#define cpu_has_ace2 boot_cpu_has(X86_FEATURE_ACE2)
204#define cpu_has_ace2_enabled boot_cpu_has(X86_FEATURE_ACE2_EN)
205#define cpu_has_phe boot_cpu_has(X86_FEATURE_PHE)
206#define cpu_has_phe_enabled boot_cpu_has(X86_FEATURE_PHE_EN)
207#define cpu_has_pmm boot_cpu_has(X86_FEATURE_PMM)
208#define cpu_has_pmm_enabled boot_cpu_has(X86_FEATURE_PMM_EN)
209#define cpu_has_ds boot_cpu_has(X86_FEATURE_DS)
210#define cpu_has_pebs boot_cpu_has(X86_FEATURE_PEBS)
211#define cpu_has_clflush boot_cpu_has(X86_FEATURE_CLFLSH)
212#define cpu_has_bts boot_cpu_has(X86_FEATURE_BTS)
Andi Kleen019c3e72008-02-04 16:48:09 +0100213#define cpu_has_gbpages boot_cpu_has(X86_FEATURE_GBPAGES)
stephane eranian86975102008-03-07 13:05:27 -0800214#define cpu_has_arch_perfmon boot_cpu_has(X86_FEATURE_ARCH_PERFMON)
venkatesh.pallipadi@intel.com2e5d9c82008-03-18 17:00:14 -0700215#define cpu_has_pat boot_cpu_has(X86_FEATURE_PAT)
Austin Zhang2a618122008-08-25 11:14:51 -0400216#define cpu_has_xmm4_2 boot_cpu_has(X86_FEATURE_XMM4_2)
H. Peter Anvin7b11fb52008-01-30 13:30:07 +0100217
Thomas Gleixner0b9c99b2008-01-30 13:30:35 +0100218#if defined(CONFIG_X86_INVLPG) || defined(CONFIG_X86_64)
219# define cpu_has_invlpg 1
220#else
221# define cpu_has_invlpg (boot_cpu_data.x86 > 3)
222#endif
223
H. Peter Anvin7b11fb52008-01-30 13:30:07 +0100224#ifdef CONFIG_X86_64
225
226#undef cpu_has_vme
227#define cpu_has_vme 0
228
229#undef cpu_has_pae
230#define cpu_has_pae ___BUG___
231
232#undef cpu_has_mp
233#define cpu_has_mp 1
234
235#undef cpu_has_k6_mtrr
236#define cpu_has_k6_mtrr 0
237
238#undef cpu_has_cyrix_arr
239#define cpu_has_cyrix_arr 0
240
241#undef cpu_has_centaur_mcr
242#define cpu_has_centaur_mcr 0
243
244#endif /* CONFIG_X86_64 */
245
H. Peter Anvinfa1408e2008-02-04 16:48:00 +0100246#endif /* defined(__KERNEL__) && !defined(__ASSEMBLY__) */
247
H. Peter Anvin7b11fb52008-01-30 13:30:07 +0100248#endif /* _ASM_X86_CPUFEATURE_H */