-
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: 308460 b: refs/heads/master c: a092de1 h: refs/heads/master v: v3
- Loading branch information
Roland Stigge
authored and
Wolfram Sang
committed
May 12, 2012
1 parent
4e3cd0a
commit 15fd5d1
Showing
4 changed files
with
85 additions
and
17 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: 973c5ed45dbdf8fd90e300826507b5e6814916af | ||
refs/heads/master: a092de11bb4a96ac43ede0352e09bdf7e06280e8 |
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,36 @@ | ||
* NXP PNX I2C Controller | ||
|
||
Required properties: | ||
|
||
- reg: Offset and length of the register set for the device | ||
- compatible: should be "nxp,pnx-i2c" | ||
- interrupts: configure one interrupt line | ||
- #address-cells: always 1 (for i2c addresses) | ||
- #size-cells: always 0 | ||
- interrupt-parent: the phandle for the interrupt controller that | ||
services interrupts for this device. | ||
|
||
Optional properties: | ||
|
||
- clock-frequency: desired I2C bus clock frequency in Hz, Default: 100000 Hz | ||
|
||
Examples: | ||
|
||
i2c1: i2c@400a0000 { | ||
compatible = "nxp,pnx-i2c"; | ||
reg = <0x400a0000 0x100>; | ||
interrupt-parent = <&mic>; | ||
interrupts = <51 0>; | ||
#address-cells = <1>; | ||
#size-cells = <0>; | ||
}; | ||
|
||
i2c2: i2c@400a8000 { | ||
compatible = "nxp,pnx-i2c"; | ||
reg = <0x400a8000 0x100>; | ||
interrupt-parent = <&mic>; | ||
interrupts = <50 0>; | ||
#address-cells = <1>; | ||
#size-cells = <0>; | ||
clock-frequency = <100000>; | ||
}; |
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
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