blob: 085987730aabbe6ac6e15f588ad11b04ce311e39 [file] [log] [blame]
Lennart Poettering8c4c7312006-10-06 01:27:02 -04001/*-*-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 *
Lennart Poettering4f5c7912007-05-08 22:07:02 +020026 * Driver also supports S271, S420 models.
27 *
Lennart Poettering8c4c7312006-10-06 01:27:02 -040028 * This driver exports a few files in /sys/devices/platform/msi-laptop-pf/:
29 *
30 * lcd_level - Screen brightness: contains a single integer in the
31 * range 0..8. (rw)
32 *
33 * auto_brightness - Enable automatic brightness control: contains
34 * either 0 or 1. If set to 1 the hardware adjusts the screen
35 * brightness automatically when the power cord is
36 * plugged/unplugged. (rw)
37 *
38 * wlan - WLAN subsystem enabled: contains either 0 or 1. (ro)
39 *
40 * bluetooth - Bluetooth subsystem enabled: contains either 0 or 1
41 * Please note that this file is constantly 0 if no Bluetooth
42 * hardware is available. (ro)
43 *
44 * In addition to these platform device attributes the driver
45 * registers itself in the Linux backlight control subsystem and is
46 * available to userspace under /sys/class/backlight/msi-laptop-bl/.
47 *
48 * This driver might work on other laptops produced by MSI. If you
49 * want to try it you can pass force=1 as argument to the module which
50 * will force it to load even when the DMI data doesn't identify the
51 * laptop as MSI S270. YMMV.
52 */
53
Joey Leebbe24fe2011-03-16 01:55:19 -060054#define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
55
Lennart Poettering8c4c7312006-10-06 01:27:02 -040056#include <linux/module.h>
57#include <linux/kernel.h>
58#include <linux/init.h>
59#include <linux/acpi.h>
60#include <linux/dmi.h>
61#include <linux/backlight.h>
62#include <linux/platform_device.h>
Lee, Chun-Yi472ea122010-01-22 00:15:59 +080063#include <linux/rfkill.h>
Lee, Chun-Yi339e7532010-05-12 09:58:10 -070064#include <linux/i8042.h>
Lee, Chun-Yi143a4c02011-03-07 15:46:28 +080065#include <linux/input.h>
66#include <linux/input/sparse-keymap.h>
Lennart Poettering8c4c7312006-10-06 01:27:02 -040067
68#define MSI_DRIVER_VERSION "0.5"
69
70#define MSI_LCD_LEVEL_MAX 9
71
72#define MSI_EC_COMMAND_WIRELESS 0x10
73#define MSI_EC_COMMAND_LCD_LEVEL 0x11
74
Lee, Chun-Yi46d0e9e2010-01-09 21:16:52 +080075#define MSI_STANDARD_EC_COMMAND_ADDRESS 0x2e
76#define MSI_STANDARD_EC_BLUETOOTH_MASK (1 << 0)
77#define MSI_STANDARD_EC_WEBCAM_MASK (1 << 1)
78#define MSI_STANDARD_EC_WLAN_MASK (1 << 3)
Lee, Chun-Yifc0dc4c2010-01-09 23:17:07 +080079#define MSI_STANDARD_EC_3G_MASK (1 << 4)
Lee, Chun-Yi46d0e9e2010-01-09 21:16:52 +080080
Lee, Chun-Yi472ea122010-01-22 00:15:59 +080081/* For set SCM load flag to disable BIOS fn key */
82#define MSI_STANDARD_EC_SCM_LOAD_ADDRESS 0x2d
83#define MSI_STANDARD_EC_SCM_LOAD_MASK (1 << 0)
84
Maxim Mikityanskiy0de65752012-12-15 19:31:28 +020085#define MSI_STANDARD_EC_FUNCTIONS_ADDRESS 0xe4
86/* Power LED is orange - Turbo mode */
87#define MSI_STANDARD_EC_TURBO_MASK (1 << 1)
88/* Power LED is green - ECO mode */
89#define MSI_STANDARD_EC_ECO_MASK (1 << 3)
90/* Touchpad is turned on */
Lee, Chun-Yi143a4c02011-03-07 15:46:28 +080091#define MSI_STANDARD_EC_TOUCHPAD_MASK (1 << 4)
Maxim Mikityanskiy0de65752012-12-15 19:31:28 +020092/* If this bit != bit 1, turbo mode can't be toggled */
93#define MSI_STANDARD_EC_TURBO_COOLDOWN_MASK (1 << 7)
94
95#define MSI_STANDARD_EC_FAN_ADDRESS 0x33
96/* If zero, fan rotates at maximal speed */
97#define MSI_STANDARD_EC_AUTOFAN_MASK (1 << 0)
Lee, Chun-Yi143a4c02011-03-07 15:46:28 +080098
Rafael J. Wysocki3567a4e2012-08-09 23:00:13 +020099#ifdef CONFIG_PM_SLEEP
Rafael J. Wysocki90331322012-07-06 19:06:19 +0200100static int msi_laptop_resume(struct device *device);
Rafael J. Wysocki3567a4e2012-08-09 23:00:13 +0200101#endif
Rafael J. Wysocki90331322012-07-06 19:06:19 +0200102static SIMPLE_DEV_PM_OPS(msi_laptop_pm, NULL, msi_laptop_resume);
Lee, Chun-Yiec766272010-01-27 00:13:45 +0800103
Lee, Chun-Yie22388e2010-01-27 12:23:00 +0800104#define MSI_STANDARD_EC_DEVICES_EXISTS_ADDRESS 0x2f
105
Rusty Russell90ab5ee2012-01-13 09:32:20 +1030106static bool force;
Lennart Poettering8c4c7312006-10-06 01:27:02 -0400107module_param(force, bool, 0);
108MODULE_PARM_DESC(force, "Force driver load, ignore DMI data");
109
110static int auto_brightness;
111module_param(auto_brightness, int, 0);
112MODULE_PARM_DESC(auto_brightness, "Enable automatic brightness control (0: disabled; 1: enabled; 2: don't touch)");
113
Lee, Chun-Yi143a4c02011-03-07 15:46:28 +0800114static const struct key_entry msi_laptop_keymap[] = {
115 {KE_KEY, KEY_TOUCHPAD_ON, {KEY_TOUCHPAD_ON} }, /* Touch Pad On */
116 {KE_KEY, KEY_TOUCHPAD_OFF, {KEY_TOUCHPAD_OFF} },/* Touch Pad On */
117 {KE_END, 0}
118};
119
120static struct input_dev *msi_laptop_input_dev;
121
Lee, Chun-Yifc0dc4c2010-01-09 23:17:07 +0800122static int wlan_s, bluetooth_s, threeg_s;
Lee, Chun-Yie22388e2010-01-27 12:23:00 +0800123static int threeg_exists;
Lee, Chun-Yi472ea122010-01-22 00:15:59 +0800124static struct rfkill *rfk_wlan, *rfk_bluetooth, *rfk_threeg;
125
Lee, Chun-Yi08163922012-12-15 19:31:27 +0200126/* MSI laptop quirks */
127struct quirk_entry {
128 bool old_ec_model;
129
130 /* Some MSI 3G netbook only have one fn key to control
131 * Wlan/Bluetooth/3G, those netbook will load the SCM (windows app) to
132 * disable the original Wlan/Bluetooth control by BIOS when user press
133 * fn key, then control Wlan/Bluetooth/3G by SCM (software control by
134 * OS). Without SCM, user cann't on/off 3G module on those 3G netbook.
135 * On Linux, msi-laptop driver will do the same thing to disable the
136 * original BIOS control, then might need use HAL or other userland
137 * application to do the software control that simulate with SCM.
138 * e.g. MSI N034 netbook
139 */
140 bool load_scm_model;
141
142 /* Some MSI laptops need delay before reading from EC */
143 bool ec_delay;
144
145 /* Some MSI Wind netbooks (e.g. MSI Wind U100) need loading SCM to get
146 * some features working (e.g. ECO mode), but we cannot change
147 * Wlan/Bluetooth state in software and we can only read its state.
148 */
149 bool ec_read_only;
150};
151
152static struct quirk_entry *quirks;
153
Lennart Poettering8c4c7312006-10-06 01:27:02 -0400154/* Hardware access */
155
156static int set_lcd_level(int level)
157{
158 u8 buf[2];
159
160 if (level < 0 || level >= MSI_LCD_LEVEL_MAX)
161 return -EINVAL;
162
163 buf[0] = 0x80;
164 buf[1] = (u8) (level*31);
165
Greg Kroah-Hartman1ac34072010-05-12 12:03:00 -0700166 return ec_transaction(MSI_EC_COMMAND_LCD_LEVEL, buf, sizeof(buf),
Thomas Renninger1cb7b1e2011-03-31 13:36:38 +0200167 NULL, 0);
Lennart Poettering8c4c7312006-10-06 01:27:02 -0400168}
169
170static int get_lcd_level(void)
171{
172 u8 wdata = 0, rdata;
173 int result;
174
Greg Kroah-Hartman1ac34072010-05-12 12:03:00 -0700175 result = ec_transaction(MSI_EC_COMMAND_LCD_LEVEL, &wdata, 1,
Thomas Renninger1cb7b1e2011-03-31 13:36:38 +0200176 &rdata, 1);
Lennart Poettering8c4c7312006-10-06 01:27:02 -0400177 if (result < 0)
178 return result;
179
180 return (int) rdata / 31;
181}
182
183static int get_auto_brightness(void)
184{
185 u8 wdata = 4, rdata;
186 int result;
187
Greg Kroah-Hartman1ac34072010-05-12 12:03:00 -0700188 result = ec_transaction(MSI_EC_COMMAND_LCD_LEVEL, &wdata, 1,
Thomas Renninger1cb7b1e2011-03-31 13:36:38 +0200189 &rdata, 1);
Lennart Poettering8c4c7312006-10-06 01:27:02 -0400190 if (result < 0)
191 return result;
192
193 return !!(rdata & 8);
194}
195
196static int set_auto_brightness(int enable)
197{
198 u8 wdata[2], rdata;
199 int result;
200
201 wdata[0] = 4;
202
Greg Kroah-Hartman1ac34072010-05-12 12:03:00 -0700203 result = ec_transaction(MSI_EC_COMMAND_LCD_LEVEL, wdata, 1,
Thomas Renninger1cb7b1e2011-03-31 13:36:38 +0200204 &rdata, 1);
Lennart Poettering8c4c7312006-10-06 01:27:02 -0400205 if (result < 0)
206 return result;
207
208 wdata[0] = 0x84;
209 wdata[1] = (rdata & 0xF7) | (enable ? 8 : 0);
210
Greg Kroah-Hartman1ac34072010-05-12 12:03:00 -0700211 return ec_transaction(MSI_EC_COMMAND_LCD_LEVEL, wdata, 2,
Thomas Renninger1cb7b1e2011-03-31 13:36:38 +0200212 NULL, 0);
Lennart Poettering8c4c7312006-10-06 01:27:02 -0400213}
214
Lee, Chun-Yi472ea122010-01-22 00:15:59 +0800215static ssize_t set_device_state(const char *buf, size_t count, u8 mask)
216{
217 int status;
218 u8 wdata = 0, rdata;
219 int result;
220
221 if (sscanf(buf, "%i", &status) != 1 || (status < 0 || status > 1))
222 return -EINVAL;
223
Lee, Chun-Yi08163922012-12-15 19:31:27 +0200224 if (quirks->ec_read_only)
225 return -EOPNOTSUPP;
226
Lee, Chun-Yi472ea122010-01-22 00:15:59 +0800227 /* read current device state */
228 result = ec_read(MSI_STANDARD_EC_COMMAND_ADDRESS, &rdata);
229 if (result < 0)
Maxim Mikityanskiy27eb9e72012-12-15 19:31:25 +0200230 return result;
Lee, Chun-Yi472ea122010-01-22 00:15:59 +0800231
232 if (!!(rdata & mask) != status) {
233 /* reverse device bit */
234 if (rdata & mask)
235 wdata = rdata & ~mask;
236 else
237 wdata = rdata | mask;
238
239 result = ec_write(MSI_STANDARD_EC_COMMAND_ADDRESS, wdata);
240 if (result < 0)
Maxim Mikityanskiy27eb9e72012-12-15 19:31:25 +0200241 return result;
Lee, Chun-Yi472ea122010-01-22 00:15:59 +0800242 }
243
244 return count;
245}
246
Lennart Poettering8c4c7312006-10-06 01:27:02 -0400247static int get_wireless_state(int *wlan, int *bluetooth)
248{
249 u8 wdata = 0, rdata;
250 int result;
251
Thomas Renninger1cb7b1e2011-03-31 13:36:38 +0200252 result = ec_transaction(MSI_EC_COMMAND_WIRELESS, &wdata, 1, &rdata, 1);
Lennart Poettering8c4c7312006-10-06 01:27:02 -0400253 if (result < 0)
Maxim Mikityanskiy27eb9e72012-12-15 19:31:25 +0200254 return result;
Lennart Poettering8c4c7312006-10-06 01:27:02 -0400255
256 if (wlan)
257 *wlan = !!(rdata & 8);
258
259 if (bluetooth)
260 *bluetooth = !!(rdata & 128);
261
262 return 0;
263}
264
Lee, Chun-Yi46d0e9e2010-01-09 21:16:52 +0800265static int get_wireless_state_ec_standard(void)
266{
267 u8 rdata;
268 int result;
269
270 result = ec_read(MSI_STANDARD_EC_COMMAND_ADDRESS, &rdata);
271 if (result < 0)
Maxim Mikityanskiy27eb9e72012-12-15 19:31:25 +0200272 return result;
Lee, Chun-Yi46d0e9e2010-01-09 21:16:52 +0800273
274 wlan_s = !!(rdata & MSI_STANDARD_EC_WLAN_MASK);
275
276 bluetooth_s = !!(rdata & MSI_STANDARD_EC_BLUETOOTH_MASK);
277
Lee, Chun-Yifc0dc4c2010-01-09 23:17:07 +0800278 threeg_s = !!(rdata & MSI_STANDARD_EC_3G_MASK);
279
Lee, Chun-Yi46d0e9e2010-01-09 21:16:52 +0800280 return 0;
281}
282
Lee, Chun-Yie22388e2010-01-27 12:23:00 +0800283static int get_threeg_exists(void)
284{
285 u8 rdata;
286 int result;
287
288 result = ec_read(MSI_STANDARD_EC_DEVICES_EXISTS_ADDRESS, &rdata);
289 if (result < 0)
Maxim Mikityanskiy27eb9e72012-12-15 19:31:25 +0200290 return result;
Lee, Chun-Yie22388e2010-01-27 12:23:00 +0800291
292 threeg_exists = !!(rdata & MSI_STANDARD_EC_3G_MASK);
293
294 return 0;
295}
296
Lennart Poettering8c4c7312006-10-06 01:27:02 -0400297/* Backlight device stuff */
298
299static int bl_get_brightness(struct backlight_device *b)
300{
301 return get_lcd_level();
302}
303
304
305static int bl_update_status(struct backlight_device *b)
306{
Richard Purdie599a52d2007-02-10 23:07:48 +0000307 return set_lcd_level(b->props.brightness);
Lennart Poettering8c4c7312006-10-06 01:27:02 -0400308}
309
Greg Kroah-Hartman1ac34072010-05-12 12:03:00 -0700310static const struct backlight_ops msibl_ops = {
Lennart Poettering8c4c7312006-10-06 01:27:02 -0400311 .get_brightness = bl_get_brightness,
312 .update_status = bl_update_status,
Lennart Poettering8c4c7312006-10-06 01:27:02 -0400313};
314
315static struct backlight_device *msibl_device;
316
317/* Platform device */
318
319static ssize_t show_wlan(struct device *dev,
320 struct device_attribute *attr, char *buf)
321{
322
Maxim Mikityanskiy1b6517a2012-12-15 19:31:26 +0200323 int ret, enabled = 0;
Lennart Poettering8c4c7312006-10-06 01:27:02 -0400324
Lee, Chun-Yi08163922012-12-15 19:31:27 +0200325 if (quirks->old_ec_model) {
Lee, Chun-Yi46d0e9e2010-01-09 21:16:52 +0800326 ret = get_wireless_state(&enabled, NULL);
327 } else {
328 ret = get_wireless_state_ec_standard();
329 enabled = wlan_s;
330 }
Lennart Poettering8c4c7312006-10-06 01:27:02 -0400331 if (ret < 0)
332 return ret;
333
334 return sprintf(buf, "%i\n", enabled);
335}
336
Lee, Chun-Yi472ea122010-01-22 00:15:59 +0800337static ssize_t store_wlan(struct device *dev,
338 struct device_attribute *attr, const char *buf, size_t count)
339{
340 return set_device_state(buf, count, MSI_STANDARD_EC_WLAN_MASK);
341}
342
Lennart Poettering8c4c7312006-10-06 01:27:02 -0400343static ssize_t show_bluetooth(struct device *dev,
344 struct device_attribute *attr, char *buf)
345{
346
Maxim Mikityanskiy1b6517a2012-12-15 19:31:26 +0200347 int ret, enabled = 0;
Lennart Poettering8c4c7312006-10-06 01:27:02 -0400348
Lee, Chun-Yi08163922012-12-15 19:31:27 +0200349 if (quirks->old_ec_model) {
Lee, Chun-Yi46d0e9e2010-01-09 21:16:52 +0800350 ret = get_wireless_state(NULL, &enabled);
351 } else {
352 ret = get_wireless_state_ec_standard();
353 enabled = bluetooth_s;
354 }
Lennart Poettering8c4c7312006-10-06 01:27:02 -0400355 if (ret < 0)
356 return ret;
357
358 return sprintf(buf, "%i\n", enabled);
359}
360
Lee, Chun-Yi472ea122010-01-22 00:15:59 +0800361static ssize_t store_bluetooth(struct device *dev,
362 struct device_attribute *attr, const char *buf, size_t count)
363{
364 return set_device_state(buf, count, MSI_STANDARD_EC_BLUETOOTH_MASK);
365}
366
Lee, Chun-Yifc0dc4c2010-01-09 23:17:07 +0800367static ssize_t show_threeg(struct device *dev,
368 struct device_attribute *attr, char *buf)
369{
370
371 int ret;
372
373 /* old msi ec not support 3G */
Lee, Chun-Yi08163922012-12-15 19:31:27 +0200374 if (quirks->old_ec_model)
Maxim Mikityanskiy27eb9e72012-12-15 19:31:25 +0200375 return -ENODEV;
Lee, Chun-Yifc0dc4c2010-01-09 23:17:07 +0800376
377 ret = get_wireless_state_ec_standard();
378 if (ret < 0)
379 return ret;
380
381 return sprintf(buf, "%i\n", threeg_s);
382}
383
Lee, Chun-Yi472ea122010-01-22 00:15:59 +0800384static ssize_t store_threeg(struct device *dev,
385 struct device_attribute *attr, const char *buf, size_t count)
386{
387 return set_device_state(buf, count, MSI_STANDARD_EC_3G_MASK);
388}
389
Lennart Poettering8c4c7312006-10-06 01:27:02 -0400390static ssize_t show_lcd_level(struct device *dev,
391 struct device_attribute *attr, char *buf)
392{
393
394 int ret;
395
396 ret = get_lcd_level();
397 if (ret < 0)
398 return ret;
399
400 return sprintf(buf, "%i\n", ret);
401}
402
403static ssize_t store_lcd_level(struct device *dev,
404 struct device_attribute *attr, const char *buf, size_t count)
405{
406
407 int level, ret;
408
Greg Kroah-Hartman1ac34072010-05-12 12:03:00 -0700409 if (sscanf(buf, "%i", &level) != 1 ||
410 (level < 0 || level >= MSI_LCD_LEVEL_MAX))
Lennart Poettering8c4c7312006-10-06 01:27:02 -0400411 return -EINVAL;
412
413 ret = set_lcd_level(level);
414 if (ret < 0)
415 return ret;
416
417 return count;
418}
419
420static ssize_t show_auto_brightness(struct device *dev,
421 struct device_attribute *attr, char *buf)
422{
423
424 int ret;
425
426 ret = get_auto_brightness();
427 if (ret < 0)
428 return ret;
429
430 return sprintf(buf, "%i\n", ret);
431}
432
433static ssize_t store_auto_brightness(struct device *dev,
434 struct device_attribute *attr, const char *buf, size_t count)
435{
436
437 int enable, ret;
438
439 if (sscanf(buf, "%i", &enable) != 1 || (enable != (enable & 1)))
440 return -EINVAL;
441
442 ret = set_auto_brightness(enable);
443 if (ret < 0)
444 return ret;
445
446 return count;
447}
448
Maxim Mikityanskiy0de65752012-12-15 19:31:28 +0200449static ssize_t show_touchpad(struct device *dev,
450 struct device_attribute *attr, char *buf)
451{
452
453 u8 rdata;
454 int result;
455
456 result = ec_read(MSI_STANDARD_EC_FUNCTIONS_ADDRESS, &rdata);
457 if (result < 0)
458 return result;
459
460 return sprintf(buf, "%i\n", !!(rdata & MSI_STANDARD_EC_TOUCHPAD_MASK));
461}
462
463static ssize_t show_turbo(struct device *dev,
464 struct device_attribute *attr, char *buf)
465{
466
467 u8 rdata;
468 int result;
469
470 result = ec_read(MSI_STANDARD_EC_FUNCTIONS_ADDRESS, &rdata);
471 if (result < 0)
472 return result;
473
474 return sprintf(buf, "%i\n", !!(rdata & MSI_STANDARD_EC_TURBO_MASK));
475}
476
477static ssize_t show_eco(struct device *dev,
478 struct device_attribute *attr, char *buf)
479{
480
481 u8 rdata;
482 int result;
483
484 result = ec_read(MSI_STANDARD_EC_FUNCTIONS_ADDRESS, &rdata);
485 if (result < 0)
486 return result;
487
488 return sprintf(buf, "%i\n", !!(rdata & MSI_STANDARD_EC_ECO_MASK));
489}
490
491static ssize_t show_turbo_cooldown(struct device *dev,
492 struct device_attribute *attr, char *buf)
493{
494
495 u8 rdata;
496 int result;
497
498 result = ec_read(MSI_STANDARD_EC_FUNCTIONS_ADDRESS, &rdata);
499 if (result < 0)
500 return result;
501
502 return sprintf(buf, "%i\n", (!!(rdata & MSI_STANDARD_EC_TURBO_MASK)) |
503 (!!(rdata & MSI_STANDARD_EC_TURBO_COOLDOWN_MASK) << 1));
504}
505
506static ssize_t show_auto_fan(struct device *dev,
507 struct device_attribute *attr, char *buf)
508{
509
510 u8 rdata;
511 int result;
512
513 result = ec_read(MSI_STANDARD_EC_FAN_ADDRESS, &rdata);
514 if (result < 0)
515 return result;
516
517 return sprintf(buf, "%i\n", !!(rdata & MSI_STANDARD_EC_AUTOFAN_MASK));
518}
519
520static ssize_t store_auto_fan(struct device *dev,
521 struct device_attribute *attr, const char *buf, size_t count)
522{
523
524 int enable, result;
525
526 if (sscanf(buf, "%i", &enable) != 1 || (enable != (enable & 1)))
527 return -EINVAL;
528
529 result = ec_write(MSI_STANDARD_EC_FAN_ADDRESS, enable);
530 if (result < 0)
531 return result;
532
533 return count;
534}
535
Lennart Poettering8c4c7312006-10-06 01:27:02 -0400536static DEVICE_ATTR(lcd_level, 0644, show_lcd_level, store_lcd_level);
Greg Kroah-Hartman1ac34072010-05-12 12:03:00 -0700537static DEVICE_ATTR(auto_brightness, 0644, show_auto_brightness,
538 store_auto_brightness);
Lennart Poettering8c4c7312006-10-06 01:27:02 -0400539static DEVICE_ATTR(bluetooth, 0444, show_bluetooth, NULL);
540static DEVICE_ATTR(wlan, 0444, show_wlan, NULL);
Lee, Chun-Yifc0dc4c2010-01-09 23:17:07 +0800541static DEVICE_ATTR(threeg, 0444, show_threeg, NULL);
Maxim Mikityanskiy0de65752012-12-15 19:31:28 +0200542static DEVICE_ATTR(touchpad, 0444, show_touchpad, NULL);
543static DEVICE_ATTR(turbo_mode, 0444, show_turbo, NULL);
544static DEVICE_ATTR(eco_mode, 0444, show_eco, NULL);
545static DEVICE_ATTR(turbo_cooldown, 0444, show_turbo_cooldown, NULL);
546static DEVICE_ATTR(auto_fan, 0644, show_auto_fan, store_auto_fan);
Lennart Poettering8c4c7312006-10-06 01:27:02 -0400547
548static struct attribute *msipf_attributes[] = {
Lennart Poettering8c4c7312006-10-06 01:27:02 -0400549 &dev_attr_bluetooth.attr,
550 &dev_attr_wlan.attr,
Maxim Mikityanskiy0de65752012-12-15 19:31:28 +0200551 &dev_attr_touchpad.attr,
552 &dev_attr_turbo_mode.attr,
553 &dev_attr_eco_mode.attr,
554 &dev_attr_turbo_cooldown.attr,
555 &dev_attr_auto_fan.attr,
Lennart Poettering8c4c7312006-10-06 01:27:02 -0400556 NULL
557};
558
Maxim Mikityanskiy03696e52012-12-15 19:31:30 +0200559static struct attribute *msipf_old_attributes[] = {
560 &dev_attr_lcd_level.attr,
561 &dev_attr_auto_brightness.attr,
562 NULL
563};
564
Lennart Poettering8c4c7312006-10-06 01:27:02 -0400565static struct attribute_group msipf_attribute_group = {
566 .attrs = msipf_attributes
567};
568
Maxim Mikityanskiy03696e52012-12-15 19:31:30 +0200569static struct attribute_group msipf_old_attribute_group = {
570 .attrs = msipf_old_attributes
571};
572
Lennart Poettering8c4c7312006-10-06 01:27:02 -0400573static struct platform_driver msipf_driver = {
574 .driver = {
575 .name = "msi-laptop-pf",
Rafael J. Wysocki90331322012-07-06 19:06:19 +0200576 .pm = &msi_laptop_pm,
Lee, Chun-Yiec766272010-01-27 00:13:45 +0800577 },
Lennart Poettering8c4c7312006-10-06 01:27:02 -0400578};
579
580static struct platform_device *msipf_device;
581
582/* Initialization */
583
Lee, Chun-Yi08163922012-12-15 19:31:27 +0200584static struct quirk_entry quirk_old_ec_model = {
585 .old_ec_model = true,
586};
587
588static struct quirk_entry quirk_load_scm_model = {
589 .load_scm_model = true,
590 .ec_delay = true,
591};
592
593static struct quirk_entry quirk_load_scm_ro_model = {
594 .load_scm_model = true,
595 .ec_read_only = true,
596};
597
598static int dmi_check_cb(const struct dmi_system_id *dmi)
Lennart Poettering4f5c7912007-05-08 22:07:02 +0200599{
Lee, Chun-Yi08163922012-12-15 19:31:27 +0200600 pr_info("Identified laptop model '%s'\n", dmi->ident);
601
602 quirks = dmi->driver_data;
603
Axel Lin80183a42010-07-20 15:19:40 -0700604 return 1;
Lennart Poettering4f5c7912007-05-08 22:07:02 +0200605}
606
Lennart Poettering8c4c7312006-10-06 01:27:02 -0400607static struct dmi_system_id __initdata msi_dmi_table[] = {
608 {
609 .ident = "MSI S270",
610 .matches = {
611 DMI_MATCH(DMI_SYS_VENDOR, "MICRO-STAR INT'L CO.,LTD"),
612 DMI_MATCH(DMI_PRODUCT_NAME, "MS-1013"),
Lennart Poettering4f5c7912007-05-08 22:07:02 +0200613 DMI_MATCH(DMI_PRODUCT_VERSION, "0131"),
Greg Kroah-Hartman1ac34072010-05-12 12:03:00 -0700614 DMI_MATCH(DMI_CHASSIS_VENDOR,
615 "MICRO-STAR INT'L CO.,LTD")
Lennart Poettering4f5c7912007-05-08 22:07:02 +0200616 },
Lee, Chun-Yi08163922012-12-15 19:31:27 +0200617 .driver_data = &quirk_old_ec_model,
Lennart Poettering4f5c7912007-05-08 22:07:02 +0200618 .callback = dmi_check_cb
619 },
620 {
621 .ident = "MSI S271",
622 .matches = {
623 DMI_MATCH(DMI_SYS_VENDOR, "Micro-Star International"),
624 DMI_MATCH(DMI_PRODUCT_NAME, "MS-1058"),
625 DMI_MATCH(DMI_PRODUCT_VERSION, "0581"),
626 DMI_MATCH(DMI_BOARD_NAME, "MS-1058")
627 },
Lee, Chun-Yi08163922012-12-15 19:31:27 +0200628 .driver_data = &quirk_old_ec_model,
Lennart Poettering4f5c7912007-05-08 22:07:02 +0200629 .callback = dmi_check_cb
630 },
631 {
632 .ident = "MSI S420",
633 .matches = {
634 DMI_MATCH(DMI_SYS_VENDOR, "Micro-Star International"),
635 DMI_MATCH(DMI_PRODUCT_NAME, "MS-1412"),
636 DMI_MATCH(DMI_BOARD_VENDOR, "MSI"),
637 DMI_MATCH(DMI_BOARD_NAME, "MS-1412")
638 },
Lee, Chun-Yi08163922012-12-15 19:31:27 +0200639 .driver_data = &quirk_old_ec_model,
Lennart Poettering4f5c7912007-05-08 22:07:02 +0200640 .callback = dmi_check_cb
Lennart Poettering8c4c7312006-10-06 01:27:02 -0400641 },
642 {
643 .ident = "Medion MD96100",
644 .matches = {
645 DMI_MATCH(DMI_SYS_VENDOR, "NOTEBOOK"),
646 DMI_MATCH(DMI_PRODUCT_NAME, "SAM2000"),
Lennart Poettering4f5c7912007-05-08 22:07:02 +0200647 DMI_MATCH(DMI_PRODUCT_VERSION, "0131"),
Greg Kroah-Hartman1ac34072010-05-12 12:03:00 -0700648 DMI_MATCH(DMI_CHASSIS_VENDOR,
649 "MICRO-STAR INT'L CO.,LTD")
Lennart Poettering4f5c7912007-05-08 22:07:02 +0200650 },
Lee, Chun-Yi08163922012-12-15 19:31:27 +0200651 .driver_data = &quirk_old_ec_model,
Lennart Poettering4f5c7912007-05-08 22:07:02 +0200652 .callback = dmi_check_cb
Lennart Poettering8c4c7312006-10-06 01:27:02 -0400653 },
Lee, Chun-Yi785cfc02010-05-19 20:03:05 +0800654 {
655 .ident = "MSI N034",
656 .matches = {
657 DMI_MATCH(DMI_SYS_VENDOR,
658 "MICRO-STAR INTERNATIONAL CO., LTD"),
659 DMI_MATCH(DMI_PRODUCT_NAME, "MS-N034"),
660 DMI_MATCH(DMI_CHASSIS_VENDOR,
661 "MICRO-STAR INTERNATIONAL CO., LTD")
662 },
Lee, Chun-Yi08163922012-12-15 19:31:27 +0200663 .driver_data = &quirk_load_scm_model,
Lee, Chun-Yi785cfc02010-05-19 20:03:05 +0800664 .callback = dmi_check_cb
665 },
Lee, Chun-Yid0a4aa22010-05-12 09:58:07 -0700666 {
667 .ident = "MSI N051",
668 .matches = {
669 DMI_MATCH(DMI_SYS_VENDOR,
670 "MICRO-STAR INTERNATIONAL CO., LTD"),
671 DMI_MATCH(DMI_PRODUCT_NAME, "MS-N051"),
672 DMI_MATCH(DMI_CHASSIS_VENDOR,
673 "MICRO-STAR INTERNATIONAL CO., LTD")
674 },
Lee, Chun-Yi08163922012-12-15 19:31:27 +0200675 .driver_data = &quirk_load_scm_model,
Lee, Chun-Yid0a4aa22010-05-12 09:58:07 -0700676 .callback = dmi_check_cb
677 },
678 {
679 .ident = "MSI N014",
680 .matches = {
681 DMI_MATCH(DMI_SYS_VENDOR,
682 "MICRO-STAR INTERNATIONAL CO., LTD"),
683 DMI_MATCH(DMI_PRODUCT_NAME, "MS-N014"),
684 },
Lee, Chun-Yi08163922012-12-15 19:31:27 +0200685 .driver_data = &quirk_load_scm_model,
Lee, Chun-Yid0a4aa22010-05-12 09:58:07 -0700686 .callback = dmi_check_cb
687 },
Lee, Chun-Yi1f27e172010-05-12 09:58:08 -0700688 {
689 .ident = "MSI CR620",
690 .matches = {
691 DMI_MATCH(DMI_SYS_VENDOR,
692 "Micro-Star International"),
693 DMI_MATCH(DMI_PRODUCT_NAME, "CR620"),
694 },
Lee, Chun-Yi08163922012-12-15 19:31:27 +0200695 .driver_data = &quirk_load_scm_model,
Lee, Chun-Yi1f27e172010-05-12 09:58:08 -0700696 .callback = dmi_check_cb
697 },
Lee, Chun-Yi38803142011-06-10 15:24:26 +0800698 {
699 .ident = "MSI U270",
700 .matches = {
701 DMI_MATCH(DMI_SYS_VENDOR,
702 "Micro-Star International Co., Ltd."),
703 DMI_MATCH(DMI_PRODUCT_NAME, "U270 series"),
704 },
Lee, Chun-Yi08163922012-12-15 19:31:27 +0200705 .driver_data = &quirk_load_scm_model,
Lee, Chun-Yi38803142011-06-10 15:24:26 +0800706 .callback = dmi_check_cb
707 },
Maxim Mikityanskiy0de65752012-12-15 19:31:28 +0200708 {
709 .ident = "MSI U90/U100",
710 .matches = {
711 DMI_MATCH(DMI_SYS_VENDOR,
712 "MICRO-STAR INTERNATIONAL CO., LTD"),
713 DMI_MATCH(DMI_PRODUCT_NAME, "U90/U100"),
714 },
715 .driver_data = &quirk_load_scm_ro_model,
716 .callback = dmi_check_cb
717 },
Lennart Poettering8c4c7312006-10-06 01:27:02 -0400718 { }
719};
720
Lee, Chun-Yi472ea122010-01-22 00:15:59 +0800721static int rfkill_bluetooth_set(void *data, bool blocked)
722{
723 /* Do something with blocked...*/
724 /*
725 * blocked == false is on
726 * blocked == true is off
727 */
Lee, Chun-Yi08163922012-12-15 19:31:27 +0200728 int result = set_device_state(blocked ? "0" : "1", 0,
729 MSI_STANDARD_EC_BLUETOOTH_MASK);
Lee, Chun-Yi472ea122010-01-22 00:15:59 +0800730
Lee, Chun-Yi08163922012-12-15 19:31:27 +0200731 return min(result, 0);
Lee, Chun-Yi472ea122010-01-22 00:15:59 +0800732}
733
734static int rfkill_wlan_set(void *data, bool blocked)
735{
Lee, Chun-Yi08163922012-12-15 19:31:27 +0200736 int result = set_device_state(blocked ? "0" : "1", 0,
737 MSI_STANDARD_EC_WLAN_MASK);
Lee, Chun-Yi472ea122010-01-22 00:15:59 +0800738
Lee, Chun-Yi08163922012-12-15 19:31:27 +0200739 return min(result, 0);
Lee, Chun-Yi472ea122010-01-22 00:15:59 +0800740}
741
742static int rfkill_threeg_set(void *data, bool blocked)
743{
Lee, Chun-Yi08163922012-12-15 19:31:27 +0200744 int result = set_device_state(blocked ? "0" : "1", 0,
745 MSI_STANDARD_EC_3G_MASK);
Lee, Chun-Yi472ea122010-01-22 00:15:59 +0800746
Lee, Chun-Yi08163922012-12-15 19:31:27 +0200747 return min(result, 0);
Lee, Chun-Yi472ea122010-01-22 00:15:59 +0800748}
749
Axel Line38f0522010-07-20 15:19:46 -0700750static const struct rfkill_ops rfkill_bluetooth_ops = {
Lee, Chun-Yi472ea122010-01-22 00:15:59 +0800751 .set_block = rfkill_bluetooth_set
752};
753
Axel Line38f0522010-07-20 15:19:46 -0700754static const struct rfkill_ops rfkill_wlan_ops = {
Lee, Chun-Yi472ea122010-01-22 00:15:59 +0800755 .set_block = rfkill_wlan_set
756};
757
Axel Line38f0522010-07-20 15:19:46 -0700758static const struct rfkill_ops rfkill_threeg_ops = {
Lee, Chun-Yi472ea122010-01-22 00:15:59 +0800759 .set_block = rfkill_threeg_set
760};
761
762static void rfkill_cleanup(void)
763{
764 if (rfk_bluetooth) {
765 rfkill_unregister(rfk_bluetooth);
766 rfkill_destroy(rfk_bluetooth);
767 }
768
769 if (rfk_threeg) {
770 rfkill_unregister(rfk_threeg);
771 rfkill_destroy(rfk_threeg);
772 }
773
774 if (rfk_wlan) {
775 rfkill_unregister(rfk_wlan);
776 rfkill_destroy(rfk_wlan);
777 }
778}
779
Lee, Chun-Yi08163922012-12-15 19:31:27 +0200780static bool msi_rfkill_set_state(struct rfkill *rfkill, bool blocked)
781{
782 if (quirks->ec_read_only)
783 return rfkill_set_hw_state(rfkill, blocked);
784 else
785 return rfkill_set_sw_state(rfkill, blocked);
786}
787
Lee, Chun-Yi339e7532010-05-12 09:58:10 -0700788static void msi_update_rfkill(struct work_struct *ignored)
789{
790 get_wireless_state_ec_standard();
791
792 if (rfk_wlan)
Lee, Chun-Yi08163922012-12-15 19:31:27 +0200793 msi_rfkill_set_state(rfk_wlan, !wlan_s);
Lee, Chun-Yi339e7532010-05-12 09:58:10 -0700794 if (rfk_bluetooth)
Lee, Chun-Yi08163922012-12-15 19:31:27 +0200795 msi_rfkill_set_state(rfk_bluetooth, !bluetooth_s);
Lee, Chun-Yi339e7532010-05-12 09:58:10 -0700796 if (rfk_threeg)
Lee, Chun-Yi08163922012-12-15 19:31:27 +0200797 msi_rfkill_set_state(rfk_threeg, !threeg_s);
Lee, Chun-Yi339e7532010-05-12 09:58:10 -0700798}
Lee, Chun-Yi08163922012-12-15 19:31:27 +0200799static DECLARE_DELAYED_WORK(msi_rfkill_dwork, msi_update_rfkill);
800static DECLARE_WORK(msi_rfkill_work, msi_update_rfkill);
Lee, Chun-Yi339e7532010-05-12 09:58:10 -0700801
Lee, Chun-Yi143a4c02011-03-07 15:46:28 +0800802static void msi_send_touchpad_key(struct work_struct *ignored)
803{
804 u8 rdata;
805 int result;
806
Maxim Mikityanskiy0de65752012-12-15 19:31:28 +0200807 result = ec_read(MSI_STANDARD_EC_FUNCTIONS_ADDRESS, &rdata);
Lee, Chun-Yi143a4c02011-03-07 15:46:28 +0800808 if (result < 0)
809 return;
810
811 sparse_keymap_report_event(msi_laptop_input_dev,
812 (rdata & MSI_STANDARD_EC_TOUCHPAD_MASK) ?
813 KEY_TOUCHPAD_ON : KEY_TOUCHPAD_OFF, 1, true);
814}
Lee, Chun-Yi08163922012-12-15 19:31:27 +0200815static DECLARE_DELAYED_WORK(msi_touchpad_dwork, msi_send_touchpad_key);
816static DECLARE_WORK(msi_touchpad_work, msi_send_touchpad_key);
Lee, Chun-Yi143a4c02011-03-07 15:46:28 +0800817
Lee, Chun-Yi339e7532010-05-12 09:58:10 -0700818static bool msi_laptop_i8042_filter(unsigned char data, unsigned char str,
819 struct serio *port)
820{
821 static bool extended;
822
Giedrius Statkevičius98280372014-10-18 02:57:20 +0300823 if (str & I8042_STR_AUXDATA)
Lee, Chun-Yi339e7532010-05-12 09:58:10 -0700824 return false;
825
Lee, Chun-Yi143a4c02011-03-07 15:46:28 +0800826 /* 0x54 wwan, 0x62 bluetooth, 0x76 wlan, 0xE4 touchpad toggle*/
Lee, Chun-Yi339e7532010-05-12 09:58:10 -0700827 if (unlikely(data == 0xe0)) {
828 extended = true;
829 return false;
830 } else if (unlikely(extended)) {
Lee, Chun-Yi143a4c02011-03-07 15:46:28 +0800831 extended = false;
Lee, Chun-Yi339e7532010-05-12 09:58:10 -0700832 switch (data) {
Lee, Chun-Yi143a4c02011-03-07 15:46:28 +0800833 case 0xE4:
Lee, Chun-Yi08163922012-12-15 19:31:27 +0200834 if (quirks->ec_delay) {
835 schedule_delayed_work(&msi_touchpad_dwork,
836 round_jiffies_relative(0.5 * HZ));
837 } else
838 schedule_work(&msi_touchpad_work);
Lee, Chun-Yi143a4c02011-03-07 15:46:28 +0800839 break;
Lee, Chun-Yi339e7532010-05-12 09:58:10 -0700840 case 0x54:
841 case 0x62:
842 case 0x76:
Lee, Chun-Yi08163922012-12-15 19:31:27 +0200843 if (quirks->ec_delay) {
844 schedule_delayed_work(&msi_rfkill_dwork,
845 round_jiffies_relative(0.5 * HZ));
846 } else
847 schedule_work(&msi_rfkill_work);
Lee, Chun-Yi339e7532010-05-12 09:58:10 -0700848 break;
849 }
Lee, Chun-Yi339e7532010-05-12 09:58:10 -0700850 }
851
852 return false;
853}
854
Lee, Chun-Yi3bb97022010-05-12 09:58:09 -0700855static void msi_init_rfkill(struct work_struct *ignored)
856{
857 if (rfk_wlan) {
858 rfkill_set_sw_state(rfk_wlan, !wlan_s);
859 rfkill_wlan_set(NULL, !wlan_s);
860 }
861 if (rfk_bluetooth) {
862 rfkill_set_sw_state(rfk_bluetooth, !bluetooth_s);
863 rfkill_bluetooth_set(NULL, !bluetooth_s);
864 }
865 if (rfk_threeg) {
866 rfkill_set_sw_state(rfk_threeg, !threeg_s);
867 rfkill_threeg_set(NULL, !threeg_s);
868 }
869}
870static DECLARE_DELAYED_WORK(msi_rfkill_init, msi_init_rfkill);
871
Lee, Chun-Yi472ea122010-01-22 00:15:59 +0800872static int rfkill_init(struct platform_device *sdev)
873{
874 /* add rfkill */
875 int retval;
876
Lee, Chun-Yi3bb97022010-05-12 09:58:09 -0700877 /* keep the hardware wireless state */
878 get_wireless_state_ec_standard();
879
Lee, Chun-Yi472ea122010-01-22 00:15:59 +0800880 rfk_bluetooth = rfkill_alloc("msi-bluetooth", &sdev->dev,
881 RFKILL_TYPE_BLUETOOTH,
882 &rfkill_bluetooth_ops, NULL);
883 if (!rfk_bluetooth) {
884 retval = -ENOMEM;
885 goto err_bluetooth;
886 }
887 retval = rfkill_register(rfk_bluetooth);
888 if (retval)
889 goto err_bluetooth;
890
891 rfk_wlan = rfkill_alloc("msi-wlan", &sdev->dev, RFKILL_TYPE_WLAN,
892 &rfkill_wlan_ops, NULL);
893 if (!rfk_wlan) {
894 retval = -ENOMEM;
895 goto err_wlan;
896 }
897 retval = rfkill_register(rfk_wlan);
898 if (retval)
899 goto err_wlan;
900
Lee, Chun-Yie22388e2010-01-27 12:23:00 +0800901 if (threeg_exists) {
902 rfk_threeg = rfkill_alloc("msi-threeg", &sdev->dev,
903 RFKILL_TYPE_WWAN, &rfkill_threeg_ops, NULL);
904 if (!rfk_threeg) {
905 retval = -ENOMEM;
906 goto err_threeg;
907 }
908 retval = rfkill_register(rfk_threeg);
909 if (retval)
910 goto err_threeg;
Lee, Chun-Yi472ea122010-01-22 00:15:59 +0800911 }
Lee, Chun-Yi472ea122010-01-22 00:15:59 +0800912
Lee, Chun-Yi3bb97022010-05-12 09:58:09 -0700913 /* schedule to run rfkill state initial */
Lee, Chun-Yi08163922012-12-15 19:31:27 +0200914 if (quirks->ec_delay) {
915 schedule_delayed_work(&msi_rfkill_init,
916 round_jiffies_relative(1 * HZ));
917 } else
918 schedule_work(&msi_rfkill_work);
Lee, Chun-Yi3bb97022010-05-12 09:58:09 -0700919
Lee, Chun-Yi472ea122010-01-22 00:15:59 +0800920 return 0;
921
922err_threeg:
923 rfkill_destroy(rfk_threeg);
924 if (rfk_wlan)
925 rfkill_unregister(rfk_wlan);
926err_wlan:
927 rfkill_destroy(rfk_wlan);
928 if (rfk_bluetooth)
929 rfkill_unregister(rfk_bluetooth);
930err_bluetooth:
931 rfkill_destroy(rfk_bluetooth);
932
933 return retval;
934}
935
Rafael J. Wysocki3567a4e2012-08-09 23:00:13 +0200936#ifdef CONFIG_PM_SLEEP
Rafael J. Wysocki90331322012-07-06 19:06:19 +0200937static int msi_laptop_resume(struct device *device)
Lee, Chun-Yiec766272010-01-27 00:13:45 +0800938{
939 u8 data;
940 int result;
941
Lee, Chun-Yi08163922012-12-15 19:31:27 +0200942 if (!quirks->load_scm_model)
Lee, Chun-Yiec766272010-01-27 00:13:45 +0800943 return 0;
944
945 /* set load SCM to disable hardware control by fn key */
946 result = ec_read(MSI_STANDARD_EC_SCM_LOAD_ADDRESS, &data);
947 if (result < 0)
948 return result;
949
950 result = ec_write(MSI_STANDARD_EC_SCM_LOAD_ADDRESS,
951 data | MSI_STANDARD_EC_SCM_LOAD_MASK);
952 if (result < 0)
953 return result;
954
955 return 0;
956}
Rafael J. Wysocki3567a4e2012-08-09 23:00:13 +0200957#endif
Lee, Chun-Yiec766272010-01-27 00:13:45 +0800958
Lee, Chun-Yi143a4c02011-03-07 15:46:28 +0800959static int __init msi_laptop_input_setup(void)
960{
961 int err;
962
963 msi_laptop_input_dev = input_allocate_device();
964 if (!msi_laptop_input_dev)
965 return -ENOMEM;
966
967 msi_laptop_input_dev->name = "MSI Laptop hotkeys";
968 msi_laptop_input_dev->phys = "msi-laptop/input0";
969 msi_laptop_input_dev->id.bustype = BUS_HOST;
970
971 err = sparse_keymap_setup(msi_laptop_input_dev,
972 msi_laptop_keymap, NULL);
973 if (err)
974 goto err_free_dev;
975
976 err = input_register_device(msi_laptop_input_dev);
977 if (err)
978 goto err_free_keymap;
979
980 return 0;
981
982err_free_keymap:
983 sparse_keymap_free(msi_laptop_input_dev);
984err_free_dev:
985 input_free_device(msi_laptop_input_dev);
986 return err;
987}
988
989static void msi_laptop_input_destroy(void)
990{
991 sparse_keymap_free(msi_laptop_input_dev);
992 input_unregister_device(msi_laptop_input_dev);
993}
994
Lee, Chun-Yid4365142011-05-26 11:09:19 +0800995static int __init load_scm_model_init(struct platform_device *sdev)
Lee, Chun-Yi472ea122010-01-22 00:15:59 +0800996{
997 u8 data;
998 int result;
999
Lee, Chun-Yi08163922012-12-15 19:31:27 +02001000 if (!quirks->ec_read_only) {
1001 /* allow userland write sysfs file */
1002 dev_attr_bluetooth.store = store_bluetooth;
1003 dev_attr_wlan.store = store_wlan;
1004 dev_attr_threeg.store = store_threeg;
1005 dev_attr_bluetooth.attr.mode |= S_IWUSR;
1006 dev_attr_wlan.attr.mode |= S_IWUSR;
1007 dev_attr_threeg.attr.mode |= S_IWUSR;
1008 }
Lee, Chun-Yi472ea122010-01-22 00:15:59 +08001009
1010 /* disable hardware control by fn key */
1011 result = ec_read(MSI_STANDARD_EC_SCM_LOAD_ADDRESS, &data);
1012 if (result < 0)
1013 return result;
1014
1015 result = ec_write(MSI_STANDARD_EC_SCM_LOAD_ADDRESS,
1016 data | MSI_STANDARD_EC_SCM_LOAD_MASK);
1017 if (result < 0)
1018 return result;
1019
1020 /* initial rfkill */
1021 result = rfkill_init(sdev);
1022 if (result < 0)
Lee, Chun-Yi339e7532010-05-12 09:58:10 -07001023 goto fail_rfkill;
1024
Lee, Chun-Yi143a4c02011-03-07 15:46:28 +08001025 /* setup input device */
1026 result = msi_laptop_input_setup();
1027 if (result)
1028 goto fail_input;
1029
Lee, Chun-Yi339e7532010-05-12 09:58:10 -07001030 result = i8042_install_filter(msi_laptop_i8042_filter);
1031 if (result) {
Joey Leebbe24fe2011-03-16 01:55:19 -06001032 pr_err("Unable to install key filter\n");
Lee, Chun-Yi339e7532010-05-12 09:58:10 -07001033 goto fail_filter;
1034 }
Lee, Chun-Yi472ea122010-01-22 00:15:59 +08001035
1036 return 0;
Lee, Chun-Yi339e7532010-05-12 09:58:10 -07001037
1038fail_filter:
Lee, Chun-Yi143a4c02011-03-07 15:46:28 +08001039 msi_laptop_input_destroy();
1040
1041fail_input:
Lee, Chun-Yi339e7532010-05-12 09:58:10 -07001042 rfkill_cleanup();
1043
1044fail_rfkill:
1045
1046 return result;
1047
Lee, Chun-Yi472ea122010-01-22 00:15:59 +08001048}
1049
Lennart Poettering8c4c7312006-10-06 01:27:02 -04001050static int __init msi_init(void)
1051{
1052 int ret;
1053
1054 if (acpi_disabled)
1055 return -ENODEV;
1056
Lee, Chun-Yi08163922012-12-15 19:31:27 +02001057 dmi_check_system(msi_dmi_table);
1058 if (!quirks)
1059 /* quirks may be NULL if no match in DMI table */
1060 quirks = &quirk_load_scm_model;
1061 if (force)
1062 quirks = &quirk_old_ec_model;
Lennart Poettering8c4c7312006-10-06 01:27:02 -04001063
Lee, Chun-Yi08163922012-12-15 19:31:27 +02001064 if (!quirks->old_ec_model)
Lee, Chun-Yie22388e2010-01-27 12:23:00 +08001065 get_threeg_exists();
1066
Lennart Poettering8c4c7312006-10-06 01:27:02 -04001067 if (auto_brightness < 0 || auto_brightness > 2)
1068 return -EINVAL;
1069
1070 /* Register backlight stuff */
1071
Maxim Mikityanskiy03696e52012-12-15 19:31:30 +02001072 if (!quirks->old_ec_model || acpi_video_backlight_support()) {
Joe Perchesf9dcf192011-03-29 15:21:46 -07001073 pr_info("Brightness ignored, must be controlled by ACPI video driver\n");
Thomas Renningera598c822008-08-01 17:38:01 +02001074 } else {
Matthew Garretta19a6ee2010-02-17 16:39:44 -05001075 struct backlight_properties props;
1076 memset(&props, 0, sizeof(struct backlight_properties));
Matthew Garrettbb7ca742011-03-22 16:30:21 -07001077 props.type = BACKLIGHT_PLATFORM;
Matthew Garretta19a6ee2010-02-17 16:39:44 -05001078 props.max_brightness = MSI_LCD_LEVEL_MAX - 1;
Thomas Renningera598c822008-08-01 17:38:01 +02001079 msibl_device = backlight_device_register("msi-laptop-bl", NULL,
Matthew Garretta19a6ee2010-02-17 16:39:44 -05001080 NULL, &msibl_ops,
1081 &props);
Thomas Renningera598c822008-08-01 17:38:01 +02001082 if (IS_ERR(msibl_device))
1083 return PTR_ERR(msibl_device);
Thomas Renningera598c822008-08-01 17:38:01 +02001084 }
Richard Purdie599a52d2007-02-10 23:07:48 +00001085
Lennart Poettering8c4c7312006-10-06 01:27:02 -04001086 ret = platform_driver_register(&msipf_driver);
1087 if (ret)
1088 goto fail_backlight;
1089
1090 /* Register platform stuff */
1091
1092 msipf_device = platform_device_alloc("msi-laptop-pf", -1);
1093 if (!msipf_device) {
1094 ret = -ENOMEM;
1095 goto fail_platform_driver;
1096 }
1097
1098 ret = platform_device_add(msipf_device);
1099 if (ret)
Libo Chen4c241b32013-05-20 10:30:07 +08001100 goto fail_device_add;
Lennart Poettering8c4c7312006-10-06 01:27:02 -04001101
Lee, Chun-Yi08163922012-12-15 19:31:27 +02001102 if (quirks->load_scm_model && (load_scm_model_init(msipf_device) < 0)) {
Lee, Chun-Yi472ea122010-01-22 00:15:59 +08001103 ret = -EINVAL;
Libo Chen4c241b32013-05-20 10:30:07 +08001104 goto fail_scm_model_init;
Lee, Chun-Yi472ea122010-01-22 00:15:59 +08001105 }
1106
Greg Kroah-Hartman1ac34072010-05-12 12:03:00 -07001107 ret = sysfs_create_group(&msipf_device->dev.kobj,
1108 &msipf_attribute_group);
Lennart Poettering8c4c7312006-10-06 01:27:02 -04001109 if (ret)
Libo Chen4c241b32013-05-20 10:30:07 +08001110 goto fail_create_group;
Lennart Poettering8c4c7312006-10-06 01:27:02 -04001111
Lee, Chun-Yi08163922012-12-15 19:31:27 +02001112 if (!quirks->old_ec_model) {
Lee, Chun-Yie22388e2010-01-27 12:23:00 +08001113 if (threeg_exists)
1114 ret = device_create_file(&msipf_device->dev,
1115 &dev_attr_threeg);
Lee, Chun-Yifc0dc4c2010-01-09 23:17:07 +08001116 if (ret)
Libo Chen4c241b32013-05-20 10:30:07 +08001117 goto fail_create_attr;
Maxim Mikityanskiy03696e52012-12-15 19:31:30 +02001118 } else {
1119 ret = sysfs_create_group(&msipf_device->dev.kobj,
1120 &msipf_old_attribute_group);
1121 if (ret)
Libo Chen4c241b32013-05-20 10:30:07 +08001122 goto fail_create_attr;
Maxim Mikityanskiy03696e52012-12-15 19:31:30 +02001123
1124 /* Disable automatic brightness control by default because
1125 * this module was probably loaded to do brightness control in
1126 * software. */
1127
1128 if (auto_brightness != 2)
1129 set_auto_brightness(auto_brightness);
Lee, Chun-Yifc0dc4c2010-01-09 23:17:07 +08001130 }
1131
Joe Perchesf9dcf192011-03-29 15:21:46 -07001132 pr_info("driver " MSI_DRIVER_VERSION " successfully loaded\n");
Lennart Poettering8c4c7312006-10-06 01:27:02 -04001133
1134 return 0;
1135
Libo Chen4c241b32013-05-20 10:30:07 +08001136fail_create_attr:
1137 sysfs_remove_group(&msipf_device->dev.kobj, &msipf_attribute_group);
1138fail_create_group:
Lee, Chun-Yi08163922012-12-15 19:31:27 +02001139 if (quirks->load_scm_model) {
Lee, Chun-Yi7ab52522010-05-15 06:18:54 +08001140 i8042_remove_filter(msi_laptop_i8042_filter);
Lee, Chun-Yi08163922012-12-15 19:31:27 +02001141 cancel_delayed_work_sync(&msi_rfkill_dwork);
1142 cancel_work_sync(&msi_rfkill_work);
Lee, Chun-Yi7ab52522010-05-15 06:18:54 +08001143 rfkill_cleanup();
1144 }
Libo Chen4c241b32013-05-20 10:30:07 +08001145fail_scm_model_init:
Lennart Poettering8c4c7312006-10-06 01:27:02 -04001146 platform_device_del(msipf_device);
Libo Chen4c241b32013-05-20 10:30:07 +08001147fail_device_add:
Lennart Poettering8c4c7312006-10-06 01:27:02 -04001148 platform_device_put(msipf_device);
Lennart Poettering8c4c7312006-10-06 01:27:02 -04001149fail_platform_driver:
Lennart Poettering8c4c7312006-10-06 01:27:02 -04001150 platform_driver_unregister(&msipf_driver);
Lennart Poettering8c4c7312006-10-06 01:27:02 -04001151fail_backlight:
Lennart Poettering8c4c7312006-10-06 01:27:02 -04001152 backlight_device_unregister(msibl_device);
1153
1154 return ret;
1155}
1156
1157static void __exit msi_cleanup(void)
1158{
Lee, Chun-Yi08163922012-12-15 19:31:27 +02001159 if (quirks->load_scm_model) {
Lee, Chun-Yi7ab52522010-05-15 06:18:54 +08001160 i8042_remove_filter(msi_laptop_i8042_filter);
Lee, Chun-Yi143a4c02011-03-07 15:46:28 +08001161 msi_laptop_input_destroy();
Lee, Chun-Yi08163922012-12-15 19:31:27 +02001162 cancel_delayed_work_sync(&msi_rfkill_dwork);
1163 cancel_work_sync(&msi_rfkill_work);
Lee, Chun-Yi7ab52522010-05-15 06:18:54 +08001164 rfkill_cleanup();
1165 }
Lennart Poettering8c4c7312006-10-06 01:27:02 -04001166
1167 sysfs_remove_group(&msipf_device->dev.kobj, &msipf_attribute_group);
Lee, Chun-Yi08163922012-12-15 19:31:27 +02001168 if (!quirks->old_ec_model && threeg_exists)
Lee, Chun-Yifc0dc4c2010-01-09 23:17:07 +08001169 device_remove_file(&msipf_device->dev, &dev_attr_threeg);
Lennart Poettering8c4c7312006-10-06 01:27:02 -04001170 platform_device_unregister(msipf_device);
1171 platform_driver_unregister(&msipf_driver);
1172 backlight_device_unregister(msibl_device);
1173
Maxim Mikityanskiy03696e52012-12-15 19:31:30 +02001174 if (quirks->old_ec_model) {
1175 /* Enable automatic brightness control again */
1176 if (auto_brightness != 2)
1177 set_auto_brightness(1);
1178 }
Lennart Poettering8c4c7312006-10-06 01:27:02 -04001179
Joe Perchesf9dcf192011-03-29 15:21:46 -07001180 pr_info("driver unloaded\n");
Lennart Poettering8c4c7312006-10-06 01:27:02 -04001181}
1182
1183module_init(msi_init);
1184module_exit(msi_cleanup);
1185
1186MODULE_AUTHOR("Lennart Poettering");
1187MODULE_DESCRIPTION("MSI Laptop Support");
1188MODULE_VERSION(MSI_DRIVER_VERSION);
1189MODULE_LICENSE("GPL");
Lennart Poettering4f5c7912007-05-08 22:07:02 +02001190
1191MODULE_ALIAS("dmi:*:svnMICRO-STARINT'LCO.,LTD:pnMS-1013:pvr0131*:cvnMICRO-STARINT'LCO.,LTD:ct10:*");
1192MODULE_ALIAS("dmi:*:svnMicro-StarInternational:pnMS-1058:pvr0581:rvnMSI:rnMS-1058:*:ct10:*");
1193MODULE_ALIAS("dmi:*:svnMicro-StarInternational:pnMS-1412:*:rvnMSI:rnMS-1412:*:cvnMICRO-STARINT'LCO.,LTD:ct10:*");
1194MODULE_ALIAS("dmi:*:svnNOTEBOOK:pnSAM2000:pvr0131*:cvnMICRO-STARINT'LCO.,LTD:ct10:*");
Lee, Chun-Yi46d0e9e2010-01-09 21:16:52 +08001195MODULE_ALIAS("dmi:*:svnMICRO-STARINTERNATIONAL*:pnMS-N034:*");
Lee, Chun-Yid0a4aa22010-05-12 09:58:07 -07001196MODULE_ALIAS("dmi:*:svnMICRO-STARINTERNATIONAL*:pnMS-N051:*");
1197MODULE_ALIAS("dmi:*:svnMICRO-STARINTERNATIONAL*:pnMS-N014:*");
Lee, Chun-Yi1f27e172010-05-12 09:58:08 -07001198MODULE_ALIAS("dmi:*:svnMicro-StarInternational*:pnCR620:*");
Lee, Chun-Yi38803142011-06-10 15:24:26 +08001199MODULE_ALIAS("dmi:*:svnMicro-StarInternational*:pnU270series:*");
Maxim Mikityanskiy0de65752012-12-15 19:31:28 +02001200MODULE_ALIAS("dmi:*:svnMICRO-STARINTERNATIONAL*:pnU90/U100:*");