|
@@ -156,6 +156,9 @@ MODULE_LICENSE("GPL");
|
|
#define ASUS_FAN_CTRL_MANUAL 1
|
|
#define ASUS_FAN_CTRL_MANUAL 1
|
|
#define ASUS_FAN_CTRL_AUTO 2
|
|
#define ASUS_FAN_CTRL_AUTO 2
|
|
|
|
|
|
|
|
+#define USB_INTEL_XUSB2PR 0xD0
|
|
|
|
+#define PCI_DEVICE_ID_INTEL_LYNXPOINT_LP_XHCI 0x9c31
|
|
|
|
+
|
|
struct bios_args {
|
|
struct bios_args {
|
|
u32 arg0;
|
|
u32 arg0;
|
|
u32 arg1;
|
|
u32 arg1;
|
|
@@ -1080,6 +1083,29 @@ exit:
|
|
return result;
|
|
return result;
|
|
}
|
|
}
|
|
|
|
|
|
|
|
+static void asus_wmi_set_xusb2pr(struct asus_wmi *asus)
|
|
|
|
+{
|
|
|
|
+ struct pci_dev *xhci_pdev;
|
|
|
|
+ u32 orig_ports_available;
|
|
|
|
+ u32 ports_available = asus->driver->quirks->xusb2pr;
|
|
|
|
+
|
|
|
|
+ xhci_pdev = pci_get_device(PCI_VENDOR_ID_INTEL,
|
|
|
|
+ PCI_DEVICE_ID_INTEL_LYNXPOINT_LP_XHCI,
|
|
|
|
+ NULL);
|
|
|
|
+
|
|
|
|
+ if (!xhci_pdev)
|
|
|
|
+ return;
|
|
|
|
+
|
|
|
|
+ pci_read_config_dword(xhci_pdev, USB_INTEL_XUSB2PR,
|
|
|
|
+ &orig_ports_available);
|
|
|
|
+
|
|
|
|
+ pci_write_config_dword(xhci_pdev, USB_INTEL_XUSB2PR,
|
|
|
|
+ cpu_to_le32(ports_available));
|
|
|
|
+
|
|
|
|
+ pr_info("set USB_INTEL_XUSB2PR old: 0x%04x, new: 0x%04x\n",
|
|
|
|
+ orig_ports_available, ports_available);
|
|
|
|
+}
|
|
|
|
+
|
|
/*
|
|
/*
|
|
* Hwmon device
|
|
* Hwmon device
|
|
*/
|
|
*/
|
|
@@ -2087,6 +2113,9 @@ static int asus_wmi_add(struct platform_device *pdev)
|
|
if (asus->driver->quirks->wmi_backlight_native)
|
|
if (asus->driver->quirks->wmi_backlight_native)
|
|
acpi_video_set_dmi_backlight_type(acpi_backlight_native);
|
|
acpi_video_set_dmi_backlight_type(acpi_backlight_native);
|
|
|
|
|
|
|
|
+ if (asus->driver->quirks->xusb2pr)
|
|
|
|
+ asus_wmi_set_xusb2pr(asus);
|
|
|
|
+
|
|
if (acpi_video_get_backlight_type() == acpi_backlight_vendor) {
|
|
if (acpi_video_get_backlight_type() == acpi_backlight_vendor) {
|
|
err = asus_wmi_backlight_init(asus);
|
|
err = asus_wmi_backlight_init(asus);
|
|
if (err && err != -ENODEV)
|
|
if (err && err != -ENODEV)
|