Kconfig 1.2 KB

12345678910111213141516171819202122232425262728293031323334
  1. # SPDX-License-Identifier: GPL-2.0-only
  2. menu "Intel ISH HID support"
  3. depends on (X86_64 || COMPILE_TEST) && PCI
  4. config INTEL_ISH_HID
  5. tristate "Intel Integrated Sensor Hub"
  6. default n
  7. depends on X86
  8. select HID
  9. help
  10. The Integrated Sensor Hub (ISH) enables the ability to offload
  11. sensor polling and algorithm processing to a dedicated low power
  12. processor in the chipset. This allows the core processor to go into
  13. low power modes more often, resulting in the increased battery life.
  14. The current processors that support ISH are: Cherrytrail, Skylake,
  15. Broxton and Kaby Lake.
  16. Say Y here if you want to support Intel ISH. If unsure, say N.
  17. config INTEL_ISH_FIRMWARE_DOWNLOADER
  18. tristate "Host Firmware Load feature for Intel ISH"
  19. depends on INTEL_ISH_HID
  20. depends on X86
  21. help
  22. The Integrated Sensor Hub (ISH) enables the kernel to offload
  23. sensor polling and algorithm processing to a dedicated low power
  24. processor in the chipset.
  25. The Host Firmware Load feature adds support to load the ISH
  26. firmware from host file system at boot.
  27. Say M here if you want to support Host Firmware Loading feature
  28. for Intel ISH. If unsure, say N.
  29. endmenu