blob: a9c013bb9f20d0f0944e9f012bb325748bb074cd [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * Backlight Lowlevel Control Abstraction
3 *
4 * Copyright (C) 2003,2004 Hewlett-Packard Company
5 *
6 */
7
Linus Torvalds1da177e2005-04-16 15:20:36 -07008#include <linux/module.h>
9#include <linux/init.h>
10#include <linux/device.h>
11#include <linux/backlight.h>
12#include <linux/notifier.h>
13#include <linux/ctype.h>
14#include <linux/err.h>
15#include <linux/fb.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070016
Richard Purdie321709c2007-02-10 15:04:08 +000017#ifdef CONFIG_PMAC_BACKLIGHT
18#include <asm/backlight.h>
19#endif
James Simmons3d5eead2006-12-08 02:40:47 -080020
21#if defined(CONFIG_FB) || (defined(CONFIG_FB_MODULE) && \
22 defined(CONFIG_BACKLIGHT_CLASS_DEVICE_MODULE))
23/* This callback gets called when something important happens inside a
24 * framebuffer driver. We're looking if that important event is blanking,
25 * and if it is, we're switching backlight power as well ...
26 */
27static int fb_notifier_callback(struct notifier_block *self,
28 unsigned long event, void *data)
29{
30 struct backlight_device *bd;
31 struct fb_event *evdata = data;
32
33 /* If we aren't interested in this event, skip it immediately ... */
Richard Purdie994efac2007-02-09 09:46:45 +000034 if (event != FB_EVENT_BLANK && event != FB_EVENT_CONBLANK)
James Simmons3d5eead2006-12-08 02:40:47 -080035 return 0;
36
37 bd = container_of(self, struct backlight_device, fb_notif);
Richard Purdie599a52d2007-02-10 23:07:48 +000038 mutex_lock(&bd->ops_lock);
39 if (bd->ops)
40 if (!bd->ops->check_fb ||
41 bd->ops->check_fb(evdata->info)) {
42 bd->props.fb_blank = *(int *)evdata->data;
Richard Purdie28ee0862007-02-08 22:25:09 +000043 backlight_update_status(bd);
James Simmons3d5eead2006-12-08 02:40:47 -080044 }
Richard Purdie599a52d2007-02-10 23:07:48 +000045 mutex_unlock(&bd->ops_lock);
James Simmons3d5eead2006-12-08 02:40:47 -080046 return 0;
47}
48
49static int backlight_register_fb(struct backlight_device *bd)
50{
51 memset(&bd->fb_notif, 0, sizeof(bd->fb_notif));
52 bd->fb_notif.notifier_call = fb_notifier_callback;
53
54 return fb_register_client(&bd->fb_notif);
55}
56
57static void backlight_unregister_fb(struct backlight_device *bd)
58{
59 fb_unregister_client(&bd->fb_notif);
60}
61#else
62static inline int backlight_register_fb(struct backlight_device *bd)
63{
64 return 0;
65}
66
67static inline void backlight_unregister_fb(struct backlight_device *bd)
68{
69}
70#endif /* CONFIG_FB */
71
Richard Purdie655bfd72007-07-09 12:17:24 +010072static ssize_t backlight_show_power(struct device *dev,
73 struct device_attribute *attr,char *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -070074{
Richard Purdie655bfd72007-07-09 12:17:24 +010075 struct backlight_device *bd = to_backlight_device(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -070076
Richard Purdie599a52d2007-02-10 23:07:48 +000077 return sprintf(buf, "%d\n", bd->props.power);
Linus Torvalds1da177e2005-04-16 15:20:36 -070078}
79
Richard Purdie655bfd72007-07-09 12:17:24 +010080static ssize_t backlight_store_power(struct device *dev,
81 struct device_attribute *attr, const char *buf, size_t count)
Linus Torvalds1da177e2005-04-16 15:20:36 -070082{
Pavel Machek9a2c61a2008-12-03 08:43:48 +000083 int rc;
Richard Purdie655bfd72007-07-09 12:17:24 +010084 struct backlight_device *bd = to_backlight_device(dev);
Pavel Machek9a2c61a2008-12-03 08:43:48 +000085 unsigned long power;
Linus Torvalds1da177e2005-04-16 15:20:36 -070086
Pavel Machek9a2c61a2008-12-03 08:43:48 +000087 rc = strict_strtoul(buf, 0, &power);
88 if (rc)
89 return rc;
Linus Torvalds1da177e2005-04-16 15:20:36 -070090
Pavel Machek9a2c61a2008-12-03 08:43:48 +000091 rc = -ENXIO;
Richard Purdie599a52d2007-02-10 23:07:48 +000092 mutex_lock(&bd->ops_lock);
93 if (bd->ops) {
Pavel Machek9a2c61a2008-12-03 08:43:48 +000094 pr_debug("backlight: set power to %lu\n", power);
Helge Deller51552452008-01-13 23:01:13 +000095 if (bd->props.power != power) {
96 bd->props.power = power;
97 backlight_update_status(bd);
98 }
Linus Torvalds1da177e2005-04-16 15:20:36 -070099 rc = count;
Richard Purdie6ca01762006-03-31 02:31:49 -0800100 }
Richard Purdie599a52d2007-02-10 23:07:48 +0000101 mutex_unlock(&bd->ops_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700102
103 return rc;
104}
105
Richard Purdie655bfd72007-07-09 12:17:24 +0100106static ssize_t backlight_show_brightness(struct device *dev,
107 struct device_attribute *attr, char *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700108{
Richard Purdie655bfd72007-07-09 12:17:24 +0100109 struct backlight_device *bd = to_backlight_device(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700110
Richard Purdie599a52d2007-02-10 23:07:48 +0000111 return sprintf(buf, "%d\n", bd->props.brightness);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700112}
113
Richard Purdie655bfd72007-07-09 12:17:24 +0100114static ssize_t backlight_store_brightness(struct device *dev,
115 struct device_attribute *attr, const char *buf, size_t count)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700116{
Pavel Machek9a2c61a2008-12-03 08:43:48 +0000117 int rc;
Richard Purdie655bfd72007-07-09 12:17:24 +0100118 struct backlight_device *bd = to_backlight_device(dev);
Pavel Machek9a2c61a2008-12-03 08:43:48 +0000119 unsigned long brightness;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700120
Pavel Machek9a2c61a2008-12-03 08:43:48 +0000121 rc = strict_strtoul(buf, 0, &brightness);
122 if (rc)
123 return rc;
124
125 rc = -ENXIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700126
Richard Purdie599a52d2007-02-10 23:07:48 +0000127 mutex_lock(&bd->ops_lock);
128 if (bd->ops) {
129 if (brightness > bd->props.max_brightness)
Richard Purdie6ca01762006-03-31 02:31:49 -0800130 rc = -EINVAL;
131 else {
Pavel Machek9a2c61a2008-12-03 08:43:48 +0000132 pr_debug("backlight: set brightness to %lu\n",
Richard Purdie6ca01762006-03-31 02:31:49 -0800133 brightness);
Zhang Rui9be1df92009-01-08 14:11:30 +0000134 bd->props.brightness = brightness;
135 backlight_update_status(bd);
Richard Purdie6ca01762006-03-31 02:31:49 -0800136 rc = count;
137 }
138 }
Richard Purdie599a52d2007-02-10 23:07:48 +0000139 mutex_unlock(&bd->ops_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700140
141 return rc;
142}
143
Richard Purdie655bfd72007-07-09 12:17:24 +0100144static ssize_t backlight_show_max_brightness(struct device *dev,
145 struct device_attribute *attr, char *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700146{
Richard Purdie655bfd72007-07-09 12:17:24 +0100147 struct backlight_device *bd = to_backlight_device(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700148
Richard Purdie599a52d2007-02-10 23:07:48 +0000149 return sprintf(buf, "%d\n", bd->props.max_brightness);
Richard Purdie6ca01762006-03-31 02:31:49 -0800150}
151
Richard Purdie655bfd72007-07-09 12:17:24 +0100152static ssize_t backlight_show_actual_brightness(struct device *dev,
153 struct device_attribute *attr, char *buf)
Richard Purdie6ca01762006-03-31 02:31:49 -0800154{
155 int rc = -ENXIO;
Richard Purdie655bfd72007-07-09 12:17:24 +0100156 struct backlight_device *bd = to_backlight_device(dev);
Richard Purdie6ca01762006-03-31 02:31:49 -0800157
Richard Purdie599a52d2007-02-10 23:07:48 +0000158 mutex_lock(&bd->ops_lock);
159 if (bd->ops && bd->ops->get_brightness)
160 rc = sprintf(buf, "%d\n", bd->ops->get_brightness(bd));
161 mutex_unlock(&bd->ops_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700162
163 return rc;
164}
165
Adrian Bunk0ad90ef2007-08-11 10:27:19 +0100166static struct class *backlight_class;
Richard Purdie655bfd72007-07-09 12:17:24 +0100167
168static void bl_device_release(struct device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700169{
170 struct backlight_device *bd = to_backlight_device(dev);
171 kfree(bd);
172}
173
Richard Purdie655bfd72007-07-09 12:17:24 +0100174static struct device_attribute bl_device_attributes[] = {
175 __ATTR(bl_power, 0644, backlight_show_power, backlight_store_power),
176 __ATTR(brightness, 0644, backlight_show_brightness,
Richard Purdie6ca01762006-03-31 02:31:49 -0800177 backlight_store_brightness),
Richard Purdie655bfd72007-07-09 12:17:24 +0100178 __ATTR(actual_brightness, 0444, backlight_show_actual_brightness,
Richard Purdie6ca01762006-03-31 02:31:49 -0800179 NULL),
Richard Purdie655bfd72007-07-09 12:17:24 +0100180 __ATTR(max_brightness, 0444, backlight_show_max_brightness, NULL),
181 __ATTR_NULL,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700182};
183
Linus Torvalds1da177e2005-04-16 15:20:36 -0700184/**
185 * backlight_device_register - create and register a new object of
186 * backlight_device class.
187 * @name: the name of the new object(must be the same as the name of the
188 * respective framebuffer device).
Sebastian Siewiorf6ec2d92008-07-16 23:05:49 +0100189 * @parent: a pointer to the parent device
Richard Purdie655bfd72007-07-09 12:17:24 +0100190 * @devdata: an optional pointer to be stored for private driver use. The
191 * methods may retrieve it by using bl_get_data(bd).
Richard Purdie599a52d2007-02-10 23:07:48 +0000192 * @ops: the backlight operations structure.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700193 *
Richard Purdie655bfd72007-07-09 12:17:24 +0100194 * Creates and registers new backlight device. Returns either an
Linus Torvalds1da177e2005-04-16 15:20:36 -0700195 * ERR_PTR() or a pointer to the newly allocated device.
196 */
Yu Luming519ab5f2006-12-19 12:56:15 -0800197struct backlight_device *backlight_device_register(const char *name,
Richard Purdie655bfd72007-07-09 12:17:24 +0100198 struct device *parent, void *devdata, struct backlight_ops *ops)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700199{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700200 struct backlight_device *new_bd;
Richard Purdie655bfd72007-07-09 12:17:24 +0100201 int rc;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700202
Richard Purdie655bfd72007-07-09 12:17:24 +0100203 pr_debug("backlight_device_register: name=%s\n", name);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700204
Richard Purdie599a52d2007-02-10 23:07:48 +0000205 new_bd = kzalloc(sizeof(struct backlight_device), GFP_KERNEL);
Dmitry Torokhov90968e82007-02-08 00:12:28 +0000206 if (!new_bd)
Jean Delvare10ad1b72006-03-09 17:33:36 -0800207 return ERR_PTR(-ENOMEM);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700208
Richard Purdie28ee0862007-02-08 22:25:09 +0000209 mutex_init(&new_bd->update_lock);
Richard Purdie599a52d2007-02-10 23:07:48 +0000210 mutex_init(&new_bd->ops_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700211
Richard Purdie655bfd72007-07-09 12:17:24 +0100212 new_bd->dev.class = backlight_class;
213 new_bd->dev.parent = parent;
214 new_bd->dev.release = bl_device_release;
Kay Sievers64dba9a2009-01-06 10:44:35 -0800215 dev_set_name(&new_bd->dev, name);
Richard Purdie655bfd72007-07-09 12:17:24 +0100216 dev_set_drvdata(&new_bd->dev, devdata);
217
218 rc = device_register(&new_bd->dev);
Dmitry Torokhov90968e82007-02-08 00:12:28 +0000219 if (rc) {
Dmitry Torokhov2fd5a152007-02-07 22:25:50 +0000220 kfree(new_bd);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700221 return ERR_PTR(rc);
222 }
223
James Simmons3d5eead2006-12-08 02:40:47 -0800224 rc = backlight_register_fb(new_bd);
Dmitry Torokhov2fd5a152007-02-07 22:25:50 +0000225 if (rc) {
Richard Purdie655bfd72007-07-09 12:17:24 +0100226 device_unregister(&new_bd->dev);
Dmitry Torokhov2fd5a152007-02-07 22:25:50 +0000227 return ERR_PTR(rc);
228 }
229
Richard Purdie655bfd72007-07-09 12:17:24 +0100230 new_bd->ops = ops;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700231
Richard Purdie321709c2007-02-10 15:04:08 +0000232#ifdef CONFIG_PMAC_BACKLIGHT
233 mutex_lock(&pmac_backlight_mutex);
234 if (!pmac_backlight)
235 pmac_backlight = new_bd;
236 mutex_unlock(&pmac_backlight_mutex);
237#endif
238
Linus Torvalds1da177e2005-04-16 15:20:36 -0700239 return new_bd;
240}
241EXPORT_SYMBOL(backlight_device_register);
242
243/**
244 * backlight_device_unregister - unregisters a backlight device object.
245 * @bd: the backlight device object to be unregistered and freed.
246 *
247 * Unregisters a previously registered via backlight_device_register object.
248 */
249void backlight_device_unregister(struct backlight_device *bd)
250{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700251 if (!bd)
252 return;
253
Richard Purdie321709c2007-02-10 15:04:08 +0000254#ifdef CONFIG_PMAC_BACKLIGHT
255 mutex_lock(&pmac_backlight_mutex);
256 if (pmac_backlight == bd)
257 pmac_backlight = NULL;
258 mutex_unlock(&pmac_backlight_mutex);
259#endif
Richard Purdie599a52d2007-02-10 23:07:48 +0000260 mutex_lock(&bd->ops_lock);
261 bd->ops = NULL;
262 mutex_unlock(&bd->ops_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700263
James Simmons3d5eead2006-12-08 02:40:47 -0800264 backlight_unregister_fb(bd);
Richard Purdie655bfd72007-07-09 12:17:24 +0100265 device_unregister(&bd->dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700266}
267EXPORT_SYMBOL(backlight_device_unregister);
268
269static void __exit backlight_class_exit(void)
270{
Richard Purdie655bfd72007-07-09 12:17:24 +0100271 class_destroy(backlight_class);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700272}
273
274static int __init backlight_class_init(void)
275{
Richard Purdie655bfd72007-07-09 12:17:24 +0100276 backlight_class = class_create(THIS_MODULE, "backlight");
277 if (IS_ERR(backlight_class)) {
278 printk(KERN_WARNING "Unable to create backlight class; errno = %ld\n",
279 PTR_ERR(backlight_class));
280 return PTR_ERR(backlight_class);
281 }
282
283 backlight_class->dev_attrs = bl_device_attributes;
284 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700285}
286
287/*
288 * if this is compiled into the kernel, we need to ensure that the
289 * class is registered before users of the class try to register lcd's
290 */
291postcore_initcall(backlight_class_init);
292module_exit(backlight_class_exit);
293
294MODULE_LICENSE("GPL");
295MODULE_AUTHOR("Jamey Hicks <jamey.hicks@hp.com>, Andrew Zabolotny <zap@homelink.ru>");
296MODULE_DESCRIPTION("Backlight Lowlevel Control Abstraction");