i2c-vt8500.txt 607 B

123456789101112131415161718192021222324
  1. * Wondermedia I2C Controller
  2. Required properties :
  3. - compatible : should be "wm,wm8505-i2c"
  4. - reg : Offset and length of the register set for the device
  5. - interrupts : <IRQ> where IRQ is the interrupt number
  6. - clocks : phandle to the I2C clock source
  7. Optional properties :
  8. - clock-frequency : desired I2C bus clock frequency in Hz.
  9. Valid values are 100000 and 400000.
  10. Default to 100000 if not specified, or invalid value.
  11. Example :
  12. i2c_0: i2c@d8280000 {
  13. compatible = "wm,wm8505-i2c";
  14. reg = <0xd8280000 0x1000>;
  15. interrupts = <19>;
  16. clocks = <&clki2c0>;
  17. clock-frequency = <400000>;
  18. };