diff options
author | Aaro Koskinen <aaro.koskinen@iki.fi> | 2012-11-18 18:36:19 +0200 |
---|---|---|
committer | Wolfram Sang <w.sang@pengutronix.de> | 2012-11-19 09:57:16 +0100 |
commit | 0857ba3c24c308f42a242fe8a1894772750230ce (patch) | |
tree | 5f12dd96ad895126ac17aa5e65ad66e60463ae3b /Documentation/devicetree | |
parent | a000b8c1e30115800d3de86b4b058cadd9cba59d (diff) | |
download | blackbird-op-linux-0857ba3c24c308f42a242fe8a1894772750230ce.tar.gz blackbird-op-linux-0857ba3c24c308f42a242fe8a1894772750230ce.zip |
i2c: i2c-cbus-gpio: introduce driver
Add i2c driver to enable access to devices behind CBUS on Nokia Internet
Tablets.
The patch also adds CBUS I2C configuration for N8x0 which is one of the
users of this driver.
Acked-by: Felipe Balbi <balbi@ti.com>
Acked-by: Tony Lindgren <tony@atomide.com>
Signed-off-by: Aaro Koskinen <aaro.koskinen@iki.fi>
Signed-off-by: Wolfram Sang <w.sang@pengutronix.de>
Diffstat (limited to 'Documentation/devicetree')
-rw-r--r-- | Documentation/devicetree/bindings/i2c/i2c-cbus-gpio.txt | 27 |
1 files changed, 27 insertions, 0 deletions
diff --git a/Documentation/devicetree/bindings/i2c/i2c-cbus-gpio.txt b/Documentation/devicetree/bindings/i2c/i2c-cbus-gpio.txt new file mode 100644 index 000000000000..8ce9cd2855b5 --- /dev/null +++ b/Documentation/devicetree/bindings/i2c/i2c-cbus-gpio.txt @@ -0,0 +1,27 @@ +Device tree bindings for i2c-cbus-gpio driver + +Required properties: + - compatible = "i2c-cbus-gpio"; + - gpios: clk, dat, sel + - #address-cells = <1>; + - #size-cells = <0>; + +Optional properties: + - child nodes conforming to i2c bus binding + +Example: + +i2c@0 { + compatible = "i2c-cbus-gpio"; + gpios = <&gpio 66 0 /* clk */ + &gpio 65 0 /* dat */ + &gpio 64 0 /* sel */ + >; + #address-cells = <1>; + #size-cells = <0>; + + retu-mfd: retu@1 { + compatible = "retu-mfd"; + reg = <0x1>; + }; +}; |