tps65912.txt 1.6 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849
  1. * TPS65912 Power Management Integrated Circuit bindings
  2. Required properties:
  3. - compatible : Should be "ti,tps65912".
  4. - reg : Slave address or chip select number (I2C / SPI).
  5. - interrupts : The interrupt line the device is connected to.
  6. - interrupt-controller : Marks the device node as an interrupt controller.
  7. - #interrupt-cells : The number of cells to describe an IRQ, should be 2.
  8. The first cell is the IRQ number.
  9. The second cell is the flags, encoded as trigger
  10. masks from ../interrupt-controller/interrupts.txt.
  11. - gpio-controller : Marks the device node as a GPIO Controller.
  12. - #gpio-cells : Should be two. The first cell is the pin number and
  13. the second cell is used to specify flags.
  14. See ../gpio/gpio.txt for more information.
  15. - regulators: : List of child nodes that specify the regulator
  16. initialization data. Child nodes must be named
  17. after their hardware counterparts: dcdc[1-4] and
  18. ldo[1-10]. Each child nodes is defined using the
  19. standard binding for regulators.
  20. Example:
  21. pmic: tps65912@2d {
  22. compatible = "ti,tps65912";
  23. reg = <0x2d>;
  24. interrupt-parent = <&gpio1>;
  25. interrupts = <28 IRQ_TYPE_LEVEL_LOW>;
  26. interrupt-controller;
  27. #interrupt-cells = <2>;
  28. gpio-controller;
  29. #gpio-cells = <2>;
  30. regulators {
  31. dcdc1 {
  32. regulator-name = "vdd_core";
  33. regulator-min-microvolt = <912000>;
  34. regulator-max-microvolt = <1144000>;
  35. regulator-boot-on;
  36. regulator-always-on;
  37. };
  38. ldo1 {
  39. regulator-name = "ldo1";
  40. regulator-min-microvolt = <1900000>;
  41. regulator-max-microvolt = <1900000>;
  42. };
  43. };
  44. };