Kconfig 2.1 KB

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