forked from torvalds/linux
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'x86-cpufeature-for-linus' of git://git.kernel.org/pub/s…
…cm/linux/kernel/git/tip/tip Pull x86 cpufeature updates from Ingo Molnar: "This tree includes the following changes: - Introduce DISABLED_MASK to list disabled CPU features, to simplify CPU feature handling and avoid excessive #ifdefs - Remove the lightly used cpu_has_pae() primitive" * 'x86-cpufeature-for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip: x86: Add more disabled features x86: Introduce disabled-features x86: Axe the lightly-used cpu_has_pae
- Loading branch information
Showing
6 changed files
with
74 additions
and
29 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,39 @@ | ||
#ifndef _ASM_X86_DISABLED_FEATURES_H | ||
#define _ASM_X86_DISABLED_FEATURES_H | ||
|
||
/* These features, although they might be available in a CPU | ||
* will not be used because the compile options to support | ||
* them are not present. | ||
* | ||
* This code allows them to be checked and disabled at | ||
* compile time without an explicit #ifdef. Use | ||
* cpu_feature_enabled(). | ||
*/ | ||
|
||
#ifdef CONFIG_X86_64 | ||
# define DISABLE_VME (1<<(X86_FEATURE_VME & 31)) | ||
# define DISABLE_K6_MTRR (1<<(X86_FEATURE_K6_MTRR & 31)) | ||
# define DISABLE_CYRIX_ARR (1<<(X86_FEATURE_CYRIX_ARR & 31)) | ||
# define DISABLE_CENTAUR_MCR (1<<(X86_FEATURE_CENTAUR_MCR & 31)) | ||
#else | ||
# define DISABLE_VME 0 | ||
# define DISABLE_K6_MTRR 0 | ||
# define DISABLE_CYRIX_ARR 0 | ||
# define DISABLE_CENTAUR_MCR 0 | ||
#endif /* CONFIG_X86_64 */ | ||
|
||
/* | ||
* Make sure to add features to the correct mask | ||
*/ | ||
#define DISABLED_MASK0 (DISABLE_VME) | ||
#define DISABLED_MASK1 0 | ||
#define DISABLED_MASK2 0 | ||
#define DISABLED_MASK3 (DISABLE_CYRIX_ARR|DISABLE_CENTAUR_MCR|DISABLE_K6_MTRR) | ||
#define DISABLED_MASK4 0 | ||
#define DISABLED_MASK5 0 | ||
#define DISABLED_MASK6 0 | ||
#define DISABLED_MASK7 0 | ||
#define DISABLED_MASK8 0 | ||
#define DISABLED_MASK9 0 | ||
|
||
#endif /* _ASM_X86_DISABLED_FEATURES_H */ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters