* [PATCH] LED: OMAP PWM: Use work queue for brightness
@ 2007-10-30 9:37 Daniel Stone
2007-10-30 10:00 ` Felipe Balbi
0 siblings, 1 reply; 3+ messages in thread
From: Daniel Stone @ 2007-10-30 9:37 UTC (permalink / raw)
To: linux-omap-open-source
It isn't safe to schedule from a LED brightness_set handler, so use a work queue.
Signed-off-by: Daniel Stone <daniel.stone@nokia.com>
---
drivers/leds/leds-omap-pwm.c | 22 ++++++++++++++++++++--
1 files changed, 20 insertions(+), 2 deletions(-)
diff --git a/drivers/leds/leds-omap-pwm.c b/drivers/leds/leds-omap-pwm.c
index 6b195d6..c5d7ff0 100644
--- a/drivers/leds/leds-omap-pwm.c
+++ b/drivers/leds/leds-omap-pwm.c
@@ -16,17 +16,20 @@
#include <linux/platform_device.h>
#include <linux/leds.h>
#include <linux/ctype.h>
+#include <linux/sched.h>
#include <asm/delay.h>
#include <asm/arch/board.h>
#include <asm/arch/dmtimer.h>
struct omap_pwm_led {
struct led_classdev cdev;
+ struct work_struct work;
struct omap_pwm_led_platform_data *pdata;
struct omap_dm_timer *intensity_timer;
struct omap_dm_timer *blink_timer;
int powered;
unsigned int on_period, off_period;
+ enum led_brightness brightness;
};
static inline struct omap_pwm_led *pdev_to_omap_pwm_led(struct platform_device *pdev)
@@ -39,6 +42,11 @@ static inline struct omap_pwm_led *cdev_to_omap_pwm_led(struct led_classdev *led
return container_of(led_cdev, struct omap_pwm_led, cdev);
}
+static inline struct omap_pwm_led *work_to_omap_pwm_led(struct work_struct *work)
+{
+ return container_of(work, struct omap_pwm_led, work);
+}
+
static void omap_pwm_led_set_blink(struct omap_pwm_led *led)
{
if (!led->powered)
@@ -134,9 +142,17 @@ static void omap_pwm_led_set(struct led_classdev *led_cdev,
{
struct omap_pwm_led *led = cdev_to_omap_pwm_led(led_cdev);
- if (value != LED_OFF) {
+ led->brightness = value;
+ schedule_work(&led->work);
+}
+
+static void omap_pwm_led_work(struct work_struct *work)
+{
+ struct omap_pwm_led *led = work_to_omap_pwm_led(work);
+
+ if (led->brightness != LED_OFF) {
omap_pwm_led_power_on(led);
- omap_pwm_led_set_pwm_cycle(led, value);
+ omap_pwm_led_set_pwm_cycle(led, led->brightness);
} else {
omap_pwm_led_power_off(led);
}
@@ -228,6 +244,8 @@ static int omap_pwm_led_probe(struct platform_device *pdev)
led->cdev.default_trigger = NULL;
led->cdev.name = pdata->name;
led->pdata = pdata;
+ led->brightness = 0;
+ INIT_WORK(&led->work, omap_pwm_led_work);
dev_info(&pdev->dev, "OMAP PWM LED (%s) at GP timer %d/%d\n",
pdata->name, pdata->intensity_timer, pdata->blink_timer);
--
1.4.4.2
^ permalink raw reply related [flat|nested] 3+ messages in thread
* Re: [PATCH] LED: OMAP PWM: Use work queue for brightness
2007-10-30 9:37 [PATCH] LED: OMAP PWM: Use work queue for brightness Daniel Stone
@ 2007-10-30 10:00 ` Felipe Balbi
2007-11-15 2:07 ` Tony Lindgren
0 siblings, 1 reply; 3+ messages in thread
From: Felipe Balbi @ 2007-10-30 10:00 UTC (permalink / raw)
To: Daniel Stone; +Cc: linux-omap-open-source
Hi,
On 10/30/07, Daniel Stone <daniel.stone@nokia.com> wrote:
> It isn't safe to schedule from a LED brightness_set handler, so use a work queue.
>
> Signed-off-by: Daniel Stone <daniel.stone@nokia.com>
> ---
> drivers/leds/leds-omap-pwm.c | 22 ++++++++++++++++++++--
> 1 files changed, 20 insertions(+), 2 deletions(-)
>
> diff --git a/drivers/leds/leds-omap-pwm.c b/drivers/leds/leds-omap-pwm.c
> index 6b195d6..c5d7ff0 100644
> --- a/drivers/leds/leds-omap-pwm.c
> +++ b/drivers/leds/leds-omap-pwm.c
> @@ -16,17 +16,20 @@
> #include <linux/platform_device.h>
> #include <linux/leds.h>
> #include <linux/ctype.h>
> +#include <linux/sched.h>
> #include <asm/delay.h>
> #include <asm/arch/board.h>
> #include <asm/arch/dmtimer.h>
>
> struct omap_pwm_led {
> struct led_classdev cdev;
> + struct work_struct work;
> struct omap_pwm_led_platform_data *pdata;
> struct omap_dm_timer *intensity_timer;
> struct omap_dm_timer *blink_timer;
> int powered;
> unsigned int on_period, off_period;
> + enum led_brightness brightness;
> };
>
> static inline struct omap_pwm_led *pdev_to_omap_pwm_led(struct platform_device *pdev)
> @@ -39,6 +42,11 @@ static inline struct omap_pwm_led *cdev_to_omap_pwm_led(struct led_classdev *led
> return container_of(led_cdev, struct omap_pwm_led, cdev);
> }
>
> +static inline struct omap_pwm_led *work_to_omap_pwm_led(struct work_struct *work)
> +{
> + return container_of(work, struct omap_pwm_led, work);
> +}
> +
> static void omap_pwm_led_set_blink(struct omap_pwm_led *led)
> {
> if (!led->powered)
> @@ -134,9 +142,17 @@ static void omap_pwm_led_set(struct led_classdev *led_cdev,
> {
> struct omap_pwm_led *led = cdev_to_omap_pwm_led(led_cdev);
>
> - if (value != LED_OFF) {
> + led->brightness = value;
> + schedule_work(&led->work);
> +}
> +
> +static void omap_pwm_led_work(struct work_struct *work)
> +{
> + struct omap_pwm_led *led = work_to_omap_pwm_led(work);
> +
> + if (led->brightness != LED_OFF) {
> omap_pwm_led_power_on(led);
> - omap_pwm_led_set_pwm_cycle(led, value);
> + omap_pwm_led_set_pwm_cycle(led, led->brightness);
> } else {
> omap_pwm_led_power_off(led);
> }
> @@ -228,6 +244,8 @@ static int omap_pwm_led_probe(struct platform_device *pdev)
> led->cdev.default_trigger = NULL;
> led->cdev.name = pdata->name;
> led->pdata = pdata;
> + led->brightness = 0;
led->brightness = LED_OFF;
would look better.
besides the patch looks ok to me.
> + INIT_WORK(&led->work, omap_pwm_led_work);
>
> dev_info(&pdev->dev, "OMAP PWM LED (%s) at GP timer %d/%d\n",
> pdata->name, pdata->intensity_timer, pdata->blink_timer);
> --
> 1.4.4.2
>
> _______________________________________________
> Linux-omap-open-source mailing list
> Linux-omap-open-source@linux.omap.com
> http://linux.omap.com/mailman/listinfo/linux-omap-open-source
>
--
Best Regards,
Felipe Balbi
felipebalbi@users.sourceforge.net
^ permalink raw reply [flat|nested] 3+ messages in thread
* Re: [PATCH] LED: OMAP PWM: Use work queue for brightness
2007-10-30 10:00 ` Felipe Balbi
@ 2007-11-15 2:07 ` Tony Lindgren
0 siblings, 0 replies; 3+ messages in thread
From: Tony Lindgren @ 2007-11-15 2:07 UTC (permalink / raw)
To: Felipe Balbi; +Cc: linux-omap-open-source
* Felipe Balbi <felipebalbi@users.sourceforge.net> [071030 03:01]:
> Hi,
>
> On 10/30/07, Daniel Stone <daniel.stone@nokia.com> wrote:
> > It isn't safe to schedule from a LED brightness_set handler, so use a work queue.
> >
> > Signed-off-by: Daniel Stone <daniel.stone@nokia.com>
> > ---
> > drivers/leds/leds-omap-pwm.c | 22 ++++++++++++++++++++--
> > 1 files changed, 20 insertions(+), 2 deletions(-)
> >
> > diff --git a/drivers/leds/leds-omap-pwm.c b/drivers/leds/leds-omap-pwm.c
> > index 6b195d6..c5d7ff0 100644
> > --- a/drivers/leds/leds-omap-pwm.c
> > +++ b/drivers/leds/leds-omap-pwm.c
<snip>
> > @@ -134,9 +142,17 @@ static void omap_pwm_led_set(struct led_classdev *led_cdev,
> > {
> > struct omap_pwm_led *led = cdev_to_omap_pwm_led(led_cdev);
> >
> > - if (value != LED_OFF) {
> > + led->brightness = value;
> > + schedule_work(&led->work);
> > +}
> > +
> > +static void omap_pwm_led_work(struct work_struct *work)
> > +{
> > + struct omap_pwm_led *led = work_to_omap_pwm_led(work);
> > +
> > + if (led->brightness != LED_OFF) {
> > omap_pwm_led_power_on(led);
> > - omap_pwm_led_set_pwm_cycle(led, value);
> > + omap_pwm_led_set_pwm_cycle(led, led->brightness);
> > } else {
> > omap_pwm_led_power_off(led);
> > }
> > @@ -228,6 +244,8 @@ static int omap_pwm_led_probe(struct platform_device *pdev)
> > led->cdev.default_trigger = NULL;
> > led->cdev.name = pdata->name;
> > led->pdata = pdata;
> > + led->brightness = 0;
>
> led->brightness = LED_OFF;
> would look better.
>
> besides the patch looks ok to me.
Pushing with Felipe's suggestion for LED_OFF.
Tony
^ permalink raw reply [flat|nested] 3+ messages in thread
end of thread, other threads:[~2007-11-15 2:07 UTC | newest]
Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2007-10-30 9:37 [PATCH] LED: OMAP PWM: Use work queue for brightness Daniel Stone
2007-10-30 10:00 ` Felipe Balbi
2007-11-15 2:07 ` Tony Lindgren
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox