-
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: 256726 b: refs/heads/master c: 8937cb6 h: refs/heads/master v: v3
- Loading branch information
Shawn Guo
authored and
Grant Likely
committed
Jul 8, 2011
1 parent
e9f8fac
commit 420753e
Showing
3 changed files
with
51 additions
and
7 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: 14305e685dff531583e95c5076f633f2fe2b141c | ||
refs/heads/master: 8937cb602bea120248cef64961fc46836a394c8a |
22 changes: 22 additions & 0 deletions
22
trunk/Documentation/devicetree/bindings/gpio/fsl-imx-gpio.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,22 @@ | ||
* Freescale i.MX/MXC GPIO controller | ||
|
||
Required properties: | ||
- compatible : Should be "fsl,<soc>-gpio" | ||
- reg : Address and length of the register set for the device | ||
- interrupts : Should be the port interrupt shared by all 32 pins, if | ||
one number. If two numbers, the first one is the interrupt shared | ||
by low 16 pins and the second one is for high 16 pins. | ||
- gpio-controller : Marks the device node as a gpio controller. | ||
- #gpio-cells : Should be two. The first cell is the pin number and | ||
the second cell is used to specify optional parameters (currently | ||
unused). | ||
|
||
Example: | ||
|
||
gpio0: gpio@73f84000 { | ||
compatible = "fsl,imx51-gpio", "fsl,imx31-gpio"; | ||
reg = <0x73f84000 0x4000>; | ||
interrupts = <50 51>; | ||
gpio-controller; | ||
#gpio-cells = <2>; | ||
}; |
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