i2c-cadence.txt 779 B

12345678910111213141516171819202122232425
  1. Binding for the Cadence I2C controller
  2. Required properties:
  3. - reg: Physical base address and size of the controller's register area.
  4. - compatible: Compatibility string. Must be 'cdns,i2c-r1p10'.
  5. - clocks: Input clock specifier. Refer to common clock bindings.
  6. - interrupts: Interrupt specifier. Refer to interrupt bindings.
  7. - #address-cells: Should be 1.
  8. - #size-cells: Should be 0.
  9. Optional properties:
  10. - clock-frequency: Desired operating frequency, in Hz, of the bus.
  11. - clock-names: Input clock name, should be 'pclk'.
  12. Example:
  13. i2c@e0004000 {
  14. compatible = "cdns,i2c-r1p10";
  15. clocks = <&clkc 38>;
  16. interrupts = <GIC_SPI 25 IRQ_TYPE_LEVEL_HIGH>;
  17. reg = <0xe0004000 0x1000>;
  18. clock-frequency = <400000>;
  19. #address-cells = <1>;
  20. #size-cells = <0>;
  21. };