Signed-off-by: Bill Gatliff <bgat@xxxxxxxxxxxxxxx> --- drivers/leds/Kconfig | 32 ++++++- drivers/leds/Makefile | 3 + drivers/leds/leds-pwm.c | 224 +++++++++++++++++++++++--------------------- drivers/leds/ledtrig-dim.c | 95 +++++++++++++++++++ include/linux/pwm-led.h | 34 +++++++ 5 files changed, 278 insertions(+), 110 deletions(-) create mode 100644 drivers/leds/ledtrig-dim.c create mode 100644 include/linux/pwm-led.h diff --git a/drivers/leds/Kconfig b/drivers/leds/Kconfig index e4f599f..b39c863 100644 --- a/drivers/leds/Kconfig +++ b/drivers/leds/Kconfig @@ -17,12 +17,12 @@ config LEDS_CLASS comment "LED drivers" -config LEDS_ATMEL_PWM - tristate "LED Support using Atmel PWM outputs" - depends on LEDS_CLASS && ATMEL_PWM +config LEDS_CORGI + tristate "LED Support for the Sharp SL-C7x0 series" + depends on LEDS_CLASS && PXA_SHARP_C7xx help - This option enables support for LEDs driven using outputs - of the dedicated PWM controller found on newer Atmel SOCs. + This option enables support for the LEDs on Sharp Zaurus + SL-C7x0 series (C700, C750, C760, C860). config LEDS_LOCOMO tristate "LED Support for Locomo device" @@ -141,6 +141,20 @@ config LEDS_GPIO_OF bool "OpenFirmware platform device bindings for GPIO LEDs" depends on LEDS_GPIO && OF_DEVICE default y + +config LEDS_HP_DISK + tristate "LED Support for disk protection LED on HP notebooks" + depends on LEDS_CLASS && ACPI + +config LEDS_PWM + tristate "LED Support for PWM connected LEDs" + depends on LEDS_CLASS && GENERIC_PWM + help + Enables support for LEDs connected to PWM outputs. + +config LEDS_CM_X270 + tristate "LED Support for the CM-X270 LEDs" + depends on LEDS_CLASS && MACH_ARMCORE help Let the leds-gpio driver drive LEDs which have been defined as of_platform devices. For instance, LEDs which are listed in a "dts" @@ -263,6 +277,14 @@ config LEDS_TRIGGER_IDE_DISK This allows LEDs to be controlled by IDE disk activity. If unsure, say Y. +config LEDS_TRIGGER_DIM + tristate "LED Dimmer Trigger" + depends on LEDS_TRIGGERS + help + Regulates the brightness of an LED based on the 1-minute CPU + load average. Ideal for PWM-driven LEDs. + If unsure, say Y. + config LEDS_TRIGGER_HEARTBEAT tristate "LED Heartbeat Trigger" depends on LEDS_TRIGGERS diff --git a/drivers/leds/Makefile b/drivers/leds/Makefile index 46d7270..f4ff10b 100644 --- a/drivers/leds/Makefile +++ b/drivers/leds/Makefile @@ -21,6 +21,8 @@ obj-$(CONFIG_LEDS_SUNFIRE) += leds-sunfire.o obj-$(CONFIG_LEDS_PCA9532) += leds-pca9532.o obj-$(CONFIG_LEDS_GPIO) += leds-gpio.o obj-$(CONFIG_LEDS_LP3944) += leds-lp3944.o +obj-$(CONFIG_LEDS_PWM) += leds-pwm.o +obj-$(CONFIG_LEDS_CM_X270) += leds-cm-x270.o obj-$(CONFIG_LEDS_CLEVO_MAIL) += leds-clevo-mail.o obj-$(CONFIG_LEDS_HP6XX) += leds-hp6xx.o obj-$(CONFIG_LEDS_FSG) += leds-fsg.o @@ -36,6 +38,7 @@ obj-$(CONFIG_LEDS_DAC124S085) += leds-dac124s085.o # LED Triggers obj-$(CONFIG_LEDS_TRIGGER_TIMER) += ledtrig-timer.o obj-$(CONFIG_LEDS_TRIGGER_IDE_DISK) += ledtrig-ide-disk.o +obj-$(CONFIG_LEDS_TRIGGER_DIM) += ledtrig-dim.o obj-$(CONFIG_LEDS_TRIGGER_HEARTBEAT) += ledtrig-heartbeat.o obj-$(CONFIG_LEDS_TRIGGER_BACKLIGHT) += ledtrig-backlight.o obj-$(CONFIG_LEDS_TRIGGER_GPIO) += ledtrig-gpio.o diff --git a/drivers/leds/leds-pwm.c b/drivers/leds/leds-pwm.c index cdfdc87..3103dc3 100644 --- a/drivers/leds/leds-pwm.c +++ b/drivers/leds/leds-pwm.c @@ -1,153 +1,167 @@ -/* - * linux/drivers/leds-pwm.c - * - * simple PWM based LED control - * - * Copyright 2009 Luotao Fu @ Pengutronix (l.fu@xxxxxxxxxxxxxx) - * - * based on leds-gpio.c by Raphael Assenat <raph@xxxxxx> - * - * This program is free software; you can redistribute it and/or modify - * it under the terms of the GNU General Public License version 2 as - * published by the Free Software Foundation. - */ - -#include <linux/module.h> #include <linux/kernel.h> -#include <linux/init.h> #include <linux/platform_device.h> -#include <linux/fb.h> #include <linux/leds.h> -#include <linux/err.h> +#include <linux/io.h> #include <linux/pwm.h> -#include <linux/leds_pwm.h> - -struct led_pwm_data { - struct led_classdev cdev; - struct pwm_device *pwm; - unsigned int active_low; - unsigned int period; - unsigned int max_brightness; +#include <linux/pwm-led.h> + + +struct led_pwm { + struct led_classdev led; + struct pwm_channel *pwm; + int percent; }; -static void led_pwm_set(struct led_classdev *led_cdev, - enum led_brightness brightness) + +static void +led_pwm_brightness_set(struct led_classdev *c, + enum led_brightness b) +{ + struct led_pwm *led; + int percent; + + percent = (b * 100) / (LED_FULL - LED_OFF); + led = container_of(c, struct led_pwm, led); + led->percent = percent; + pwm_set_duty_percent(led->pwm, percent); +} + + +static enum led_brightness +led_pwm_brightness_get(struct led_classdev *c) { - struct led_pwm_data *led_dat = - container_of(led_cdev, struct led_pwm_data, cdev); - unsigned int max = led_dat->max_brightness; - unsigned int period = led_dat->period; - - if (brightness == 0) { - pwm_config(led_dat->pwm, 0, period); - pwm_disable(led_dat->pwm); - } else { - pwm_config(led_dat->pwm, brightness * period / max, period); - pwm_enable(led_dat->pwm); + struct led_pwm *led; + led = container_of(c, struct led_pwm, led); + return led->percent; +} + + +static int +led_pwm_blink_set(struct led_classdev *c, + unsigned long *on_ms, + unsigned long *off_ms) +{ + struct led_pwm *led; + struct pwm_channel_config cfg; + + led = container_of(c, struct led_pwm, led); + + if (*on_ms == 0 && *off_ms == 0) { + *on_ms = 1000UL; + *off_ms = 1000UL; } + + cfg.config_mask = PWM_CONFIG_DUTY_NS + | PWM_CONFIG_PERIOD_NS; + + cfg.duty_ns = *on_ms * 1000000UL; + cfg.period_ns = (*on_ms + *off_ms) * 1000000UL; + + return pwm_config(led->pwm, &cfg); } -static int led_pwm_probe(struct platform_device *pdev) + +static int __init +led_pwm_probe(struct platform_device *pdev) { - struct led_pwm_platform_data *pdata = pdev->dev.platform_data; - struct led_pwm *cur_led; - struct led_pwm_data *leds_data, *led_dat; - int i, ret = 0; + struct pwm_led_platform_data *pdata = pdev->dev.platform_data; + struct led_pwm *led; + struct device *d = &pdev->dev; + int ret; - if (!pdata) - return -EBUSY; + if (!pdata || !pdata->led_info) + return -EINVAL; - leds_data = kzalloc(sizeof(struct led_pwm_data) * pdata->num_leds, - GFP_KERNEL); - if (!leds_data) + if (!try_module_get(d->driver->owner)) + return -ENODEV; + + led = kzalloc(sizeof(*led), GFP_KERNEL); + if (!led) return -ENOMEM; - for (i = 0; i < pdata->num_leds; i++) { - cur_led = &pdata->leds[i]; - led_dat = &leds_data[i]; - - led_dat->pwm = pwm_request(cur_led->pwm_id, - cur_led->name); - if (IS_ERR(led_dat->pwm)) { - dev_err(&pdev->dev, "unable to request PWM %d\n", - cur_led->pwm_id); - goto err; - } - - led_dat->cdev.name = cur_led->name; - led_dat->cdev.default_trigger = cur_led->default_trigger; - led_dat->active_low = cur_led->active_low; - led_dat->max_brightness = cur_led->max_brightness; - led_dat->period = cur_led->pwm_period_ns; - led_dat->cdev.brightness_set = led_pwm_set; - led_dat->cdev.brightness = LED_OFF; - led_dat->cdev.flags |= LED_CORE_SUSPENDRESUME; - - ret = led_classdev_register(&pdev->dev, &led_dat->cdev); - if (ret < 0) { - pwm_free(led_dat->pwm); - goto err; - } + led->pwm = pwm_request(pdata->bus_id, pdata->chan, + pdata->led_info->name); + if (!led->pwm) { + ret = -EINVAL; + goto err_pwm_request; } - platform_set_drvdata(pdev, leds_data); + platform_set_drvdata(pdev, led); - return 0; + led->led.name = pdata->led_info->name; + led->led.default_trigger = pdata->led_info->default_trigger; + led->led.brightness_set = led_pwm_brightness_set; + led->led.brightness_get = led_pwm_brightness_get; + led->led.blink_set = led_pwm_blink_set; + led->led.brightness = LED_OFF; -err: - if (i > 0) { - for (i = i - 1; i >= 0; i--) { - led_classdev_unregister(&leds_data[i].cdev); - pwm_free(leds_data[i].pwm); - } - } + ret = pwm_config(led->pwm, pdata->config); + if (ret) + goto err_pwm_config; + pwm_start(led->pwm); - kfree(leds_data); + ret = led_classdev_register(&pdev->dev, &led->led); + if (ret < 0) + goto err_classdev_register; + + return 0; + +err_classdev_register: + pwm_stop(led->pwm); +err_pwm_config: + pwm_free(led->pwm); +err_pwm_request: + kfree(led); return ret; } -static int __devexit led_pwm_remove(struct platform_device *pdev) + +static int +led_pwm_remove(struct platform_device *pdev) { - int i; - struct led_pwm_platform_data *pdata = pdev->dev.platform_data; - struct led_pwm_data *leds_data; + struct led_pwm *led = platform_get_drvdata(pdev); + struct device *d = &pdev->dev; - leds_data = platform_get_drvdata(pdev); + led_classdev_unregister(&led->led); - for (i = 0; i < pdata->num_leds; i++) { - led_classdev_unregister(&leds_data[i].cdev); - pwm_free(leds_data[i].pwm); + if (led->pwm) { + pwm_stop(led->pwm); + pwm_free(led->pwm); } - kfree(leds_data); + kfree(led); + module_put(d->driver->owner); return 0; } + static struct platform_driver led_pwm_driver = { - .probe = led_pwm_probe, - .remove = __devexit_p(led_pwm_remove), - .driver = { - .name = "leds_pwm", - .owner = THIS_MODULE, + .driver = { + .name = "leds-pwm", + .owner = THIS_MODULE, }, + .probe = led_pwm_probe, + .remove = led_pwm_remove, }; -static int __init led_pwm_init(void) + +static int __init led_pwm_modinit(void) { return platform_driver_register(&led_pwm_driver); } +module_init(led_pwm_modinit); + -static void __exit led_pwm_exit(void) +static void __exit led_pwm_modexit(void) { platform_driver_unregister(&led_pwm_driver); } +module_exit(led_pwm_modexit); -module_init(led_pwm_init); -module_exit(led_pwm_exit); -MODULE_AUTHOR("Luotao Fu <l.fu@xxxxxxxxxxxxxx>"); -MODULE_DESCRIPTION("PWM LED driver for PXA"); +MODULE_AUTHOR("Bill Gatliff <bgat@xxxxxxxxxxxxxxx>"); +MODULE_DESCRIPTION("Driver for LEDs with PWM-controlled brightness"); MODULE_LICENSE("GPL"); MODULE_ALIAS("platform:leds-pwm"); diff --git a/drivers/leds/ledtrig-dim.c b/drivers/leds/ledtrig-dim.c new file mode 100644 index 0000000..299865b --- /dev/null +++ b/drivers/leds/ledtrig-dim.c @@ -0,0 +1,95 @@ +/* + * LED Dim Trigger + * + * Copyright (C) 2008 Bill Gatliff <bgat@xxxxxxxxxxxxxxx> + * + * "Dims" an LED based on system load. Derived from Atsushi Nemoto's + * ledtrig-heartbeat.c. + * + * This program is free software; you can redistribute it and/or modify + * it under the terms of the GNU General Public License version 2 as + * published by the Free Software Foundation. + * + */ +#include <linux/module.h> +#include <linux/kernel.h> +#include <linux/init.h> +#include <linux/timer.h> +#include <linux/sched.h> +#include <linux/leds.h> + +#include "leds.h" + +struct dim_trig_data { + struct timer_list timer; +}; + + +static void +led_dim_function(unsigned long data) +{ + struct led_classdev *led_cdev = (struct led_classdev *)data; + struct dim_trig_data *dim_data = led_cdev->trigger_data; + unsigned int brightness; + + brightness = ((LED_FULL - LED_OFF) * avenrun[0]) / EXP_1; + if (brightness > LED_FULL) + brightness = LED_FULL; + + led_set_brightness(led_cdev, brightness); + mod_timer(&dim_data->timer, jiffies + msecs_to_jiffies(500)); +} + + +static void +dim_trig_activate(struct led_classdev *led_cdev) +{ + struct dim_trig_data *dim_data; + + dim_data = kzalloc(sizeof(*dim_data), GFP_KERNEL); + if (!dim_data) + return; + + led_cdev->trigger_data = dim_data; + setup_timer(&dim_data->timer, + led_dim_function, (unsigned long)led_cdev); + led_dim_function(dim_data->timer.data); +} + + +static void +dim_trig_deactivate(struct led_classdev *led_cdev) +{ + struct dim_trig_data *dim_data = led_cdev->trigger_data; + + if (dim_data) { + del_timer_sync(&dim_data->timer); + kfree(dim_data); + } +} + + +static struct led_trigger dim_led_trigger = { + .name = "dim", + .activate = dim_trig_activate, + .deactivate = dim_trig_deactivate, +}; + + +static int __init dim_trig_init(void) +{ + return led_trigger_register(&dim_led_trigger); +} +module_init(dim_trig_init); + + +static void __exit dim_trig_exit(void) +{ + led_trigger_unregister(&dim_led_trigger); +} +module_exit(dim_trig_exit); + + +MODULE_AUTHOR("Bill Gatliff <bgat@xxxxxxxxxxxxxxx>"); +MODULE_DESCRIPTION("Dim LED trigger"); +MODULE_LICENSE("GPL"); diff --git a/include/linux/pwm-led.h b/include/linux/pwm-led.h new file mode 100644 index 0000000..92363c8 --- /dev/null +++ b/include/linux/pwm-led.h @@ -0,0 +1,34 @@ +#ifndef __LINUX_PWM_LED_H +#define __LINUX_PWM_LED_H + +/* + * include/linux/pwm-led.h + * + * Copyright (C) 2008 Bill Gatliff + * + * This program is free software; you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published by + * the Free Software Foundation; either version 2 of the License, or + * (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with this program; if not, write to the Free Software + * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA + */ + +struct led_info; +struct pwm_channel_config; + +struct pwm_led_platform_data { + const char *bus_id; + int chan; + struct pwm_channel_config *config; + struct led_info *led_info; +}; + +#endif /* __LINUX_PWM_LED_H */ -- 1.6.3.3 -- To unsubscribe from this list: send the line "unsubscribe linux-embedded" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html