]> git.ipfire.org Git - thirdparty/kernel/stable-queue.git/commitdiff
3.10-stable patches
authorGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Mon, 9 Dec 2013 08:51:01 +0000 (00:51 -0800)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Mon, 9 Dec 2013 08:51:01 +0000 (00:51 -0800)
added patches:
mei-add-9-series-pch-mei-device-ids.patch
mei-me-add-lynx-point-wellsburg-work-station-device-id.patch

queue-3.10/mei-add-9-series-pch-mei-device-ids.patch [new file with mode: 0644]
queue-3.10/mei-me-add-lynx-point-wellsburg-work-station-device-id.patch [new file with mode: 0644]
queue-3.10/series

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 (file)
index 0000000..b750a73
--- /dev/null
@@ -0,0 +1,51 @@
+From 76a9635979e543f04a5885198e68ff28e3311b67 Mon Sep 17 00:00:00 2001
+From: Tomas Winkler <tomas.winkler@intel.com>
+Date: Thu, 5 Dec 2013 09:34:44 +0200
+Subject: mei: add 9 series PCH mei device ids
+
+From: Tomas Winkler <tomas.winkler@intel.com>
+
+commit 76a9635979e543f04a5885198e68ff28e3311b67 upstream.
+
+And Lynx Point H Refresh and Wildcat Point LP
+device ids.
+
+Signed-off-by: Tomas Winkler <tomas.winkler@intel.com>
+Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
+
+---
+ 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 (file)
index 0000000..086d481
--- /dev/null
@@ -0,0 +1,39 @@
+From 838b3a6d62413b336f3dde15ecff161070358957 Mon Sep 17 00:00:00 2001
+From: Tomas Winkler <tomas.winkler@intel.com>
+Date: Wed, 16 Oct 2013 12:09:43 +0300
+Subject: mei: me: add Lynx Point Wellsburg work station device id
+
+From: Tomas Winkler <tomas.winkler@intel.com>
+
+commit 838b3a6d62413b336f3dde15ecff161070358957 upstream.
+
+add missing device id for LPT based work station
+
+Signed-off-by: Tomas Winkler <tomas.winkler@intel.com>
+Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
+
+---
+ 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 */
index 4795bd840bd9d269e8763af3a342e7d0386eb957..ba6a0f0fa53e95a0d251a72771e040b1eba13fea 100644 (file)
@@ -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