Kconfig 1.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263
  1. # SPDX-License-Identifier: GPL-2.0-only
  2. #
  3. # X86 Platform Specific Drivers
  4. #
  5. menuconfig X86_PLATFORM_DRIVERS_HP
  6. bool "HP X86 Platform Specific Device Drivers"
  7. depends on X86_PLATFORM_DEVICES
  8. help
  9. Say Y here to get to see options for device drivers for various
  10. HP x86 platforms, including vendor-specific laptop extension drivers.
  11. This option alone does not add any kernel code.
  12. If you say N, all options in this submenu will be skipped and disabled.
  13. if X86_PLATFORM_DRIVERS_HP
  14. config HP_ACCEL
  15. tristate "HP laptop accelerometer"
  16. default m
  17. depends on INPUT && ACPI
  18. depends on SERIO_I8042
  19. select SENSORS_LIS3LV02D
  20. select NEW_LEDS
  21. select LEDS_CLASS
  22. help
  23. This driver provides support for the "Mobile Data Protection System 3D"
  24. or "3D DriveGuard" feature of HP laptops. On such systems the driver
  25. should load automatically (via ACPI alias).
  26. Support for a led indicating disk protection will be provided as
  27. hp::hddprotect. For more information on the feature, refer to
  28. Documentation/misc-devices/lis3lv02d.rst.
  29. To compile this driver as a module, choose M here: the module will
  30. be called hp_accel.
  31. config HP_WMI
  32. tristate "HP WMI extras"
  33. default m
  34. depends on ACPI_WMI
  35. depends on INPUT
  36. depends on RFKILL || RFKILL = n
  37. select INPUT_SPARSEKMAP
  38. select ACPI_PLATFORM_PROFILE
  39. select HWMON
  40. help
  41. Say Y here if you want to support WMI-based hotkeys on HP laptops and
  42. to read data from WMI such as docking or ambient light sensor state.
  43. To compile this driver as a module, choose M here: the module will
  44. be called hp-wmi.
  45. config TC1100_WMI
  46. tristate "HP Compaq TC1100 Tablet WMI Extras"
  47. default m
  48. depends on !X86_64
  49. depends on ACPI
  50. depends on ACPI_WMI
  51. help
  52. This is a driver for the WMI extensions (wireless and bluetooth power
  53. control) of the HP Compaq TC1100 tablet.
  54. endif # X86_PLATFORM_DRIVERS_HP