summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSimon Ser <simon.ser@intel.com>2019-07-04 14:11:49 +0300
committerSimon Ser <simon.ser@intel.com>2019-07-11 10:05:47 +0300
commitb4c9f82f530c017eb935f2783c65553387a75819 (patch)
tree5adb744574b234bffb344716effc16191c2f1a86
parent2a66ae6626d5583240509f84117d1345a799b75a (diff)
lib/igt_edid: add enum for HDMI VSDB video flags
Signed-off-by: Simon Ser <simon.ser@intel.com> Reviewed-by: Arkadiusz Hiler <arkadiusz.hiler@intel.com>
-rw-r--r--lib/igt_edid.h6
1 files changed, 6 insertions, 0 deletions
diff --git a/lib/igt_edid.h b/lib/igt_edid.h
index eb909686..2e3224e8 100644
--- a/lib/igt_edid.h
+++ b/lib/igt_edid.h
@@ -213,6 +213,12 @@ enum hdmi_vsdb_flags2 {
HDMI_VSDB_LATENCY_PRESENT = 1 << 7,
};
+enum hdmi_vsdb_video_flags {
+ HDMI_VSDB_VIDEO_3D_STRUCT_PRESENT = 0b01 << 5,
+ HDMI_VSDB_VIDEO_3D_STRUCT_MASK_PRESENT = 0b10 << 5,
+ HDMI_VSDB_VIDEO_3D_PRESENT = 1 << 7,
+};
+
/* HDMI's IEEE Registration Identifier */
extern const uint8_t hdmi_ieee_oui[3];