2008-04-14 08:35:08 +00:00
|
|
|
/*
|
|
|
|
* linux/drivers/video/backlight/pwm_bl.c
|
|
|
|
*
|
|
|
|
* simple PWM based backlight control, board code has to setup
|
|
|
|
* 1) pin configuration so PWM waveforms can output
|
2009-02-10 05:30:37 +00:00
|
|
|
* 2) platform_data being correctly configured
|
2008-04-14 08:35:08 +00:00
|
|
|
*
|
|
|
|
* 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/backlight.h>
|
|
|
|
#include <linux/err.h>
|
|
|
|
#include <linux/pwm.h>
|
|
|
|
#include <linux/pwm_backlight.h>
|
include cleanup: Update gfp.h and slab.h includes to prepare for breaking implicit slab.h inclusion from percpu.h
percpu.h is included by sched.h and module.h and thus ends up being
included when building most .c files. percpu.h includes slab.h which
in turn includes gfp.h making everything defined by the two files
universally available and complicating inclusion dependencies.
percpu.h -> slab.h dependency is about to be removed. Prepare for
this change by updating users of gfp and slab facilities include those
headers directly instead of assuming availability. As this conversion
needs to touch large number of source files, the following script is
used as the basis of conversion.
http://userweb.kernel.org/~tj/misc/slabh-sweep.py
The script does the followings.
* Scan files for gfp and slab usages and update includes such that
only the necessary includes are there. ie. if only gfp is used,
gfp.h, if slab is used, slab.h.
* When the script inserts a new include, it looks at the include
blocks and try to put the new include such that its order conforms
to its surrounding. It's put in the include block which contains
core kernel includes, in the same order that the rest are ordered -
alphabetical, Christmas tree, rev-Xmas-tree or at the end if there
doesn't seem to be any matching order.
* If the script can't find a place to put a new include (mostly
because the file doesn't have fitting include block), it prints out
an error message indicating which .h file needs to be added to the
file.
The conversion was done in the following steps.
1. The initial automatic conversion of all .c files updated slightly
over 4000 files, deleting around 700 includes and adding ~480 gfp.h
and ~3000 slab.h inclusions. The script emitted errors for ~400
files.
2. Each error was manually checked. Some didn't need the inclusion,
some needed manual addition while adding it to implementation .h or
embedding .c file was more appropriate for others. This step added
inclusions to around 150 files.
3. The script was run again and the output was compared to the edits
from #2 to make sure no file was left behind.
4. Several build tests were done and a couple of problems were fixed.
e.g. lib/decompress_*.c used malloc/free() wrappers around slab
APIs requiring slab.h to be added manually.
5. The script was run on all .h files but without automatically
editing them as sprinkling gfp.h and slab.h inclusions around .h
files could easily lead to inclusion dependency hell. Most gfp.h
inclusion directives were ignored as stuff from gfp.h was usually
wildly available and often used in preprocessor macros. Each
slab.h inclusion directive was examined and added manually as
necessary.
6. percpu.h was updated not to include slab.h.
7. Build test were done on the following configurations and failures
were fixed. CONFIG_GCOV_KERNEL was turned off for all tests (as my
distributed build env didn't work with gcov compiles) and a few
more options had to be turned off depending on archs to make things
build (like ipr on powerpc/64 which failed due to missing writeq).
* x86 and x86_64 UP and SMP allmodconfig and a custom test config.
* powerpc and powerpc64 SMP allmodconfig
* sparc and sparc64 SMP allmodconfig
* ia64 SMP allmodconfig
* s390 SMP allmodconfig
* alpha SMP allmodconfig
* um on x86_64 SMP allmodconfig
8. percpu.h modifications were reverted so that it could be applied as
a separate patch and serve as bisection point.
Given the fact that I had only a couple of failures from tests on step
6, I'm fairly confident about the coverage of this conversion patch.
If there is a breakage, it's likely to be something in one of the arch
headers which should be easily discoverable easily on most builds of
the specific arch.
Signed-off-by: Tejun Heo <tj@kernel.org>
Guess-its-ok-by: Christoph Lameter <cl@linux-foundation.org>
Cc: Ingo Molnar <mingo@redhat.com>
Cc: Lee Schermerhorn <Lee.Schermerhorn@hp.com>
2010-03-24 08:04:11 +00:00
|
|
|
#include <linux/slab.h>
|
2008-04-14 08:35:08 +00:00
|
|
|
|
|
|
|
struct pwm_bl_data {
|
|
|
|
struct pwm_device *pwm;
|
2009-11-10 17:20:40 +00:00
|
|
|
struct device *dev;
|
2008-04-14 08:35:08 +00:00
|
|
|
unsigned int period;
|
2010-11-11 22:05:28 +00:00
|
|
|
unsigned int lth_brightness;
|
2011-12-16 20:25:29 +00:00
|
|
|
unsigned int *levels;
|
2009-11-10 17:20:40 +00:00
|
|
|
int (*notify)(struct device *,
|
|
|
|
int brightness);
|
2011-08-25 22:59:17 +00:00
|
|
|
void (*notify_after)(struct device *,
|
|
|
|
int brightness);
|
2011-03-22 23:30:31 +00:00
|
|
|
int (*check_fb)(struct device *, struct fb_info *);
|
2011-12-16 20:25:29 +00:00
|
|
|
void (*exit)(struct device *);
|
2008-04-14 08:35:08 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
static int pwm_backlight_update_status(struct backlight_device *bl)
|
|
|
|
{
|
|
|
|
struct pwm_bl_data *pb = dev_get_drvdata(&bl->dev);
|
|
|
|
int brightness = bl->props.brightness;
|
|
|
|
int max = bl->props.max_brightness;
|
|
|
|
|
|
|
|
if (bl->props.power != FB_BLANK_UNBLANK)
|
|
|
|
brightness = 0;
|
|
|
|
|
|
|
|
if (bl->props.fb_blank != FB_BLANK_UNBLANK)
|
|
|
|
brightness = 0;
|
|
|
|
|
2008-05-22 13:18:40 +00:00
|
|
|
if (pb->notify)
|
2009-11-10 17:20:40 +00:00
|
|
|
brightness = pb->notify(pb->dev, brightness);
|
2008-05-22 13:18:40 +00:00
|
|
|
|
2008-04-14 08:35:08 +00:00
|
|
|
if (brightness == 0) {
|
|
|
|
pwm_config(pb->pwm, 0, pb->period);
|
|
|
|
pwm_disable(pb->pwm);
|
|
|
|
} else {
|
2012-07-09 06:04:23 +00:00
|
|
|
int duty_cycle;
|
|
|
|
|
2011-12-16 20:25:29 +00:00
|
|
|
if (pb->levels) {
|
2012-07-09 06:04:23 +00:00
|
|
|
duty_cycle = pb->levels[brightness];
|
2011-12-16 20:25:29 +00:00
|
|
|
max = pb->levels[max];
|
2012-07-09 06:04:23 +00:00
|
|
|
} else {
|
|
|
|
duty_cycle = brightness;
|
2011-12-16 20:25:29 +00:00
|
|
|
}
|
|
|
|
|
2012-07-09 06:04:23 +00:00
|
|
|
duty_cycle = pb->lth_brightness +
|
|
|
|
(duty_cycle * (pb->period - pb->lth_brightness) / max);
|
|
|
|
pwm_config(pb->pwm, duty_cycle, pb->period);
|
2008-04-14 08:35:08 +00:00
|
|
|
pwm_enable(pb->pwm);
|
|
|
|
}
|
2011-08-25 22:59:17 +00:00
|
|
|
|
|
|
|
if (pb->notify_after)
|
|
|
|
pb->notify_after(pb->dev, brightness);
|
|
|
|
|
2008-04-14 08:35:08 +00:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
static int pwm_backlight_get_brightness(struct backlight_device *bl)
|
|
|
|
{
|
|
|
|
return bl->props.brightness;
|
|
|
|
}
|
|
|
|
|
2011-03-22 23:30:31 +00:00
|
|
|
static int pwm_backlight_check_fb(struct backlight_device *bl,
|
|
|
|
struct fb_info *info)
|
|
|
|
{
|
|
|
|
struct pwm_bl_data *pb = dev_get_drvdata(&bl->dev);
|
|
|
|
|
|
|
|
return !pb->check_fb || pb->check_fb(pb->dev, info);
|
|
|
|
}
|
|
|
|
|
2009-12-13 23:58:57 +00:00
|
|
|
static const struct backlight_ops pwm_backlight_ops = {
|
2008-04-14 08:35:08 +00:00
|
|
|
.update_status = pwm_backlight_update_status,
|
|
|
|
.get_brightness = pwm_backlight_get_brightness,
|
2011-03-22 23:30:31 +00:00
|
|
|
.check_fb = pwm_backlight_check_fb,
|
2008-04-14 08:35:08 +00:00
|
|
|
};
|
|
|
|
|
2011-12-16 20:25:29 +00:00
|
|
|
#ifdef CONFIG_OF
|
|
|
|
static int pwm_backlight_parse_dt(struct device *dev,
|
|
|
|
struct platform_pwm_backlight_data *data)
|
|
|
|
{
|
|
|
|
struct device_node *node = dev->of_node;
|
|
|
|
struct property *prop;
|
|
|
|
int length;
|
|
|
|
u32 value;
|
|
|
|
int ret;
|
|
|
|
|
|
|
|
if (!node)
|
|
|
|
return -ENODEV;
|
|
|
|
|
|
|
|
memset(data, 0, sizeof(*data));
|
|
|
|
|
|
|
|
/* determine the number of brightness levels */
|
|
|
|
prop = of_find_property(node, "brightness-levels", &length);
|
|
|
|
if (!prop)
|
|
|
|
return -EINVAL;
|
|
|
|
|
|
|
|
data->max_brightness = length / sizeof(u32);
|
|
|
|
|
|
|
|
/* read brightness levels from DT property */
|
|
|
|
if (data->max_brightness > 0) {
|
|
|
|
size_t size = sizeof(*data->levels) * data->max_brightness;
|
|
|
|
|
|
|
|
data->levels = devm_kzalloc(dev, size, GFP_KERNEL);
|
|
|
|
if (!data->levels)
|
|
|
|
return -ENOMEM;
|
|
|
|
|
|
|
|
ret = of_property_read_u32_array(node, "brightness-levels",
|
|
|
|
data->levels,
|
|
|
|
data->max_brightness);
|
|
|
|
if (ret < 0)
|
|
|
|
return ret;
|
|
|
|
|
|
|
|
ret = of_property_read_u32(node, "default-brightness-level",
|
|
|
|
&value);
|
|
|
|
if (ret < 0)
|
|
|
|
return ret;
|
|
|
|
|
|
|
|
if (value >= data->max_brightness) {
|
|
|
|
dev_warn(dev, "invalid default brightness level: %u, using %u\n",
|
|
|
|
value, data->max_brightness - 1);
|
|
|
|
value = data->max_brightness - 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
data->dft_brightness = value;
|
|
|
|
data->max_brightness--;
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* TODO: Most users of this driver use a number of GPIOs to control
|
|
|
|
* backlight power. Support for specifying these needs to be
|
|
|
|
* added.
|
|
|
|
*/
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
static struct of_device_id pwm_backlight_of_match[] = {
|
|
|
|
{ .compatible = "pwm-backlight" },
|
|
|
|
{ }
|
|
|
|
};
|
|
|
|
|
|
|
|
MODULE_DEVICE_TABLE(of, pwm_backlight_of_match);
|
|
|
|
#else
|
|
|
|
static int pwm_backlight_parse_dt(struct device *dev,
|
|
|
|
struct platform_pwm_backlight_data *data)
|
|
|
|
{
|
|
|
|
return -ENODEV;
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
2008-04-14 08:35:08 +00:00
|
|
|
static int pwm_backlight_probe(struct platform_device *pdev)
|
|
|
|
{
|
|
|
|
struct platform_pwm_backlight_data *data = pdev->dev.platform_data;
|
2011-12-16 20:25:29 +00:00
|
|
|
struct platform_pwm_backlight_data defdata;
|
|
|
|
struct backlight_properties props;
|
2008-04-14 08:35:08 +00:00
|
|
|
struct backlight_device *bl;
|
|
|
|
struct pwm_bl_data *pb;
|
2011-12-16 20:25:29 +00:00
|
|
|
unsigned int max;
|
2008-05-22 13:18:40 +00:00
|
|
|
int ret;
|
2008-04-14 08:35:08 +00:00
|
|
|
|
2008-08-05 20:01:22 +00:00
|
|
|
if (!data) {
|
2011-12-16 20:25:29 +00:00
|
|
|
ret = pwm_backlight_parse_dt(&pdev->dev, &defdata);
|
|
|
|
if (ret < 0) {
|
|
|
|
dev_err(&pdev->dev, "failed to find platform data\n");
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
|
|
|
data = &defdata;
|
2008-08-05 20:01:22 +00:00
|
|
|
}
|
2008-04-14 08:35:08 +00:00
|
|
|
|
2008-05-22 13:18:40 +00:00
|
|
|
if (data->init) {
|
|
|
|
ret = data->init(&pdev->dev);
|
|
|
|
if (ret < 0)
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
2012-03-23 22:02:00 +00:00
|
|
|
pb = devm_kzalloc(&pdev->dev, sizeof(*pb), GFP_KERNEL);
|
2008-05-22 13:18:40 +00:00
|
|
|
if (!pb) {
|
2008-08-05 20:01:22 +00:00
|
|
|
dev_err(&pdev->dev, "no memory for state\n");
|
2008-05-22 13:18:40 +00:00
|
|
|
ret = -ENOMEM;
|
|
|
|
goto err_alloc;
|
|
|
|
}
|
2008-04-14 08:35:08 +00:00
|
|
|
|
2011-12-16 20:25:29 +00:00
|
|
|
if (data->levels) {
|
|
|
|
max = data->levels[data->max_brightness];
|
|
|
|
pb->levels = data->levels;
|
|
|
|
} else
|
|
|
|
max = data->max_brightness;
|
|
|
|
|
2008-05-22 13:18:40 +00:00
|
|
|
pb->notify = data->notify;
|
2011-08-25 22:59:17 +00:00
|
|
|
pb->notify_after = data->notify_after;
|
2011-03-22 23:30:31 +00:00
|
|
|
pb->check_fb = data->check_fb;
|
2011-12-16 20:25:29 +00:00
|
|
|
pb->exit = data->exit;
|
2009-11-10 17:20:40 +00:00
|
|
|
pb->dev = &pdev->dev;
|
2008-04-14 08:35:08 +00:00
|
|
|
|
2012-09-17 06:20:47 +00:00
|
|
|
pb->pwm = devm_pwm_get(&pdev->dev, NULL);
|
2008-07-01 13:18:27 +00:00
|
|
|
if (IS_ERR(pb->pwm)) {
|
2011-12-16 20:25:29 +00:00
|
|
|
dev_err(&pdev->dev, "unable to request PWM, trying legacy API\n");
|
|
|
|
|
|
|
|
pb->pwm = pwm_request(data->pwm_id, "pwm-backlight");
|
|
|
|
if (IS_ERR(pb->pwm)) {
|
|
|
|
dev_err(&pdev->dev, "unable to request legacy PWM\n");
|
|
|
|
ret = PTR_ERR(pb->pwm);
|
|
|
|
goto err_alloc;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
dev_dbg(&pdev->dev, "got pwm for backlight\n");
|
|
|
|
|
|
|
|
/*
|
|
|
|
* The DT case will set the pwm_period_ns field to 0 and store the
|
|
|
|
* period, parsed from the DT, in the PWM device. For the non-DT case,
|
|
|
|
* set the period from platform data.
|
|
|
|
*/
|
|
|
|
if (data->pwm_period_ns > 0)
|
|
|
|
pwm_set_period(pb->pwm, data->pwm_period_ns);
|
|
|
|
|
|
|
|
pb->period = pwm_get_period(pb->pwm);
|
|
|
|
pb->lth_brightness = data->lth_brightness * (pb->period / max);
|
2008-04-14 08:35:08 +00:00
|
|
|
|
2010-02-17 21:39:44 +00:00
|
|
|
memset(&props, 0, sizeof(struct backlight_properties));
|
2011-03-22 23:30:21 +00:00
|
|
|
props.type = BACKLIGHT_RAW;
|
2010-02-17 21:39:44 +00:00
|
|
|
props.max_brightness = data->max_brightness;
|
|
|
|
bl = backlight_device_register(dev_name(&pdev->dev), &pdev->dev, pb,
|
|
|
|
&pwm_backlight_ops, &props);
|
2008-04-14 08:35:08 +00:00
|
|
|
if (IS_ERR(bl)) {
|
|
|
|
dev_err(&pdev->dev, "failed to register backlight\n");
|
2008-05-22 13:18:40 +00:00
|
|
|
ret = PTR_ERR(bl);
|
2012-09-17 06:20:47 +00:00
|
|
|
goto err_alloc;
|
2008-04-14 08:35:08 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
bl->props.brightness = data->dft_brightness;
|
|
|
|
backlight_update_status(bl);
|
|
|
|
|
|
|
|
platform_set_drvdata(pdev, bl);
|
|
|
|
return 0;
|
2008-05-22 13:18:40 +00:00
|
|
|
|
|
|
|
err_alloc:
|
|
|
|
if (data->exit)
|
|
|
|
data->exit(&pdev->dev);
|
|
|
|
return ret;
|
2008-04-14 08:35:08 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static int pwm_backlight_remove(struct platform_device *pdev)
|
|
|
|
{
|
|
|
|
struct backlight_device *bl = platform_get_drvdata(pdev);
|
|
|
|
struct pwm_bl_data *pb = dev_get_drvdata(&bl->dev);
|
|
|
|
|
|
|
|
backlight_device_unregister(bl);
|
|
|
|
pwm_config(pb->pwm, 0, pb->period);
|
|
|
|
pwm_disable(pb->pwm);
|
2011-12-16 20:25:29 +00:00
|
|
|
if (pb->exit)
|
|
|
|
pb->exit(&pdev->dev);
|
2008-04-14 08:35:08 +00:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
#ifdef CONFIG_PM
|
2012-01-10 23:09:22 +00:00
|
|
|
static int pwm_backlight_suspend(struct device *dev)
|
2008-04-14 08:35:08 +00:00
|
|
|
{
|
2012-01-10 23:09:22 +00:00
|
|
|
struct backlight_device *bl = dev_get_drvdata(dev);
|
2008-04-14 08:35:08 +00:00
|
|
|
struct pwm_bl_data *pb = dev_get_drvdata(&bl->dev);
|
|
|
|
|
2009-06-19 08:50:54 +00:00
|
|
|
if (pb->notify)
|
2009-11-10 17:20:40 +00:00
|
|
|
pb->notify(pb->dev, 0);
|
2008-04-14 08:35:08 +00:00
|
|
|
pwm_config(pb->pwm, 0, pb->period);
|
|
|
|
pwm_disable(pb->pwm);
|
2011-08-25 22:59:17 +00:00
|
|
|
if (pb->notify_after)
|
|
|
|
pb->notify_after(pb->dev, 0);
|
2008-04-14 08:35:08 +00:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2012-01-10 23:09:22 +00:00
|
|
|
static int pwm_backlight_resume(struct device *dev)
|
2008-04-14 08:35:08 +00:00
|
|
|
{
|
2012-01-10 23:09:22 +00:00
|
|
|
struct backlight_device *bl = dev_get_drvdata(dev);
|
2008-04-14 08:35:08 +00:00
|
|
|
|
|
|
|
backlight_update_status(bl);
|
|
|
|
return 0;
|
|
|
|
}
|
2012-01-10 23:09:22 +00:00
|
|
|
|
|
|
|
static SIMPLE_DEV_PM_OPS(pwm_backlight_pm_ops, pwm_backlight_suspend,
|
|
|
|
pwm_backlight_resume);
|
|
|
|
|
2008-04-14 08:35:08 +00:00
|
|
|
#endif
|
|
|
|
|
|
|
|
static struct platform_driver pwm_backlight_driver = {
|
|
|
|
.driver = {
|
2011-12-16 20:25:29 +00:00
|
|
|
.name = "pwm-backlight",
|
|
|
|
.owner = THIS_MODULE,
|
2012-01-10 23:09:22 +00:00
|
|
|
#ifdef CONFIG_PM
|
2011-12-16 20:25:29 +00:00
|
|
|
.pm = &pwm_backlight_pm_ops,
|
2012-01-10 23:09:22 +00:00
|
|
|
#endif
|
2011-12-16 20:25:29 +00:00
|
|
|
.of_match_table = of_match_ptr(pwm_backlight_of_match),
|
2008-04-14 08:35:08 +00:00
|
|
|
},
|
|
|
|
.probe = pwm_backlight_probe,
|
|
|
|
.remove = pwm_backlight_remove,
|
|
|
|
};
|
|
|
|
|
2012-01-10 23:09:11 +00:00
|
|
|
module_platform_driver(pwm_backlight_driver);
|
2008-04-14 08:35:08 +00:00
|
|
|
|
|
|
|
MODULE_DESCRIPTION("PWM based Backlight Driver");
|
|
|
|
MODULE_LICENSE("GPL");
|
2008-08-05 20:01:24 +00:00
|
|
|
MODULE_ALIAS("platform:pwm-backlight");
|
|
|
|
|