diff options
author | Jayachandran C <jayachandranc@netlogicmicro.com> | 2012-07-13 09:44:22 -0400 |
---|---|---|
committer | Wolfram Sang <w.sang@pengutronix.de> | 2012-07-14 07:30:14 -0400 |
commit | 9ae97a8996a6d6f66e2fbc221906e2406d6c261f (patch) | |
tree | 48cb8fc54461db166f4626c1c528bed89417b8fd /Documentation/devicetree/bindings/i2c/i2c-ocores.txt | |
parent | 097df403128c858c646448c5181435f7b8bdcbdc (diff) |
i2c: i2c-ocores: DT bindings and minor fixes.
Cleanups to i2c-cores, no change in logic, changes are:
* Move i2c-ocores device tree documentation from source file to
Documentation/devicetree/bindings/i2c/i2c-ocores.txt.
* Add \n to dev_warn and dev_err messages where missing
* Minor updates to the text and formatting fixes.
Signed-off-by: Jayachandran C <jayachandranc@netlogicmicro.com>
Signed-off-by: Wolfram Sang <w.sang@pengutronix.de>
Diffstat (limited to 'Documentation/devicetree/bindings/i2c/i2c-ocores.txt')
-rw-r--r-- | Documentation/devicetree/bindings/i2c/i2c-ocores.txt | 27 |
1 files changed, 27 insertions, 0 deletions
diff --git a/Documentation/devicetree/bindings/i2c/i2c-ocores.txt b/Documentation/devicetree/bindings/i2c/i2c-ocores.txt new file mode 100644 index 000000000000..bfec8941509c --- /dev/null +++ b/Documentation/devicetree/bindings/i2c/i2c-ocores.txt | |||
@@ -0,0 +1,27 @@ | |||
1 | Device tree configuration for i2c-ocores | ||
2 | |||
3 | Required properties: | ||
4 | - compatible : "opencores,i2c-ocores" | ||
5 | - reg : bus address start and address range size of device | ||
6 | - interrupts : interrupt number | ||
7 | - regstep : size of device registers in bytes | ||
8 | - clock-frequency : frequency of bus clock in Hz | ||
9 | - #address-cells : should be <1> | ||
10 | - #size-cells : should be <0> | ||
11 | |||
12 | Example: | ||
13 | |||
14 | i2c0: ocores@a0000000 { | ||
15 | #address-cells = <1>; | ||
16 | #size-cells = <0>; | ||
17 | compatible = "opencores,i2c-ocores"; | ||
18 | reg = <0xa0000000 0x8>; | ||
19 | interrupts = <10>; | ||
20 | regstep = <1>; | ||
21 | clock-frequency = <20000000>; | ||
22 | |||
23 | dummy@60 { | ||
24 | compatible = "dummy"; | ||
25 | reg = <0x60>; | ||
26 | }; | ||
27 | }; | ||