GNU Linux-libre 4.19.264-gnu1
[releases.git] / drivers / platform / x86 / 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  * Driver also supports S271, S420 models.
27  *
28  * 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
54 #define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
55
56 #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>
63 #include <linux/rfkill.h>
64 #include <linux/i8042.h>
65 #include <linux/input.h>
66 #include <linux/input/sparse-keymap.h>
67 #include <acpi/video.h>
68
69 #define MSI_DRIVER_VERSION "0.5"
70
71 #define MSI_LCD_LEVEL_MAX 9
72
73 #define MSI_EC_COMMAND_WIRELESS 0x10
74 #define MSI_EC_COMMAND_LCD_LEVEL 0x11
75
76 #define MSI_STANDARD_EC_COMMAND_ADDRESS 0x2e
77 #define MSI_STANDARD_EC_BLUETOOTH_MASK  (1 << 0)
78 #define MSI_STANDARD_EC_WEBCAM_MASK     (1 << 1)
79 #define MSI_STANDARD_EC_WLAN_MASK       (1 << 3)
80 #define MSI_STANDARD_EC_3G_MASK         (1 << 4)
81
82 /* For set SCM load flag to disable BIOS fn key */
83 #define MSI_STANDARD_EC_SCM_LOAD_ADDRESS        0x2d
84 #define MSI_STANDARD_EC_SCM_LOAD_MASK           (1 << 0)
85
86 #define MSI_STANDARD_EC_FUNCTIONS_ADDRESS       0xe4
87 /* Power LED is orange - Turbo mode */
88 #define MSI_STANDARD_EC_TURBO_MASK              (1 << 1)
89 /* Power LED is green - ECO mode */
90 #define MSI_STANDARD_EC_ECO_MASK                (1 << 3)
91 /* Touchpad is turned on */
92 #define MSI_STANDARD_EC_TOUCHPAD_MASK           (1 << 4)
93 /* If this bit != bit 1, turbo mode can't be toggled */
94 #define MSI_STANDARD_EC_TURBO_COOLDOWN_MASK     (1 << 7)
95
96 #define MSI_STANDARD_EC_FAN_ADDRESS             0x33
97 /* If zero, fan rotates at maximal speed */
98 #define MSI_STANDARD_EC_AUTOFAN_MASK            (1 << 0)
99
100 #ifdef CONFIG_PM_SLEEP
101 static int msi_laptop_resume(struct device *device);
102 #endif
103 static SIMPLE_DEV_PM_OPS(msi_laptop_pm, NULL, msi_laptop_resume);
104
105 #define MSI_STANDARD_EC_DEVICES_EXISTS_ADDRESS  0x2f
106
107 static bool force;
108 module_param(force, bool, 0);
109 MODULE_PARM_DESC(force, "Force driver load, ignore DMI data");
110
111 static int auto_brightness;
112 module_param(auto_brightness, int, 0);
113 MODULE_PARM_DESC(auto_brightness, "Enable automatic brightness control (0: disabled; 1: enabled; 2: don't touch)");
114
115 static const struct key_entry msi_laptop_keymap[] = {
116         {KE_KEY, KEY_TOUCHPAD_ON, {KEY_TOUCHPAD_ON} },  /* Touch Pad On */
117         {KE_KEY, KEY_TOUCHPAD_OFF, {KEY_TOUCHPAD_OFF} },/* Touch Pad On */
118         {KE_END, 0}
119 };
120
121 static struct input_dev *msi_laptop_input_dev;
122
123 static int wlan_s, bluetooth_s, threeg_s;
124 static int threeg_exists;
125 static struct rfkill *rfk_wlan, *rfk_bluetooth, *rfk_threeg;
126
127 /* MSI laptop quirks */
128 struct quirk_entry {
129         bool old_ec_model;
130
131         /* Some MSI 3G netbook only have one fn key to control
132          * Wlan/Bluetooth/3G, those netbook will load the SCM (windows app) to
133          * disable the original Wlan/Bluetooth control by BIOS when user press
134          * fn key, then control Wlan/Bluetooth/3G by SCM (software control by
135          * OS). Without SCM, user cann't on/off 3G module on those 3G netbook.
136          * On Linux, msi-laptop driver will do the same thing to disable the
137          * original BIOS control, then might need use HAL or other userland
138          * application to do the software control that simulate with SCM.
139          * e.g. MSI N034 netbook
140          */
141         bool load_scm_model;
142
143         /* Some MSI laptops need delay before reading from EC */
144         bool ec_delay;
145
146         /* Some MSI Wind netbooks (e.g. MSI Wind U100) need loading SCM to get
147          * some features working (e.g. ECO mode), but we cannot change
148          * Wlan/Bluetooth state in software and we can only read its state.
149          */
150         bool ec_read_only;
151 };
152
153 static struct quirk_entry *quirks;
154
155 /* Hardware access */
156
157 static int set_lcd_level(int level)
158 {
159         u8 buf[2];
160
161         if (level < 0 || level >= MSI_LCD_LEVEL_MAX)
162                 return -EINVAL;
163
164         buf[0] = 0x80;
165         buf[1] = (u8) (level*31);
166
167         return ec_transaction(MSI_EC_COMMAND_LCD_LEVEL, buf, sizeof(buf),
168                               NULL, 0);
169 }
170
171 static int get_lcd_level(void)
172 {
173         u8 wdata = 0, rdata;
174         int result;
175
176         result = ec_transaction(MSI_EC_COMMAND_LCD_LEVEL, &wdata, 1,
177                                 &rdata, 1);
178         if (result < 0)
179                 return result;
180
181         return (int) rdata / 31;
182 }
183
184 static int get_auto_brightness(void)
185 {
186         u8 wdata = 4, rdata;
187         int result;
188
189         result = ec_transaction(MSI_EC_COMMAND_LCD_LEVEL, &wdata, 1,
190                                 &rdata, 1);
191         if (result < 0)
192                 return result;
193
194         return !!(rdata & 8);
195 }
196
197 static int set_auto_brightness(int enable)
198 {
199         u8 wdata[2], rdata;
200         int result;
201
202         wdata[0] = 4;
203
204         result = ec_transaction(MSI_EC_COMMAND_LCD_LEVEL, wdata, 1,
205                                 &rdata, 1);
206         if (result < 0)
207                 return result;
208
209         wdata[0] = 0x84;
210         wdata[1] = (rdata & 0xF7) | (enable ? 8 : 0);
211
212         return ec_transaction(MSI_EC_COMMAND_LCD_LEVEL, wdata, 2,
213                               NULL, 0);
214 }
215
216 static ssize_t set_device_state(const char *buf, size_t count, u8 mask)
217 {
218         int status;
219         u8 wdata = 0, rdata;
220         int result;
221
222         if (sscanf(buf, "%i", &status) != 1 || (status < 0 || status > 1))
223                 return -EINVAL;
224
225         if (quirks->ec_read_only)
226                 return -EOPNOTSUPP;
227
228         /* read current device state */
229         result = ec_read(MSI_STANDARD_EC_COMMAND_ADDRESS, &rdata);
230         if (result < 0)
231                 return result;
232
233         if (!!(rdata & mask) != status) {
234                 /* reverse device bit */
235                 if (rdata & mask)
236                         wdata = rdata & ~mask;
237                 else
238                         wdata = rdata | mask;
239
240                 result = ec_write(MSI_STANDARD_EC_COMMAND_ADDRESS, wdata);
241                 if (result < 0)
242                         return result;
243         }
244
245         return count;
246 }
247
248 static int get_wireless_state(int *wlan, int *bluetooth)
249 {
250         u8 wdata = 0, rdata;
251         int result;
252
253         result = ec_transaction(MSI_EC_COMMAND_WIRELESS, &wdata, 1, &rdata, 1);
254         if (result < 0)
255                 return result;
256
257         if (wlan)
258                 *wlan = !!(rdata & 8);
259
260         if (bluetooth)
261                 *bluetooth = !!(rdata & 128);
262
263         return 0;
264 }
265
266 static int get_wireless_state_ec_standard(void)
267 {
268         u8 rdata;
269         int result;
270
271         result = ec_read(MSI_STANDARD_EC_COMMAND_ADDRESS, &rdata);
272         if (result < 0)
273                 return result;
274
275         wlan_s = !!(rdata & MSI_STANDARD_EC_WLAN_MASK);
276
277         bluetooth_s = !!(rdata & MSI_STANDARD_EC_BLUETOOTH_MASK);
278
279         threeg_s = !!(rdata & MSI_STANDARD_EC_3G_MASK);
280
281         return 0;
282 }
283
284 static int get_threeg_exists(void)
285 {
286         u8 rdata;
287         int result;
288
289         result = ec_read(MSI_STANDARD_EC_DEVICES_EXISTS_ADDRESS, &rdata);
290         if (result < 0)
291                 return result;
292
293         threeg_exists = !!(rdata & MSI_STANDARD_EC_3G_MASK);
294
295         return 0;
296 }
297
298 /* Backlight device stuff */
299
300 static int bl_get_brightness(struct backlight_device *b)
301 {
302         return get_lcd_level();
303 }
304
305
306 static int bl_update_status(struct backlight_device *b)
307 {
308         return set_lcd_level(b->props.brightness);
309 }
310
311 static const struct backlight_ops msibl_ops = {
312         .get_brightness = bl_get_brightness,
313         .update_status  = bl_update_status,
314 };
315
316 static struct backlight_device *msibl_device;
317
318 /* Platform device */
319
320 static ssize_t show_wlan(struct device *dev,
321         struct device_attribute *attr, char *buf)
322 {
323
324         int ret, enabled = 0;
325
326         if (quirks->old_ec_model) {
327                 ret = get_wireless_state(&enabled, NULL);
328         } else {
329                 ret = get_wireless_state_ec_standard();
330                 enabled = wlan_s;
331         }
332         if (ret < 0)
333                 return ret;
334
335         return sprintf(buf, "%i\n", enabled);
336 }
337
338 static ssize_t store_wlan(struct device *dev,
339         struct device_attribute *attr, const char *buf, size_t count)
340 {
341         return set_device_state(buf, count, MSI_STANDARD_EC_WLAN_MASK);
342 }
343
344 static ssize_t show_bluetooth(struct device *dev,
345         struct device_attribute *attr, char *buf)
346 {
347
348         int ret, enabled = 0;
349
350         if (quirks->old_ec_model) {
351                 ret = get_wireless_state(NULL, &enabled);
352         } else {
353                 ret = get_wireless_state_ec_standard();
354                 enabled = bluetooth_s;
355         }
356         if (ret < 0)
357                 return ret;
358
359         return sprintf(buf, "%i\n", enabled);
360 }
361
362 static ssize_t store_bluetooth(struct device *dev,
363         struct device_attribute *attr, const char *buf, size_t count)
364 {
365         return set_device_state(buf, count, MSI_STANDARD_EC_BLUETOOTH_MASK);
366 }
367
368 static ssize_t show_threeg(struct device *dev,
369         struct device_attribute *attr, char *buf)
370 {
371
372         int ret;
373
374         /* old msi ec not support 3G */
375         if (quirks->old_ec_model)
376                 return -ENODEV;
377
378         ret = get_wireless_state_ec_standard();
379         if (ret < 0)
380                 return ret;
381
382         return sprintf(buf, "%i\n", threeg_s);
383 }
384
385 static ssize_t store_threeg(struct device *dev,
386         struct device_attribute *attr, const char *buf, size_t count)
387 {
388         return set_device_state(buf, count, MSI_STANDARD_EC_3G_MASK);
389 }
390
391 static ssize_t show_lcd_level(struct device *dev,
392         struct device_attribute *attr, char *buf)
393 {
394
395         int ret;
396
397         ret = get_lcd_level();
398         if (ret < 0)
399                 return ret;
400
401         return sprintf(buf, "%i\n", ret);
402 }
403
404 static ssize_t store_lcd_level(struct device *dev,
405         struct device_attribute *attr, const char *buf, size_t count)
406 {
407
408         int level, ret;
409
410         if (sscanf(buf, "%i", &level) != 1 ||
411             (level < 0 || level >= MSI_LCD_LEVEL_MAX))
412                 return -EINVAL;
413
414         ret = set_lcd_level(level);
415         if (ret < 0)
416                 return ret;
417
418         return count;
419 }
420
421 static ssize_t show_auto_brightness(struct device *dev,
422         struct device_attribute *attr, char *buf)
423 {
424
425         int ret;
426
427         ret = get_auto_brightness();
428         if (ret < 0)
429                 return ret;
430
431         return sprintf(buf, "%i\n", ret);
432 }
433
434 static ssize_t store_auto_brightness(struct device *dev,
435         struct device_attribute *attr, const char *buf, size_t count)
436 {
437
438         int enable, ret;
439
440         if (sscanf(buf, "%i", &enable) != 1 || (enable != (enable & 1)))
441                 return -EINVAL;
442
443         ret = set_auto_brightness(enable);
444         if (ret < 0)
445                 return ret;
446
447         return count;
448 }
449
450 static ssize_t show_touchpad(struct device *dev,
451         struct device_attribute *attr, char *buf)
452 {
453
454         u8 rdata;
455         int result;
456
457         result = ec_read(MSI_STANDARD_EC_FUNCTIONS_ADDRESS, &rdata);
458         if (result < 0)
459                 return result;
460
461         return sprintf(buf, "%i\n", !!(rdata & MSI_STANDARD_EC_TOUCHPAD_MASK));
462 }
463
464 static ssize_t show_turbo(struct device *dev,
465         struct device_attribute *attr, char *buf)
466 {
467
468         u8 rdata;
469         int result;
470
471         result = ec_read(MSI_STANDARD_EC_FUNCTIONS_ADDRESS, &rdata);
472         if (result < 0)
473                 return result;
474
475         return sprintf(buf, "%i\n", !!(rdata & MSI_STANDARD_EC_TURBO_MASK));
476 }
477
478 static ssize_t show_eco(struct device *dev,
479         struct device_attribute *attr, char *buf)
480 {
481
482         u8 rdata;
483         int result;
484
485         result = ec_read(MSI_STANDARD_EC_FUNCTIONS_ADDRESS, &rdata);
486         if (result < 0)
487                 return result;
488
489         return sprintf(buf, "%i\n", !!(rdata & MSI_STANDARD_EC_ECO_MASK));
490 }
491
492 static ssize_t show_turbo_cooldown(struct device *dev,
493         struct device_attribute *attr, char *buf)
494 {
495
496         u8 rdata;
497         int result;
498
499         result = ec_read(MSI_STANDARD_EC_FUNCTIONS_ADDRESS, &rdata);
500         if (result < 0)
501                 return result;
502
503         return sprintf(buf, "%i\n", (!!(rdata & MSI_STANDARD_EC_TURBO_MASK)) |
504                 (!!(rdata & MSI_STANDARD_EC_TURBO_COOLDOWN_MASK) << 1));
505 }
506
507 static ssize_t show_auto_fan(struct device *dev,
508         struct device_attribute *attr, char *buf)
509 {
510
511         u8 rdata;
512         int result;
513
514         result = ec_read(MSI_STANDARD_EC_FAN_ADDRESS, &rdata);
515         if (result < 0)
516                 return result;
517
518         return sprintf(buf, "%i\n", !!(rdata & MSI_STANDARD_EC_AUTOFAN_MASK));
519 }
520
521 static ssize_t store_auto_fan(struct device *dev,
522         struct device_attribute *attr, const char *buf, size_t count)
523 {
524
525         int enable, result;
526
527         if (sscanf(buf, "%i", &enable) != 1 || (enable != (enable & 1)))
528                 return -EINVAL;
529
530         result = ec_write(MSI_STANDARD_EC_FAN_ADDRESS, enable);
531         if (result < 0)
532                 return result;
533
534         return count;
535 }
536
537 static DEVICE_ATTR(lcd_level, 0644, show_lcd_level, store_lcd_level);
538 static DEVICE_ATTR(auto_brightness, 0644, show_auto_brightness,
539                    store_auto_brightness);
540 static DEVICE_ATTR(bluetooth, 0444, show_bluetooth, NULL);
541 static DEVICE_ATTR(wlan, 0444, show_wlan, NULL);
542 static DEVICE_ATTR(threeg, 0444, show_threeg, NULL);
543 static DEVICE_ATTR(touchpad, 0444, show_touchpad, NULL);
544 static DEVICE_ATTR(turbo_mode, 0444, show_turbo, NULL);
545 static DEVICE_ATTR(eco_mode, 0444, show_eco, NULL);
546 static DEVICE_ATTR(turbo_cooldown, 0444, show_turbo_cooldown, NULL);
547 static DEVICE_ATTR(auto_fan, 0644, show_auto_fan, store_auto_fan);
548
549 static struct attribute *msipf_attributes[] = {
550         &dev_attr_bluetooth.attr,
551         &dev_attr_wlan.attr,
552         &dev_attr_touchpad.attr,
553         &dev_attr_turbo_mode.attr,
554         &dev_attr_eco_mode.attr,
555         &dev_attr_turbo_cooldown.attr,
556         &dev_attr_auto_fan.attr,
557         NULL
558 };
559
560 static struct attribute *msipf_old_attributes[] = {
561         &dev_attr_lcd_level.attr,
562         &dev_attr_auto_brightness.attr,
563         NULL
564 };
565
566 static const struct attribute_group msipf_attribute_group = {
567         .attrs = msipf_attributes
568 };
569
570 static const struct attribute_group msipf_old_attribute_group = {
571         .attrs = msipf_old_attributes
572 };
573
574 static struct platform_driver msipf_driver = {
575         .driver = {
576                 .name = "msi-laptop-pf",
577                 .pm = &msi_laptop_pm,
578         },
579 };
580
581 static struct platform_device *msipf_device;
582
583 /* Initialization */
584
585 static struct quirk_entry quirk_old_ec_model = {
586         .old_ec_model = true,
587 };
588
589 static struct quirk_entry quirk_load_scm_model = {
590         .load_scm_model = true,
591         .ec_delay = true,
592 };
593
594 static struct quirk_entry quirk_load_scm_ro_model = {
595         .load_scm_model = true,
596         .ec_read_only = true,
597 };
598
599 static int dmi_check_cb(const struct dmi_system_id *dmi)
600 {
601         pr_info("Identified laptop model '%s'\n", dmi->ident);
602
603         quirks = dmi->driver_data;
604
605         return 1;
606 }
607
608 static const struct dmi_system_id msi_dmi_table[] __initconst = {
609         {
610                 .ident = "MSI S270",
611                 .matches = {
612                         DMI_MATCH(DMI_SYS_VENDOR, "MICRO-STAR INT"),
613                         DMI_MATCH(DMI_PRODUCT_NAME, "MS-1013"),
614                         DMI_MATCH(DMI_PRODUCT_VERSION, "0131"),
615                         DMI_MATCH(DMI_CHASSIS_VENDOR, "MICRO-STAR INT")
616                 },
617                 .driver_data = &quirk_old_ec_model,
618                 .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                 },
628                 .driver_data = &quirk_old_ec_model,
629                 .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                 },
639                 .driver_data = &quirk_old_ec_model,
640                 .callback = dmi_check_cb
641         },
642         {
643                 .ident = "Medion MD96100",
644                 .matches = {
645                         DMI_MATCH(DMI_SYS_VENDOR, "NOTEBOOK"),
646                         DMI_MATCH(DMI_PRODUCT_NAME, "SAM2000"),
647                         DMI_MATCH(DMI_PRODUCT_VERSION, "0131"),
648                         DMI_MATCH(DMI_CHASSIS_VENDOR, "MICRO-STAR INT")
649                 },
650                 .driver_data = &quirk_old_ec_model,
651                 .callback = dmi_check_cb
652         },
653         {
654                 .ident = "MSI N034",
655                 .matches = {
656                         DMI_MATCH(DMI_SYS_VENDOR,
657                                 "MICRO-STAR INTERNATIONAL CO., LTD"),
658                         DMI_MATCH(DMI_PRODUCT_NAME, "MS-N034"),
659                         DMI_MATCH(DMI_CHASSIS_VENDOR,
660                         "MICRO-STAR INTERNATIONAL CO., LTD")
661                 },
662                 .driver_data = &quirk_load_scm_model,
663                 .callback = dmi_check_cb
664         },
665         {
666                 .ident = "MSI N051",
667                 .matches = {
668                         DMI_MATCH(DMI_SYS_VENDOR,
669                                 "MICRO-STAR INTERNATIONAL CO., LTD"),
670                         DMI_MATCH(DMI_PRODUCT_NAME, "MS-N051"),
671                         DMI_MATCH(DMI_CHASSIS_VENDOR,
672                         "MICRO-STAR INTERNATIONAL CO., LTD")
673                 },
674                 .driver_data = &quirk_load_scm_model,
675                 .callback = dmi_check_cb
676         },
677         {
678                 .ident = "MSI N014",
679                 .matches = {
680                         DMI_MATCH(DMI_SYS_VENDOR,
681                                 "MICRO-STAR INTERNATIONAL CO., LTD"),
682                         DMI_MATCH(DMI_PRODUCT_NAME, "MS-N014"),
683                 },
684                 .driver_data = &quirk_load_scm_model,
685                 .callback = dmi_check_cb
686         },
687         {
688                 .ident = "MSI CR620",
689                 .matches = {
690                         DMI_MATCH(DMI_SYS_VENDOR,
691                                 "Micro-Star International"),
692                         DMI_MATCH(DMI_PRODUCT_NAME, "CR620"),
693                 },
694                 .driver_data = &quirk_load_scm_model,
695                 .callback = dmi_check_cb
696         },
697         {
698                 .ident = "MSI U270",
699                 .matches = {
700                         DMI_MATCH(DMI_SYS_VENDOR,
701                                 "Micro-Star International Co., Ltd."),
702                         DMI_MATCH(DMI_PRODUCT_NAME, "U270 series"),
703                 },
704                 .driver_data = &quirk_load_scm_model,
705                 .callback = dmi_check_cb
706         },
707         {
708                 .ident = "MSI U90/U100",
709                 .matches = {
710                         DMI_MATCH(DMI_SYS_VENDOR,
711                                 "MICRO-STAR INTERNATIONAL CO., LTD"),
712                         DMI_MATCH(DMI_PRODUCT_NAME, "U90/U100"),
713                 },
714                 .driver_data = &quirk_load_scm_ro_model,
715                 .callback = dmi_check_cb
716         },
717         { }
718 };
719
720 static int rfkill_bluetooth_set(void *data, bool blocked)
721 {
722         /* Do something with blocked...*/
723         /*
724          * blocked == false is on
725          * blocked == true is off
726          */
727         int result = set_device_state(blocked ? "0" : "1", 0,
728                         MSI_STANDARD_EC_BLUETOOTH_MASK);
729
730         return min(result, 0);
731 }
732
733 static int rfkill_wlan_set(void *data, bool blocked)
734 {
735         int result = set_device_state(blocked ? "0" : "1", 0,
736                         MSI_STANDARD_EC_WLAN_MASK);
737
738         return min(result, 0);
739 }
740
741 static int rfkill_threeg_set(void *data, bool blocked)
742 {
743         int result = set_device_state(blocked ? "0" : "1", 0,
744                         MSI_STANDARD_EC_3G_MASK);
745
746         return min(result, 0);
747 }
748
749 static const struct rfkill_ops rfkill_bluetooth_ops = {
750         .set_block = rfkill_bluetooth_set
751 };
752
753 static const struct rfkill_ops rfkill_wlan_ops = {
754         .set_block = rfkill_wlan_set
755 };
756
757 static const struct rfkill_ops rfkill_threeg_ops = {
758         .set_block = rfkill_threeg_set
759 };
760
761 static void rfkill_cleanup(void)
762 {
763         if (rfk_bluetooth) {
764                 rfkill_unregister(rfk_bluetooth);
765                 rfkill_destroy(rfk_bluetooth);
766         }
767
768         if (rfk_threeg) {
769                 rfkill_unregister(rfk_threeg);
770                 rfkill_destroy(rfk_threeg);
771         }
772
773         if (rfk_wlan) {
774                 rfkill_unregister(rfk_wlan);
775                 rfkill_destroy(rfk_wlan);
776         }
777 }
778
779 static bool msi_rfkill_set_state(struct rfkill *rfkill, bool blocked)
780 {
781         if (quirks->ec_read_only)
782                 return rfkill_set_hw_state(rfkill, blocked);
783         else
784                 return rfkill_set_sw_state(rfkill, blocked);
785 }
786
787 static void msi_update_rfkill(struct work_struct *ignored)
788 {
789         get_wireless_state_ec_standard();
790
791         if (rfk_wlan)
792                 msi_rfkill_set_state(rfk_wlan, !wlan_s);
793         if (rfk_bluetooth)
794                 msi_rfkill_set_state(rfk_bluetooth, !bluetooth_s);
795         if (rfk_threeg)
796                 msi_rfkill_set_state(rfk_threeg, !threeg_s);
797 }
798 static DECLARE_DELAYED_WORK(msi_rfkill_dwork, msi_update_rfkill);
799 static DECLARE_WORK(msi_rfkill_work, msi_update_rfkill);
800
801 static void msi_send_touchpad_key(struct work_struct *ignored)
802 {
803         u8 rdata;
804         int result;
805
806         result = ec_read(MSI_STANDARD_EC_FUNCTIONS_ADDRESS, &rdata);
807         if (result < 0)
808                 return;
809
810         sparse_keymap_report_event(msi_laptop_input_dev,
811                 (rdata & MSI_STANDARD_EC_TOUCHPAD_MASK) ?
812                 KEY_TOUCHPAD_ON : KEY_TOUCHPAD_OFF, 1, true);
813 }
814 static DECLARE_DELAYED_WORK(msi_touchpad_dwork, msi_send_touchpad_key);
815 static DECLARE_WORK(msi_touchpad_work, msi_send_touchpad_key);
816
817 static bool msi_laptop_i8042_filter(unsigned char data, unsigned char str,
818                                 struct serio *port)
819 {
820         static bool extended;
821
822         if (str & I8042_STR_AUXDATA)
823                 return false;
824
825         /* 0x54 wwan, 0x62 bluetooth, 0x76 wlan, 0xE4 touchpad toggle*/
826         if (unlikely(data == 0xe0)) {
827                 extended = true;
828                 return false;
829         } else if (unlikely(extended)) {
830                 extended = false;
831                 switch (data) {
832                 case 0xE4:
833                         if (quirks->ec_delay) {
834                                 schedule_delayed_work(&msi_touchpad_dwork,
835                                         round_jiffies_relative(0.5 * HZ));
836                         } else
837                                 schedule_work(&msi_touchpad_work);
838                         break;
839                 case 0x54:
840                 case 0x62:
841                 case 0x76:
842                         if (quirks->ec_delay) {
843                                 schedule_delayed_work(&msi_rfkill_dwork,
844                                         round_jiffies_relative(0.5 * HZ));
845                         } else
846                                 schedule_work(&msi_rfkill_work);
847                         break;
848                 }
849         }
850
851         return false;
852 }
853
854 static void msi_init_rfkill(struct work_struct *ignored)
855 {
856         if (rfk_wlan) {
857                 rfkill_set_sw_state(rfk_wlan, !wlan_s);
858                 rfkill_wlan_set(NULL, !wlan_s);
859         }
860         if (rfk_bluetooth) {
861                 rfkill_set_sw_state(rfk_bluetooth, !bluetooth_s);
862                 rfkill_bluetooth_set(NULL, !bluetooth_s);
863         }
864         if (rfk_threeg) {
865                 rfkill_set_sw_state(rfk_threeg, !threeg_s);
866                 rfkill_threeg_set(NULL, !threeg_s);
867         }
868 }
869 static DECLARE_DELAYED_WORK(msi_rfkill_init, msi_init_rfkill);
870
871 static int rfkill_init(struct platform_device *sdev)
872 {
873         /* add rfkill */
874         int retval;
875
876         /* keep the hardware wireless state */
877         get_wireless_state_ec_standard();
878
879         rfk_bluetooth = rfkill_alloc("msi-bluetooth", &sdev->dev,
880                                 RFKILL_TYPE_BLUETOOTH,
881                                 &rfkill_bluetooth_ops, NULL);
882         if (!rfk_bluetooth) {
883                 retval = -ENOMEM;
884                 goto err_bluetooth;
885         }
886         retval = rfkill_register(rfk_bluetooth);
887         if (retval)
888                 goto err_bluetooth;
889
890         rfk_wlan = rfkill_alloc("msi-wlan", &sdev->dev, RFKILL_TYPE_WLAN,
891                                 &rfkill_wlan_ops, NULL);
892         if (!rfk_wlan) {
893                 retval = -ENOMEM;
894                 goto err_wlan;
895         }
896         retval = rfkill_register(rfk_wlan);
897         if (retval)
898                 goto err_wlan;
899
900         if (threeg_exists) {
901                 rfk_threeg = rfkill_alloc("msi-threeg", &sdev->dev,
902                                 RFKILL_TYPE_WWAN, &rfkill_threeg_ops, NULL);
903                 if (!rfk_threeg) {
904                         retval = -ENOMEM;
905                         goto err_threeg;
906                 }
907                 retval = rfkill_register(rfk_threeg);
908                 if (retval)
909                         goto err_threeg;
910         }
911
912         /* schedule to run rfkill state initial */
913         if (quirks->ec_delay) {
914                 schedule_delayed_work(&msi_rfkill_init,
915                         round_jiffies_relative(1 * HZ));
916         } else
917                 schedule_work(&msi_rfkill_work);
918
919         return 0;
920
921 err_threeg:
922         rfkill_destroy(rfk_threeg);
923         if (rfk_wlan)
924                 rfkill_unregister(rfk_wlan);
925 err_wlan:
926         rfkill_destroy(rfk_wlan);
927         if (rfk_bluetooth)
928                 rfkill_unregister(rfk_bluetooth);
929 err_bluetooth:
930         rfkill_destroy(rfk_bluetooth);
931
932         return retval;
933 }
934
935 #ifdef CONFIG_PM_SLEEP
936 static int msi_laptop_resume(struct device *device)
937 {
938         u8 data;
939         int result;
940
941         if (!quirks->load_scm_model)
942                 return 0;
943
944         /* set load SCM to disable hardware control by fn key */
945         result = ec_read(MSI_STANDARD_EC_SCM_LOAD_ADDRESS, &data);
946         if (result < 0)
947                 return result;
948
949         result = ec_write(MSI_STANDARD_EC_SCM_LOAD_ADDRESS,
950                 data | MSI_STANDARD_EC_SCM_LOAD_MASK);
951         if (result < 0)
952                 return result;
953
954         return 0;
955 }
956 #endif
957
958 static int __init msi_laptop_input_setup(void)
959 {
960         int err;
961
962         msi_laptop_input_dev = input_allocate_device();
963         if (!msi_laptop_input_dev)
964                 return -ENOMEM;
965
966         msi_laptop_input_dev->name = "MSI Laptop hotkeys";
967         msi_laptop_input_dev->phys = "msi-laptop/input0";
968         msi_laptop_input_dev->id.bustype = BUS_HOST;
969
970         err = sparse_keymap_setup(msi_laptop_input_dev,
971                 msi_laptop_keymap, NULL);
972         if (err)
973                 goto err_free_dev;
974
975         err = input_register_device(msi_laptop_input_dev);
976         if (err)
977                 goto err_free_dev;
978
979         return 0;
980
981 err_free_dev:
982         input_free_device(msi_laptop_input_dev);
983         return err;
984 }
985
986 static int __init load_scm_model_init(struct platform_device *sdev)
987 {
988         u8 data;
989         int result;
990
991         if (!quirks->ec_read_only) {
992                 /* allow userland write sysfs file  */
993                 dev_attr_bluetooth.store = store_bluetooth;
994                 dev_attr_wlan.store = store_wlan;
995                 dev_attr_threeg.store = store_threeg;
996                 dev_attr_bluetooth.attr.mode |= S_IWUSR;
997                 dev_attr_wlan.attr.mode |= S_IWUSR;
998                 dev_attr_threeg.attr.mode |= S_IWUSR;
999         }
1000
1001         /* disable hardware control by fn key */
1002         result = ec_read(MSI_STANDARD_EC_SCM_LOAD_ADDRESS, &data);
1003         if (result < 0)
1004                 return result;
1005
1006         result = ec_write(MSI_STANDARD_EC_SCM_LOAD_ADDRESS,
1007                 data | MSI_STANDARD_EC_SCM_LOAD_MASK);
1008         if (result < 0)
1009                 return result;
1010
1011         /* initial rfkill */
1012         result = rfkill_init(sdev);
1013         if (result < 0)
1014                 goto fail_rfkill;
1015
1016         /* setup input device */
1017         result = msi_laptop_input_setup();
1018         if (result)
1019                 goto fail_input;
1020
1021         result = i8042_install_filter(msi_laptop_i8042_filter);
1022         if (result) {
1023                 pr_err("Unable to install key filter\n");
1024                 goto fail_filter;
1025         }
1026
1027         return 0;
1028
1029 fail_filter:
1030         input_unregister_device(msi_laptop_input_dev);
1031
1032 fail_input:
1033         rfkill_cleanup();
1034
1035 fail_rfkill:
1036
1037         return result;
1038
1039 }
1040
1041 static int __init msi_init(void)
1042 {
1043         int ret;
1044
1045         if (acpi_disabled)
1046                 return -ENODEV;
1047
1048         dmi_check_system(msi_dmi_table);
1049         if (!quirks)
1050                 /* quirks may be NULL if no match in DMI table */
1051                 quirks = &quirk_load_scm_model;
1052         if (force)
1053                 quirks = &quirk_old_ec_model;
1054
1055         if (!quirks->old_ec_model)
1056                 get_threeg_exists();
1057
1058         if (auto_brightness < 0 || auto_brightness > 2)
1059                 return -EINVAL;
1060
1061         /* Register backlight stuff */
1062         if (quirks->old_ec_model &&
1063             acpi_video_get_backlight_type() == acpi_backlight_vendor) {
1064                 struct backlight_properties props;
1065                 memset(&props, 0, sizeof(struct backlight_properties));
1066                 props.type = BACKLIGHT_PLATFORM;
1067                 props.max_brightness = MSI_LCD_LEVEL_MAX - 1;
1068                 msibl_device = backlight_device_register("msi-laptop-bl", NULL,
1069                                                          NULL, &msibl_ops,
1070                                                          &props);
1071                 if (IS_ERR(msibl_device))
1072                         return PTR_ERR(msibl_device);
1073         }
1074
1075         ret = platform_driver_register(&msipf_driver);
1076         if (ret)
1077                 goto fail_backlight;
1078
1079         /* Register platform stuff */
1080
1081         msipf_device = platform_device_alloc("msi-laptop-pf", -1);
1082         if (!msipf_device) {
1083                 ret = -ENOMEM;
1084                 goto fail_platform_driver;
1085         }
1086
1087         ret = platform_device_add(msipf_device);
1088         if (ret)
1089                 goto fail_device_add;
1090
1091         if (quirks->load_scm_model && (load_scm_model_init(msipf_device) < 0)) {
1092                 ret = -EINVAL;
1093                 goto fail_scm_model_init;
1094         }
1095
1096         ret = sysfs_create_group(&msipf_device->dev.kobj,
1097                                  &msipf_attribute_group);
1098         if (ret)
1099                 goto fail_create_group;
1100
1101         if (!quirks->old_ec_model) {
1102                 if (threeg_exists)
1103                         ret = device_create_file(&msipf_device->dev,
1104                                                 &dev_attr_threeg);
1105                 if (ret)
1106                         goto fail_create_attr;
1107         } else {
1108                 ret = sysfs_create_group(&msipf_device->dev.kobj,
1109                                          &msipf_old_attribute_group);
1110                 if (ret)
1111                         goto fail_create_attr;
1112
1113                 /* Disable automatic brightness control by default because
1114                  * this module was probably loaded to do brightness control in
1115                  * software. */
1116
1117                 if (auto_brightness != 2)
1118                         set_auto_brightness(auto_brightness);
1119         }
1120
1121         pr_info("driver " MSI_DRIVER_VERSION " successfully loaded\n");
1122
1123         return 0;
1124
1125 fail_create_attr:
1126         sysfs_remove_group(&msipf_device->dev.kobj, &msipf_attribute_group);
1127 fail_create_group:
1128         if (quirks->load_scm_model) {
1129                 i8042_remove_filter(msi_laptop_i8042_filter);
1130                 cancel_delayed_work_sync(&msi_touchpad_dwork);
1131                 input_unregister_device(msi_laptop_input_dev);
1132                 cancel_delayed_work_sync(&msi_rfkill_dwork);
1133                 cancel_work_sync(&msi_rfkill_work);
1134                 rfkill_cleanup();
1135         }
1136 fail_scm_model_init:
1137         platform_device_del(msipf_device);
1138 fail_device_add:
1139         platform_device_put(msipf_device);
1140 fail_platform_driver:
1141         platform_driver_unregister(&msipf_driver);
1142 fail_backlight:
1143         backlight_device_unregister(msibl_device);
1144
1145         return ret;
1146 }
1147
1148 static void __exit msi_cleanup(void)
1149 {
1150         if (quirks->load_scm_model) {
1151                 i8042_remove_filter(msi_laptop_i8042_filter);
1152                 cancel_delayed_work_sync(&msi_touchpad_dwork);
1153                 input_unregister_device(msi_laptop_input_dev);
1154                 cancel_delayed_work_sync(&msi_rfkill_dwork);
1155                 cancel_work_sync(&msi_rfkill_work);
1156                 rfkill_cleanup();
1157         }
1158
1159         sysfs_remove_group(&msipf_device->dev.kobj, &msipf_attribute_group);
1160         if (!quirks->old_ec_model && threeg_exists)
1161                 device_remove_file(&msipf_device->dev, &dev_attr_threeg);
1162         platform_device_unregister(msipf_device);
1163         platform_driver_unregister(&msipf_driver);
1164         backlight_device_unregister(msibl_device);
1165
1166         if (quirks->old_ec_model) {
1167                 /* Enable automatic brightness control again */
1168                 if (auto_brightness != 2)
1169                         set_auto_brightness(1);
1170         }
1171
1172         pr_info("driver unloaded\n");
1173 }
1174
1175 module_init(msi_init);
1176 module_exit(msi_cleanup);
1177
1178 MODULE_AUTHOR("Lennart Poettering");
1179 MODULE_DESCRIPTION("MSI Laptop Support");
1180 MODULE_VERSION(MSI_DRIVER_VERSION);
1181 MODULE_LICENSE("GPL");
1182
1183 MODULE_ALIAS("dmi:*:svnMICRO-STARINT'LCO.,LTD:pnMS-1013:pvr0131*:cvnMICRO-STARINT'LCO.,LTD:ct10:*");
1184 MODULE_ALIAS("dmi:*:svnMicro-StarInternational:pnMS-1058:pvr0581:rvnMSI:rnMS-1058:*:ct10:*");
1185 MODULE_ALIAS("dmi:*:svnMicro-StarInternational:pnMS-1412:*:rvnMSI:rnMS-1412:*:cvnMICRO-STARINT'LCO.,LTD:ct10:*");
1186 MODULE_ALIAS("dmi:*:svnNOTEBOOK:pnSAM2000:pvr0131*:cvnMICRO-STARINT'LCO.,LTD:ct10:*");
1187 MODULE_ALIAS("dmi:*:svnMICRO-STARINTERNATIONAL*:pnMS-N034:*");
1188 MODULE_ALIAS("dmi:*:svnMICRO-STARINTERNATIONAL*:pnMS-N051:*");
1189 MODULE_ALIAS("dmi:*:svnMICRO-STARINTERNATIONAL*:pnMS-N014:*");
1190 MODULE_ALIAS("dmi:*:svnMicro-StarInternational*:pnCR620:*");
1191 MODULE_ALIAS("dmi:*:svnMicro-StarInternational*:pnU270series:*");
1192 MODULE_ALIAS("dmi:*:svnMICRO-STARINTERNATIONAL*:pnU90/U100:*");