diff options
Diffstat (limited to 'drivers/acpi/Kconfig')
-rw-r--r-- | drivers/acpi/Kconfig | 109 |
1 files changed, 9 insertions, 100 deletions
diff --git a/drivers/acpi/Kconfig b/drivers/acpi/Kconfig index f4f632917509..a7799a99f2d9 100644 --- a/drivers/acpi/Kconfig +++ b/drivers/acpi/Kconfig | |||
@@ -9,6 +9,7 @@ menuconfig ACPI | |||
9 | depends on PCI | 9 | depends on PCI |
10 | depends on PM | 10 | depends on PM |
11 | select PNP | 11 | select PNP |
12 | select CPU_IDLE | ||
12 | default y | 13 | default y |
13 | ---help--- | 14 | ---help--- |
14 | Advanced Configuration and Power Interface (ACPI) support for | 15 | Advanced Configuration and Power Interface (ACPI) support for |
@@ -196,90 +197,6 @@ config ACPI_NUMA | |||
196 | depends on (X86 || IA64) | 197 | depends on (X86 || IA64) |
197 | default y if IA64_GENERIC || IA64_SGI_SN2 | 198 | default y if IA64_GENERIC || IA64_SGI_SN2 |
198 | 199 | ||
199 | config ACPI_WMI | ||
200 | tristate "WMI (EXPERIMENTAL)" | ||
201 | depends on X86 | ||
202 | depends on EXPERIMENTAL | ||
203 | help | ||
204 | This driver adds support for the ACPI-WMI (Windows Management | ||
205 | Instrumentation) mapper device (PNP0C14) found on some systems. | ||
206 | |||
207 | ACPI-WMI is a proprietary extension to ACPI to expose parts of the | ||
208 | ACPI firmware to userspace - this is done through various vendor | ||
209 | defined methods and data blocks in a PNP0C14 device, which are then | ||
210 | made available for userspace to call. | ||
211 | |||
212 | The implementation of this in Linux currently only exposes this to | ||
213 | other kernel space drivers. | ||
214 | |||
215 | This driver is a required dependency to build the firmware specific | ||
216 | drivers needed on many machines, including Acer and HP laptops. | ||
217 | |||
218 | It is safe to enable this driver even if your DSDT doesn't define | ||
219 | any ACPI-WMI devices. | ||
220 | |||
221 | config ACPI_ASUS | ||
222 | tristate "ASUS/Medion Laptop Extras" | ||
223 | depends on X86 | ||
224 | select BACKLIGHT_CLASS_DEVICE | ||
225 | ---help--- | ||
226 | This driver provides support for extra features of ACPI-compatible | ||
227 | ASUS laptops. As some of Medion laptops are made by ASUS, it may also | ||
228 | support some Medion laptops (such as 9675 for example). It makes all | ||
229 | the extra buttons generate standard ACPI events that go through | ||
230 | /proc/acpi/events, and (on some models) adds support for changing the | ||
231 | display brightness and output, switching the LCD backlight on and off, | ||
232 | and most importantly, allows you to blink those fancy LEDs intended | ||
233 | for reporting mail and wireless status. | ||
234 | |||
235 | Note: display switching code is currently considered EXPERIMENTAL, | ||
236 | toying with these values may even lock your machine. | ||
237 | |||
238 | All settings are changed via /proc/acpi/asus directory entries. Owner | ||
239 | and group for these entries can be set with asus_uid and asus_gid | ||
240 | parameters. | ||
241 | |||
242 | More information and a userspace daemon for handling the extra buttons | ||
243 | at <http://sourceforge.net/projects/acpi4asus/>. | ||
244 | |||
245 | If you have an ACPI-compatible ASUS laptop, say Y or M here. This | ||
246 | driver is still under development, so if your laptop is unsupported or | ||
247 | something works not quite as expected, please use the mailing list | ||
248 | available on the above page (acpi4asus-user@lists.sourceforge.net). | ||
249 | |||
250 | NOTE: This driver is deprecated and will probably be removed soon, | ||
251 | use asus-laptop instead. | ||
252 | |||
253 | config ACPI_TOSHIBA | ||
254 | tristate "Toshiba Laptop Extras" | ||
255 | depends on X86 && INPUT | ||
256 | select INPUT_POLLDEV | ||
257 | select NET | ||
258 | select RFKILL | ||
259 | select BACKLIGHT_CLASS_DEVICE | ||
260 | ---help--- | ||
261 | This driver adds support for access to certain system settings | ||
262 | on "legacy free" Toshiba laptops. These laptops can be recognized by | ||
263 | their lack of a BIOS setup menu and APM support. | ||
264 | |||
265 | On these machines, all system configuration is handled through the | ||
266 | ACPI. This driver is required for access to controls not covered | ||
267 | by the general ACPI drivers, such as LCD brightness, video output, | ||
268 | etc. | ||
269 | |||
270 | This driver differs from the non-ACPI Toshiba laptop driver (located | ||
271 | under "Processor type and features") in several aspects. | ||
272 | Configuration is accessed by reading and writing text files in the | ||
273 | /proc tree instead of by program interface to /dev. Furthermore, no | ||
274 | power management functions are exposed, as those are handled by the | ||
275 | general ACPI drivers. | ||
276 | |||
277 | More information about this driver is available at | ||
278 | <http://memebeam.org/toys/ToshibaAcpiDriver>. | ||
279 | |||
280 | If you have a legacy free Toshiba laptop (such as the Libretto L1 | ||
281 | series), say Y. | ||
282 | |||
283 | config ACPI_CUSTOM_DSDT_FILE | 200 | config ACPI_CUSTOM_DSDT_FILE |
284 | string "Custom DSDT Table file to include" | 201 | string "Custom DSDT Table file to include" |
285 | default "" | 202 | default "" |
@@ -312,9 +229,13 @@ config ACPI_DEBUG | |||
312 | bool "Debug Statements" | 229 | bool "Debug Statements" |
313 | default n | 230 | default n |
314 | help | 231 | help |
315 | The ACPI driver can optionally report errors with a great deal | 232 | The ACPI subsystem can produce debug output. Saying Y enables this |
316 | of verbosity. Saying Y enables these statements. This will increase | 233 | output and increases the kernel size by around 50K. |
317 | your kernel size by around 50K. | 234 | |
235 | Use the acpi.debug_layer and acpi.debug_level kernel command-line | ||
236 | parameters documented in Documentation/acpi/debug.txt and | ||
237 | Documentation/kernel-parameters.txt to control the type and | ||
238 | amount of debug output. | ||
318 | 239 | ||
319 | config ACPI_DEBUG_FUNC_TRACE | 240 | config ACPI_DEBUG_FUNC_TRACE |
320 | bool "Additionally enable ACPI function tracing" | 241 | bool "Additionally enable ACPI function tracing" |
@@ -324,14 +245,6 @@ config ACPI_DEBUG_FUNC_TRACE | |||
324 | ACPI Debug Statements slow down ACPI processing. Function trace | 245 | ACPI Debug Statements slow down ACPI processing. Function trace |
325 | is about half of the penalty and is rarely useful. | 246 | is about half of the penalty and is rarely useful. |
326 | 247 | ||
327 | config ACPI_EC | ||
328 | bool | ||
329 | default y | ||
330 | help | ||
331 | This driver is required on some systems for the proper operation of | ||
332 | the battery and thermal drivers. If you are compiling for a | ||
333 | mobile system, say Y. | ||
334 | |||
335 | config ACPI_PCI_SLOT | 248 | config ACPI_PCI_SLOT |
336 | tristate "PCI slot detection driver" | 249 | tristate "PCI slot detection driver" |
337 | default n | 250 | default n |
@@ -341,10 +254,6 @@ config ACPI_PCI_SLOT | |||
341 | help you correlate PCI bus addresses with the physical geography | 254 | help you correlate PCI bus addresses with the physical geography |
342 | of your slots. If you are unsure, say N. | 255 | of your slots. If you are unsure, say N. |
343 | 256 | ||
344 | config ACPI_POWER | ||
345 | bool | ||
346 | default y | ||
347 | |||
348 | config ACPI_SYSTEM | 257 | config ACPI_SYSTEM |
349 | bool | 258 | bool |
350 | default y | 259 | default y |
@@ -379,7 +288,7 @@ config ACPI_CONTAINER | |||
379 | support physical cpu/memory hot-plug. | 288 | support physical cpu/memory hot-plug. |
380 | 289 | ||
381 | If one selects "m", this driver can be loaded with | 290 | If one selects "m", this driver can be loaded with |
382 | "modprobe acpi_container". | 291 | "modprobe container". |
383 | 292 | ||
384 | config ACPI_HOTPLUG_MEMORY | 293 | config ACPI_HOTPLUG_MEMORY |
385 | tristate "Memory Hotplug" | 294 | tristate "Memory Hotplug" |