0001 I2C for Hisilicon hix5hd2 chipset platform
0002
0003 Required properties:
0004 - compatible: Must be "hisilicon,hix5hd2-i2c"
0005 - reg: physical base address of the controller and length of memory mapped
0006 region.
0007 - interrupts: interrupt number to the cpu.
0008 - #address-cells = <1>;
0009 - #size-cells = <0>;
0010 - clocks: phandles to input clocks.
0011
0012 Optional properties:
0013 - clock-frequency: Desired I2C bus frequency in Hz, otherwise defaults to 100000
0014 - Child nodes conforming to i2c bus binding
0015
0016 Examples:
0017 I2C0@f8b10000 {
0018 compatible = "hisilicon,hix5hd2-i2c";
0019 reg = <0xf8b10000 0x1000>;
0020 interrupts = <0 38 4>;
0021 clocks = <&clock HIX5HD2_I2C0_RST>;
0022 #address-cells = <1>;
0023 #size-cells = <0>;
0024 }