Kconfig 7.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226
  1. menuconfig REGULATOR
  2. bool "Voltage and Current Regulator Support"
  3. help
  4. Generic Voltage and Current Regulator support.
  5. This framework is designed to provide a generic interface to voltage
  6. and current regulators within the Linux kernel. It's intended to
  7. provide voltage and current control to client or consumer drivers and
  8. also provide status information to user space applications through a
  9. sysfs interface.
  10. The intention is to allow systems to dynamically control regulator
  11. output in order to save power and prolong battery life. This applies
  12. to both voltage regulators (where voltage output is controllable) and
  13. current sinks (where current output is controllable).
  14. This framework safely compiles out if not selected so that client
  15. drivers can still be used in systems with no software controllable
  16. regulators.
  17. If unsure, say no.
  18. if REGULATOR
  19. config REGULATOR_DEBUG
  20. bool "Regulator debug support"
  21. help
  22. Say yes here to enable debugging support.
  23. config REGULATOR_DUMMY
  24. bool "Provide a dummy regulator if regulator lookups fail"
  25. help
  26. If this option is enabled then when a regulator lookup fails
  27. and the board has not specified that it has provided full
  28. constraints then the regulator core will provide an always
  29. enabled dummy regulator will be provided, allowing consumer
  30. drivers to continue.
  31. A warning will be generated when this substitution is done.
  32. config REGULATOR_FIXED_VOLTAGE
  33. tristate "Fixed voltage regulator support"
  34. help
  35. This driver provides support for fixed voltage regulators,
  36. useful for systems which use a combination of software
  37. managed regulators and simple non-configurable regulators.
  38. config REGULATOR_VIRTUAL_CONSUMER
  39. tristate "Virtual regulator consumer support"
  40. help
  41. This driver provides a virtual consumer for the voltage and
  42. current regulator API which provides sysfs controls for
  43. configuring the supplies requested. This is mainly useful
  44. for test purposes.
  45. If unsure, say no.
  46. config REGULATOR_USERSPACE_CONSUMER
  47. tristate "Userspace regulator consumer support"
  48. help
  49. There are some classes of devices that are controlled entirely
  50. from user space. Userspace consumer driver provides ability to
  51. control power supplies for such devices.
  52. If unsure, say no.
  53. config REGULATOR_BQ24022
  54. tristate "TI bq24022 Dual Input 1-Cell Li-Ion Charger IC"
  55. help
  56. This driver controls a TI bq24022 Charger attached via
  57. GPIOs. The provided current regulator can enable/disable
  58. charging select between 100 mA and 500 mA charging current
  59. limit.
  60. config REGULATOR_MAX1586
  61. tristate "Maxim 1586/1587 voltage regulator"
  62. depends on I2C
  63. help
  64. This driver controls a Maxim 1586 or 1587 voltage output
  65. regulator via I2C bus. The provided regulator is suitable
  66. for PXA27x chips to control VCC_CORE and VCC_USIM voltages.
  67. config REGULATOR_MAX8649
  68. tristate "Maxim 8649 voltage regulator"
  69. depends on I2C
  70. help
  71. This driver controls a Maxim 8649 voltage output regulator via
  72. I2C bus.
  73. config REGULATOR_MAX8660
  74. tristate "Maxim 8660/8661 voltage regulator"
  75. depends on I2C
  76. help
  77. This driver controls a Maxim 8660/8661 voltage output
  78. regulator via I2C bus.
  79. config REGULATOR_MAX8925
  80. tristate "Maxim MAX8925 Power Management IC"
  81. depends on MFD_MAX8925
  82. help
  83. Say y here to support the voltage regulaltor of Maxim MAX8925 PMIC.
  84. config REGULATOR_MAX8998
  85. tristate "Maxim 8998 voltage regulator"
  86. depends on I2C
  87. default n
  88. help
  89. This driver controls a Maxim 8998 voltage output regulator
  90. via I2C bus. The provided regulator is suitable for S3C6410
  91. and S5PC1XX chips to control VCC_CORE and VCC_USIM voltages.
  92. config REGULATOR_TWL4030
  93. bool "TI TWL4030/TWL5030/TWL6030/TPS695x0 PMIC"
  94. depends on TWL4030_CORE
  95. help
  96. This driver supports the voltage regulators provided by
  97. this family of companion chips.
  98. config REGULATOR_WM831X
  99. tristate "Wolfson Microelcronics WM831x PMIC regulators"
  100. depends on MFD_WM831X
  101. help
  102. Support the voltage and current regulators of the WM831x series
  103. of PMIC devices.
  104. config REGULATOR_WM8350
  105. tristate "Wolfson Microelectronics WM8350 AudioPlus PMIC"
  106. depends on MFD_WM8350
  107. help
  108. This driver provides support for the voltage and current regulators
  109. of the WM8350 AudioPlus PMIC.
  110. config REGULATOR_WM8400
  111. tristate "Wolfson Microelectronics WM8400 AudioPlus PMIC"
  112. depends on MFD_WM8400
  113. help
  114. This driver provides support for the voltage regulators of the
  115. WM8400 AudioPlus PMIC.
  116. config REGULATOR_WM8994
  117. tristate "Wolfson Microelectronics WM8994 CODEC"
  118. depends on MFD_WM8994
  119. help
  120. This driver provides support for the voltage regulators on the
  121. WM8994 CODEC.
  122. config REGULATOR_DA903X
  123. tristate "Support regulators on Dialog Semiconductor DA9030/DA9034 PMIC"
  124. depends on PMIC_DA903X
  125. help
  126. Say y here to support the BUCKs and LDOs regulators found on
  127. Dialog Semiconductor DA9030/DA9034 PMIC.
  128. config REGULATOR_PCF50633
  129. tristate "PCF50633 regulator driver"
  130. depends on MFD_PCF50633
  131. help
  132. Say Y here to support the voltage regulators and convertors
  133. on PCF50633
  134. config REGULATOR_LP3971
  135. tristate "National Semiconductors LP3971 PMIC regulator driver"
  136. depends on I2C
  137. help
  138. Say Y here to support the voltage regulators and convertors
  139. on National Semiconductors LP3971 PMIC
  140. config REGULATOR_PCAP
  141. tristate "PCAP2 regulator driver"
  142. depends on EZX_PCAP
  143. help
  144. This driver provides support for the voltage regulators of the
  145. PCAP2 PMIC.
  146. config REGULATOR_MC13783
  147. tristate "Support regulators on Freescale MC13783 PMIC"
  148. depends on MFD_MC13783
  149. help
  150. Say y here to support the regulators found on the Freescale MC13783
  151. PMIC.
  152. config REGULATOR_AB3100
  153. tristate "ST-Ericsson AB3100 Regulator functions"
  154. depends on AB3100_CORE
  155. default y if AB3100_CORE
  156. help
  157. These regulators correspond to functionality in the
  158. AB3100 analog baseband dealing with power regulators
  159. for the system.
  160. config REGULATOR_TPS65023
  161. tristate "TI TPS65023 Power regulators"
  162. depends on I2C
  163. help
  164. This driver supports TPS65023 voltage regulator chips. TPS65023 provides
  165. three step-down converters and two general-purpose LDO voltage regulators.
  166. It supports TI's software based Class-2 SmartReflex implementation.
  167. config REGULATOR_TPS6507X
  168. tristate "TI TPS6507X Power regulators"
  169. depends on I2C
  170. help
  171. This driver supports TPS6507X voltage regulator chips. TPS6507X provides
  172. three step-down converters and two general-purpose LDO voltage regulators.
  173. It supports TI's software based Class-2 SmartReflex implementation.
  174. config REGULATOR_88PM8607
  175. bool "Marvell 88PM8607 Power regulators"
  176. depends on MFD_88PM860X=y
  177. help
  178. This driver supports 88PM8607 voltage regulator chips.
  179. config REGULATOR_ISL6271A
  180. tristate "Intersil ISL6271A Power regulator"
  181. depends on I2C
  182. help
  183. This driver supports ISL6271A voltage regulator chip.
  184. config REGULATOR_AD5398
  185. tristate "Analog Devices AD5398/AD5821 regulators"
  186. depends on I2C
  187. help
  188. This driver supports AD5398 and AD5821 current regulator chips.
  189. If building into module, its name is ad5398.ko.
  190. endif