-
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.
leds: leds-ns2: add device tree binding
Signed-off-by: Simon Guinot <simon.guinot@sequanux.org> Reviewed-by: Andrew Lunn <andrew@lunn.ch> Signed-off-by: Jason Cooper <jason@lakedaemon.net>
- Loading branch information
Simon Guinot
authored and
Jason Cooper
committed
Nov 21, 2012
1 parent
bff0844
commit 72052fc
Showing
2 changed files
with
101 additions
and
3 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 |
---|---|---|
@@ -0,0 +1,26 @@ | ||
Binding for dual-GPIO LED found on Network Space v2 (and parents). | ||
|
||
Required properties: | ||
- compatible: "lacie,ns2-leds". | ||
|
||
Each LED is represented as a sub-node of the ns2-leds device. | ||
|
||
Required sub-node properties: | ||
- cmd-gpio: Command LED GPIO. See OF device-tree GPIO specification. | ||
- slow-gpio: Slow LED GPIO. See OF device-tree GPIO specification. | ||
|
||
Optional sub-node properties: | ||
- label: Name for this LED. If omitted, the label is taken from the node name. | ||
- linux,default-trigger: Trigger assigned to the LED. | ||
|
||
Example: | ||
|
||
ns2-leds { | ||
compatible = "lacie,ns2-leds"; | ||
|
||
blue-sata { | ||
label = "ns2:blue:sata"; | ||
slow-gpio = <&gpio0 29 0>; | ||
cmd-gpio = <&gpio0 30 0>; | ||
}; | ||
}; |
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