Kconfig 18 KB

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