diff options
author | Antonio Ospite <ospite@studenti.unina.it> | 2011-04-04 18:08:46 -0400 |
---|---|---|
committer | Linus Torvalds <torvalds@linux-foundation.org> | 2011-04-04 20:51:47 -0400 |
commit | 9a684e19afc630e0763246ee79c0578c1a8eaee8 (patch) | |
tree | 46637b603516deb789051f52a09cdf5830b5ac2a /Documentation/leds | |
parent | 9718269a7f5f6f3d723dd34e05269579a3ccfc1e (diff) |
Documentation: consolidate leds files to leds/ subdir
leds: move leds-class documentation under the leds/ subdir.
Add also a leds/00-INDEX file describing the files under leds/
Signed-off-by: Antonio Ospite <ospite@studenti.unina.it>
Acked-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Cc: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Randy Dunlap <randy.dunlap@oracle.com>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
Diffstat (limited to 'Documentation/leds')
-rw-r--r-- | Documentation/leds/00-INDEX | 8 | ||||
-rw-r--r-- | Documentation/leds/leds-class.txt | 97 | ||||
-rw-r--r-- | Documentation/leds/leds-lp3944.txt | 50 |
3 files changed, 155 insertions, 0 deletions
diff --git a/Documentation/leds/00-INDEX b/Documentation/leds/00-INDEX new file mode 100644 index 000000000000..29f481df32c7 --- /dev/null +++ b/Documentation/leds/00-INDEX | |||
@@ -0,0 +1,8 @@ | |||
1 | leds-class.txt | ||
2 | - documents LED handling under Linux. | ||
3 | leds-lp3944.txt | ||
4 | - notes on how to use the leds-lp3944 driver. | ||
5 | leds-lp5521.txt | ||
6 | - notes on how to use the leds-lp5521 driver. | ||
7 | leds-lp5523.txt | ||
8 | - notes on how to use the leds-lp5523 driver. | ||
diff --git a/Documentation/leds/leds-class.txt b/Documentation/leds/leds-class.txt new file mode 100644 index 000000000000..4996586e27e8 --- /dev/null +++ b/Documentation/leds/leds-class.txt | |||
@@ -0,0 +1,97 @@ | |||
1 | |||
2 | LED handling under Linux | ||
3 | ======================== | ||
4 | |||
5 | If you're reading this and thinking about keyboard leds, these are | ||
6 | handled by the input subsystem and the led class is *not* needed. | ||
7 | |||
8 | In its simplest form, the LED class just allows control of LEDs from | ||
9 | userspace. LEDs appear in /sys/class/leds/. The maximum brightness of the | ||
10 | LED is defined in max_brightness file. The brightness file will set the brightness | ||
11 | of the LED (taking a value 0-max_brightness). Most LEDs don't have hardware | ||
12 | brightness support so will just be turned on for non-zero brightness settings. | ||
13 | |||
14 | The class also introduces the optional concept of an LED trigger. A trigger | ||
15 | is a kernel based source of led events. Triggers can either be simple or | ||
16 | complex. A simple trigger isn't configurable and is designed to slot into | ||
17 | existing subsystems with minimal additional code. Examples are the ide-disk, | ||
18 | nand-disk and sharpsl-charge triggers. With led triggers disabled, the code | ||
19 | optimises away. | ||
20 | |||
21 | Complex triggers whilst available to all LEDs have LED specific | ||
22 | parameters and work on a per LED basis. The timer trigger is an example. | ||
23 | The timer trigger will periodically change the LED brightness between | ||
24 | LED_OFF and the current brightness setting. The "on" and "off" time can | ||
25 | be specified via /sys/class/leds/<device>/delay_{on,off} in milliseconds. | ||
26 | You can change the brightness value of a LED independently of the timer | ||
27 | trigger. However, if you set the brightness value to LED_OFF it will | ||
28 | also disable the timer trigger. | ||
29 | |||
30 | You can change triggers in a similar manner to the way an IO scheduler | ||
31 | is chosen (via /sys/class/leds/<device>/trigger). Trigger specific | ||
32 | parameters can appear in /sys/class/leds/<device> once a given trigger is | ||
33 | selected. | ||
34 | |||
35 | |||
36 | Design Philosophy | ||
37 | ================= | ||
38 | |||
39 | The underlying design philosophy is simplicity. LEDs are simple devices | ||
40 | and the aim is to keep a small amount of code giving as much functionality | ||
41 | as possible. Please keep this in mind when suggesting enhancements. | ||
42 | |||
43 | |||
44 | LED Device Naming | ||
45 | ================= | ||
46 | |||
47 | Is currently of the form: | ||
48 | |||
49 | "devicename:colour:function" | ||
50 | |||
51 | There have been calls for LED properties such as colour to be exported as | ||
52 | individual led class attributes. As a solution which doesn't incur as much | ||
53 | overhead, I suggest these become part of the device name. The naming scheme | ||
54 | above leaves scope for further attributes should they be needed. If sections | ||
55 | of the name don't apply, just leave that section blank. | ||
56 | |||
57 | |||
58 | Hardware accelerated blink of LEDs | ||
59 | ================================== | ||
60 | |||
61 | Some LEDs can be programmed to blink without any CPU interaction. To | ||
62 | support this feature, a LED driver can optionally implement the | ||
63 | blink_set() function (see <linux/leds.h>). To set an LED to blinking, | ||
64 | however, it is better to use use the API function led_blink_set(), | ||
65 | as it will check and implement software fallback if necessary. | ||
66 | |||
67 | To turn off blinking again, use the API function led_brightness_set() | ||
68 | as that will not just set the LED brightness but also stop any software | ||
69 | timers that may have been required for blinking. | ||
70 | |||
71 | The blink_set() function should choose a user friendly blinking value | ||
72 | if it is called with *delay_on==0 && *delay_off==0 parameters. In this | ||
73 | case the driver should give back the chosen value through delay_on and | ||
74 | delay_off parameters to the leds subsystem. | ||
75 | |||
76 | Setting the brightness to zero with brightness_set() callback function | ||
77 | should completely turn off the LED and cancel the previously programmed | ||
78 | hardware blinking function, if any. | ||
79 | |||
80 | |||
81 | Known Issues | ||
82 | ============ | ||
83 | |||
84 | The LED Trigger core cannot be a module as the simple trigger functions | ||
85 | would cause nightmare dependency issues. I see this as a minor issue | ||
86 | compared to the benefits the simple trigger functionality brings. The | ||
87 | rest of the LED subsystem can be modular. | ||
88 | |||
89 | |||
90 | Future Development | ||
91 | ================== | ||
92 | |||
93 | At the moment, a trigger can't be created specifically for a single LED. | ||
94 | There are a number of cases where a trigger might only be mappable to a | ||
95 | particular LED (ACPI?). The addition of triggers provided by the LED driver | ||
96 | should cover this option and be possible to add without breaking the | ||
97 | current interface. | ||
diff --git a/Documentation/leds/leds-lp3944.txt b/Documentation/leds/leds-lp3944.txt new file mode 100644 index 000000000000..c6eda18b15ef --- /dev/null +++ b/Documentation/leds/leds-lp3944.txt | |||
@@ -0,0 +1,50 @@ | |||
1 | Kernel driver lp3944 | ||
2 | ==================== | ||
3 | |||
4 | * National Semiconductor LP3944 Fun-light Chip | ||
5 | Prefix: 'lp3944' | ||
6 | Addresses scanned: None (see the Notes section below) | ||
7 | Datasheet: Publicly available at the National Semiconductor website | ||
8 | http://www.national.com/pf/LP/LP3944.html | ||
9 | |||
10 | Authors: | ||
11 | Antonio Ospite <ospite@studenti.unina.it> | ||
12 | |||
13 | |||
14 | Description | ||
15 | ----------- | ||
16 | The LP3944 is a helper chip that can drive up to 8 leds, with two programmable | ||
17 | DIM modes; it could even be used as a gpio expander but this driver assumes it | ||
18 | is used as a led controller. | ||
19 | |||
20 | The DIM modes are used to set _blink_ patterns for leds, the pattern is | ||
21 | specified supplying two parameters: | ||
22 | - period: from 0s to 1.6s | ||
23 | - duty cycle: percentage of the period the led is on, from 0 to 100 | ||
24 | |||
25 | Setting a led in DIM0 or DIM1 mode makes it blink according to the pattern. | ||
26 | See the datasheet for details. | ||
27 | |||
28 | LP3944 can be found on Motorola A910 smartphone, where it drives the rgb | ||
29 | leds, the camera flash light and the lcds power. | ||
30 | |||
31 | |||
32 | Notes | ||
33 | ----- | ||
34 | The chip is used mainly in embedded contexts, so this driver expects it is | ||
35 | registered using the i2c_board_info mechanism. | ||
36 | |||
37 | To register the chip at address 0x60 on adapter 0, set the platform data | ||
38 | according to include/linux/leds-lp3944.h, set the i2c board info: | ||
39 | |||
40 | static struct i2c_board_info __initdata a910_i2c_board_info[] = { | ||
41 | { | ||
42 | I2C_BOARD_INFO("lp3944", 0x60), | ||
43 | .platform_data = &a910_lp3944_leds, | ||
44 | }, | ||
45 | }; | ||
46 | |||
47 | and register it in the platform init function | ||
48 | |||
49 | i2c_register_board_info(0, a910_i2c_board_info, | ||
50 | ARRAY_SIZE(a910_i2c_board_info)); | ||