summaryrefslogtreecommitdiff
path: root/include/edid.h
diff options
context:
space:
mode:
authorSimon Glass <sjg@chromium.org>2016-01-22 02:45:00 (GMT)
committerSimon Glass <sjg@chromium.org>2016-01-22 03:42:36 (GMT)
commit2dcf143398ad89ac960e02c7149521ae420db43b (patch)
tree7ab1e2601c2d3322fc2ba19700ba0a0d5c32e6fd /include/edid.h
parentcd9c2070ea0712bd69e18236e8b52232fd27b02e (diff)
downloadu-boot-fsl-qoriq-2dcf143398ad89ac960e02c7149521ae420db43b.tar.xz
dm: video: Repurpose the 'displayport' uclass to 'display'
The current DisplayPort uclass is too specific. The operations it provides are shared with other types of output devices, such as HDMI and LVDS LCD displays. Generalise the uclass so that it can be used with these devices as well. Adjust the uclass to handle the EDID reading and conversion to display_timing internally. Also update nyan-big which is affected by this. Signed-off-by: Simon Glass <sjg@chromium.org>
Diffstat (limited to 'include/edid.h')
-rw-r--r--include/edid.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/include/edid.h b/include/edid.h
index 88b4b7d..8b022fa 100644
--- a/include/edid.h
+++ b/include/edid.h
@@ -17,6 +17,7 @@
/* Size of the EDID data */
#define EDID_SIZE 128
+#define EDID_EXT_SIZE 256
#define GET_BIT(_x, _pos) \
(((_x) >> (_pos)) & 1)