summaryrefslogtreecommitdiff
path: root/intel
diff options
context:
space:
mode:
authorRodrigo Vivi <rodrigo.vivi@intel.com>2018-09-05 21:17:47 -0700
committerLucas De Marchi <lucas.demarchi@intel.com>2019-07-29 17:00:08 -0700
commite4f164575ca57317c9ea4b948d2cfa93d1821016 (patch)
tree74d8edee1aaf039fdfd3ebdd45d5c8679c5e8241 /intel
parent3bda60fd14b384a8db89d2972b44f383ca445ff4 (diff)
downloaddrm-e4f164575ca57317c9ea4b948d2cfa93d1821016.tar.gz
intel: add the TGL 12 PCI IDs and macros
Signed-off-by: Rodrigo Vivi <rodrigo.vivi@intel.com> Signed-off-by: Lucas De Marchi <lucas.demarchi@intel.com> Reviewed-by: José Roberto de Souza <jose.souza@intel.com>
Diffstat (limited to 'intel')
-rw-r--r--intel/intel_chipset.c1
-rw-r--r--intel/intel_chipset.h1
2 files changed, 2 insertions, 0 deletions
diff --git a/intel/intel_chipset.c b/intel/intel_chipset.c
index 5aa4a2f2..157c2c7d 100644
--- a/intel/intel_chipset.c
+++ b/intel/intel_chipset.c
@@ -35,6 +35,7 @@ static const struct pci_device {
uint16_t gen;
} pciids[] = {
/* Keep ids sorted by gen; latest gen first */
+ INTEL_TGL_12_IDS(12),
INTEL_ICL_11_IDS(11),
INTEL_CNL_IDS(10),
INTEL_CFL_IDS(9),
diff --git a/intel/intel_chipset.h b/intel/intel_chipset.h
index 5db207cc..0a48e0da 100644
--- a/intel/intel_chipset.h
+++ b/intel/intel_chipset.h
@@ -337,6 +337,7 @@ drm_private bool intel_get_genx(unsigned int devid, int *gen);
#define IS_GEN9(devid) intel_is_genx(devid, 9)
#define IS_GEN10(devid) intel_is_genx(devid, 10)
#define IS_GEN11(devid) intel_is_genx(devid, 11)
+#define IS_GEN12(devid) intel_is_genx(devid, 12)
#define IS_9XX(dev) (IS_GEN3(dev) || \
IS_GEN4(dev) || \