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