Kconfig 2.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384
  1. config CMD_CROS_EC
  2. bool "Enable crosec command"
  3. depends on CROS_EC
  4. help
  5. Enable command-line access to the Chrome OS EC (Embedded
  6. Controller). This provides the 'crosec' command which has
  7. a number of sub-commands for performing EC tasks such as
  8. updating its flash, accessing a small saved context area
  9. and talking to the I2C bus behind the EC (if there is one).
  10. config CROS_EC
  11. bool "Enable Chrome OS EC"
  12. help
  13. Enable access to the Chrome OS EC. This is a separate
  14. microcontroller typically available on a SPI bus on Chromebooks. It
  15. provides access to the keyboard, some internal storage and may
  16. control access to the battery and main PMIC depending on the
  17. device. You can use the 'crosec' command to access it.
  18. config CROS_EC_I2C
  19. bool "Enable Chrome OS EC I2C driver"
  20. depends on CROS_EC
  21. help
  22. Enable I2C access to the Chrome OS EC. This is used on older
  23. ARM Chromebooks such as snow and spring before the standard bus
  24. changed to SPI. The EC will accept commands across the I2C using
  25. a special message protocol, and provide responses.
  26. config CROS_EC_LPC
  27. bool "Enable Chrome OS EC LPC driver"
  28. depends on CROS_EC
  29. help
  30. Enable I2C access to the Chrome OS EC. This is used on x86
  31. Chromebooks such as link and falco. The keyboard is provided
  32. through a legacy port interface, so on x86 machines the main
  33. function of the EC is power and thermal management.
  34. config CROS_EC_SANDBOX
  35. bool "Enable Chrome OS EC sandbox driver"
  36. depends on CROS_EC && SANDBOX
  37. help
  38. Enable a sandbox emulation of the Chrome OS EC. This supports
  39. keyboard (use the -l flag to enable the LCD), verified boot context,
  40. EC flash read/write/erase support and a few other things. It is
  41. enough to perform a Chrome OS verified boot on sandbox.
  42. config CROS_EC_SPI
  43. bool "Enable Chrome OS EC SPI driver"
  44. depends on CROS_EC
  45. help
  46. Enable SPI access to the Chrome OS EC. This is used on newer
  47. ARM Chromebooks such as pit, pi and nyan-big. The SPI interface
  48. provides a faster and more robust interface than I2C but the bugs
  49. are less interesting.
  50. config CONFIG_FSL_SEC_MON
  51. bool "Enable FSL SEC_MON Driver"
  52. help
  53. Freescale Security Monitor block is responsible for monitoring
  54. system states.
  55. Security Monitor can be transitioned on any security failures,
  56. like software violations or hardware security violations.
  57. config PCA9551_LED
  58. bool "Enable PCA9551 LED driver"
  59. help
  60. Enable driver for PCA9551 LED controller. This controller
  61. is connected via I2C. So I2C needs to be enabled.
  62. config PCA9551_I2C_ADDR
  63. hex "I2C address of PCA9551 LED controller"
  64. depends on PCA9551_LED
  65. default 0x60
  66. help
  67. The I2C address of the PCA9551 LED controller.
  68. config RESET
  69. bool "Enable support for reset drivers"
  70. depends on DM
  71. help
  72. Enable reset drivers which can be used to reset the CPU or board.
  73. Each driver can provide a reset method which will be called to
  74. effect a reset. The uclass will try all available drivers when
  75. reset_walk() is called.