Merge tag 'armsoc-arm64' of git://git.kernel.org/pub/scm/linux/kernel/git/arm/arm-soc
[sfrench/cifs-2.6.git] / Documentation / devicetree / bindings / leds / common.txt
1 Common leds properties.
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
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.
17 - label : The label for this LED. If omitted, the label is taken from the node
18           name (excluding the unit address). It has to uniquely identify
19           a device, i.e. no other LED class device can be assigned the same
20           label.
21
22 - linux,default-trigger :  This parameter, if present, is a
23     string defining the trigger assigned to the LED.  Current triggers are:
24      "backlight" - LED will act as a back-light, controlled by the framebuffer
25                    system
26      "default-on" - LED will turn on (but for leds-gpio see "default-state"
27                     property in Documentation/devicetree/bindings/gpio/led.txt)
28      "heartbeat" - LED "double" flashes at a load average based rate
29      "disk-activity" - LED indicates disk activity
30      "ide-disk" - LED indicates IDE disk activity (deprecated),
31                   in new implementations use "disk-activity"
32      "timer" - LED flashes at a fixed, configurable rate
33
34 - led-max-microamp : Maximum LED supply current in microamperes. This property
35                      can be made mandatory for the board configurations
36                      introducing a risk of hardware damage in case an excessive
37                      current is set.
38                      For flash LED controllers with configurable current this
39                      property is mandatory for the LEDs in the non-flash modes
40                      (e.g. torch or indicator).
41
42 - panic-indicator : This property specifies that the LED should be used,
43                     if at all possible, as a panic indicator.
44
45 Required properties for flash LED child nodes:
46 - flash-max-microamp : Maximum flash LED supply current in microamperes.
47 - flash-max-timeout-us : Maximum timeout in microseconds after which the flash
48                          LED is turned off.
49
50 For controllers that have no configurable current the flash-max-microamp
51 property can be omitted.
52 For controllers that have no configurable timeout the flash-max-timeout-us
53 property can be omitted.
54
55 Examples:
56
57 system-status {
58         label = "Status";
59         linux,default-trigger = "heartbeat";
60         ...
61 };
62
63 camera-flash {
64         label = "Flash";
65         led-sources = <0>, <1>;
66         led-max-microamp = <50000>;
67         flash-max-microamp = <320000>;
68         flash-max-timeout-us = <500000>;
69 };