Kconfig 5.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161
  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_FIXED_VOLTAGE
  24. tristate "Fixed voltage regulator support"
  25. help
  26. This driver provides support for fixed voltage regulators,
  27. useful for systems which use a combination of software
  28. managed regulators and simple non-configurable regulators.
  29. config REGULATOR_VIRTUAL_CONSUMER
  30. tristate "Virtual regulator consumer support"
  31. help
  32. This driver provides a virtual consumer for the voltage and
  33. current regulator API which provides sysfs controls for
  34. configuring the supplies requested. This is mainly useful
  35. for test purposes.
  36. If unsure, say no.
  37. config REGULATOR_USERSPACE_CONSUMER
  38. tristate "Userspace regulator consumer support"
  39. help
  40. There are some classes of devices that are controlled entirely
  41. from user space. Userspace consumer driver provides ability to
  42. control power supplies for such devices.
  43. If unsure, say no.
  44. config REGULATOR_BQ24022
  45. tristate "TI bq24022 Dual Input 1-Cell Li-Ion Charger IC"
  46. help
  47. This driver controls a TI bq24022 Charger attached via
  48. GPIOs. The provided current regulator can enable/disable
  49. charging select between 100 mA and 500 mA charging current
  50. limit.
  51. config REGULATOR_MAX1586
  52. tristate "Maxim 1586/1587 voltage regulator"
  53. depends on I2C
  54. help
  55. This driver controls a Maxim 1586 or 1587 voltage output
  56. regulator via I2C bus. The provided regulator is suitable
  57. for PXA27x chips to control VCC_CORE and VCC_USIM voltages.
  58. config REGULATOR_TWL4030
  59. bool "TI TWL4030/TWL5030/TPS695x0 PMIC"
  60. depends on TWL4030_CORE
  61. help
  62. This driver supports the voltage regulators provided by
  63. this family of companion chips.
  64. config REGULATOR_WM831X
  65. tristate "Wolfson Microelcronics WM831x PMIC regulators"
  66. depends on MFD_WM831X
  67. help
  68. Support the voltage and current regulators of the WM831x series
  69. of PMIC devices.
  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. config REGULATOR_PCAP
  101. tristate "PCAP2 regulator driver"
  102. depends on EZX_PCAP
  103. help
  104. This driver provides support for the voltage regulators of the
  105. PCAP2 PMIC.
  106. config REGULATOR_MC13783
  107. tristate "Support regulators on Freescale MC13783 PMIC"
  108. depends on MFD_MC13783
  109. help
  110. Say y here to support the regulators found on the Freescale MC13783
  111. PMIC.
  112. config REGULATOR_AB3100
  113. tristate "ST-Ericsson AB3100 Regulator functions"
  114. depends on AB3100_CORE
  115. default y if AB3100_CORE
  116. help
  117. These regulators correspond to functionality in the
  118. AB3100 analog baseband dealing with power regulators
  119. for the system.
  120. config REGULATOR_TPS65023
  121. tristate "TI TPS65023 Power regulators"
  122. depends on I2C
  123. help
  124. This driver supports TPS65023 voltage regulator chips. TPS65023 provides
  125. three step-down converters and two general-purpose LDO voltage regulators.
  126. It supports TI's software based Class-2 SmartReflex implementation.
  127. config REGULATOR_TPS6507X
  128. tristate "TI TPS6507X Power regulators"
  129. depends on I2C
  130. help
  131. This driver supports TPS6507X voltage regulator chips. TPS6507X provides
  132. three step-down converters and two general-purpose LDO voltage regulators.
  133. It supports TI's software based Class-2 SmartReflex implementation.
  134. endif