blob: a1ee681942ccc01aedbd335cc3e2aaa69b036489 [file] [log] [blame]
Wolfram Sang16c4c522012-11-13 18:16:43 +01001
2* Marvell MV64XXX I2C controller
3
4Required properties :
5
6 - reg : Offset and length of the register set for the device
7 - compatible : Should be "marvell,mv64xxx-i2c"
8 - interrupts : The interrupt number
Gregory CLEMENT4c730a02013-06-21 15:32:06 +02009
10Optional properties :
11
12 - clock-frequency : Desired I2C bus clock frequency in Hz. If not set the
13default frequency is 100kHz
Wolfram Sang16c4c522012-11-13 18:16:43 +010014
15Examples:
16
17 i2c@11000 {
18 compatible = "marvell,mv64xxx-i2c";
19 reg = <0x11000 0x20>;
20 interrupts = <29>;
21 clock-frequency = <100000>;
22 };