]> Pileus Git - ~andy/linux/blob - drivers/misc/msi-laptop.c
backlight: Remove unneeded owner field
[~andy/linux] / drivers / misc / msi-laptop.c
1 /*-*-linux-c-*-*/
2
3 /*
4   Copyright (C) 2006 Lennart Poettering <mzxreary (at) 0pointer (dot) de>
5
6   This program is free software; you can redistribute it and/or modify
7   it under the terms of the GNU General Public License as published by
8   the Free Software Foundation; either version 2 of the License, or
9   (at your option) any later version.
10
11   This program is distributed in the hope that it will be useful, but
12   WITHOUT ANY WARRANTY; without even the implied warranty of
13   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
14   General Public License for more details.
15
16   You should have received a copy of the GNU General Public License
17   along with this program; if not, write to the Free Software
18   Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
19   02110-1301, USA.
20  */
21
22 /*
23  * msi-laptop.c - MSI S270 laptop support. This laptop is sold under
24  * various brands, including "Cytron/TCM/Medion/Tchibo MD96100".
25  *
26  * This driver exports a few files in /sys/devices/platform/msi-laptop-pf/:
27  *
28  *   lcd_level - Screen brightness: contains a single integer in the
29  *   range 0..8. (rw)
30  *
31  *   auto_brightness - Enable automatic brightness control: contains
32  *   either 0 or 1. If set to 1 the hardware adjusts the screen
33  *   brightness automatically when the power cord is
34  *   plugged/unplugged. (rw)
35  *
36  *   wlan - WLAN subsystem enabled: contains either 0 or 1. (ro)
37  *
38  *   bluetooth - Bluetooth subsystem enabled: contains either 0 or 1
39  *   Please note that this file is constantly 0 if no Bluetooth
40  *   hardware is available. (ro)
41  *
42  * In addition to these platform device attributes the driver
43  * registers itself in the Linux backlight control subsystem and is
44  * available to userspace under /sys/class/backlight/msi-laptop-bl/.
45  *
46  * This driver might work on other laptops produced by MSI. If you
47  * want to try it you can pass force=1 as argument to the module which
48  * will force it to load even when the DMI data doesn't identify the
49  * laptop as MSI S270. YMMV.
50  */
51
52 #include <linux/module.h>
53 #include <linux/kernel.h>
54 #include <linux/init.h>
55 #include <linux/acpi.h>
56 #include <linux/dmi.h>
57 #include <linux/backlight.h>
58 #include <linux/platform_device.h>
59 #include <linux/autoconf.h>
60
61 #define MSI_DRIVER_VERSION "0.5"
62
63 #define MSI_LCD_LEVEL_MAX 9
64
65 #define MSI_EC_COMMAND_WIRELESS 0x10
66 #define MSI_EC_COMMAND_LCD_LEVEL 0x11
67
68 static int force;
69 module_param(force, bool, 0);
70 MODULE_PARM_DESC(force, "Force driver load, ignore DMI data");
71
72 static int auto_brightness;
73 module_param(auto_brightness, int, 0);
74 MODULE_PARM_DESC(auto_brightness, "Enable automatic brightness control (0: disabled; 1: enabled; 2: don't touch)");
75
76 /* Hardware access */
77
78 static int set_lcd_level(int level)
79 {
80         u8 buf[2];
81
82         if (level < 0 || level >= MSI_LCD_LEVEL_MAX)
83                 return -EINVAL;
84
85         buf[0] = 0x80;
86         buf[1] = (u8) (level*31);
87
88         return ec_transaction(MSI_EC_COMMAND_LCD_LEVEL, buf, sizeof(buf), NULL, 0);
89 }
90
91 static int get_lcd_level(void)
92 {
93         u8 wdata = 0, rdata;
94         int result;
95
96         result = ec_transaction(MSI_EC_COMMAND_LCD_LEVEL, &wdata, 1, &rdata, 1);
97         if (result < 0)
98                 return result;
99
100         return (int) rdata / 31;
101 }
102
103 static int get_auto_brightness(void)
104 {
105         u8 wdata = 4, rdata;
106         int result;
107
108         result = ec_transaction(MSI_EC_COMMAND_LCD_LEVEL, &wdata, 1, &rdata, 1);
109         if (result < 0)
110                 return result;
111
112         return !!(rdata & 8);
113 }
114
115 static int set_auto_brightness(int enable)
116 {
117         u8 wdata[2], rdata;
118         int result;
119
120         wdata[0] = 4;
121
122         result = ec_transaction(MSI_EC_COMMAND_LCD_LEVEL, wdata, 1, &rdata, 1);
123         if (result < 0)
124                 return result;
125
126         wdata[0] = 0x84;
127         wdata[1] = (rdata & 0xF7) | (enable ? 8 : 0);
128
129         return ec_transaction(MSI_EC_COMMAND_LCD_LEVEL, wdata, 2, NULL, 0);
130 }
131
132 static int get_wireless_state(int *wlan, int *bluetooth)
133 {
134         u8 wdata = 0, rdata;
135         int result;
136
137         result = ec_transaction(MSI_EC_COMMAND_WIRELESS, &wdata, 1, &rdata, 1);
138         if (result < 0)
139                 return -1;
140
141         if (wlan)
142                 *wlan = !!(rdata & 8);
143
144         if (bluetooth)
145                 *bluetooth = !!(rdata & 128);
146
147         return 0;
148 }
149
150 /* Backlight device stuff */
151
152 static int bl_get_brightness(struct backlight_device *b)
153 {
154         return get_lcd_level();
155 }
156
157
158 static int bl_update_status(struct backlight_device *b)
159 {
160         return set_lcd_level(b->props->brightness);
161 }
162
163 static struct backlight_properties msibl_props = {
164         .get_brightness = bl_get_brightness,
165         .update_status  = bl_update_status,
166         .max_brightness = MSI_LCD_LEVEL_MAX-1,
167 };
168
169 static struct backlight_device *msibl_device;
170
171 /* Platform device */
172
173 static ssize_t show_wlan(struct device *dev,
174         struct device_attribute *attr, char *buf)
175 {
176
177         int ret, enabled;
178
179         ret = get_wireless_state(&enabled, NULL);
180         if (ret < 0)
181                 return ret;
182
183         return sprintf(buf, "%i\n", enabled);
184 }
185
186 static ssize_t show_bluetooth(struct device *dev,
187         struct device_attribute *attr, char *buf)
188 {
189
190         int ret, enabled;
191
192         ret = get_wireless_state(NULL, &enabled);
193         if (ret < 0)
194                 return ret;
195
196         return sprintf(buf, "%i\n", enabled);
197 }
198
199 static ssize_t show_lcd_level(struct device *dev,
200         struct device_attribute *attr, char *buf)
201 {
202
203         int ret;
204
205         ret = get_lcd_level();
206         if (ret < 0)
207                 return ret;
208
209         return sprintf(buf, "%i\n", ret);
210 }
211
212 static ssize_t store_lcd_level(struct device *dev,
213         struct device_attribute *attr, const char *buf, size_t count)
214 {
215
216         int level, ret;
217
218         if (sscanf(buf, "%i", &level) != 1 || (level < 0 || level >= MSI_LCD_LEVEL_MAX))
219                 return -EINVAL;
220
221         ret = set_lcd_level(level);
222         if (ret < 0)
223                 return ret;
224
225         return count;
226 }
227
228 static ssize_t show_auto_brightness(struct device *dev,
229         struct device_attribute *attr, char *buf)
230 {
231
232         int ret;
233
234         ret = get_auto_brightness();
235         if (ret < 0)
236                 return ret;
237
238         return sprintf(buf, "%i\n", ret);
239 }
240
241 static ssize_t store_auto_brightness(struct device *dev,
242         struct device_attribute *attr, const char *buf, size_t count)
243 {
244
245         int enable, ret;
246
247         if (sscanf(buf, "%i", &enable) != 1 || (enable != (enable & 1)))
248                 return -EINVAL;
249
250         ret = set_auto_brightness(enable);
251         if (ret < 0)
252                 return ret;
253
254         return count;
255 }
256
257 static DEVICE_ATTR(lcd_level, 0644, show_lcd_level, store_lcd_level);
258 static DEVICE_ATTR(auto_brightness, 0644, show_auto_brightness, store_auto_brightness);
259 static DEVICE_ATTR(bluetooth, 0444, show_bluetooth, NULL);
260 static DEVICE_ATTR(wlan, 0444, show_wlan, NULL);
261
262 static struct attribute *msipf_attributes[] = {
263         &dev_attr_lcd_level.attr,
264         &dev_attr_auto_brightness.attr,
265         &dev_attr_bluetooth.attr,
266         &dev_attr_wlan.attr,
267         NULL
268 };
269
270 static struct attribute_group msipf_attribute_group = {
271         .attrs = msipf_attributes
272 };
273
274 static struct platform_driver msipf_driver = {
275         .driver = {
276                 .name = "msi-laptop-pf",
277                 .owner = THIS_MODULE,
278         }
279 };
280
281 static struct platform_device *msipf_device;
282
283 /* Initialization */
284
285 static struct dmi_system_id __initdata msi_dmi_table[] = {
286         {
287                 .ident = "MSI S270",
288                 .matches = {
289                         DMI_MATCH(DMI_SYS_VENDOR, "MICRO-STAR INT'L CO.,LTD"),
290                         DMI_MATCH(DMI_PRODUCT_NAME, "MS-1013"),
291                 }
292         },
293         {
294                 .ident = "Medion MD96100",
295                 .matches = {
296                         DMI_MATCH(DMI_SYS_VENDOR, "NOTEBOOK"),
297                         DMI_MATCH(DMI_PRODUCT_NAME, "SAM2000"),
298                 }
299         },
300         { }
301 };
302
303
304 static int __init msi_init(void)
305 {
306         int ret;
307
308         if (acpi_disabled)
309                 return -ENODEV;
310
311         if (!force && !dmi_check_system(msi_dmi_table))
312                 return -ENODEV;
313
314         if (auto_brightness < 0 || auto_brightness > 2)
315                 return -EINVAL;
316
317         /* Register backlight stuff */
318
319         msibl_device = backlight_device_register("msi-laptop-bl", NULL, NULL,
320                                                 &msibl_props);
321         if (IS_ERR(msibl_device))
322                 return PTR_ERR(msibl_device);
323
324         ret = platform_driver_register(&msipf_driver);
325         if (ret)
326                 goto fail_backlight;
327
328         /* Register platform stuff */
329
330         msipf_device = platform_device_alloc("msi-laptop-pf", -1);
331         if (!msipf_device) {
332                 ret = -ENOMEM;
333                 goto fail_platform_driver;
334         }
335
336         ret = platform_device_add(msipf_device);
337         if (ret)
338                 goto fail_platform_device1;
339
340         ret = sysfs_create_group(&msipf_device->dev.kobj, &msipf_attribute_group);
341         if (ret)
342                 goto fail_platform_device2;
343
344         /* Disable automatic brightness control by default because
345          * this module was probably loaded to do brightness control in
346          * software. */
347
348         if (auto_brightness != 2)
349                 set_auto_brightness(auto_brightness);
350
351         printk(KERN_INFO "msi-laptop: driver "MSI_DRIVER_VERSION" successfully loaded.\n");
352
353         return 0;
354
355 fail_platform_device2:
356
357         platform_device_del(msipf_device);
358
359 fail_platform_device1:
360
361         platform_device_put(msipf_device);
362
363 fail_platform_driver:
364
365         platform_driver_unregister(&msipf_driver);
366
367 fail_backlight:
368
369         backlight_device_unregister(msibl_device);
370
371         return ret;
372 }
373
374 static void __exit msi_cleanup(void)
375 {
376
377         sysfs_remove_group(&msipf_device->dev.kobj, &msipf_attribute_group);
378         platform_device_unregister(msipf_device);
379         platform_driver_unregister(&msipf_driver);
380         backlight_device_unregister(msibl_device);
381
382         /* Enable automatic brightness control again */
383         if (auto_brightness != 2)
384                 set_auto_brightness(1);
385
386         printk(KERN_INFO "msi-laptop: driver unloaded.\n");
387 }
388
389 module_init(msi_init);
390 module_exit(msi_cleanup);
391
392 MODULE_AUTHOR("Lennart Poettering");
393 MODULE_DESCRIPTION("MSI Laptop Support");
394 MODULE_VERSION(MSI_DRIVER_VERSION);
395 MODULE_LICENSE("GPL");