Yong Wang | ee027e4 | 2010-03-21 10:26:34 +0800 | [diff] [blame] | 1 | /* |
Corentin Chary | e12e6d9 | 2011-02-26 10:20:31 +0100 | [diff] [blame] | 2 | * Asus PC WMI hotkey driver |
Yong Wang | ee027e4 | 2010-03-21 10:26:34 +0800 | [diff] [blame] | 3 | * |
| 4 | * Copyright(C) 2010 Intel Corporation. |
Corentin Chary | 57ab7da | 2011-02-26 10:20:32 +0100 | [diff] [blame] | 5 | * Copyright(C) 2010-2011 Corentin Chary <corentin.chary@gmail.com> |
Yong Wang | ee027e4 | 2010-03-21 10:26:34 +0800 | [diff] [blame] | 6 | * |
| 7 | * Portions based on wistron_btns.c: |
| 8 | * Copyright (C) 2005 Miloslav Trmac <mitr@volny.cz> |
| 9 | * Copyright (C) 2005 Bernhard Rosenkraenzer <bero@arklinux.org> |
| 10 | * Copyright (C) 2005 Dmitry Torokhov <dtor@mail.ru> |
| 11 | * |
| 12 | * This program is free software; you can redistribute it and/or modify |
| 13 | * it under the terms of the GNU General Public License as published by |
| 14 | * the Free Software Foundation; either version 2 of the License, or |
| 15 | * (at your option) any later version. |
| 16 | * |
| 17 | * This program is distributed in the hope that it will be useful, |
| 18 | * but WITHOUT ANY WARRANTY; without even the implied warranty of |
| 19 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
| 20 | * GNU General Public License for more details. |
| 21 | * |
| 22 | * You should have received a copy of the GNU General Public License |
| 23 | * along with this program; if not, write to the Free Software |
| 24 | * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA |
| 25 | */ |
| 26 | |
Yong Wang | 8124888 | 2010-04-11 09:26:33 +0800 | [diff] [blame] | 27 | #define pr_fmt(fmt) KBUILD_MODNAME ": " fmt |
| 28 | |
Yong Wang | ee027e4 | 2010-03-21 10:26:34 +0800 | [diff] [blame] | 29 | #include <linux/kernel.h> |
| 30 | #include <linux/module.h> |
| 31 | #include <linux/init.h> |
| 32 | #include <linux/types.h> |
Tejun Heo | a32f392 | 2010-04-05 11:37:59 +0900 | [diff] [blame] | 33 | #include <linux/slab.h> |
Yong Wang | ee027e4 | 2010-03-21 10:26:34 +0800 | [diff] [blame] | 34 | #include <linux/input.h> |
| 35 | #include <linux/input/sparse-keymap.h> |
Yong Wang | 3d7b165 | 2010-04-11 09:27:54 +0800 | [diff] [blame] | 36 | #include <linux/fb.h> |
| 37 | #include <linux/backlight.h> |
Corentin Chary | 084fca6 | 2010-11-29 08:14:06 +0100 | [diff] [blame] | 38 | #include <linux/leds.h> |
Corentin Chary | ba48fdb | 2010-11-29 08:14:07 +0100 | [diff] [blame] | 39 | #include <linux/rfkill.h> |
Corentin Chary | afa7c88 | 2011-02-06 13:28:28 +0100 | [diff] [blame] | 40 | #include <linux/pci.h> |
| 41 | #include <linux/pci_hotplug.h> |
Corentin Chary | e07babd | 2011-02-26 10:20:42 +0100 | [diff] [blame] | 42 | #include <linux/hwmon.h> |
| 43 | #include <linux/hwmon-sysfs.h> |
Corentin Chary | 8c1b2d8 | 2010-11-29 08:14:09 +0100 | [diff] [blame] | 44 | #include <linux/debugfs.h> |
| 45 | #include <linux/seq_file.h> |
Yong Wang | 45f2c69 | 2010-04-11 09:27:19 +0800 | [diff] [blame] | 46 | #include <linux/platform_device.h> |
Corentin Chary | 6118b8a | 2011-07-01 11:34:36 +0200 | [diff] [blame] | 47 | #include <linux/thermal.h> |
Lv Zheng | 8b48463 | 2013-12-03 08:49:16 +0800 | [diff] [blame] | 48 | #include <linux/acpi.h> |
Hans de Goede | d8c66f6 | 2014-07-08 10:47:21 +0200 | [diff] [blame] | 49 | #include <linux/dmi.h> |
AceLan Kao | 272c77d | 2012-06-13 09:32:06 +0200 | [diff] [blame] | 50 | #include <acpi/video.h> |
Yong Wang | ee027e4 | 2010-03-21 10:26:34 +0800 | [diff] [blame] | 51 | |
Corentin Chary | e12e6d9 | 2011-02-26 10:20:31 +0100 | [diff] [blame] | 52 | #include "asus-wmi.h" |
Yong Wang | 45f2c69 | 2010-04-11 09:27:19 +0800 | [diff] [blame] | 53 | |
Corentin Chary | 5909c65 | 2012-12-17 16:00:05 -0800 | [diff] [blame] | 54 | MODULE_AUTHOR("Corentin Chary <corentin.chary@gmail.com>, " |
Corentin Chary | e12e6d9 | 2011-02-26 10:20:31 +0100 | [diff] [blame] | 55 | "Yong Wang <yong.y.wang@intel.com>"); |
| 56 | MODULE_DESCRIPTION("Asus Generic WMI Driver"); |
Yong Wang | ee027e4 | 2010-03-21 10:26:34 +0800 | [diff] [blame] | 57 | MODULE_LICENSE("GPL"); |
| 58 | |
Corentin Chary | e12e6d9 | 2011-02-26 10:20:31 +0100 | [diff] [blame] | 59 | #define to_asus_wmi_driver(pdrv) \ |
| 60 | (container_of((pdrv), struct asus_wmi_driver, platform_driver)) |
Yong Wang | ee027e4 | 2010-03-21 10:26:34 +0800 | [diff] [blame] | 61 | |
Corentin Chary | e12e6d9 | 2011-02-26 10:20:31 +0100 | [diff] [blame] | 62 | #define ASUS_WMI_MGMT_GUID "97845ED0-4E6D-11DE-8A39-0800200C9A66" |
Yong Wang | ee027e4 | 2010-03-21 10:26:34 +0800 | [diff] [blame] | 63 | |
Corentin Chary | 33e0e6f | 2011-02-06 13:28:34 +0100 | [diff] [blame] | 64 | #define NOTIFY_BRNUP_MIN 0x11 |
| 65 | #define NOTIFY_BRNUP_MAX 0x1f |
| 66 | #define NOTIFY_BRNDOWN_MIN 0x20 |
| 67 | #define NOTIFY_BRNDOWN_MAX 0x2e |
Corentin Chary | e9809c0 | 2011-07-01 11:34:31 +0200 | [diff] [blame] | 68 | #define NOTIFY_KBD_BRTUP 0xc4 |
| 69 | #define NOTIFY_KBD_BRTDWN 0xc5 |
Yong Wang | ee027e4 | 2010-03-21 10:26:34 +0800 | [diff] [blame] | 70 | |
Corentin Chary | 4381594 | 2011-02-06 13:28:43 +0100 | [diff] [blame] | 71 | /* WMI Methods */ |
Corentin Chary | 2f686b5 | 2011-02-26 10:20:41 +0100 | [diff] [blame] | 72 | #define ASUS_WMI_METHODID_SPEC 0x43455053 /* BIOS SPECification */ |
| 73 | #define ASUS_WMI_METHODID_SFBD 0x44424653 /* Set First Boot Device */ |
| 74 | #define ASUS_WMI_METHODID_GLCD 0x44434C47 /* Get LCD status */ |
| 75 | #define ASUS_WMI_METHODID_GPID 0x44495047 /* Get Panel ID?? (Resol) */ |
| 76 | #define ASUS_WMI_METHODID_QMOD 0x444F4D51 /* Quiet MODe */ |
| 77 | #define ASUS_WMI_METHODID_SPLV 0x4C425053 /* Set Panel Light Value */ |
Kast Bernd | 53e755c | 2015-05-13 16:24:16 +0200 | [diff] [blame] | 78 | #define ASUS_WMI_METHODID_AGFN 0x4E464741 /* FaN? */ |
Corentin Chary | 2f686b5 | 2011-02-26 10:20:41 +0100 | [diff] [blame] | 79 | #define ASUS_WMI_METHODID_SFUN 0x4E554653 /* FUNCtionalities */ |
| 80 | #define ASUS_WMI_METHODID_SDSP 0x50534453 /* Set DiSPlay output */ |
| 81 | #define ASUS_WMI_METHODID_GDSP 0x50534447 /* Get DiSPlay output */ |
| 82 | #define ASUS_WMI_METHODID_DEVP 0x50564544 /* DEVice Policy */ |
| 83 | #define ASUS_WMI_METHODID_OSVR 0x5256534F /* OS VeRsion */ |
| 84 | #define ASUS_WMI_METHODID_DSTS 0x53544344 /* Device STatuS */ |
| 85 | #define ASUS_WMI_METHODID_DSTS2 0x53545344 /* Device STatuS #2*/ |
| 86 | #define ASUS_WMI_METHODID_BSTS 0x53545342 /* Bios STatuS ? */ |
| 87 | #define ASUS_WMI_METHODID_DEVS 0x53564544 /* DEVice Set */ |
| 88 | #define ASUS_WMI_METHODID_CFVS 0x53564643 /* CPU Frequency Volt Set */ |
| 89 | #define ASUS_WMI_METHODID_KBFT 0x5446424B /* KeyBoard FilTer */ |
| 90 | #define ASUS_WMI_METHODID_INIT 0x54494E49 /* INITialize */ |
| 91 | #define ASUS_WMI_METHODID_HKEY 0x59454B48 /* Hot KEY ?? */ |
Yong Wang | 3d7b165 | 2010-04-11 09:27:54 +0800 | [diff] [blame] | 92 | |
Corentin Chary | d33da3b | 2011-02-26 10:20:35 +0100 | [diff] [blame] | 93 | #define ASUS_WMI_UNSUPPORTED_METHOD 0xFFFFFFFE |
| 94 | |
Corentin Chary | 4381594 | 2011-02-06 13:28:43 +0100 | [diff] [blame] | 95 | /* Wireless */ |
Corentin Chary | 2f686b5 | 2011-02-26 10:20:41 +0100 | [diff] [blame] | 96 | #define ASUS_WMI_DEVID_HW_SWITCH 0x00010001 |
| 97 | #define ASUS_WMI_DEVID_WIRELESS_LED 0x00010002 |
Corentin Chary | 79ec117 | 2011-07-01 11:34:35 +0200 | [diff] [blame] | 98 | #define ASUS_WMI_DEVID_CWAP 0x00010003 |
Corentin Chary | e12e6d9 | 2011-02-26 10:20:31 +0100 | [diff] [blame] | 99 | #define ASUS_WMI_DEVID_WLAN 0x00010011 |
AceLan Kao | a50bd12 | 2012-07-26 17:13:31 +0800 | [diff] [blame] | 100 | #define ASUS_WMI_DEVID_WLAN_LED 0x00010012 |
Corentin Chary | e12e6d9 | 2011-02-26 10:20:31 +0100 | [diff] [blame] | 101 | #define ASUS_WMI_DEVID_BLUETOOTH 0x00010013 |
Corentin Chary | 2f686b5 | 2011-02-26 10:20:41 +0100 | [diff] [blame] | 102 | #define ASUS_WMI_DEVID_GPS 0x00010015 |
Corentin Chary | e12e6d9 | 2011-02-26 10:20:31 +0100 | [diff] [blame] | 103 | #define ASUS_WMI_DEVID_WIMAX 0x00010017 |
| 104 | #define ASUS_WMI_DEVID_WWAN3G 0x00010019 |
Corentin Chary | 2f686b5 | 2011-02-26 10:20:41 +0100 | [diff] [blame] | 105 | #define ASUS_WMI_DEVID_UWB 0x00010021 |
| 106 | |
| 107 | /* Leds */ |
| 108 | /* 0x000200XX and 0x000400XX */ |
Corentin Chary | 79ec117 | 2011-07-01 11:34:35 +0200 | [diff] [blame] | 109 | #define ASUS_WMI_DEVID_LED1 0x00020011 |
| 110 | #define ASUS_WMI_DEVID_LED2 0x00020012 |
| 111 | #define ASUS_WMI_DEVID_LED3 0x00020013 |
| 112 | #define ASUS_WMI_DEVID_LED4 0x00020014 |
| 113 | #define ASUS_WMI_DEVID_LED5 0x00020015 |
| 114 | #define ASUS_WMI_DEVID_LED6 0x00020016 |
Corentin Chary | 4381594 | 2011-02-06 13:28:43 +0100 | [diff] [blame] | 115 | |
| 116 | /* Backlight and Brightness */ |
Oleksij Rempel | aca234f | 2016-04-01 13:35:21 +0200 | [diff] [blame] | 117 | #define ASUS_WMI_DEVID_ALS_ENABLE 0x00050001 /* Ambient Light Sensor */ |
Corentin Chary | e12e6d9 | 2011-02-26 10:20:31 +0100 | [diff] [blame] | 118 | #define ASUS_WMI_DEVID_BACKLIGHT 0x00050011 |
| 119 | #define ASUS_WMI_DEVID_BRIGHTNESS 0x00050012 |
Corentin Chary | 2f686b5 | 2011-02-26 10:20:41 +0100 | [diff] [blame] | 120 | #define ASUS_WMI_DEVID_KBD_BACKLIGHT 0x00050021 |
| 121 | #define ASUS_WMI_DEVID_LIGHT_SENSOR 0x00050022 /* ?? */ |
Corentin Chary | 4381594 | 2011-02-06 13:28:43 +0100 | [diff] [blame] | 122 | |
| 123 | /* Misc */ |
Corentin Chary | e12e6d9 | 2011-02-26 10:20:31 +0100 | [diff] [blame] | 124 | #define ASUS_WMI_DEVID_CAMERA 0x00060013 |
Corentin Chary | 4381594 | 2011-02-06 13:28:43 +0100 | [diff] [blame] | 125 | |
| 126 | /* Storage */ |
Corentin Chary | e12e6d9 | 2011-02-26 10:20:31 +0100 | [diff] [blame] | 127 | #define ASUS_WMI_DEVID_CARDREADER 0x00080013 |
Corentin Chary | 4381594 | 2011-02-06 13:28:43 +0100 | [diff] [blame] | 128 | |
| 129 | /* Input */ |
Corentin Chary | 57ab7da | 2011-02-26 10:20:32 +0100 | [diff] [blame] | 130 | #define ASUS_WMI_DEVID_TOUCHPAD 0x00100011 |
Corentin Chary | e12e6d9 | 2011-02-26 10:20:31 +0100 | [diff] [blame] | 131 | #define ASUS_WMI_DEVID_TOUCHPAD_LED 0x00100012 |
Yong Wang | 3d7b165 | 2010-04-11 09:27:54 +0800 | [diff] [blame] | 132 | |
Corentin Chary | 2f686b5 | 2011-02-26 10:20:41 +0100 | [diff] [blame] | 133 | /* Fan, Thermal */ |
| 134 | #define ASUS_WMI_DEVID_THERMAL_CTRL 0x00110011 |
| 135 | #define ASUS_WMI_DEVID_FAN_CTRL 0x00110012 |
| 136 | |
| 137 | /* Power */ |
| 138 | #define ASUS_WMI_DEVID_PROCESSOR_STATE 0x00120012 |
| 139 | |
AceLan Kao | c0b91b6 | 2012-06-13 09:32:07 +0200 | [diff] [blame] | 140 | /* Deep S3 / Resume on LID open */ |
| 141 | #define ASUS_WMI_DEVID_LID_RESUME 0x00120031 |
| 142 | |
Corentin Chary | 4381594 | 2011-02-06 13:28:43 +0100 | [diff] [blame] | 143 | /* DSTS masks */ |
Corentin Chary | e12e6d9 | 2011-02-26 10:20:31 +0100 | [diff] [blame] | 144 | #define ASUS_WMI_DSTS_STATUS_BIT 0x00000001 |
Corentin Chary | a75fe0d | 2011-02-26 10:20:34 +0100 | [diff] [blame] | 145 | #define ASUS_WMI_DSTS_UNKNOWN_BIT 0x00000002 |
Corentin Chary | e12e6d9 | 2011-02-26 10:20:31 +0100 | [diff] [blame] | 146 | #define ASUS_WMI_DSTS_PRESENCE_BIT 0x00010000 |
Corentin Chary | 2f686b5 | 2011-02-26 10:20:41 +0100 | [diff] [blame] | 147 | #define ASUS_WMI_DSTS_USER_BIT 0x00020000 |
| 148 | #define ASUS_WMI_DSTS_BIOS_BIT 0x00040000 |
Corentin Chary | e12e6d9 | 2011-02-26 10:20:31 +0100 | [diff] [blame] | 149 | #define ASUS_WMI_DSTS_BRIGHTNESS_MASK 0x000000FF |
| 150 | #define ASUS_WMI_DSTS_MAX_BRIGTH_MASK 0x0000FF00 |
Yong Wang | ee027e4 | 2010-03-21 10:26:34 +0800 | [diff] [blame] | 151 | |
Kast Bernd | 53e755c | 2015-05-13 16:24:16 +0200 | [diff] [blame] | 152 | #define ASUS_FAN_DESC "cpu_fan" |
| 153 | #define ASUS_FAN_MFUN 0x13 |
| 154 | #define ASUS_FAN_SFUN_READ 0x06 |
| 155 | #define ASUS_FAN_SFUN_WRITE 0x07 |
| 156 | #define ASUS_FAN_CTRL_MANUAL 1 |
| 157 | #define ASUS_FAN_CTRL_AUTO 2 |
| 158 | |
Kai-Chuan Hsieh | 8023eff | 2016-09-01 23:55:55 +0800 | [diff] [blame] | 159 | #define USB_INTEL_XUSB2PR 0xD0 |
| 160 | #define PCI_DEVICE_ID_INTEL_LYNXPOINT_LP_XHCI 0x9c31 |
| 161 | |
Yong Wang | 3d7b165 | 2010-04-11 09:27:54 +0800 | [diff] [blame] | 162 | struct bios_args { |
Corentin Chary | d33da3b | 2011-02-26 10:20:35 +0100 | [diff] [blame] | 163 | u32 arg0; |
| 164 | u32 arg1; |
| 165 | } __packed; |
Yong Wang | 3d7b165 | 2010-04-11 09:27:54 +0800 | [diff] [blame] | 166 | |
Corentin Chary | 8c1b2d8 | 2010-11-29 08:14:09 +0100 | [diff] [blame] | 167 | /* |
Kast Bernd | 53e755c | 2015-05-13 16:24:16 +0200 | [diff] [blame] | 168 | * Struct that's used for all methods called via AGFN. Naming is |
| 169 | * identically to the AML code. |
| 170 | */ |
| 171 | struct agfn_args { |
| 172 | u16 mfun; /* probably "Multi-function" to be called */ |
| 173 | u16 sfun; /* probably "Sub-function" to be called */ |
| 174 | u16 len; /* size of the hole struct, including subfunction fields */ |
| 175 | u8 stas; /* not used by now */ |
| 176 | u8 err; /* zero on success */ |
| 177 | } __packed; |
| 178 | |
| 179 | /* struct used for calling fan read and write methods */ |
| 180 | struct fan_args { |
| 181 | struct agfn_args agfn; /* common fields */ |
| 182 | u8 fan; /* fan number: 0: set auto mode 1: 1st fan */ |
| 183 | u32 speed; /* read: RPM/100 - write: 0-255 */ |
| 184 | } __packed; |
| 185 | |
| 186 | /* |
Corentin Chary | e12e6d9 | 2011-02-26 10:20:31 +0100 | [diff] [blame] | 187 | * <platform>/ - debugfs root directory |
Corentin Chary | 8c1b2d8 | 2010-11-29 08:14:09 +0100 | [diff] [blame] | 188 | * dev_id - current dev_id |
| 189 | * ctrl_param - current ctrl_param |
Corentin Chary | ef34349 | 2011-02-26 10:20:39 +0100 | [diff] [blame] | 190 | * method_id - current method_id |
Corentin Chary | 8c1b2d8 | 2010-11-29 08:14:09 +0100 | [diff] [blame] | 191 | * devs - call DEVS(dev_id, ctrl_param) and print result |
| 192 | * dsts - call DSTS(dev_id) and print result |
Corentin Chary | ef34349 | 2011-02-26 10:20:39 +0100 | [diff] [blame] | 193 | * call - call method_id(dev_id, ctrl_param) and print result |
Corentin Chary | 8c1b2d8 | 2010-11-29 08:14:09 +0100 | [diff] [blame] | 194 | */ |
Corentin Chary | e12e6d9 | 2011-02-26 10:20:31 +0100 | [diff] [blame] | 195 | struct asus_wmi_debug { |
Corentin Chary | 8c1b2d8 | 2010-11-29 08:14:09 +0100 | [diff] [blame] | 196 | struct dentry *root; |
Corentin Chary | ef34349 | 2011-02-26 10:20:39 +0100 | [diff] [blame] | 197 | u32 method_id; |
Corentin Chary | 8c1b2d8 | 2010-11-29 08:14:09 +0100 | [diff] [blame] | 198 | u32 dev_id; |
| 199 | u32 ctrl_param; |
| 200 | }; |
| 201 | |
Corentin Chary | a7ce3f0 | 2011-02-26 10:20:33 +0100 | [diff] [blame] | 202 | struct asus_rfkill { |
| 203 | struct asus_wmi *asus; |
| 204 | struct rfkill *rfkill; |
| 205 | u32 dev_id; |
| 206 | }; |
| 207 | |
Corentin Chary | e12e6d9 | 2011-02-26 10:20:31 +0100 | [diff] [blame] | 208 | struct asus_wmi { |
Corentin Chary | 1d070f89 | 2011-02-26 10:20:36 +0100 | [diff] [blame] | 209 | int dsts_id; |
Corentin Chary | 46dbca8 | 2011-02-26 10:20:38 +0100 | [diff] [blame] | 210 | int spec; |
| 211 | int sfun; |
Corentin Chary | 1d070f89 | 2011-02-26 10:20:36 +0100 | [diff] [blame] | 212 | |
Yong Wang | 8124888 | 2010-04-11 09:26:33 +0800 | [diff] [blame] | 213 | struct input_dev *inputdev; |
Yong Wang | 3d7b165 | 2010-04-11 09:27:54 +0800 | [diff] [blame] | 214 | struct backlight_device *backlight_device; |
Corentin Chary | 27c136c | 2010-11-29 08:14:05 +0100 | [diff] [blame] | 215 | struct platform_device *platform_device; |
Corentin Chary | 084fca6 | 2010-11-29 08:14:06 +0100 | [diff] [blame] | 216 | |
AceLan Kao | 6cae06e | 2012-07-27 16:51:59 +0800 | [diff] [blame] | 217 | struct led_classdev wlan_led; |
| 218 | int wlan_led_wk; |
Corentin Chary | 084fca6 | 2010-11-29 08:14:06 +0100 | [diff] [blame] | 219 | struct led_classdev tpd_led; |
| 220 | int tpd_led_wk; |
Corentin Chary | e9809c0 | 2011-07-01 11:34:31 +0200 | [diff] [blame] | 221 | struct led_classdev kbd_led; |
| 222 | int kbd_led_wk; |
Corentin Chary | 084fca6 | 2010-11-29 08:14:06 +0100 | [diff] [blame] | 223 | struct workqueue_struct *led_workqueue; |
| 224 | struct work_struct tpd_led_work; |
Corentin Chary | e9809c0 | 2011-07-01 11:34:31 +0200 | [diff] [blame] | 225 | struct work_struct kbd_led_work; |
AceLan Kao | 6cae06e | 2012-07-27 16:51:59 +0800 | [diff] [blame] | 226 | struct work_struct wlan_led_work; |
Corentin Chary | ba48fdb | 2010-11-29 08:14:07 +0100 | [diff] [blame] | 227 | |
Corentin Chary | a7ce3f0 | 2011-02-26 10:20:33 +0100 | [diff] [blame] | 228 | struct asus_rfkill wlan; |
| 229 | struct asus_rfkill bluetooth; |
| 230 | struct asus_rfkill wimax; |
| 231 | struct asus_rfkill wwan3g; |
Corentin Chary | 43be8bd | 2011-07-01 11:34:40 +0200 | [diff] [blame] | 232 | struct asus_rfkill gps; |
Corentin Chary | a912d32 | 2011-07-01 11:34:41 +0200 | [diff] [blame] | 233 | struct asus_rfkill uwb; |
Corentin Chary | 8c1b2d8 | 2010-11-29 08:14:09 +0100 | [diff] [blame] | 234 | |
Kast Bernd | 53e755c | 2015-05-13 16:24:16 +0200 | [diff] [blame] | 235 | bool asus_hwmon_fan_manual_mode; |
| 236 | int asus_hwmon_num_fans; |
| 237 | int asus_hwmon_pwm; |
| 238 | |
Corentin Chary | afa7c88 | 2011-02-06 13:28:28 +0100 | [diff] [blame] | 239 | struct hotplug_slot *hotplug_slot; |
| 240 | struct mutex hotplug_lock; |
Corentin Chary | 279f8f9 | 2011-02-06 13:28:29 +0100 | [diff] [blame] | 241 | struct mutex wmi_lock; |
| 242 | struct workqueue_struct *hotplug_workqueue; |
| 243 | struct work_struct hotplug_work; |
Corentin Chary | afa7c88 | 2011-02-06 13:28:28 +0100 | [diff] [blame] | 244 | |
Corentin Chary | e12e6d9 | 2011-02-26 10:20:31 +0100 | [diff] [blame] | 245 | struct asus_wmi_debug debug; |
| 246 | |
| 247 | struct asus_wmi_driver *driver; |
Yong Wang | 8124888 | 2010-04-11 09:26:33 +0800 | [diff] [blame] | 248 | }; |
| 249 | |
Corentin Chary | e12e6d9 | 2011-02-26 10:20:31 +0100 | [diff] [blame] | 250 | static int asus_wmi_input_init(struct asus_wmi *asus) |
Yong Wang | ee027e4 | 2010-03-21 10:26:34 +0800 | [diff] [blame] | 251 | { |
| 252 | int err; |
| 253 | |
Corentin Chary | e12e6d9 | 2011-02-26 10:20:31 +0100 | [diff] [blame] | 254 | asus->inputdev = input_allocate_device(); |
| 255 | if (!asus->inputdev) |
Yong Wang | ee027e4 | 2010-03-21 10:26:34 +0800 | [diff] [blame] | 256 | return -ENOMEM; |
| 257 | |
Corentin Chary | 58a9f39 | 2011-03-30 16:32:32 +0200 | [diff] [blame] | 258 | asus->inputdev->name = asus->driver->input_name; |
| 259 | asus->inputdev->phys = asus->driver->input_phys; |
Corentin Chary | e12e6d9 | 2011-02-26 10:20:31 +0100 | [diff] [blame] | 260 | asus->inputdev->id.bustype = BUS_HOST; |
| 261 | asus->inputdev->dev.parent = &asus->platform_device->dev; |
Seth Forshee | 39bbde0 | 2011-07-04 09:49:20 +0200 | [diff] [blame] | 262 | set_bit(EV_REP, asus->inputdev->evbit); |
Yong Wang | ee027e4 | 2010-03-21 10:26:34 +0800 | [diff] [blame] | 263 | |
Corentin Chary | e12e6d9 | 2011-02-26 10:20:31 +0100 | [diff] [blame] | 264 | err = sparse_keymap_setup(asus->inputdev, asus->driver->keymap, NULL); |
Yong Wang | ee027e4 | 2010-03-21 10:26:34 +0800 | [diff] [blame] | 265 | if (err) |
| 266 | goto err_free_dev; |
| 267 | |
Corentin Chary | e12e6d9 | 2011-02-26 10:20:31 +0100 | [diff] [blame] | 268 | err = input_register_device(asus->inputdev); |
Yong Wang | ee027e4 | 2010-03-21 10:26:34 +0800 | [diff] [blame] | 269 | if (err) |
| 270 | goto err_free_keymap; |
| 271 | |
| 272 | return 0; |
| 273 | |
| 274 | err_free_keymap: |
Corentin Chary | e12e6d9 | 2011-02-26 10:20:31 +0100 | [diff] [blame] | 275 | sparse_keymap_free(asus->inputdev); |
Yong Wang | ee027e4 | 2010-03-21 10:26:34 +0800 | [diff] [blame] | 276 | err_free_dev: |
Corentin Chary | e12e6d9 | 2011-02-26 10:20:31 +0100 | [diff] [blame] | 277 | input_free_device(asus->inputdev); |
Yong Wang | ee027e4 | 2010-03-21 10:26:34 +0800 | [diff] [blame] | 278 | return err; |
| 279 | } |
| 280 | |
Corentin Chary | e12e6d9 | 2011-02-26 10:20:31 +0100 | [diff] [blame] | 281 | static void asus_wmi_input_exit(struct asus_wmi *asus) |
Yong Wang | 8124888 | 2010-04-11 09:26:33 +0800 | [diff] [blame] | 282 | { |
Corentin Chary | e12e6d9 | 2011-02-26 10:20:31 +0100 | [diff] [blame] | 283 | if (asus->inputdev) { |
| 284 | sparse_keymap_free(asus->inputdev); |
| 285 | input_unregister_device(asus->inputdev); |
Yong Wang | 8124888 | 2010-04-11 09:26:33 +0800 | [diff] [blame] | 286 | } |
| 287 | |
Corentin Chary | e12e6d9 | 2011-02-26 10:20:31 +0100 | [diff] [blame] | 288 | asus->inputdev = NULL; |
Yong Wang | 8124888 | 2010-04-11 09:26:33 +0800 | [diff] [blame] | 289 | } |
| 290 | |
Corentin Chary | d33da3b | 2011-02-26 10:20:35 +0100 | [diff] [blame] | 291 | static int asus_wmi_evaluate_method(u32 method_id, u32 arg0, u32 arg1, |
| 292 | u32 *retval) |
Yong Wang | 3d7b165 | 2010-04-11 09:27:54 +0800 | [diff] [blame] | 293 | { |
Corentin Chary | d33da3b | 2011-02-26 10:20:35 +0100 | [diff] [blame] | 294 | struct bios_args args = { |
| 295 | .arg0 = arg0, |
| 296 | .arg1 = arg1, |
| 297 | }; |
| 298 | struct acpi_buffer input = { (acpi_size) sizeof(args), &args }; |
Yong Wang | 3d7b165 | 2010-04-11 09:27:54 +0800 | [diff] [blame] | 299 | struct acpi_buffer output = { ACPI_ALLOCATE_BUFFER, NULL }; |
Yong Wang | 3d7b165 | 2010-04-11 09:27:54 +0800 | [diff] [blame] | 300 | acpi_status status; |
Corentin Chary | d33da3b | 2011-02-26 10:20:35 +0100 | [diff] [blame] | 301 | union acpi_object *obj; |
Rickard Strandqvist | 8ad3be1 | 2014-06-01 14:58:52 +0200 | [diff] [blame] | 302 | u32 tmp = 0; |
Yong Wang | 3d7b165 | 2010-04-11 09:27:54 +0800 | [diff] [blame] | 303 | |
Corentin Chary | d33da3b | 2011-02-26 10:20:35 +0100 | [diff] [blame] | 304 | status = wmi_evaluate_method(ASUS_WMI_MGMT_GUID, 1, method_id, |
Corentin Chary | afa7c88 | 2011-02-06 13:28:28 +0100 | [diff] [blame] | 305 | &input, &output); |
Yong Wang | 3d7b165 | 2010-04-11 09:27:54 +0800 | [diff] [blame] | 306 | |
| 307 | if (ACPI_FAILURE(status)) |
Corentin Chary | d33da3b | 2011-02-26 10:20:35 +0100 | [diff] [blame] | 308 | goto exit; |
Yong Wang | 3d7b165 | 2010-04-11 09:27:54 +0800 | [diff] [blame] | 309 | |
| 310 | obj = (union acpi_object *)output.pointer; |
| 311 | if (obj && obj->type == ACPI_TYPE_INTEGER) |
Corentin Chary | e12e6d9 | 2011-02-26 10:20:31 +0100 | [diff] [blame] | 312 | tmp = (u32) obj->integer.value; |
Yong Wang | 3d7b165 | 2010-04-11 09:27:54 +0800 | [diff] [blame] | 313 | |
Corentin Chary | 2a3f006 | 2010-11-29 08:14:10 +0100 | [diff] [blame] | 314 | if (retval) |
| 315 | *retval = tmp; |
Yong Wang | 3d7b165 | 2010-04-11 09:27:54 +0800 | [diff] [blame] | 316 | |
| 317 | kfree(obj); |
| 318 | |
Corentin Chary | d33da3b | 2011-02-26 10:20:35 +0100 | [diff] [blame] | 319 | exit: |
| 320 | if (ACPI_FAILURE(status)) |
| 321 | return -EIO; |
Yong Wang | 3d7b165 | 2010-04-11 09:27:54 +0800 | [diff] [blame] | 322 | |
Corentin Chary | d33da3b | 2011-02-26 10:20:35 +0100 | [diff] [blame] | 323 | if (tmp == ASUS_WMI_UNSUPPORTED_METHOD) |
| 324 | return -ENODEV; |
| 325 | |
| 326 | return 0; |
Yong Wang | 3d7b165 | 2010-04-11 09:27:54 +0800 | [diff] [blame] | 327 | } |
| 328 | |
Kast Bernd | 53e755c | 2015-05-13 16:24:16 +0200 | [diff] [blame] | 329 | static int asus_wmi_evaluate_method_agfn(const struct acpi_buffer args) |
| 330 | { |
| 331 | struct acpi_buffer input; |
| 332 | u64 phys_addr; |
| 333 | u32 retval; |
| 334 | u32 status = -1; |
| 335 | |
| 336 | /* |
| 337 | * Copy to dma capable address otherwise memory corruption occurs as |
| 338 | * bios has to be able to access it. |
| 339 | */ |
| 340 | input.pointer = kzalloc(args.length, GFP_DMA | GFP_KERNEL); |
| 341 | input.length = args.length; |
| 342 | if (!input.pointer) |
| 343 | return -ENOMEM; |
| 344 | phys_addr = virt_to_phys(input.pointer); |
| 345 | memcpy(input.pointer, args.pointer, args.length); |
| 346 | |
| 347 | status = asus_wmi_evaluate_method(ASUS_WMI_METHODID_AGFN, |
| 348 | phys_addr, 0, &retval); |
| 349 | if (!status) |
| 350 | memcpy(args.pointer, input.pointer, args.length); |
| 351 | |
| 352 | kfree(input.pointer); |
| 353 | if (status) |
| 354 | return -ENXIO; |
| 355 | |
| 356 | return retval; |
| 357 | } |
| 358 | |
Corentin Chary | 1d070f89 | 2011-02-26 10:20:36 +0100 | [diff] [blame] | 359 | static int asus_wmi_get_devstate(struct asus_wmi *asus, u32 dev_id, u32 *retval) |
Corentin Chary | d33da3b | 2011-02-26 10:20:35 +0100 | [diff] [blame] | 360 | { |
Corentin Chary | 1d070f89 | 2011-02-26 10:20:36 +0100 | [diff] [blame] | 361 | return asus_wmi_evaluate_method(asus->dsts_id, dev_id, 0, retval); |
Corentin Chary | d33da3b | 2011-02-26 10:20:35 +0100 | [diff] [blame] | 362 | } |
| 363 | |
| 364 | static int asus_wmi_set_devstate(u32 dev_id, u32 ctrl_param, |
Corentin Chary | 1d070f89 | 2011-02-26 10:20:36 +0100 | [diff] [blame] | 365 | u32 *retval) |
Yong Wang | 3d7b165 | 2010-04-11 09:27:54 +0800 | [diff] [blame] | 366 | { |
Corentin Chary | d33da3b | 2011-02-26 10:20:35 +0100 | [diff] [blame] | 367 | return asus_wmi_evaluate_method(ASUS_WMI_METHODID_DEVS, dev_id, |
| 368 | ctrl_param, retval); |
Yong Wang | 3d7b165 | 2010-04-11 09:27:54 +0800 | [diff] [blame] | 369 | } |
| 370 | |
Corentin Chary | 5c95638 | 2011-02-06 13:28:31 +0100 | [diff] [blame] | 371 | /* Helper for special devices with magic return codes */ |
Corentin Chary | 1d070f89 | 2011-02-26 10:20:36 +0100 | [diff] [blame] | 372 | static int asus_wmi_get_devstate_bits(struct asus_wmi *asus, |
| 373 | u32 dev_id, u32 mask) |
Corentin Chary | 5c95638 | 2011-02-06 13:28:31 +0100 | [diff] [blame] | 374 | { |
| 375 | u32 retval = 0; |
Corentin Chary | d33da3b | 2011-02-26 10:20:35 +0100 | [diff] [blame] | 376 | int err; |
Corentin Chary | 5c95638 | 2011-02-06 13:28:31 +0100 | [diff] [blame] | 377 | |
Corentin Chary | 1d070f89 | 2011-02-26 10:20:36 +0100 | [diff] [blame] | 378 | err = asus_wmi_get_devstate(asus, dev_id, &retval); |
Corentin Chary | 5c95638 | 2011-02-06 13:28:31 +0100 | [diff] [blame] | 379 | |
Corentin Chary | d33da3b | 2011-02-26 10:20:35 +0100 | [diff] [blame] | 380 | if (err < 0) |
| 381 | return err; |
Corentin Chary | 5c95638 | 2011-02-06 13:28:31 +0100 | [diff] [blame] | 382 | |
Corentin Chary | e12e6d9 | 2011-02-26 10:20:31 +0100 | [diff] [blame] | 383 | if (!(retval & ASUS_WMI_DSTS_PRESENCE_BIT)) |
Corentin Chary | 5c95638 | 2011-02-06 13:28:31 +0100 | [diff] [blame] | 384 | return -ENODEV; |
| 385 | |
Corentin Chary | a75fe0d | 2011-02-26 10:20:34 +0100 | [diff] [blame] | 386 | if (mask == ASUS_WMI_DSTS_STATUS_BIT) { |
| 387 | if (retval & ASUS_WMI_DSTS_UNKNOWN_BIT) |
| 388 | return -ENODEV; |
| 389 | } |
| 390 | |
Corentin Chary | b718726 | 2011-02-06 13:28:39 +0100 | [diff] [blame] | 391 | return retval & mask; |
| 392 | } |
| 393 | |
Corentin Chary | 1d070f89 | 2011-02-26 10:20:36 +0100 | [diff] [blame] | 394 | static int asus_wmi_get_devstate_simple(struct asus_wmi *asus, u32 dev_id) |
Corentin Chary | b718726 | 2011-02-06 13:28:39 +0100 | [diff] [blame] | 395 | { |
Corentin Chary | 1d070f89 | 2011-02-26 10:20:36 +0100 | [diff] [blame] | 396 | return asus_wmi_get_devstate_bits(asus, dev_id, |
| 397 | ASUS_WMI_DSTS_STATUS_BIT); |
Corentin Chary | 5c95638 | 2011-02-06 13:28:31 +0100 | [diff] [blame] | 398 | } |
| 399 | |
Corentin Chary | 084fca6 | 2010-11-29 08:14:06 +0100 | [diff] [blame] | 400 | /* |
| 401 | * LEDs |
| 402 | */ |
| 403 | /* |
| 404 | * These functions actually update the LED's, and are called from a |
| 405 | * workqueue. By doing this as separate work rather than when the LED |
Corentin Chary | e12e6d9 | 2011-02-26 10:20:31 +0100 | [diff] [blame] | 406 | * subsystem asks, we avoid messing with the Asus ACPI stuff during a |
Corentin Chary | 084fca6 | 2010-11-29 08:14:06 +0100 | [diff] [blame] | 407 | * potentially bad time, such as a timer interrupt. |
| 408 | */ |
| 409 | static void tpd_led_update(struct work_struct *work) |
| 410 | { |
| 411 | int ctrl_param; |
Corentin Chary | e12e6d9 | 2011-02-26 10:20:31 +0100 | [diff] [blame] | 412 | struct asus_wmi *asus; |
Corentin Chary | 084fca6 | 2010-11-29 08:14:06 +0100 | [diff] [blame] | 413 | |
Corentin Chary | e12e6d9 | 2011-02-26 10:20:31 +0100 | [diff] [blame] | 414 | asus = container_of(work, struct asus_wmi, tpd_led_work); |
Corentin Chary | 084fca6 | 2010-11-29 08:14:06 +0100 | [diff] [blame] | 415 | |
Corentin Chary | e12e6d9 | 2011-02-26 10:20:31 +0100 | [diff] [blame] | 416 | ctrl_param = asus->tpd_led_wk; |
| 417 | asus_wmi_set_devstate(ASUS_WMI_DEVID_TOUCHPAD_LED, ctrl_param, NULL); |
Corentin Chary | 084fca6 | 2010-11-29 08:14:06 +0100 | [diff] [blame] | 418 | } |
| 419 | |
| 420 | static void tpd_led_set(struct led_classdev *led_cdev, |
| 421 | enum led_brightness value) |
| 422 | { |
Corentin Chary | e12e6d9 | 2011-02-26 10:20:31 +0100 | [diff] [blame] | 423 | struct asus_wmi *asus; |
Corentin Chary | 084fca6 | 2010-11-29 08:14:06 +0100 | [diff] [blame] | 424 | |
Corentin Chary | e12e6d9 | 2011-02-26 10:20:31 +0100 | [diff] [blame] | 425 | asus = container_of(led_cdev, struct asus_wmi, tpd_led); |
Corentin Chary | 084fca6 | 2010-11-29 08:14:06 +0100 | [diff] [blame] | 426 | |
Corentin Chary | e12e6d9 | 2011-02-26 10:20:31 +0100 | [diff] [blame] | 427 | asus->tpd_led_wk = !!value; |
| 428 | queue_work(asus->led_workqueue, &asus->tpd_led_work); |
Corentin Chary | 084fca6 | 2010-11-29 08:14:06 +0100 | [diff] [blame] | 429 | } |
| 430 | |
Corentin Chary | e12e6d9 | 2011-02-26 10:20:31 +0100 | [diff] [blame] | 431 | static int read_tpd_led_state(struct asus_wmi *asus) |
Corentin Chary | 084fca6 | 2010-11-29 08:14:06 +0100 | [diff] [blame] | 432 | { |
Corentin Chary | 1d070f89 | 2011-02-26 10:20:36 +0100 | [diff] [blame] | 433 | return asus_wmi_get_devstate_simple(asus, ASUS_WMI_DEVID_TOUCHPAD_LED); |
Corentin Chary | 084fca6 | 2010-11-29 08:14:06 +0100 | [diff] [blame] | 434 | } |
| 435 | |
| 436 | static enum led_brightness tpd_led_get(struct led_classdev *led_cdev) |
| 437 | { |
Corentin Chary | e12e6d9 | 2011-02-26 10:20:31 +0100 | [diff] [blame] | 438 | struct asus_wmi *asus; |
Corentin Chary | 084fca6 | 2010-11-29 08:14:06 +0100 | [diff] [blame] | 439 | |
Corentin Chary | e12e6d9 | 2011-02-26 10:20:31 +0100 | [diff] [blame] | 440 | asus = container_of(led_cdev, struct asus_wmi, tpd_led); |
Corentin Chary | 084fca6 | 2010-11-29 08:14:06 +0100 | [diff] [blame] | 441 | |
Corentin Chary | e12e6d9 | 2011-02-26 10:20:31 +0100 | [diff] [blame] | 442 | return read_tpd_led_state(asus); |
Corentin Chary | 084fca6 | 2010-11-29 08:14:06 +0100 | [diff] [blame] | 443 | } |
| 444 | |
Corentin Chary | e9809c0 | 2011-07-01 11:34:31 +0200 | [diff] [blame] | 445 | static void kbd_led_update(struct work_struct *work) |
Corentin Chary | 084fca6 | 2010-11-29 08:14:06 +0100 | [diff] [blame] | 446 | { |
Corentin Chary | e9809c0 | 2011-07-01 11:34:31 +0200 | [diff] [blame] | 447 | int ctrl_param = 0; |
| 448 | struct asus_wmi *asus; |
Corentin Chary | 084fca6 | 2010-11-29 08:14:06 +0100 | [diff] [blame] | 449 | |
Corentin Chary | e9809c0 | 2011-07-01 11:34:31 +0200 | [diff] [blame] | 450 | asus = container_of(work, struct asus_wmi, kbd_led_work); |
Corentin Chary | 084fca6 | 2010-11-29 08:14:06 +0100 | [diff] [blame] | 451 | |
Corentin Chary | e9809c0 | 2011-07-01 11:34:31 +0200 | [diff] [blame] | 452 | /* |
| 453 | * bits 0-2: level |
| 454 | * bit 7: light on/off |
| 455 | */ |
| 456 | if (asus->kbd_led_wk > 0) |
| 457 | ctrl_param = 0x80 | (asus->kbd_led_wk & 0x7F); |
Corentin Chary | 084fca6 | 2010-11-29 08:14:06 +0100 | [diff] [blame] | 458 | |
Corentin Chary | e9809c0 | 2011-07-01 11:34:31 +0200 | [diff] [blame] | 459 | asus_wmi_set_devstate(ASUS_WMI_DEVID_KBD_BACKLIGHT, ctrl_param, NULL); |
| 460 | } |
Corentin Chary | 084fca6 | 2010-11-29 08:14:06 +0100 | [diff] [blame] | 461 | |
Corentin Chary | e9809c0 | 2011-07-01 11:34:31 +0200 | [diff] [blame] | 462 | static int kbd_led_read(struct asus_wmi *asus, int *level, int *env) |
| 463 | { |
| 464 | int retval; |
| 465 | |
| 466 | /* |
| 467 | * bits 0-2: level |
| 468 | * bit 7: light on/off |
| 469 | * bit 8-10: environment (0: dark, 1: normal, 2: light) |
| 470 | * bit 17: status unknown |
| 471 | */ |
| 472 | retval = asus_wmi_get_devstate_bits(asus, ASUS_WMI_DEVID_KBD_BACKLIGHT, |
| 473 | 0xFFFF); |
| 474 | |
Corentin Chary | af965e9 | 2011-07-01 11:34:34 +0200 | [diff] [blame] | 475 | /* Unknown status is considered as off */ |
Corentin Chary | e9809c0 | 2011-07-01 11:34:31 +0200 | [diff] [blame] | 476 | if (retval == 0x8000) |
Corentin Chary | af965e9 | 2011-07-01 11:34:34 +0200 | [diff] [blame] | 477 | retval = 0; |
Corentin Chary | e9809c0 | 2011-07-01 11:34:31 +0200 | [diff] [blame] | 478 | |
| 479 | if (retval >= 0) { |
| 480 | if (level) |
Corentin Chary | c09b223 | 2012-03-20 09:53:04 +0100 | [diff] [blame] | 481 | *level = retval & 0x7F; |
Corentin Chary | e9809c0 | 2011-07-01 11:34:31 +0200 | [diff] [blame] | 482 | if (env) |
| 483 | *env = (retval >> 8) & 0x7F; |
| 484 | retval = 0; |
Corentin Chary | 084fca6 | 2010-11-29 08:14:06 +0100 | [diff] [blame] | 485 | } |
| 486 | |
Corentin Chary | e9809c0 | 2011-07-01 11:34:31 +0200 | [diff] [blame] | 487 | return retval; |
| 488 | } |
| 489 | |
| 490 | static void kbd_led_set(struct led_classdev *led_cdev, |
| 491 | enum led_brightness value) |
| 492 | { |
| 493 | struct asus_wmi *asus; |
| 494 | |
| 495 | asus = container_of(led_cdev, struct asus_wmi, kbd_led); |
| 496 | |
| 497 | if (value > asus->kbd_led.max_brightness) |
| 498 | value = asus->kbd_led.max_brightness; |
| 499 | else if (value < 0) |
| 500 | value = 0; |
| 501 | |
| 502 | asus->kbd_led_wk = value; |
| 503 | queue_work(asus->led_workqueue, &asus->kbd_led_work); |
| 504 | } |
| 505 | |
| 506 | static enum led_brightness kbd_led_get(struct led_classdev *led_cdev) |
| 507 | { |
| 508 | struct asus_wmi *asus; |
| 509 | int retval, value; |
| 510 | |
| 511 | asus = container_of(led_cdev, struct asus_wmi, kbd_led); |
| 512 | |
| 513 | retval = kbd_led_read(asus, &value, NULL); |
| 514 | |
| 515 | if (retval < 0) |
| 516 | return retval; |
| 517 | |
| 518 | return value; |
Corentin Chary | 084fca6 | 2010-11-29 08:14:06 +0100 | [diff] [blame] | 519 | } |
| 520 | |
AceLan Kao | 6cae06e | 2012-07-27 16:51:59 +0800 | [diff] [blame] | 521 | static int wlan_led_unknown_state(struct asus_wmi *asus) |
| 522 | { |
| 523 | u32 result; |
| 524 | |
| 525 | asus_wmi_get_devstate(asus, ASUS_WMI_DEVID_WIRELESS_LED, &result); |
| 526 | |
| 527 | return result & ASUS_WMI_DSTS_UNKNOWN_BIT; |
| 528 | } |
| 529 | |
| 530 | static int wlan_led_presence(struct asus_wmi *asus) |
| 531 | { |
| 532 | u32 result; |
| 533 | |
| 534 | asus_wmi_get_devstate(asus, ASUS_WMI_DEVID_WIRELESS_LED, &result); |
| 535 | |
| 536 | return result & ASUS_WMI_DSTS_PRESENCE_BIT; |
| 537 | } |
| 538 | |
| 539 | static void wlan_led_update(struct work_struct *work) |
| 540 | { |
| 541 | int ctrl_param; |
| 542 | struct asus_wmi *asus; |
| 543 | |
| 544 | asus = container_of(work, struct asus_wmi, wlan_led_work); |
| 545 | |
| 546 | ctrl_param = asus->wlan_led_wk; |
| 547 | asus_wmi_set_devstate(ASUS_WMI_DEVID_WIRELESS_LED, ctrl_param, NULL); |
| 548 | } |
| 549 | |
| 550 | static void wlan_led_set(struct led_classdev *led_cdev, |
| 551 | enum led_brightness value) |
| 552 | { |
| 553 | struct asus_wmi *asus; |
| 554 | |
| 555 | asus = container_of(led_cdev, struct asus_wmi, wlan_led); |
| 556 | |
| 557 | asus->wlan_led_wk = !!value; |
| 558 | queue_work(asus->led_workqueue, &asus->wlan_led_work); |
| 559 | } |
| 560 | |
| 561 | static enum led_brightness wlan_led_get(struct led_classdev *led_cdev) |
| 562 | { |
| 563 | struct asus_wmi *asus; |
| 564 | u32 result; |
| 565 | |
| 566 | asus = container_of(led_cdev, struct asus_wmi, wlan_led); |
| 567 | asus_wmi_get_devstate(asus, ASUS_WMI_DEVID_WIRELESS_LED, &result); |
| 568 | |
| 569 | return result & ASUS_WMI_DSTS_BRIGHTNESS_MASK; |
| 570 | } |
| 571 | |
Corentin Chary | e12e6d9 | 2011-02-26 10:20:31 +0100 | [diff] [blame] | 572 | static void asus_wmi_led_exit(struct asus_wmi *asus) |
Corentin Chary | 084fca6 | 2010-11-29 08:14:06 +0100 | [diff] [blame] | 573 | { |
Axel Lin | e929802 | 2011-08-08 17:16:01 +0800 | [diff] [blame] | 574 | if (!IS_ERR_OR_NULL(asus->kbd_led.dev)) |
| 575 | led_classdev_unregister(&asus->kbd_led); |
| 576 | if (!IS_ERR_OR_NULL(asus->tpd_led.dev)) |
Corentin Chary | e12e6d9 | 2011-02-26 10:20:31 +0100 | [diff] [blame] | 577 | led_classdev_unregister(&asus->tpd_led); |
AceLan Kao | 6cae06e | 2012-07-27 16:51:59 +0800 | [diff] [blame] | 578 | if (!IS_ERR_OR_NULL(asus->wlan_led.dev)) |
| 579 | led_classdev_unregister(&asus->wlan_led); |
Corentin Chary | e12e6d9 | 2011-02-26 10:20:31 +0100 | [diff] [blame] | 580 | if (asus->led_workqueue) |
| 581 | destroy_workqueue(asus->led_workqueue); |
Corentin Chary | 084fca6 | 2010-11-29 08:14:06 +0100 | [diff] [blame] | 582 | } |
| 583 | |
Corentin Chary | e9809c0 | 2011-07-01 11:34:31 +0200 | [diff] [blame] | 584 | static int asus_wmi_led_init(struct asus_wmi *asus) |
| 585 | { |
Oleksij Rempel | 3073404 | 2015-09-14 11:16:30 +0200 | [diff] [blame] | 586 | int rv = 0, led_val; |
Corentin Chary | e9809c0 | 2011-07-01 11:34:31 +0200 | [diff] [blame] | 587 | |
| 588 | asus->led_workqueue = create_singlethread_workqueue("led_workqueue"); |
| 589 | if (!asus->led_workqueue) |
| 590 | return -ENOMEM; |
| 591 | |
| 592 | if (read_tpd_led_state(asus) >= 0) { |
| 593 | INIT_WORK(&asus->tpd_led_work, tpd_led_update); |
| 594 | |
| 595 | asus->tpd_led.name = "asus::touchpad"; |
| 596 | asus->tpd_led.brightness_set = tpd_led_set; |
| 597 | asus->tpd_led.brightness_get = tpd_led_get; |
| 598 | asus->tpd_led.max_brightness = 1; |
| 599 | |
| 600 | rv = led_classdev_register(&asus->platform_device->dev, |
| 601 | &asus->tpd_led); |
| 602 | if (rv) |
| 603 | goto error; |
| 604 | } |
| 605 | |
Oleksij Rempel | 3073404 | 2015-09-14 11:16:30 +0200 | [diff] [blame] | 606 | led_val = kbd_led_read(asus, NULL, NULL); |
| 607 | if (led_val >= 0) { |
Corentin Chary | e9809c0 | 2011-07-01 11:34:31 +0200 | [diff] [blame] | 608 | INIT_WORK(&asus->kbd_led_work, kbd_led_update); |
| 609 | |
Oleksij Rempel | 3073404 | 2015-09-14 11:16:30 +0200 | [diff] [blame] | 610 | asus->kbd_led_wk = led_val; |
Corentin Chary | e9809c0 | 2011-07-01 11:34:31 +0200 | [diff] [blame] | 611 | asus->kbd_led.name = "asus::kbd_backlight"; |
| 612 | asus->kbd_led.brightness_set = kbd_led_set; |
| 613 | asus->kbd_led.brightness_get = kbd_led_get; |
| 614 | asus->kbd_led.max_brightness = 3; |
| 615 | |
| 616 | rv = led_classdev_register(&asus->platform_device->dev, |
| 617 | &asus->kbd_led); |
AceLan Kao | 6cae06e | 2012-07-27 16:51:59 +0800 | [diff] [blame] | 618 | if (rv) |
| 619 | goto error; |
| 620 | } |
| 621 | |
AceLan Kao | f515623 | 2014-07-09 16:18:18 +0800 | [diff] [blame] | 622 | if (wlan_led_presence(asus) && (asus->driver->quirks->wapf > 0)) { |
AceLan Kao | 6cae06e | 2012-07-27 16:51:59 +0800 | [diff] [blame] | 623 | INIT_WORK(&asus->wlan_led_work, wlan_led_update); |
| 624 | |
| 625 | asus->wlan_led.name = "asus::wlan"; |
| 626 | asus->wlan_led.brightness_set = wlan_led_set; |
| 627 | if (!wlan_led_unknown_state(asus)) |
| 628 | asus->wlan_led.brightness_get = wlan_led_get; |
| 629 | asus->wlan_led.flags = LED_CORE_SUSPENDRESUME; |
| 630 | asus->wlan_led.max_brightness = 1; |
| 631 | asus->wlan_led.default_trigger = "asus-wlan"; |
| 632 | |
| 633 | rv = led_classdev_register(&asus->platform_device->dev, |
| 634 | &asus->wlan_led); |
Corentin Chary | e9809c0 | 2011-07-01 11:34:31 +0200 | [diff] [blame] | 635 | } |
| 636 | |
| 637 | error: |
| 638 | if (rv) |
| 639 | asus_wmi_led_exit(asus); |
| 640 | |
| 641 | return rv; |
| 642 | } |
| 643 | |
| 644 | |
Corentin Chary | 084fca6 | 2010-11-29 08:14:06 +0100 | [diff] [blame] | 645 | /* |
Corentin Chary | afa7c88 | 2011-02-06 13:28:28 +0100 | [diff] [blame] | 646 | * PCI hotplug (for wlan rfkill) |
| 647 | */ |
Corentin Chary | e12e6d9 | 2011-02-26 10:20:31 +0100 | [diff] [blame] | 648 | static bool asus_wlan_rfkill_blocked(struct asus_wmi *asus) |
Corentin Chary | afa7c88 | 2011-02-06 13:28:28 +0100 | [diff] [blame] | 649 | { |
Corentin Chary | 1d070f89 | 2011-02-26 10:20:36 +0100 | [diff] [blame] | 650 | int result = asus_wmi_get_devstate_simple(asus, ASUS_WMI_DEVID_WLAN); |
Corentin Chary | afa7c88 | 2011-02-06 13:28:28 +0100 | [diff] [blame] | 651 | |
Corentin Chary | 5c95638 | 2011-02-06 13:28:31 +0100 | [diff] [blame] | 652 | if (result < 0) |
Corentin Chary | afa7c88 | 2011-02-06 13:28:28 +0100 | [diff] [blame] | 653 | return false; |
Corentin Chary | 5c95638 | 2011-02-06 13:28:31 +0100 | [diff] [blame] | 654 | return !result; |
Corentin Chary | afa7c88 | 2011-02-06 13:28:28 +0100 | [diff] [blame] | 655 | } |
| 656 | |
Corentin Chary | e12e6d9 | 2011-02-26 10:20:31 +0100 | [diff] [blame] | 657 | static void asus_rfkill_hotplug(struct asus_wmi *asus) |
Corentin Chary | afa7c88 | 2011-02-06 13:28:28 +0100 | [diff] [blame] | 658 | { |
| 659 | struct pci_dev *dev; |
| 660 | struct pci_bus *bus; |
Corentin Chary | 279f8f9 | 2011-02-06 13:28:29 +0100 | [diff] [blame] | 661 | bool blocked; |
Corentin Chary | afa7c88 | 2011-02-06 13:28:28 +0100 | [diff] [blame] | 662 | bool absent; |
| 663 | u32 l; |
| 664 | |
Corentin Chary | e12e6d9 | 2011-02-26 10:20:31 +0100 | [diff] [blame] | 665 | mutex_lock(&asus->wmi_lock); |
| 666 | blocked = asus_wlan_rfkill_blocked(asus); |
| 667 | mutex_unlock(&asus->wmi_lock); |
Corentin Chary | afa7c88 | 2011-02-06 13:28:28 +0100 | [diff] [blame] | 668 | |
Corentin Chary | e12e6d9 | 2011-02-26 10:20:31 +0100 | [diff] [blame] | 669 | mutex_lock(&asus->hotplug_lock); |
Rafael J. Wysocki | 8b9ec1d | 2014-01-10 15:27:08 +0100 | [diff] [blame] | 670 | pci_lock_rescan_remove(); |
Corentin Chary | afa7c88 | 2011-02-06 13:28:28 +0100 | [diff] [blame] | 671 | |
Corentin Chary | a7ce3f0 | 2011-02-26 10:20:33 +0100 | [diff] [blame] | 672 | if (asus->wlan.rfkill) |
| 673 | rfkill_set_sw_state(asus->wlan.rfkill, blocked); |
Corentin Chary | 279f8f9 | 2011-02-06 13:28:29 +0100 | [diff] [blame] | 674 | |
Corentin Chary | e12e6d9 | 2011-02-26 10:20:31 +0100 | [diff] [blame] | 675 | if (asus->hotplug_slot) { |
Corentin Chary | afa7c88 | 2011-02-06 13:28:28 +0100 | [diff] [blame] | 676 | bus = pci_find_bus(0, 1); |
| 677 | if (!bus) { |
Joe Perches | 5ad77dc | 2011-03-29 15:21:35 -0700 | [diff] [blame] | 678 | pr_warn("Unable to find PCI bus 1?\n"); |
Corentin Chary | afa7c88 | 2011-02-06 13:28:28 +0100 | [diff] [blame] | 679 | goto out_unlock; |
| 680 | } |
| 681 | |
| 682 | if (pci_bus_read_config_dword(bus, 0, PCI_VENDOR_ID, &l)) { |
| 683 | pr_err("Unable to read PCI config space?\n"); |
| 684 | goto out_unlock; |
| 685 | } |
| 686 | absent = (l == 0xffffffff); |
| 687 | |
| 688 | if (blocked != absent) { |
Joe Perches | 5ad77dc | 2011-03-29 15:21:35 -0700 | [diff] [blame] | 689 | pr_warn("BIOS says wireless lan is %s, " |
| 690 | "but the pci device is %s\n", |
| 691 | blocked ? "blocked" : "unblocked", |
| 692 | absent ? "absent" : "present"); |
| 693 | pr_warn("skipped wireless hotplug as probably " |
| 694 | "inappropriate for this model\n"); |
Corentin Chary | afa7c88 | 2011-02-06 13:28:28 +0100 | [diff] [blame] | 695 | goto out_unlock; |
| 696 | } |
| 697 | |
| 698 | if (!blocked) { |
| 699 | dev = pci_get_slot(bus, 0); |
| 700 | if (dev) { |
| 701 | /* Device already present */ |
| 702 | pci_dev_put(dev); |
| 703 | goto out_unlock; |
| 704 | } |
| 705 | dev = pci_scan_single_device(bus, 0); |
| 706 | if (dev) { |
| 707 | pci_bus_assign_resources(bus); |
Yijing Wang | c893d13 | 2014-05-30 11:01:03 +0800 | [diff] [blame] | 708 | pci_bus_add_device(dev); |
Corentin Chary | afa7c88 | 2011-02-06 13:28:28 +0100 | [diff] [blame] | 709 | } |
| 710 | } else { |
| 711 | dev = pci_get_slot(bus, 0); |
| 712 | if (dev) { |
Yinghai Lu | 210647a | 2012-02-25 13:54:20 -0800 | [diff] [blame] | 713 | pci_stop_and_remove_bus_device(dev); |
Corentin Chary | afa7c88 | 2011-02-06 13:28:28 +0100 | [diff] [blame] | 714 | pci_dev_put(dev); |
| 715 | } |
| 716 | } |
| 717 | } |
| 718 | |
| 719 | out_unlock: |
Rafael J. Wysocki | 8b9ec1d | 2014-01-10 15:27:08 +0100 | [diff] [blame] | 720 | pci_unlock_rescan_remove(); |
Corentin Chary | e12e6d9 | 2011-02-26 10:20:31 +0100 | [diff] [blame] | 721 | mutex_unlock(&asus->hotplug_lock); |
Corentin Chary | afa7c88 | 2011-02-06 13:28:28 +0100 | [diff] [blame] | 722 | } |
| 723 | |
Corentin Chary | e12e6d9 | 2011-02-26 10:20:31 +0100 | [diff] [blame] | 724 | static void asus_rfkill_notify(acpi_handle handle, u32 event, void *data) |
Corentin Chary | afa7c88 | 2011-02-06 13:28:28 +0100 | [diff] [blame] | 725 | { |
Corentin Chary | e12e6d9 | 2011-02-26 10:20:31 +0100 | [diff] [blame] | 726 | struct asus_wmi *asus = data; |
Corentin Chary | afa7c88 | 2011-02-06 13:28:28 +0100 | [diff] [blame] | 727 | |
| 728 | if (event != ACPI_NOTIFY_BUS_CHECK) |
| 729 | return; |
| 730 | |
Corentin Chary | 279f8f9 | 2011-02-06 13:28:29 +0100 | [diff] [blame] | 731 | /* |
Corentin Chary | e12e6d9 | 2011-02-26 10:20:31 +0100 | [diff] [blame] | 732 | * We can't call directly asus_rfkill_hotplug because most |
Corentin Chary | 279f8f9 | 2011-02-06 13:28:29 +0100 | [diff] [blame] | 733 | * of the time WMBC is still being executed and not reetrant. |
| 734 | * There is currently no way to tell ACPICA that we want this |
Corentin Chary | e12e6d9 | 2011-02-26 10:20:31 +0100 | [diff] [blame] | 735 | * method to be serialized, we schedule a asus_rfkill_hotplug |
Corentin Chary | 279f8f9 | 2011-02-06 13:28:29 +0100 | [diff] [blame] | 736 | * call later, in a safer context. |
| 737 | */ |
Corentin Chary | e12e6d9 | 2011-02-26 10:20:31 +0100 | [diff] [blame] | 738 | queue_work(asus->hotplug_workqueue, &asus->hotplug_work); |
Corentin Chary | afa7c88 | 2011-02-06 13:28:28 +0100 | [diff] [blame] | 739 | } |
| 740 | |
Corentin Chary | e12e6d9 | 2011-02-26 10:20:31 +0100 | [diff] [blame] | 741 | static int asus_register_rfkill_notifier(struct asus_wmi *asus, char *node) |
Corentin Chary | afa7c88 | 2011-02-06 13:28:28 +0100 | [diff] [blame] | 742 | { |
| 743 | acpi_status status; |
| 744 | acpi_handle handle; |
| 745 | |
| 746 | status = acpi_get_handle(NULL, node, &handle); |
| 747 | |
| 748 | if (ACPI_SUCCESS(status)) { |
| 749 | status = acpi_install_notify_handler(handle, |
| 750 | ACPI_SYSTEM_NOTIFY, |
Corentin Chary | e12e6d9 | 2011-02-26 10:20:31 +0100 | [diff] [blame] | 751 | asus_rfkill_notify, asus); |
Corentin Chary | afa7c88 | 2011-02-06 13:28:28 +0100 | [diff] [blame] | 752 | if (ACPI_FAILURE(status)) |
Joe Perches | 5ad77dc | 2011-03-29 15:21:35 -0700 | [diff] [blame] | 753 | pr_warn("Failed to register notify on %s\n", node); |
Corentin Chary | afa7c88 | 2011-02-06 13:28:28 +0100 | [diff] [blame] | 754 | } else |
| 755 | return -ENODEV; |
| 756 | |
| 757 | return 0; |
| 758 | } |
| 759 | |
Corentin Chary | e12e6d9 | 2011-02-26 10:20:31 +0100 | [diff] [blame] | 760 | static void asus_unregister_rfkill_notifier(struct asus_wmi *asus, char *node) |
Corentin Chary | afa7c88 | 2011-02-06 13:28:28 +0100 | [diff] [blame] | 761 | { |
| 762 | acpi_status status = AE_OK; |
| 763 | acpi_handle handle; |
| 764 | |
| 765 | status = acpi_get_handle(NULL, node, &handle); |
| 766 | |
| 767 | if (ACPI_SUCCESS(status)) { |
| 768 | status = acpi_remove_notify_handler(handle, |
Corentin Chary | e12e6d9 | 2011-02-26 10:20:31 +0100 | [diff] [blame] | 769 | ACPI_SYSTEM_NOTIFY, |
| 770 | asus_rfkill_notify); |
Corentin Chary | afa7c88 | 2011-02-06 13:28:28 +0100 | [diff] [blame] | 771 | if (ACPI_FAILURE(status)) |
| 772 | pr_err("Error removing rfkill notify handler %s\n", |
Corentin Chary | e12e6d9 | 2011-02-26 10:20:31 +0100 | [diff] [blame] | 773 | node); |
Corentin Chary | afa7c88 | 2011-02-06 13:28:28 +0100 | [diff] [blame] | 774 | } |
| 775 | } |
| 776 | |
Corentin Chary | e12e6d9 | 2011-02-26 10:20:31 +0100 | [diff] [blame] | 777 | static int asus_get_adapter_status(struct hotplug_slot *hotplug_slot, |
| 778 | u8 *value) |
Corentin Chary | afa7c88 | 2011-02-06 13:28:28 +0100 | [diff] [blame] | 779 | { |
Corentin Chary | 1d070f89 | 2011-02-26 10:20:36 +0100 | [diff] [blame] | 780 | struct asus_wmi *asus = hotplug_slot->private; |
| 781 | int result = asus_wmi_get_devstate_simple(asus, ASUS_WMI_DEVID_WLAN); |
Corentin Chary | afa7c88 | 2011-02-06 13:28:28 +0100 | [diff] [blame] | 782 | |
Corentin Chary | 5c95638 | 2011-02-06 13:28:31 +0100 | [diff] [blame] | 783 | if (result < 0) |
| 784 | return result; |
Corentin Chary | afa7c88 | 2011-02-06 13:28:28 +0100 | [diff] [blame] | 785 | |
Corentin Chary | 5c95638 | 2011-02-06 13:28:31 +0100 | [diff] [blame] | 786 | *value = !!result; |
Corentin Chary | afa7c88 | 2011-02-06 13:28:28 +0100 | [diff] [blame] | 787 | return 0; |
| 788 | } |
| 789 | |
Corentin Chary | e12e6d9 | 2011-02-26 10:20:31 +0100 | [diff] [blame] | 790 | static void asus_cleanup_pci_hotplug(struct hotplug_slot *hotplug_slot) |
Corentin Chary | afa7c88 | 2011-02-06 13:28:28 +0100 | [diff] [blame] | 791 | { |
| 792 | kfree(hotplug_slot->info); |
| 793 | kfree(hotplug_slot); |
| 794 | } |
| 795 | |
Corentin Chary | e12e6d9 | 2011-02-26 10:20:31 +0100 | [diff] [blame] | 796 | static struct hotplug_slot_ops asus_hotplug_slot_ops = { |
Corentin Chary | afa7c88 | 2011-02-06 13:28:28 +0100 | [diff] [blame] | 797 | .owner = THIS_MODULE, |
Corentin Chary | e12e6d9 | 2011-02-26 10:20:31 +0100 | [diff] [blame] | 798 | .get_adapter_status = asus_get_adapter_status, |
| 799 | .get_power_status = asus_get_adapter_status, |
Corentin Chary | afa7c88 | 2011-02-06 13:28:28 +0100 | [diff] [blame] | 800 | }; |
| 801 | |
Corentin Chary | e12e6d9 | 2011-02-26 10:20:31 +0100 | [diff] [blame] | 802 | static void asus_hotplug_work(struct work_struct *work) |
Corentin Chary | 279f8f9 | 2011-02-06 13:28:29 +0100 | [diff] [blame] | 803 | { |
Corentin Chary | e12e6d9 | 2011-02-26 10:20:31 +0100 | [diff] [blame] | 804 | struct asus_wmi *asus; |
Corentin Chary | 279f8f9 | 2011-02-06 13:28:29 +0100 | [diff] [blame] | 805 | |
Corentin Chary | e12e6d9 | 2011-02-26 10:20:31 +0100 | [diff] [blame] | 806 | asus = container_of(work, struct asus_wmi, hotplug_work); |
| 807 | asus_rfkill_hotplug(asus); |
Corentin Chary | 279f8f9 | 2011-02-06 13:28:29 +0100 | [diff] [blame] | 808 | } |
| 809 | |
Corentin Chary | e12e6d9 | 2011-02-26 10:20:31 +0100 | [diff] [blame] | 810 | static int asus_setup_pci_hotplug(struct asus_wmi *asus) |
Corentin Chary | afa7c88 | 2011-02-06 13:28:28 +0100 | [diff] [blame] | 811 | { |
| 812 | int ret = -ENOMEM; |
| 813 | struct pci_bus *bus = pci_find_bus(0, 1); |
| 814 | |
| 815 | if (!bus) { |
| 816 | pr_err("Unable to find wifi PCI bus\n"); |
| 817 | return -ENODEV; |
| 818 | } |
| 819 | |
Corentin Chary | e12e6d9 | 2011-02-26 10:20:31 +0100 | [diff] [blame] | 820 | asus->hotplug_workqueue = |
| 821 | create_singlethread_workqueue("hotplug_workqueue"); |
| 822 | if (!asus->hotplug_workqueue) |
Corentin Chary | 279f8f9 | 2011-02-06 13:28:29 +0100 | [diff] [blame] | 823 | goto error_workqueue; |
| 824 | |
Corentin Chary | e12e6d9 | 2011-02-26 10:20:31 +0100 | [diff] [blame] | 825 | INIT_WORK(&asus->hotplug_work, asus_hotplug_work); |
Corentin Chary | 279f8f9 | 2011-02-06 13:28:29 +0100 | [diff] [blame] | 826 | |
Corentin Chary | e12e6d9 | 2011-02-26 10:20:31 +0100 | [diff] [blame] | 827 | asus->hotplug_slot = kzalloc(sizeof(struct hotplug_slot), GFP_KERNEL); |
| 828 | if (!asus->hotplug_slot) |
Corentin Chary | afa7c88 | 2011-02-06 13:28:28 +0100 | [diff] [blame] | 829 | goto error_slot; |
| 830 | |
Corentin Chary | e12e6d9 | 2011-02-26 10:20:31 +0100 | [diff] [blame] | 831 | asus->hotplug_slot->info = kzalloc(sizeof(struct hotplug_slot_info), |
| 832 | GFP_KERNEL); |
| 833 | if (!asus->hotplug_slot->info) |
Corentin Chary | afa7c88 | 2011-02-06 13:28:28 +0100 | [diff] [blame] | 834 | goto error_info; |
| 835 | |
Corentin Chary | e12e6d9 | 2011-02-26 10:20:31 +0100 | [diff] [blame] | 836 | asus->hotplug_slot->private = asus; |
| 837 | asus->hotplug_slot->release = &asus_cleanup_pci_hotplug; |
| 838 | asus->hotplug_slot->ops = &asus_hotplug_slot_ops; |
| 839 | asus_get_adapter_status(asus->hotplug_slot, |
| 840 | &asus->hotplug_slot->info->adapter_status); |
Corentin Chary | afa7c88 | 2011-02-06 13:28:28 +0100 | [diff] [blame] | 841 | |
Corentin Chary | e12e6d9 | 2011-02-26 10:20:31 +0100 | [diff] [blame] | 842 | ret = pci_hp_register(asus->hotplug_slot, bus, 0, "asus-wifi"); |
Corentin Chary | afa7c88 | 2011-02-06 13:28:28 +0100 | [diff] [blame] | 843 | if (ret) { |
| 844 | pr_err("Unable to register hotplug slot - %d\n", ret); |
| 845 | goto error_register; |
| 846 | } |
| 847 | |
| 848 | return 0; |
| 849 | |
| 850 | error_register: |
Corentin Chary | e12e6d9 | 2011-02-26 10:20:31 +0100 | [diff] [blame] | 851 | kfree(asus->hotplug_slot->info); |
Corentin Chary | afa7c88 | 2011-02-06 13:28:28 +0100 | [diff] [blame] | 852 | error_info: |
Corentin Chary | e12e6d9 | 2011-02-26 10:20:31 +0100 | [diff] [blame] | 853 | kfree(asus->hotplug_slot); |
| 854 | asus->hotplug_slot = NULL; |
Corentin Chary | afa7c88 | 2011-02-06 13:28:28 +0100 | [diff] [blame] | 855 | error_slot: |
Corentin Chary | e12e6d9 | 2011-02-26 10:20:31 +0100 | [diff] [blame] | 856 | destroy_workqueue(asus->hotplug_workqueue); |
Corentin Chary | 279f8f9 | 2011-02-06 13:28:29 +0100 | [diff] [blame] | 857 | error_workqueue: |
Corentin Chary | afa7c88 | 2011-02-06 13:28:28 +0100 | [diff] [blame] | 858 | return ret; |
| 859 | } |
| 860 | |
| 861 | /* |
Corentin Chary | ba48fdb | 2010-11-29 08:14:07 +0100 | [diff] [blame] | 862 | * Rfkill devices |
| 863 | */ |
Corentin Chary | e12e6d9 | 2011-02-26 10:20:31 +0100 | [diff] [blame] | 864 | static int asus_rfkill_set(void *data, bool blocked) |
Corentin Chary | ba48fdb | 2010-11-29 08:14:07 +0100 | [diff] [blame] | 865 | { |
Corentin Chary | a7ce3f0 | 2011-02-26 10:20:33 +0100 | [diff] [blame] | 866 | struct asus_rfkill *priv = data; |
Corentin Chary | ba48fdb | 2010-11-29 08:14:07 +0100 | [diff] [blame] | 867 | u32 ctrl_param = !blocked; |
AceLan Kao | a50bd12 | 2012-07-26 17:13:31 +0800 | [diff] [blame] | 868 | u32 dev_id = priv->dev_id; |
Corentin Chary | ba48fdb | 2010-11-29 08:14:07 +0100 | [diff] [blame] | 869 | |
AceLan Kao | a50bd12 | 2012-07-26 17:13:31 +0800 | [diff] [blame] | 870 | /* |
| 871 | * If the user bit is set, BIOS can't set and record the wlan status, |
| 872 | * it will report the value read from id ASUS_WMI_DEVID_WLAN_LED |
| 873 | * while we query the wlan status through WMI(ASUS_WMI_DEVID_WLAN). |
| 874 | * So, we have to record wlan status in id ASUS_WMI_DEVID_WLAN_LED |
| 875 | * while setting the wlan status through WMI. |
| 876 | * This is also the behavior that windows app will do. |
| 877 | */ |
| 878 | if ((dev_id == ASUS_WMI_DEVID_WLAN) && |
| 879 | priv->asus->driver->wlan_ctrl_by_user) |
| 880 | dev_id = ASUS_WMI_DEVID_WLAN_LED; |
| 881 | |
| 882 | return asus_wmi_set_devstate(dev_id, ctrl_param, NULL); |
Corentin Chary | ba48fdb | 2010-11-29 08:14:07 +0100 | [diff] [blame] | 883 | } |
| 884 | |
Corentin Chary | e12e6d9 | 2011-02-26 10:20:31 +0100 | [diff] [blame] | 885 | static void asus_rfkill_query(struct rfkill *rfkill, void *data) |
Corentin Chary | ba48fdb | 2010-11-29 08:14:07 +0100 | [diff] [blame] | 886 | { |
Corentin Chary | a7ce3f0 | 2011-02-26 10:20:33 +0100 | [diff] [blame] | 887 | struct asus_rfkill *priv = data; |
Corentin Chary | 5c95638 | 2011-02-06 13:28:31 +0100 | [diff] [blame] | 888 | int result; |
Corentin Chary | ba48fdb | 2010-11-29 08:14:07 +0100 | [diff] [blame] | 889 | |
Corentin Chary | 1d070f89 | 2011-02-26 10:20:36 +0100 | [diff] [blame] | 890 | result = asus_wmi_get_devstate_simple(priv->asus, priv->dev_id); |
Corentin Chary | ba48fdb | 2010-11-29 08:14:07 +0100 | [diff] [blame] | 891 | |
Corentin Chary | 5c95638 | 2011-02-06 13:28:31 +0100 | [diff] [blame] | 892 | if (result < 0) |
Corentin Chary | e12e6d9 | 2011-02-26 10:20:31 +0100 | [diff] [blame] | 893 | return; |
Corentin Chary | ba48fdb | 2010-11-29 08:14:07 +0100 | [diff] [blame] | 894 | |
Corentin Chary | a7ce3f0 | 2011-02-26 10:20:33 +0100 | [diff] [blame] | 895 | rfkill_set_sw_state(priv->rfkill, !result); |
Corentin Chary | ba48fdb | 2010-11-29 08:14:07 +0100 | [diff] [blame] | 896 | } |
| 897 | |
Corentin Chary | e12e6d9 | 2011-02-26 10:20:31 +0100 | [diff] [blame] | 898 | static int asus_rfkill_wlan_set(void *data, bool blocked) |
Corentin Chary | 279f8f9 | 2011-02-06 13:28:29 +0100 | [diff] [blame] | 899 | { |
Corentin Chary | a7ce3f0 | 2011-02-26 10:20:33 +0100 | [diff] [blame] | 900 | struct asus_rfkill *priv = data; |
| 901 | struct asus_wmi *asus = priv->asus; |
Corentin Chary | 279f8f9 | 2011-02-06 13:28:29 +0100 | [diff] [blame] | 902 | int ret; |
| 903 | |
| 904 | /* |
| 905 | * This handler is enabled only if hotplug is enabled. |
Corentin Chary | e12e6d9 | 2011-02-26 10:20:31 +0100 | [diff] [blame] | 906 | * In this case, the asus_wmi_set_devstate() will |
Corentin Chary | 279f8f9 | 2011-02-06 13:28:29 +0100 | [diff] [blame] | 907 | * trigger a wmi notification and we need to wait |
| 908 | * this call to finish before being able to call |
| 909 | * any wmi method |
| 910 | */ |
Corentin Chary | e12e6d9 | 2011-02-26 10:20:31 +0100 | [diff] [blame] | 911 | mutex_lock(&asus->wmi_lock); |
Corentin Chary | a7ce3f0 | 2011-02-26 10:20:33 +0100 | [diff] [blame] | 912 | ret = asus_rfkill_set(data, blocked); |
Corentin Chary | e12e6d9 | 2011-02-26 10:20:31 +0100 | [diff] [blame] | 913 | mutex_unlock(&asus->wmi_lock); |
Corentin Chary | 279f8f9 | 2011-02-06 13:28:29 +0100 | [diff] [blame] | 914 | return ret; |
| 915 | } |
| 916 | |
Corentin Chary | e12e6d9 | 2011-02-26 10:20:31 +0100 | [diff] [blame] | 917 | static const struct rfkill_ops asus_rfkill_wlan_ops = { |
| 918 | .set_block = asus_rfkill_wlan_set, |
Corentin Chary | a7ce3f0 | 2011-02-26 10:20:33 +0100 | [diff] [blame] | 919 | .query = asus_rfkill_query, |
Corentin Chary | 279f8f9 | 2011-02-06 13:28:29 +0100 | [diff] [blame] | 920 | }; |
| 921 | |
Corentin Chary | e12e6d9 | 2011-02-26 10:20:31 +0100 | [diff] [blame] | 922 | static const struct rfkill_ops asus_rfkill_ops = { |
| 923 | .set_block = asus_rfkill_set, |
| 924 | .query = asus_rfkill_query, |
Corentin Chary | ba48fdb | 2010-11-29 08:14:07 +0100 | [diff] [blame] | 925 | }; |
| 926 | |
Corentin Chary | e12e6d9 | 2011-02-26 10:20:31 +0100 | [diff] [blame] | 927 | static int asus_new_rfkill(struct asus_wmi *asus, |
Corentin Chary | a7ce3f0 | 2011-02-26 10:20:33 +0100 | [diff] [blame] | 928 | struct asus_rfkill *arfkill, |
Corentin Chary | e12e6d9 | 2011-02-26 10:20:31 +0100 | [diff] [blame] | 929 | const char *name, enum rfkill_type type, int dev_id) |
Corentin Chary | ba48fdb | 2010-11-29 08:14:07 +0100 | [diff] [blame] | 930 | { |
Corentin Chary | 1d070f89 | 2011-02-26 10:20:36 +0100 | [diff] [blame] | 931 | int result = asus_wmi_get_devstate_simple(asus, dev_id); |
Corentin Chary | a7ce3f0 | 2011-02-26 10:20:33 +0100 | [diff] [blame] | 932 | struct rfkill **rfkill = &arfkill->rfkill; |
Corentin Chary | ba48fdb | 2010-11-29 08:14:07 +0100 | [diff] [blame] | 933 | |
Corentin Chary | 5c95638 | 2011-02-06 13:28:31 +0100 | [diff] [blame] | 934 | if (result < 0) |
| 935 | return result; |
Corentin Chary | ba48fdb | 2010-11-29 08:14:07 +0100 | [diff] [blame] | 936 | |
Corentin Chary | a7ce3f0 | 2011-02-26 10:20:33 +0100 | [diff] [blame] | 937 | arfkill->dev_id = dev_id; |
| 938 | arfkill->asus = asus; |
| 939 | |
AceLan Kao | c87992d | 2012-03-20 09:53:08 +0100 | [diff] [blame] | 940 | if (dev_id == ASUS_WMI_DEVID_WLAN && |
| 941 | asus->driver->quirks->hotplug_wireless) |
Corentin Chary | e12e6d9 | 2011-02-26 10:20:31 +0100 | [diff] [blame] | 942 | *rfkill = rfkill_alloc(name, &asus->platform_device->dev, type, |
Corentin Chary | a7ce3f0 | 2011-02-26 10:20:33 +0100 | [diff] [blame] | 943 | &asus_rfkill_wlan_ops, arfkill); |
Corentin Chary | 279f8f9 | 2011-02-06 13:28:29 +0100 | [diff] [blame] | 944 | else |
Corentin Chary | e12e6d9 | 2011-02-26 10:20:31 +0100 | [diff] [blame] | 945 | *rfkill = rfkill_alloc(name, &asus->platform_device->dev, type, |
Corentin Chary | a7ce3f0 | 2011-02-26 10:20:33 +0100 | [diff] [blame] | 946 | &asus_rfkill_ops, arfkill); |
Corentin Chary | ba48fdb | 2010-11-29 08:14:07 +0100 | [diff] [blame] | 947 | |
| 948 | if (!*rfkill) |
| 949 | return -EINVAL; |
| 950 | |
AceLan Kao | e8f56c8 | 2013-05-30 10:31:50 +0800 | [diff] [blame] | 951 | if ((dev_id == ASUS_WMI_DEVID_WLAN) && |
AceLan Kao | f515623 | 2014-07-09 16:18:18 +0800 | [diff] [blame] | 952 | (asus->driver->quirks->wapf > 0)) |
AceLan Kao | 6cae06e | 2012-07-27 16:51:59 +0800 | [diff] [blame] | 953 | rfkill_set_led_trigger_name(*rfkill, "asus-wlan"); |
| 954 | |
Corentin Chary | 5c95638 | 2011-02-06 13:28:31 +0100 | [diff] [blame] | 955 | rfkill_init_sw_state(*rfkill, !result); |
Corentin Chary | ba48fdb | 2010-11-29 08:14:07 +0100 | [diff] [blame] | 956 | result = rfkill_register(*rfkill); |
| 957 | if (result) { |
| 958 | rfkill_destroy(*rfkill); |
| 959 | *rfkill = NULL; |
| 960 | return result; |
| 961 | } |
| 962 | return 0; |
| 963 | } |
| 964 | |
Corentin Chary | e12e6d9 | 2011-02-26 10:20:31 +0100 | [diff] [blame] | 965 | static void asus_wmi_rfkill_exit(struct asus_wmi *asus) |
Corentin Chary | ba48fdb | 2010-11-29 08:14:07 +0100 | [diff] [blame] | 966 | { |
Corentin Chary | e12e6d9 | 2011-02-26 10:20:31 +0100 | [diff] [blame] | 967 | asus_unregister_rfkill_notifier(asus, "\\_SB.PCI0.P0P5"); |
| 968 | asus_unregister_rfkill_notifier(asus, "\\_SB.PCI0.P0P6"); |
| 969 | asus_unregister_rfkill_notifier(asus, "\\_SB.PCI0.P0P7"); |
Corentin Chary | a7ce3f0 | 2011-02-26 10:20:33 +0100 | [diff] [blame] | 970 | if (asus->wlan.rfkill) { |
| 971 | rfkill_unregister(asus->wlan.rfkill); |
| 972 | rfkill_destroy(asus->wlan.rfkill); |
| 973 | asus->wlan.rfkill = NULL; |
Corentin Chary | ba48fdb | 2010-11-29 08:14:07 +0100 | [diff] [blame] | 974 | } |
Corentin Chary | afa7c88 | 2011-02-06 13:28:28 +0100 | [diff] [blame] | 975 | /* |
| 976 | * Refresh pci hotplug in case the rfkill state was changed after |
Corentin Chary | e12e6d9 | 2011-02-26 10:20:31 +0100 | [diff] [blame] | 977 | * asus_unregister_rfkill_notifier() |
Corentin Chary | afa7c88 | 2011-02-06 13:28:28 +0100 | [diff] [blame] | 978 | */ |
Corentin Chary | e12e6d9 | 2011-02-26 10:20:31 +0100 | [diff] [blame] | 979 | asus_rfkill_hotplug(asus); |
| 980 | if (asus->hotplug_slot) |
| 981 | pci_hp_deregister(asus->hotplug_slot); |
| 982 | if (asus->hotplug_workqueue) |
| 983 | destroy_workqueue(asus->hotplug_workqueue); |
Corentin Chary | afa7c88 | 2011-02-06 13:28:28 +0100 | [diff] [blame] | 984 | |
Corentin Chary | a7ce3f0 | 2011-02-26 10:20:33 +0100 | [diff] [blame] | 985 | if (asus->bluetooth.rfkill) { |
| 986 | rfkill_unregister(asus->bluetooth.rfkill); |
| 987 | rfkill_destroy(asus->bluetooth.rfkill); |
| 988 | asus->bluetooth.rfkill = NULL; |
Corentin Chary | ba48fdb | 2010-11-29 08:14:07 +0100 | [diff] [blame] | 989 | } |
Corentin Chary | a7ce3f0 | 2011-02-26 10:20:33 +0100 | [diff] [blame] | 990 | if (asus->wimax.rfkill) { |
| 991 | rfkill_unregister(asus->wimax.rfkill); |
| 992 | rfkill_destroy(asus->wimax.rfkill); |
| 993 | asus->wimax.rfkill = NULL; |
Corentin Chary | 2e9e159 | 2011-02-06 13:28:37 +0100 | [diff] [blame] | 994 | } |
Corentin Chary | a7ce3f0 | 2011-02-26 10:20:33 +0100 | [diff] [blame] | 995 | if (asus->wwan3g.rfkill) { |
| 996 | rfkill_unregister(asus->wwan3g.rfkill); |
| 997 | rfkill_destroy(asus->wwan3g.rfkill); |
| 998 | asus->wwan3g.rfkill = NULL; |
Corentin Chary | ba48fdb | 2010-11-29 08:14:07 +0100 | [diff] [blame] | 999 | } |
Corentin Chary | 43be8bd | 2011-07-01 11:34:40 +0200 | [diff] [blame] | 1000 | if (asus->gps.rfkill) { |
| 1001 | rfkill_unregister(asus->gps.rfkill); |
| 1002 | rfkill_destroy(asus->gps.rfkill); |
| 1003 | asus->gps.rfkill = NULL; |
| 1004 | } |
Corentin Chary | a912d32 | 2011-07-01 11:34:41 +0200 | [diff] [blame] | 1005 | if (asus->uwb.rfkill) { |
| 1006 | rfkill_unregister(asus->uwb.rfkill); |
| 1007 | rfkill_destroy(asus->uwb.rfkill); |
| 1008 | asus->uwb.rfkill = NULL; |
| 1009 | } |
Corentin Chary | ba48fdb | 2010-11-29 08:14:07 +0100 | [diff] [blame] | 1010 | } |
| 1011 | |
Corentin Chary | e12e6d9 | 2011-02-26 10:20:31 +0100 | [diff] [blame] | 1012 | static int asus_wmi_rfkill_init(struct asus_wmi *asus) |
Corentin Chary | ba48fdb | 2010-11-29 08:14:07 +0100 | [diff] [blame] | 1013 | { |
| 1014 | int result = 0; |
| 1015 | |
Corentin Chary | e12e6d9 | 2011-02-26 10:20:31 +0100 | [diff] [blame] | 1016 | mutex_init(&asus->hotplug_lock); |
| 1017 | mutex_init(&asus->wmi_lock); |
Corentin Chary | afa7c88 | 2011-02-06 13:28:28 +0100 | [diff] [blame] | 1018 | |
Corentin Chary | a7ce3f0 | 2011-02-26 10:20:33 +0100 | [diff] [blame] | 1019 | result = asus_new_rfkill(asus, &asus->wlan, "asus-wlan", |
| 1020 | RFKILL_TYPE_WLAN, ASUS_WMI_DEVID_WLAN); |
Corentin Chary | ba48fdb | 2010-11-29 08:14:07 +0100 | [diff] [blame] | 1021 | |
| 1022 | if (result && result != -ENODEV) |
| 1023 | goto exit; |
| 1024 | |
Corentin Chary | a7ce3f0 | 2011-02-26 10:20:33 +0100 | [diff] [blame] | 1025 | result = asus_new_rfkill(asus, &asus->bluetooth, |
Corentin Chary | e12e6d9 | 2011-02-26 10:20:31 +0100 | [diff] [blame] | 1026 | "asus-bluetooth", RFKILL_TYPE_BLUETOOTH, |
| 1027 | ASUS_WMI_DEVID_BLUETOOTH); |
Corentin Chary | ba48fdb | 2010-11-29 08:14:07 +0100 | [diff] [blame] | 1028 | |
| 1029 | if (result && result != -ENODEV) |
| 1030 | goto exit; |
| 1031 | |
Corentin Chary | a7ce3f0 | 2011-02-26 10:20:33 +0100 | [diff] [blame] | 1032 | result = asus_new_rfkill(asus, &asus->wimax, "asus-wimax", |
| 1033 | RFKILL_TYPE_WIMAX, ASUS_WMI_DEVID_WIMAX); |
Corentin Chary | 2e9e159 | 2011-02-06 13:28:37 +0100 | [diff] [blame] | 1034 | |
| 1035 | if (result && result != -ENODEV) |
| 1036 | goto exit; |
| 1037 | |
Corentin Chary | a7ce3f0 | 2011-02-26 10:20:33 +0100 | [diff] [blame] | 1038 | result = asus_new_rfkill(asus, &asus->wwan3g, "asus-wwan3g", |
| 1039 | RFKILL_TYPE_WWAN, ASUS_WMI_DEVID_WWAN3G); |
Corentin Chary | ba48fdb | 2010-11-29 08:14:07 +0100 | [diff] [blame] | 1040 | |
| 1041 | if (result && result != -ENODEV) |
| 1042 | goto exit; |
| 1043 | |
Corentin Chary | 43be8bd | 2011-07-01 11:34:40 +0200 | [diff] [blame] | 1044 | result = asus_new_rfkill(asus, &asus->gps, "asus-gps", |
| 1045 | RFKILL_TYPE_GPS, ASUS_WMI_DEVID_GPS); |
| 1046 | |
| 1047 | if (result && result != -ENODEV) |
| 1048 | goto exit; |
| 1049 | |
Corentin Chary | a912d32 | 2011-07-01 11:34:41 +0200 | [diff] [blame] | 1050 | result = asus_new_rfkill(asus, &asus->uwb, "asus-uwb", |
| 1051 | RFKILL_TYPE_UWB, ASUS_WMI_DEVID_UWB); |
| 1052 | |
| 1053 | if (result && result != -ENODEV) |
| 1054 | goto exit; |
| 1055 | |
AceLan Kao | c87992d | 2012-03-20 09:53:08 +0100 | [diff] [blame] | 1056 | if (!asus->driver->quirks->hotplug_wireless) |
Corentin Chary | c14d4b8 | 2011-02-06 13:28:40 +0100 | [diff] [blame] | 1057 | goto exit; |
| 1058 | |
Corentin Chary | e12e6d9 | 2011-02-26 10:20:31 +0100 | [diff] [blame] | 1059 | result = asus_setup_pci_hotplug(asus); |
Corentin Chary | afa7c88 | 2011-02-06 13:28:28 +0100 | [diff] [blame] | 1060 | /* |
| 1061 | * If we get -EBUSY then something else is handling the PCI hotplug - |
| 1062 | * don't fail in this case |
| 1063 | */ |
| 1064 | if (result == -EBUSY) |
| 1065 | result = 0; |
| 1066 | |
Corentin Chary | e12e6d9 | 2011-02-26 10:20:31 +0100 | [diff] [blame] | 1067 | asus_register_rfkill_notifier(asus, "\\_SB.PCI0.P0P5"); |
| 1068 | asus_register_rfkill_notifier(asus, "\\_SB.PCI0.P0P6"); |
| 1069 | asus_register_rfkill_notifier(asus, "\\_SB.PCI0.P0P7"); |
Corentin Chary | afa7c88 | 2011-02-06 13:28:28 +0100 | [diff] [blame] | 1070 | /* |
| 1071 | * Refresh pci hotplug in case the rfkill state was changed during |
| 1072 | * setup. |
| 1073 | */ |
Corentin Chary | e12e6d9 | 2011-02-26 10:20:31 +0100 | [diff] [blame] | 1074 | asus_rfkill_hotplug(asus); |
Corentin Chary | afa7c88 | 2011-02-06 13:28:28 +0100 | [diff] [blame] | 1075 | |
Corentin Chary | ba48fdb | 2010-11-29 08:14:07 +0100 | [diff] [blame] | 1076 | exit: |
| 1077 | if (result && result != -ENODEV) |
Corentin Chary | e12e6d9 | 2011-02-26 10:20:31 +0100 | [diff] [blame] | 1078 | asus_wmi_rfkill_exit(asus); |
Corentin Chary | ba48fdb | 2010-11-29 08:14:07 +0100 | [diff] [blame] | 1079 | |
| 1080 | if (result == -ENODEV) |
| 1081 | result = 0; |
| 1082 | |
| 1083 | return result; |
| 1084 | } |
| 1085 | |
Kai-Chuan Hsieh | 8023eff | 2016-09-01 23:55:55 +0800 | [diff] [blame] | 1086 | static void asus_wmi_set_xusb2pr(struct asus_wmi *asus) |
| 1087 | { |
| 1088 | struct pci_dev *xhci_pdev; |
| 1089 | u32 orig_ports_available; |
| 1090 | u32 ports_available = asus->driver->quirks->xusb2pr; |
| 1091 | |
| 1092 | xhci_pdev = pci_get_device(PCI_VENDOR_ID_INTEL, |
| 1093 | PCI_DEVICE_ID_INTEL_LYNXPOINT_LP_XHCI, |
| 1094 | NULL); |
| 1095 | |
| 1096 | if (!xhci_pdev) |
| 1097 | return; |
| 1098 | |
| 1099 | pci_read_config_dword(xhci_pdev, USB_INTEL_XUSB2PR, |
| 1100 | &orig_ports_available); |
| 1101 | |
| 1102 | pci_write_config_dword(xhci_pdev, USB_INTEL_XUSB2PR, |
| 1103 | cpu_to_le32(ports_available)); |
| 1104 | |
| 1105 | pr_info("set USB_INTEL_XUSB2PR old: 0x%04x, new: 0x%04x\n", |
| 1106 | orig_ports_available, ports_available); |
| 1107 | } |
| 1108 | |
Corentin Chary | ba48fdb | 2010-11-29 08:14:07 +0100 | [diff] [blame] | 1109 | /* |
Corentin Chary | e07babd | 2011-02-26 10:20:42 +0100 | [diff] [blame] | 1110 | * Hwmon device |
| 1111 | */ |
Kast Bernd | 53e755c | 2015-05-13 16:24:16 +0200 | [diff] [blame] | 1112 | static int asus_hwmon_agfn_fan_speed_read(struct asus_wmi *asus, int fan, |
| 1113 | int *speed) |
| 1114 | { |
| 1115 | struct fan_args args = { |
| 1116 | .agfn.len = sizeof(args), |
| 1117 | .agfn.mfun = ASUS_FAN_MFUN, |
| 1118 | .agfn.sfun = ASUS_FAN_SFUN_READ, |
| 1119 | .fan = fan, |
| 1120 | .speed = 0, |
| 1121 | }; |
| 1122 | struct acpi_buffer input = { (acpi_size) sizeof(args), &args }; |
| 1123 | int status; |
| 1124 | |
| 1125 | if (fan != 1) |
| 1126 | return -EINVAL; |
| 1127 | |
| 1128 | status = asus_wmi_evaluate_method_agfn(input); |
| 1129 | |
| 1130 | if (status || args.agfn.err) |
| 1131 | return -ENXIO; |
| 1132 | |
| 1133 | if (speed) |
| 1134 | *speed = args.speed; |
| 1135 | |
| 1136 | return 0; |
| 1137 | } |
| 1138 | |
| 1139 | static int asus_hwmon_agfn_fan_speed_write(struct asus_wmi *asus, int fan, |
| 1140 | int *speed) |
| 1141 | { |
| 1142 | struct fan_args args = { |
| 1143 | .agfn.len = sizeof(args), |
| 1144 | .agfn.mfun = ASUS_FAN_MFUN, |
| 1145 | .agfn.sfun = ASUS_FAN_SFUN_WRITE, |
| 1146 | .fan = fan, |
| 1147 | .speed = speed ? *speed : 0, |
| 1148 | }; |
| 1149 | struct acpi_buffer input = { (acpi_size) sizeof(args), &args }; |
| 1150 | int status; |
| 1151 | |
| 1152 | /* 1: for setting 1st fan's speed 0: setting auto mode */ |
| 1153 | if (fan != 1 && fan != 0) |
| 1154 | return -EINVAL; |
| 1155 | |
| 1156 | status = asus_wmi_evaluate_method_agfn(input); |
| 1157 | |
| 1158 | if (status || args.agfn.err) |
| 1159 | return -ENXIO; |
| 1160 | |
| 1161 | if (speed && fan == 1) |
| 1162 | asus->asus_hwmon_pwm = *speed; |
| 1163 | |
| 1164 | return 0; |
| 1165 | } |
| 1166 | |
| 1167 | /* |
| 1168 | * Check if we can read the speed of one fan. If true we assume we can also |
| 1169 | * control it. |
| 1170 | */ |
| 1171 | static int asus_hwmon_get_fan_number(struct asus_wmi *asus, int *num_fans) |
| 1172 | { |
| 1173 | int status; |
| 1174 | int speed = 0; |
| 1175 | |
| 1176 | *num_fans = 0; |
| 1177 | |
| 1178 | status = asus_hwmon_agfn_fan_speed_read(asus, 1, &speed); |
| 1179 | if (!status) |
| 1180 | *num_fans = 1; |
| 1181 | |
| 1182 | return 0; |
| 1183 | } |
| 1184 | |
| 1185 | static int asus_hwmon_fan_set_auto(struct asus_wmi *asus) |
| 1186 | { |
| 1187 | int status; |
| 1188 | |
| 1189 | status = asus_hwmon_agfn_fan_speed_write(asus, 0, NULL); |
| 1190 | if (status) |
| 1191 | return -ENXIO; |
| 1192 | |
| 1193 | asus->asus_hwmon_fan_manual_mode = false; |
| 1194 | |
| 1195 | return 0; |
| 1196 | } |
| 1197 | |
| 1198 | static int asus_hwmon_fan_rpm_show(struct device *dev, int fan) |
| 1199 | { |
| 1200 | struct asus_wmi *asus = dev_get_drvdata(dev); |
| 1201 | int value; |
| 1202 | int ret; |
| 1203 | |
| 1204 | /* no speed readable on manual mode */ |
| 1205 | if (asus->asus_hwmon_fan_manual_mode) |
| 1206 | return -ENXIO; |
| 1207 | |
| 1208 | ret = asus_hwmon_agfn_fan_speed_read(asus, fan+1, &value); |
| 1209 | if (ret) { |
| 1210 | pr_warn("reading fan speed failed: %d\n", ret); |
| 1211 | return -ENXIO; |
| 1212 | } |
| 1213 | |
| 1214 | return value; |
| 1215 | } |
| 1216 | |
| 1217 | static void asus_hwmon_pwm_show(struct asus_wmi *asus, int fan, int *value) |
| 1218 | { |
| 1219 | int err; |
| 1220 | |
| 1221 | if (asus->asus_hwmon_pwm >= 0) { |
| 1222 | *value = asus->asus_hwmon_pwm; |
| 1223 | return; |
| 1224 | } |
| 1225 | |
| 1226 | err = asus_wmi_get_devstate(asus, ASUS_WMI_DEVID_FAN_CTRL, value); |
| 1227 | if (err < 0) |
| 1228 | return; |
| 1229 | |
| 1230 | *value &= 0xFF; |
| 1231 | |
| 1232 | if (*value == 1) /* Low Speed */ |
| 1233 | *value = 85; |
| 1234 | else if (*value == 2) |
| 1235 | *value = 170; |
| 1236 | else if (*value == 3) |
| 1237 | *value = 255; |
| 1238 | else if (*value) { |
| 1239 | pr_err("Unknown fan speed %#x\n", *value); |
| 1240 | *value = -1; |
| 1241 | } |
| 1242 | } |
| 1243 | |
| 1244 | static ssize_t pwm1_show(struct device *dev, |
Corentin Chary | 49979d0 | 2011-07-01 11:34:26 +0200 | [diff] [blame] | 1245 | struct device_attribute *attr, |
| 1246 | char *buf) |
Corentin Chary | e07babd | 2011-02-26 10:20:42 +0100 | [diff] [blame] | 1247 | { |
| 1248 | struct asus_wmi *asus = dev_get_drvdata(dev); |
Kast Bernd | 53e755c | 2015-05-13 16:24:16 +0200 | [diff] [blame] | 1249 | int value; |
Corentin Chary | e07babd | 2011-02-26 10:20:42 +0100 | [diff] [blame] | 1250 | |
Kast Bernd | 53e755c | 2015-05-13 16:24:16 +0200 | [diff] [blame] | 1251 | asus_hwmon_pwm_show(asus, 0, &value); |
Corentin Chary | e07babd | 2011-02-26 10:20:42 +0100 | [diff] [blame] | 1252 | |
| 1253 | return sprintf(buf, "%d\n", value); |
| 1254 | } |
| 1255 | |
Kast Bernd | 53e755c | 2015-05-13 16:24:16 +0200 | [diff] [blame] | 1256 | static ssize_t pwm1_store(struct device *dev, |
| 1257 | struct device_attribute *attr, |
| 1258 | const char *buf, size_t count) { |
| 1259 | struct asus_wmi *asus = dev_get_drvdata(dev); |
| 1260 | int value; |
| 1261 | int state; |
| 1262 | int ret; |
| 1263 | |
| 1264 | ret = kstrtouint(buf, 10, &value); |
| 1265 | |
| 1266 | if (ret) |
| 1267 | return ret; |
| 1268 | |
| 1269 | value = clamp(value, 0, 255); |
| 1270 | |
| 1271 | state = asus_hwmon_agfn_fan_speed_write(asus, 1, &value); |
| 1272 | if (state) |
| 1273 | pr_warn("Setting fan speed failed: %d\n", state); |
| 1274 | else |
| 1275 | asus->asus_hwmon_fan_manual_mode = true; |
| 1276 | |
| 1277 | return count; |
| 1278 | } |
| 1279 | |
| 1280 | static ssize_t fan1_input_show(struct device *dev, |
| 1281 | struct device_attribute *attr, |
| 1282 | char *buf) |
| 1283 | { |
| 1284 | int value = asus_hwmon_fan_rpm_show(dev, 0); |
| 1285 | |
| 1286 | return sprintf(buf, "%d\n", value < 0 ? -1 : value*100); |
| 1287 | |
| 1288 | } |
| 1289 | |
| 1290 | static ssize_t pwm1_enable_show(struct device *dev, |
| 1291 | struct device_attribute *attr, |
| 1292 | char *buf) |
| 1293 | { |
| 1294 | struct asus_wmi *asus = dev_get_drvdata(dev); |
| 1295 | |
| 1296 | if (asus->asus_hwmon_fan_manual_mode) |
| 1297 | return sprintf(buf, "%d\n", ASUS_FAN_CTRL_MANUAL); |
| 1298 | |
| 1299 | return sprintf(buf, "%d\n", ASUS_FAN_CTRL_AUTO); |
| 1300 | } |
| 1301 | |
| 1302 | static ssize_t pwm1_enable_store(struct device *dev, |
| 1303 | struct device_attribute *attr, |
| 1304 | const char *buf, size_t count) |
| 1305 | { |
| 1306 | struct asus_wmi *asus = dev_get_drvdata(dev); |
| 1307 | int status = 0; |
| 1308 | int state; |
| 1309 | int ret; |
| 1310 | |
| 1311 | ret = kstrtouint(buf, 10, &state); |
| 1312 | |
| 1313 | if (ret) |
| 1314 | return ret; |
| 1315 | |
| 1316 | if (state == ASUS_FAN_CTRL_MANUAL) |
| 1317 | asus->asus_hwmon_fan_manual_mode = true; |
| 1318 | else |
| 1319 | status = asus_hwmon_fan_set_auto(asus); |
| 1320 | |
| 1321 | if (status) |
| 1322 | return status; |
| 1323 | |
| 1324 | return count; |
| 1325 | } |
| 1326 | |
| 1327 | static ssize_t fan1_label_show(struct device *dev, |
| 1328 | struct device_attribute *attr, |
| 1329 | char *buf) |
| 1330 | { |
| 1331 | return sprintf(buf, "%s\n", ASUS_FAN_DESC); |
| 1332 | } |
| 1333 | |
Corentin Chary | 6118b8a | 2011-07-01 11:34:36 +0200 | [diff] [blame] | 1334 | static ssize_t asus_hwmon_temp1(struct device *dev, |
| 1335 | struct device_attribute *attr, |
| 1336 | char *buf) |
| 1337 | { |
| 1338 | struct asus_wmi *asus = dev_get_drvdata(dev); |
| 1339 | u32 value; |
| 1340 | int err; |
| 1341 | |
| 1342 | err = asus_wmi_get_devstate(asus, ASUS_WMI_DEVID_THERMAL_CTRL, &value); |
| 1343 | |
| 1344 | if (err < 0) |
| 1345 | return err; |
| 1346 | |
Rasmus Villemoes | e866a2e | 2015-10-01 23:45:31 +0200 | [diff] [blame] | 1347 | value = DECI_KELVIN_TO_CELSIUS((value & 0xFFFF)) * 1000; |
Corentin Chary | 6118b8a | 2011-07-01 11:34:36 +0200 | [diff] [blame] | 1348 | |
| 1349 | return sprintf(buf, "%d\n", value); |
| 1350 | } |
| 1351 | |
Kast Bernd | 53e755c | 2015-05-13 16:24:16 +0200 | [diff] [blame] | 1352 | /* Fan1 */ |
| 1353 | static DEVICE_ATTR_RW(pwm1); |
| 1354 | static DEVICE_ATTR_RW(pwm1_enable); |
| 1355 | static DEVICE_ATTR_RO(fan1_input); |
| 1356 | static DEVICE_ATTR_RO(fan1_label); |
| 1357 | |
| 1358 | /* Temperature */ |
Guenter Roeck | 50a639f | 2013-11-23 11:03:17 -0800 | [diff] [blame] | 1359 | static DEVICE_ATTR(temp1_input, S_IRUGO, asus_hwmon_temp1, NULL); |
Corentin Chary | e07babd | 2011-02-26 10:20:42 +0100 | [diff] [blame] | 1360 | |
| 1361 | static struct attribute *hwmon_attributes[] = { |
Guenter Roeck | 50a639f | 2013-11-23 11:03:17 -0800 | [diff] [blame] | 1362 | &dev_attr_pwm1.attr, |
Kast Bernd | 53e755c | 2015-05-13 16:24:16 +0200 | [diff] [blame] | 1363 | &dev_attr_pwm1_enable.attr, |
| 1364 | &dev_attr_fan1_input.attr, |
| 1365 | &dev_attr_fan1_label.attr, |
| 1366 | |
Guenter Roeck | 50a639f | 2013-11-23 11:03:17 -0800 | [diff] [blame] | 1367 | &dev_attr_temp1_input.attr, |
Corentin Chary | e07babd | 2011-02-26 10:20:42 +0100 | [diff] [blame] | 1368 | NULL |
| 1369 | }; |
| 1370 | |
Al Viro | 587a1f1 | 2011-07-23 23:11:19 -0400 | [diff] [blame] | 1371 | static umode_t asus_hwmon_sysfs_is_visible(struct kobject *kobj, |
Corentin Chary | e02431d | 2011-07-01 11:34:37 +0200 | [diff] [blame] | 1372 | struct attribute *attr, int idx) |
Corentin Chary | e07babd | 2011-02-26 10:20:42 +0100 | [diff] [blame] | 1373 | { |
| 1374 | struct device *dev = container_of(kobj, struct device, kobj); |
| 1375 | struct platform_device *pdev = to_platform_device(dev->parent); |
| 1376 | struct asus_wmi *asus = platform_get_drvdata(pdev); |
Corentin Chary | e07babd | 2011-02-26 10:20:42 +0100 | [diff] [blame] | 1377 | int dev_id = -1; |
Kast Bernd | 53e755c | 2015-05-13 16:24:16 +0200 | [diff] [blame] | 1378 | int fan_attr = -1; |
Corentin Chary | e07babd | 2011-02-26 10:20:42 +0100 | [diff] [blame] | 1379 | u32 value = ASUS_WMI_UNSUPPORTED_METHOD; |
Kast Bernd | 53e755c | 2015-05-13 16:24:16 +0200 | [diff] [blame] | 1380 | bool ok = true; |
Corentin Chary | e07babd | 2011-02-26 10:20:42 +0100 | [diff] [blame] | 1381 | |
Guenter Roeck | 50a639f | 2013-11-23 11:03:17 -0800 | [diff] [blame] | 1382 | if (attr == &dev_attr_pwm1.attr) |
Corentin Chary | e07babd | 2011-02-26 10:20:42 +0100 | [diff] [blame] | 1383 | dev_id = ASUS_WMI_DEVID_FAN_CTRL; |
Guenter Roeck | 50a639f | 2013-11-23 11:03:17 -0800 | [diff] [blame] | 1384 | else if (attr == &dev_attr_temp1_input.attr) |
Corentin Chary | e02431d | 2011-07-01 11:34:37 +0200 | [diff] [blame] | 1385 | dev_id = ASUS_WMI_DEVID_THERMAL_CTRL; |
Corentin Chary | e07babd | 2011-02-26 10:20:42 +0100 | [diff] [blame] | 1386 | |
Kast Bernd | 53e755c | 2015-05-13 16:24:16 +0200 | [diff] [blame] | 1387 | |
| 1388 | if (attr == &dev_attr_fan1_input.attr |
| 1389 | || attr == &dev_attr_fan1_label.attr |
| 1390 | || attr == &dev_attr_pwm1.attr |
| 1391 | || attr == &dev_attr_pwm1_enable.attr) { |
| 1392 | fan_attr = 1; |
| 1393 | } |
| 1394 | |
Corentin Chary | e07babd | 2011-02-26 10:20:42 +0100 | [diff] [blame] | 1395 | if (dev_id != -1) { |
| 1396 | int err = asus_wmi_get_devstate(asus, dev_id, &value); |
| 1397 | |
Kast Bernd | 53e755c | 2015-05-13 16:24:16 +0200 | [diff] [blame] | 1398 | if (err < 0 && fan_attr == -1) |
Al Viro | e772aed | 2011-07-23 20:59:40 -0400 | [diff] [blame] | 1399 | return 0; /* can't return negative here */ |
Corentin Chary | e07babd | 2011-02-26 10:20:42 +0100 | [diff] [blame] | 1400 | } |
| 1401 | |
| 1402 | if (dev_id == ASUS_WMI_DEVID_FAN_CTRL) { |
| 1403 | /* |
| 1404 | * We need to find a better way, probably using sfun, |
| 1405 | * bits or spec ... |
| 1406 | * Currently we disable it if: |
| 1407 | * - ASUS_WMI_UNSUPPORTED_METHOD is returned |
| 1408 | * - reverved bits are non-zero |
| 1409 | * - sfun and presence bit are not set |
| 1410 | */ |
Corentin Chary | 49979d0 | 2011-07-01 11:34:26 +0200 | [diff] [blame] | 1411 | if (value == ASUS_WMI_UNSUPPORTED_METHOD || value & 0xFFF80000 |
Corentin Chary | e07babd | 2011-02-26 10:20:42 +0100 | [diff] [blame] | 1412 | || (!asus->sfun && !(value & ASUS_WMI_DSTS_PRESENCE_BIT))) |
| 1413 | ok = false; |
Kast Bernd | 53e755c | 2015-05-13 16:24:16 +0200 | [diff] [blame] | 1414 | else |
| 1415 | ok = fan_attr <= asus->asus_hwmon_num_fans; |
Corentin Chary | e02431d | 2011-07-01 11:34:37 +0200 | [diff] [blame] | 1416 | } else if (dev_id == ASUS_WMI_DEVID_THERMAL_CTRL) { |
| 1417 | /* If value is zero, something is clearly wrong */ |
Kast Bernd | 53e755c | 2015-05-13 16:24:16 +0200 | [diff] [blame] | 1418 | if (!value) |
Corentin Chary | e02431d | 2011-07-01 11:34:37 +0200 | [diff] [blame] | 1419 | ok = false; |
Kast Bernd | 53e755c | 2015-05-13 16:24:16 +0200 | [diff] [blame] | 1420 | } else if (fan_attr <= asus->asus_hwmon_num_fans && fan_attr != -1) { |
| 1421 | ok = true; |
| 1422 | } else { |
| 1423 | ok = false; |
Corentin Chary | e07babd | 2011-02-26 10:20:42 +0100 | [diff] [blame] | 1424 | } |
| 1425 | |
| 1426 | return ok ? attr->mode : 0; |
| 1427 | } |
| 1428 | |
| 1429 | static struct attribute_group hwmon_attribute_group = { |
| 1430 | .is_visible = asus_hwmon_sysfs_is_visible, |
| 1431 | .attrs = hwmon_attributes |
| 1432 | }; |
Guenter Roeck | 50a639f | 2013-11-23 11:03:17 -0800 | [diff] [blame] | 1433 | __ATTRIBUTE_GROUPS(hwmon_attribute); |
Corentin Chary | e07babd | 2011-02-26 10:20:42 +0100 | [diff] [blame] | 1434 | |
| 1435 | static int asus_wmi_hwmon_init(struct asus_wmi *asus) |
| 1436 | { |
| 1437 | struct device *hwmon; |
Corentin Chary | e07babd | 2011-02-26 10:20:42 +0100 | [diff] [blame] | 1438 | |
Guenter Roeck | 50a639f | 2013-11-23 11:03:17 -0800 | [diff] [blame] | 1439 | hwmon = hwmon_device_register_with_groups(&asus->platform_device->dev, |
| 1440 | "asus", asus, |
| 1441 | hwmon_attribute_groups); |
Corentin Chary | e07babd | 2011-02-26 10:20:42 +0100 | [diff] [blame] | 1442 | if (IS_ERR(hwmon)) { |
| 1443 | pr_err("Could not register asus hwmon device\n"); |
| 1444 | return PTR_ERR(hwmon); |
| 1445 | } |
Guenter Roeck | 50a639f | 2013-11-23 11:03:17 -0800 | [diff] [blame] | 1446 | return 0; |
Corentin Chary | e07babd | 2011-02-26 10:20:42 +0100 | [diff] [blame] | 1447 | } |
| 1448 | |
| 1449 | /* |
Corentin Chary | 084fca6 | 2010-11-29 08:14:06 +0100 | [diff] [blame] | 1450 | * Backlight |
| 1451 | */ |
Corentin Chary | 1d070f89 | 2011-02-26 10:20:36 +0100 | [diff] [blame] | 1452 | static int read_backlight_power(struct asus_wmi *asus) |
Corentin Chary | b718726 | 2011-02-06 13:28:39 +0100 | [diff] [blame] | 1453 | { |
AceLan Kao | 6e0044b | 2012-03-20 09:53:09 +0100 | [diff] [blame] | 1454 | int ret; |
| 1455 | if (asus->driver->quirks->store_backlight_power) |
| 1456 | ret = !asus->driver->panel_power; |
| 1457 | else |
| 1458 | ret = asus_wmi_get_devstate_simple(asus, |
| 1459 | ASUS_WMI_DEVID_BACKLIGHT); |
Corentin Chary | b718726 | 2011-02-06 13:28:39 +0100 | [diff] [blame] | 1460 | |
| 1461 | if (ret < 0) |
| 1462 | return ret; |
| 1463 | |
| 1464 | return ret ? FB_BLANK_UNBLANK : FB_BLANK_POWERDOWN; |
| 1465 | } |
| 1466 | |
Corentin Chary | 8fbea01 | 2011-02-26 10:20:37 +0100 | [diff] [blame] | 1467 | static int read_brightness_max(struct asus_wmi *asus) |
| 1468 | { |
| 1469 | u32 retval; |
| 1470 | int err; |
| 1471 | |
| 1472 | err = asus_wmi_get_devstate(asus, ASUS_WMI_DEVID_BRIGHTNESS, &retval); |
| 1473 | |
| 1474 | if (err < 0) |
| 1475 | return err; |
| 1476 | |
| 1477 | retval = retval & ASUS_WMI_DSTS_MAX_BRIGTH_MASK; |
| 1478 | retval >>= 8; |
| 1479 | |
| 1480 | if (!retval) |
| 1481 | return -ENODEV; |
| 1482 | |
| 1483 | return retval; |
| 1484 | } |
| 1485 | |
Yong Wang | 3d7b165 | 2010-04-11 09:27:54 +0800 | [diff] [blame] | 1486 | static int read_brightness(struct backlight_device *bd) |
| 1487 | { |
Corentin Chary | 1d070f89 | 2011-02-26 10:20:36 +0100 | [diff] [blame] | 1488 | struct asus_wmi *asus = bl_get_data(bd); |
Dan Carpenter | 0986f25 | 2011-03-15 10:06:23 +0300 | [diff] [blame] | 1489 | u32 retval; |
| 1490 | int err; |
Yong Wang | 3d7b165 | 2010-04-11 09:27:54 +0800 | [diff] [blame] | 1491 | |
Corentin Chary | 1d070f89 | 2011-02-26 10:20:36 +0100 | [diff] [blame] | 1492 | err = asus_wmi_get_devstate(asus, ASUS_WMI_DEVID_BRIGHTNESS, &retval); |
Yong Wang | 3d7b165 | 2010-04-11 09:27:54 +0800 | [diff] [blame] | 1493 | |
Corentin Chary | d33da3b | 2011-02-26 10:20:35 +0100 | [diff] [blame] | 1494 | if (err < 0) |
| 1495 | return err; |
| 1496 | |
| 1497 | return retval & ASUS_WMI_DSTS_BRIGHTNESS_MASK; |
Yong Wang | 3d7b165 | 2010-04-11 09:27:54 +0800 | [diff] [blame] | 1498 | } |
| 1499 | |
AceLan Kao | c87992d | 2012-03-20 09:53:08 +0100 | [diff] [blame] | 1500 | static u32 get_scalar_command(struct backlight_device *bd) |
| 1501 | { |
| 1502 | struct asus_wmi *asus = bl_get_data(bd); |
| 1503 | u32 ctrl_param = 0; |
| 1504 | |
| 1505 | if ((asus->driver->brightness < bd->props.brightness) || |
| 1506 | bd->props.brightness == bd->props.max_brightness) |
| 1507 | ctrl_param = 0x00008001; |
| 1508 | else if ((asus->driver->brightness > bd->props.brightness) || |
| 1509 | bd->props.brightness == 0) |
| 1510 | ctrl_param = 0x00008000; |
| 1511 | |
| 1512 | asus->driver->brightness = bd->props.brightness; |
| 1513 | |
| 1514 | return ctrl_param; |
| 1515 | } |
| 1516 | |
Yong Wang | 3d7b165 | 2010-04-11 09:27:54 +0800 | [diff] [blame] | 1517 | static int update_bl_status(struct backlight_device *bd) |
| 1518 | { |
Corentin Chary | 1d070f89 | 2011-02-26 10:20:36 +0100 | [diff] [blame] | 1519 | struct asus_wmi *asus = bl_get_data(bd); |
Corentin Chary | dfed65d | 2010-11-29 08:14:12 +0100 | [diff] [blame] | 1520 | u32 ctrl_param; |
AceLan Kao | 6e0044b | 2012-03-20 09:53:09 +0100 | [diff] [blame] | 1521 | int power, err = 0; |
Corentin Chary | b718726 | 2011-02-06 13:28:39 +0100 | [diff] [blame] | 1522 | |
Corentin Chary | 1d070f89 | 2011-02-26 10:20:36 +0100 | [diff] [blame] | 1523 | power = read_backlight_power(asus); |
Corentin Chary | b718726 | 2011-02-06 13:28:39 +0100 | [diff] [blame] | 1524 | if (power != -ENODEV && bd->props.power != power) { |
| 1525 | ctrl_param = !!(bd->props.power == FB_BLANK_UNBLANK); |
Corentin Chary | d33da3b | 2011-02-26 10:20:35 +0100 | [diff] [blame] | 1526 | err = asus_wmi_set_devstate(ASUS_WMI_DEVID_BACKLIGHT, |
| 1527 | ctrl_param, NULL); |
AceLan Kao | 6e0044b | 2012-03-20 09:53:09 +0100 | [diff] [blame] | 1528 | if (asus->driver->quirks->store_backlight_power) |
| 1529 | asus->driver->panel_power = bd->props.power; |
AceLan Kao | 6e0044b | 2012-03-20 09:53:09 +0100 | [diff] [blame] | 1530 | |
Corentin Chary | ade28ab | 2012-03-20 09:53:14 +0100 | [diff] [blame] | 1531 | /* When using scalar brightness, updating the brightness |
| 1532 | * will mess with the backlight power */ |
| 1533 | if (asus->driver->quirks->scalar_panel_brightness) |
| 1534 | return err; |
Corentin Chary | b718726 | 2011-02-06 13:28:39 +0100 | [diff] [blame] | 1535 | } |
Corentin Chary | ade28ab | 2012-03-20 09:53:14 +0100 | [diff] [blame] | 1536 | |
| 1537 | if (asus->driver->quirks->scalar_panel_brightness) |
| 1538 | ctrl_param = get_scalar_command(bd); |
| 1539 | else |
| 1540 | ctrl_param = bd->props.brightness; |
| 1541 | |
| 1542 | err = asus_wmi_set_devstate(ASUS_WMI_DEVID_BRIGHTNESS, |
| 1543 | ctrl_param, NULL); |
| 1544 | |
Corentin Chary | 8fbea01 | 2011-02-26 10:20:37 +0100 | [diff] [blame] | 1545 | return err; |
Yong Wang | 3d7b165 | 2010-04-11 09:27:54 +0800 | [diff] [blame] | 1546 | } |
| 1547 | |
Corentin Chary | e12e6d9 | 2011-02-26 10:20:31 +0100 | [diff] [blame] | 1548 | static const struct backlight_ops asus_wmi_bl_ops = { |
Yong Wang | 3d7b165 | 2010-04-11 09:27:54 +0800 | [diff] [blame] | 1549 | .get_brightness = read_brightness, |
| 1550 | .update_status = update_bl_status, |
| 1551 | }; |
| 1552 | |
Corentin Chary | e12e6d9 | 2011-02-26 10:20:31 +0100 | [diff] [blame] | 1553 | static int asus_wmi_backlight_notify(struct asus_wmi *asus, int code) |
Yong Wang | 3d7b165 | 2010-04-11 09:27:54 +0800 | [diff] [blame] | 1554 | { |
Corentin Chary | e12e6d9 | 2011-02-26 10:20:31 +0100 | [diff] [blame] | 1555 | struct backlight_device *bd = asus->backlight_device; |
Yong Wang | 3d7b165 | 2010-04-11 09:27:54 +0800 | [diff] [blame] | 1556 | int old = bd->props.brightness; |
Daniel Mack | b7670ed | 2010-05-19 12:37:01 +0200 | [diff] [blame] | 1557 | int new = old; |
Yong Wang | 3d7b165 | 2010-04-11 09:27:54 +0800 | [diff] [blame] | 1558 | |
| 1559 | if (code >= NOTIFY_BRNUP_MIN && code <= NOTIFY_BRNUP_MAX) |
| 1560 | new = code - NOTIFY_BRNUP_MIN + 1; |
| 1561 | else if (code >= NOTIFY_BRNDOWN_MIN && code <= NOTIFY_BRNDOWN_MAX) |
| 1562 | new = code - NOTIFY_BRNDOWN_MIN; |
| 1563 | |
| 1564 | bd->props.brightness = new; |
| 1565 | backlight_update_status(bd); |
| 1566 | backlight_force_update(bd, BACKLIGHT_UPDATE_HOTKEY); |
| 1567 | |
| 1568 | return old; |
| 1569 | } |
| 1570 | |
Corentin Chary | e12e6d9 | 2011-02-26 10:20:31 +0100 | [diff] [blame] | 1571 | static int asus_wmi_backlight_init(struct asus_wmi *asus) |
Yong Wang | 3d7b165 | 2010-04-11 09:27:54 +0800 | [diff] [blame] | 1572 | { |
| 1573 | struct backlight_device *bd; |
| 1574 | struct backlight_properties props; |
Corentin Chary | b718726 | 2011-02-06 13:28:39 +0100 | [diff] [blame] | 1575 | int max; |
| 1576 | int power; |
| 1577 | |
Corentin Chary | 8fbea01 | 2011-02-26 10:20:37 +0100 | [diff] [blame] | 1578 | max = read_brightness_max(asus); |
Hans de Goede | 86ac273 | 2014-07-08 10:47:22 +0200 | [diff] [blame] | 1579 | if (max < 0) |
Corentin Chary | 8fbea01 | 2011-02-26 10:20:37 +0100 | [diff] [blame] | 1580 | return max; |
| 1581 | |
| 1582 | power = read_backlight_power(asus); |
| 1583 | |
Corentin Chary | b718726 | 2011-02-06 13:28:39 +0100 | [diff] [blame] | 1584 | if (power == -ENODEV) |
| 1585 | power = FB_BLANK_UNBLANK; |
Corentin Chary | 8fbea01 | 2011-02-26 10:20:37 +0100 | [diff] [blame] | 1586 | else if (power < 0) |
| 1587 | return power; |
Yong Wang | 3d7b165 | 2010-04-11 09:27:54 +0800 | [diff] [blame] | 1588 | |
| 1589 | memset(&props, 0, sizeof(struct backlight_properties)); |
Axel Lin | 60cfa09 | 2011-06-29 11:43:30 +0800 | [diff] [blame] | 1590 | props.type = BACKLIGHT_PLATFORM; |
Corentin Chary | b718726 | 2011-02-06 13:28:39 +0100 | [diff] [blame] | 1591 | props.max_brightness = max; |
Corentin Chary | e12e6d9 | 2011-02-26 10:20:31 +0100 | [diff] [blame] | 1592 | bd = backlight_device_register(asus->driver->name, |
| 1593 | &asus->platform_device->dev, asus, |
| 1594 | &asus_wmi_bl_ops, &props); |
Yong Wang | 3d7b165 | 2010-04-11 09:27:54 +0800 | [diff] [blame] | 1595 | if (IS_ERR(bd)) { |
| 1596 | pr_err("Could not register backlight device\n"); |
| 1597 | return PTR_ERR(bd); |
| 1598 | } |
| 1599 | |
Corentin Chary | e12e6d9 | 2011-02-26 10:20:31 +0100 | [diff] [blame] | 1600 | asus->backlight_device = bd; |
Yong Wang | 3d7b165 | 2010-04-11 09:27:54 +0800 | [diff] [blame] | 1601 | |
AceLan Kao | 6e0044b | 2012-03-20 09:53:09 +0100 | [diff] [blame] | 1602 | if (asus->driver->quirks->store_backlight_power) |
| 1603 | asus->driver->panel_power = power; |
| 1604 | |
Yong Wang | 3d7b165 | 2010-04-11 09:27:54 +0800 | [diff] [blame] | 1605 | bd->props.brightness = read_brightness(bd); |
Corentin Chary | b718726 | 2011-02-06 13:28:39 +0100 | [diff] [blame] | 1606 | bd->props.power = power; |
Yong Wang | 3d7b165 | 2010-04-11 09:27:54 +0800 | [diff] [blame] | 1607 | backlight_update_status(bd); |
| 1608 | |
AceLan Kao | c87992d | 2012-03-20 09:53:08 +0100 | [diff] [blame] | 1609 | asus->driver->brightness = bd->props.brightness; |
| 1610 | |
Yong Wang | 3d7b165 | 2010-04-11 09:27:54 +0800 | [diff] [blame] | 1611 | return 0; |
| 1612 | } |
| 1613 | |
Corentin Chary | e12e6d9 | 2011-02-26 10:20:31 +0100 | [diff] [blame] | 1614 | static void asus_wmi_backlight_exit(struct asus_wmi *asus) |
Yong Wang | 3d7b165 | 2010-04-11 09:27:54 +0800 | [diff] [blame] | 1615 | { |
Markus Elfring | 0098181 | 2014-11-24 20:30:29 +0100 | [diff] [blame] | 1616 | backlight_device_unregister(asus->backlight_device); |
Yong Wang | 3d7b165 | 2010-04-11 09:27:54 +0800 | [diff] [blame] | 1617 | |
Corentin Chary | e12e6d9 | 2011-02-26 10:20:31 +0100 | [diff] [blame] | 1618 | asus->backlight_device = NULL; |
Yong Wang | 3d7b165 | 2010-04-11 09:27:54 +0800 | [diff] [blame] | 1619 | } |
| 1620 | |
AceLan Kao | a2a96f0 | 2012-10-03 11:26:31 +0200 | [diff] [blame] | 1621 | static int is_display_toggle(int code) |
| 1622 | { |
| 1623 | /* display toggle keys */ |
| 1624 | if ((code >= 0x61 && code <= 0x67) || |
| 1625 | (code >= 0x8c && code <= 0x93) || |
| 1626 | (code >= 0xa0 && code <= 0xa7) || |
| 1627 | (code >= 0xd0 && code <= 0xd5)) |
| 1628 | return 1; |
| 1629 | |
| 1630 | return 0; |
| 1631 | } |
| 1632 | |
Corentin Chary | e12e6d9 | 2011-02-26 10:20:31 +0100 | [diff] [blame] | 1633 | static void asus_wmi_notify(u32 value, void *context) |
Yong Wang | 3d7b165 | 2010-04-11 09:27:54 +0800 | [diff] [blame] | 1634 | { |
Corentin Chary | e12e6d9 | 2011-02-26 10:20:31 +0100 | [diff] [blame] | 1635 | struct asus_wmi *asus = context; |
Yong Wang | 3d7b165 | 2010-04-11 09:27:54 +0800 | [diff] [blame] | 1636 | struct acpi_buffer response = { ACPI_ALLOCATE_BUFFER, NULL }; |
| 1637 | union acpi_object *obj; |
| 1638 | acpi_status status; |
| 1639 | int code; |
| 1640 | int orig_code; |
Seth Forshee | c4453f6 | 2011-07-01 11:34:27 +0200 | [diff] [blame] | 1641 | unsigned int key_value = 1; |
| 1642 | bool autorelease = 1; |
Yong Wang | 3d7b165 | 2010-04-11 09:27:54 +0800 | [diff] [blame] | 1643 | |
| 1644 | status = wmi_get_event_data(value, &response); |
| 1645 | if (status != AE_OK) { |
| 1646 | pr_err("bad event status 0x%x\n", status); |
| 1647 | return; |
| 1648 | } |
| 1649 | |
| 1650 | obj = (union acpi_object *)response.pointer; |
| 1651 | |
Corentin Chary | 57ab7da | 2011-02-26 10:20:32 +0100 | [diff] [blame] | 1652 | if (!obj || obj->type != ACPI_TYPE_INTEGER) |
| 1653 | goto exit; |
Yong Wang | 3d7b165 | 2010-04-11 09:27:54 +0800 | [diff] [blame] | 1654 | |
Corentin Chary | 57ab7da | 2011-02-26 10:20:32 +0100 | [diff] [blame] | 1655 | code = obj->integer.value; |
| 1656 | orig_code = code; |
Yong Wang | 3d7b165 | 2010-04-11 09:27:54 +0800 | [diff] [blame] | 1657 | |
Seth Forshee | c4453f6 | 2011-07-01 11:34:27 +0200 | [diff] [blame] | 1658 | if (asus->driver->key_filter) { |
| 1659 | asus->driver->key_filter(asus->driver, &code, &key_value, |
| 1660 | &autorelease); |
| 1661 | if (code == ASUS_WMI_KEY_IGNORE) |
| 1662 | goto exit; |
| 1663 | } |
| 1664 | |
Corentin Chary | 57ab7da | 2011-02-26 10:20:32 +0100 | [diff] [blame] | 1665 | if (code >= NOTIFY_BRNUP_MIN && code <= NOTIFY_BRNUP_MAX) |
Corentin Chary | 3ba0302 | 2012-11-29 09:12:38 +0100 | [diff] [blame] | 1666 | code = ASUS_WMI_BRN_UP; |
Corentin Chary | 57ab7da | 2011-02-26 10:20:32 +0100 | [diff] [blame] | 1667 | else if (code >= NOTIFY_BRNDOWN_MIN && |
| 1668 | code <= NOTIFY_BRNDOWN_MAX) |
Corentin Chary | 3ba0302 | 2012-11-29 09:12:38 +0100 | [diff] [blame] | 1669 | code = ASUS_WMI_BRN_DOWN; |
Yong Wang | 3d7b165 | 2010-04-11 09:27:54 +0800 | [diff] [blame] | 1670 | |
Corentin Chary | 3ba0302 | 2012-11-29 09:12:38 +0100 | [diff] [blame] | 1671 | if (code == ASUS_WMI_BRN_DOWN || code == ASUS_WMI_BRN_UP) { |
Hans de Goede | 62c4aa1 | 2015-06-16 16:27:58 +0200 | [diff] [blame] | 1672 | if (acpi_video_get_backlight_type() == acpi_backlight_vendor) { |
Corentin Chary | 57ab7da | 2011-02-26 10:20:32 +0100 | [diff] [blame] | 1673 | asus_wmi_backlight_notify(asus, orig_code); |
Corentin Chary | 3ba0302 | 2012-11-29 09:12:38 +0100 | [diff] [blame] | 1674 | goto exit; |
AceLan Kao | a2a96f0 | 2012-10-03 11:26:31 +0200 | [diff] [blame] | 1675 | } |
AceLan Kao | a2a96f0 | 2012-10-03 11:26:31 +0200 | [diff] [blame] | 1676 | } |
| 1677 | |
| 1678 | if (is_display_toggle(code) && |
| 1679 | asus->driver->quirks->no_display_toggle) |
| 1680 | goto exit; |
| 1681 | |
| 1682 | if (!sparse_keymap_report_event(asus->inputdev, code, |
| 1683 | key_value, autorelease)) |
Corentin Chary | 57ab7da | 2011-02-26 10:20:32 +0100 | [diff] [blame] | 1684 | pr_info("Unknown key %x pressed\n", code); |
Yong Wang | 3d7b165 | 2010-04-11 09:27:54 +0800 | [diff] [blame] | 1685 | |
Corentin Chary | 57ab7da | 2011-02-26 10:20:32 +0100 | [diff] [blame] | 1686 | exit: |
Yong Wang | 3d7b165 | 2010-04-11 09:27:54 +0800 | [diff] [blame] | 1687 | kfree(obj); |
| 1688 | } |
| 1689 | |
Corentin Chary | 9e1565b | 2011-02-06 13:28:36 +0100 | [diff] [blame] | 1690 | /* |
| 1691 | * Sys helpers |
| 1692 | */ |
| 1693 | static int parse_arg(const char *buf, unsigned long count, int *val) |
| 1694 | { |
| 1695 | if (!count) |
| 1696 | return 0; |
| 1697 | if (sscanf(buf, "%i", val) != 1) |
| 1698 | return -EINVAL; |
| 1699 | return count; |
| 1700 | } |
| 1701 | |
Corentin Chary | 1d070f89 | 2011-02-26 10:20:36 +0100 | [diff] [blame] | 1702 | static ssize_t store_sys_wmi(struct asus_wmi *asus, int devid, |
| 1703 | const char *buf, size_t count) |
Corentin Chary | 9e1565b | 2011-02-06 13:28:36 +0100 | [diff] [blame] | 1704 | { |
Corentin Chary | 9e1565b | 2011-02-06 13:28:36 +0100 | [diff] [blame] | 1705 | u32 retval; |
Corentin Chary | d33da3b | 2011-02-26 10:20:35 +0100 | [diff] [blame] | 1706 | int rv, err, value; |
Corentin Chary | 9e1565b | 2011-02-06 13:28:36 +0100 | [diff] [blame] | 1707 | |
Corentin Chary | 1d070f89 | 2011-02-26 10:20:36 +0100 | [diff] [blame] | 1708 | value = asus_wmi_get_devstate_simple(asus, devid); |
Dan Carpenter | b829834 | 2015-11-11 01:18:16 +0300 | [diff] [blame] | 1709 | if (value < 0) |
Corentin Chary | 9e1565b | 2011-02-06 13:28:36 +0100 | [diff] [blame] | 1710 | return value; |
| 1711 | |
| 1712 | rv = parse_arg(buf, count, &value); |
Corentin Chary | d33da3b | 2011-02-26 10:20:35 +0100 | [diff] [blame] | 1713 | err = asus_wmi_set_devstate(devid, value, &retval); |
Corentin Chary | 9e1565b | 2011-02-06 13:28:36 +0100 | [diff] [blame] | 1714 | |
Corentin Chary | d33da3b | 2011-02-26 10:20:35 +0100 | [diff] [blame] | 1715 | if (err < 0) |
| 1716 | return err; |
| 1717 | |
Corentin Chary | 9e1565b | 2011-02-06 13:28:36 +0100 | [diff] [blame] | 1718 | return rv; |
| 1719 | } |
| 1720 | |
Corentin Chary | 1d070f89 | 2011-02-26 10:20:36 +0100 | [diff] [blame] | 1721 | static ssize_t show_sys_wmi(struct asus_wmi *asus, int devid, char *buf) |
Corentin Chary | 9e1565b | 2011-02-06 13:28:36 +0100 | [diff] [blame] | 1722 | { |
Corentin Chary | 1d070f89 | 2011-02-26 10:20:36 +0100 | [diff] [blame] | 1723 | int value = asus_wmi_get_devstate_simple(asus, devid); |
Corentin Chary | 9e1565b | 2011-02-06 13:28:36 +0100 | [diff] [blame] | 1724 | |
| 1725 | if (value < 0) |
| 1726 | return value; |
| 1727 | |
| 1728 | return sprintf(buf, "%d\n", value); |
| 1729 | } |
| 1730 | |
Corentin Chary | e12e6d9 | 2011-02-26 10:20:31 +0100 | [diff] [blame] | 1731 | #define ASUS_WMI_CREATE_DEVICE_ATTR(_name, _mode, _cm) \ |
Corentin Chary | 9e1565b | 2011-02-06 13:28:36 +0100 | [diff] [blame] | 1732 | static ssize_t show_##_name(struct device *dev, \ |
| 1733 | struct device_attribute *attr, \ |
| 1734 | char *buf) \ |
| 1735 | { \ |
Corentin Chary | 1d070f89 | 2011-02-26 10:20:36 +0100 | [diff] [blame] | 1736 | struct asus_wmi *asus = dev_get_drvdata(dev); \ |
| 1737 | \ |
| 1738 | return show_sys_wmi(asus, _cm, buf); \ |
Corentin Chary | 9e1565b | 2011-02-06 13:28:36 +0100 | [diff] [blame] | 1739 | } \ |
| 1740 | static ssize_t store_##_name(struct device *dev, \ |
| 1741 | struct device_attribute *attr, \ |
| 1742 | const char *buf, size_t count) \ |
| 1743 | { \ |
Corentin Chary | 1d070f89 | 2011-02-26 10:20:36 +0100 | [diff] [blame] | 1744 | struct asus_wmi *asus = dev_get_drvdata(dev); \ |
| 1745 | \ |
| 1746 | return store_sys_wmi(asus, _cm, buf, count); \ |
Corentin Chary | 9e1565b | 2011-02-06 13:28:36 +0100 | [diff] [blame] | 1747 | } \ |
| 1748 | static struct device_attribute dev_attr_##_name = { \ |
| 1749 | .attr = { \ |
| 1750 | .name = __stringify(_name), \ |
| 1751 | .mode = _mode }, \ |
| 1752 | .show = show_##_name, \ |
| 1753 | .store = store_##_name, \ |
| 1754 | } |
| 1755 | |
Corentin Chary | e12e6d9 | 2011-02-26 10:20:31 +0100 | [diff] [blame] | 1756 | ASUS_WMI_CREATE_DEVICE_ATTR(touchpad, 0644, ASUS_WMI_DEVID_TOUCHPAD); |
| 1757 | ASUS_WMI_CREATE_DEVICE_ATTR(camera, 0644, ASUS_WMI_DEVID_CAMERA); |
| 1758 | ASUS_WMI_CREATE_DEVICE_ATTR(cardr, 0644, ASUS_WMI_DEVID_CARDREADER); |
AceLan Kao | c0b91b6 | 2012-06-13 09:32:07 +0200 | [diff] [blame] | 1759 | ASUS_WMI_CREATE_DEVICE_ATTR(lid_resume, 0644, ASUS_WMI_DEVID_LID_RESUME); |
Oleksij Rempel | aca234f | 2016-04-01 13:35:21 +0200 | [diff] [blame] | 1760 | ASUS_WMI_CREATE_DEVICE_ATTR(als_enable, 0644, ASUS_WMI_DEVID_ALS_ENABLE); |
Corentin Chary | 9e1565b | 2011-02-06 13:28:36 +0100 | [diff] [blame] | 1761 | |
Dmitry Torokhov | 67fa38e | 2010-11-03 11:14:01 -0700 | [diff] [blame] | 1762 | static ssize_t store_cpufv(struct device *dev, struct device_attribute *attr, |
| 1763 | const char *buf, size_t count) |
Chris Bagwell | 7f80d73 | 2010-10-11 18:47:18 -0500 | [diff] [blame] | 1764 | { |
Corentin Chary | 3df5fda | 2011-07-01 11:34:38 +0200 | [diff] [blame] | 1765 | int value, rv; |
Chris Bagwell | 7f80d73 | 2010-10-11 18:47:18 -0500 | [diff] [blame] | 1766 | |
| 1767 | if (!count || sscanf(buf, "%i", &value) != 1) |
| 1768 | return -EINVAL; |
| 1769 | if (value < 0 || value > 2) |
| 1770 | return -EINVAL; |
| 1771 | |
Corentin Chary | 3df5fda | 2011-07-01 11:34:38 +0200 | [diff] [blame] | 1772 | rv = asus_wmi_evaluate_method(ASUS_WMI_METHODID_CFVS, value, 0, NULL); |
| 1773 | if (rv < 0) |
| 1774 | return rv; |
| 1775 | |
| 1776 | return count; |
Chris Bagwell | 7f80d73 | 2010-10-11 18:47:18 -0500 | [diff] [blame] | 1777 | } |
| 1778 | |
| 1779 | static DEVICE_ATTR(cpufv, S_IRUGO | S_IWUSR, NULL, store_cpufv); |
| 1780 | |
Corentin Chary | 4e37b42 | 2010-11-29 08:14:08 +0100 | [diff] [blame] | 1781 | static struct attribute *platform_attributes[] = { |
| 1782 | &dev_attr_cpufv.attr, |
Corentin Chary | 9e1565b | 2011-02-06 13:28:36 +0100 | [diff] [blame] | 1783 | &dev_attr_camera.attr, |
| 1784 | &dev_attr_cardr.attr, |
Corentin Chary | 4615bb6 | 2011-02-06 13:28:42 +0100 | [diff] [blame] | 1785 | &dev_attr_touchpad.attr, |
AceLan Kao | c0b91b6 | 2012-06-13 09:32:07 +0200 | [diff] [blame] | 1786 | &dev_attr_lid_resume.attr, |
Oleksij Rempel | aca234f | 2016-04-01 13:35:21 +0200 | [diff] [blame] | 1787 | &dev_attr_als_enable.attr, |
Corentin Chary | 4e37b42 | 2010-11-29 08:14:08 +0100 | [diff] [blame] | 1788 | NULL |
| 1789 | }; |
| 1790 | |
Al Viro | 587a1f1 | 2011-07-23 23:11:19 -0400 | [diff] [blame] | 1791 | static umode_t asus_sysfs_is_visible(struct kobject *kobj, |
Corentin Chary | e12e6d9 | 2011-02-26 10:20:31 +0100 | [diff] [blame] | 1792 | struct attribute *attr, int idx) |
Corentin Chary | 9e1565b | 2011-02-06 13:28:36 +0100 | [diff] [blame] | 1793 | { |
Corentin Chary | 1d070f89 | 2011-02-26 10:20:36 +0100 | [diff] [blame] | 1794 | struct device *dev = container_of(kobj, struct device, kobj); |
| 1795 | struct platform_device *pdev = to_platform_device(dev); |
| 1796 | struct asus_wmi *asus = platform_get_drvdata(pdev); |
| 1797 | bool ok = true; |
Corentin Chary | 9e1565b | 2011-02-06 13:28:36 +0100 | [diff] [blame] | 1798 | int devid = -1; |
| 1799 | |
| 1800 | if (attr == &dev_attr_camera.attr) |
Corentin Chary | e12e6d9 | 2011-02-26 10:20:31 +0100 | [diff] [blame] | 1801 | devid = ASUS_WMI_DEVID_CAMERA; |
Corentin Chary | 9e1565b | 2011-02-06 13:28:36 +0100 | [diff] [blame] | 1802 | else if (attr == &dev_attr_cardr.attr) |
Corentin Chary | e12e6d9 | 2011-02-26 10:20:31 +0100 | [diff] [blame] | 1803 | devid = ASUS_WMI_DEVID_CARDREADER; |
Corentin Chary | 4615bb6 | 2011-02-06 13:28:42 +0100 | [diff] [blame] | 1804 | else if (attr == &dev_attr_touchpad.attr) |
Corentin Chary | e12e6d9 | 2011-02-26 10:20:31 +0100 | [diff] [blame] | 1805 | devid = ASUS_WMI_DEVID_TOUCHPAD; |
AceLan Kao | c0b91b6 | 2012-06-13 09:32:07 +0200 | [diff] [blame] | 1806 | else if (attr == &dev_attr_lid_resume.attr) |
| 1807 | devid = ASUS_WMI_DEVID_LID_RESUME; |
Oleksij Rempel | aca234f | 2016-04-01 13:35:21 +0200 | [diff] [blame] | 1808 | else if (attr == &dev_attr_als_enable.attr) |
| 1809 | devid = ASUS_WMI_DEVID_ALS_ENABLE; |
Corentin Chary | 9e1565b | 2011-02-06 13:28:36 +0100 | [diff] [blame] | 1810 | |
| 1811 | if (devid != -1) |
Corentin Chary | 1d070f89 | 2011-02-26 10:20:36 +0100 | [diff] [blame] | 1812 | ok = !(asus_wmi_get_devstate_simple(asus, devid) < 0); |
Corentin Chary | 9e1565b | 2011-02-06 13:28:36 +0100 | [diff] [blame] | 1813 | |
Corentin Chary | 1d070f89 | 2011-02-26 10:20:36 +0100 | [diff] [blame] | 1814 | return ok ? attr->mode : 0; |
Corentin Chary | 9e1565b | 2011-02-06 13:28:36 +0100 | [diff] [blame] | 1815 | } |
| 1816 | |
Corentin Chary | 4e37b42 | 2010-11-29 08:14:08 +0100 | [diff] [blame] | 1817 | static struct attribute_group platform_attribute_group = { |
Corentin Chary | e12e6d9 | 2011-02-26 10:20:31 +0100 | [diff] [blame] | 1818 | .is_visible = asus_sysfs_is_visible, |
| 1819 | .attrs = platform_attributes |
Corentin Chary | 4e37b42 | 2010-11-29 08:14:08 +0100 | [diff] [blame] | 1820 | }; |
| 1821 | |
Corentin Chary | e12e6d9 | 2011-02-26 10:20:31 +0100 | [diff] [blame] | 1822 | static void asus_wmi_sysfs_exit(struct platform_device *device) |
Chris Bagwell | 7f80d73 | 2010-10-11 18:47:18 -0500 | [diff] [blame] | 1823 | { |
Corentin Chary | 4e37b42 | 2010-11-29 08:14:08 +0100 | [diff] [blame] | 1824 | sysfs_remove_group(&device->dev.kobj, &platform_attribute_group); |
Chris Bagwell | 7f80d73 | 2010-10-11 18:47:18 -0500 | [diff] [blame] | 1825 | } |
| 1826 | |
Corentin Chary | e12e6d9 | 2011-02-26 10:20:31 +0100 | [diff] [blame] | 1827 | static int asus_wmi_sysfs_init(struct platform_device *device) |
Chris Bagwell | 7f80d73 | 2010-10-11 18:47:18 -0500 | [diff] [blame] | 1828 | { |
Corentin Chary | 4e37b42 | 2010-11-29 08:14:08 +0100 | [diff] [blame] | 1829 | return sysfs_create_group(&device->dev.kobj, &platform_attribute_group); |
Chris Bagwell | 7f80d73 | 2010-10-11 18:47:18 -0500 | [diff] [blame] | 1830 | } |
| 1831 | |
Corentin Chary | 27c136c | 2010-11-29 08:14:05 +0100 | [diff] [blame] | 1832 | /* |
| 1833 | * Platform device |
| 1834 | */ |
Joe Perches | 39ddf3b | 2011-03-29 15:21:32 -0700 | [diff] [blame] | 1835 | static int asus_wmi_platform_init(struct asus_wmi *asus) |
Corentin Chary | 27c136c | 2010-11-29 08:14:05 +0100 | [diff] [blame] | 1836 | { |
Corentin Chary | 46dbca8 | 2011-02-26 10:20:38 +0100 | [diff] [blame] | 1837 | int rv; |
| 1838 | |
| 1839 | /* INIT enable hotkeys on some models */ |
| 1840 | if (!asus_wmi_evaluate_method(ASUS_WMI_METHODID_INIT, 0, 0, &rv)) |
vic | 0ed6065 | 2013-05-22 21:32:10 +0300 | [diff] [blame] | 1841 | pr_info("Initialization: %#x\n", rv); |
Corentin Chary | 46dbca8 | 2011-02-26 10:20:38 +0100 | [diff] [blame] | 1842 | |
| 1843 | /* We don't know yet what to do with this version... */ |
| 1844 | if (!asus_wmi_evaluate_method(ASUS_WMI_METHODID_SPEC, 0, 0x9, &rv)) { |
vic | 0ed6065 | 2013-05-22 21:32:10 +0300 | [diff] [blame] | 1845 | pr_info("BIOS WMI version: %d.%d\n", rv >> 16, rv & 0xFF); |
Corentin Chary | 46dbca8 | 2011-02-26 10:20:38 +0100 | [diff] [blame] | 1846 | asus->spec = rv; |
| 1847 | } |
| 1848 | |
| 1849 | /* |
| 1850 | * The SFUN method probably allows the original driver to get the list |
| 1851 | * of features supported by a given model. For now, 0x0100 or 0x0800 |
| 1852 | * bit signifies that the laptop is equipped with a Wi-Fi MiniPCI card. |
| 1853 | * The significance of others is yet to be found. |
| 1854 | */ |
| 1855 | if (!asus_wmi_evaluate_method(ASUS_WMI_METHODID_SFUN, 0, 0, &rv)) { |
vic | 0ed6065 | 2013-05-22 21:32:10 +0300 | [diff] [blame] | 1856 | pr_info("SFUN value: %#x\n", rv); |
Corentin Chary | 46dbca8 | 2011-02-26 10:20:38 +0100 | [diff] [blame] | 1857 | asus->sfun = rv; |
| 1858 | } |
| 1859 | |
Corentin Chary | 1d070f89 | 2011-02-26 10:20:36 +0100 | [diff] [blame] | 1860 | /* |
| 1861 | * Eee PC and Notebooks seems to have different method_id for DSTS, |
| 1862 | * but it may also be related to the BIOS's SPEC. |
| 1863 | * Note, on most Eeepc, there is no way to check if a method exist |
| 1864 | * or note, while on notebooks, they returns 0xFFFFFFFE on failure, |
| 1865 | * but once again, SPEC may probably be used for that kind of things. |
| 1866 | */ |
| 1867 | if (!asus_wmi_evaluate_method(ASUS_WMI_METHODID_DSTS, 0, 0, NULL)) |
| 1868 | asus->dsts_id = ASUS_WMI_METHODID_DSTS; |
Alex Hung | 63a78bb | 2012-06-20 11:47:35 +0800 | [diff] [blame] | 1869 | else |
Corentin Chary | 1d070f89 | 2011-02-26 10:20:36 +0100 | [diff] [blame] | 1870 | asus->dsts_id = ASUS_WMI_METHODID_DSTS2; |
| 1871 | |
Corentin Chary | fddbfed | 2011-07-01 11:34:39 +0200 | [diff] [blame] | 1872 | /* CWAP allow to define the behavior of the Fn+F2 key, |
| 1873 | * this method doesn't seems to be present on Eee PCs */ |
Corentin Chary | 6a2bccc | 2012-03-20 09:53:10 +0100 | [diff] [blame] | 1874 | if (asus->driver->quirks->wapf >= 0) |
Corentin Chary | fddbfed | 2011-07-01 11:34:39 +0200 | [diff] [blame] | 1875 | asus_wmi_set_devstate(ASUS_WMI_DEVID_CWAP, |
Corentin Chary | 6a2bccc | 2012-03-20 09:53:10 +0100 | [diff] [blame] | 1876 | asus->driver->quirks->wapf, NULL); |
Corentin Chary | fddbfed | 2011-07-01 11:34:39 +0200 | [diff] [blame] | 1877 | |
Corentin Chary | e12e6d9 | 2011-02-26 10:20:31 +0100 | [diff] [blame] | 1878 | return asus_wmi_sysfs_init(asus->platform_device); |
Corentin Chary | 27c136c | 2010-11-29 08:14:05 +0100 | [diff] [blame] | 1879 | } |
| 1880 | |
Corentin Chary | e12e6d9 | 2011-02-26 10:20:31 +0100 | [diff] [blame] | 1881 | static void asus_wmi_platform_exit(struct asus_wmi *asus) |
Corentin Chary | 27c136c | 2010-11-29 08:14:05 +0100 | [diff] [blame] | 1882 | { |
Corentin Chary | e12e6d9 | 2011-02-26 10:20:31 +0100 | [diff] [blame] | 1883 | asus_wmi_sysfs_exit(asus->platform_device); |
Corentin Chary | 27c136c | 2010-11-29 08:14:05 +0100 | [diff] [blame] | 1884 | } |
| 1885 | |
| 1886 | /* |
Corentin Chary | 8c1b2d8 | 2010-11-29 08:14:09 +0100 | [diff] [blame] | 1887 | * debugfs |
| 1888 | */ |
Corentin Chary | e12e6d9 | 2011-02-26 10:20:31 +0100 | [diff] [blame] | 1889 | struct asus_wmi_debugfs_node { |
| 1890 | struct asus_wmi *asus; |
Corentin Chary | 8c1b2d8 | 2010-11-29 08:14:09 +0100 | [diff] [blame] | 1891 | char *name; |
Corentin Chary | e12e6d9 | 2011-02-26 10:20:31 +0100 | [diff] [blame] | 1892 | int (*show) (struct seq_file *m, void *data); |
Corentin Chary | 8c1b2d8 | 2010-11-29 08:14:09 +0100 | [diff] [blame] | 1893 | }; |
| 1894 | |
| 1895 | static int show_dsts(struct seq_file *m, void *data) |
| 1896 | { |
Corentin Chary | e12e6d9 | 2011-02-26 10:20:31 +0100 | [diff] [blame] | 1897 | struct asus_wmi *asus = m->private; |
Corentin Chary | d33da3b | 2011-02-26 10:20:35 +0100 | [diff] [blame] | 1898 | int err; |
Corentin Chary | 8c1b2d8 | 2010-11-29 08:14:09 +0100 | [diff] [blame] | 1899 | u32 retval = -1; |
| 1900 | |
Corentin Chary | 1d070f89 | 2011-02-26 10:20:36 +0100 | [diff] [blame] | 1901 | err = asus_wmi_get_devstate(asus, asus->debug.dev_id, &retval); |
Corentin Chary | 8c1b2d8 | 2010-11-29 08:14:09 +0100 | [diff] [blame] | 1902 | |
Corentin Chary | d33da3b | 2011-02-26 10:20:35 +0100 | [diff] [blame] | 1903 | if (err < 0) |
| 1904 | return err; |
Corentin Chary | 8c1b2d8 | 2010-11-29 08:14:09 +0100 | [diff] [blame] | 1905 | |
Corentin Chary | ef34349 | 2011-02-26 10:20:39 +0100 | [diff] [blame] | 1906 | seq_printf(m, "DSTS(%#x) = %#x\n", asus->debug.dev_id, retval); |
Corentin Chary | 8c1b2d8 | 2010-11-29 08:14:09 +0100 | [diff] [blame] | 1907 | |
| 1908 | return 0; |
| 1909 | } |
| 1910 | |
| 1911 | static int show_devs(struct seq_file *m, void *data) |
| 1912 | { |
Corentin Chary | e12e6d9 | 2011-02-26 10:20:31 +0100 | [diff] [blame] | 1913 | struct asus_wmi *asus = m->private; |
Corentin Chary | d33da3b | 2011-02-26 10:20:35 +0100 | [diff] [blame] | 1914 | int err; |
Corentin Chary | 8c1b2d8 | 2010-11-29 08:14:09 +0100 | [diff] [blame] | 1915 | u32 retval = -1; |
| 1916 | |
Corentin Chary | d33da3b | 2011-02-26 10:20:35 +0100 | [diff] [blame] | 1917 | err = asus_wmi_set_devstate(asus->debug.dev_id, asus->debug.ctrl_param, |
| 1918 | &retval); |
| 1919 | |
| 1920 | if (err < 0) |
| 1921 | return err; |
Corentin Chary | 8c1b2d8 | 2010-11-29 08:14:09 +0100 | [diff] [blame] | 1922 | |
Corentin Chary | ef34349 | 2011-02-26 10:20:39 +0100 | [diff] [blame] | 1923 | seq_printf(m, "DEVS(%#x, %#x) = %#x\n", asus->debug.dev_id, |
Corentin Chary | e12e6d9 | 2011-02-26 10:20:31 +0100 | [diff] [blame] | 1924 | asus->debug.ctrl_param, retval); |
Corentin Chary | 8c1b2d8 | 2010-11-29 08:14:09 +0100 | [diff] [blame] | 1925 | |
| 1926 | return 0; |
| 1927 | } |
| 1928 | |
Corentin Chary | ef34349 | 2011-02-26 10:20:39 +0100 | [diff] [blame] | 1929 | static int show_call(struct seq_file *m, void *data) |
| 1930 | { |
| 1931 | struct asus_wmi *asus = m->private; |
| 1932 | struct bios_args args = { |
| 1933 | .arg0 = asus->debug.dev_id, |
| 1934 | .arg1 = asus->debug.ctrl_param, |
| 1935 | }; |
| 1936 | struct acpi_buffer input = { (acpi_size) sizeof(args), &args }; |
| 1937 | struct acpi_buffer output = { ACPI_ALLOCATE_BUFFER, NULL }; |
| 1938 | union acpi_object *obj; |
| 1939 | acpi_status status; |
| 1940 | |
| 1941 | status = wmi_evaluate_method(ASUS_WMI_MGMT_GUID, |
| 1942 | 1, asus->debug.method_id, |
| 1943 | &input, &output); |
| 1944 | |
| 1945 | if (ACPI_FAILURE(status)) |
| 1946 | return -EIO; |
| 1947 | |
| 1948 | obj = (union acpi_object *)output.pointer; |
| 1949 | if (obj && obj->type == ACPI_TYPE_INTEGER) |
| 1950 | seq_printf(m, "%#x(%#x, %#x) = %#x\n", asus->debug.method_id, |
| 1951 | asus->debug.dev_id, asus->debug.ctrl_param, |
| 1952 | (u32) obj->integer.value); |
| 1953 | else |
| 1954 | seq_printf(m, "%#x(%#x, %#x) = t:%d\n", asus->debug.method_id, |
| 1955 | asus->debug.dev_id, asus->debug.ctrl_param, |
Dan Carpenter | a1d6086 | 2011-03-15 10:07:37 +0300 | [diff] [blame] | 1956 | obj ? obj->type : -1); |
Corentin Chary | ef34349 | 2011-02-26 10:20:39 +0100 | [diff] [blame] | 1957 | |
| 1958 | kfree(obj); |
| 1959 | |
| 1960 | return 0; |
| 1961 | } |
| 1962 | |
Corentin Chary | e12e6d9 | 2011-02-26 10:20:31 +0100 | [diff] [blame] | 1963 | static struct asus_wmi_debugfs_node asus_wmi_debug_files[] = { |
| 1964 | {NULL, "devs", show_devs}, |
| 1965 | {NULL, "dsts", show_dsts}, |
Corentin Chary | ef34349 | 2011-02-26 10:20:39 +0100 | [diff] [blame] | 1966 | {NULL, "call", show_call}, |
Corentin Chary | 8c1b2d8 | 2010-11-29 08:14:09 +0100 | [diff] [blame] | 1967 | }; |
| 1968 | |
Corentin Chary | e12e6d9 | 2011-02-26 10:20:31 +0100 | [diff] [blame] | 1969 | static int asus_wmi_debugfs_open(struct inode *inode, struct file *file) |
Corentin Chary | 8c1b2d8 | 2010-11-29 08:14:09 +0100 | [diff] [blame] | 1970 | { |
Corentin Chary | e12e6d9 | 2011-02-26 10:20:31 +0100 | [diff] [blame] | 1971 | struct asus_wmi_debugfs_node *node = inode->i_private; |
Corentin Chary | 8c1b2d8 | 2010-11-29 08:14:09 +0100 | [diff] [blame] | 1972 | |
Corentin Chary | e12e6d9 | 2011-02-26 10:20:31 +0100 | [diff] [blame] | 1973 | return single_open(file, node->show, node->asus); |
Corentin Chary | 8c1b2d8 | 2010-11-29 08:14:09 +0100 | [diff] [blame] | 1974 | } |
| 1975 | |
Corentin Chary | e12e6d9 | 2011-02-26 10:20:31 +0100 | [diff] [blame] | 1976 | static const struct file_operations asus_wmi_debugfs_io_ops = { |
Corentin Chary | 8c1b2d8 | 2010-11-29 08:14:09 +0100 | [diff] [blame] | 1977 | .owner = THIS_MODULE, |
Corentin Chary | e12e6d9 | 2011-02-26 10:20:31 +0100 | [diff] [blame] | 1978 | .open = asus_wmi_debugfs_open, |
Corentin Chary | 8c1b2d8 | 2010-11-29 08:14:09 +0100 | [diff] [blame] | 1979 | .read = seq_read, |
| 1980 | .llseek = seq_lseek, |
| 1981 | .release = single_release, |
| 1982 | }; |
| 1983 | |
Corentin Chary | e12e6d9 | 2011-02-26 10:20:31 +0100 | [diff] [blame] | 1984 | static void asus_wmi_debugfs_exit(struct asus_wmi *asus) |
Corentin Chary | 8c1b2d8 | 2010-11-29 08:14:09 +0100 | [diff] [blame] | 1985 | { |
Corentin Chary | e12e6d9 | 2011-02-26 10:20:31 +0100 | [diff] [blame] | 1986 | debugfs_remove_recursive(asus->debug.root); |
Corentin Chary | 8c1b2d8 | 2010-11-29 08:14:09 +0100 | [diff] [blame] | 1987 | } |
| 1988 | |
Corentin Chary | e12e6d9 | 2011-02-26 10:20:31 +0100 | [diff] [blame] | 1989 | static int asus_wmi_debugfs_init(struct asus_wmi *asus) |
Corentin Chary | 8c1b2d8 | 2010-11-29 08:14:09 +0100 | [diff] [blame] | 1990 | { |
| 1991 | struct dentry *dent; |
| 1992 | int i; |
| 1993 | |
Corentin Chary | e12e6d9 | 2011-02-26 10:20:31 +0100 | [diff] [blame] | 1994 | asus->debug.root = debugfs_create_dir(asus->driver->name, NULL); |
| 1995 | if (!asus->debug.root) { |
vic | 0ed6065 | 2013-05-22 21:32:10 +0300 | [diff] [blame] | 1996 | pr_err("failed to create debugfs directory\n"); |
Corentin Chary | 8c1b2d8 | 2010-11-29 08:14:09 +0100 | [diff] [blame] | 1997 | goto error_debugfs; |
| 1998 | } |
| 1999 | |
Corentin Chary | ef34349 | 2011-02-26 10:20:39 +0100 | [diff] [blame] | 2000 | dent = debugfs_create_x32("method_id", S_IRUGO | S_IWUSR, |
| 2001 | asus->debug.root, &asus->debug.method_id); |
| 2002 | if (!dent) |
| 2003 | goto error_debugfs; |
| 2004 | |
Corentin Chary | e12e6d9 | 2011-02-26 10:20:31 +0100 | [diff] [blame] | 2005 | dent = debugfs_create_x32("dev_id", S_IRUGO | S_IWUSR, |
| 2006 | asus->debug.root, &asus->debug.dev_id); |
Corentin Chary | 8c1b2d8 | 2010-11-29 08:14:09 +0100 | [diff] [blame] | 2007 | if (!dent) |
| 2008 | goto error_debugfs; |
| 2009 | |
Corentin Chary | e12e6d9 | 2011-02-26 10:20:31 +0100 | [diff] [blame] | 2010 | dent = debugfs_create_x32("ctrl_param", S_IRUGO | S_IWUSR, |
| 2011 | asus->debug.root, &asus->debug.ctrl_param); |
Corentin Chary | 8c1b2d8 | 2010-11-29 08:14:09 +0100 | [diff] [blame] | 2012 | if (!dent) |
| 2013 | goto error_debugfs; |
| 2014 | |
Corentin Chary | e12e6d9 | 2011-02-26 10:20:31 +0100 | [diff] [blame] | 2015 | for (i = 0; i < ARRAY_SIZE(asus_wmi_debug_files); i++) { |
| 2016 | struct asus_wmi_debugfs_node *node = &asus_wmi_debug_files[i]; |
Corentin Chary | 8c1b2d8 | 2010-11-29 08:14:09 +0100 | [diff] [blame] | 2017 | |
Corentin Chary | e12e6d9 | 2011-02-26 10:20:31 +0100 | [diff] [blame] | 2018 | node->asus = asus; |
Corentin Chary | 8c1b2d8 | 2010-11-29 08:14:09 +0100 | [diff] [blame] | 2019 | dent = debugfs_create_file(node->name, S_IFREG | S_IRUGO, |
Corentin Chary | e12e6d9 | 2011-02-26 10:20:31 +0100 | [diff] [blame] | 2020 | asus->debug.root, node, |
| 2021 | &asus_wmi_debugfs_io_ops); |
Corentin Chary | 8c1b2d8 | 2010-11-29 08:14:09 +0100 | [diff] [blame] | 2022 | if (!dent) { |
| 2023 | pr_err("failed to create debug file: %s\n", node->name); |
| 2024 | goto error_debugfs; |
| 2025 | } |
| 2026 | } |
| 2027 | |
| 2028 | return 0; |
| 2029 | |
| 2030 | error_debugfs: |
Corentin Chary | e12e6d9 | 2011-02-26 10:20:31 +0100 | [diff] [blame] | 2031 | asus_wmi_debugfs_exit(asus); |
Corentin Chary | 8c1b2d8 | 2010-11-29 08:14:09 +0100 | [diff] [blame] | 2032 | return -ENOMEM; |
| 2033 | } |
| 2034 | |
Kast Bernd | 53e755c | 2015-05-13 16:24:16 +0200 | [diff] [blame] | 2035 | static int asus_wmi_fan_init(struct asus_wmi *asus) |
| 2036 | { |
| 2037 | int status; |
| 2038 | |
| 2039 | asus->asus_hwmon_pwm = -1; |
| 2040 | asus->asus_hwmon_num_fans = -1; |
| 2041 | asus->asus_hwmon_fan_manual_mode = false; |
| 2042 | |
| 2043 | status = asus_hwmon_get_fan_number(asus, &asus->asus_hwmon_num_fans); |
| 2044 | if (status) { |
| 2045 | asus->asus_hwmon_num_fans = 0; |
| 2046 | pr_warn("Could not determine number of fans: %d\n", status); |
| 2047 | return -ENXIO; |
| 2048 | } |
| 2049 | |
| 2050 | pr_info("Number of fans: %d\n", asus->asus_hwmon_num_fans); |
| 2051 | return 0; |
| 2052 | } |
| 2053 | |
Corentin Chary | 8c1b2d8 | 2010-11-29 08:14:09 +0100 | [diff] [blame] | 2054 | /* |
Corentin Chary | 27c136c | 2010-11-29 08:14:05 +0100 | [diff] [blame] | 2055 | * WMI Driver |
| 2056 | */ |
Corentin Chary | e12e6d9 | 2011-02-26 10:20:31 +0100 | [diff] [blame] | 2057 | static int asus_wmi_add(struct platform_device *pdev) |
Corentin Chary | afa7c88 | 2011-02-06 13:28:28 +0100 | [diff] [blame] | 2058 | { |
Corentin Chary | e12e6d9 | 2011-02-26 10:20:31 +0100 | [diff] [blame] | 2059 | struct platform_driver *pdrv = to_platform_driver(pdev->dev.driver); |
| 2060 | struct asus_wmi_driver *wdrv = to_asus_wmi_driver(pdrv); |
| 2061 | struct asus_wmi *asus; |
Hans de Goede | d8c66f6 | 2014-07-08 10:47:21 +0200 | [diff] [blame] | 2062 | const char *chassis_type; |
Yong Wang | ee027e4 | 2010-03-21 10:26:34 +0800 | [diff] [blame] | 2063 | acpi_status status; |
Corentin Chary | 27c136c | 2010-11-29 08:14:05 +0100 | [diff] [blame] | 2064 | int err; |
AceLan Kao | a50bd12 | 2012-07-26 17:13:31 +0800 | [diff] [blame] | 2065 | u32 result; |
Yong Wang | ee027e4 | 2010-03-21 10:26:34 +0800 | [diff] [blame] | 2066 | |
Corentin Chary | e12e6d9 | 2011-02-26 10:20:31 +0100 | [diff] [blame] | 2067 | asus = kzalloc(sizeof(struct asus_wmi), GFP_KERNEL); |
| 2068 | if (!asus) |
Corentin Chary | a04ce29 | 2011-02-06 13:28:33 +0100 | [diff] [blame] | 2069 | return -ENOMEM; |
| 2070 | |
Corentin Chary | e12e6d9 | 2011-02-26 10:20:31 +0100 | [diff] [blame] | 2071 | asus->driver = wdrv; |
| 2072 | asus->platform_device = pdev; |
| 2073 | wdrv->platform_device = pdev; |
| 2074 | platform_set_drvdata(asus->platform_device, asus); |
Corentin Chary | 27c136c | 2010-11-29 08:14:05 +0100 | [diff] [blame] | 2075 | |
AceLan Kao | c87992d | 2012-03-20 09:53:08 +0100 | [diff] [blame] | 2076 | if (wdrv->detect_quirks) |
| 2077 | wdrv->detect_quirks(asus->driver); |
Corentin Chary | afa7c88 | 2011-02-06 13:28:28 +0100 | [diff] [blame] | 2078 | |
Corentin Chary | e12e6d9 | 2011-02-26 10:20:31 +0100 | [diff] [blame] | 2079 | err = asus_wmi_platform_init(asus); |
Corentin Chary | 27c136c | 2010-11-29 08:14:05 +0100 | [diff] [blame] | 2080 | if (err) |
| 2081 | goto fail_platform; |
Yong Wang | 45f2c69 | 2010-04-11 09:27:19 +0800 | [diff] [blame] | 2082 | |
Corentin Chary | e12e6d9 | 2011-02-26 10:20:31 +0100 | [diff] [blame] | 2083 | err = asus_wmi_input_init(asus); |
Yong Wang | 45f2c69 | 2010-04-11 09:27:19 +0800 | [diff] [blame] | 2084 | if (err) |
Corentin Chary | 27c136c | 2010-11-29 08:14:05 +0100 | [diff] [blame] | 2085 | goto fail_input; |
Yong Wang | 3d7b165 | 2010-04-11 09:27:54 +0800 | [diff] [blame] | 2086 | |
Kast Bernd | 53e755c | 2015-05-13 16:24:16 +0200 | [diff] [blame] | 2087 | err = asus_wmi_fan_init(asus); /* probably no problems on error */ |
| 2088 | asus_hwmon_fan_set_auto(asus); |
| 2089 | |
Corentin Chary | e07babd | 2011-02-26 10:20:42 +0100 | [diff] [blame] | 2090 | err = asus_wmi_hwmon_init(asus); |
| 2091 | if (err) |
| 2092 | goto fail_hwmon; |
| 2093 | |
Corentin Chary | e12e6d9 | 2011-02-26 10:20:31 +0100 | [diff] [blame] | 2094 | err = asus_wmi_led_init(asus); |
Corentin Chary | 084fca6 | 2010-11-29 08:14:06 +0100 | [diff] [blame] | 2095 | if (err) |
| 2096 | goto fail_leds; |
| 2097 | |
João Paulo Rechi Vita | a977e59 | 2016-06-13 16:57:31 -0400 | [diff] [blame] | 2098 | if (!asus->driver->quirks->no_rfkill) { |
| 2099 | err = asus_wmi_rfkill_init(asus); |
| 2100 | if (err) |
| 2101 | goto fail_rfkill; |
| 2102 | } |
Corentin Chary | ba48fdb | 2010-11-29 08:14:07 +0100 | [diff] [blame] | 2103 | |
Hans de Goede | d8c66f6 | 2014-07-08 10:47:21 +0200 | [diff] [blame] | 2104 | /* Some Asus desktop boards export an acpi-video backlight interface, |
| 2105 | stop this from showing up */ |
| 2106 | chassis_type = dmi_get_system_info(DMI_CHASSIS_TYPE); |
| 2107 | if (chassis_type && !strcmp(chassis_type, "3")) |
Hans de Goede | 62c4aa1 | 2015-06-16 16:27:58 +0200 | [diff] [blame] | 2108 | acpi_video_set_dmi_backlight_type(acpi_backlight_vendor); |
| 2109 | |
AceLan Kao | 272c77d | 2012-06-13 09:32:06 +0200 | [diff] [blame] | 2110 | if (asus->driver->quirks->wmi_backlight_power) |
Hans de Goede | 62c4aa1 | 2015-06-16 16:27:58 +0200 | [diff] [blame] | 2111 | acpi_video_set_dmi_backlight_type(acpi_backlight_vendor); |
| 2112 | |
zino lin | 999d437 | 2016-08-28 16:12:06 +0800 | [diff] [blame] | 2113 | if (asus->driver->quirks->wmi_backlight_native) |
| 2114 | acpi_video_set_dmi_backlight_type(acpi_backlight_native); |
| 2115 | |
Kai-Chuan Hsieh | 8023eff | 2016-09-01 23:55:55 +0800 | [diff] [blame] | 2116 | if (asus->driver->quirks->xusb2pr) |
| 2117 | asus_wmi_set_xusb2pr(asus); |
| 2118 | |
Hans de Goede | 62c4aa1 | 2015-06-16 16:27:58 +0200 | [diff] [blame] | 2119 | if (acpi_video_get_backlight_type() == acpi_backlight_vendor) { |
Corentin Chary | e12e6d9 | 2011-02-26 10:20:31 +0100 | [diff] [blame] | 2120 | err = asus_wmi_backlight_init(asus); |
Corentin Chary | b718726 | 2011-02-06 13:28:39 +0100 | [diff] [blame] | 2121 | if (err && err != -ENODEV) |
Corentin Chary | 27c136c | 2010-11-29 08:14:05 +0100 | [diff] [blame] | 2122 | goto fail_backlight; |
Hans de Goede | 62c4aa1 | 2015-06-16 16:27:58 +0200 | [diff] [blame] | 2123 | } |
Yong Wang | 45f2c69 | 2010-04-11 09:27:19 +0800 | [diff] [blame] | 2124 | |
Corentin Chary | e12e6d9 | 2011-02-26 10:20:31 +0100 | [diff] [blame] | 2125 | status = wmi_install_notify_handler(asus->driver->event_guid, |
| 2126 | asus_wmi_notify, asus); |
Yong Wang | 45f2c69 | 2010-04-11 09:27:19 +0800 | [diff] [blame] | 2127 | if (ACPI_FAILURE(status)) { |
Corentin Chary | e12e6d9 | 2011-02-26 10:20:31 +0100 | [diff] [blame] | 2128 | pr_err("Unable to register notify handler - %d\n", status); |
Yong Wang | 45f2c69 | 2010-04-11 09:27:19 +0800 | [diff] [blame] | 2129 | err = -ENODEV; |
Corentin Chary | 27c136c | 2010-11-29 08:14:05 +0100 | [diff] [blame] | 2130 | goto fail_wmi_handler; |
Yong Wang | 45f2c69 | 2010-04-11 09:27:19 +0800 | [diff] [blame] | 2131 | } |
| 2132 | |
Corentin Chary | e12e6d9 | 2011-02-26 10:20:31 +0100 | [diff] [blame] | 2133 | err = asus_wmi_debugfs_init(asus); |
Corentin Chary | 8c1b2d8 | 2010-11-29 08:14:09 +0100 | [diff] [blame] | 2134 | if (err) |
| 2135 | goto fail_debugfs; |
| 2136 | |
AceLan Kao | a50bd12 | 2012-07-26 17:13:31 +0800 | [diff] [blame] | 2137 | asus_wmi_get_devstate(asus, ASUS_WMI_DEVID_WLAN, &result); |
| 2138 | if (result & (ASUS_WMI_DSTS_PRESENCE_BIT | ASUS_WMI_DSTS_USER_BIT)) |
| 2139 | asus->driver->wlan_ctrl_by_user = 1; |
| 2140 | |
Corentin Chary | a04ce29 | 2011-02-06 13:28:33 +0100 | [diff] [blame] | 2141 | return 0; |
Yong Wang | 45f2c69 | 2010-04-11 09:27:19 +0800 | [diff] [blame] | 2142 | |
Corentin Chary | 8c1b2d8 | 2010-11-29 08:14:09 +0100 | [diff] [blame] | 2143 | fail_debugfs: |
Corentin Chary | e12e6d9 | 2011-02-26 10:20:31 +0100 | [diff] [blame] | 2144 | wmi_remove_notify_handler(asus->driver->event_guid); |
Corentin Chary | 27c136c | 2010-11-29 08:14:05 +0100 | [diff] [blame] | 2145 | fail_wmi_handler: |
Corentin Chary | e12e6d9 | 2011-02-26 10:20:31 +0100 | [diff] [blame] | 2146 | asus_wmi_backlight_exit(asus); |
Corentin Chary | 27c136c | 2010-11-29 08:14:05 +0100 | [diff] [blame] | 2147 | fail_backlight: |
Corentin Chary | e12e6d9 | 2011-02-26 10:20:31 +0100 | [diff] [blame] | 2148 | asus_wmi_rfkill_exit(asus); |
Corentin Chary | ba48fdb | 2010-11-29 08:14:07 +0100 | [diff] [blame] | 2149 | fail_rfkill: |
Corentin Chary | e12e6d9 | 2011-02-26 10:20:31 +0100 | [diff] [blame] | 2150 | asus_wmi_led_exit(asus); |
Corentin Chary | 084fca6 | 2010-11-29 08:14:06 +0100 | [diff] [blame] | 2151 | fail_leds: |
Corentin Chary | e07babd | 2011-02-26 10:20:42 +0100 | [diff] [blame] | 2152 | fail_hwmon: |
Corentin Chary | e12e6d9 | 2011-02-26 10:20:31 +0100 | [diff] [blame] | 2153 | asus_wmi_input_exit(asus); |
Corentin Chary | 27c136c | 2010-11-29 08:14:05 +0100 | [diff] [blame] | 2154 | fail_input: |
Corentin Chary | e12e6d9 | 2011-02-26 10:20:31 +0100 | [diff] [blame] | 2155 | asus_wmi_platform_exit(asus); |
Corentin Chary | 27c136c | 2010-11-29 08:14:05 +0100 | [diff] [blame] | 2156 | fail_platform: |
Corentin Chary | e12e6d9 | 2011-02-26 10:20:31 +0100 | [diff] [blame] | 2157 | kfree(asus); |
Corentin Chary | a04ce29 | 2011-02-06 13:28:33 +0100 | [diff] [blame] | 2158 | return err; |
Yong Wang | 45f2c69 | 2010-04-11 09:27:19 +0800 | [diff] [blame] | 2159 | } |
| 2160 | |
Corentin Chary | e12e6d9 | 2011-02-26 10:20:31 +0100 | [diff] [blame] | 2161 | static int asus_wmi_remove(struct platform_device *device) |
Yong Wang | 45f2c69 | 2010-04-11 09:27:19 +0800 | [diff] [blame] | 2162 | { |
Corentin Chary | e12e6d9 | 2011-02-26 10:20:31 +0100 | [diff] [blame] | 2163 | struct asus_wmi *asus; |
Yong Wang | 45f2c69 | 2010-04-11 09:27:19 +0800 | [diff] [blame] | 2164 | |
Corentin Chary | e12e6d9 | 2011-02-26 10:20:31 +0100 | [diff] [blame] | 2165 | asus = platform_get_drvdata(device); |
| 2166 | wmi_remove_notify_handler(asus->driver->event_guid); |
| 2167 | asus_wmi_backlight_exit(asus); |
| 2168 | asus_wmi_input_exit(asus); |
| 2169 | asus_wmi_led_exit(asus); |
| 2170 | asus_wmi_rfkill_exit(asus); |
| 2171 | asus_wmi_debugfs_exit(asus); |
| 2172 | asus_wmi_platform_exit(asus); |
Kast Bernd | 53e755c | 2015-05-13 16:24:16 +0200 | [diff] [blame] | 2173 | asus_hwmon_fan_set_auto(asus); |
Yong Wang | 45f2c69 | 2010-04-11 09:27:19 +0800 | [diff] [blame] | 2174 | |
Corentin Chary | e12e6d9 | 2011-02-26 10:20:31 +0100 | [diff] [blame] | 2175 | kfree(asus); |
Yong Wang | 45f2c69 | 2010-04-11 09:27:19 +0800 | [diff] [blame] | 2176 | return 0; |
| 2177 | } |
| 2178 | |
Corentin Chary | 0773d7f | 2011-02-06 13:28:32 +0100 | [diff] [blame] | 2179 | /* |
| 2180 | * Platform driver - hibernate/resume callbacks |
| 2181 | */ |
Corentin Chary | e12e6d9 | 2011-02-26 10:20:31 +0100 | [diff] [blame] | 2182 | static int asus_hotk_thaw(struct device *device) |
Corentin Chary | 0773d7f | 2011-02-06 13:28:32 +0100 | [diff] [blame] | 2183 | { |
Corentin Chary | e12e6d9 | 2011-02-26 10:20:31 +0100 | [diff] [blame] | 2184 | struct asus_wmi *asus = dev_get_drvdata(device); |
Corentin Chary | 0773d7f | 2011-02-06 13:28:32 +0100 | [diff] [blame] | 2185 | |
Corentin Chary | a7ce3f0 | 2011-02-26 10:20:33 +0100 | [diff] [blame] | 2186 | if (asus->wlan.rfkill) { |
Corentin Chary | 0773d7f | 2011-02-06 13:28:32 +0100 | [diff] [blame] | 2187 | bool wlan; |
| 2188 | |
| 2189 | /* |
| 2190 | * Work around bios bug - acpi _PTS turns off the wireless led |
| 2191 | * during suspend. Normally it restores it on resume, but |
| 2192 | * we should kick it ourselves in case hibernation is aborted. |
| 2193 | */ |
Corentin Chary | 1d070f89 | 2011-02-26 10:20:36 +0100 | [diff] [blame] | 2194 | wlan = asus_wmi_get_devstate_simple(asus, ASUS_WMI_DEVID_WLAN); |
Corentin Chary | e12e6d9 | 2011-02-26 10:20:31 +0100 | [diff] [blame] | 2195 | asus_wmi_set_devstate(ASUS_WMI_DEVID_WLAN, wlan, NULL); |
Corentin Chary | 0773d7f | 2011-02-06 13:28:32 +0100 | [diff] [blame] | 2196 | } |
| 2197 | |
| 2198 | return 0; |
| 2199 | } |
| 2200 | |
Oleksij Rempel | 3073404 | 2015-09-14 11:16:30 +0200 | [diff] [blame] | 2201 | static int asus_hotk_resume(struct device *device) |
| 2202 | { |
| 2203 | struct asus_wmi *asus = dev_get_drvdata(device); |
| 2204 | |
| 2205 | if (!IS_ERR_OR_NULL(asus->kbd_led.dev)) |
| 2206 | queue_work(asus->led_workqueue, &asus->kbd_led_work); |
| 2207 | |
| 2208 | return 0; |
| 2209 | } |
| 2210 | |
Corentin Chary | e12e6d9 | 2011-02-26 10:20:31 +0100 | [diff] [blame] | 2211 | static int asus_hotk_restore(struct device *device) |
Corentin Chary | 0773d7f | 2011-02-06 13:28:32 +0100 | [diff] [blame] | 2212 | { |
Corentin Chary | e12e6d9 | 2011-02-26 10:20:31 +0100 | [diff] [blame] | 2213 | struct asus_wmi *asus = dev_get_drvdata(device); |
Corentin Chary | 0773d7f | 2011-02-06 13:28:32 +0100 | [diff] [blame] | 2214 | int bl; |
| 2215 | |
| 2216 | /* Refresh both wlan rfkill state and pci hotplug */ |
Corentin Chary | a7ce3f0 | 2011-02-26 10:20:33 +0100 | [diff] [blame] | 2217 | if (asus->wlan.rfkill) |
Corentin Chary | e12e6d9 | 2011-02-26 10:20:31 +0100 | [diff] [blame] | 2218 | asus_rfkill_hotplug(asus); |
Corentin Chary | 0773d7f | 2011-02-06 13:28:32 +0100 | [diff] [blame] | 2219 | |
Corentin Chary | a7ce3f0 | 2011-02-26 10:20:33 +0100 | [diff] [blame] | 2220 | if (asus->bluetooth.rfkill) { |
Corentin Chary | 1d070f89 | 2011-02-26 10:20:36 +0100 | [diff] [blame] | 2221 | bl = !asus_wmi_get_devstate_simple(asus, |
| 2222 | ASUS_WMI_DEVID_BLUETOOTH); |
Corentin Chary | a7ce3f0 | 2011-02-26 10:20:33 +0100 | [diff] [blame] | 2223 | rfkill_set_sw_state(asus->bluetooth.rfkill, bl); |
Corentin Chary | 2e9e159 | 2011-02-06 13:28:37 +0100 | [diff] [blame] | 2224 | } |
Corentin Chary | a7ce3f0 | 2011-02-26 10:20:33 +0100 | [diff] [blame] | 2225 | if (asus->wimax.rfkill) { |
Corentin Chary | 1d070f89 | 2011-02-26 10:20:36 +0100 | [diff] [blame] | 2226 | bl = !asus_wmi_get_devstate_simple(asus, ASUS_WMI_DEVID_WIMAX); |
Corentin Chary | a7ce3f0 | 2011-02-26 10:20:33 +0100 | [diff] [blame] | 2227 | rfkill_set_sw_state(asus->wimax.rfkill, bl); |
Corentin Chary | 2e9e159 | 2011-02-06 13:28:37 +0100 | [diff] [blame] | 2228 | } |
Corentin Chary | a7ce3f0 | 2011-02-26 10:20:33 +0100 | [diff] [blame] | 2229 | if (asus->wwan3g.rfkill) { |
Corentin Chary | 1d070f89 | 2011-02-26 10:20:36 +0100 | [diff] [blame] | 2230 | bl = !asus_wmi_get_devstate_simple(asus, ASUS_WMI_DEVID_WWAN3G); |
Corentin Chary | a7ce3f0 | 2011-02-26 10:20:33 +0100 | [diff] [blame] | 2231 | rfkill_set_sw_state(asus->wwan3g.rfkill, bl); |
Corentin Chary | 0773d7f | 2011-02-06 13:28:32 +0100 | [diff] [blame] | 2232 | } |
Corentin Chary | 43be8bd | 2011-07-01 11:34:40 +0200 | [diff] [blame] | 2233 | if (asus->gps.rfkill) { |
| 2234 | bl = !asus_wmi_get_devstate_simple(asus, ASUS_WMI_DEVID_GPS); |
| 2235 | rfkill_set_sw_state(asus->gps.rfkill, bl); |
| 2236 | } |
Corentin Chary | a912d32 | 2011-07-01 11:34:41 +0200 | [diff] [blame] | 2237 | if (asus->uwb.rfkill) { |
| 2238 | bl = !asus_wmi_get_devstate_simple(asus, ASUS_WMI_DEVID_UWB); |
| 2239 | rfkill_set_sw_state(asus->uwb.rfkill, bl); |
| 2240 | } |
Oleksij Rempel | 3073404 | 2015-09-14 11:16:30 +0200 | [diff] [blame] | 2241 | if (!IS_ERR_OR_NULL(asus->kbd_led.dev)) |
| 2242 | queue_work(asus->led_workqueue, &asus->kbd_led_work); |
Corentin Chary | 0773d7f | 2011-02-06 13:28:32 +0100 | [diff] [blame] | 2243 | |
| 2244 | return 0; |
| 2245 | } |
| 2246 | |
Corentin Chary | e12e6d9 | 2011-02-26 10:20:31 +0100 | [diff] [blame] | 2247 | static const struct dev_pm_ops asus_pm_ops = { |
| 2248 | .thaw = asus_hotk_thaw, |
| 2249 | .restore = asus_hotk_restore, |
Oleksij Rempel | 3073404 | 2015-09-14 11:16:30 +0200 | [diff] [blame] | 2250 | .resume = asus_hotk_resume, |
Corentin Chary | 0773d7f | 2011-02-06 13:28:32 +0100 | [diff] [blame] | 2251 | }; |
| 2252 | |
Corentin Chary | e12e6d9 | 2011-02-26 10:20:31 +0100 | [diff] [blame] | 2253 | static int asus_wmi_probe(struct platform_device *pdev) |
Corentin Chary | d358cb5 | 2010-11-29 08:14:14 +0100 | [diff] [blame] | 2254 | { |
Corentin Chary | e12e6d9 | 2011-02-26 10:20:31 +0100 | [diff] [blame] | 2255 | struct platform_driver *pdrv = to_platform_driver(pdev->dev.driver); |
| 2256 | struct asus_wmi_driver *wdrv = to_asus_wmi_driver(pdrv); |
| 2257 | int ret; |
Corentin Chary | d358cb5 | 2010-11-29 08:14:14 +0100 | [diff] [blame] | 2258 | |
Corentin Chary | e12e6d9 | 2011-02-26 10:20:31 +0100 | [diff] [blame] | 2259 | if (!wmi_has_guid(ASUS_WMI_MGMT_GUID)) { |
Joe Perches | 5ad77dc | 2011-03-29 15:21:35 -0700 | [diff] [blame] | 2260 | pr_warn("Management GUID not found\n"); |
Yong Wang | ee027e4 | 2010-03-21 10:26:34 +0800 | [diff] [blame] | 2261 | return -ENODEV; |
| 2262 | } |
| 2263 | |
Corentin Chary | e12e6d9 | 2011-02-26 10:20:31 +0100 | [diff] [blame] | 2264 | if (wdrv->event_guid && !wmi_has_guid(wdrv->event_guid)) { |
Joe Perches | 5ad77dc | 2011-03-29 15:21:35 -0700 | [diff] [blame] | 2265 | pr_warn("Event GUID not found\n"); |
Corentin Chary | d358cb5 | 2010-11-29 08:14:14 +0100 | [diff] [blame] | 2266 | return -ENODEV; |
| 2267 | } |
| 2268 | |
Corentin Chary | e12e6d9 | 2011-02-26 10:20:31 +0100 | [diff] [blame] | 2269 | if (wdrv->probe) { |
| 2270 | ret = wdrv->probe(pdev); |
| 2271 | if (ret) |
| 2272 | return ret; |
| 2273 | } |
| 2274 | |
| 2275 | return asus_wmi_add(pdev); |
Corentin Chary | a04ce29 | 2011-02-06 13:28:33 +0100 | [diff] [blame] | 2276 | } |
Yong Wang | ee027e4 | 2010-03-21 10:26:34 +0800 | [diff] [blame] | 2277 | |
Corentin Chary | e12e6d9 | 2011-02-26 10:20:31 +0100 | [diff] [blame] | 2278 | static bool used; |
Yong Wang | ee027e4 | 2010-03-21 10:26:34 +0800 | [diff] [blame] | 2279 | |
Corentin Chary | 8fe8c25 | 2011-07-01 11:34:32 +0200 | [diff] [blame] | 2280 | int __init_or_module asus_wmi_register_driver(struct asus_wmi_driver *driver) |
Corentin Chary | a04ce29 | 2011-02-06 13:28:33 +0100 | [diff] [blame] | 2281 | { |
Corentin Chary | e12e6d9 | 2011-02-26 10:20:31 +0100 | [diff] [blame] | 2282 | struct platform_driver *platform_driver; |
| 2283 | struct platform_device *platform_device; |
| 2284 | |
| 2285 | if (used) |
| 2286 | return -EBUSY; |
| 2287 | |
| 2288 | platform_driver = &driver->platform_driver; |
| 2289 | platform_driver->remove = asus_wmi_remove; |
| 2290 | platform_driver->driver.owner = driver->owner; |
| 2291 | platform_driver->driver.name = driver->name; |
| 2292 | platform_driver->driver.pm = &asus_pm_ops; |
| 2293 | |
| 2294 | platform_device = platform_create_bundle(platform_driver, |
| 2295 | asus_wmi_probe, |
Corentin Chary | a04ce29 | 2011-02-06 13:28:33 +0100 | [diff] [blame] | 2296 | NULL, 0, NULL, 0); |
| 2297 | if (IS_ERR(platform_device)) |
| 2298 | return PTR_ERR(platform_device); |
Corentin Chary | e12e6d9 | 2011-02-26 10:20:31 +0100 | [diff] [blame] | 2299 | |
| 2300 | used = true; |
| 2301 | return 0; |
| 2302 | } |
| 2303 | EXPORT_SYMBOL_GPL(asus_wmi_register_driver); |
| 2304 | |
| 2305 | void asus_wmi_unregister_driver(struct asus_wmi_driver *driver) |
| 2306 | { |
| 2307 | platform_device_unregister(driver->platform_device); |
| 2308 | platform_driver_unregister(&driver->platform_driver); |
| 2309 | used = false; |
| 2310 | } |
| 2311 | EXPORT_SYMBOL_GPL(asus_wmi_unregister_driver); |
| 2312 | |
| 2313 | static int __init asus_wmi_init(void) |
| 2314 | { |
| 2315 | if (!wmi_has_guid(ASUS_WMI_MGMT_GUID)) { |
vic | 0ed6065 | 2013-05-22 21:32:10 +0300 | [diff] [blame] | 2316 | pr_info("Asus Management GUID not found\n"); |
Corentin Chary | e12e6d9 | 2011-02-26 10:20:31 +0100 | [diff] [blame] | 2317 | return -ENODEV; |
| 2318 | } |
| 2319 | |
vic | 0ed6065 | 2013-05-22 21:32:10 +0300 | [diff] [blame] | 2320 | pr_info("ASUS WMI generic driver loaded\n"); |
Yong Wang | ee027e4 | 2010-03-21 10:26:34 +0800 | [diff] [blame] | 2321 | return 0; |
| 2322 | } |
| 2323 | |
Corentin Chary | e12e6d9 | 2011-02-26 10:20:31 +0100 | [diff] [blame] | 2324 | static void __exit asus_wmi_exit(void) |
Yong Wang | ee027e4 | 2010-03-21 10:26:34 +0800 | [diff] [blame] | 2325 | { |
vic | 0ed6065 | 2013-05-22 21:32:10 +0300 | [diff] [blame] | 2326 | pr_info("ASUS WMI generic driver unloaded\n"); |
Yong Wang | ee027e4 | 2010-03-21 10:26:34 +0800 | [diff] [blame] | 2327 | } |
| 2328 | |
Corentin Chary | e12e6d9 | 2011-02-26 10:20:31 +0100 | [diff] [blame] | 2329 | module_init(asus_wmi_init); |
| 2330 | module_exit(asus_wmi_exit); |