Kconfig 32 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018
  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_88PM800
  45. tristate "Marvell 88PM800 Power regulators"
  46. depends on MFD_88PM800
  47. help
  48. This driver supports Marvell 88PM800 voltage regulator chips.
  49. It delivers digitally programmable output,
  50. the voltage is programmed via I2C interface.
  51. It's suitable to support PXA988 chips to control VCC_MAIN and
  52. various voltages.
  53. config REGULATOR_88PM8607
  54. tristate "Marvell 88PM8607 Power regulators"
  55. depends on MFD_88PM860X=y
  56. help
  57. This driver supports 88PM8607 voltage regulator chips.
  58. config REGULATOR_ACT8865
  59. tristate "Active-semi act8865 voltage regulator"
  60. depends on I2C
  61. select REGMAP_I2C
  62. help
  63. This driver controls a active-semi act8865 voltage output
  64. regulator via I2C bus.
  65. config REGULATOR_ACT8945A
  66. tristate "Active-semi ACT8945A voltage regulator"
  67. depends on MFD_ACT8945A
  68. help
  69. This driver controls a active-semi ACT8945A voltage regulator
  70. via I2C bus. The ACT8945A features three step-down DC/DC converters
  71. and four low-dropout linear regulators, along with a ActivePath
  72. battery charger.
  73. config REGULATOR_AD5398
  74. tristate "Analog Devices AD5398/AD5821 regulators"
  75. depends on I2C
  76. help
  77. This driver supports AD5398 and AD5821 current regulator chips.
  78. If building into module, its name is ad5398.ko.
  79. config REGULATOR_ANATOP
  80. tristate "Freescale i.MX on-chip ANATOP LDO regulators"
  81. depends on MFD_SYSCON
  82. help
  83. Say y here to support Freescale i.MX on-chip ANATOP LDOs
  84. regulators. It is recommended that this option be
  85. enabled on i.MX6 platform.
  86. config REGULATOR_AAT2870
  87. tristate "AnalogicTech AAT2870 Regulators"
  88. depends on MFD_AAT2870_CORE
  89. help
  90. If you have a AnalogicTech AAT2870 say Y to enable the
  91. regulator driver.
  92. config REGULATOR_AB3100
  93. tristate "ST-Ericsson AB3100 Regulator functions"
  94. depends on AB3100_CORE
  95. default y if AB3100_CORE
  96. help
  97. These regulators correspond to functionality in the
  98. AB3100 analog baseband dealing with power regulators
  99. for the system.
  100. config REGULATOR_AB8500
  101. bool "ST-Ericsson AB8500 Power Regulators"
  102. depends on AB8500_CORE
  103. help
  104. This driver supports the regulators found on the ST-Ericsson mixed
  105. signal AB8500 PMIC
  106. config REGULATOR_ARIZONA_LDO1
  107. tristate "Wolfson Arizona class devices LDO1"
  108. depends on MFD_ARIZONA
  109. depends on SND_SOC
  110. help
  111. Support for the LDO1 regulators found on Wolfson Arizona class
  112. devices.
  113. config REGULATOR_ARIZONA_MICSUPP
  114. tristate "Wolfson Arizona class devices MICSUPP"
  115. depends on MFD_ARIZONA
  116. depends on SND_SOC
  117. help
  118. Support for the MICSUPP regulators found on Wolfson Arizona class
  119. devices.
  120. config REGULATOR_AS3711
  121. tristate "AS3711 PMIC"
  122. depends on MFD_AS3711
  123. help
  124. This driver provides support for the voltage regulators on the
  125. AS3711 PMIC
  126. config REGULATOR_AS3722
  127. tristate "AMS AS3722 PMIC Regulators"
  128. depends on MFD_AS3722
  129. help
  130. This driver provides support for the voltage regulators on the
  131. AS3722 PMIC. This will enable support for all the software
  132. controllable DCDC/LDO regulators.
  133. config REGULATOR_AXP20X
  134. tristate "X-POWERS AXP20X PMIC Regulators"
  135. depends on MFD_AXP20X
  136. help
  137. This driver provides support for the voltage regulators on the
  138. AXP20X PMIC.
  139. config REGULATOR_BCM590XX
  140. tristate "Broadcom BCM590xx PMU Regulators"
  141. depends on MFD_BCM590XX
  142. help
  143. This driver provides support for the voltage regulators on the
  144. BCM590xx PMUs. This will enable support for the software
  145. controllable LDO/Switching regulators.
  146. config REGULATOR_BD9571MWV
  147. tristate "ROHM BD9571MWV Regulators"
  148. depends on MFD_BD9571MWV
  149. help
  150. This driver provides support for the voltage regulators on the
  151. ROHM BD9571MWV PMIC. This will enable support for the software
  152. controllable regulator and voltage sampling units.
  153. This driver can also be built as a module. If so, the module
  154. will be called bd9571mwv-regulator.
  155. config REGULATOR_CPCAP
  156. tristate "Motorola CPCAP regulator"
  157. depends on MFD_CPCAP
  158. help
  159. Say y here for CPCAP regulator found on some Motorola phones
  160. and tablets such as Droid 4.
  161. config REGULATOR_DA903X
  162. tristate "Dialog Semiconductor DA9030/DA9034 regulators"
  163. depends on PMIC_DA903X
  164. help
  165. Say y here to support the BUCKs and LDOs regulators found on
  166. Dialog Semiconductor DA9030/DA9034 PMIC.
  167. config REGULATOR_DA9052
  168. tristate "Dialog Semiconductor DA9052/DA9053 regulators"
  169. depends on PMIC_DA9052
  170. help
  171. This driver supports the voltage regulators of DA9052-BC and
  172. DA9053-AA/Bx PMIC.
  173. config REGULATOR_DA9055
  174. tristate "Dialog Semiconductor DA9055 regulators"
  175. depends on MFD_DA9055
  176. help
  177. Say y here to support the BUCKs and LDOs regulators found on
  178. Dialog Semiconductor DA9055 PMIC.
  179. This driver can also be built as a module. If so, the module
  180. will be called da9055-regulator.
  181. config REGULATOR_DA9062
  182. tristate "Dialog Semiconductor DA9061/62 regulators"
  183. depends on MFD_DA9062
  184. help
  185. Say y here to support the BUCKs and LDOs regulators found on
  186. DA9061 and DA9062 PMICs.
  187. This driver can also be built as a module. If so, the module
  188. will be called da9062-regulator.
  189. config REGULATOR_DA9063
  190. tristate "Dialog Semiconductor DA9063 regulators"
  191. depends on MFD_DA9063
  192. help
  193. Say y here to support the BUCKs and LDOs regulators found on
  194. DA9063 PMICs.
  195. This driver can also be built as a module. If so, the module
  196. will be called da9063-regulator.
  197. config REGULATOR_DA9210
  198. tristate "Dialog Semiconductor DA9210 regulator"
  199. depends on I2C
  200. select REGMAP_I2C
  201. help
  202. Say y here to support for the Dialog Semiconductor DA9210.
  203. The DA9210 is a multi-phase synchronous step down
  204. converter 12A DC-DC Buck controlled through an I2C
  205. interface.
  206. config REGULATOR_DA9211
  207. tristate "Dialog Semiconductor DA9211/DA9212/DA9213/DA9214/DA9215 regulator"
  208. depends on I2C
  209. select REGMAP_I2C
  210. help
  211. Say y here to support for the Dialog Semiconductor DA9211/DA9212
  212. /DA9213/DA9214/DA9215.
  213. The DA9211/DA9212/DA9213/DA9214/DA9215 is a multi-phase synchronous
  214. step down converter 12A or 16A DC-DC Buck controlled through an I2C
  215. interface.
  216. config REGULATOR_DBX500_PRCMU
  217. bool
  218. config REGULATOR_DB8500_PRCMU
  219. bool "ST-Ericsson DB8500 Voltage Domain Regulators"
  220. depends on MFD_DB8500_PRCMU
  221. select REGULATOR_DBX500_PRCMU
  222. help
  223. This driver supports the voltage domain regulators controlled by the
  224. DB8500 PRCMU
  225. config REGULATOR_FAN53555
  226. tristate "Fairchild FAN53555 Regulator"
  227. depends on I2C
  228. select REGMAP_I2C
  229. help
  230. This driver supports Fairchild FAN53555 Digitally Programmable
  231. TinyBuck Regulator. The FAN53555 is a step-down switching voltage
  232. regulator that delivers a digitally programmable output from an
  233. input voltage supply of 2.5V to 5.5V. The output voltage is
  234. programmed through an I2C interface.
  235. config REGULATOR_GPIO
  236. tristate "GPIO regulator support"
  237. depends on GPIOLIB || COMPILE_TEST
  238. help
  239. This driver provides support for regulators that can be
  240. controlled via gpios.
  241. It is capable of supporting current and voltage regulators
  242. and the platform has to provide a mapping of GPIO-states
  243. to target volts/amps.
  244. config REGULATOR_HI6421
  245. tristate "HiSilicon Hi6421 PMIC voltage regulator support"
  246. depends on MFD_HI6421_PMIC && OF
  247. help
  248. This driver provides support for the voltage regulators on the
  249. HiSilicon Hi6421 PMU / Codec IC.
  250. Hi6421 is a multi-function device which, on regulator part, provides
  251. 21 general purpose LDOs, 3 dedicated LDOs, and 5 BUCKs. All
  252. of them come with support to either ECO (idle) or sleep mode.
  253. config REGULATOR_HI6421V530
  254. tristate "HiSilicon Hi6421v530 PMIC voltage regulator support"
  255. depends on MFD_HI6421_PMIC && OF
  256. help
  257. This driver provides support for the voltage regulators on
  258. HiSilicon Hi6421v530 PMU / Codec IC.
  259. Hi6421v530 is a multi-function device which, on regulator part,
  260. provides 5 general purpose LDOs, and all of them come with support
  261. to either ECO (idle) or sleep mode.
  262. config REGULATOR_HI655X
  263. tristate "Hisilicon HI655X PMIC regulators support"
  264. depends on ARCH_HISI || COMPILE_TEST
  265. depends on MFD_HI655X_PMIC && OF
  266. help
  267. This driver provides support for the voltage regulators of the
  268. Hisilicon Hi655x PMIC device.
  269. config REGULATOR_ISL9305
  270. tristate "Intersil ISL9305 regulator"
  271. depends on I2C
  272. select REGMAP_I2C
  273. help
  274. This driver supports ISL9305 voltage regulator chip.
  275. config REGULATOR_ISL6271A
  276. tristate "Intersil ISL6271A Power regulator"
  277. depends on I2C
  278. help
  279. This driver supports ISL6271A voltage regulator chip.
  280. config REGULATOR_LM363X
  281. tristate "TI LM363X voltage regulators"
  282. depends on MFD_TI_LMU
  283. help
  284. This driver supports LM3631 and LM3632 voltage regulators for
  285. the LCD bias.
  286. One boost output voltage is configurable and always on.
  287. Other LDOs are used for the display module.
  288. config REGULATOR_LP3971
  289. tristate "National Semiconductors LP3971 PMIC regulator driver"
  290. depends on I2C
  291. help
  292. Say Y here to support the voltage regulators and convertors
  293. on National Semiconductors LP3971 PMIC
  294. config REGULATOR_LP3972
  295. tristate "National Semiconductors LP3972 PMIC regulator driver"
  296. depends on I2C
  297. help
  298. Say Y here to support the voltage regulators and convertors
  299. on National Semiconductors LP3972 PMIC
  300. config REGULATOR_LP872X
  301. tristate "TI/National Semiconductor LP8720/LP8725 voltage regulators"
  302. depends on I2C
  303. select REGMAP_I2C
  304. help
  305. This driver supports LP8720/LP8725 PMIC
  306. config REGULATOR_LP873X
  307. tristate "TI LP873X Power regulators"
  308. depends on MFD_TI_LP873X && OF
  309. help
  310. This driver supports LP873X voltage regulator chips. LP873X
  311. provides two step-down converters and two general-purpose LDO
  312. voltage regulators. It supports software based voltage control
  313. for different voltage domains
  314. config REGULATOR_LP8755
  315. tristate "TI LP8755 High Performance PMU driver"
  316. depends on I2C
  317. select REGMAP_I2C
  318. help
  319. This driver supports LP8755 High Performance PMU driver. This
  320. chip contains six step-down DC/DC converters which can support
  321. 9 mode multiphase configuration.
  322. config REGULATOR_LP87565
  323. tristate "TI LP87565 Power regulators"
  324. depends on MFD_TI_LP87565 && OF
  325. help
  326. This driver supports LP87565 voltage regulator chips. LP87565
  327. provides four step-down converters. It supports software based
  328. voltage control for different voltage domains
  329. config REGULATOR_LP8788
  330. tristate "TI LP8788 Power Regulators"
  331. depends on MFD_LP8788
  332. help
  333. This driver supports LP8788 voltage regulator chip.
  334. config REGULATOR_LTC3589
  335. tristate "LTC3589 8-output voltage regulator"
  336. depends on I2C
  337. select REGMAP_I2C
  338. help
  339. This enables support for the LTC3589, LTC3589-1, and LTC3589-2
  340. 8-output regulators controlled via I2C.
  341. config REGULATOR_LTC3676
  342. tristate "LTC3676 8-output voltage regulator"
  343. depends on I2C
  344. select REGMAP_I2C
  345. help
  346. This enables support for the LTC3676
  347. 8-output regulators controlled via I2C.
  348. config REGULATOR_MAX14577
  349. tristate "Maxim 14577/77836 regulator"
  350. depends on MFD_MAX14577
  351. help
  352. This driver controls a Maxim MAX14577/77836 regulator via I2C bus.
  353. The MAX14577 regulators include safeout LDO and charger current
  354. regulator. The MAX77836 has two additional LDOs.
  355. config REGULATOR_MAX1586
  356. tristate "Maxim 1586/1587 voltage regulator"
  357. depends on I2C
  358. help
  359. This driver controls a Maxim 1586 or 1587 voltage output
  360. regulator via I2C bus. The provided regulator is suitable
  361. for PXA27x chips to control VCC_CORE and VCC_USIM voltages.
  362. config REGULATOR_MAX77620
  363. tristate "Maxim 77620/MAX20024 voltage regulator"
  364. depends on MFD_MAX77620
  365. help
  366. This driver controls Maxim MAX77620 voltage output regulator
  367. via I2C bus. The provided regulator is suitable for Tegra
  368. chip to control Step-Down DC-DC and LDOs. Say Y here to
  369. enable the regulator driver.
  370. config REGULATOR_MAX8649
  371. tristate "Maxim 8649 voltage regulator"
  372. depends on I2C
  373. select REGMAP_I2C
  374. help
  375. This driver controls a Maxim 8649 voltage output regulator via
  376. I2C bus.
  377. config REGULATOR_MAX8660
  378. tristate "Maxim 8660/8661 voltage regulator"
  379. depends on I2C
  380. help
  381. This driver controls a Maxim 8660/8661 voltage output
  382. regulator via I2C bus.
  383. config REGULATOR_MAX8907
  384. tristate "Maxim 8907 voltage regulator"
  385. depends on MFD_MAX8907
  386. help
  387. This driver controls a Maxim 8907 voltage output regulator
  388. via I2C bus. The provided regulator is suitable for Tegra
  389. chip to control Step-Down DC-DC and LDOs.
  390. config REGULATOR_MAX8925
  391. tristate "Maxim MAX8925 Power Management IC"
  392. depends on MFD_MAX8925
  393. help
  394. Say y here to support the voltage regulaltor of Maxim MAX8925 PMIC.
  395. config REGULATOR_MAX8952
  396. tristate "Maxim MAX8952 Power Management IC"
  397. depends on I2C
  398. help
  399. This driver controls a Maxim 8952 voltage output regulator
  400. via I2C bus. Maxim 8952 has one voltage output and supports 4 DVS
  401. modes ranging from 0.77V to 1.40V by 0.01V steps.
  402. config REGULATOR_MAX8973
  403. tristate "Maxim MAX8973 voltage regulator "
  404. depends on I2C
  405. depends on THERMAL && THERMAL_OF
  406. select REGMAP_I2C
  407. help
  408. The MAXIM MAX8973 high-efficiency. three phase, DC-DC step-down
  409. switching regulator delievers up to 9A of output current. Each
  410. phase operates at a 2MHz fixed frequency with a 120 deg shift
  411. from the adjacent phase, allowing the use of small magnetic component.
  412. config REGULATOR_MAX8997
  413. tristate "Maxim 8997/8966 regulator"
  414. depends on MFD_MAX8997
  415. help
  416. This driver controls a Maxim 8997/8966 regulator
  417. via I2C bus. The provided regulator is suitable for S5PC110,
  418. S5PV210, and Exynos-4 chips to control VCC_CORE and
  419. VCC_USIM voltages.
  420. config REGULATOR_MAX8998
  421. tristate "Maxim 8998 voltage regulator"
  422. depends on MFD_MAX8998
  423. help
  424. This driver controls a Maxim 8998 voltage output regulator
  425. via I2C bus. The provided regulator is suitable for S3C6410
  426. and S5PC1XX chips to control VCC_CORE and VCC_USIM voltages.
  427. config REGULATOR_MAX77686
  428. tristate "Maxim 77686 regulator"
  429. depends on MFD_MAX77686
  430. help
  431. This driver controls a Maxim 77686 regulator
  432. via I2C bus. The provided regulator is suitable for
  433. Exynos-4 chips to control VARM and VINT voltages.
  434. config REGULATOR_MAX77693
  435. tristate "Maxim 77693/77843 regulator"
  436. depends on (MFD_MAX77693 || MFD_MAX77843)
  437. help
  438. This driver controls a Maxim 77693/77843 regulators via I2C bus.
  439. The regulators include two LDOs, 'SAFEOUT1', 'SAFEOUT2'
  440. and one current regulator 'CHARGER'. This is suitable for
  441. Exynos-4x12 (MAX77693) or Exynos5433 (MAX77843) SoC chips.
  442. config REGULATOR_MAX77802
  443. tristate "Maxim 77802 regulator"
  444. depends on MFD_MAX77686
  445. help
  446. This driver controls a Maxim 77802 regulator
  447. via I2C bus. The provided regulator is suitable for
  448. Exynos5420/Exynos5800 SoCs to control various voltages.
  449. It includes support for control of voltage and ramp speed.
  450. config REGULATOR_MC13XXX_CORE
  451. tristate
  452. config REGULATOR_MC13783
  453. tristate "Freescale MC13783 regulator driver"
  454. depends on MFD_MC13XXX
  455. select REGULATOR_MC13XXX_CORE
  456. help
  457. Say y here to support the regulators found on the Freescale MC13783
  458. PMIC.
  459. config REGULATOR_MC13892
  460. tristate "Freescale MC13892 regulator driver"
  461. depends on MFD_MC13XXX
  462. select REGULATOR_MC13XXX_CORE
  463. help
  464. Say y here to support the regulators found on the Freescale MC13892
  465. PMIC.
  466. config REGULATOR_MT6311
  467. tristate "MediaTek MT6311 PMIC"
  468. depends on I2C
  469. select REGMAP_I2C
  470. help
  471. Say y here to select this option to enable the power regulator of
  472. MediaTek MT6311 PMIC.
  473. This driver supports the control of different power rails of device
  474. through regulator interface.
  475. config REGULATOR_MT6315
  476. tristate "MediaTek MT6315 PMIC"
  477. depends on MTK_MFD_SPMI_PMIC
  478. help
  479. Say y here to select this option to enable the power regulator of
  480. MediaTek MT6315 PMIC.
  481. This driver supports the control of different power rails of device
  482. through regulator interface.
  483. config REGULATOR_MT6323
  484. tristate "MediaTek MT6323 PMIC"
  485. depends on MFD_MT6397
  486. help
  487. Say y here to select this option to enable the power regulator of
  488. MediaTek MT6323 PMIC.
  489. This driver supports the control of different power rails of device
  490. through regulator interface.
  491. config REGULATOR_MT6358
  492. tristate "MediaTek MT6358 PMIC"
  493. depends on MFD_MT6358
  494. help
  495. Say y here to select this option to enable the power regulator of
  496. MediaTek MT6358 PMIC.
  497. This driver supports the control of different power rails of device
  498. through regulator interface.
  499. config REGULATOR_MT6359
  500. tristate "MediaTek MT6359 PMIC"
  501. depends on MFD_MT6358
  502. help
  503. Say y here to select this option to enable the power regulator of
  504. MediaTek MT6359 PMIC.
  505. This driver supports the control of different power rails of device
  506. through regulator interface.
  507. config REGULATOR_MT6359P
  508. tristate "MediaTek MT6359P PMIC"
  509. depends on MFD_MT6358
  510. help
  511. Say y here to select this option to enable the power regulator of
  512. MediaTek MT6359P PMIC.
  513. This driver supports the control of different power rails of device
  514. through regulator interface.
  515. config REGULATOR_MT6362
  516. tristate "MT6362 SPMI Regulator driver"
  517. depends on MFD_MT6362
  518. help
  519. Say yes here to have support for the MT6362 Regulator
  520. Include six BUCKs and seven LDOs.
  521. The driver can also be build as a module.
  522. If so, the module will be called mt6362_regulator
  523. config REGULATOR_MT6380
  524. tristate "MediaTek MT6380 PMIC"
  525. depends on MTK_PMIC_WRAP
  526. help
  527. Say y here to select this option to enable the power regulator of
  528. MediaTek MT6380 PMIC.
  529. This driver supports the control of different power rails of device
  530. through regulator interface.
  531. config REGULATOR_MT6392
  532. tristate "MediaTek MT6392 PMIC"
  533. depends on MFD_MT6397
  534. help
  535. Say y here to select this option to enable the power regulator of
  536. MediaTek MT6392 PMIC.
  537. This driver supports the control of different power rails of device
  538. through regulator interface.
  539. config REGULATOR_MT6397
  540. tristate "MediaTek MT6397 PMIC"
  541. depends on MFD_MT6397
  542. help
  543. Say y here to select this option to enable the power regulator of
  544. MediaTek MT6397 PMIC.
  545. This driver supports the control of different power rails of device
  546. through regulator interface.
  547. config REGULATOR_PALMAS
  548. tristate "TI Palmas PMIC Regulators"
  549. depends on MFD_PALMAS
  550. help
  551. If you wish to control the regulators on the Palmas series of
  552. chips say Y here. This will enable support for all the software
  553. controllable SMPS/LDO regulators.
  554. The regulators available on Palmas series chips vary depending
  555. on the muxing. This is handled automatically in the driver by
  556. reading the mux info from OTP.
  557. config REGULATOR_PBIAS
  558. tristate "PBIAS OMAP regulator driver"
  559. depends on (ARCH_OMAP || COMPILE_TEST) && MFD_SYSCON
  560. help
  561. Say y here to support pbias regulator for mmc1:SD card i/o
  562. on OMAP SoCs.
  563. This driver provides support for OMAP pbias modelled
  564. regulators.
  565. config REGULATOR_PCAP
  566. tristate "Motorola PCAP2 regulator driver"
  567. depends on EZX_PCAP
  568. help
  569. This driver provides support for the voltage regulators of the
  570. PCAP2 PMIC.
  571. config REGULATOR_PCF50633
  572. tristate "NXP PCF50633 regulator driver"
  573. depends on MFD_PCF50633
  574. help
  575. Say Y here to support the voltage regulators and convertors
  576. on PCF50633
  577. config REGULATOR_PFUZE100
  578. tristate "Freescale PFUZE100/200/3000 regulator driver"
  579. depends on I2C
  580. select REGMAP_I2C
  581. help
  582. Say y here to support the regulators found on the Freescale
  583. PFUZE100/200/3000 PMIC.
  584. config REGULATOR_PV88060
  585. tristate "Powerventure Semiconductor PV88060 regulator"
  586. depends on I2C
  587. select REGMAP_I2C
  588. help
  589. Say y here to support the voltage regulators and convertors
  590. PV88060
  591. config REGULATOR_PV88080
  592. tristate "Powerventure Semiconductor PV88080 regulator"
  593. depends on I2C
  594. select REGMAP_I2C
  595. help
  596. Say y here to support the buck convertors on PV88080
  597. config REGULATOR_PV88090
  598. tristate "Powerventure Semiconductor PV88090 regulator"
  599. depends on I2C
  600. select REGMAP_I2C
  601. help
  602. Say y here to support the voltage regulators and convertors
  603. on PV88090
  604. config REGULATOR_PWM
  605. tristate "PWM voltage regulator"
  606. depends on PWM
  607. help
  608. This driver supports PWM controlled voltage regulators. PWM
  609. duty cycle can increase or decrease the voltage.
  610. config REGULATOR_QCOM_RPM
  611. tristate "Qualcomm RPM regulator driver"
  612. depends on MFD_QCOM_RPM
  613. help
  614. If you say yes to this option, support will be included for the
  615. regulators exposed by the Resource Power Manager found in Qualcomm
  616. 8660, 8960 and 8064 based devices.
  617. Say M here if you want to include support for the regulators on the
  618. Qualcomm RPM as a module. The module will be named
  619. "qcom_rpm-regulator".
  620. config REGULATOR_QCOM_SMD_RPM
  621. tristate "Qualcomm SMD based RPM regulator driver"
  622. depends on QCOM_SMD_RPM
  623. help
  624. If you say yes to this option, support will be included for the
  625. regulators exposed by the Resource Power Manager found in Qualcomm
  626. 8974 based devices.
  627. Say M here if you want to include support for the regulators on the
  628. Qualcomm RPM as a module. The module will be named
  629. "qcom_smd-regulator".
  630. config REGULATOR_QCOM_SPMI
  631. tristate "Qualcomm SPMI regulator driver"
  632. depends on SPMI || COMPILE_TEST
  633. help
  634. If you say yes to this option, support will be included for the
  635. regulators found in Qualcomm SPMI PMICs.
  636. Say M here if you want to include support for the regulators on the
  637. Qualcomm SPMI PMICs as a module. The module will be named
  638. "qcom_spmi-regulator".
  639. config REGULATOR_RC5T583
  640. tristate "RICOH RC5T583 Power regulators"
  641. depends on MFD_RC5T583
  642. help
  643. Select this option to enable the power regulator of RICOH
  644. PMIC RC5T583.
  645. This driver supports the control of different power rails of device
  646. through regulator interface. The device supports multiple DCDC/LDO
  647. outputs which can be controlled by i2c communication.
  648. config REGULATOR_RK808
  649. tristate "Rockchip RK805/RK808/RK818 Power regulators"
  650. depends on MFD_RK808
  651. help
  652. Select this option to enable the power regulator of ROCKCHIP
  653. PMIC RK805,RK808 and RK818.
  654. This driver supports the control of different power rails of device
  655. through regulator interface. The device supports multiple DCDC/LDO
  656. outputs which can be controlled by i2c communication.
  657. config REGULATOR_RN5T618
  658. tristate "Ricoh RN5T567/618 voltage regulators"
  659. depends on MFD_RN5T618
  660. help
  661. Say y here to support the regulators found on Ricoh RN5T567,
  662. RN5T618 or RC5T619 PMIC.
  663. config REGULATOR_RT5033
  664. tristate "Richtek RT5033 Regulators"
  665. depends on MFD_RT5033
  666. help
  667. This adds support for voltage and current regulators in Richtek
  668. RT5033 PMIC. The device supports multiple regulators like
  669. current source, LDO and Buck.
  670. config REGULATOR_S2MPA01
  671. tristate "Samsung S2MPA01 voltage regulator"
  672. depends on MFD_SEC_CORE
  673. help
  674. This driver controls Samsung S2MPA01 voltage output regulator
  675. via I2C bus. S2MPA01 has 10 Bucks and 26 LDO outputs.
  676. config REGULATOR_S2MPS11
  677. tristate "Samsung S2MPS11/13/14/15/S2MPU02 voltage regulator"
  678. depends on MFD_SEC_CORE
  679. help
  680. This driver supports a Samsung S2MPS11/13/14/15/S2MPU02 voltage
  681. output regulator via I2C bus. The chip is comprised of high efficient
  682. Buck converters including Dual-Phase Buck converter, Buck-Boost
  683. converter, various LDOs.
  684. config REGULATOR_S5M8767
  685. tristate "Samsung S5M8767A voltage regulator"
  686. depends on MFD_SEC_CORE
  687. help
  688. This driver supports a Samsung S5M8767A voltage output regulator
  689. via I2C bus. S5M8767A have 9 Bucks and 28 LDOs output and
  690. supports DVS mode with 8bits of output voltage control.
  691. config REGULATOR_SKY81452
  692. tristate "Skyworks Solutions SKY81452 voltage regulator"
  693. depends on MFD_SKY81452
  694. help
  695. This driver supports Skyworks SKY81452 voltage output regulator
  696. via I2C bus. SKY81452 has one voltage linear regulator can be
  697. programmed from 4.5V to 20V.
  698. This driver can also be built as a module. If so, the module
  699. will be called sky81452-regulator.
  700. config REGULATOR_STM32_VREFBUF
  701. tristate "STMicroelectronics STM32 VREFBUF"
  702. depends on ARCH_STM32 || COMPILE_TEST
  703. help
  704. This driver supports STMicroelectronics STM32 VREFBUF (voltage
  705. reference buffer) which can be used as voltage reference for
  706. internal ADCs, DACs and also for external components through
  707. dedicated Vref+ pin.
  708. This driver can also be built as a module. If so, the module
  709. will be called stm32-vrefbuf.
  710. config REGULATOR_TI_ABB
  711. tristate "TI Adaptive Body Bias on-chip LDO"
  712. depends on ARCH_OMAP
  713. help
  714. Select this option to support Texas Instruments' on-chip Adaptive Body
  715. Bias (ABB) LDO regulators. It is recommended that this option be
  716. enabled on required TI SoC. Certain Operating Performance Points
  717. on TI SoCs may be unstable without enabling this as it provides
  718. device specific optimized bias to allow/optimize functionality.
  719. config REGULATOR_STW481X_VMMC
  720. bool "ST Microelectronics STW481X VMMC regulator"
  721. depends on MFD_STW481X || COMPILE_TEST
  722. default y if MFD_STW481X
  723. help
  724. This driver supports the internal VMMC regulator in the STw481x
  725. PMIC chips.
  726. config REGULATOR_TPS51632
  727. tristate "TI TPS51632 Power Regulator"
  728. depends on I2C
  729. select REGMAP_I2C
  730. help
  731. This driver supports TPS51632 voltage regulator chip.
  732. The TPS51632 is 3-2-1 Phase D-Cap+ Step Down Driverless Controller
  733. with Serial VID control and DVFS.
  734. The voltage output can be configure through I2C interface or PWM
  735. interface.
  736. config REGULATOR_TPS6105X
  737. tristate "TI TPS6105X Power regulators"
  738. depends on TPS6105X
  739. default y if TPS6105X
  740. help
  741. This driver supports TPS61050/TPS61052 voltage regulator chips.
  742. It is a single boost converter primarily for white LEDs and
  743. audio amplifiers.
  744. config REGULATOR_TPS62360
  745. tristate "TI TPS6236x Power Regulator"
  746. depends on I2C
  747. select REGMAP_I2C
  748. help
  749. This driver supports TPS6236x voltage regulator chip. This
  750. regulator is meant for processor core supply. This chip is
  751. high-frequency synchronous step down dc-dc converter optimized
  752. for battery-powered portable applications.
  753. config REGULATOR_TPS65023
  754. tristate "TI TPS65023 Power regulators"
  755. depends on I2C
  756. select REGMAP_I2C
  757. help
  758. This driver supports TPS65023 voltage regulator chips. TPS65023 provides
  759. three step-down converters and two general-purpose LDO voltage regulators.
  760. It supports TI's software based Class-2 SmartReflex implementation.
  761. config REGULATOR_TPS6507X
  762. tristate "TI TPS6507X Power regulators"
  763. depends on I2C
  764. help
  765. This driver supports TPS6507X voltage regulator chips. TPS6507X provides
  766. three step-down converters and two general-purpose LDO voltage regulators.
  767. It supports TI's software based Class-2 SmartReflex implementation.
  768. config REGULATOR_TPS65086
  769. tristate "TI TPS65086 Power regulators"
  770. depends on MFD_TPS65086
  771. help
  772. This driver provides support for the voltage regulators on
  773. TI TPS65086 PMICs.
  774. config REGULATOR_TPS65090
  775. tristate "TI TPS65090 Power regulator"
  776. depends on MFD_TPS65090
  777. help
  778. This driver provides support for the voltage regulators on the
  779. TI TPS65090 PMIC.
  780. config REGULATOR_TPS65132
  781. tristate "TI TPS65132 Dual Output Power regulators"
  782. depends on I2C && GPIOLIB
  783. select REGMAP_I2C
  784. help
  785. This driver supports TPS65132 single inductor - dual output
  786. power supply specifcally designed for display panels.
  787. config REGULATOR_TPS65217
  788. tristate "TI TPS65217 Power regulators"
  789. depends on MFD_TPS65217
  790. help
  791. This driver supports TPS65217 voltage regulator chips. TPS65217
  792. provides three step-down converters and four general-purpose LDO
  793. voltage regulators. It supports software based voltage control
  794. for different voltage domains
  795. config REGULATOR_TPS65218
  796. tristate "TI TPS65218 Power regulators"
  797. depends on MFD_TPS65218 && OF
  798. help
  799. This driver supports TPS65218 voltage regulator chips. TPS65218
  800. provides six step-down converters and one general-purpose LDO
  801. voltage regulators. It supports software based voltage control
  802. for different voltage domains
  803. config REGULATOR_TPS6524X
  804. tristate "TI TPS6524X Power regulators"
  805. depends on SPI
  806. help
  807. This driver supports TPS6524X voltage regulator chips. TPS6524X
  808. provides three step-down converters and two general-purpose LDO
  809. voltage regulators. This device is interfaced using a customized
  810. serial interface currently supported on the sequencer serial
  811. port controller.
  812. config REGULATOR_TPS6586X
  813. tristate "TI TPS6586X Power regulators"
  814. depends on MFD_TPS6586X
  815. help
  816. This driver supports TPS6586X voltage regulator chips.
  817. config REGULATOR_TPS65910
  818. tristate "TI TPS65910/TPS65911 Power Regulators"
  819. depends on MFD_TPS65910
  820. help
  821. This driver supports TPS65910/TPS65911 voltage regulator chips.
  822. config REGULATOR_TPS65912
  823. tristate "TI TPS65912 Power regulator"
  824. depends on MFD_TPS65912
  825. help
  826. This driver supports TPS65912 voltage regulator chip.
  827. config REGULATOR_TPS80031
  828. tristate "TI TPS80031/TPS80032 power regulator driver"
  829. depends on MFD_TPS80031
  830. help
  831. TPS80031/ TPS80032 Fully Integrated Power Management with Power
  832. Path and Battery Charger. It has 5 configurable step-down
  833. converters, 11 general purpose LDOs, VBUS generator and digital
  834. output to control regulators.
  835. config REGULATOR_TWL4030
  836. tristate "TI TWL4030/TWL5030/TWL6030/TPS659x0 PMIC"
  837. depends on TWL4030_CORE
  838. help
  839. This driver supports the voltage regulators provided by
  840. this family of companion chips.
  841. config REGULATOR_VCTRL
  842. tristate "Voltage controlled regulators"
  843. depends on OF
  844. help
  845. This driver provides support for voltage regulators whose output
  846. voltage is controlled by the voltage of another regulator.
  847. config REGULATOR_VEXPRESS
  848. tristate "Versatile Express regulators"
  849. depends on VEXPRESS_CONFIG
  850. help
  851. This driver provides support for voltage regulators available
  852. on the ARM Ltd's Versatile Express platform.
  853. config REGULATOR_WM831X
  854. tristate "Wolfson Microelectronics WM831x PMIC regulators"
  855. depends on MFD_WM831X
  856. help
  857. Support the voltage and current regulators of the WM831x series
  858. of PMIC devices.
  859. config REGULATOR_WM8350
  860. tristate "Wolfson Microelectronics WM8350 AudioPlus PMIC"
  861. depends on MFD_WM8350
  862. help
  863. This driver provides support for the voltage and current regulators
  864. of the WM8350 AudioPlus PMIC.
  865. config REGULATOR_WM8400
  866. tristate "Wolfson Microelectronics WM8400 AudioPlus PMIC"
  867. depends on MFD_WM8400
  868. help
  869. This driver provides support for the voltage regulators of the
  870. WM8400 AudioPlus PMIC.
  871. config REGULATOR_WM8994
  872. tristate "Wolfson Microelectronics WM8994 CODEC"
  873. depends on MFD_WM8994
  874. help
  875. This driver provides support for the voltage regulators on the
  876. WM8994 CODEC.
  877. endif