blob: ec7ccc3a63fda1ecfb5d605ab924d2685b8b7e5e [file] [log] [blame]
Przemyslaw Marczak9a8bc952015-04-20 20:07:41 +02001config DM_PMIC
2 bool "Enable Driver Model for PMIC drivers (UCLASS_PMIC)"
3 depends on DM
4 ---help---
5 This config enables the driver-model PMIC support.
6 UCLASS_PMIC - designed to provide an I/O interface for PMIC devices.
7 For the multi-function PMIC devices, this can be used as parent I/O
8 device for each IC's interface. Then, each children uses its parent
9 for read/write. For detailed description, please refer to the files:
10 - 'drivers/power/pmic/pmic-uclass.c'
11 - 'include/power/pmic.h'
Przemyslaw Marczak58ea76f2015-04-20 20:07:46 +020012
Samuel Hollandaad02792021-10-08 00:17:14 -050013if DM_PMIC
14
Simon Glass6343ffb2021-08-08 12:20:25 -060015config SPL_DM_PMIC
16 bool "Enable Driver Model for PMIC drivers (UCLASS_PMIC) in SPL"
17 depends on SPL_DM
Samuel Hollandaad02792021-10-08 00:17:14 -050018 default y
Simon Glass6343ffb2021-08-08 12:20:25 -060019 ---help---
20 This config enables the driver-model PMIC support in SPL.
21 UCLASS_PMIC - designed to provide an I/O interface for PMIC devices.
22 For the multi-function PMIC devices, this can be used as parent I/O
23 device for each IC's interface. Then, each children uses its parent
24 for read/write. For detailed description, please refer to the files:
25 - 'drivers/power/pmic/pmic-uclass.c'
26 - 'include/power/pmic.h'
27
Simon Glassc8db7b42016-01-21 19:43:55 -070028config PMIC_CHILDREN
29 bool "Allow child devices for PMICs"
Simon Glassc8db7b42016-01-21 19:43:55 -070030 default y
31 ---help---
32 This allows PMICs to support child devices (such as regulators) in
33 SPL. This adds quite a bit of code so if you are not using this
34 feature you can turn it off. Most likely you should turn it on for
35 U-Boot proper.
36
37config SPL_PMIC_CHILDREN
38 bool "Allow child devices for PMICs in SPL"
Samuel Hollanda0a21592021-10-08 00:17:15 -050039 depends on SPL_DM_PMIC
Simon Glassc8db7b42016-01-21 19:43:55 -070040 default y
41 ---help---
42 This allows PMICs to support child devices (such as regulators) in
43 SPL. This adds quite a bit of code so if you are not using this
44 feature you can turn it off. In this case you may need a 'back door'
Jacob Chen614704b2017-05-02 14:54:52 +080045 to call your regulator code (e.g. see rk8xx.c for direct functions
Simon Glassc8db7b42016-01-21 19:43:55 -070046 for use in SPL).
47
Stephan Gerholdcb9589f2021-07-08 20:33:48 +020048config PMIC_AB8500
49 bool "Enable driver for ST-Ericsson AB8500 PMIC via PRCMU"
Stephan Gerholdcb9589f2021-07-08 20:33:48 +020050 select REGMAP
51 select SYSCON
52 help
53 Enable support for the ST-Ericsson AB8500 (Analog Baseband) PMIC.
54 It connects with the ST-Ericsson DB8500 SoC via an I2C bus managed by
55 the power/reset/clock management unit (PRCMU) firmware.
56
Simon Glassb08ce892015-08-30 16:55:29 -060057config PMIC_ACT8846
58 bool "Enable support for the active-semi 8846 PMIC"
Samuel Hollandaad02792021-10-08 00:17:14 -050059 depends on DM_I2C
Simon Glassb08ce892015-08-30 16:55:29 -060060 ---help---
61 This PMIC includes 4 DC/DC step-down buck regulators and 8 low-dropout
62 regulators (LDOs). It also provides some GPIO, reset and battery
63 functions. It uses an I2C interface and is designed for use with
64 tablets and smartphones.
65
Samuel Holland3f902612021-10-08 00:17:16 -050066config PMIC_AXP
67 bool "Enable Driver Model for X-Powers AXP PMICs"
68 depends on DM_I2C
Samuel Holland5afa5cd2021-10-24 21:00:10 -050069 select SYSRESET_CMD_POWEROFF if SYSRESET && CMD_POWEROFF
70 imply CMD_POWEROFF if SYSRESET
Samuel Holland3f902612021-10-08 00:17:16 -050071 help
72 This config enables driver-model PMIC uclass features for
73 X-Powers AXP152, AXP2xx, and AXP8xx PMICs.
74
75config SPL_PMIC_AXP
76 bool "Enable Driver Model for X-Powers AXP PMICs in SPL"
77 depends on SPL_DM_I2C && SPL_DM_PMIC
78 help
79 This config enables driver-model PMIC uclass features in the SPL for
80 X-Powers AXP152, AXP2xx, and AXP8xx PMICs.
81
Martin Fuzzeya99472e2020-01-14 15:56:16 +000082config DM_PMIC_DA9063
83 bool "Enable Driver Model for the Dialog DA9063 PMIC"
Martin Fuzzeya99472e2020-01-14 15:56:16 +000084 help
85 This config enables implementation of driver-model pmic uclass features
86 for PMIC DA9063. The driver implements read/write operations.
87
88config SPL_DM_PMIC_DA9063
89 bool "Enable Driver Model for the Dialog DA9063 PMIC in SPL"
Samuel Hollanda0a21592021-10-08 00:17:15 -050090 depends on SPL_DM_PMIC
Martin Fuzzeya99472e2020-01-14 15:56:16 +000091 help
92 This config enables implementation of driver-model pmic uclass features
93 for PMIC DA9063. The driver implements read/write operations.
94
Simon Glass52222b12017-04-26 22:27:46 -060095config PMIC_AS3722
96 bool "Enable support for the Austria Micro Systems (AMS) AS7322 PMIC"
97 help
98 The AS3722 includes 7 DC/DC buck convertors, 11 low-noise LDOs, a
99 real-time clock, GPIOs, ADC and a few other features. It uses an I2C
100 interface and is designs to cover most of the power managementment
101 required for a tablets or laptop.
102
Matti Vaittinen1cf7f1d2019-05-07 10:43:39 +0300103config DM_PMIC_BD71837
104 bool "Enable Driver Model for PMIC BD71837"
Matti Vaittinen1cf7f1d2019-05-07 10:43:39 +0300105 help
106 This config enables implementation of driver-model pmic uclass features
107 for PMIC BD71837. The driver implements read/write operations.
108
Peng Fan9c3193b2019-10-16 10:24:36 +0000109config SPL_DM_PMIC_BD71837
110 bool "Enable Driver Model for PMIC BD71837 in SPL stage"
Samuel Hollanda0a21592021-10-08 00:17:15 -0500111 depends on SPL_DM_PMIC
Peng Fan9c3193b2019-10-16 10:24:36 +0000112 help
113 This config enables implementation of driver-model pmic uclass
114 features for PMIC BD71837. The driver implements read/write
115 operations.
116
Philipp Tomsichb7f57e12018-11-30 20:00:08 +0100117config DM_PMIC_FAN53555
118 bool "Enable support for OnSemi FAN53555"
Samuel Hollandaad02792021-10-08 00:17:14 -0500119 depends on DM_REGULATOR && DM_I2C
Philipp Tomsichb7f57e12018-11-30 20:00:08 +0100120 select DM_REGULATOR_FAN53555
121 help
122 This config enables implementation of driver-model PMIC
123 uclass features for the FAN53555 regulator. The FAN53555 is
124 a (family of) single-output regulators that supports
125 transitioning between two different output voltages based on
126 an voltage selection pin.
127
128 The driver implements read/write operations for use with the FAN53555
129 regulator driver and binds the regulator driver to its node.
130
Quentin Schulz9964f002021-11-12 15:10:47 +0100131config SPL_DM_PMIC_FAN53555
132 bool "Enable support for OnSemi FAN53555 in SPL"
133 depends on SPL_DM_REGULATOR && SPL_DM_I2C
134 select SPL_DM_REGULATOR_FAN53555
135 help
136 This config enables implementation of driver-model PMIC
137 uclass features for the FAN53555 regulator. The FAN53555 is
138 a (family of) single-output regulators that supports
139 transitioning between two different output voltages based on
140 an voltage selection pin.
141
142 The driver implements read/write operations for use with the FAN53555
143 regulator driver and binds the regulator driver to its node.
144
Tim Harvey338588e2020-12-21 08:19:39 -0800145config DM_PMIC_MP5416
146 bool "Enable Driver Model for PMIC MP5416"
Tim Harvey338588e2020-12-21 08:19:39 -0800147 help
148 This config enables implementation of driver-model pmic uclass features
149 for PMIC MP5416. The driver implements read/write operations.
150
151config SPL_DM_PMIC_MP5416
152 bool "Enable Driver Model for PMIC MP5416 in SPL stage"
Samuel Hollanda0a21592021-10-08 00:17:15 -0500153 depends on SPL_DM_PMIC
Tim Harvey338588e2020-12-21 08:19:39 -0800154 help
155 This config enables implementation of driver-model pmic uclass
156 features for PMIC MP5416. The driver implements read/write
157 operations.
158
Ye Lic3ee9092019-10-15 02:15:18 -0700159config DM_PMIC_PCA9450
160 bool "Enable Driver Model for PMIC PCA9450"
Rasmus Villemoes593539c2022-05-03 10:58:06 +0200161 depends on DM_I2C
Ye Lic3ee9092019-10-15 02:15:18 -0700162 help
163 This config enables implementation of driver-model pmic uclass features
164 for PMIC PCA9450. The driver implements read/write operations.
165
Igor Opaniukdb8fef22020-10-28 11:58:10 +0200166config SPL_DM_PMIC_PCA9450
Rasmus Villemoes593539c2022-05-03 10:58:06 +0200167 bool "Enable Driver Model for PMIC PCA9450 in SPL"
Samuel Hollanda0a21592021-10-08 00:17:15 -0500168 depends on SPL_DM_PMIC
Rasmus Villemoes593539c2022-05-03 10:58:06 +0200169 depends on SPL_DM_I2C
Igor Opaniukdb8fef22020-10-28 11:58:10 +0200170 help
171 This config enables implementation of driver-model pmic uclass features
172 for PMIC PCA9450 in SPL. The driver implements read/write operations.
173
Peng Fan6f4f6d22015-08-14 11:36:16 +0200174config DM_PMIC_PFUZE100
175 bool "Enable Driver Model for PMIC PFUZE100"
Peng Fan6f4f6d22015-08-14 11:36:16 +0200176 ---help---
177 This config enables implementation of driver-model pmic uclass features
178 for PMIC PFUZE100. The driver implements read/write operations.
179
Marek Vasut16189d62020-05-29 19:22:41 +0200180config SPL_DM_PMIC_PFUZE100
181 bool "Enable Driver Model for PMIC PFUZE100 in SPL"
Samuel Hollanda0a21592021-10-08 00:17:15 -0500182 depends on SPL_DM_PMIC
Marek Vasut16189d62020-05-29 19:22:41 +0200183 ---help---
184 This config enables implementation of driver-model pmic uclass features
185 for PMIC PFUZE100 in SPL. The driver implements read/write operations.
186
Svyatoslav Ryhel9c58dd62024-10-06 14:50:02 +0300187config DM_PMIC_MAX8907
188 bool "Enable Driver Model for PMIC MAX8907"
189 ---help---
190 This config enables implementation of driver-model pmic uclass features
191 for PMIC MAX8907. The driver implements read/write operations.
192 This is a Power Management IC with a decent set of peripherals from which
193 3 DC-to-DC Step-Down (SD) Regulators, 20 Low-Dropout Linear (LDO) Regulators,
194 Real-Time Clock (RTC) and more with I2C Compatible Interface.
195
Svyatoslav Ryhelaba052b2023-10-27 11:26:10 +0300196config DM_PMIC_MAX77663
197 bool "Enable Driver Model for PMIC MAX77663"
198 ---help---
199 This config enables implementation of driver-model pmic uclass features
200 for PMIC MAX77663. The driver implements read/write operations.
201 This is a Power Management IC with a decent set of peripherals from which
202 4 DC-to-DC Step-Down (SD) Regulators, 9 Low-Dropout Linear (LDO) Regulators,
203 8 GPIOs, Real-Time Clock (RTC) and more with I2C Compatible Interface.
204
Przemyslaw Marczak58ea76f2015-04-20 20:07:46 +0200205config DM_PMIC_MAX77686
206 bool "Enable Driver Model for PMIC MAX77686"
Przemyslaw Marczak58ea76f2015-04-20 20:07:46 +0200207 ---help---
208 This config enables implementation of driver-model pmic uclass features
Przemyslaw Marczak10314982015-05-13 13:38:26 +0200209 for PMIC MAX77686. The driver implements read/write operations.
Przemyslaw Marczakd5175dc2015-05-13 13:38:32 +0200210
Jaehoon Chung42b5d882016-12-15 18:21:10 +0900211config DM_PMIC_MAX8998
212 bool "Enable Driver Model for PMIC MAX8998"
Jaehoon Chung42b5d882016-12-15 18:21:10 +0900213 ---help---
214 This config enables implementation of driver-model pmic uclass features
215 for PMIC MAX8998. The driver implements read/write operations.
216
Lukasz Majewski9c65b792018-05-15 16:26:37 +0200217config DM_PMIC_MC34708
218 bool "Enable Driver Model for PMIC MC34708"
Lukasz Majewski9c65b792018-05-15 16:26:37 +0200219 help
220 This config enables implementation of driver-model pmic uclass features
221 for PMIC MC34708. The driver implements read/write operations.
222
Jaehoon Chung4997f6e2017-02-02 17:04:09 +0900223config PMIC_MAX8997
224 bool "Enable Driver Model for PMIC MAX8997"
Jaehoon Chung4997f6e2017-02-02 17:04:09 +0900225 ---help---
226 This config enables implementation of driver-model pmic uclass features
227 for PMIC MAX8997. The driver implements read/write operations.
228 This is a Power Management IC with RTC, Fuel Gauge, MUIC control on Chip.
229 - 21x LDOs
230 - 12x GPIOs
231 - Haptic Motor driver
232 - RTC with two alarms
233 - Fueal Gauge and One backup battery charger
234 - MUIC
235 - Others
236
Sumit Garg60900b42022-08-04 19:57:17 +0530237config PMIC_QCOM
238 bool "Enable Driver Model for Qualcomm generic PMIC"
Mateusz Kulikowski0be548f2016-03-31 23:12:30 +0200239 ---help---
Sumit Garg60900b42022-08-04 19:57:17 +0530240 The Qcom PMIC is connected to one (or several) processors
Mateusz Kulikowski0be548f2016-03-31 23:12:30 +0200241 with SPMI bus. It has 2 slaves with several peripherals:
242 - 18x LDO
243 - 4x GPIO
244 - Power and Reset buttons
245 - Watchdog
246 - RTC
247 - Vibrator drivers
248 - Others
249
Sumit Garg60900b42022-08-04 19:57:17 +0530250 Driver binding info: doc/device-tree-bindings/pmic/qcom,spmi-pmic.txt
Mateusz Kulikowski0be548f2016-03-31 23:12:30 +0200251
Jacob Chen614704b2017-05-02 14:54:52 +0800252config PMIC_RK8XX
253 bool "Enable support for Rockchip PMIC RK8XX"
Jonas Karlman2def78b2023-08-17 05:45:02 +0000254 select SYSRESET_CMD_POWEROFF if SYSRESET && CMD_POWEROFF
Simon Glassa8bd2ac2016-01-21 19:43:29 -0700255 ---help---
256 The Rockchip RK808 PMIC provides four buck DC-DC convertors, 8 LDOs,
257 an RTC and two low Rds (resistance (drain to source)) switches. It is
258 accessed via an I2C interface. The device is used with Rockchip SoCs.
259 This driver implements register read/write operations.
260
Simon Glass6343ffb2021-08-08 12:20:25 -0600261config SPL_PMIC_RK8XX
Quentin Schulz4afc3ee2024-03-14 10:36:25 +0100262 bool "Enable support for Rockchip PMIC RK8XX in SPL"
Samuel Hollanda0a21592021-10-08 00:17:15 -0500263 depends on SPL_DM_PMIC
Simon Glass6343ffb2021-08-08 12:20:25 -0600264 ---help---
265 The Rockchip RK808 PMIC provides four buck DC-DC convertors, 8 LDOs,
266 an RTC and two low Rds (resistance (drain to source)) switches. It is
267 accessed via an I2C interface. The device is used with Rockchip SoCs.
268 This driver implements register read/write operations.
269
Przemyslaw Marczak91815122015-10-27 13:07:58 +0100270config PMIC_S2MPS11
271 bool "Enable Driver Model for PMIC Samsung S2MPS11"
Przemyslaw Marczak91815122015-10-27 13:07:58 +0100272 ---help---
273 The Samsung S2MPS11 PMIC provides:
274 - 38 adjustable LDO regulators
275 - 9 High-Efficiency Buck Converters
276 - 1 BuckBoost Converter
277 - RTC with two alarms
278 - Backup battery charger
279 - I2C Configuration Interface
280 This driver provides access to I/O interface only.
281 Binding info: doc/device-tree-bindings/pmic/s2mps11.txt
282
Przemyslaw Marczakd5175dc2015-05-13 13:38:32 +0200283config DM_PMIC_SANDBOX
Michal Simekc7df3a22018-07-23 08:38:56 +0200284 bool "Enable Driver Model for emulated Sandbox PMIC"
Przemyslaw Marczakd5175dc2015-05-13 13:38:32 +0200285 ---help---
286 Enable the driver for Sandbox PMIC emulation. The emulated PMIC device
287 depends on two drivers:
288 - sandbox PMIC I/O driver - implements dm pmic operations
289 - sandbox PMIC i2c emul driver - emulates the PMIC's I2C transmission
290
291 A detailed information can be found in header: '<power/sandbox_pmic.h>'
292
293 The Sandbox PMIC info:
294 * I/O interface:
295 - I2C chip address: 0x40
296 - first register address: 0x0
297 - register count: 0x10
298 * Adjustable outputs:
299 - 2x LDO
300 - 2x BUCK
301 - Each, with a different operating conditions (header).
302 * Reset values:
303 - set by i2c emul driver's probe() (defaults in header)
304
305 Driver binding info: doc/device-tree-bindings/pmic/sandbox.txt
Simon Glassc0871112015-07-02 18:15:58 -0600306
Svyatoslav Ryhelcf77d732025-02-01 16:02:45 +0200307config DM_PMIC_CPCAP
308 bool "Enable Driver Model for Motorola CPCAP"
309 help
310 The CPCAP is a Motorola/ST-Ericsson creation, a multifunctional IC
311 whose main purpose is power control. It was used in a wide variety of
312 Motorola products, both Tegra and OMAP based. The most notable devices
313 using this PMIC are the Motorola Droid 4, Atrix 4G, and Droid X2.
314 Unlike most PMICs, this one is not I2C based; it uses the SPI bus. The
315 core driver provides both read and write access to the device registers.
316
Simon Glass01651492015-07-02 18:16:00 -0600317config PMIC_S5M8767
318 bool "Enable Driver Model for the Samsung S5M8767 PMIC"
Simon Glass01651492015-07-02 18:16:00 -0600319 ---help---
320 The S5M8767 PMIC provides a large array of LDOs and BUCKs for use
321 as a SoC power controller. It also provides 32KHz clock outputs. This
322 driver provides basic register access and sets up the attached
323 regulators if regulator support is enabled.
324
Stefan Agnerb084ddd2016-10-05 15:27:09 -0700325config PMIC_RN5T567
326 bool "Enable driver for Ricoh RN5T567 PMIC"
Stefan Agnerb084ddd2016-10-05 15:27:09 -0700327 ---help---
328 The RN5T567 is a PMIC with 4 step-down DC/DC converters, 5 LDO
329 regulators Real-Time Clock and 4 GPIOs. This driver provides
330 register access only.
331
Martyn Welchac3ed372022-10-25 10:55:01 +0100332config SPL_PMIC_RN5T567
333 bool "Enable driver for Ricoh RN5T567 PMIC in SPL"
334 depends on SPL_DM_PMIC
335 ---help---
336 The RN5T567 is a PMIC with 4 step-down DC/DC converters, 5 LDO
337 regulators Real-Time Clock and 4 GPIOs. This driver provides
338 register access only.
339
Simon Glassc0871112015-07-02 18:15:58 -0600340config PMIC_TPS65090
341 bool "Enable driver for Texas Instruments TPS65090 PMIC"
Simon Glassc0871112015-07-02 18:15:58 -0600342 ---help---
343 The TPS65090 is a PMIC containing several LDOs, DC to DC convertors,
344 FETs and a battery charger. This driver provides register access
345 only, and you can enable the regulator/charger drivers separately if
346 required.
Keerthyf0df1b12016-09-30 09:20:43 +0530347
348config PMIC_PALMAS
349 bool "Enable driver for Texas Instruments PALMAS PMIC"
Keerthyf0df1b12016-09-30 09:20:43 +0530350 ---help---
351 The PALMAS is a PMIC containing several LDOs, SMPS.
352 This driver binds the pmic children.
Keerthy662797b2016-09-30 09:34:02 +0530353
354config PMIC_LP873X
355 bool "Enable driver for Texas Instruments LP873X PMIC"
Keerthy662797b2016-09-30 09:34:02 +0530356 ---help---
357 The LP873X is a PMIC containing couple of LDOs and couple of SMPS.
358 This driver binds the pmic children.
Hou Zhiqiang6d6e5ee2016-12-09 16:08:57 +0800359
Keerthy3006c922017-06-07 19:08:28 +0530360config PMIC_LP87565
361 bool "Enable driver for Texas Instruments LP87565 PMIC"
Keerthy3006c922017-06-07 19:08:28 +0530362 ---help---
363 The LP87565 is a PMIC containing a bunch of SMPS.
364 This driver binds the pmic children.
365
Felix Brack9493f0e2017-11-30 13:52:37 +0100366config DM_PMIC_TPS65910
367 bool "Enable driver for Texas Instruments TPS65910 PMIC"
Felix Brack9493f0e2017-11-30 13:52:37 +0100368 ---help---
369 The TPS65910 is a PMIC containing 3 buck DC-DC converters, one boost
370 DC-DC converter, 8 LDOs and a RTC. This driver binds the SMPS and LDO
371 pmic children.
Patrick Delaunay3cba4512018-03-12 10:46:12 +0100372
Svyatoslav Ryhel8f0fa2b2023-10-27 11:26:12 +0300373config DM_PMIC_TPS80031
374 bool "Enable driver for Texas Instruments TPS80031/TPS80032 PMIC"
375 ---help---
376 This config enables implementation of driver-model pmic uclass features
377 for TPS80031/TPS80032 PMICs. The driver implements read/write operations.
378 This is a Power Management IC with a decent set of peripherals from which
379 5 Buck Converters refered as Switched-mode power supply (SMPS), 11 General-
380 Purpose Low-Dropout Voltage Regulators (LDO), USB OTG Module, Real-Time
381 Clock (RTC) with Timer and Alarm Wake-Up, Two Digital PWM Outputs and more
382 with I2C Compatible Interface. PMIC occupies 4 I2C addresses.
383
Patrick Delaunayd79218f2019-02-04 11:26:17 +0100384config PMIC_STPMIC1
385 bool "Enable support for STMicroelectronics STPMIC1 PMIC"
Samuel Hollandaad02792021-10-08 00:17:14 -0500386 depends on DM_I2C
Urja Rannikkoe008ebf2019-05-16 21:48:42 +0000387 select SYSRESET_CMD_POWEROFF if CMD_POWEROFF && !ARM_PSCI_FW
Patrick Delaunay3cba4512018-03-12 10:46:12 +0100388 ---help---
Patrick Delaunayd79218f2019-02-04 11:26:17 +0100389 The STPMIC1 PMIC provides 4 BUCKs, 6 LDOs, 1 VREF and 2 power switches.
Patrick Delaunay3cba4512018-03-12 10:46:12 +0100390 It is accessed via an I2C interface. The device is used with STM32MP1
391 SoCs. This driver implements register read/write operations.
Keerthya23e47e2019-06-06 16:06:55 +0530392
393config SPL_PMIC_PALMAS
394 bool "Enable driver for Texas Instruments PALMAS PMIC"
Samuel Hollanda0a21592021-10-08 00:17:15 -0500395 depends on SPL_DM_PMIC
Keerthya23e47e2019-06-06 16:06:55 +0530396 help
397 The PALMAS is a PMIC containing several LDOs, SMPS.
398 This driver binds the pmic children in SPL.
399
400config SPL_PMIC_LP873X
401 bool "Enable driver for Texas Instruments LP873X PMIC"
Samuel Hollanda0a21592021-10-08 00:17:15 -0500402 depends on SPL_DM_PMIC
Keerthya23e47e2019-06-06 16:06:55 +0530403 help
404 The LP873X is a PMIC containing couple of LDOs and couple of SMPS.
405 This driver binds the pmic children in SPL.
406
407config SPL_PMIC_LP87565
408 bool "Enable driver for Texas Instruments LP87565 PMIC"
Samuel Hollanda0a21592021-10-08 00:17:15 -0500409 depends on SPL_DM_PMIC
Keerthya23e47e2019-06-06 16:06:55 +0530410 help
411 The LP87565 is a PMIC containing a bunch of SMPS.
412 This driver binds the pmic children in SPL.
Keerthya36bb3c2019-10-24 15:00:50 +0530413
414config PMIC_TPS65941
415 bool "Enable driver for Texas Instruments TPS65941 PMIC"
Manorit Chawdhrybebdc332024-10-15 16:22:17 +0530416 depends on DM_PMIC
Keerthya36bb3c2019-10-24 15:00:50 +0530417 help
418 The TPS65941 is a PMIC containing a bunch of SMPS & LDOs.
419 This driver binds the pmic children.
Samuel Hollandaad02792021-10-08 00:17:14 -0500420
Neil Armstronge422fbe2022-04-27 13:28:09 +0200421config PMIC_TPS65219
422 bool "Enable driver for Texas Instruments TPS65219 PMIC"
423 depends on DM_PMIC
424 help
425 The TPS65219 is a PMIC containing a bunch of SMPS & LDOs.
426 This driver binds the pmic children.
Paul Barkerda981cc2024-02-27 20:40:31 +0000427
428config PMIC_RAA215300
429 bool "Renesas RAA215300 PMIC driver"
430 depends on DM_PMIC
431 help
432 The Renesas RAA215300 PMIC driver includes RTC support, system reset
433 support and several voltage regulators. For now, this driver simply
434 allows register access and will bind the sysreset driver
435 (CONFIG_SYSRESET_RAA215300) if it is enabled.
Samuel Hollandaad02792021-10-08 00:17:14 -0500436endif
Tom Rini97e96f22021-10-12 08:58:58 -0400437
Lukasz Majewskib4e681f2022-03-12 08:11:10 +0100438config PMIC_TPS65217
439 bool "Enable driver for Texas Instruments TPS65217 PMIC"
440 ---help---
441 The TPS65217 is a PMIC containing several LDOs, DC to DC convertors,
442 FETs and a battery charger. This driver provides register access
443 only, and you can enable the regulator/charger drivers separately if
444 required.
445
Tom Rinidb9d9252022-11-19 18:45:15 -0500446config POWER_TPS65218
447 bool "Enable legacy driver for TPS65218 PMIC"
448
449config POWER_TPS62362
450 bool "Enable legacy driver for TPS62362 PMIC"
451
452config SPL_POWER_TPS62362
453 bool "Enable legacy driver for TPS62362 PMIC in SPL"
454 default y if POWER_TPS62362
455 depends on SPL
456
457config SPL_POWER_TPS65910
458 bool "Enable legacy driver for TPS65910 PMIC in SPL"
459 depends on SPL
460
Tom Rini639f1df2022-11-19 18:45:08 -0500461if POWER_LEGACY || SPL_POWER_LEGACY
462
Tom Rinidb9d9252022-11-19 18:45:15 -0500463config POWER_HI6553
464 bool "Enable legacy driver for HI6553 PMIC"
465
466config POWER_LTC3676
467 bool "Enable legacy driver for LTC3676 PMIC"
468
Tom Rinib2f15962022-12-02 16:42:26 -0500469config POWER_PCA9450
470 bool "Enable legacy driver for PCA9450 PMIC"
471
Tom Rinidb9d9252022-11-19 18:45:15 -0500472config POWER_PFUZE100
473 bool "Enable legacy driver for PFUZE100 PMIC"
474
475config POWER_PFUZE3000
476 bool "Enable legacy driver for PFUZE3000 PMIC"
477
Tom Rini97e96f22021-10-12 08:58:58 -0400478config POWER_MC34VR500
479 bool "Enable driver for Freescale MC34VR500 PMIC"
Tom Rini97e96f22021-10-12 08:58:58 -0400480 ---help---
481 The MC34VR500 is used in conjunction with the FSL T1 and LS1 series
482 SoC. It provides 4 buck DC-DC convertors and 5 LDOs, and it is accessed
483 via an I2C interface.
Tom Rini639f1df2022-11-19 18:45:08 -0500484
485endif