Trent Piepho | a7d878a | 2009-01-10 17:26:01 +0000 | [diff] [blame] | 1 | LEDs connected to GPIO lines |
Anton Vorontsov | 89ae5b2 | 2008-07-04 20:53:28 +0400 | [diff] [blame] | 2 | |
| 3 | Required properties: |
Trent Piepho | a7d878a | 2009-01-10 17:26:01 +0000 | [diff] [blame] | 4 | - compatible : should be "gpio-leds". |
| 5 | |
| 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. |
| 8 | |
| 9 | LED sub-node properties: |
| 10 | - gpios : Should specify the LED's GPIO, see "Specifying GPIO information |
| 11 | for devices" in Documentation/powerpc/booting-without-of.txt. Active |
| 12 | low LEDs should be indicated using flags in the GPIO specifier. |
| 13 | - label : (optional) The label for this LED. If omitted, the label is |
Anton Vorontsov | 89ae5b2 | 2008-07-04 20:53:28 +0400 | [diff] [blame] | 14 | taken from the node name (excluding the unit address). |
Trent Piepho | a7d878a | 2009-01-10 17:26:01 +0000 | [diff] [blame] | 15 | - linux,default-trigger : (optional) This parameter, if present, is a |
| 16 | string defining the trigger assigned to the LED. Current triggers are: |
| 17 | "backlight" - LED will act as a back-light, controlled by the framebuffer |
| 18 | system |
| 19 | "default-on" - LED will turn on |
| 20 | "heartbeat" - LED "double" flashes at a load average based rate |
| 21 | "ide-disk" - LED indicates disk activity |
| 22 | "timer" - LED flashes at a fixed, configurable rate |
Anton Vorontsov | 89ae5b2 | 2008-07-04 20:53:28 +0400 | [diff] [blame] | 23 | |
Trent Piepho | a7d878a | 2009-01-10 17:26:01 +0000 | [diff] [blame] | 24 | Examples: |
Anton Vorontsov | 89ae5b2 | 2008-07-04 20:53:28 +0400 | [diff] [blame] | 25 | |
Trent Piepho | a7d878a | 2009-01-10 17:26:01 +0000 | [diff] [blame] | 26 | leds { |
| 27 | compatible = "gpio-leds"; |
| 28 | hdd { |
| 29 | label = "IDE Activity"; |
| 30 | gpios = <&mcu_pio 0 1>; /* Active low */ |
| 31 | linux,default-trigger = "ide-disk"; |
| 32 | }; |
Anton Vorontsov | 89ae5b2 | 2008-07-04 20:53:28 +0400 | [diff] [blame] | 33 | }; |
Trent Piepho | a7d878a | 2009-01-10 17:26:01 +0000 | [diff] [blame] | 34 | |
| 35 | run-control { |
| 36 | compatible = "gpio-leds"; |
| 37 | red { |
| 38 | gpios = <&mpc8572 6 0>; |
| 39 | }; |
| 40 | green { |
| 41 | gpios = <&mpc8572 7 0>; |
| 42 | }; |
| 43 | } |