Back to home page

OSCL-LXR

 
 

    


0001 * Wondermedia I2C Controller
0002 
0003 Required properties :
0004 
0005  - compatible : should be "wm,wm8505-i2c"
0006  - reg : Offset and length of the register set for the device
0007  - interrupts : <IRQ> where IRQ is the interrupt number
0008  - clocks : phandle to the I2C clock source
0009 
0010 Optional properties :
0011 
0012  - clock-frequency : desired I2C bus clock frequency in Hz.
0013         Valid values are 100000 and 400000.
0014         Default to 100000 if not specified, or invalid value.
0015 
0016 Example :
0017 
0018         i2c_0: i2c@d8280000 {
0019                 compatible = "wm,wm8505-i2c";
0020                 reg = <0xd8280000 0x1000>;
0021                 interrupts = <19>;
0022                 clocks = <&clki2c0>;
0023                 clock-frequency = <400000>;
0024         };