Linux Audio

Check our new training course

Embedded Linux training

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