summaryrefslogtreecommitdiff
path: root/lib/intel_device_info.c
diff options
context:
space:
mode:
authorTejas Upadhyay <tejaskumarx.surendrakumar.upadhyay@intel.com>2020-11-13 10:32:01 +0530
committerChris Wilson <chris@chris-wilson.co.uk>2020-11-13 09:38:09 +0000
commit6d774f081e55632ff4b2f61f56e6b3ff2198ce03 (patch)
tree97341e4d7baabe83b365e27935cad34c342bfd5e /lib/intel_device_info.c
parent5a1b32698fd86444986b362c9cfe17047d155fb0 (diff)
lib/i915: Identify Jasperlake
Recently we did split of EHL/JSL thus we need to indentify Jasperlake. Changes since V1: - Added jasperlake codename Signed-off-by: Tejas Upadhyay <tejaskumarx.surendrakumar.upadhyay@intel.com> Reviewed-by: Chris Wilson <chris@chris-wilson.co.uk> Signed-off-by: Chris Wilson <chris@chris-wilson.co.uk>
Diffstat (limited to 'lib/intel_device_info.c')
-rw-r--r--lib/intel_device_info.c7
1 files changed, 7 insertions, 0 deletions
diff --git a/lib/intel_device_info.c b/lib/intel_device_info.c
index e1132d9c..5c3816fe 100644
--- a/lib/intel_device_info.c
+++ b/lib/intel_device_info.c
@@ -315,6 +315,12 @@ static const struct intel_device_info intel_elkhartlake_info = {
.codename = "elkhartlake"
};
+static const struct intel_device_info intel_jasperlake_info = {
+ .gen = BIT(10),
+ .is_jasperlake = true,
+ .codename = "jasperlake"
+};
+
static const struct intel_device_info intel_tigerlake_gt1_info = {
.gen = BIT(11),
.is_tigerlake = true,
@@ -423,6 +429,7 @@ static const struct pci_id_match intel_device_match[] = {
INTEL_ICL_11_IDS(&intel_icelake_info),
INTEL_EHL_IDS(&intel_elkhartlake_info),
+ INTEL_JSL_IDS(&intel_jasperlake_info),
INTEL_TGL_12_GT1_IDS(&intel_tigerlake_gt1_info),
INTEL_TGL_12_GT2_IDS(&intel_tigerlake_gt2_info),