Merge tag 'fixes-for-3.13a' of git://git.kernel.org/pub/scm/linux/kernel/git/jic23...
[deliverable/linux.git] / Documentation / leds / leds-lp55xx.txt
CommitLineData
33b3a561
KM
1LP5521/LP5523/LP55231/LP5562/LP8501 Common Driver
2=================================================
c0285f8c
MWK
3
4Authors: Milo(Woogyom) Kim <milo.kim@ti.com>
5
6Description
7-----------
33b3a561 8LP5521, LP5523/55231, LP5562 and LP8501 have common features as below.
c0285f8c
MWK
9
10 Register access via the I2C
11 Device initialization/deinitialization
12 Create LED class devices for multiple output channels
13 Device attributes for user-space interface
14 Program memory for running LED patterns
15
16The LP55xx common driver provides these features using exported functions.
17 lp55xx_init_device() / lp55xx_deinit_device()
18 lp55xx_register_leds() / lp55xx_unregister_leds()
19 lp55xx_regsister_sysfs() / lp55xx_unregister_sysfs()
20
21( Driver Structure Data )
22
23In lp55xx common driver, two different data structure is used.
24
25o lp55xx_led
26 control multi output LED channels such as led current, channel index.
27o lp55xx_chip
28 general chip control such like the I2C and platform data.
29
30For example, LP5521 has maximum 3 LED channels.
31LP5523/55231 has 9 output channels.
32
33lp55xx_chip for LP5521 ... lp55xx_led #1
34 lp55xx_led #2
35 lp55xx_led #3
36
37lp55xx_chip for LP5523 ... lp55xx_led #1
38 lp55xx_led #2
39 .
40 .
41 lp55xx_led #9
42
43( Chip Dependent Code )
44
45To support device specific configurations, special structure
46'lpxx_device_config' is used.
47
48 Maximum number of channels
49 Reset command, chip enable command
50 Chip specific initialization
51 Brightness control register access
52 Setting LED output current
53 Program memory address access for running patterns
54 Additional device specific attributes
55
56( Firmware Interface )
57
58LP55xx family devices have the internal program memory for running
59various LED patterns.
60This pattern data is saved as a file in the user-land or
61hex byte string is written into the memory through the I2C.
62LP55xx common driver supports the firmware interface.
63
64LP55xx chips have three program engines.
65To load and run the pattern, the programming sequence is following.
66 (1) Select an engine number (1/2/3)
67 (2) Mode change to load
68 (3) Write pattern data into selected area
69 (4) Mode change to run
70
71The LP55xx common driver provides simple interfaces as below.
72select_engine : Select which engine is used for running program
73run_engine : Start program which is loaded via the firmware interface
74firmware : Load program data
75
76For example, run blinking pattern in engine #1 of LP5521
77echo 1 > /sys/bus/i2c/devices/xxxx/select_engine
78echo 1 > /sys/class/firmware/lp5521/loading
79echo "4000600040FF6000" > /sys/class/firmware/lp5521/data
80echo 0 > /sys/class/firmware/lp5521/loading
81echo 1 > /sys/bus/i2c/devices/xxxx/run_engine
82
83For example, run blinking pattern in engine #3 of LP55231
84echo 3 > /sys/bus/i2c/devices/xxxx/select_engine
85echo 1 > /sys/class/firmware/lp55231/loading
86echo "9d0740ff7e0040007e00a0010000" > /sys/class/firmware/lp55231/data
87echo 0 > /sys/class/firmware/lp55231/loading
88echo 1 > /sys/bus/i2c/devices/xxxx/run_engine
89
90To start blinking patterns in engine #2 and #3 simultaneously,
91for idx in 2 3
92do
93 echo $idx > /sys/class/leds/red/device/select_engine
94 sleep 0.1
95 echo 1 > /sys/class/firmware/lp5521/loading
96 echo "4000600040FF6000" > /sys/class/firmware/lp5521/data
97 echo 0 > /sys/class/firmware/lp5521/loading
98done
99echo 1 > /sys/class/leds/red/device/run_engine
100
101Here is another example for LP5523.
102echo 2 > /sys/bus/i2c/devices/xxxx/select_engine
103echo 1 > /sys/class/firmware/lp5523/loading
104echo "9d80400004ff05ff437f0000" > /sys/class/firmware/lp5523/data
105echo 0 > /sys/class/firmware/lp5523/loading
106echo 1 > /sys/bus/i2c/devices/xxxx/run_engine
107
108As soon as 'loading' is set to 0, registered callback is called.
109Inside the callback, the selected engine is loaded and memory is updated.
110To run programmed pattern, 'run_engine' attribute should be enabled.
111
33b3a561
KM
112The pattern sqeuence of LP8501 is same as LP5523.
113However pattern data is specific.
114Ex 1) Engine 1 is used
115echo 1 > /sys/bus/i2c/devices/xxxx/select_engine
116echo 1 > /sys/class/firmware/lp8501/loading
117echo "9d0140ff7e0040007e00a001c000" > /sys/class/firmware/lp8501/data
118echo 0 > /sys/class/firmware/lp8501/loading
119echo 1 > /sys/bus/i2c/devices/xxxx/run_engine
120
121Ex 2) Engine 2 and 3 are used at the same time
122echo 2 > /sys/bus/i2c/devices/xxxx/select_engine
123sleep 1
124echo 1 > /sys/class/firmware/lp8501/loading
125echo "9d0140ff7e0040007e00a001c000" > /sys/class/firmware/lp8501/data
126echo 0 > /sys/class/firmware/lp8501/loading
127sleep 1
128echo 3 > /sys/bus/i2c/devices/xxxx/select_engine
129sleep 1
130echo 1 > /sys/class/firmware/lp8501/loading
131echo "9d0340ff7e0040007e00a001c000" > /sys/class/firmware/lp8501/data
132echo 0 > /sys/class/firmware/lp8501/loading
133sleep 1
134echo 1 > /sys/class/leds/d1/device/run_engine
135
c0285f8c
MWK
136( 'run_engine' and 'firmware_cb' )
137The sequence of running the program data is common.
138But each device has own specific register addresses for commands.
139To support this, 'run_engine' and 'firmware_cb' are configurable in each driver.
140run_engine : Control the selected engine
141firmware_cb : The callback function after loading the firmware is done.
142 Chip specific commands for loading and updating program memory.
ff45262a
KM
143
144( Predefined pattern data )
145
146Without the firmware interface, LP55xx driver provides another method for
147loading a LED pattern. That is 'predefined' pattern.
148A predefined pattern is defined in the platform data and load it(or them)
149via the sysfs if needed.
150To use the predefined pattern concept, 'patterns' and 'num_patterns' should be
151configured.
152
153 Example of predefined pattern data:
154
155 /* mode_1: blinking data */
156 static const u8 mode_1[] = {
157 0x40, 0x00, 0x60, 0x00, 0x40, 0xFF, 0x60, 0x00,
158 };
159
160 /* mode_2: always on */
161 static const u8 mode_2[] = { 0x40, 0xFF, };
162
163 struct lp55xx_predef_pattern board_led_patterns[] = {
164 {
165 .r = mode_1,
166 .size_r = ARRAY_SIZE(mode_1),
167 },
168 {
169 .b = mode_2,
170 .size_b = ARRAY_SIZE(mode_2),
171 },
172 }
173
174 struct lp55xx_platform_data lp5562_pdata = {
175 ...
176 .patterns = board_led_patterns,
177 .num_patterns = ARRAY_SIZE(board_led_patterns),
178 };
179
180Then, mode_1 and mode_2 can be run via through the sysfs.
181
182 echo 1 > /sys/bus/i2c/devices/xxxx/led_pattern # red blinking LED pattern
183 echo 2 > /sys/bus/i2c/devices/xxxx/led_pattern # blue LED always on
184
185To stop running pattern,
186 echo 0 > /sys/bus/i2c/devices/xxxx/led_pattern
This page took 0.06401 seconds and 5 git commands to generate.