Mesa (master): intel/ehl: Add new PCI-IDs

GitLab Mirror gitlab-mirror at kemper.freedesktop.org
Wed Jul 15 04:14:51 UTC 2020


Module: Mesa
Branch: master
Commit: 559b26b7ee093c2cbe446bf8023876642deadcee
URL:    http://cgit.freedesktop.org/mesa/mesa/commit/?id=559b26b7ee093c2cbe446bf8023876642deadcee

Author: Anuj Phogat <anuj.phogat at gmail.com>
Date:   Thu Jul  9 15:56:25 2020 -0700

intel/ehl: Add new PCI-IDs

Signed-off-by: Anuj Phogat <anuj.phogat at gmail.com>
Reviewed-by: Lionel Landwerlin <lionel.g.landwerlin at intel.com>

---

 include/pci_ids/i965_pci_ids.h  |  4 ++++
 src/intel/dev/gen_device_info.c | 11 +++++++++++
 2 files changed, 15 insertions(+)

diff --git a/include/pci_ids/i965_pci_ids.h b/include/pci_ids/i965_pci_ids.h
index d727bc0a8c0..9cb4a044d77 100644
--- a/include/pci_ids/i965_pci_ids.h
+++ b/include/pci_ids/i965_pci_ids.h
@@ -260,8 +260,12 @@ CHIPSET(0x8A71, icl_gt0_5, "ICL GT0.5", "Intel(R) HD Graphics")
 CHIPSET(0x4500, ehl_4x8, "EHL", "Intel(R) UHD Graphics")
 CHIPSET(0x4541, ehl_2x4, "EHL", "Intel(R) UHD Graphics")
 CHIPSET(0x4551, ehl_4x4, "EHL", "Intel(R) UHD Graphics")
+CHIPSET(0x4555, ehl_2x8, "EHL", "Intel(R) UHD Graphics")
+CHIPSET(0x4557, ehl_4x5, "EHL", "Intel(R) UHD Graphics")
 CHIPSET(0x4571, ehl_4x8, "EHL", "Intel(R) UHD Graphics")
 CHIPSET(0x4E51, ehl_4x4, "JSL", "Intel(R) UHD Graphics")
+CHIPSET(0x4E55, ehl_2x8, "JSL", "Intel(R) UHD Graphics")
+CHIPSET(0x4E57, ehl_4x5, "JSL", "Intel(R) UHD Graphics")
 CHIPSET(0x4E61, ehl_4x6, "JSL", "Intel(R) UHD Graphics")
 CHIPSET(0x4E71, ehl_4x8, "JSL", "Intel(R) UHD Graphics")
 #endif
diff --git a/src/intel/dev/gen_device_info.c b/src/intel/dev/gen_device_info.c
index 10231c60a40..43403525b51 100644
--- a/src/intel/dev/gen_device_info.c
+++ b/src/intel/dev/gen_device_info.c
@@ -929,12 +929,23 @@ static const struct gen_device_info gen_device_info_ehl_4x6 = {
    .num_eu_per_subslice = 6,
 };
 
+static const struct gen_device_info gen_device_info_ehl_4x5 = {
+   GEN11_FEATURES(1, 1, subslices(4), 4),
+   GEN11_LP_FEATURES,
+   .num_eu_per_subslice = 5,
+};
+
 static const struct gen_device_info gen_device_info_ehl_4x4 = {
    GEN11_FEATURES(1, 1, subslices(4), 4),
    GEN11_LP_FEATURES,
    .num_eu_per_subslice = 4,
 };
 
+static const struct gen_device_info gen_device_info_ehl_2x8 = {
+   GEN11_FEATURES(1, 1, subslices(2), 4),
+   GEN11_LP_FEATURES,
+};
+
 static const struct gen_device_info gen_device_info_ehl_2x4 = {
    GEN11_FEATURES(1, 1, subslices(2), 4),
    GEN11_LP_FEATURES,



More information about the mesa-commit mailing list