Kconfig 4.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151
  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_WM831X
  71. tristate "Wolfson Microelcronics WM831x PMIC regulators"
  72. depends on MFD_WM831X
  73. help
  74. Support the voltage and current regulators of the WM831x series
  75. of PMIC devices.
  76. config REGULATOR_WM8350
  77. tristate "Wolfson Microelectroncis WM8350 AudioPlus PMIC"
  78. depends on MFD_WM8350
  79. help
  80. This driver provides support for the voltage and current regulators
  81. of the WM8350 AudioPlus PMIC.
  82. config REGULATOR_WM8400
  83. tristate "Wolfson Microelectroncis WM8400 AudioPlus PMIC"
  84. depends on MFD_WM8400
  85. help
  86. This driver provides support for the voltage regulators of the
  87. WM8400 AudioPlus PMIC.
  88. config REGULATOR_DA903X
  89. tristate "Support regulators on Dialog Semiconductor DA9030/DA9034 PMIC"
  90. depends on PMIC_DA903X
  91. help
  92. Say y here to support the BUCKs and LDOs regulators found on
  93. Dialog Semiconductor DA9030/DA9034 PMIC.
  94. config REGULATOR_PCF50633
  95. tristate "PCF50633 regulator driver"
  96. depends on MFD_PCF50633
  97. help
  98. Say Y here to support the voltage regulators and convertors
  99. on PCF50633
  100. config REGULATOR_LP3971
  101. tristate "National Semiconductors LP3971 PMIC regulator driver"
  102. depends on I2C
  103. help
  104. Say Y here to support the voltage regulators and convertors
  105. on National Semiconductors LP3971 PMIC
  106. config REGULATOR_PCAP
  107. tristate "PCAP2 regulator driver"
  108. depends on EZX_PCAP
  109. help
  110. This driver provides support for the voltage regulators of the
  111. PCAP2 PMIC.
  112. config REGULATOR_MC13783
  113. tristate "Support regulators on Freescale MC13783 PMIC"
  114. depends on MFD_MC13783
  115. help
  116. Say y here to support the regulators found on the Freescale MC13783
  117. PMIC.
  118. config REGULATOR_AB3100
  119. tristate "ST-Ericsson AB3100 Regulator functions"
  120. depends on AB3100_CORE
  121. default y if AB3100_CORE
  122. help
  123. These regulators correspond to functionality in the
  124. AB3100 analog baseband dealing with power regulators
  125. for the system.
  126. endif