Editing N900 Hardware LED

Warning: You are not logged in. Your IP address will be recorded in this page's edit history.
The edit can be undone. Please check the comparison below to verify that this is what you want to do, and then save the changes below to finish undoing the edit.
Latest revision Your text
Line 3: Line 3:
The [[Nokia N900|N900]] has LP5523 <ref name="lp5523-spec">http://www.national.com/pf/LP/LP5523.html</ref> <ref name="leds-lp5523-driver">http://mxr.maemo.org/fremantle/source/kernel/drivers/leds/leds-lp5523.c</ref>, which has 3 engines like LP5521 (compatible though augmented instruction set) but can drive 9 LEDs via a multiplexer which maps each LED to one of the 3 engines. A LED also can be unassigned to any engine, in which case you can control it by writing to the corresponding brightness sysnode) which handles the keyboard and notification LED. (not the [[N900 Hardware Flash Torch|flash LEDs]] and red indicator light next to those, and also not the Infrared-LED used for CIR)
The [[Nokia N900|N900]] has LP5523 <ref name="lp5523-spec">http://www.national.com/pf/LP/LP5523.html</ref> <ref name="leds-lp5523-driver">http://mxr.maemo.org/fremantle/source/kernel/drivers/leds/leds-lp5523.c</ref>, which has 3 engines like LP5521 (compatible though augmented instruction set) but can drive 9 LEDs via a multiplexer which maps each LED to one of the 3 engines. A LED also can be unassigned to any engine, in which case you can control it by writing to the corresponding brightness sysnode) which handles the keyboard and notification LED. (not the [[N900 Hardware Flash Torch|flash LEDs]] and red indicator light next to those, and also not the Infrared-LED used for CIR)
-
The controller can be programmed via "/sys/class/i2c-adapter/i2c-2/2-0032". In that directory there are three files corresponding to the three channels: <code>engine1_mode</code>, <code>engine2_mode</code> and <code>engine3_mode</code>. Each file "stores" one of <code>run</code>, <code>load</code>, <code>disabled</code> (it seems that there is another mode "direct" but it doesn't work)(direct mode requires explicit writes to PWM, current and multiplexing registers, which may not be supported in the code...):
+
The controller can be programmed via "/sys/class/i2c-adapter/i2c-2/2-0032" (FIXME: is this stable?). In that directory there are three files corresponding to the three channels: <code>engine1_mode</code>, <code>engine2_mode</code> and <code>engine3_mode</code>. Each file "stores" one of <code>run</code>, <code>load</code>, <code>disabled</code> (it seems that there is another mode "direct" but it doesn't work)(direct mode requires explicit writes to PWM, current and multiplexing registers, which may not be supported in the code...):
* <code>run</code>: The program runs
* <code>run</code>: The program runs
* <code>disabled</code>: The channel is disabled - not running
* <code>disabled</code>: The channel is disabled - not running
* <code>load</code>: In that state, there are two more files in that directory:  
* <code>load</code>: In that state, there are two more files in that directory:  
-
** engine1_LEDs is in the form "0000bgr00" (9 digits, "1" or "0"), where rgb control which LEDs should participate. The 6 "0" in the above pattern correspond to the 6 kbd white LEDs controlled by MCE via engine3, so readout of engine3_leds gives 111100011 ;-)
+
** engine1_LEDs is in the form "0000rgb00" (9 digits, "1" or "0"), where rgb control which LEDs should participate. The 6 "0" in the above pattern correspond to the 6 kbd white LEDs controlled by MCE via engine3, so readout of engine3_leds gives 111100011 ;-)
** engine1_load accepts a string as specified above (e.g. 9d804000427f0d7f7f007f0042000000). LP5523 has an absolute storage of 96 steps a 16bits, which can dynamically partitioned between the three engines. (Supports 32-96 steps per engine, dynamically-assigned, alas the lp5523.ko driver is braindamaged and doesn't support more than 16 instructions per engine)
** engine1_load accepts a string as specified above (e.g. 9d804000427f0d7f7f007f0042000000). LP5523 has an absolute storage of 96 steps a 16bits, which can dynamically partitioned between the three engines. (Supports 32-96 steps per engine, dynamically-assigned, alas the lp5523.ko driver is braindamaged and doesn't support more than 16 instructions per engine)
After that, when the state is changed to "run", the program will be ran by the controller.  
After that, when the state is changed to "run", the program will be ran by the controller.  
Line 18: Line 18:
</source>
</source>
suggesting different, the units in there are 0.1 mA (100 µA per step is correct). So the driver init default "50" for all LEDs is 5 mA, and mce seems to set current to 0.2 mA (value 2 in the led_current sysnode) for B and G, and either to 0.2 mA or 0.8 mA for R. Probably settings as high as 100 for 10 mA are safe for the RGB LED, higher values might destroy the LED. (yes, correct, the RGB could be damaged from heat if set to more than 10 mA on all 3 LEDs)
suggesting different, the units in there are 0.1 mA (100 µA per step is correct). So the driver init default "50" for all LEDs is 5 mA, and mce seems to set current to 0.2 mA (value 2 in the led_current sysnode) for B and G, and either to 0.2 mA or 0.8 mA for R. Probably settings as high as 100 for 10 mA are safe for the RGB LED, higher values might destroy the LED. (yes, correct, the RGB could be damaged from heat if set to more than 10 mA on all 3 LEDs)
 +
 +
NOTE: There must be a delay (how much? The specs of LP5521 mentions it) between writes to sysfs files.
Line 35: Line 37:
==Software==
==Software==
-
IroN900:/sys/class/i2c-adapter/i2c-2/2-0032# echo load >engine1_mode
+
 
-
IroN900:/sys/class/i2c-adapter/i2c-2/2-0032# echo load >engine2_mode
+
-
IroN900:/sys/class/i2c-adapter/i2c-2/2-0032# echo load >engine3_mode
+
-
IroN900:/sys/class/i2c-adapter/i2c-2/2-0032# ls -l
+
-
insgesamt 0
+
-
lrwxrwxrwx 1 root root    0 2022-12-15 16:31 bus -> ../../../../bus/i2c
+
-
lrwxrwxrwx 1 root root    0 2022-12-15 16:31 driver -> ../../../../bus/i2c/drivers/lp5523
+
-
-rw-rw-rw- 1 root root 4096 2022-12-15 16:34 engine1_leds
+
-
--w--w--w- 1 root root 4096 2022-12-15 16:34 engine1_load
+
-
-rw-rw-rw- 1 root root 4096 2022-12-15 16:34 engine1_mode
+
-
-rw-rw-rw- 1 root root 4096 2022-12-15 16:36 engine2_leds
+
-
--w--w--w- 1 root root 4096 2022-12-15 16:36 engine2_load
+
-
-rw-rw-rw- 1 root root 4096 2022-12-15 16:36 engine2_mode
+
-
-rw-rw-rw- 1 root root 4096 2022-12-15 16:36 engine3_leds
+
-
--w--w--w- 1 root root 4096 2022-12-15 16:36 engine3_load
+
-
-rw-rw-rw- 1 root root 4096 2022-12-15 16:36 engine3_mode
+
-
lrwxrwxrwx 1 root root    0 2022-12-15 16:31 leds:lp5523:b -> ../../../leds/lp5523:b
+
-
lrwxrwxrwx 1 root root    0 2022-12-15 16:31 leds:lp5523:g -> ../../../leds/lp5523:g
+
-
lrwxrwxrwx 1 root root    0 2022-12-15 16:31 leds:lp5523:kb1 -> ../../../leds/lp5523:kb1
+
-
lrwxrwxrwx 1 root root    0 2022-12-15 16:31 leds:lp5523:kb2 -> ../../../leds/lp5523:kb2
+
-
lrwxrwxrwx 1 root root    0 2022-12-15 16:31 leds:lp5523:kb3 -> ../../../leds/lp5523:kb3
+
-
lrwxrwxrwx 1 root root    0 2022-12-15 16:31 leds:lp5523:kb4 -> ../../../leds/lp5523:kb4
+
-
lrwxrwxrwx 1 root root    0 2022-12-15 16:31 leds:lp5523:kb5 -> ../../../leds/lp5523:kb5
+
-
lrwxrwxrwx 1 root root    0 2022-12-15 16:31 leds:lp5523:kb6 -> ../../../leds/lp5523:kb6
+
-
lrwxrwxrwx 1 root root    0 2022-12-15 16:31 leds:lp5523:r -> ../../../leds/lp5523:r
+
-
-r--r--r-- 1 root root 4096 2022-12-15 16:31 modalias
+
-
-r--r--r-- 1 root root 4096 2022-12-15 16:31 name
+
-
drwxr-xr-x 2 root root    0 2022-12-15 16:31 power
+
-
-r--r--r-- 1 root root 4096 2022-12-15 16:31 selftest
+
-
lrwxrwxrwx 1 root root    0 2022-12-15 16:31 subsystem -> ../../../../bus/i2c
+
-
-rw-r--r-- 1 root root 4096 2022-12-15 16:31 uevent
+
== References ==
== References ==
Line 71: Line 43:
also see [[LED_patterns]] of which this page is a "fork" without cleaning the original page, so now there are two versions with almost identical but slightly complementary info
also see [[LED_patterns]] of which this page is a "fork" without cleaning the original page, so now there are two versions with almost identical but slightly complementary info
-
Since beginning of 2012 a datasheet for LP5523 is available from TI: http://www.ti.com/product/lp5523 Direct link: http://www.ti.com/general/docs/lit/getliterature.tsp?literatureNumber=snvs550d&fileType=pdf
+
Since beginning of 2012 a datasheet for LP5523 is available from TI: http://www.ti.com/lit/ds/snvs550c/snvs550c.pdf
<references />
<references />
[[Category:N900 Hardware]]
[[Category:N900 Hardware]]

Learn more about Contributing to the wiki.


Please note that all contributions to maemo.org wiki may be edited, altered, or removed by other contributors. If you do not want your writing to be edited mercilessly, then do not submit it here.
You are also promising us that you wrote this yourself, or copied it from a public domain or similar free resource (see maemo.org wiki:Copyrights for details). Do not submit copyrighted work without permission!


Cancel | Editing help (opens in new window)