aboutsummaryrefslogtreecommitdiffstats
path: root/arch/x86/Kconfig
diff options
context:
space:
mode:
authorLinus Torvalds <torvalds@linux-foundation.org>2012-10-01 14:15:17 -0400
committerLinus Torvalds <torvalds@linux-foundation.org>2012-10-01 14:15:17 -0400
commitb3eda8d05c1afe722dc19be3fee7eeadc75e25e2 (patch)
treee301bb7d93be3c1d6192a5186e248c2f00294609 /arch/x86/Kconfig
parenta5fa7b7d8fe0eef36d0adbb36ae71dc82aa0a458 (diff)
parentbd13178169d5fd17da3221b55ba313270393649a (diff)
Merge branch 'x86-microcode-for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip
Pull x86/microcode changes from Ingo Molnar: "The biggest changes are to AMD microcode patching: add code for caching all microcode patches which belong to the current family on which we're running, in the kernel. We look up the patch needed for each core from the cache at patch-application time instead of holding a single patch per-system" * 'x86-microcode-for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip: x86, microcode, AMD: Fix use after free in free_cache() x86, microcode, AMD: Rewrite patch application procedure x86, microcode, AMD: Add a small, per-family patches cache x86, microcode, AMD: Add reverse equiv table search x86, microcode: Add a refresh firmware flag to ->request_microcode_fw x86, microcode, AMD: Read CPUID(1).EAX on the correct cpu x86, microcode, AMD: Check before applying a patch x86, microcode, AMD: Remove useless get_ucode_data wrapper x86, microcode: Straighten out Kconfig text x86, microcode: Cleanup cpu hotplug notifier callback x86, microcode: Drop uci->mc check on resume path x86, microcode: Save an indentation level in reload_for_cpu
Diffstat (limited to 'arch/x86/Kconfig')
-rw-r--r--arch/x86/Kconfig20
1 files changed, 10 insertions, 10 deletions
diff --git a/arch/x86/Kconfig b/arch/x86/Kconfig
index 6cd6f24e122..943667050da 100644
--- a/arch/x86/Kconfig
+++ b/arch/x86/Kconfig
@@ -986,25 +986,25 @@ config X86_REBOOTFIXUPS
986 Say N otherwise. 986 Say N otherwise.
987 987
988config MICROCODE 988config MICROCODE
989 tristate "/dev/cpu/microcode - microcode support" 989 tristate "CPU microcode loading support"
990 select FW_LOADER 990 select FW_LOADER
991 ---help--- 991 ---help---
992
992 If you say Y here, you will be able to update the microcode on 993 If you say Y here, you will be able to update the microcode on
993 certain Intel and AMD processors. The Intel support is for the 994 certain Intel and AMD processors. The Intel support is for the
994 IA32 family, e.g. Pentium Pro, Pentium II, Pentium III, 995 IA32 family, e.g. Pentium Pro, Pentium II, Pentium III, Pentium 4,
995 Pentium 4, Xeon etc. The AMD support is for family 0x10 and 996 Xeon etc. The AMD support is for families 0x10 and later. You will
996 0x11 processors, e.g. Opteron, Phenom and Turion 64 Ultra. 997 obviously need the actual microcode binary data itself which is not
997 You will obviously need the actual microcode binary data itself 998 shipped with the Linux kernel.
998 which is not shipped with the Linux kernel.
999 999
1000 This option selects the general module only, you need to select 1000 This option selects the general module only, you need to select
1001 at least one vendor specific module as well. 1001 at least one vendor specific module as well.
1002 1002
1003 To compile this driver as a module, choose M here: the 1003 To compile this driver as a module, choose M here: the module
1004 module will be called microcode. 1004 will be called microcode.
1005 1005
1006config MICROCODE_INTEL 1006config MICROCODE_INTEL
1007 bool "Intel microcode patch loading support" 1007 bool "Intel microcode loading support"
1008 depends on MICROCODE 1008 depends on MICROCODE
1009 default MICROCODE 1009 default MICROCODE
1010 select FW_LOADER 1010 select FW_LOADER
@@ -1017,7 +1017,7 @@ config MICROCODE_INTEL
1017 <http://www.urbanmyth.org/microcode/>. 1017 <http://www.urbanmyth.org/microcode/>.
1018 1018
1019config MICROCODE_AMD 1019config MICROCODE_AMD
1020 bool "AMD microcode patch loading support" 1020 bool "AMD microcode loading support"
1021 depends on MICROCODE 1021 depends on MICROCODE
1022 select FW_LOADER 1022 select FW_LOADER
1023 ---help--- 1023 ---help---