blob: c78d254303bc5d29d05d890a9ea753bf5cfa809e [file] [log] [blame]
Cezary Jackiewicz54115522008-06-09 16:22:22 -07001/*-*-linux-c-*-*/
2
3/*
4 Copyright (C) 2008 Cezary Jackiewicz <cezary.jackiewicz (at) gmail.com>
5
6 based on MSI driver
7
8 Copyright (C) 2006 Lennart Poettering <mzxreary (at) 0pointer (dot) de>
9
10 This program is free software; you can redistribute it and/or modify
11 it under the terms of the GNU General Public License as published by
12 the Free Software Foundation; either version 2 of the License, or
13 (at your option) any later version.
14
15 This program is distributed in the hope that it will be useful, but
16 WITHOUT ANY WARRANTY; without even the implied warranty of
17 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
18 General Public License for more details.
19
20 You should have received a copy of the GNU General Public License
21 along with this program; if not, write to the Free Software
22 Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
23 02110-1301, USA.
24 */
25
26/*
27 * comapl-laptop.c - Compal laptop support.
28 *
29 * This driver exports a few files in /sys/devices/platform/compal-laptop/:
30 *
Cezary Jackiewicz54115522008-06-09 16:22:22 -070031 * wlan - wlan subsystem state: contains 0 or 1 (rw)
32 *
33 * bluetooth - Bluetooth subsystem state: contains 0 or 1 (rw)
34 *
35 * raw - raw value taken from embedded controller register (ro)
36 *
37 * In addition to these platform device attributes the driver
38 * registers itself in the Linux backlight control subsystem and is
39 * available to userspace under /sys/class/backlight/compal-laptop/.
40 *
41 * This driver might work on other laptops produced by Compal. If you
42 * want to try it you can pass force=1 as argument to the module which
43 * will force it to load even when the DMI data doesn't identify the
Cezary Jackiewicz87dc5e32008-06-12 22:08:59 +020044 * laptop as FL9x.
Cezary Jackiewicz54115522008-06-09 16:22:22 -070045 */
46
47#include <linux/module.h>
48#include <linux/kernel.h>
49#include <linux/init.h>
50#include <linux/acpi.h>
51#include <linux/dmi.h>
52#include <linux/backlight.h>
53#include <linux/platform_device.h>
Cezary Jackiewicz54115522008-06-09 16:22:22 -070054
Cezary Jackiewicz87dc5e32008-06-12 22:08:59 +020055#define COMPAL_DRIVER_VERSION "0.2.6"
Cezary Jackiewicz54115522008-06-09 16:22:22 -070056
57#define COMPAL_LCD_LEVEL_MAX 8
58
59#define COMPAL_EC_COMMAND_WIRELESS 0xBB
60#define COMPAL_EC_COMMAND_LCD_LEVEL 0xB9
61
62#define KILLSWITCH_MASK 0x10
63#define WLAN_MASK 0x01
64#define BT_MASK 0x02
65
66static int force;
67module_param(force, bool, 0);
68MODULE_PARM_DESC(force, "Force driver load, ignore DMI data");
69
70/* Hardware access */
71
72static int set_lcd_level(int level)
73{
74 if (level < 0 || level >= COMPAL_LCD_LEVEL_MAX)
75 return -EINVAL;
76
77 ec_write(COMPAL_EC_COMMAND_LCD_LEVEL, level);
78
79 return 0;
80}
81
82static int get_lcd_level(void)
83{
84 u8 result;
85
86 ec_read(COMPAL_EC_COMMAND_LCD_LEVEL, &result);
87
88 return (int) result;
89}
90
91static int set_wlan_state(int state)
92{
93 u8 result, value;
94
95 ec_read(COMPAL_EC_COMMAND_WIRELESS, &result);
96
97 if ((result & KILLSWITCH_MASK) == 0)
98 return -EINVAL;
99 else {
100 if (state)
101 value = (u8) (result | WLAN_MASK);
102 else
103 value = (u8) (result & ~WLAN_MASK);
104 ec_write(COMPAL_EC_COMMAND_WIRELESS, value);
105 }
106
107 return 0;
108}
109
110static int set_bluetooth_state(int state)
111{
112 u8 result, value;
113
114 ec_read(COMPAL_EC_COMMAND_WIRELESS, &result);
115
116 if ((result & KILLSWITCH_MASK) == 0)
117 return -EINVAL;
118 else {
119 if (state)
120 value = (u8) (result | BT_MASK);
121 else
122 value = (u8) (result & ~BT_MASK);
123 ec_write(COMPAL_EC_COMMAND_WIRELESS, value);
124 }
125
126 return 0;
127}
128
129static int get_wireless_state(int *wlan, int *bluetooth)
130{
131 u8 result;
132
133 ec_read(COMPAL_EC_COMMAND_WIRELESS, &result);
134
135 if (wlan) {
136 if ((result & KILLSWITCH_MASK) == 0)
137 *wlan = 0;
138 else
139 *wlan = result & WLAN_MASK;
140 }
141
142 if (bluetooth) {
143 if ((result & KILLSWITCH_MASK) == 0)
144 *bluetooth = 0;
145 else
146 *bluetooth = (result & BT_MASK) >> 1;
147 }
148
149 return 0;
150}
151
152/* Backlight device stuff */
153
154static int bl_get_brightness(struct backlight_device *b)
155{
156 return get_lcd_level();
157}
158
159
160static int bl_update_status(struct backlight_device *b)
161{
162 return set_lcd_level(b->props.brightness);
163}
164
165static struct backlight_ops compalbl_ops = {
166 .get_brightness = bl_get_brightness,
167 .update_status = bl_update_status,
168};
169
170static struct backlight_device *compalbl_device;
171
172/* Platform device */
173
174static ssize_t show_wlan(struct device *dev,
175 struct device_attribute *attr, char *buf)
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
186static ssize_t show_raw(struct device *dev,
187 struct device_attribute *attr, char *buf)
188{
189 u8 result;
190
191 ec_read(COMPAL_EC_COMMAND_WIRELESS, &result);
192
193 return sprintf(buf, "%i\n", result);
194}
195
196static ssize_t show_bluetooth(struct device *dev,
197 struct device_attribute *attr, char *buf)
198{
199 int ret, enabled;
200
201 ret = get_wireless_state(NULL, &enabled);
202 if (ret < 0)
203 return ret;
204
205 return sprintf(buf, "%i\n", enabled);
206}
207
Cezary Jackiewicz54115522008-06-09 16:22:22 -0700208static ssize_t store_wlan_state(struct device *dev,
209 struct device_attribute *attr, const char *buf, size_t count)
210{
211 int state, ret;
212
213 if (sscanf(buf, "%i", &state) != 1 || (state < 0 || state > 1))
214 return -EINVAL;
215
216 ret = set_wlan_state(state);
217 if (ret < 0)
218 return ret;
219
220 return count;
221}
222
223static ssize_t store_bluetooth_state(struct device *dev,
224 struct device_attribute *attr, const char *buf, size_t count)
225{
226 int state, ret;
227
228 if (sscanf(buf, "%i", &state) != 1 || (state < 0 || state > 1))
229 return -EINVAL;
230
231 ret = set_bluetooth_state(state);
232 if (ret < 0)
233 return ret;
234
235 return count;
236}
237
Cezary Jackiewicz54115522008-06-09 16:22:22 -0700238static DEVICE_ATTR(bluetooth, 0644, show_bluetooth, store_bluetooth_state);
239static DEVICE_ATTR(wlan, 0644, show_wlan, store_wlan_state);
240static DEVICE_ATTR(raw, 0444, show_raw, NULL);
241
242static struct attribute *compal_attributes[] = {
Cezary Jackiewicz54115522008-06-09 16:22:22 -0700243 &dev_attr_bluetooth.attr,
244 &dev_attr_wlan.attr,
245 &dev_attr_raw.attr,
246 NULL
247};
248
249static struct attribute_group compal_attribute_group = {
250 .attrs = compal_attributes
251};
252
253static struct platform_driver compal_driver = {
254 .driver = {
255 .name = "compal-laptop",
256 .owner = THIS_MODULE,
257 }
258};
259
260static struct platform_device *compal_device;
261
262/* Initialization */
263
264static int dmi_check_cb(const struct dmi_system_id *id)
265{
266 printk(KERN_INFO "compal-laptop: Identified laptop model '%s'.\n",
267 id->ident);
268
269 return 0;
270}
271
272static struct dmi_system_id __initdata compal_dmi_table[] = {
273 {
274 .ident = "FL90/IFL90",
275 .matches = {
276 DMI_MATCH(DMI_BOARD_NAME, "IFL90"),
277 DMI_MATCH(DMI_BOARD_VERSION, "IFT00"),
278 },
279 .callback = dmi_check_cb
280 },
281 {
282 .ident = "FL90/IFL90",
283 .matches = {
284 DMI_MATCH(DMI_BOARD_NAME, "IFL90"),
285 DMI_MATCH(DMI_BOARD_VERSION, "REFERENCE"),
286 },
287 .callback = dmi_check_cb
288 },
289 {
290 .ident = "FL91/IFL91",
291 .matches = {
292 DMI_MATCH(DMI_BOARD_NAME, "IFL91"),
293 DMI_MATCH(DMI_BOARD_VERSION, "IFT00"),
294 },
295 .callback = dmi_check_cb
296 },
297 {
298 .ident = "FL92/JFL92",
299 .matches = {
300 DMI_MATCH(DMI_BOARD_NAME, "JFL92"),
301 DMI_MATCH(DMI_BOARD_VERSION, "IFT00"),
302 },
303 .callback = dmi_check_cb
304 },
305 {
306 .ident = "FT00/IFT00",
307 .matches = {
308 DMI_MATCH(DMI_BOARD_NAME, "IFT00"),
309 DMI_MATCH(DMI_BOARD_VERSION, "IFT00"),
310 },
311 .callback = dmi_check_cb
312 },
Mario Limonciello34325b92009-08-24 16:00:47 -0500313 {
314 .ident = "Dell Mini 9",
315 .matches = {
316 DMI_MATCH(DMI_SYS_VENDOR, "Dell Inc."),
317 DMI_MATCH(DMI_PRODUCT_NAME, "Inspiron 910"),
318 },
319 .callback = dmi_check_cb
320 },
321 {
322 .ident = "Dell Mini 10",
323 .matches = {
324 DMI_MATCH(DMI_SYS_VENDOR, "Dell Inc."),
325 DMI_MATCH(DMI_PRODUCT_NAME, "Inspiron 1010"),
326 },
327 .callback = dmi_check_cb
328 },
329 {
330 .ident = "Dell Mini 10v",
331 .matches = {
332 DMI_MATCH(DMI_SYS_VENDOR, "Dell Inc."),
333 DMI_MATCH(DMI_PRODUCT_NAME, "Inspiron 1011"),
334 },
335 .callback = dmi_check_cb
336 },
337 {
338 .ident = "Dell Inspiron 11z",
339 .matches = {
340 DMI_MATCH(DMI_SYS_VENDOR, "Dell Inc."),
341 DMI_MATCH(DMI_PRODUCT_NAME, "Inspiron 1110"),
342 },
343 .callback = dmi_check_cb
344 },
345 {
346 .ident = "Dell Mini 12",
347 .matches = {
348 DMI_MATCH(DMI_SYS_VENDOR, "Dell Inc."),
349 DMI_MATCH(DMI_PRODUCT_NAME, "Inspiron 1210"),
350 },
351 .callback = dmi_check_cb
352 },
353
Cezary Jackiewicz54115522008-06-09 16:22:22 -0700354 { }
355};
356
357static int __init compal_init(void)
358{
359 int ret;
360
361 if (acpi_disabled)
362 return -ENODEV;
363
364 if (!force && !dmi_check_system(compal_dmi_table))
365 return -ENODEV;
366
367 /* Register backlight stuff */
368
Thomas Renninger29454f12008-08-01 17:37:58 +0200369 if (!acpi_video_backlight_support()) {
370 compalbl_device = backlight_device_register("compal-laptop", NULL, NULL,
371 &compalbl_ops);
372 if (IS_ERR(compalbl_device))
373 return PTR_ERR(compalbl_device);
Cezary Jackiewicz54115522008-06-09 16:22:22 -0700374
Thomas Renninger29454f12008-08-01 17:37:58 +0200375 compalbl_device->props.max_brightness = COMPAL_LCD_LEVEL_MAX-1;
376 }
Cezary Jackiewicz54115522008-06-09 16:22:22 -0700377
378 ret = platform_driver_register(&compal_driver);
379 if (ret)
380 goto fail_backlight;
381
382 /* Register platform stuff */
383
384 compal_device = platform_device_alloc("compal-laptop", -1);
385 if (!compal_device) {
386 ret = -ENOMEM;
387 goto fail_platform_driver;
388 }
389
390 ret = platform_device_add(compal_device);
391 if (ret)
392 goto fail_platform_device1;
393
394 ret = sysfs_create_group(&compal_device->dev.kobj,
395 &compal_attribute_group);
396 if (ret)
397 goto fail_platform_device2;
398
399 printk(KERN_INFO "compal-laptop: driver "COMPAL_DRIVER_VERSION
400 " successfully loaded.\n");
401
402 return 0;
403
404fail_platform_device2:
405
406 platform_device_del(compal_device);
407
408fail_platform_device1:
409
410 platform_device_put(compal_device);
411
412fail_platform_driver:
413
414 platform_driver_unregister(&compal_driver);
415
416fail_backlight:
417
418 backlight_device_unregister(compalbl_device);
419
420 return ret;
421}
422
423static void __exit compal_cleanup(void)
424{
425
426 sysfs_remove_group(&compal_device->dev.kobj, &compal_attribute_group);
427 platform_device_unregister(compal_device);
428 platform_driver_unregister(&compal_driver);
429 backlight_device_unregister(compalbl_device);
430
431 printk(KERN_INFO "compal-laptop: driver unloaded.\n");
432}
433
434module_init(compal_init);
435module_exit(compal_cleanup);
436
437MODULE_AUTHOR("Cezary Jackiewicz");
438MODULE_DESCRIPTION("Compal Laptop Support");
439MODULE_VERSION(COMPAL_DRIVER_VERSION);
440MODULE_LICENSE("GPL");
441
442MODULE_ALIAS("dmi:*:rnIFL90:rvrIFT00:*");
443MODULE_ALIAS("dmi:*:rnIFL90:rvrREFERENCE:*");
444MODULE_ALIAS("dmi:*:rnIFL91:rvrIFT00:*");
445MODULE_ALIAS("dmi:*:rnJFL92:rvrIFT00:*");
446MODULE_ALIAS("dmi:*:rnIFT00:rvrIFT00:*");
Mario Limonciello34325b92009-08-24 16:00:47 -0500447MODULE_ALIAS("dmi:*:svnDellInc.:pnInspiron910:*");
448MODULE_ALIAS("dmi:*:svnDellInc.:pnInspiron1010:*");
449MODULE_ALIAS("dmi:*:svnDellInc.:pnInspiron1011:*");
450MODULE_ALIAS("dmi:*:svnDellInc.:pnInspiron1110:*");
451MODULE_ALIAS("dmi:*:svnDellInc.:pnInspiron1210:*");