1# SPDX-License-Identifier: GPL-2.0-only 2menuconfig REGULATOR 3 bool "Voltage and Current Regulator Support" 4 select LINEAR_RANGES 5 help 6 Generic Voltage and Current Regulator support. 7 8 This framework is designed to provide a generic interface to voltage 9 and current regulators within the Linux kernel. It's intended to 10 provide voltage and current control to client or consumer drivers and 11 also provide status information to user space applications through a 12 sysfs interface. 13 14 The intention is to allow systems to dynamically control regulator 15 output in order to save power and prolong battery life. This applies 16 to both voltage regulators (where voltage output is controllable) and 17 current sinks (where current output is controllable). 18 19 This framework safely compiles out if not selected so that client 20 drivers can still be used in systems with no software controllable 21 regulators. 22 23 If unsure, say no. 24 25 26if REGULATOR 27 28config REGULATOR_DEBUG 29 bool "Regulator debug support" 30 help 31 Say yes here to enable debugging support. 32 33config REGULATOR_FIXED_VOLTAGE 34 tristate "Fixed voltage regulator support" 35 help 36 This driver provides support for fixed voltage regulators, 37 useful for systems which use a combination of software 38 managed regulators and simple non-configurable regulators. 39 40config REGULATOR_VIRTUAL_CONSUMER 41 tristate "Virtual regulator consumer support" 42 help 43 This driver provides a virtual consumer for the voltage and 44 current regulator API which provides sysfs controls for 45 configuring the supplies requested. This is mainly useful 46 for test purposes. 47 48 If unsure, say no. 49 50config REGULATOR_USERSPACE_CONSUMER 51 tristate "Userspace regulator consumer support" 52 help 53 There are some classes of devices that are controlled entirely 54 from user space. Userspace consumer driver provides ability to 55 control power supplies for such devices. 56 57 If unsure, say no. 58 59config REGULATOR_NETLINK_EVENTS 60 bool "Enable support for receiving regulator events via netlink" 61 depends on NET 62 help 63 Enabling this option allows the kernel to broadcast regulator events using 64 the netlink mechanism. User-space applications can subscribe to these events 65 for real-time updates on various regulator events. 66 67 If unsure, say no. 68 69config REGULATOR_88PG86X 70 tristate "Marvell 88PG86X voltage regulators" 71 depends on I2C 72 select REGMAP_I2C 73 help 74 This driver supports Marvell 88PG867 and 88PG868 voltage regulators. 75 They provide two I2C-controlled DC/DC step-down converters with 76 sleep mode and separate enable pins. 77 78config REGULATOR_88PM800 79 tristate "Marvell 88PM800 Power regulators" 80 depends on MFD_88PM800 81 help 82 This driver supports Marvell 88PM800 voltage regulator chips. 83 It delivers digitally programmable output, 84 the voltage is programmed via I2C interface. 85 It's suitable to support PXA988 chips to control VCC_MAIN and 86 various voltages. 87 88config REGULATOR_88PM8607 89 tristate "Marvell 88PM8607 Power regulators" 90 depends on MFD_88PM860X=y 91 help 92 This driver supports 88PM8607 voltage regulator chips. 93 94config REGULATOR_88PM886 95 tristate "Marvell 88PM886 voltage regulators" 96 depends on MFD_88PM886_PMIC 97 help 98 This driver implements support for Marvell 88PM886 voltage regulators. 99 100config REGULATOR_ACT8865 101 tristate "Active-semi act8865 voltage regulator" 102 depends on I2C 103 depends on POWER_SUPPLY 104 select REGMAP_I2C 105 help 106 This driver controls a active-semi act8865 voltage output 107 regulator via I2C bus. 108 109config REGULATOR_ACT8945A 110 tristate "Active-semi ACT8945A voltage regulator" 111 depends on MFD_ACT8945A 112 help 113 This driver controls a active-semi ACT8945A voltage regulator 114 via I2C bus. The ACT8945A features three step-down DC/DC converters 115 and four low-dropout linear regulators, along with a ActivePath 116 battery charger. 117 118config REGULATOR_AD5398 119 tristate "Analog Devices AD5398/AD5821 regulators" 120 depends on I2C 121 help 122 This driver supports AD5398 and AD5821 current regulator chips. 123 If building into module, its name is ad5398.ko. 124 125config REGULATOR_ADP5055 126 tristate "Analog Devices ADP5055 Triple Buck Regulator" 127 depends on I2C 128 select REGMAP_I2C 129 help 130 This driver controls an Analog Devices ADP5055 with triple buck 131 regulators using an I2C interface. 132 133 Say M here if you want to include support for the regulator as a 134 module. 135 136config REGULATOR_ANATOP 137 tristate "Freescale i.MX on-chip ANATOP LDO regulators" 138 depends on ARCH_MXC || COMPILE_TEST 139 depends on MFD_SYSCON 140 help 141 Say y here to support Freescale i.MX on-chip ANATOP LDOs 142 regulators. It is recommended that this option be 143 enabled on i.MX6 platform. 144 145config REGULATOR_AAT2870 146 tristate "AnalogicTech AAT2870 Regulators" 147 depends on MFD_AAT2870_CORE 148 help 149 If you have a AnalogicTech AAT2870 say Y to enable the 150 regulator driver. 151 152config REGULATOR_AB8500 153 bool "ST-Ericsson AB8500 Power Regulators" 154 depends on AB8500_CORE 155 help 156 This driver supports the regulators found on the ST-Ericsson mixed 157 signal AB8500 PMIC 158 159config REGULATOR_ARIZONA_LDO1 160 tristate "Cirrus Madera and Wolfson Arizona class devices LDO1" 161 depends on MFD_ARIZONA || MFD_MADERA 162 depends on SND_SOC 163 help 164 Support for the LDO1 regulators found on Cirrus Logic Madera codecs 165 and Wolfson Microelectronic Arizona codecs. 166 167config REGULATOR_ARIZONA_MICSUPP 168 tristate "Cirrus Madera and Wolfson Arizona class devices MICSUPP" 169 depends on MFD_ARIZONA || MFD_MADERA 170 depends on SND_SOC 171 help 172 Support for the MICSUPP regulators found on Cirrus Logic Madera codecs 173 and Wolfson Microelectronic Arizona codecs 174 devices. 175 176config REGULATOR_ARM_SCMI 177 tristate "SCMI based regulator driver" 178 depends on ARM_SCMI_PROTOCOL && OF 179 help 180 This adds the regulator driver support for ARM platforms using SCMI 181 protocol for device voltage management. 182 This driver uses SCMI Message Protocol driver to interact with the 183 firmware providing the device Voltage functionality. 184 185config REGULATOR_AS3711 186 tristate "AS3711 PMIC" 187 depends on MFD_AS3711 188 help 189 This driver provides support for the voltage regulators on the 190 AS3711 PMIC 191 192config REGULATOR_AS3722 193 tristate "AMS AS3722 PMIC Regulators" 194 depends on MFD_AS3722 195 help 196 This driver provides support for the voltage regulators on the 197 AS3722 PMIC. This will enable support for all the software 198 controllable DCDC/LDO regulators. 199 200config REGULATOR_ATC260X 201 tristate "Actions Semi ATC260x PMIC Regulators" 202 depends on MFD_ATC260X 203 help 204 This driver provides support for the voltage regulators on the 205 ATC260x PMICs. This will enable support for all the software 206 controllable DCDC/LDO regulators. 207 208config REGULATOR_AW37503 209 tristate "Awinic AW37503 Dual Output Power regulators" 210 depends on I2C && GPIOLIB 211 select REGMAP_I2C 212 help 213 This driver supports AW37503 single inductor - dual output 214 power supply specifically designed for display panels. 215 216config REGULATOR_AXP20X 217 tristate "X-POWERS AXP20X PMIC Regulators" 218 depends on MFD_AXP20X 219 help 220 This driver provides support for the voltage regulators on the 221 AXP20X PMIC. 222 223config REGULATOR_BCM590XX 224 tristate "Broadcom BCM590xx PMU Regulators" 225 depends on MFD_BCM590XX 226 help 227 This driver provides support for the voltage regulators on the 228 BCM590xx PMUs. This will enable support for the software 229 controllable LDO/Switching regulators. 230 231config REGULATOR_BD71815 232 tristate "ROHM BD71815 Power Regulator" 233 depends on MFD_ROHM_BD71828 234 select REGULATOR_ROHM 235 help 236 This driver supports voltage regulators on ROHM BD71815 PMIC. 237 This will enable support for the software controllable buck 238 and LDO regulators and a current regulator for LEDs. 239 240 This driver can also be built as a module. If so, the module 241 will be called bd71815-regulator. 242 243config REGULATOR_BD71828 244 tristate "ROHM BD71828 Power Regulator" 245 depends on MFD_ROHM_BD71828 246 select REGULATOR_ROHM 247 help 248 This driver supports voltage regulators on ROHM BD71828 PMIC. 249 This will enable support for the software controllable buck 250 and LDO regulators. 251 252 This driver can also be built as a module. If so, the module 253 will be called bd71828-regulator. 254 255config REGULATOR_BD718XX 256 tristate "ROHM BD71837 Power Regulator" 257 depends on MFD_ROHM_BD718XX 258 select REGULATOR_ROHM 259 help 260 This driver supports voltage regulators on ROHM BD71837 PMIC. 261 This will enable support for the software controllable buck 262 and LDO regulators. 263 264 This driver can also be built as a module. If so, the module 265 will be called bd718x7-regulator. 266 267config REGULATOR_BD9571MWV 268 tristate "ROHM BD9571MWV Regulators" 269 depends on MFD_BD9571MWV 270 help 271 This driver provides support for the voltage regulators on the 272 ROHM BD9571MWV PMIC. This will enable support for the software 273 controllable regulator and voltage sampling units. 274 275 This driver can also be built as a module. If so, the module 276 will be called bd9571mwv-regulator. 277 278config REGULATOR_BD957XMUF 279 tristate "ROHM BD9576MUF and BD9573MUF Regulators" 280 depends on MFD_ROHM_BD957XMUF 281 help 282 This driver supports voltage regulators on ROHM BD9576MUF and 283 BD9573MUF PMICs. 284 285 This driver can also be built as a module. If so, the module 286 will be called bd9576-regulator. 287 288config REGULATOR_BD96801 289 tristate "ROHM BD96801 Power Regulator" 290 depends on MFD_ROHM_BD96801 291 select REGULATOR_ROHM 292 help 293 This driver supports voltage regulators on ROHM BD96801 PMIC. 294 This will enable support for the software controllable buck 295 and LDO regulators. 296 297 This driver can also be built as a module. If so, the module 298 will be called bd96801-regulator. 299 300config REGULATOR_CPCAP 301 tristate "Motorola CPCAP regulator" 302 depends on MFD_CPCAP 303 help 304 Say y here for CPCAP regulator found on some Motorola phones 305 and tablets such as Droid 4. 306 307config REGULATOR_CROS_EC 308 tristate "ChromeOS EC regulators" 309 depends on CROS_EC && OF 310 help 311 This driver supports voltage regulators that is connected to ChromeOS 312 EC and controlled through EC host commands. 313 314 This driver can also be built as a module. If so, the module 315 will be called cros-ec-regulator. 316 317config REGULATOR_DA903X 318 tristate "Dialog Semiconductor DA9030/DA9034 regulators" 319 depends on PMIC_DA903X 320 depends on !CC_IS_CLANG # https://llvm.org/pr38789 321 help 322 Say y here to support the BUCKs and LDOs regulators found on 323 Dialog Semiconductor DA9030/DA9034 PMIC. 324 325config REGULATOR_DA9052 326 tristate "Dialog Semiconductor DA9052/DA9053 regulators" 327 depends on PMIC_DA9052 328 help 329 This driver supports the voltage regulators of DA9052-BC and 330 DA9053-AA/Bx PMIC. 331 332config REGULATOR_DA9055 333 tristate "Dialog Semiconductor DA9055 regulators" 334 depends on MFD_DA9055 335 help 336 Say y here to support the BUCKs and LDOs regulators found on 337 Dialog Semiconductor DA9055 PMIC. 338 339 This driver can also be built as a module. If so, the module 340 will be called da9055-regulator. 341 342config REGULATOR_DA9062 343 tristate "Dialog Semiconductor DA9061/62 regulators" 344 depends on MFD_DA9062 345 help 346 Say y here to support the BUCKs and LDOs regulators found on 347 DA9061 and DA9062 PMICs. 348 349 This driver can also be built as a module. If so, the module 350 will be called da9062-regulator. 351 352config REGULATOR_DA9063 353 tristate "Dialog Semiconductor DA9063 regulators" 354 depends on MFD_DA9063 && OF 355 help 356 Say y here to support the BUCKs and LDOs regulators found on 357 DA9063 PMICs. 358 359 This driver can also be built as a module. If so, the module 360 will be called da9063-regulator. 361 362config REGULATOR_DA9121 363 tristate "Dialog Semiconductor DA9121/DA9122/DA9220/DA9217/DA9130/DA9131/DA9132 regulator" 364 depends on I2C && OF 365 select REGMAP_I2C 366 help 367 Say y here to support for the Dialog Semiconductor DA9121. The 368 DA9121 is a single channel dual-phase buck converter controlled 369 through an I2C interface. 370 371 DA9121 Single-channel dual-phase 10A buck converter 372 DA9130 Single-channel dual-phase 10A buck converter (Automotive) 373 DA9217 Single-channel dual-phase 6A buck converter 374 DA9122 Dual-channel single-phase 5A buck converter 375 DA9131 Dual-channel single-phase 5A buck converter (Automotive) 376 DA9220 Dual-channel single-phase 3A buck converter 377 DA9132 Dual-channel single-phase 3A buck converter (Automotive) 378 379 This driver can also be built as a module. If so, the module 380 will be called da9121-regulator. 381 382config REGULATOR_DA9210 383 tristate "Dialog Semiconductor DA9210 regulator" 384 depends on I2C 385 select REGMAP_I2C 386 help 387 Say y here to support for the Dialog Semiconductor DA9210. 388 The DA9210 is a multi-phase synchronous step down 389 converter 12A DC-DC Buck controlled through an I2C 390 interface. 391 392config REGULATOR_DA9211 393 tristate "Dialog Semiconductor DA9211/DA9212/DA9213/DA9223/DA9214/DA9224/DA9215/DA9225 regulator" 394 depends on I2C 395 select REGMAP_I2C 396 help 397 Say y here to support for the Dialog Semiconductor DA9211/DA9212 398 /DA9213/DA9214/DA9215. 399 The DA9211/DA9212/DA9213/DA9214/DA9215 is a multi-phase synchronous 400 step down converter 12A or 16A DC-DC Buck controlled through an I2C 401 interface. 402 403config REGULATOR_DBX500_PRCMU 404 bool 405 406config REGULATOR_DB8500_PRCMU 407 bool "ST-Ericsson DB8500 Voltage Domain Regulators" 408 depends on MFD_DB8500_PRCMU 409 select REGULATOR_DBX500_PRCMU 410 help 411 This driver supports the voltage domain regulators controlled by the 412 DB8500 PRCMU 413 414config REGULATOR_FAN53555 415 tristate "Fairchild FAN53555 Regulator" 416 depends on I2C 417 select REGMAP_I2C 418 help 419 This driver supports Fairchild FAN53555 Digitally Programmable 420 TinyBuck Regulator. The FAN53555 is a step-down switching voltage 421 regulator that delivers a digitally programmable output from an 422 input voltage supply of 2.5V to 5.5V. The output voltage is 423 programmed through an I2C interface. 424 425config REGULATOR_FAN53880 426 tristate "Fairchild FAN53880 Regulator" 427 depends on I2C && OF 428 select REGMAP_I2C 429 help 430 This driver supports Fairchild (ON Semiconductor) FAN53880 431 regulator. The regulator is a programmable power management IC 432 (PMIC), it is controlled by I2C and provides one BUCK, one BOOST 433 and four LDO outputs. 434 435config REGULATOR_GPIO 436 tristate "GPIO regulator support" 437 depends on GPIOLIB || COMPILE_TEST 438 help 439 This driver provides support for regulators that can be 440 controlled via gpios. 441 It is capable of supporting current and voltage regulators 442 and the platform has to provide a mapping of GPIO-states 443 to target volts/amps. 444 445config REGULATOR_HI6421 446 tristate "HiSilicon Hi6421 PMIC voltage regulator support" 447 depends on MFD_HI6421_PMIC && OF 448 help 449 This driver provides support for the voltage regulators on the 450 HiSilicon Hi6421 PMU / Codec IC. 451 Hi6421 is a multi-function device which, on regulator part, provides 452 21 general purpose LDOs, 3 dedicated LDOs, and 5 BUCKs. All 453 of them come with support to either ECO (idle) or sleep mode. 454 455config REGULATOR_HI6421V530 456 tristate "HiSilicon Hi6421v530 PMIC voltage regulator support" 457 depends on MFD_HI6421_PMIC && OF 458 help 459 This driver provides support for the voltage regulators on 460 HiSilicon Hi6421v530 PMU / Codec IC. 461 Hi6421v530 is a multi-function device which, on regulator part, 462 provides 5 general purpose LDOs, and all of them come with support 463 to either ECO (idle) or sleep mode. 464 465config REGULATOR_HI655X 466 tristate "Hisilicon HI655X PMIC regulators support" 467 depends on ARCH_HISI || COMPILE_TEST 468 depends on MFD_HI655X_PMIC && OF 469 help 470 This driver provides support for the voltage regulators of the 471 Hisilicon Hi655x PMIC device. 472 473config REGULATOR_HI6421V600 474 tristate "HiSilicon Hi6421v600 PMIC voltage regulator support" 475 depends on MFD_HI6421_SPMI && OF 476 select REGMAP 477 help 478 This driver provides support for the voltage regulators on 479 HiSilicon Hi6421v600 PMU / Codec IC. 480 This is used on Kirin 3670 boards, like HiKey 970. 481 482config REGULATOR_ISL9305 483 tristate "Intersil ISL9305 regulator" 484 depends on I2C 485 select REGMAP_I2C 486 help 487 This driver supports ISL9305 voltage regulator chip. 488 489config REGULATOR_ISL6271A 490 tristate "Intersil ISL6271A Power regulator" 491 depends on I2C 492 help 493 This driver supports ISL6271A voltage regulator chip. 494 495config REGULATOR_LM363X 496 tristate "TI LM363X voltage regulators" 497 depends on MFD_TI_LMU 498 help 499 This driver supports LM3631, LM3632 and LM36274 voltage regulators for 500 the LCD bias. 501 One boost output voltage is configurable and always on. 502 Other LDOs are used for the display module. 503 504config REGULATOR_LOCHNAGAR 505 tristate "Cirrus Logic Lochnagar regulator driver" 506 depends on MFD_LOCHNAGAR 507 help 508 This enables regulator support on the Cirrus Logic Lochnagar audio 509 development board. 510 511config REGULATOR_LP3971 512 tristate "National Semiconductors LP3971 PMIC regulator driver" 513 depends on I2C 514 help 515 Say Y here to support the voltage regulators and convertors 516 on National Semiconductors LP3971 PMIC 517 518config REGULATOR_LP3972 519 tristate "National Semiconductors LP3972 PMIC regulator driver" 520 depends on I2C 521 help 522 Say Y here to support the voltage regulators and convertors 523 on National Semiconductors LP3972 PMIC 524 525config REGULATOR_LP872X 526 tristate "TI/National Semiconductor LP8720/LP8725 voltage regulators" 527 depends on I2C 528 select REGMAP_I2C 529 help 530 This driver supports LP8720/LP8725 PMIC 531 532config REGULATOR_LP873X 533 tristate "TI LP873X Power regulators" 534 depends on MFD_TI_LP873X && OF 535 help 536 This driver supports LP873X voltage regulator chips. LP873X 537 provides two step-down converters and two general-purpose LDO 538 voltage regulators. It supports software based voltage control 539 for different voltage domains 540 541config REGULATOR_LP8755 542 tristate "TI LP8755 High Performance PMU driver" 543 depends on I2C 544 select REGMAP_I2C 545 help 546 This driver supports LP8755 High Performance PMU driver. This 547 chip contains six step-down DC/DC converters which can support 548 9 mode multiphase configuration. 549 550config REGULATOR_LP87565 551 tristate "TI LP87565 Power regulators" 552 depends on MFD_TI_LP87565 && OF 553 help 554 This driver supports LP87565 voltage regulator chips. LP87565 555 provides four step-down converters. It supports software based 556 voltage control for different voltage domains 557 558config REGULATOR_LP8788 559 tristate "TI LP8788 Power Regulators" 560 depends on MFD_LP8788 561 help 562 This driver supports LP8788 voltage regulator chip. 563 564config REGULATOR_LTC3589 565 tristate "LTC3589 8-output voltage regulator" 566 depends on I2C 567 select REGMAP_I2C 568 help 569 This enables support for the LTC3589, LTC3589-1, and LTC3589-2 570 8-output regulators controlled via I2C. 571 572config REGULATOR_LTC3676 573 tristate "LTC3676 8-output voltage regulator" 574 depends on I2C 575 select REGMAP_I2C 576 help 577 This enables support for the LTC3676 578 8-output regulators controlled via I2C. 579 580config REGULATOR_MAX14577 581 tristate "Maxim 14577/77836 regulator" 582 depends on MFD_MAX14577 583 help 584 This driver controls a Maxim MAX14577/77836 regulator via I2C bus. 585 The MAX14577 regulators include safeout LDO and charger current 586 regulator. The MAX77836 has two additional LDOs. 587 588config REGULATOR_MAX1586 589 tristate "Maxim 1586/1587 voltage regulator" 590 depends on I2C 591 help 592 This driver controls a Maxim 1586 or 1587 voltage output 593 regulator via I2C bus. The provided regulator is suitable 594 for PXA27x chips to control VCC_CORE and VCC_USIM voltages. 595 596config REGULATOR_MAX5970 597 tristate "Maxim 5970/5978 power switch and monitor" 598 depends on I2C 599 depends on OF 600 depends on MFD_MAX5970 601 help 602 This driver controls a Maxim 5970/5978 switch via I2C bus. 603 The MAX5970/5978 is a smart switch with no output regulation, but 604 fault protection and voltage and current monitoring capabilities. 605 606config REGULATOR_MAX77503 607 tristate "Analog Devices MAX77503 Regulator" 608 depends on I2C 609 select REGMAP_I2C 610 help 611 This driver controls a Analog Devices MAX77503 14V input, 1.5A 612 high-efficiency buck converter via I2C bus. 613 Say M here if you want to include support for the regulator as a 614 module. 615 616config REGULATOR_MAX77541 617 tristate "Analog Devices MAX77541/77540 Regulator" 618 depends on MFD_MAX77541 619 help 620 This driver controls a Analog Devices MAX77541/77540 regulators 621 via I2C bus. Both MAX77540 and MAX77541 are dual-phase 622 high-efficiency buck converter. Say Y here to 623 enable the regulator driver. 624 Say M here if you want to include support for the regulator as a 625 module. 626 627config REGULATOR_MAX77620 628 tristate "Maxim 77620/MAX20024 voltage regulator" 629 depends on MFD_MAX77620 || COMPILE_TEST 630 help 631 This driver controls Maxim MAX77620 voltage output regulator 632 via I2C bus. The provided regulator is suitable for Tegra 633 chip to control Step-Down DC-DC and LDOs. Say Y here to 634 enable the regulator driver. 635 636config REGULATOR_MAX77650 637 tristate "Maxim MAX77650/77651 regulator support" 638 depends on MFD_MAX77650 || COMPILE_TEST 639 help 640 Regulator driver for MAX77650/77651 PMIC from Maxim 641 Semiconductor. This device has a SIMO with three independent 642 power rails and an LDO. 643 644config REGULATOR_MAX77857 645 tristate "ADI MAX77857/MAX77831 regulator support" 646 depends on I2C 647 select REGMAP_I2C 648 help 649 This driver controls a ADI MAX77857 and MAX77831 regulators. 650 via I2C bus. MAX77857 and MAX77831 are high efficiency buck-boost 651 converters with input voltage range (2.5V to 16V). Say Y here to 652 enable the regulator driver 653 654config REGULATOR_MAX8649 655 tristate "Maxim 8649 voltage regulator" 656 depends on I2C 657 select REGMAP_I2C 658 help 659 This driver controls a Maxim 8649 voltage output regulator via 660 I2C bus. 661 662config REGULATOR_MAX8660 663 tristate "Maxim 8660/8661 voltage regulator" 664 depends on I2C 665 help 666 This driver controls a Maxim 8660/8661 voltage output 667 regulator via I2C bus. 668 669config REGULATOR_MAX8893 670 tristate "Maxim 8893 voltage regulator" 671 depends on I2C 672 select REGMAP_I2C 673 help 674 This driver controls a Maxim 8893 voltage output 675 regulator via I2C bus. 676 677config REGULATOR_MAX8907 678 tristate "Maxim 8907 voltage regulator" 679 depends on MFD_MAX8907 || COMPILE_TEST 680 help 681 This driver controls a Maxim 8907 voltage output regulator 682 via I2C bus. The provided regulator is suitable for Tegra 683 chip to control Step-Down DC-DC and LDOs. 684 685config REGULATOR_MAX8925 686 tristate "Maxim MAX8925 Power Management IC" 687 depends on MFD_MAX8925 688 help 689 Say y here to support the voltage regulator of Maxim MAX8925 PMIC. 690 691config REGULATOR_MAX8952 692 tristate "Maxim MAX8952 Power Management IC" 693 depends on I2C 694 help 695 This driver controls a Maxim 8952 voltage output regulator 696 via I2C bus. Maxim 8952 has one voltage output and supports 4 DVS 697 modes ranging from 0.77V to 1.40V by 0.01V steps. 698 699config REGULATOR_MAX8973 700 tristate "Maxim MAX8973A voltage regulator" 701 depends on I2C 702 depends on THERMAL && THERMAL_OF 703 select REGMAP_I2C 704 help 705 The MAXIM MAX8973A high-efficiency. three phase, DC-DC step-down 706 switching regulator delivers up to 9A of output current. Each 707 phase operates at a 2MHz fixed frequency with a 120 deg shift 708 from the adjacent phase, allowing the use of small magnetic component. 709 710config REGULATOR_MAX8997 711 tristate "Maxim 8997/8966 regulator" 712 depends on MFD_MAX8997 713 help 714 This driver controls a Maxim 8997/8966 regulator 715 via I2C bus. The provided regulator is suitable for S5PC110, 716 S5PV210, and Exynos-4 chips to control VCC_CORE and 717 VCC_USIM voltages. 718 719config REGULATOR_MAX8998 720 tristate "Maxim 8998 voltage regulator" 721 depends on MFD_MAX8998 722 help 723 This driver controls a Maxim 8998 voltage output regulator 724 via I2C bus. The provided regulator is suitable for S3C6410 725 and S5PC1XX chips to control VCC_CORE and VCC_USIM voltages. 726 727config REGULATOR_MAX20086 728 tristate "Maxim MAX20086-MAX20089 Camera Power Protectors" 729 depends on I2C 730 select REGMAP_I2C 731 help 732 This driver controls a Maxim MAX20086-MAX20089 camera power 733 protectorvia I2C bus. The regulator has 2 or 4 outputs depending on 734 the device model. This driver is only capable to turn on/off them. 735 736config REGULATOR_MAX20411 737 tristate "Maxim MAX20411 High-Efficiency Single Step-Down Converter" 738 depends on I2C 739 select REGMAP_I2C 740 help 741 This driver controls the Maxim MAX20411 family of high-efficiency, 742 syncrhonous step-down converters. 743 744config REGULATOR_MAX77686 745 tristate "Maxim 77686 regulator" 746 depends on MFD_MAX77686 || COMPILE_TEST 747 help 748 This driver controls a Maxim 77686 regulator 749 via I2C bus. The provided regulator is suitable for 750 Exynos-4 chips to control VARM and VINT voltages. 751 752config REGULATOR_MAX77693 753 tristate "Maxim 77693/77843 regulator" 754 depends on MFD_MAX77693 || MFD_MAX77843 || COMPILE_TEST 755 help 756 This driver controls a Maxim 77693/77843 regulators via I2C bus. 757 The regulators include two LDOs, 'SAFEOUT1', 'SAFEOUT2' 758 and one current regulator 'CHARGER'. This is suitable for 759 Exynos-4x12 (MAX77693) or Exynos5433 (MAX77843) SoC chips. 760 761config REGULATOR_MAX77802 762 tristate "Maxim 77802 regulator" 763 depends on MFD_MAX77686 || COMPILE_TEST 764 help 765 This driver controls a Maxim 77802 regulator 766 via I2C bus. The provided regulator is suitable for 767 Exynos5420/Exynos5800 SoCs to control various voltages. 768 It includes support for control of voltage and ramp speed. 769 770config REGULATOR_MAX77826 771 tristate "Maxim 77826 regulator" 772 depends on I2C 773 select REGMAP_I2C 774 help 775 This driver controls a Maxim 77826 regulator via I2C bus. 776 The regulator include 15 LDOs, BUCK and BUCK BOOST regulator. 777 It includes support for control of output voltage. This 778 regulator is found on the Samsung Galaxy S5 (klte) smartphone. 779 780config REGULATOR_MC13XXX_CORE 781 tristate 782 783config REGULATOR_MC13783 784 tristate "Freescale MC13783 regulator driver" 785 depends on MFD_MC13XXX 786 select REGULATOR_MC13XXX_CORE 787 help 788 Say y here to support the regulators found on the Freescale MC13783 789 PMIC. 790 791config REGULATOR_MC13892 792 tristate "Freescale MC13892 regulator driver" 793 depends on MFD_MC13XXX 794 select REGULATOR_MC13XXX_CORE 795 help 796 Say y here to support the regulators found on the Freescale MC13892 797 PMIC. 798 799config REGULATOR_MCP16502 800 tristate "Microchip MCP16502 PMIC" 801 depends on I2C && OF 802 select REGMAP_I2C 803 help 804 Say y here to support the MCP16502 PMIC. This driver supports 805 basic operations (get/set voltage, get/set operating mode) 806 through the regulator interface. In addition it enables 807 suspend-to-ram/standby transition. 808 809config REGULATOR_MP5416 810 tristate "Monolithic MP5416 PMIC" 811 depends on I2C && OF 812 select REGMAP_I2C 813 help 814 Say y here to support the MP5416 PMIC. This will enable supports 815 the software controllable 4 buck and 4 LDO regulators. 816 Say M here if you want to include support for the regulator as a 817 module. 818 819config REGULATOR_MP8859 820 tristate "MPS MP8859 regulator driver" 821 depends on I2C 822 select REGMAP_I2C 823 help 824 Say y here to support the MP8859 voltage regulator. This driver 825 supports basic operations (get/set voltage) through the regulator 826 interface. 827 Say M here if you want to include support for the regulator as a 828 module. The module will be named "mp8859". 829 830config REGULATOR_MP886X 831 tristate "MPS MP8869 regulator driver" 832 depends on I2C && OF 833 select REGMAP_I2C 834 help 835 This driver supports the MP8869 voltage regulator. 836 837config REGULATOR_MPQ7920 838 tristate "Monolithic MPQ7920 PMIC" 839 depends on I2C && OF 840 select REGMAP_I2C 841 help 842 Say y here to support the MPQ7920 PMIC. This will enable supports 843 the software controllable 4 buck and 5 LDO regulators. 844 This driver supports the control of different power rails of device 845 through regulator interface. 846 847config REGULATOR_MT6311 848 tristate "MediaTek MT6311 PMIC" 849 depends on I2C 850 select REGMAP_I2C 851 help 852 Say y here to select this option to enable the power regulator of 853 MediaTek MT6311 PMIC. 854 This driver supports the control of different power rails of device 855 through regulator interface. 856 857config REGULATOR_MT6315 858 tristate "MediaTek MT6315 PMIC" 859 depends on SPMI 860 select REGMAP_SPMI 861 help 862 Say y here to select this option to enable the power regulator of 863 MediaTek MT6315 PMIC. 864 This driver supports the control of different power rails of device 865 through regulator interface. 866 867config REGULATOR_MT6323 868 tristate "MediaTek MT6323 PMIC" 869 depends on MFD_MT6397 870 help 871 Say y here to select this option to enable the power regulator of 872 MediaTek MT6323 PMIC. 873 This driver supports the control of different power rails of device 874 through regulator interface. 875 876config REGULATOR_MT6331 877 tristate "MediaTek MT6331 PMIC" 878 depends on MFD_MT6397 879 help 880 Say y here to select this option to enable the power regulator of 881 MediaTek MT6331 PMIC. 882 This driver supports the control of different power rails of device 883 through regulator interface 884 885config REGULATOR_MT6332 886 tristate "MediaTek MT6332 PMIC" 887 depends on MFD_MT6397 888 help 889 Say y here to select this option to enable the power regulator of 890 MediaTek MT6332 PMIC. 891 This driver supports the control of different power rails of device 892 through regulator interface 893 894config REGULATOR_MT6357 895 tristate "MediaTek MT6357 PMIC" 896 depends on MFD_MT6397 897 help 898 Say y here to select this option to enable the power regulator of 899 MediaTek MT6357 PMIC. 900 This driver supports the control of different power rails of device 901 through regulator interface. 902 903config REGULATOR_MT6358 904 tristate "MediaTek MT6358 PMIC" 905 depends on MFD_MT6397 906 help 907 Say y here to select this option to enable the power regulator of 908 MediaTek MT6358 PMIC. 909 This driver supports the control of different power rails of device 910 through regulator interface. 911 912config REGULATOR_MT6359 913 tristate "MediaTek MT6359 PMIC" 914 depends on MFD_MT6397 915 help 916 Say y here to select this option to enable the power regulator of 917 MediaTek MT6359 PMIC. 918 This driver supports the control of different power rails of device 919 through regulator interface. 920 921config REGULATOR_MT6360 922 tristate "MT6360 SubPMIC Regulator" 923 depends on MFD_MT6360 924 help 925 Say Y here to enable MT6360 regulator support. 926 This is support MT6360 PMIC/LDO part include 927 2-channel buck with Thermal Shutdown and Overload Protection 928 6-channel High PSRR and Low Dropout LDO. 929 930config REGULATOR_MT6370 931 tristate "MT6370 SubPMIC Regulator" 932 depends on MFD_MT6370 933 help 934 Say Y here to enable MT6370 regulator support. 935 This driver supports the control for DisplayBias voltages and one 936 general purpose LDO which is commonly used to drive the vibrator. 937 938config REGULATOR_MT6380 939 tristate "MediaTek MT6380 PMIC" 940 depends on MTK_PMIC_WRAP 941 help 942 Say y here to select this option to enable the power regulator of 943 MediaTek MT6380 PMIC. 944 This driver supports the control of different power rails of device 945 through regulator interface. 946 947config REGULATOR_MT6397 948 tristate "MediaTek MT6397 PMIC" 949 depends on MFD_MT6397 950 help 951 Say y here to select this option to enable the power regulator of 952 MediaTek MT6397 PMIC. 953 This driver supports the control of different power rails of device 954 through regulator interface. 955 956config REGULATOR_MTK_DVFSRC 957 tristate "MediaTek DVFSRC regulator driver" 958 depends on MTK_DVFSRC 959 help 960 Say y here to control regulator by DVFSRC (dynamic voltage 961 and frequency scaling resource collector). 962 This driver supports to control regulators via the DVFSRC 963 of Mediatek. It allows for voting on regulator state 964 between multiple users. 965 966config REGULATOR_PALMAS 967 tristate "TI Palmas PMIC Regulators" 968 depends on MFD_PALMAS 969 help 970 If you wish to control the regulators on the Palmas series of 971 chips say Y here. This will enable support for all the software 972 controllable SMPS/LDO regulators. 973 974 The regulators available on Palmas series chips vary depending 975 on the muxing. This is handled automatically in the driver by 976 reading the mux info from OTP. 977 978config REGULATOR_PBIAS 979 tristate "PBIAS OMAP regulator driver" 980 depends on (ARCH_OMAP || COMPILE_TEST) && MFD_SYSCON 981 help 982 Say y here to support pbias regulator for mmc1:SD card i/o 983 on OMAP SoCs. 984 This driver provides support for OMAP pbias modelled 985 regulators. 986 987config REGULATOR_PCA9450 988 tristate "NXP PCA9450A/PCA9450B/PCA9450C regulator driver" 989 depends on I2C 990 select REGMAP_I2C 991 help 992 Say y here to support the NXP PCA9450A/PCA9450B/PCA9450C PMIC 993 regulator driver. 994 995config REGULATOR_PF9453 996 tristate "NXP PF9453 regulator driver" 997 depends on I2C 998 select REGMAP_I2C 999 help 1000 Say y here to support the NXP PF9453 PMIC regulator driver. 1001 1002config REGULATOR_PCAP 1003 tristate "Motorola PCAP2 regulator driver" 1004 depends on EZX_PCAP 1005 help 1006 This driver provides support for the voltage regulators of the 1007 PCAP2 PMIC. 1008 1009config REGULATOR_PF8X00 1010 tristate "NXP PF8100/PF8121A/PF8200 regulator driver" 1011 depends on I2C && OF 1012 select REGMAP_I2C 1013 help 1014 Say y here to support the regulators found on the NXP 1015 PF8100/PF8121A/PF8200 PMIC. 1016 1017 Say M here if you want to support for the regulators found 1018 on the NXP PF8100/PF8121A/PF8200 PMIC. The module will be named 1019 "pf8x00-regulator". 1020 1021config REGULATOR_PFUZE100 1022 tristate "Freescale PFUZE100/200/3000/3001 regulator driver" 1023 depends on I2C && OF 1024 select REGMAP_I2C 1025 help 1026 Say y here to support the regulators found on the Freescale 1027 PFUZE100/200/3000/3001 PMIC. 1028 1029config REGULATOR_PV88060 1030 tristate "Powerventure Semiconductor PV88060 regulator" 1031 depends on I2C 1032 select REGMAP_I2C 1033 help 1034 Say y here to support the voltage regulators and convertors 1035 PV88060 1036 1037config REGULATOR_PV88080 1038 tristate "Powerventure Semiconductor PV88080 regulator" 1039 depends on I2C 1040 select REGMAP_I2C 1041 help 1042 Say y here to support the buck convertors on PV88080 1043 1044config REGULATOR_PV88090 1045 tristate "Powerventure Semiconductor PV88090 regulator" 1046 depends on I2C 1047 select REGMAP_I2C 1048 help 1049 Say y here to support the voltage regulators and convertors 1050 on PV88090 1051 1052config REGULATOR_PWM 1053 tristate "PWM voltage regulator" 1054 depends on PWM 1055 help 1056 This driver supports PWM controlled voltage regulators. PWM 1057 duty cycle can increase or decrease the voltage. 1058 1059config REGULATOR_QCOM_PM8008 1060 tristate "Qualcomm PM8008 PMIC regulators" 1061 depends on MFD_QCOM_PM8008 1062 help 1063 Select this option to enable support for the voltage regulators in 1064 Qualcomm PM8008 PMICs. 1065 1066config REGULATOR_QCOM_REFGEN 1067 tristate "Qualcomm REFGEN regulator driver" 1068 depends on ARCH_QCOM || COMPILE_TEST 1069 depends on HAS_IOMEM 1070 depends on REGMAP 1071 help 1072 This driver supports the MMIO-mapped reference voltage regulator, 1073 used internally by some PHYs on many Qualcomm SoCs. 1074 1075 Say M here if you want to include support for this regulator as 1076 a module. The module will be named "qcom-refgen-regulator". 1077 1078config REGULATOR_QCOM_RPM 1079 tristate "Qualcomm RPM regulator driver" 1080 depends on MFD_QCOM_RPM 1081 help 1082 If you say yes to this option, support will be included for the 1083 regulators exposed by the Resource Power Manager found in Qualcomm 1084 8660, 8960 and 8064 based devices. 1085 1086 Say M here if you want to include support for the regulators on the 1087 Qualcomm RPM as a module. The module will be named 1088 "qcom_rpm-regulator". 1089 1090config REGULATOR_QCOM_RPMH 1091 tristate "Qualcomm Technologies, Inc. RPMh regulator driver" 1092 depends on QCOM_RPMH || (QCOM_RPMH=n && COMPILE_TEST) 1093 depends on QCOM_COMMAND_DB || (QCOM_COMMAND_DB=n && COMPILE_TEST) 1094 help 1095 This driver supports control of PMIC regulators via the RPMh hardware 1096 block found on Qualcomm Technologies Inc. SoCs. RPMh regulator 1097 control allows for voting on regulator state between multiple 1098 processors within the SoC. 1099 1100config REGULATOR_QCOM_SMD_RPM 1101 tristate "Qualcomm SMD based RPM regulator driver" 1102 depends on QCOM_SMD_RPM 1103 help 1104 If you say yes to this option, support will be included for the 1105 regulators exposed by the Resource Power Manager found in Qualcomm 1106 8974 based devices. 1107 1108 Say M here if you want to include support for the regulators on the 1109 Qualcomm RPM as a module. The module will be named 1110 "qcom_smd-regulator". 1111 1112config REGULATOR_QCOM_SPMI 1113 tristate "Qualcomm SPMI regulator driver" 1114 depends on SPMI || COMPILE_TEST 1115 help 1116 If you say yes to this option, support will be included for the 1117 regulators found in Qualcomm SPMI PMICs. 1118 1119 Say M here if you want to include support for the regulators on the 1120 Qualcomm SPMI PMICs as a module. The module will be named 1121 "qcom_spmi-regulator". 1122 1123config REGULATOR_QCOM_USB_VBUS 1124 tristate "Qualcomm USB Vbus regulator driver" 1125 depends on SPMI || COMPILE_TEST 1126 help 1127 If you say yes to this option, support will be included for the 1128 regulator used to enable the VBUS output. 1129 1130 Say M here if you want to include support for enabling the VBUS output 1131 as a module. The module will be named "qcom_usb_vbus_regulator". 1132 1133config REGULATOR_RAA215300 1134 tristate "Renesas RAA215300 driver" 1135 select REGMAP_I2C 1136 depends on COMMON_CLK 1137 depends on I2C 1138 help 1139 If you say yes to this option, support will be included for the 1140 Renesas RAA215300 PMIC. 1141 1142 Say M here if you want to include support for Renesas RAA215300 PMIC 1143 as a module. The module will be named "raa215300". 1144 1145config REGULATOR_RASPBERRYPI_TOUCHSCREEN_ATTINY 1146 tristate "Raspberry Pi 7-inch touchscreen panel ATTINY regulator" 1147 depends on BACKLIGHT_CLASS_DEVICE 1148 depends on I2C 1149 depends on OF_GPIO 1150 select REGMAP_I2C 1151 help 1152 This driver supports ATTINY regulator on the Raspberry Pi 7-inch 1153 touchscreen unit. The regulator is used to enable power to the 1154 TC358762, display and to control backlight. 1155 1156config REGULATOR_RASPBERRYPI_TOUCHSCREEN_V2 1157 tristate "Raspberry Pi 7-inch touchscreen panel V2 regulator" 1158 depends on GPIOLIB 1159 depends on I2C && OF 1160 select GPIO_REGMAP 1161 select REGMAP_I2C 1162 help 1163 This driver supports regulator on the V2 Raspberry Pi touchscreen 1164 unit. The regulator is used to enable power to the display and to 1165 control backlight PWM. 1166 1167config REGULATOR_RC5T583 1168 tristate "RICOH RC5T583 Power regulators" 1169 depends on MFD_RC5T583 1170 help 1171 Select this option to enable the power regulator of RICOH 1172 PMIC RC5T583. 1173 This driver supports the control of different power rails of device 1174 through regulator interface. The device supports multiple DCDC/LDO 1175 outputs which can be controlled by i2c communication. 1176 1177config REGULATOR_RK808 1178 tristate "Rockchip RK805/RK808/RK809/RK817/RK818 Power regulators" 1179 depends on MFD_RK8XX 1180 help 1181 Select this option to enable the power regulator of ROCKCHIP 1182 PMIC RK805,RK809&RK817,RK808 and RK818. 1183 This driver supports the control of different power rails of device 1184 through regulator interface. The device supports multiple DCDC/LDO 1185 outputs which can be controlled by i2c communication. 1186 1187config REGULATOR_RN5T618 1188 tristate "Ricoh RN5T567/618 voltage regulators" 1189 depends on MFD_RN5T618 1190 help 1191 Say y here to support the regulators found on Ricoh RN5T567, 1192 RN5T618 or RC5T619 PMIC. 1193 1194config REGULATOR_ROHM 1195 tristate 1196 1197config REGULATOR_RT4801 1198 tristate "Richtek RT4801 Regulators" 1199 depends on I2C 1200 select REGMAP_I2C 1201 help 1202 This adds support for voltage regulators in Richtek RT4801 Display Bias IC. 1203 The device supports two regulators (DSVP/DSVN). 1204 1205config REGULATOR_RT4803 1206 tristate "Richtek RT4803 boost regulator" 1207 depends on I2C 1208 select REGMAP_I2C 1209 help 1210 This adds support for RT4803 boost converter that integrates the 1211 bypass switch. If the input voltage is low than the required voltage, 1212 RT4803 will enter boost mode. Otherwise, enable internal bypass 1213 switch to enter bypass mode. 1214 1215config REGULATOR_RT4831 1216 tristate "Richtek RT4831 DSV Regulators" 1217 depends on MFD_RT4831 1218 help 1219 This adds support for voltage regulators in Richtek RT4831. 1220 There are three regulators (VLCM/DSVP/DSVN). 1221 VLCM is a virtual voltage input for DSVP/DSVN inside IC. 1222 And DSVP/DSVN is the real Vout range from 4V to 6.5V. 1223 It's common used to provide the power for the display panel. 1224 1225config REGULATOR_RT5033 1226 tristate "Richtek RT5033 Regulators" 1227 depends on MFD_RT5033 1228 help 1229 This adds support for voltage and current regulators in Richtek 1230 RT5033 PMIC. The device supports multiple regulators like 1231 current source, LDO and Buck. 1232 1233config REGULATOR_RT5120 1234 tristate "Richtek RT5120 PMIC Regulators" 1235 depends on MFD_RT5120 1236 help 1237 This adds support for voltage regulator in Richtek RT5120 PMIC. 1238 It integrates 4 channels buck controller, 1 channel LDO, 1 EXTEN 1239 to control external power source. Only BUCK1 is adjustable from 1240 600mV to 1395mV, per step 6.250mV. The others are all fixed voltage 1241 by external hardware circuit. 1242 1243config REGULATOR_RT5190A 1244 tristate "Richtek RT5190A PMIC" 1245 depends on I2C 1246 select REGMAP_I2C 1247 help 1248 This adds support for voltage regulator in Richtek RT5190A PMIC. 1249 It integratas 1 channel buck controller, 3 channels high efficiency 1250 buck converters, 1 LDO, mute AC OFF depop function, with the general 1251 I2C control interface. 1252 1253config REGULATOR_RT5739 1254 tristate "Richtek RT5739 Regulator" 1255 depends on I2C 1256 select REGMAP_I2C 1257 help 1258 This adds support for voltage regulator in Richtek RT5739. 1259 It's a step-down switching voltage regulator. Using a proprietary 1260 architecture with synchronous rectification, it is capable of 1261 delivering 3.5A continuously at over 80% efficiency. 1262 1263 This driver can also be built as a module. If so, the module 1264 will be called rt5739. 1265 1266config REGULATOR_RT5759 1267 tristate "Richtek RT5759 Regulator" 1268 depends on I2C 1269 select REGMAP_I2C 1270 help 1271 This adds support for voltage regulator in Richtek RT5759. 1272 The RT5759 is a high-performance, synchronous step-down DC-DC 1273 converter that can deliver up to 9A output current from 3V to 6.5V 1274 input supply. 1275 1276config REGULATOR_RT6160 1277 tristate "Richtek RT6160 BuckBoost voltage regulator" 1278 depends on I2C 1279 select REGMAP_I2C 1280 help 1281 This adds support for voltage regulator in Richtek RT6160. 1282 This device automatically change voltage output mode from 1283 Buck or Boost. The mode transition depend on the input source voltage. 1284 The wide output range is from 2025mV to 5200mV and can be used on most 1285 common application scenario. 1286 1287config REGULATOR_RT6190 1288 tristate "Richtek RT6190 4-Switch BuckBoost controller" 1289 depends on I2C 1290 select REGMAP_I2C 1291 help 1292 The RT6190 is a 4-Switch BuckBoost controller designed for converting 1293 input voltage to output voltage that can be equal to, higher or lower 1294 than input voltage. It operates with wide input voltage range from 1295 4.5V to 36V, and the output voltage can be set from 3V to 36V by 1296 external FB pin. 1297 1298config REGULATOR_RT6245 1299 tristate "Richtek RT6245 voltage regulator" 1300 depends on I2C 1301 select REGMAP_I2C 1302 help 1303 This adds support for Richtek RT6245 voltage regulator. 1304 It can support up to 14A output current and adjustable output voltage 1305 from 0.4375V to 1.3875V, per step 12.5mV. 1306 1307config REGULATOR_RTQ2134 1308 tristate "Richtek RTQ2134 SubPMIC Regulator" 1309 depends on I2C 1310 select REGMAP_I2C 1311 help 1312 This driver adds support for RTQ2134 SubPMIC regulators. 1313 The RTQ2134 is a multi-phase, programmable power management IC that 1314 integrate with four high efficient, synchronous step-down converter 1315 cores. It features wide output voltage range and the capability to 1316 configure the corresponding power stages. 1317 1318config REGULATOR_RTMV20 1319 tristate "Richtek RTMV20 Laser Diode Regulator" 1320 depends on I2C 1321 select REGMAP_I2C 1322 help 1323 This driver adds support for the load switch current regulator on 1324 the Richtek RTMV20. It can support the load current up to 6A and 1325 integrate strobe/vsync/fsin signal to synchronize the IR camera. 1326 1327config REGULATOR_RTQ6752 1328 tristate "Richtek RTQ6752 TFT LCD voltage regulator" 1329 depends on I2C 1330 select REGMAP_I2C 1331 help 1332 This driver adds support for Richtek RTQ6752. RTQ6752 includes two 1333 synchronous boost converters for PAVDD, and one synchronous NAVDD 1334 buck-boost. This device is suitable for automotive TFT-LCD panel. 1335 1336config REGULATOR_RTQ2208 1337 tristate "Richtek RTQ2208 SubPMIC Regulator" 1338 depends on I2C 1339 select REGMAP_I2C 1340 help 1341 This driver adds support for RTQ2208 SubPMIC regulators. 1342 The RTQ2208 is a multi-phase, programmable power management IC that 1343 integrate with dual multi-configurable, synchronous buck converters 1344 and two ldos. It features wide output voltage range from 0.4V to 2.05V 1345 and the capability to configure the corresponding power stages. 1346 1347config REGULATOR_S2MPA01 1348 tristate "Samsung S2MPA01 voltage regulator" 1349 depends on MFD_SEC_CORE || COMPILE_TEST 1350 help 1351 This driver controls Samsung S2MPA01 voltage output regulator 1352 via I2C bus. S2MPA01 has 10 Bucks and 26 LDO outputs. 1353 1354config REGULATOR_S2MPS11 1355 tristate "Samsung S2MPS11/13/14/15/S2MPU02/05 voltage regulator" 1356 depends on MFD_SEC_CORE || COMPILE_TEST 1357 help 1358 This driver supports a Samsung S2MPS11/13/14/15/S2MPU02/05 voltage 1359 output regulator via I2C bus. The chip is comprised of high efficient 1360 Buck converters including Dual-Phase Buck converter, Buck-Boost 1361 converter, various LDOs. 1362 1363config REGULATOR_S5M8767 1364 tristate "Samsung S5M8767A voltage regulator" 1365 depends on MFD_SEC_CORE || COMPILE_TEST 1366 help 1367 This driver supports a Samsung S5M8767A voltage output regulator 1368 via I2C bus. S5M8767A have 9 Bucks and 28 LDOs output and 1369 supports DVS mode with 8bits of output voltage control. 1370 1371config REGULATOR_SC2731 1372 tristate "Spreadtrum SC2731 power regulator driver" 1373 depends on MFD_SC27XX_PMIC || COMPILE_TEST 1374 help 1375 This driver provides support for the voltage regulators on the 1376 SC2731 PMIC. 1377 1378config REGULATOR_SKY81452 1379 tristate "Skyworks Solutions SKY81452 voltage regulator" 1380 depends on MFD_SKY81452 1381 help 1382 This driver supports Skyworks SKY81452 voltage output regulator 1383 via I2C bus. SKY81452 has one voltage linear regulator can be 1384 programmed from 4.5V to 20V. 1385 1386 This driver can also be built as a module. If so, the module 1387 will be called sky81452-regulator. 1388 1389config REGULATOR_SLG51000 1390 tristate "Dialog Semiconductor SLG51000 regulators" 1391 depends on I2C 1392 select REGMAP_I2C 1393 help 1394 Say y here to support for the Dialog Semiconductor SLG51000. 1395 The SLG51000 is seven compact and customizable low dropout 1396 regulators. 1397 1398config REGULATOR_STM32_BOOSTER 1399 tristate "STMicroelectronics STM32 BOOSTER" 1400 depends on ARCH_STM32 || COMPILE_TEST 1401 help 1402 This driver supports internal booster (3V3) embedded in some 1403 STMicroelectronics STM32 chips. It can be used to supply ADC analog 1404 input switches when vdda supply is below 2.7V. 1405 1406 This driver can also be built as a module. If so, the module 1407 will be called stm32-booster. 1408 1409config REGULATOR_STM32_VREFBUF 1410 tristate "STMicroelectronics STM32 VREFBUF" 1411 depends on ARCH_STM32 || COMPILE_TEST 1412 help 1413 This driver supports STMicroelectronics STM32 VREFBUF (voltage 1414 reference buffer) which can be used as voltage reference for 1415 internal ADCs, DACs and also for external components through 1416 dedicated Vref+ pin. 1417 1418 This driver can also be built as a module. If so, the module 1419 will be called stm32-vrefbuf. 1420 1421config REGULATOR_STM32_PWR 1422 bool "STMicroelectronics STM32 PWR" 1423 depends on ARCH_STM32 || COMPILE_TEST 1424 help 1425 This driver supports internal regulators (1V1, 1V8, 3V3) in the 1426 STMicroelectronics STM32 chips. 1427 1428config REGULATOR_STPMIC1 1429 tristate "STMicroelectronics STPMIC1 PMIC Regulators" 1430 depends on MFD_STPMIC1 1431 help 1432 This driver supports STMicroelectronics STPMIC1 PMIC voltage 1433 regulators and switches. The STPMIC1 regulators supply power to 1434 an application processor as well as to external system 1435 peripherals such as DDR, Flash memories and system devices. 1436 1437 To compile this driver as a module, choose M here: the 1438 module will be called stpmic1_regulator. 1439 1440config REGULATOR_TI_ABB 1441 tristate "TI Adaptive Body Bias on-chip LDO" 1442 depends on ARCH_OMAP || COMPILE_TEST 1443 help 1444 Select this option to support Texas Instruments' on-chip Adaptive Body 1445 Bias (ABB) LDO regulators. It is recommended that this option be 1446 enabled on required TI SoC. Certain Operating Performance Points 1447 on TI SoCs may be unstable without enabling this as it provides 1448 device specific optimized bias to allow/optimize functionality. 1449 1450config REGULATOR_STW481X_VMMC 1451 bool "ST Microelectronics STW481X VMMC regulator" 1452 depends on MFD_STW481X || COMPILE_TEST 1453 default y if MFD_STW481X 1454 help 1455 This driver supports the internal VMMC regulator in the STw481x 1456 PMIC chips. 1457 1458config REGULATOR_SUN20I 1459 tristate "Allwinner D1 internal LDOs" 1460 depends on ARCH_SUNXI || COMPILE_TEST 1461 select MFD_SYSCON 1462 default ARCH_SUNXI 1463 help 1464 This driver supports the internal LDOs in the Allwinner D1 SoC. 1465 1466config REGULATOR_SY7636A 1467 tristate "Silergy SY7636A voltage regulator" 1468 depends on MFD_SY7636A 1469 help 1470 This driver supports Silergy SY3686A voltage regulator. 1471 1472config REGULATOR_SY8106A 1473 tristate "Silergy SY8106A regulator" 1474 depends on I2C && OF 1475 select REGMAP_I2C 1476 help 1477 This driver supports SY8106A single output regulator. 1478 1479config REGULATOR_SY8824X 1480 tristate "Silergy SY8824C/SY8824E regulator" 1481 depends on I2C && OF 1482 select REGMAP_I2C 1483 help 1484 This driver supports SY8824C single output regulator. 1485 1486config REGULATOR_SY8827N 1487 tristate "Silergy SY8827N regulator" 1488 depends on I2C && OF 1489 select REGMAP_I2C 1490 help 1491 This driver supports SY8827N single output regulator. 1492 1493config REGULATOR_TPS51632 1494 tristate "TI TPS51632 Power Regulator" 1495 depends on I2C 1496 select REGMAP_I2C 1497 help 1498 This driver supports TPS51632 voltage regulator chip. 1499 The TPS51632 is 3-2-1 Phase D-Cap+ Step Down Driverless Controller 1500 with Serial VID control and DVFS. 1501 The voltage output can be configure through I2C interface or PWM 1502 interface. 1503 1504config REGULATOR_TPS6105X 1505 tristate "TI TPS6105X Power regulators" 1506 depends on TPS6105X 1507 default y if TPS6105X 1508 help 1509 This driver supports TPS61050/TPS61052 voltage regulator chips. 1510 It is a single boost converter primarily for white LEDs and 1511 audio amplifiers. 1512 1513config REGULATOR_TPS62360 1514 tristate "TI TPS6236x Power Regulator" 1515 depends on I2C 1516 select REGMAP_I2C 1517 help 1518 This driver supports TPS6236x voltage regulator chip. This 1519 regulator is meant for processor core supply. This chip is 1520 high-frequency synchronous step down dc-dc converter optimized 1521 for battery-powered portable applications. 1522 1523config REGULATOR_TPS6286X 1524 tristate "TI TPS6286x Power Regulator" 1525 depends on I2C && OF 1526 select REGMAP_I2C 1527 help 1528 This driver supports TPS6236x voltage regulator chips. These are 1529 high-frequency synchronous step-down converters with an I2C 1530 interface. 1531 1532config REGULATOR_TPS6287X 1533 tristate "TI TPS6287x Power Regulator" 1534 depends on I2C && OF 1535 select REGMAP_I2C 1536 help 1537 This driver supports TPS6287x voltage regulator chips. These are 1538 pin-to-pin high-frequency synchronous step-down dc-dc converters 1539 with an I2C interface. 1540 1541 If built as a module it will be called tps6287x-regulator. 1542 1543config REGULATOR_TPS65023 1544 tristate "TI TPS65023 Power regulators" 1545 depends on I2C 1546 select REGMAP_I2C 1547 help 1548 This driver supports TPS65023 voltage regulator chips. TPS65023 provides 1549 three step-down converters and two general-purpose LDO voltage regulators. 1550 It supports TI's software based Class-2 SmartReflex implementation. 1551 1552config REGULATOR_TPS6507X 1553 tristate "TI TPS6507X Power regulators" 1554 depends on I2C 1555 help 1556 This driver supports TPS6507X voltage regulator chips. TPS6507X provides 1557 three step-down converters and two general-purpose LDO voltage regulators. 1558 It supports TI's software based Class-2 SmartReflex implementation. 1559 1560config REGULATOR_TPS65086 1561 tristate "TI TPS65086 Power regulators" 1562 depends on MFD_TPS65086 1563 help 1564 This driver provides support for the voltage regulators on 1565 TI TPS65086 PMICs. 1566 1567config REGULATOR_TPS65090 1568 tristate "TI TPS65090 Power regulator" 1569 depends on MFD_TPS65090 1570 help 1571 This driver provides support for the voltage regulators on the 1572 TI TPS65090 PMIC. 1573 1574config REGULATOR_TPS65132 1575 tristate "TI TPS65132 Dual Output Power regulators" 1576 depends on I2C && GPIOLIB 1577 select REGMAP_I2C 1578 help 1579 This driver supports TPS65132 single inductor - dual output 1580 power supply specifically designed for display panels. 1581 1582config REGULATOR_TPS65217 1583 tristate "TI TPS65217 Power regulators" 1584 depends on MFD_TPS65217 1585 help 1586 This driver supports TPS65217 voltage regulator chips. TPS65217 1587 provides three step-down converters and four general-purpose LDO 1588 voltage regulators. It supports software based voltage control 1589 for different voltage domains 1590 1591config REGULATOR_TPS65218 1592 tristate "TI TPS65218 Power regulators" 1593 depends on MFD_TPS65218 && OF 1594 help 1595 This driver supports TPS65218 voltage regulator chips. TPS65218 1596 provides six step-down converters and one general-purpose LDO 1597 voltage regulators. It supports software based voltage control 1598 for different voltage domains 1599 1600config REGULATOR_TPS65219 1601 tristate "TI TPS65219 Power regulators" 1602 depends on MFD_TPS65219 && OF 1603 help 1604 This driver supports TPS65219, TPS65215, and TPS65214 voltage 1605 regulator chips. 1606 TPS65219 series of PMICs have 3 single phase BUCKs & 4 LDOs 1607 voltage regulators. 1608 TPS65215 PMIC has 3 single phase BUCKs & 2 LDOs. 1609 TPS65214 PMIC has 3 synchronous stepdown DC-DC converters & 2 1610 LDOs. One LDO supports a maximum output current of 300 mA and the 1611 other a maximum of 500 mA 1612 All 3 PMICs support software based voltage control for different 1613 voltage domains. 1614 1615config REGULATOR_TPS6594 1616 tristate "TI TPS6594 Power regulators" 1617 depends on MFD_TPS6594 && OF 1618 default MFD_TPS6594 1619 help 1620 This driver supports TPS6594 series and TPS65224 voltage regulator chips. 1621 TPS6594 series of PMICs have 5 BUCKs and 4 LDOs 1622 voltage regulators. 1623 BUCKs 1,2,3,4 can be used in single phase or multiphase mode. 1624 Part number defines which single or multiphase mode is i used. 1625 It supports software based voltage control 1626 for different voltage domains. 1627 TPS65224 PMIC has 4 BUCKs and 3 LDOs. BUCK12 can be used in dual phase. 1628 All BUCKs and LDOs volatge can be controlled through software. 1629 1630config REGULATOR_TPS6524X 1631 tristate "TI TPS6524X Power regulators" 1632 depends on SPI 1633 help 1634 This driver supports TPS6524X voltage regulator chips. TPS6524X 1635 provides three step-down converters and two general-purpose LDO 1636 voltage regulators. This device is interfaced using a customized 1637 serial interface currently supported on the sequencer serial 1638 port controller. 1639 1640config REGULATOR_TPS6586X 1641 tristate "TI TPS6586X Power regulators" 1642 depends on MFD_TPS6586X 1643 help 1644 This driver supports TPS6586X voltage regulator chips. 1645 1646config REGULATOR_TPS65910 1647 tristate "TI TPS65910/TPS65911 Power Regulators" 1648 depends on MFD_TPS65910 1649 help 1650 This driver supports TPS65910/TPS65911 voltage regulator chips. 1651 1652config REGULATOR_TPS65912 1653 tristate "TI TPS65912 Power regulator" 1654 depends on MFD_TPS65912 1655 help 1656 This driver supports TPS65912 voltage regulator chip. 1657 1658config REGULATOR_TPS68470 1659 tristate "TI TPS68470 PMIC Regulators Driver" 1660 depends on INTEL_SKL_INT3472 || COMPILE_TEST 1661 help 1662 This driver adds support for the TPS68470 PMIC to register 1663 regulators against the usual framework. 1664 1665 The module will be called "tps68470-regulator". 1666 1667config REGULATOR_TWL4030 1668 tristate "TI TWL4030/TWL5030/TWL6030/TPS659x0 PMIC" 1669 depends on TWL4030_CORE 1670 help 1671 This driver supports the voltage regulators provided by 1672 this family of companion chips. 1673 1674config REGULATOR_UNIPHIER 1675 tristate "UniPhier regulator driver" 1676 depends on ARCH_UNIPHIER || COMPILE_TEST 1677 depends on OF 1678 select REGMAP_MMIO 1679 default ARCH_UNIPHIER 1680 help 1681 Support for regulators implemented on Socionext UniPhier SoCs. 1682 1683config REGULATOR_RZG2L_VBCTRL 1684 tristate "Renesas RZ/G2L USB VBUS regulator driver" 1685 depends on RESET_RZG2L_USBPHY_CTRL || COMPILE_TEST 1686 depends on OF 1687 select REGMAP_MMIO 1688 default RESET_RZG2L_USBPHY_CTRL 1689 help 1690 Support for VBUS regulators implemented on Renesas RZ/G2L SoCs. 1691 1692config REGULATOR_VCTRL 1693 tristate "Voltage controlled regulators" 1694 depends on OF 1695 help 1696 This driver provides support for voltage regulators whose output 1697 voltage is controlled by the voltage of another regulator. 1698 1699config REGULATOR_VEXPRESS 1700 tristate "Versatile Express regulators" 1701 depends on VEXPRESS_CONFIG 1702 help 1703 This driver provides support for voltage regulators available 1704 on the ARM Ltd's Versatile Express platform. 1705 1706config REGULATOR_VQMMC_IPQ4019 1707 tristate "IPQ4019 VQMMC SD LDO regulator support" 1708 depends on ARCH_QCOM 1709 help 1710 This driver provides support for the VQMMC LDO I/0 1711 voltage regulator of the IPQ4019 SD/EMMC controller. 1712 1713config REGULATOR_WM831X 1714 tristate "Wolfson Microelectronics WM831x PMIC regulators" 1715 depends on MFD_WM831X 1716 help 1717 Support the voltage and current regulators of the WM831x series 1718 of PMIC devices. 1719 1720config REGULATOR_WM8350 1721 tristate "Wolfson Microelectronics WM8350 AudioPlus PMIC" 1722 depends on MFD_WM8350 1723 help 1724 This driver provides support for the voltage and current regulators 1725 of the WM8350 AudioPlus PMIC. 1726 1727config REGULATOR_WM8400 1728 tristate "Wolfson Microelectronics WM8400 AudioPlus PMIC" 1729 depends on MFD_WM8400 1730 help 1731 This driver provides support for the voltage regulators of the 1732 WM8400 AudioPlus PMIC. 1733 1734config REGULATOR_WM8994 1735 tristate "Wolfson Microelectronics WM8994 CODEC" 1736 depends on MFD_WM8994 1737 help 1738 This driver provides support for the voltage regulators on the 1739 WM8994 CODEC. 1740 1741config REGULATOR_QCOM_LABIBB 1742 tristate "QCOM LAB/IBB regulator support" 1743 depends on SPMI || COMPILE_TEST 1744 help 1745 This driver supports Qualcomm's LAB/IBB regulators present on the 1746 Qualcomm's PMIC chip pmi8998. QCOM LAB and IBB are SPMI 1747 based PMIC implementations. LAB can be used as positive 1748 boost regulator and IBB can be used as a negative boost regulator 1749 for LCD display panel. 1750 1751endif 1752