Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1 | /* |
| 2 | * LCD Lowlevel Control Abstraction |
| 3 | * |
| 4 | * Copyright (C) 2003,2004 Hewlett-Packard Company |
| 5 | * |
| 6 | */ |
| 7 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 8 | #include <linux/module.h> |
| 9 | #include <linux/init.h> |
| 10 | #include <linux/device.h> |
| 11 | #include <linux/lcd.h> |
| 12 | #include <linux/notifier.h> |
| 13 | #include <linux/ctype.h> |
| 14 | #include <linux/err.h> |
| 15 | #include <linux/fb.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 16 | |
James Simmons | 3d5eead | 2006-12-08 02:40:47 -0800 | [diff] [blame] | 17 | #if defined(CONFIG_FB) || (defined(CONFIG_FB_MODULE) && \ |
| 18 | defined(CONFIG_LCD_CLASS_DEVICE_MODULE)) |
| 19 | /* This callback gets called when something important happens inside a |
| 20 | * framebuffer driver. We're looking if that important event is blanking, |
| 21 | * and if it is, we're switching lcd power as well ... |
| 22 | */ |
| 23 | static int fb_notifier_callback(struct notifier_block *self, |
| 24 | unsigned long event, void *data) |
| 25 | { |
| 26 | struct lcd_device *ld; |
| 27 | struct fb_event *evdata = data; |
| 28 | |
| 29 | /* If we aren't interested in this event, skip it immediately ... */ |
Eric Miao | faa312d | 2008-08-29 04:18:43 +0800 | [diff] [blame] | 30 | switch (event) { |
| 31 | case FB_EVENT_BLANK: |
| 32 | case FB_EVENT_MODE_CHANGE: |
| 33 | case FB_EVENT_MODE_CHANGE_ALL: |
| 34 | break; |
| 35 | default: |
James Simmons | 3d5eead | 2006-12-08 02:40:47 -0800 | [diff] [blame] | 36 | return 0; |
Eric Miao | faa312d | 2008-08-29 04:18:43 +0800 | [diff] [blame] | 37 | } |
James Simmons | 3d5eead | 2006-12-08 02:40:47 -0800 | [diff] [blame] | 38 | |
| 39 | ld = container_of(self, struct lcd_device, fb_notif); |
Eric Miao | faa312d | 2008-08-29 04:18:43 +0800 | [diff] [blame] | 40 | if (!ld->ops) |
| 41 | return 0; |
| 42 | |
Richard Purdie | 599a52d | 2007-02-10 23:07:48 +0000 | [diff] [blame] | 43 | mutex_lock(&ld->ops_lock); |
Eric Miao | faa312d | 2008-08-29 04:18:43 +0800 | [diff] [blame] | 44 | if (!ld->ops->check_fb || ld->ops->check_fb(ld, evdata->info)) { |
Ben Dooks | b3b4dc8 | 2008-11-19 15:36:25 -0800 | [diff] [blame] | 45 | if (event == FB_EVENT_BLANK) { |
| 46 | if (ld->ops->set_power) |
| 47 | ld->ops->set_power(ld, *(int *)evdata->data); |
| 48 | } else { |
| 49 | if (ld->ops->set_mode) |
| 50 | ld->ops->set_mode(ld, evdata->data); |
| 51 | } |
Eric Miao | faa312d | 2008-08-29 04:18:43 +0800 | [diff] [blame] | 52 | } |
Richard Purdie | 599a52d | 2007-02-10 23:07:48 +0000 | [diff] [blame] | 53 | mutex_unlock(&ld->ops_lock); |
James Simmons | 3d5eead | 2006-12-08 02:40:47 -0800 | [diff] [blame] | 54 | return 0; |
| 55 | } |
| 56 | |
| 57 | static int lcd_register_fb(struct lcd_device *ld) |
| 58 | { |
Jean Delvare | 1e0fa6b | 2009-10-02 11:28:18 +0200 | [diff] [blame] | 59 | memset(&ld->fb_notif, 0, sizeof(ld->fb_notif)); |
James Simmons | 3d5eead | 2006-12-08 02:40:47 -0800 | [diff] [blame] | 60 | ld->fb_notif.notifier_call = fb_notifier_callback; |
| 61 | return fb_register_client(&ld->fb_notif); |
| 62 | } |
| 63 | |
| 64 | static void lcd_unregister_fb(struct lcd_device *ld) |
| 65 | { |
| 66 | fb_unregister_client(&ld->fb_notif); |
| 67 | } |
| 68 | #else |
| 69 | static int lcd_register_fb(struct lcd_device *ld) |
| 70 | { |
| 71 | return 0; |
| 72 | } |
| 73 | |
| 74 | static inline void lcd_unregister_fb(struct lcd_device *ld) |
| 75 | { |
| 76 | } |
| 77 | #endif /* CONFIG_FB */ |
| 78 | |
Richard Purdie | 655bfd7 | 2007-07-09 12:17:24 +0100 | [diff] [blame] | 79 | static ssize_t lcd_show_power(struct device *dev, struct device_attribute *attr, |
| 80 | char *buf) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 81 | { |
| 82 | int rc; |
Richard Purdie | 655bfd7 | 2007-07-09 12:17:24 +0100 | [diff] [blame] | 83 | struct lcd_device *ld = to_lcd_device(dev); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 84 | |
Richard Purdie | 599a52d | 2007-02-10 23:07:48 +0000 | [diff] [blame] | 85 | mutex_lock(&ld->ops_lock); |
| 86 | if (ld->ops && ld->ops->get_power) |
| 87 | rc = sprintf(buf, "%d\n", ld->ops->get_power(ld)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 88 | else |
| 89 | rc = -ENXIO; |
Richard Purdie | 599a52d | 2007-02-10 23:07:48 +0000 | [diff] [blame] | 90 | mutex_unlock(&ld->ops_lock); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 91 | |
| 92 | return rc; |
| 93 | } |
| 94 | |
Richard Purdie | 655bfd7 | 2007-07-09 12:17:24 +0100 | [diff] [blame] | 95 | static ssize_t lcd_store_power(struct device *dev, |
| 96 | struct device_attribute *attr, const char *buf, size_t count) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 97 | { |
Richard Purdie | 68673af | 2006-05-15 09:44:15 -0700 | [diff] [blame] | 98 | int rc = -ENXIO; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 99 | char *endp; |
Richard Purdie | 655bfd7 | 2007-07-09 12:17:24 +0100 | [diff] [blame] | 100 | struct lcd_device *ld = to_lcd_device(dev); |
Richard Purdie | 68673af | 2006-05-15 09:44:15 -0700 | [diff] [blame] | 101 | int power = simple_strtoul(buf, &endp, 0); |
| 102 | size_t size = endp - buf; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 103 | |
André Goddard Rosa | e7d2860 | 2009-12-14 18:01:06 -0800 | [diff] [blame] | 104 | if (isspace(*endp)) |
Richard Purdie | 68673af | 2006-05-15 09:44:15 -0700 | [diff] [blame] | 105 | size++; |
| 106 | if (size != count) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 107 | return -EINVAL; |
| 108 | |
Richard Purdie | 599a52d | 2007-02-10 23:07:48 +0000 | [diff] [blame] | 109 | mutex_lock(&ld->ops_lock); |
| 110 | if (ld->ops && ld->ops->set_power) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 111 | pr_debug("lcd: set power to %d\n", power); |
Richard Purdie | 599a52d | 2007-02-10 23:07:48 +0000 | [diff] [blame] | 112 | ld->ops->set_power(ld, power); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 113 | rc = count; |
Richard Purdie | 68673af | 2006-05-15 09:44:15 -0700 | [diff] [blame] | 114 | } |
Richard Purdie | 599a52d | 2007-02-10 23:07:48 +0000 | [diff] [blame] | 115 | mutex_unlock(&ld->ops_lock); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 116 | |
| 117 | return rc; |
| 118 | } |
| 119 | |
Richard Purdie | 655bfd7 | 2007-07-09 12:17:24 +0100 | [diff] [blame] | 120 | static ssize_t lcd_show_contrast(struct device *dev, |
| 121 | struct device_attribute *attr, char *buf) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 122 | { |
Richard Purdie | 68673af | 2006-05-15 09:44:15 -0700 | [diff] [blame] | 123 | int rc = -ENXIO; |
Richard Purdie | 655bfd7 | 2007-07-09 12:17:24 +0100 | [diff] [blame] | 124 | struct lcd_device *ld = to_lcd_device(dev); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 125 | |
Richard Purdie | 599a52d | 2007-02-10 23:07:48 +0000 | [diff] [blame] | 126 | mutex_lock(&ld->ops_lock); |
| 127 | if (ld->ops && ld->ops->get_contrast) |
| 128 | rc = sprintf(buf, "%d\n", ld->ops->get_contrast(ld)); |
| 129 | mutex_unlock(&ld->ops_lock); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 130 | |
| 131 | return rc; |
| 132 | } |
| 133 | |
Richard Purdie | 655bfd7 | 2007-07-09 12:17:24 +0100 | [diff] [blame] | 134 | static ssize_t lcd_store_contrast(struct device *dev, |
| 135 | struct device_attribute *attr, const char *buf, size_t count) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 136 | { |
Richard Purdie | 68673af | 2006-05-15 09:44:15 -0700 | [diff] [blame] | 137 | int rc = -ENXIO; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 138 | char *endp; |
Richard Purdie | 655bfd7 | 2007-07-09 12:17:24 +0100 | [diff] [blame] | 139 | struct lcd_device *ld = to_lcd_device(dev); |
Richard Purdie | 68673af | 2006-05-15 09:44:15 -0700 | [diff] [blame] | 140 | int contrast = simple_strtoul(buf, &endp, 0); |
| 141 | size_t size = endp - buf; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 142 | |
André Goddard Rosa | e7d2860 | 2009-12-14 18:01:06 -0800 | [diff] [blame] | 143 | if (isspace(*endp)) |
Richard Purdie | 68673af | 2006-05-15 09:44:15 -0700 | [diff] [blame] | 144 | size++; |
| 145 | if (size != count) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 146 | return -EINVAL; |
| 147 | |
Richard Purdie | 599a52d | 2007-02-10 23:07:48 +0000 | [diff] [blame] | 148 | mutex_lock(&ld->ops_lock); |
| 149 | if (ld->ops && ld->ops->set_contrast) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 150 | pr_debug("lcd: set contrast to %d\n", contrast); |
Richard Purdie | 599a52d | 2007-02-10 23:07:48 +0000 | [diff] [blame] | 151 | ld->ops->set_contrast(ld, contrast); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 152 | rc = count; |
Richard Purdie | 68673af | 2006-05-15 09:44:15 -0700 | [diff] [blame] | 153 | } |
Richard Purdie | 599a52d | 2007-02-10 23:07:48 +0000 | [diff] [blame] | 154 | mutex_unlock(&ld->ops_lock); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 155 | |
| 156 | return rc; |
| 157 | } |
| 158 | |
Richard Purdie | 655bfd7 | 2007-07-09 12:17:24 +0100 | [diff] [blame] | 159 | static ssize_t lcd_show_max_contrast(struct device *dev, |
| 160 | struct device_attribute *attr, char *buf) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 161 | { |
Richard Purdie | 655bfd7 | 2007-07-09 12:17:24 +0100 | [diff] [blame] | 162 | struct lcd_device *ld = to_lcd_device(dev); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 163 | |
Richard Purdie | 599a52d | 2007-02-10 23:07:48 +0000 | [diff] [blame] | 164 | return sprintf(buf, "%d\n", ld->props.max_contrast); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 165 | } |
| 166 | |
Adrian Bunk | 0ad90ef | 2007-08-11 10:27:19 +0100 | [diff] [blame] | 167 | static struct class *lcd_class; |
Richard Purdie | 655bfd7 | 2007-07-09 12:17:24 +0100 | [diff] [blame] | 168 | |
| 169 | static void lcd_device_release(struct device *dev) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 170 | { |
| 171 | struct lcd_device *ld = to_lcd_device(dev); |
| 172 | kfree(ld); |
| 173 | } |
| 174 | |
Richard Purdie | 655bfd7 | 2007-07-09 12:17:24 +0100 | [diff] [blame] | 175 | static struct device_attribute lcd_device_attributes[] = { |
| 176 | __ATTR(lcd_power, 0644, lcd_show_power, lcd_store_power), |
| 177 | __ATTR(contrast, 0644, lcd_show_contrast, lcd_store_contrast), |
| 178 | __ATTR(max_contrast, 0444, lcd_show_max_contrast, NULL), |
| 179 | __ATTR_NULL, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 180 | }; |
| 181 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 182 | /** |
| 183 | * lcd_device_register - register a new object of lcd_device class. |
| 184 | * @name: the name of the new object(must be the same as the name of the |
| 185 | * respective framebuffer device). |
Richard Purdie | 655bfd7 | 2007-07-09 12:17:24 +0100 | [diff] [blame] | 186 | * @devdata: an optional pointer to be stored in the device. The |
| 187 | * methods may retrieve it by using lcd_get_data(ld). |
Richard Purdie | 599a52d | 2007-02-10 23:07:48 +0000 | [diff] [blame] | 188 | * @ops: the lcd operations structure. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 189 | * |
Richard Purdie | 655bfd7 | 2007-07-09 12:17:24 +0100 | [diff] [blame] | 190 | * Creates and registers a new lcd device. Returns either an ERR_PTR() |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 191 | * or a pointer to the newly allocated device. |
| 192 | */ |
Richard Purdie | 655bfd7 | 2007-07-09 12:17:24 +0100 | [diff] [blame] | 193 | struct lcd_device *lcd_device_register(const char *name, struct device *parent, |
| 194 | void *devdata, struct lcd_ops *ops) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 195 | { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 196 | struct lcd_device *new_ld; |
Richard Purdie | 655bfd7 | 2007-07-09 12:17:24 +0100 | [diff] [blame] | 197 | int rc; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 198 | |
| 199 | pr_debug("lcd_device_register: name=%s\n", name); |
| 200 | |
Richard Purdie | 599a52d | 2007-02-10 23:07:48 +0000 | [diff] [blame] | 201 | new_ld = kzalloc(sizeof(struct lcd_device), GFP_KERNEL); |
Dmitry Torokhov | 90968e8 | 2007-02-08 00:12:28 +0000 | [diff] [blame] | 202 | if (!new_ld) |
Jean Delvare | 10ad1b7 | 2006-03-09 17:33:36 -0800 | [diff] [blame] | 203 | return ERR_PTR(-ENOMEM); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 204 | |
Richard Purdie | 599a52d | 2007-02-10 23:07:48 +0000 | [diff] [blame] | 205 | mutex_init(&new_ld->ops_lock); |
Richard Purdie | 28ee086 | 2007-02-08 22:25:09 +0000 | [diff] [blame] | 206 | mutex_init(&new_ld->update_lock); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 207 | |
Richard Purdie | 655bfd7 | 2007-07-09 12:17:24 +0100 | [diff] [blame] | 208 | new_ld->dev.class = lcd_class; |
| 209 | new_ld->dev.parent = parent; |
| 210 | new_ld->dev.release = lcd_device_release; |
Kay Sievers | 64dba9a | 2009-01-06 10:44:35 -0800 | [diff] [blame] | 211 | dev_set_name(&new_ld->dev, name); |
Richard Purdie | 655bfd7 | 2007-07-09 12:17:24 +0100 | [diff] [blame] | 212 | dev_set_drvdata(&new_ld->dev, devdata); |
| 213 | |
| 214 | rc = device_register(&new_ld->dev); |
Dmitry Torokhov | 90968e8 | 2007-02-08 00:12:28 +0000 | [diff] [blame] | 215 | if (rc) { |
Dmitry Torokhov | 2fd5a15 | 2007-02-07 22:25:50 +0000 | [diff] [blame] | 216 | kfree(new_ld); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 217 | return ERR_PTR(rc); |
| 218 | } |
| 219 | |
James Simmons | 3d5eead | 2006-12-08 02:40:47 -0800 | [diff] [blame] | 220 | rc = lcd_register_fb(new_ld); |
Dmitry Torokhov | 2fd5a15 | 2007-02-07 22:25:50 +0000 | [diff] [blame] | 221 | if (rc) { |
Richard Purdie | 655bfd7 | 2007-07-09 12:17:24 +0100 | [diff] [blame] | 222 | device_unregister(&new_ld->dev); |
Dmitry Torokhov | 2fd5a15 | 2007-02-07 22:25:50 +0000 | [diff] [blame] | 223 | return ERR_PTR(rc); |
| 224 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 225 | |
Richard Purdie | 655bfd7 | 2007-07-09 12:17:24 +0100 | [diff] [blame] | 226 | new_ld->ops = ops; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 227 | |
| 228 | return new_ld; |
| 229 | } |
| 230 | EXPORT_SYMBOL(lcd_device_register); |
| 231 | |
| 232 | /** |
| 233 | * lcd_device_unregister - unregisters a object of lcd_device class. |
| 234 | * @ld: the lcd device object to be unregistered and freed. |
| 235 | * |
| 236 | * Unregisters a previously registered via lcd_device_register object. |
| 237 | */ |
| 238 | void lcd_device_unregister(struct lcd_device *ld) |
| 239 | { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 240 | if (!ld) |
| 241 | return; |
| 242 | |
Richard Purdie | 599a52d | 2007-02-10 23:07:48 +0000 | [diff] [blame] | 243 | mutex_lock(&ld->ops_lock); |
| 244 | ld->ops = NULL; |
| 245 | mutex_unlock(&ld->ops_lock); |
James Simmons | 3d5eead | 2006-12-08 02:40:47 -0800 | [diff] [blame] | 246 | lcd_unregister_fb(ld); |
Richard Purdie | 655bfd7 | 2007-07-09 12:17:24 +0100 | [diff] [blame] | 247 | |
| 248 | device_unregister(&ld->dev); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 249 | } |
| 250 | EXPORT_SYMBOL(lcd_device_unregister); |
| 251 | |
| 252 | static void __exit lcd_class_exit(void) |
| 253 | { |
Richard Purdie | 655bfd7 | 2007-07-09 12:17:24 +0100 | [diff] [blame] | 254 | class_destroy(lcd_class); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 255 | } |
| 256 | |
| 257 | static int __init lcd_class_init(void) |
| 258 | { |
Richard Purdie | 655bfd7 | 2007-07-09 12:17:24 +0100 | [diff] [blame] | 259 | lcd_class = class_create(THIS_MODULE, "lcd"); |
| 260 | if (IS_ERR(lcd_class)) { |
| 261 | printk(KERN_WARNING "Unable to create backlight class; errno = %ld\n", |
| 262 | PTR_ERR(lcd_class)); |
| 263 | return PTR_ERR(lcd_class); |
| 264 | } |
| 265 | |
| 266 | lcd_class->dev_attrs = lcd_device_attributes; |
| 267 | return 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 268 | } |
| 269 | |
| 270 | /* |
| 271 | * if this is compiled into the kernel, we need to ensure that the |
| 272 | * class is registered before users of the class try to register lcd's |
| 273 | */ |
| 274 | postcore_initcall(lcd_class_init); |
| 275 | module_exit(lcd_class_exit); |
| 276 | |
| 277 | MODULE_LICENSE("GPL"); |
| 278 | MODULE_AUTHOR("Jamey Hicks <jamey.hicks@hp.com>, Andrew Zabolotny <zap@homelink.ru>"); |
| 279 | MODULE_DESCRIPTION("LCD Lowlevel Control Abstraction"); |