1 LEDs connected to GPIO lines
4 - compatible : should be "gpio-leds".
6 Each LED is represented as a sub-node of the gpio-leds device. Each
7 node's name represents the name of the corresponding LED.
9 LED sub-node properties:
10 - gpios : Should specify the LED's GPIO, see "gpios property" in
11 Documentation/devicetree/bindings/gpio/gpio.txt. Active low LEDs should be
12 indicated using flags in the GPIO specifier.
14 see Documentation/devicetree/bindings/leds/common.txt
15 - linux,default-trigger : (optional)
16 see Documentation/devicetree/bindings/leds/common.txt
17 - default-state: (optional) The initial state of the LED.
18 see Documentation/devicetree/bindings/leds/common.txt
19 - retain-state-suspended: (optional) The suspend state can be retained.Such
21 - retain-state-shutdown: (optional) Retain the state of the LED on shutdown.
22 Useful in BMC systems, for example when the BMC is rebooted while the host
24 - panic-indicator : (optional)
25 see Documentation/devicetree/bindings/leds/common.txt
29 #include <dt-bindings/gpio/gpio.h>
32 compatible = "gpio-leds";
34 label = "Disk Activity";
35 gpios = <&mcu_pio 0 GPIO_ACTIVE_LOW>;
36 linux,default-trigger = "disk-activity";
40 gpios = <&mcu_pio 1 GPIO_ACTIVE_HIGH>;
41 /* Keep LED on if BIOS detected hardware fault */
42 default-state = "keep";
47 compatible = "gpio-leds";
49 gpios = <&mpc8572 6 GPIO_ACTIVE_HIGH>;
50 default-state = "off";
53 gpios = <&mpc8572 7 GPIO_ACTIVE_HIGH>;
59 compatible = "gpio-leds";
62 gpios = <&gpio1 2 GPIO_ACTIVE_HIGH>;
63 linux,default-trigger = "max8903-charger-charging";
64 retain-state-suspended;