1* I2C for Cortina platforms
2
3Required properties :
4- compatible : Must be "cortina,ca-i2c"
5- reg : Offset and length of the register set for the device
6
7Recommended properties :
8- clock-frequency : desired I2C bus clock frequency in Hz. If not specified,
9		    default value is 100000. Possible values are 100000,
10		    400000 and 1000000.
11
12Examples :
13
14	i2c: i2c@f4329120 {
15		compatible = "cortina,ca-i2c";
16		reg = <0x0 0xf4329120 0x28>;
17		clock-frequency = <400000>;
18	};
19