i2c-cbus-gpio.txt 486 B

123456789101112131415161718192021222324252627
  1. Device tree bindings for i2c-cbus-gpio driver
  2. Required properties:
  3. - compatible = "i2c-cbus-gpio";
  4. - gpios: clk, dat, sel
  5. - #address-cells = <1>;
  6. - #size-cells = <0>;
  7. Optional properties:
  8. - child nodes conforming to i2c bus binding
  9. Example:
  10. i2c@0 {
  11. compatible = "i2c-cbus-gpio";
  12. gpios = <&gpio 66 0 /* clk */
  13. &gpio 65 0 /* dat */
  14. &gpio 64 0 /* sel */
  15. >;
  16. #address-cells = <1>;
  17. #size-cells = <0>;
  18. retu-mfd: retu@1 {
  19. compatible = "retu-mfd";
  20. reg = <0x1>;
  21. };
  22. };