Kconfig 2.3 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576
  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
  26. default n
  27. config REGULATOR_VIRTUAL_CONSUMER
  28. tristate "Virtual regulator consumer support"
  29. default n
  30. help
  31. This driver provides a virtual consumer for the voltage and
  32. current regulator API which provides sysfs controls for
  33. configuring the supplies requested. This is mainly useful
  34. for test purposes.
  35. If unsure, say no.
  36. config REGULATOR_BQ24022
  37. tristate "TI bq24022 Dual Input 1-Cell Li-Ion Charger IC"
  38. default n
  39. help
  40. This driver controls a TI bq24022 Charger attached via
  41. GPIOs. The provided current regulator can enable/disable
  42. charging select between 100 mA and 500 mA charging current
  43. limit.
  44. config REGULATOR_WM8350
  45. tristate "Wolfson Microelectroncis WM8350 AudioPlus PMIC"
  46. depends on MFD_WM8350
  47. help
  48. This driver provides support for the voltage and current regulators
  49. of the WM8350 AudioPlus PMIC.
  50. config REGULATOR_WM8400
  51. tristate "Wolfson Microelectroncis WM8400 AudioPlus PMIC"
  52. depends on MFD_WM8400
  53. help
  54. This driver provides support for the voltage regulators of the
  55. WM8400 AudioPlus PMIC.
  56. config REGULATOR_DA903X
  57. tristate "Support regulators on Dialog Semiconductor DA9030/DA9034 PMIC"
  58. depends on PMIC_DA903X
  59. help
  60. Say y here to support the BUCKs and LDOs regulators found on
  61. Dialog Semiconductor DA9030/DA9034 PMIC.
  62. endif