4 Copyright (C) 2006 Lennart Poettering <mzxreary (at) 0pointer (dot) de>
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.
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.
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
23 * msi-laptop.c - MSI S270 laptop support. This laptop is sold under
24 * various brands, including "Cytron/TCM/Medion/Tchibo MD96100".
26 * Driver also supports S271, S420 models.
28 * This driver exports a few files in /sys/devices/platform/msi-laptop-pf/:
30 * lcd_level - Screen brightness: contains a single integer in the
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)
38 * wlan - WLAN subsystem enabled: contains either 0 or 1. (ro)
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)
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/.
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.
54 #include <linux/module.h>
55 #include <linux/kernel.h>
56 #include <linux/init.h>
57 #include <linux/acpi.h>
58 #include <linux/dmi.h>
59 #include <linux/backlight.h>
60 #include <linux/platform_device.h>
61 #include <linux/rfkill.h>
62 #include <linux/i8042.h>
64 #define MSI_DRIVER_VERSION "0.5"
66 #define MSI_LCD_LEVEL_MAX 9
68 #define MSI_EC_COMMAND_WIRELESS 0x10
69 #define MSI_EC_COMMAND_LCD_LEVEL 0x11
71 #define MSI_STANDARD_EC_COMMAND_ADDRESS 0x2e
72 #define MSI_STANDARD_EC_BLUETOOTH_MASK (1 << 0)
73 #define MSI_STANDARD_EC_WEBCAM_MASK (1 << 1)
74 #define MSI_STANDARD_EC_WLAN_MASK (1 << 3)
75 #define MSI_STANDARD_EC_3G_MASK (1 << 4)
77 /* For set SCM load flag to disable BIOS fn key */
78 #define MSI_STANDARD_EC_SCM_LOAD_ADDRESS 0x2d
79 #define MSI_STANDARD_EC_SCM_LOAD_MASK (1 << 0)
81 static int msi_laptop_resume(struct platform_device
*device
);
83 #define MSI_STANDARD_EC_DEVICES_EXISTS_ADDRESS 0x2f
86 module_param(force
, bool, 0);
87 MODULE_PARM_DESC(force
, "Force driver load, ignore DMI data");
89 static int auto_brightness
;
90 module_param(auto_brightness
, int, 0);
91 MODULE_PARM_DESC(auto_brightness
, "Enable automatic brightness control (0: disabled; 1: enabled; 2: don't touch)");
93 static bool old_ec_model
;
94 static int wlan_s
, bluetooth_s
, threeg_s
;
95 static int threeg_exists
;
97 /* Some MSI 3G netbook only have one fn key to control Wlan/Bluetooth/3G,
98 * those netbook will load the SCM (windows app) to disable the original
99 * Wlan/Bluetooth control by BIOS when user press fn key, then control
100 * Wlan/Bluetooth/3G by SCM (software control by OS). Without SCM, user
101 * cann't on/off 3G module on those 3G netbook.
102 * On Linux, msi-laptop driver will do the same thing to disable the
103 * original BIOS control, then might need use HAL or other userland
104 * application to do the software control that simulate with SCM.
105 * e.g. MSI N034 netbook
107 static bool load_scm_model
;
108 static struct rfkill
*rfk_wlan
, *rfk_bluetooth
, *rfk_threeg
;
110 /* Hardware access */
112 static int set_lcd_level(int level
)
116 if (level
< 0 || level
>= MSI_LCD_LEVEL_MAX
)
120 buf
[1] = (u8
) (level
*31);
122 return ec_transaction(MSI_EC_COMMAND_LCD_LEVEL
, buf
, sizeof(buf
),
126 static int get_lcd_level(void)
131 result
= ec_transaction(MSI_EC_COMMAND_LCD_LEVEL
, &wdata
, 1,
136 return (int) rdata
/ 31;
139 static int get_auto_brightness(void)
144 result
= ec_transaction(MSI_EC_COMMAND_LCD_LEVEL
, &wdata
, 1,
149 return !!(rdata
& 8);
152 static int set_auto_brightness(int enable
)
159 result
= ec_transaction(MSI_EC_COMMAND_LCD_LEVEL
, wdata
, 1,
165 wdata
[1] = (rdata
& 0xF7) | (enable
? 8 : 0);
167 return ec_transaction(MSI_EC_COMMAND_LCD_LEVEL
, wdata
, 2,
171 static ssize_t
set_device_state(const char *buf
, size_t count
, u8 mask
)
177 if (sscanf(buf
, "%i", &status
) != 1 || (status
< 0 || status
> 1))
180 /* read current device state */
181 result
= ec_read(MSI_STANDARD_EC_COMMAND_ADDRESS
, &rdata
);
185 if (!!(rdata
& mask
) != status
) {
186 /* reverse device bit */
188 wdata
= rdata
& ~mask
;
190 wdata
= rdata
| mask
;
192 result
= ec_write(MSI_STANDARD_EC_COMMAND_ADDRESS
, wdata
);
200 static int get_wireless_state(int *wlan
, int *bluetooth
)
205 result
= ec_transaction(MSI_EC_COMMAND_WIRELESS
, &wdata
, 1, &rdata
, 1, 1);
210 *wlan
= !!(rdata
& 8);
213 *bluetooth
= !!(rdata
& 128);
218 static int get_wireless_state_ec_standard(void)
223 result
= ec_read(MSI_STANDARD_EC_COMMAND_ADDRESS
, &rdata
);
227 wlan_s
= !!(rdata
& MSI_STANDARD_EC_WLAN_MASK
);
229 bluetooth_s
= !!(rdata
& MSI_STANDARD_EC_BLUETOOTH_MASK
);
231 threeg_s
= !!(rdata
& MSI_STANDARD_EC_3G_MASK
);
236 static int get_threeg_exists(void)
241 result
= ec_read(MSI_STANDARD_EC_DEVICES_EXISTS_ADDRESS
, &rdata
);
245 threeg_exists
= !!(rdata
& MSI_STANDARD_EC_3G_MASK
);
250 /* Backlight device stuff */
252 static int bl_get_brightness(struct backlight_device
*b
)
254 return get_lcd_level();
258 static int bl_update_status(struct backlight_device
*b
)
260 return set_lcd_level(b
->props
.brightness
);
263 static const struct backlight_ops msibl_ops
= {
264 .get_brightness
= bl_get_brightness
,
265 .update_status
= bl_update_status
,
268 static struct backlight_device
*msibl_device
;
270 /* Platform device */
272 static ssize_t
show_wlan(struct device
*dev
,
273 struct device_attribute
*attr
, char *buf
)
279 ret
= get_wireless_state(&enabled
, NULL
);
281 ret
= get_wireless_state_ec_standard();
287 return sprintf(buf
, "%i\n", enabled
);
290 static ssize_t
store_wlan(struct device
*dev
,
291 struct device_attribute
*attr
, const char *buf
, size_t count
)
293 return set_device_state(buf
, count
, MSI_STANDARD_EC_WLAN_MASK
);
296 static ssize_t
show_bluetooth(struct device
*dev
,
297 struct device_attribute
*attr
, char *buf
)
303 ret
= get_wireless_state(NULL
, &enabled
);
305 ret
= get_wireless_state_ec_standard();
306 enabled
= bluetooth_s
;
311 return sprintf(buf
, "%i\n", enabled
);
314 static ssize_t
store_bluetooth(struct device
*dev
,
315 struct device_attribute
*attr
, const char *buf
, size_t count
)
317 return set_device_state(buf
, count
, MSI_STANDARD_EC_BLUETOOTH_MASK
);
320 static ssize_t
show_threeg(struct device
*dev
,
321 struct device_attribute
*attr
, char *buf
)
326 /* old msi ec not support 3G */
330 ret
= get_wireless_state_ec_standard();
334 return sprintf(buf
, "%i\n", threeg_s
);
337 static ssize_t
store_threeg(struct device
*dev
,
338 struct device_attribute
*attr
, const char *buf
, size_t count
)
340 return set_device_state(buf
, count
, MSI_STANDARD_EC_3G_MASK
);
343 static ssize_t
show_lcd_level(struct device
*dev
,
344 struct device_attribute
*attr
, char *buf
)
349 ret
= get_lcd_level();
353 return sprintf(buf
, "%i\n", ret
);
356 static ssize_t
store_lcd_level(struct device
*dev
,
357 struct device_attribute
*attr
, const char *buf
, size_t count
)
362 if (sscanf(buf
, "%i", &level
) != 1 ||
363 (level
< 0 || level
>= MSI_LCD_LEVEL_MAX
))
366 ret
= set_lcd_level(level
);
373 static ssize_t
show_auto_brightness(struct device
*dev
,
374 struct device_attribute
*attr
, char *buf
)
379 ret
= get_auto_brightness();
383 return sprintf(buf
, "%i\n", ret
);
386 static ssize_t
store_auto_brightness(struct device
*dev
,
387 struct device_attribute
*attr
, const char *buf
, size_t count
)
392 if (sscanf(buf
, "%i", &enable
) != 1 || (enable
!= (enable
& 1)))
395 ret
= set_auto_brightness(enable
);
402 static DEVICE_ATTR(lcd_level
, 0644, show_lcd_level
, store_lcd_level
);
403 static DEVICE_ATTR(auto_brightness
, 0644, show_auto_brightness
,
404 store_auto_brightness
);
405 static DEVICE_ATTR(bluetooth
, 0444, show_bluetooth
, NULL
);
406 static DEVICE_ATTR(wlan
, 0444, show_wlan
, NULL
);
407 static DEVICE_ATTR(threeg
, 0444, show_threeg
, NULL
);
409 static struct attribute
*msipf_attributes
[] = {
410 &dev_attr_lcd_level
.attr
,
411 &dev_attr_auto_brightness
.attr
,
412 &dev_attr_bluetooth
.attr
,
417 static struct attribute_group msipf_attribute_group
= {
418 .attrs
= msipf_attributes
421 static struct platform_driver msipf_driver
= {
423 .name
= "msi-laptop-pf",
424 .owner
= THIS_MODULE
,
426 .resume
= msi_laptop_resume
,
429 static struct platform_device
*msipf_device
;
433 static int dmi_check_cb(const struct dmi_system_id
*id
)
435 printk(KERN_INFO
"msi-laptop: Identified laptop model '%s'.\n",
440 static struct dmi_system_id __initdata msi_dmi_table
[] = {
444 DMI_MATCH(DMI_SYS_VENDOR
, "MICRO-STAR INT'L CO.,LTD"),
445 DMI_MATCH(DMI_PRODUCT_NAME
, "MS-1013"),
446 DMI_MATCH(DMI_PRODUCT_VERSION
, "0131"),
447 DMI_MATCH(DMI_CHASSIS_VENDOR
,
448 "MICRO-STAR INT'L CO.,LTD")
450 .callback
= dmi_check_cb
455 DMI_MATCH(DMI_SYS_VENDOR
, "Micro-Star International"),
456 DMI_MATCH(DMI_PRODUCT_NAME
, "MS-1058"),
457 DMI_MATCH(DMI_PRODUCT_VERSION
, "0581"),
458 DMI_MATCH(DMI_BOARD_NAME
, "MS-1058")
460 .callback
= dmi_check_cb
465 DMI_MATCH(DMI_SYS_VENDOR
, "Micro-Star International"),
466 DMI_MATCH(DMI_PRODUCT_NAME
, "MS-1412"),
467 DMI_MATCH(DMI_BOARD_VENDOR
, "MSI"),
468 DMI_MATCH(DMI_BOARD_NAME
, "MS-1412")
470 .callback
= dmi_check_cb
473 .ident
= "Medion MD96100",
475 DMI_MATCH(DMI_SYS_VENDOR
, "NOTEBOOK"),
476 DMI_MATCH(DMI_PRODUCT_NAME
, "SAM2000"),
477 DMI_MATCH(DMI_PRODUCT_VERSION
, "0131"),
478 DMI_MATCH(DMI_CHASSIS_VENDOR
,
479 "MICRO-STAR INT'L CO.,LTD")
481 .callback
= dmi_check_cb
486 static struct dmi_system_id __initdata msi_load_scm_models_dmi_table
[] = {
490 DMI_MATCH(DMI_SYS_VENDOR
,
491 "MICRO-STAR INTERNATIONAL CO., LTD"),
492 DMI_MATCH(DMI_PRODUCT_NAME
, "MS-N034"),
493 DMI_MATCH(DMI_CHASSIS_VENDOR
,
494 "MICRO-STAR INTERNATIONAL CO., LTD")
496 .callback
= dmi_check_cb
501 DMI_MATCH(DMI_SYS_VENDOR
,
502 "MICRO-STAR INTERNATIONAL CO., LTD"),
503 DMI_MATCH(DMI_PRODUCT_NAME
, "MS-N051"),
504 DMI_MATCH(DMI_CHASSIS_VENDOR
,
505 "MICRO-STAR INTERNATIONAL CO., LTD")
507 .callback
= dmi_check_cb
512 DMI_MATCH(DMI_SYS_VENDOR
,
513 "MICRO-STAR INTERNATIONAL CO., LTD"),
514 DMI_MATCH(DMI_PRODUCT_NAME
, "MS-N014"),
516 .callback
= dmi_check_cb
519 .ident
= "MSI CR620",
521 DMI_MATCH(DMI_SYS_VENDOR
,
522 "Micro-Star International"),
523 DMI_MATCH(DMI_PRODUCT_NAME
, "CR620"),
525 .callback
= dmi_check_cb
530 static int rfkill_bluetooth_set(void *data
, bool blocked
)
532 /* Do something with blocked...*/
534 * blocked == false is on
535 * blocked == true is off
538 set_device_state("0", 0, MSI_STANDARD_EC_BLUETOOTH_MASK
);
540 set_device_state("1", 0, MSI_STANDARD_EC_BLUETOOTH_MASK
);
545 static int rfkill_wlan_set(void *data
, bool blocked
)
548 set_device_state("0", 0, MSI_STANDARD_EC_WLAN_MASK
);
550 set_device_state("1", 0, MSI_STANDARD_EC_WLAN_MASK
);
555 static int rfkill_threeg_set(void *data
, bool blocked
)
558 set_device_state("0", 0, MSI_STANDARD_EC_3G_MASK
);
560 set_device_state("1", 0, MSI_STANDARD_EC_3G_MASK
);
565 static const struct rfkill_ops rfkill_bluetooth_ops
= {
566 .set_block
= rfkill_bluetooth_set
569 static const struct rfkill_ops rfkill_wlan_ops
= {
570 .set_block
= rfkill_wlan_set
573 static const struct rfkill_ops rfkill_threeg_ops
= {
574 .set_block
= rfkill_threeg_set
577 static void rfkill_cleanup(void)
580 rfkill_unregister(rfk_bluetooth
);
581 rfkill_destroy(rfk_bluetooth
);
585 rfkill_unregister(rfk_threeg
);
586 rfkill_destroy(rfk_threeg
);
590 rfkill_unregister(rfk_wlan
);
591 rfkill_destroy(rfk_wlan
);
595 static void msi_update_rfkill(struct work_struct
*ignored
)
597 get_wireless_state_ec_standard();
600 rfkill_set_sw_state(rfk_wlan
, !wlan_s
);
602 rfkill_set_sw_state(rfk_bluetooth
, !bluetooth_s
);
604 rfkill_set_sw_state(rfk_threeg
, !threeg_s
);
606 static DECLARE_DELAYED_WORK(msi_rfkill_work
, msi_update_rfkill
);
608 static bool msi_laptop_i8042_filter(unsigned char data
, unsigned char str
,
611 static bool extended
;
616 /* 0x54 wwan, 0x62 bluetooth, 0x76 wlan*/
617 if (unlikely(data
== 0xe0)) {
620 } else if (unlikely(extended
)) {
625 schedule_delayed_work(&msi_rfkill_work
,
626 round_jiffies_relative(0.5 * HZ
));
635 static void msi_init_rfkill(struct work_struct
*ignored
)
638 rfkill_set_sw_state(rfk_wlan
, !wlan_s
);
639 rfkill_wlan_set(NULL
, !wlan_s
);
642 rfkill_set_sw_state(rfk_bluetooth
, !bluetooth_s
);
643 rfkill_bluetooth_set(NULL
, !bluetooth_s
);
646 rfkill_set_sw_state(rfk_threeg
, !threeg_s
);
647 rfkill_threeg_set(NULL
, !threeg_s
);
650 static DECLARE_DELAYED_WORK(msi_rfkill_init
, msi_init_rfkill
);
652 static int rfkill_init(struct platform_device
*sdev
)
657 /* keep the hardware wireless state */
658 get_wireless_state_ec_standard();
660 rfk_bluetooth
= rfkill_alloc("msi-bluetooth", &sdev
->dev
,
661 RFKILL_TYPE_BLUETOOTH
,
662 &rfkill_bluetooth_ops
, NULL
);
663 if (!rfk_bluetooth
) {
667 retval
= rfkill_register(rfk_bluetooth
);
671 rfk_wlan
= rfkill_alloc("msi-wlan", &sdev
->dev
, RFKILL_TYPE_WLAN
,
672 &rfkill_wlan_ops
, NULL
);
677 retval
= rfkill_register(rfk_wlan
);
682 rfk_threeg
= rfkill_alloc("msi-threeg", &sdev
->dev
,
683 RFKILL_TYPE_WWAN
, &rfkill_threeg_ops
, NULL
);
688 retval
= rfkill_register(rfk_threeg
);
693 /* schedule to run rfkill state initial */
694 schedule_delayed_work(&msi_rfkill_init
,
695 round_jiffies_relative(1 * HZ
));
700 rfkill_destroy(rfk_threeg
);
702 rfkill_unregister(rfk_wlan
);
704 rfkill_destroy(rfk_wlan
);
706 rfkill_unregister(rfk_bluetooth
);
708 rfkill_destroy(rfk_bluetooth
);
713 static int msi_laptop_resume(struct platform_device
*device
)
721 /* set load SCM to disable hardware control by fn key */
722 result
= ec_read(MSI_STANDARD_EC_SCM_LOAD_ADDRESS
, &data
);
726 result
= ec_write(MSI_STANDARD_EC_SCM_LOAD_ADDRESS
,
727 data
| MSI_STANDARD_EC_SCM_LOAD_MASK
);
734 static int load_scm_model_init(struct platform_device
*sdev
)
739 /* allow userland write sysfs file */
740 dev_attr_bluetooth
.store
= store_bluetooth
;
741 dev_attr_wlan
.store
= store_wlan
;
742 dev_attr_threeg
.store
= store_threeg
;
743 dev_attr_bluetooth
.attr
.mode
|= S_IWUSR
;
744 dev_attr_wlan
.attr
.mode
|= S_IWUSR
;
745 dev_attr_threeg
.attr
.mode
|= S_IWUSR
;
747 /* disable hardware control by fn key */
748 result
= ec_read(MSI_STANDARD_EC_SCM_LOAD_ADDRESS
, &data
);
752 result
= ec_write(MSI_STANDARD_EC_SCM_LOAD_ADDRESS
,
753 data
| MSI_STANDARD_EC_SCM_LOAD_MASK
);
758 result
= rfkill_init(sdev
);
762 result
= i8042_install_filter(msi_laptop_i8042_filter
);
765 "msi-laptop: Unable to install key filter\n");
780 static int __init
msi_init(void)
787 if (force
|| dmi_check_system(msi_dmi_table
))
793 if (!old_ec_model
&& dmi_check_system(msi_load_scm_models_dmi_table
))
796 if (auto_brightness
< 0 || auto_brightness
> 2)
799 /* Register backlight stuff */
801 if (acpi_video_backlight_support()) {
802 printk(KERN_INFO
"MSI: Brightness ignored, must be controlled "
803 "by ACPI video driver\n");
805 struct backlight_properties props
;
806 memset(&props
, 0, sizeof(struct backlight_properties
));
807 props
.max_brightness
= MSI_LCD_LEVEL_MAX
- 1;
808 msibl_device
= backlight_device_register("msi-laptop-bl", NULL
,
811 if (IS_ERR(msibl_device
))
812 return PTR_ERR(msibl_device
);
815 ret
= platform_driver_register(&msipf_driver
);
819 /* Register platform stuff */
821 msipf_device
= platform_device_alloc("msi-laptop-pf", -1);
824 goto fail_platform_driver
;
827 ret
= platform_device_add(msipf_device
);
829 goto fail_platform_device1
;
831 if (load_scm_model
&& (load_scm_model_init(msipf_device
) < 0)) {
833 goto fail_platform_device1
;
836 ret
= sysfs_create_group(&msipf_device
->dev
.kobj
,
837 &msipf_attribute_group
);
839 goto fail_platform_device2
;
843 ret
= device_create_file(&msipf_device
->dev
,
846 goto fail_platform_device2
;
849 /* Disable automatic brightness control by default because
850 * this module was probably loaded to do brightness control in
853 if (auto_brightness
!= 2)
854 set_auto_brightness(auto_brightness
);
856 printk(KERN_INFO
"msi-laptop: driver "MSI_DRIVER_VERSION
" successfully loaded.\n");
860 fail_platform_device2
:
862 if (load_scm_model
) {
863 i8042_remove_filter(msi_laptop_i8042_filter
);
864 cancel_delayed_work_sync(&msi_rfkill_work
);
867 platform_device_del(msipf_device
);
869 fail_platform_device1
:
871 platform_device_put(msipf_device
);
873 fail_platform_driver
:
875 platform_driver_unregister(&msipf_driver
);
879 backlight_device_unregister(msibl_device
);
884 static void __exit
msi_cleanup(void)
886 if (load_scm_model
) {
887 i8042_remove_filter(msi_laptop_i8042_filter
);
888 cancel_delayed_work_sync(&msi_rfkill_work
);
892 sysfs_remove_group(&msipf_device
->dev
.kobj
, &msipf_attribute_group
);
893 if (!old_ec_model
&& threeg_exists
)
894 device_remove_file(&msipf_device
->dev
, &dev_attr_threeg
);
895 platform_device_unregister(msipf_device
);
896 platform_driver_unregister(&msipf_driver
);
897 backlight_device_unregister(msibl_device
);
899 /* Enable automatic brightness control again */
900 if (auto_brightness
!= 2)
901 set_auto_brightness(1);
903 printk(KERN_INFO
"msi-laptop: driver unloaded.\n");
906 module_init(msi_init
);
907 module_exit(msi_cleanup
);
909 MODULE_AUTHOR("Lennart Poettering");
910 MODULE_DESCRIPTION("MSI Laptop Support");
911 MODULE_VERSION(MSI_DRIVER_VERSION
);
912 MODULE_LICENSE("GPL");
914 MODULE_ALIAS("dmi:*:svnMICRO-STARINT'LCO.,LTD:pnMS-1013:pvr0131*:cvnMICRO-STARINT'LCO.,LTD:ct10:*");
915 MODULE_ALIAS("dmi:*:svnMicro-StarInternational:pnMS-1058:pvr0581:rvnMSI:rnMS-1058:*:ct10:*");
916 MODULE_ALIAS("dmi:*:svnMicro-StarInternational:pnMS-1412:*:rvnMSI:rnMS-1412:*:cvnMICRO-STARINT'LCO.,LTD:ct10:*");
917 MODULE_ALIAS("dmi:*:svnNOTEBOOK:pnSAM2000:pvr0131*:cvnMICRO-STARINT'LCO.,LTD:ct10:*");
918 MODULE_ALIAS("dmi:*:svnMICRO-STARINTERNATIONAL*:pnMS-N034:*");
919 MODULE_ALIAS("dmi:*:svnMICRO-STARINTERNATIONAL*:pnMS-N051:*");
920 MODULE_ALIAS("dmi:*:svnMICRO-STARINTERNATIONAL*:pnMS-N014:*");
921 MODULE_ALIAS("dmi:*:svnMicro-StarInternational*:pnCR620:*");