diff options
author | Jacek Anaszewski <j.anaszewski@samsung.com> | 2015-01-27 03:07:08 -0500 |
---|---|---|
committer | Bryan Wu <cooloney@gmail.com> | 2015-01-29 17:53:07 -0500 |
commit | 4552d2ee3ccb50e2926c53f58c3d7c4c3df9568c (patch) | |
tree | 628245c92eeb9de072d6cf157c6f294228d7a01b | |
parent | 7aea8389a77abf9fde254aca2434a605c7704f58 (diff) |
DT: leds: Add led-sources property
Add a property for defining device outputs the LED
represented by the DT child node is connected to.
Signed-off-by: Jacek Anaszewski <j.anaszewski@samsung.com>
Acked-by: Kyungmin Park <kyungmin.park@samsung.com>
Cc: Bryan Wu <cooloney@gmail.com>
Cc: Richard Purdie <rpurdie@rpsys.net>
Cc: Pawel Moll <pawel.moll@arm.com>
Cc: Mark Rutland <mark.rutland@arm.com>
Cc: Ian Campbell <ijc+devicetree@hellion.org.uk>
Cc: Kumar Gala <galak@codeaurora.org>
Cc: devicetree@vger.kernel.org
Acked-by: Pavel Machek <pavel@ucw.cz>
Acked-by: Rob Herring <robh@kernel.org>
Signed-off-by: Bryan Wu <cooloney@gmail.com>
-rw-r--r-- | Documentation/devicetree/bindings/leds/common.txt | 16 |
1 files changed, 15 insertions, 1 deletions
diff --git a/Documentation/devicetree/bindings/leds/common.txt b/Documentation/devicetree/bindings/leds/common.txt index a2c3f7abe718..34811c57db69 100644 --- a/Documentation/devicetree/bindings/leds/common.txt +++ b/Documentation/devicetree/bindings/leds/common.txt | |||
@@ -1,6 +1,19 @@ | |||
1 | Common leds properties. | 1 | Common leds properties. |
2 | 2 | ||
3 | LED and flash LED devices provide the same basic functionality as current | ||
4 | regulators, but extended with LED and flash LED specific features like | ||
5 | blinking patterns, flash timeout, flash faults and external flash strobe mode. | ||
6 | |||
7 | Many LED devices expose more than one current output that can be connected | ||
8 | to one or more discrete LED component. Since the arrangement of connections | ||
9 | can influence the way of the LED device initialization, the LED components | ||
10 | have to be tightly coupled with the LED device binding. They are represented | ||
11 | by child nodes of the parent LED device binding. | ||
12 | |||
3 | Optional properties for child nodes: | 13 | Optional properties for child nodes: |
14 | - led-sources : List of device current outputs the LED is connected to. The | ||
15 | outputs are identified by the numbers that must be defined | ||
16 | in the LED device binding documentation. | ||
4 | - label : The label for this LED. If omitted, the label is | 17 | - label : The label for this LED. If omitted, the label is |
5 | taken from the node name (excluding the unit address). | 18 | taken from the node name (excluding the unit address). |
6 | 19 | ||
@@ -33,7 +46,8 @@ system-status { | |||
33 | 46 | ||
34 | camera-flash { | 47 | camera-flash { |
35 | label = "Flash"; | 48 | label = "Flash"; |
49 | led-sources = <0>, <1>; | ||
36 | max-microamp = <50000>; | 50 | max-microamp = <50000>; |
37 | flash-max-microamp = <320000>; | 51 | flash-max-microamp = <320000>; |
38 | flash-timeout-us = <500000>; | 52 | flash-timeout-us = <500000>; |
39 | } | 53 | }; |