-
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: 333364 b: refs/heads/master c: 5c3d8a4 h: refs/heads/master v: v3
- Loading branch information
Heiko Schocher
authored and
Wolfram Sang
committed
Sep 12, 2012
1 parent
6bf659a
commit 70caee0
Showing
3 changed files
with
66 additions
and
12 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: 002f002d956e6b01700ab8753c6f268c9aafc34a | ||
refs/heads/master: 5c3d8a46ac9778d117ca26f4fec18d7b8c8831ed |
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,28 @@ | ||
* Texas Instruments Davinci I2C | ||
|
||
This file provides information, what the device node for the | ||
davinci i2c interface contain. | ||
|
||
Required properties: | ||
- compatible: "ti,davinci-i2c"; | ||
- reg : Offset and length of the register set for the device | ||
|
||
Recommended properties : | ||
- interrupts : standard interrupt property. | ||
- clock-frequency : desired I2C bus clock frequency in Hz. | ||
|
||
Example (enbw_cmc board): | ||
i2c@1c22000 { | ||
compatible = "ti,davinci-i2c"; | ||
reg = <0x22000 0x1000>; | ||
clock-frequency = <100000>; | ||
interrupts = <15>; | ||
interrupt-parent = <&intc>; | ||
#address-cells = <1>; | ||
#size-cells = <0>; | ||
|
||
dtt@48 { | ||
compatible = "national,lm75"; | ||
reg = <0x48>; | ||
}; | ||
}; |
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