diff options
Diffstat (limited to 'arch/x86/Kconfig')
-rw-r--r-- | arch/x86/Kconfig | 24 |
1 files changed, 17 insertions, 7 deletions
diff --git a/arch/x86/Kconfig b/arch/x86/Kconfig index 184bc8872799..3ed5ad92b029 100644 --- a/arch/x86/Kconfig +++ b/arch/x86/Kconfig | |||
@@ -51,6 +51,7 @@ config X86 | |||
51 | select HAVE_KERNEL_GZIP | 51 | select HAVE_KERNEL_GZIP |
52 | select HAVE_KERNEL_BZIP2 | 52 | select HAVE_KERNEL_BZIP2 |
53 | select HAVE_KERNEL_LZMA | 53 | select HAVE_KERNEL_LZMA |
54 | select HAVE_KERNEL_XZ | ||
54 | select HAVE_KERNEL_LZO | 55 | select HAVE_KERNEL_LZO |
55 | select HAVE_HW_BREAKPOINT | 56 | select HAVE_HW_BREAKPOINT |
56 | select HAVE_MIXED_BREAKPOINTS_REGS | 57 | select HAVE_MIXED_BREAKPOINTS_REGS |
@@ -65,6 +66,7 @@ config X86 | |||
65 | select HAVE_SPARSE_IRQ | 66 | select HAVE_SPARSE_IRQ |
66 | select GENERIC_IRQ_PROBE | 67 | select GENERIC_IRQ_PROBE |
67 | select GENERIC_PENDING_IRQ if SMP | 68 | select GENERIC_PENDING_IRQ if SMP |
69 | select USE_GENERIC_SMP_HELPERS if SMP | ||
68 | 70 | ||
69 | config INSTRUCTION_DECODER | 71 | config INSTRUCTION_DECODER |
70 | def_bool (KPROBES || PERF_EVENTS) | 72 | def_bool (KPROBES || PERF_EVENTS) |
@@ -203,10 +205,6 @@ config HAVE_INTEL_TXT | |||
203 | def_bool y | 205 | def_bool y |
204 | depends on EXPERIMENTAL && DMAR && ACPI | 206 | depends on EXPERIMENTAL && DMAR && ACPI |
205 | 207 | ||
206 | config USE_GENERIC_SMP_HELPERS | ||
207 | def_bool y | ||
208 | depends on SMP | ||
209 | |||
210 | config X86_32_SMP | 208 | config X86_32_SMP |
211 | def_bool y | 209 | def_bool y |
212 | depends on X86_32 && SMP | 210 | depends on X86_32 && SMP |
@@ -1936,13 +1934,19 @@ config PCI_MMCONFIG | |||
1936 | depends on X86_64 && PCI && ACPI | 1934 | depends on X86_64 && PCI && ACPI |
1937 | 1935 | ||
1938 | config PCI_CNB20LE_QUIRK | 1936 | config PCI_CNB20LE_QUIRK |
1939 | bool "Read CNB20LE Host Bridge Windows" | 1937 | bool "Read CNB20LE Host Bridge Windows" if EMBEDDED |
1940 | depends on PCI | 1938 | default n |
1939 | depends on PCI && EXPERIMENTAL | ||
1941 | help | 1940 | help |
1942 | Read the PCI windows out of the CNB20LE host bridge. This allows | 1941 | Read the PCI windows out of the CNB20LE host bridge. This allows |
1943 | PCI hotplug to work on systems with the CNB20LE chipset which do | 1942 | PCI hotplug to work on systems with the CNB20LE chipset which do |
1944 | not have ACPI. | 1943 | not have ACPI. |
1945 | 1944 | ||
1945 | There's no public spec for this chipset, and this functionality | ||
1946 | is known to be incomplete. | ||
1947 | |||
1948 | You should say N unless you know you need this. | ||
1949 | |||
1946 | config DMAR | 1950 | config DMAR |
1947 | bool "Support for DMA Remapping Devices (EXPERIMENTAL)" | 1951 | bool "Support for DMA Remapping Devices (EXPERIMENTAL)" |
1948 | depends on PCI_MSI && ACPI && EXPERIMENTAL | 1952 | depends on PCI_MSI && ACPI && EXPERIMENTAL |
@@ -2071,7 +2075,7 @@ config OLPC | |||
2071 | 2075 | ||
2072 | config OLPC_XO1 | 2076 | config OLPC_XO1 |
2073 | tristate "OLPC XO-1 support" | 2077 | tristate "OLPC XO-1 support" |
2074 | depends on OLPC && PCI | 2078 | depends on OLPC && MFD_CS5535 |
2075 | ---help--- | 2079 | ---help--- |
2076 | Add support for non-essential features of the OLPC XO-1 laptop. | 2080 | Add support for non-essential features of the OLPC XO-1 laptop. |
2077 | 2081 | ||
@@ -2079,11 +2083,17 @@ config OLPC_OPENFIRMWARE | |||
2079 | bool "Support for OLPC's Open Firmware" | 2083 | bool "Support for OLPC's Open Firmware" |
2080 | depends on !X86_64 && !X86_PAE | 2084 | depends on !X86_64 && !X86_PAE |
2081 | default n | 2085 | default n |
2086 | select OF | ||
2082 | help | 2087 | help |
2083 | This option adds support for the implementation of Open Firmware | 2088 | This option adds support for the implementation of Open Firmware |
2084 | that is used on the OLPC XO-1 Children's Machine. | 2089 | that is used on the OLPC XO-1 Children's Machine. |
2085 | If unsure, say N here. | 2090 | If unsure, say N here. |
2086 | 2091 | ||
2092 | config OLPC_OPENFIRMWARE_DT | ||
2093 | bool | ||
2094 | default y if OLPC_OPENFIRMWARE && PROC_DEVICETREE | ||
2095 | select OF_PROMTREE | ||
2096 | |||
2087 | endif # X86_32 | 2097 | endif # X86_32 |
2088 | 2098 | ||
2089 | config AMD_NB | 2099 | config AMD_NB |