Kconfig 3.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120
  1. menuconfig REGULATOR
  2. bool "Voltage and Current Regulator Support"
  3. default n
  4. help
  5. Generic Voltage and Current Regulator support.
  6. This framework is designed to provide a generic interface to voltage
  7. and current regulators within the Linux kernel. It's intended to
  8. provide voltage and current control to client or consumer drivers and
  9. also provide status information to user space applications through a
  10. sysfs interface.
  11. The intention is to allow systems to dynamically control regulator
  12. output in order to save power and prolong battery life. This applies
  13. to both voltage regulators (where voltage output is controllable) and
  14. current sinks (where current output is controllable).
  15. This framework safely compiles out if not selected so that client
  16. drivers can still be used in systems with no software controllable
  17. regulators.
  18. If unsure, say no.
  19. if REGULATOR
  20. config REGULATOR_DEBUG
  21. bool "Regulator debug support"
  22. help
  23. Say yes here to enable debugging support.
  24. config REGULATOR_FIXED_VOLTAGE
  25. tristate "Fixed voltage regulator support"
  26. default n
  27. help
  28. This driver provides support for fixed voltage regulators,
  29. useful for systems which use a combination of software
  30. managed regulators and simple non-configurable regulators.
  31. config REGULATOR_VIRTUAL_CONSUMER
  32. tristate "Virtual regulator consumer support"
  33. default n
  34. help
  35. This driver provides a virtual consumer for the voltage and
  36. current regulator API which provides sysfs controls for
  37. configuring the supplies requested. This is mainly useful
  38. for test purposes.
  39. If unsure, say no.
  40. config REGULATOR_USERSPACE_CONSUMER
  41. tristate "Userspace regulator consumer support"
  42. default n
  43. help
  44. There are some classes of devices that are controlled entirely
  45. from user space. Usersapce consumer driver provides ability to
  46. control power supplies for such devices.
  47. If unsure, say no.
  48. config REGULATOR_BQ24022
  49. tristate "TI bq24022 Dual Input 1-Cell Li-Ion Charger IC"
  50. default n
  51. help
  52. This driver controls a TI bq24022 Charger attached via
  53. GPIOs. The provided current regulator can enable/disable
  54. charging select between 100 mA and 500 mA charging current
  55. limit.
  56. config REGULATOR_MAX1586
  57. tristate "Maxim 1586/1587 voltage regulator"
  58. depends on I2C
  59. default n
  60. help
  61. This driver controls a Maxim 1586 or 1587 voltage output
  62. regulator via I2C bus. The provided regulator is suitable
  63. for PXA27x chips to control VCC_CORE and VCC_USIM voltages.
  64. config REGULATOR_TWL4030
  65. bool "TI TWL4030/TWL5030/TPS695x0 PMIC"
  66. depends on TWL4030_CORE
  67. help
  68. This driver supports the voltage regulators provided by
  69. this family of companion chips.
  70. config REGULATOR_WM8350
  71. tristate "Wolfson Microelectroncis WM8350 AudioPlus PMIC"
  72. depends on MFD_WM8350
  73. help
  74. This driver provides support for the voltage and current regulators
  75. of the WM8350 AudioPlus PMIC.
  76. config REGULATOR_WM8400
  77. tristate "Wolfson Microelectroncis WM8400 AudioPlus PMIC"
  78. depends on MFD_WM8400
  79. help
  80. This driver provides support for the voltage regulators of the
  81. WM8400 AudioPlus PMIC.
  82. config REGULATOR_DA903X
  83. tristate "Support regulators on Dialog Semiconductor DA9030/DA9034 PMIC"
  84. depends on PMIC_DA903X
  85. help
  86. Say y here to support the BUCKs and LDOs regulators found on
  87. Dialog Semiconductor DA9030/DA9034 PMIC.
  88. config REGULATOR_PCF50633
  89. tristate "PCF50633 regulator driver"
  90. depends on MFD_PCF50633
  91. help
  92. Say Y here to support the voltage regulators and convertors
  93. on PCF50633
  94. config REGULATOR_LP3971
  95. tristate "National Semiconductors LP3971 PMIC regulator driver"
  96. depends on I2C
  97. help
  98. Say Y here to support the voltage regulators and convertors
  99. on National Semiconductors LP3971 PMIC
  100. endif