blob: 026d480a7ac5479d2091734b605544c465b6f2d1 [file] [log] [blame]
Takashi Iwaibbda14d2008-10-30 15:57:05 +01001menuconfig REGULATOR
Liam Girdwoodba7e4762008-04-30 17:13:42 +01002 bool "Voltage and Current Regulator Support"
Liam Girdwoodba7e4762008-04-30 17:13:42 +01003 help
4 Generic Voltage and Current Regulator support.
5
6 This framework is designed to provide a generic interface to voltage
7 and current regulators within the Linux kernel. It's intended to
8 provide voltage and current control to client or consumer drivers and
9 also provide status information to user space applications through a
10 sysfs interface.
11
12 The intention is to allow systems to dynamically control regulator
13 output in order to save power and prolong battery life. This applies
14 to both voltage regulators (where voltage output is controllable) and
15 current sinks (where current output is controllable).
16
17 This framework safely compiles out if not selected so that client
18 drivers can still be used in systems with no software controllable
19 regulators.
20
21 If unsure, say no.
22
Mark Brown809d3102012-06-20 11:08:43 +010023
Takashi Iwaibbda14d2008-10-30 15:57:05 +010024if REGULATOR
25
Liam Girdwoodba7e4762008-04-30 17:13:42 +010026config REGULATOR_DEBUG
27 bool "Regulator debug support"
Liam Girdwoodba7e4762008-04-30 17:13:42 +010028 help
29 Say yes here to enable debugging support.
30
31config REGULATOR_FIXED_VOLTAGE
Mark Browna9cb63b2009-01-19 13:37:05 +000032 tristate "Fixed voltage regulator support"
Mark Browna9cb63b2009-01-19 13:37:05 +000033 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.
Liam Girdwoodba7e4762008-04-30 17:13:42 +010037
38config REGULATOR_VIRTUAL_CONSUMER
39 tristate "Virtual regulator consumer support"
Liam Girdwoodba7e4762008-04-30 17:13:42 +010040 help
41 This driver provides a virtual consumer for the voltage and
Michael Jonesc6d678b2012-07-26 16:07:23 +020042 current regulator API which provides sysfs controls for
43 configuring the supplies requested. This is mainly useful
44 for test purposes.
Liam Girdwoodba7e4762008-04-30 17:13:42 +010045
Michael Jonesc6d678b2012-07-26 16:07:23 +020046 If unsure, say no.
Liam Girdwoodba7e4762008-04-30 17:13:42 +010047
Mike Rapoport1d98ccc2009-04-26 16:49:39 +030048config REGULATOR_USERSPACE_CONSUMER
49 tristate "Userspace regulator consumer support"
Mike Rapoport1d98ccc2009-04-26 16:49:39 +030050 help
51 There are some classes of devices that are controlled entirely
Michael Prokop6f2653e2009-09-05 02:59:14 +020052 from user space. Userspace consumer driver provides ability to
Mike Rapoport1d98ccc2009-04-26 16:49:39 +030053 control power supplies for such devices.
54
Michael Jonesc6d678b2012-07-26 16:07:23 +020055 If unsure, say no.
Mike Rapoport1d98ccc2009-04-26 16:49:39 +030056
Alexander Monakova265b032018-03-09 01:53:03 +030057config REGULATOR_88PG86X
58 tristate "Marvell 88PG86X voltage regulators"
59 depends on I2C
60 select REGMAP_I2C
61 help
62 This driver supports Marvell 88PG867 and 88PG868 voltage regulators.
63 They provide two I2C-controlled DC/DC step-down converters with
64 sleep mode and separate enable pins.
65
Chao Xie95f1dc02013-07-17 23:07:03 -040066config REGULATOR_88PM800
67 tristate "Marvell 88PM800 Power regulators"
Axel Lin7c45f602013-07-19 09:17:53 +080068 depends on MFD_88PM800
Chao Xie95f1dc02013-07-17 23:07:03 -040069 help
70 This driver supports Marvell 88PM800 voltage regulator chips.
71 It delivers digitally programmable output,
72 the voltage is programmed via I2C interface.
73 It's suitable to support PXA988 chips to control VCC_MAIN and
74 various voltages.
75
Mark Brown82b736d2013-07-05 20:45:22 +010076config REGULATOR_88PM8607
Mark Brown631a1fc2013-07-29 16:49:46 +010077 tristate "Marvell 88PM8607 Power regulators"
Mark Brown82b736d2013-07-05 20:45:22 +010078 depends on MFD_88PM860X=y
Heiko Stübner3f0292a2011-10-05 12:27:05 +020079 help
Mark Brown82b736d2013-07-05 20:45:22 +010080 This driver supports 88PM8607 voltage regulator chips.
Heiko Stübner3f0292a2011-10-05 12:27:05 +020081
Wenyou Yang33036f42013-12-24 10:34:28 +080082config REGULATOR_ACT8865
83 tristate "Active-semi act8865 voltage regulator"
84 depends on I2C
85 select REGMAP_I2C
86 help
87 This driver controls a active-semi act8865 voltage output
88 regulator via I2C bus.
89
Wenyou Yang38c09962016-02-05 12:33:30 +080090config REGULATOR_ACT8945A
91 tristate "Active-semi ACT8945A voltage regulator"
92 depends on MFD_ACT8945A
93 help
94 This driver controls a active-semi ACT8945A voltage regulator
95 via I2C bus. The ACT8945A features three step-down DC/DC converters
96 and four low-dropout linear regulators, along with a ActivePath
97 battery charger.
98
Axel Lindfb9b8a2012-02-22 09:29:16 +080099config REGULATOR_AD5398
100 tristate "Analog Devices AD5398/AD5821 regulators"
101 depends on I2C
Philipp Zabel0eb5d5a2008-07-11 17:28:06 +0200102 help
Axel Lindfb9b8a2012-02-22 09:29:16 +0800103 This driver supports AD5398 and AD5821 current regulator chips.
104 If building into module, its name is ad5398.ko.
105
Mark Brown82b736d2013-07-05 20:45:22 +0100106config REGULATOR_ANATOP
107 tristate "Freescale i.MX on-chip ANATOP LDO regulators"
108 depends on MFD_SYSCON
109 help
110 Say y here to support Freescale i.MX on-chip ANATOP LDOs
111 regulators. It is recommended that this option be
112 enabled on i.MX6 platform.
113
Axel Lindfb9b8a2012-02-22 09:29:16 +0800114config REGULATOR_AAT2870
115 tristate "AnalogicTech AAT2870 Regulators"
116 depends on MFD_AAT2870_CORE
117 help
118 If you have a AnalogicTech AAT2870 say Y to enable the
119 regulator driver.
120
Mark Brown82b736d2013-07-05 20:45:22 +0100121config REGULATOR_AB3100
122 tristate "ST-Ericsson AB3100 Regulator functions"
123 depends on AB3100_CORE
124 default y if AB3100_CORE
125 help
126 These regulators correspond to functionality in the
127 AB3100 analog baseband dealing with power regulators
128 for the system.
129
130config REGULATOR_AB8500
131 bool "ST-Ericsson AB8500 Power Regulators"
132 depends on AB8500_CORE
133 help
134 This driver supports the regulators found on the ST-Ericsson mixed
135 signal AB8500 PMIC
136
Richard Fitzgerald7e642592017-04-18 11:43:48 +0100137config REGULATOR_ARIZONA_LDO1
138 tristate "Wolfson Arizona class devices LDO1"
Mark Brownb667a452012-06-14 18:14:00 +0100139 depends on MFD_ARIZONA
Mark Browne6ed9052013-01-10 19:14:11 +0000140 depends on SND_SOC
Mark Brownb667a452012-06-14 18:14:00 +0100141 help
Richard Fitzgerald7e642592017-04-18 11:43:48 +0100142 Support for the LDO1 regulators found on Wolfson Arizona class
143 devices.
144
145config REGULATOR_ARIZONA_MICSUPP
146 tristate "Wolfson Arizona class devices MICSUPP"
147 depends on MFD_ARIZONA
148 depends on SND_SOC
149 help
150 Support for the MICSUPP regulators found on Wolfson Arizona class
Mark Brownb667a452012-06-14 18:14:00 +0100151 devices.
152
Mark Brown82b736d2013-07-05 20:45:22 +0100153config REGULATOR_AS3711
154 tristate "AS3711 PMIC"
155 depends on MFD_AS3711
156 help
157 This driver provides support for the voltage regulators on the
158 AS3711 PMIC
159
Laxman Dewanganbc407332013-09-20 18:00:13 +0530160config REGULATOR_AS3722
161 tristate "AMS AS3722 PMIC Regulators"
162 depends on MFD_AS3722
163 help
164 This driver provides support for the voltage regulators on the
165 AS3722 PMIC. This will enable support for all the software
166 controllable DCDC/LDO regulators.
167
Carlo Caionedfe7a1b2014-04-11 11:38:10 +0200168config REGULATOR_AXP20X
169 tristate "X-POWERS AXP20X PMIC Regulators"
170 depends on MFD_AXP20X
171 help
172 This driver provides support for the voltage regulators on the
173 AXP20X PMIC.
174
Matt Porter462c9fc2014-03-11 11:46:13 -0400175config REGULATOR_BCM590XX
176 tristate "Broadcom BCM590xx PMU Regulators"
177 depends on MFD_BCM590XX
178 help
179 This driver provides support for the voltage regulators on the
180 BCM590xx PMUs. This will enable support for the software
181 controllable LDO/Switching regulators.
182
Matti Vaittinen410e8b42018-07-30 14:50:08 +0300183config REGULATOR_BD718XX
Matti Vaittinenba087992018-05-30 11:43:43 +0300184 tristate "ROHM BD71837 Power Regulator"
Matti Vaittinen410e8b42018-07-30 14:50:08 +0300185 depends on MFD_ROHM_BD718XX
Matti Vaittinenba087992018-05-30 11:43:43 +0300186 help
187 This driver supports voltage regulators on ROHM BD71837 PMIC.
188 This will enable support for the software controllable buck
189 and LDO regulators.
190
191 This driver can also be built as a module. If so, the module
Matti Vaittinen2ece6462018-09-14 11:34:02 +0300192 will be called bd718x7-regulator.
Matti Vaittinenba087992018-05-30 11:43:43 +0300193
Marek Vasute85c5a12017-04-24 17:21:30 +0200194config REGULATOR_BD9571MWV
195 tristate "ROHM BD9571MWV Regulators"
196 depends on MFD_BD9571MWV
197 help
198 This driver provides support for the voltage regulators on the
199 ROHM BD9571MWV PMIC. This will enable support for the software
200 controllable regulator and voltage sampling units.
201
202 This driver can also be built as a module. If so, the module
203 will be called bd9571mwv-regulator.
204
Tony Lindgren0ad4c072017-02-02 15:43:57 -0800205config REGULATOR_CPCAP
206 tristate "Motorola CPCAP regulator"
207 depends on MFD_CPCAP
208 help
209 Say y here for CPCAP regulator found on some Motorola phones
210 and tablets such as Droid 4.
211
Axel Lindfb9b8a2012-02-22 09:29:16 +0800212config REGULATOR_DA903X
213 tristate "Dialog Semiconductor DA9030/DA9034 regulators"
214 depends on PMIC_DA903X
215 help
216 Say y here to support the BUCKs and LDOs regulators found on
217 Dialog Semiconductor DA9030/DA9034 PMIC.
218
219config REGULATOR_DA9052
220 tristate "Dialog Semiconductor DA9052/DA9053 regulators"
221 depends on PMIC_DA9052
222 help
223 This driver supports the voltage regulators of DA9052-BC and
224 DA9053-AA/Bx PMIC.
225
Ashish Jangamf6130be2012-11-01 13:57:56 +0530226config REGULATOR_DA9055
227 tristate "Dialog Semiconductor DA9055 regulators"
228 depends on MFD_DA9055
229 help
230 Say y here to support the BUCKs and LDOs regulators found on
231 Dialog Semiconductor DA9055 PMIC.
232
233 This driver can also be built as a module. If so, the module
234 will be called da9055-regulator.
235
S Twiss4068e512015-05-19 14:10:30 +0100236config REGULATOR_DA9062
Steve Twiss4b7f4952017-06-07 09:13:48 +0100237 tristate "Dialog Semiconductor DA9061/62 regulators"
S Twiss4068e512015-05-19 14:10:30 +0100238 depends on MFD_DA9062
239 help
240 Say y here to support the BUCKs and LDOs regulators found on
Steve Twiss4b7f4952017-06-07 09:13:48 +0100241 DA9061 and DA9062 PMICs.
S Twiss4068e512015-05-19 14:10:30 +0100242
243 This driver can also be built as a module. If so, the module
244 will be called da9062-regulator.
245
Krystian Garbaciak69ca3e52013-07-29 19:00:45 +0200246config REGULATOR_DA9063
247 tristate "Dialog Semiconductor DA9063 regulators"
248 depends on MFD_DA9063
249 help
250 Say y here to support the BUCKs and LDOs regulators found on
251 DA9063 PMICs.
252
253 This driver can also be built as a module. If so, the module
254 will be called da9063-regulator.
255
Steve Twiss16f10912013-08-06 15:30:48 +0100256config REGULATOR_DA9210
257 tristate "Dialog Semiconductor DA9210 regulator"
258 depends on I2C
259 select REGMAP_I2C
260 help
261 Say y here to support for the Dialog Semiconductor DA9210.
262 The DA9210 is a multi-phase synchronous step down
263 converter 12A DC-DC Buck controlled through an I2C
264 interface.
265
James Ban1028a372014-07-14 13:48:45 +0900266config REGULATOR_DA9211
James Ban707ce9e2017-10-30 11:32:38 +0900267 tristate "Dialog Semiconductor DA9211/DA9212/DA9213/DA9223/DA9214/DA9224/DA9215/DA9225 regulator"
James Ban1028a372014-07-14 13:48:45 +0900268 depends on I2C
269 select REGMAP_I2C
270 help
James Ban005547e2014-08-08 14:27:04 +0900271 Say y here to support for the Dialog Semiconductor DA9211/DA9212
James Ban7bd39352015-06-30 13:39:39 +0900272 /DA9213/DA9214/DA9215.
273 The DA9211/DA9212/DA9213/DA9214/DA9215 is a multi-phase synchronous
James Ban005547e2014-08-08 14:27:04 +0900274 step down converter 12A or 16A DC-DC Buck controlled through an I2C
James Ban1028a372014-07-14 13:48:45 +0900275 interface.
276
Mark Brown82b736d2013-07-05 20:45:22 +0100277config REGULATOR_DBX500_PRCMU
278 bool
279
280config REGULATOR_DB8500_PRCMU
281 bool "ST-Ericsson DB8500 Voltage Domain Regulators"
282 depends on MFD_DB8500_PRCMU
283 select REGULATOR_DBX500_PRCMU
284 help
285 This driver supports the voltage domain regulators controlled by the
286 DB8500 PRCMU
287
Yunfan Zhang49d8c592012-09-08 03:52:18 -0700288config REGULATOR_FAN53555
289 tristate "Fairchild FAN53555 Regulator"
290 depends on I2C
291 select REGMAP_I2C
292 help
293 This driver supports Fairchild FAN53555 Digitally Programmable
294 TinyBuck Regulator. The FAN53555 is a step-down switching voltage
295 regulator that delivers a digitally programmable output from an
296 input voltage supply of 2.5V to 5.5V. The output voltage is
297 programmed through an I2C interface.
298
Mark Brown82b736d2013-07-05 20:45:22 +0100299config REGULATOR_GPIO
300 tristate "GPIO regulator support"
Geert Uytterhoeven9eac5fd2015-05-05 18:32:32 +0200301 depends on GPIOLIB || COMPILE_TEST
Ying-Chun Liu (PaulLiu)e3e5aff2012-03-14 10:29:12 +0800302 help
Mark Brown82b736d2013-07-05 20:45:22 +0100303 This driver provides support for regulators that can be
304 controlled via gpios.
305 It is capable of supporting current and voltage regulators
306 and the platform has to provide a mapping of GPIO-states
307 to target volts/amps.
Axel Lindfb9b8a2012-02-22 09:29:16 +0800308
Guodong Xu87ca1862014-08-13 19:33:42 +0800309config REGULATOR_HI6421
310 tristate "HiSilicon Hi6421 PMIC voltage regulator support"
311 depends on MFD_HI6421_PMIC && OF
312 help
313 This driver provides support for the voltage regulators on the
314 HiSilicon Hi6421 PMU / Codec IC.
315 Hi6421 is a multi-function device which, on regulator part, provides
316 21 general purpose LDOs, 3 dedicated LDOs, and 5 BUCKs. All
317 of them come with support to either ECO (idle) or sleep mode.
318
Wang Xiaoyin5c7024a2017-06-07 15:06:03 +0800319config REGULATOR_HI6421V530
320 tristate "HiSilicon Hi6421v530 PMIC voltage regulator support"
321 depends on MFD_HI6421_PMIC && OF
322 help
323 This driver provides support for the voltage regulators on
324 HiSilicon Hi6421v530 PMU / Codec IC.
325 Hi6421v530 is a multi-function device which, on regulator part,
326 provides 5 general purpose LDOs, and all of them come with support
327 to either ECO (idle) or sleep mode.
328
Chen Feng46181192016-02-14 14:29:22 +0800329config REGULATOR_HI655X
330 tristate "Hisilicon HI655X PMIC regulators support"
331 depends on ARCH_HISI || COMPILE_TEST
332 depends on MFD_HI655X_PMIC && OF
333 help
334 This driver provides support for the voltage regulators of the
335 Hisilicon Hi655x PMIC device.
336
Mark Browndec38b52014-09-06 01:11:12 +0100337config REGULATOR_ISL9305
338 tristate "Intersil ISL9305 regulator"
339 depends on I2C
Axel Linba441ec2014-09-10 08:44:36 +0800340 select REGMAP_I2C
Mark Browndec38b52014-09-06 01:11:12 +0100341 help
342 This driver supports ISL9305 voltage regulator chip.
343
Axel Lindfb9b8a2012-02-22 09:29:16 +0800344config REGULATOR_ISL6271A
345 tristate "Intersil ISL6271A Power regulator"
346 depends on I2C
347 help
348 This driver supports ISL6271A voltage regulator chip.
349
Milo Kim3a8d1a72015-11-26 15:57:05 +0900350config REGULATOR_LM363X
351 tristate "TI LM363X voltage regulators"
352 depends on MFD_TI_LMU
353 help
354 This driver supports LM3631 and LM3632 voltage regulators for
355 the LCD bias.
356 One boost output voltage is configurable and always on.
357 Other LDOs are used for the display module.
358
Mark Brown82b736d2013-07-05 20:45:22 +0100359config REGULATOR_LP3971
360 tristate "National Semiconductors LP3971 PMIC regulator driver"
361 depends on I2C
Axel Lindfb9b8a2012-02-22 09:29:16 +0800362 help
Mark Brown82b736d2013-07-05 20:45:22 +0100363 Say Y here to support the voltage regulators and convertors
364 on National Semiconductors LP3971 PMIC
365
366config REGULATOR_LP3972
367 tristate "National Semiconductors LP3972 PMIC regulator driver"
368 depends on I2C
369 help
370 Say Y here to support the voltage regulators and convertors
371 on National Semiconductors LP3972 PMIC
372
373config REGULATOR_LP872X
Mark Brown631a1fc2013-07-29 16:49:46 +0100374 tristate "TI/National Semiconductor LP8720/LP8725 voltage regulators"
Axel Lin613965f2013-08-30 22:13:44 +0800375 depends on I2C
Mark Brown82b736d2013-07-05 20:45:22 +0100376 select REGMAP_I2C
377 help
378 This driver supports LP8720/LP8725 PMIC
379
Keerthy994aae32016-05-10 09:34:39 +0530380config REGULATOR_LP873X
381 tristate "TI LP873X Power regulators"
Keerthyf618ed22016-08-31 14:28:12 +0530382 depends on MFD_TI_LP873X && OF
Keerthy994aae32016-05-10 09:34:39 +0530383 help
384 This driver supports LP873X voltage regulator chips. LP873X
385 provides two step-down converters and two general-purpose LDO
386 voltage regulators. It supports software based voltage control
387 for different voltage domains
388
Mark Brown82b736d2013-07-05 20:45:22 +0100389config REGULATOR_LP8755
390 tristate "TI LP8755 High Performance PMU driver"
391 depends on I2C
392 select REGMAP_I2C
393 help
394 This driver supports LP8755 High Performance PMU driver. This
395 chip contains six step-down DC/DC converters which can support
396 9 mode multiphase configuration.
397
Keerthyf0168a92017-05-23 17:46:55 +0530398config REGULATOR_LP87565
399 tristate "TI LP87565 Power regulators"
400 depends on MFD_TI_LP87565 && OF
401 help
402 This driver supports LP87565 voltage regulator chips. LP87565
403 provides four step-down converters. It supports software based
404 voltage control for different voltage domains
405
Mark Brown82b736d2013-07-05 20:45:22 +0100406config REGULATOR_LP8788
Mark Brown631a1fc2013-07-29 16:49:46 +0100407 tristate "TI LP8788 Power Regulators"
Mark Brown82b736d2013-07-05 20:45:22 +0100408 depends on MFD_LP8788
409 help
410 This driver supports LP8788 voltage regulator chip.
Philipp Zabel0eb5d5a2008-07-11 17:28:06 +0200411
Philipp Zabel3eb2c7e2014-05-26 10:38:16 +0200412config REGULATOR_LTC3589
Axel Linac1d6862014-05-27 13:51:49 +0800413 tristate "LTC3589 8-output voltage regulator"
414 depends on I2C
415 select REGMAP_I2C
Philipp Zabel3eb2c7e2014-05-26 10:38:16 +0200416 help
417 This enables support for the LTC3589, LTC3589-1, and LTC3589-2
418 8-output regulators controlled via I2C.
419
Tim Harvey37b918a2016-08-15 12:40:23 -0700420config REGULATOR_LTC3676
421 tristate "LTC3676 8-output voltage regulator"
422 depends on I2C
423 select REGMAP_I2C
424 help
425 This enables support for the LTC3676
426 8-output regulators controlled via I2C.
427
Krzysztof Kozlowskib0902bb2013-12-06 12:32:13 +0100428config REGULATOR_MAX14577
Krzysztof Kozlowski8a82b402014-04-14 11:17:20 +0200429 tristate "Maxim 14577/77836 regulator"
Krzysztof Kozlowskib0902bb2013-12-06 12:32:13 +0100430 depends on MFD_MAX14577
431 help
Krzysztof Kozlowski8a82b402014-04-14 11:17:20 +0200432 This driver controls a Maxim MAX14577/77836 regulator via I2C bus.
433 The MAX14577 regulators include safeout LDO and charger current
434 regulator. The MAX77836 has two additional LDOs.
Krzysztof Kozlowskib0902bb2013-12-06 12:32:13 +0100435
Robert Jarzmik55f4fa42009-04-23 20:10:43 +0200436config REGULATOR_MAX1586
437 tristate "Maxim 1586/1587 voltage regulator"
438 depends on I2C
Robert Jarzmik55f4fa42009-04-23 20:10:43 +0200439 help
440 This driver controls a Maxim 1586 or 1587 voltage output
441 regulator via I2C bus. The provided regulator is suitable
442 for PXA27x chips to control VCC_CORE and VCC_USIM voltages.
443
Laxman Dewangan5b1c2022016-02-11 17:26:34 +0530444config REGULATOR_MAX77620
445 tristate "Maxim 77620/MAX20024 voltage regulator"
446 depends on MFD_MAX77620
447 help
448 This driver controls Maxim MAX77620 voltage output regulator
449 via I2C bus. The provided regulator is suitable for Tegra
450 chip to control Step-Down DC-DC and LDOs. Say Y here to
451 enable the regulator driver.
452
Haojian Zhuanga71b7972010-01-25 10:24:09 -0500453config REGULATOR_MAX8649
454 tristate "Maxim 8649 voltage regulator"
455 depends on I2C
Jonghwan Choic5b68d472011-10-24 22:26:26 +0900456 select REGMAP_I2C
Haojian Zhuanga71b7972010-01-25 10:24:09 -0500457 help
458 This driver controls a Maxim 8649 voltage output regulator via
459 I2C bus.
460
Wolfram Sang27f37e42009-09-25 09:39:26 +0200461config REGULATOR_MAX8660
462 tristate "Maxim 8660/8661 voltage regulator"
463 depends on I2C
464 help
465 This driver controls a Maxim 8660/8661 voltage output
466 regulator via I2C bus.
467
Gyungoh Yooffee1902012-08-09 14:24:34 -0600468config REGULATOR_MAX8907
469 tristate "Maxim 8907 voltage regulator"
470 depends on MFD_MAX8907
471 help
472 This driver controls a Maxim 8907 voltage output regulator
473 via I2C bus. The provided regulator is suitable for Tegra
474 chip to control Step-Down DC-DC and LDOs.
475
Haojian Zhuang08ff6f22010-01-11 13:10:08 +0100476config REGULATOR_MAX8925
477 tristate "Maxim MAX8925 Power Management IC"
478 depends on MFD_MAX8925
479 help
480 Say y here to support the voltage regulaltor of Maxim MAX8925 PMIC.
481
MyungJoo Ham202f4f52010-08-20 14:43:56 +0900482config REGULATOR_MAX8952
483 tristate "Maxim MAX8952 Power Management IC"
484 depends on I2C
485 help
486 This driver controls a Maxim 8952 voltage output regulator
487 via I2C bus. Maxim 8952 has one voltage output and supports 4 DVS
488 modes ranging from 0.77V to 1.40V by 0.01V steps.
489
Laxman Dewangan5928f532012-11-19 06:58:29 +0530490config REGULATOR_MAX8973
491 tristate "Maxim MAX8973 voltage regulator "
492 depends on I2C
Laxman Dewangand2d5437b2016-04-13 15:29:45 +0530493 depends on THERMAL && THERMAL_OF
Laxman Dewangan5928f532012-11-19 06:58:29 +0530494 select REGMAP_I2C
495 help
496 The MAXIM MAX8973 high-efficiency. three phase, DC-DC step-down
497 switching regulator delievers up to 9A of output current. Each
498 phase operates at a 2MHz fixed frequency with a 120 deg shift
499 from the adjacent phase, allowing the use of small magnetic component.
500
MyungJoo Hambd6ca2c2011-03-11 11:34:44 +0900501config REGULATOR_MAX8997
502 tristate "Maxim 8997/8966 regulator"
503 depends on MFD_MAX8997
504 help
505 This driver controls a Maxim 8997/8966 regulator
506 via I2C bus. The provided regulator is suitable for S5PC110,
507 S5PV210, and Exynos-4 chips to control VCC_CORE and
508 VCC_USIM voltages.
509
Kyungmin Park156f2522010-06-16 09:04:16 +0200510config REGULATOR_MAX8998
511 tristate "Maxim 8998 voltage regulator"
Marek Szyprowski69f71002010-06-21 10:04:23 +0200512 depends on MFD_MAX8998
Kyungmin Park156f2522010-06-16 09:04:16 +0200513 help
514 This driver controls a Maxim 8998 voltage output regulator
515 via I2C bus. The provided regulator is suitable for S3C6410
516 and S5PC1XX chips to control VCC_CORE and VCC_USIM voltages.
517
Jonghwa Lee133d4012012-06-01 13:17:14 +0900518config REGULATOR_MAX77686
519 tristate "Maxim 77686 regulator"
520 depends on MFD_MAX77686
521 help
522 This driver controls a Maxim 77686 regulator
523 via I2C bus. The provided regulator is suitable for
524 Exynos-4 chips to control VARM and VINT voltages.
525
Jonghwa Lee80b022e2013-06-25 10:08:38 +0900526config REGULATOR_MAX77693
Krzysztof Kozlowski9e9a08e2015-07-15 21:59:54 +0900527 tristate "Maxim 77693/77843 regulator"
528 depends on (MFD_MAX77693 || MFD_MAX77843)
Jonghwa Lee80b022e2013-06-25 10:08:38 +0900529 help
Krzysztof Kozlowski9e9a08e2015-07-15 21:59:54 +0900530 This driver controls a Maxim 77693/77843 regulators via I2C bus.
Jonghwa Lee80b022e2013-06-25 10:08:38 +0900531 The regulators include two LDOs, 'SAFEOUT1', 'SAFEOUT2'
532 and one current regulator 'CHARGER'. This is suitable for
Krzysztof Kozlowski9e9a08e2015-07-15 21:59:54 +0900533 Exynos-4x12 (MAX77693) or Exynos5433 (MAX77843) SoC chips.
Jonghwa Lee80b022e2013-06-25 10:08:38 +0900534
Javier Martinez Canillase6f2f802014-08-18 10:32:41 +0200535config REGULATOR_MAX77802
536 tristate "Maxim 77802 regulator"
537 depends on MFD_MAX77686
538 help
539 This driver controls a Maxim 77802 regulator
540 via I2C bus. The provided regulator is suitable for
541 Exynos5420/Exynos5800 SoCs to control various voltages.
542 It includes support for control of voltage and ramp speed.
543
Mark Brown82b736d2013-07-05 20:45:22 +0100544config REGULATOR_MC13XXX_CORE
545 tristate
546
547config REGULATOR_MC13783
548 tristate "Freescale MC13783 regulator driver"
Alexander Shiyane5a3da22013-12-14 17:03:10 +0400549 depends on MFD_MC13XXX
Mark Brown82b736d2013-07-05 20:45:22 +0100550 select REGULATOR_MC13XXX_CORE
551 help
552 Say y here to support the regulators found on the Freescale MC13783
553 PMIC.
554
555config REGULATOR_MC13892
556 tristate "Freescale MC13892 regulator driver"
557 depends on MFD_MC13XXX
558 select REGULATOR_MC13XXX_CORE
559 help
560 Say y here to support the regulators found on the Freescale MC13892
561 PMIC.
562
Henry Chen87660182015-07-24 13:24:41 +0800563config REGULATOR_MT6311
564 tristate "MediaTek MT6311 PMIC"
565 depends on I2C
Henry Chenaab3c3f2015-11-17 16:36:49 +0800566 select REGMAP_I2C
Henry Chen87660182015-07-24 13:24:41 +0800567 help
568 Say y here to select this option to enable the power regulator of
569 MediaTek MT6311 PMIC.
570 This driver supports the control of different power rails of device
571 through regulator interface.
572
Chen Zhong2fdf8292016-07-18 14:40:51 +0200573config REGULATOR_MT6323
574 tristate "MediaTek MT6323 PMIC"
575 depends on MFD_MT6397
576 help
577 Say y here to select this option to enable the power regulator of
578 MediaTek MT6323 PMIC.
579 This driver supports the control of different power rails of device
580 through regulator interface.
581
Chenglin Xua551e272017-08-15 17:09:15 +0800582config REGULATOR_MT6380
583 tristate "MediaTek MT6380 PMIC"
584 depends on MTK_PMIC_WRAP
585 help
586 Say y here to select this option to enable the power regulator of
587 MediaTek MT6380 PMIC.
588 This driver supports the control of different power rails of device
589 through regulator interface.
590
Flora Fu0425e242014-12-05 12:07:54 +0800591config REGULATOR_MT6397
592 tristate "MediaTek MT6397 PMIC"
593 depends on MFD_MT6397
594 help
595 Say y here to select this option to enable the power regulator of
596 MediaTek MT6397 PMIC.
597 This driver supports the control of different power rails of device
598 through regulator interface.
599
Mark Brown82b736d2013-07-05 20:45:22 +0100600config REGULATOR_PALMAS
601 tristate "TI Palmas PMIC Regulators"
602 depends on MFD_PALMAS
603 help
604 If you wish to control the regulators on the Palmas series of
605 chips say Y here. This will enable support for all the software
606 controllable SMPS/LDO regulators.
607
608 The regulators available on Palmas series chips vary depending
609 on the muxing. This is handled automatically in the driver by
610 reading the mux info from OTP.
611
Balaji T K11469e02014-02-19 20:26:40 +0530612config REGULATOR_PBIAS
613 tristate "PBIAS OMAP regulator driver"
614 depends on (ARCH_OMAP || COMPILE_TEST) && MFD_SYSCON
615 help
616 Say y here to support pbias regulator for mmc1:SD card i/o
617 on OMAP SoCs.
618 This driver provides support for OMAP pbias modelled
619 regulators.
620
Axel Lindfb9b8a2012-02-22 09:29:16 +0800621config REGULATOR_PCAP
622 tristate "Motorola PCAP2 regulator driver"
623 depends on EZX_PCAP
Sangbeom Kim62aa4922012-01-13 10:13:13 +0900624 help
Axel Lindfb9b8a2012-02-22 09:29:16 +0800625 This driver provides support for the voltage regulators of the
626 PCAP2 PMIC.
Balaji Rao5ec271e2009-01-09 01:51:01 +0100627
Axel Lindfb9b8a2012-02-22 09:29:16 +0800628config REGULATOR_PCF50633
629 tristate "NXP PCF50633 regulator driver"
Michael Jonesc6d678b2012-07-26 16:07:23 +0200630 depends on MFD_PCF50633
Daniel Ribeiro39b17722009-06-27 00:18:02 -0300631 help
Axel Lindfb9b8a2012-02-22 09:29:16 +0800632 Say Y here to support the voltage regulators and convertors
633 on PCF50633
Daniel Ribeiro39b17722009-06-27 00:18:02 -0300634
Robin Gong3784b6d2013-07-25 11:33:18 +0800635config REGULATOR_PFUZE100
Stefan Wahren297101a2018-06-15 13:44:53 +0200636 tristate "Freescale PFUZE100/200/3000/3001 regulator driver"
Robin Gong3784b6d2013-07-25 11:33:18 +0800637 depends on I2C
Axel Lin94421b02013-07-29 12:08:01 +0800638 select REGMAP_I2C
Robin Gong3784b6d2013-07-25 11:33:18 +0800639 help
Axel Lin2cee2122014-03-05 18:02:43 +0800640 Say y here to support the regulators found on the Freescale
Stefan Wahren297101a2018-06-15 13:44:53 +0200641 PFUZE100/200/3000/3001 PMIC.
Robin Gong3784b6d2013-07-25 11:33:18 +0800642
James Banf307a7e2015-11-19 09:59:15 +0900643config REGULATOR_PV88060
644 tristate "Powerventure Semiconductor PV88060 regulator"
645 depends on I2C
646 select REGMAP_I2C
647 help
648 Say y here to support the voltage regulators and convertors
649 PV88060
650
James Ban99cf3af2016-04-15 13:34:22 +0900651config REGULATOR_PV88080
652 tristate "Powerventure Semiconductor PV88080 regulator"
653 depends on I2C
654 select REGMAP_I2C
655 help
656 Say y here to support the buck convertors on PV88080
657
James Banc90456e2015-12-08 10:57:29 +0900658config REGULATOR_PV88090
659 tristate "Powerventure Semiconductor PV88090 regulator"
660 depends on I2C
661 select REGMAP_I2C
662 help
663 Say y here to support the voltage regulators and convertors
664 on PV88090
665
Chris Zhongaa66cc62014-09-28 10:28:53 +0800666config REGULATOR_PWM
667 tristate "PWM voltage regulator"
668 depends on PWM
669 help
670 This driver supports PWM controlled voltage regulators. PWM
671 duty cycle can increase or decrease the voltage.
672
Bjorn Andersson27203862014-09-22 16:25:29 -0700673config REGULATOR_QCOM_RPM
674 tristate "Qualcomm RPM regulator driver"
675 depends on MFD_QCOM_RPM
676 help
677 If you say yes to this option, support will be included for the
678 regulators exposed by the Resource Power Manager found in Qualcomm
679 8660, 8960 and 8064 based devices.
680
681 Say M here if you want to include support for the regulators on the
682 Qualcomm RPM as a module. The module will be named
683 "qcom_rpm-regulator".
684
David Collins46fc0332018-07-13 18:50:59 -0700685config REGULATOR_QCOM_RPMH
686 tristate "Qualcomm Technologies, Inc. RPMh regulator driver"
687 depends on QCOM_RPMH || COMPILE_TEST
688 help
689 This driver supports control of PMIC regulators via the RPMh hardware
690 block found on Qualcomm Technologies Inc. SoCs. RPMh regulator
691 control allows for voting on regulator state between multiple
692 processors within the SoC.
693
Bjorn Anderssonda65e362015-08-17 11:43:59 -0700694config REGULATOR_QCOM_SMD_RPM
695 tristate "Qualcomm SMD based RPM regulator driver"
696 depends on QCOM_SMD_RPM
697 help
698 If you say yes to this option, support will be included for the
699 regulators exposed by the Resource Power Manager found in Qualcomm
700 8974 based devices.
701
702 Say M here if you want to include support for the regulators on the
703 Qualcomm RPM as a module. The module will be named
704 "qcom_smd-regulator".
705
Stephen Boyde92a4042015-06-12 15:47:10 -0700706config REGULATOR_QCOM_SPMI
707 tristate "Qualcomm SPMI regulator driver"
708 depends on SPMI || COMPILE_TEST
709 help
710 If you say yes to this option, support will be included for the
711 regulators found in Qualcomm SPMI PMICs.
712
713 Say M here if you want to include support for the regulators on the
714 Qualcomm SPMI PMICs as a module. The module will be named
715 "qcom_spmi-regulator".
716
Laxman Dewangan6ffc3272012-04-04 12:44:00 +0530717config REGULATOR_RC5T583
718 tristate "RICOH RC5T583 Power regulators"
719 depends on MFD_RC5T583
720 help
721 Select this option to enable the power regulator of RICOH
722 PMIC RC5T583.
723 This driver supports the control of different power rails of device
724 through regulator interface. The device supports multiple DCDC/LDO
725 outputs which can be controlled by i2c communication.
726
Chris Zhong2cd64ae2014-08-20 11:36:42 +0800727config REGULATOR_RK808
Elaine Zhangc4e0d342017-08-21 03:28:36 +0200728 tristate "Rockchip RK805/RK808/RK818 Power regulators"
Chris Zhong2cd64ae2014-08-20 11:36:42 +0800729 depends on MFD_RK808
730 help
731 Select this option to enable the power regulator of ROCKCHIP
Elaine Zhangc4e0d342017-08-21 03:28:36 +0200732 PMIC RK805,RK808 and RK818.
Chris Zhong2cd64ae2014-08-20 11:36:42 +0800733 This driver supports the control of different power rails of device
734 through regulator interface. The device supports multiple DCDC/LDO
735 outputs which can be controlled by i2c communication.
736
Beniamino Galvani811b7002014-08-30 14:50:24 +0200737config REGULATOR_RN5T618
Stefan Agnered6d3622016-06-28 22:53:20 -0700738 tristate "Ricoh RN5T567/618 voltage regulators"
Beniamino Galvani811b7002014-08-30 14:50:24 +0200739 depends on MFD_RN5T618
740 help
Pierre-Hugues Husson83b2a3c2017-08-27 15:58:31 +0200741 Say y here to support the regulators found on Ricoh RN5T567,
742 RN5T618 or RC5T619 PMIC.
Beniamino Galvani811b7002014-08-30 14:50:24 +0200743
Beomho Seob1917572014-11-12 21:07:59 +0900744config REGULATOR_RT5033
745 tristate "Richtek RT5033 Regulators"
746 depends on MFD_RT5033
747 help
748 This adds support for voltage and current regulators in Richtek
749 RT5033 PMIC. The device supports multiple regulators like
750 current source, LDO and Buck.
751
Sachin Kamatf1879272014-03-14 17:21:58 +0530752config REGULATOR_S2MPA01
753 tristate "Samsung S2MPA01 voltage regulator"
Sangbeom Kimcb746852012-07-11 21:08:17 +0900754 depends on MFD_SEC_CORE
755 help
Sachin Kamatf1879272014-03-14 17:21:58 +0530756 This driver controls Samsung S2MPA01 voltage output regulator
757 via I2C bus. S2MPA01 has 10 Bucks and 26 LDO outputs.
758
Sangbeom Kimcb746852012-07-11 21:08:17 +0900759config REGULATOR_S2MPS11
Thomas Abraham51af2062015-11-20 16:07:52 +0530760 tristate "Samsung S2MPS11/13/14/15/S2MPU02 voltage regulator"
Sangbeom Kimcb746852012-07-11 21:08:17 +0900761 depends on MFD_SEC_CORE
762 help
Thomas Abraham51af2062015-11-20 16:07:52 +0530763 This driver supports a Samsung S2MPS11/13/14/15/S2MPU02 voltage
Chanwoo Choi76b98402014-11-18 17:59:40 +0900764 output regulator via I2C bus. The chip is comprised of high efficient
765 Buck converters including Dual-Phase Buck converter, Buck-Boost
766 converter, various LDOs.
Sangbeom Kimcb746852012-07-11 21:08:17 +0900767
Axel Lindfb9b8a2012-02-22 09:29:16 +0800768config REGULATOR_S5M8767
769 tristate "Samsung S5M8767A voltage regulator"
Sangbeom Kim66c9fbb2012-07-11 21:06:40 +0900770 depends on MFD_SEC_CORE
Sascha Hauer295c08b2009-08-19 01:43:50 +0200771 help
Axel Lindfb9b8a2012-02-22 09:29:16 +0800772 This driver supports a Samsung S5M8767A voltage output regulator
773 via I2C bus. S5M8767A have 9 Bucks and 28 LDOs output and
774 supports DVS mode with 8bits of output voltage control.
Yong Shen5e428d52010-12-14 14:00:55 +0800775
Erick Chen433c9bb2017-12-05 14:35:46 +0800776config REGULATOR_SC2731
777 tristate "Spreadtrum SC2731 power regulator driver"
778 depends on MFD_SC27XX_PMIC || COMPILE_TEST
779 help
780 This driver provides support for the voltage regulators on the
781 SC2731 PMIC.
782
Gyungoh Yoo9839d622014-08-08 18:10:22 +0900783config REGULATOR_SKY81452
784 tristate "Skyworks Solutions SKY81452 voltage regulator"
Gyungoh Yoo70b5b272014-11-17 17:33:10 +0900785 depends on MFD_SKY81452
Lee Jones4a5d3012014-03-21 10:21:36 +0000786 help
Gyungoh Yoo9839d622014-08-08 18:10:22 +0900787 This driver supports Skyworks SKY81452 voltage output regulator
788 via I2C bus. SKY81452 has one voltage linear regulator can be
789 programmed from 4.5V to 20V.
790
791 This driver can also be built as a module. If so, the module
792 will be called sky81452-regulator.
Lee Jones4a5d3012014-03-21 10:21:36 +0000793
Fabrice Gasnier0cdbf482017-08-30 17:55:28 +0200794config REGULATOR_STM32_VREFBUF
795 tristate "STMicroelectronics STM32 VREFBUF"
796 depends on ARCH_STM32 || COMPILE_TEST
797 help
798 This driver supports STMicroelectronics STM32 VREFBUF (voltage
799 reference buffer) which can be used as voltage reference for
800 internal ADCs, DACs and also for external components through
801 dedicated Vref+ pin.
802
803 This driver can also be built as a module. If so, the module
804 will be called stm32-vrefbuf.
805
pascal pailletca55b712018-10-08 16:29:40 +0000806config REGULATOR_STPMIC1
807 tristate "STMicroelectronics STPMIC1 PMIC Regulators"
808 depends on MFD_STPMIC1
809 help
810 This driver supports STMicroelectronics STPMIC1 PMIC voltage
811 regulators and switches. The STPMIC1 regulators supply power to
812 an application processor as well as to external system
813 peripherals such as DDR, Flash memories and system devices.
814
815 To compile this driver as a module, choose M here: the
816 module will be called stpmic1_regulator.
817
Mark Brown82b736d2013-07-05 20:45:22 +0100818config REGULATOR_TI_ABB
Mark Brown631a1fc2013-07-29 16:49:46 +0100819 tristate "TI Adaptive Body Bias on-chip LDO"
Mark Brown82b736d2013-07-05 20:45:22 +0100820 depends on ARCH_OMAP
Linus Walleijd619bc12009-09-09 11:31:00 +0200821 help
Mark Brown82b736d2013-07-05 20:45:22 +0100822 Select this option to support Texas Instruments' on-chip Adaptive Body
823 Bias (ABB) LDO regulators. It is recommended that this option be
824 enabled on required TI SoC. Certain Operating Performance Points
825 on TI SoCs may be unstable without enabling this as it provides
826 device specific optimized bias to allow/optimize functionality.
Graeme Gregory4c5dabc2012-05-15 15:48:59 +0900827
Linus Walleij3615a342013-09-13 21:01:15 +0200828config REGULATOR_STW481X_VMMC
829 bool "ST Microelectronics STW481X VMMC regulator"
Luis de Bethencourt4049dc12015-10-12 17:27:08 +0100830 depends on MFD_STW481X || COMPILE_TEST
Linus Walleij3615a342013-09-13 21:01:15 +0200831 default y if MFD_STW481X
832 help
833 This driver supports the internal VMMC regulator in the STw481x
834 PMIC chips.
835
Ondrej Jirman88783022018-05-07 20:29:41 +0800836config REGULATOR_SY8106A
837 tristate "Silergy SY8106A regulator"
838 depends on I2C && (OF || COMPILE_TEST)
839 select REGMAP_I2C
840 help
841 This driver supports SY8106A single output regulator.
842
Laxman Dewangan0c570672012-10-06 20:47:46 +0530843config REGULATOR_TPS51632
844 tristate "TI TPS51632 Power Regulator"
845 depends on I2C
846 select REGMAP_I2C
847 help
848 This driver supports TPS51632 voltage regulator chip.
Axel Lin7bde7672012-11-01 14:02:36 +0800849 The TPS51632 is 3-2-1 Phase D-Cap+ Step Down Driverless Controller
Laxman Dewangan0c570672012-10-06 20:47:46 +0530850 with Serial VID control and DVFS.
851 The voltage output can be configure through I2C interface or PWM
852 interface.
853
Linus Walleij2edd3b62011-03-09 12:02:55 +0000854config REGULATOR_TPS6105X
855 tristate "TI TPS6105X Power regulators"
856 depends on TPS6105X
857 default y if TPS6105X
858 help
859 This driver supports TPS61050/TPS61052 voltage regulator chips.
860 It is a single boost converter primarily for white LEDs and
861 audio amplifiers.
862
Axel Lindfb9b8a2012-02-22 09:29:16 +0800863config REGULATOR_TPS62360
Axel Lind1cf4f62012-04-02 18:19:28 +0800864 tristate "TI TPS6236x Power Regulator"
Axel Lindfb9b8a2012-02-22 09:29:16 +0800865 depends on I2C
866 select REGMAP_I2C
867 help
Axel Lind1cf4f62012-04-02 18:19:28 +0800868 This driver supports TPS6236x voltage regulator chip. This
Axel Lindfb9b8a2012-02-22 09:29:16 +0800869 regulator is meant for processor core supply. This chip is
870 high-frequency synchronous step down dc-dc converter optimized
871 for battery-powered portable applications.
872
Anuj Aggarwal2de79852009-08-21 00:39:44 +0530873config REGULATOR_TPS65023
874 tristate "TI TPS65023 Power regulators"
875 depends on I2C
Mark Brown90923352011-06-18 01:18:51 +0100876 select REGMAP_I2C
Anuj Aggarwal2de79852009-08-21 00:39:44 +0530877 help
878 This driver supports TPS65023 voltage regulator chips. TPS65023 provides
879 three step-down converters and two general-purpose LDO voltage regulators.
880 It supports TI's software based Class-2 SmartReflex implementation.
881
882config REGULATOR_TPS6507X
883 tristate "TI TPS6507X Power regulators"
884 depends on I2C
885 help
886 This driver supports TPS6507X voltage regulator chips. TPS6507X provides
887 three step-down converters and two general-purpose LDO voltage regulators.
888 It supports TI's software based Class-2 SmartReflex implementation.
889
Andrew F. Davisd2a2e722015-11-04 11:12:14 -0600890config REGULATOR_TPS65086
891 tristate "TI TPS65086 Power regulators"
892 depends on MFD_TPS65086
893 help
894 This driver provides support for the voltage regulators on
895 TI TPS65086 PMICs.
896
Venu Byravarasu452534e2012-03-22 18:34:09 +0530897config REGULATOR_TPS65090
898 tristate "TI TPS65090 Power regulator"
899 depends on MFD_TPS65090
900 help
901 This driver provides support for the voltage regulators on the
902 TI TPS65090 PMIC.
903
Venkat Reddy Talla77c129b2017-04-12 15:44:36 +0530904config REGULATOR_TPS65132
905 tristate "TI TPS65132 Dual Output Power regulators"
906 depends on I2C && GPIOLIB
907 select REGMAP_I2C
908 help
909 This driver supports TPS65132 single inductor - dual output
910 power supply specifcally designed for display panels.
911
AnilKumar Cha493077f2012-01-11 16:11:49 +0530912config REGULATOR_TPS65217
913 tristate "TI TPS65217 Power regulators"
914 depends on MFD_TPS65217
915 help
916 This driver supports TPS65217 voltage regulator chips. TPS65217
917 provides three step-down converters and four general-purpose LDO
918 voltage regulators. It supports software based voltage control
919 for different voltage domains
920
Keerthy90e7d522014-02-06 11:20:13 +0530921config REGULATOR_TPS65218
922 tristate "TI TPS65218 Power regulators"
Axel Lin948838a2014-02-19 16:35:03 +0800923 depends on MFD_TPS65218 && OF
Keerthy90e7d522014-02-06 11:20:13 +0530924 help
925 This driver supports TPS65218 voltage regulator chips. TPS65218
926 provides six step-down converters and one general-purpose LDO
927 voltage regulators. It supports software based voltage control
928 for different voltage domains
929
Cyril Chemparathy1394fd22010-12-07 12:04:11 -0500930config REGULATOR_TPS6524X
931 tristate "TI TPS6524X Power regulators"
932 depends on SPI
933 help
934 This driver supports TPS6524X voltage regulator chips. TPS6524X
935 provides three step-down converters and two general-purpose LDO
936 voltage regulators. This device is interfaced using a customized
937 serial interface currently supported on the sequencer serial
938 port controller.
939
Axel Lindfb9b8a2012-02-22 09:29:16 +0800940config REGULATOR_TPS6586X
941 tristate "TI TPS6586X Power regulators"
942 depends on MFD_TPS6586X
943 help
944 This driver supports TPS6586X voltage regulator chips.
945
Graeme Gregory518fb722011-05-02 16:20:08 -0500946config REGULATOR_TPS65910
Axel Linae0e6542012-02-21 10:14:55 +0800947 tristate "TI TPS65910/TPS65911 Power Regulators"
Graeme Gregory518fb722011-05-02 16:20:08 -0500948 depends on MFD_TPS65910
949 help
Axel Linae0e6542012-02-21 10:14:55 +0800950 This driver supports TPS65910/TPS65911 voltage regulator chips.
Graeme Gregory518fb722011-05-02 16:20:08 -0500951
Axel Lindfb9b8a2012-02-22 09:29:16 +0800952config REGULATOR_TPS65912
953 tristate "TI TPS65912 Power regulator"
Andrew F. Davis33f9d8c2016-01-25 09:43:46 -0600954 depends on MFD_TPS65912
Laxman Dewangan62199292012-01-09 20:27:41 +0530955 help
Axel Lindfb9b8a2012-02-22 09:29:16 +0800956 This driver supports TPS65912 voltage regulator chip.
Laxman Dewangan62199292012-01-09 20:27:41 +0530957
Laxman Dewangan1a0bb672012-11-11 20:42:01 +0530958config REGULATOR_TPS80031
Sebastiaan Schalbroeck3b063492016-08-22 18:23:14 +0200959 tristate "TI TPS80031/TPS80032 power regulator driver"
Laxman Dewangan1a0bb672012-11-11 20:42:01 +0530960 depends on MFD_TPS80031
961 help
962 TPS80031/ TPS80032 Fully Integrated Power Management with Power
963 Path and Battery Charger. It has 5 configurable step-down
964 converters, 11 general purpose LDOs, VBUS generator and digital
965 output to control regulators.
966
Mark Brownda091552008-10-10 15:58:15 +0100967config REGULATOR_TWL4030
Mark Brown631a1fc2013-07-29 16:49:46 +0100968 tristate "TI TWL4030/TWL5030/TWL6030/TPS659x0 PMIC"
Mark Brownda091552008-10-10 15:58:15 +0100969 depends on TWL4030_CORE
Mark Brownda091552008-10-10 15:58:15 +0100970 help
971 This driver supports the voltage regulators provided by
972 this family of companion chips.
973
Kunihiko Hayashi9df4f902018-07-11 13:30:52 +0900974config REGULATOR_UNIPHIER
975 tristate "UniPhier regulator driver"
976 depends on ARCH_UNIPHIER || COMPILE_TEST
977 depends on OF && MFD_SYSCON
978 default ARCH_UNIPHIER
979 help
980 Support for regulators implemented on Socionext UniPhier SoCs.
981
Matthias Kaehlcke9dee7a72017-04-07 12:51:58 -0700982config REGULATOR_VCTRL
983 tristate "Voltage controlled regulators"
984 depends on OF
985 help
986 This driver provides support for voltage regulators whose output
987 voltage is controlled by the voltage of another regulator.
988
Pawel Moll31e54082012-09-24 18:56:54 +0100989config REGULATOR_VEXPRESS
990 tristate "Versatile Express regulators"
991 depends on VEXPRESS_CONFIG
992 help
993 This driver provides support for voltage regulators available
994 on the ARM Ltd's Versatile Express platform.
995
Liam Girdwoodba7e4762008-04-30 17:13:42 +0100996config REGULATOR_WM831X
Axel Lindfb9b8a2012-02-22 09:29:16 +0800997 tristate "Wolfson Microelectronics WM831x PMIC regulators"
Liam Girdwoodba7e4762008-04-30 17:13:42 +0100998 depends on MFD_WM831X
999 help
1000 Support the voltage and current regulators of the WM831x series
1001 of PMIC devices.
1002
Mark Brown42fad572008-09-11 11:12:01 +01001003config REGULATOR_WM8350
1004 tristate "Wolfson Microelectronics WM8350 AudioPlus PMIC"
1005 depends on MFD_WM8350
Mark Brown42fad572008-09-11 11:12:01 +01001006 help
1007 This driver provides support for the voltage and current regulators
Michael Jonesc6d678b2012-07-26 16:07:23 +02001008 of the WM8350 AudioPlus PMIC.
Mark Brown42fad572008-09-11 11:12:01 +01001009
1010config REGULATOR_WM8400
1011 tristate "Wolfson Microelectronics WM8400 AudioPlus PMIC"
1012 depends on MFD_WM8400
1013 help
1014 This driver provides support for the voltage regulators of the
1015 WM8400 AudioPlus PMIC.
Mark Brownda091552008-10-10 15:58:15 +01001016
Eric Miao129eef92008-08-27 04:16:08 +08001017config REGULATOR_WM8994
1018 tristate "Wolfson Microelectronics WM8994 CODEC"
1019 depends on MFD_WM8994
Eric Miao129eef92008-08-27 04:16:08 +08001020 help
1021 This driver provides support for the voltage regulators on the
1022 WM8994 CODEC.
1023
Takashi Iwaibbda14d2008-10-30 15:57:05 +01001024endif
Sascha Hauer295c08b2009-08-19 01:43:50 +02001025