gpio-palmas.txt 760 B

123456789101112131415161718192021222324252627
  1. Palmas GPIO controller bindings
  2. Required properties:
  3. - compatible:
  4. - "ti,palams-gpio" for palma series of the GPIO controller
  5. - "ti,tps80036-gpio" for Palma series device TPS80036.
  6. - "ti,tps65913-gpio" for palma series device TPS65913.
  7. - "ti,tps65914-gpio" for palma series device TPS65914.
  8. - #gpio-cells : Should be two.
  9. - first cell is the gpio pin number
  10. - second cell is used to specify the gpio polarity:
  11. 0 = active high
  12. 1 = active low
  13. - gpio-controller : Marks the device node as a GPIO controller.
  14. Note: This gpio node will be sub node of palmas node.
  15. Example:
  16. palmas: tps65913@58 {
  17. :::::::::::
  18. palmas_gpio: palmas_gpio {
  19. compatible = "ti,palmas-gpio";
  20. gpio-controller;
  21. #gpio-cells = <2>;
  22. };
  23. :::::::::::
  24. };