Blame SOURCES/0003-sky2-Disable-MSI-on-P5W-DH-Deluxe.patch
|
Kmods SIG |
6dd491 |
From 76104862cccaeaa84fdd23e39f2610a96296291c Mon Sep 17 00:00:00 2001
|
|
Kmods SIG |
6dd491 |
From: Tasos Sahanidis <tasos@tasossah.com>
|
|
Kmods SIG |
6dd491 |
Date: Sun, 14 Jul 2019 13:31:11 +0300
|
|
Kmods SIG |
6dd491 |
Subject: [Backport 76104862ccca] sky2: Disable MSI on P5W DH Deluxe
|
|
Kmods SIG |
6dd491 |
|
|
Kmods SIG |
6dd491 |
The onboard sky2 NICs send IRQs after S3, resulting in ethernet not
|
|
Kmods SIG |
6dd491 |
working after resume.
|
|
Kmods SIG |
6dd491 |
Maskable MSI and MSI-X are also not supported, so fall back to INTx.
|
|
Kmods SIG |
6dd491 |
|
|
Kmods SIG |
6dd491 |
Signed-off-by: Tasos Sahanidis <tasos@tasossah.com>
|
|
Kmods SIG |
6dd491 |
Signed-off-by: David S. Miller <davem@davemloft.net>
|
|
Kmods SIG |
6dd491 |
---
|
|
Kmods SIG |
6dd491 |
src/sky2.c | 7 +++++++
|
|
Kmods SIG |
6dd491 |
1 file changed, 7 insertions(+)
|
|
Kmods SIG |
6dd491 |
|
|
Kmods SIG |
6dd491 |
diff --git a/src/sky2.c b/src/sky2.c
|
|
Kmods SIG |
6dd491 |
index fe518c854d1fcc78d600f261926923ee2ed7d5aa..f518312ffe695470bf1dd4239d9e2b1b08e5ea54 100644
|
|
Kmods SIG |
6dd491 |
--- a/src/sky2.c
|
|
Kmods SIG |
6dd491 |
+++ b/src/sky2.c
|
|
Kmods SIG |
6dd491 |
@@ -4917,6 +4917,13 @@ static const struct dmi_system_id msi_blacklist[] = {
|
|
Kmods SIG |
6dd491 |
DMI_MATCH(DMI_PRODUCT_NAME, "P-79"),
|
|
Kmods SIG |
6dd491 |
},
|
|
Kmods SIG |
6dd491 |
},
|
|
Kmods SIG |
6dd491 |
+ {
|
|
Kmods SIG |
6dd491 |
+ .ident = "ASUS P5W DH Deluxe",
|
|
Kmods SIG |
6dd491 |
+ .matches = {
|
|
Kmods SIG |
6dd491 |
+ DMI_MATCH(DMI_SYS_VENDOR, "ASUSTEK COMPUTER INC"),
|
|
Kmods SIG |
6dd491 |
+ DMI_MATCH(DMI_PRODUCT_NAME, "P5W DH Deluxe"),
|
|
Kmods SIG |
6dd491 |
+ },
|
|
Kmods SIG |
6dd491 |
+ },
|
|
Kmods SIG |
6dd491 |
{}
|
|
Kmods SIG |
6dd491 |
};
|
|
Kmods SIG |
6dd491 |
|
|
Kmods SIG |
6dd491 |
--
|
|
Kmods SIG |
6dd491 |
2.31.1
|
|
Kmods SIG |
6dd491 |
|