blob: b8e39109cbc688a2182e4bef2b043acef1d6db19 [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 Vaittinen99ea37b2019-01-22 11:46:08 +0200183config REGULATOR_BD70528
184 tristate "ROHM BD70528 Power Regulator"
185 depends on MFD_ROHM_BD70528
186 help
187 This driver supports voltage regulators on ROHM BD70528 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
192 will be called bd70528-regulator.
193
Matti Vaittinen410e8b42018-07-30 14:50:08 +0300194config REGULATOR_BD718XX
Matti Vaittinenba087992018-05-30 11:43:43 +0300195 tristate "ROHM BD71837 Power Regulator"
Matti Vaittinen410e8b42018-07-30 14:50:08 +0300196 depends on MFD_ROHM_BD718XX
Matti Vaittinenba087992018-05-30 11:43:43 +0300197 help
198 This driver supports voltage regulators on ROHM BD71837 PMIC.
199 This will enable support for the software controllable buck
200 and LDO regulators.
201
202 This driver can also be built as a module. If so, the module
Matti Vaittinen2ece6462018-09-14 11:34:02 +0300203 will be called bd718x7-regulator.
Matti Vaittinenba087992018-05-30 11:43:43 +0300204
Marek Vasute85c5a12017-04-24 17:21:30 +0200205config REGULATOR_BD9571MWV
206 tristate "ROHM BD9571MWV Regulators"
207 depends on MFD_BD9571MWV
208 help
209 This driver provides support for the voltage regulators on the
210 ROHM BD9571MWV PMIC. This will enable support for the software
211 controllable regulator and voltage sampling units.
212
213 This driver can also be built as a module. If so, the module
214 will be called bd9571mwv-regulator.
215
Tony Lindgren0ad4c072017-02-02 15:43:57 -0800216config REGULATOR_CPCAP
217 tristate "Motorola CPCAP regulator"
218 depends on MFD_CPCAP
219 help
220 Say y here for CPCAP regulator found on some Motorola phones
221 and tablets such as Droid 4.
222
Axel Lindfb9b8a2012-02-22 09:29:16 +0800223config REGULATOR_DA903X
224 tristate "Dialog Semiconductor DA9030/DA9034 regulators"
225 depends on PMIC_DA903X
Arnd Bergmann0077aaa2019-03-07 11:26:02 +0100226 depends on !CC_IS_CLANG # https://bugs.llvm.org/show_bug.cgi?id=38789
Axel Lindfb9b8a2012-02-22 09:29:16 +0800227 help
228 Say y here to support the BUCKs and LDOs regulators found on
229 Dialog Semiconductor DA9030/DA9034 PMIC.
230
231config REGULATOR_DA9052
232 tristate "Dialog Semiconductor DA9052/DA9053 regulators"
233 depends on PMIC_DA9052
234 help
235 This driver supports the voltage regulators of DA9052-BC and
236 DA9053-AA/Bx PMIC.
237
Ashish Jangamf6130be2012-11-01 13:57:56 +0530238config REGULATOR_DA9055
239 tristate "Dialog Semiconductor DA9055 regulators"
240 depends on MFD_DA9055
241 help
242 Say y here to support the BUCKs and LDOs regulators found on
243 Dialog Semiconductor DA9055 PMIC.
244
245 This driver can also be built as a module. If so, the module
246 will be called da9055-regulator.
247
S Twiss4068e512015-05-19 14:10:30 +0100248config REGULATOR_DA9062
Steve Twiss4b7f4952017-06-07 09:13:48 +0100249 tristate "Dialog Semiconductor DA9061/62 regulators"
S Twiss4068e512015-05-19 14:10:30 +0100250 depends on MFD_DA9062
251 help
252 Say y here to support the BUCKs and LDOs regulators found on
Steve Twiss4b7f4952017-06-07 09:13:48 +0100253 DA9061 and DA9062 PMICs.
S Twiss4068e512015-05-19 14:10:30 +0100254
255 This driver can also be built as a module. If so, the module
256 will be called da9062-regulator.
257
Krystian Garbaciak69ca3e52013-07-29 19:00:45 +0200258config REGULATOR_DA9063
259 tristate "Dialog Semiconductor DA9063 regulators"
260 depends on MFD_DA9063
261 help
262 Say y here to support the BUCKs and LDOs regulators found on
263 DA9063 PMICs.
264
265 This driver can also be built as a module. If so, the module
266 will be called da9063-regulator.
267
Steve Twiss16f10912013-08-06 15:30:48 +0100268config REGULATOR_DA9210
269 tristate "Dialog Semiconductor DA9210 regulator"
270 depends on I2C
271 select REGMAP_I2C
272 help
273 Say y here to support for the Dialog Semiconductor DA9210.
274 The DA9210 is a multi-phase synchronous step down
275 converter 12A DC-DC Buck controlled through an I2C
276 interface.
277
James Ban1028a372014-07-14 13:48:45 +0900278config REGULATOR_DA9211
James Ban707ce9e2017-10-30 11:32:38 +0900279 tristate "Dialog Semiconductor DA9211/DA9212/DA9213/DA9223/DA9214/DA9224/DA9215/DA9225 regulator"
James Ban1028a372014-07-14 13:48:45 +0900280 depends on I2C
281 select REGMAP_I2C
282 help
James Ban005547e2014-08-08 14:27:04 +0900283 Say y here to support for the Dialog Semiconductor DA9211/DA9212
James Ban7bd39352015-06-30 13:39:39 +0900284 /DA9213/DA9214/DA9215.
285 The DA9211/DA9212/DA9213/DA9214/DA9215 is a multi-phase synchronous
James Ban005547e2014-08-08 14:27:04 +0900286 step down converter 12A or 16A DC-DC Buck controlled through an I2C
James Ban1028a372014-07-14 13:48:45 +0900287 interface.
288
Mark Brown82b736d2013-07-05 20:45:22 +0100289config REGULATOR_DBX500_PRCMU
290 bool
291
292config REGULATOR_DB8500_PRCMU
293 bool "ST-Ericsson DB8500 Voltage Domain Regulators"
294 depends on MFD_DB8500_PRCMU
295 select REGULATOR_DBX500_PRCMU
296 help
297 This driver supports the voltage domain regulators controlled by the
298 DB8500 PRCMU
299
Yunfan Zhang49d8c592012-09-08 03:52:18 -0700300config REGULATOR_FAN53555
301 tristate "Fairchild FAN53555 Regulator"
302 depends on I2C
303 select REGMAP_I2C
304 help
305 This driver supports Fairchild FAN53555 Digitally Programmable
306 TinyBuck Regulator. The FAN53555 is a step-down switching voltage
307 regulator that delivers a digitally programmable output from an
308 input voltage supply of 2.5V to 5.5V. The output voltage is
309 programmed through an I2C interface.
310
Mark Brown82b736d2013-07-05 20:45:22 +0100311config REGULATOR_GPIO
312 tristate "GPIO regulator support"
Geert Uytterhoeven9eac5fd2015-05-05 18:32:32 +0200313 depends on GPIOLIB || COMPILE_TEST
Ying-Chun Liu (PaulLiu)e3e5aff2012-03-14 10:29:12 +0800314 help
Mark Brown82b736d2013-07-05 20:45:22 +0100315 This driver provides support for regulators that can be
316 controlled via gpios.
317 It is capable of supporting current and voltage regulators
318 and the platform has to provide a mapping of GPIO-states
319 to target volts/amps.
Axel Lindfb9b8a2012-02-22 09:29:16 +0800320
Guodong Xu87ca1862014-08-13 19:33:42 +0800321config REGULATOR_HI6421
322 tristate "HiSilicon Hi6421 PMIC voltage regulator support"
323 depends on MFD_HI6421_PMIC && OF
324 help
325 This driver provides support for the voltage regulators on the
326 HiSilicon Hi6421 PMU / Codec IC.
327 Hi6421 is a multi-function device which, on regulator part, provides
328 21 general purpose LDOs, 3 dedicated LDOs, and 5 BUCKs. All
329 of them come with support to either ECO (idle) or sleep mode.
330
Wang Xiaoyin5c7024a2017-06-07 15:06:03 +0800331config REGULATOR_HI6421V530
332 tristate "HiSilicon Hi6421v530 PMIC voltage regulator support"
333 depends on MFD_HI6421_PMIC && OF
334 help
335 This driver provides support for the voltage regulators on
336 HiSilicon Hi6421v530 PMU / Codec IC.
337 Hi6421v530 is a multi-function device which, on regulator part,
338 provides 5 general purpose LDOs, and all of them come with support
339 to either ECO (idle) or sleep mode.
340
Chen Feng46181192016-02-14 14:29:22 +0800341config REGULATOR_HI655X
342 tristate "Hisilicon HI655X PMIC regulators support"
343 depends on ARCH_HISI || COMPILE_TEST
344 depends on MFD_HI655X_PMIC && OF
345 help
346 This driver provides support for the voltage regulators of the
347 Hisilicon Hi655x PMIC device.
348
Mark Browndec38b52014-09-06 01:11:12 +0100349config REGULATOR_ISL9305
350 tristate "Intersil ISL9305 regulator"
351 depends on I2C
Axel Linba441ec2014-09-10 08:44:36 +0800352 select REGMAP_I2C
Mark Browndec38b52014-09-06 01:11:12 +0100353 help
354 This driver supports ISL9305 voltage regulator chip.
355
Axel Lindfb9b8a2012-02-22 09:29:16 +0800356config REGULATOR_ISL6271A
357 tristate "Intersil ISL6271A Power regulator"
358 depends on I2C
359 help
360 This driver supports ISL6271A voltage regulator chip.
361
Milo Kim3a8d1a72015-11-26 15:57:05 +0900362config REGULATOR_LM363X
363 tristate "TI LM363X voltage regulators"
364 depends on MFD_TI_LMU
365 help
366 This driver supports LM3631 and LM3632 voltage regulators for
367 the LCD bias.
368 One boost output voltage is configurable and always on.
369 Other LDOs are used for the display module.
370
Charles Keepaxbef93912018-10-08 14:25:41 +0100371config REGULATOR_LOCHNAGAR
372 tristate "Cirrus Logic Lochnagar regulator driver"
373 depends on MFD_LOCHNAGAR
374 help
375 This enables regulator support on the Cirrus Logic Lochnagar audio
376 development board.
377
Mark Brown82b736d2013-07-05 20:45:22 +0100378config REGULATOR_LP3971
379 tristate "National Semiconductors LP3971 PMIC regulator driver"
380 depends on I2C
Axel Lindfb9b8a2012-02-22 09:29:16 +0800381 help
Mark Brown82b736d2013-07-05 20:45:22 +0100382 Say Y here to support the voltage regulators and convertors
383 on National Semiconductors LP3971 PMIC
384
385config REGULATOR_LP3972
386 tristate "National Semiconductors LP3972 PMIC regulator driver"
387 depends on I2C
388 help
389 Say Y here to support the voltage regulators and convertors
390 on National Semiconductors LP3972 PMIC
391
392config REGULATOR_LP872X
Mark Brown631a1fc2013-07-29 16:49:46 +0100393 tristate "TI/National Semiconductor LP8720/LP8725 voltage regulators"
Axel Lin613965f2013-08-30 22:13:44 +0800394 depends on I2C
Mark Brown82b736d2013-07-05 20:45:22 +0100395 select REGMAP_I2C
396 help
397 This driver supports LP8720/LP8725 PMIC
398
Keerthy994aae32016-05-10 09:34:39 +0530399config REGULATOR_LP873X
400 tristate "TI LP873X Power regulators"
Keerthyf618ed22016-08-31 14:28:12 +0530401 depends on MFD_TI_LP873X && OF
Keerthy994aae32016-05-10 09:34:39 +0530402 help
403 This driver supports LP873X voltage regulator chips. LP873X
404 provides two step-down converters and two general-purpose LDO
405 voltage regulators. It supports software based voltage control
406 for different voltage domains
407
Mark Brown82b736d2013-07-05 20:45:22 +0100408config REGULATOR_LP8755
409 tristate "TI LP8755 High Performance PMU driver"
410 depends on I2C
411 select REGMAP_I2C
412 help
413 This driver supports LP8755 High Performance PMU driver. This
414 chip contains six step-down DC/DC converters which can support
415 9 mode multiphase configuration.
416
Keerthyf0168a92017-05-23 17:46:55 +0530417config REGULATOR_LP87565
418 tristate "TI LP87565 Power regulators"
419 depends on MFD_TI_LP87565 && OF
420 help
421 This driver supports LP87565 voltage regulator chips. LP87565
422 provides four step-down converters. It supports software based
423 voltage control for different voltage domains
424
Mark Brown82b736d2013-07-05 20:45:22 +0100425config REGULATOR_LP8788
Mark Brown631a1fc2013-07-29 16:49:46 +0100426 tristate "TI LP8788 Power Regulators"
Mark Brown82b736d2013-07-05 20:45:22 +0100427 depends on MFD_LP8788
428 help
429 This driver supports LP8788 voltage regulator chip.
Philipp Zabel0eb5d5a2008-07-11 17:28:06 +0200430
Philipp Zabel3eb2c7e2014-05-26 10:38:16 +0200431config REGULATOR_LTC3589
Axel Linac1d6862014-05-27 13:51:49 +0800432 tristate "LTC3589 8-output voltage regulator"
433 depends on I2C
434 select REGMAP_I2C
Philipp Zabel3eb2c7e2014-05-26 10:38:16 +0200435 help
436 This enables support for the LTC3589, LTC3589-1, and LTC3589-2
437 8-output regulators controlled via I2C.
438
Tim Harvey37b918a2016-08-15 12:40:23 -0700439config REGULATOR_LTC3676
440 tristate "LTC3676 8-output voltage regulator"
441 depends on I2C
442 select REGMAP_I2C
443 help
444 This enables support for the LTC3676
445 8-output regulators controlled via I2C.
446
Krzysztof Kozlowskib0902bb2013-12-06 12:32:13 +0100447config REGULATOR_MAX14577
Krzysztof Kozlowski8a82b402014-04-14 11:17:20 +0200448 tristate "Maxim 14577/77836 regulator"
Krzysztof Kozlowskib0902bb2013-12-06 12:32:13 +0100449 depends on MFD_MAX14577
450 help
Krzysztof Kozlowski8a82b402014-04-14 11:17:20 +0200451 This driver controls a Maxim MAX14577/77836 regulator via I2C bus.
452 The MAX14577 regulators include safeout LDO and charger current
453 regulator. The MAX77836 has two additional LDOs.
Krzysztof Kozlowskib0902bb2013-12-06 12:32:13 +0100454
Robert Jarzmik55f4fa42009-04-23 20:10:43 +0200455config REGULATOR_MAX1586
456 tristate "Maxim 1586/1587 voltage regulator"
457 depends on I2C
Robert Jarzmik55f4fa42009-04-23 20:10:43 +0200458 help
459 This driver controls a Maxim 1586 or 1587 voltage output
460 regulator via I2C bus. The provided regulator is suitable
461 for PXA27x chips to control VCC_CORE and VCC_USIM voltages.
462
Laxman Dewangan5b1c2022016-02-11 17:26:34 +0530463config REGULATOR_MAX77620
464 tristate "Maxim 77620/MAX20024 voltage regulator"
465 depends on MFD_MAX77620
466 help
467 This driver controls Maxim MAX77620 voltage output regulator
468 via I2C bus. The provided regulator is suitable for Tegra
469 chip to control Step-Down DC-DC and LDOs. Say Y here to
470 enable the regulator driver.
471
Bartosz Golaszewskibcc61f12019-01-29 14:35:40 +0100472config REGULATOR_MAX77650
473 tristate "Maxim MAX77650/77651 regulator support"
474 depends on MFD_MAX77650
475 help
476 Regulator driver for MAX77650/77651 PMIC from Maxim
477 Semiconductor. This device has a SIMO with three independent
478 power rails and an LDO.
479
Haojian Zhuanga71b7972010-01-25 10:24:09 -0500480config REGULATOR_MAX8649
481 tristate "Maxim 8649 voltage regulator"
482 depends on I2C
Jonghwan Choic5b68d472011-10-24 22:26:26 +0900483 select REGMAP_I2C
Haojian Zhuanga71b7972010-01-25 10:24:09 -0500484 help
485 This driver controls a Maxim 8649 voltage output regulator via
486 I2C bus.
487
Wolfram Sang27f37e42009-09-25 09:39:26 +0200488config REGULATOR_MAX8660
489 tristate "Maxim 8660/8661 voltage regulator"
490 depends on I2C
491 help
492 This driver controls a Maxim 8660/8661 voltage output
493 regulator via I2C bus.
494
Gyungoh Yooffee1902012-08-09 14:24:34 -0600495config REGULATOR_MAX8907
496 tristate "Maxim 8907 voltage regulator"
497 depends on MFD_MAX8907
498 help
499 This driver controls a Maxim 8907 voltage output regulator
500 via I2C bus. The provided regulator is suitable for Tegra
501 chip to control Step-Down DC-DC and LDOs.
502
Haojian Zhuang08ff6f22010-01-11 13:10:08 +0100503config REGULATOR_MAX8925
504 tristate "Maxim MAX8925 Power Management IC"
505 depends on MFD_MAX8925
506 help
Krzysztof Kozlowski48f1b4e2019-01-08 13:12:33 +0100507 Say y here to support the voltage regulator of Maxim MAX8925 PMIC.
Haojian Zhuang08ff6f22010-01-11 13:10:08 +0100508
MyungJoo Ham202f4f52010-08-20 14:43:56 +0900509config REGULATOR_MAX8952
510 tristate "Maxim MAX8952 Power Management IC"
511 depends on I2C
512 help
513 This driver controls a Maxim 8952 voltage output regulator
514 via I2C bus. Maxim 8952 has one voltage output and supports 4 DVS
515 modes ranging from 0.77V to 1.40V by 0.01V steps.
516
Laxman Dewangan5928f532012-11-19 06:58:29 +0530517config REGULATOR_MAX8973
518 tristate "Maxim MAX8973 voltage regulator "
519 depends on I2C
Laxman Dewangand2d5437b2016-04-13 15:29:45 +0530520 depends on THERMAL && THERMAL_OF
Laxman Dewangan5928f532012-11-19 06:58:29 +0530521 select REGMAP_I2C
522 help
523 The MAXIM MAX8973 high-efficiency. three phase, DC-DC step-down
Krzysztof Kozlowski48f1b4e2019-01-08 13:12:33 +0100524 switching regulator delivers up to 9A of output current. Each
Laxman Dewangan5928f532012-11-19 06:58:29 +0530525 phase operates at a 2MHz fixed frequency with a 120 deg shift
526 from the adjacent phase, allowing the use of small magnetic component.
527
MyungJoo Hambd6ca2c2011-03-11 11:34:44 +0900528config REGULATOR_MAX8997
529 tristate "Maxim 8997/8966 regulator"
530 depends on MFD_MAX8997
531 help
532 This driver controls a Maxim 8997/8966 regulator
533 via I2C bus. The provided regulator is suitable for S5PC110,
534 S5PV210, and Exynos-4 chips to control VCC_CORE and
535 VCC_USIM voltages.
536
Kyungmin Park156f2522010-06-16 09:04:16 +0200537config REGULATOR_MAX8998
538 tristate "Maxim 8998 voltage regulator"
Marek Szyprowski69f71002010-06-21 10:04:23 +0200539 depends on MFD_MAX8998
Kyungmin Park156f2522010-06-16 09:04:16 +0200540 help
541 This driver controls a Maxim 8998 voltage output regulator
542 via I2C bus. The provided regulator is suitable for S3C6410
543 and S5PC1XX chips to control VCC_CORE and VCC_USIM voltages.
544
Jonghwa Lee133d4012012-06-01 13:17:14 +0900545config REGULATOR_MAX77686
546 tristate "Maxim 77686 regulator"
547 depends on MFD_MAX77686
548 help
549 This driver controls a Maxim 77686 regulator
550 via I2C bus. The provided regulator is suitable for
551 Exynos-4 chips to control VARM and VINT voltages.
552
Jonghwa Lee80b022e2013-06-25 10:08:38 +0900553config REGULATOR_MAX77693
Krzysztof Kozlowski9e9a08e2015-07-15 21:59:54 +0900554 tristate "Maxim 77693/77843 regulator"
555 depends on (MFD_MAX77693 || MFD_MAX77843)
Jonghwa Lee80b022e2013-06-25 10:08:38 +0900556 help
Krzysztof Kozlowski9e9a08e2015-07-15 21:59:54 +0900557 This driver controls a Maxim 77693/77843 regulators via I2C bus.
Jonghwa Lee80b022e2013-06-25 10:08:38 +0900558 The regulators include two LDOs, 'SAFEOUT1', 'SAFEOUT2'
559 and one current regulator 'CHARGER'. This is suitable for
Krzysztof Kozlowski9e9a08e2015-07-15 21:59:54 +0900560 Exynos-4x12 (MAX77693) or Exynos5433 (MAX77843) SoC chips.
Jonghwa Lee80b022e2013-06-25 10:08:38 +0900561
Javier Martinez Canillase6f2f802014-08-18 10:32:41 +0200562config REGULATOR_MAX77802
563 tristate "Maxim 77802 regulator"
564 depends on MFD_MAX77686
565 help
566 This driver controls a Maxim 77802 regulator
567 via I2C bus. The provided regulator is suitable for
568 Exynos5420/Exynos5800 SoCs to control various voltages.
569 It includes support for control of voltage and ramp speed.
570
Mark Brown82b736d2013-07-05 20:45:22 +0100571config REGULATOR_MC13XXX_CORE
572 tristate
573
574config REGULATOR_MC13783
575 tristate "Freescale MC13783 regulator driver"
Alexander Shiyane5a3da22013-12-14 17:03:10 +0400576 depends on MFD_MC13XXX
Mark Brown82b736d2013-07-05 20:45:22 +0100577 select REGULATOR_MC13XXX_CORE
578 help
579 Say y here to support the regulators found on the Freescale MC13783
580 PMIC.
581
582config REGULATOR_MC13892
583 tristate "Freescale MC13892 regulator driver"
584 depends on MFD_MC13XXX
585 select REGULATOR_MC13XXX_CORE
586 help
587 Say y here to support the regulators found on the Freescale MC13892
588 PMIC.
589
Andrei.Stefanescu@microchip.com919261c2018-12-12 18:31:18 +0000590config REGULATOR_MCP16502
591 tristate "Microchip MCP16502 PMIC"
592 depends on I2C && OF
Axel Lin77ea9062018-12-21 10:49:29 +0800593 select REGMAP_I2C
Andrei.Stefanescu@microchip.com919261c2018-12-12 18:31:18 +0000594 help
595 Say y here to support the MCP16502 PMIC. This driver supports
596 basic operations (get/set voltage, get/set operating mode)
597 through the regulator interface. In addition it enables
598 suspend-to-ram/standby transition.
599
Henry Chen87660182015-07-24 13:24:41 +0800600config REGULATOR_MT6311
601 tristate "MediaTek MT6311 PMIC"
602 depends on I2C
Henry Chenaab3c3f2015-11-17 16:36:49 +0800603 select REGMAP_I2C
Henry Chen87660182015-07-24 13:24:41 +0800604 help
605 Say y here to select this option to enable the power regulator of
606 MediaTek MT6311 PMIC.
607 This driver supports the control of different power rails of device
608 through regulator interface.
609
Chen Zhong2fdf8292016-07-18 14:40:51 +0200610config REGULATOR_MT6323
611 tristate "MediaTek MT6323 PMIC"
612 depends on MFD_MT6397
613 help
614 Say y here to select this option to enable the power regulator of
615 MediaTek MT6323 PMIC.
616 This driver supports the control of different power rails of device
617 through regulator interface.
618
Chenglin Xua551e272017-08-15 17:09:15 +0800619config REGULATOR_MT6380
620 tristate "MediaTek MT6380 PMIC"
621 depends on MTK_PMIC_WRAP
622 help
623 Say y here to select this option to enable the power regulator of
624 MediaTek MT6380 PMIC.
625 This driver supports the control of different power rails of device
626 through regulator interface.
627
Flora Fu0425e242014-12-05 12:07:54 +0800628config REGULATOR_MT6397
629 tristate "MediaTek MT6397 PMIC"
630 depends on MFD_MT6397
631 help
632 Say y here to select this option to enable the power regulator of
633 MediaTek MT6397 PMIC.
634 This driver supports the control of different power rails of device
635 through regulator interface.
636
Mark Brown82b736d2013-07-05 20:45:22 +0100637config REGULATOR_PALMAS
638 tristate "TI Palmas PMIC Regulators"
639 depends on MFD_PALMAS
640 help
641 If you wish to control the regulators on the Palmas series of
642 chips say Y here. This will enable support for all the software
643 controllable SMPS/LDO regulators.
644
645 The regulators available on Palmas series chips vary depending
646 on the muxing. This is handled automatically in the driver by
647 reading the mux info from OTP.
648
Balaji T K11469e02014-02-19 20:26:40 +0530649config REGULATOR_PBIAS
650 tristate "PBIAS OMAP regulator driver"
651 depends on (ARCH_OMAP || COMPILE_TEST) && MFD_SYSCON
652 help
653 Say y here to support pbias regulator for mmc1:SD card i/o
654 on OMAP SoCs.
655 This driver provides support for OMAP pbias modelled
656 regulators.
657
Axel Lindfb9b8a2012-02-22 09:29:16 +0800658config REGULATOR_PCAP
659 tristate "Motorola PCAP2 regulator driver"
660 depends on EZX_PCAP
Sangbeom Kim62aa4922012-01-13 10:13:13 +0900661 help
Axel Lindfb9b8a2012-02-22 09:29:16 +0800662 This driver provides support for the voltage regulators of the
663 PCAP2 PMIC.
Balaji Rao5ec271e2009-01-09 01:51:01 +0100664
Axel Lindfb9b8a2012-02-22 09:29:16 +0800665config REGULATOR_PCF50633
666 tristate "NXP PCF50633 regulator driver"
Michael Jonesc6d678b2012-07-26 16:07:23 +0200667 depends on MFD_PCF50633
Daniel Ribeiro39b17722009-06-27 00:18:02 -0300668 help
Krzysztof Kozlowski48f1b4e2019-01-08 13:12:33 +0100669 Say Y here to support the voltage regulators and converters
Axel Lindfb9b8a2012-02-22 09:29:16 +0800670 on PCF50633
Daniel Ribeiro39b17722009-06-27 00:18:02 -0300671
Robin Gong3784b6d2013-07-25 11:33:18 +0800672config REGULATOR_PFUZE100
Stefan Wahren297101a2018-06-15 13:44:53 +0200673 tristate "Freescale PFUZE100/200/3000/3001 regulator driver"
Robin Gong3784b6d2013-07-25 11:33:18 +0800674 depends on I2C
Axel Lin94421b02013-07-29 12:08:01 +0800675 select REGMAP_I2C
Robin Gong3784b6d2013-07-25 11:33:18 +0800676 help
Axel Lin2cee2122014-03-05 18:02:43 +0800677 Say y here to support the regulators found on the Freescale
Stefan Wahren297101a2018-06-15 13:44:53 +0200678 PFUZE100/200/3000/3001 PMIC.
Robin Gong3784b6d2013-07-25 11:33:18 +0800679
James Banf307a7e2015-11-19 09:59:15 +0900680config REGULATOR_PV88060
681 tristate "Powerventure Semiconductor PV88060 regulator"
682 depends on I2C
683 select REGMAP_I2C
684 help
685 Say y here to support the voltage regulators and convertors
686 PV88060
687
James Ban99cf3af2016-04-15 13:34:22 +0900688config REGULATOR_PV88080
689 tristate "Powerventure Semiconductor PV88080 regulator"
690 depends on I2C
691 select REGMAP_I2C
692 help
693 Say y here to support the buck convertors on PV88080
694
James Banc90456e2015-12-08 10:57:29 +0900695config REGULATOR_PV88090
696 tristate "Powerventure Semiconductor PV88090 regulator"
697 depends on I2C
698 select REGMAP_I2C
699 help
700 Say y here to support the voltage regulators and convertors
701 on PV88090
702
Chris Zhongaa66cc62014-09-28 10:28:53 +0800703config REGULATOR_PWM
704 tristate "PWM voltage regulator"
705 depends on PWM
706 help
707 This driver supports PWM controlled voltage regulators. PWM
708 duty cycle can increase or decrease the voltage.
709
Bjorn Andersson27203862014-09-22 16:25:29 -0700710config REGULATOR_QCOM_RPM
711 tristate "Qualcomm RPM regulator driver"
712 depends on MFD_QCOM_RPM
713 help
714 If you say yes to this option, support will be included for the
715 regulators exposed by the Resource Power Manager found in Qualcomm
716 8660, 8960 and 8064 based devices.
717
718 Say M here if you want to include support for the regulators on the
719 Qualcomm RPM as a module. The module will be named
720 "qcom_rpm-regulator".
721
David Collins46fc0332018-07-13 18:50:59 -0700722config REGULATOR_QCOM_RPMH
723 tristate "Qualcomm Technologies, Inc. RPMh regulator driver"
724 depends on QCOM_RPMH || COMPILE_TEST
725 help
726 This driver supports control of PMIC regulators via the RPMh hardware
727 block found on Qualcomm Technologies Inc. SoCs. RPMh regulator
728 control allows for voting on regulator state between multiple
729 processors within the SoC.
730
Bjorn Anderssonda65e362015-08-17 11:43:59 -0700731config REGULATOR_QCOM_SMD_RPM
732 tristate "Qualcomm SMD based RPM regulator driver"
733 depends on QCOM_SMD_RPM
734 help
735 If you say yes to this option, support will be included for the
736 regulators exposed by the Resource Power Manager found in Qualcomm
737 8974 based devices.
738
739 Say M here if you want to include support for the regulators on the
740 Qualcomm RPM as a module. The module will be named
741 "qcom_smd-regulator".
742
Stephen Boyde92a4042015-06-12 15:47:10 -0700743config REGULATOR_QCOM_SPMI
744 tristate "Qualcomm SPMI regulator driver"
745 depends on SPMI || COMPILE_TEST
746 help
747 If you say yes to this option, support will be included for the
748 regulators found in Qualcomm SPMI PMICs.
749
750 Say M here if you want to include support for the regulators on the
751 Qualcomm SPMI PMICs as a module. The module will be named
752 "qcom_spmi-regulator".
753
Laxman Dewangan6ffc3272012-04-04 12:44:00 +0530754config REGULATOR_RC5T583
755 tristate "RICOH RC5T583 Power regulators"
756 depends on MFD_RC5T583
757 help
758 Select this option to enable the power regulator of RICOH
759 PMIC RC5T583.
760 This driver supports the control of different power rails of device
761 through regulator interface. The device supports multiple DCDC/LDO
762 outputs which can be controlled by i2c communication.
763
Chris Zhong2cd64ae2014-08-20 11:36:42 +0800764config REGULATOR_RK808
Elaine Zhangc4e0d342017-08-21 03:28:36 +0200765 tristate "Rockchip RK805/RK808/RK818 Power regulators"
Chris Zhong2cd64ae2014-08-20 11:36:42 +0800766 depends on MFD_RK808
767 help
768 Select this option to enable the power regulator of ROCKCHIP
Elaine Zhangc4e0d342017-08-21 03:28:36 +0200769 PMIC RK805,RK808 and RK818.
Chris Zhong2cd64ae2014-08-20 11:36:42 +0800770 This driver supports the control of different power rails of device
771 through regulator interface. The device supports multiple DCDC/LDO
772 outputs which can be controlled by i2c communication.
773
Beniamino Galvani811b7002014-08-30 14:50:24 +0200774config REGULATOR_RN5T618
Stefan Agnered6d3622016-06-28 22:53:20 -0700775 tristate "Ricoh RN5T567/618 voltage regulators"
Beniamino Galvani811b7002014-08-30 14:50:24 +0200776 depends on MFD_RN5T618
777 help
Pierre-Hugues Husson83b2a3c2017-08-27 15:58:31 +0200778 Say y here to support the regulators found on Ricoh RN5T567,
779 RN5T618 or RC5T619 PMIC.
Beniamino Galvani811b7002014-08-30 14:50:24 +0200780
Beomho Seob1917572014-11-12 21:07:59 +0900781config REGULATOR_RT5033
782 tristate "Richtek RT5033 Regulators"
783 depends on MFD_RT5033
784 help
785 This adds support for voltage and current regulators in Richtek
786 RT5033 PMIC. The device supports multiple regulators like
787 current source, LDO and Buck.
788
Sachin Kamatf1879272014-03-14 17:21:58 +0530789config REGULATOR_S2MPA01
790 tristate "Samsung S2MPA01 voltage regulator"
Sangbeom Kimcb746852012-07-11 21:08:17 +0900791 depends on MFD_SEC_CORE
792 help
Sachin Kamatf1879272014-03-14 17:21:58 +0530793 This driver controls Samsung S2MPA01 voltage output regulator
794 via I2C bus. S2MPA01 has 10 Bucks and 26 LDO outputs.
795
Sangbeom Kimcb746852012-07-11 21:08:17 +0900796config REGULATOR_S2MPS11
Thomas Abraham51af2062015-11-20 16:07:52 +0530797 tristate "Samsung S2MPS11/13/14/15/S2MPU02 voltage regulator"
Sangbeom Kimcb746852012-07-11 21:08:17 +0900798 depends on MFD_SEC_CORE
799 help
Thomas Abraham51af2062015-11-20 16:07:52 +0530800 This driver supports a Samsung S2MPS11/13/14/15/S2MPU02 voltage
Chanwoo Choi76b98402014-11-18 17:59:40 +0900801 output regulator via I2C bus. The chip is comprised of high efficient
802 Buck converters including Dual-Phase Buck converter, Buck-Boost
803 converter, various LDOs.
Sangbeom Kimcb746852012-07-11 21:08:17 +0900804
Axel Lindfb9b8a2012-02-22 09:29:16 +0800805config REGULATOR_S5M8767
806 tristate "Samsung S5M8767A voltage regulator"
Sangbeom Kim66c9fbb2012-07-11 21:06:40 +0900807 depends on MFD_SEC_CORE
Sascha Hauer295c08b2009-08-19 01:43:50 +0200808 help
Axel Lindfb9b8a2012-02-22 09:29:16 +0800809 This driver supports a Samsung S5M8767A voltage output regulator
810 via I2C bus. S5M8767A have 9 Bucks and 28 LDOs output and
811 supports DVS mode with 8bits of output voltage control.
Yong Shen5e428d52010-12-14 14:00:55 +0800812
Erick Chen433c9bb2017-12-05 14:35:46 +0800813config REGULATOR_SC2731
814 tristate "Spreadtrum SC2731 power regulator driver"
815 depends on MFD_SC27XX_PMIC || COMPILE_TEST
816 help
817 This driver provides support for the voltage regulators on the
818 SC2731 PMIC.
819
Gyungoh Yoo9839d622014-08-08 18:10:22 +0900820config REGULATOR_SKY81452
821 tristate "Skyworks Solutions SKY81452 voltage regulator"
Gyungoh Yoo70b5b272014-11-17 17:33:10 +0900822 depends on MFD_SKY81452
Lee Jones4a5d3012014-03-21 10:21:36 +0000823 help
Gyungoh Yoo9839d622014-08-08 18:10:22 +0900824 This driver supports Skyworks SKY81452 voltage output regulator
825 via I2C bus. SKY81452 has one voltage linear regulator can be
826 programmed from 4.5V to 20V.
827
828 This driver can also be built as a module. If so, the module
829 will be called sky81452-regulator.
Lee Jones4a5d3012014-03-21 10:21:36 +0000830
Eric Jeonga867bde2019-04-18 15:09:44 +0900831config REGULATOR_SLG51000
832 tristate "Dialog Semiconductor SLG51000 regulators"
833 depends on I2C
834 select REGMAP_I2C
835 help
836 Say y here to support for the Dialog Semiconductor SLG51000.
837 The SLG51000 is seven compact and customizable low dropout
838 regulators.
839
Fabrice Gasnier0cdbf482017-08-30 17:55:28 +0200840config REGULATOR_STM32_VREFBUF
841 tristate "STMicroelectronics STM32 VREFBUF"
842 depends on ARCH_STM32 || COMPILE_TEST
843 help
844 This driver supports STMicroelectronics STM32 VREFBUF (voltage
845 reference buffer) which can be used as voltage reference for
846 internal ADCs, DACs and also for external components through
847 dedicated Vref+ pin.
848
849 This driver can also be built as a module. If so, the module
850 will be called stm32-vrefbuf.
851
Pascal PAILLET-LME6cdae812019-04-15 09:17:38 +0000852config REGULATOR_STM32_PWR
853 bool "STMicroelectronics STM32 PWR"
854 depends on ARCH_STM32 || COMPILE_TEST
855 help
856 This driver supports internal regulators (1V1, 1V8, 3V3) in the
857 STMicroelectronics STM32 chips.
858
pascal pailletca55b712018-10-08 16:29:40 +0000859config REGULATOR_STPMIC1
860 tristate "STMicroelectronics STPMIC1 PMIC Regulators"
861 depends on MFD_STPMIC1
862 help
863 This driver supports STMicroelectronics STPMIC1 PMIC voltage
864 regulators and switches. The STPMIC1 regulators supply power to
865 an application processor as well as to external system
866 peripherals such as DDR, Flash memories and system devices.
867
868 To compile this driver as a module, choose M here: the
869 module will be called stpmic1_regulator.
870
Mark Brown82b736d2013-07-05 20:45:22 +0100871config REGULATOR_TI_ABB
Mark Brown631a1fc2013-07-29 16:49:46 +0100872 tristate "TI Adaptive Body Bias on-chip LDO"
Mark Brown82b736d2013-07-05 20:45:22 +0100873 depends on ARCH_OMAP
Linus Walleijd619bc12009-09-09 11:31:00 +0200874 help
Mark Brown82b736d2013-07-05 20:45:22 +0100875 Select this option to support Texas Instruments' on-chip Adaptive Body
876 Bias (ABB) LDO regulators. It is recommended that this option be
877 enabled on required TI SoC. Certain Operating Performance Points
878 on TI SoCs may be unstable without enabling this as it provides
879 device specific optimized bias to allow/optimize functionality.
Graeme Gregory4c5dabc2012-05-15 15:48:59 +0900880
Linus Walleij3615a342013-09-13 21:01:15 +0200881config REGULATOR_STW481X_VMMC
882 bool "ST Microelectronics STW481X VMMC regulator"
Luis de Bethencourt4049dc12015-10-12 17:27:08 +0100883 depends on MFD_STW481X || COMPILE_TEST
Linus Walleij3615a342013-09-13 21:01:15 +0200884 default y if MFD_STW481X
885 help
886 This driver supports the internal VMMC regulator in the STw481x
887 PMIC chips.
888
Ondrej Jirman88783022018-05-07 20:29:41 +0800889config REGULATOR_SY8106A
890 tristate "Silergy SY8106A regulator"
891 depends on I2C && (OF || COMPILE_TEST)
892 select REGMAP_I2C
893 help
894 This driver supports SY8106A single output regulator.
895
Laxman Dewangan0c570672012-10-06 20:47:46 +0530896config REGULATOR_TPS51632
897 tristate "TI TPS51632 Power Regulator"
898 depends on I2C
899 select REGMAP_I2C
900 help
901 This driver supports TPS51632 voltage regulator chip.
Axel Lin7bde7672012-11-01 14:02:36 +0800902 The TPS51632 is 3-2-1 Phase D-Cap+ Step Down Driverless Controller
Laxman Dewangan0c570672012-10-06 20:47:46 +0530903 with Serial VID control and DVFS.
904 The voltage output can be configure through I2C interface or PWM
905 interface.
906
Linus Walleij2edd3b62011-03-09 12:02:55 +0000907config REGULATOR_TPS6105X
908 tristate "TI TPS6105X Power regulators"
909 depends on TPS6105X
910 default y if TPS6105X
911 help
912 This driver supports TPS61050/TPS61052 voltage regulator chips.
913 It is a single boost converter primarily for white LEDs and
914 audio amplifiers.
915
Axel Lindfb9b8a2012-02-22 09:29:16 +0800916config REGULATOR_TPS62360
Axel Lind1cf4f62012-04-02 18:19:28 +0800917 tristate "TI TPS6236x Power Regulator"
Axel Lindfb9b8a2012-02-22 09:29:16 +0800918 depends on I2C
919 select REGMAP_I2C
920 help
Axel Lind1cf4f62012-04-02 18:19:28 +0800921 This driver supports TPS6236x voltage regulator chip. This
Axel Lindfb9b8a2012-02-22 09:29:16 +0800922 regulator is meant for processor core supply. This chip is
923 high-frequency synchronous step down dc-dc converter optimized
924 for battery-powered portable applications.
925
Anuj Aggarwal2de79852009-08-21 00:39:44 +0530926config REGULATOR_TPS65023
927 tristate "TI TPS65023 Power regulators"
928 depends on I2C
Mark Brown90923352011-06-18 01:18:51 +0100929 select REGMAP_I2C
Anuj Aggarwal2de79852009-08-21 00:39:44 +0530930 help
931 This driver supports TPS65023 voltage regulator chips. TPS65023 provides
932 three step-down converters and two general-purpose LDO voltage regulators.
933 It supports TI's software based Class-2 SmartReflex implementation.
934
935config REGULATOR_TPS6507X
936 tristate "TI TPS6507X Power regulators"
937 depends on I2C
938 help
939 This driver supports TPS6507X voltage regulator chips. TPS6507X provides
940 three step-down converters and two general-purpose LDO voltage regulators.
941 It supports TI's software based Class-2 SmartReflex implementation.
942
Andrew F. Davisd2a2e722015-11-04 11:12:14 -0600943config REGULATOR_TPS65086
944 tristate "TI TPS65086 Power regulators"
945 depends on MFD_TPS65086
946 help
947 This driver provides support for the voltage regulators on
948 TI TPS65086 PMICs.
949
Venu Byravarasu452534e2012-03-22 18:34:09 +0530950config REGULATOR_TPS65090
951 tristate "TI TPS65090 Power regulator"
952 depends on MFD_TPS65090
953 help
954 This driver provides support for the voltage regulators on the
955 TI TPS65090 PMIC.
956
Venkat Reddy Talla77c129b2017-04-12 15:44:36 +0530957config REGULATOR_TPS65132
958 tristate "TI TPS65132 Dual Output Power regulators"
959 depends on I2C && GPIOLIB
960 select REGMAP_I2C
961 help
962 This driver supports TPS65132 single inductor - dual output
Krzysztof Kozlowski48f1b4e2019-01-08 13:12:33 +0100963 power supply specifically designed for display panels.
Venkat Reddy Talla77c129b2017-04-12 15:44:36 +0530964
AnilKumar Cha493077f2012-01-11 16:11:49 +0530965config REGULATOR_TPS65217
966 tristate "TI TPS65217 Power regulators"
967 depends on MFD_TPS65217
968 help
969 This driver supports TPS65217 voltage regulator chips. TPS65217
970 provides three step-down converters and four general-purpose LDO
971 voltage regulators. It supports software based voltage control
972 for different voltage domains
973
Keerthy90e7d522014-02-06 11:20:13 +0530974config REGULATOR_TPS65218
975 tristate "TI TPS65218 Power regulators"
Axel Lin948838a2014-02-19 16:35:03 +0800976 depends on MFD_TPS65218 && OF
Keerthy90e7d522014-02-06 11:20:13 +0530977 help
978 This driver supports TPS65218 voltage regulator chips. TPS65218
979 provides six step-down converters and one general-purpose LDO
980 voltage regulators. It supports software based voltage control
981 for different voltage domains
982
Cyril Chemparathy1394fd22010-12-07 12:04:11 -0500983config REGULATOR_TPS6524X
984 tristate "TI TPS6524X Power regulators"
985 depends on SPI
986 help
987 This driver supports TPS6524X voltage regulator chips. TPS6524X
988 provides three step-down converters and two general-purpose LDO
989 voltage regulators. This device is interfaced using a customized
990 serial interface currently supported on the sequencer serial
991 port controller.
992
Axel Lindfb9b8a2012-02-22 09:29:16 +0800993config REGULATOR_TPS6586X
994 tristate "TI TPS6586X Power regulators"
995 depends on MFD_TPS6586X
996 help
997 This driver supports TPS6586X voltage regulator chips.
998
Graeme Gregory518fb722011-05-02 16:20:08 -0500999config REGULATOR_TPS65910
Axel Linae0e6542012-02-21 10:14:55 +08001000 tristate "TI TPS65910/TPS65911 Power Regulators"
Graeme Gregory518fb722011-05-02 16:20:08 -05001001 depends on MFD_TPS65910
1002 help
Axel Linae0e6542012-02-21 10:14:55 +08001003 This driver supports TPS65910/TPS65911 voltage regulator chips.
Graeme Gregory518fb722011-05-02 16:20:08 -05001004
Axel Lindfb9b8a2012-02-22 09:29:16 +08001005config REGULATOR_TPS65912
1006 tristate "TI TPS65912 Power regulator"
Andrew F. Davis33f9d8c2016-01-25 09:43:46 -06001007 depends on MFD_TPS65912
Laxman Dewangan62199292012-01-09 20:27:41 +05301008 help
Axel Lindfb9b8a2012-02-22 09:29:16 +08001009 This driver supports TPS65912 voltage regulator chip.
Laxman Dewangan62199292012-01-09 20:27:41 +05301010
Laxman Dewangan1a0bb672012-11-11 20:42:01 +05301011config REGULATOR_TPS80031
Sebastiaan Schalbroeck3b063492016-08-22 18:23:14 +02001012 tristate "TI TPS80031/TPS80032 power regulator driver"
Laxman Dewangan1a0bb672012-11-11 20:42:01 +05301013 depends on MFD_TPS80031
1014 help
1015 TPS80031/ TPS80032 Fully Integrated Power Management with Power
1016 Path and Battery Charger. It has 5 configurable step-down
1017 converters, 11 general purpose LDOs, VBUS generator and digital
1018 output to control regulators.
1019
Mark Brownda091552008-10-10 15:58:15 +01001020config REGULATOR_TWL4030
Mark Brown631a1fc2013-07-29 16:49:46 +01001021 tristate "TI TWL4030/TWL5030/TWL6030/TPS659x0 PMIC"
Mark Brownda091552008-10-10 15:58:15 +01001022 depends on TWL4030_CORE
Mark Brownda091552008-10-10 15:58:15 +01001023 help
1024 This driver supports the voltage regulators provided by
1025 this family of companion chips.
1026
Kunihiko Hayashi9df4f902018-07-11 13:30:52 +09001027config REGULATOR_UNIPHIER
1028 tristate "UniPhier regulator driver"
1029 depends on ARCH_UNIPHIER || COMPILE_TEST
Axel Lina71bcdf2019-03-25 18:59:19 +08001030 depends on OF
1031 select REGMAP_MMIO
Kunihiko Hayashi9df4f902018-07-11 13:30:52 +09001032 default ARCH_UNIPHIER
1033 help
1034 Support for regulators implemented on Socionext UniPhier SoCs.
1035
Matthias Kaehlcke9dee7a72017-04-07 12:51:58 -07001036config REGULATOR_VCTRL
1037 tristate "Voltage controlled regulators"
1038 depends on OF
1039 help
1040 This driver provides support for voltage regulators whose output
1041 voltage is controlled by the voltage of another regulator.
1042
Pawel Moll31e54082012-09-24 18:56:54 +01001043config REGULATOR_VEXPRESS
1044 tristate "Versatile Express regulators"
1045 depends on VEXPRESS_CONFIG
1046 help
1047 This driver provides support for voltage regulators available
1048 on the ARM Ltd's Versatile Express platform.
1049
Liam Girdwoodba7e4762008-04-30 17:13:42 +01001050config REGULATOR_WM831X
Axel Lindfb9b8a2012-02-22 09:29:16 +08001051 tristate "Wolfson Microelectronics WM831x PMIC regulators"
Liam Girdwoodba7e4762008-04-30 17:13:42 +01001052 depends on MFD_WM831X
1053 help
1054 Support the voltage and current regulators of the WM831x series
1055 of PMIC devices.
1056
Mark Brown42fad572008-09-11 11:12:01 +01001057config REGULATOR_WM8350
1058 tristate "Wolfson Microelectronics WM8350 AudioPlus PMIC"
1059 depends on MFD_WM8350
Mark Brown42fad572008-09-11 11:12:01 +01001060 help
1061 This driver provides support for the voltage and current regulators
Michael Jonesc6d678b2012-07-26 16:07:23 +02001062 of the WM8350 AudioPlus PMIC.
Mark Brown42fad572008-09-11 11:12:01 +01001063
1064config REGULATOR_WM8400
1065 tristate "Wolfson Microelectronics WM8400 AudioPlus PMIC"
1066 depends on MFD_WM8400
1067 help
1068 This driver provides support for the voltage regulators of the
1069 WM8400 AudioPlus PMIC.
Mark Brownda091552008-10-10 15:58:15 +01001070
Eric Miao129eef92008-08-27 04:16:08 +08001071config REGULATOR_WM8994
1072 tristate "Wolfson Microelectronics WM8994 CODEC"
1073 depends on MFD_WM8994
Eric Miao129eef92008-08-27 04:16:08 +08001074 help
1075 This driver provides support for the voltage regulators on the
1076 WM8994 CODEC.
1077
Takashi Iwaibbda14d2008-10-30 15:57:05 +01001078endif
Sascha Hauer295c08b2009-08-19 01:43:50 +02001079