<feed xmlns='http://www.w3.org/2005/Atom'>
<title>linux-toradex.git/drivers/leds/leds-bd2802.c, branch v2.6.32.45</title>
<subtitle>Linux kernel for Apalis and Colibri modules</subtitle>
<link rel='alternate' type='text/html' href='https://git.toradex.cn/cgit/linux-toradex.git/'/>
<entry>
<title>leds: add the sysfs interface into the leds-bd2802 driver for changing wave pattern and led current.</title>
<updated>2009-06-23T19:19:10+00:00</updated>
<author>
<name>Kim Kyuwon</name>
<email>chammoru@gmail.com</email>
</author>
<published>2009-06-10T19:48:50+00:00</published>
<link rel='alternate' type='text/html' href='https://git.toradex.cn/cgit/linux-toradex.git/commit/?id=8792f7cf4368f9bc337eee65851d8e7abbbf946c'/>
<id>8792f7cf4368f9bc337eee65851d8e7abbbf946c</id>
<content type='text'>
Allow the user application to change the wave pattern and led current by
'wave_pattern' and 'rgb_current' sysfs files.

Signed-off-by: Kim Kyuwon &lt;q1.kim@samsung.com&gt;
Signed-off-by: Andrew Morton &lt;akpm@linux-foundation.org&gt;
Signed-off-by: Richard Purdie &lt;rpurdie@linux.intel.com&gt;
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Allow the user application to change the wave pattern and led current by
'wave_pattern' and 'rgb_current' sysfs files.

Signed-off-by: Kim Kyuwon &lt;q1.kim@samsung.com&gt;
Signed-off-by: Andrew Morton &lt;akpm@linux-foundation.org&gt;
Signed-off-by: Richard Purdie &lt;rpurdie@linux.intel.com&gt;
</pre>
</div>
</content>
</entry>
<entry>
<title>leds: change the license information</title>
<updated>2009-06-23T19:19:10+00:00</updated>
<author>
<name>Kim Kyuwon</name>
<email>chammoru@gmail.com</email>
</author>
<published>2009-06-10T19:48:50+00:00</published>
<link rel='alternate' type='text/html' href='https://git.toradex.cn/cgit/linux-toradex.git/commit/?id=1b18cf413f63ff6de5ba3e5028e869c21322a4df'/>
<id>1b18cf413f63ff6de5ba3e5028e869c21322a4df</id>
<content type='text'>
Change the license to 'GPL v2'

Signed-off-by: Kim Kyuwon &lt;q1.kim@samsung.com&gt;
Signed-off-by: Andrew Morton &lt;akpm@linux-foundation.org&gt;
Signed-off-by: Richard Purdie &lt;rpurdie@linux.intel.com&gt;
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Change the license to 'GPL v2'

Signed-off-by: Kim Kyuwon &lt;q1.kim@samsung.com&gt;
Signed-off-by: Andrew Morton &lt;akpm@linux-foundation.org&gt;
Signed-off-by: Richard Purdie &lt;rpurdie@linux.intel.com&gt;
</pre>
</div>
</content>
</entry>
<entry>
<title>leds: fix led-bd2802 errors while resuming</title>
<updated>2009-06-23T19:19:10+00:00</updated>
<author>
<name>Kim Kyuwon</name>
<email>chammoru@gmail.com</email>
</author>
<published>2009-06-10T19:48:48+00:00</published>
<link rel='alternate' type='text/html' href='https://git.toradex.cn/cgit/linux-toradex.git/commit/?id=b8389018212e8c4e03ede4df5405796100ef4390'/>
<id>b8389018212e8c4e03ede4df5405796100ef4390</id>
<content type='text'>
LED_CORE_SUSPENDRESUME flag is not needed in the bd2802 driver, because
all works for suspend/resume is done in bd2802_suspend and bd2802_suspend
functions.  And this patch allows bd2802 to be configured again when it
resumes from suspend.

