1 // SPDX-License-Identifier: GPL-2.0-or-later
3 * Asus PC WMI hotkey driver
5 * Copyright(C) 2010 Intel Corporation.
8 * Portions based on wistron_btns.c:
14 #define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
16 #include <linux/acpi.h>
17 #include <linux/backlight.h>
18 #include <linux/debugfs.h>
19 #include <linux/dmi.h>
21 #include <linux/hwmon.h>
22 #include <linux/hwmon-sysfs.h>
23 #include <linux/init.h>
24 #include <linux/input.h>
25 #include <linux/input/sparse-keymap.h>
26 #include <linux/kernel.h>
27 #include <linux/leds.h>
28 #include <linux/module.h>
29 #include <linux/pci.h>
30 #include <linux/pci_hotplug.h>
31 #include <linux/platform_data/x86/asus-wmi.h>
32 #include <linux/platform_device.h>
33 #include <linux/platform_profile.h>
34 #include <linux/power_supply.h>
35 #include <linux/rfkill.h>
36 #include <linux/seq_file.h>
37 #include <linux/slab.h>
38 #include <linux/types.h>
39 #include <linux/units.h>
41 #include <acpi/battery.h>
42 #include <acpi/video.h>
48 MODULE_DESCRIPTION("Asus Generic WMI Driver");
49 MODULE_LICENSE("GPL");
51 static bool fnlock_default = true;
52 module_param(fnlock_default, bool, 0444);
54 #define to_asus_wmi_driver(pdrv) \
55 (container_of((pdrv), struct asus_wmi_driver, platform_driver))
57 #define ASUS_WMI_MGMT_GUID "97845ED0-4E6D-11DE-8A39-0800200C9A66"
59 #define NOTIFY_BRNUP_MIN 0x11
60 #define NOTIFY_BRNUP_MAX 0x1f
61 #define NOTIFY_BRNDOWN_MIN 0x20
62 #define NOTIFY_BRNDOWN_MAX 0x2e
63 #define NOTIFY_FNLOCK_TOGGLE 0x4e
64 #define NOTIFY_KBD_DOCK_CHANGE 0x75
65 #define NOTIFY_KBD_BRTUP 0xc4
66 #define NOTIFY_KBD_BRTDWN 0xc5
67 #define NOTIFY_KBD_BRTTOGGLE 0xc7
68 #define NOTIFY_KBD_FBM 0x99
69 #define NOTIFY_KBD_TTP 0xae
70 #define NOTIFY_LID_FLIP 0xfa
71 #define NOTIFY_LID_FLIP_ROG 0xbd
73 #define ASUS_WMI_FNLOCK_BIOS_DISABLED BIT(0)
75 #define ASUS_GPU_FAN_DESC "gpu_fan"
76 #define ASUS_FAN_DESC "cpu_fan"
77 #define ASUS_FAN_MFUN 0x13
78 #define ASUS_FAN_SFUN_READ 0x06
79 #define ASUS_FAN_SFUN_WRITE 0x07
81 /* Based on standard hwmon pwmX_enable values */
82 #define ASUS_FAN_CTRL_FULLSPEED 0
83 #define ASUS_FAN_CTRL_MANUAL 1
84 #define ASUS_FAN_CTRL_AUTO 2
86 #define ASUS_FAN_BOOST_MODE_NORMAL 0
87 #define ASUS_FAN_BOOST_MODE_OVERBOOST 1
88 #define ASUS_FAN_BOOST_MODE_OVERBOOST_MASK 0x01
89 #define ASUS_FAN_BOOST_MODE_SILENT 2
90 #define ASUS_FAN_BOOST_MODE_SILENT_MASK 0x02
91 #define ASUS_FAN_BOOST_MODES_MASK 0x03
93 #define ASUS_THROTTLE_THERMAL_POLICY_DEFAULT 0
94 #define ASUS_THROTTLE_THERMAL_POLICY_OVERBOOST 1
95 #define ASUS_THROTTLE_THERMAL_POLICY_SILENT 2
97 #define USB_INTEL_XUSB2PR 0xD0
98 #define PCI_DEVICE_ID_INTEL_LYNXPOINT_LP_XHCI 0x9c31
100 #define ASUS_ACPI_UID_ASUSWMI "ASUSWMI"
101 #define ASUS_ACPI_UID_ATK "ATK"
103 #define WMI_EVENT_QUEUE_SIZE 0x10
104 #define WMI_EVENT_QUEUE_END 0x1
105 #define WMI_EVENT_MASK 0xFFFF
106 /* The WMI hotkey event value is always the same. */
107 #define WMI_EVENT_VALUE_ATK 0xFF
109 #define WMI_EVENT_MASK 0xFFFF
111 #define FAN_CURVE_POINTS 8
112 #define FAN_CURVE_BUF_LEN 32
113 #define FAN_CURVE_DEV_CPU 0x00
114 #define FAN_CURVE_DEV_GPU 0x01
115 /* Mask to determine if setting temperature or percentage */
116 #define FAN_CURVE_PWM_MASK 0x04
118 static const char * const ashs_ids[] = { "ATK4001", "ATK4002", NULL };
120 static int throttle_thermal_policy_write(struct asus_wmi *);
122 static bool ashs_present(void)
125 while (ashs_ids[i]) {
126 if (acpi_dev_found(ashs_ids[i++]))
135 u32 arg2; /* At least TUF Gaming series uses 3 dword input buffer. */
137 u32 arg4; /* Some ROG laptops require a full 5 input args */
142 * Struct that's used for all methods called via AGFN. Naming is
143 * identically to the AML code.
146 u16 mfun; /* probably "Multi-function" to be called */
147 u16 sfun; /* probably "Sub-function" to be called */
148 u16 len; /* size of the hole struct, including subfunction fields */
149 u8 stas; /* not used by now */
150 u8 err; /* zero on success */
153 /* struct used for calling fan read and write methods */
154 struct agfn_fan_args {
155 struct agfn_args agfn; /* common fields */
156 u8 fan; /* fan number: 0: set auto mode 1: 1st fan */
157 u32 speed; /* read: RPM/100 - write: 0-255 */
161 * <platform>/ - debugfs root directory
162 * dev_id - current dev_id
163 * ctrl_param - current ctrl_param
164 * method_id - current method_id
165 * devs - call DEVS(dev_id, ctrl_param) and print result
166 * dsts - call DSTS(dev_id) and print result
167 * call - call method_id(dev_id, ctrl_param) and print result
169 struct asus_wmi_debug {
177 struct asus_wmi *asus;
178 struct rfkill *rfkill;
184 FAN_TYPE_AGFN, /* deprecated on newer platforms */
185 FAN_TYPE_SPEC83, /* starting in Spec 8.3, use CPU_FAN_CTRL */
188 struct fan_curve_data {
191 u8 temps[FAN_CURVE_POINTS];
192 u8 percents[FAN_CURVE_POINTS];
199 bool wmi_event_queue;
201 struct input_dev *inputdev;
202 struct backlight_device *backlight_device;
203 struct platform_device *platform_device;
205 struct led_classdev wlan_led;
207 struct led_classdev tpd_led;
209 struct led_classdev kbd_led;
211 struct led_classdev lightbar_led;
213 struct led_classdev micmute_led;
214 struct workqueue_struct *led_workqueue;
215 struct work_struct tpd_led_work;
216 struct work_struct wlan_led_work;
217 struct work_struct lightbar_led_work;
219 struct asus_rfkill wlan;
220 struct asus_rfkill bluetooth;
221 struct asus_rfkill wimax;
222 struct asus_rfkill wwan3g;
223 struct asus_rfkill gps;
224 struct asus_rfkill uwb;
226 int tablet_switch_event_code;
227 u32 tablet_switch_dev_id;
229 enum fan_type fan_type;
230 enum fan_type gpu_fan_type;
232 int gpu_fan_pwm_mode;
235 bool fan_boost_mode_available;
236 u8 fan_boost_mode_mask;
239 bool egpu_enable_available;
240 bool dgpu_disable_available;
241 bool gpu_mux_mode_available;
243 bool kbd_rgb_mode_available;
244 bool kbd_rgb_state_available;
246 bool throttle_thermal_policy_available;
247 u8 throttle_thermal_policy_mode;
249 bool cpu_fan_curve_available;
250 bool gpu_fan_curve_available;
251 struct fan_curve_data custom_fan_curves[2];
253 struct platform_profile_handler platform_profile_handler;
254 bool platform_profile_support;
256 // The RSOC controls the maximum charging percentage.
257 bool battery_rsoc_available;
259 bool panel_overdrive_available;
261 struct hotplug_slot hotplug_slot;
262 struct mutex hotplug_lock;
263 struct mutex wmi_lock;
264 struct workqueue_struct *hotplug_workqueue;
265 struct work_struct hotplug_work;
269 struct asus_wmi_debug debug;
271 struct asus_wmi_driver *driver;
274 /* WMI ************************************************************************/
276 static int asus_wmi_evaluate_method3(u32 method_id,
277 u32 arg0, u32 arg1, u32 arg2, u32 *retval)
279 struct bios_args args = {
284 struct acpi_buffer input = { (acpi_size) sizeof(args), &args };
285 struct acpi_buffer output = { ACPI_ALLOCATE_BUFFER, NULL };
287 union acpi_object *obj;
290 status = wmi_evaluate_method(ASUS_WMI_MGMT_GUID, 0, method_id,
293 if (ACPI_FAILURE(status))
296 obj = (union acpi_object *)output.pointer;
297 if (obj && obj->type == ACPI_TYPE_INTEGER)
298 tmp = (u32) obj->integer.value;
305 if (tmp == ASUS_WMI_UNSUPPORTED_METHOD)
311 int asus_wmi_evaluate_method(u32 method_id, u32 arg0, u32 arg1, u32 *retval)
313 return asus_wmi_evaluate_method3(method_id, arg0, arg1, 0, retval);
315 EXPORT_SYMBOL_GPL(asus_wmi_evaluate_method);
317 static int asus_wmi_evaluate_method5(u32 method_id,
318 u32 arg0, u32 arg1, u32 arg2, u32 arg3, u32 arg4, u32 *retval)
320 struct bios_args args = {
327 struct acpi_buffer input = { (acpi_size) sizeof(args), &args };
328 struct acpi_buffer output = { ACPI_ALLOCATE_BUFFER, NULL };
330 union acpi_object *obj;
333 status = wmi_evaluate_method(ASUS_WMI_MGMT_GUID, 0, method_id,
336 if (ACPI_FAILURE(status))
339 obj = (union acpi_object *)output.pointer;
340 if (obj && obj->type == ACPI_TYPE_INTEGER)
341 tmp = (u32) obj->integer.value;
348 if (tmp == ASUS_WMI_UNSUPPORTED_METHOD)
355 * Returns as an error if the method output is not a buffer. Typically this
356 * means that the method called is unsupported.
358 static int asus_wmi_evaluate_method_buf(u32 method_id,
359 u32 arg0, u32 arg1, u8 *ret_buffer, size_t size)
361 struct bios_args args = {
366 struct acpi_buffer input = { (acpi_size) sizeof(args), &args };
367 struct acpi_buffer output = { ACPI_ALLOCATE_BUFFER, NULL };
369 union acpi_object *obj;
372 status = wmi_evaluate_method(ASUS_WMI_MGMT_GUID, 0, method_id,
375 if (ACPI_FAILURE(status))
378 obj = (union acpi_object *)output.pointer;
381 case ACPI_TYPE_BUFFER:
382 if (obj->buffer.length > size) {
386 if (obj->buffer.length == 0) {
391 memcpy(ret_buffer, obj->buffer.pointer, obj->buffer.length);
393 case ACPI_TYPE_INTEGER:
394 err = (u32)obj->integer.value;
396 if (err == ASUS_WMI_UNSUPPORTED_METHOD)
399 * At least one method returns a 0 with no buffer if no arg
400 * is provided, such as ASUS_WMI_DEVID_CPU_FAN_CURVE
418 static int asus_wmi_evaluate_method_agfn(const struct acpi_buffer args)
420 struct acpi_buffer input;
426 * Copy to dma capable address otherwise memory corruption occurs as
427 * bios has to be able to access it.
429 input.pointer = kmemdup(args.pointer, args.length, GFP_DMA | GFP_KERNEL);
430 input.length = args.length;
433 phys_addr = virt_to_phys(input.pointer);
435 status = asus_wmi_evaluate_method(ASUS_WMI_METHODID_AGFN,
436 phys_addr, 0, &retval);
438 memcpy(args.pointer, input.pointer, args.length);
440 kfree(input.pointer);
447 static int asus_wmi_get_devstate(struct asus_wmi *asus, u32 dev_id, u32 *retval)
449 return asus_wmi_evaluate_method(asus->dsts_id, dev_id, 0, retval);
452 static int asus_wmi_set_devstate(u32 dev_id, u32 ctrl_param,
455 return asus_wmi_evaluate_method(ASUS_WMI_METHODID_DEVS, dev_id,
459 /* Helper for special devices with magic return codes */
460 static int asus_wmi_get_devstate_bits(struct asus_wmi *asus,
461 u32 dev_id, u32 mask)
466 err = asus_wmi_get_devstate(asus, dev_id, &retval);
470 if (!(retval & ASUS_WMI_DSTS_PRESENCE_BIT))
473 if (mask == ASUS_WMI_DSTS_STATUS_BIT) {
474 if (retval & ASUS_WMI_DSTS_UNKNOWN_BIT)
478 return retval & mask;
481 static int asus_wmi_get_devstate_simple(struct asus_wmi *asus, u32 dev_id)
483 return asus_wmi_get_devstate_bits(asus, dev_id,
484 ASUS_WMI_DSTS_STATUS_BIT);
487 static bool asus_wmi_dev_is_present(struct asus_wmi *asus, u32 dev_id)
490 int status = asus_wmi_get_devstate(asus, dev_id, &retval);
492 return status == 0 && (retval & ASUS_WMI_DSTS_PRESENCE_BIT);
495 /* Input **********************************************************************/
496 static void asus_wmi_tablet_sw_init(struct asus_wmi *asus, u32 dev_id, int event_code)
498 struct device *dev = &asus->platform_device->dev;
501 result = asus_wmi_get_devstate_simple(asus, dev_id);
503 input_set_capability(asus->inputdev, EV_SW, SW_TABLET_MODE);
504 input_report_switch(asus->inputdev, SW_TABLET_MODE, result);
505 asus->tablet_switch_dev_id = dev_id;
506 asus->tablet_switch_event_code = event_code;
507 } else if (result == -ENODEV) {
508 dev_err(dev, "This device has tablet-mode-switch quirk but got ENODEV checking it. This is a bug.");
510 dev_err(dev, "Error checking for tablet-mode-switch: %d\n", result);
514 static int asus_wmi_input_init(struct asus_wmi *asus)
516 struct device *dev = &asus->platform_device->dev;
519 asus->inputdev = input_allocate_device();
523 asus->inputdev->name = asus->driver->input_name;
524 asus->inputdev->phys = asus->driver->input_phys;
525 asus->inputdev->id.bustype = BUS_HOST;
526 asus->inputdev->dev.parent = dev;
527 set_bit(EV_REP, asus->inputdev->evbit);
529 err = sparse_keymap_setup(asus->inputdev, asus->driver->keymap, NULL);
533 switch (asus->driver->quirks->tablet_switch_mode) {
534 case asus_wmi_no_tablet_switch:
536 case asus_wmi_kbd_dock_devid:
537 asus_wmi_tablet_sw_init(asus, ASUS_WMI_DEVID_KBD_DOCK, NOTIFY_KBD_DOCK_CHANGE);
539 case asus_wmi_lid_flip_devid:
540 asus_wmi_tablet_sw_init(asus, ASUS_WMI_DEVID_LID_FLIP, NOTIFY_LID_FLIP);
542 case asus_wmi_lid_flip_rog_devid:
543 asus_wmi_tablet_sw_init(asus, ASUS_WMI_DEVID_LID_FLIP_ROG, NOTIFY_LID_FLIP_ROG);
547 err = input_register_device(asus->inputdev);
554 input_free_device(asus->inputdev);
558 static void asus_wmi_input_exit(struct asus_wmi *asus)
561 input_unregister_device(asus->inputdev);
563 asus->inputdev = NULL;
566 /* Tablet mode ****************************************************************/
568 static void asus_wmi_tablet_mode_get_state(struct asus_wmi *asus)
572 if (!asus->tablet_switch_dev_id)
575 result = asus_wmi_get_devstate_simple(asus, asus->tablet_switch_dev_id);
577 input_report_switch(asus->inputdev, SW_TABLET_MODE, result);
578 input_sync(asus->inputdev);
582 /* dGPU ********************************************************************/
583 static ssize_t dgpu_disable_show(struct device *dev,
584 struct device_attribute *attr, char *buf)
586 struct asus_wmi *asus = dev_get_drvdata(dev);
589 result = asus_wmi_get_devstate_simple(asus, ASUS_WMI_DEVID_DGPU);
593 return sysfs_emit(buf, "%d\n", result);
597 * A user may be required to store the value twice, typcial store first, then
598 * rescan PCI bus to activate power, then store a second time to save correctly.
599 * The reason for this is that an extra code path in the ACPI is enabled when
600 * the device and bus are powered.
602 static ssize_t dgpu_disable_store(struct device *dev,
603 struct device_attribute *attr,
604 const char *buf, size_t count)
609 struct asus_wmi *asus = dev_get_drvdata(dev);
611 result = kstrtou32(buf, 10, &disable);
618 err = asus_wmi_set_devstate(ASUS_WMI_DEVID_DGPU, disable, &result);
620 pr_warn("Failed to set dgpu disable: %d\n", err);
625 pr_warn("Failed to set dgpu disable (result): 0x%x\n", result);
629 sysfs_notify(&asus->platform_device->dev.kobj, NULL, "dgpu_disable");
633 static DEVICE_ATTR_RW(dgpu_disable);
635 /* eGPU ********************************************************************/
636 static ssize_t egpu_enable_show(struct device *dev,
637 struct device_attribute *attr, char *buf)
639 struct asus_wmi *asus = dev_get_drvdata(dev);
642 result = asus_wmi_get_devstate_simple(asus, ASUS_WMI_DEVID_EGPU);
646 return sysfs_emit(buf, "%d\n", result);
649 /* The ACPI call to enable the eGPU also disables the internal dGPU */
650 static ssize_t egpu_enable_store(struct device *dev,
651 struct device_attribute *attr,
652 const char *buf, size_t count)
657 struct asus_wmi *asus = dev_get_drvdata(dev);
659 err = kstrtou32(buf, 10, &enable);
666 err = asus_wmi_set_devstate(ASUS_WMI_DEVID_EGPU, enable, &result);
668 pr_warn("Failed to set egpu disable: %d\n", err);
673 pr_warn("Failed to set egpu disable (retval): 0x%x\n", result);
677 sysfs_notify(&asus->platform_device->dev.kobj, NULL, "egpu_enable");
681 static DEVICE_ATTR_RW(egpu_enable);
683 /* gpu mux switch *************************************************************/
684 static ssize_t gpu_mux_mode_show(struct device *dev,
685 struct device_attribute *attr, char *buf)
687 struct asus_wmi *asus = dev_get_drvdata(dev);
690 result = asus_wmi_get_devstate_simple(asus, ASUS_WMI_DEVID_GPU_MUX);
694 return sysfs_emit(buf, "%d\n", result);
697 static ssize_t gpu_mux_mode_store(struct device *dev,
698 struct device_attribute *attr,
699 const char *buf, size_t count)
701 struct asus_wmi *asus = dev_get_drvdata(dev);
705 err = kstrtou32(buf, 10, &optimus);
712 err = asus_wmi_set_devstate(ASUS_WMI_DEVID_GPU_MUX, optimus, &result);
714 dev_err(dev, "Failed to set GPU MUX mode: %d\n", err);
717 /* !1 is considered a fail by ASUS */
719 dev_warn(dev, "Failed to set GPU MUX mode (result): 0x%x\n", result);
723 sysfs_notify(&asus->platform_device->dev.kobj, NULL, "gpu_mux_mode");
727 static DEVICE_ATTR_RW(gpu_mux_mode);
729 /* TUF Laptop Keyboard RGB Modes **********************************************/
730 static ssize_t kbd_rgb_mode_store(struct device *dev,
731 struct device_attribute *attr,
732 const char *buf, size_t count)
734 u32 cmd, mode, r, g, b, speed;
737 if (sscanf(buf, "%d %d %d %d %d %d", &cmd, &mode, &r, &g, &b, &speed) != 6)
742 /* These are the known usable modes across all TUF/ROG */
743 if (mode >= 12 || mode == 9)
760 err = asus_wmi_evaluate_method3(ASUS_WMI_METHODID_DEVS, ASUS_WMI_DEVID_TUF_RGB_MODE,
761 cmd | (mode << 8) | (r << 16) | (g << 24), b | (speed << 8), NULL);
767 static DEVICE_ATTR_WO(kbd_rgb_mode);
769 static ssize_t kbd_rgb_mode_index_show(struct device *device,
770 struct device_attribute *attr,
773 return sysfs_emit(buf, "%s\n", "cmd mode red green blue speed");
775 static DEVICE_ATTR_RO(kbd_rgb_mode_index);
777 static struct attribute *kbd_rgb_mode_attrs[] = {
778 &dev_attr_kbd_rgb_mode.attr,
779 &dev_attr_kbd_rgb_mode_index.attr,
783 static const struct attribute_group kbd_rgb_mode_group = {
784 .attrs = kbd_rgb_mode_attrs,
787 /* TUF Laptop Keyboard RGB State **********************************************/
788 static ssize_t kbd_rgb_state_store(struct device *dev,
789 struct device_attribute *attr,
790 const char *buf, size_t count)
792 u32 flags, cmd, boot, awake, sleep, keyboard;
795 if (sscanf(buf, "%d %d %d %d %d", &cmd, &boot, &awake, &sleep, &keyboard) != 5)
811 /* 0xbd is the required default arg0 for the method. Nothing happens otherwise */
812 err = asus_wmi_evaluate_method3(ASUS_WMI_METHODID_DEVS,
813 ASUS_WMI_DEVID_TUF_RGB_STATE, 0xbd | cmd << 8 | (flags << 16), 0, NULL);
819 static DEVICE_ATTR_WO(kbd_rgb_state);
821 static ssize_t kbd_rgb_state_index_show(struct device *device,
822 struct device_attribute *attr,
825 return sysfs_emit(buf, "%s\n", "cmd boot awake sleep keyboard");
827 static DEVICE_ATTR_RO(kbd_rgb_state_index);
829 static struct attribute *kbd_rgb_state_attrs[] = {
830 &dev_attr_kbd_rgb_state.attr,
831 &dev_attr_kbd_rgb_state_index.attr,
835 static const struct attribute_group kbd_rgb_state_group = {
836 .attrs = kbd_rgb_state_attrs,
839 static const struct attribute_group *kbd_rgb_mode_groups[] = {
845 /* Battery ********************************************************************/
847 /* The battery maximum charging percentage */
848 static int charge_end_threshold;
850 static ssize_t charge_control_end_threshold_store(struct device *dev,
851 struct device_attribute *attr,
852 const char *buf, size_t count)
856 ret = kstrtouint(buf, 10, &value);
860 if (value < 0 || value > 100)
863 ret = asus_wmi_set_devstate(ASUS_WMI_DEVID_RSOC, value, &rv);
870 /* There isn't any method in the DSDT to read the threshold, so we
871 * save the threshold.
873 charge_end_threshold = value;
877 static ssize_t charge_control_end_threshold_show(struct device *device,
878 struct device_attribute *attr,
881 return sysfs_emit(buf, "%d\n", charge_end_threshold);
884 static DEVICE_ATTR_RW(charge_control_end_threshold);
886 static int asus_wmi_battery_add(struct power_supply *battery)
888 /* The WMI method does not provide a way to specific a battery, so we
889 * just assume it is the first battery.
890 * Note: On some newer ASUS laptops (Zenbook UM431DA), the primary/first
891 * battery is named BATT.
893 if (strcmp(battery->desc->name, "BAT0") != 0 &&
894 strcmp(battery->desc->name, "BAT1") != 0 &&
895 strcmp(battery->desc->name, "BATC") != 0 &&
896 strcmp(battery->desc->name, "BATT") != 0)
899 if (device_create_file(&battery->dev,
900 &dev_attr_charge_control_end_threshold))
903 /* The charge threshold is only reset when the system is power cycled,
904 * and we can't get the current threshold so let set it to 100% when
905 * a battery is added.
907 asus_wmi_set_devstate(ASUS_WMI_DEVID_RSOC, 100, NULL);
908 charge_end_threshold = 100;
913 static int asus_wmi_battery_remove(struct power_supply *battery)
915 device_remove_file(&battery->dev,
916 &dev_attr_charge_control_end_threshold);
920 static struct acpi_battery_hook battery_hook = {
921 .add_battery = asus_wmi_battery_add,
922 .remove_battery = asus_wmi_battery_remove,
923 .name = "ASUS Battery Extension",
926 static void asus_wmi_battery_init(struct asus_wmi *asus)
928 asus->battery_rsoc_available = false;
929 if (asus_wmi_dev_is_present(asus, ASUS_WMI_DEVID_RSOC)) {
930 asus->battery_rsoc_available = true;
931 battery_hook_register(&battery_hook);
935 static void asus_wmi_battery_exit(struct asus_wmi *asus)
937 if (asus->battery_rsoc_available)
938 battery_hook_unregister(&battery_hook);
941 /* LEDs ***********************************************************************/
944 * These functions actually update the LED's, and are called from a
945 * workqueue. By doing this as separate work rather than when the LED
946 * subsystem asks, we avoid messing with the Asus ACPI stuff during a
947 * potentially bad time, such as a timer interrupt.
949 static void tpd_led_update(struct work_struct *work)
952 struct asus_wmi *asus;
954 asus = container_of(work, struct asus_wmi, tpd_led_work);
956 ctrl_param = asus->tpd_led_wk;
957 asus_wmi_set_devstate(ASUS_WMI_DEVID_TOUCHPAD_LED, ctrl_param, NULL);
960 static void tpd_led_set(struct led_classdev *led_cdev,
961 enum led_brightness value)
963 struct asus_wmi *asus;
965 asus = container_of(led_cdev, struct asus_wmi, tpd_led);
967 asus->tpd_led_wk = !!value;
968 queue_work(asus->led_workqueue, &asus->tpd_led_work);
971 static int read_tpd_led_state(struct asus_wmi *asus)
973 return asus_wmi_get_devstate_simple(asus, ASUS_WMI_DEVID_TOUCHPAD_LED);
976 static enum led_brightness tpd_led_get(struct led_classdev *led_cdev)
978 struct asus_wmi *asus;
980 asus = container_of(led_cdev, struct asus_wmi, tpd_led);
982 return read_tpd_led_state(asus);
985 static void kbd_led_update(struct asus_wmi *asus)
989 ctrl_param = 0x80 | (asus->kbd_led_wk & 0x7F);
990 asus_wmi_set_devstate(ASUS_WMI_DEVID_KBD_BACKLIGHT, ctrl_param, NULL);
993 static int kbd_led_read(struct asus_wmi *asus, int *level, int *env)
999 * bit 7: light on/off
1000 * bit 8-10: environment (0: dark, 1: normal, 2: light)
1001 * bit 17: status unknown
1003 retval = asus_wmi_get_devstate_bits(asus, ASUS_WMI_DEVID_KBD_BACKLIGHT,
1006 /* Unknown status is considered as off */
1007 if (retval == 0x8000)
1014 *level = retval & 0x7F;
1016 *env = (retval >> 8) & 0x7F;
1020 static void do_kbd_led_set(struct led_classdev *led_cdev, int value)
1022 struct asus_wmi *asus;
1025 asus = container_of(led_cdev, struct asus_wmi, kbd_led);
1026 max_level = asus->kbd_led.max_brightness;
1028 asus->kbd_led_wk = clamp_val(value, 0, max_level);
1029 kbd_led_update(asus);
1032 static void kbd_led_set(struct led_classdev *led_cdev,
1033 enum led_brightness value)
1035 /* Prevent disabling keyboard backlight on module unregister */
1036 if (led_cdev->flags & LED_UNREGISTERING)
1039 do_kbd_led_set(led_cdev, value);
1042 static void kbd_led_set_by_kbd(struct asus_wmi *asus, enum led_brightness value)
1044 struct led_classdev *led_cdev = &asus->kbd_led;
1046 do_kbd_led_set(led_cdev, value);
1047 led_classdev_notify_brightness_hw_changed(led_cdev, asus->kbd_led_wk);
1050 static enum led_brightness kbd_led_get(struct led_classdev *led_cdev)
1052 struct asus_wmi *asus;
1055 asus = container_of(led_cdev, struct asus_wmi, kbd_led);
1057 retval = kbd_led_read(asus, &value, NULL);
1064 static int wlan_led_unknown_state(struct asus_wmi *asus)
1068 asus_wmi_get_devstate(asus, ASUS_WMI_DEVID_WIRELESS_LED, &result);
1070 return result & ASUS_WMI_DSTS_UNKNOWN_BIT;
1073 static void wlan_led_update(struct work_struct *work)
1076 struct asus_wmi *asus;
1078 asus = container_of(work, struct asus_wmi, wlan_led_work);
1080 ctrl_param = asus->wlan_led_wk;
1081 asus_wmi_set_devstate(ASUS_WMI_DEVID_WIRELESS_LED, ctrl_param, NULL);
1084 static void wlan_led_set(struct led_classdev *led_cdev,
1085 enum led_brightness value)
1087 struct asus_wmi *asus;
1089 asus = container_of(led_cdev, struct asus_wmi, wlan_led);
1091 asus->wlan_led_wk = !!value;
1092 queue_work(asus->led_workqueue, &asus->wlan_led_work);
1095 static enum led_brightness wlan_led_get(struct led_classdev *led_cdev)
1097 struct asus_wmi *asus;
1100 asus = container_of(led_cdev, struct asus_wmi, wlan_led);
1101 asus_wmi_get_devstate(asus, ASUS_WMI_DEVID_WIRELESS_LED, &result);
1103 return result & ASUS_WMI_DSTS_BRIGHTNESS_MASK;
1106 static void lightbar_led_update(struct work_struct *work)
1108 struct asus_wmi *asus;
1111 asus = container_of(work, struct asus_wmi, lightbar_led_work);
1113 ctrl_param = asus->lightbar_led_wk;
1114 asus_wmi_set_devstate(ASUS_WMI_DEVID_LIGHTBAR, ctrl_param, NULL);
1117 static void lightbar_led_set(struct led_classdev *led_cdev,
1118 enum led_brightness value)
1120 struct asus_wmi *asus;
1122 asus = container_of(led_cdev, struct asus_wmi, lightbar_led);
1124 asus->lightbar_led_wk = !!value;
1125 queue_work(asus->led_workqueue, &asus->lightbar_led_work);
1128 static enum led_brightness lightbar_led_get(struct led_classdev *led_cdev)
1130 struct asus_wmi *asus;
1133 asus = container_of(led_cdev, struct asus_wmi, lightbar_led);
1134 asus_wmi_get_devstate(asus, ASUS_WMI_DEVID_LIGHTBAR, &result);
1136 return result & ASUS_WMI_DSTS_LIGHTBAR_MASK;
1139 static int micmute_led_set(struct led_classdev *led_cdev,
1140 enum led_brightness brightness)
1142 int state = brightness != LED_OFF;
1145 err = asus_wmi_set_devstate(ASUS_WMI_DEVID_MICMUTE_LED, state, NULL);
1146 return err < 0 ? err : 0;
1149 static void asus_wmi_led_exit(struct asus_wmi *asus)
1151 led_classdev_unregister(&asus->kbd_led);
1152 led_classdev_unregister(&asus->tpd_led);
1153 led_classdev_unregister(&asus->wlan_led);
1154 led_classdev_unregister(&asus->lightbar_led);
1155 led_classdev_unregister(&asus->micmute_led);
1157 if (asus->led_workqueue)
1158 destroy_workqueue(asus->led_workqueue);
1161 static int asus_wmi_led_init(struct asus_wmi *asus)
1163 int rv = 0, num_rgb_groups = 0, led_val;
1165 if (asus->kbd_rgb_mode_available)
1166 kbd_rgb_mode_groups[num_rgb_groups++] = &kbd_rgb_mode_group;
1167 if (asus->kbd_rgb_state_available)
1168 kbd_rgb_mode_groups[num_rgb_groups++] = &kbd_rgb_state_group;
1170 asus->led_workqueue = create_singlethread_workqueue("led_workqueue");
1171 if (!asus->led_workqueue)
1174 if (read_tpd_led_state(asus) >= 0) {
1175 INIT_WORK(&asus->tpd_led_work, tpd_led_update);
1177 asus->tpd_led.name = "asus::touchpad";
1178 asus->tpd_led.brightness_set = tpd_led_set;
1179 asus->tpd_led.brightness_get = tpd_led_get;
1180 asus->tpd_led.max_brightness = 1;
1182 rv = led_classdev_register(&asus->platform_device->dev,
1188 if (!kbd_led_read(asus, &led_val, NULL)) {
1189 asus->kbd_led_wk = led_val;
1190 asus->kbd_led.name = "asus::kbd_backlight";
1191 asus->kbd_led.flags = LED_BRIGHT_HW_CHANGED;
1192 asus->kbd_led.brightness_set = kbd_led_set;
1193 asus->kbd_led.brightness_get = kbd_led_get;
1194 asus->kbd_led.max_brightness = 3;
1196 if (num_rgb_groups != 0)
1197 asus->kbd_led.groups = kbd_rgb_mode_groups;
1199 rv = led_classdev_register(&asus->platform_device->dev,
1205 if (asus_wmi_dev_is_present(asus, ASUS_WMI_DEVID_WIRELESS_LED)
1206 && (asus->driver->quirks->wapf > 0)) {
1207 INIT_WORK(&asus->wlan_led_work, wlan_led_update);
1209 asus->wlan_led.name = "asus::wlan";
1210 asus->wlan_led.brightness_set = wlan_led_set;
1211 if (!wlan_led_unknown_state(asus))
1212 asus->wlan_led.brightness_get = wlan_led_get;
1213 asus->wlan_led.flags = LED_CORE_SUSPENDRESUME;
1214 asus->wlan_led.max_brightness = 1;
1215 asus->wlan_led.default_trigger = "asus-wlan";
1217 rv = led_classdev_register(&asus->platform_device->dev,
1223 if (asus_wmi_dev_is_present(asus, ASUS_WMI_DEVID_LIGHTBAR)) {
1224 INIT_WORK(&asus->lightbar_led_work, lightbar_led_update);
1226 asus->lightbar_led.name = "asus::lightbar";
1227 asus->lightbar_led.brightness_set = lightbar_led_set;
1228 asus->lightbar_led.brightness_get = lightbar_led_get;
1229 asus->lightbar_led.max_brightness = 1;
1231 rv = led_classdev_register(&asus->platform_device->dev,
1232 &asus->lightbar_led);
1235 if (asus_wmi_dev_is_present(asus, ASUS_WMI_DEVID_MICMUTE_LED)) {
1236 asus->micmute_led.name = "platform::micmute";
1237 asus->micmute_led.max_brightness = 1;
1238 asus->micmute_led.brightness = ledtrig_audio_get(LED_AUDIO_MICMUTE);
1239 asus->micmute_led.brightness_set_blocking = micmute_led_set;
1240 asus->micmute_led.default_trigger = "audio-micmute";
1242 rv = led_classdev_register(&asus->platform_device->dev,
1243 &asus->micmute_led);
1250 asus_wmi_led_exit(asus);
1255 /* RF *************************************************************************/
1258 * PCI hotplug (for wlan rfkill)
1260 static bool asus_wlan_rfkill_blocked(struct asus_wmi *asus)
1262 int result = asus_wmi_get_devstate_simple(asus, ASUS_WMI_DEVID_WLAN);
1269 static void asus_rfkill_hotplug(struct asus_wmi *asus)
1271 struct pci_dev *dev;
1272 struct pci_bus *bus;
1277 mutex_lock(&asus->wmi_lock);
1278 blocked = asus_wlan_rfkill_blocked(asus);
1279 mutex_unlock(&asus->wmi_lock);
1281 mutex_lock(&asus->hotplug_lock);
1282 pci_lock_rescan_remove();
1284 if (asus->wlan.rfkill)
1285 rfkill_set_sw_state(asus->wlan.rfkill, blocked);
1287 if (asus->hotplug_slot.ops) {
1288 bus = pci_find_bus(0, 1);
1290 pr_warn("Unable to find PCI bus 1?\n");
1294 if (pci_bus_read_config_dword(bus, 0, PCI_VENDOR_ID, &l)) {
1295 pr_err("Unable to read PCI config space?\n");
1298 absent = (l == 0xffffffff);
1300 if (blocked != absent) {
1301 pr_warn("BIOS says wireless lan is %s, but the pci device is %s\n",
1302 blocked ? "blocked" : "unblocked",
1303 absent ? "absent" : "present");
1304 pr_warn("skipped wireless hotplug as probably inappropriate for this model\n");
1309 dev = pci_get_slot(bus, 0);
1311 /* Device already present */
1315 dev = pci_scan_single_device(bus, 0);
1317 pci_bus_assign_resources(bus);
1318 pci_bus_add_device(dev);
1321 dev = pci_get_slot(bus, 0);
1323 pci_stop_and_remove_bus_device(dev);
1330 pci_unlock_rescan_remove();
1331 mutex_unlock(&asus->hotplug_lock);
1334 static void asus_rfkill_notify(acpi_handle handle, u32 event, void *data)
1336 struct asus_wmi *asus = data;
1338 if (event != ACPI_NOTIFY_BUS_CHECK)
1342 * We can't call directly asus_rfkill_hotplug because most
1343 * of the time WMBC is still being executed and not reetrant.
1344 * There is currently no way to tell ACPICA that we want this
1345 * method to be serialized, we schedule a asus_rfkill_hotplug
1346 * call later, in a safer context.
1348 queue_work(asus->hotplug_workqueue, &asus->hotplug_work);
1351 static int asus_register_rfkill_notifier(struct asus_wmi *asus, char *node)
1356 status = acpi_get_handle(NULL, node, &handle);
1357 if (ACPI_FAILURE(status))
1360 status = acpi_install_notify_handler(handle, ACPI_SYSTEM_NOTIFY,
1361 asus_rfkill_notify, asus);
1362 if (ACPI_FAILURE(status))
1363 pr_warn("Failed to register notify on %s\n", node);
1368 static void asus_unregister_rfkill_notifier(struct asus_wmi *asus, char *node)
1370 acpi_status status = AE_OK;
1373 status = acpi_get_handle(NULL, node, &handle);
1374 if (ACPI_FAILURE(status))
1377 status = acpi_remove_notify_handler(handle, ACPI_SYSTEM_NOTIFY,
1378 asus_rfkill_notify);
1379 if (ACPI_FAILURE(status))
1380 pr_err("Error removing rfkill notify handler %s\n", node);
1383 static int asus_get_adapter_status(struct hotplug_slot *hotplug_slot,
1386 struct asus_wmi *asus = container_of(hotplug_slot,
1387 struct asus_wmi, hotplug_slot);
1388 int result = asus_wmi_get_devstate_simple(asus, ASUS_WMI_DEVID_WLAN);
1397 static const struct hotplug_slot_ops asus_hotplug_slot_ops = {
1398 .get_adapter_status = asus_get_adapter_status,
1399 .get_power_status = asus_get_adapter_status,
1402 static void asus_hotplug_work(struct work_struct *work)
1404 struct asus_wmi *asus;
1406 asus = container_of(work, struct asus_wmi, hotplug_work);
1407 asus_rfkill_hotplug(asus);
1410 static int asus_setup_pci_hotplug(struct asus_wmi *asus)
1413 struct pci_bus *bus = pci_find_bus(0, 1);
1416 pr_err("Unable to find wifi PCI bus\n");
1420 asus->hotplug_workqueue =
1421 create_singlethread_workqueue("hotplug_workqueue");
1422 if (!asus->hotplug_workqueue)
1423 goto error_workqueue;
1425 INIT_WORK(&asus->hotplug_work, asus_hotplug_work);
1427 asus->hotplug_slot.ops = &asus_hotplug_slot_ops;
1429 ret = pci_hp_register(&asus->hotplug_slot, bus, 0, "asus-wifi");
1431 pr_err("Unable to register hotplug slot - %d\n", ret);
1432 goto error_register;
1438 asus->hotplug_slot.ops = NULL;
1439 destroy_workqueue(asus->hotplug_workqueue);
1447 static int asus_rfkill_set(void *data, bool blocked)
1449 struct asus_rfkill *priv = data;
1450 u32 ctrl_param = !blocked;
1451 u32 dev_id = priv->dev_id;
1454 * If the user bit is set, BIOS can't set and record the wlan status,
1455 * it will report the value read from id ASUS_WMI_DEVID_WLAN_LED
1456 * while we query the wlan status through WMI(ASUS_WMI_DEVID_WLAN).
1457 * So, we have to record wlan status in id ASUS_WMI_DEVID_WLAN_LED
1458 * while setting the wlan status through WMI.
1459 * This is also the behavior that windows app will do.
1461 if ((dev_id == ASUS_WMI_DEVID_WLAN) &&
1462 priv->asus->driver->wlan_ctrl_by_user)
1463 dev_id = ASUS_WMI_DEVID_WLAN_LED;
1465 return asus_wmi_set_devstate(dev_id, ctrl_param, NULL);
1468 static void asus_rfkill_query(struct rfkill *rfkill, void *data)
1470 struct asus_rfkill *priv = data;
1473 result = asus_wmi_get_devstate_simple(priv->asus, priv->dev_id);
1478 rfkill_set_sw_state(priv->rfkill, !result);
1481 static int asus_rfkill_wlan_set(void *data, bool blocked)
1483 struct asus_rfkill *priv = data;
1484 struct asus_wmi *asus = priv->asus;
1488 * This handler is enabled only if hotplug is enabled.
1489 * In this case, the asus_wmi_set_devstate() will
1490 * trigger a wmi notification and we need to wait
1491 * this call to finish before being able to call
1494 mutex_lock(&asus->wmi_lock);
1495 ret = asus_rfkill_set(data, blocked);
1496 mutex_unlock(&asus->wmi_lock);
1500 static const struct rfkill_ops asus_rfkill_wlan_ops = {
1501 .set_block = asus_rfkill_wlan_set,
1502 .query = asus_rfkill_query,
1505 static const struct rfkill_ops asus_rfkill_ops = {
1506 .set_block = asus_rfkill_set,
1507 .query = asus_rfkill_query,
1510 static int asus_new_rfkill(struct asus_wmi *asus,
1511 struct asus_rfkill *arfkill,
1512 const char *name, enum rfkill_type type, int dev_id)
1514 int result = asus_wmi_get_devstate_simple(asus, dev_id);
1515 struct rfkill **rfkill = &arfkill->rfkill;
1520 arfkill->dev_id = dev_id;
1521 arfkill->asus = asus;
1523 if (dev_id == ASUS_WMI_DEVID_WLAN &&
1524 asus->driver->quirks->hotplug_wireless)
1525 *rfkill = rfkill_alloc(name, &asus->platform_device->dev, type,
1526 &asus_rfkill_wlan_ops, arfkill);
1528 *rfkill = rfkill_alloc(name, &asus->platform_device->dev, type,
1529 &asus_rfkill_ops, arfkill);
1534 if ((dev_id == ASUS_WMI_DEVID_WLAN) &&
1535 (asus->driver->quirks->wapf > 0))
1536 rfkill_set_led_trigger_name(*rfkill, "asus-wlan");
1538 rfkill_init_sw_state(*rfkill, !result);
1539 result = rfkill_register(*rfkill);
1541 rfkill_destroy(*rfkill);
1548 static void asus_wmi_rfkill_exit(struct asus_wmi *asus)
1550 if (asus->driver->wlan_ctrl_by_user && ashs_present())
1553 asus_unregister_rfkill_notifier(asus, "\\_SB.PCI0.P0P5");
1554 asus_unregister_rfkill_notifier(asus, "\\_SB.PCI0.P0P6");
1555 asus_unregister_rfkill_notifier(asus, "\\_SB.PCI0.P0P7");
1556 if (asus->wlan.rfkill) {
1557 rfkill_unregister(asus->wlan.rfkill);
1558 rfkill_destroy(asus->wlan.rfkill);
1559 asus->wlan.rfkill = NULL;
1562 * Refresh pci hotplug in case the rfkill state was changed after
1563 * asus_unregister_rfkill_notifier()
1565 asus_rfkill_hotplug(asus);
1566 if (asus->hotplug_slot.ops)
1567 pci_hp_deregister(&asus->hotplug_slot);
1568 if (asus->hotplug_workqueue)
1569 destroy_workqueue(asus->hotplug_workqueue);
1571 if (asus->bluetooth.rfkill) {
1572 rfkill_unregister(asus->bluetooth.rfkill);
1573 rfkill_destroy(asus->bluetooth.rfkill);
1574 asus->bluetooth.rfkill = NULL;
1576 if (asus->wimax.rfkill) {
1577 rfkill_unregister(asus->wimax.rfkill);
1578 rfkill_destroy(asus->wimax.rfkill);
1579 asus->wimax.rfkill = NULL;
1581 if (asus->wwan3g.rfkill) {
1582 rfkill_unregister(asus->wwan3g.rfkill);
1583 rfkill_destroy(asus->wwan3g.rfkill);
1584 asus->wwan3g.rfkill = NULL;
1586 if (asus->gps.rfkill) {
1587 rfkill_unregister(asus->gps.rfkill);
1588 rfkill_destroy(asus->gps.rfkill);
1589 asus->gps.rfkill = NULL;
1591 if (asus->uwb.rfkill) {
1592 rfkill_unregister(asus->uwb.rfkill);
1593 rfkill_destroy(asus->uwb.rfkill);
1594 asus->uwb.rfkill = NULL;
1598 static int asus_wmi_rfkill_init(struct asus_wmi *asus)
1602 mutex_init(&asus->hotplug_lock);
1603 mutex_init(&asus->wmi_lock);
1605 result = asus_new_rfkill(asus, &asus->wlan, "asus-wlan",
1606 RFKILL_TYPE_WLAN, ASUS_WMI_DEVID_WLAN);
1608 if (result && result != -ENODEV)
1611 result = asus_new_rfkill(asus, &asus->bluetooth,
1612 "asus-bluetooth", RFKILL_TYPE_BLUETOOTH,
1613 ASUS_WMI_DEVID_BLUETOOTH);
1615 if (result && result != -ENODEV)
1618 result = asus_new_rfkill(asus, &asus->wimax, "asus-wimax",
1619 RFKILL_TYPE_WIMAX, ASUS_WMI_DEVID_WIMAX);
1621 if (result && result != -ENODEV)
1624 result = asus_new_rfkill(asus, &asus->wwan3g, "asus-wwan3g",
1625 RFKILL_TYPE_WWAN, ASUS_WMI_DEVID_WWAN3G);
1627 if (result && result != -ENODEV)
1630 result = asus_new_rfkill(asus, &asus->gps, "asus-gps",
1631 RFKILL_TYPE_GPS, ASUS_WMI_DEVID_GPS);
1633 if (result && result != -ENODEV)
1636 result = asus_new_rfkill(asus, &asus->uwb, "asus-uwb",
1637 RFKILL_TYPE_UWB, ASUS_WMI_DEVID_UWB);
1639 if (result && result != -ENODEV)
1642 if (!asus->driver->quirks->hotplug_wireless)
1645 result = asus_setup_pci_hotplug(asus);
1647 * If we get -EBUSY then something else is handling the PCI hotplug -
1648 * don't fail in this case
1650 if (result == -EBUSY)
1653 asus_register_rfkill_notifier(asus, "\\_SB.PCI0.P0P5");
1654 asus_register_rfkill_notifier(asus, "\\_SB.PCI0.P0P6");
1655 asus_register_rfkill_notifier(asus, "\\_SB.PCI0.P0P7");
1657 * Refresh pci hotplug in case the rfkill state was changed during
1660 asus_rfkill_hotplug(asus);
1663 if (result && result != -ENODEV)
1664 asus_wmi_rfkill_exit(asus);
1666 if (result == -ENODEV)
1672 /* Panel Overdrive ************************************************************/
1673 static ssize_t panel_od_show(struct device *dev,
1674 struct device_attribute *attr, char *buf)
1676 struct asus_wmi *asus = dev_get_drvdata(dev);
1679 result = asus_wmi_get_devstate_simple(asus, ASUS_WMI_DEVID_PANEL_OD);
1683 return sysfs_emit(buf, "%d\n", result);
1686 static ssize_t panel_od_store(struct device *dev,
1687 struct device_attribute *attr,
1688 const char *buf, size_t count)
1693 struct asus_wmi *asus = dev_get_drvdata(dev);
1695 result = kstrtou32(buf, 10, &overdrive);
1702 err = asus_wmi_set_devstate(ASUS_WMI_DEVID_PANEL_OD, overdrive, &result);
1705 pr_warn("Failed to set panel overdrive: %d\n", err);
1710 pr_warn("Failed to set panel overdrive (result): 0x%x\n", result);
1714 sysfs_notify(&asus->platform_device->dev.kobj, NULL, "panel_od");
1718 static DEVICE_ATTR_RW(panel_od);
1720 /* Quirks *********************************************************************/
1722 static void asus_wmi_set_xusb2pr(struct asus_wmi *asus)
1724 struct pci_dev *xhci_pdev;
1725 u32 orig_ports_available;
1726 u32 ports_available = asus->driver->quirks->xusb2pr;
1728 xhci_pdev = pci_get_device(PCI_VENDOR_ID_INTEL,
1729 PCI_DEVICE_ID_INTEL_LYNXPOINT_LP_XHCI,
1735 pci_read_config_dword(xhci_pdev, USB_INTEL_XUSB2PR,
1736 &orig_ports_available);
1738 pci_write_config_dword(xhci_pdev, USB_INTEL_XUSB2PR,
1739 cpu_to_le32(ports_available));
1741 pr_info("set USB_INTEL_XUSB2PR old: 0x%04x, new: 0x%04x\n",
1742 orig_ports_available, ports_available);
1746 * Some devices dont support or have borcken get_als method
1747 * but still support set method.
1749 static void asus_wmi_set_als(void)
1751 asus_wmi_set_devstate(ASUS_WMI_DEVID_ALS_ENABLE, 1, NULL);
1754 /* Hwmon device ***************************************************************/
1756 static int asus_agfn_fan_speed_read(struct asus_wmi *asus, int fan,
1759 struct agfn_fan_args args = {
1760 .agfn.len = sizeof(args),
1761 .agfn.mfun = ASUS_FAN_MFUN,
1762 .agfn.sfun = ASUS_FAN_SFUN_READ,
1766 struct acpi_buffer input = { (acpi_size) sizeof(args), &args };
1772 status = asus_wmi_evaluate_method_agfn(input);
1774 if (status || args.agfn.err)
1778 *speed = args.speed;
1783 static int asus_agfn_fan_speed_write(struct asus_wmi *asus, int fan,
1786 struct agfn_fan_args args = {
1787 .agfn.len = sizeof(args),
1788 .agfn.mfun = ASUS_FAN_MFUN,
1789 .agfn.sfun = ASUS_FAN_SFUN_WRITE,
1791 .speed = speed ? *speed : 0,
1793 struct acpi_buffer input = { (acpi_size) sizeof(args), &args };
1796 /* 1: for setting 1st fan's speed 0: setting auto mode */
1797 if (fan != 1 && fan != 0)
1800 status = asus_wmi_evaluate_method_agfn(input);
1802 if (status || args.agfn.err)
1805 if (speed && fan == 1)
1806 asus->agfn_pwm = *speed;
1812 * Check if we can read the speed of one fan. If true we assume we can also
1815 static bool asus_wmi_has_agfn_fan(struct asus_wmi *asus)
1821 status = asus_agfn_fan_speed_read(asus, 1, &speed);
1825 status = asus_wmi_get_devstate(asus, ASUS_WMI_DEVID_FAN_CTRL, &value);
1830 * We need to find a better way, probably using sfun,
1832 * Currently we disable it if:
1833 * - ASUS_WMI_UNSUPPORTED_METHOD is returned
1834 * - reverved bits are non-zero
1835 * - sfun and presence bit are not set
1837 return !(value == ASUS_WMI_UNSUPPORTED_METHOD || value & 0xFFF80000
1838 || (!asus->sfun && !(value & ASUS_WMI_DSTS_PRESENCE_BIT)));
1841 static int asus_fan_set_auto(struct asus_wmi *asus)
1846 switch (asus->fan_type) {
1847 case FAN_TYPE_SPEC83:
1848 status = asus_wmi_set_devstate(ASUS_WMI_DEVID_CPU_FAN_CTRL,
1858 status = asus_agfn_fan_speed_write(asus, 0, NULL);
1868 * Modern models like the G713 also have GPU fan control (this is not AGFN)
1870 if (asus->gpu_fan_type == FAN_TYPE_SPEC83) {
1871 status = asus_wmi_set_devstate(ASUS_WMI_DEVID_GPU_FAN_CTRL,
1883 static ssize_t pwm1_show(struct device *dev,
1884 struct device_attribute *attr,
1887 struct asus_wmi *asus = dev_get_drvdata(dev);
1891 /* If we already set a value then just return it */
1892 if (asus->agfn_pwm >= 0)
1893 return sprintf(buf, "%d\n", asus->agfn_pwm);
1896 * If we haven't set already set a value through the AGFN interface,
1897 * we read a current value through the (now-deprecated) FAN_CTRL device.
1899 err = asus_wmi_get_devstate(asus, ASUS_WMI_DEVID_FAN_CTRL, &value);
1905 if (value == 1) /* Low Speed */
1907 else if (value == 2)
1909 else if (value == 3)
1912 pr_err("Unknown fan speed %#x\n", value);
1916 return sysfs_emit(buf, "%d\n", value);
1919 static ssize_t pwm1_store(struct device *dev,
1920 struct device_attribute *attr,
1921 const char *buf, size_t count) {
1922 struct asus_wmi *asus = dev_get_drvdata(dev);
1927 ret = kstrtouint(buf, 10, &value);
1931 value = clamp(value, 0, 255);
1933 state = asus_agfn_fan_speed_write(asus, 1, &value);
1935 pr_warn("Setting fan speed failed: %d\n", state);
1937 asus->fan_pwm_mode = ASUS_FAN_CTRL_MANUAL;
1942 static ssize_t fan1_input_show(struct device *dev,
1943 struct device_attribute *attr,
1946 struct asus_wmi *asus = dev_get_drvdata(dev);
1950 switch (asus->fan_type) {
1951 case FAN_TYPE_SPEC83:
1952 ret = asus_wmi_get_devstate(asus, ASUS_WMI_DEVID_CPU_FAN_CTRL,
1961 /* no speed readable on manual mode */
1962 if (asus->fan_pwm_mode == ASUS_FAN_CTRL_MANUAL)
1965 ret = asus_agfn_fan_speed_read(asus, 1, &value);
1967 pr_warn("reading fan speed failed: %d\n", ret);
1976 return sysfs_emit(buf, "%d\n", value < 0 ? -1 : value * 100);
1979 static ssize_t pwm1_enable_show(struct device *dev,
1980 struct device_attribute *attr,
1983 struct asus_wmi *asus = dev_get_drvdata(dev);
1986 * Just read back the cached pwm mode.
1988 * For the CPU_FAN device, the spec indicates that we should be
1989 * able to read the device status and consult bit 19 to see if we
1990 * are in Full On or Automatic mode. However, this does not work
1991 * in practice on X532FL at least (the bit is always 0) and there's
1992 * also nothing in the DSDT to indicate that this behaviour exists.
1994 return sysfs_emit(buf, "%d\n", asus->fan_pwm_mode);
1997 static ssize_t pwm1_enable_store(struct device *dev,
1998 struct device_attribute *attr,
1999 const char *buf, size_t count)
2001 struct asus_wmi *asus = dev_get_drvdata(dev);
2008 ret = kstrtouint(buf, 10, &state);
2012 if (asus->fan_type == FAN_TYPE_SPEC83) {
2013 switch (state) { /* standard documented hwmon values */
2014 case ASUS_FAN_CTRL_FULLSPEED:
2017 case ASUS_FAN_CTRL_AUTO:
2024 ret = asus_wmi_set_devstate(ASUS_WMI_DEVID_CPU_FAN_CTRL,
2031 } else if (asus->fan_type == FAN_TYPE_AGFN) {
2033 case ASUS_FAN_CTRL_MANUAL:
2036 case ASUS_FAN_CTRL_AUTO:
2037 status = asus_fan_set_auto(asus);
2047 asus->fan_pwm_mode = state;
2049 /* Must set to disabled if mode is toggled */
2050 if (asus->cpu_fan_curve_available)
2051 asus->custom_fan_curves[FAN_CURVE_DEV_CPU].enabled = false;
2052 if (asus->gpu_fan_curve_available)
2053 asus->custom_fan_curves[FAN_CURVE_DEV_GPU].enabled = false;
2058 static ssize_t fan1_label_show(struct device *dev,
2059 struct device_attribute *attr,
2062 return sysfs_emit(buf, "%s\n", ASUS_FAN_DESC);
2065 static ssize_t asus_hwmon_temp1(struct device *dev,
2066 struct device_attribute *attr,
2069 struct asus_wmi *asus = dev_get_drvdata(dev);
2073 err = asus_wmi_get_devstate(asus, ASUS_WMI_DEVID_THERMAL_CTRL, &value);
2077 return sprintf(buf, "%ld\n",
2078 deci_kelvin_to_millicelsius(value & 0xFFFF));
2081 /* GPU fan on modern ROG laptops */
2082 static ssize_t fan2_input_show(struct device *dev,
2083 struct device_attribute *attr,
2086 struct asus_wmi *asus = dev_get_drvdata(dev);
2090 ret = asus_wmi_get_devstate(asus, ASUS_WMI_DEVID_GPU_FAN_CTRL, &value);
2096 return sysfs_emit(buf, "%d\n", value * 100);
2099 static ssize_t fan2_label_show(struct device *dev,
2100 struct device_attribute *attr,
2103 return sysfs_emit(buf, "%s\n", ASUS_GPU_FAN_DESC);
2106 static ssize_t pwm2_enable_show(struct device *dev,
2107 struct device_attribute *attr,
2110 struct asus_wmi *asus = dev_get_drvdata(dev);
2112 return sysfs_emit(buf, "%d\n", asus->gpu_fan_pwm_mode);
2115 static ssize_t pwm2_enable_store(struct device *dev,
2116 struct device_attribute *attr,
2117 const char *buf, size_t count)
2119 struct asus_wmi *asus = dev_get_drvdata(dev);
2125 ret = kstrtouint(buf, 10, &state);
2129 switch (state) { /* standard documented hwmon values */
2130 case ASUS_FAN_CTRL_FULLSPEED:
2133 case ASUS_FAN_CTRL_AUTO:
2140 ret = asus_wmi_set_devstate(ASUS_WMI_DEVID_GPU_FAN_CTRL,
2148 asus->gpu_fan_pwm_mode = state;
2153 static DEVICE_ATTR_RW(pwm1);
2154 static DEVICE_ATTR_RW(pwm1_enable);
2155 static DEVICE_ATTR_RO(fan1_input);
2156 static DEVICE_ATTR_RO(fan1_label);
2157 /* Fan2 - GPU fan */
2158 static DEVICE_ATTR_RW(pwm2_enable);
2159 static DEVICE_ATTR_RO(fan2_input);
2160 static DEVICE_ATTR_RO(fan2_label);
2163 static DEVICE_ATTR(temp1_input, S_IRUGO, asus_hwmon_temp1, NULL);
2165 static struct attribute *hwmon_attributes[] = {
2166 &dev_attr_pwm1.attr,
2167 &dev_attr_pwm1_enable.attr,
2168 &dev_attr_pwm2_enable.attr,
2169 &dev_attr_fan1_input.attr,
2170 &dev_attr_fan1_label.attr,
2171 &dev_attr_fan2_input.attr,
2172 &dev_attr_fan2_label.attr,
2174 &dev_attr_temp1_input.attr,
2178 static umode_t asus_hwmon_sysfs_is_visible(struct kobject *kobj,
2179 struct attribute *attr, int idx)
2181 struct device *dev = kobj_to_dev(kobj);
2182 struct asus_wmi *asus = dev_get_drvdata(dev->parent);
2183 u32 value = ASUS_WMI_UNSUPPORTED_METHOD;
2185 if (attr == &dev_attr_pwm1.attr) {
2186 if (asus->fan_type != FAN_TYPE_AGFN)
2188 } else if (attr == &dev_attr_fan1_input.attr
2189 || attr == &dev_attr_fan1_label.attr
2190 || attr == &dev_attr_pwm1_enable.attr) {
2191 if (asus->fan_type == FAN_TYPE_NONE)
2193 } else if (attr == &dev_attr_fan2_input.attr
2194 || attr == &dev_attr_fan2_label.attr
2195 || attr == &dev_attr_pwm2_enable.attr) {
2196 if (asus->gpu_fan_type == FAN_TYPE_NONE)
2198 } else if (attr == &dev_attr_temp1_input.attr) {
2199 int err = asus_wmi_get_devstate(asus,
2200 ASUS_WMI_DEVID_THERMAL_CTRL,
2204 return 0; /* can't return negative here */
2207 * If the temperature value in deci-Kelvin is near the absolute
2208 * zero temperature, something is clearly wrong
2210 if (value == 0 || value == 1)
2217 static const struct attribute_group hwmon_attribute_group = {
2218 .is_visible = asus_hwmon_sysfs_is_visible,
2219 .attrs = hwmon_attributes
2221 __ATTRIBUTE_GROUPS(hwmon_attribute);
2223 static int asus_wmi_hwmon_init(struct asus_wmi *asus)
2225 struct device *dev = &asus->platform_device->dev;
2226 struct device *hwmon;
2228 hwmon = devm_hwmon_device_register_with_groups(dev, "asus", asus,
2229 hwmon_attribute_groups);
2231 if (IS_ERR(hwmon)) {
2232 pr_err("Could not register asus hwmon device\n");
2233 return PTR_ERR(hwmon);
2238 static int asus_wmi_fan_init(struct asus_wmi *asus)
2240 asus->gpu_fan_type = FAN_TYPE_NONE;
2241 asus->fan_type = FAN_TYPE_NONE;
2242 asus->agfn_pwm = -1;
2244 if (asus_wmi_dev_is_present(asus, ASUS_WMI_DEVID_CPU_FAN_CTRL))
2245 asus->fan_type = FAN_TYPE_SPEC83;
2246 else if (asus_wmi_has_agfn_fan(asus))
2247 asus->fan_type = FAN_TYPE_AGFN;
2249 /* Modern models like G713 also have GPU fan control */
2250 if (asus_wmi_dev_is_present(asus, ASUS_WMI_DEVID_GPU_FAN_CTRL))
2251 asus->gpu_fan_type = FAN_TYPE_SPEC83;
2253 if (asus->fan_type == FAN_TYPE_NONE)
2256 asus_fan_set_auto(asus);
2257 asus->fan_pwm_mode = ASUS_FAN_CTRL_AUTO;
2261 /* Fan mode *******************************************************************/
2263 static int fan_boost_mode_check_present(struct asus_wmi *asus)
2268 asus->fan_boost_mode_available = false;
2270 err = asus_wmi_get_devstate(asus, ASUS_WMI_DEVID_FAN_BOOST_MODE,
2279 if ((result & ASUS_WMI_DSTS_PRESENCE_BIT) &&
2280 (result & ASUS_FAN_BOOST_MODES_MASK)) {
2281 asus->fan_boost_mode_available = true;
2282 asus->fan_boost_mode_mask = result & ASUS_FAN_BOOST_MODES_MASK;
2288 static int fan_boost_mode_write(struct asus_wmi *asus)
2294 value = asus->fan_boost_mode;
2296 pr_info("Set fan boost mode: %u\n", value);
2297 err = asus_wmi_set_devstate(ASUS_WMI_DEVID_FAN_BOOST_MODE, value,
2300 sysfs_notify(&asus->platform_device->dev.kobj, NULL,
2304 pr_warn("Failed to set fan boost mode: %d\n", err);
2309 pr_warn("Failed to set fan boost mode (retval): 0x%x\n",
2317 static int fan_boost_mode_switch_next(struct asus_wmi *asus)
2319 u8 mask = asus->fan_boost_mode_mask;
2321 if (asus->fan_boost_mode == ASUS_FAN_BOOST_MODE_NORMAL) {
2322 if (mask & ASUS_FAN_BOOST_MODE_OVERBOOST_MASK)
2323 asus->fan_boost_mode = ASUS_FAN_BOOST_MODE_OVERBOOST;
2324 else if (mask & ASUS_FAN_BOOST_MODE_SILENT_MASK)
2325 asus->fan_boost_mode = ASUS_FAN_BOOST_MODE_SILENT;
2326 } else if (asus->fan_boost_mode == ASUS_FAN_BOOST_MODE_OVERBOOST) {
2327 if (mask & ASUS_FAN_BOOST_MODE_SILENT_MASK)
2328 asus->fan_boost_mode = ASUS_FAN_BOOST_MODE_SILENT;
2330 asus->fan_boost_mode = ASUS_FAN_BOOST_MODE_NORMAL;
2332 asus->fan_boost_mode = ASUS_FAN_BOOST_MODE_NORMAL;
2335 return fan_boost_mode_write(asus);
2338 static ssize_t fan_boost_mode_show(struct device *dev,
2339 struct device_attribute *attr, char *buf)
2341 struct asus_wmi *asus = dev_get_drvdata(dev);
2343 return sysfs_emit(buf, "%d\n", asus->fan_boost_mode);
2346 static ssize_t fan_boost_mode_store(struct device *dev,
2347 struct device_attribute *attr,
2348 const char *buf, size_t count)
2350 struct asus_wmi *asus = dev_get_drvdata(dev);
2351 u8 mask = asus->fan_boost_mode_mask;
2355 result = kstrtou8(buf, 10, &new_mode);
2357 pr_warn("Trying to store invalid value\n");
2361 if (new_mode == ASUS_FAN_BOOST_MODE_OVERBOOST) {
2362 if (!(mask & ASUS_FAN_BOOST_MODE_OVERBOOST_MASK))
2364 } else if (new_mode == ASUS_FAN_BOOST_MODE_SILENT) {
2365 if (!(mask & ASUS_FAN_BOOST_MODE_SILENT_MASK))
2367 } else if (new_mode != ASUS_FAN_BOOST_MODE_NORMAL) {
2371 asus->fan_boost_mode = new_mode;
2372 fan_boost_mode_write(asus);
2377 // Fan boost mode: 0 - normal, 1 - overboost, 2 - silent
2378 static DEVICE_ATTR_RW(fan_boost_mode);
2380 /* Custom fan curves **********************************************************/
2382 static void fan_curve_copy_from_buf(struct fan_curve_data *data, u8 *buf)
2386 for (i = 0; i < FAN_CURVE_POINTS; i++) {
2387 data->temps[i] = buf[i];
2390 for (i = 0; i < FAN_CURVE_POINTS; i++) {
2392 255 * buf[i + FAN_CURVE_POINTS] / 100;
2396 static int fan_curve_get_factory_default(struct asus_wmi *asus, u32 fan_dev)
2398 struct fan_curve_data *curves;
2399 u8 buf[FAN_CURVE_BUF_LEN];
2404 if (asus->throttle_thermal_policy_available)
2405 mode = asus->throttle_thermal_policy_mode;
2406 /* DEVID_<C/G>PU_FAN_CURVE is switched for OVERBOOST vs SILENT */
2412 if (fan_dev == ASUS_WMI_DEVID_GPU_FAN_CURVE)
2413 fan_idx = FAN_CURVE_DEV_GPU;
2415 curves = &asus->custom_fan_curves[fan_idx];
2416 err = asus_wmi_evaluate_method_buf(asus->dsts_id, fan_dev, mode, buf,
2419 pr_warn("%s (0x%08x) failed: %d\n", __func__, fan_dev, err);
2423 fan_curve_copy_from_buf(curves, buf);
2424 curves->device_id = fan_dev;
2429 /* Check if capability exists, and populate defaults */
2430 static int fan_curve_check_present(struct asus_wmi *asus, bool *available,
2437 err = fan_curve_get_factory_default(asus, fan_dev);
2446 /* Determine which fan the attribute is for if SENSOR_ATTR */
2447 static struct fan_curve_data *fan_curve_attr_select(struct asus_wmi *asus,
2448 struct device_attribute *attr)
2450 int index = to_sensor_dev_attr(attr)->index;
2452 return &asus->custom_fan_curves[index & FAN_CURVE_DEV_GPU];
2455 /* Determine which fan the attribute is for if SENSOR_ATTR_2 */
2456 static struct fan_curve_data *fan_curve_attr_2_select(struct asus_wmi *asus,
2457 struct device_attribute *attr)
2459 int nr = to_sensor_dev_attr_2(attr)->nr;
2461 return &asus->custom_fan_curves[nr & FAN_CURVE_DEV_GPU];
2464 static ssize_t fan_curve_show(struct device *dev,
2465 struct device_attribute *attr, char *buf)
2467 struct sensor_device_attribute_2 *dev_attr = to_sensor_dev_attr_2(attr);
2468 struct asus_wmi *asus = dev_get_drvdata(dev);
2469 struct fan_curve_data *data;
2470 int value, index, nr;
2472 data = fan_curve_attr_2_select(asus, attr);
2473 index = dev_attr->index;
2476 if (nr & FAN_CURVE_PWM_MASK)
2477 value = data->percents[index];
2479 value = data->temps[index];
2481 return sysfs_emit(buf, "%d\n", value);
2485 * "fan_dev" is the related WMI method such as ASUS_WMI_DEVID_CPU_FAN_CURVE.
2487 static int fan_curve_write(struct asus_wmi *asus,
2488 struct fan_curve_data *data)
2490 u32 arg1 = 0, arg2 = 0, arg3 = 0, arg4 = 0;
2491 u8 *percents = data->percents;
2492 u8 *temps = data->temps;
2493 int ret, i, shift = 0;
2498 for (i = 0; i < FAN_CURVE_POINTS / 2; i++) {
2499 arg1 += (temps[i]) << shift;
2500 arg2 += (temps[i + 4]) << shift;
2501 /* Scale to percentage for device */
2502 arg3 += (100 * percents[i] / 255) << shift;
2503 arg4 += (100 * percents[i + 4] / 255) << shift;
2507 return asus_wmi_evaluate_method5(ASUS_WMI_METHODID_DEVS,
2509 arg1, arg2, arg3, arg4, &ret);
2512 static ssize_t fan_curve_store(struct device *dev,
2513 struct device_attribute *attr, const char *buf,
2516 struct sensor_device_attribute_2 *dev_attr = to_sensor_dev_attr_2(attr);
2517 struct asus_wmi *asus = dev_get_drvdata(dev);
2518 struct fan_curve_data *data;
2522 int pwm = dev_attr->nr & FAN_CURVE_PWM_MASK;
2523 int index = dev_attr->index;
2525 data = fan_curve_attr_2_select(asus, attr);
2527 err = kstrtou8(buf, 10, &value);
2532 data->percents[index] = value;
2534 data->temps[index] = value;
2538 * Mark as disabled so the user has to explicitly enable to apply a
2539 * changed fan curve. This prevents potential lockups from writing out
2540 * many changes as one-write-per-change.
2542 data->enabled = false;
2547 static ssize_t fan_curve_enable_show(struct device *dev,
2548 struct device_attribute *attr, char *buf)
2550 struct asus_wmi *asus = dev_get_drvdata(dev);
2551 struct fan_curve_data *data;
2554 data = fan_curve_attr_select(asus, attr);
2559 return sysfs_emit(buf, "%d\n", out);
2562 static ssize_t fan_curve_enable_store(struct device *dev,
2563 struct device_attribute *attr,
2564 const char *buf, size_t count)
2566 struct asus_wmi *asus = dev_get_drvdata(dev);
2567 struct fan_curve_data *data;
2570 data = fan_curve_attr_select(asus, attr);
2572 err = kstrtoint(buf, 10, &value);
2578 data->enabled = true;
2581 data->enabled = false;
2584 * Auto + reset the fan curve data to defaults. Make it an explicit
2585 * option so that users don't accidentally overwrite a set fan curve.
2588 err = fan_curve_get_factory_default(asus, data->device_id);
2591 data->enabled = false;
2597 if (data->enabled) {
2598 err = fan_curve_write(asus, data);
2603 * For machines with throttle this is the only way to reset fans
2604 * to default mode of operation (does not erase curve data).
2606 if (asus->throttle_thermal_policy_available) {
2607 err = throttle_thermal_policy_write(asus);
2610 /* Similar is true for laptops with this fan */
2611 } else if (asus->fan_type == FAN_TYPE_SPEC83) {
2612 err = asus_fan_set_auto(asus);
2616 /* Safeguard against fautly ACPI tables */
2617 err = fan_curve_get_factory_default(asus, data->device_id);
2620 err = fan_curve_write(asus, data);
2629 static SENSOR_DEVICE_ATTR_RW(pwm1_enable, fan_curve_enable, FAN_CURVE_DEV_CPU);
2630 static SENSOR_DEVICE_ATTR_2_RW(pwm1_auto_point1_temp, fan_curve,
2631 FAN_CURVE_DEV_CPU, 0);
2632 static SENSOR_DEVICE_ATTR_2_RW(pwm1_auto_point2_temp, fan_curve,
2633 FAN_CURVE_DEV_CPU, 1);
2634 static SENSOR_DEVICE_ATTR_2_RW(pwm1_auto_point3_temp, fan_curve,
2635 FAN_CURVE_DEV_CPU, 2);
2636 static SENSOR_DEVICE_ATTR_2_RW(pwm1_auto_point4_temp, fan_curve,
2637 FAN_CURVE_DEV_CPU, 3);
2638 static SENSOR_DEVICE_ATTR_2_RW(pwm1_auto_point5_temp, fan_curve,
2639 FAN_CURVE_DEV_CPU, 4);
2640 static SENSOR_DEVICE_ATTR_2_RW(pwm1_auto_point6_temp, fan_curve,
2641 FAN_CURVE_DEV_CPU, 5);
2642 static SENSOR_DEVICE_ATTR_2_RW(pwm1_auto_point7_temp, fan_curve,
2643 FAN_CURVE_DEV_CPU, 6);
2644 static SENSOR_DEVICE_ATTR_2_RW(pwm1_auto_point8_temp, fan_curve,
2645 FAN_CURVE_DEV_CPU, 7);
2647 static SENSOR_DEVICE_ATTR_2_RW(pwm1_auto_point1_pwm, fan_curve,
2648 FAN_CURVE_DEV_CPU | FAN_CURVE_PWM_MASK, 0);
2649 static SENSOR_DEVICE_ATTR_2_RW(pwm1_auto_point2_pwm, fan_curve,
2650 FAN_CURVE_DEV_CPU | FAN_CURVE_PWM_MASK, 1);
2651 static SENSOR_DEVICE_ATTR_2_RW(pwm1_auto_point3_pwm, fan_curve,
2652 FAN_CURVE_DEV_CPU | FAN_CURVE_PWM_MASK, 2);
2653 static SENSOR_DEVICE_ATTR_2_RW(pwm1_auto_point4_pwm, fan_curve,
2654 FAN_CURVE_DEV_CPU | FAN_CURVE_PWM_MASK, 3);
2655 static SENSOR_DEVICE_ATTR_2_RW(pwm1_auto_point5_pwm, fan_curve,
2656 FAN_CURVE_DEV_CPU | FAN_CURVE_PWM_MASK, 4);
2657 static SENSOR_DEVICE_ATTR_2_RW(pwm1_auto_point6_pwm, fan_curve,
2658 FAN_CURVE_DEV_CPU | FAN_CURVE_PWM_MASK, 5);
2659 static SENSOR_DEVICE_ATTR_2_RW(pwm1_auto_point7_pwm, fan_curve,
2660 FAN_CURVE_DEV_CPU | FAN_CURVE_PWM_MASK, 6);
2661 static SENSOR_DEVICE_ATTR_2_RW(pwm1_auto_point8_pwm, fan_curve,
2662 FAN_CURVE_DEV_CPU | FAN_CURVE_PWM_MASK, 7);
2665 static SENSOR_DEVICE_ATTR_RW(pwm2_enable, fan_curve_enable, FAN_CURVE_DEV_GPU);
2666 static SENSOR_DEVICE_ATTR_2_RW(pwm2_auto_point1_temp, fan_curve,
2667 FAN_CURVE_DEV_GPU, 0);
2668 static SENSOR_DEVICE_ATTR_2_RW(pwm2_auto_point2_temp, fan_curve,
2669 FAN_CURVE_DEV_GPU, 1);
2670 static SENSOR_DEVICE_ATTR_2_RW(pwm2_auto_point3_temp, fan_curve,
2671 FAN_CURVE_DEV_GPU, 2);
2672 static SENSOR_DEVICE_ATTR_2_RW(pwm2_auto_point4_temp, fan_curve,
2673 FAN_CURVE_DEV_GPU, 3);
2674 static SENSOR_DEVICE_ATTR_2_RW(pwm2_auto_point5_temp, fan_curve,
2675 FAN_CURVE_DEV_GPU, 4);
2676 static SENSOR_DEVICE_ATTR_2_RW(pwm2_auto_point6_temp, fan_curve,
2677 FAN_CURVE_DEV_GPU, 5);
2678 static SENSOR_DEVICE_ATTR_2_RW(pwm2_auto_point7_temp, fan_curve,
2679 FAN_CURVE_DEV_GPU, 6);
2680 static SENSOR_DEVICE_ATTR_2_RW(pwm2_auto_point8_temp, fan_curve,
2681 FAN_CURVE_DEV_GPU, 7);
2683 static SENSOR_DEVICE_ATTR_2_RW(pwm2_auto_point1_pwm, fan_curve,
2684 FAN_CURVE_DEV_GPU | FAN_CURVE_PWM_MASK, 0);
2685 static SENSOR_DEVICE_ATTR_2_RW(pwm2_auto_point2_pwm, fan_curve,
2686 FAN_CURVE_DEV_GPU | FAN_CURVE_PWM_MASK, 1);
2687 static SENSOR_DEVICE_ATTR_2_RW(pwm2_auto_point3_pwm, fan_curve,
2688 FAN_CURVE_DEV_GPU | FAN_CURVE_PWM_MASK, 2);
2689 static SENSOR_DEVICE_ATTR_2_RW(pwm2_auto_point4_pwm, fan_curve,
2690 FAN_CURVE_DEV_GPU | FAN_CURVE_PWM_MASK, 3);
2691 static SENSOR_DEVICE_ATTR_2_RW(pwm2_auto_point5_pwm, fan_curve,
2692 FAN_CURVE_DEV_GPU | FAN_CURVE_PWM_MASK, 4);
2693 static SENSOR_DEVICE_ATTR_2_RW(pwm2_auto_point6_pwm, fan_curve,
2694 FAN_CURVE_DEV_GPU | FAN_CURVE_PWM_MASK, 5);
2695 static SENSOR_DEVICE_ATTR_2_RW(pwm2_auto_point7_pwm, fan_curve,
2696 FAN_CURVE_DEV_GPU | FAN_CURVE_PWM_MASK, 6);
2697 static SENSOR_DEVICE_ATTR_2_RW(pwm2_auto_point8_pwm, fan_curve,
2698 FAN_CURVE_DEV_GPU | FAN_CURVE_PWM_MASK, 7);
2700 static struct attribute *asus_fan_curve_attr[] = {
2702 &sensor_dev_attr_pwm1_enable.dev_attr.attr,
2703 &sensor_dev_attr_pwm1_auto_point1_temp.dev_attr.attr,
2704 &sensor_dev_attr_pwm1_auto_point2_temp.dev_attr.attr,
2705 &sensor_dev_attr_pwm1_auto_point3_temp.dev_attr.attr,
2706 &sensor_dev_attr_pwm1_auto_point4_temp.dev_attr.attr,
2707 &sensor_dev_attr_pwm1_auto_point5_temp.dev_attr.attr,
2708 &sensor_dev_attr_pwm1_auto_point6_temp.dev_attr.attr,
2709 &sensor_dev_attr_pwm1_auto_point7_temp.dev_attr.attr,
2710 &sensor_dev_attr_pwm1_auto_point8_temp.dev_attr.attr,
2711 &sensor_dev_attr_pwm1_auto_point1_pwm.dev_attr.attr,
2712 &sensor_dev_attr_pwm1_auto_point2_pwm.dev_attr.attr,
2713 &sensor_dev_attr_pwm1_auto_point3_pwm.dev_attr.attr,
2714 &sensor_dev_attr_pwm1_auto_point4_pwm.dev_attr.attr,
2715 &sensor_dev_attr_pwm1_auto_point5_pwm.dev_attr.attr,
2716 &sensor_dev_attr_pwm1_auto_point6_pwm.dev_attr.attr,
2717 &sensor_dev_attr_pwm1_auto_point7_pwm.dev_attr.attr,
2718 &sensor_dev_attr_pwm1_auto_point8_pwm.dev_attr.attr,
2720 &sensor_dev_attr_pwm2_enable.dev_attr.attr,
2721 &sensor_dev_attr_pwm2_auto_point1_temp.dev_attr.attr,
2722 &sensor_dev_attr_pwm2_auto_point2_temp.dev_attr.attr,
2723 &sensor_dev_attr_pwm2_auto_point3_temp.dev_attr.attr,
2724 &sensor_dev_attr_pwm2_auto_point4_temp.dev_attr.attr,
2725 &sensor_dev_attr_pwm2_auto_point5_temp.dev_attr.attr,
2726 &sensor_dev_attr_pwm2_auto_point6_temp.dev_attr.attr,
2727 &sensor_dev_attr_pwm2_auto_point7_temp.dev_attr.attr,
2728 &sensor_dev_attr_pwm2_auto_point8_temp.dev_attr.attr,
2729 &sensor_dev_attr_pwm2_auto_point1_pwm.dev_attr.attr,
2730 &sensor_dev_attr_pwm2_auto_point2_pwm.dev_attr.attr,
2731 &sensor_dev_attr_pwm2_auto_point3_pwm.dev_attr.attr,
2732 &sensor_dev_attr_pwm2_auto_point4_pwm.dev_attr.attr,
2733 &sensor_dev_attr_pwm2_auto_point5_pwm.dev_attr.attr,
2734 &sensor_dev_attr_pwm2_auto_point6_pwm.dev_attr.attr,
2735 &sensor_dev_attr_pwm2_auto_point7_pwm.dev_attr.attr,
2736 &sensor_dev_attr_pwm2_auto_point8_pwm.dev_attr.attr,
2740 static umode_t asus_fan_curve_is_visible(struct kobject *kobj,
2741 struct attribute *attr, int idx)
2743 struct device *dev = kobj_to_dev(kobj);
2744 struct asus_wmi *asus = dev_get_drvdata(dev->parent);
2747 * Check the char instead of casting attr as there are two attr types
2748 * involved here (attr1 and attr2)
2750 if (asus->cpu_fan_curve_available && attr->name[3] == '1')
2753 if (asus->gpu_fan_curve_available && attr->name[3] == '2')
2759 static const struct attribute_group asus_fan_curve_attr_group = {
2760 .is_visible = asus_fan_curve_is_visible,
2761 .attrs = asus_fan_curve_attr,
2763 __ATTRIBUTE_GROUPS(asus_fan_curve_attr);
2766 * Must be initialised after throttle_thermal_policy_check_present() as
2767 * we check the status of throttle_thermal_policy_available during init.
2769 static int asus_wmi_custom_fan_curve_init(struct asus_wmi *asus)
2771 struct device *dev = &asus->platform_device->dev;
2772 struct device *hwmon;
2775 err = fan_curve_check_present(asus, &asus->cpu_fan_curve_available,
2776 ASUS_WMI_DEVID_CPU_FAN_CURVE);
2780 err = fan_curve_check_present(asus, &asus->gpu_fan_curve_available,
2781 ASUS_WMI_DEVID_GPU_FAN_CURVE);
2785 if (!asus->cpu_fan_curve_available && !asus->gpu_fan_curve_available)
2788 hwmon = devm_hwmon_device_register_with_groups(
2789 dev, "asus_custom_fan_curve", asus, asus_fan_curve_attr_groups);
2791 if (IS_ERR(hwmon)) {
2793 "Could not register asus_custom_fan_curve device\n");
2794 return PTR_ERR(hwmon);
2800 /* Throttle thermal policy ****************************************************/
2802 static int throttle_thermal_policy_check_present(struct asus_wmi *asus)
2807 asus->throttle_thermal_policy_available = false;
2809 err = asus_wmi_get_devstate(asus,
2810 ASUS_WMI_DEVID_THROTTLE_THERMAL_POLICY,
2818 if (result & ASUS_WMI_DSTS_PRESENCE_BIT)
2819 asus->throttle_thermal_policy_available = true;
2824 static int throttle_thermal_policy_write(struct asus_wmi *asus)
2830 value = asus->throttle_thermal_policy_mode;
2832 err = asus_wmi_set_devstate(ASUS_WMI_DEVID_THROTTLE_THERMAL_POLICY,
2835 sysfs_notify(&asus->platform_device->dev.kobj, NULL,
2836 "throttle_thermal_policy");
2839 pr_warn("Failed to set throttle thermal policy: %d\n", err);
2844 pr_warn("Failed to set throttle thermal policy (retval): 0x%x\n",
2849 /* Must set to disabled if mode is toggled */
2850 if (asus->cpu_fan_curve_available)
2851 asus->custom_fan_curves[FAN_CURVE_DEV_CPU].enabled = false;
2852 if (asus->gpu_fan_curve_available)
2853 asus->custom_fan_curves[FAN_CURVE_DEV_GPU].enabled = false;
2858 static int throttle_thermal_policy_set_default(struct asus_wmi *asus)
2860 if (!asus->throttle_thermal_policy_available)
2863 asus->throttle_thermal_policy_mode = ASUS_THROTTLE_THERMAL_POLICY_DEFAULT;
2864 return throttle_thermal_policy_write(asus);
2867 static int throttle_thermal_policy_switch_next(struct asus_wmi *asus)
2869 u8 new_mode = asus->throttle_thermal_policy_mode + 1;
2872 if (new_mode > ASUS_THROTTLE_THERMAL_POLICY_SILENT)
2873 new_mode = ASUS_THROTTLE_THERMAL_POLICY_DEFAULT;
2875 asus->throttle_thermal_policy_mode = new_mode;
2876 err = throttle_thermal_policy_write(asus);
2881 * Ensure that platform_profile updates userspace with the change to ensure
2882 * that platform_profile and throttle_thermal_policy_mode are in sync.
2884 platform_profile_notify();
2889 static ssize_t throttle_thermal_policy_show(struct device *dev,
2890 struct device_attribute *attr, char *buf)
2892 struct asus_wmi *asus = dev_get_drvdata(dev);
2893 u8 mode = asus->throttle_thermal_policy_mode;
2895 return sysfs_emit(buf, "%d\n", mode);
2898 static ssize_t throttle_thermal_policy_store(struct device *dev,
2899 struct device_attribute *attr,
2900 const char *buf, size_t count)
2902 struct asus_wmi *asus = dev_get_drvdata(dev);
2907 result = kstrtou8(buf, 10, &new_mode);
2911 if (new_mode > ASUS_THROTTLE_THERMAL_POLICY_SILENT)
2914 asus->throttle_thermal_policy_mode = new_mode;
2915 err = throttle_thermal_policy_write(asus);
2920 * Ensure that platform_profile updates userspace with the change to ensure
2921 * that platform_profile and throttle_thermal_policy_mode are in sync.
2923 platform_profile_notify();
2928 // Throttle thermal policy: 0 - default, 1 - overboost, 2 - silent
2929 static DEVICE_ATTR_RW(throttle_thermal_policy);
2931 /* Platform profile ***********************************************************/
2932 static int asus_wmi_platform_profile_get(struct platform_profile_handler *pprof,
2933 enum platform_profile_option *profile)
2935 struct asus_wmi *asus;
2938 asus = container_of(pprof, struct asus_wmi, platform_profile_handler);
2940 tp = asus->throttle_thermal_policy_mode;
2943 case ASUS_THROTTLE_THERMAL_POLICY_DEFAULT:
2944 *profile = PLATFORM_PROFILE_BALANCED;
2946 case ASUS_THROTTLE_THERMAL_POLICY_OVERBOOST:
2947 *profile = PLATFORM_PROFILE_PERFORMANCE;
2949 case ASUS_THROTTLE_THERMAL_POLICY_SILENT:
2950 *profile = PLATFORM_PROFILE_QUIET;
2959 static int asus_wmi_platform_profile_set(struct platform_profile_handler *pprof,
2960 enum platform_profile_option profile)
2962 struct asus_wmi *asus;
2965 asus = container_of(pprof, struct asus_wmi, platform_profile_handler);
2968 case PLATFORM_PROFILE_PERFORMANCE:
2969 tp = ASUS_THROTTLE_THERMAL_POLICY_OVERBOOST;
2971 case PLATFORM_PROFILE_BALANCED:
2972 tp = ASUS_THROTTLE_THERMAL_POLICY_DEFAULT;
2974 case PLATFORM_PROFILE_QUIET:
2975 tp = ASUS_THROTTLE_THERMAL_POLICY_SILENT;
2981 asus->throttle_thermal_policy_mode = tp;
2982 return throttle_thermal_policy_write(asus);
2985 static int platform_profile_setup(struct asus_wmi *asus)
2987 struct device *dev = &asus->platform_device->dev;
2991 * Not an error if a component platform_profile relies on is unavailable
2992 * so early return, skipping the setup of platform_profile.
2994 if (!asus->throttle_thermal_policy_available)
2997 dev_info(dev, "Using throttle_thermal_policy for platform_profile support\n");
2999 asus->platform_profile_handler.profile_get = asus_wmi_platform_profile_get;
3000 asus->platform_profile_handler.profile_set = asus_wmi_platform_profile_set;
3002 set_bit(PLATFORM_PROFILE_QUIET, asus->platform_profile_handler.choices);
3003 set_bit(PLATFORM_PROFILE_BALANCED,
3004 asus->platform_profile_handler.choices);
3005 set_bit(PLATFORM_PROFILE_PERFORMANCE,
3006 asus->platform_profile_handler.choices);
3008 err = platform_profile_register(&asus->platform_profile_handler);
3012 asus->platform_profile_support = true;
3016 /* Backlight ******************************************************************/
3018 static int read_backlight_power(struct asus_wmi *asus)
3022 if (asus->driver->quirks->store_backlight_power)
3023 ret = !asus->driver->panel_power;
3025 ret = asus_wmi_get_devstate_simple(asus,
3026 ASUS_WMI_DEVID_BACKLIGHT);
3031 return ret ? FB_BLANK_UNBLANK : FB_BLANK_POWERDOWN;
3034 static int read_brightness_max(struct asus_wmi *asus)
3039 err = asus_wmi_get_devstate(asus, ASUS_WMI_DEVID_BRIGHTNESS, &retval);
3043 retval = retval & ASUS_WMI_DSTS_MAX_BRIGTH_MASK;
3052 static int read_brightness(struct backlight_device *bd)
3054 struct asus_wmi *asus = bl_get_data(bd);
3058 err = asus_wmi_get_devstate(asus, ASUS_WMI_DEVID_BRIGHTNESS, &retval);
3062 return retval & ASUS_WMI_DSTS_BRIGHTNESS_MASK;
3065 static u32 get_scalar_command(struct backlight_device *bd)
3067 struct asus_wmi *asus = bl_get_data(bd);
3070 if ((asus->driver->brightness < bd->props.brightness) ||
3071 bd->props.brightness == bd->props.max_brightness)
3072 ctrl_param = 0x00008001;
3073 else if ((asus->driver->brightness > bd->props.brightness) ||
3074 bd->props.brightness == 0)
3075 ctrl_param = 0x00008000;
3077 asus->driver->brightness = bd->props.brightness;
3082 static int update_bl_status(struct backlight_device *bd)
3084 struct asus_wmi *asus = bl_get_data(bd);
3088 power = read_backlight_power(asus);
3089 if (power != -ENODEV && bd->props.power != power) {
3090 ctrl_param = !!(bd->props.power == FB_BLANK_UNBLANK);
3091 err = asus_wmi_set_devstate(ASUS_WMI_DEVID_BACKLIGHT,
3093 if (asus->driver->quirks->store_backlight_power)
3094 asus->driver->panel_power = bd->props.power;
3096 /* When using scalar brightness, updating the brightness
3097 * will mess with the backlight power */
3098 if (asus->driver->quirks->scalar_panel_brightness)
3102 if (asus->driver->quirks->scalar_panel_brightness)
3103 ctrl_param = get_scalar_command(bd);
3105 ctrl_param = bd->props.brightness;
3107 err = asus_wmi_set_devstate(ASUS_WMI_DEVID_BRIGHTNESS,
3113 static const struct backlight_ops asus_wmi_bl_ops = {
3114 .get_brightness = read_brightness,
3115 .update_status = update_bl_status,
3118 static int asus_wmi_backlight_notify(struct asus_wmi *asus, int code)
3120 struct backlight_device *bd = asus->backlight_device;
3121 int old = bd->props.brightness;
3124 if (code >= NOTIFY_BRNUP_MIN && code <= NOTIFY_BRNUP_MAX)
3125 new = code - NOTIFY_BRNUP_MIN + 1;
3126 else if (code >= NOTIFY_BRNDOWN_MIN && code <= NOTIFY_BRNDOWN_MAX)
3127 new = code - NOTIFY_BRNDOWN_MIN;
3129 bd->props.brightness = new;
3130 backlight_update_status(bd);
3131 backlight_force_update(bd, BACKLIGHT_UPDATE_HOTKEY);
3136 static int asus_wmi_backlight_init(struct asus_wmi *asus)
3138 struct backlight_device *bd;
3139 struct backlight_properties props;
3143 max = read_brightness_max(asus);
3147 power = read_backlight_power(asus);
3148 if (power == -ENODEV)
3149 power = FB_BLANK_UNBLANK;
3153 memset(&props, 0, sizeof(struct backlight_properties));
3154 props.type = BACKLIGHT_PLATFORM;
3155 props.max_brightness = max;
3156 bd = backlight_device_register(asus->driver->name,
3157 &asus->platform_device->dev, asus,
3158 &asus_wmi_bl_ops, &props);
3160 pr_err("Could not register backlight device\n");
3164 asus->backlight_device = bd;
3166 if (asus->driver->quirks->store_backlight_power)
3167 asus->driver->panel_power = power;
3169 bd->props.brightness = read_brightness(bd);
3170 bd->props.power = power;
3171 backlight_update_status(bd);
3173 asus->driver->brightness = bd->props.brightness;
3178 static void asus_wmi_backlight_exit(struct asus_wmi *asus)
3180 backlight_device_unregister(asus->backlight_device);
3182 asus->backlight_device = NULL;
3185 static int is_display_toggle(int code)
3187 /* display toggle keys */
3188 if ((code >= 0x61 && code <= 0x67) ||
3189 (code >= 0x8c && code <= 0x93) ||
3190 (code >= 0xa0 && code <= 0xa7) ||
3191 (code >= 0xd0 && code <= 0xd5))
3197 /* Fn-lock ********************************************************************/
3199 static bool asus_wmi_has_fnlock_key(struct asus_wmi *asus)
3203 asus_wmi_get_devstate(asus, ASUS_WMI_DEVID_FNLOCK, &result);
3205 return (result & ASUS_WMI_DSTS_PRESENCE_BIT) &&
3206 !(result & ASUS_WMI_FNLOCK_BIOS_DISABLED);
3209 static void asus_wmi_fnlock_update(struct asus_wmi *asus)
3211 int mode = asus->fnlock_locked;
3213 asus_wmi_set_devstate(ASUS_WMI_DEVID_FNLOCK, mode, NULL);
3216 /* WMI events *****************************************************************/
3218 static int asus_wmi_get_event_code(u32 value)
3220 struct acpi_buffer response = { ACPI_ALLOCATE_BUFFER, NULL };
3221 union acpi_object *obj;
3225 status = wmi_get_event_data(value, &response);
3226 if (ACPI_FAILURE(status)) {
3227 pr_warn("Failed to get WMI notify code: %s\n",
3228 acpi_format_exception(status));
3232 obj = (union acpi_object *)response.pointer;
3234 if (obj && obj->type == ACPI_TYPE_INTEGER)
3235 code = (int)(obj->integer.value & WMI_EVENT_MASK);
3243 static void asus_wmi_handle_event_code(int code, struct asus_wmi *asus)
3245 unsigned int key_value = 1;
3246 bool autorelease = 1;
3247 int orig_code = code;
3249 if (asus->driver->key_filter) {
3250 asus->driver->key_filter(asus->driver, &code, &key_value,
3252 if (code == ASUS_WMI_KEY_IGNORE)
3256 if (code >= NOTIFY_BRNUP_MIN && code <= NOTIFY_BRNUP_MAX)
3257 code = ASUS_WMI_BRN_UP;
3258 else if (code >= NOTIFY_BRNDOWN_MIN && code <= NOTIFY_BRNDOWN_MAX)
3259 code = ASUS_WMI_BRN_DOWN;
3261 if (code == ASUS_WMI_BRN_DOWN || code == ASUS_WMI_BRN_UP) {
3262 if (acpi_video_get_backlight_type() == acpi_backlight_vendor) {
3263 asus_wmi_backlight_notify(asus, orig_code);
3268 if (code == NOTIFY_KBD_BRTUP) {
3269 kbd_led_set_by_kbd(asus, asus->kbd_led_wk + 1);
3272 if (code == NOTIFY_KBD_BRTDWN) {
3273 kbd_led_set_by_kbd(asus, asus->kbd_led_wk - 1);
3276 if (code == NOTIFY_KBD_BRTTOGGLE) {
3277 if (asus->kbd_led_wk == asus->kbd_led.max_brightness)
3278 kbd_led_set_by_kbd(asus, 0);
3280 kbd_led_set_by_kbd(asus, asus->kbd_led_wk + 1);
3284 if (code == NOTIFY_FNLOCK_TOGGLE) {
3285 asus->fnlock_locked = !asus->fnlock_locked;
3286 asus_wmi_fnlock_update(asus);
3290 if (code == asus->tablet_switch_event_code) {
3291 asus_wmi_tablet_mode_get_state(asus);
3295 if (code == NOTIFY_KBD_FBM || code == NOTIFY_KBD_TTP) {
3296 if (asus->fan_boost_mode_available)
3297 fan_boost_mode_switch_next(asus);
3298 if (asus->throttle_thermal_policy_available)
3299 throttle_thermal_policy_switch_next(asus);
3304 if (is_display_toggle(code) && asus->driver->quirks->no_display_toggle)
3307 if (!sparse_keymap_report_event(asus->inputdev, code,
3308 key_value, autorelease))
3309 pr_info("Unknown key code 0x%x\n", code);
3312 static void asus_wmi_notify(u32 value, void *context)
3314 struct asus_wmi *asus = context;
3318 for (i = 0; i < WMI_EVENT_QUEUE_SIZE + 1; i++) {
3319 code = asus_wmi_get_event_code(value);
3321 pr_warn("Failed to get notify code: %d\n", code);
3325 if (code == WMI_EVENT_QUEUE_END || code == WMI_EVENT_MASK)
3328 asus_wmi_handle_event_code(code, asus);
3331 * Double check that queue is present:
3332 * ATK (with queue) uses 0xff, ASUSWMI (without) 0xd2.
3334 if (!asus->wmi_event_queue || value != WMI_EVENT_VALUE_ATK)
3338 pr_warn("Failed to process event queue, last code: 0x%x\n", code);
3341 static int asus_wmi_notify_queue_flush(struct asus_wmi *asus)
3346 for (i = 0; i < WMI_EVENT_QUEUE_SIZE + 1; i++) {
3347 code = asus_wmi_get_event_code(WMI_EVENT_VALUE_ATK);
3349 pr_warn("Failed to get event during flush: %d\n", code);
3353 if (code == WMI_EVENT_QUEUE_END || code == WMI_EVENT_MASK)
3357 pr_warn("Failed to flush event queue\n");
3361 /* Sysfs **********************************************************************/
3363 static ssize_t store_sys_wmi(struct asus_wmi *asus, int devid,
3364 const char *buf, size_t count)
3369 value = asus_wmi_get_devstate_simple(asus, devid);
3373 err = kstrtoint(buf, 0, &value);
3377 err = asus_wmi_set_devstate(devid, value, &retval);
3384 static ssize_t show_sys_wmi(struct asus_wmi *asus, int devid, char *buf)
3386 int value = asus_wmi_get_devstate_simple(asus, devid);
3391 return sprintf(buf, "%d\n", value);
3394 #define ASUS_WMI_CREATE_DEVICE_ATTR(_name, _mode, _cm) \
3395 static ssize_t show_##_name(struct device *dev, \
3396 struct device_attribute *attr, \
3399 struct asus_wmi *asus = dev_get_drvdata(dev); \
3401 return show_sys_wmi(asus, _cm, buf); \
3403 static ssize_t store_##_name(struct device *dev, \
3404 struct device_attribute *attr, \
3405 const char *buf, size_t count) \
3407 struct asus_wmi *asus = dev_get_drvdata(dev); \
3409 return store_sys_wmi(asus, _cm, buf, count); \
3411 static struct device_attribute dev_attr_##_name = { \
3413 .name = __stringify(_name), \
3415 .show = show_##_name, \
3416 .store = store_##_name, \
3419 ASUS_WMI_CREATE_DEVICE_ATTR(touchpad, 0644, ASUS_WMI_DEVID_TOUCHPAD);
3420 ASUS_WMI_CREATE_DEVICE_ATTR(camera, 0644, ASUS_WMI_DEVID_CAMERA);
3421 ASUS_WMI_CREATE_DEVICE_ATTR(cardr, 0644, ASUS_WMI_DEVID_CARDREADER);
3422 ASUS_WMI_CREATE_DEVICE_ATTR(lid_resume, 0644, ASUS_WMI_DEVID_LID_RESUME);
3423 ASUS_WMI_CREATE_DEVICE_ATTR(als_enable, 0644, ASUS_WMI_DEVID_ALS_ENABLE);
3425 static ssize_t cpufv_store(struct device *dev, struct device_attribute *attr,
3426 const char *buf, size_t count)
3430 rv = kstrtoint(buf, 0, &value);
3434 if (value < 0 || value > 2)
3437 rv = asus_wmi_evaluate_method(ASUS_WMI_METHODID_CFVS, value, 0, NULL);
3444 static DEVICE_ATTR_WO(cpufv);
3446 static struct attribute *platform_attributes[] = {
3447 &dev_attr_cpufv.attr,
3448 &dev_attr_camera.attr,
3449 &dev_attr_cardr.attr,
3450 &dev_attr_touchpad.attr,
3451 &dev_attr_egpu_enable.attr,
3452 &dev_attr_dgpu_disable.attr,
3453 &dev_attr_gpu_mux_mode.attr,
3454 &dev_attr_lid_resume.attr,
3455 &dev_attr_als_enable.attr,
3456 &dev_attr_fan_boost_mode.attr,
3457 &dev_attr_throttle_thermal_policy.attr,
3458 &dev_attr_panel_od.attr,
3462 static umode_t asus_sysfs_is_visible(struct kobject *kobj,
3463 struct attribute *attr, int idx)
3465 struct device *dev = kobj_to_dev(kobj);
3466 struct asus_wmi *asus = dev_get_drvdata(dev);
3470 if (attr == &dev_attr_camera.attr)
3471 devid = ASUS_WMI_DEVID_CAMERA;
3472 else if (attr == &dev_attr_cardr.attr)
3473 devid = ASUS_WMI_DEVID_CARDREADER;
3474 else if (attr == &dev_attr_touchpad.attr)
3475 devid = ASUS_WMI_DEVID_TOUCHPAD;
3476 else if (attr == &dev_attr_lid_resume.attr)
3477 devid = ASUS_WMI_DEVID_LID_RESUME;
3478 else if (attr == &dev_attr_als_enable.attr)
3479 devid = ASUS_WMI_DEVID_ALS_ENABLE;
3480 else if (attr == &dev_attr_egpu_enable.attr)
3481 ok = asus->egpu_enable_available;
3482 else if (attr == &dev_attr_dgpu_disable.attr)
3483 ok = asus->dgpu_disable_available;
3484 else if (attr == &dev_attr_gpu_mux_mode.attr)
3485 ok = asus->gpu_mux_mode_available;
3486 else if (attr == &dev_attr_fan_boost_mode.attr)
3487 ok = asus->fan_boost_mode_available;
3488 else if (attr == &dev_attr_throttle_thermal_policy.attr)
3489 ok = asus->throttle_thermal_policy_available;
3490 else if (attr == &dev_attr_panel_od.attr)
3491 ok = asus->panel_overdrive_available;
3494 ok = !(asus_wmi_get_devstate_simple(asus, devid) < 0);
3496 return ok ? attr->mode : 0;
3499 static const struct attribute_group platform_attribute_group = {
3500 .is_visible = asus_sysfs_is_visible,
3501 .attrs = platform_attributes
3504 static void asus_wmi_sysfs_exit(struct platform_device *device)
3506 sysfs_remove_group(&device->dev.kobj, &platform_attribute_group);
3509 static int asus_wmi_sysfs_init(struct platform_device *device)
3511 return sysfs_create_group(&device->dev.kobj, &platform_attribute_group);
3514 /* Platform device ************************************************************/
3516 static int asus_wmi_platform_init(struct asus_wmi *asus)
3518 struct device *dev = &asus->platform_device->dev;
3522 /* INIT enable hotkeys on some models */
3523 if (!asus_wmi_evaluate_method(ASUS_WMI_METHODID_INIT, 0, 0, &rv))
3524 pr_info("Initialization: %#x\n", rv);
3526 /* We don't know yet what to do with this version... */
3527 if (!asus_wmi_evaluate_method(ASUS_WMI_METHODID_SPEC, 0, 0x9, &rv)) {
3528 pr_info("BIOS WMI version: %d.%d\n", rv >> 16, rv & 0xFF);
3533 * The SFUN method probably allows the original driver to get the list
3534 * of features supported by a given model. For now, 0x0100 or 0x0800
3535 * bit signifies that the laptop is equipped with a Wi-Fi MiniPCI card.
3536 * The significance of others is yet to be found.
3538 if (!asus_wmi_evaluate_method(ASUS_WMI_METHODID_SFUN, 0, 0, &rv)) {
3539 pr_info("SFUN value: %#x\n", rv);
3544 * Eee PC and Notebooks seems to have different method_id for DSTS,
3545 * but it may also be related to the BIOS's SPEC.
3546 * Note, on most Eeepc, there is no way to check if a method exist
3547 * or note, while on notebooks, they returns 0xFFFFFFFE on failure,
3548 * but once again, SPEC may probably be used for that kind of things.
3550 * Additionally at least TUF Gaming series laptops return nothing for
3551 * unknown methods, so the detection in this way is not possible.
3553 * There is strong indication that only ACPI WMI devices that have _UID
3554 * equal to "ASUSWMI" use DCTS whereas those with "ATK" use DSTS.
3556 wmi_uid = wmi_get_acpi_device_uid(ASUS_WMI_MGMT_GUID);
3560 if (!strcmp(wmi_uid, ASUS_ACPI_UID_ASUSWMI)) {
3561 dev_info(dev, "Detected ASUSWMI, use DCTS\n");
3562 asus->dsts_id = ASUS_WMI_METHODID_DCTS;
3564 dev_info(dev, "Detected %s, not ASUSWMI, use DSTS\n", wmi_uid);
3565 asus->dsts_id = ASUS_WMI_METHODID_DSTS;
3569 * Some devices can have multiple event codes stored in a queue before
3570 * the module load if it was unloaded intermittently after calling
3571 * the INIT method (enables event handling). The WMI notify handler is
3572 * expected to retrieve all event codes until a retrieved code equals
3573 * queue end marker (One or Ones). Old codes are flushed from the queue
3574 * upon module load. Not enabling this when it should be has minimal
3575 * visible impact so fall back if anything goes wrong.
3577 wmi_uid = wmi_get_acpi_device_uid(asus->driver->event_guid);
3578 if (wmi_uid && !strcmp(wmi_uid, ASUS_ACPI_UID_ATK)) {
3579 dev_info(dev, "Detected ATK, enable event queue\n");
3581 if (!asus_wmi_notify_queue_flush(asus))
3582 asus->wmi_event_queue = true;
3585 /* CWAP allow to define the behavior of the Fn+F2 key,
3586 * this method doesn't seems to be present on Eee PCs */
3587 if (asus->driver->quirks->wapf >= 0)
3588 asus_wmi_set_devstate(ASUS_WMI_DEVID_CWAP,
3589 asus->driver->quirks->wapf, NULL);
3594 /* debugfs ********************************************************************/
3596 struct asus_wmi_debugfs_node {
3597 struct asus_wmi *asus;
3599 int (*show) (struct seq_file *m, void *data);
3602 static int show_dsts(struct seq_file *m, void *data)
3604 struct asus_wmi *asus = m->private;
3608 err = asus_wmi_get_devstate(asus, asus->debug.dev_id, &retval);
3612 seq_printf(m, "DSTS(%#x) = %#x\n", asus->debug.dev_id, retval);
3617 static int show_devs(struct seq_file *m, void *data)
3619 struct asus_wmi *asus = m->private;
3623 err = asus_wmi_set_devstate(asus->debug.dev_id, asus->debug.ctrl_param,
3628 seq_printf(m, "DEVS(%#x, %#x) = %#x\n", asus->debug.dev_id,
3629 asus->debug.ctrl_param, retval);
3634 static int show_call(struct seq_file *m, void *data)
3636 struct asus_wmi *asus = m->private;
3637 struct bios_args args = {
3638 .arg0 = asus->debug.dev_id,
3639 .arg1 = asus->debug.ctrl_param,
3641 struct acpi_buffer input = { (acpi_size) sizeof(args), &args };
3642 struct acpi_buffer output = { ACPI_ALLOCATE_BUFFER, NULL };
3643 union acpi_object *obj;
3646 status = wmi_evaluate_method(ASUS_WMI_MGMT_GUID,
3647 0, asus->debug.method_id,
3650 if (ACPI_FAILURE(status))
3653 obj = (union acpi_object *)output.pointer;
3654 if (obj && obj->type == ACPI_TYPE_INTEGER)
3655 seq_printf(m, "%#x(%#x, %#x) = %#x\n", asus->debug.method_id,
3656 asus->debug.dev_id, asus->debug.ctrl_param,
3657 (u32) obj->integer.value);
3659 seq_printf(m, "%#x(%#x, %#x) = t:%d\n", asus->debug.method_id,
3660 asus->debug.dev_id, asus->debug.ctrl_param,
3661 obj ? obj->type : -1);
3668 static struct asus_wmi_debugfs_node asus_wmi_debug_files[] = {
3669 {NULL, "devs", show_devs},
3670 {NULL, "dsts", show_dsts},
3671 {NULL, "call", show_call},
3674 static int asus_wmi_debugfs_open(struct inode *inode, struct file *file)
3676 struct asus_wmi_debugfs_node *node = inode->i_private;
3678 return single_open(file, node->show, node->asus);
3681 static const struct file_operations asus_wmi_debugfs_io_ops = {
3682 .owner = THIS_MODULE,
3683 .open = asus_wmi_debugfs_open,
3685 .llseek = seq_lseek,
3686 .release = single_release,
3689 static void asus_wmi_debugfs_exit(struct asus_wmi *asus)
3691 debugfs_remove_recursive(asus->debug.root);
3694 static void asus_wmi_debugfs_init(struct asus_wmi *asus)
3698 asus->debug.root = debugfs_create_dir(asus->driver->name, NULL);
3700 debugfs_create_x32("method_id", S_IRUGO | S_IWUSR, asus->debug.root,
3701 &asus->debug.method_id);
3703 debugfs_create_x32("dev_id", S_IRUGO | S_IWUSR, asus->debug.root,
3704 &asus->debug.dev_id);
3706 debugfs_create_x32("ctrl_param", S_IRUGO | S_IWUSR, asus->debug.root,
3707 &asus->debug.ctrl_param);
3709 for (i = 0; i < ARRAY_SIZE(asus_wmi_debug_files); i++) {
3710 struct asus_wmi_debugfs_node *node = &asus_wmi_debug_files[i];
3713 debugfs_create_file(node->name, S_IFREG | S_IRUGO,
3714 asus->debug.root, node,
3715 &asus_wmi_debugfs_io_ops);
3719 /* Init / exit ****************************************************************/
3721 static int asus_wmi_add(struct platform_device *pdev)
3723 struct platform_driver *pdrv = to_platform_driver(pdev->dev.driver);
3724 struct asus_wmi_driver *wdrv = to_asus_wmi_driver(pdrv);
3725 struct asus_wmi *asus;
3730 asus = kzalloc(sizeof(struct asus_wmi), GFP_KERNEL);
3734 asus->driver = wdrv;
3735 asus->platform_device = pdev;
3736 wdrv->platform_device = pdev;
3737 platform_set_drvdata(asus->platform_device, asus);
3739 if (wdrv->detect_quirks)
3740 wdrv->detect_quirks(asus->driver);
3742 err = asus_wmi_platform_init(asus);
3746 asus->egpu_enable_available = asus_wmi_dev_is_present(asus, ASUS_WMI_DEVID_EGPU);
3747 asus->dgpu_disable_available = asus_wmi_dev_is_present(asus, ASUS_WMI_DEVID_DGPU);
3748 asus->gpu_mux_mode_available = asus_wmi_dev_is_present(asus, ASUS_WMI_DEVID_GPU_MUX);
3749 asus->kbd_rgb_mode_available = asus_wmi_dev_is_present(asus, ASUS_WMI_DEVID_TUF_RGB_MODE);
3750 asus->kbd_rgb_state_available = asus_wmi_dev_is_present(asus, ASUS_WMI_DEVID_TUF_RGB_STATE);
3751 asus->panel_overdrive_available = asus_wmi_dev_is_present(asus, ASUS_WMI_DEVID_PANEL_OD);
3753 err = fan_boost_mode_check_present(asus);
3755 goto fail_fan_boost_mode;
3757 err = throttle_thermal_policy_check_present(asus);
3759 goto fail_throttle_thermal_policy;
3761 throttle_thermal_policy_set_default(asus);
3763 err = platform_profile_setup(asus);
3765 goto fail_platform_profile_setup;
3767 err = asus_wmi_sysfs_init(asus->platform_device);
3771 err = asus_wmi_input_init(asus);
3775 err = asus_wmi_fan_init(asus); /* probably no problems on error */
3777 err = asus_wmi_hwmon_init(asus);
3781 err = asus_wmi_custom_fan_curve_init(asus);
3783 goto fail_custom_fan_curve;
3785 err = asus_wmi_led_init(asus);
3789 asus_wmi_get_devstate(asus, ASUS_WMI_DEVID_WLAN, &result);
3790 if (result & (ASUS_WMI_DSTS_PRESENCE_BIT | ASUS_WMI_DSTS_USER_BIT))
3791 asus->driver->wlan_ctrl_by_user = 1;
3793 if (!(asus->driver->wlan_ctrl_by_user && ashs_present())) {
3794 err = asus_wmi_rfkill_init(asus);
3799 if (asus->driver->quirks->wmi_force_als_set)
3802 if (asus->driver->quirks->xusb2pr)
3803 asus_wmi_set_xusb2pr(asus);
3805 if (acpi_video_get_backlight_type() == acpi_backlight_vendor) {
3806 err = asus_wmi_backlight_init(asus);
3807 if (err && err != -ENODEV)
3808 goto fail_backlight;
3809 } else if (asus->driver->quirks->wmi_backlight_set_devstate)
3810 err = asus_wmi_set_devstate(ASUS_WMI_DEVID_BACKLIGHT, 2, NULL);
3812 if (asus_wmi_has_fnlock_key(asus)) {
3813 asus->fnlock_locked = fnlock_default;
3814 asus_wmi_fnlock_update(asus);
3817 status = wmi_install_notify_handler(asus->driver->event_guid,
3818 asus_wmi_notify, asus);
3819 if (ACPI_FAILURE(status)) {
3820 pr_err("Unable to register notify handler - %d\n", status);
3822 goto fail_wmi_handler;
3825 asus_wmi_battery_init(asus);
3827 asus_wmi_debugfs_init(asus);
3832 asus_wmi_backlight_exit(asus);
3834 asus_wmi_rfkill_exit(asus);
3836 asus_wmi_led_exit(asus);
3839 asus_wmi_input_exit(asus);
3841 asus_wmi_sysfs_exit(asus->platform_device);
3843 fail_throttle_thermal_policy:
3844 fail_custom_fan_curve:
3845 fail_platform_profile_setup:
3846 if (asus->platform_profile_support)
3847 platform_profile_remove();
3848 fail_fan_boost_mode:
3854 static int asus_wmi_remove(struct platform_device *device)
3856 struct asus_wmi *asus;
3858 asus = platform_get_drvdata(device);
3859 wmi_remove_notify_handler(asus->driver->event_guid);
3860 asus_wmi_backlight_exit(asus);
3861 asus_wmi_input_exit(asus);
3862 asus_wmi_led_exit(asus);
3863 asus_wmi_rfkill_exit(asus);
3864 asus_wmi_debugfs_exit(asus);
3865 asus_wmi_sysfs_exit(asus->platform_device);
3866 asus_fan_set_auto(asus);
3867 throttle_thermal_policy_set_default(asus);
3868 asus_wmi_battery_exit(asus);
3870 if (asus->platform_profile_support)
3871 platform_profile_remove();
3877 /* Platform driver - hibernate/resume callbacks *******************************/
3879 static int asus_hotk_thaw(struct device *device)
3881 struct asus_wmi *asus = dev_get_drvdata(device);
3883 if (asus->wlan.rfkill) {
3887 * Work around bios bug - acpi _PTS turns off the wireless led
3888 * during suspend. Normally it restores it on resume, but
3889 * we should kick it ourselves in case hibernation is aborted.
3891 wlan = asus_wmi_get_devstate_simple(asus, ASUS_WMI_DEVID_WLAN);
3892 asus_wmi_set_devstate(ASUS_WMI_DEVID_WLAN, wlan, NULL);
3898 static int asus_hotk_resume(struct device *device)
3900 struct asus_wmi *asus = dev_get_drvdata(device);
3902 if (!IS_ERR_OR_NULL(asus->kbd_led.dev))
3903 kbd_led_update(asus);
3905 if (asus_wmi_has_fnlock_key(asus))
3906 asus_wmi_fnlock_update(asus);
3908 asus_wmi_tablet_mode_get_state(asus);
3912 static int asus_hotk_restore(struct device *device)
3914 struct asus_wmi *asus = dev_get_drvdata(device);
3917 /* Refresh both wlan rfkill state and pci hotplug */
3918 if (asus->wlan.rfkill)
3919 asus_rfkill_hotplug(asus);
3921 if (asus->bluetooth.rfkill) {
3922 bl = !asus_wmi_get_devstate_simple(asus,
3923 ASUS_WMI_DEVID_BLUETOOTH);
3924 rfkill_set_sw_state(asus->bluetooth.rfkill, bl);
3926 if (asus->wimax.rfkill) {
3927 bl = !asus_wmi_get_devstate_simple(asus, ASUS_WMI_DEVID_WIMAX);
3928 rfkill_set_sw_state(asus->wimax.rfkill, bl);
3930 if (asus->wwan3g.rfkill) {
3931 bl = !asus_wmi_get_devstate_simple(asus, ASUS_WMI_DEVID_WWAN3G);
3932 rfkill_set_sw_state(asus->wwan3g.rfkill, bl);
3934 if (asus->gps.rfkill) {
3935 bl = !asus_wmi_get_devstate_simple(asus, ASUS_WMI_DEVID_GPS);
3936 rfkill_set_sw_state(asus->gps.rfkill, bl);
3938 if (asus->uwb.rfkill) {
3939 bl = !asus_wmi_get_devstate_simple(asus, ASUS_WMI_DEVID_UWB);
3940 rfkill_set_sw_state(asus->uwb.rfkill, bl);
3942 if (!IS_ERR_OR_NULL(asus->kbd_led.dev))
3943 kbd_led_update(asus);
3945 if (asus_wmi_has_fnlock_key(asus))
3946 asus_wmi_fnlock_update(asus);
3948 asus_wmi_tablet_mode_get_state(asus);
3952 static const struct dev_pm_ops asus_pm_ops = {
3953 .thaw = asus_hotk_thaw,
3954 .restore = asus_hotk_restore,
3955 .resume = asus_hotk_resume,
3958 /* Registration ***************************************************************/
3960 static int asus_wmi_probe(struct platform_device *pdev)
3962 struct platform_driver *pdrv = to_platform_driver(pdev->dev.driver);
3963 struct asus_wmi_driver *wdrv = to_asus_wmi_driver(pdrv);
3966 if (!wmi_has_guid(ASUS_WMI_MGMT_GUID)) {
3967 pr_warn("ASUS Management GUID not found\n");
3971 if (wdrv->event_guid && !wmi_has_guid(wdrv->event_guid)) {
3972 pr_warn("ASUS Event GUID not found\n");
3977 ret = wdrv->probe(pdev);
3982 return asus_wmi_add(pdev);
3987 int __init_or_module asus_wmi_register_driver(struct asus_wmi_driver *driver)
3989 struct platform_driver *platform_driver;
3990 struct platform_device *platform_device;
3995 platform_driver = &driver->platform_driver;
3996 platform_driver->remove = asus_wmi_remove;
3997 platform_driver->driver.owner = driver->owner;
3998 platform_driver->driver.name = driver->name;
3999 platform_driver->driver.pm = &asus_pm_ops;
4001 platform_device = platform_create_bundle(platform_driver,
4004 if (IS_ERR(platform_device))
4005 return PTR_ERR(platform_device);
4010 EXPORT_SYMBOL_GPL(asus_wmi_register_driver);
4012 void asus_wmi_unregister_driver(struct asus_wmi_driver *driver)
4014 platform_device_unregister(driver->platform_device);
4015 platform_driver_unregister(&driver->platform_driver);
4018 EXPORT_SYMBOL_GPL(asus_wmi_unregister_driver);
4020 static int __init asus_wmi_init(void)
4022 pr_info("ASUS WMI generic driver loaded\n");
4026 static void __exit asus_wmi_exit(void)
4028 pr_info("ASUS WMI generic driver unloaded\n");
4031 module_init(asus_wmi_init);
4032 module_exit(asus_wmi_exit);