Kconfig 1.2 KB

12345678910111213141516171819202122232425262728293031323334353637
  1. # SPDX-License-Identifier: GPL-2.0-or-later
  2. #
  3. # ACPI WMI Core
  4. #
  5. menuconfig ACPI_WMI
  6. tristate "ACPI-WMI support"
  7. depends on ACPI && X86
  8. select NLS
  9. help
  10. This option enables support for the ACPI-WMI driver core.
  11. The ACPI-WMI interface is a proprietary extension of ACPI allowing
  12. the platform firmware to expose WMI (Windows Management Instrumentation)
  13. objects used for managing various aspects of the underlying system.
  14. Mapping between ACPI control methods and WMI objects happens through
  15. special mapper devices (PNP0C14) defined inside the ACPI tables.
  16. Enabling this option is necessary for building the vendor specific
  17. ACPI-WMI client drivers for Acer, Dell an HP machines (among others).
  18. It is safe to enable this option even for machines that do not contain
  19. any ACPI-WMI mapper devices at all.
  20. if ACPI_WMI
  21. config ACPI_WMI_LEGACY_DEVICE_NAMES
  22. bool "Use legacy WMI device naming scheme"
  23. help
  24. Say Y here to force the WMI driver core to use the old WMI device naming
  25. scheme when creating WMI devices. Doing so might be necessary for some
  26. userspace applications but will cause the registration of WMI devices with
  27. the same GUID to fail in some corner cases.
  28. source "drivers/platform/wmi/tests/Kconfig"
  29. endif # ACPI_WMI