xref: /linux/drivers/regulator/Kconfig (revision af8b5fc31099abd7f3b297332c9e280ec0b30a71)
1bbda14dfSTakashi Iwaimenuconfig REGULATOR
2ba7e4763SLiam Girdwood	bool "Voltage and Current Regulator Support"
3ba7e4763SLiam Girdwood	help
4ba7e4763SLiam Girdwood	  Generic Voltage and Current Regulator support.
5ba7e4763SLiam Girdwood
6ba7e4763SLiam Girdwood	  This framework is designed to provide a generic interface to voltage
7ba7e4763SLiam Girdwood	  and current regulators within the Linux kernel. It's intended to
8ba7e4763SLiam Girdwood	  provide voltage and current control to client or consumer drivers and
9ba7e4763SLiam Girdwood	  also provide status information to user space applications through a
10ba7e4763SLiam Girdwood	  sysfs interface.
11ba7e4763SLiam Girdwood
12ba7e4763SLiam Girdwood	  The intention is to allow systems to dynamically control regulator
13ba7e4763SLiam Girdwood	  output in order to save power and prolong battery life. This applies
14ba7e4763SLiam Girdwood	  to both voltage regulators (where voltage output is controllable) and
15ba7e4763SLiam Girdwood	  current sinks (where current output is controllable).
16ba7e4763SLiam Girdwood
17ba7e4763SLiam Girdwood	  This framework safely compiles out if not selected so that client
18ba7e4763SLiam Girdwood	  drivers can still be used in systems with no software controllable
19ba7e4763SLiam Girdwood	  regulators.
20ba7e4763SLiam Girdwood
21ba7e4763SLiam Girdwood	  If unsure, say no.
22ba7e4763SLiam Girdwood
23bbda14dfSTakashi Iwaiif REGULATOR
24bbda14dfSTakashi Iwai
25ba7e4763SLiam Girdwoodconfig REGULATOR_DEBUG
26ba7e4763SLiam Girdwood	bool "Regulator debug support"
27ba7e4763SLiam Girdwood	help
28ba7e4763SLiam Girdwood	  Say yes here to enable debugging support.
29ba7e4763SLiam Girdwood
3034abbd68SMark Brownconfig REGULATOR_DUMMY
3134abbd68SMark Brown	bool "Provide a dummy regulator if regulator lookups fail"
3234abbd68SMark Brown	help
3334abbd68SMark Brown	  If this option is enabled then when a regulator lookup fails
3434abbd68SMark Brown	  and the board has not specified that it has provided full
3534abbd68SMark Brown	  constraints then the regulator core will provide an always
3634abbd68SMark Brown	  enabled dummy regulator will be provided, allowing consumer
3734abbd68SMark Brown	  drivers to continue.
3834abbd68SMark Brown
3934abbd68SMark Brown	  A warning will be generated when this substitution is done.
4034abbd68SMark Brown
41ba7e4763SLiam Girdwoodconfig REGULATOR_FIXED_VOLTAGE
42a9cb63b2SMark Brown	tristate "Fixed voltage regulator support"
43a9cb63b2SMark Brown	help
44a9cb63b2SMark Brown	  This driver provides support for fixed voltage regulators,
45a9cb63b2SMark Brown	  useful for systems which use a combination of software
46a9cb63b2SMark Brown	  managed regulators and simple non-configurable regulators.
47ba7e4763SLiam Girdwood
48ba7e4763SLiam Girdwoodconfig REGULATOR_VIRTUAL_CONSUMER
49ba7e4763SLiam Girdwood	tristate "Virtual regulator consumer support"
50ba7e4763SLiam Girdwood	help
51ba7e4763SLiam Girdwood	  This driver provides a virtual consumer for the voltage and
52ba7e4763SLiam Girdwood          current regulator API which provides sysfs controls for
53ba7e4763SLiam Girdwood          configuring the supplies requested.  This is mainly useful
54ba7e4763SLiam Girdwood          for test purposes.
55ba7e4763SLiam Girdwood
56ba7e4763SLiam Girdwood          If unsure, say no.
57ba7e4763SLiam Girdwood
581d98cccfSMike Rapoportconfig REGULATOR_USERSPACE_CONSUMER
591d98cccfSMike Rapoport	tristate "Userspace regulator consumer support"
601d98cccfSMike Rapoport	help
611d98cccfSMike Rapoport	  There are some classes of devices that are controlled entirely
626f2653e6SMichael Prokop	  from user space. Userspace consumer driver provides ability to
631d98cccfSMike Rapoport	  control power supplies for such devices.
641d98cccfSMike Rapoport
651d98cccfSMike Rapoport          If unsure, say no.
661d98cccfSMike Rapoport
673f0292aeSHeiko Stübnerconfig REGULATOR_GPIO
683f0292aeSHeiko Stübner	tristate "GPIO regulator support"
69d162b3c5SHeiko Stübner	depends on GENERIC_GPIO
703f0292aeSHeiko Stübner	help
713f0292aeSHeiko Stübner	  This driver provides support for regulators that can be
723f0292aeSHeiko Stübner	  controlled via gpios.
733f0292aeSHeiko Stübner	  It is capable of supporting current and voltage regulators
743f0292aeSHeiko Stübner	  and the platform has to provide a mapping of GPIO-states
753f0292aeSHeiko Stübner	  to target volts/amps.
763f0292aeSHeiko Stübner
77dfb9b8a4SAxel Linconfig REGULATOR_AD5398
78dfb9b8a4SAxel Lin	tristate "Analog Devices AD5398/AD5821 regulators"
79dfb9b8a4SAxel Lin	depends on I2C
800eb5d5abSPhilipp Zabel	help
81dfb9b8a4SAxel Lin	  This driver supports AD5398 and AD5821 current regulator chips.
82dfb9b8a4SAxel Lin	  If building into module, its name is ad5398.ko.
83dfb9b8a4SAxel Lin
84dfb9b8a4SAxel Linconfig REGULATOR_AAT2870
85dfb9b8a4SAxel Lin	tristate "AnalogicTech AAT2870 Regulators"
86dfb9b8a4SAxel Lin	depends on MFD_AAT2870_CORE
87dfb9b8a4SAxel Lin	help
88dfb9b8a4SAxel Lin	  If you have a AnalogicTech AAT2870 say Y to enable the
89dfb9b8a4SAxel Lin	  regulator driver.
90dfb9b8a4SAxel Lin
91dfb9b8a4SAxel Linconfig REGULATOR_DA903X
92dfb9b8a4SAxel Lin	tristate "Dialog Semiconductor DA9030/DA9034 regulators"
93dfb9b8a4SAxel Lin	depends on PMIC_DA903X
94dfb9b8a4SAxel Lin	help
95dfb9b8a4SAxel Lin	  Say y here to support the BUCKs and LDOs regulators found on
96dfb9b8a4SAxel Lin	  Dialog Semiconductor DA9030/DA9034 PMIC.
97dfb9b8a4SAxel Lin
98dfb9b8a4SAxel Linconfig REGULATOR_DA9052
99dfb9b8a4SAxel Lin	tristate "Dialog Semiconductor DA9052/DA9053 regulators"
100dfb9b8a4SAxel Lin	depends on PMIC_DA9052
101dfb9b8a4SAxel Lin	help
102dfb9b8a4SAxel Lin	  This driver supports the voltage regulators of DA9052-BC and
103dfb9b8a4SAxel Lin	  DA9053-AA/Bx PMIC.
104dfb9b8a4SAxel Lin
105e3e5aff7SYing-Chun Liu (PaulLiu)config REGULATOR_ANATOP
106e3e5aff7SYing-Chun Liu (PaulLiu)	tristate "Freescale i.MX on-chip ANATOP LDO regulators"
107e3e5aff7SYing-Chun Liu (PaulLiu)	depends on MFD_ANATOP
108e3e5aff7SYing-Chun Liu (PaulLiu)	help
109e3e5aff7SYing-Chun Liu (PaulLiu)	  Say y here to support Freescale i.MX on-chip ANATOP LDOs
110e3e5aff7SYing-Chun Liu (PaulLiu)	  regulators. It is recommended that this option be
111e3e5aff7SYing-Chun Liu (PaulLiu)	  enabled on i.MX6 platform.
112e3e5aff7SYing-Chun Liu (PaulLiu)
113dfb9b8a4SAxel Linconfig REGULATOR_MC13XXX_CORE
114dfb9b8a4SAxel Lin	tristate
115dfb9b8a4SAxel Lin
116dfb9b8a4SAxel Linconfig REGULATOR_MC13783
117dfb9b8a4SAxel Lin	tristate "Freescale MC13783 regulator driver"
118dfb9b8a4SAxel Lin	depends on MFD_MC13783
119dfb9b8a4SAxel Lin	select REGULATOR_MC13XXX_CORE
120dfb9b8a4SAxel Lin	help
121dfb9b8a4SAxel Lin	  Say y here to support the regulators found on the Freescale MC13783
122dfb9b8a4SAxel Lin	  PMIC.
123dfb9b8a4SAxel Lin
124dfb9b8a4SAxel Linconfig REGULATOR_MC13892
125dfb9b8a4SAxel Lin	tristate "Freescale MC13892 regulator driver"
126dfb9b8a4SAxel Lin	depends on MFD_MC13XXX
127dfb9b8a4SAxel Lin	select REGULATOR_MC13XXX_CORE
128dfb9b8a4SAxel Lin	help
129dfb9b8a4SAxel Lin	  Say y here to support the regulators found on the Freescale MC13892
130dfb9b8a4SAxel Lin	  PMIC.
131dfb9b8a4SAxel Lin
132dfb9b8a4SAxel Linconfig REGULATOR_ISL6271A
133dfb9b8a4SAxel Lin	tristate "Intersil ISL6271A Power regulator"
134dfb9b8a4SAxel Lin	depends on I2C
135dfb9b8a4SAxel Lin	help
136dfb9b8a4SAxel Lin	  This driver supports ISL6271A voltage regulator chip.
137dfb9b8a4SAxel Lin
138dfb9b8a4SAxel Linconfig REGULATOR_88PM8607
139dfb9b8a4SAxel Lin	bool "Marvell 88PM8607 Power regulators"
140dfb9b8a4SAxel Lin	depends on MFD_88PM860X=y
141dfb9b8a4SAxel Lin	help
142dfb9b8a4SAxel Lin	  This driver supports 88PM8607 voltage regulator chips.
1430eb5d5abSPhilipp Zabel
14455f4fa4eSRobert Jarzmikconfig REGULATOR_MAX1586
14555f4fa4eSRobert Jarzmik	tristate "Maxim 1586/1587 voltage regulator"
14655f4fa4eSRobert Jarzmik	depends on I2C
14755f4fa4eSRobert Jarzmik	help
14855f4fa4eSRobert Jarzmik	  This driver controls a Maxim 1586 or 1587 voltage output
14955f4fa4eSRobert Jarzmik	  regulator via I2C bus. The provided regulator is suitable
15055f4fa4eSRobert Jarzmik	  for PXA27x chips to control VCC_CORE and VCC_USIM voltages.
15155f4fa4eSRobert Jarzmik
152a71b797fSHaojian Zhuangconfig REGULATOR_MAX8649
153a71b797fSHaojian Zhuang	tristate "Maxim 8649 voltage regulator"
154a71b797fSHaojian Zhuang	depends on I2C
155c5b68d47SJonghwan Choi	select REGMAP_I2C
156a71b797fSHaojian Zhuang	help
157a71b797fSHaojian Zhuang	  This driver controls a Maxim 8649 voltage output regulator via
158a71b797fSHaojian Zhuang	  I2C bus.
159a71b797fSHaojian Zhuang
16027f37e4bSWolfram Sangconfig REGULATOR_MAX8660
16127f37e4bSWolfram Sang	tristate "Maxim 8660/8661 voltage regulator"
16227f37e4bSWolfram Sang	depends on I2C
16327f37e4bSWolfram Sang	help
16427f37e4bSWolfram Sang	  This driver controls a Maxim 8660/8661 voltage output
16527f37e4bSWolfram Sang	  regulator via I2C bus.
16627f37e4bSWolfram Sang
16708ff6f2aSHaojian Zhuangconfig REGULATOR_MAX8925
16808ff6f2aSHaojian Zhuang	tristate "Maxim MAX8925 Power Management IC"
16908ff6f2aSHaojian Zhuang	depends on MFD_MAX8925
17008ff6f2aSHaojian Zhuang	help
17108ff6f2aSHaojian Zhuang	  Say y here to support the voltage regulaltor of Maxim MAX8925 PMIC.
17208ff6f2aSHaojian Zhuang
173202f4f53SMyungJoo Hamconfig REGULATOR_MAX8952
174202f4f53SMyungJoo Ham	tristate "Maxim MAX8952 Power Management IC"
175202f4f53SMyungJoo Ham	depends on I2C
176202f4f53SMyungJoo Ham	help
177202f4f53SMyungJoo Ham	  This driver controls a Maxim 8952 voltage output regulator
178202f4f53SMyungJoo Ham	  via I2C bus. Maxim 8952 has one voltage output and supports 4 DVS
179202f4f53SMyungJoo Ham	  modes ranging from 0.77V to 1.40V by 0.01V steps.
180202f4f53SMyungJoo Ham
181bd6ca2cfSMyungJoo Hamconfig REGULATOR_MAX8997
182bd6ca2cfSMyungJoo Ham	tristate "Maxim 8997/8966 regulator"
183bd6ca2cfSMyungJoo Ham	depends on MFD_MAX8997
184bd6ca2cfSMyungJoo Ham	help
185bd6ca2cfSMyungJoo Ham	  This driver controls a Maxim 8997/8966 regulator
186bd6ca2cfSMyungJoo Ham	  via I2C bus. The provided regulator is suitable for S5PC110,
187bd6ca2cfSMyungJoo Ham	  S5PV210, and Exynos-4 chips to control VCC_CORE and
188bd6ca2cfSMyungJoo Ham	  VCC_USIM voltages.
189bd6ca2cfSMyungJoo Ham
190156f2528SKyungmin Parkconfig REGULATOR_MAX8998
191156f2528SKyungmin Park	tristate "Maxim 8998 voltage regulator"
19269f71008SMarek Szyprowski	depends on MFD_MAX8998
193156f2528SKyungmin Park	help
194156f2528SKyungmin Park	  This driver controls a Maxim 8998 voltage output regulator
195156f2528SKyungmin Park	  via I2C bus. The provided regulator is suitable for S3C6410
196156f2528SKyungmin Park	  and S5PC1XX chips to control VCC_CORE and VCC_USIM voltages.
197156f2528SKyungmin Park
198133d4016SJonghwa Leeconfig REGULATOR_MAX77686
199133d4016SJonghwa Lee	tristate "Maxim 77686 regulator"
200133d4016SJonghwa Lee	depends on MFD_MAX77686
201133d4016SJonghwa Lee	help
202133d4016SJonghwa Lee	  This driver controls a Maxim 77686 regulator
203133d4016SJonghwa Lee	  via I2C bus. The provided regulator is suitable for
204133d4016SJonghwa Lee	  Exynos-4 chips to control VARM and VINT voltages.
205133d4016SJonghwa Lee
206dfb9b8a4SAxel Linconfig REGULATOR_PCAP
207dfb9b8a4SAxel Lin	tristate "Motorola PCAP2 regulator driver"
208dfb9b8a4SAxel Lin	depends on EZX_PCAP
20942fad570SMark Brown	help
21042fad570SMark Brown	 This driver provides support for the voltage regulators of the
211dfb9b8a4SAxel Lin	 PCAP2 PMIC.
2125ec271e7SBalaji Rao
2130cbdf7bcSMarek Szyprowskiconfig REGULATOR_LP3971
2140cbdf7bcSMarek Szyprowski	tristate "National Semiconductors LP3971 PMIC regulator driver"
2150cbdf7bcSMarek Szyprowski	depends on I2C
2160cbdf7bcSMarek Szyprowski	help
2170cbdf7bcSMarek Szyprowski	 Say Y here to support the voltage regulators and convertors
2180cbdf7bcSMarek Szyprowski	 on National Semiconductors LP3971 PMIC
2190cbdf7bcSMarek Szyprowski
2205976f095SAxel Linconfig REGULATOR_LP3972
2215976f095SAxel Lin	tristate "National Semiconductors LP3972 PMIC regulator driver"
2225976f095SAxel Lin	depends on I2C
2235976f095SAxel Lin	help
2245976f095SAxel Lin	 Say Y here to support the voltage regulators and convertors
2255976f095SAxel Lin	 on National Semiconductors LP3972 PMIC
2265976f095SAxel Lin
227*af8b5fc3SKim, Miloconfig REGULATOR_LP872X
228*af8b5fc3SKim, Milo	tristate "TI/National Semiconductor LP8720/LP8725 voltage regulators"
229*af8b5fc3SKim, Milo	depends on I2C
230*af8b5fc3SKim, Milo	select REGMAP_I2C
231*af8b5fc3SKim, Milo	help
232*af8b5fc3SKim, Milo	  This driver supports LP8720/LP8725 PMIC
233*af8b5fc3SKim, Milo
234dfb9b8a4SAxel Linconfig REGULATOR_PCF50633
235dfb9b8a4SAxel Lin	tristate "NXP PCF50633 regulator driver"
236dfb9b8a4SAxel Lin        depends on MFD_PCF50633
23739b1772aSDaniel Ribeiro	help
238dfb9b8a4SAxel Lin	 Say Y here to support the voltage regulators and convertors
239dfb9b8a4SAxel Lin	 on PCF50633
24039b1772aSDaniel Ribeiro
2416ffc3270SLaxman Dewanganconfig REGULATOR_RC5T583
2426ffc3270SLaxman Dewangan	tristate "RICOH RC5T583 Power regulators"
2436ffc3270SLaxman Dewangan	depends on MFD_RC5T583
2446ffc3270SLaxman Dewangan	help
2456ffc3270SLaxman Dewangan	  Select this option to enable the power regulator of RICOH
2466ffc3270SLaxman Dewangan	  PMIC RC5T583.
2476ffc3270SLaxman Dewangan	  This driver supports the control of different power rails of device
2486ffc3270SLaxman Dewangan	  through regulator interface. The device supports multiple DCDC/LDO
2496ffc3270SLaxman Dewangan	  outputs which can be controlled by i2c communication.
2506ffc3270SLaxman Dewangan
251dfb9b8a4SAxel Linconfig REGULATOR_S5M8767
252dfb9b8a4SAxel Lin	tristate "Samsung S5M8767A voltage regulator"
253dfb9b8a4SAxel Lin	depends on MFD_S5M_CORE
254295c08bcSSascha Hauer	help
255dfb9b8a4SAxel Lin	 This driver supports a Samsung S5M8767A voltage output regulator
256dfb9b8a4SAxel Lin	 via I2C bus. S5M8767A have 9 Bucks and 28 LDOs output and
257dfb9b8a4SAxel Lin	 supports DVS mode with 8bits of output voltage control.
2585e428d5cSYong Shen
259d619bc14SLinus Walleijconfig REGULATOR_AB3100
260d619bc14SLinus Walleij	tristate "ST-Ericsson AB3100 Regulator functions"
261d619bc14SLinus Walleij	depends on AB3100_CORE
262d619bc14SLinus Walleij	default y if AB3100_CORE
263d619bc14SLinus Walleij	help
264d619bc14SLinus Walleij	 These regulators correspond to functionality in the
265d619bc14SLinus Walleij	 AB3100 analog baseband dealing with power regulators
266d619bc14SLinus Walleij	 for the system.
267d619bc14SLinus Walleij
268dfb9b8a4SAxel Linconfig REGULATOR_AB8500
269dfb9b8a4SAxel Lin	bool "ST-Ericsson AB8500 Power Regulators"
270dfb9b8a4SAxel Lin	depends on AB8500_CORE
271dfb9b8a4SAxel Lin	help
272dfb9b8a4SAxel Lin	  This driver supports the regulators found on the ST-Ericsson mixed
273dfb9b8a4SAxel Lin	  signal AB8500 PMIC
274dfb9b8a4SAxel Lin
275dfb9b8a4SAxel Linconfig REGULATOR_DBX500_PRCMU
276dfb9b8a4SAxel Lin	bool
277dfb9b8a4SAxel Lin
278dfb9b8a4SAxel Linconfig REGULATOR_DB8500_PRCMU
279dfb9b8a4SAxel Lin	bool "ST-Ericsson DB8500 Voltage Domain Regulators"
280dfb9b8a4SAxel Lin	depends on MFD_DB8500_PRCMU
281dfb9b8a4SAxel Lin	select REGULATOR_DBX500_PRCMU
282dfb9b8a4SAxel Lin	help
283dfb9b8a4SAxel Lin	  This driver supports the voltage domain regulators controlled by the
284dfb9b8a4SAxel Lin	  DB8500 PRCMU
285dfb9b8a4SAxel Lin
2864c5dabceSGraeme Gregoryconfig REGULATOR_PALMAS
2874c5dabceSGraeme Gregory	tristate "TI Palmas PMIC Regulators"
2884c5dabceSGraeme Gregory	depends on MFD_PALMAS
2894c5dabceSGraeme Gregory	help
2904c5dabceSGraeme Gregory	  If you wish to control the regulators on the Palmas series of
2914c5dabceSGraeme Gregory	  chips say Y here. This will enable support for all the software
2924c5dabceSGraeme Gregory	  controllable SMPS/LDO regulators.
2934c5dabceSGraeme Gregory
2944c5dabceSGraeme Gregory	  The regulators available on Palmas series chips vary depending
2954c5dabceSGraeme Gregory	  on the muxing. This is handled automatically in the driver by
2964c5dabceSGraeme Gregory	  reading the mux info from OTP.
2974c5dabceSGraeme Gregory
2982edd3b69SLinus Walleijconfig REGULATOR_TPS6105X
2992edd3b69SLinus Walleij	tristate "TI TPS6105X Power regulators"
3002edd3b69SLinus Walleij	depends on TPS6105X
3012edd3b69SLinus Walleij	default y if TPS6105X
3022edd3b69SLinus Walleij	help
3032edd3b69SLinus Walleij	  This driver supports TPS61050/TPS61052 voltage regulator chips.
3042edd3b69SLinus Walleij	  It is a single boost converter primarily for white LEDs and
3052edd3b69SLinus Walleij	  audio amplifiers.
3062edd3b69SLinus Walleij
307dfb9b8a4SAxel Linconfig REGULATOR_TPS62360
308d1cf4f65SAxel Lin	tristate "TI TPS6236x Power Regulator"
309dfb9b8a4SAxel Lin	depends on I2C
310dfb9b8a4SAxel Lin	select REGMAP_I2C
311dfb9b8a4SAxel Lin	help
312d1cf4f65SAxel Lin	  This driver supports TPS6236x voltage regulator chip. This
313dfb9b8a4SAxel Lin	  regulator is meant for processor core supply. This chip is
314dfb9b8a4SAxel Lin	  high-frequency synchronous step down dc-dc converter optimized
315dfb9b8a4SAxel Lin	  for battery-powered portable applications.
316dfb9b8a4SAxel Lin
3172de79850SAnuj Aggarwalconfig REGULATOR_TPS65023
3182de79850SAnuj Aggarwal	tristate "TI TPS65023 Power regulators"
3192de79850SAnuj Aggarwal	depends on I2C
32090923351SMark Brown	select REGMAP_I2C
3212de79850SAnuj Aggarwal	help
3222de79850SAnuj Aggarwal	  This driver supports TPS65023 voltage regulator chips. TPS65023 provides
3232de79850SAnuj Aggarwal	  three step-down converters and two general-purpose LDO voltage regulators.
3242de79850SAnuj Aggarwal	  It supports TI's software based Class-2 SmartReflex implementation.
3252de79850SAnuj Aggarwal
3262de79850SAnuj Aggarwalconfig REGULATOR_TPS6507X
3272de79850SAnuj Aggarwal	tristate "TI TPS6507X Power regulators"
3282de79850SAnuj Aggarwal	depends on I2C
3292de79850SAnuj Aggarwal	help
3302de79850SAnuj Aggarwal	  This driver supports TPS6507X voltage regulator chips. TPS6507X provides
3312de79850SAnuj Aggarwal	  three step-down converters and two general-purpose LDO voltage regulators.
3322de79850SAnuj Aggarwal	  It supports TI's software based Class-2 SmartReflex implementation.
3332de79850SAnuj Aggarwal
334452534e5SVenu Byravarasuconfig REGULATOR_TPS65090
335452534e5SVenu Byravarasu	tristate "TI TPS65090 Power regulator"
336452534e5SVenu Byravarasu	depends on MFD_TPS65090
337452534e5SVenu Byravarasu	help
338452534e5SVenu Byravarasu	  This driver provides support for the voltage regulators on the
339452534e5SVenu Byravarasu	  TI TPS65090 PMIC.
340452534e5SVenu Byravarasu
341a493077fSAnilKumar Chconfig REGULATOR_TPS65217
342a493077fSAnilKumar Ch	tristate "TI TPS65217 Power regulators"
343a493077fSAnilKumar Ch	depends on MFD_TPS65217
344a493077fSAnilKumar Ch	help
345a493077fSAnilKumar Ch	  This driver supports TPS65217 voltage regulator chips. TPS65217
346a493077fSAnilKumar Ch	  provides three step-down converters and four general-purpose LDO
347a493077fSAnilKumar Ch	  voltage regulators. It supports software based voltage control
348a493077fSAnilKumar Ch	  for different voltage domains
349a493077fSAnilKumar Ch
3501394fd28SCyril Chemparathyconfig REGULATOR_TPS6524X
3511394fd28SCyril Chemparathy	tristate "TI TPS6524X Power regulators"
3521394fd28SCyril Chemparathy	depends on SPI
3531394fd28SCyril Chemparathy	help
3541394fd28SCyril Chemparathy	  This driver supports TPS6524X voltage regulator chips. TPS6524X
3551394fd28SCyril Chemparathy	  provides three step-down converters and two general-purpose LDO
3561394fd28SCyril Chemparathy	  voltage regulators.  This device is interfaced using a customized
3571394fd28SCyril Chemparathy	  serial interface currently supported on the sequencer serial
3581394fd28SCyril Chemparathy	  port controller.
3591394fd28SCyril Chemparathy
360dfb9b8a4SAxel Linconfig REGULATOR_TPS6586X
361dfb9b8a4SAxel Lin	tristate "TI TPS6586X Power regulators"
362dfb9b8a4SAxel Lin	depends on MFD_TPS6586X
363dfb9b8a4SAxel Lin	help
364dfb9b8a4SAxel Lin	  This driver supports TPS6586X voltage regulator chips.
365dfb9b8a4SAxel Lin
366518fb721SGraeme Gregoryconfig REGULATOR_TPS65910
367ae0e6544SAxel Lin	tristate "TI TPS65910/TPS65911 Power Regulators"
368518fb721SGraeme Gregory	depends on MFD_TPS65910
369518fb721SGraeme Gregory	help
370ae0e6544SAxel Lin	  This driver supports TPS65910/TPS65911 voltage regulator chips.
371518fb721SGraeme Gregory
372dfb9b8a4SAxel Linconfig REGULATOR_TPS65912
373dfb9b8a4SAxel Lin	tristate "TI TPS65912 Power regulator"
374dfb9b8a4SAxel Lin	depends on (MFD_TPS65912_I2C || MFD_TPS65912_SPI)
3756219929fSLaxman Dewangan	help
376dfb9b8a4SAxel Lin	    This driver supports TPS65912 voltage regulator chip.
3776219929fSLaxman Dewangan
378ba7e4763SLiam Girdwoodconfig REGULATOR_TWL4030
379ba7e4763SLiam Girdwood	bool "TI TWL4030/TWL5030/TWL6030/TPS659x0 PMIC"
380ba7e4763SLiam Girdwood	depends on TWL4030_CORE
381ba7e4763SLiam Girdwood	help
382ba7e4763SLiam Girdwood	  This driver supports the voltage regulators provided by
383ba7e4763SLiam Girdwood	  this family of companion chips.
38442fad570SMark Brown
38542fad570SMark Brownconfig REGULATOR_WM831X
386dfb9b8a4SAxel Lin	tristate "Wolfson Microelectronics WM831x PMIC regulators"
387ba7e4763SLiam Girdwood	depends on MFD_WM831X
388ba7e4763SLiam Girdwood	help
389ba7e4763SLiam Girdwood	  Support the voltage and current regulators of the WM831x series
390ba7e4763SLiam Girdwood	  of PMIC devices.
39142fad570SMark Brown
39242fad570SMark Brownconfig REGULATOR_WM8350
39342fad570SMark Brown	tristate "Wolfson Microelectronics WM8350 AudioPlus PMIC"
39442fad570SMark Brown	depends on MFD_WM8350
39542fad570SMark Brown	help
39642fad570SMark Brown	  This driver provides support for the voltage and current regulators
39742fad570SMark Brown          of the WM8350 AudioPlus PMIC.
398da09155aSMark Brown
399129eef96SEric Miaoconfig REGULATOR_WM8400
400129eef96SEric Miao	tristate "Wolfson Microelectronics WM8400 AudioPlus PMIC"
401129eef96SEric Miao	depends on MFD_WM8400
402129eef96SEric Miao	help
403129eef96SEric Miao	  This driver provides support for the voltage regulators of the
404129eef96SEric Miao	  WM8400 AudioPlus PMIC.
405129eef96SEric Miao
406bbda14dfSTakashi Iwaiconfig REGULATOR_WM8994
407ba7e4763SLiam Girdwood	tristate "Wolfson Microelectronics WM8994 CODEC"
408ba7e4763SLiam Girdwood	depends on MFD_WM8994
409ba7e4763SLiam Girdwood	help
410ba7e4763SLiam Girdwood	  This driver provides support for the voltage regulators on the
411ba7e4763SLiam Girdwood	  WM8994 CODEC.
412ba7e4763SLiam Girdwood
413ba7e4763SLiam Girdwoodendif
414295c08bcSSascha Hauer
415