summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJustin M. Forbes <jforbes@fedoraproject.org>2020-01-29 12:10:35 -0600
committerJustin M. Forbes <jforbes@fedoraproject.org>2020-01-29 12:10:35 -0600
commit005cd61200f6bc2728aabb6c9bee05126f06d620 (patch)
tree25b2ce4abb059b66d8003650d9df997ed3816b26
parent663ba70eab4f0d818d7cd629101d30e32ddf7c81 (diff)
downloadkernel-005cd61200f6bc2728aabb6c9bee05126f06d620.tar.gz
kernel-005cd61200f6bc2728aabb6c9bee05126f06d620.tar.xz
kernel-005cd61200f6bc2728aabb6c9bee05126f06d620.zip
Add support for Comet Lake (rhbz 1794369)
-rw-r--r--0001-e1000e-Add-support-for-Comet-Lake.patch54
-rw-r--r--kernel.spec6
2 files changed, 60 insertions, 0 deletions
diff --git a/0001-e1000e-Add-support-for-Comet-Lake.patch b/0001-e1000e-Add-support-for-Comet-Lake.patch
new file mode 100644
index 000000000..63da67535
--- /dev/null
+++ b/0001-e1000e-Add-support-for-Comet-Lake.patch
@@ -0,0 +1,54 @@
+From 914ee9c436cbe90c8ca8a46ec8433cb614a2ada5 Mon Sep 17 00:00:00 2001
+From: Sasha Neftin <sasha.neftin@intel.com>
+Date: Thu, 10 Oct 2019 13:15:39 +0300
+Subject: [PATCH] e1000e: Add support for Comet Lake
+
+Add devices ID's for the next LOM generations that will be
+available on the next Intel Client platform (Comet Lake)
+This patch provides the initial support for these devices
+
+Signed-off-by: Sasha Neftin <sasha.neftin@intel.com>
+Tested-by: Aaron Brown <aaron.f.brown@intel.com>
+Signed-off-by: Jeff Kirsher <jeffrey.t.kirsher@intel.com>
+---
+ drivers/net/ethernet/intel/e1000e/hw.h | 6 ++++++
+ drivers/net/ethernet/intel/e1000e/netdev.c | 6 ++++++
+ 2 files changed, 12 insertions(+)
+
+diff --git a/drivers/net/ethernet/intel/e1000e/hw.h b/drivers/net/ethernet/intel/e1000e/hw.h
+index eff75bd8a8f0..11fdc27faa82 100644
+--- a/drivers/net/ethernet/intel/e1000e/hw.h
++++ b/drivers/net/ethernet/intel/e1000e/hw.h
+@@ -86,6 +86,12 @@ struct e1000_hw;
+ #define E1000_DEV_ID_PCH_ICP_I219_V8 0x15E0
+ #define E1000_DEV_ID_PCH_ICP_I219_LM9 0x15E1
+ #define E1000_DEV_ID_PCH_ICP_I219_V9 0x15E2
++#define E1000_DEV_ID_PCH_CMP_I219_LM10 0x0D4E
++#define E1000_DEV_ID_PCH_CMP_I219_V10 0x0D4F
++#define E1000_DEV_ID_PCH_CMP_I219_LM11 0x0D4C
++#define E1000_DEV_ID_PCH_CMP_I219_V11 0x0D4D
++#define E1000_DEV_ID_PCH_CMP_I219_LM12 0x0D53
++#define E1000_DEV_ID_PCH_CMP_I219_V12 0x0D55
+
+ #define E1000_REVISION_4 4
+
+diff --git a/drivers/net/ethernet/intel/e1000e/netdev.c b/drivers/net/ethernet/intel/e1000e/netdev.c
+index 42f57ab8fb8e..731e1b3e103a 100644
+--- a/drivers/net/ethernet/intel/e1000e/netdev.c
++++ b/drivers/net/ethernet/intel/e1000e/netdev.c
+@@ -7749,6 +7749,12 @@ static const struct pci_device_id e1000_pci_tbl[] = {
+ { PCI_VDEVICE(INTEL, E1000_DEV_ID_PCH_ICP_I219_V8), board_pch_cnp },
+ { PCI_VDEVICE(INTEL, E1000_DEV_ID_PCH_ICP_I219_LM9), board_pch_cnp },
+ { PCI_VDEVICE(INTEL, E1000_DEV_ID_PCH_ICP_I219_V9), board_pch_cnp },
++ { PCI_VDEVICE(INTEL, E1000_DEV_ID_PCH_CMP_I219_LM10), board_pch_cnp },
++ { PCI_VDEVICE(INTEL, E1000_DEV_ID_PCH_CMP_I219_V10), board_pch_cnp },
++ { PCI_VDEVICE(INTEL, E1000_DEV_ID_PCH_CMP_I219_LM11), board_pch_cnp },
++ { PCI_VDEVICE(INTEL, E1000_DEV_ID_PCH_CMP_I219_V11), board_pch_cnp },
++ { PCI_VDEVICE(INTEL, E1000_DEV_ID_PCH_CMP_I219_LM12), board_pch_spt },
++ { PCI_VDEVICE(INTEL, E1000_DEV_ID_PCH_CMP_I219_V12), board_pch_spt },
+
+ { 0, 0, 0, 0, 0, 0, 0 } /* terminate list */
+ };
+--
+2.24.1
+
diff --git a/kernel.spec b/kernel.spec
index 4b97a98f3..1345655f0 100644
--- a/kernel.spec
+++ b/kernel.spec
@@ -571,6 +571,9 @@ Patch612: drm-i915-gt-Detect-if-we-miss-WaIdleLiteRestore.patch
# https://bugzilla.redhat.com/show_bug.cgi?id=1772498#c101
Patch602: ASoC-topology-fix-soc_tplg_fe_link_create-link-dobj-.patch
+# This is already in 5.5 rhbz 1794369
+Patch603: 0001-e1000e-Add-support-for-Comet-Lake.patch
+
# END OF PATCH DEFINITIONS
%endif
@@ -1810,6 +1813,9 @@ fi
#
#
%changelog
+* Wed Jan 29 2020 Justin Forbes <jforbes@fedoraproject.org>
+- Add support for Comet Lake (rhbz 1794369)
+
* Mon Jan 27 2020 Jeremy Cline <jcline@redhat.com> - 5.4.15-100
- Linux v5.4.15