-
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: 296192 b: refs/heads/master c: 21f8187 h: refs/heads/master v: v3
- Loading branch information
Nicolas Ferre
committed
Mar 1, 2012
1 parent
1f2fc87
commit da80356
Showing
6 changed files
with
292 additions
and
47 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: 4340cde57d54db2078d0f1ef070664e21d32711d | ||
refs/heads/master: 21f81872788b8089ec4214afad8fc6a0a23f70c8 |
20 changes: 20 additions & 0 deletions
20
trunk/Documentation/devicetree/bindings/gpio/gpio_atmel.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,20 @@ | ||
* Atmel GPIO controller (PIO) | ||
|
||
Required properties: | ||
- compatible: "atmel,at91rm9200-gpio" | ||
- reg: Should contain GPIO controller registers location and length | ||
- interrupts: Should be the port interrupt shared by all the pins. | ||
- #gpio-cells: Should be two. The first cell is the pin number and | ||
the second cell is used to specify optional parameters (currently | ||
unused). | ||
- gpio-controller: Marks the device node as a GPIO controller. | ||
|
||
Example: | ||
pioA: gpio@fffff200 { | ||
compatible = "atmel,at91rm9200-gpio"; | ||
reg = <0xfffff200 0x100>; | ||
interrupts = <2 4>; | ||
#gpio-cells = <2>; | ||
gpio-controller; | ||
}; | ||
|
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
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
Oops, something went wrong.