From: Greg Kroah-Hartman Date: Mon, 9 Dec 2013 08:51:01 +0000 (-0800) Subject: 3.10-stable patches X-Git-Tag: v3.4.74~15 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=f2e2c1d63e89bc6648ab99f929c7500f015c7ba7;p=thirdparty%2Fkernel%2Fstable-queue.git 3.10-stable patches added patches: mei-add-9-series-pch-mei-device-ids.patch mei-me-add-lynx-point-wellsburg-work-station-device-id.patch --- diff --git a/queue-3.10/mei-add-9-series-pch-mei-device-ids.patch b/queue-3.10/mei-add-9-series-pch-mei-device-ids.patch new file mode 100644 index 00000000000..b750a73c597 --- /dev/null +++ b/queue-3.10/mei-add-9-series-pch-mei-device-ids.patch @@ -0,0 +1,51 @@ +From 76a9635979e543f04a5885198e68ff28e3311b67 Mon Sep 17 00:00:00 2001 +From: Tomas Winkler +Date: Thu, 5 Dec 2013 09:34:44 +0200 +Subject: mei: add 9 series PCH mei device ids + +From: Tomas Winkler + +commit 76a9635979e543f04a5885198e68ff28e3311b67 upstream. + +And Lynx Point H Refresh and Wildcat Point LP +device ids. + +Signed-off-by: Tomas Winkler +Signed-off-by: Greg Kroah-Hartman + +--- + drivers/misc/mei/hw-me-regs.h | 5 ++++- + drivers/misc/mei/pci-me.c | 4 +++- + 2 files changed, 7 insertions(+), 2 deletions(-) + +--- a/drivers/misc/mei/hw-me-regs.h ++++ b/drivers/misc/mei/hw-me-regs.h +@@ -109,9 +109,12 @@ + #define MEI_DEV_ID_PPT_2 0x1CBA /* Panther Point */ + #define MEI_DEV_ID_PPT_3 0x1DBA /* Panther Point */ + +-#define MEI_DEV_ID_LPT 0x8C3A /* Lynx Point */ ++#define MEI_DEV_ID_LPT_H 0x8C3A /* Lynx Point H */ + #define MEI_DEV_ID_LPT_W 0x8D3A /* Lynx Point - Wellsburg */ + #define MEI_DEV_ID_LPT_LP 0x9C3A /* Lynx Point LP */ ++#define MEI_DEV_ID_LPT_HR 0x8CBA /* Lynx Point H Refresh */ ++ ++#define MEI_DEV_ID_WPT_LP 0x9CBA /* Wildcat Point LP */ + /* + * MEI HW Section + */ +--- a/drivers/misc/mei/pci-me.c ++++ b/drivers/misc/mei/pci-me.c +@@ -79,9 +79,11 @@ static DEFINE_PCI_DEVICE_TABLE(mei_me_pc + {PCI_DEVICE(PCI_VENDOR_ID_INTEL, MEI_DEV_ID_PPT_1)}, + {PCI_DEVICE(PCI_VENDOR_ID_INTEL, MEI_DEV_ID_PPT_2)}, + {PCI_DEVICE(PCI_VENDOR_ID_INTEL, MEI_DEV_ID_PPT_3)}, +- {PCI_DEVICE(PCI_VENDOR_ID_INTEL, MEI_DEV_ID_LPT)}, ++ {PCI_DEVICE(PCI_VENDOR_ID_INTEL, MEI_DEV_ID_LPT_H)}, + {PCI_DEVICE(PCI_VENDOR_ID_INTEL, MEI_DEV_ID_LPT_W)}, + {PCI_DEVICE(PCI_VENDOR_ID_INTEL, MEI_DEV_ID_LPT_LP)}, ++ {PCI_DEVICE(PCI_VENDOR_ID_INTEL, MEI_DEV_ID_LPT_HR)}, ++ {PCI_DEVICE(PCI_VENDOR_ID_INTEL, MEI_DEV_ID_WPT_LP)}, + + /* required last entry */ + {0, } diff --git a/queue-3.10/mei-me-add-lynx-point-wellsburg-work-station-device-id.patch b/queue-3.10/mei-me-add-lynx-point-wellsburg-work-station-device-id.patch new file mode 100644 index 00000000000..086d481c6c6 --- /dev/null +++ b/queue-3.10/mei-me-add-lynx-point-wellsburg-work-station-device-id.patch @@ -0,0 +1,39 @@ +From 838b3a6d62413b336f3dde15ecff161070358957 Mon Sep 17 00:00:00 2001 +From: Tomas Winkler +Date: Wed, 16 Oct 2013 12:09:43 +0300 +Subject: mei: me: add Lynx Point Wellsburg work station device id + +From: Tomas Winkler + +commit 838b3a6d62413b336f3dde15ecff161070358957 upstream. + +add missing device id for LPT based work station + +Signed-off-by: Tomas Winkler +Signed-off-by: Greg Kroah-Hartman + +--- + drivers/misc/mei/hw-me-regs.h | 1 + + drivers/misc/mei/pci-me.c | 1 + + 2 files changed, 2 insertions(+) + +--- a/drivers/misc/mei/hw-me-regs.h ++++ b/drivers/misc/mei/hw-me-regs.h +@@ -110,6 +110,7 @@ + #define MEI_DEV_ID_PPT_3 0x1DBA /* Panther Point */ + + #define MEI_DEV_ID_LPT 0x8C3A /* Lynx Point */ ++#define MEI_DEV_ID_LPT_W 0x8D3A /* Lynx Point - Wellsburg */ + #define MEI_DEV_ID_LPT_LP 0x9C3A /* Lynx Point LP */ + /* + * MEI HW Section +--- a/drivers/misc/mei/pci-me.c ++++ b/drivers/misc/mei/pci-me.c +@@ -80,6 +80,7 @@ static DEFINE_PCI_DEVICE_TABLE(mei_me_pc + {PCI_DEVICE(PCI_VENDOR_ID_INTEL, MEI_DEV_ID_PPT_2)}, + {PCI_DEVICE(PCI_VENDOR_ID_INTEL, MEI_DEV_ID_PPT_3)}, + {PCI_DEVICE(PCI_VENDOR_ID_INTEL, MEI_DEV_ID_LPT)}, ++ {PCI_DEVICE(PCI_VENDOR_ID_INTEL, MEI_DEV_ID_LPT_W)}, + {PCI_DEVICE(PCI_VENDOR_ID_INTEL, MEI_DEV_ID_LPT_LP)}, + + /* required last entry */ diff --git a/queue-3.10/series b/queue-3.10/series index 4795bd840bd..ba6a0f0fa53 100644 --- a/queue-3.10/series +++ b/queue-3.10/series @@ -41,3 +41,5 @@ hid-usbhid-quirk-for-sis-touchscreen.patch lib-genalloc.c-fix-overflow-of-ending-address-of-memory-chunk.patch input-allow-deselecting-serio-drivers-even-without-config_expert.patch input-mousedev-allow-disabling-even-without-config_expert.patch +mei-me-add-lynx-point-wellsburg-work-station-device-id.patch +mei-add-9-series-pch-mei-device-ids.patch