i2c-hix5hd2.txt 670 B

123456789101112131415161718192021222324
  1. I2C for Hisilicon hix5hd2 chipset platform
  2. Required properties:
  3. - compatible: Must be "hisilicon,hix5hd2-i2c"
  4. - reg: physical base address of the controller and length of memory mapped
  5. region.
  6. - interrupts: interrupt number to the cpu.
  7. - #address-cells = <1>;
  8. - #size-cells = <0>;
  9. - clocks: phandles to input clocks.
  10. Optional properties:
  11. - clock-frequency: Desired I2C bus frequency in Hz, otherwise defaults to 100000
  12. - Child nodes conforming to i2c bus binding
  13. Examples:
  14. I2C0@f8b10000 {
  15. compatible = "hisilicon,hix5hd2-i2c";
  16. reg = <0xf8b10000 0x1000>;
  17. interrupts = <0 38 4>;
  18. clocks = <&clock HIX5HD2_I2C0_RST>;
  19. #address-cells = <1>;
  20. #size-cells = <0>;
  21. }