msi-laptop: Detect 3G device exists by standard ec command
[linux-2.6/linux-acpi-2.6/ibm-acpi-2.6.git] / drivers / platform / x86 / msi-laptop.c
blobc2b05da4289a7dadd8f79f1add1b507610f5c77f
1 /*-*-linux-c-*-*/
3 /*
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
19 02110-1301, USA.
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
31 * range 0..8. (rw)
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>
63 #define MSI_DRIVER_VERSION "0.5"
65 #define MSI_LCD_LEVEL_MAX 9
67 #define MSI_EC_COMMAND_WIRELESS 0x10
68 #define MSI_EC_COMMAND_LCD_LEVEL 0x11
70 #define MSI_STANDARD_EC_COMMAND_ADDRESS 0x2e
71 #define MSI_STANDARD_EC_BLUETOOTH_MASK (1 << 0)
72 #define MSI_STANDARD_EC_WEBCAM_MASK (1 << 1)
73 #define MSI_STANDARD_EC_WLAN_MASK (1 << 3)
74 #define MSI_STANDARD_EC_3G_MASK (1 << 4)
76 /* For set SCM load flag to disable BIOS fn key */
77 #define MSI_STANDARD_EC_SCM_LOAD_ADDRESS 0x2d
78 #define MSI_STANDARD_EC_SCM_LOAD_MASK (1 << 0)
80 static int msi_laptop_resume(struct platform_device *device);
82 #define MSI_STANDARD_EC_DEVICES_EXISTS_ADDRESS 0x2f
84 static int force;
85 module_param(force, bool, 0);
86 MODULE_PARM_DESC(force, "Force driver load, ignore DMI data");
88 static int auto_brightness;
89 module_param(auto_brightness, int, 0);
90 MODULE_PARM_DESC(auto_brightness, "Enable automatic brightness control (0: disabled; 1: enabled; 2: don't touch)");
92 static bool old_ec_model;
93 static int wlan_s, bluetooth_s, threeg_s;
94 static int threeg_exists;
96 /* Some MSI 3G netbook only have one fn key to control Wlan/Bluetooth/3G,
97 * those netbook will load the SCM (windows app) to disable the original
98 * Wlan/Bluetooth control by BIOS when user press fn key, then control
99 * Wlan/Bluetooth/3G by SCM (software control by OS). Without SCM, user
100 * cann't on/off 3G module on those 3G netbook.
101 * On Linux, msi-laptop driver will do the same thing to disable the
102 * original BIOS control, then might need use HAL or other userland
103 * application to do the software control that simulate with SCM.
104 * e.g. MSI N034 netbook
106 static bool load_scm_model;
107 static struct rfkill *rfk_wlan, *rfk_bluetooth, *rfk_threeg;
109 /* Hardware access */
111 static int set_lcd_level(int level)
113 u8 buf[2];
115 if (level < 0 || level >= MSI_LCD_LEVEL_MAX)
116 return -EINVAL;
118 buf[0] = 0x80;
119 buf[1] = (u8) (level*31);
121 return ec_transaction(MSI_EC_COMMAND_LCD_LEVEL, buf, sizeof(buf), NULL, 0, 1);
124 static int get_lcd_level(void)
126 u8 wdata = 0, rdata;
127 int result;
129 result = ec_transaction(MSI_EC_COMMAND_LCD_LEVEL, &wdata, 1, &rdata, 1, 1);
130 if (result < 0)
131 return result;
133 return (int) rdata / 31;
136 static int get_auto_brightness(void)
138 u8 wdata = 4, rdata;
139 int result;
141 result = ec_transaction(MSI_EC_COMMAND_LCD_LEVEL, &wdata, 1, &rdata, 1, 1);
142 if (result < 0)
143 return result;
145 return !!(rdata & 8);
148 static int set_auto_brightness(int enable)
150 u8 wdata[2], rdata;
151 int result;
153 wdata[0] = 4;
155 result = ec_transaction(MSI_EC_COMMAND_LCD_LEVEL, wdata, 1, &rdata, 1, 1);
156 if (result < 0)
157 return result;
159 wdata[0] = 0x84;
160 wdata[1] = (rdata & 0xF7) | (enable ? 8 : 0);
162 return ec_transaction(MSI_EC_COMMAND_LCD_LEVEL, wdata, 2, NULL, 0, 1);
165 static ssize_t set_device_state(const char *buf, size_t count, u8 mask)
167 int status;
168 u8 wdata = 0, rdata;
169 int result;
171 if (sscanf(buf, "%i", &status) != 1 || (status < 0 || status > 1))
172 return -EINVAL;
174 /* read current device state */
175 result = ec_read(MSI_STANDARD_EC_COMMAND_ADDRESS, &rdata);
176 if (result < 0)
177 return -EINVAL;
179 if (!!(rdata & mask) != status) {
180 /* reverse device bit */
181 if (rdata & mask)
182 wdata = rdata & ~mask;
183 else
184 wdata = rdata | mask;
186 result = ec_write(MSI_STANDARD_EC_COMMAND_ADDRESS, wdata);
187 if (result < 0)
188 return -EINVAL;
191 return count;
194 static int get_wireless_state(int *wlan, int *bluetooth)
196 u8 wdata = 0, rdata;
197 int result;
199 result = ec_transaction(MSI_EC_COMMAND_WIRELESS, &wdata, 1, &rdata, 1, 1);
200 if (result < 0)
201 return -1;
203 if (wlan)
204 *wlan = !!(rdata & 8);
206 if (bluetooth)
207 *bluetooth = !!(rdata & 128);
209 return 0;
212 static int get_wireless_state_ec_standard(void)
214 u8 rdata;
215 int result;
217 result = ec_read(MSI_STANDARD_EC_COMMAND_ADDRESS, &rdata);
218 if (result < 0)
219 return -1;
221 wlan_s = !!(rdata & MSI_STANDARD_EC_WLAN_MASK);
223 bluetooth_s = !!(rdata & MSI_STANDARD_EC_BLUETOOTH_MASK);
225 threeg_s = !!(rdata & MSI_STANDARD_EC_3G_MASK);
227 return 0;
230 static int get_threeg_exists(void)
232 u8 rdata;
233 int result;
235 result = ec_read(MSI_STANDARD_EC_DEVICES_EXISTS_ADDRESS, &rdata);
236 if (result < 0)
237 return -1;
239 threeg_exists = !!(rdata & MSI_STANDARD_EC_3G_MASK);
241 return 0;
244 /* Backlight device stuff */
246 static int bl_get_brightness(struct backlight_device *b)
248 return get_lcd_level();
252 static int bl_update_status(struct backlight_device *b)
254 return set_lcd_level(b->props.brightness);
257 static struct backlight_ops msibl_ops = {
258 .get_brightness = bl_get_brightness,
259 .update_status = bl_update_status,
262 static struct backlight_device *msibl_device;
264 /* Platform device */
266 static ssize_t show_wlan(struct device *dev,
267 struct device_attribute *attr, char *buf)
270 int ret, enabled;
272 if (old_ec_model) {
273 ret = get_wireless_state(&enabled, NULL);
274 } else {
275 ret = get_wireless_state_ec_standard();
276 enabled = wlan_s;
278 if (ret < 0)
279 return ret;
281 return sprintf(buf, "%i\n", enabled);
284 static ssize_t store_wlan(struct device *dev,
285 struct device_attribute *attr, const char *buf, size_t count)
287 return set_device_state(buf, count, MSI_STANDARD_EC_WLAN_MASK);
290 static ssize_t show_bluetooth(struct device *dev,
291 struct device_attribute *attr, char *buf)
294 int ret, enabled;
296 if (old_ec_model) {
297 ret = get_wireless_state(NULL, &enabled);
298 } else {
299 ret = get_wireless_state_ec_standard();
300 enabled = bluetooth_s;
302 if (ret < 0)
303 return ret;
305 return sprintf(buf, "%i\n", enabled);
308 static ssize_t store_bluetooth(struct device *dev,
309 struct device_attribute *attr, const char *buf, size_t count)
311 return set_device_state(buf, count, MSI_STANDARD_EC_BLUETOOTH_MASK);
314 static ssize_t show_threeg(struct device *dev,
315 struct device_attribute *attr, char *buf)
318 int ret;
320 /* old msi ec not support 3G */
321 if (old_ec_model)
322 return -1;
324 ret = get_wireless_state_ec_standard();
325 if (ret < 0)
326 return ret;
328 return sprintf(buf, "%i\n", threeg_s);
331 static ssize_t store_threeg(struct device *dev,
332 struct device_attribute *attr, const char *buf, size_t count)
334 return set_device_state(buf, count, MSI_STANDARD_EC_3G_MASK);
337 static ssize_t show_lcd_level(struct device *dev,
338 struct device_attribute *attr, char *buf)
341 int ret;
343 ret = get_lcd_level();
344 if (ret < 0)
345 return ret;
347 return sprintf(buf, "%i\n", ret);
350 static ssize_t store_lcd_level(struct device *dev,
351 struct device_attribute *attr, const char *buf, size_t count)
354 int level, ret;
356 if (sscanf(buf, "%i", &level) != 1 || (level < 0 || level >= MSI_LCD_LEVEL_MAX))
357 return -EINVAL;
359 ret = set_lcd_level(level);
360 if (ret < 0)
361 return ret;
363 return count;
366 static ssize_t show_auto_brightness(struct device *dev,
367 struct device_attribute *attr, char *buf)
370 int ret;
372 ret = get_auto_brightness();
373 if (ret < 0)
374 return ret;
376 return sprintf(buf, "%i\n", ret);
379 static ssize_t store_auto_brightness(struct device *dev,
380 struct device_attribute *attr, const char *buf, size_t count)
383 int enable, ret;
385 if (sscanf(buf, "%i", &enable) != 1 || (enable != (enable & 1)))
386 return -EINVAL;
388 ret = set_auto_brightness(enable);
389 if (ret < 0)
390 return ret;
392 return count;
395 static DEVICE_ATTR(lcd_level, 0644, show_lcd_level, store_lcd_level);
396 static DEVICE_ATTR(auto_brightness, 0644, show_auto_brightness, store_auto_brightness);
397 static DEVICE_ATTR(bluetooth, 0444, show_bluetooth, NULL);
398 static DEVICE_ATTR(wlan, 0444, show_wlan, NULL);
399 static DEVICE_ATTR(threeg, 0444, show_threeg, NULL);
401 static struct attribute *msipf_attributes[] = {
402 &dev_attr_lcd_level.attr,
403 &dev_attr_auto_brightness.attr,
404 &dev_attr_bluetooth.attr,
405 &dev_attr_wlan.attr,
406 NULL
409 static struct attribute_group msipf_attribute_group = {
410 .attrs = msipf_attributes
413 static struct platform_driver msipf_driver = {
414 .driver = {
415 .name = "msi-laptop-pf",
416 .owner = THIS_MODULE,
418 .resume = msi_laptop_resume,
421 static struct platform_device *msipf_device;
423 /* Initialization */
425 static int dmi_check_cb(const struct dmi_system_id *id)
427 printk("msi-laptop: Identified laptop model '%s'.\n", id->ident);
428 return 0;
431 static struct dmi_system_id __initdata msi_dmi_table[] = {
433 .ident = "MSI S270",
434 .matches = {
435 DMI_MATCH(DMI_SYS_VENDOR, "MICRO-STAR INT'L CO.,LTD"),
436 DMI_MATCH(DMI_PRODUCT_NAME, "MS-1013"),
437 DMI_MATCH(DMI_PRODUCT_VERSION, "0131"),
438 DMI_MATCH(DMI_CHASSIS_VENDOR, "MICRO-STAR INT'L CO.,LTD")
440 .callback = dmi_check_cb
443 .ident = "MSI S271",
444 .matches = {
445 DMI_MATCH(DMI_SYS_VENDOR, "Micro-Star International"),
446 DMI_MATCH(DMI_PRODUCT_NAME, "MS-1058"),
447 DMI_MATCH(DMI_PRODUCT_VERSION, "0581"),
448 DMI_MATCH(DMI_BOARD_NAME, "MS-1058")
450 .callback = dmi_check_cb
453 .ident = "MSI S420",
454 .matches = {
455 DMI_MATCH(DMI_SYS_VENDOR, "Micro-Star International"),
456 DMI_MATCH(DMI_PRODUCT_NAME, "MS-1412"),
457 DMI_MATCH(DMI_BOARD_VENDOR, "MSI"),
458 DMI_MATCH(DMI_BOARD_NAME, "MS-1412")
460 .callback = dmi_check_cb
463 .ident = "Medion MD96100",
464 .matches = {
465 DMI_MATCH(DMI_SYS_VENDOR, "NOTEBOOK"),
466 DMI_MATCH(DMI_PRODUCT_NAME, "SAM2000"),
467 DMI_MATCH(DMI_PRODUCT_VERSION, "0131"),
468 DMI_MATCH(DMI_CHASSIS_VENDOR, "MICRO-STAR INT'L CO.,LTD")
470 .callback = dmi_check_cb
475 static struct dmi_system_id __initdata msi_load_scm_models_dmi_table[] = {
477 .ident = "MSI N034",
478 .matches = {
479 DMI_MATCH(DMI_SYS_VENDOR,
480 "MICRO-STAR INTERNATIONAL CO., LTD"),
481 DMI_MATCH(DMI_PRODUCT_NAME, "MS-N034"),
482 DMI_MATCH(DMI_CHASSIS_VENDOR,
483 "MICRO-STAR INTERNATIONAL CO., LTD")
485 .callback = dmi_check_cb
490 static int rfkill_bluetooth_set(void *data, bool blocked)
492 /* Do something with blocked...*/
494 * blocked == false is on
495 * blocked == true is off
497 if (blocked)
498 set_device_state("0", 0, MSI_STANDARD_EC_BLUETOOTH_MASK);
499 else
500 set_device_state("1", 0, MSI_STANDARD_EC_BLUETOOTH_MASK);
502 return 0;
505 static int rfkill_wlan_set(void *data, bool blocked)
507 if (blocked)
508 set_device_state("0", 0, MSI_STANDARD_EC_WLAN_MASK);
509 else
510 set_device_state("1", 0, MSI_STANDARD_EC_WLAN_MASK);
512 return 0;
515 static int rfkill_threeg_set(void *data, bool blocked)
517 if (blocked)
518 set_device_state("0", 0, MSI_STANDARD_EC_3G_MASK);
519 else
520 set_device_state("1", 0, MSI_STANDARD_EC_3G_MASK);
522 return 0;
525 static struct rfkill_ops rfkill_bluetooth_ops = {
526 .set_block = rfkill_bluetooth_set
529 static struct rfkill_ops rfkill_wlan_ops = {
530 .set_block = rfkill_wlan_set
533 static struct rfkill_ops rfkill_threeg_ops = {
534 .set_block = rfkill_threeg_set
537 static void rfkill_cleanup(void)
539 if (rfk_bluetooth) {
540 rfkill_unregister(rfk_bluetooth);
541 rfkill_destroy(rfk_bluetooth);
544 if (rfk_threeg) {
545 rfkill_unregister(rfk_threeg);
546 rfkill_destroy(rfk_threeg);
549 if (rfk_wlan) {
550 rfkill_unregister(rfk_wlan);
551 rfkill_destroy(rfk_wlan);
555 static int rfkill_init(struct platform_device *sdev)
557 /* add rfkill */
558 int retval;
560 rfk_bluetooth = rfkill_alloc("msi-bluetooth", &sdev->dev,
561 RFKILL_TYPE_BLUETOOTH,
562 &rfkill_bluetooth_ops, NULL);
563 if (!rfk_bluetooth) {
564 retval = -ENOMEM;
565 goto err_bluetooth;
567 retval = rfkill_register(rfk_bluetooth);
568 if (retval)
569 goto err_bluetooth;
571 rfk_wlan = rfkill_alloc("msi-wlan", &sdev->dev, RFKILL_TYPE_WLAN,
572 &rfkill_wlan_ops, NULL);
573 if (!rfk_wlan) {
574 retval = -ENOMEM;
575 goto err_wlan;
577 retval = rfkill_register(rfk_wlan);
578 if (retval)
579 goto err_wlan;
581 if (threeg_exists) {
582 rfk_threeg = rfkill_alloc("msi-threeg", &sdev->dev,
583 RFKILL_TYPE_WWAN, &rfkill_threeg_ops, NULL);
584 if (!rfk_threeg) {
585 retval = -ENOMEM;
586 goto err_threeg;
588 retval = rfkill_register(rfk_threeg);
589 if (retval)
590 goto err_threeg;
593 return 0;
595 err_threeg:
596 rfkill_destroy(rfk_threeg);
597 if (rfk_wlan)
598 rfkill_unregister(rfk_wlan);
599 err_wlan:
600 rfkill_destroy(rfk_wlan);
601 if (rfk_bluetooth)
602 rfkill_unregister(rfk_bluetooth);
603 err_bluetooth:
604 rfkill_destroy(rfk_bluetooth);
606 return retval;
609 static int msi_laptop_resume(struct platform_device *device)
611 u8 data;
612 int result;
614 if (!load_scm_model)
615 return 0;
617 /* set load SCM to disable hardware control by fn key */
618 result = ec_read(MSI_STANDARD_EC_SCM_LOAD_ADDRESS, &data);
619 if (result < 0)
620 return result;
622 result = ec_write(MSI_STANDARD_EC_SCM_LOAD_ADDRESS,
623 data | MSI_STANDARD_EC_SCM_LOAD_MASK);
624 if (result < 0)
625 return result;
627 return 0;
630 static int load_scm_model_init(struct platform_device *sdev)
632 u8 data;
633 int result;
635 /* allow userland write sysfs file */
636 dev_attr_bluetooth.store = store_bluetooth;
637 dev_attr_wlan.store = store_wlan;
638 dev_attr_threeg.store = store_threeg;
639 dev_attr_bluetooth.attr.mode |= S_IWUSR;
640 dev_attr_wlan.attr.mode |= S_IWUSR;
641 dev_attr_threeg.attr.mode |= S_IWUSR;
643 /* disable hardware control by fn key */
644 result = ec_read(MSI_STANDARD_EC_SCM_LOAD_ADDRESS, &data);
645 if (result < 0)
646 return result;
648 result = ec_write(MSI_STANDARD_EC_SCM_LOAD_ADDRESS,
649 data | MSI_STANDARD_EC_SCM_LOAD_MASK);
650 if (result < 0)
651 return result;
653 /* initial rfkill */
654 result = rfkill_init(sdev);
655 if (result < 0)
656 return result;
658 return 0;
661 static int __init msi_init(void)
663 int ret;
665 if (acpi_disabled)
666 return -ENODEV;
668 if (force || dmi_check_system(msi_dmi_table))
669 old_ec_model = 1;
671 if (!old_ec_model)
672 get_threeg_exists();
674 if (!old_ec_model && dmi_check_system(msi_load_scm_models_dmi_table))
675 load_scm_model = 1;
677 if (auto_brightness < 0 || auto_brightness > 2)
678 return -EINVAL;
680 /* Register backlight stuff */
682 if (acpi_video_backlight_support()) {
683 printk(KERN_INFO "MSI: Brightness ignored, must be controlled "
684 "by ACPI video driver\n");
685 } else {
686 msibl_device = backlight_device_register("msi-laptop-bl", NULL,
687 NULL, &msibl_ops);
688 if (IS_ERR(msibl_device))
689 return PTR_ERR(msibl_device);
690 msibl_device->props.max_brightness = MSI_LCD_LEVEL_MAX-1;
693 ret = platform_driver_register(&msipf_driver);
694 if (ret)
695 goto fail_backlight;
697 /* Register platform stuff */
699 msipf_device = platform_device_alloc("msi-laptop-pf", -1);
700 if (!msipf_device) {
701 ret = -ENOMEM;
702 goto fail_platform_driver;
705 ret = platform_device_add(msipf_device);
706 if (ret)
707 goto fail_platform_device1;
709 if (load_scm_model && (load_scm_model_init(msipf_device) < 0)) {
710 ret = -EINVAL;
711 goto fail_platform_device1;
714 ret = sysfs_create_group(&msipf_device->dev.kobj, &msipf_attribute_group);
715 if (ret)
716 goto fail_platform_device2;
718 if (!old_ec_model) {
719 if (threeg_exists)
720 ret = device_create_file(&msipf_device->dev,
721 &dev_attr_threeg);
722 if (ret)
723 goto fail_platform_device2;
726 /* Disable automatic brightness control by default because
727 * this module was probably loaded to do brightness control in
728 * software. */
730 if (auto_brightness != 2)
731 set_auto_brightness(auto_brightness);
733 printk(KERN_INFO "msi-laptop: driver "MSI_DRIVER_VERSION" successfully loaded.\n");
735 return 0;
737 fail_platform_device2:
739 platform_device_del(msipf_device);
741 fail_platform_device1:
743 platform_device_put(msipf_device);
745 fail_platform_driver:
747 platform_driver_unregister(&msipf_driver);
749 fail_backlight:
751 backlight_device_unregister(msibl_device);
753 return ret;
756 static void __exit msi_cleanup(void)
759 sysfs_remove_group(&msipf_device->dev.kobj, &msipf_attribute_group);
760 if (!old_ec_model && threeg_exists)
761 device_remove_file(&msipf_device->dev, &dev_attr_threeg);
762 platform_device_unregister(msipf_device);
763 platform_driver_unregister(&msipf_driver);
764 backlight_device_unregister(msibl_device);
766 rfkill_cleanup();
768 /* Enable automatic brightness control again */
769 if (auto_brightness != 2)
770 set_auto_brightness(1);
772 printk(KERN_INFO "msi-laptop: driver unloaded.\n");
775 module_init(msi_init);
776 module_exit(msi_cleanup);
778 MODULE_AUTHOR("Lennart Poettering");
779 MODULE_DESCRIPTION("MSI Laptop Support");
780 MODULE_VERSION(MSI_DRIVER_VERSION);
781 MODULE_LICENSE("GPL");
783 MODULE_ALIAS("dmi:*:svnMICRO-STARINT'LCO.,LTD:pnMS-1013:pvr0131*:cvnMICRO-STARINT'LCO.,LTD:ct10:*");
784 MODULE_ALIAS("dmi:*:svnMicro-StarInternational:pnMS-1058:pvr0581:rvnMSI:rnMS-1058:*:ct10:*");
785 MODULE_ALIAS("dmi:*:svnMicro-StarInternational:pnMS-1412:*:rvnMSI:rnMS-1412:*:cvnMICRO-STARINT'LCO.,LTD:ct10:*");
786 MODULE_ALIAS("dmi:*:svnNOTEBOOK:pnSAM2000:pvr0131*:cvnMICRO-STARINT'LCO.,LTD:ct10:*");
787 MODULE_ALIAS("dmi:*:svnMICRO-STARINTERNATIONAL*:pnMS-N034:*");