81 lines · plain
1# SPDX-License-Identifier: GPL-2.0-only2#3# X86 Platform Specific Drivers4#5menuconfig X86_PLATFORM_DRIVERS_HP6 bool "HP X86 Platform Specific Device Drivers"7 depends on X86_PLATFORM_DEVICES8 help9 Say Y here to get to see options for device drivers for various10 HP x86 platforms, including vendor-specific laptop extension drivers.11 This option alone does not add any kernel code.12 13 If you say N, all options in this submenu will be skipped and disabled.14 15if X86_PLATFORM_DRIVERS_HP16 17config HP_ACCEL18 tristate "HP laptop accelerometer"19 default m20 depends on INPUT && ACPI21 depends on SERIO_I804222 select SENSORS_LIS3LV02D23 select NEW_LEDS24 select LEDS_CLASS25 help26 This driver provides support for the "Mobile Data Protection System 3D"27 or "3D DriveGuard" feature of HP laptops. On such systems the driver28 should load automatically (via ACPI alias).29 30 Support for a led indicating disk protection will be provided as31 hp::hddprotect. For more information on the feature, refer to32 Documentation/misc-devices/lis3lv02d.rst.33 34 To compile this driver as a module, choose M here: the module will35 be called hp_accel.36 37config HP_WMI38 tristate "HP WMI extras"39 default m40 depends on ACPI_WMI41 depends on INPUT42 depends on RFKILL || RFKILL = n43 select POWER_SUPPLY44 select INPUT_SPARSEKMAP45 select ACPI_PLATFORM_PROFILE46 select HWMON47 help48 Say Y here if you want to support WMI-based hotkeys on HP laptops and49 to read data from WMI such as docking or ambient light sensor state.50 51 To compile this driver as a module, choose M here: the module will52 be called hp-wmi.53 54config TC1100_WMI55 tristate "HP Compaq TC1100 Tablet WMI Extras"56 default m57 depends on !X86_6458 depends on ACPI59 depends on ACPI_WMI60 help61 This is a driver for the WMI extensions (wireless and bluetooth power62 control) of the HP Compaq TC1100 tablet.63 64config HP_BIOSCFG65 tristate "HP BIOS Configuration Driver"66 default m67 depends on ACPI_WMI68 select NLS69 select FW_ATTR_CLASS70 help71 This driver enables administrators to securely manage BIOS settings72 using digital certificates and public-key cryptography that eliminate73 the need for passwords for both remote and local management. It supports74 changing BIOS settings on many HP machines from 2018 and newer without75 the use of any additional software.76 77 To compile this driver as a module, choose M here: the module will78 be called hp-bioscfg.79 80endif # X86_PLATFORM_DRIVERS_HP81