mirror of
https://github.com/torvalds/linux.git
synced 2024-12-25 12:21:37 +00:00
43fea5813c
Here we apply the bindings required for successful Device Tree probing of the i2c-nomadik driver. Signed-off-by: Lee Jones <lee.jones@linaro.org> Acked-by: Linus Walleij <linus.walleij@linaro.org> Signed-off-by: Wolfram Sang <w.sang@pengutronix.de>
24 lines
521 B
Plaintext
24 lines
521 B
Plaintext
I2C for Nomadik based systems
|
|
|
|
Required (non-standard) properties:
|
|
- Nil
|
|
|
|
Recommended (non-standard) properties:
|
|
- clock-frequency : Maximum bus clock frequency for the device
|
|
|
|
Optional (non-standard) properties:
|
|
- Nil
|
|
|
|
Example :
|
|
|
|
i2c@80004000 {
|
|
compatible = "stericsson,db8500-i2c", "st,nomadik-i2c";
|
|
reg = <0x80004000 0x1000>;
|
|
interrupts = <0 21 0x4>;
|
|
#address-cells = <1>;
|
|
#size-cells = <0>;
|
|
v-i2c-supply = <&db8500_vape_reg>;
|
|
|
|
clock-frequency = <400000>;
|
|
};
|