Kconfig 2.5 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677
  1. #
  2. # Platform support for Chrome OS hardware (Chromebooks and Chromeboxes)
  3. #
  4. menuconfig CHROME_PLATFORMS
  5. bool "Platform support for Chrome hardware"
  6. depends on X86 || ARM || ARM64 || COMPILE_TEST
  7. ---help---
  8. Say Y here to get to see options for platform support for
  9. various Chromebooks and Chromeboxes. This option alone does
  10. not add any kernel code.
  11. If you say N, all options in this submenu will be skipped and disabled.
  12. if CHROME_PLATFORMS
  13. config CHROMEOS_LAPTOP
  14. tristate "Chrome OS Laptop"
  15. depends on I2C && DMI && X86
  16. ---help---
  17. This driver instantiates i2c and smbus devices such as
  18. light sensors and touchpads.
  19. If you have a supported Chromebook, choose Y or M here.
  20. The module will be called chromeos_laptop.
  21. config CHROMEOS_PSTORE
  22. tristate "Chrome OS pstore support"
  23. depends on X86
  24. ---help---
  25. This module instantiates the persistent storage on x86 ChromeOS
  26. devices. It can be used to store away console logs and crash
  27. information across reboots.
  28. The range of memory used is 0xf00000-0x1000000, traditionally
  29. the memory used to back VGA controller memory.
  30. If you have a supported Chromebook, choose Y or M here.
  31. The module will be called chromeos_pstore.
  32. config CROS_EC_CHARDEV
  33. tristate "Chrome OS Embedded Controller userspace device interface"
  34. depends on MFD_CROS_EC
  35. ---help---
  36. This driver adds support to talk with the ChromeOS EC from userspace.
  37. If you have a supported Chromebook, choose Y or M here.
  38. The module will be called cros_ec_dev.
  39. config CROS_EC_LPC
  40. tristate "ChromeOS Embedded Controller (LPC)"
  41. depends on MFD_CROS_EC && (X86 || COMPILE_TEST)
  42. help
  43. If you say Y here, you get support for talking to the ChromeOS EC
  44. over an LPC bus. This uses a simple byte-level protocol with a
  45. checksum. This is used for userspace access only. The kernel
  46. typically has its own communication methods.
  47. To compile this driver as a module, choose M here: the
  48. module will be called cros_ec_lpc.
  49. config CROS_EC_PROTO
  50. bool
  51. help
  52. ChromeOS EC communication protocol helpers.
  53. config CROS_KBD_LED_BACKLIGHT
  54. tristate "Backlight LED support for Chrome OS keyboards"
  55. depends on LEDS_CLASS && ACPI
  56. help
  57. This option enables support for the keyboard backlight LEDs on
  58. select Chrome OS systems.
  59. To compile this driver as a module, choose M here: the
  60. module will be called cros_kbd_led_backlight.
  61. endif # CHROMEOS_PLATFORMS