Merge tag 'v3.3.7' into 3.3/master
[zen-stable.git] / Documentation / devicetree / bindings / i2c / i2c-designware.txt
blobe42a2ee233e65160f85840a74814a16774a714db
1 * Synopsys DesignWare I2C
3 Required properties :
5  - compatible : should be "snps,designware-i2c"
6  - reg : Offset and length of the register set for the device
7  - interrupts : <IRQ> where IRQ is the interrupt number.
9 Recommended properties :
11  - clock-frequency : desired I2C bus clock frequency in Hz.
13 Example :
15         i2c@f0000 {
16                 #address-cells = <1>;
17                 #size-cells = <0>;
18                 compatible = "snps,designware-i2c";
19                 reg = <0xf0000 0x1000>;
20                 interrupts = <11>;
21                 clock-frequency = <400000>;
22         };