i2c-rcar.txt 569 B

1234567891011121314151617181920212223
  1. I2C for R-Car platforms
  2. Required properties:
  3. - compatible: Must be one of
  4. "renesas,i2c-rcar"
  5. "renesas,i2c-r8a7778"
  6. "renesas,i2c-r8a7779"
  7. "renesas,i2c-r8a7790"
  8. - reg: physical base address of the controller and length of memory mapped
  9. region.
  10. - interrupts: interrupt specifier.
  11. Optional properties:
  12. - clock-frequency: desired I2C bus clock frequency in Hz. The absence of this
  13. propoerty indicates the default frequency 100 kHz.
  14. Examples :
  15. i2c0: i2c@e6500000 {
  16. compatible = "renesas,i2c-rcar-h2";
  17. reg = <0 0xe6500000 0 0x428>;
  18. interrupts = <0 174 0x4>;
  19. };