summaryrefslogtreecommitdiff
path: root/lib/intel_chipset.h
diff options
context:
space:
mode:
authorMatt Roper <matthew.d.roper@intel.com>2021-06-04 13:39:23 -0700
committerMatt Roper <matthew.d.roper@intel.com>2021-06-07 19:36:57 -0700
commit4f9258baaeeae9daa9583cfa7589d1c21668ce6b (patch)
treeec1a77e8332cc83b5d014bdd1100302b50eaa402 /lib/intel_chipset.h
parentafaa6eee9d959c7e9be27f8c838b9019456e7e9f (diff)
lib/i915: Add intel_display_ver() and use it in display tests/libs
Display code should check the display version of the platform rather than the graphics version; on some platforms these versions won't be the same. v2: - Continue to use intel_gen() in draw_rect_blt() since it's checking the version of the blitter engine (graphics) rather than the display version. (Jose) - Rename some gen -> display_ver in kms_universal_plane too. (Jose) Signed-off-by: Matt Roper <matthew.d.roper@intel.com> Reviewed-by: José Roberto de Souza <jose.souza@intel.com>
Diffstat (limited to 'lib/intel_chipset.h')
-rw-r--r--lib/intel_chipset.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/lib/intel_chipset.h b/lib/intel_chipset.h
index 8e81ffa9..87b3bbc4 100644
--- a/lib/intel_chipset.h
+++ b/lib/intel_chipset.h
@@ -84,6 +84,7 @@ struct intel_device_info {
const struct intel_device_info *intel_get_device_info(uint16_t devid) __attribute__((pure));
unsigned intel_gen(uint16_t devid) __attribute__((pure));
+unsigned intel_display_ver(uint16_t devid) __attribute__((pure));
extern enum pch_type intel_pch;