blob: 342b7d7cbb632826611f856a7eaa578220d16681 [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
Julia Lawallce969222012-03-23 15:02:00 -0700105 pb = devm_kzalloc(&pdev->dev, 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);
Julia Lawallce969222012-03-23 15:02:00 -0700124 goto err_alloc;
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);
Philipp Zabel3b731252008-05-22 14:18:40 +0100147err_alloc:
148 if (data->exit)
149 data->exit(&pdev->dev);
150 return ret;
eric miao42796d32008-04-14 09:35:08 +0100151}
152
153static int pwm_backlight_remove(struct platform_device *pdev)
154{
Philipp Zabel3b731252008-05-22 14:18:40 +0100155 struct platform_pwm_backlight_data *data = pdev->dev.platform_data;
eric miao42796d32008-04-14 09:35:08 +0100156 struct backlight_device *bl = platform_get_drvdata(pdev);
157 struct pwm_bl_data *pb = dev_get_drvdata(&bl->dev);
158
159 backlight_device_unregister(bl);
160 pwm_config(pb->pwm, 0, pb->period);
161 pwm_disable(pb->pwm);
162 pwm_free(pb->pwm);
Philipp Zabel3b731252008-05-22 14:18:40 +0100163 if (data->exit)
164 data->exit(&pdev->dev);
eric miao42796d32008-04-14 09:35:08 +0100165 return 0;
166}
167
168#ifdef CONFIG_PM
Mark Browne2c17bc2012-01-10 15:09:22 -0800169static int pwm_backlight_suspend(struct device *dev)
eric miao42796d32008-04-14 09:35:08 +0100170{
Mark Browne2c17bc2012-01-10 15:09:22 -0800171 struct backlight_device *bl = dev_get_drvdata(dev);
eric miao42796d32008-04-14 09:35:08 +0100172 struct pwm_bl_data *pb = dev_get_drvdata(&bl->dev);
173
Marc Zyngier82e8b542009-06-19 10:50:54 +0200174 if (pb->notify)
Ben Dookscfc38992009-11-10 17:20:40 +0000175 pb->notify(pb->dev, 0);
eric miao42796d32008-04-14 09:35:08 +0100176 pwm_config(pb->pwm, 0, pb->period);
177 pwm_disable(pb->pwm);
Dilan Leecc7993f2011-08-25 15:59:17 -0700178 if (pb->notify_after)
179 pb->notify_after(pb->dev, 0);
eric miao42796d32008-04-14 09:35:08 +0100180 return 0;
181}
182
Mark Browne2c17bc2012-01-10 15:09:22 -0800183static int pwm_backlight_resume(struct device *dev)
eric miao42796d32008-04-14 09:35:08 +0100184{
Mark Browne2c17bc2012-01-10 15:09:22 -0800185 struct backlight_device *bl = dev_get_drvdata(dev);
eric miao42796d32008-04-14 09:35:08 +0100186
187 backlight_update_status(bl);
188 return 0;
189}
Mark Browne2c17bc2012-01-10 15:09:22 -0800190
191static SIMPLE_DEV_PM_OPS(pwm_backlight_pm_ops, pwm_backlight_suspend,
192 pwm_backlight_resume);
193
eric miao42796d32008-04-14 09:35:08 +0100194#endif
195
196static struct platform_driver pwm_backlight_driver = {
197 .driver = {
198 .name = "pwm-backlight",
199 .owner = THIS_MODULE,
Mark Browne2c17bc2012-01-10 15:09:22 -0800200#ifdef CONFIG_PM
201 .pm = &pwm_backlight_pm_ops,
202#endif
eric miao42796d32008-04-14 09:35:08 +0100203 },
204 .probe = pwm_backlight_probe,
205 .remove = pwm_backlight_remove,
eric miao42796d32008-04-14 09:35:08 +0100206};
207
Axel Lin81178e02012-01-10 15:09:11 -0800208module_platform_driver(pwm_backlight_driver);
eric miao42796d32008-04-14 09:35:08 +0100209
210MODULE_DESCRIPTION("PWM based Backlight Driver");
211MODULE_LICENSE("GPL");
Ben Dooks8cd68192008-08-05 13:01:24 -0700212MODULE_ALIAS("platform:pwm-backlight");
213