brcm,kona-i2c.txt 873 B

123456789101112131415161718192021222324252627282930313233343536
  1. Broadcom Kona Family I2C
  2. =========================
  3. This I2C controller is used in the following Broadcom SoCs:
  4. BCM11130
  5. BCM11140
  6. BCM11351
  7. BCM28145
  8. BCM28155
  9. Required Properties
  10. -------------------
  11. - compatible: "brcm,bcm11351-i2c", "brcm,kona-i2c"
  12. - reg: Physical base address and length of controller registers
  13. - interrupts: The interrupt number used by the controller
  14. - clocks: clock specifier for the kona i2c external clock
  15. - clock-frequency: The I2C bus frequency in Hz
  16. - #address-cells: Should be <1>
  17. - #size-cells: Should be <0>
  18. Refer to clocks/clock-bindings.txt for generic clock consumer
  19. properties.
  20. Example:
  21. i2c@3e016000 {
  22. compatible = "brcm,bcm11351-i2c","brcm,kona-i2c";
  23. reg = <0x3e016000 0x80>;
  24. interrupts = <GIC_SPI 103 IRQ_TYPE_LEVEL_HIGH>;
  25. clocks = <&bsc1_clk>;
  26. clock-frequency = <400000>;
  27. #address-cells = <1>;
  28. #size-cells = <0>;
  29. };