Kconfig 18 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583
  1. menuconfig REGULATOR
  2. bool "Voltage and Current Regulator Support"
  3. help
  4. Generic Voltage and Current Regulator support.
  5. This framework is designed to provide a generic interface to voltage
  6. and current regulators within the Linux kernel. It's intended to
  7. provide voltage and current control to client or consumer drivers and
  8. also provide status information to user space applications through a
  9. sysfs interface.
  10. The intention is to allow systems to dynamically control regulator
  11. output in order to save power and prolong battery life. This applies
  12. to both voltage regulators (where voltage output is controllable) and
  13. current sinks (where current output is controllable).
  14. This framework safely compiles out if not selected so that client
  15. drivers can still be used in systems with no software controllable
  16. regulators.
  17. If unsure, say no.
  18. if REGULATOR
  19. config REGULATOR_DEBUG
  20. bool "Regulator debug support"
  21. help
  22. Say yes here to enable debugging support.
  23. config REGULATOR_DUMMY
  24. bool "Provide a dummy regulator if regulator lookups fail"
  25. help
  26. If this option is enabled then when a regulator lookup fails
  27. and the board has not specified that it has provided full
  28. constraints the regulator core will provide an always
  29. enabled dummy regulator, allowing consumer drivers to continue.
  30. A warning will be generated when this substitution is done.
  31. config REGULATOR_FIXED_VOLTAGE
  32. tristate "Fixed voltage regulator support"
  33. help
  34. This driver provides support for fixed voltage regulators,
  35. useful for systems which use a combination of software
  36. managed regulators and simple non-configurable regulators.
  37. config REGULATOR_VIRTUAL_CONSUMER
  38. tristate "Virtual regulator consumer support"
  39. help
  40. This driver provides a virtual consumer for the voltage and
  41. current regulator API which provides sysfs controls for
  42. configuring the supplies requested. This is mainly useful
  43. for test purposes.
  44. If unsure, say no.
  45. config REGULATOR_USERSPACE_CONSUMER
  46. tristate "Userspace regulator consumer support"
  47. help
  48. There are some classes of devices that are controlled entirely
  49. from user space. Userspace consumer driver provides ability to
  50. control power supplies for such devices.
  51. If unsure, say no.
  52. config REGULATOR_88PM800
  53. tristate "Marvell 88PM800 Power regulators"
  54. depends on MFD_88PM800
  55. help
  56. This driver supports Marvell 88PM800 voltage regulator chips.
  57. It delivers digitally programmable output,
  58. the voltage is programmed via I2C interface.
  59. It's suitable to support PXA988 chips to control VCC_MAIN and
  60. various voltages.
  61. config REGULATOR_88PM8607
  62. tristate "Marvell 88PM8607 Power regulators"
  63. depends on MFD_88PM860X=y
  64. help
  65. This driver supports 88PM8607 voltage regulator chips.
  66. config REGULATOR_AD5398
  67. tristate "Analog Devices AD5398/AD5821 regulators"
  68. depends on I2C
  69. help
  70. This driver supports AD5398 and AD5821 current regulator chips.
  71. If building into module, its name is ad5398.ko.
  72. config REGULATOR_ANATOP
  73. tristate "Freescale i.MX on-chip ANATOP LDO regulators"
  74. depends on MFD_SYSCON
  75. help
  76. Say y here to support Freescale i.MX on-chip ANATOP LDOs
  77. regulators. It is recommended that this option be
  78. enabled on i.MX6 platform.
  79. config REGULATOR_AAT2870
  80. tristate "AnalogicTech AAT2870 Regulators"
  81. depends on MFD_AAT2870_CORE
  82. help
  83. If you have a AnalogicTech AAT2870 say Y to enable the
  84. regulator driver.
  85. config REGULATOR_AB3100
  86. tristate "ST-Ericsson AB3100 Regulator functions"
  87. depends on AB3100_CORE
  88. default y if AB3100_CORE
  89. help
  90. These regulators correspond to functionality in the
  91. AB3100 analog baseband dealing with power regulators
  92. for the system.
  93. config REGULATOR_AB8500
  94. bool "ST-Ericsson AB8500 Power Regulators"
  95. depends on AB8500_CORE
  96. help
  97. This driver supports the regulators found on the ST-Ericsson mixed
  98. signal AB8500 PMIC
  99. config REGULATOR_ARIZONA
  100. tristate "Wolfson Arizona class devices"
  101. depends on MFD_ARIZONA
  102. depends on SND_SOC
  103. help
  104. Support for the regulators found on Wolfson Arizona class
  105. devices.
  106. config REGULATOR_AS3711
  107. tristate "AS3711 PMIC"
  108. depends on MFD_AS3711
  109. help
  110. This driver provides support for the voltage regulators on the
  111. AS3711 PMIC
  112. config REGULATOR_AS3722
  113. tristate "AMS AS3722 PMIC Regulators"
  114. depends on MFD_AS3722
  115. help
  116. This driver provides support for the voltage regulators on the
  117. AS3722 PMIC. This will enable support for all the software
  118. controllable DCDC/LDO regulators.
  119. config REGULATOR_DA903X
  120. tristate "Dialog Semiconductor DA9030/DA9034 regulators"
  121. depends on PMIC_DA903X
  122. help
  123. Say y here to support the BUCKs and LDOs regulators found on
  124. Dialog Semiconductor DA9030/DA9034 PMIC.
  125. config REGULATOR_DA9052
  126. tristate "Dialog Semiconductor DA9052/DA9053 regulators"
  127. depends on PMIC_DA9052
  128. help
  129. This driver supports the voltage regulators of DA9052-BC and
  130. DA9053-AA/Bx PMIC.
  131. config REGULATOR_DA9055
  132. tristate "Dialog Semiconductor DA9055 regulators"
  133. depends on MFD_DA9055
  134. help
  135. Say y here to support the BUCKs and LDOs regulators found on
  136. Dialog Semiconductor DA9055 PMIC.
  137. This driver can also be built as a module. If so, the module
  138. will be called da9055-regulator.
  139. config REGULATOR_DA9063
  140. tristate "Dialog Semiconductor DA9063 regulators"
  141. depends on MFD_DA9063
  142. help
  143. Say y here to support the BUCKs and LDOs regulators found on
  144. DA9063 PMICs.
  145. This driver can also be built as a module. If so, the module
  146. will be called da9063-regulator.
  147. config REGULATOR_DA9210
  148. tristate "Dialog Semiconductor DA9210 regulator"
  149. depends on I2C
  150. select REGMAP_I2C
  151. help
  152. Say y here to support for the Dialog Semiconductor DA9210.
  153. The DA9210 is a multi-phase synchronous step down
  154. converter 12A DC-DC Buck controlled through an I2C
  155. interface.
  156. config REGULATOR_DBX500_PRCMU
  157. bool
  158. config REGULATOR_DB8500_PRCMU
  159. bool "ST-Ericsson DB8500 Voltage Domain Regulators"
  160. depends on MFD_DB8500_PRCMU
  161. select REGULATOR_DBX500_PRCMU
  162. help
  163. This driver supports the voltage domain regulators controlled by the
  164. DB8500 PRCMU
  165. config REGULATOR_FAN53555
  166. tristate "Fairchild FAN53555 Regulator"
  167. depends on I2C
  168. select REGMAP_I2C
  169. help
  170. This driver supports Fairchild FAN53555 Digitally Programmable
  171. TinyBuck Regulator. The FAN53555 is a step-down switching voltage
  172. regulator that delivers a digitally programmable output from an
  173. input voltage supply of 2.5V to 5.5V. The output voltage is
  174. programmed through an I2C interface.
  175. config REGULATOR_GPIO
  176. tristate "GPIO regulator support"
  177. depends on GPIOLIB
  178. help
  179. This driver provides support for regulators that can be
  180. controlled via gpios.
  181. It is capable of supporting current and voltage regulators
  182. and the platform has to provide a mapping of GPIO-states
  183. to target volts/amps.
  184. config REGULATOR_ISL6271A
  185. tristate "Intersil ISL6271A Power regulator"
  186. depends on I2C
  187. help
  188. This driver supports ISL6271A voltage regulator chip.
  189. config REGULATOR_LP3971
  190. tristate "National Semiconductors LP3971 PMIC regulator driver"
  191. depends on I2C
  192. help
  193. Say Y here to support the voltage regulators and convertors
  194. on National Semiconductors LP3971 PMIC
  195. config REGULATOR_LP3972
  196. tristate "National Semiconductors LP3972 PMIC regulator driver"
  197. depends on I2C
  198. help
  199. Say Y here to support the voltage regulators and convertors
  200. on National Semiconductors LP3972 PMIC
  201. config REGULATOR_LP872X
  202. tristate "TI/National Semiconductor LP8720/LP8725 voltage regulators"
  203. depends on I2C
  204. select REGMAP_I2C
  205. help
  206. This driver supports LP8720/LP8725 PMIC
  207. config REGULATOR_LP8755
  208. tristate "TI LP8755 High Performance PMU driver"
  209. depends on I2C
  210. select REGMAP_I2C
  211. help
  212. This driver supports LP8755 High Performance PMU driver. This
  213. chip contains six step-down DC/DC converters which can support
  214. 9 mode multiphase configuration.
  215. config REGULATOR_LP8788
  216. tristate "TI LP8788 Power Regulators"
  217. depends on MFD_LP8788
  218. help
  219. This driver supports LP8788 voltage regulator chip.
  220. config REGULATOR_MAX1586
  221. tristate "Maxim 1586/1587 voltage regulator"
  222. depends on I2C
  223. help
  224. This driver controls a Maxim 1586 or 1587 voltage output
  225. regulator via I2C bus. The provided regulator is suitable
  226. for PXA27x chips to control VCC_CORE and VCC_USIM voltages.
  227. config REGULATOR_MAX8649
  228. tristate "Maxim 8649 voltage regulator"
  229. depends on I2C
  230. select REGMAP_I2C
  231. help
  232. This driver controls a Maxim 8649 voltage output regulator via
  233. I2C bus.
  234. config REGULATOR_MAX8660
  235. tristate "Maxim 8660/8661 voltage regulator"
  236. depends on I2C
  237. help
  238. This driver controls a Maxim 8660/8661 voltage output
  239. regulator via I2C bus.
  240. config REGULATOR_MAX8907
  241. tristate "Maxim 8907 voltage regulator"
  242. depends on MFD_MAX8907
  243. help
  244. This driver controls a Maxim 8907 voltage output regulator
  245. via I2C bus. The provided regulator is suitable for Tegra
  246. chip to control Step-Down DC-DC and LDOs.
  247. config REGULATOR_MAX8925
  248. tristate "Maxim MAX8925 Power Management IC"
  249. depends on MFD_MAX8925
  250. help
  251. Say y here to support the voltage regulaltor of Maxim MAX8925 PMIC.
  252. config REGULATOR_MAX8952
  253. tristate "Maxim MAX8952 Power Management IC"
  254. depends on I2C
  255. help
  256. This driver controls a Maxim 8952 voltage output regulator
  257. via I2C bus. Maxim 8952 has one voltage output and supports 4 DVS
  258. modes ranging from 0.77V to 1.40V by 0.01V steps.
  259. config REGULATOR_MAX8973
  260. tristate "Maxim MAX8973 voltage regulator "
  261. depends on I2C
  262. select REGMAP_I2C
  263. help
  264. The MAXIM MAX8973 high-efficiency. three phase, DC-DC step-down
  265. switching regulator delievers up to 9A of output current. Each
  266. phase operates at a 2MHz fixed frequency with a 120 deg shift
  267. from the adjacent phase, allowing the use of small magnetic component.
  268. config REGULATOR_MAX8997
  269. tristate "Maxim 8997/8966 regulator"
  270. depends on MFD_MAX8997
  271. help
  272. This driver controls a Maxim 8997/8966 regulator
  273. via I2C bus. The provided regulator is suitable for S5PC110,
  274. S5PV210, and Exynos-4 chips to control VCC_CORE and
  275. VCC_USIM voltages.
  276. config REGULATOR_MAX8998
  277. tristate "Maxim 8998 voltage regulator"
  278. depends on MFD_MAX8998
  279. help
  280. This driver controls a Maxim 8998 voltage output regulator
  281. via I2C bus. The provided regulator is suitable for S3C6410
  282. and S5PC1XX chips to control VCC_CORE and VCC_USIM voltages.
  283. config REGULATOR_MAX77686
  284. tristate "Maxim 77686 regulator"
  285. depends on MFD_MAX77686
  286. help
  287. This driver controls a Maxim 77686 regulator
  288. via I2C bus. The provided regulator is suitable for
  289. Exynos-4 chips to control VARM and VINT voltages.
  290. config REGULATOR_MAX77693
  291. tristate "Maxim MAX77693 regulator"
  292. depends on MFD_MAX77693
  293. help
  294. This driver controls a Maxim 77693 regulator via I2C bus.
  295. The regulators include two LDOs, 'SAFEOUT1', 'SAFEOUT2'
  296. and one current regulator 'CHARGER'. This is suitable for
  297. Exynos-4x12 chips.
  298. config REGULATOR_MC13XXX_CORE
  299. tristate
  300. config REGULATOR_MC13783
  301. tristate "Freescale MC13783 regulator driver"
  302. depends on MFD_MC13783
  303. select REGULATOR_MC13XXX_CORE
  304. help
  305. Say y here to support the regulators found on the Freescale MC13783
  306. PMIC.
  307. config REGULATOR_MC13892
  308. tristate "Freescale MC13892 regulator driver"
  309. depends on MFD_MC13XXX
  310. select REGULATOR_MC13XXX_CORE
  311. help
  312. Say y here to support the regulators found on the Freescale MC13892
  313. PMIC.
  314. config REGULATOR_PALMAS
  315. tristate "TI Palmas PMIC Regulators"
  316. depends on MFD_PALMAS
  317. help
  318. If you wish to control the regulators on the Palmas series of
  319. chips say Y here. This will enable support for all the software
  320. controllable SMPS/LDO regulators.
  321. The regulators available on Palmas series chips vary depending
  322. on the muxing. This is handled automatically in the driver by
  323. reading the mux info from OTP.
  324. config REGULATOR_PCAP
  325. tristate "Motorola PCAP2 regulator driver"
  326. depends on EZX_PCAP
  327. help
  328. This driver provides support for the voltage regulators of the
  329. PCAP2 PMIC.
  330. config REGULATOR_PCF50633
  331. tristate "NXP PCF50633 regulator driver"
  332. depends on MFD_PCF50633
  333. help
  334. Say Y here to support the voltage regulators and convertors
  335. on PCF50633
  336. config REGULATOR_PFUZE100
  337. tristate "Support regulators on Freescale PFUZE100 PMIC"
  338. depends on I2C
  339. select REGMAP_I2C
  340. help
  341. Say y here to support the regulators found on the Freescale PFUZE100
  342. PMIC.
  343. config REGULATOR_RC5T583
  344. tristate "RICOH RC5T583 Power regulators"
  345. depends on MFD_RC5T583
  346. help
  347. Select this option to enable the power regulator of RICOH
  348. PMIC RC5T583.
  349. This driver supports the control of different power rails of device
  350. through regulator interface. The device supports multiple DCDC/LDO
  351. outputs which can be controlled by i2c communication.
  352. config REGULATOR_S2MPS11
  353. tristate "Samsung S2MPS11 voltage regulator"
  354. depends on MFD_SEC_CORE
  355. help
  356. This driver supports a Samsung S2MPS11 voltage output regulator
  357. via I2C bus. S2MPS11 is comprised of high efficient Buck converters
  358. including Dual-Phase Buck converter, Buck-Boost converter, various LDOs.
  359. config REGULATOR_S5M8767
  360. tristate "Samsung S5M8767A voltage regulator"
  361. depends on MFD_SEC_CORE
  362. help
  363. This driver supports a Samsung S5M8767A voltage output regulator
  364. via I2C bus. S5M8767A have 9 Bucks and 28 LDOs output and
  365. supports DVS mode with 8bits of output voltage control.
  366. config REGULATOR_TI_ABB
  367. tristate "TI Adaptive Body Bias on-chip LDO"
  368. depends on ARCH_OMAP
  369. help
  370. Select this option to support Texas Instruments' on-chip Adaptive Body
  371. Bias (ABB) LDO regulators. It is recommended that this option be
  372. enabled on required TI SoC. Certain Operating Performance Points
  373. on TI SoCs may be unstable without enabling this as it provides
  374. device specific optimized bias to allow/optimize functionality.
  375. config REGULATOR_TPS51632
  376. tristate "TI TPS51632 Power Regulator"
  377. depends on I2C
  378. select REGMAP_I2C
  379. help
  380. This driver supports TPS51632 voltage regulator chip.
  381. The TPS51632 is 3-2-1 Phase D-Cap+ Step Down Driverless Controller
  382. with Serial VID control and DVFS.
  383. The voltage output can be configure through I2C interface or PWM
  384. interface.
  385. config REGULATOR_TPS6105X
  386. tristate "TI TPS6105X Power regulators"
  387. depends on TPS6105X
  388. default y if TPS6105X
  389. help
  390. This driver supports TPS61050/TPS61052 voltage regulator chips.
  391. It is a single boost converter primarily for white LEDs and
  392. audio amplifiers.
  393. config REGULATOR_TPS62360
  394. tristate "TI TPS6236x Power Regulator"
  395. depends on I2C
  396. select REGMAP_I2C
  397. help
  398. This driver supports TPS6236x voltage regulator chip. This
  399. regulator is meant for processor core supply. This chip is
  400. high-frequency synchronous step down dc-dc converter optimized
  401. for battery-powered portable applications.
  402. config REGULATOR_TPS65023
  403. tristate "TI TPS65023 Power regulators"
  404. depends on I2C
  405. select REGMAP_I2C
  406. help
  407. This driver supports TPS65023 voltage regulator chips. TPS65023 provides
  408. three step-down converters and two general-purpose LDO voltage regulators.
  409. It supports TI's software based Class-2 SmartReflex implementation.
  410. config REGULATOR_TPS6507X
  411. tristate "TI TPS6507X Power regulators"
  412. depends on I2C
  413. help
  414. This driver supports TPS6507X voltage regulator chips. TPS6507X provides
  415. three step-down converters and two general-purpose LDO voltage regulators.
  416. It supports TI's software based Class-2 SmartReflex implementation.
  417. config REGULATOR_TPS65090
  418. tristate "TI TPS65090 Power regulator"
  419. depends on MFD_TPS65090
  420. help
  421. This driver provides support for the voltage regulators on the
  422. TI TPS65090 PMIC.
  423. config REGULATOR_TPS65217
  424. tristate "TI TPS65217 Power regulators"
  425. depends on MFD_TPS65217
  426. help
  427. This driver supports TPS65217 voltage regulator chips. TPS65217
  428. provides three step-down converters and four general-purpose LDO
  429. voltage regulators. It supports software based voltage control
  430. for different voltage domains
  431. config REGULATOR_TPS6524X
  432. tristate "TI TPS6524X Power regulators"
  433. depends on SPI
  434. help
  435. This driver supports TPS6524X voltage regulator chips. TPS6524X
  436. provides three step-down converters and two general-purpose LDO
  437. voltage regulators. This device is interfaced using a customized
  438. serial interface currently supported on the sequencer serial
  439. port controller.
  440. config REGULATOR_TPS6586X
  441. tristate "TI TPS6586X Power regulators"
  442. depends on MFD_TPS6586X
  443. help
  444. This driver supports TPS6586X voltage regulator chips.
  445. config REGULATOR_TPS65910
  446. tristate "TI TPS65910/TPS65911 Power Regulators"
  447. depends on MFD_TPS65910
  448. help
  449. This driver supports TPS65910/TPS65911 voltage regulator chips.
  450. config REGULATOR_TPS65912
  451. tristate "TI TPS65912 Power regulator"
  452. depends on (MFD_TPS65912_I2C || MFD_TPS65912_SPI)
  453. help
  454. This driver supports TPS65912 voltage regulator chip.
  455. config REGULATOR_TPS80031
  456. tristate "TI TPS80031/TPS80032 power regualtor driver"
  457. depends on MFD_TPS80031
  458. help
  459. TPS80031/ TPS80032 Fully Integrated Power Management with Power
  460. Path and Battery Charger. It has 5 configurable step-down
  461. converters, 11 general purpose LDOs, VBUS generator and digital
  462. output to control regulators.
  463. config REGULATOR_TWL4030
  464. tristate "TI TWL4030/TWL5030/TWL6030/TPS659x0 PMIC"
  465. depends on TWL4030_CORE
  466. help
  467. This driver supports the voltage regulators provided by
  468. this family of companion chips.
  469. config REGULATOR_VEXPRESS
  470. tristate "Versatile Express regulators"
  471. depends on VEXPRESS_CONFIG
  472. help
  473. This driver provides support for voltage regulators available
  474. on the ARM Ltd's Versatile Express platform.
  475. config REGULATOR_WM831X
  476. tristate "Wolfson Microelectronics WM831x PMIC regulators"
  477. depends on MFD_WM831X
  478. help
  479. Support the voltage and current regulators of the WM831x series
  480. of PMIC devices.
  481. config REGULATOR_WM8350
  482. tristate "Wolfson Microelectronics WM8350 AudioPlus PMIC"
  483. depends on MFD_WM8350
  484. help
  485. This driver provides support for the voltage and current regulators
  486. of the WM8350 AudioPlus PMIC.
  487. config REGULATOR_WM8400
  488. tristate "Wolfson Microelectronics WM8400 AudioPlus PMIC"
  489. depends on MFD_WM8400
  490. help
  491. This driver provides support for the voltage regulators of the
  492. WM8400 AudioPlus PMIC.
  493. config REGULATOR_WM8994
  494. tristate "Wolfson Microelectronics WM8994 CODEC"
  495. depends on MFD_WM8994
  496. help
  497. This driver provides support for the voltage regulators on the
  498. WM8994 CODEC.
  499. endif