Kconfig 2.9 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394
  1. menuconfig REGULATOR
  2. bool "Voltage and Current Regulator Support"
  3. default n
  4. help
  5. Generic Voltage and Current Regulator support.
  6. This framework is designed to provide a generic interface to voltage
  7. and current regulators within the Linux kernel. It's intended to
  8. provide voltage and current control to client or consumer drivers and
  9. also provide status information to user space applications through a
  10. sysfs interface.
  11. The intention is to allow systems to dynamically control regulator
  12. output in order to save power and prolong battery life. This applies
  13. to both voltage regulators (where voltage output is controllable) and
  14. current sinks (where current output is controllable).
  15. This framework safely compiles out if not selected so that client
  16. drivers can still be used in systems with no software controllable
  17. regulators.
  18. If unsure, say no.
  19. if REGULATOR
  20. config REGULATOR_DEBUG
  21. bool "Regulator debug support"
  22. help
  23. Say yes here to enable debugging support.
  24. config REGULATOR_FIXED_VOLTAGE
  25. tristate "Fixed voltage regulator support"
  26. default n
  27. help
  28. This driver provides support for fixed voltage regulators,
  29. useful for systems which use a combination of software
  30. managed regulators and simple non-configurable regulators.
  31. config REGULATOR_VIRTUAL_CONSUMER
  32. tristate "Virtual regulator consumer support"
  33. default n
  34. help
  35. This driver provides a virtual consumer for the voltage and
  36. current regulator API which provides sysfs controls for
  37. configuring the supplies requested. This is mainly useful
  38. for test purposes.
  39. If unsure, say no.
  40. config REGULATOR_BQ24022
  41. tristate "TI bq24022 Dual Input 1-Cell Li-Ion Charger IC"
  42. default n
  43. help
  44. This driver controls a TI bq24022 Charger attached via
  45. GPIOs. The provided current regulator can enable/disable
  46. charging select between 100 mA and 500 mA charging current
  47. limit.
  48. config REGULATOR_TWL4030
  49. bool "TI TWL4030/TWL5030/TPS695x0 PMIC"
  50. depends on TWL4030_CORE
  51. help
  52. This driver supports the voltage regulators provided by
  53. this family of companion chips.
  54. config REGULATOR_WM8350
  55. tristate "Wolfson Microelectroncis WM8350 AudioPlus PMIC"
  56. depends on MFD_WM8350
  57. help
  58. This driver provides support for the voltage and current regulators
  59. of the WM8350 AudioPlus PMIC.
  60. config REGULATOR_WM8400
  61. tristate "Wolfson Microelectroncis WM8400 AudioPlus PMIC"
  62. depends on MFD_WM8400
  63. help
  64. This driver provides support for the voltage regulators of the
  65. WM8400 AudioPlus PMIC.
  66. config REGULATOR_DA903X
  67. tristate "Support regulators on Dialog Semiconductor DA9030/DA9034 PMIC"
  68. depends on PMIC_DA903X
  69. help
  70. Say y here to support the BUCKs and LDOs regulators found on
  71. Dialog Semiconductor DA9030/DA9034 PMIC.
  72. config REGULATOR_PCF50633
  73. tristate "PCF50633 regulator driver"
  74. depends on MFD_PCF50633
  75. help
  76. Say Y here to support the voltage regulators and convertors
  77. on PCF50633
  78. endif