LKML Archive on lore.kernel.org
help / color / mirror / Atom feed
* [PATCH] leds: Add support for power LED on WRAP systems
@ 2008-02-05 20:51 Sven Wegener
  2008-02-07  9:25 ` Richard Purdie
  0 siblings, 1 reply; 3+ messages in thread
From: Sven Wegener @ 2008-02-05 20:51 UTC (permalink / raw)
  To: rpurdie; +Cc: kris, linux-kernel

WRAP systems have an additional LED. The power LED is normally lit after boot
and doesn't serve any other purpose besides showing that the system is powered
on. Nevertheless, its state is controllable and we can attach a trigger to it.

Cc: Kristian Kielhofner <kris@krisk.org>
Signed-off-by: Sven Wegener <sven.wegener@stealer.net>
---
 drivers/leds/leds-wrap.c |   41 +++++++++++++++++++++++++++++++++++------
 1 files changed, 35 insertions(+), 6 deletions(-)

diff --git a/drivers/leds/leds-wrap.c b/drivers/leds/leds-wrap.c
index 27fb2d8..0ccb483 100644
--- a/drivers/leds/leds-wrap.c
+++ b/drivers/leds/leds-wrap.c
@@ -19,11 +19,21 @@
 #include <linux/scx200_gpio.h>
 
 #define DRVNAME "wrap-led"
+#define WRAP_POWER_LED_GPIO	2
 #define WRAP_ERROR_LED_GPIO	3
 #define	WRAP_EXTRA_LED_GPIO	18
 
 static struct platform_device *pdev;
 
+static void wrap_power_led_set(struct led_classdev *led_cdev,
+		enum led_brightness value)
+{
+	if (value)
+		scx200_gpio_set_low(WRAP_POWER_LED_GPIO);
+	else
+		scx200_gpio_set_high(WRAP_POWER_LED_GPIO);
+}
+
 static void wrap_error_led_set(struct led_classdev *led_cdev,
 		enum led_brightness value)
 {
@@ -42,6 +52,11 @@ static void wrap_extra_led_set(struct led_classdev *led_cdev,
 		scx200_gpio_set_high(WRAP_EXTRA_LED_GPIO);
 }
 
+static struct led_classdev wrap_power_led = {
+	.name		= "wrap:power",
+	.brightness_set	= wrap_power_led_set,
+};
+
 static struct led_classdev wrap_error_led = {
 	.name		= "wrap:error",
 	.brightness_set	= wrap_error_led_set,
@@ -56,6 +71,7 @@ static struct led_classdev wrap_extra_led = {
 static int wrap_led_suspend(struct platform_device *dev,
 		pm_message_t state)
 {
+	led_classdev_suspend(&wrap_power_led);
 	led_classdev_suspend(&wrap_error_led);
 	led_classdev_suspend(&wrap_extra_led);
 	return 0;
@@ -63,6 +79,7 @@ static int wrap_led_suspend(struct platform_device *dev,
 
 static int wrap_led_resume(struct platform_device *dev)
 {
+	led_classdev_resume(&wrap_power_led);
 	led_classdev_resume(&wrap_error_led);
 	led_classdev_resume(&wrap_extra_led);
 	return 0;
@@ -76,17 +93,30 @@ static int wrap_led_probe(struct platform_device *pdev)
 {
 	int ret;
 
+	ret = led_classdev_register(&pdev->dev, &wrap_power_led);
+	if (ret < 0)
+		goto out;
 	ret = led_classdev_register(&pdev->dev, &wrap_error_led);
-	if (ret == 0) {
-		ret = led_classdev_register(&pdev->dev, &wrap_extra_led);
-		if (ret < 0)
-			led_classdev_unregister(&wrap_error_led);
-	}
+	if (ret < 0)
+		goto outpower;
+	ret = led_classdev_register(&pdev->dev, &wrap_extra_led);
+	if (ret < 0)
+		goto outerror;
+
+	return 0;
+
+outerror:
+	led_classdev_unregister(&wrap_error_led);
+outpower:
+	led_classdev_unregister(&wrap_power_led);
+out:
+
 	return ret;
 }
 
 static int wrap_led_remove(struct platform_device *pdev)
 {
+	led_classdev_unregister(&wrap_power_led);
 	led_classdev_unregister(&wrap_error_led);
 	led_classdev_unregister(&wrap_extra_led);
 	return 0;
@@ -139,4 +169,3 @@ module_exit(wrap_led_exit);
 MODULE_AUTHOR("Kristian Kielhofner <kris@krisk.org>");
 MODULE_DESCRIPTION("PCEngines WRAP LED driver");
 MODULE_LICENSE("GPL");
-
-- 
1.5.4


^ permalink raw reply	[flat|nested] 3+ messages in thread

* Re: [PATCH] leds: Add support for power LED on WRAP systems
  2008-02-05 20:51 [PATCH] leds: Add support for power LED on WRAP systems Sven Wegener
@ 2008-02-07  9:25 ` Richard Purdie
  2008-02-07  9:55   ` Sven Wegener
  0 siblings, 1 reply; 3+ messages in thread
From: Richard Purdie @ 2008-02-07  9:25 UTC (permalink / raw)
  To: Sven Wegener; +Cc: kris, linux-kernel

On Tue, 2008-02-05 at 21:51 +0100, Sven Wegener wrote:
> WRAP systems have an additional LED. The power LED is normally lit after boot
> and doesn't serve any other purpose besides showing that the system is powered
> on. Nevertheless, its state is controllable and we can attach a trigger to it.

There is already a patch queued up to do something like this in the LED
tree, can you check that does everything you need please?

http://git.o-hand.com/?p=linux-rpurdie-leds;a=shortlog;h=for-mm

Thanks,

Richard


^ permalink raw reply	[flat|nested] 3+ messages in thread

* Re: [PATCH] leds: Add support for power LED on WRAP systems
  2008-02-07  9:25 ` Richard Purdie
@ 2008-02-07  9:55   ` Sven Wegener
  0 siblings, 0 replies; 3+ messages in thread
From: Sven Wegener @ 2008-02-07  9:55 UTC (permalink / raw)
  To: Richard Purdie; +Cc: kris, linux-kernel

On Thu, 7 Feb 2008, Richard Purdie wrote:

> On Tue, 2008-02-05 at 21:51 +0100, Sven Wegener wrote:
>> WRAP systems have an additional LED. The power LED is normally lit after boot
>> and doesn't serve any other purpose besides showing that the system is powered
>> on. Nevertheless, its state is controllable and we can attach a trigger to it.
>
> There is already a patch queued up to do something like this in the LED
> tree, can you check that does everything you need please?
>
> http://git.o-hand.com/?p=linux-rpurdie-leds;a=shortlog;h=for-mm

It's ok, exactly the same my patch implements.

Sven

^ permalink raw reply	[flat|nested] 3+ messages in thread

end of thread, other threads:[~2008-02-07  9:56 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2008-02-05 20:51 [PATCH] leds: Add support for power LED on WRAP systems Sven Wegener
2008-02-07  9:25 ` Richard Purdie
2008-02-07  9:55   ` Sven Wegener

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).