da9055.txt 1.9 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970
  1. * Dialog DA9055 Power Management Integrated Circuit (PMIC)
  2. DA9055 consists of a large and varied group of sub-devices (I2C Only):
  3. Device Supply Names Description
  4. ------ ------------ -----------
  5. da9055-gpio : : GPIOs
  6. da9055-regulator : : Regulators
  7. da9055-onkey : : On key
  8. da9055-rtc : : RTC
  9. da9055-hwmon : : ADC
  10. da9055-watchdog : : Watchdog
  11. The CODEC device in DA9055 has a separate, configurable I2C address and so
  12. is instantiated separately from the PMIC.
  13. For details on accompanying CODEC I2C device, see the following:
  14. Documentation/devicetree/bindings/sound/da9055.txt
  15. ======
  16. Required properties:
  17. - compatible : Should be "dlg,da9055-pmic"
  18. - reg: Specifies the I2C slave address (defaults to 0x5a but can be modified)
  19. - interrupts: IRQ line info for da9055 chip.
  20. - interrupt-controller: da9055 has internal IRQs (has own IRQ domain).
  21. - #interrupt-cells: Should be 1, is the local IRQ number for da9055.
  22. Sub-nodes:
  23. - regulators : Contain the regulator nodes. The DA9055 regulators are
  24. bound using their names as listed below:
  25. buck1 : regulator BUCK1
  26. buck2 : regulator BUCK2
  27. ldo1 : regulator LDO1
  28. ldo2 : regulator LDO2
  29. ldo3 : regulator LDO3
  30. ldo4 : regulator LDO4
  31. ldo5 : regulator LDO5
  32. ldo6 : regulator LDO6
  33. The bindings details of individual regulator device can be found in:
  34. Documentation/devicetree/bindings/regulator/regulator.txt
  35. Example:
  36. pmic: da9055-pmic@5a {
  37. compatible = "dlg,da9055-pmic";
  38. reg = <0x5a>;
  39. interrupt-parent = <&intc>;
  40. interrupts = <5 IRQ_TYPE_LEVEL_LOW>;
  41. interrupt-controller;
  42. #interrupt-cells = <1>;
  43. regulators {
  44. buck1: BUCK1 {
  45. regulator-min-microvolt = <725000>;
  46. regulator-max-microvolt = <2075000>;
  47. };
  48. buck2: BUCK2 {
  49. regulator-min-microvolt = <925000>;
  50. regulator-max-microvolt = <2500000>;
  51. };
  52. ldo1: LDO1 {
  53. regulator-min-microvolt = <900000>;
  54. regulator-max-microvolt = <3300000>;
  55. };
  56. };
  57. };