Thomas Gleixner | 1a59d1b8 | 2019-05-27 08:55:05 +0200 | [diff] [blame] | 1 | // SPDX-License-Identifier: GPL-2.0-or-later |
Yong Wang | ee027e4 | 2010-03-21 10:26:34 +0800 | [diff] [blame] | 2 | /* |
Corentin Chary | e12e6d9 | 2011-02-26 10:20:31 +0100 | [diff] [blame] | 3 | * Asus PC WMI hotkey driver |
Yong Wang | ee027e4 | 2010-03-21 10:26:34 +0800 | [diff] [blame] | 4 | * |
| 5 | * Copyright(C) 2010 Intel Corporation. |
Corentin Chary | 57ab7da | 2011-02-26 10:20:32 +0100 | [diff] [blame] | 6 | * Copyright(C) 2010-2011 Corentin Chary <corentin.chary@gmail.com> |
Yong Wang | ee027e4 | 2010-03-21 10:26:34 +0800 | [diff] [blame] | 7 | * |
| 8 | * Portions based on wistron_btns.c: |
| 9 | * Copyright (C) 2005 Miloslav Trmac <mitr@volny.cz> |
| 10 | * Copyright (C) 2005 Bernhard Rosenkraenzer <bero@arklinux.org> |
| 11 | * Copyright (C) 2005 Dmitry Torokhov <dtor@mail.ru> |
Yong Wang | ee027e4 | 2010-03-21 10:26:34 +0800 | [diff] [blame] | 12 | */ |
| 13 | |
Yong Wang | 8124888 | 2010-04-11 09:26:33 +0800 | [diff] [blame] | 14 | #define pr_fmt(fmt) KBUILD_MODNAME ": " fmt |
| 15 | |
Yong Wang | ee027e4 | 2010-03-21 10:26:34 +0800 | [diff] [blame] | 16 | #include <linux/kernel.h> |
| 17 | #include <linux/module.h> |
| 18 | #include <linux/init.h> |
| 19 | #include <linux/types.h> |
Tejun Heo | a32f392 | 2010-04-05 11:37:59 +0900 | [diff] [blame] | 20 | #include <linux/slab.h> |
Yong Wang | ee027e4 | 2010-03-21 10:26:34 +0800 | [diff] [blame] | 21 | #include <linux/input.h> |
| 22 | #include <linux/input/sparse-keymap.h> |
Yong Wang | 3d7b165 | 2010-04-11 09:27:54 +0800 | [diff] [blame] | 23 | #include <linux/fb.h> |
| 24 | #include <linux/backlight.h> |
Corentin Chary | 084fca6 | 2010-11-29 08:14:06 +0100 | [diff] [blame] | 25 | #include <linux/leds.h> |
Corentin Chary | ba48fdb | 2010-11-29 08:14:07 +0100 | [diff] [blame] | 26 | #include <linux/rfkill.h> |
Corentin Chary | afa7c88 | 2011-02-06 13:28:28 +0100 | [diff] [blame] | 27 | #include <linux/pci.h> |
| 28 | #include <linux/pci_hotplug.h> |
Corentin Chary | e07babd | 2011-02-26 10:20:42 +0100 | [diff] [blame] | 29 | #include <linux/hwmon.h> |
| 30 | #include <linux/hwmon-sysfs.h> |
Corentin Chary | 8c1b2d8 | 2010-11-29 08:14:09 +0100 | [diff] [blame] | 31 | #include <linux/debugfs.h> |
| 32 | #include <linux/seq_file.h> |
Daniel Drake | ffb6ce7 | 2018-10-09 14:40:55 +0800 | [diff] [blame] | 33 | #include <linux/platform_data/x86/asus-wmi.h> |
Yong Wang | 45f2c69 | 2010-04-11 09:27:19 +0800 | [diff] [blame] | 34 | #include <linux/platform_device.h> |
Corentin Chary | 6118b8a | 2011-07-01 11:34:36 +0200 | [diff] [blame] | 35 | #include <linux/thermal.h> |
Lv Zheng | 8b48463 | 2013-12-03 08:49:16 +0800 | [diff] [blame] | 36 | #include <linux/acpi.h> |
Hans de Goede | d8c66f6 | 2014-07-08 10:47:21 +0200 | [diff] [blame] | 37 | #include <linux/dmi.h> |
AceLan Kao | 272c77d | 2012-06-13 09:32:06 +0200 | [diff] [blame] | 38 | #include <acpi/video.h> |
Yong Wang | ee027e4 | 2010-03-21 10:26:34 +0800 | [diff] [blame] | 39 | |
Corentin Chary | e12e6d9 | 2011-02-26 10:20:31 +0100 | [diff] [blame] | 40 | #include "asus-wmi.h" |
Yong Wang | 45f2c69 | 2010-04-11 09:27:19 +0800 | [diff] [blame] | 41 | |
Corentin Chary | 5909c65 | 2012-12-17 16:00:05 -0800 | [diff] [blame] | 42 | MODULE_AUTHOR("Corentin Chary <corentin.chary@gmail.com>, " |
Corentin Chary | e12e6d9 | 2011-02-26 10:20:31 +0100 | [diff] [blame] | 43 | "Yong Wang <yong.y.wang@intel.com>"); |
| 44 | MODULE_DESCRIPTION("Asus Generic WMI Driver"); |
Yong Wang | ee027e4 | 2010-03-21 10:26:34 +0800 | [diff] [blame] | 45 | MODULE_LICENSE("GPL"); |
| 46 | |
Corentin Chary | e12e6d9 | 2011-02-26 10:20:31 +0100 | [diff] [blame] | 47 | #define to_asus_wmi_driver(pdrv) \ |
| 48 | (container_of((pdrv), struct asus_wmi_driver, platform_driver)) |
Yong Wang | ee027e4 | 2010-03-21 10:26:34 +0800 | [diff] [blame] | 49 | |
Corentin Chary | e12e6d9 | 2011-02-26 10:20:31 +0100 | [diff] [blame] | 50 | #define ASUS_WMI_MGMT_GUID "97845ED0-4E6D-11DE-8A39-0800200C9A66" |
Yong Wang | ee027e4 | 2010-03-21 10:26:34 +0800 | [diff] [blame] | 51 | |
Corentin Chary | 33e0e6f | 2011-02-06 13:28:34 +0100 | [diff] [blame] | 52 | #define NOTIFY_BRNUP_MIN 0x11 |
| 53 | #define NOTIFY_BRNUP_MAX 0x1f |
| 54 | #define NOTIFY_BRNDOWN_MIN 0x20 |
| 55 | #define NOTIFY_BRNDOWN_MAX 0x2e |
Chris Chiu | 487579b | 2019-04-18 14:46:48 +0800 | [diff] [blame] | 56 | #define NOTIFY_FNLOCK_TOGGLE 0x4e |
Corentin Chary | e9809c0 | 2011-07-01 11:34:31 +0200 | [diff] [blame] | 57 | #define NOTIFY_KBD_BRTUP 0xc4 |
| 58 | #define NOTIFY_KBD_BRTDWN 0xc5 |
Chris Chiu | ed99d29 | 2018-06-20 22:46:45 +0800 | [diff] [blame] | 59 | #define NOTIFY_KBD_BRTTOGGLE 0xc7 |
Yurii Pavlovskyi | b096f62 | 2019-05-14 21:07:05 +0200 | [diff] [blame] | 60 | #define NOTIFY_KBD_FBM 0x99 |
Yong Wang | ee027e4 | 2010-03-21 10:26:34 +0800 | [diff] [blame] | 61 | |
Chris Chiu | 487579b | 2019-04-18 14:46:48 +0800 | [diff] [blame] | 62 | #define ASUS_WMI_FNLOCK_BIOS_DISABLED BIT(0) |
| 63 | |
Kast Bernd | 53e755c | 2015-05-13 16:24:16 +0200 | [diff] [blame] | 64 | #define ASUS_FAN_DESC "cpu_fan" |
| 65 | #define ASUS_FAN_MFUN 0x13 |
| 66 | #define ASUS_FAN_SFUN_READ 0x06 |
| 67 | #define ASUS_FAN_SFUN_WRITE 0x07 |
Daniel Drake | 2889ffc | 2019-07-29 16:27:37 +0800 | [diff] [blame] | 68 | |
| 69 | /* Based on standard hwmon pwmX_enable values */ |
Daniel Drake | e3168b8 | 2019-07-29 16:27:39 +0800 | [diff] [blame] | 70 | #define ASUS_FAN_CTRL_FULLSPEED 0 |
Kast Bernd | 53e755c | 2015-05-13 16:24:16 +0200 | [diff] [blame] | 71 | #define ASUS_FAN_CTRL_MANUAL 1 |
| 72 | #define ASUS_FAN_CTRL_AUTO 2 |
| 73 | |
Daniel Drake | 9af93db | 2019-07-17 13:10:58 +0800 | [diff] [blame] | 74 | #define ASUS_FAN_BOOST_MODE_NORMAL 0 |
| 75 | #define ASUS_FAN_BOOST_MODE_OVERBOOST 1 |
| 76 | #define ASUS_FAN_BOOST_MODE_OVERBOOST_MASK 0x01 |
| 77 | #define ASUS_FAN_BOOST_MODE_SILENT 2 |
| 78 | #define ASUS_FAN_BOOST_MODE_SILENT_MASK 0x02 |
| 79 | #define ASUS_FAN_BOOST_MODES_MASK 0x03 |
Yurii Pavlovskyi | b096f62 | 2019-05-14 21:07:05 +0200 | [diff] [blame] | 80 | |
Kai-Chuan Hsieh | 8023eff | 2016-09-01 23:55:55 +0800 | [diff] [blame] | 81 | #define USB_INTEL_XUSB2PR 0xD0 |
| 82 | #define PCI_DEVICE_ID_INTEL_LYNXPOINT_LP_XHCI 0x9c31 |
| 83 | |
Yurii Pavlovskyi | e0668f2 | 2019-05-14 21:00:31 +0200 | [diff] [blame] | 84 | #define ASUS_ACPI_UID_ASUSWMI "ASUSWMI" |
Yurii Pavlovskyi | 1a373d1 | 2019-05-14 21:02:09 +0200 | [diff] [blame] | 85 | #define ASUS_ACPI_UID_ATK "ATK" |
| 86 | |
| 87 | #define WMI_EVENT_QUEUE_SIZE 0x10 |
| 88 | #define WMI_EVENT_QUEUE_END 0x1 |
| 89 | #define WMI_EVENT_MASK 0xFFFF |
| 90 | /* The WMI hotkey event value is always the same. */ |
| 91 | #define WMI_EVENT_VALUE_ATK 0xFF |
Yurii Pavlovskyi | e0668f2 | 2019-05-14 21:00:31 +0200 | [diff] [blame] | 92 | |
Yurii Pavlovskyi | 8abd752b | 2019-05-14 21:01:24 +0200 | [diff] [blame] | 93 | #define WMI_EVENT_MASK 0xFFFF |
| 94 | |
João Paulo Rechi Vita | 71050ae | 2017-02-20 14:50:22 -0500 | [diff] [blame] | 95 | static const char * const ashs_ids[] = { "ATK4001", "ATK4002", NULL }; |
| 96 | |
João Paulo Rechi Vita | cf48bf9 | 2018-05-22 14:30:15 -0700 | [diff] [blame] | 97 | static bool ashs_present(void) |
| 98 | { |
| 99 | int i = 0; |
| 100 | while (ashs_ids[i]) { |
| 101 | if (acpi_dev_found(ashs_ids[i++])) |
| 102 | return true; |
| 103 | } |
| 104 | return false; |
| 105 | } |
| 106 | |
Yong Wang | 3d7b165 | 2010-04-11 09:27:54 +0800 | [diff] [blame] | 107 | struct bios_args { |
Corentin Chary | d33da3b | 2011-02-26 10:20:35 +0100 | [diff] [blame] | 108 | u32 arg0; |
| 109 | u32 arg1; |
Yurii Pavlovskyi | 98e865a | 2019-05-14 20:54:50 +0200 | [diff] [blame] | 110 | u32 arg2; /* At least TUF Gaming series uses 3 dword input buffer. */ |
Corentin Chary | d33da3b | 2011-02-26 10:20:35 +0100 | [diff] [blame] | 111 | } __packed; |
Yong Wang | 3d7b165 | 2010-04-11 09:27:54 +0800 | [diff] [blame] | 112 | |
Corentin Chary | 8c1b2d8 | 2010-11-29 08:14:09 +0100 | [diff] [blame] | 113 | /* |
Kast Bernd | 53e755c | 2015-05-13 16:24:16 +0200 | [diff] [blame] | 114 | * Struct that's used for all methods called via AGFN. Naming is |
| 115 | * identically to the AML code. |
| 116 | */ |
| 117 | struct agfn_args { |
| 118 | u16 mfun; /* probably "Multi-function" to be called */ |
| 119 | u16 sfun; /* probably "Sub-function" to be called */ |
| 120 | u16 len; /* size of the hole struct, including subfunction fields */ |
| 121 | u8 stas; /* not used by now */ |
| 122 | u8 err; /* zero on success */ |
| 123 | } __packed; |
| 124 | |
| 125 | /* struct used for calling fan read and write methods */ |
Daniel Drake | 2889ffc | 2019-07-29 16:27:37 +0800 | [diff] [blame] | 126 | struct agfn_fan_args { |
Kast Bernd | 53e755c | 2015-05-13 16:24:16 +0200 | [diff] [blame] | 127 | struct agfn_args agfn; /* common fields */ |
| 128 | u8 fan; /* fan number: 0: set auto mode 1: 1st fan */ |
| 129 | u32 speed; /* read: RPM/100 - write: 0-255 */ |
| 130 | } __packed; |
| 131 | |
| 132 | /* |
Corentin Chary | e12e6d9 | 2011-02-26 10:20:31 +0100 | [diff] [blame] | 133 | * <platform>/ - debugfs root directory |
Corentin Chary | 8c1b2d8 | 2010-11-29 08:14:09 +0100 | [diff] [blame] | 134 | * dev_id - current dev_id |
| 135 | * ctrl_param - current ctrl_param |
Corentin Chary | ef34349 | 2011-02-26 10:20:39 +0100 | [diff] [blame] | 136 | * method_id - current method_id |
Corentin Chary | 8c1b2d8 | 2010-11-29 08:14:09 +0100 | [diff] [blame] | 137 | * devs - call DEVS(dev_id, ctrl_param) and print result |
| 138 | * dsts - call DSTS(dev_id) and print result |
Corentin Chary | ef34349 | 2011-02-26 10:20:39 +0100 | [diff] [blame] | 139 | * call - call method_id(dev_id, ctrl_param) and print result |
Corentin Chary | 8c1b2d8 | 2010-11-29 08:14:09 +0100 | [diff] [blame] | 140 | */ |
Corentin Chary | e12e6d9 | 2011-02-26 10:20:31 +0100 | [diff] [blame] | 141 | struct asus_wmi_debug { |
Corentin Chary | 8c1b2d8 | 2010-11-29 08:14:09 +0100 | [diff] [blame] | 142 | struct dentry *root; |
Corentin Chary | ef34349 | 2011-02-26 10:20:39 +0100 | [diff] [blame] | 143 | u32 method_id; |
Corentin Chary | 8c1b2d8 | 2010-11-29 08:14:09 +0100 | [diff] [blame] | 144 | u32 dev_id; |
| 145 | u32 ctrl_param; |
| 146 | }; |
| 147 | |
Corentin Chary | a7ce3f0 | 2011-02-26 10:20:33 +0100 | [diff] [blame] | 148 | struct asus_rfkill { |
| 149 | struct asus_wmi *asus; |
| 150 | struct rfkill *rfkill; |
| 151 | u32 dev_id; |
| 152 | }; |
| 153 | |
Daniel Drake | 2889ffc | 2019-07-29 16:27:37 +0800 | [diff] [blame] | 154 | enum fan_type { |
| 155 | FAN_TYPE_NONE = 0, |
| 156 | FAN_TYPE_AGFN, /* deprecated on newer platforms */ |
Daniel Drake | e3168b8 | 2019-07-29 16:27:39 +0800 | [diff] [blame] | 157 | FAN_TYPE_SPEC83, /* starting in Spec 8.3, use CPU_FAN_CTRL */ |
Daniel Drake | 2889ffc | 2019-07-29 16:27:37 +0800 | [diff] [blame] | 158 | }; |
| 159 | |
Corentin Chary | e12e6d9 | 2011-02-26 10:20:31 +0100 | [diff] [blame] | 160 | struct asus_wmi { |
Corentin Chary | 1d070f8 | 2011-02-26 10:20:36 +0100 | [diff] [blame] | 161 | int dsts_id; |
Corentin Chary | 46dbca8 | 2011-02-26 10:20:38 +0100 | [diff] [blame] | 162 | int spec; |
| 163 | int sfun; |
Yurii Pavlovskyi | 1a373d1 | 2019-05-14 21:02:09 +0200 | [diff] [blame] | 164 | bool wmi_event_queue; |
Corentin Chary | 1d070f8 | 2011-02-26 10:20:36 +0100 | [diff] [blame] | 165 | |
Yong Wang | 8124888 | 2010-04-11 09:26:33 +0800 | [diff] [blame] | 166 | struct input_dev *inputdev; |
Yong Wang | 3d7b165 | 2010-04-11 09:27:54 +0800 | [diff] [blame] | 167 | struct backlight_device *backlight_device; |
Corentin Chary | 27c136c | 2010-11-29 08:14:05 +0100 | [diff] [blame] | 168 | struct platform_device *platform_device; |
Corentin Chary | 084fca6 | 2010-11-29 08:14:06 +0100 | [diff] [blame] | 169 | |
AceLan Kao | 6cae06e | 2012-07-27 16:51:59 +0800 | [diff] [blame] | 170 | struct led_classdev wlan_led; |
| 171 | int wlan_led_wk; |
Corentin Chary | 084fca6 | 2010-11-29 08:14:06 +0100 | [diff] [blame] | 172 | struct led_classdev tpd_led; |
| 173 | int tpd_led_wk; |
Corentin Chary | e9809c0 | 2011-07-01 11:34:31 +0200 | [diff] [blame] | 174 | struct led_classdev kbd_led; |
| 175 | int kbd_led_wk; |
Maxime Bellengé | 4c05984 | 2017-09-23 18:23:37 +0200 | [diff] [blame] | 176 | struct led_classdev lightbar_led; |
| 177 | int lightbar_led_wk; |
Corentin Chary | 084fca6 | 2010-11-29 08:14:06 +0100 | [diff] [blame] | 178 | struct workqueue_struct *led_workqueue; |
| 179 | struct work_struct tpd_led_work; |
AceLan Kao | 6cae06e | 2012-07-27 16:51:59 +0800 | [diff] [blame] | 180 | struct work_struct wlan_led_work; |
Maxime Bellengé | 4c05984 | 2017-09-23 18:23:37 +0200 | [diff] [blame] | 181 | struct work_struct lightbar_led_work; |
Corentin Chary | ba48fdb | 2010-11-29 08:14:07 +0100 | [diff] [blame] | 182 | |
Corentin Chary | a7ce3f0 | 2011-02-26 10:20:33 +0100 | [diff] [blame] | 183 | struct asus_rfkill wlan; |
| 184 | struct asus_rfkill bluetooth; |
| 185 | struct asus_rfkill wimax; |
| 186 | struct asus_rfkill wwan3g; |
Corentin Chary | 43be8bd | 2011-07-01 11:34:40 +0200 | [diff] [blame] | 187 | struct asus_rfkill gps; |
Corentin Chary | a912d32 | 2011-07-01 11:34:41 +0200 | [diff] [blame] | 188 | struct asus_rfkill uwb; |
Corentin Chary | 8c1b2d8 | 2010-11-29 08:14:09 +0100 | [diff] [blame] | 189 | |
Daniel Drake | 2889ffc | 2019-07-29 16:27:37 +0800 | [diff] [blame] | 190 | enum fan_type fan_type; |
| 191 | int fan_pwm_mode; |
| 192 | int agfn_pwm; |
Kast Bernd | 53e755c | 2015-05-13 16:24:16 +0200 | [diff] [blame] | 193 | |
Daniel Drake | 9af93db | 2019-07-17 13:10:58 +0800 | [diff] [blame] | 194 | bool fan_boost_mode_available; |
| 195 | u8 fan_boost_mode_mask; |
| 196 | u8 fan_boost_mode; |
Yurii Pavlovskyi | b096f62 | 2019-05-14 21:07:05 +0200 | [diff] [blame] | 197 | |
Kristian Klausen | d507a54 | 2019-08-05 21:23:05 +0200 | [diff] [blame^] | 198 | int charge_threshold; |
| 199 | |
Lukas Wunner | 125450f | 2018-09-08 09:59:01 +0200 | [diff] [blame] | 200 | struct hotplug_slot hotplug_slot; |
Corentin Chary | afa7c88 | 2011-02-06 13:28:28 +0100 | [diff] [blame] | 201 | struct mutex hotplug_lock; |
Corentin Chary | 279f8f9 | 2011-02-06 13:28:29 +0100 | [diff] [blame] | 202 | struct mutex wmi_lock; |
| 203 | struct workqueue_struct *hotplug_workqueue; |
| 204 | struct work_struct hotplug_work; |
Corentin Chary | afa7c88 | 2011-02-06 13:28:28 +0100 | [diff] [blame] | 205 | |
Chris Chiu | 487579b | 2019-04-18 14:46:48 +0800 | [diff] [blame] | 206 | bool fnlock_locked; |
| 207 | |
Corentin Chary | e12e6d9 | 2011-02-26 10:20:31 +0100 | [diff] [blame] | 208 | struct asus_wmi_debug debug; |
| 209 | |
| 210 | struct asus_wmi_driver *driver; |
Yong Wang | 8124888 | 2010-04-11 09:26:33 +0800 | [diff] [blame] | 211 | }; |
| 212 | |
Yurii Pavlovskyi | 54a3121 | 2019-05-14 21:04:48 +0200 | [diff] [blame] | 213 | /* Input **********************************************************************/ |
| 214 | |
Corentin Chary | e12e6d9 | 2011-02-26 10:20:31 +0100 | [diff] [blame] | 215 | static int asus_wmi_input_init(struct asus_wmi *asus) |
Yong Wang | ee027e4 | 2010-03-21 10:26:34 +0800 | [diff] [blame] | 216 | { |
| 217 | int err; |
| 218 | |
Corentin Chary | e12e6d9 | 2011-02-26 10:20:31 +0100 | [diff] [blame] | 219 | asus->inputdev = input_allocate_device(); |
| 220 | if (!asus->inputdev) |
Yong Wang | ee027e4 | 2010-03-21 10:26:34 +0800 | [diff] [blame] | 221 | return -ENOMEM; |
| 222 | |
Corentin Chary | 58a9f39 | 2011-03-30 16:32:32 +0200 | [diff] [blame] | 223 | asus->inputdev->name = asus->driver->input_name; |
| 224 | asus->inputdev->phys = asus->driver->input_phys; |
Corentin Chary | e12e6d9 | 2011-02-26 10:20:31 +0100 | [diff] [blame] | 225 | asus->inputdev->id.bustype = BUS_HOST; |
| 226 | asus->inputdev->dev.parent = &asus->platform_device->dev; |
Seth Forshee | 39bbde0 | 2011-07-04 09:49:20 +0200 | [diff] [blame] | 227 | set_bit(EV_REP, asus->inputdev->evbit); |
Yong Wang | ee027e4 | 2010-03-21 10:26:34 +0800 | [diff] [blame] | 228 | |
Corentin Chary | e12e6d9 | 2011-02-26 10:20:31 +0100 | [diff] [blame] | 229 | err = sparse_keymap_setup(asus->inputdev, asus->driver->keymap, NULL); |
Yong Wang | ee027e4 | 2010-03-21 10:26:34 +0800 | [diff] [blame] | 230 | if (err) |
| 231 | goto err_free_dev; |
| 232 | |
Corentin Chary | e12e6d9 | 2011-02-26 10:20:31 +0100 | [diff] [blame] | 233 | err = input_register_device(asus->inputdev); |
Yong Wang | ee027e4 | 2010-03-21 10:26:34 +0800 | [diff] [blame] | 234 | if (err) |
Michał Kępień | c2ef3a1 | 2017-03-09 13:11:39 +0100 | [diff] [blame] | 235 | goto err_free_dev; |
Yong Wang | ee027e4 | 2010-03-21 10:26:34 +0800 | [diff] [blame] | 236 | |
| 237 | return 0; |
| 238 | |
Yong Wang | ee027e4 | 2010-03-21 10:26:34 +0800 | [diff] [blame] | 239 | err_free_dev: |
Corentin Chary | e12e6d9 | 2011-02-26 10:20:31 +0100 | [diff] [blame] | 240 | input_free_device(asus->inputdev); |
Yong Wang | ee027e4 | 2010-03-21 10:26:34 +0800 | [diff] [blame] | 241 | return err; |
| 242 | } |
| 243 | |
Corentin Chary | e12e6d9 | 2011-02-26 10:20:31 +0100 | [diff] [blame] | 244 | static void asus_wmi_input_exit(struct asus_wmi *asus) |
Yong Wang | 8124888 | 2010-04-11 09:26:33 +0800 | [diff] [blame] | 245 | { |
Michał Kępień | c2ef3a1 | 2017-03-09 13:11:39 +0100 | [diff] [blame] | 246 | if (asus->inputdev) |
Corentin Chary | e12e6d9 | 2011-02-26 10:20:31 +0100 | [diff] [blame] | 247 | input_unregister_device(asus->inputdev); |
Yong Wang | 8124888 | 2010-04-11 09:26:33 +0800 | [diff] [blame] | 248 | |
Corentin Chary | e12e6d9 | 2011-02-26 10:20:31 +0100 | [diff] [blame] | 249 | asus->inputdev = NULL; |
Yong Wang | 8124888 | 2010-04-11 09:26:33 +0800 | [diff] [blame] | 250 | } |
| 251 | |
Yurii Pavlovskyi | 54a3121 | 2019-05-14 21:04:48 +0200 | [diff] [blame] | 252 | /* WMI ************************************************************************/ |
| 253 | |
Yurii Pavlovskyi | 98e865a | 2019-05-14 20:54:50 +0200 | [diff] [blame] | 254 | static int asus_wmi_evaluate_method3(u32 method_id, |
| 255 | u32 arg0, u32 arg1, u32 arg2, u32 *retval) |
Yong Wang | 3d7b165 | 2010-04-11 09:27:54 +0800 | [diff] [blame] | 256 | { |
Corentin Chary | d33da3b | 2011-02-26 10:20:35 +0100 | [diff] [blame] | 257 | struct bios_args args = { |
| 258 | .arg0 = arg0, |
| 259 | .arg1 = arg1, |
Yurii Pavlovskyi | 98e865a | 2019-05-14 20:54:50 +0200 | [diff] [blame] | 260 | .arg2 = arg2, |
Corentin Chary | d33da3b | 2011-02-26 10:20:35 +0100 | [diff] [blame] | 261 | }; |
| 262 | struct acpi_buffer input = { (acpi_size) sizeof(args), &args }; |
Yong Wang | 3d7b165 | 2010-04-11 09:27:54 +0800 | [diff] [blame] | 263 | struct acpi_buffer output = { ACPI_ALLOCATE_BUFFER, NULL }; |
Yong Wang | 3d7b165 | 2010-04-11 09:27:54 +0800 | [diff] [blame] | 264 | acpi_status status; |
Corentin Chary | d33da3b | 2011-02-26 10:20:35 +0100 | [diff] [blame] | 265 | union acpi_object *obj; |
Rickard Strandqvist | 8ad3be1 | 2014-06-01 14:58:52 +0200 | [diff] [blame] | 266 | u32 tmp = 0; |
Yong Wang | 3d7b165 | 2010-04-11 09:27:54 +0800 | [diff] [blame] | 267 | |
Pali Rohár | 0fe5726 | 2017-08-12 09:44:16 +0200 | [diff] [blame] | 268 | status = wmi_evaluate_method(ASUS_WMI_MGMT_GUID, 0, method_id, |
Corentin Chary | afa7c88 | 2011-02-06 13:28:28 +0100 | [diff] [blame] | 269 | &input, &output); |
Yong Wang | 3d7b165 | 2010-04-11 09:27:54 +0800 | [diff] [blame] | 270 | |
| 271 | if (ACPI_FAILURE(status)) |
Yurii Pavlovskyi | 1827f3f | 2019-05-14 21:03:50 +0200 | [diff] [blame] | 272 | return -EIO; |
Yong Wang | 3d7b165 | 2010-04-11 09:27:54 +0800 | [diff] [blame] | 273 | |
| 274 | obj = (union acpi_object *)output.pointer; |
| 275 | if (obj && obj->type == ACPI_TYPE_INTEGER) |
Corentin Chary | e12e6d9 | 2011-02-26 10:20:31 +0100 | [diff] [blame] | 276 | tmp = (u32) obj->integer.value; |
Yong Wang | 3d7b165 | 2010-04-11 09:27:54 +0800 | [diff] [blame] | 277 | |
Corentin Chary | 2a3f006 | 2010-11-29 08:14:10 +0100 | [diff] [blame] | 278 | if (retval) |
| 279 | *retval = tmp; |
Yong Wang | 3d7b165 | 2010-04-11 09:27:54 +0800 | [diff] [blame] | 280 | |
| 281 | kfree(obj); |
| 282 | |
Corentin Chary | d33da3b | 2011-02-26 10:20:35 +0100 | [diff] [blame] | 283 | if (tmp == ASUS_WMI_UNSUPPORTED_METHOD) |
| 284 | return -ENODEV; |
| 285 | |
| 286 | return 0; |
Yong Wang | 3d7b165 | 2010-04-11 09:27:54 +0800 | [diff] [blame] | 287 | } |
Yurii Pavlovskyi | 98e865a | 2019-05-14 20:54:50 +0200 | [diff] [blame] | 288 | |
| 289 | int asus_wmi_evaluate_method(u32 method_id, u32 arg0, u32 arg1, u32 *retval) |
| 290 | { |
| 291 | return asus_wmi_evaluate_method3(method_id, arg0, arg1, 0, retval); |
| 292 | } |
Daniel Drake | ffb6ce7 | 2018-10-09 14:40:55 +0800 | [diff] [blame] | 293 | EXPORT_SYMBOL_GPL(asus_wmi_evaluate_method); |
Yong Wang | 3d7b165 | 2010-04-11 09:27:54 +0800 | [diff] [blame] | 294 | |
Kast Bernd | 53e755c | 2015-05-13 16:24:16 +0200 | [diff] [blame] | 295 | static int asus_wmi_evaluate_method_agfn(const struct acpi_buffer args) |
| 296 | { |
| 297 | struct acpi_buffer input; |
| 298 | u64 phys_addr; |
| 299 | u32 retval; |
| 300 | u32 status = -1; |
| 301 | |
| 302 | /* |
| 303 | * Copy to dma capable address otherwise memory corruption occurs as |
| 304 | * bios has to be able to access it. |
| 305 | */ |
Fuqian Huang | 340f25f | 2019-07-04 00:29:51 +0800 | [diff] [blame] | 306 | input.pointer = kmemdup(args.pointer, args.length, GFP_DMA | GFP_KERNEL); |
Kast Bernd | 53e755c | 2015-05-13 16:24:16 +0200 | [diff] [blame] | 307 | input.length = args.length; |
| 308 | if (!input.pointer) |
| 309 | return -ENOMEM; |
| 310 | phys_addr = virt_to_phys(input.pointer); |
Kast Bernd | 53e755c | 2015-05-13 16:24:16 +0200 | [diff] [blame] | 311 | |
| 312 | status = asus_wmi_evaluate_method(ASUS_WMI_METHODID_AGFN, |
| 313 | phys_addr, 0, &retval); |
| 314 | if (!status) |
| 315 | memcpy(args.pointer, input.pointer, args.length); |
| 316 | |
| 317 | kfree(input.pointer); |
| 318 | if (status) |
| 319 | return -ENXIO; |
| 320 | |
| 321 | return retval; |
| 322 | } |
| 323 | |
Corentin Chary | 1d070f8 | 2011-02-26 10:20:36 +0100 | [diff] [blame] | 324 | 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] | 325 | { |
Corentin Chary | 1d070f8 | 2011-02-26 10:20:36 +0100 | [diff] [blame] | 326 | return asus_wmi_evaluate_method(asus->dsts_id, dev_id, 0, retval); |
Corentin Chary | d33da3b | 2011-02-26 10:20:35 +0100 | [diff] [blame] | 327 | } |
| 328 | |
| 329 | static int asus_wmi_set_devstate(u32 dev_id, u32 ctrl_param, |
Corentin Chary | 1d070f8 | 2011-02-26 10:20:36 +0100 | [diff] [blame] | 330 | u32 *retval) |
Yong Wang | 3d7b165 | 2010-04-11 09:27:54 +0800 | [diff] [blame] | 331 | { |
Corentin Chary | d33da3b | 2011-02-26 10:20:35 +0100 | [diff] [blame] | 332 | return asus_wmi_evaluate_method(ASUS_WMI_METHODID_DEVS, dev_id, |
| 333 | ctrl_param, retval); |
Yong Wang | 3d7b165 | 2010-04-11 09:27:54 +0800 | [diff] [blame] | 334 | } |
| 335 | |
Corentin Chary | 5c95638 | 2011-02-06 13:28:31 +0100 | [diff] [blame] | 336 | /* Helper for special devices with magic return codes */ |
Corentin Chary | 1d070f8 | 2011-02-26 10:20:36 +0100 | [diff] [blame] | 337 | static int asus_wmi_get_devstate_bits(struct asus_wmi *asus, |
| 338 | u32 dev_id, u32 mask) |
Corentin Chary | 5c95638 | 2011-02-06 13:28:31 +0100 | [diff] [blame] | 339 | { |
| 340 | u32 retval = 0; |
Corentin Chary | d33da3b | 2011-02-26 10:20:35 +0100 | [diff] [blame] | 341 | int err; |
Corentin Chary | 5c95638 | 2011-02-06 13:28:31 +0100 | [diff] [blame] | 342 | |
Corentin Chary | 1d070f8 | 2011-02-26 10:20:36 +0100 | [diff] [blame] | 343 | err = asus_wmi_get_devstate(asus, dev_id, &retval); |
Corentin Chary | 5c95638 | 2011-02-06 13:28:31 +0100 | [diff] [blame] | 344 | |
Corentin Chary | d33da3b | 2011-02-26 10:20:35 +0100 | [diff] [blame] | 345 | if (err < 0) |
| 346 | return err; |
Corentin Chary | 5c95638 | 2011-02-06 13:28:31 +0100 | [diff] [blame] | 347 | |
Corentin Chary | e12e6d9 | 2011-02-26 10:20:31 +0100 | [diff] [blame] | 348 | if (!(retval & ASUS_WMI_DSTS_PRESENCE_BIT)) |
Corentin Chary | 5c95638 | 2011-02-06 13:28:31 +0100 | [diff] [blame] | 349 | return -ENODEV; |
| 350 | |
Corentin Chary | a75fe0d | 2011-02-26 10:20:34 +0100 | [diff] [blame] | 351 | if (mask == ASUS_WMI_DSTS_STATUS_BIT) { |
| 352 | if (retval & ASUS_WMI_DSTS_UNKNOWN_BIT) |
| 353 | return -ENODEV; |
| 354 | } |
| 355 | |
Corentin Chary | b718726 | 2011-02-06 13:28:39 +0100 | [diff] [blame] | 356 | return retval & mask; |
| 357 | } |
| 358 | |
Corentin Chary | 1d070f8 | 2011-02-26 10:20:36 +0100 | [diff] [blame] | 359 | 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] | 360 | { |
Corentin Chary | 1d070f8 | 2011-02-26 10:20:36 +0100 | [diff] [blame] | 361 | return asus_wmi_get_devstate_bits(asus, dev_id, |
| 362 | ASUS_WMI_DSTS_STATUS_BIT); |
Corentin Chary | 5c95638 | 2011-02-06 13:28:31 +0100 | [diff] [blame] | 363 | } |
| 364 | |
Daniel Drake | f1fc032 | 2019-07-29 16:27:38 +0800 | [diff] [blame] | 365 | static bool asus_wmi_dev_is_present(struct asus_wmi *asus, u32 dev_id) |
| 366 | { |
| 367 | u32 retval; |
| 368 | int status = asus_wmi_get_devstate(asus, dev_id, &retval); |
| 369 | |
| 370 | return status == 0 && (retval & ASUS_WMI_DSTS_PRESENCE_BIT); |
| 371 | } |
| 372 | |
Yurii Pavlovskyi | 54a3121 | 2019-05-14 21:04:48 +0200 | [diff] [blame] | 373 | /* LEDs ***********************************************************************/ |
| 374 | |
Corentin Chary | 084fca6 | 2010-11-29 08:14:06 +0100 | [diff] [blame] | 375 | /* |
| 376 | * These functions actually update the LED's, and are called from a |
| 377 | * workqueue. By doing this as separate work rather than when the LED |
Corentin Chary | e12e6d9 | 2011-02-26 10:20:31 +0100 | [diff] [blame] | 378 | * subsystem asks, we avoid messing with the Asus ACPI stuff during a |
Corentin Chary | 084fca6 | 2010-11-29 08:14:06 +0100 | [diff] [blame] | 379 | * potentially bad time, such as a timer interrupt. |
| 380 | */ |
| 381 | static void tpd_led_update(struct work_struct *work) |
| 382 | { |
| 383 | int ctrl_param; |
Corentin Chary | e12e6d9 | 2011-02-26 10:20:31 +0100 | [diff] [blame] | 384 | struct asus_wmi *asus; |
Corentin Chary | 084fca6 | 2010-11-29 08:14:06 +0100 | [diff] [blame] | 385 | |
Corentin Chary | e12e6d9 | 2011-02-26 10:20:31 +0100 | [diff] [blame] | 386 | asus = container_of(work, struct asus_wmi, tpd_led_work); |
Corentin Chary | 084fca6 | 2010-11-29 08:14:06 +0100 | [diff] [blame] | 387 | |
Corentin Chary | e12e6d9 | 2011-02-26 10:20:31 +0100 | [diff] [blame] | 388 | ctrl_param = asus->tpd_led_wk; |
| 389 | asus_wmi_set_devstate(ASUS_WMI_DEVID_TOUCHPAD_LED, ctrl_param, NULL); |
Corentin Chary | 084fca6 | 2010-11-29 08:14:06 +0100 | [diff] [blame] | 390 | } |
| 391 | |
| 392 | static void tpd_led_set(struct led_classdev *led_cdev, |
| 393 | enum led_brightness value) |
| 394 | { |
Corentin Chary | e12e6d9 | 2011-02-26 10:20:31 +0100 | [diff] [blame] | 395 | struct asus_wmi *asus; |
Corentin Chary | 084fca6 | 2010-11-29 08:14:06 +0100 | [diff] [blame] | 396 | |
Corentin Chary | e12e6d9 | 2011-02-26 10:20:31 +0100 | [diff] [blame] | 397 | asus = container_of(led_cdev, struct asus_wmi, tpd_led); |
Corentin Chary | 084fca6 | 2010-11-29 08:14:06 +0100 | [diff] [blame] | 398 | |
Corentin Chary | e12e6d9 | 2011-02-26 10:20:31 +0100 | [diff] [blame] | 399 | asus->tpd_led_wk = !!value; |
| 400 | queue_work(asus->led_workqueue, &asus->tpd_led_work); |
Corentin Chary | 084fca6 | 2010-11-29 08:14:06 +0100 | [diff] [blame] | 401 | } |
| 402 | |
Corentin Chary | e12e6d9 | 2011-02-26 10:20:31 +0100 | [diff] [blame] | 403 | static int read_tpd_led_state(struct asus_wmi *asus) |
Corentin Chary | 084fca6 | 2010-11-29 08:14:06 +0100 | [diff] [blame] | 404 | { |
Corentin Chary | 1d070f8 | 2011-02-26 10:20:36 +0100 | [diff] [blame] | 405 | return asus_wmi_get_devstate_simple(asus, ASUS_WMI_DEVID_TOUCHPAD_LED); |
Corentin Chary | 084fca6 | 2010-11-29 08:14:06 +0100 | [diff] [blame] | 406 | } |
| 407 | |
| 408 | static enum led_brightness tpd_led_get(struct led_classdev *led_cdev) |
| 409 | { |
Corentin Chary | e12e6d9 | 2011-02-26 10:20:31 +0100 | [diff] [blame] | 410 | struct asus_wmi *asus; |
Corentin Chary | 084fca6 | 2010-11-29 08:14:06 +0100 | [diff] [blame] | 411 | |
Corentin Chary | e12e6d9 | 2011-02-26 10:20:31 +0100 | [diff] [blame] | 412 | asus = container_of(led_cdev, struct asus_wmi, tpd_led); |
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 | return read_tpd_led_state(asus); |
Corentin Chary | 084fca6 | 2010-11-29 08:14:06 +0100 | [diff] [blame] | 415 | } |
| 416 | |
Jian-Hong Pan | 9fe44fc | 2018-09-27 16:50:09 +0800 | [diff] [blame] | 417 | static void kbd_led_update(struct asus_wmi *asus) |
Corentin Chary | 084fca6 | 2010-11-29 08:14:06 +0100 | [diff] [blame] | 418 | { |
Corentin Chary | e9809c0 | 2011-07-01 11:34:31 +0200 | [diff] [blame] | 419 | int ctrl_param = 0; |
Corentin Chary | 084fca6 | 2010-11-29 08:14:06 +0100 | [diff] [blame] | 420 | |
Corentin Chary | e9809c0 | 2011-07-01 11:34:31 +0200 | [diff] [blame] | 421 | /* |
| 422 | * bits 0-2: level |
| 423 | * bit 7: light on/off |
| 424 | */ |
| 425 | if (asus->kbd_led_wk > 0) |
| 426 | ctrl_param = 0x80 | (asus->kbd_led_wk & 0x7F); |
Corentin Chary | 084fca6 | 2010-11-29 08:14:06 +0100 | [diff] [blame] | 427 | |
Corentin Chary | e9809c0 | 2011-07-01 11:34:31 +0200 | [diff] [blame] | 428 | asus_wmi_set_devstate(ASUS_WMI_DEVID_KBD_BACKLIGHT, ctrl_param, NULL); |
| 429 | } |
Corentin Chary | 084fca6 | 2010-11-29 08:14:06 +0100 | [diff] [blame] | 430 | |
Corentin Chary | e9809c0 | 2011-07-01 11:34:31 +0200 | [diff] [blame] | 431 | static int kbd_led_read(struct asus_wmi *asus, int *level, int *env) |
| 432 | { |
| 433 | int retval; |
| 434 | |
| 435 | /* |
| 436 | * bits 0-2: level |
| 437 | * bit 7: light on/off |
| 438 | * bit 8-10: environment (0: dark, 1: normal, 2: light) |
| 439 | * bit 17: status unknown |
| 440 | */ |
| 441 | retval = asus_wmi_get_devstate_bits(asus, ASUS_WMI_DEVID_KBD_BACKLIGHT, |
| 442 | 0xFFFF); |
| 443 | |
Corentin Chary | af965e9 | 2011-07-01 11:34:34 +0200 | [diff] [blame] | 444 | /* Unknown status is considered as off */ |
Corentin Chary | e9809c0 | 2011-07-01 11:34:31 +0200 | [diff] [blame] | 445 | if (retval == 0x8000) |
Corentin Chary | af965e9 | 2011-07-01 11:34:34 +0200 | [diff] [blame] | 446 | retval = 0; |
Corentin Chary | e9809c0 | 2011-07-01 11:34:31 +0200 | [diff] [blame] | 447 | |
| 448 | if (retval >= 0) { |
| 449 | if (level) |
Corentin Chary | c09b223 | 2012-03-20 09:53:04 +0100 | [diff] [blame] | 450 | *level = retval & 0x7F; |
Corentin Chary | e9809c0 | 2011-07-01 11:34:31 +0200 | [diff] [blame] | 451 | if (env) |
| 452 | *env = (retval >> 8) & 0x7F; |
| 453 | retval = 0; |
Corentin Chary | 084fca6 | 2010-11-29 08:14:06 +0100 | [diff] [blame] | 454 | } |
| 455 | |
Corentin Chary | e9809c0 | 2011-07-01 11:34:31 +0200 | [diff] [blame] | 456 | return retval; |
| 457 | } |
| 458 | |
Chris Chiu | dbb3d78 | 2018-06-20 22:46:44 +0800 | [diff] [blame] | 459 | static void do_kbd_led_set(struct led_classdev *led_cdev, int value) |
Corentin Chary | e9809c0 | 2011-07-01 11:34:31 +0200 | [diff] [blame] | 460 | { |
| 461 | struct asus_wmi *asus; |
Chris Chiu | dbb3d78 | 2018-06-20 22:46:44 +0800 | [diff] [blame] | 462 | int max_level; |
Corentin Chary | e9809c0 | 2011-07-01 11:34:31 +0200 | [diff] [blame] | 463 | |
| 464 | asus = container_of(led_cdev, struct asus_wmi, kbd_led); |
Chris Chiu | dbb3d78 | 2018-06-20 22:46:44 +0800 | [diff] [blame] | 465 | max_level = asus->kbd_led.max_brightness; |
Corentin Chary | e9809c0 | 2011-07-01 11:34:31 +0200 | [diff] [blame] | 466 | |
Chris Chiu | dbb3d78 | 2018-06-20 22:46:44 +0800 | [diff] [blame] | 467 | if (value > max_level) |
| 468 | value = max_level; |
Corentin Chary | e9809c0 | 2011-07-01 11:34:31 +0200 | [diff] [blame] | 469 | else if (value < 0) |
| 470 | value = 0; |
| 471 | |
| 472 | asus->kbd_led_wk = value; |
Jian-Hong Pan | 9fe44fc | 2018-09-27 16:50:09 +0800 | [diff] [blame] | 473 | kbd_led_update(asus); |
Corentin Chary | e9809c0 | 2011-07-01 11:34:31 +0200 | [diff] [blame] | 474 | } |
| 475 | |
Chris Chiu | dbb3d78 | 2018-06-20 22:46:44 +0800 | [diff] [blame] | 476 | static void kbd_led_set(struct led_classdev *led_cdev, |
| 477 | enum led_brightness value) |
| 478 | { |
Yurii Pavlovskyi | 3e58167 | 2019-05-14 21:07:46 +0200 | [diff] [blame] | 479 | /* Prevent disabling keyboard backlight on module unregister */ |
| 480 | if (led_cdev->flags & LED_UNREGISTERING) |
| 481 | return; |
| 482 | |
Chris Chiu | dbb3d78 | 2018-06-20 22:46:44 +0800 | [diff] [blame] | 483 | do_kbd_led_set(led_cdev, value); |
| 484 | } |
| 485 | |
Jian-Hong Pan | 29f6eb5 | 2018-10-22 18:00:04 +0800 | [diff] [blame] | 486 | static void kbd_led_set_by_kbd(struct asus_wmi *asus, enum led_brightness value) |
| 487 | { |
| 488 | struct led_classdev *led_cdev = &asus->kbd_led; |
| 489 | |
| 490 | do_kbd_led_set(led_cdev, value); |
| 491 | led_classdev_notify_brightness_hw_changed(led_cdev, asus->kbd_led_wk); |
| 492 | } |
| 493 | |
Corentin Chary | e9809c0 | 2011-07-01 11:34:31 +0200 | [diff] [blame] | 494 | static enum led_brightness kbd_led_get(struct led_classdev *led_cdev) |
| 495 | { |
| 496 | struct asus_wmi *asus; |
| 497 | int retval, value; |
| 498 | |
| 499 | asus = container_of(led_cdev, struct asus_wmi, kbd_led); |
| 500 | |
| 501 | retval = kbd_led_read(asus, &value, NULL); |
| 502 | |
| 503 | if (retval < 0) |
| 504 | return retval; |
| 505 | |
| 506 | return value; |
Corentin Chary | 084fca6 | 2010-11-29 08:14:06 +0100 | [diff] [blame] | 507 | } |
| 508 | |
AceLan Kao | 6cae06e | 2012-07-27 16:51:59 +0800 | [diff] [blame] | 509 | static int wlan_led_unknown_state(struct asus_wmi *asus) |
| 510 | { |
| 511 | u32 result; |
| 512 | |
| 513 | asus_wmi_get_devstate(asus, ASUS_WMI_DEVID_WIRELESS_LED, &result); |
| 514 | |
| 515 | return result & ASUS_WMI_DSTS_UNKNOWN_BIT; |
| 516 | } |
| 517 | |
AceLan Kao | 6cae06e | 2012-07-27 16:51:59 +0800 | [diff] [blame] | 518 | static void wlan_led_update(struct work_struct *work) |
| 519 | { |
| 520 | int ctrl_param; |
| 521 | struct asus_wmi *asus; |
| 522 | |
| 523 | asus = container_of(work, struct asus_wmi, wlan_led_work); |
| 524 | |
| 525 | ctrl_param = asus->wlan_led_wk; |
| 526 | asus_wmi_set_devstate(ASUS_WMI_DEVID_WIRELESS_LED, ctrl_param, NULL); |
| 527 | } |
| 528 | |
| 529 | static void wlan_led_set(struct led_classdev *led_cdev, |
| 530 | enum led_brightness value) |
| 531 | { |
| 532 | struct asus_wmi *asus; |
| 533 | |
| 534 | asus = container_of(led_cdev, struct asus_wmi, wlan_led); |
| 535 | |
| 536 | asus->wlan_led_wk = !!value; |
| 537 | queue_work(asus->led_workqueue, &asus->wlan_led_work); |
| 538 | } |
| 539 | |
| 540 | static enum led_brightness wlan_led_get(struct led_classdev *led_cdev) |
| 541 | { |
| 542 | struct asus_wmi *asus; |
| 543 | u32 result; |
| 544 | |
| 545 | asus = container_of(led_cdev, struct asus_wmi, wlan_led); |
| 546 | asus_wmi_get_devstate(asus, ASUS_WMI_DEVID_WIRELESS_LED, &result); |
| 547 | |
| 548 | return result & ASUS_WMI_DSTS_BRIGHTNESS_MASK; |
| 549 | } |
| 550 | |
Maxime Bellengé | 4c05984 | 2017-09-23 18:23:37 +0200 | [diff] [blame] | 551 | static void lightbar_led_update(struct work_struct *work) |
| 552 | { |
| 553 | struct asus_wmi *asus; |
| 554 | int ctrl_param; |
| 555 | |
| 556 | asus = container_of(work, struct asus_wmi, lightbar_led_work); |
| 557 | |
| 558 | ctrl_param = asus->lightbar_led_wk; |
| 559 | asus_wmi_set_devstate(ASUS_WMI_DEVID_LIGHTBAR, ctrl_param, NULL); |
| 560 | } |
| 561 | |
| 562 | static void lightbar_led_set(struct led_classdev *led_cdev, |
| 563 | enum led_brightness value) |
| 564 | { |
| 565 | struct asus_wmi *asus; |
| 566 | |
| 567 | asus = container_of(led_cdev, struct asus_wmi, lightbar_led); |
| 568 | |
| 569 | asus->lightbar_led_wk = !!value; |
| 570 | queue_work(asus->led_workqueue, &asus->lightbar_led_work); |
| 571 | } |
| 572 | |
| 573 | static enum led_brightness lightbar_led_get(struct led_classdev *led_cdev) |
| 574 | { |
| 575 | struct asus_wmi *asus; |
| 576 | u32 result; |
| 577 | |
| 578 | asus = container_of(led_cdev, struct asus_wmi, lightbar_led); |
| 579 | asus_wmi_get_devstate(asus, ASUS_WMI_DEVID_LIGHTBAR, &result); |
| 580 | |
| 581 | return result & ASUS_WMI_DSTS_LIGHTBAR_MASK; |
| 582 | } |
| 583 | |
Corentin Chary | e12e6d9 | 2011-02-26 10:20:31 +0100 | [diff] [blame] | 584 | static void asus_wmi_led_exit(struct asus_wmi *asus) |
Corentin Chary | 084fca6 | 2010-11-29 08:14:06 +0100 | [diff] [blame] | 585 | { |
Axel Lin | e929802 | 2011-08-08 17:16:01 +0800 | [diff] [blame] | 586 | if (!IS_ERR_OR_NULL(asus->kbd_led.dev)) |
| 587 | led_classdev_unregister(&asus->kbd_led); |
| 588 | if (!IS_ERR_OR_NULL(asus->tpd_led.dev)) |
Corentin Chary | e12e6d9 | 2011-02-26 10:20:31 +0100 | [diff] [blame] | 589 | led_classdev_unregister(&asus->tpd_led); |
AceLan Kao | 6cae06e | 2012-07-27 16:51:59 +0800 | [diff] [blame] | 590 | if (!IS_ERR_OR_NULL(asus->wlan_led.dev)) |
| 591 | led_classdev_unregister(&asus->wlan_led); |
Maxime Bellengé | 4c05984 | 2017-09-23 18:23:37 +0200 | [diff] [blame] | 592 | if (!IS_ERR_OR_NULL(asus->lightbar_led.dev)) |
| 593 | led_classdev_unregister(&asus->lightbar_led); |
Corentin Chary | e12e6d9 | 2011-02-26 10:20:31 +0100 | [diff] [blame] | 594 | if (asus->led_workqueue) |
| 595 | destroy_workqueue(asus->led_workqueue); |
Corentin Chary | 084fca6 | 2010-11-29 08:14:06 +0100 | [diff] [blame] | 596 | } |
| 597 | |
Corentin Chary | e9809c0 | 2011-07-01 11:34:31 +0200 | [diff] [blame] | 598 | static int asus_wmi_led_init(struct asus_wmi *asus) |
| 599 | { |
Oleksij Rempel | 3073404 | 2015-09-14 11:16:30 +0200 | [diff] [blame] | 600 | int rv = 0, led_val; |
Corentin Chary | e9809c0 | 2011-07-01 11:34:31 +0200 | [diff] [blame] | 601 | |
| 602 | asus->led_workqueue = create_singlethread_workqueue("led_workqueue"); |
| 603 | if (!asus->led_workqueue) |
| 604 | return -ENOMEM; |
| 605 | |
| 606 | if (read_tpd_led_state(asus) >= 0) { |
| 607 | INIT_WORK(&asus->tpd_led_work, tpd_led_update); |
| 608 | |
| 609 | asus->tpd_led.name = "asus::touchpad"; |
| 610 | asus->tpd_led.brightness_set = tpd_led_set; |
| 611 | asus->tpd_led.brightness_get = tpd_led_get; |
| 612 | asus->tpd_led.max_brightness = 1; |
| 613 | |
| 614 | rv = led_classdev_register(&asus->platform_device->dev, |
| 615 | &asus->tpd_led); |
| 616 | if (rv) |
| 617 | goto error; |
| 618 | } |
| 619 | |
Yurii Pavlovskyi | 8853a2f | 2019-05-14 20:51:25 +0200 | [diff] [blame] | 620 | if (!kbd_led_read(asus, &led_val, NULL)) { |
Oleksij Rempel | 3073404 | 2015-09-14 11:16:30 +0200 | [diff] [blame] | 621 | asus->kbd_led_wk = led_val; |
Corentin Chary | e9809c0 | 2011-07-01 11:34:31 +0200 | [diff] [blame] | 622 | asus->kbd_led.name = "asus::kbd_backlight"; |
Chris Chiu | dbb3d78 | 2018-06-20 22:46:44 +0800 | [diff] [blame] | 623 | asus->kbd_led.flags = LED_BRIGHT_HW_CHANGED; |
Corentin Chary | e9809c0 | 2011-07-01 11:34:31 +0200 | [diff] [blame] | 624 | asus->kbd_led.brightness_set = kbd_led_set; |
| 625 | asus->kbd_led.brightness_get = kbd_led_get; |
| 626 | asus->kbd_led.max_brightness = 3; |
| 627 | |
| 628 | rv = led_classdev_register(&asus->platform_device->dev, |
| 629 | &asus->kbd_led); |
AceLan Kao | 6cae06e | 2012-07-27 16:51:59 +0800 | [diff] [blame] | 630 | if (rv) |
| 631 | goto error; |
| 632 | } |
| 633 | |
Daniel Drake | f1fc032 | 2019-07-29 16:27:38 +0800 | [diff] [blame] | 634 | if (asus_wmi_dev_is_present(asus, ASUS_WMI_DEVID_WIRELESS_LED) |
| 635 | && (asus->driver->quirks->wapf > 0)) { |
AceLan Kao | 6cae06e | 2012-07-27 16:51:59 +0800 | [diff] [blame] | 636 | INIT_WORK(&asus->wlan_led_work, wlan_led_update); |
| 637 | |
| 638 | asus->wlan_led.name = "asus::wlan"; |
| 639 | asus->wlan_led.brightness_set = wlan_led_set; |
| 640 | if (!wlan_led_unknown_state(asus)) |
| 641 | asus->wlan_led.brightness_get = wlan_led_get; |
| 642 | asus->wlan_led.flags = LED_CORE_SUSPENDRESUME; |
| 643 | asus->wlan_led.max_brightness = 1; |
| 644 | asus->wlan_led.default_trigger = "asus-wlan"; |
| 645 | |
| 646 | rv = led_classdev_register(&asus->platform_device->dev, |
| 647 | &asus->wlan_led); |
Maxime Bellengé | 4c05984 | 2017-09-23 18:23:37 +0200 | [diff] [blame] | 648 | if (rv) |
| 649 | goto error; |
| 650 | } |
| 651 | |
Daniel Drake | f1fc032 | 2019-07-29 16:27:38 +0800 | [diff] [blame] | 652 | if (asus_wmi_dev_is_present(asus, ASUS_WMI_DEVID_LIGHTBAR)) { |
Maxime Bellengé | 4c05984 | 2017-09-23 18:23:37 +0200 | [diff] [blame] | 653 | INIT_WORK(&asus->lightbar_led_work, lightbar_led_update); |
| 654 | |
| 655 | asus->lightbar_led.name = "asus::lightbar"; |
| 656 | asus->lightbar_led.brightness_set = lightbar_led_set; |
| 657 | asus->lightbar_led.brightness_get = lightbar_led_get; |
| 658 | asus->lightbar_led.max_brightness = 1; |
| 659 | |
| 660 | rv = led_classdev_register(&asus->platform_device->dev, |
| 661 | &asus->lightbar_led); |
Corentin Chary | e9809c0 | 2011-07-01 11:34:31 +0200 | [diff] [blame] | 662 | } |
| 663 | |
| 664 | error: |
| 665 | if (rv) |
| 666 | asus_wmi_led_exit(asus); |
| 667 | |
| 668 | return rv; |
| 669 | } |
| 670 | |
Yurii Pavlovskyi | 54a3121 | 2019-05-14 21:04:48 +0200 | [diff] [blame] | 671 | /* RF *************************************************************************/ |
Corentin Chary | e9809c0 | 2011-07-01 11:34:31 +0200 | [diff] [blame] | 672 | |
Corentin Chary | 084fca6 | 2010-11-29 08:14:06 +0100 | [diff] [blame] | 673 | /* |
Corentin Chary | afa7c88 | 2011-02-06 13:28:28 +0100 | [diff] [blame] | 674 | * PCI hotplug (for wlan rfkill) |
| 675 | */ |
Corentin Chary | e12e6d9 | 2011-02-26 10:20:31 +0100 | [diff] [blame] | 676 | static bool asus_wlan_rfkill_blocked(struct asus_wmi *asus) |
Corentin Chary | afa7c88 | 2011-02-06 13:28:28 +0100 | [diff] [blame] | 677 | { |
Corentin Chary | 1d070f8 | 2011-02-26 10:20:36 +0100 | [diff] [blame] | 678 | int result = asus_wmi_get_devstate_simple(asus, ASUS_WMI_DEVID_WLAN); |
Corentin Chary | afa7c88 | 2011-02-06 13:28:28 +0100 | [diff] [blame] | 679 | |
Corentin Chary | 5c95638 | 2011-02-06 13:28:31 +0100 | [diff] [blame] | 680 | if (result < 0) |
Corentin Chary | afa7c88 | 2011-02-06 13:28:28 +0100 | [diff] [blame] | 681 | return false; |
Corentin Chary | 5c95638 | 2011-02-06 13:28:31 +0100 | [diff] [blame] | 682 | return !result; |
Corentin Chary | afa7c88 | 2011-02-06 13:28:28 +0100 | [diff] [blame] | 683 | } |
| 684 | |
Corentin Chary | e12e6d9 | 2011-02-26 10:20:31 +0100 | [diff] [blame] | 685 | static void asus_rfkill_hotplug(struct asus_wmi *asus) |
Corentin Chary | afa7c88 | 2011-02-06 13:28:28 +0100 | [diff] [blame] | 686 | { |
| 687 | struct pci_dev *dev; |
| 688 | struct pci_bus *bus; |
Corentin Chary | 279f8f9 | 2011-02-06 13:28:29 +0100 | [diff] [blame] | 689 | bool blocked; |
Corentin Chary | afa7c88 | 2011-02-06 13:28:28 +0100 | [diff] [blame] | 690 | bool absent; |
| 691 | u32 l; |
| 692 | |
Corentin Chary | e12e6d9 | 2011-02-26 10:20:31 +0100 | [diff] [blame] | 693 | mutex_lock(&asus->wmi_lock); |
| 694 | blocked = asus_wlan_rfkill_blocked(asus); |
| 695 | mutex_unlock(&asus->wmi_lock); |
Corentin Chary | afa7c88 | 2011-02-06 13:28:28 +0100 | [diff] [blame] | 696 | |
Corentin Chary | e12e6d9 | 2011-02-26 10:20:31 +0100 | [diff] [blame] | 697 | mutex_lock(&asus->hotplug_lock); |
Rafael J. Wysocki | 8b9ec1d | 2014-01-10 15:27:08 +0100 | [diff] [blame] | 698 | pci_lock_rescan_remove(); |
Corentin Chary | afa7c88 | 2011-02-06 13:28:28 +0100 | [diff] [blame] | 699 | |
Corentin Chary | a7ce3f0 | 2011-02-26 10:20:33 +0100 | [diff] [blame] | 700 | if (asus->wlan.rfkill) |
| 701 | rfkill_set_sw_state(asus->wlan.rfkill, blocked); |
Corentin Chary | 279f8f9 | 2011-02-06 13:28:29 +0100 | [diff] [blame] | 702 | |
Lukas Wunner | 125450f | 2018-09-08 09:59:01 +0200 | [diff] [blame] | 703 | if (asus->hotplug_slot.ops) { |
Corentin Chary | afa7c88 | 2011-02-06 13:28:28 +0100 | [diff] [blame] | 704 | bus = pci_find_bus(0, 1); |
| 705 | if (!bus) { |
Joe Perches | 5ad77dc | 2011-03-29 15:21:35 -0700 | [diff] [blame] | 706 | pr_warn("Unable to find PCI bus 1?\n"); |
Corentin Chary | afa7c88 | 2011-02-06 13:28:28 +0100 | [diff] [blame] | 707 | goto out_unlock; |
| 708 | } |
| 709 | |
| 710 | if (pci_bus_read_config_dword(bus, 0, PCI_VENDOR_ID, &l)) { |
| 711 | pr_err("Unable to read PCI config space?\n"); |
| 712 | goto out_unlock; |
| 713 | } |
| 714 | absent = (l == 0xffffffff); |
| 715 | |
| 716 | if (blocked != absent) { |
Joe Perches | 5ad77dc | 2011-03-29 15:21:35 -0700 | [diff] [blame] | 717 | pr_warn("BIOS says wireless lan is %s, " |
| 718 | "but the pci device is %s\n", |
| 719 | blocked ? "blocked" : "unblocked", |
| 720 | absent ? "absent" : "present"); |
| 721 | pr_warn("skipped wireless hotplug as probably " |
| 722 | "inappropriate for this model\n"); |
Corentin Chary | afa7c88 | 2011-02-06 13:28:28 +0100 | [diff] [blame] | 723 | goto out_unlock; |
| 724 | } |
| 725 | |
| 726 | if (!blocked) { |
| 727 | dev = pci_get_slot(bus, 0); |
| 728 | if (dev) { |
| 729 | /* Device already present */ |
| 730 | pci_dev_put(dev); |
| 731 | goto out_unlock; |
| 732 | } |
| 733 | dev = pci_scan_single_device(bus, 0); |
| 734 | if (dev) { |
| 735 | pci_bus_assign_resources(bus); |
Yijing Wang | c893d13 | 2014-05-30 11:01:03 +0800 | [diff] [blame] | 736 | pci_bus_add_device(dev); |
Corentin Chary | afa7c88 | 2011-02-06 13:28:28 +0100 | [diff] [blame] | 737 | } |
| 738 | } else { |
| 739 | dev = pci_get_slot(bus, 0); |
| 740 | if (dev) { |
Yinghai Lu | 210647a | 2012-02-25 13:54:20 -0800 | [diff] [blame] | 741 | pci_stop_and_remove_bus_device(dev); |
Corentin Chary | afa7c88 | 2011-02-06 13:28:28 +0100 | [diff] [blame] | 742 | pci_dev_put(dev); |
| 743 | } |
| 744 | } |
| 745 | } |
| 746 | |
| 747 | out_unlock: |
Rafael J. Wysocki | 8b9ec1d | 2014-01-10 15:27:08 +0100 | [diff] [blame] | 748 | pci_unlock_rescan_remove(); |
Corentin Chary | e12e6d9 | 2011-02-26 10:20:31 +0100 | [diff] [blame] | 749 | mutex_unlock(&asus->hotplug_lock); |
Corentin Chary | afa7c88 | 2011-02-06 13:28:28 +0100 | [diff] [blame] | 750 | } |
| 751 | |
Corentin Chary | e12e6d9 | 2011-02-26 10:20:31 +0100 | [diff] [blame] | 752 | static void asus_rfkill_notify(acpi_handle handle, u32 event, void *data) |
Corentin Chary | afa7c88 | 2011-02-06 13:28:28 +0100 | [diff] [blame] | 753 | { |
Corentin Chary | e12e6d9 | 2011-02-26 10:20:31 +0100 | [diff] [blame] | 754 | struct asus_wmi *asus = data; |
Corentin Chary | afa7c88 | 2011-02-06 13:28:28 +0100 | [diff] [blame] | 755 | |
| 756 | if (event != ACPI_NOTIFY_BUS_CHECK) |
| 757 | return; |
| 758 | |
Corentin Chary | 279f8f9 | 2011-02-06 13:28:29 +0100 | [diff] [blame] | 759 | /* |
Corentin Chary | e12e6d9 | 2011-02-26 10:20:31 +0100 | [diff] [blame] | 760 | * We can't call directly asus_rfkill_hotplug because most |
Corentin Chary | 279f8f9 | 2011-02-06 13:28:29 +0100 | [diff] [blame] | 761 | * of the time WMBC is still being executed and not reetrant. |
| 762 | * There is currently no way to tell ACPICA that we want this |
Corentin Chary | e12e6d9 | 2011-02-26 10:20:31 +0100 | [diff] [blame] | 763 | * method to be serialized, we schedule a asus_rfkill_hotplug |
Corentin Chary | 279f8f9 | 2011-02-06 13:28:29 +0100 | [diff] [blame] | 764 | * call later, in a safer context. |
| 765 | */ |
Corentin Chary | e12e6d9 | 2011-02-26 10:20:31 +0100 | [diff] [blame] | 766 | queue_work(asus->hotplug_workqueue, &asus->hotplug_work); |
Corentin Chary | afa7c88 | 2011-02-06 13:28:28 +0100 | [diff] [blame] | 767 | } |
| 768 | |
Corentin Chary | e12e6d9 | 2011-02-26 10:20:31 +0100 | [diff] [blame] | 769 | static int asus_register_rfkill_notifier(struct asus_wmi *asus, char *node) |
Corentin Chary | afa7c88 | 2011-02-06 13:28:28 +0100 | [diff] [blame] | 770 | { |
| 771 | acpi_status status; |
| 772 | acpi_handle handle; |
| 773 | |
| 774 | status = acpi_get_handle(NULL, node, &handle); |
| 775 | |
| 776 | if (ACPI_SUCCESS(status)) { |
| 777 | status = acpi_install_notify_handler(handle, |
| 778 | ACPI_SYSTEM_NOTIFY, |
Corentin Chary | e12e6d9 | 2011-02-26 10:20:31 +0100 | [diff] [blame] | 779 | asus_rfkill_notify, asus); |
Corentin Chary | afa7c88 | 2011-02-06 13:28:28 +0100 | [diff] [blame] | 780 | if (ACPI_FAILURE(status)) |
Joe Perches | 5ad77dc | 2011-03-29 15:21:35 -0700 | [diff] [blame] | 781 | pr_warn("Failed to register notify on %s\n", node); |
Corentin Chary | afa7c88 | 2011-02-06 13:28:28 +0100 | [diff] [blame] | 782 | } else |
| 783 | return -ENODEV; |
| 784 | |
| 785 | return 0; |
| 786 | } |
| 787 | |
Corentin Chary | e12e6d9 | 2011-02-26 10:20:31 +0100 | [diff] [blame] | 788 | static void asus_unregister_rfkill_notifier(struct asus_wmi *asus, char *node) |
Corentin Chary | afa7c88 | 2011-02-06 13:28:28 +0100 | [diff] [blame] | 789 | { |
| 790 | acpi_status status = AE_OK; |
| 791 | acpi_handle handle; |
| 792 | |
| 793 | status = acpi_get_handle(NULL, node, &handle); |
| 794 | |
| 795 | if (ACPI_SUCCESS(status)) { |
| 796 | status = acpi_remove_notify_handler(handle, |
Corentin Chary | e12e6d9 | 2011-02-26 10:20:31 +0100 | [diff] [blame] | 797 | ACPI_SYSTEM_NOTIFY, |
| 798 | asus_rfkill_notify); |
Corentin Chary | afa7c88 | 2011-02-06 13:28:28 +0100 | [diff] [blame] | 799 | if (ACPI_FAILURE(status)) |
| 800 | pr_err("Error removing rfkill notify handler %s\n", |
Corentin Chary | e12e6d9 | 2011-02-26 10:20:31 +0100 | [diff] [blame] | 801 | node); |
Corentin Chary | afa7c88 | 2011-02-06 13:28:28 +0100 | [diff] [blame] | 802 | } |
| 803 | } |
| 804 | |
Corentin Chary | e12e6d9 | 2011-02-26 10:20:31 +0100 | [diff] [blame] | 805 | static int asus_get_adapter_status(struct hotplug_slot *hotplug_slot, |
| 806 | u8 *value) |
Corentin Chary | afa7c88 | 2011-02-06 13:28:28 +0100 | [diff] [blame] | 807 | { |
Lukas Wunner | 125450f | 2018-09-08 09:59:01 +0200 | [diff] [blame] | 808 | struct asus_wmi *asus = container_of(hotplug_slot, |
| 809 | struct asus_wmi, hotplug_slot); |
Corentin Chary | 1d070f8 | 2011-02-26 10:20:36 +0100 | [diff] [blame] | 810 | int result = asus_wmi_get_devstate_simple(asus, ASUS_WMI_DEVID_WLAN); |
Corentin Chary | afa7c88 | 2011-02-06 13:28:28 +0100 | [diff] [blame] | 811 | |
Corentin Chary | 5c95638 | 2011-02-06 13:28:31 +0100 | [diff] [blame] | 812 | if (result < 0) |
| 813 | return result; |
Corentin Chary | afa7c88 | 2011-02-06 13:28:28 +0100 | [diff] [blame] | 814 | |
Corentin Chary | 5c95638 | 2011-02-06 13:28:31 +0100 | [diff] [blame] | 815 | *value = !!result; |
Corentin Chary | afa7c88 | 2011-02-06 13:28:28 +0100 | [diff] [blame] | 816 | return 0; |
| 817 | } |
| 818 | |
Lukas Wunner | 81c4b5b | 2018-09-08 09:59:01 +0200 | [diff] [blame] | 819 | static const struct hotplug_slot_ops asus_hotplug_slot_ops = { |
Corentin Chary | e12e6d9 | 2011-02-26 10:20:31 +0100 | [diff] [blame] | 820 | .get_adapter_status = asus_get_adapter_status, |
| 821 | .get_power_status = asus_get_adapter_status, |
Corentin Chary | afa7c88 | 2011-02-06 13:28:28 +0100 | [diff] [blame] | 822 | }; |
| 823 | |
Corentin Chary | e12e6d9 | 2011-02-26 10:20:31 +0100 | [diff] [blame] | 824 | static void asus_hotplug_work(struct work_struct *work) |
Corentin Chary | 279f8f9 | 2011-02-06 13:28:29 +0100 | [diff] [blame] | 825 | { |
Corentin Chary | e12e6d9 | 2011-02-26 10:20:31 +0100 | [diff] [blame] | 826 | struct asus_wmi *asus; |
Corentin Chary | 279f8f9 | 2011-02-06 13:28:29 +0100 | [diff] [blame] | 827 | |
Corentin Chary | e12e6d9 | 2011-02-26 10:20:31 +0100 | [diff] [blame] | 828 | asus = container_of(work, struct asus_wmi, hotplug_work); |
| 829 | asus_rfkill_hotplug(asus); |
Corentin Chary | 279f8f9 | 2011-02-06 13:28:29 +0100 | [diff] [blame] | 830 | } |
| 831 | |
Corentin Chary | e12e6d9 | 2011-02-26 10:20:31 +0100 | [diff] [blame] | 832 | static int asus_setup_pci_hotplug(struct asus_wmi *asus) |
Corentin Chary | afa7c88 | 2011-02-06 13:28:28 +0100 | [diff] [blame] | 833 | { |
| 834 | int ret = -ENOMEM; |
| 835 | struct pci_bus *bus = pci_find_bus(0, 1); |
| 836 | |
| 837 | if (!bus) { |
| 838 | pr_err("Unable to find wifi PCI bus\n"); |
| 839 | return -ENODEV; |
| 840 | } |
| 841 | |
Corentin Chary | e12e6d9 | 2011-02-26 10:20:31 +0100 | [diff] [blame] | 842 | asus->hotplug_workqueue = |
| 843 | create_singlethread_workqueue("hotplug_workqueue"); |
| 844 | if (!asus->hotplug_workqueue) |
Corentin Chary | 279f8f9 | 2011-02-06 13:28:29 +0100 | [diff] [blame] | 845 | goto error_workqueue; |
| 846 | |
Corentin Chary | e12e6d9 | 2011-02-26 10:20:31 +0100 | [diff] [blame] | 847 | INIT_WORK(&asus->hotplug_work, asus_hotplug_work); |
Corentin Chary | 279f8f9 | 2011-02-06 13:28:29 +0100 | [diff] [blame] | 848 | |
Lukas Wunner | 125450f | 2018-09-08 09:59:01 +0200 | [diff] [blame] | 849 | asus->hotplug_slot.ops = &asus_hotplug_slot_ops; |
Corentin Chary | afa7c88 | 2011-02-06 13:28:28 +0100 | [diff] [blame] | 850 | |
Lukas Wunner | 125450f | 2018-09-08 09:59:01 +0200 | [diff] [blame] | 851 | ret = pci_hp_register(&asus->hotplug_slot, bus, 0, "asus-wifi"); |
Corentin Chary | afa7c88 | 2011-02-06 13:28:28 +0100 | [diff] [blame] | 852 | if (ret) { |
| 853 | pr_err("Unable to register hotplug slot - %d\n", ret); |
| 854 | goto error_register; |
| 855 | } |
| 856 | |
| 857 | return 0; |
| 858 | |
| 859 | error_register: |
Lukas Wunner | 125450f | 2018-09-08 09:59:01 +0200 | [diff] [blame] | 860 | asus->hotplug_slot.ops = NULL; |
Corentin Chary | e12e6d9 | 2011-02-26 10:20:31 +0100 | [diff] [blame] | 861 | destroy_workqueue(asus->hotplug_workqueue); |
Corentin Chary | 279f8f9 | 2011-02-06 13:28:29 +0100 | [diff] [blame] | 862 | error_workqueue: |
Corentin Chary | afa7c88 | 2011-02-06 13:28:28 +0100 | [diff] [blame] | 863 | return ret; |
| 864 | } |
| 865 | |
| 866 | /* |
Corentin Chary | ba48fdb | 2010-11-29 08:14:07 +0100 | [diff] [blame] | 867 | * Rfkill devices |
| 868 | */ |
Corentin Chary | e12e6d9 | 2011-02-26 10:20:31 +0100 | [diff] [blame] | 869 | static int asus_rfkill_set(void *data, bool blocked) |
Corentin Chary | ba48fdb | 2010-11-29 08:14:07 +0100 | [diff] [blame] | 870 | { |
Corentin Chary | a7ce3f0 | 2011-02-26 10:20:33 +0100 | [diff] [blame] | 871 | struct asus_rfkill *priv = data; |
Corentin Chary | ba48fdb | 2010-11-29 08:14:07 +0100 | [diff] [blame] | 872 | u32 ctrl_param = !blocked; |
AceLan Kao | a50bd12 | 2012-07-26 17:13:31 +0800 | [diff] [blame] | 873 | u32 dev_id = priv->dev_id; |
Corentin Chary | ba48fdb | 2010-11-29 08:14:07 +0100 | [diff] [blame] | 874 | |
AceLan Kao | a50bd12 | 2012-07-26 17:13:31 +0800 | [diff] [blame] | 875 | /* |
| 876 | * If the user bit is set, BIOS can't set and record the wlan status, |
| 877 | * it will report the value read from id ASUS_WMI_DEVID_WLAN_LED |
| 878 | * while we query the wlan status through WMI(ASUS_WMI_DEVID_WLAN). |
| 879 | * So, we have to record wlan status in id ASUS_WMI_DEVID_WLAN_LED |
| 880 | * while setting the wlan status through WMI. |
| 881 | * This is also the behavior that windows app will do. |
| 882 | */ |
| 883 | if ((dev_id == ASUS_WMI_DEVID_WLAN) && |
| 884 | priv->asus->driver->wlan_ctrl_by_user) |
| 885 | dev_id = ASUS_WMI_DEVID_WLAN_LED; |
| 886 | |
| 887 | return asus_wmi_set_devstate(dev_id, ctrl_param, NULL); |
Corentin Chary | ba48fdb | 2010-11-29 08:14:07 +0100 | [diff] [blame] | 888 | } |
| 889 | |
Corentin Chary | e12e6d9 | 2011-02-26 10:20:31 +0100 | [diff] [blame] | 890 | static void asus_rfkill_query(struct rfkill *rfkill, void *data) |
Corentin Chary | ba48fdb | 2010-11-29 08:14:07 +0100 | [diff] [blame] | 891 | { |
Corentin Chary | a7ce3f0 | 2011-02-26 10:20:33 +0100 | [diff] [blame] | 892 | struct asus_rfkill *priv = data; |
Corentin Chary | 5c95638 | 2011-02-06 13:28:31 +0100 | [diff] [blame] | 893 | int result; |
Corentin Chary | ba48fdb | 2010-11-29 08:14:07 +0100 | [diff] [blame] | 894 | |
Corentin Chary | 1d070f8 | 2011-02-26 10:20:36 +0100 | [diff] [blame] | 895 | result = asus_wmi_get_devstate_simple(priv->asus, priv->dev_id); |
Corentin Chary | ba48fdb | 2010-11-29 08:14:07 +0100 | [diff] [blame] | 896 | |
Corentin Chary | 5c95638 | 2011-02-06 13:28:31 +0100 | [diff] [blame] | 897 | if (result < 0) |
Corentin Chary | e12e6d9 | 2011-02-26 10:20:31 +0100 | [diff] [blame] | 898 | return; |
Corentin Chary | ba48fdb | 2010-11-29 08:14:07 +0100 | [diff] [blame] | 899 | |
Corentin Chary | a7ce3f0 | 2011-02-26 10:20:33 +0100 | [diff] [blame] | 900 | rfkill_set_sw_state(priv->rfkill, !result); |
Corentin Chary | ba48fdb | 2010-11-29 08:14:07 +0100 | [diff] [blame] | 901 | } |
| 902 | |
Corentin Chary | e12e6d9 | 2011-02-26 10:20:31 +0100 | [diff] [blame] | 903 | static int asus_rfkill_wlan_set(void *data, bool blocked) |
Corentin Chary | 279f8f9 | 2011-02-06 13:28:29 +0100 | [diff] [blame] | 904 | { |
Corentin Chary | a7ce3f0 | 2011-02-26 10:20:33 +0100 | [diff] [blame] | 905 | struct asus_rfkill *priv = data; |
| 906 | struct asus_wmi *asus = priv->asus; |
Corentin Chary | 279f8f9 | 2011-02-06 13:28:29 +0100 | [diff] [blame] | 907 | int ret; |
| 908 | |
| 909 | /* |
| 910 | * This handler is enabled only if hotplug is enabled. |
Corentin Chary | e12e6d9 | 2011-02-26 10:20:31 +0100 | [diff] [blame] | 911 | * In this case, the asus_wmi_set_devstate() will |
Corentin Chary | 279f8f9 | 2011-02-06 13:28:29 +0100 | [diff] [blame] | 912 | * trigger a wmi notification and we need to wait |
| 913 | * this call to finish before being able to call |
| 914 | * any wmi method |
| 915 | */ |
Corentin Chary | e12e6d9 | 2011-02-26 10:20:31 +0100 | [diff] [blame] | 916 | mutex_lock(&asus->wmi_lock); |
Corentin Chary | a7ce3f0 | 2011-02-26 10:20:33 +0100 | [diff] [blame] | 917 | ret = asus_rfkill_set(data, blocked); |
Corentin Chary | e12e6d9 | 2011-02-26 10:20:31 +0100 | [diff] [blame] | 918 | mutex_unlock(&asus->wmi_lock); |
Corentin Chary | 279f8f9 | 2011-02-06 13:28:29 +0100 | [diff] [blame] | 919 | return ret; |
| 920 | } |
| 921 | |
Corentin Chary | e12e6d9 | 2011-02-26 10:20:31 +0100 | [diff] [blame] | 922 | static const struct rfkill_ops asus_rfkill_wlan_ops = { |
| 923 | .set_block = asus_rfkill_wlan_set, |
Corentin Chary | a7ce3f0 | 2011-02-26 10:20:33 +0100 | [diff] [blame] | 924 | .query = asus_rfkill_query, |
Corentin Chary | 279f8f9 | 2011-02-06 13:28:29 +0100 | [diff] [blame] | 925 | }; |
| 926 | |
Corentin Chary | e12e6d9 | 2011-02-26 10:20:31 +0100 | [diff] [blame] | 927 | static const struct rfkill_ops asus_rfkill_ops = { |
| 928 | .set_block = asus_rfkill_set, |
| 929 | .query = asus_rfkill_query, |
Corentin Chary | ba48fdb | 2010-11-29 08:14:07 +0100 | [diff] [blame] | 930 | }; |
| 931 | |
Corentin Chary | e12e6d9 | 2011-02-26 10:20:31 +0100 | [diff] [blame] | 932 | static int asus_new_rfkill(struct asus_wmi *asus, |
Corentin Chary | a7ce3f0 | 2011-02-26 10:20:33 +0100 | [diff] [blame] | 933 | struct asus_rfkill *arfkill, |
Corentin Chary | e12e6d9 | 2011-02-26 10:20:31 +0100 | [diff] [blame] | 934 | const char *name, enum rfkill_type type, int dev_id) |
Corentin Chary | ba48fdb | 2010-11-29 08:14:07 +0100 | [diff] [blame] | 935 | { |
Corentin Chary | 1d070f8 | 2011-02-26 10:20:36 +0100 | [diff] [blame] | 936 | int result = asus_wmi_get_devstate_simple(asus, dev_id); |
Corentin Chary | a7ce3f0 | 2011-02-26 10:20:33 +0100 | [diff] [blame] | 937 | struct rfkill **rfkill = &arfkill->rfkill; |
Corentin Chary | ba48fdb | 2010-11-29 08:14:07 +0100 | [diff] [blame] | 938 | |
Corentin Chary | 5c95638 | 2011-02-06 13:28:31 +0100 | [diff] [blame] | 939 | if (result < 0) |
| 940 | return result; |
Corentin Chary | ba48fdb | 2010-11-29 08:14:07 +0100 | [diff] [blame] | 941 | |
Corentin Chary | a7ce3f0 | 2011-02-26 10:20:33 +0100 | [diff] [blame] | 942 | arfkill->dev_id = dev_id; |
| 943 | arfkill->asus = asus; |
| 944 | |
AceLan Kao | c87992d | 2012-03-20 09:53:08 +0100 | [diff] [blame] | 945 | if (dev_id == ASUS_WMI_DEVID_WLAN && |
| 946 | asus->driver->quirks->hotplug_wireless) |
Corentin Chary | e12e6d9 | 2011-02-26 10:20:31 +0100 | [diff] [blame] | 947 | *rfkill = rfkill_alloc(name, &asus->platform_device->dev, type, |
Corentin Chary | a7ce3f0 | 2011-02-26 10:20:33 +0100 | [diff] [blame] | 948 | &asus_rfkill_wlan_ops, arfkill); |
Corentin Chary | 279f8f9 | 2011-02-06 13:28:29 +0100 | [diff] [blame] | 949 | else |
Corentin Chary | e12e6d9 | 2011-02-26 10:20:31 +0100 | [diff] [blame] | 950 | *rfkill = rfkill_alloc(name, &asus->platform_device->dev, type, |
Corentin Chary | a7ce3f0 | 2011-02-26 10:20:33 +0100 | [diff] [blame] | 951 | &asus_rfkill_ops, arfkill); |
Corentin Chary | ba48fdb | 2010-11-29 08:14:07 +0100 | [diff] [blame] | 952 | |
| 953 | if (!*rfkill) |
| 954 | return -EINVAL; |
| 955 | |
AceLan Kao | e8f56c8 | 2013-05-30 10:31:50 +0800 | [diff] [blame] | 956 | if ((dev_id == ASUS_WMI_DEVID_WLAN) && |
AceLan Kao | f515623 | 2014-07-09 16:18:18 +0800 | [diff] [blame] | 957 | (asus->driver->quirks->wapf > 0)) |
AceLan Kao | 6cae06e | 2012-07-27 16:51:59 +0800 | [diff] [blame] | 958 | rfkill_set_led_trigger_name(*rfkill, "asus-wlan"); |
| 959 | |
Corentin Chary | 5c95638 | 2011-02-06 13:28:31 +0100 | [diff] [blame] | 960 | rfkill_init_sw_state(*rfkill, !result); |
Corentin Chary | ba48fdb | 2010-11-29 08:14:07 +0100 | [diff] [blame] | 961 | result = rfkill_register(*rfkill); |
| 962 | if (result) { |
| 963 | rfkill_destroy(*rfkill); |
| 964 | *rfkill = NULL; |
| 965 | return result; |
| 966 | } |
| 967 | return 0; |
| 968 | } |
| 969 | |
Corentin Chary | e12e6d9 | 2011-02-26 10:20:31 +0100 | [diff] [blame] | 970 | static void asus_wmi_rfkill_exit(struct asus_wmi *asus) |
Corentin Chary | ba48fdb | 2010-11-29 08:14:07 +0100 | [diff] [blame] | 971 | { |
João Paulo Rechi Vita | cf48bf9 | 2018-05-22 14:30:15 -0700 | [diff] [blame] | 972 | if (asus->driver->wlan_ctrl_by_user && ashs_present()) |
| 973 | return; |
| 974 | |
Corentin Chary | e12e6d9 | 2011-02-26 10:20:31 +0100 | [diff] [blame] | 975 | asus_unregister_rfkill_notifier(asus, "\\_SB.PCI0.P0P5"); |
| 976 | asus_unregister_rfkill_notifier(asus, "\\_SB.PCI0.P0P6"); |
| 977 | asus_unregister_rfkill_notifier(asus, "\\_SB.PCI0.P0P7"); |
Corentin Chary | a7ce3f0 | 2011-02-26 10:20:33 +0100 | [diff] [blame] | 978 | if (asus->wlan.rfkill) { |
| 979 | rfkill_unregister(asus->wlan.rfkill); |
| 980 | rfkill_destroy(asus->wlan.rfkill); |
| 981 | asus->wlan.rfkill = NULL; |
Corentin Chary | ba48fdb | 2010-11-29 08:14:07 +0100 | [diff] [blame] | 982 | } |
Corentin Chary | afa7c88 | 2011-02-06 13:28:28 +0100 | [diff] [blame] | 983 | /* |
| 984 | * Refresh pci hotplug in case the rfkill state was changed after |
Corentin Chary | e12e6d9 | 2011-02-26 10:20:31 +0100 | [diff] [blame] | 985 | * asus_unregister_rfkill_notifier() |
Corentin Chary | afa7c88 | 2011-02-06 13:28:28 +0100 | [diff] [blame] | 986 | */ |
Corentin Chary | e12e6d9 | 2011-02-26 10:20:31 +0100 | [diff] [blame] | 987 | asus_rfkill_hotplug(asus); |
Lukas Wunner | 125450f | 2018-09-08 09:59:01 +0200 | [diff] [blame] | 988 | if (asus->hotplug_slot.ops) |
| 989 | pci_hp_deregister(&asus->hotplug_slot); |
Corentin Chary | e12e6d9 | 2011-02-26 10:20:31 +0100 | [diff] [blame] | 990 | if (asus->hotplug_workqueue) |
| 991 | destroy_workqueue(asus->hotplug_workqueue); |
Corentin Chary | afa7c88 | 2011-02-06 13:28:28 +0100 | [diff] [blame] | 992 | |
Corentin Chary | a7ce3f0 | 2011-02-26 10:20:33 +0100 | [diff] [blame] | 993 | if (asus->bluetooth.rfkill) { |
| 994 | rfkill_unregister(asus->bluetooth.rfkill); |
| 995 | rfkill_destroy(asus->bluetooth.rfkill); |
| 996 | asus->bluetooth.rfkill = NULL; |
Corentin Chary | ba48fdb | 2010-11-29 08:14:07 +0100 | [diff] [blame] | 997 | } |
Corentin Chary | a7ce3f0 | 2011-02-26 10:20:33 +0100 | [diff] [blame] | 998 | if (asus->wimax.rfkill) { |
| 999 | rfkill_unregister(asus->wimax.rfkill); |
| 1000 | rfkill_destroy(asus->wimax.rfkill); |
| 1001 | asus->wimax.rfkill = NULL; |
Corentin Chary | 2e9e159 | 2011-02-06 13:28:37 +0100 | [diff] [blame] | 1002 | } |
Corentin Chary | a7ce3f0 | 2011-02-26 10:20:33 +0100 | [diff] [blame] | 1003 | if (asus->wwan3g.rfkill) { |
| 1004 | rfkill_unregister(asus->wwan3g.rfkill); |
| 1005 | rfkill_destroy(asus->wwan3g.rfkill); |
| 1006 | asus->wwan3g.rfkill = NULL; |
Corentin Chary | ba48fdb | 2010-11-29 08:14:07 +0100 | [diff] [blame] | 1007 | } |
Corentin Chary | 43be8bd | 2011-07-01 11:34:40 +0200 | [diff] [blame] | 1008 | if (asus->gps.rfkill) { |
| 1009 | rfkill_unregister(asus->gps.rfkill); |
| 1010 | rfkill_destroy(asus->gps.rfkill); |
| 1011 | asus->gps.rfkill = NULL; |
| 1012 | } |
Corentin Chary | a912d32 | 2011-07-01 11:34:41 +0200 | [diff] [blame] | 1013 | if (asus->uwb.rfkill) { |
| 1014 | rfkill_unregister(asus->uwb.rfkill); |
| 1015 | rfkill_destroy(asus->uwb.rfkill); |
| 1016 | asus->uwb.rfkill = NULL; |
| 1017 | } |
Corentin Chary | ba48fdb | 2010-11-29 08:14:07 +0100 | [diff] [blame] | 1018 | } |
| 1019 | |
Corentin Chary | e12e6d9 | 2011-02-26 10:20:31 +0100 | [diff] [blame] | 1020 | static int asus_wmi_rfkill_init(struct asus_wmi *asus) |
Corentin Chary | ba48fdb | 2010-11-29 08:14:07 +0100 | [diff] [blame] | 1021 | { |
| 1022 | int result = 0; |
| 1023 | |
Corentin Chary | e12e6d9 | 2011-02-26 10:20:31 +0100 | [diff] [blame] | 1024 | mutex_init(&asus->hotplug_lock); |
| 1025 | mutex_init(&asus->wmi_lock); |
Corentin Chary | afa7c88 | 2011-02-06 13:28:28 +0100 | [diff] [blame] | 1026 | |
Corentin Chary | a7ce3f0 | 2011-02-26 10:20:33 +0100 | [diff] [blame] | 1027 | result = asus_new_rfkill(asus, &asus->wlan, "asus-wlan", |
| 1028 | RFKILL_TYPE_WLAN, ASUS_WMI_DEVID_WLAN); |
Corentin Chary | ba48fdb | 2010-11-29 08:14:07 +0100 | [diff] [blame] | 1029 | |
| 1030 | if (result && result != -ENODEV) |
| 1031 | goto exit; |
| 1032 | |
Corentin Chary | a7ce3f0 | 2011-02-26 10:20:33 +0100 | [diff] [blame] | 1033 | result = asus_new_rfkill(asus, &asus->bluetooth, |
Corentin Chary | e12e6d9 | 2011-02-26 10:20:31 +0100 | [diff] [blame] | 1034 | "asus-bluetooth", RFKILL_TYPE_BLUETOOTH, |
| 1035 | ASUS_WMI_DEVID_BLUETOOTH); |
Corentin Chary | ba48fdb | 2010-11-29 08:14:07 +0100 | [diff] [blame] | 1036 | |
| 1037 | if (result && result != -ENODEV) |
| 1038 | goto exit; |
| 1039 | |
Corentin Chary | a7ce3f0 | 2011-02-26 10:20:33 +0100 | [diff] [blame] | 1040 | result = asus_new_rfkill(asus, &asus->wimax, "asus-wimax", |
| 1041 | RFKILL_TYPE_WIMAX, ASUS_WMI_DEVID_WIMAX); |
Corentin Chary | 2e9e159 | 2011-02-06 13:28:37 +0100 | [diff] [blame] | 1042 | |
| 1043 | if (result && result != -ENODEV) |
| 1044 | goto exit; |
| 1045 | |
Corentin Chary | a7ce3f0 | 2011-02-26 10:20:33 +0100 | [diff] [blame] | 1046 | result = asus_new_rfkill(asus, &asus->wwan3g, "asus-wwan3g", |
| 1047 | RFKILL_TYPE_WWAN, ASUS_WMI_DEVID_WWAN3G); |
Corentin Chary | ba48fdb | 2010-11-29 08:14:07 +0100 | [diff] [blame] | 1048 | |
| 1049 | if (result && result != -ENODEV) |
| 1050 | goto exit; |
| 1051 | |
Corentin Chary | 43be8bd | 2011-07-01 11:34:40 +0200 | [diff] [blame] | 1052 | result = asus_new_rfkill(asus, &asus->gps, "asus-gps", |
| 1053 | RFKILL_TYPE_GPS, ASUS_WMI_DEVID_GPS); |
| 1054 | |
| 1055 | if (result && result != -ENODEV) |
| 1056 | goto exit; |
| 1057 | |
Corentin Chary | a912d32 | 2011-07-01 11:34:41 +0200 | [diff] [blame] | 1058 | result = asus_new_rfkill(asus, &asus->uwb, "asus-uwb", |
| 1059 | RFKILL_TYPE_UWB, ASUS_WMI_DEVID_UWB); |
| 1060 | |
| 1061 | if (result && result != -ENODEV) |
| 1062 | goto exit; |
| 1063 | |
AceLan Kao | c87992d | 2012-03-20 09:53:08 +0100 | [diff] [blame] | 1064 | if (!asus->driver->quirks->hotplug_wireless) |
Corentin Chary | c14d4b8 | 2011-02-06 13:28:40 +0100 | [diff] [blame] | 1065 | goto exit; |
| 1066 | |
Corentin Chary | e12e6d9 | 2011-02-26 10:20:31 +0100 | [diff] [blame] | 1067 | result = asus_setup_pci_hotplug(asus); |
Corentin Chary | afa7c88 | 2011-02-06 13:28:28 +0100 | [diff] [blame] | 1068 | /* |
| 1069 | * If we get -EBUSY then something else is handling the PCI hotplug - |
| 1070 | * don't fail in this case |
| 1071 | */ |
| 1072 | if (result == -EBUSY) |
| 1073 | result = 0; |
| 1074 | |
Corentin Chary | e12e6d9 | 2011-02-26 10:20:31 +0100 | [diff] [blame] | 1075 | asus_register_rfkill_notifier(asus, "\\_SB.PCI0.P0P5"); |
| 1076 | asus_register_rfkill_notifier(asus, "\\_SB.PCI0.P0P6"); |
| 1077 | asus_register_rfkill_notifier(asus, "\\_SB.PCI0.P0P7"); |
Corentin Chary | afa7c88 | 2011-02-06 13:28:28 +0100 | [diff] [blame] | 1078 | /* |
| 1079 | * Refresh pci hotplug in case the rfkill state was changed during |
| 1080 | * setup. |
| 1081 | */ |
Corentin Chary | e12e6d9 | 2011-02-26 10:20:31 +0100 | [diff] [blame] | 1082 | asus_rfkill_hotplug(asus); |
Corentin Chary | afa7c88 | 2011-02-06 13:28:28 +0100 | [diff] [blame] | 1083 | |
Corentin Chary | ba48fdb | 2010-11-29 08:14:07 +0100 | [diff] [blame] | 1084 | exit: |
| 1085 | if (result && result != -ENODEV) |
Corentin Chary | e12e6d9 | 2011-02-26 10:20:31 +0100 | [diff] [blame] | 1086 | asus_wmi_rfkill_exit(asus); |
Corentin Chary | ba48fdb | 2010-11-29 08:14:07 +0100 | [diff] [blame] | 1087 | |
| 1088 | if (result == -ENODEV) |
| 1089 | result = 0; |
| 1090 | |
| 1091 | return result; |
| 1092 | } |
| 1093 | |
Yurii Pavlovskyi | 54a3121 | 2019-05-14 21:04:48 +0200 | [diff] [blame] | 1094 | /* Quirks *********************************************************************/ |
| 1095 | |
Kai-Chuan Hsieh | 8023eff | 2016-09-01 23:55:55 +0800 | [diff] [blame] | 1096 | static void asus_wmi_set_xusb2pr(struct asus_wmi *asus) |
| 1097 | { |
| 1098 | struct pci_dev *xhci_pdev; |
| 1099 | u32 orig_ports_available; |
| 1100 | u32 ports_available = asus->driver->quirks->xusb2pr; |
| 1101 | |
| 1102 | xhci_pdev = pci_get_device(PCI_VENDOR_ID_INTEL, |
| 1103 | PCI_DEVICE_ID_INTEL_LYNXPOINT_LP_XHCI, |
| 1104 | NULL); |
| 1105 | |
| 1106 | if (!xhci_pdev) |
| 1107 | return; |
| 1108 | |
| 1109 | pci_read_config_dword(xhci_pdev, USB_INTEL_XUSB2PR, |
| 1110 | &orig_ports_available); |
| 1111 | |
| 1112 | pci_write_config_dword(xhci_pdev, USB_INTEL_XUSB2PR, |
| 1113 | cpu_to_le32(ports_available)); |
| 1114 | |
| 1115 | pr_info("set USB_INTEL_XUSB2PR old: 0x%04x, new: 0x%04x\n", |
| 1116 | orig_ports_available, ports_available); |
| 1117 | } |
| 1118 | |
Corentin Chary | ba48fdb | 2010-11-29 08:14:07 +0100 | [diff] [blame] | 1119 | /* |
Oleksij Rempel | e9b6151 | 2017-04-28 16:19:49 +0200 | [diff] [blame] | 1120 | * Some devices dont support or have borcken get_als method |
| 1121 | * but still support set method. |
| 1122 | */ |
| 1123 | static void asus_wmi_set_als(void) |
| 1124 | { |
| 1125 | asus_wmi_set_devstate(ASUS_WMI_DEVID_ALS_ENABLE, 1, NULL); |
| 1126 | } |
| 1127 | |
Yurii Pavlovskyi | 54a3121 | 2019-05-14 21:04:48 +0200 | [diff] [blame] | 1128 | /* Hwmon device ***************************************************************/ |
| 1129 | |
Daniel Drake | 2889ffc | 2019-07-29 16:27:37 +0800 | [diff] [blame] | 1130 | static int asus_agfn_fan_speed_read(struct asus_wmi *asus, int fan, |
Kast Bernd | 53e755c | 2015-05-13 16:24:16 +0200 | [diff] [blame] | 1131 | int *speed) |
| 1132 | { |
Daniel Drake | 2889ffc | 2019-07-29 16:27:37 +0800 | [diff] [blame] | 1133 | struct agfn_fan_args args = { |
Kast Bernd | 53e755c | 2015-05-13 16:24:16 +0200 | [diff] [blame] | 1134 | .agfn.len = sizeof(args), |
| 1135 | .agfn.mfun = ASUS_FAN_MFUN, |
| 1136 | .agfn.sfun = ASUS_FAN_SFUN_READ, |
| 1137 | .fan = fan, |
| 1138 | .speed = 0, |
| 1139 | }; |
| 1140 | struct acpi_buffer input = { (acpi_size) sizeof(args), &args }; |
| 1141 | int status; |
| 1142 | |
| 1143 | if (fan != 1) |
| 1144 | return -EINVAL; |
| 1145 | |
| 1146 | status = asus_wmi_evaluate_method_agfn(input); |
| 1147 | |
| 1148 | if (status || args.agfn.err) |
| 1149 | return -ENXIO; |
| 1150 | |
| 1151 | if (speed) |
| 1152 | *speed = args.speed; |
| 1153 | |
| 1154 | return 0; |
| 1155 | } |
| 1156 | |
Daniel Drake | 2889ffc | 2019-07-29 16:27:37 +0800 | [diff] [blame] | 1157 | static int asus_agfn_fan_speed_write(struct asus_wmi *asus, int fan, |
Kast Bernd | 53e755c | 2015-05-13 16:24:16 +0200 | [diff] [blame] | 1158 | int *speed) |
| 1159 | { |
Daniel Drake | 2889ffc | 2019-07-29 16:27:37 +0800 | [diff] [blame] | 1160 | struct agfn_fan_args args = { |
Kast Bernd | 53e755c | 2015-05-13 16:24:16 +0200 | [diff] [blame] | 1161 | .agfn.len = sizeof(args), |
| 1162 | .agfn.mfun = ASUS_FAN_MFUN, |
| 1163 | .agfn.sfun = ASUS_FAN_SFUN_WRITE, |
| 1164 | .fan = fan, |
| 1165 | .speed = speed ? *speed : 0, |
| 1166 | }; |
| 1167 | struct acpi_buffer input = { (acpi_size) sizeof(args), &args }; |
| 1168 | int status; |
| 1169 | |
| 1170 | /* 1: for setting 1st fan's speed 0: setting auto mode */ |
| 1171 | if (fan != 1 && fan != 0) |
| 1172 | return -EINVAL; |
| 1173 | |
| 1174 | status = asus_wmi_evaluate_method_agfn(input); |
| 1175 | |
| 1176 | if (status || args.agfn.err) |
| 1177 | return -ENXIO; |
| 1178 | |
| 1179 | if (speed && fan == 1) |
Daniel Drake | 2889ffc | 2019-07-29 16:27:37 +0800 | [diff] [blame] | 1180 | asus->agfn_pwm = *speed; |
Kast Bernd | 53e755c | 2015-05-13 16:24:16 +0200 | [diff] [blame] | 1181 | |
| 1182 | return 0; |
| 1183 | } |
| 1184 | |
| 1185 | /* |
| 1186 | * Check if we can read the speed of one fan. If true we assume we can also |
| 1187 | * control it. |
| 1188 | */ |
Daniel Drake | 2889ffc | 2019-07-29 16:27:37 +0800 | [diff] [blame] | 1189 | static bool asus_wmi_has_agfn_fan(struct asus_wmi *asus) |
Kast Bernd | 53e755c | 2015-05-13 16:24:16 +0200 | [diff] [blame] | 1190 | { |
| 1191 | int status; |
Daniel Drake | 2889ffc | 2019-07-29 16:27:37 +0800 | [diff] [blame] | 1192 | int speed; |
| 1193 | u32 value; |
Kast Bernd | 53e755c | 2015-05-13 16:24:16 +0200 | [diff] [blame] | 1194 | |
Daniel Drake | 2889ffc | 2019-07-29 16:27:37 +0800 | [diff] [blame] | 1195 | status = asus_agfn_fan_speed_read(asus, 1, &speed); |
| 1196 | if (status != 0) |
| 1197 | return false; |
Kast Bernd | 53e755c | 2015-05-13 16:24:16 +0200 | [diff] [blame] | 1198 | |
Daniel Drake | 2889ffc | 2019-07-29 16:27:37 +0800 | [diff] [blame] | 1199 | status = asus_wmi_get_devstate(asus, ASUS_WMI_DEVID_FAN_CTRL, &value); |
| 1200 | if (status != 0) |
| 1201 | return false; |
Kast Bernd | 53e755c | 2015-05-13 16:24:16 +0200 | [diff] [blame] | 1202 | |
Daniel Drake | 2889ffc | 2019-07-29 16:27:37 +0800 | [diff] [blame] | 1203 | /* |
| 1204 | * We need to find a better way, probably using sfun, |
| 1205 | * bits or spec ... |
| 1206 | * Currently we disable it if: |
| 1207 | * - ASUS_WMI_UNSUPPORTED_METHOD is returned |
| 1208 | * - reverved bits are non-zero |
| 1209 | * - sfun and presence bit are not set |
| 1210 | */ |
| 1211 | return !(value == ASUS_WMI_UNSUPPORTED_METHOD || value & 0xFFF80000 |
| 1212 | || (!asus->sfun && !(value & ASUS_WMI_DSTS_PRESENCE_BIT))); |
Kast Bernd | 53e755c | 2015-05-13 16:24:16 +0200 | [diff] [blame] | 1213 | } |
| 1214 | |
Daniel Drake | 2889ffc | 2019-07-29 16:27:37 +0800 | [diff] [blame] | 1215 | static int asus_fan_set_auto(struct asus_wmi *asus) |
Kast Bernd | 53e755c | 2015-05-13 16:24:16 +0200 | [diff] [blame] | 1216 | { |
| 1217 | int status; |
Daniel Drake | e3168b8 | 2019-07-29 16:27:39 +0800 | [diff] [blame] | 1218 | u32 retval; |
Kast Bernd | 53e755c | 2015-05-13 16:24:16 +0200 | [diff] [blame] | 1219 | |
Daniel Drake | e3168b8 | 2019-07-29 16:27:39 +0800 | [diff] [blame] | 1220 | switch (asus->fan_type) { |
| 1221 | case FAN_TYPE_SPEC83: |
| 1222 | status = asus_wmi_set_devstate(ASUS_WMI_DEVID_CPU_FAN_CTRL, |
| 1223 | 0, &retval); |
| 1224 | if (status) |
| 1225 | return status; |
| 1226 | |
| 1227 | if (retval != 1) |
| 1228 | return -EIO; |
| 1229 | break; |
| 1230 | |
| 1231 | case FAN_TYPE_AGFN: |
| 1232 | status = asus_agfn_fan_speed_write(asus, 0, NULL); |
| 1233 | if (status) |
| 1234 | return -ENXIO; |
| 1235 | break; |
| 1236 | |
| 1237 | default: |
Kast Bernd | 53e755c | 2015-05-13 16:24:16 +0200 | [diff] [blame] | 1238 | return -ENXIO; |
Daniel Drake | e3168b8 | 2019-07-29 16:27:39 +0800 | [diff] [blame] | 1239 | } |
| 1240 | |
Kast Bernd | 53e755c | 2015-05-13 16:24:16 +0200 | [diff] [blame] | 1241 | |
Kast Bernd | 53e755c | 2015-05-13 16:24:16 +0200 | [diff] [blame] | 1242 | return 0; |
| 1243 | } |
| 1244 | |
Kast Bernd | 53e755c | 2015-05-13 16:24:16 +0200 | [diff] [blame] | 1245 | static ssize_t pwm1_show(struct device *dev, |
Corentin Chary | 49979d0 | 2011-07-01 11:34:26 +0200 | [diff] [blame] | 1246 | struct device_attribute *attr, |
| 1247 | char *buf) |
Corentin Chary | e07babd | 2011-02-26 10:20:42 +0100 | [diff] [blame] | 1248 | { |
| 1249 | struct asus_wmi *asus = dev_get_drvdata(dev); |
Daniel Drake | 2889ffc | 2019-07-29 16:27:37 +0800 | [diff] [blame] | 1250 | int err; |
Kast Bernd | 53e755c | 2015-05-13 16:24:16 +0200 | [diff] [blame] | 1251 | int value; |
Corentin Chary | e07babd | 2011-02-26 10:20:42 +0100 | [diff] [blame] | 1252 | |
Daniel Drake | 2889ffc | 2019-07-29 16:27:37 +0800 | [diff] [blame] | 1253 | /* If we already set a value then just return it */ |
| 1254 | if (asus->agfn_pwm >= 0) |
| 1255 | return sprintf(buf, "%d\n", asus->agfn_pwm); |
| 1256 | |
| 1257 | /* |
| 1258 | * If we haven't set already set a value through the AGFN interface, |
| 1259 | * we read a current value through the (now-deprecated) FAN_CTRL device. |
| 1260 | */ |
| 1261 | err = asus_wmi_get_devstate(asus, ASUS_WMI_DEVID_FAN_CTRL, &value); |
| 1262 | if (err < 0) |
| 1263 | return err; |
| 1264 | |
| 1265 | value &= 0xFF; |
| 1266 | |
| 1267 | if (value == 1) /* Low Speed */ |
| 1268 | value = 85; |
| 1269 | else if (value == 2) |
| 1270 | value = 170; |
| 1271 | else if (value == 3) |
| 1272 | value = 255; |
| 1273 | else if (value) { |
| 1274 | pr_err("Unknown fan speed %#x\n", value); |
| 1275 | value = -1; |
| 1276 | } |
Corentin Chary | e07babd | 2011-02-26 10:20:42 +0100 | [diff] [blame] | 1277 | |
| 1278 | return sprintf(buf, "%d\n", value); |
| 1279 | } |
| 1280 | |
Kast Bernd | 53e755c | 2015-05-13 16:24:16 +0200 | [diff] [blame] | 1281 | static ssize_t pwm1_store(struct device *dev, |
| 1282 | struct device_attribute *attr, |
| 1283 | const char *buf, size_t count) { |
| 1284 | struct asus_wmi *asus = dev_get_drvdata(dev); |
| 1285 | int value; |
| 1286 | int state; |
| 1287 | int ret; |
| 1288 | |
| 1289 | ret = kstrtouint(buf, 10, &value); |
| 1290 | |
| 1291 | if (ret) |
| 1292 | return ret; |
| 1293 | |
| 1294 | value = clamp(value, 0, 255); |
| 1295 | |
Daniel Drake | 2889ffc | 2019-07-29 16:27:37 +0800 | [diff] [blame] | 1296 | state = asus_agfn_fan_speed_write(asus, 1, &value); |
Kast Bernd | 53e755c | 2015-05-13 16:24:16 +0200 | [diff] [blame] | 1297 | if (state) |
| 1298 | pr_warn("Setting fan speed failed: %d\n", state); |
| 1299 | else |
Daniel Drake | 2889ffc | 2019-07-29 16:27:37 +0800 | [diff] [blame] | 1300 | asus->fan_pwm_mode = ASUS_FAN_CTRL_MANUAL; |
Kast Bernd | 53e755c | 2015-05-13 16:24:16 +0200 | [diff] [blame] | 1301 | |
| 1302 | return count; |
| 1303 | } |
| 1304 | |
| 1305 | static ssize_t fan1_input_show(struct device *dev, |
| 1306 | struct device_attribute *attr, |
| 1307 | char *buf) |
| 1308 | { |
Daniel Drake | 2889ffc | 2019-07-29 16:27:37 +0800 | [diff] [blame] | 1309 | struct asus_wmi *asus = dev_get_drvdata(dev); |
| 1310 | int value; |
| 1311 | int ret; |
| 1312 | |
Daniel Drake | e3168b8 | 2019-07-29 16:27:39 +0800 | [diff] [blame] | 1313 | switch (asus->fan_type) { |
| 1314 | case FAN_TYPE_SPEC83: |
| 1315 | ret = asus_wmi_get_devstate(asus, ASUS_WMI_DEVID_CPU_FAN_CTRL, |
| 1316 | &value); |
| 1317 | if (ret < 0) |
| 1318 | return ret; |
Daniel Drake | 2889ffc | 2019-07-29 16:27:37 +0800 | [diff] [blame] | 1319 | |
Daniel Drake | e3168b8 | 2019-07-29 16:27:39 +0800 | [diff] [blame] | 1320 | value &= 0xffff; |
| 1321 | break; |
| 1322 | |
| 1323 | case FAN_TYPE_AGFN: |
| 1324 | /* no speed readable on manual mode */ |
| 1325 | if (asus->fan_pwm_mode == ASUS_FAN_CTRL_MANUAL) |
| 1326 | return -ENXIO; |
| 1327 | |
| 1328 | ret = asus_agfn_fan_speed_read(asus, 1, &value); |
| 1329 | if (ret) { |
| 1330 | pr_warn("reading fan speed failed: %d\n", ret); |
| 1331 | return -ENXIO; |
| 1332 | } |
| 1333 | break; |
| 1334 | |
| 1335 | default: |
Daniel Drake | 2889ffc | 2019-07-29 16:27:37 +0800 | [diff] [blame] | 1336 | return -ENXIO; |
| 1337 | } |
Kast Bernd | 53e755c | 2015-05-13 16:24:16 +0200 | [diff] [blame] | 1338 | |
| 1339 | return sprintf(buf, "%d\n", value < 0 ? -1 : value*100); |
Kast Bernd | 53e755c | 2015-05-13 16:24:16 +0200 | [diff] [blame] | 1340 | } |
| 1341 | |
| 1342 | static ssize_t pwm1_enable_show(struct device *dev, |
| 1343 | struct device_attribute *attr, |
| 1344 | char *buf) |
| 1345 | { |
| 1346 | struct asus_wmi *asus = dev_get_drvdata(dev); |
| 1347 | |
Daniel Drake | e3168b8 | 2019-07-29 16:27:39 +0800 | [diff] [blame] | 1348 | /* |
| 1349 | * Just read back the cached pwm mode. |
| 1350 | * |
| 1351 | * For the CPU_FAN device, the spec indicates that we should be |
| 1352 | * able to read the device status and consult bit 19 to see if we |
| 1353 | * are in Full On or Automatic mode. However, this does not work |
| 1354 | * in practice on X532FL at least (the bit is always 0) and there's |
| 1355 | * also nothing in the DSDT to indicate that this behaviour exists. |
| 1356 | */ |
Daniel Drake | 2889ffc | 2019-07-29 16:27:37 +0800 | [diff] [blame] | 1357 | return sprintf(buf, "%d\n", asus->fan_pwm_mode); |
Kast Bernd | 53e755c | 2015-05-13 16:24:16 +0200 | [diff] [blame] | 1358 | } |
| 1359 | |
| 1360 | static ssize_t pwm1_enable_store(struct device *dev, |
| 1361 | struct device_attribute *attr, |
| 1362 | const char *buf, size_t count) |
| 1363 | { |
| 1364 | struct asus_wmi *asus = dev_get_drvdata(dev); |
| 1365 | int status = 0; |
| 1366 | int state; |
Daniel Drake | e3168b8 | 2019-07-29 16:27:39 +0800 | [diff] [blame] | 1367 | int value; |
Kast Bernd | 53e755c | 2015-05-13 16:24:16 +0200 | [diff] [blame] | 1368 | int ret; |
Daniel Drake | e3168b8 | 2019-07-29 16:27:39 +0800 | [diff] [blame] | 1369 | u32 retval; |
Kast Bernd | 53e755c | 2015-05-13 16:24:16 +0200 | [diff] [blame] | 1370 | |
| 1371 | ret = kstrtouint(buf, 10, &state); |
| 1372 | |
| 1373 | if (ret) |
| 1374 | return ret; |
| 1375 | |
Daniel Drake | e3168b8 | 2019-07-29 16:27:39 +0800 | [diff] [blame] | 1376 | if (asus->fan_type == FAN_TYPE_SPEC83) { |
| 1377 | switch (state) { /* standard documented hwmon values */ |
| 1378 | case ASUS_FAN_CTRL_FULLSPEED: |
| 1379 | value = 1; |
| 1380 | break; |
| 1381 | case ASUS_FAN_CTRL_AUTO: |
| 1382 | value = 0; |
| 1383 | break; |
| 1384 | default: |
| 1385 | return -EINVAL; |
| 1386 | } |
Kast Bernd | 53e755c | 2015-05-13 16:24:16 +0200 | [diff] [blame] | 1387 | |
Daniel Drake | e3168b8 | 2019-07-29 16:27:39 +0800 | [diff] [blame] | 1388 | ret = asus_wmi_set_devstate(ASUS_WMI_DEVID_CPU_FAN_CTRL, |
| 1389 | value, &retval); |
| 1390 | if (ret) |
| 1391 | return ret; |
Kast Bernd | 53e755c | 2015-05-13 16:24:16 +0200 | [diff] [blame] | 1392 | |
Daniel Drake | e3168b8 | 2019-07-29 16:27:39 +0800 | [diff] [blame] | 1393 | if (retval != 1) |
| 1394 | return -EIO; |
| 1395 | } else if (asus->fan_type == FAN_TYPE_AGFN) { |
| 1396 | switch (state) { |
| 1397 | case ASUS_FAN_CTRL_MANUAL: |
| 1398 | break; |
| 1399 | |
| 1400 | case ASUS_FAN_CTRL_AUTO: |
| 1401 | status = asus_fan_set_auto(asus); |
| 1402 | if (status) |
| 1403 | return status; |
| 1404 | break; |
| 1405 | |
| 1406 | default: |
| 1407 | return -EINVAL; |
| 1408 | } |
Daniel Drake | 2889ffc | 2019-07-29 16:27:37 +0800 | [diff] [blame] | 1409 | } |
| 1410 | |
| 1411 | asus->fan_pwm_mode = state; |
Kast Bernd | 53e755c | 2015-05-13 16:24:16 +0200 | [diff] [blame] | 1412 | return count; |
| 1413 | } |
| 1414 | |
| 1415 | static ssize_t fan1_label_show(struct device *dev, |
| 1416 | struct device_attribute *attr, |
| 1417 | char *buf) |
| 1418 | { |
| 1419 | return sprintf(buf, "%s\n", ASUS_FAN_DESC); |
| 1420 | } |
| 1421 | |
Corentin Chary | 6118b8a | 2011-07-01 11:34:36 +0200 | [diff] [blame] | 1422 | static ssize_t asus_hwmon_temp1(struct device *dev, |
| 1423 | struct device_attribute *attr, |
| 1424 | char *buf) |
| 1425 | { |
| 1426 | struct asus_wmi *asus = dev_get_drvdata(dev); |
| 1427 | u32 value; |
| 1428 | int err; |
| 1429 | |
| 1430 | err = asus_wmi_get_devstate(asus, ASUS_WMI_DEVID_THERMAL_CTRL, &value); |
| 1431 | |
| 1432 | if (err < 0) |
| 1433 | return err; |
| 1434 | |
Rasmus Villemoes | e866a2e | 2015-10-01 23:45:31 +0200 | [diff] [blame] | 1435 | value = DECI_KELVIN_TO_CELSIUS((value & 0xFFFF)) * 1000; |
Corentin Chary | 6118b8a | 2011-07-01 11:34:36 +0200 | [diff] [blame] | 1436 | |
| 1437 | return sprintf(buf, "%d\n", value); |
| 1438 | } |
| 1439 | |
Kast Bernd | 53e755c | 2015-05-13 16:24:16 +0200 | [diff] [blame] | 1440 | /* Fan1 */ |
| 1441 | static DEVICE_ATTR_RW(pwm1); |
| 1442 | static DEVICE_ATTR_RW(pwm1_enable); |
| 1443 | static DEVICE_ATTR_RO(fan1_input); |
| 1444 | static DEVICE_ATTR_RO(fan1_label); |
| 1445 | |
| 1446 | /* Temperature */ |
Guenter Roeck | 50a639f | 2013-11-23 11:03:17 -0800 | [diff] [blame] | 1447 | static DEVICE_ATTR(temp1_input, S_IRUGO, asus_hwmon_temp1, NULL); |
Corentin Chary | e07babd | 2011-02-26 10:20:42 +0100 | [diff] [blame] | 1448 | |
| 1449 | static struct attribute *hwmon_attributes[] = { |
Guenter Roeck | 50a639f | 2013-11-23 11:03:17 -0800 | [diff] [blame] | 1450 | &dev_attr_pwm1.attr, |
Kast Bernd | 53e755c | 2015-05-13 16:24:16 +0200 | [diff] [blame] | 1451 | &dev_attr_pwm1_enable.attr, |
| 1452 | &dev_attr_fan1_input.attr, |
| 1453 | &dev_attr_fan1_label.attr, |
| 1454 | |
Guenter Roeck | 50a639f | 2013-11-23 11:03:17 -0800 | [diff] [blame] | 1455 | &dev_attr_temp1_input.attr, |
Corentin Chary | e07babd | 2011-02-26 10:20:42 +0100 | [diff] [blame] | 1456 | NULL |
| 1457 | }; |
| 1458 | |
Al Viro | 587a1f1 | 2011-07-23 23:11:19 -0400 | [diff] [blame] | 1459 | static umode_t asus_hwmon_sysfs_is_visible(struct kobject *kobj, |
Corentin Chary | e02431d | 2011-07-01 11:34:37 +0200 | [diff] [blame] | 1460 | struct attribute *attr, int idx) |
Corentin Chary | e07babd | 2011-02-26 10:20:42 +0100 | [diff] [blame] | 1461 | { |
| 1462 | struct device *dev = container_of(kobj, struct device, kobj); |
Fuqian Huang | 8e8fe44 | 2019-07-01 11:24:26 +0800 | [diff] [blame] | 1463 | struct asus_wmi *asus = dev_get_drvdata(dev->parent); |
Corentin Chary | e07babd | 2011-02-26 10:20:42 +0100 | [diff] [blame] | 1464 | u32 value = ASUS_WMI_UNSUPPORTED_METHOD; |
Kast Bernd | 53e755c | 2015-05-13 16:24:16 +0200 | [diff] [blame] | 1465 | |
Daniel Drake | e3168b8 | 2019-07-29 16:27:39 +0800 | [diff] [blame] | 1466 | if (attr == &dev_attr_pwm1.attr) { |
| 1467 | if (asus->fan_type != FAN_TYPE_AGFN) |
| 1468 | return 0; |
| 1469 | } else if (attr == &dev_attr_fan1_input.attr |
Kast Bernd | 53e755c | 2015-05-13 16:24:16 +0200 | [diff] [blame] | 1470 | || attr == &dev_attr_fan1_label.attr |
Kast Bernd | 53e755c | 2015-05-13 16:24:16 +0200 | [diff] [blame] | 1471 | || attr == &dev_attr_pwm1_enable.attr) { |
Daniel Drake | 2889ffc | 2019-07-29 16:27:37 +0800 | [diff] [blame] | 1472 | if (asus->fan_type == FAN_TYPE_NONE) |
| 1473 | return 0; |
| 1474 | } else if (attr == &dev_attr_temp1_input.attr) { |
| 1475 | int err = asus_wmi_get_devstate(asus, |
| 1476 | ASUS_WMI_DEVID_THERMAL_CTRL, |
| 1477 | &value); |
Kast Bernd | 53e755c | 2015-05-13 16:24:16 +0200 | [diff] [blame] | 1478 | |
Daniel Drake | 2889ffc | 2019-07-29 16:27:37 +0800 | [diff] [blame] | 1479 | if (err < 0) |
Al Viro | e772aed | 2011-07-23 20:59:40 -0400 | [diff] [blame] | 1480 | return 0; /* can't return negative here */ |
Corentin Chary | e07babd | 2011-02-26 10:20:42 +0100 | [diff] [blame] | 1481 | |
Yurii Pavlovskyi | 4fd1982 | 2019-05-14 21:05:46 +0200 | [diff] [blame] | 1482 | /* |
| 1483 | * If the temperature value in deci-Kelvin is near the absolute |
| 1484 | * zero temperature, something is clearly wrong |
| 1485 | */ |
| 1486 | if (value == 0 || value == 1) |
Daniel Drake | 2889ffc | 2019-07-29 16:27:37 +0800 | [diff] [blame] | 1487 | return 0; |
Corentin Chary | e07babd | 2011-02-26 10:20:42 +0100 | [diff] [blame] | 1488 | } |
| 1489 | |
Daniel Drake | 2889ffc | 2019-07-29 16:27:37 +0800 | [diff] [blame] | 1490 | return attr->mode; |
Corentin Chary | e07babd | 2011-02-26 10:20:42 +0100 | [diff] [blame] | 1491 | } |
| 1492 | |
Arvind Yadav | e90d9ba | 2017-07-11 16:18:19 +0530 | [diff] [blame] | 1493 | static const struct attribute_group hwmon_attribute_group = { |
Corentin Chary | e07babd | 2011-02-26 10:20:42 +0100 | [diff] [blame] | 1494 | .is_visible = asus_hwmon_sysfs_is_visible, |
| 1495 | .attrs = hwmon_attributes |
| 1496 | }; |
Guenter Roeck | 50a639f | 2013-11-23 11:03:17 -0800 | [diff] [blame] | 1497 | __ATTRIBUTE_GROUPS(hwmon_attribute); |
Corentin Chary | e07babd | 2011-02-26 10:20:42 +0100 | [diff] [blame] | 1498 | |
| 1499 | static int asus_wmi_hwmon_init(struct asus_wmi *asus) |
| 1500 | { |
Yurii Pavlovskyi | cd10ee0 | 2019-05-14 20:50:30 +0200 | [diff] [blame] | 1501 | struct device *dev = &asus->platform_device->dev; |
Corentin Chary | e07babd | 2011-02-26 10:20:42 +0100 | [diff] [blame] | 1502 | struct device *hwmon; |
Corentin Chary | e07babd | 2011-02-26 10:20:42 +0100 | [diff] [blame] | 1503 | |
Yurii Pavlovskyi | cd10ee0 | 2019-05-14 20:50:30 +0200 | [diff] [blame] | 1504 | hwmon = devm_hwmon_device_register_with_groups(dev, "asus", asus, |
| 1505 | hwmon_attribute_groups); |
| 1506 | |
Corentin Chary | e07babd | 2011-02-26 10:20:42 +0100 | [diff] [blame] | 1507 | if (IS_ERR(hwmon)) { |
| 1508 | pr_err("Could not register asus hwmon device\n"); |
| 1509 | return PTR_ERR(hwmon); |
| 1510 | } |
Guenter Roeck | 50a639f | 2013-11-23 11:03:17 -0800 | [diff] [blame] | 1511 | return 0; |
Corentin Chary | e07babd | 2011-02-26 10:20:42 +0100 | [diff] [blame] | 1512 | } |
| 1513 | |
Yurii Pavlovskyi | 54a3121 | 2019-05-14 21:04:48 +0200 | [diff] [blame] | 1514 | static int asus_wmi_fan_init(struct asus_wmi *asus) |
| 1515 | { |
Daniel Drake | 2889ffc | 2019-07-29 16:27:37 +0800 | [diff] [blame] | 1516 | asus->fan_type = FAN_TYPE_NONE; |
| 1517 | asus->agfn_pwm = -1; |
Yurii Pavlovskyi | 54a3121 | 2019-05-14 21:04:48 +0200 | [diff] [blame] | 1518 | |
Daniel Drake | e3168b8 | 2019-07-29 16:27:39 +0800 | [diff] [blame] | 1519 | if (asus_wmi_dev_is_present(asus, ASUS_WMI_DEVID_CPU_FAN_CTRL)) |
| 1520 | asus->fan_type = FAN_TYPE_SPEC83; |
| 1521 | else if (asus_wmi_has_agfn_fan(asus)) |
Daniel Drake | 2889ffc | 2019-07-29 16:27:37 +0800 | [diff] [blame] | 1522 | asus->fan_type = FAN_TYPE_AGFN; |
Yurii Pavlovskyi | 54a3121 | 2019-05-14 21:04:48 +0200 | [diff] [blame] | 1523 | |
Daniel Drake | e3168b8 | 2019-07-29 16:27:39 +0800 | [diff] [blame] | 1524 | if (asus->fan_type == FAN_TYPE_NONE) |
| 1525 | return -ENODEV; |
| 1526 | |
| 1527 | asus_fan_set_auto(asus); |
| 1528 | asus->fan_pwm_mode = ASUS_FAN_CTRL_AUTO; |
| 1529 | return 0; |
Yurii Pavlovskyi | 54a3121 | 2019-05-14 21:04:48 +0200 | [diff] [blame] | 1530 | } |
| 1531 | |
Yurii Pavlovskyi | b096f62 | 2019-05-14 21:07:05 +0200 | [diff] [blame] | 1532 | /* Fan mode *******************************************************************/ |
| 1533 | |
Daniel Drake | 9af93db | 2019-07-17 13:10:58 +0800 | [diff] [blame] | 1534 | static int fan_boost_mode_check_present(struct asus_wmi *asus) |
Yurii Pavlovskyi | b096f62 | 2019-05-14 21:07:05 +0200 | [diff] [blame] | 1535 | { |
| 1536 | u32 result; |
| 1537 | int err; |
| 1538 | |
Daniel Drake | 9af93db | 2019-07-17 13:10:58 +0800 | [diff] [blame] | 1539 | asus->fan_boost_mode_available = false; |
Yurii Pavlovskyi | b096f62 | 2019-05-14 21:07:05 +0200 | [diff] [blame] | 1540 | |
Daniel Drake | 9af93db | 2019-07-17 13:10:58 +0800 | [diff] [blame] | 1541 | err = asus_wmi_get_devstate(asus, ASUS_WMI_DEVID_FAN_BOOST_MODE, |
| 1542 | &result); |
Yurii Pavlovskyi | b096f62 | 2019-05-14 21:07:05 +0200 | [diff] [blame] | 1543 | if (err) { |
| 1544 | if (err == -ENODEV) |
| 1545 | return 0; |
| 1546 | else |
| 1547 | return err; |
| 1548 | } |
| 1549 | |
| 1550 | if ((result & ASUS_WMI_DSTS_PRESENCE_BIT) && |
Daniel Drake | 9af93db | 2019-07-17 13:10:58 +0800 | [diff] [blame] | 1551 | (result & ASUS_FAN_BOOST_MODES_MASK)) { |
| 1552 | asus->fan_boost_mode_available = true; |
| 1553 | asus->fan_boost_mode_mask = result & ASUS_FAN_BOOST_MODES_MASK; |
Yurii Pavlovskyi | b096f62 | 2019-05-14 21:07:05 +0200 | [diff] [blame] | 1554 | } |
| 1555 | |
| 1556 | return 0; |
| 1557 | } |
| 1558 | |
Daniel Drake | 9af93db | 2019-07-17 13:10:58 +0800 | [diff] [blame] | 1559 | static int fan_boost_mode_write(struct asus_wmi *asus) |
Yurii Pavlovskyi | b096f62 | 2019-05-14 21:07:05 +0200 | [diff] [blame] | 1560 | { |
| 1561 | int err; |
| 1562 | u8 value; |
| 1563 | u32 retval; |
| 1564 | |
Daniel Drake | 9af93db | 2019-07-17 13:10:58 +0800 | [diff] [blame] | 1565 | value = asus->fan_boost_mode; |
Yurii Pavlovskyi | b096f62 | 2019-05-14 21:07:05 +0200 | [diff] [blame] | 1566 | |
Daniel Drake | 9af93db | 2019-07-17 13:10:58 +0800 | [diff] [blame] | 1567 | pr_info("Set fan boost mode: %u\n", value); |
| 1568 | err = asus_wmi_set_devstate(ASUS_WMI_DEVID_FAN_BOOST_MODE, value, |
| 1569 | &retval); |
Yurii Pavlovskyi | b096f62 | 2019-05-14 21:07:05 +0200 | [diff] [blame] | 1570 | |
| 1571 | if (err) { |
Daniel Drake | 9af93db | 2019-07-17 13:10:58 +0800 | [diff] [blame] | 1572 | pr_warn("Failed to set fan boost mode: %d\n", err); |
Yurii Pavlovskyi | b096f62 | 2019-05-14 21:07:05 +0200 | [diff] [blame] | 1573 | return err; |
| 1574 | } |
| 1575 | |
| 1576 | if (retval != 1) { |
Daniel Drake | 9af93db | 2019-07-17 13:10:58 +0800 | [diff] [blame] | 1577 | pr_warn("Failed to set fan boost mode (retval): 0x%x\n", |
| 1578 | retval); |
Yurii Pavlovskyi | b096f62 | 2019-05-14 21:07:05 +0200 | [diff] [blame] | 1579 | return -EIO; |
| 1580 | } |
| 1581 | |
| 1582 | return 0; |
| 1583 | } |
| 1584 | |
Daniel Drake | 9af93db | 2019-07-17 13:10:58 +0800 | [diff] [blame] | 1585 | static int fan_boost_mode_switch_next(struct asus_wmi *asus) |
Yurii Pavlovskyi | b096f62 | 2019-05-14 21:07:05 +0200 | [diff] [blame] | 1586 | { |
Daniel Drake | 9af93db | 2019-07-17 13:10:58 +0800 | [diff] [blame] | 1587 | u8 mask = asus->fan_boost_mode_mask; |
| 1588 | |
| 1589 | if (asus->fan_boost_mode == ASUS_FAN_BOOST_MODE_NORMAL) { |
| 1590 | if (mask & ASUS_FAN_BOOST_MODE_OVERBOOST_MASK) |
| 1591 | asus->fan_boost_mode = ASUS_FAN_BOOST_MODE_OVERBOOST; |
| 1592 | else if (mask & ASUS_FAN_BOOST_MODE_SILENT_MASK) |
| 1593 | asus->fan_boost_mode = ASUS_FAN_BOOST_MODE_SILENT; |
| 1594 | } else if (asus->fan_boost_mode == ASUS_FAN_BOOST_MODE_OVERBOOST) { |
| 1595 | if (mask & ASUS_FAN_BOOST_MODE_SILENT_MASK) |
| 1596 | asus->fan_boost_mode = ASUS_FAN_BOOST_MODE_SILENT; |
Yurii Pavlovskyi | b096f62 | 2019-05-14 21:07:05 +0200 | [diff] [blame] | 1597 | else |
Daniel Drake | 9af93db | 2019-07-17 13:10:58 +0800 | [diff] [blame] | 1598 | asus->fan_boost_mode = ASUS_FAN_BOOST_MODE_NORMAL; |
Yurii Pavlovskyi | b096f62 | 2019-05-14 21:07:05 +0200 | [diff] [blame] | 1599 | } else { |
Daniel Drake | 9af93db | 2019-07-17 13:10:58 +0800 | [diff] [blame] | 1600 | asus->fan_boost_mode = ASUS_FAN_BOOST_MODE_NORMAL; |
Yurii Pavlovskyi | b096f62 | 2019-05-14 21:07:05 +0200 | [diff] [blame] | 1601 | } |
| 1602 | |
Daniel Drake | 9af93db | 2019-07-17 13:10:58 +0800 | [diff] [blame] | 1603 | return fan_boost_mode_write(asus); |
Yurii Pavlovskyi | b096f62 | 2019-05-14 21:07:05 +0200 | [diff] [blame] | 1604 | } |
| 1605 | |
Daniel Drake | 9af93db | 2019-07-17 13:10:58 +0800 | [diff] [blame] | 1606 | static ssize_t fan_boost_mode_show(struct device *dev, |
| 1607 | struct device_attribute *attr, char *buf) |
Yurii Pavlovskyi | b096f62 | 2019-05-14 21:07:05 +0200 | [diff] [blame] | 1608 | { |
| 1609 | struct asus_wmi *asus = dev_get_drvdata(dev); |
| 1610 | |
Daniel Drake | 9af93db | 2019-07-17 13:10:58 +0800 | [diff] [blame] | 1611 | return scnprintf(buf, PAGE_SIZE, "%d\n", asus->fan_boost_mode); |
Yurii Pavlovskyi | b096f62 | 2019-05-14 21:07:05 +0200 | [diff] [blame] | 1612 | } |
| 1613 | |
Daniel Drake | 9af93db | 2019-07-17 13:10:58 +0800 | [diff] [blame] | 1614 | static ssize_t fan_boost_mode_store(struct device *dev, |
| 1615 | struct device_attribute *attr, |
| 1616 | const char *buf, size_t count) |
Yurii Pavlovskyi | b096f62 | 2019-05-14 21:07:05 +0200 | [diff] [blame] | 1617 | { |
| 1618 | int result; |
| 1619 | u8 new_mode; |
Yurii Pavlovskyi | b096f62 | 2019-05-14 21:07:05 +0200 | [diff] [blame] | 1620 | struct asus_wmi *asus = dev_get_drvdata(dev); |
Daniel Drake | 9af93db | 2019-07-17 13:10:58 +0800 | [diff] [blame] | 1621 | u8 mask = asus->fan_boost_mode_mask; |
Yurii Pavlovskyi | b096f62 | 2019-05-14 21:07:05 +0200 | [diff] [blame] | 1622 | |
| 1623 | result = kstrtou8(buf, 10, &new_mode); |
| 1624 | if (result < 0) { |
| 1625 | pr_warn("Trying to store invalid value\n"); |
| 1626 | return result; |
| 1627 | } |
| 1628 | |
Daniel Drake | 9af93db | 2019-07-17 13:10:58 +0800 | [diff] [blame] | 1629 | if (new_mode == ASUS_FAN_BOOST_MODE_OVERBOOST) { |
| 1630 | if (!(mask & ASUS_FAN_BOOST_MODE_OVERBOOST_MASK)) |
Yurii Pavlovskyi | b096f62 | 2019-05-14 21:07:05 +0200 | [diff] [blame] | 1631 | return -EINVAL; |
Daniel Drake | 9af93db | 2019-07-17 13:10:58 +0800 | [diff] [blame] | 1632 | } else if (new_mode == ASUS_FAN_BOOST_MODE_SILENT) { |
| 1633 | if (!(mask & ASUS_FAN_BOOST_MODE_SILENT_MASK)) |
Yurii Pavlovskyi | b096f62 | 2019-05-14 21:07:05 +0200 | [diff] [blame] | 1634 | return -EINVAL; |
Daniel Drake | 9af93db | 2019-07-17 13:10:58 +0800 | [diff] [blame] | 1635 | } else if (new_mode != ASUS_FAN_BOOST_MODE_NORMAL) { |
Yurii Pavlovskyi | b096f62 | 2019-05-14 21:07:05 +0200 | [diff] [blame] | 1636 | return -EINVAL; |
| 1637 | } |
| 1638 | |
Daniel Drake | 9af93db | 2019-07-17 13:10:58 +0800 | [diff] [blame] | 1639 | asus->fan_boost_mode = new_mode; |
| 1640 | fan_boost_mode_write(asus); |
Yurii Pavlovskyi | b096f62 | 2019-05-14 21:07:05 +0200 | [diff] [blame] | 1641 | |
| 1642 | return result; |
| 1643 | } |
| 1644 | |
Daniel Drake | 9af93db | 2019-07-17 13:10:58 +0800 | [diff] [blame] | 1645 | // Fan boost mode: 0 - normal, 1 - overboost, 2 - silent |
| 1646 | static DEVICE_ATTR_RW(fan_boost_mode); |
Yurii Pavlovskyi | b096f62 | 2019-05-14 21:07:05 +0200 | [diff] [blame] | 1647 | |
Yurii Pavlovskyi | 54a3121 | 2019-05-14 21:04:48 +0200 | [diff] [blame] | 1648 | /* Backlight ******************************************************************/ |
| 1649 | |
Corentin Chary | 1d070f8 | 2011-02-26 10:20:36 +0100 | [diff] [blame] | 1650 | static int read_backlight_power(struct asus_wmi *asus) |
Corentin Chary | b718726 | 2011-02-06 13:28:39 +0100 | [diff] [blame] | 1651 | { |
AceLan Kao | 6e0044b | 2012-03-20 09:53:09 +0100 | [diff] [blame] | 1652 | int ret; |
| 1653 | if (asus->driver->quirks->store_backlight_power) |
| 1654 | ret = !asus->driver->panel_power; |
| 1655 | else |
| 1656 | ret = asus_wmi_get_devstate_simple(asus, |
| 1657 | ASUS_WMI_DEVID_BACKLIGHT); |
Corentin Chary | b718726 | 2011-02-06 13:28:39 +0100 | [diff] [blame] | 1658 | |
| 1659 | if (ret < 0) |
| 1660 | return ret; |
| 1661 | |
| 1662 | return ret ? FB_BLANK_UNBLANK : FB_BLANK_POWERDOWN; |
| 1663 | } |
| 1664 | |
Corentin Chary | 8fbea01 | 2011-02-26 10:20:37 +0100 | [diff] [blame] | 1665 | static int read_brightness_max(struct asus_wmi *asus) |
| 1666 | { |
| 1667 | u32 retval; |
| 1668 | int err; |
| 1669 | |
| 1670 | err = asus_wmi_get_devstate(asus, ASUS_WMI_DEVID_BRIGHTNESS, &retval); |
| 1671 | |
| 1672 | if (err < 0) |
| 1673 | return err; |
| 1674 | |
| 1675 | retval = retval & ASUS_WMI_DSTS_MAX_BRIGTH_MASK; |
| 1676 | retval >>= 8; |
| 1677 | |
| 1678 | if (!retval) |
| 1679 | return -ENODEV; |
| 1680 | |
| 1681 | return retval; |
| 1682 | } |
| 1683 | |
Yong Wang | 3d7b165 | 2010-04-11 09:27:54 +0800 | [diff] [blame] | 1684 | static int read_brightness(struct backlight_device *bd) |
| 1685 | { |
Corentin Chary | 1d070f8 | 2011-02-26 10:20:36 +0100 | [diff] [blame] | 1686 | struct asus_wmi *asus = bl_get_data(bd); |
Dan Carpenter | 0986f25 | 2011-03-15 10:06:23 +0300 | [diff] [blame] | 1687 | u32 retval; |
| 1688 | int err; |
Yong Wang | 3d7b165 | 2010-04-11 09:27:54 +0800 | [diff] [blame] | 1689 | |
Corentin Chary | 1d070f8 | 2011-02-26 10:20:36 +0100 | [diff] [blame] | 1690 | err = asus_wmi_get_devstate(asus, ASUS_WMI_DEVID_BRIGHTNESS, &retval); |
Yong Wang | 3d7b165 | 2010-04-11 09:27:54 +0800 | [diff] [blame] | 1691 | |
Corentin Chary | d33da3b | 2011-02-26 10:20:35 +0100 | [diff] [blame] | 1692 | if (err < 0) |
| 1693 | return err; |
| 1694 | |
| 1695 | return retval & ASUS_WMI_DSTS_BRIGHTNESS_MASK; |
Yong Wang | 3d7b165 | 2010-04-11 09:27:54 +0800 | [diff] [blame] | 1696 | } |
| 1697 | |
AceLan Kao | c87992d | 2012-03-20 09:53:08 +0100 | [diff] [blame] | 1698 | static u32 get_scalar_command(struct backlight_device *bd) |
| 1699 | { |
| 1700 | struct asus_wmi *asus = bl_get_data(bd); |
| 1701 | u32 ctrl_param = 0; |
| 1702 | |
| 1703 | if ((asus->driver->brightness < bd->props.brightness) || |
| 1704 | bd->props.brightness == bd->props.max_brightness) |
| 1705 | ctrl_param = 0x00008001; |
| 1706 | else if ((asus->driver->brightness > bd->props.brightness) || |
| 1707 | bd->props.brightness == 0) |
| 1708 | ctrl_param = 0x00008000; |
| 1709 | |
| 1710 | asus->driver->brightness = bd->props.brightness; |
| 1711 | |
| 1712 | return ctrl_param; |
| 1713 | } |
| 1714 | |
Yong Wang | 3d7b165 | 2010-04-11 09:27:54 +0800 | [diff] [blame] | 1715 | static int update_bl_status(struct backlight_device *bd) |
| 1716 | { |
Corentin Chary | 1d070f8 | 2011-02-26 10:20:36 +0100 | [diff] [blame] | 1717 | struct asus_wmi *asus = bl_get_data(bd); |
Corentin Chary | dfed65d | 2010-11-29 08:14:12 +0100 | [diff] [blame] | 1718 | u32 ctrl_param; |
AceLan Kao | 6e0044b | 2012-03-20 09:53:09 +0100 | [diff] [blame] | 1719 | int power, err = 0; |
Corentin Chary | b718726 | 2011-02-06 13:28:39 +0100 | [diff] [blame] | 1720 | |
Corentin Chary | 1d070f8 | 2011-02-26 10:20:36 +0100 | [diff] [blame] | 1721 | power = read_backlight_power(asus); |
Corentin Chary | b718726 | 2011-02-06 13:28:39 +0100 | [diff] [blame] | 1722 | if (power != -ENODEV && bd->props.power != power) { |
| 1723 | ctrl_param = !!(bd->props.power == FB_BLANK_UNBLANK); |
Corentin Chary | d33da3b | 2011-02-26 10:20:35 +0100 | [diff] [blame] | 1724 | err = asus_wmi_set_devstate(ASUS_WMI_DEVID_BACKLIGHT, |
| 1725 | ctrl_param, NULL); |
AceLan Kao | 6e0044b | 2012-03-20 09:53:09 +0100 | [diff] [blame] | 1726 | if (asus->driver->quirks->store_backlight_power) |
| 1727 | asus->driver->panel_power = bd->props.power; |
AceLan Kao | 6e0044b | 2012-03-20 09:53:09 +0100 | [diff] [blame] | 1728 | |
Corentin Chary | ade28ab | 2012-03-20 09:53:14 +0100 | [diff] [blame] | 1729 | /* When using scalar brightness, updating the brightness |
| 1730 | * will mess with the backlight power */ |
| 1731 | if (asus->driver->quirks->scalar_panel_brightness) |
| 1732 | return err; |
Corentin Chary | b718726 | 2011-02-06 13:28:39 +0100 | [diff] [blame] | 1733 | } |
Corentin Chary | ade28ab | 2012-03-20 09:53:14 +0100 | [diff] [blame] | 1734 | |
| 1735 | if (asus->driver->quirks->scalar_panel_brightness) |
| 1736 | ctrl_param = get_scalar_command(bd); |
| 1737 | else |
| 1738 | ctrl_param = bd->props.brightness; |
| 1739 | |
| 1740 | err = asus_wmi_set_devstate(ASUS_WMI_DEVID_BRIGHTNESS, |
| 1741 | ctrl_param, NULL); |
| 1742 | |
Corentin Chary | 8fbea01 | 2011-02-26 10:20:37 +0100 | [diff] [blame] | 1743 | return err; |
Yong Wang | 3d7b165 | 2010-04-11 09:27:54 +0800 | [diff] [blame] | 1744 | } |
| 1745 | |
Corentin Chary | e12e6d9 | 2011-02-26 10:20:31 +0100 | [diff] [blame] | 1746 | static const struct backlight_ops asus_wmi_bl_ops = { |
Yong Wang | 3d7b165 | 2010-04-11 09:27:54 +0800 | [diff] [blame] | 1747 | .get_brightness = read_brightness, |
| 1748 | .update_status = update_bl_status, |
| 1749 | }; |
| 1750 | |
Corentin Chary | e12e6d9 | 2011-02-26 10:20:31 +0100 | [diff] [blame] | 1751 | static int asus_wmi_backlight_notify(struct asus_wmi *asus, int code) |
Yong Wang | 3d7b165 | 2010-04-11 09:27:54 +0800 | [diff] [blame] | 1752 | { |
Corentin Chary | e12e6d9 | 2011-02-26 10:20:31 +0100 | [diff] [blame] | 1753 | struct backlight_device *bd = asus->backlight_device; |
Yong Wang | 3d7b165 | 2010-04-11 09:27:54 +0800 | [diff] [blame] | 1754 | int old = bd->props.brightness; |
Daniel Mack | b7670ed | 2010-05-19 12:37:01 +0200 | [diff] [blame] | 1755 | int new = old; |
Yong Wang | 3d7b165 | 2010-04-11 09:27:54 +0800 | [diff] [blame] | 1756 | |
| 1757 | if (code >= NOTIFY_BRNUP_MIN && code <= NOTIFY_BRNUP_MAX) |
| 1758 | new = code - NOTIFY_BRNUP_MIN + 1; |
| 1759 | else if (code >= NOTIFY_BRNDOWN_MIN && code <= NOTIFY_BRNDOWN_MAX) |
| 1760 | new = code - NOTIFY_BRNDOWN_MIN; |
| 1761 | |
| 1762 | bd->props.brightness = new; |
| 1763 | backlight_update_status(bd); |
| 1764 | backlight_force_update(bd, BACKLIGHT_UPDATE_HOTKEY); |
| 1765 | |
| 1766 | return old; |
| 1767 | } |
| 1768 | |
Corentin Chary | e12e6d9 | 2011-02-26 10:20:31 +0100 | [diff] [blame] | 1769 | static int asus_wmi_backlight_init(struct asus_wmi *asus) |
Yong Wang | 3d7b165 | 2010-04-11 09:27:54 +0800 | [diff] [blame] | 1770 | { |
| 1771 | struct backlight_device *bd; |
| 1772 | struct backlight_properties props; |
Corentin Chary | b718726 | 2011-02-06 13:28:39 +0100 | [diff] [blame] | 1773 | int max; |
| 1774 | int power; |
| 1775 | |
Corentin Chary | 8fbea01 | 2011-02-26 10:20:37 +0100 | [diff] [blame] | 1776 | max = read_brightness_max(asus); |
Hans de Goede | 86ac2735 | 2014-07-08 10:47:22 +0200 | [diff] [blame] | 1777 | if (max < 0) |
Corentin Chary | 8fbea01 | 2011-02-26 10:20:37 +0100 | [diff] [blame] | 1778 | return max; |
| 1779 | |
| 1780 | power = read_backlight_power(asus); |
| 1781 | |
Corentin Chary | b718726 | 2011-02-06 13:28:39 +0100 | [diff] [blame] | 1782 | if (power == -ENODEV) |
| 1783 | power = FB_BLANK_UNBLANK; |
Corentin Chary | 8fbea01 | 2011-02-26 10:20:37 +0100 | [diff] [blame] | 1784 | else if (power < 0) |
| 1785 | return power; |
Yong Wang | 3d7b165 | 2010-04-11 09:27:54 +0800 | [diff] [blame] | 1786 | |
| 1787 | memset(&props, 0, sizeof(struct backlight_properties)); |
Axel Lin | 60cfa09 | 2011-06-29 11:43:30 +0800 | [diff] [blame] | 1788 | props.type = BACKLIGHT_PLATFORM; |
Corentin Chary | b718726 | 2011-02-06 13:28:39 +0100 | [diff] [blame] | 1789 | props.max_brightness = max; |
Corentin Chary | e12e6d9 | 2011-02-26 10:20:31 +0100 | [diff] [blame] | 1790 | bd = backlight_device_register(asus->driver->name, |
| 1791 | &asus->platform_device->dev, asus, |
| 1792 | &asus_wmi_bl_ops, &props); |
Yong Wang | 3d7b165 | 2010-04-11 09:27:54 +0800 | [diff] [blame] | 1793 | if (IS_ERR(bd)) { |
| 1794 | pr_err("Could not register backlight device\n"); |
| 1795 | return PTR_ERR(bd); |
| 1796 | } |
| 1797 | |
Corentin Chary | e12e6d9 | 2011-02-26 10:20:31 +0100 | [diff] [blame] | 1798 | asus->backlight_device = bd; |
Yong Wang | 3d7b165 | 2010-04-11 09:27:54 +0800 | [diff] [blame] | 1799 | |
AceLan Kao | 6e0044b | 2012-03-20 09:53:09 +0100 | [diff] [blame] | 1800 | if (asus->driver->quirks->store_backlight_power) |
| 1801 | asus->driver->panel_power = power; |
| 1802 | |
Yong Wang | 3d7b165 | 2010-04-11 09:27:54 +0800 | [diff] [blame] | 1803 | bd->props.brightness = read_brightness(bd); |
Corentin Chary | b718726 | 2011-02-06 13:28:39 +0100 | [diff] [blame] | 1804 | bd->props.power = power; |
Yong Wang | 3d7b165 | 2010-04-11 09:27:54 +0800 | [diff] [blame] | 1805 | backlight_update_status(bd); |
| 1806 | |
AceLan Kao | c87992d | 2012-03-20 09:53:08 +0100 | [diff] [blame] | 1807 | asus->driver->brightness = bd->props.brightness; |
| 1808 | |
Yong Wang | 3d7b165 | 2010-04-11 09:27:54 +0800 | [diff] [blame] | 1809 | return 0; |
| 1810 | } |
| 1811 | |
Corentin Chary | e12e6d9 | 2011-02-26 10:20:31 +0100 | [diff] [blame] | 1812 | static void asus_wmi_backlight_exit(struct asus_wmi *asus) |
Yong Wang | 3d7b165 | 2010-04-11 09:27:54 +0800 | [diff] [blame] | 1813 | { |
Markus Elfring | 0098181 | 2014-11-24 20:30:29 +0100 | [diff] [blame] | 1814 | backlight_device_unregister(asus->backlight_device); |
Yong Wang | 3d7b165 | 2010-04-11 09:27:54 +0800 | [diff] [blame] | 1815 | |
Corentin Chary | e12e6d9 | 2011-02-26 10:20:31 +0100 | [diff] [blame] | 1816 | asus->backlight_device = NULL; |
Yong Wang | 3d7b165 | 2010-04-11 09:27:54 +0800 | [diff] [blame] | 1817 | } |
| 1818 | |
AceLan Kao | a2a96f0 | 2012-10-03 11:26:31 +0200 | [diff] [blame] | 1819 | static int is_display_toggle(int code) |
| 1820 | { |
| 1821 | /* display toggle keys */ |
| 1822 | if ((code >= 0x61 && code <= 0x67) || |
| 1823 | (code >= 0x8c && code <= 0x93) || |
| 1824 | (code >= 0xa0 && code <= 0xa7) || |
| 1825 | (code >= 0xd0 && code <= 0xd5)) |
| 1826 | return 1; |
| 1827 | |
| 1828 | return 0; |
| 1829 | } |
| 1830 | |
Yurii Pavlovskyi | 54a3121 | 2019-05-14 21:04:48 +0200 | [diff] [blame] | 1831 | /* Fn-lock ********************************************************************/ |
| 1832 | |
Chris Chiu | 487579b | 2019-04-18 14:46:48 +0800 | [diff] [blame] | 1833 | static bool asus_wmi_has_fnlock_key(struct asus_wmi *asus) |
| 1834 | { |
| 1835 | u32 result; |
| 1836 | |
| 1837 | asus_wmi_get_devstate(asus, ASUS_WMI_DEVID_FNLOCK, &result); |
| 1838 | |
| 1839 | return (result & ASUS_WMI_DSTS_PRESENCE_BIT) && |
| 1840 | !(result & ASUS_WMI_FNLOCK_BIOS_DISABLED); |
| 1841 | } |
| 1842 | |
| 1843 | static void asus_wmi_fnlock_update(struct asus_wmi *asus) |
| 1844 | { |
| 1845 | int mode = asus->fnlock_locked; |
| 1846 | |
| 1847 | asus_wmi_set_devstate(ASUS_WMI_DEVID_FNLOCK, mode, NULL); |
| 1848 | } |
| 1849 | |
Yurii Pavlovskyi | 54a3121 | 2019-05-14 21:04:48 +0200 | [diff] [blame] | 1850 | /* WMI events *****************************************************************/ |
| 1851 | |
Yurii Pavlovskyi | 8abd752b | 2019-05-14 21:01:24 +0200 | [diff] [blame] | 1852 | static int asus_wmi_get_event_code(u32 value) |
Yong Wang | 3d7b165 | 2010-04-11 09:27:54 +0800 | [diff] [blame] | 1853 | { |
Yong Wang | 3d7b165 | 2010-04-11 09:27:54 +0800 | [diff] [blame] | 1854 | struct acpi_buffer response = { ACPI_ALLOCATE_BUFFER, NULL }; |
| 1855 | union acpi_object *obj; |
| 1856 | acpi_status status; |
| 1857 | int code; |
Yong Wang | 3d7b165 | 2010-04-11 09:27:54 +0800 | [diff] [blame] | 1858 | |
| 1859 | status = wmi_get_event_data(value, &response); |
Yurii Pavlovskyi | 8abd752b | 2019-05-14 21:01:24 +0200 | [diff] [blame] | 1860 | if (ACPI_FAILURE(status)) { |
| 1861 | pr_warn("Failed to get WMI notify code: %s\n", |
| 1862 | acpi_format_exception(status)); |
| 1863 | return -EIO; |
Yong Wang | 3d7b165 | 2010-04-11 09:27:54 +0800 | [diff] [blame] | 1864 | } |
| 1865 | |
| 1866 | obj = (union acpi_object *)response.pointer; |
| 1867 | |
Yurii Pavlovskyi | 8abd752b | 2019-05-14 21:01:24 +0200 | [diff] [blame] | 1868 | if (obj && obj->type == ACPI_TYPE_INTEGER) |
| 1869 | code = (int)(obj->integer.value & WMI_EVENT_MASK); |
| 1870 | else |
| 1871 | code = -EIO; |
Yong Wang | 3d7b165 | 2010-04-11 09:27:54 +0800 | [diff] [blame] | 1872 | |
Yurii Pavlovskyi | 8abd752b | 2019-05-14 21:01:24 +0200 | [diff] [blame] | 1873 | kfree(obj); |
| 1874 | return code; |
| 1875 | } |
| 1876 | |
| 1877 | static void asus_wmi_handle_event_code(int code, struct asus_wmi *asus) |
| 1878 | { |
| 1879 | int orig_code; |
| 1880 | unsigned int key_value = 1; |
| 1881 | bool autorelease = 1; |
| 1882 | |
Corentin Chary | 57ab7da | 2011-02-26 10:20:32 +0100 | [diff] [blame] | 1883 | orig_code = code; |
Yong Wang | 3d7b165 | 2010-04-11 09:27:54 +0800 | [diff] [blame] | 1884 | |
Seth Forshee | c4453f6 | 2011-07-01 11:34:27 +0200 | [diff] [blame] | 1885 | if (asus->driver->key_filter) { |
| 1886 | asus->driver->key_filter(asus->driver, &code, &key_value, |
| 1887 | &autorelease); |
| 1888 | if (code == ASUS_WMI_KEY_IGNORE) |
Yurii Pavlovskyi | 8abd752b | 2019-05-14 21:01:24 +0200 | [diff] [blame] | 1889 | return; |
Seth Forshee | c4453f6 | 2011-07-01 11:34:27 +0200 | [diff] [blame] | 1890 | } |
| 1891 | |
Corentin Chary | 57ab7da | 2011-02-26 10:20:32 +0100 | [diff] [blame] | 1892 | if (code >= NOTIFY_BRNUP_MIN && code <= NOTIFY_BRNUP_MAX) |
Corentin Chary | 3ba0302 | 2012-11-29 09:12:38 +0100 | [diff] [blame] | 1893 | code = ASUS_WMI_BRN_UP; |
Yurii Pavlovskyi | 8abd752b | 2019-05-14 21:01:24 +0200 | [diff] [blame] | 1894 | else if (code >= NOTIFY_BRNDOWN_MIN && code <= NOTIFY_BRNDOWN_MAX) |
Corentin Chary | 3ba0302 | 2012-11-29 09:12:38 +0100 | [diff] [blame] | 1895 | code = ASUS_WMI_BRN_DOWN; |
Yong Wang | 3d7b165 | 2010-04-11 09:27:54 +0800 | [diff] [blame] | 1896 | |
Corentin Chary | 3ba0302 | 2012-11-29 09:12:38 +0100 | [diff] [blame] | 1897 | if (code == ASUS_WMI_BRN_DOWN || code == ASUS_WMI_BRN_UP) { |
Hans de Goede | 62c4aa1 | 2015-06-16 16:27:58 +0200 | [diff] [blame] | 1898 | if (acpi_video_get_backlight_type() == acpi_backlight_vendor) { |
Corentin Chary | 57ab7da | 2011-02-26 10:20:32 +0100 | [diff] [blame] | 1899 | asus_wmi_backlight_notify(asus, orig_code); |
Yurii Pavlovskyi | 8abd752b | 2019-05-14 21:01:24 +0200 | [diff] [blame] | 1900 | return; |
AceLan Kao | a2a96f0 | 2012-10-03 11:26:31 +0200 | [diff] [blame] | 1901 | } |
AceLan Kao | a2a96f0 | 2012-10-03 11:26:31 +0200 | [diff] [blame] | 1902 | } |
| 1903 | |
Chris Chiu | dbb3d78 | 2018-06-20 22:46:44 +0800 | [diff] [blame] | 1904 | if (code == NOTIFY_KBD_BRTUP) { |
Jian-Hong Pan | 29f6eb5 | 2018-10-22 18:00:04 +0800 | [diff] [blame] | 1905 | kbd_led_set_by_kbd(asus, asus->kbd_led_wk + 1); |
Yurii Pavlovskyi | 8abd752b | 2019-05-14 21:01:24 +0200 | [diff] [blame] | 1906 | return; |
Chris Chiu | dbb3d78 | 2018-06-20 22:46:44 +0800 | [diff] [blame] | 1907 | } |
| 1908 | if (code == NOTIFY_KBD_BRTDWN) { |
Jian-Hong Pan | 29f6eb5 | 2018-10-22 18:00:04 +0800 | [diff] [blame] | 1909 | kbd_led_set_by_kbd(asus, asus->kbd_led_wk - 1); |
Yurii Pavlovskyi | 8abd752b | 2019-05-14 21:01:24 +0200 | [diff] [blame] | 1910 | return; |
Chris Chiu | dbb3d78 | 2018-06-20 22:46:44 +0800 | [diff] [blame] | 1911 | } |
Chris Chiu | ed99d29 | 2018-06-20 22:46:45 +0800 | [diff] [blame] | 1912 | if (code == NOTIFY_KBD_BRTTOGGLE) { |
| 1913 | if (asus->kbd_led_wk == asus->kbd_led.max_brightness) |
Jian-Hong Pan | 29f6eb5 | 2018-10-22 18:00:04 +0800 | [diff] [blame] | 1914 | kbd_led_set_by_kbd(asus, 0); |
Chris Chiu | ed99d29 | 2018-06-20 22:46:45 +0800 | [diff] [blame] | 1915 | else |
Jian-Hong Pan | 29f6eb5 | 2018-10-22 18:00:04 +0800 | [diff] [blame] | 1916 | kbd_led_set_by_kbd(asus, asus->kbd_led_wk + 1); |
Yurii Pavlovskyi | 8abd752b | 2019-05-14 21:01:24 +0200 | [diff] [blame] | 1917 | return; |
Chris Chiu | ed99d29 | 2018-06-20 22:46:45 +0800 | [diff] [blame] | 1918 | } |
Chris Chiu | dbb3d78 | 2018-06-20 22:46:44 +0800 | [diff] [blame] | 1919 | |
Chris Chiu | 487579b | 2019-04-18 14:46:48 +0800 | [diff] [blame] | 1920 | if (code == NOTIFY_FNLOCK_TOGGLE) { |
| 1921 | asus->fnlock_locked = !asus->fnlock_locked; |
| 1922 | asus_wmi_fnlock_update(asus); |
Yurii Pavlovskyi | 8abd752b | 2019-05-14 21:01:24 +0200 | [diff] [blame] | 1923 | return; |
Chris Chiu | 487579b | 2019-04-18 14:46:48 +0800 | [diff] [blame] | 1924 | } |
| 1925 | |
Daniel Drake | 9af93db | 2019-07-17 13:10:58 +0800 | [diff] [blame] | 1926 | if (asus->fan_boost_mode_available && code == NOTIFY_KBD_FBM) { |
| 1927 | fan_boost_mode_switch_next(asus); |
Yurii Pavlovskyi | b096f62 | 2019-05-14 21:07:05 +0200 | [diff] [blame] | 1928 | return; |
| 1929 | } |
| 1930 | |
Yurii Pavlovskyi | 8abd752b | 2019-05-14 21:01:24 +0200 | [diff] [blame] | 1931 | if (is_display_toggle(code) && asus->driver->quirks->no_display_toggle) |
| 1932 | return; |
AceLan Kao | a2a96f0 | 2012-10-03 11:26:31 +0200 | [diff] [blame] | 1933 | |
| 1934 | if (!sparse_keymap_report_event(asus->inputdev, code, |
| 1935 | key_value, autorelease)) |
Corentin Chary | 57ab7da | 2011-02-26 10:20:32 +0100 | [diff] [blame] | 1936 | pr_info("Unknown key %x pressed\n", code); |
Yong Wang | 3d7b165 | 2010-04-11 09:27:54 +0800 | [diff] [blame] | 1937 | } |
| 1938 | |
Yurii Pavlovskyi | 8abd752b | 2019-05-14 21:01:24 +0200 | [diff] [blame] | 1939 | static void asus_wmi_notify(u32 value, void *context) |
| 1940 | { |
| 1941 | struct asus_wmi *asus = context; |
Yurii Pavlovskyi | 1a373d1 | 2019-05-14 21:02:09 +0200 | [diff] [blame] | 1942 | int code; |
| 1943 | int i; |
Yurii Pavlovskyi | 8abd752b | 2019-05-14 21:01:24 +0200 | [diff] [blame] | 1944 | |
Yurii Pavlovskyi | 1a373d1 | 2019-05-14 21:02:09 +0200 | [diff] [blame] | 1945 | for (i = 0; i < WMI_EVENT_QUEUE_SIZE + 1; i++) { |
| 1946 | code = asus_wmi_get_event_code(value); |
| 1947 | |
| 1948 | if (code < 0) { |
| 1949 | pr_warn("Failed to get notify code: %d\n", code); |
| 1950 | return; |
| 1951 | } |
| 1952 | |
| 1953 | if (code == WMI_EVENT_QUEUE_END || code == WMI_EVENT_MASK) |
| 1954 | return; |
| 1955 | |
| 1956 | asus_wmi_handle_event_code(code, asus); |
| 1957 | |
| 1958 | /* |
| 1959 | * Double check that queue is present: |
| 1960 | * ATK (with queue) uses 0xff, ASUSWMI (without) 0xd2. |
| 1961 | */ |
| 1962 | if (!asus->wmi_event_queue || value != WMI_EVENT_VALUE_ATK) |
| 1963 | return; |
Yurii Pavlovskyi | 8abd752b | 2019-05-14 21:01:24 +0200 | [diff] [blame] | 1964 | } |
| 1965 | |
Yurii Pavlovskyi | 1a373d1 | 2019-05-14 21:02:09 +0200 | [diff] [blame] | 1966 | pr_warn("Failed to process event queue, last code: 0x%x\n", code); |
| 1967 | } |
| 1968 | |
| 1969 | static int asus_wmi_notify_queue_flush(struct asus_wmi *asus) |
| 1970 | { |
| 1971 | int code; |
| 1972 | int i; |
| 1973 | |
| 1974 | for (i = 0; i < WMI_EVENT_QUEUE_SIZE + 1; i++) { |
| 1975 | code = asus_wmi_get_event_code(WMI_EVENT_VALUE_ATK); |
| 1976 | |
| 1977 | if (code < 0) { |
| 1978 | pr_warn("Failed to get event during flush: %d\n", code); |
| 1979 | return code; |
| 1980 | } |
| 1981 | |
| 1982 | if (code == WMI_EVENT_QUEUE_END || code == WMI_EVENT_MASK) |
| 1983 | return 0; |
| 1984 | } |
| 1985 | |
| 1986 | pr_warn("Failed to flush event queue\n"); |
| 1987 | return -EIO; |
Yong Wang | ee027e4 | 2010-03-21 10:26:34 +0800 | [diff] [blame] | 1988 | } |
| 1989 | |
Yurii Pavlovskyi | 54a3121 | 2019-05-14 21:04:48 +0200 | [diff] [blame] | 1990 | /* Sysfs **********************************************************************/ |
| 1991 | |
Corentin Chary | 9e1565b | 2011-02-06 13:28:36 +0100 | [diff] [blame] | 1992 | static int parse_arg(const char *buf, unsigned long count, int *val) |
| 1993 | { |
| 1994 | if (!count) |
| 1995 | return 0; |
| 1996 | if (sscanf(buf, "%i", val) != 1) |
| 1997 | return -EINVAL; |
| 1998 | return count; |
| 1999 | } |
| 2000 | |
Corentin Chary | 1d070f8 | 2011-02-26 10:20:36 +0100 | [diff] [blame] | 2001 | static ssize_t store_sys_wmi(struct asus_wmi *asus, int devid, |
| 2002 | const char *buf, size_t count) |
Corentin Chary | 9e1565b | 2011-02-06 13:28:36 +0100 | [diff] [blame] | 2003 | { |
Corentin Chary | 9e1565b | 2011-02-06 13:28:36 +0100 | [diff] [blame] | 2004 | u32 retval; |
Corentin Chary | d33da3b | 2011-02-26 10:20:35 +0100 | [diff] [blame] | 2005 | int rv, err, value; |
Corentin Chary | 9e1565b | 2011-02-06 13:28:36 +0100 | [diff] [blame] | 2006 | |
Corentin Chary | 1d070f8 | 2011-02-26 10:20:36 +0100 | [diff] [blame] | 2007 | value = asus_wmi_get_devstate_simple(asus, devid); |
Dan Carpenter | b829834 | 2015-11-11 01:18:16 +0300 | [diff] [blame] | 2008 | if (value < 0) |
Corentin Chary | 9e1565b | 2011-02-06 13:28:36 +0100 | [diff] [blame] | 2009 | return value; |
| 2010 | |
| 2011 | rv = parse_arg(buf, count, &value); |
Corentin Chary | d33da3b | 2011-02-26 10:20:35 +0100 | [diff] [blame] | 2012 | err = asus_wmi_set_devstate(devid, value, &retval); |
Corentin Chary | 9e1565b | 2011-02-06 13:28:36 +0100 | [diff] [blame] | 2013 | |
Corentin Chary | d33da3b | 2011-02-26 10:20:35 +0100 | [diff] [blame] | 2014 | if (err < 0) |
| 2015 | return err; |
| 2016 | |
Corentin Chary | 9e1565b | 2011-02-06 13:28:36 +0100 | [diff] [blame] | 2017 | return rv; |
| 2018 | } |
| 2019 | |
Corentin Chary | 1d070f8 | 2011-02-26 10:20:36 +0100 | [diff] [blame] | 2020 | 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] | 2021 | { |
Corentin Chary | 1d070f8 | 2011-02-26 10:20:36 +0100 | [diff] [blame] | 2022 | int value = asus_wmi_get_devstate_simple(asus, devid); |
Corentin Chary | 9e1565b | 2011-02-06 13:28:36 +0100 | [diff] [blame] | 2023 | |
| 2024 | if (value < 0) |
| 2025 | return value; |
| 2026 | |
| 2027 | return sprintf(buf, "%d\n", value); |
| 2028 | } |
| 2029 | |
Corentin Chary | e12e6d9 | 2011-02-26 10:20:31 +0100 | [diff] [blame] | 2030 | #define ASUS_WMI_CREATE_DEVICE_ATTR(_name, _mode, _cm) \ |
Corentin Chary | 9e1565b | 2011-02-06 13:28:36 +0100 | [diff] [blame] | 2031 | static ssize_t show_##_name(struct device *dev, \ |
| 2032 | struct device_attribute *attr, \ |
| 2033 | char *buf) \ |
| 2034 | { \ |
Corentin Chary | 1d070f8 | 2011-02-26 10:20:36 +0100 | [diff] [blame] | 2035 | struct asus_wmi *asus = dev_get_drvdata(dev); \ |
| 2036 | \ |
| 2037 | return show_sys_wmi(asus, _cm, buf); \ |
Corentin Chary | 9e1565b | 2011-02-06 13:28:36 +0100 | [diff] [blame] | 2038 | } \ |
| 2039 | static ssize_t store_##_name(struct device *dev, \ |
| 2040 | struct device_attribute *attr, \ |
| 2041 | const char *buf, size_t count) \ |
| 2042 | { \ |
Corentin Chary | 1d070f8 | 2011-02-26 10:20:36 +0100 | [diff] [blame] | 2043 | struct asus_wmi *asus = dev_get_drvdata(dev); \ |
| 2044 | \ |
| 2045 | return store_sys_wmi(asus, _cm, buf, count); \ |
Corentin Chary | 9e1565b | 2011-02-06 13:28:36 +0100 | [diff] [blame] | 2046 | } \ |
| 2047 | static struct device_attribute dev_attr_##_name = { \ |
| 2048 | .attr = { \ |
| 2049 | .name = __stringify(_name), \ |
| 2050 | .mode = _mode }, \ |
| 2051 | .show = show_##_name, \ |
| 2052 | .store = store_##_name, \ |
| 2053 | } |
| 2054 | |
Corentin Chary | e12e6d9 | 2011-02-26 10:20:31 +0100 | [diff] [blame] | 2055 | ASUS_WMI_CREATE_DEVICE_ATTR(touchpad, 0644, ASUS_WMI_DEVID_TOUCHPAD); |
| 2056 | ASUS_WMI_CREATE_DEVICE_ATTR(camera, 0644, ASUS_WMI_DEVID_CAMERA); |
| 2057 | ASUS_WMI_CREATE_DEVICE_ATTR(cardr, 0644, ASUS_WMI_DEVID_CARDREADER); |
AceLan Kao | c0b91b6 | 2012-06-13 09:32:07 +0200 | [diff] [blame] | 2058 | 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] | 2059 | 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] | 2060 | |
Jérémy Lefaure | a8fe342 | 2017-04-21 22:19:45 -0400 | [diff] [blame] | 2061 | static ssize_t cpufv_store(struct device *dev, struct device_attribute *attr, |
Dmitry Torokhov | 67fa38e | 2010-11-03 11:14:01 -0700 | [diff] [blame] | 2062 | const char *buf, size_t count) |
Chris Bagwell | 7f80d73 | 2010-10-11 18:47:18 -0500 | [diff] [blame] | 2063 | { |
Corentin Chary | 3df5fda | 2011-07-01 11:34:38 +0200 | [diff] [blame] | 2064 | int value, rv; |
Chris Bagwell | 7f80d73 | 2010-10-11 18:47:18 -0500 | [diff] [blame] | 2065 | |
| 2066 | if (!count || sscanf(buf, "%i", &value) != 1) |
| 2067 | return -EINVAL; |
| 2068 | if (value < 0 || value > 2) |
| 2069 | return -EINVAL; |
| 2070 | |
Corentin Chary | 3df5fda | 2011-07-01 11:34:38 +0200 | [diff] [blame] | 2071 | rv = asus_wmi_evaluate_method(ASUS_WMI_METHODID_CFVS, value, 0, NULL); |
| 2072 | if (rv < 0) |
| 2073 | return rv; |
| 2074 | |
| 2075 | return count; |
Chris Bagwell | 7f80d73 | 2010-10-11 18:47:18 -0500 | [diff] [blame] | 2076 | } |
| 2077 | |
Jérémy Lefaure | a8fe342 | 2017-04-21 22:19:45 -0400 | [diff] [blame] | 2078 | static DEVICE_ATTR_WO(cpufv); |
Chris Bagwell | 7f80d73 | 2010-10-11 18:47:18 -0500 | [diff] [blame] | 2079 | |
Kristian Klausen | d507a54 | 2019-08-05 21:23:05 +0200 | [diff] [blame^] | 2080 | |
| 2081 | static ssize_t charge_threshold_store(struct device *dev, |
| 2082 | struct device_attribute *attr, |
| 2083 | const char *buf, size_t count) |
| 2084 | { |
| 2085 | struct asus_wmi *asus = dev_get_drvdata(dev); |
| 2086 | int value, ret, rv; |
| 2087 | |
| 2088 | ret = kstrtouint(buf, 10, &value); |
| 2089 | |
| 2090 | if (!count || ret != 0) |
| 2091 | return -EINVAL; |
| 2092 | if (value < 0 || value > 100) |
| 2093 | return -EINVAL; |
| 2094 | |
| 2095 | asus_wmi_set_devstate(ASUS_WMI_CHARGE_THRESHOLD, value, &rv); |
| 2096 | |
| 2097 | if (rv != 1) |
| 2098 | return -EIO; |
| 2099 | |
| 2100 | /* There isn't any method in the DSDT to read the threshold, so we |
| 2101 | * save the threshold. |
| 2102 | */ |
| 2103 | asus->charge_threshold = value; |
| 2104 | return count; |
| 2105 | } |
| 2106 | |
| 2107 | static ssize_t charge_threshold_show(struct device *dev, |
| 2108 | struct device_attribute *attr, char *buf) |
| 2109 | { |
| 2110 | struct asus_wmi *asus = dev_get_drvdata(dev); |
| 2111 | |
| 2112 | return sprintf(buf, "%d\n", asus->charge_threshold); |
| 2113 | } |
| 2114 | |
| 2115 | static DEVICE_ATTR_RW(charge_threshold); |
| 2116 | |
Corentin Chary | 4e37b42 | 2010-11-29 08:14:08 +0100 | [diff] [blame] | 2117 | static struct attribute *platform_attributes[] = { |
| 2118 | &dev_attr_cpufv.attr, |
Corentin Chary | 9e1565b | 2011-02-06 13:28:36 +0100 | [diff] [blame] | 2119 | &dev_attr_camera.attr, |
| 2120 | &dev_attr_cardr.attr, |
Corentin Chary | 4615bb6 | 2011-02-06 13:28:42 +0100 | [diff] [blame] | 2121 | &dev_attr_touchpad.attr, |
AceLan Kao | c0b91b6 | 2012-06-13 09:32:07 +0200 | [diff] [blame] | 2122 | &dev_attr_lid_resume.attr, |
Oleksij Rempel | aca234f | 2016-04-01 13:35:21 +0200 | [diff] [blame] | 2123 | &dev_attr_als_enable.attr, |
Daniel Drake | 9af93db | 2019-07-17 13:10:58 +0800 | [diff] [blame] | 2124 | &dev_attr_fan_boost_mode.attr, |
Kristian Klausen | d507a54 | 2019-08-05 21:23:05 +0200 | [diff] [blame^] | 2125 | &dev_attr_charge_threshold.attr, |
Corentin Chary | 4e37b42 | 2010-11-29 08:14:08 +0100 | [diff] [blame] | 2126 | NULL |
| 2127 | }; |
| 2128 | |
Al Viro | 587a1f1 | 2011-07-23 23:11:19 -0400 | [diff] [blame] | 2129 | static umode_t asus_sysfs_is_visible(struct kobject *kobj, |
Corentin Chary | e12e6d9 | 2011-02-26 10:20:31 +0100 | [diff] [blame] | 2130 | struct attribute *attr, int idx) |
Corentin Chary | 9e1565b | 2011-02-06 13:28:36 +0100 | [diff] [blame] | 2131 | { |
Corentin Chary | 1d070f8 | 2011-02-26 10:20:36 +0100 | [diff] [blame] | 2132 | struct device *dev = container_of(kobj, struct device, kobj); |
Wolfram Sang | d605ca2 | 2018-04-19 16:06:10 +0200 | [diff] [blame] | 2133 | struct asus_wmi *asus = dev_get_drvdata(dev); |
Corentin Chary | 1d070f8 | 2011-02-26 10:20:36 +0100 | [diff] [blame] | 2134 | bool ok = true; |
Corentin Chary | 9e1565b | 2011-02-06 13:28:36 +0100 | [diff] [blame] | 2135 | int devid = -1; |
| 2136 | |
| 2137 | if (attr == &dev_attr_camera.attr) |
Corentin Chary | e12e6d9 | 2011-02-26 10:20:31 +0100 | [diff] [blame] | 2138 | devid = ASUS_WMI_DEVID_CAMERA; |
Corentin Chary | 9e1565b | 2011-02-06 13:28:36 +0100 | [diff] [blame] | 2139 | else if (attr == &dev_attr_cardr.attr) |
Corentin Chary | e12e6d9 | 2011-02-26 10:20:31 +0100 | [diff] [blame] | 2140 | devid = ASUS_WMI_DEVID_CARDREADER; |
Corentin Chary | 4615bb6 | 2011-02-06 13:28:42 +0100 | [diff] [blame] | 2141 | else if (attr == &dev_attr_touchpad.attr) |
Corentin Chary | e12e6d9 | 2011-02-26 10:20:31 +0100 | [diff] [blame] | 2142 | devid = ASUS_WMI_DEVID_TOUCHPAD; |
AceLan Kao | c0b91b6 | 2012-06-13 09:32:07 +0200 | [diff] [blame] | 2143 | else if (attr == &dev_attr_lid_resume.attr) |
| 2144 | devid = ASUS_WMI_DEVID_LID_RESUME; |
Oleksij Rempel | aca234f | 2016-04-01 13:35:21 +0200 | [diff] [blame] | 2145 | else if (attr == &dev_attr_als_enable.attr) |
| 2146 | devid = ASUS_WMI_DEVID_ALS_ENABLE; |
Daniel Drake | 9af93db | 2019-07-17 13:10:58 +0800 | [diff] [blame] | 2147 | else if (attr == &dev_attr_fan_boost_mode.attr) |
| 2148 | ok = asus->fan_boost_mode_available; |
Kristian Klausen | d507a54 | 2019-08-05 21:23:05 +0200 | [diff] [blame^] | 2149 | else if (attr == &dev_attr_charge_threshold.attr) |
| 2150 | devid = ASUS_WMI_CHARGE_THRESHOLD; |
Corentin Chary | 9e1565b | 2011-02-06 13:28:36 +0100 | [diff] [blame] | 2151 | |
| 2152 | if (devid != -1) |
Corentin Chary | 1d070f8 | 2011-02-26 10:20:36 +0100 | [diff] [blame] | 2153 | ok = !(asus_wmi_get_devstate_simple(asus, devid) < 0); |
Corentin Chary | 9e1565b | 2011-02-06 13:28:36 +0100 | [diff] [blame] | 2154 | |
Corentin Chary | 1d070f8 | 2011-02-26 10:20:36 +0100 | [diff] [blame] | 2155 | return ok ? attr->mode : 0; |
Corentin Chary | 9e1565b | 2011-02-06 13:28:36 +0100 | [diff] [blame] | 2156 | } |
| 2157 | |
Arvind Yadav | e90d9ba | 2017-07-11 16:18:19 +0530 | [diff] [blame] | 2158 | static const struct attribute_group platform_attribute_group = { |
Corentin Chary | e12e6d9 | 2011-02-26 10:20:31 +0100 | [diff] [blame] | 2159 | .is_visible = asus_sysfs_is_visible, |
| 2160 | .attrs = platform_attributes |
Corentin Chary | 4e37b42 | 2010-11-29 08:14:08 +0100 | [diff] [blame] | 2161 | }; |
| 2162 | |
Corentin Chary | e12e6d9 | 2011-02-26 10:20:31 +0100 | [diff] [blame] | 2163 | static void asus_wmi_sysfs_exit(struct platform_device *device) |
Chris Bagwell | 7f80d73 | 2010-10-11 18:47:18 -0500 | [diff] [blame] | 2164 | { |
Corentin Chary | 4e37b42 | 2010-11-29 08:14:08 +0100 | [diff] [blame] | 2165 | sysfs_remove_group(&device->dev.kobj, &platform_attribute_group); |
Chris Bagwell | 7f80d73 | 2010-10-11 18:47:18 -0500 | [diff] [blame] | 2166 | } |
| 2167 | |
Corentin Chary | e12e6d9 | 2011-02-26 10:20:31 +0100 | [diff] [blame] | 2168 | static int asus_wmi_sysfs_init(struct platform_device *device) |
Chris Bagwell | 7f80d73 | 2010-10-11 18:47:18 -0500 | [diff] [blame] | 2169 | { |
Corentin Chary | 4e37b42 | 2010-11-29 08:14:08 +0100 | [diff] [blame] | 2170 | return sysfs_create_group(&device->dev.kobj, &platform_attribute_group); |
Chris Bagwell | 7f80d73 | 2010-10-11 18:47:18 -0500 | [diff] [blame] | 2171 | } |
| 2172 | |
Yurii Pavlovskyi | 54a3121 | 2019-05-14 21:04:48 +0200 | [diff] [blame] | 2173 | /* Platform device ************************************************************/ |
| 2174 | |
Joe Perches | 39ddf3b | 2011-03-29 15:21:32 -0700 | [diff] [blame] | 2175 | static int asus_wmi_platform_init(struct asus_wmi *asus) |
Corentin Chary | 27c136c | 2010-11-29 08:14:05 +0100 | [diff] [blame] | 2176 | { |
Yurii Pavlovskyi | e0668f2 | 2019-05-14 21:00:31 +0200 | [diff] [blame] | 2177 | struct device *dev = &asus->platform_device->dev; |
| 2178 | char *wmi_uid; |
Corentin Chary | 46dbca8 | 2011-02-26 10:20:38 +0100 | [diff] [blame] | 2179 | int rv; |
| 2180 | |
| 2181 | /* INIT enable hotkeys on some models */ |
| 2182 | if (!asus_wmi_evaluate_method(ASUS_WMI_METHODID_INIT, 0, 0, &rv)) |
vic | 0ed6065 | 2013-05-22 21:32:10 +0300 | [diff] [blame] | 2183 | pr_info("Initialization: %#x\n", rv); |
Corentin Chary | 46dbca8 | 2011-02-26 10:20:38 +0100 | [diff] [blame] | 2184 | |
| 2185 | /* We don't know yet what to do with this version... */ |
| 2186 | if (!asus_wmi_evaluate_method(ASUS_WMI_METHODID_SPEC, 0, 0x9, &rv)) { |
vic | 0ed6065 | 2013-05-22 21:32:10 +0300 | [diff] [blame] | 2187 | pr_info("BIOS WMI version: %d.%d\n", rv >> 16, rv & 0xFF); |
Corentin Chary | 46dbca8 | 2011-02-26 10:20:38 +0100 | [diff] [blame] | 2188 | asus->spec = rv; |
| 2189 | } |
| 2190 | |
| 2191 | /* |
| 2192 | * The SFUN method probably allows the original driver to get the list |
| 2193 | * of features supported by a given model. For now, 0x0100 or 0x0800 |
| 2194 | * bit signifies that the laptop is equipped with a Wi-Fi MiniPCI card. |
| 2195 | * The significance of others is yet to be found. |
| 2196 | */ |
| 2197 | if (!asus_wmi_evaluate_method(ASUS_WMI_METHODID_SFUN, 0, 0, &rv)) { |
vic | 0ed6065 | 2013-05-22 21:32:10 +0300 | [diff] [blame] | 2198 | pr_info("SFUN value: %#x\n", rv); |
Corentin Chary | 46dbca8 | 2011-02-26 10:20:38 +0100 | [diff] [blame] | 2199 | asus->sfun = rv; |
| 2200 | } |
| 2201 | |
Corentin Chary | 1d070f8 | 2011-02-26 10:20:36 +0100 | [diff] [blame] | 2202 | /* |
| 2203 | * Eee PC and Notebooks seems to have different method_id for DSTS, |
| 2204 | * but it may also be related to the BIOS's SPEC. |
| 2205 | * Note, on most Eeepc, there is no way to check if a method exist |
| 2206 | * or note, while on notebooks, they returns 0xFFFFFFFE on failure, |
| 2207 | * but once again, SPEC may probably be used for that kind of things. |
Yurii Pavlovskyi | e0668f2 | 2019-05-14 21:00:31 +0200 | [diff] [blame] | 2208 | * |
| 2209 | * Additionally at least TUF Gaming series laptops return nothing for |
| 2210 | * unknown methods, so the detection in this way is not possible. |
| 2211 | * |
| 2212 | * There is strong indication that only ACPI WMI devices that have _UID |
| 2213 | * equal to "ASUSWMI" use DCTS whereas those with "ATK" use DSTS. |
Corentin Chary | 1d070f8 | 2011-02-26 10:20:36 +0100 | [diff] [blame] | 2214 | */ |
Yurii Pavlovskyi | e0668f2 | 2019-05-14 21:00:31 +0200 | [diff] [blame] | 2215 | wmi_uid = wmi_get_acpi_device_uid(ASUS_WMI_MGMT_GUID); |
| 2216 | if (!wmi_uid) |
| 2217 | return -ENODEV; |
| 2218 | |
| 2219 | if (!strcmp(wmi_uid, ASUS_ACPI_UID_ASUSWMI)) { |
| 2220 | dev_info(dev, "Detected ASUSWMI, use DCTS\n"); |
| 2221 | asus->dsts_id = ASUS_WMI_METHODID_DCTS; |
| 2222 | } else { |
| 2223 | dev_info(dev, "Detected %s, not ASUSWMI, use DSTS\n", wmi_uid); |
Corentin Chary | 1d070f8 | 2011-02-26 10:20:36 +0100 | [diff] [blame] | 2224 | asus->dsts_id = ASUS_WMI_METHODID_DSTS; |
Yurii Pavlovskyi | e0668f2 | 2019-05-14 21:00:31 +0200 | [diff] [blame] | 2225 | } |
Corentin Chary | 1d070f8 | 2011-02-26 10:20:36 +0100 | [diff] [blame] | 2226 | |
Yurii Pavlovskyi | 1a373d1 | 2019-05-14 21:02:09 +0200 | [diff] [blame] | 2227 | /* |
| 2228 | * Some devices can have multiple event codes stored in a queue before |
| 2229 | * the module load if it was unloaded intermittently after calling |
| 2230 | * the INIT method (enables event handling). The WMI notify handler is |
| 2231 | * expected to retrieve all event codes until a retrieved code equals |
| 2232 | * queue end marker (One or Ones). Old codes are flushed from the queue |
| 2233 | * upon module load. Not enabling this when it should be has minimal |
| 2234 | * visible impact so fall back if anything goes wrong. |
| 2235 | */ |
| 2236 | wmi_uid = wmi_get_acpi_device_uid(asus->driver->event_guid); |
| 2237 | if (wmi_uid && !strcmp(wmi_uid, ASUS_ACPI_UID_ATK)) { |
| 2238 | dev_info(dev, "Detected ATK, enable event queue\n"); |
| 2239 | |
| 2240 | if (!asus_wmi_notify_queue_flush(asus)) |
| 2241 | asus->wmi_event_queue = true; |
| 2242 | } |
Corentin Chary | 1d070f8 | 2011-02-26 10:20:36 +0100 | [diff] [blame] | 2243 | |
Corentin Chary | fddbfed | 2011-07-01 11:34:39 +0200 | [diff] [blame] | 2244 | /* CWAP allow to define the behavior of the Fn+F2 key, |
| 2245 | * this method doesn't seems to be present on Eee PCs */ |
Corentin Chary | 6a2bccc | 2012-03-20 09:53:10 +0100 | [diff] [blame] | 2246 | if (asus->driver->quirks->wapf >= 0) |
Corentin Chary | fddbfed | 2011-07-01 11:34:39 +0200 | [diff] [blame] | 2247 | asus_wmi_set_devstate(ASUS_WMI_DEVID_CWAP, |
Corentin Chary | 6a2bccc | 2012-03-20 09:53:10 +0100 | [diff] [blame] | 2248 | asus->driver->quirks->wapf, NULL); |
Corentin Chary | fddbfed | 2011-07-01 11:34:39 +0200 | [diff] [blame] | 2249 | |
Yurii Pavlovskyi | b096f62 | 2019-05-14 21:07:05 +0200 | [diff] [blame] | 2250 | return 0; |
Corentin Chary | 27c136c | 2010-11-29 08:14:05 +0100 | [diff] [blame] | 2251 | } |
| 2252 | |
Yurii Pavlovskyi | 54a3121 | 2019-05-14 21:04:48 +0200 | [diff] [blame] | 2253 | /* debugfs ********************************************************************/ |
Corentin Chary | 27c136c | 2010-11-29 08:14:05 +0100 | [diff] [blame] | 2254 | |
Corentin Chary | e12e6d9 | 2011-02-26 10:20:31 +0100 | [diff] [blame] | 2255 | struct asus_wmi_debugfs_node { |
| 2256 | struct asus_wmi *asus; |
Corentin Chary | 8c1b2d8 | 2010-11-29 08:14:09 +0100 | [diff] [blame] | 2257 | char *name; |
Corentin Chary | e12e6d9 | 2011-02-26 10:20:31 +0100 | [diff] [blame] | 2258 | int (*show) (struct seq_file *m, void *data); |
Corentin Chary | 8c1b2d8 | 2010-11-29 08:14:09 +0100 | [diff] [blame] | 2259 | }; |
| 2260 | |
| 2261 | static int show_dsts(struct seq_file *m, void *data) |
| 2262 | { |
Corentin Chary | e12e6d9 | 2011-02-26 10:20:31 +0100 | [diff] [blame] | 2263 | struct asus_wmi *asus = m->private; |
Corentin Chary | d33da3b | 2011-02-26 10:20:35 +0100 | [diff] [blame] | 2264 | int err; |
Corentin Chary | 8c1b2d8 | 2010-11-29 08:14:09 +0100 | [diff] [blame] | 2265 | u32 retval = -1; |
| 2266 | |
Corentin Chary | 1d070f8 | 2011-02-26 10:20:36 +0100 | [diff] [blame] | 2267 | err = asus_wmi_get_devstate(asus, asus->debug.dev_id, &retval); |
Corentin Chary | 8c1b2d8 | 2010-11-29 08:14:09 +0100 | [diff] [blame] | 2268 | |
Corentin Chary | d33da3b | 2011-02-26 10:20:35 +0100 | [diff] [blame] | 2269 | if (err < 0) |
| 2270 | return err; |
Corentin Chary | 8c1b2d8 | 2010-11-29 08:14:09 +0100 | [diff] [blame] | 2271 | |
Corentin Chary | ef34349 | 2011-02-26 10:20:39 +0100 | [diff] [blame] | 2272 | seq_printf(m, "DSTS(%#x) = %#x\n", asus->debug.dev_id, retval); |
Corentin Chary | 8c1b2d8 | 2010-11-29 08:14:09 +0100 | [diff] [blame] | 2273 | |
| 2274 | return 0; |
| 2275 | } |
| 2276 | |
| 2277 | static int show_devs(struct seq_file *m, void *data) |
| 2278 | { |
Corentin Chary | e12e6d9 | 2011-02-26 10:20:31 +0100 | [diff] [blame] | 2279 | struct asus_wmi *asus = m->private; |
Corentin Chary | d33da3b | 2011-02-26 10:20:35 +0100 | [diff] [blame] | 2280 | int err; |
Corentin Chary | 8c1b2d8 | 2010-11-29 08:14:09 +0100 | [diff] [blame] | 2281 | u32 retval = -1; |
| 2282 | |
Corentin Chary | d33da3b | 2011-02-26 10:20:35 +0100 | [diff] [blame] | 2283 | err = asus_wmi_set_devstate(asus->debug.dev_id, asus->debug.ctrl_param, |
| 2284 | &retval); |
| 2285 | |
| 2286 | if (err < 0) |
| 2287 | return err; |
Corentin Chary | 8c1b2d8 | 2010-11-29 08:14:09 +0100 | [diff] [blame] | 2288 | |
Corentin Chary | ef34349 | 2011-02-26 10:20:39 +0100 | [diff] [blame] | 2289 | seq_printf(m, "DEVS(%#x, %#x) = %#x\n", asus->debug.dev_id, |
Corentin Chary | e12e6d9 | 2011-02-26 10:20:31 +0100 | [diff] [blame] | 2290 | asus->debug.ctrl_param, retval); |
Corentin Chary | 8c1b2d8 | 2010-11-29 08:14:09 +0100 | [diff] [blame] | 2291 | |
| 2292 | return 0; |
| 2293 | } |
| 2294 | |
Corentin Chary | ef34349 | 2011-02-26 10:20:39 +0100 | [diff] [blame] | 2295 | static int show_call(struct seq_file *m, void *data) |
| 2296 | { |
| 2297 | struct asus_wmi *asus = m->private; |
| 2298 | struct bios_args args = { |
| 2299 | .arg0 = asus->debug.dev_id, |
| 2300 | .arg1 = asus->debug.ctrl_param, |
| 2301 | }; |
| 2302 | struct acpi_buffer input = { (acpi_size) sizeof(args), &args }; |
| 2303 | struct acpi_buffer output = { ACPI_ALLOCATE_BUFFER, NULL }; |
| 2304 | union acpi_object *obj; |
| 2305 | acpi_status status; |
| 2306 | |
| 2307 | status = wmi_evaluate_method(ASUS_WMI_MGMT_GUID, |
Pali Rohár | 0fe5726 | 2017-08-12 09:44:16 +0200 | [diff] [blame] | 2308 | 0, asus->debug.method_id, |
Corentin Chary | ef34349 | 2011-02-26 10:20:39 +0100 | [diff] [blame] | 2309 | &input, &output); |
| 2310 | |
| 2311 | if (ACPI_FAILURE(status)) |
| 2312 | return -EIO; |
| 2313 | |
| 2314 | obj = (union acpi_object *)output.pointer; |
| 2315 | if (obj && obj->type == ACPI_TYPE_INTEGER) |
| 2316 | seq_printf(m, "%#x(%#x, %#x) = %#x\n", asus->debug.method_id, |
| 2317 | asus->debug.dev_id, asus->debug.ctrl_param, |
| 2318 | (u32) obj->integer.value); |
| 2319 | else |
| 2320 | seq_printf(m, "%#x(%#x, %#x) = t:%d\n", asus->debug.method_id, |
| 2321 | asus->debug.dev_id, asus->debug.ctrl_param, |
Dan Carpenter | a1d6086 | 2011-03-15 10:07:37 +0300 | [diff] [blame] | 2322 | obj ? obj->type : -1); |
Corentin Chary | ef34349 | 2011-02-26 10:20:39 +0100 | [diff] [blame] | 2323 | |
| 2324 | kfree(obj); |
| 2325 | |
| 2326 | return 0; |
| 2327 | } |
| 2328 | |
Corentin Chary | e12e6d9 | 2011-02-26 10:20:31 +0100 | [diff] [blame] | 2329 | static struct asus_wmi_debugfs_node asus_wmi_debug_files[] = { |
| 2330 | {NULL, "devs", show_devs}, |
| 2331 | {NULL, "dsts", show_dsts}, |
Corentin Chary | ef34349 | 2011-02-26 10:20:39 +0100 | [diff] [blame] | 2332 | {NULL, "call", show_call}, |
Corentin Chary | 8c1b2d8 | 2010-11-29 08:14:09 +0100 | [diff] [blame] | 2333 | }; |
| 2334 | |
Corentin Chary | e12e6d9 | 2011-02-26 10:20:31 +0100 | [diff] [blame] | 2335 | static int asus_wmi_debugfs_open(struct inode *inode, struct file *file) |
Corentin Chary | 8c1b2d8 | 2010-11-29 08:14:09 +0100 | [diff] [blame] | 2336 | { |
Corentin Chary | e12e6d9 | 2011-02-26 10:20:31 +0100 | [diff] [blame] | 2337 | struct asus_wmi_debugfs_node *node = inode->i_private; |
Corentin Chary | 8c1b2d8 | 2010-11-29 08:14:09 +0100 | [diff] [blame] | 2338 | |
Corentin Chary | e12e6d9 | 2011-02-26 10:20:31 +0100 | [diff] [blame] | 2339 | return single_open(file, node->show, node->asus); |
Corentin Chary | 8c1b2d8 | 2010-11-29 08:14:09 +0100 | [diff] [blame] | 2340 | } |
| 2341 | |
Corentin Chary | e12e6d9 | 2011-02-26 10:20:31 +0100 | [diff] [blame] | 2342 | static const struct file_operations asus_wmi_debugfs_io_ops = { |
Corentin Chary | 8c1b2d8 | 2010-11-29 08:14:09 +0100 | [diff] [blame] | 2343 | .owner = THIS_MODULE, |
Corentin Chary | e12e6d9 | 2011-02-26 10:20:31 +0100 | [diff] [blame] | 2344 | .open = asus_wmi_debugfs_open, |
Corentin Chary | 8c1b2d8 | 2010-11-29 08:14:09 +0100 | [diff] [blame] | 2345 | .read = seq_read, |
| 2346 | .llseek = seq_lseek, |
| 2347 | .release = single_release, |
| 2348 | }; |
| 2349 | |
Corentin Chary | e12e6d9 | 2011-02-26 10:20:31 +0100 | [diff] [blame] | 2350 | static void asus_wmi_debugfs_exit(struct asus_wmi *asus) |
Corentin Chary | 8c1b2d8 | 2010-11-29 08:14:09 +0100 | [diff] [blame] | 2351 | { |
Corentin Chary | e12e6d9 | 2011-02-26 10:20:31 +0100 | [diff] [blame] | 2352 | debugfs_remove_recursive(asus->debug.root); |
Corentin Chary | 8c1b2d8 | 2010-11-29 08:14:09 +0100 | [diff] [blame] | 2353 | } |
| 2354 | |
Greg Kroah-Hartman | d2785d3 | 2019-06-12 14:12:52 +0200 | [diff] [blame] | 2355 | static void asus_wmi_debugfs_init(struct asus_wmi *asus) |
Corentin Chary | 8c1b2d8 | 2010-11-29 08:14:09 +0100 | [diff] [blame] | 2356 | { |
Corentin Chary | 8c1b2d8 | 2010-11-29 08:14:09 +0100 | [diff] [blame] | 2357 | int i; |
| 2358 | |
Corentin Chary | e12e6d9 | 2011-02-26 10:20:31 +0100 | [diff] [blame] | 2359 | asus->debug.root = debugfs_create_dir(asus->driver->name, NULL); |
Corentin Chary | 8c1b2d8 | 2010-11-29 08:14:09 +0100 | [diff] [blame] | 2360 | |
Greg Kroah-Hartman | d2785d3 | 2019-06-12 14:12:52 +0200 | [diff] [blame] | 2361 | debugfs_create_x32("method_id", S_IRUGO | S_IWUSR, asus->debug.root, |
| 2362 | &asus->debug.method_id); |
Corentin Chary | ef34349 | 2011-02-26 10:20:39 +0100 | [diff] [blame] | 2363 | |
Greg Kroah-Hartman | d2785d3 | 2019-06-12 14:12:52 +0200 | [diff] [blame] | 2364 | debugfs_create_x32("dev_id", S_IRUGO | S_IWUSR, asus->debug.root, |
| 2365 | &asus->debug.dev_id); |
Corentin Chary | 8c1b2d8 | 2010-11-29 08:14:09 +0100 | [diff] [blame] | 2366 | |
Greg Kroah-Hartman | d2785d3 | 2019-06-12 14:12:52 +0200 | [diff] [blame] | 2367 | debugfs_create_x32("ctrl_param", S_IRUGO | S_IWUSR, asus->debug.root, |
| 2368 | &asus->debug.ctrl_param); |
Corentin Chary | 8c1b2d8 | 2010-11-29 08:14:09 +0100 | [diff] [blame] | 2369 | |
Corentin Chary | e12e6d9 | 2011-02-26 10:20:31 +0100 | [diff] [blame] | 2370 | for (i = 0; i < ARRAY_SIZE(asus_wmi_debug_files); i++) { |
| 2371 | struct asus_wmi_debugfs_node *node = &asus_wmi_debug_files[i]; |
Corentin Chary | 8c1b2d8 | 2010-11-29 08:14:09 +0100 | [diff] [blame] | 2372 | |
Corentin Chary | e12e6d9 | 2011-02-26 10:20:31 +0100 | [diff] [blame] | 2373 | node->asus = asus; |
Greg Kroah-Hartman | d2785d3 | 2019-06-12 14:12:52 +0200 | [diff] [blame] | 2374 | debugfs_create_file(node->name, S_IFREG | S_IRUGO, |
| 2375 | asus->debug.root, node, |
| 2376 | &asus_wmi_debugfs_io_ops); |
Corentin Chary | 8c1b2d8 | 2010-11-29 08:14:09 +0100 | [diff] [blame] | 2377 | } |
Corentin Chary | 8c1b2d8 | 2010-11-29 08:14:09 +0100 | [diff] [blame] | 2378 | } |
| 2379 | |
Yurii Pavlovskyi | 54a3121 | 2019-05-14 21:04:48 +0200 | [diff] [blame] | 2380 | /* Init / exit ****************************************************************/ |
Kast Bernd | 53e755c | 2015-05-13 16:24:16 +0200 | [diff] [blame] | 2381 | |
Corentin Chary | e12e6d9 | 2011-02-26 10:20:31 +0100 | [diff] [blame] | 2382 | static int asus_wmi_add(struct platform_device *pdev) |
Corentin Chary | afa7c88 | 2011-02-06 13:28:28 +0100 | [diff] [blame] | 2383 | { |
Corentin Chary | e12e6d9 | 2011-02-26 10:20:31 +0100 | [diff] [blame] | 2384 | struct platform_driver *pdrv = to_platform_driver(pdev->dev.driver); |
| 2385 | struct asus_wmi_driver *wdrv = to_asus_wmi_driver(pdrv); |
| 2386 | struct asus_wmi *asus; |
Hans de Goede | d8c66f6 | 2014-07-08 10:47:21 +0200 | [diff] [blame] | 2387 | const char *chassis_type; |
Yong Wang | ee027e4 | 2010-03-21 10:26:34 +0800 | [diff] [blame] | 2388 | acpi_status status; |
Corentin Chary | 27c136c | 2010-11-29 08:14:05 +0100 | [diff] [blame] | 2389 | int err; |
AceLan Kao | a50bd12 | 2012-07-26 17:13:31 +0800 | [diff] [blame] | 2390 | u32 result; |
Yong Wang | ee027e4 | 2010-03-21 10:26:34 +0800 | [diff] [blame] | 2391 | |
Corentin Chary | e12e6d9 | 2011-02-26 10:20:31 +0100 | [diff] [blame] | 2392 | asus = kzalloc(sizeof(struct asus_wmi), GFP_KERNEL); |
| 2393 | if (!asus) |
Corentin Chary | a04ce29 | 2011-02-06 13:28:33 +0100 | [diff] [blame] | 2394 | return -ENOMEM; |
| 2395 | |
Corentin Chary | e12e6d9 | 2011-02-26 10:20:31 +0100 | [diff] [blame] | 2396 | asus->driver = wdrv; |
| 2397 | asus->platform_device = pdev; |
| 2398 | wdrv->platform_device = pdev; |
| 2399 | platform_set_drvdata(asus->platform_device, asus); |
Corentin Chary | 27c136c | 2010-11-29 08:14:05 +0100 | [diff] [blame] | 2400 | |
AceLan Kao | c87992d | 2012-03-20 09:53:08 +0100 | [diff] [blame] | 2401 | if (wdrv->detect_quirks) |
| 2402 | wdrv->detect_quirks(asus->driver); |
Corentin Chary | afa7c88 | 2011-02-06 13:28:28 +0100 | [diff] [blame] | 2403 | |
Corentin Chary | e12e6d9 | 2011-02-26 10:20:31 +0100 | [diff] [blame] | 2404 | err = asus_wmi_platform_init(asus); |
Corentin Chary | 27c136c | 2010-11-29 08:14:05 +0100 | [diff] [blame] | 2405 | if (err) |
| 2406 | goto fail_platform; |
Yong Wang | 45f2c69 | 2010-04-11 09:27:19 +0800 | [diff] [blame] | 2407 | |
Daniel Drake | 9af93db | 2019-07-17 13:10:58 +0800 | [diff] [blame] | 2408 | err = fan_boost_mode_check_present(asus); |
Yurii Pavlovskyi | b096f62 | 2019-05-14 21:07:05 +0200 | [diff] [blame] | 2409 | if (err) |
Daniel Drake | 9af93db | 2019-07-17 13:10:58 +0800 | [diff] [blame] | 2410 | goto fail_fan_boost_mode; |
Yurii Pavlovskyi | b096f62 | 2019-05-14 21:07:05 +0200 | [diff] [blame] | 2411 | |
| 2412 | err = asus_wmi_sysfs_init(asus->platform_device); |
| 2413 | if (err) |
| 2414 | goto fail_sysfs; |
| 2415 | |
Corentin Chary | e12e6d9 | 2011-02-26 10:20:31 +0100 | [diff] [blame] | 2416 | err = asus_wmi_input_init(asus); |
Yong Wang | 45f2c69 | 2010-04-11 09:27:19 +0800 | [diff] [blame] | 2417 | if (err) |
Corentin Chary | 27c136c | 2010-11-29 08:14:05 +0100 | [diff] [blame] | 2418 | goto fail_input; |
Yong Wang | 3d7b165 | 2010-04-11 09:27:54 +0800 | [diff] [blame] | 2419 | |
Kast Bernd | 53e755c | 2015-05-13 16:24:16 +0200 | [diff] [blame] | 2420 | err = asus_wmi_fan_init(asus); /* probably no problems on error */ |
Kast Bernd | 53e755c | 2015-05-13 16:24:16 +0200 | [diff] [blame] | 2421 | |
Corentin Chary | e07babd | 2011-02-26 10:20:42 +0100 | [diff] [blame] | 2422 | err = asus_wmi_hwmon_init(asus); |
| 2423 | if (err) |
| 2424 | goto fail_hwmon; |
| 2425 | |
Corentin Chary | e12e6d9 | 2011-02-26 10:20:31 +0100 | [diff] [blame] | 2426 | err = asus_wmi_led_init(asus); |
Corentin Chary | 084fca6 | 2010-11-29 08:14:06 +0100 | [diff] [blame] | 2427 | if (err) |
| 2428 | goto fail_leds; |
| 2429 | |
João Paulo Rechi Vita | 71050ae | 2017-02-20 14:50:22 -0500 | [diff] [blame] | 2430 | asus_wmi_get_devstate(asus, ASUS_WMI_DEVID_WLAN, &result); |
| 2431 | if (result & (ASUS_WMI_DSTS_PRESENCE_BIT | ASUS_WMI_DSTS_USER_BIT)) |
| 2432 | asus->driver->wlan_ctrl_by_user = 1; |
| 2433 | |
João Paulo Rechi Vita | d1c4e9b | 2017-02-20 14:50:23 -0500 | [diff] [blame] | 2434 | if (!(asus->driver->wlan_ctrl_by_user && ashs_present())) { |
João Paulo Rechi Vita | a977e59 | 2016-06-13 16:57:31 -0400 | [diff] [blame] | 2435 | err = asus_wmi_rfkill_init(asus); |
| 2436 | if (err) |
| 2437 | goto fail_rfkill; |
| 2438 | } |
Corentin Chary | ba48fdb | 2010-11-29 08:14:07 +0100 | [diff] [blame] | 2439 | |
Oleksij Rempel | e9b6151 | 2017-04-28 16:19:49 +0200 | [diff] [blame] | 2440 | if (asus->driver->quirks->wmi_force_als_set) |
| 2441 | asus_wmi_set_als(); |
| 2442 | |
Hans de Goede | d8c66f6 | 2014-07-08 10:47:21 +0200 | [diff] [blame] | 2443 | /* Some Asus desktop boards export an acpi-video backlight interface, |
| 2444 | stop this from showing up */ |
| 2445 | chassis_type = dmi_get_system_info(DMI_CHASSIS_TYPE); |
| 2446 | if (chassis_type && !strcmp(chassis_type, "3")) |
Hans de Goede | 62c4aa1 | 2015-06-16 16:27:58 +0200 | [diff] [blame] | 2447 | acpi_video_set_dmi_backlight_type(acpi_backlight_vendor); |
| 2448 | |
AceLan Kao | 272c77d | 2012-06-13 09:32:06 +0200 | [diff] [blame] | 2449 | if (asus->driver->quirks->wmi_backlight_power) |
Hans de Goede | 62c4aa1 | 2015-06-16 16:27:58 +0200 | [diff] [blame] | 2450 | acpi_video_set_dmi_backlight_type(acpi_backlight_vendor); |
| 2451 | |
zino lin | 999d437 | 2016-08-28 16:12:06 +0800 | [diff] [blame] | 2452 | if (asus->driver->quirks->wmi_backlight_native) |
| 2453 | acpi_video_set_dmi_backlight_type(acpi_backlight_native); |
| 2454 | |
Kai-Chuan Hsieh | 8023eff | 2016-09-01 23:55:55 +0800 | [diff] [blame] | 2455 | if (asus->driver->quirks->xusb2pr) |
| 2456 | asus_wmi_set_xusb2pr(asus); |
| 2457 | |
Hans de Goede | 62c4aa1 | 2015-06-16 16:27:58 +0200 | [diff] [blame] | 2458 | if (acpi_video_get_backlight_type() == acpi_backlight_vendor) { |
Corentin Chary | e12e6d9 | 2011-02-26 10:20:31 +0100 | [diff] [blame] | 2459 | err = asus_wmi_backlight_init(asus); |
Corentin Chary | b718726 | 2011-02-06 13:28:39 +0100 | [diff] [blame] | 2460 | if (err && err != -ENODEV) |
Corentin Chary | 27c136c | 2010-11-29 08:14:05 +0100 | [diff] [blame] | 2461 | goto fail_backlight; |
Hans de Goede | 401fee8 | 2019-06-12 09:02:02 +0200 | [diff] [blame] | 2462 | } else if (asus->driver->quirks->wmi_backlight_set_devstate) |
João Paulo Rechi Vita | 78f3ac7 | 2018-10-31 17:21:26 -0700 | [diff] [blame] | 2463 | err = asus_wmi_set_devstate(ASUS_WMI_DEVID_BACKLIGHT, 2, NULL); |
Yong Wang | 45f2c69 | 2010-04-11 09:27:19 +0800 | [diff] [blame] | 2464 | |
Chris Chiu | 487579b | 2019-04-18 14:46:48 +0800 | [diff] [blame] | 2465 | if (asus_wmi_has_fnlock_key(asus)) { |
| 2466 | asus->fnlock_locked = true; |
| 2467 | asus_wmi_fnlock_update(asus); |
| 2468 | } |
| 2469 | |
Corentin Chary | e12e6d9 | 2011-02-26 10:20:31 +0100 | [diff] [blame] | 2470 | status = wmi_install_notify_handler(asus->driver->event_guid, |
| 2471 | asus_wmi_notify, asus); |
Yong Wang | 45f2c69 | 2010-04-11 09:27:19 +0800 | [diff] [blame] | 2472 | if (ACPI_FAILURE(status)) { |
Corentin Chary | e12e6d9 | 2011-02-26 10:20:31 +0100 | [diff] [blame] | 2473 | pr_err("Unable to register notify handler - %d\n", status); |
Yong Wang | 45f2c69 | 2010-04-11 09:27:19 +0800 | [diff] [blame] | 2474 | err = -ENODEV; |
Corentin Chary | 27c136c | 2010-11-29 08:14:05 +0100 | [diff] [blame] | 2475 | goto fail_wmi_handler; |
Yong Wang | 45f2c69 | 2010-04-11 09:27:19 +0800 | [diff] [blame] | 2476 | } |
| 2477 | |
Greg Kroah-Hartman | d2785d3 | 2019-06-12 14:12:52 +0200 | [diff] [blame] | 2478 | asus_wmi_debugfs_init(asus); |
Kristian Klausen | d507a54 | 2019-08-05 21:23:05 +0200 | [diff] [blame^] | 2479 | /* The charge threshold is only reset when the system is power cycled, |
| 2480 | * and we can't get the current threshold so let set it to 100% on |
| 2481 | * module load. |
| 2482 | */ |
| 2483 | asus_wmi_set_devstate(ASUS_WMI_CHARGE_THRESHOLD, 100, NULL); |
| 2484 | asus->charge_threshold = 100; |
Corentin Chary | 8c1b2d8 | 2010-11-29 08:14:09 +0100 | [diff] [blame] | 2485 | |
Corentin Chary | a04ce29 | 2011-02-06 13:28:33 +0100 | [diff] [blame] | 2486 | return 0; |
Yong Wang | 45f2c69 | 2010-04-11 09:27:19 +0800 | [diff] [blame] | 2487 | |
Corentin Chary | 27c136c | 2010-11-29 08:14:05 +0100 | [diff] [blame] | 2488 | fail_wmi_handler: |
Corentin Chary | e12e6d9 | 2011-02-26 10:20:31 +0100 | [diff] [blame] | 2489 | asus_wmi_backlight_exit(asus); |
Corentin Chary | 27c136c | 2010-11-29 08:14:05 +0100 | [diff] [blame] | 2490 | fail_backlight: |
Corentin Chary | e12e6d9 | 2011-02-26 10:20:31 +0100 | [diff] [blame] | 2491 | asus_wmi_rfkill_exit(asus); |
Corentin Chary | ba48fdb | 2010-11-29 08:14:07 +0100 | [diff] [blame] | 2492 | fail_rfkill: |
Corentin Chary | e12e6d9 | 2011-02-26 10:20:31 +0100 | [diff] [blame] | 2493 | asus_wmi_led_exit(asus); |
Corentin Chary | 084fca6 | 2010-11-29 08:14:06 +0100 | [diff] [blame] | 2494 | fail_leds: |
Corentin Chary | e07babd | 2011-02-26 10:20:42 +0100 | [diff] [blame] | 2495 | fail_hwmon: |
Corentin Chary | e12e6d9 | 2011-02-26 10:20:31 +0100 | [diff] [blame] | 2496 | asus_wmi_input_exit(asus); |
Corentin Chary | 27c136c | 2010-11-29 08:14:05 +0100 | [diff] [blame] | 2497 | fail_input: |
Yurii Pavlovskyi | b096f62 | 2019-05-14 21:07:05 +0200 | [diff] [blame] | 2498 | asus_wmi_sysfs_exit(asus->platform_device); |
| 2499 | fail_sysfs: |
Daniel Drake | 9af93db | 2019-07-17 13:10:58 +0800 | [diff] [blame] | 2500 | fail_fan_boost_mode: |
Corentin Chary | 27c136c | 2010-11-29 08:14:05 +0100 | [diff] [blame] | 2501 | fail_platform: |
Corentin Chary | e12e6d9 | 2011-02-26 10:20:31 +0100 | [diff] [blame] | 2502 | kfree(asus); |
Corentin Chary | a04ce29 | 2011-02-06 13:28:33 +0100 | [diff] [blame] | 2503 | return err; |
Yong Wang | 45f2c69 | 2010-04-11 09:27:19 +0800 | [diff] [blame] | 2504 | } |
| 2505 | |
Corentin Chary | e12e6d9 | 2011-02-26 10:20:31 +0100 | [diff] [blame] | 2506 | static int asus_wmi_remove(struct platform_device *device) |
Yong Wang | 45f2c69 | 2010-04-11 09:27:19 +0800 | [diff] [blame] | 2507 | { |
Corentin Chary | e12e6d9 | 2011-02-26 10:20:31 +0100 | [diff] [blame] | 2508 | struct asus_wmi *asus; |
Yong Wang | 45f2c69 | 2010-04-11 09:27:19 +0800 | [diff] [blame] | 2509 | |
Corentin Chary | e12e6d9 | 2011-02-26 10:20:31 +0100 | [diff] [blame] | 2510 | asus = platform_get_drvdata(device); |
| 2511 | wmi_remove_notify_handler(asus->driver->event_guid); |
| 2512 | asus_wmi_backlight_exit(asus); |
| 2513 | asus_wmi_input_exit(asus); |
| 2514 | asus_wmi_led_exit(asus); |
| 2515 | asus_wmi_rfkill_exit(asus); |
| 2516 | asus_wmi_debugfs_exit(asus); |
Yurii Pavlovskyi | b096f62 | 2019-05-14 21:07:05 +0200 | [diff] [blame] | 2517 | asus_wmi_sysfs_exit(asus->platform_device); |
Daniel Drake | 2889ffc | 2019-07-29 16:27:37 +0800 | [diff] [blame] | 2518 | asus_fan_set_auto(asus); |
Yong Wang | 45f2c69 | 2010-04-11 09:27:19 +0800 | [diff] [blame] | 2519 | |
Corentin Chary | e12e6d9 | 2011-02-26 10:20:31 +0100 | [diff] [blame] | 2520 | kfree(asus); |
Yong Wang | 45f2c69 | 2010-04-11 09:27:19 +0800 | [diff] [blame] | 2521 | return 0; |
| 2522 | } |
| 2523 | |
Yurii Pavlovskyi | 54a3121 | 2019-05-14 21:04:48 +0200 | [diff] [blame] | 2524 | /* Platform driver - hibernate/resume callbacks *******************************/ |
| 2525 | |
Corentin Chary | e12e6d9 | 2011-02-26 10:20:31 +0100 | [diff] [blame] | 2526 | static int asus_hotk_thaw(struct device *device) |
Corentin Chary | 0773d7f | 2011-02-06 13:28:32 +0100 | [diff] [blame] | 2527 | { |
Corentin Chary | e12e6d9 | 2011-02-26 10:20:31 +0100 | [diff] [blame] | 2528 | struct asus_wmi *asus = dev_get_drvdata(device); |
Corentin Chary | 0773d7f | 2011-02-06 13:28:32 +0100 | [diff] [blame] | 2529 | |
Corentin Chary | a7ce3f0 | 2011-02-26 10:20:33 +0100 | [diff] [blame] | 2530 | if (asus->wlan.rfkill) { |
Corentin Chary | 0773d7f | 2011-02-06 13:28:32 +0100 | [diff] [blame] | 2531 | bool wlan; |
| 2532 | |
| 2533 | /* |
| 2534 | * Work around bios bug - acpi _PTS turns off the wireless led |
| 2535 | * during suspend. Normally it restores it on resume, but |
| 2536 | * we should kick it ourselves in case hibernation is aborted. |
| 2537 | */ |
Corentin Chary | 1d070f8 | 2011-02-26 10:20:36 +0100 | [diff] [blame] | 2538 | wlan = asus_wmi_get_devstate_simple(asus, ASUS_WMI_DEVID_WLAN); |
Corentin Chary | e12e6d9 | 2011-02-26 10:20:31 +0100 | [diff] [blame] | 2539 | asus_wmi_set_devstate(ASUS_WMI_DEVID_WLAN, wlan, NULL); |
Corentin Chary | 0773d7f | 2011-02-06 13:28:32 +0100 | [diff] [blame] | 2540 | } |
| 2541 | |
| 2542 | return 0; |
| 2543 | } |
| 2544 | |
Oleksij Rempel | 3073404 | 2015-09-14 11:16:30 +0200 | [diff] [blame] | 2545 | static int asus_hotk_resume(struct device *device) |
| 2546 | { |
| 2547 | struct asus_wmi *asus = dev_get_drvdata(device); |
| 2548 | |
| 2549 | if (!IS_ERR_OR_NULL(asus->kbd_led.dev)) |
Jian-Hong Pan | 9fe44fc | 2018-09-27 16:50:09 +0800 | [diff] [blame] | 2550 | kbd_led_update(asus); |
Oleksij Rempel | 3073404 | 2015-09-14 11:16:30 +0200 | [diff] [blame] | 2551 | |
Chris Chiu | 487579b | 2019-04-18 14:46:48 +0800 | [diff] [blame] | 2552 | if (asus_wmi_has_fnlock_key(asus)) |
| 2553 | asus_wmi_fnlock_update(asus); |
Oleksij Rempel | 3073404 | 2015-09-14 11:16:30 +0200 | [diff] [blame] | 2554 | return 0; |
| 2555 | } |
| 2556 | |
Corentin Chary | e12e6d9 | 2011-02-26 10:20:31 +0100 | [diff] [blame] | 2557 | static int asus_hotk_restore(struct device *device) |
Corentin Chary | 0773d7f | 2011-02-06 13:28:32 +0100 | [diff] [blame] | 2558 | { |
Corentin Chary | e12e6d9 | 2011-02-26 10:20:31 +0100 | [diff] [blame] | 2559 | struct asus_wmi *asus = dev_get_drvdata(device); |
Corentin Chary | 0773d7f | 2011-02-06 13:28:32 +0100 | [diff] [blame] | 2560 | int bl; |
| 2561 | |
| 2562 | /* Refresh both wlan rfkill state and pci hotplug */ |
Corentin Chary | a7ce3f0 | 2011-02-26 10:20:33 +0100 | [diff] [blame] | 2563 | if (asus->wlan.rfkill) |
Corentin Chary | e12e6d9 | 2011-02-26 10:20:31 +0100 | [diff] [blame] | 2564 | asus_rfkill_hotplug(asus); |
Corentin Chary | 0773d7f | 2011-02-06 13:28:32 +0100 | [diff] [blame] | 2565 | |
Corentin Chary | a7ce3f0 | 2011-02-26 10:20:33 +0100 | [diff] [blame] | 2566 | if (asus->bluetooth.rfkill) { |
Corentin Chary | 1d070f8 | 2011-02-26 10:20:36 +0100 | [diff] [blame] | 2567 | bl = !asus_wmi_get_devstate_simple(asus, |
| 2568 | ASUS_WMI_DEVID_BLUETOOTH); |
Corentin Chary | a7ce3f0 | 2011-02-26 10:20:33 +0100 | [diff] [blame] | 2569 | rfkill_set_sw_state(asus->bluetooth.rfkill, bl); |
Corentin Chary | 2e9e159 | 2011-02-06 13:28:37 +0100 | [diff] [blame] | 2570 | } |
Corentin Chary | a7ce3f0 | 2011-02-26 10:20:33 +0100 | [diff] [blame] | 2571 | if (asus->wimax.rfkill) { |
Corentin Chary | 1d070f8 | 2011-02-26 10:20:36 +0100 | [diff] [blame] | 2572 | bl = !asus_wmi_get_devstate_simple(asus, ASUS_WMI_DEVID_WIMAX); |
Corentin Chary | a7ce3f0 | 2011-02-26 10:20:33 +0100 | [diff] [blame] | 2573 | rfkill_set_sw_state(asus->wimax.rfkill, bl); |
Corentin Chary | 2e9e159 | 2011-02-06 13:28:37 +0100 | [diff] [blame] | 2574 | } |
Corentin Chary | a7ce3f0 | 2011-02-26 10:20:33 +0100 | [diff] [blame] | 2575 | if (asus->wwan3g.rfkill) { |
Corentin Chary | 1d070f8 | 2011-02-26 10:20:36 +0100 | [diff] [blame] | 2576 | bl = !asus_wmi_get_devstate_simple(asus, ASUS_WMI_DEVID_WWAN3G); |
Corentin Chary | a7ce3f0 | 2011-02-26 10:20:33 +0100 | [diff] [blame] | 2577 | rfkill_set_sw_state(asus->wwan3g.rfkill, bl); |
Corentin Chary | 0773d7f | 2011-02-06 13:28:32 +0100 | [diff] [blame] | 2578 | } |
Corentin Chary | 43be8bd | 2011-07-01 11:34:40 +0200 | [diff] [blame] | 2579 | if (asus->gps.rfkill) { |
| 2580 | bl = !asus_wmi_get_devstate_simple(asus, ASUS_WMI_DEVID_GPS); |
| 2581 | rfkill_set_sw_state(asus->gps.rfkill, bl); |
| 2582 | } |
Corentin Chary | a912d32 | 2011-07-01 11:34:41 +0200 | [diff] [blame] | 2583 | if (asus->uwb.rfkill) { |
| 2584 | bl = !asus_wmi_get_devstate_simple(asus, ASUS_WMI_DEVID_UWB); |
| 2585 | rfkill_set_sw_state(asus->uwb.rfkill, bl); |
| 2586 | } |
Oleksij Rempel | 3073404 | 2015-09-14 11:16:30 +0200 | [diff] [blame] | 2587 | if (!IS_ERR_OR_NULL(asus->kbd_led.dev)) |
Jian-Hong Pan | 9fe44fc | 2018-09-27 16:50:09 +0800 | [diff] [blame] | 2588 | kbd_led_update(asus); |
Corentin Chary | 0773d7f | 2011-02-06 13:28:32 +0100 | [diff] [blame] | 2589 | |
Chris Chiu | 487579b | 2019-04-18 14:46:48 +0800 | [diff] [blame] | 2590 | if (asus_wmi_has_fnlock_key(asus)) |
| 2591 | asus_wmi_fnlock_update(asus); |
Corentin Chary | 0773d7f | 2011-02-06 13:28:32 +0100 | [diff] [blame] | 2592 | return 0; |
| 2593 | } |
| 2594 | |
Corentin Chary | e12e6d9 | 2011-02-26 10:20:31 +0100 | [diff] [blame] | 2595 | static const struct dev_pm_ops asus_pm_ops = { |
| 2596 | .thaw = asus_hotk_thaw, |
| 2597 | .restore = asus_hotk_restore, |
Oleksij Rempel | 3073404 | 2015-09-14 11:16:30 +0200 | [diff] [blame] | 2598 | .resume = asus_hotk_resume, |
Corentin Chary | 0773d7f | 2011-02-06 13:28:32 +0100 | [diff] [blame] | 2599 | }; |
| 2600 | |
Yurii Pavlovskyi | 54a3121 | 2019-05-14 21:04:48 +0200 | [diff] [blame] | 2601 | /* Registration ***************************************************************/ |
| 2602 | |
Corentin Chary | e12e6d9 | 2011-02-26 10:20:31 +0100 | [diff] [blame] | 2603 | static int asus_wmi_probe(struct platform_device *pdev) |
Corentin Chary | d358cb5 | 2010-11-29 08:14:14 +0100 | [diff] [blame] | 2604 | { |
Corentin Chary | e12e6d9 | 2011-02-26 10:20:31 +0100 | [diff] [blame] | 2605 | struct platform_driver *pdrv = to_platform_driver(pdev->dev.driver); |
| 2606 | struct asus_wmi_driver *wdrv = to_asus_wmi_driver(pdrv); |
| 2607 | int ret; |
Corentin Chary | d358cb5 | 2010-11-29 08:14:14 +0100 | [diff] [blame] | 2608 | |
Corentin Chary | e12e6d9 | 2011-02-26 10:20:31 +0100 | [diff] [blame] | 2609 | if (!wmi_has_guid(ASUS_WMI_MGMT_GUID)) { |
Hans de Goede | c994611 | 2019-01-21 14:24:36 +0100 | [diff] [blame] | 2610 | pr_warn("ASUS Management GUID not found\n"); |
Yong Wang | ee027e4 | 2010-03-21 10:26:34 +0800 | [diff] [blame] | 2611 | return -ENODEV; |
| 2612 | } |
| 2613 | |
Corentin Chary | e12e6d9 | 2011-02-26 10:20:31 +0100 | [diff] [blame] | 2614 | if (wdrv->event_guid && !wmi_has_guid(wdrv->event_guid)) { |
Hans de Goede | c994611 | 2019-01-21 14:24:36 +0100 | [diff] [blame] | 2615 | pr_warn("ASUS Event GUID not found\n"); |
Corentin Chary | d358cb5 | 2010-11-29 08:14:14 +0100 | [diff] [blame] | 2616 | return -ENODEV; |
| 2617 | } |
| 2618 | |
Corentin Chary | e12e6d9 | 2011-02-26 10:20:31 +0100 | [diff] [blame] | 2619 | if (wdrv->probe) { |
| 2620 | ret = wdrv->probe(pdev); |
| 2621 | if (ret) |
| 2622 | return ret; |
| 2623 | } |
| 2624 | |
| 2625 | return asus_wmi_add(pdev); |
Corentin Chary | a04ce29 | 2011-02-06 13:28:33 +0100 | [diff] [blame] | 2626 | } |
Yong Wang | ee027e4 | 2010-03-21 10:26:34 +0800 | [diff] [blame] | 2627 | |
Corentin Chary | e12e6d9 | 2011-02-26 10:20:31 +0100 | [diff] [blame] | 2628 | static bool used; |
Yong Wang | ee027e4 | 2010-03-21 10:26:34 +0800 | [diff] [blame] | 2629 | |
Corentin Chary | 8fe8c25 | 2011-07-01 11:34:32 +0200 | [diff] [blame] | 2630 | 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] | 2631 | { |
Corentin Chary | e12e6d9 | 2011-02-26 10:20:31 +0100 | [diff] [blame] | 2632 | struct platform_driver *platform_driver; |
| 2633 | struct platform_device *platform_device; |
| 2634 | |
| 2635 | if (used) |
| 2636 | return -EBUSY; |
| 2637 | |
| 2638 | platform_driver = &driver->platform_driver; |
| 2639 | platform_driver->remove = asus_wmi_remove; |
| 2640 | platform_driver->driver.owner = driver->owner; |
| 2641 | platform_driver->driver.name = driver->name; |
| 2642 | platform_driver->driver.pm = &asus_pm_ops; |
| 2643 | |
| 2644 | platform_device = platform_create_bundle(platform_driver, |
| 2645 | asus_wmi_probe, |
Corentin Chary | a04ce29 | 2011-02-06 13:28:33 +0100 | [diff] [blame] | 2646 | NULL, 0, NULL, 0); |
| 2647 | if (IS_ERR(platform_device)) |
| 2648 | return PTR_ERR(platform_device); |
Corentin Chary | e12e6d9 | 2011-02-26 10:20:31 +0100 | [diff] [blame] | 2649 | |
| 2650 | used = true; |
| 2651 | return 0; |
| 2652 | } |
| 2653 | EXPORT_SYMBOL_GPL(asus_wmi_register_driver); |
| 2654 | |
| 2655 | void asus_wmi_unregister_driver(struct asus_wmi_driver *driver) |
| 2656 | { |
| 2657 | platform_device_unregister(driver->platform_device); |
| 2658 | platform_driver_unregister(&driver->platform_driver); |
| 2659 | used = false; |
| 2660 | } |
| 2661 | EXPORT_SYMBOL_GPL(asus_wmi_unregister_driver); |
| 2662 | |
| 2663 | static int __init asus_wmi_init(void) |
| 2664 | { |
vic | 0ed6065 | 2013-05-22 21:32:10 +0300 | [diff] [blame] | 2665 | pr_info("ASUS WMI generic driver loaded\n"); |
Yong Wang | ee027e4 | 2010-03-21 10:26:34 +0800 | [diff] [blame] | 2666 | return 0; |
| 2667 | } |
| 2668 | |
Corentin Chary | e12e6d9 | 2011-02-26 10:20:31 +0100 | [diff] [blame] | 2669 | static void __exit asus_wmi_exit(void) |
Yong Wang | ee027e4 | 2010-03-21 10:26:34 +0800 | [diff] [blame] | 2670 | { |
vic | 0ed6065 | 2013-05-22 21:32:10 +0300 | [diff] [blame] | 2671 | pr_info("ASUS WMI generic driver unloaded\n"); |
Yong Wang | ee027e4 | 2010-03-21 10:26:34 +0800 | [diff] [blame] | 2672 | } |
| 2673 | |
Corentin Chary | e12e6d9 | 2011-02-26 10:20:31 +0100 | [diff] [blame] | 2674 | module_init(asus_wmi_init); |
| 2675 | module_exit(asus_wmi_exit); |