i2c-designware.txt 493 B

1234567891011121314151617181920212223
  1. * Synopsys DesignWare I2C
  2. Required properties :
  3. - compatible : should be "snps,designware-i2c"
  4. - reg : Offset and length of the register set for the device
  5. - interrupts : <IRQ> where IRQ is the interrupt number.
  6. Recommended properties :
  7. - clock-frequency : desired I2C bus clock frequency in Hz.
  8. Example :
  9. i2c@f0000 {
  10. #address-cells = <1>;
  11. #size-cells = <0>;
  12. compatible = "snps,designware-i2c";
  13. reg = <0xf0000 0x1000>;
  14. interrupts = <11>;
  15. clock-frequency = <400000>;
  16. };