Signed-off-by: Kim Kyuwon &lt;q1.kim@samsung.com&gt;
Signed-off-by: Andrew Morton &lt;akpm@linux-foundation.org&gt;
Signed-off-by: Richard Purdie &lt;rpurdie@linux.intel.com&gt;
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
LED_CORE_SUSPENDRESUME flag is not needed in the bd2802 driver, because
all works for suspend/resume is done in bd2802_suspend and bd2802_suspend
functions.  And this patch allows bd2802 to be configured again when it
resumes from suspend.

Signed-off-by: Kim Kyuwon &lt;q1.kim@samsung.com&gt;
Signed-off-by: Andrew Morton &lt;akpm@linux-foundation.org&gt;
Signed-off-by: Richard Purdie &lt;rpurdie@linux.intel.com&gt;
</pre>
</div>
</content>
</entry>
<entry>
<title>leds: add BD2802GU LED driver</title>
<updated>2009-04-06T15:06:26+00:00</updated>
<author>
<name>Kim Kyuwon</name>
<email>chammoru@gmail.com</email>
</author>
<published>2009-03-04T19:59:29+00:00</published>
<link rel='alternate' type='text/html' href='https://git.toradex.cn/cgit/linux-toradex.git/commit/?id=0b56129be72c38179697b7441aacbe133d515ff9'/>
<id>0b56129be72c38179697b7441aacbe133d515ff9</id>
<content type='text'>
ROHM BD2802GU is a RGB LED controller attached to i2c bus and specifically
engineered for decoration purposes.  This RGB controller incorporates
lighting patterns and illuminates.

This driver is designed to minimize power consumption, so when there is no
emitting LED, it enters to reset state.  And because the BD2802GU has lots
of features that can't be covered by the current LED framework, it
provides Advanced Configuration Function(ADF) mode, so that user
applications can set registers of BD2802GU directly.

Here are basic usage examples :
; to turn on LED (not blink)
$ echo 1 &gt; /sys/class/leds/led1_R/brightness
; to blink LED
$ echo timer &gt; /sys/class/leds/led1_R/trigger
$ echo 1 &gt; /sys/class/leds/led1_R/delay_on
$ echo 1 &gt; /sys/class/leds/led1_R/delay_off
; to turn off LED
$ echo 0 &gt; /sys/class/leds/led1_R/brightness

[akpm@linux-foundation.org: coding-style fixes]
Signed-off-by: Kim Kyuwon &lt;chammoru@gmail.com&gt;
Signed-off-by: Andrew Morton &lt;akpm@linux-foundation.org&gt;
Signed-off-by: Richard Purdie &lt;rpurdie@linux.intel.com&gt;
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
ROHM BD2802GU is a RGB LED controller attached to i2c bus and specifically
engineered for decoration purposes.  This RGB controller incorporates
lighting patterns and illuminates.

This driver is designed to minimize power consumption, so when there is no
emitting LED, it enters to reset state.  And because the BD2802GU has lots
of features that can't be covered by the current LED framework, it
provides Advanced Configuration Function(ADF) mode, so that user
applications can set registers of BD2802GU directly.

Here are basic usage examples :
; to turn on LED (not blink)
$ echo 1 &gt; /sys/class/leds/led1_R/brightness
; to blink LED
$ echo timer &gt; /sys/class/leds/led1_R/trigger
$ echo 1 &gt; /sys/class/leds/led1_R/delay_on
$ echo 1 &gt; /sys/class/leds/led1_R/delay_off
; to turn off LED
$ echo 0 &gt; /sys/class/leds/led1_R/brightness

[akpm@linux-foundation.org: coding-style fixes]
Signed-off-by: Kim Kyuwon &lt;chammoru@gmail.com&gt;
Signed-off-by: Andrew Morton &lt;akpm@linux-foundation.org&gt;
Signed-off-by: Richard Purdie &lt;rpurdie@linux.intel.com&gt;
</pre>
</div>
</content>
</entry>
</feed>
