i2c-mv64xxx.txt 496 B

12345678910111213141516171819202122
  1. * Marvell MV64XXX I2C controller
  2. Required properties :
  3. - reg : Offset and length of the register set for the device
  4. - compatible : Should be "marvell,mv64xxx-i2c"
  5. - interrupts : The interrupt number
  6. Optional properties :
  7. - clock-frequency : Desired I2C bus clock frequency in Hz. If not set the
  8. default frequency is 100kHz
  9. Examples:
  10. i2c@11000 {
  11. compatible = "marvell,mv64xxx-i2c";
  12. reg = <0x11000 0x20>;
  13. interrupts = <29>;
  14. clock-frequency = <100000>;
  15. };