Andi Kleen | c7f81c9 | 2007-05-02 19:27:20 +0200 | [diff] [blame] | 1 | #ifndef _ASM_REQUIRED_FEATURES_H |
| 2 | #define _ASM_REQUIRED_FEATURES_H 1 |
| 3 | |
| 4 | /* Define minimum CPUID feature set for kernel These bits are checked |
| 5 | really early to actually display a visible error message before the |
H. Peter Anvin | ec48153 | 2007-07-11 12:18:29 -0700 | [diff] [blame] | 6 | kernel dies. Make sure to assign features to the proper mask! |
Andi Kleen | c7f81c9 | 2007-05-02 19:27:20 +0200 | [diff] [blame] | 7 | |
| 8 | Some requirements that are not in CPUID yet are also in the |
H. Peter Anvin | ec48153 | 2007-07-11 12:18:29 -0700 | [diff] [blame] | 9 | CONFIG_X86_MINIMUM_CPU_FAMILY which is checked too. |
Andi Kleen | c7f81c9 | 2007-05-02 19:27:20 +0200 | [diff] [blame] | 10 | |
| 11 | The real information is in arch/i386/Kconfig.cpu, this just converts |
| 12 | the CONFIGs into a bitmask */ |
| 13 | |
H. Peter Anvin | ec48153 | 2007-07-11 12:18:29 -0700 | [diff] [blame] | 14 | #ifndef CONFIG_MATH_EMULATION |
| 15 | # define NEED_FPU (1<<(X86_FEATURE_FPU & 31)) |
Andi Kleen | c7f81c9 | 2007-05-02 19:27:20 +0200 | [diff] [blame] | 16 | #else |
H. Peter Anvin | ec48153 | 2007-07-11 12:18:29 -0700 | [diff] [blame] | 17 | # define NEED_FPU 0 |
| 18 | #endif |
| 19 | |
| 20 | #ifdef CONFIG_X86_PAE |
| 21 | # define NEED_PAE (1<<(X86_FEATURE_PAE & 31)) |
| 22 | #else |
| 23 | # define NEED_PAE 0 |
Andi Kleen | c7f81c9 | 2007-05-02 19:27:20 +0200 | [diff] [blame] | 24 | #endif |
| 25 | |
| 26 | #ifdef CONFIG_X86_CMOV |
H. Peter Anvin | ec48153 | 2007-07-11 12:18:29 -0700 | [diff] [blame] | 27 | # define NEED_CMOV (1<<(X86_FEATURE_CMOV & 31)) |
Andi Kleen | c7f81c9 | 2007-05-02 19:27:20 +0200 | [diff] [blame] | 28 | #else |
H. Peter Anvin | ec48153 | 2007-07-11 12:18:29 -0700 | [diff] [blame] | 29 | # define NEED_CMOV 0 |
Andi Kleen | c7f81c9 | 2007-05-02 19:27:20 +0200 | [diff] [blame] | 30 | #endif |
| 31 | |
Avi Kivity | 2d9ce17 | 2007-07-19 14:30:14 +0300 | [diff] [blame] | 32 | #ifdef CONFIG_X86_PAE |
H. Peter Anvin | ec48153 | 2007-07-11 12:18:29 -0700 | [diff] [blame] | 33 | # define NEED_CX8 (1<<(X86_FEATURE_CX8 & 31)) |
Andi Kleen | c7f81c9 | 2007-05-02 19:27:20 +0200 | [diff] [blame] | 34 | #else |
H. Peter Anvin | ec48153 | 2007-07-11 12:18:29 -0700 | [diff] [blame] | 35 | # define NEED_CX8 0 |
Andi Kleen | c7f81c9 | 2007-05-02 19:27:20 +0200 | [diff] [blame] | 36 | #endif |
| 37 | |
H. Peter Anvin | ec48153 | 2007-07-11 12:18:29 -0700 | [diff] [blame] | 38 | #define REQUIRED_MASK0 (NEED_FPU|NEED_PAE|NEED_CMOV|NEED_CX8) |
| 39 | |
| 40 | #ifdef CONFIG_X86_USE_3DNOW |
| 41 | # define NEED_3DNOW (1<<(X86_FEATURE_3DNOW & 31)) |
| 42 | #else |
| 43 | # define NEED_3DNOW 0 |
| 44 | #endif |
| 45 | |
| 46 | #define REQUIRED_MASK1 (NEED_3DNOW) |
| 47 | |
| 48 | #define REQUIRED_MASK2 0 |
| 49 | #define REQUIRED_MASK3 0 |
| 50 | #define REQUIRED_MASK4 0 |
| 51 | #define REQUIRED_MASK5 0 |
| 52 | #define REQUIRED_MASK6 0 |
Venki Pallipadi | 1d67953 | 2007-07-11 12:18:32 -0700 | [diff] [blame] | 53 | #define REQUIRED_MASK7 0 |
Andi Kleen | c7f81c9 | 2007-05-02 19:27:20 +0200 | [diff] [blame] | 54 | |
| 55 | #endif |