blob: 7496d04e1d3c1fcda109ae04d12e79c24edacc0e [file] [log] [blame]
eric miao42796d32008-04-14 09:35:08 +01001/*
2 * linux/drivers/video/backlight/pwm_bl.c
3 *
4 * simple PWM based backlight control, board code has to setup
5 * 1) pin configuration so PWM waveforms can output
Eric Miaob8cdd872009-02-10 13:30:37 +08006 * 2) platform_data being correctly configured
eric miao42796d32008-04-14 09:35:08 +01007 *
8 * This program is free software; you can redistribute it and/or modify
9 * it under the terms of the GNU General Public License version 2 as
10 * published by the Free Software Foundation.
11 */
12
13#include <linux/module.h>
14#include <linux/kernel.h>
15#include <linux/init.h>
16#include <linux/platform_device.h>
17#include <linux/fb.h>
18#include <linux/backlight.h>
19#include <linux/err.h>
20#include <linux/pwm.h>
21#include <linux/pwm_backlight.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090022#include <linux/slab.h>
eric miao42796d32008-04-14 09:35:08 +010023
24struct pwm_bl_data {
25 struct pwm_device *pwm;
Ben Dookscfc38992009-11-10 17:20:40 +000026 struct device *dev;
eric miao42796d32008-04-14 09:35:08 +010027 unsigned int period;
Arun Murthyfef77642010-11-11 14:05:28 -080028 unsigned int lth_brightness;
Ben Dookscfc38992009-11-10 17:20:40 +000029 int (*notify)(struct device *,
30 int brightness);
Dilan Leecc7993f2011-08-25 15:59:17 -070031 void (*notify_after)(struct device *,
32 int brightness);
Robert Morellef0a5e82011-03-22 16:30:31 -070033 int (*check_fb)(struct device *, struct fb_info *);
eric miao42796d32008-04-14 09:35:08 +010034};
35
36static int pwm_backlight_update_status(struct backlight_device *bl)
37{
38 struct pwm_bl_data *pb = dev_get_drvdata(&bl->dev);
39 int brightness = bl->props.brightness;
40 int max = bl->props.max_brightness;
41
42 if (bl->props.power != FB_BLANK_UNBLANK)
43 brightness = 0;
44
45 if (bl->props.fb_blank != FB_BLANK_UNBLANK)
46 brightness = 0;
47
Philipp Zabel3b731252008-05-22 14:18:40 +010048 if (pb->notify)
Ben Dookscfc38992009-11-10 17:20:40 +000049 brightness = pb->notify(pb->dev, brightness);
Philipp Zabel3b731252008-05-22 14:18:40 +010050
eric miao42796d32008-04-14 09:35:08 +010051 if (brightness == 0) {
52 pwm_config(pb->pwm, 0, pb->period);
53 pwm_disable(pb->pwm);
54 } else {
Arun Murthyfef77642010-11-11 14:05:28 -080055 brightness = pb->lth_brightness +
56 (brightness * (pb->period - pb->lth_brightness) / max);
57 pwm_config(pb->pwm, brightness, pb->period);
eric miao42796d32008-04-14 09:35:08 +010058 pwm_enable(pb->pwm);
59 }
Dilan Leecc7993f2011-08-25 15:59:17 -070060
61 if (pb->notify_after)
62 pb->notify_after(pb->dev, brightness);
63
eric miao42796d32008-04-14 09:35:08 +010064 return 0;
65}
66
67static int pwm_backlight_get_brightness(struct backlight_device *bl)
68{
69 return bl->props.brightness;
70}
71
Robert Morellef0a5e82011-03-22 16:30:31 -070072static int pwm_backlight_check_fb(struct backlight_device *bl,
73 struct fb_info *info)
74{
75 struct pwm_bl_data *pb = dev_get_drvdata(&bl->dev);
76
77 return !pb->check_fb || pb->check_fb(pb->dev, info);
78}
79
Emese Revfy9905a432009-12-14 00:58:57 +010080static const struct backlight_ops pwm_backlight_ops = {
eric miao42796d32008-04-14 09:35:08 +010081 .update_status = pwm_backlight_update_status,
82 .get_brightness = pwm_backlight_get_brightness,
Robert Morellef0a5e82011-03-22 16:30:31 -070083 .check_fb = pwm_backlight_check_fb,
eric miao42796d32008-04-14 09:35:08 +010084};
85
86static int pwm_backlight_probe(struct platform_device *pdev)
87{
Matthew Garretta19a6ee2010-02-17 16:39:44 -050088 struct backlight_properties props;
eric miao42796d32008-04-14 09:35:08 +010089 struct platform_pwm_backlight_data *data = pdev->dev.platform_data;
90 struct backlight_device *bl;
91 struct pwm_bl_data *pb;
Philipp Zabel3b731252008-05-22 14:18:40 +010092 int ret;
eric miao42796d32008-04-14 09:35:08 +010093
Ben Dooks14563a42008-08-05 13:01:22 -070094 if (!data) {
95 dev_err(&pdev->dev, "failed to find platform data\n");
eric miao42796d32008-04-14 09:35:08 +010096 return -EINVAL;
Ben Dooks14563a42008-08-05 13:01:22 -070097 }
eric miao42796d32008-04-14 09:35:08 +010098
Philipp Zabel3b731252008-05-22 14:18:40 +010099 if (data->init) {
100 ret = data->init(&pdev->dev);
101 if (ret < 0)
102 return ret;
103 }
104
eric miao42796d32008-04-14 09:35:08 +0100105 pb = kzalloc(sizeof(*pb), GFP_KERNEL);
Philipp Zabel3b731252008-05-22 14:18:40 +0100106 if (!pb) {
Ben Dooks14563a42008-08-05 13:01:22 -0700107 dev_err(&pdev->dev, "no memory for state\n");
Philipp Zabel3b731252008-05-22 14:18:40 +0100108 ret = -ENOMEM;
109 goto err_alloc;
110 }
eric miao42796d32008-04-14 09:35:08 +0100111
112 pb->period = data->pwm_period_ns;
Philipp Zabel3b731252008-05-22 14:18:40 +0100113 pb->notify = data->notify;
Dilan Leecc7993f2011-08-25 15:59:17 -0700114 pb->notify_after = data->notify_after;
Robert Morellef0a5e82011-03-22 16:30:31 -0700115 pb->check_fb = data->check_fb;
Arun Murthyfef77642010-11-11 14:05:28 -0800116 pb->lth_brightness = data->lth_brightness *
117 (data->pwm_period_ns / data->max_brightness);
Ben Dookscfc38992009-11-10 17:20:40 +0000118 pb->dev = &pdev->dev;
eric miao42796d32008-04-14 09:35:08 +0100119
120 pb->pwm = pwm_request(data->pwm_id, "backlight");
Ben Dooks43bda1a2008-07-01 14:18:27 +0100121 if (IS_ERR(pb->pwm)) {
eric miao42796d32008-04-14 09:35:08 +0100122 dev_err(&pdev->dev, "unable to request PWM for backlight\n");
Ben Dooks43bda1a2008-07-01 14:18:27 +0100123 ret = PTR_ERR(pb->pwm);
Philipp Zabel3b731252008-05-22 14:18:40 +0100124 goto err_pwm;
Ben Dooks14563a42008-08-05 13:01:22 -0700125 } else
126 dev_dbg(&pdev->dev, "got pwm for backlight\n");
eric miao42796d32008-04-14 09:35:08 +0100127
Matthew Garretta19a6ee2010-02-17 16:39:44 -0500128 memset(&props, 0, sizeof(struct backlight_properties));
Matthew Garrettbb7ca742011-03-22 16:30:21 -0700129 props.type = BACKLIGHT_RAW;
Matthew Garretta19a6ee2010-02-17 16:39:44 -0500130 props.max_brightness = data->max_brightness;
131 bl = backlight_device_register(dev_name(&pdev->dev), &pdev->dev, pb,
132 &pwm_backlight_ops, &props);
eric miao42796d32008-04-14 09:35:08 +0100133 if (IS_ERR(bl)) {
134 dev_err(&pdev->dev, "failed to register backlight\n");
Philipp Zabel3b731252008-05-22 14:18:40 +0100135 ret = PTR_ERR(bl);
136 goto err_bl;
eric miao42796d32008-04-14 09:35:08 +0100137 }
138
eric miao42796d32008-04-14 09:35:08 +0100139 bl->props.brightness = data->dft_brightness;
140 backlight_update_status(bl);
141
142 platform_set_drvdata(pdev, bl);
143 return 0;
Philipp Zabel3b731252008-05-22 14:18:40 +0100144
145err_bl:
146 pwm_free(pb->pwm);
147err_pwm:
148 kfree(pb);
149err_alloc:
150 if (data->exit)
151 data->exit(&pdev->dev);
152 return ret;
eric miao42796d32008-04-14 09:35:08 +0100153}
154
155static int pwm_backlight_remove(struct platform_device *pdev)
156{
Philipp Zabel3b731252008-05-22 14:18:40 +0100157 struct platform_pwm_backlight_data *data = pdev->dev.platform_data;
eric miao42796d32008-04-14 09:35:08 +0100158 struct backlight_device *bl = platform_get_drvdata(pdev);
159 struct pwm_bl_data *pb = dev_get_drvdata(&bl->dev);
160
161 backlight_device_unregister(bl);
162 pwm_config(pb->pwm, 0, pb->period);
163 pwm_disable(pb->pwm);
164 pwm_free(pb->pwm);
165 kfree(pb);
Philipp Zabel3b731252008-05-22 14:18:40 +0100166 if (data->exit)
167 data->exit(&pdev->dev);
eric miao42796d32008-04-14 09:35:08 +0100168 return 0;
169}
170
171#ifdef CONFIG_PM
Mark Browne2c17bc2012-01-10 15:09:22 -0800172static int pwm_backlight_suspend(struct device *dev)
eric miao42796d32008-04-14 09:35:08 +0100173{
Mark Browne2c17bc2012-01-10 15:09:22 -0800174 struct backlight_device *bl = dev_get_drvdata(dev);
eric miao42796d32008-04-14 09:35:08 +0100175 struct pwm_bl_data *pb = dev_get_drvdata(&bl->dev);
176
Marc Zyngier82e8b542009-06-19 10:50:54 +0200177 if (pb->notify)
Ben Dookscfc38992009-11-10 17:20:40 +0000178 pb->notify(pb->dev, 0);
eric miao42796d32008-04-14 09:35:08 +0100179 pwm_config(pb->pwm, 0, pb->period);
180 pwm_disable(pb->pwm);
Dilan Leecc7993f2011-08-25 15:59:17 -0700181 if (pb->notify_after)
182 pb->notify_after(pb->dev, 0);
eric miao42796d32008-04-14 09:35:08 +0100183 return 0;
184}
185
Mark Browne2c17bc2012-01-10 15:09:22 -0800186static int pwm_backlight_resume(struct device *dev)
eric miao42796d32008-04-14 09:35:08 +0100187{
Mark Browne2c17bc2012-01-10 15:09:22 -0800188 struct backlight_device *bl = dev_get_drvdata(dev);
eric miao42796d32008-04-14 09:35:08 +0100189
190 backlight_update_status(bl);
191 return 0;
192}
Mark Browne2c17bc2012-01-10 15:09:22 -0800193
194static SIMPLE_DEV_PM_OPS(pwm_backlight_pm_ops, pwm_backlight_suspend,
195 pwm_backlight_resume);
196
eric miao42796d32008-04-14 09:35:08 +0100197#endif
198
199static struct platform_driver pwm_backlight_driver = {
200 .driver = {
201 .name = "pwm-backlight",
202 .owner = THIS_MODULE,
Mark Browne2c17bc2012-01-10 15:09:22 -0800203#ifdef CONFIG_PM
204 .pm = &pwm_backlight_pm_ops,
205#endif
eric miao42796d32008-04-14 09:35:08 +0100206 },
207 .probe = pwm_backlight_probe,
208 .remove = pwm_backlight_remove,
eric miao42796d32008-04-14 09:35:08 +0100209};
210
Axel Lin81178e02012-01-10 15:09:11 -0800211module_platform_driver(pwm_backlight_driver);
eric miao42796d32008-04-14 09:35:08 +0100212
213MODULE_DESCRIPTION("PWM based Backlight Driver");
214MODULE_LICENSE("GPL");
Ben Dooks8cd68192008-08-05 13:01:24 -0700215MODULE_ALIAS("platform:pwm-backlight");
216