blob: c519e066ef028503d2c10822148308a5a27b25e6 [file] [log] [blame]
Przemyslaw Marczak08edd002015-04-20 20:07:42 +02001config DM_REGULATOR
2 bool "Enable Driver Model for REGULATOR drivers (UCLASS_REGULATOR)"
3 depends on DM
4 ---help---
5 This config enables the driver model regulator support.
6 UCLASS_REGULATOR - designed to provide a common API for basic regulator's
7 functions, like get/set Voltage or Current value, enable state, etc...
8 Note:
9 When enabling this, please read the description, found in the files:
10 - 'include/power/pmic.h'
11 - 'include/power/regulator.h'
12 - 'drivers/power/pmic/pmic-uclass.c'
13 - 'drivers/power/pmic/regulator-uclass.c'
14 It's important to call the device_bind() with the proper node offset,
15 when binding the regulator devices. The pmic_bind_childs() can be used
Simon Glass09128c52016-07-05 17:10:09 -060016 for this purpose if PMIC I/O driver is implemented or dm_scan_fdt_dev()
Przemyslaw Marczak75692a32015-05-13 13:38:27 +020017 otherwise. Detailed information can be found in the header file.
Przemyslaw Marczakafee81e2015-04-20 20:07:47 +020018
Simon Glassc8db7b42016-01-21 19:43:55 -070019config SPL_DM_REGULATOR
20 bool "Enable regulators for SPL"
Simon Glasse91ac4c2021-07-10 21:14:24 -060021 depends on DM_REGULATOR && SPL_POWER
Simon Glassc8db7b42016-01-21 19:43:55 -070022 ---help---
23 Regulators are seldom needed in SPL. Even if they are accessed, some
24 code space can be saved by accessing the PMIC registers directly.
25 Enable this option if you need regulators in SPL and can cope with
26 the extra code size.
27
Simon Glassd102cf62015-08-30 16:55:30 -060028config REGULATOR_ACT8846
29 bool "Enable driver for ACT8846 regulator"
30 depends on DM_REGULATOR && PMIC_ACT8846
31 ---help---
32 Enable support for the regulator functions of the ACT8846 PMIC. The
33 driver implements get/set api for the various BUCKS and LDOS supported
34 by the PMIC device. This driver is controlled by a device tree node
35 which includes voltage limits.
36
Simon Glass8f189512017-07-25 08:30:10 -060037config REGULATOR_AS3722
38 bool "Enable driver for AS7322 regulator"
39 depends on DM_REGULATOR && PMIC_AS3722
40 help
41 Enable support for the regulator functions of the AS3722. The
42 driver implements enable/disable for step-down bucks and LDOs,
43 but does not yet support change voltages. Currently this must be
44 done using direct register writes to the PMIC.
45
Matti Vaittinen9d4ce302019-05-07 10:45:55 +030046config DM_REGULATOR_BD71837
47 bool "Enable Driver Model for ROHM BD71837/BD71847 regulators"
48 depends on DM_REGULATOR && DM_PMIC_BD71837
49 help
50 This config enables implementation of driver-model regulator uclass
51 features for regulators on ROHM BD71837 and BD71847 PMICs.
52 BD71837 contains 8 bucks and 7 LDOS. BD71847 is reduced version
53 containing 6 bucks and 6 LDOs. The driver implements get/set api for
54 value and enable.
55
56config SPL_DM_REGULATOR_BD71837
57 bool "Enable Driver Model for ROHM BD71837/BD71847 regulators in SPL"
Tom Rini0a83cc22022-06-10 23:03:09 -040058 depends on DM_REGULATOR_BD71837 && SPL
Matti Vaittinen9d4ce302019-05-07 10:45:55 +030059 help
60 This config enables implementation of driver-model regulator uclass
61 features for regulators on ROHM BD71837 and BD71847 in SPL.
62
Marek Vasut5d9b83d2022-05-20 05:10:17 +020063config DM_REGULATOR_PCA9450
64 bool "Enable Driver Model for NXP PCA9450 regulators"
65 depends on DM_REGULATOR && DM_PMIC_PCA9450
66 help
67 This config enables implementation of driver-model regulator uclass
68 features for regulators on NXP PCA9450 PMICs. PCA9450 contains 6 bucks
69 and 5 LDOS. The driver implements get/set api for value and enable.
70
71config SPL_DM_REGULATOR_PCA9450
72 bool "Enable Driver Model for NXP PCA9450 regulators in SPL"
Tom Rini0a83cc22022-06-10 23:03:09 -040073 depends on DM_REGULATOR_PCA9450 && SPL
Marek Vasut5d9b83d2022-05-20 05:10:17 +020074 help
75 This config enables implementation of driver-model regulator uclass
76 features for regulators on ROHM PCA9450 in SPL.
77
Martin Fuzzeyd309f622020-01-14 15:56:17 +000078config DM_REGULATOR_DA9063
79 bool "Enable Driver Model for REGULATOR DA9063"
80 depends on DM_REGULATOR && DM_PMIC_DA9063
81 help
82 This config enables implementation of driver-model regulator uclass
83 features for REGULATOR DA9063.
84 The driver implements get/set api for value, enable and mode for all
85 regulators. It also implements the get/set api for current for the
86 buck regulators.
87
88config SPL_DM_REGULATOR_DA9063
89 bool "Enable Driver Model for REGULATOR DA9063 in SPL"
90 depends on DM_REGULATOR && DM_PMIC_DA9063 && SPL
91 help
92 This config enables implementation of driver-model regulator uclass
93 features for REGULATOR DA9063.
94 The driver implements get/set api for value, enable and mode for all
95 regulators. It also implements the get/set api for current for the
96 buck regulators.
97
Peng Fan54ee6a42015-08-07 16:43:45 +080098config DM_REGULATOR_PFUZE100
99 bool "Enable Driver Model for REGULATOR PFUZE100"
100 depends on DM_REGULATOR && DM_PMIC_PFUZE100
101 ---help---
102 This config enables implementation of driver-model regulator uclass
103 features for REGULATOR PFUZE100. The driver implements get/set api for:
104 value, enable and mode.
105
Kever Yang8bbe1cc2016-09-23 15:57:19 +0800106config REGULATOR_PWM
107 bool "Enable driver for PWM regulators"
108 depends on DM_REGULATOR
109 ---help---
110 Enable support for the PWM regulator functions which voltage are
111 controlled by PWM duty ratio. Some of Rockchip board using this kind
112 of regulator. The driver implements get/set api for the various BUCKS.
113 This driver is controlled by a device tree node
114 which includes voltage limits.
115
Christoph Muellner4484b852019-01-02 15:09:16 +0100116config SPL_REGULATOR_PWM
117 bool "Enable Driver for PWM regulators in SPL"
Tom Rini0a83cc22022-06-10 23:03:09 -0400118 depends on REGULATOR_PWM && SPL
Christoph Muellner4484b852019-01-02 15:09:16 +0100119 help
120 This config enables implementation of driver-model regulator uclass
121 features for PWM regulators in SPL.
122
Przemyslaw Marczakafee81e2015-04-20 20:07:47 +0200123config DM_REGULATOR_MAX77686
124 bool "Enable Driver Model for REGULATOR MAX77686"
125 depends on DM_REGULATOR && DM_PMIC_MAX77686
126 ---help---
127 This config enables implementation of driver-model regulator uclass
128 features for REGULATOR MAX77686. The driver implements get/set api for:
129 value, enable and mode.
Przemyslaw Marczak3753f282015-04-20 20:07:48 +0200130
Philipp Tomsichb7f57e12018-11-30 20:00:08 +0100131config DM_REGULATOR_FAN53555
132 bool "Enable Driver Model for REGULATOR FAN53555"
133 depends on DM_PMIC_FAN53555
134 help
135 This config enables implementation of driver-model regulator
136 uclass features for the FAN53555 regulator. The FAN53555 is
137 a (family of) single-output regulators that supports
138 transitioning between two different output voltages based on
139 an voltage selection pin.
140
141 The driver implements a get/set api for the voltage of the
142 'normal mode' voltage only. Switching to 'suspend mode'
143 (i.e. the alternate voltage), disabling output via software,
144 or switching the mode is not supported by this driver (at
145 this time).
146
Sven Schwermer25957522019-06-24 13:03:33 +0200147config DM_REGULATOR_COMMON
148 bool
149 depends on DM_REGULATOR
150
151config SPL_DM_REGULATOR_COMMON
152 bool
153 depends on DM_REGULATOR
154
Przemyslaw Marczak3753f282015-04-20 20:07:48 +0200155config DM_REGULATOR_FIXED
156 bool "Enable Driver Model for REGULATOR Fixed value"
157 depends on DM_REGULATOR
Sven Schwermer25957522019-06-24 13:03:33 +0200158 select DM_REGULATOR_COMMON
Przemyslaw Marczak3753f282015-04-20 20:07:48 +0200159 ---help---
160 This config enables implementation of driver-model regulator uclass
161 features for fixed value regulators. The driver implements get/set api
162 for enable and get only for voltage value.
Przemyslaw Marczakd5175dc2015-05-13 13:38:32 +0200163
Philipp Tomsichd52626c2017-09-29 19:28:02 +0200164config SPL_DM_REGULATOR_FIXED
165 bool "Enable Driver Model for REGULATOR Fixed value in SPL"
Tom Rini0a83cc22022-06-10 23:03:09 -0400166 depends on DM_REGULATOR_FIXED && SPL
Sven Schwermer25957522019-06-24 13:03:33 +0200167 select SPL_DM_REGULATOR_COMMON
Philipp Tomsichd52626c2017-09-29 19:28:02 +0200168 ---help---
169 This config enables implementation of driver-model regulator uclass
170 features for fixed value regulators in SPL.
171
Keerthy17b3fe72016-09-15 17:04:06 +0530172config DM_REGULATOR_GPIO
173 bool "Enable Driver Model for GPIO REGULATOR"
Lokesh Vutla638d2342018-10-24 21:06:50 +0530174 depends on DM_REGULATOR && DM_GPIO
Sven Schwermerdb58d9e2019-06-24 13:03:34 +0200175 select DM_REGULATOR_COMMON
Keerthy17b3fe72016-09-15 17:04:06 +0530176 ---help---
177 This config enables implementation of driver-model regulator uclass
178 features for gpio regulators. The driver implements get/set for
179 voltage value.
180
Lokesh Vutla638d2342018-10-24 21:06:50 +0530181config SPL_DM_REGULATOR_GPIO
182 bool "Enable Driver Model for GPIO REGULATOR in SPL"
Simon Glass035939e2021-07-10 21:14:30 -0600183 depends on DM_REGULATOR_GPIO && SPL_GPIO
Sven Schwermerdb58d9e2019-06-24 13:03:34 +0200184 select SPL_DM_REGULATOR_COMMON
Lokesh Vutla638d2342018-10-24 21:06:50 +0530185 ---help---
186 This config enables implementation of driver-model regulator uclass
187 features for gpio regulators in SPL.
188
Jacob Chen614704b2017-05-02 14:54:52 +0800189config REGULATOR_RK8XX
190 bool "Enable driver for RK8XX regulators"
191 depends on DM_REGULATOR && PMIC_RK8XX
Simon Glassadecfef2016-01-21 19:43:30 -0700192 ---help---
Jacob Chen614704b2017-05-02 14:54:52 +0800193 Enable support for the regulator functions of the RK8XX PMIC. The
Simon Glassadecfef2016-01-21 19:43:30 -0700194 driver implements get/set api for the various BUCKS and LDOs supported
195 by the PMIC device. This driver is controlled by a device tree node
196 which includes voltage limits.
197
Jaehoon Chung76f20082018-01-16 15:33:50 +0900198config DM_REGULATOR_S2MPS11
199 bool "Enable driver for S2MPS11 regulator"
200 depends on DM_REGULATOR && PMIC_S2MPS11
201 ---help---
202 This enables implementation of driver-model regulator uclass
203 features for REGULATOR S2MPS11.
204 The driver implements get/set api for: value and enable.
205
Simon Glass23361032015-07-02 18:16:01 -0600206config REGULATOR_S5M8767
207 bool "Enable support for S5M8767 regulator"
208 depends on DM_REGULATOR && PMIC_S5M8767
209 ---help---
210 This enables the regulator features of the S5M8767, allowing voltages
211 to be set, etc. The driver is not fully complete but supports most
212 common requirements, including all LDOs and BUCKs. This allows many
213 supplies to be set automatically using the device tree values.
214
Przemyslaw Marczakd5175dc2015-05-13 13:38:32 +0200215config DM_REGULATOR_SANDBOX
216 bool "Enable Driver Model for Sandbox PMIC regulator"
217 depends on DM_REGULATOR && DM_PMIC_SANDBOX
218 ---help---
219 Enable the regulator driver for emulated Sandbox PMIC.
220 The emulated PMIC device depends on two drivers:
221 - sandbox PMIC I/O driver - implements dm pmic operations
222 - sandbox PMIC regulator driver - implements dm regulator operations
223 - sandbox PMIC i2c emul driver - emulates the PMIC's I2C transmission
224
225 The regulator driver provides uclass operations for sandbox PMIC's
226 regulators. The driver implements get/set api for: voltage, current,
227 operation mode and enable state.
228 The driver supports LDO and BUCK regulators.
229
230 The Sandbox PMIC info:
231 * I/O interface:
232 - I2C chip address: 0x40
233 - first register address: 0x0
234 - register count: 0x10
235 * Adjustable outputs:
236 - 2x LDO
237 - 2x BUCK
238 - Each, with a different operating conditions (header).
239 * Reset values:
240 - set by i2c emul driver's probe() (defaults in header)
241
242 A detailed information can be found in header: '<power/sandbox_pmic.h>'
243 Binding info: 'doc/device-tree-bindings/pmic/max77686.txt'
Simon Glass9fa8e9c2015-07-02 18:15:59 -0600244
245config REGULATOR_TPS65090
246 bool "Enable driver for TPS65090 PMIC regulators"
247 depends on PMIC_TPS65090
248 ---help---
249 The TPS65090 provides several FETs (Field-effect Transistors,
250 effectively switches) which are supported by this driver as
251 regulators, one for each FET. The standard regulator interface is
252 supported, but it is only possible to turn the regulators on or off.
253 There is no voltage/current control.
Keerthyffed0ea2016-09-30 09:20:44 +0530254
255config DM_REGULATOR_PALMAS
256 bool "Enable driver for PALMAS PMIC regulators"
257 depends on PMIC_PALMAS
258 ---help---
259 This enables implementation of driver-model regulator uclass
260 features for REGULATOR PALMAS and the family of PALMAS PMICs.
261 The driver implements get/set api for: value and enable.
Keerthy947d9282016-09-30 09:34:03 +0530262
Jean-Jacques Hiblot4612bdd2017-09-21 17:03:10 +0200263config DM_REGULATOR_PBIAS
264 bool "Enable driver for PBIAS regulator"
265 depends on DM_REGULATOR
266 select REGMAP
267 select SYSCON
268 ---help---
269 This enables implementation of driver-model regulator uclass
270 features for pseudo-regulator PBIAS found in the OMAP SOCs.
271 This pseudo-regulator is used to provide a BIAS voltage to MMC1
272 signal pads and must be configured properly during a voltage switch.
273 Voltage switching is required by some operating modes of SDcards and
274 eMMC.
275
Keerthy947d9282016-09-30 09:34:03 +0530276config DM_REGULATOR_LP873X
277 bool "Enable driver for LP873X PMIC regulators"
278 depends on PMIC_LP873X
279 ---help---
280 This enables implementation of driver-model regulator uclass
281 features for REGULATOR LP873X and the family of LP873X PMICs.
282 The driver implements get/set api for: value and enable.
Keerthy22831662017-06-07 19:08:29 +0530283
284config DM_REGULATOR_LP87565
285 bool "Enable driver for LP87565 PMIC regulators"
286 depends on PMIC_LP87565
287 ---help---
288 This enables implementation of driver-model regulator uclass
289 features for REGULATOR LP87565 and the family of LP87565 PMICs.
290 LP87565 series of PMICs have 4 single phase BUCKs that can also
291 be configured in multi phase modes. The driver implements
292 get/set api for value and enable.
Felix Brack9493f0e2017-11-30 13:52:37 +0100293
Fabrice Gasnier95c868e2018-04-26 17:00:46 +0200294config DM_REGULATOR_STM32_VREFBUF
295 bool "Enable driver for STMicroelectronics STM32 VREFBUF"
296 depends on DM_REGULATOR && (STM32H7 || ARCH_STM32MP)
297 help
298 This driver supports STMicroelectronics STM32 VREFBUF (voltage
299 reference buffer) which can be used as voltage reference for
300 internal ADCs, DACs and also for external components through
301 dedicated Vref+ pin.
302
Felix Brack9493f0e2017-11-30 13:52:37 +0100303config DM_REGULATOR_TPS65910
304 bool "Enable driver for TPS65910 PMIC regulators"
305 depends on DM_PMIC_TPS65910
306 ---help---
307 The TPS65910 PMIC provides 4 SMPSs and 8 LDOs. This driver supports all
308 regulator types of the TPS65910 (BUCK, BOOST and LDO). It implements
309 the get/set api for value and enable.
Christophe Kerello1b659742018-04-26 17:13:09 +0200310
Tero Kristodaec3412019-10-24 15:00:48 +0530311config DM_REGULATOR_TPS62360
312 bool "Enable driver for TPS6236x Power Regulator"
313 depends on DM_REGULATOR
314 help
315 The TPS6236X DC/DC step down converter provides a single output
316 power line peaking at 3A current. This driver supports all four
317 variants of the chip (TPS62360, TPS62361, TPS62362, TPS62363). It
318 implements the get/set api for value only, as the power line is
319 always on.
320
Patrick Delaunayd79218f2019-02-04 11:26:17 +0100321config DM_REGULATOR_STPMIC1
322 bool "Enable driver for STPMIC1 regulators"
323 depends on DM_REGULATOR && PMIC_STPMIC1
Christophe Kerello1b659742018-04-26 17:13:09 +0200324 ---help---
Patrick Delaunayd79218f2019-02-04 11:26:17 +0100325 Enable support for the regulator functions of the STPMIC1 PMIC. The
Christophe Kerello1b659742018-04-26 17:13:09 +0200326 driver implements get/set api for the various BUCKS and LDOs supported
327 by the PMIC device. This driver is controlled by a device tree node
328 which includes voltage limits.
Patrick Delaunayd79218f2019-02-04 11:26:17 +0100329
Ying-Chun Liu (PaulLiu)cd6425a2021-03-27 21:46:51 +0800330config DM_REGULATOR_ANATOP
331 bool "Enable driver for ANATOP regulators"
332 depends on DM_REGULATOR
333 select REGMAP
334 select SYSCON
335 help
336 Enable support for the Freescale i.MX on-chip ANATOP LDO
337 regulators. It is recommended that this option be enabled on
338 i.MX6 platform.
339
Patrick Delaunayd79218f2019-02-04 11:26:17 +0100340config SPL_DM_REGULATOR_STPMIC1
341 bool "Enable driver for STPMIC1 regulators in SPL"
342 depends on SPL_DM_REGULATOR && PMIC_STPMIC1
343 help
344 Enable support for the regulator functions of the STPMIC1 PMIC in SPL.
Keerthyfb043902019-06-06 16:06:56 +0530345
346config SPL_DM_REGULATOR_PALMAS
347 bool "Enable driver for PALMAS PMIC regulators"
Tom Rini0a83cc22022-06-10 23:03:09 -0400348 depends on SPL_PMIC_PALMAS
Keerthyfb043902019-06-06 16:06:56 +0530349 help
350 This enables implementation of driver-model regulator uclass
351 features for REGULATOR PALMAS and the family of PALMAS PMICs.
352 The driver implements get/set api for: value and enable in SPL.
353
354config SPL_DM_REGULATOR_LP87565
355 bool "Enable driver for LP87565 PMIC regulators"
Tom Rini0a83cc22022-06-10 23:03:09 -0400356 depends on SPL_PMIC_LP87565
Keerthyfb043902019-06-06 16:06:56 +0530357 help
358 This enables implementation of driver-model regulator uclass
359 features for REGULATOR LP87565 and the family of LP87565 PMICs.
360 LP87565 series of PMICs have 4 single phase BUCKs that can also
361 be configured in multi phase modes. The driver implements
362 get/set api for value and enable in SPL.
363
364config SPL_DM_REGULATOR_LP873X
365 bool "Enable driver for LP873X PMIC regulators"
366 depends on SPL_PMIC_LP873X
367 help
368 This enables implementation of driver-model regulator uclass
369 features for REGULATOR LP873X and the family of LP873X PMICs.
370 The driver implements get/set api for: value and enable in SPL.
Keerthy4a030002019-10-24 15:00:51 +0530371
372config DM_REGULATOR_TPS65941
373 bool "Enable driver for TPS65941 PMIC regulators"
374 depends on PMIC_TPS65941
375 help
376 This enables implementation of driver-model regulator uclass
377 features for REGULATOR TPS65941 and the family of TPS65941 PMICs.
378 TPS65941 series of PMICs have 5 single phase BUCKs that can also
379 be configured in multi phase modes & 4 LDOs. The driver implements
380 get/set api for value and enable.
Etienne Carriered68663a2021-03-08 22:38:06 +0100381
382config DM_REGULATOR_SCMI
383 bool "Enable driver for SCMI voltage domain regulators"
384 depends on DM_REGULATOR
385 select SCMI_AGENT
386 help
387 Enable this option if you want to support regulators exposed through
388 the SCMI voltage domain protocol by a SCMI server.
Neil Armstrong5fc0a862022-04-27 13:28:10 +0200389
390config DM_REGULATOR_TPS65219
391 bool "Enable driver for TPS65219 PMIC regulators"
392 depends on PMIC_TPS65219
393 help
394 This enables implementation of driver-model regulator uclass
395 features for REGULATOR TPS65219 and the family of TPS65219 PMICs.
396 TPS65219 series of PMICs have 3 single phase BUCKs & 4 LDOs.
397 The driver implements get/set api for value and enable.