i2c-pca-platform.txt 838 B

123456789101112131415161718192021222324252627
  1. * NXP PCA PCA9564/PCA9665 I2C controller
  2. The PCA9564/PCA9665 serves as an interface between most standard
  3. parallel-bus microcontrollers/microprocessors and the serial I2C-bus
  4. and allows the parallel bus system to communicate bi-directionally
  5. with the I2C-bus.
  6. Required properties :
  7. - reg : Offset and length of the register set for the device
  8. - compatible : one of "nxp,pca9564" or "nxp,pca9665"
  9. Optional properties
  10. - interrupts : the interrupt number
  11. - reset-gpios : gpio specifier for gpio connected to RESET_N pin. As the line
  12. is active low, it should be marked GPIO_ACTIVE_LOW.
  13. - clock-frequency : I2C bus frequency.
  14. Example:
  15. i2c0: i2c@80000 {
  16. compatible = "nxp,pca9564";
  17. #address-cells = <1>;
  18. #size-cells = <0>;
  19. reg = <0x80000 0x4>;
  20. reset-gpios = <&gpio1 0 GPIO_ACTIVE_LOW>;
  21. clock-frequency = <100000>;
  22. };