Kconfig 32 KB

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