-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
yaml --- r: 319186 b: refs/heads/master c: 9ae97a8 h: refs/heads/master v: v3
- Loading branch information
Jayachandran C
authored and
Wolfram Sang
committed
Jul 14, 2012
1 parent
238b9b0
commit 6198f22
Showing
3 changed files
with
35 additions
and
39 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,2 @@ | ||
--- | ||
refs/heads/master: 097df403128c858c646448c5181435f7b8bdcbdc | ||
refs/heads/master: 9ae97a8996a6d6f66e2fbc221906e2406d6c261f |
27 changes: 27 additions & 0 deletions
27
trunk/Documentation/devicetree/bindings/i2c/i2c-ocores.txt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,27 @@ | ||
Device tree configuration for i2c-ocores | ||
|
||
Required properties: | ||
- compatible : "opencores,i2c-ocores" | ||
- reg : bus address start and address range size of device | ||
- interrupts : interrupt number | ||
- regstep : size of device registers in bytes | ||
- clock-frequency : frequency of bus clock in Hz | ||
- #address-cells : should be <1> | ||
- #size-cells : should be <0> | ||
|
||
Example: | ||
|
||
i2c0: ocores@a0000000 { | ||
#address-cells = <1>; | ||
#size-cells = <0>; | ||
compatible = "opencores,i2c-ocores"; | ||
reg = <0xa0000000 0x8>; | ||
interrupts = <10>; | ||
regstep = <1>; | ||
clock-frequency = <20000000>; | ||
|
||
dummy@60 { | ||
compatible = "dummy"; | ||
reg = <0x60>; | ||
}; | ||
}; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters