Kconfig 17 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547
  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 the regulator core will provide an always
  29. enabled dummy regulator, allowing consumer drivers to continue.
  30. A warning will be generated when this substitution is done.
  31. config REGULATOR_FIXED_VOLTAGE
  32. tristate "Fixed voltage regulator support"
  33. help
  34. This driver provides support for fixed voltage regulators,
  35. useful for systems which use a combination of software
  36. managed regulators and simple non-configurable regulators.
  37. config REGULATOR_VIRTUAL_CONSUMER
  38. tristate "Virtual regulator consumer support"
  39. help
  40. This driver provides a virtual consumer for the voltage and
  41. current regulator API which provides sysfs controls for
  42. configuring the supplies requested. This is mainly useful
  43. for test purposes.
  44. If unsure, say no.
  45. config REGULATOR_USERSPACE_CONSUMER
  46. tristate "Userspace regulator consumer support"
  47. help
  48. There are some classes of devices that are controlled entirely
  49. from user space. Userspace consumer driver provides ability to
  50. control power supplies for such devices.
  51. If unsure, say no.
  52. config REGULATOR_88PM800
  53. tristate "Marvell 88PM800 Power regulators"
  54. depends on MFD_88PM800
  55. help
  56. This driver supports Marvell 88PM800 voltage regulator chips.
  57. It delivers digitally programmable output,
  58. the voltage is programmed via I2C interface.
  59. It's suitable to support PXA988 chips to control VCC_MAIN and
  60. various voltages.
  61. config REGULATOR_88PM8607
  62. bool "Marvell 88PM8607 Power regulators"
  63. depends on MFD_88PM860X=y
  64. help
  65. This driver supports 88PM8607 voltage regulator chips.
  66. config REGULATOR_AD5398
  67. tristate "Analog Devices AD5398/AD5821 regulators"
  68. depends on I2C
  69. help
  70. This driver supports AD5398 and AD5821 current regulator chips.
  71. If building into module, its name is ad5398.ko.
  72. config REGULATOR_ANATOP
  73. tristate "Freescale i.MX on-chip ANATOP LDO regulators"
  74. depends on MFD_SYSCON
  75. help
  76. Say y here to support Freescale i.MX on-chip ANATOP LDOs
  77. regulators. It is recommended that this option be
  78. enabled on i.MX6 platform.
  79. config REGULATOR_AAT2870
  80. tristate "AnalogicTech AAT2870 Regulators"
  81. depends on MFD_AAT2870_CORE
  82. help
  83. If you have a AnalogicTech AAT2870 say Y to enable the
  84. regulator driver.
  85. config REGULATOR_AB3100
  86. tristate "ST-Ericsson AB3100 Regulator functions"
  87. depends on AB3100_CORE
  88. default y if AB3100_CORE
  89. help
  90. These regulators correspond to functionality in the
  91. AB3100 analog baseband dealing with power regulators
  92. for the system.
  93. config REGULATOR_AB8500
  94. bool "ST-Ericsson AB8500 Power Regulators"
  95. depends on AB8500_CORE
  96. help
  97. This driver supports the regulators found on the ST-Ericsson mixed
  98. signal AB8500 PMIC
  99. config REGULATOR_ARIZONA
  100. tristate "Wolfson Arizona class devices"
  101. depends on MFD_ARIZONA
  102. depends on SND_SOC
  103. help
  104. Support for the regulators found on Wolfson Arizona class
  105. devices.
  106. config REGULATOR_AS3711
  107. tristate "AS3711 PMIC"
  108. depends on MFD_AS3711
  109. help
  110. This driver provides support for the voltage regulators on the
  111. AS3711 PMIC
  112. config REGULATOR_DA903X
  113. tristate "Dialog Semiconductor DA9030/DA9034 regulators"
  114. depends on PMIC_DA903X
  115. help
  116. Say y here to support the BUCKs and LDOs regulators found on
  117. Dialog Semiconductor DA9030/DA9034 PMIC.
  118. config REGULATOR_DA9052
  119. tristate "Dialog Semiconductor DA9052/DA9053 regulators"
  120. depends on PMIC_DA9052
  121. help
  122. This driver supports the voltage regulators of DA9052-BC and
  123. DA9053-AA/Bx PMIC.
  124. config REGULATOR_DA9055
  125. tristate "Dialog Semiconductor DA9055 regulators"
  126. depends on MFD_DA9055
  127. help
  128. Say y here to support the BUCKs and LDOs regulators found on
  129. Dialog Semiconductor DA9055 PMIC.
  130. This driver can also be built as a module. If so, the module
  131. will be called da9055-regulator.
  132. config REGULATOR_DBX500_PRCMU
  133. bool
  134. config REGULATOR_DB8500_PRCMU
  135. bool "ST-Ericsson DB8500 Voltage Domain Regulators"
  136. depends on MFD_DB8500_PRCMU
  137. select REGULATOR_DBX500_PRCMU
  138. help
  139. This driver supports the voltage domain regulators controlled by the
  140. DB8500 PRCMU
  141. config REGULATOR_FAN53555
  142. tristate "Fairchild FAN53555 Regulator"
  143. depends on I2C
  144. select REGMAP_I2C
  145. help
  146. This driver supports Fairchild FAN53555 Digitally Programmable
  147. TinyBuck Regulator. The FAN53555 is a step-down switching voltage
  148. regulator that delivers a digitally programmable output from an
  149. input voltage supply of 2.5V to 5.5V. The output voltage is
  150. programmed through an I2C interface.
  151. config REGULATOR_GPIO
  152. tristate "GPIO regulator support"
  153. depends on GPIOLIB
  154. help
  155. This driver provides support for regulators that can be
  156. controlled via gpios.
  157. It is capable of supporting current and voltage regulators
  158. and the platform has to provide a mapping of GPIO-states
  159. to target volts/amps.
  160. config REGULATOR_ISL6271A
  161. tristate "Intersil ISL6271A Power regulator"
  162. depends on I2C
  163. help
  164. This driver supports ISL6271A voltage regulator chip.
  165. config REGULATOR_LP3971
  166. tristate "National Semiconductors LP3971 PMIC regulator driver"
  167. depends on I2C
  168. help
  169. Say Y here to support the voltage regulators and convertors
  170. on National Semiconductors LP3971 PMIC
  171. config REGULATOR_LP3972
  172. tristate "National Semiconductors LP3972 PMIC regulator driver"
  173. depends on I2C
  174. help
  175. Say Y here to support the voltage regulators and convertors
  176. on National Semiconductors LP3972 PMIC
  177. config REGULATOR_LP872X
  178. bool "TI/National Semiconductor LP8720/LP8725 voltage regulators"
  179. depends on I2C=y
  180. select REGMAP_I2C
  181. help
  182. This driver supports LP8720/LP8725 PMIC
  183. config REGULATOR_LP8755
  184. tristate "TI LP8755 High Performance PMU driver"
  185. depends on I2C
  186. select REGMAP_I2C
  187. help
  188. This driver supports LP8755 High Performance PMU driver. This
  189. chip contains six step-down DC/DC converters which can support
  190. 9 mode multiphase configuration.
  191. config REGULATOR_LP8788
  192. bool "TI LP8788 Power Regulators"
  193. depends on MFD_LP8788
  194. help
  195. This driver supports LP8788 voltage regulator chip.
  196. config REGULATOR_MAX1586
  197. tristate "Maxim 1586/1587 voltage regulator"
  198. depends on I2C
  199. help
  200. This driver controls a Maxim 1586 or 1587 voltage output
  201. regulator via I2C bus. The provided regulator is suitable
  202. for PXA27x chips to control VCC_CORE and VCC_USIM voltages.
  203. config REGULATOR_MAX8649
  204. tristate "Maxim 8649 voltage regulator"
  205. depends on I2C
  206. select REGMAP_I2C
  207. help
  208. This driver controls a Maxim 8649 voltage output regulator via
  209. I2C bus.
  210. config REGULATOR_MAX8660
  211. tristate "Maxim 8660/8661 voltage regulator"
  212. depends on I2C
  213. help
  214. This driver controls a Maxim 8660/8661 voltage output
  215. regulator via I2C bus.
  216. config REGULATOR_MAX8907
  217. tristate "Maxim 8907 voltage regulator"
  218. depends on MFD_MAX8907
  219. help
  220. This driver controls a Maxim 8907 voltage output regulator
  221. via I2C bus. The provided regulator is suitable for Tegra
  222. chip to control Step-Down DC-DC and LDOs.
  223. config REGULATOR_MAX8925
  224. tristate "Maxim MAX8925 Power Management IC"
  225. depends on MFD_MAX8925
  226. help
  227. Say y here to support the voltage regulaltor of Maxim MAX8925 PMIC.
  228. config REGULATOR_MAX8952
  229. tristate "Maxim MAX8952 Power Management IC"
  230. depends on I2C
  231. help
  232. This driver controls a Maxim 8952 voltage output regulator
  233. via I2C bus. Maxim 8952 has one voltage output and supports 4 DVS
  234. modes ranging from 0.77V to 1.40V by 0.01V steps.
  235. config REGULATOR_MAX8973
  236. tristate "Maxim MAX8973 voltage regulator "
  237. depends on I2C
  238. select REGMAP_I2C
  239. help
  240. The MAXIM MAX8973 high-efficiency. three phase, DC-DC step-down
  241. switching regulator delievers up to 9A of output current. Each
  242. phase operates at a 2MHz fixed frequency with a 120 deg shift
  243. from the adjacent phase, allowing the use of small magnetic component.
  244. config REGULATOR_MAX8997
  245. tristate "Maxim 8997/8966 regulator"
  246. depends on MFD_MAX8997
  247. help
  248. This driver controls a Maxim 8997/8966 regulator
  249. via I2C bus. The provided regulator is suitable for S5PC110,
  250. S5PV210, and Exynos-4 chips to control VCC_CORE and
  251. VCC_USIM voltages.
  252. config REGULATOR_MAX8998
  253. tristate "Maxim 8998 voltage regulator"
  254. depends on MFD_MAX8998
  255. help
  256. This driver controls a Maxim 8998 voltage output regulator
  257. via I2C bus. The provided regulator is suitable for S3C6410
  258. and S5PC1XX chips to control VCC_CORE and VCC_USIM voltages.
  259. config REGULATOR_MAX77686
  260. tristate "Maxim 77686 regulator"
  261. depends on MFD_MAX77686
  262. help
  263. This driver controls a Maxim 77686 regulator
  264. via I2C bus. The provided regulator is suitable for
  265. Exynos-4 chips to control VARM and VINT voltages.
  266. config REGULATOR_MAX77693
  267. tristate "Maxim MAX77693 regulator"
  268. depends on MFD_MAX77693
  269. help
  270. This driver controls a Maxim 77693 regulator via I2C bus.
  271. The regulators include two LDOs, 'SAFEOUT1', 'SAFEOUT2'
  272. and one current regulator 'CHARGER'. This is suitable for
  273. Exynos-4x12 chips.
  274. config REGULATOR_MC13XXX_CORE
  275. tristate
  276. config REGULATOR_MC13783
  277. tristate "Freescale MC13783 regulator driver"
  278. depends on MFD_MC13783
  279. select REGULATOR_MC13XXX_CORE
  280. help
  281. Say y here to support the regulators found on the Freescale MC13783
  282. PMIC.
  283. config REGULATOR_MC13892
  284. tristate "Freescale MC13892 regulator driver"
  285. depends on MFD_MC13XXX
  286. select REGULATOR_MC13XXX_CORE
  287. help
  288. Say y here to support the regulators found on the Freescale MC13892
  289. PMIC.
  290. config REGULATOR_PALMAS
  291. tristate "TI Palmas PMIC Regulators"
  292. depends on MFD_PALMAS
  293. help
  294. If you wish to control the regulators on the Palmas series of
  295. chips say Y here. This will enable support for all the software
  296. controllable SMPS/LDO regulators.
  297. The regulators available on Palmas series chips vary depending
  298. on the muxing. This is handled automatically in the driver by
  299. reading the mux info from OTP.
  300. config REGULATOR_PCAP
  301. tristate "Motorola PCAP2 regulator driver"
  302. depends on EZX_PCAP
  303. help
  304. This driver provides support for the voltage regulators of the
  305. PCAP2 PMIC.
  306. config REGULATOR_PCF50633
  307. tristate "NXP PCF50633 regulator driver"
  308. depends on MFD_PCF50633
  309. help
  310. Say Y here to support the voltage regulators and convertors
  311. on PCF50633
  312. config REGULATOR_RC5T583
  313. tristate "RICOH RC5T583 Power regulators"
  314. depends on MFD_RC5T583
  315. help
  316. Select this option to enable the power regulator of RICOH
  317. PMIC RC5T583.
  318. This driver supports the control of different power rails of device
  319. through regulator interface. The device supports multiple DCDC/LDO
  320. outputs which can be controlled by i2c communication.
  321. config REGULATOR_S2MPS11
  322. tristate "Samsung S2MPS11 voltage regulator"
  323. depends on MFD_SEC_CORE
  324. help
  325. This driver supports a Samsung S2MPS11 voltage output regulator
  326. via I2C bus. S2MPS11 is comprised of high efficient Buck converters
  327. including Dual-Phase Buck converter, Buck-Boost converter, various LDOs.
  328. config REGULATOR_S5M8767
  329. tristate "Samsung S5M8767A voltage regulator"
  330. depends on MFD_SEC_CORE
  331. help
  332. This driver supports a Samsung S5M8767A voltage output regulator
  333. via I2C bus. S5M8767A have 9 Bucks and 28 LDOs output and
  334. supports DVS mode with 8bits of output voltage control.
  335. config REGULATOR_TI_ABB
  336. bool "TI Adaptive Body Bias on-chip LDO"
  337. depends on ARCH_OMAP
  338. help
  339. Select this option to support Texas Instruments' on-chip Adaptive Body
  340. Bias (ABB) LDO regulators. It is recommended that this option be
  341. enabled on required TI SoC. Certain Operating Performance Points
  342. on TI SoCs may be unstable without enabling this as it provides
  343. device specific optimized bias to allow/optimize functionality.
  344. config REGULATOR_TPS51632
  345. tristate "TI TPS51632 Power Regulator"
  346. depends on I2C
  347. select REGMAP_I2C
  348. help
  349. This driver supports TPS51632 voltage regulator chip.
  350. The TPS51632 is 3-2-1 Phase D-Cap+ Step Down Driverless Controller
  351. with Serial VID control and DVFS.
  352. The voltage output can be configure through I2C interface or PWM
  353. interface.
  354. config REGULATOR_TPS6105X
  355. tristate "TI TPS6105X Power regulators"
  356. depends on TPS6105X
  357. default y if TPS6105X
  358. help
  359. This driver supports TPS61050/TPS61052 voltage regulator chips.
  360. It is a single boost converter primarily for white LEDs and
  361. audio amplifiers.
  362. config REGULATOR_TPS62360
  363. tristate "TI TPS6236x Power Regulator"
  364. depends on I2C
  365. select REGMAP_I2C
  366. help
  367. This driver supports TPS6236x voltage regulator chip. This
  368. regulator is meant for processor core supply. This chip is
  369. high-frequency synchronous step down dc-dc converter optimized
  370. for battery-powered portable applications.
  371. config REGULATOR_TPS65023
  372. tristate "TI TPS65023 Power regulators"
  373. depends on I2C
  374. select REGMAP_I2C
  375. help
  376. This driver supports TPS65023 voltage regulator chips. TPS65023 provides
  377. three step-down converters and two general-purpose LDO voltage regulators.
  378. It supports TI's software based Class-2 SmartReflex implementation.
  379. config REGULATOR_TPS6507X
  380. tristate "TI TPS6507X Power regulators"
  381. depends on I2C
  382. help
  383. This driver supports TPS6507X voltage regulator chips. TPS6507X provides
  384. three step-down converters and two general-purpose LDO voltage regulators.
  385. It supports TI's software based Class-2 SmartReflex implementation.
  386. config REGULATOR_TPS65090
  387. tristate "TI TPS65090 Power regulator"
  388. depends on MFD_TPS65090
  389. help
  390. This driver provides support for the voltage regulators on the
  391. TI TPS65090 PMIC.
  392. config REGULATOR_TPS65217
  393. tristate "TI TPS65217 Power regulators"
  394. depends on MFD_TPS65217
  395. help
  396. This driver supports TPS65217 voltage regulator chips. TPS65217
  397. provides three step-down converters and four general-purpose LDO
  398. voltage regulators. It supports software based voltage control
  399. for different voltage domains
  400. config REGULATOR_TPS6524X
  401. tristate "TI TPS6524X Power regulators"
  402. depends on SPI
  403. help
  404. This driver supports TPS6524X voltage regulator chips. TPS6524X
  405. provides three step-down converters and two general-purpose LDO
  406. voltage regulators. This device is interfaced using a customized
  407. serial interface currently supported on the sequencer serial
  408. port controller.
  409. config REGULATOR_TPS6586X
  410. tristate "TI TPS6586X Power regulators"
  411. depends on MFD_TPS6586X
  412. help
  413. This driver supports TPS6586X voltage regulator chips.
  414. config REGULATOR_TPS65910
  415. tristate "TI TPS65910/TPS65911 Power Regulators"
  416. depends on MFD_TPS65910
  417. help
  418. This driver supports TPS65910/TPS65911 voltage regulator chips.
  419. config REGULATOR_TPS65912
  420. tristate "TI TPS65912 Power regulator"
  421. depends on (MFD_TPS65912_I2C || MFD_TPS65912_SPI)
  422. help
  423. This driver supports TPS65912 voltage regulator chip.
  424. config REGULATOR_TPS80031
  425. tristate "TI TPS80031/TPS80032 power regualtor driver"
  426. depends on MFD_TPS80031
  427. help
  428. TPS80031/ TPS80032 Fully Integrated Power Management with Power
  429. Path and Battery Charger. It has 5 configurable step-down
  430. converters, 11 general purpose LDOs, VBUS generator and digital
  431. output to control regulators.
  432. config REGULATOR_TWL4030
  433. bool "TI TWL4030/TWL5030/TWL6030/TPS659x0 PMIC"
  434. depends on TWL4030_CORE
  435. help
  436. This driver supports the voltage regulators provided by
  437. this family of companion chips.
  438. config REGULATOR_VEXPRESS
  439. tristate "Versatile Express regulators"
  440. depends on VEXPRESS_CONFIG
  441. help
  442. This driver provides support for voltage regulators available
  443. on the ARM Ltd's Versatile Express platform.
  444. config REGULATOR_WM831X
  445. tristate "Wolfson Microelectronics WM831x PMIC regulators"
  446. depends on MFD_WM831X
  447. help
  448. Support the voltage and current regulators of the WM831x series
  449. of PMIC devices.
  450. config REGULATOR_WM8350
  451. tristate "Wolfson Microelectronics WM8350 AudioPlus PMIC"
  452. depends on MFD_WM8350
  453. help
  454. This driver provides support for the voltage and current regulators
  455. of the WM8350 AudioPlus PMIC.
  456. config REGULATOR_WM8400
  457. tristate "Wolfson Microelectronics WM8400 AudioPlus PMIC"
  458. depends on MFD_WM8400
  459. help
  460. This driver provides support for the voltage regulators of the
  461. WM8400 AudioPlus PMIC.
  462. config REGULATOR_WM8994
  463. tristate "Wolfson Microelectronics WM8994 CODEC"
  464. depends on MFD_WM8994
  465. help
  466. This driver provides support for the voltage regulators on the
  467. WM8994 CODEC.
  468. endif