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. Valid
18 values are "on", "off", and "keep". If the LED is already on or off
19 and the default-state property is set the to same value, then no
20 glitch should be produced where the LED momentarily turns off (or
21 on). The "keep" setting will keep the LED at whatever its current
22 state is, without producing a glitch. The default is off if this
23 property is not present.
28 compatible = "gpio-leds";
30 label = "IDE Activity";
31 gpios = <&mcu_pio 0 1>; /* Active low */
32 linux,default-trigger = "ide-disk";
36 gpios = <&mcu_pio 1 0>;
37 /* Keep LED on if BIOS detected hardware fault */
38 default-state = "keep";
43 compatible = "gpio-leds";
45 gpios = <&mpc8572 6 0>;
46 default-state = "off";
49 gpios = <&mpc8572 7 0>;