1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394
|
// SPDX-License-Identifier: MIT
/*
* Copyright 2006-2012 Red Hat, Inc.
* Copyright 2018-2020 Cisco Systems, Inc. and/or its affiliates. All rights reserved.
*
* Author: Adam Jackson <ajax@nwnk.net>
* Maintainer: Hans Verkuil <hverkuil-cisco@xs4all.nl>
*/
#ifndef __EDID_DECODE_H_
#define __EDID_DECODE_H_
#include <string>
#include <vector>
#include <string.h>
#define ARRAY_SIZE(x) (sizeof(x) / sizeof(*(x)))
#define min(a, b) ((a) < (b) ? (a) : (b))
#define max(a, b) ((a) > (b) ? (a) : (b))
#define EDID_PAGE_SIZE 128U
#define EDID_MAX_BLOCKS 256U
#define RB_FLAG (1U << 7)
// Video Timings
// If interlaced is true, then the vertical blanking
// for each field is (vfp + vsync + vbp + 0.5), except for
// the VIC 39 timings that doesn't have the 0.5 constant.
struct timings {
// Active horizontal and vertical frame height, including any
// borders, if present.
// Note: for interlaced formats the active field height is vact / 2
unsigned hact, vact;
unsigned hratio, vratio;
unsigned pixclk_khz;
// 0: no reduced blanking
// 1: reduced blanking version 1
// 2: reduced blanking version 2
// 3: reduced blanking version 3 with a horizontal blank of 80
// 3 | RB_FLAG: reduced blanking version 3 with a horizontal blank of 160
unsigned rb;
bool interlaced;
// The horizontal frontporch may be negative in GTF calculations,
// so use int instead of unsigned for hfp. Example: 292x176@76.
int hfp;
unsigned hsync;
// The backporch may be negative in buggy detailed timings.
// So use int instead of unsigned for hbp and vbp.
int hbp;
bool pos_pol_hsync;
// For interlaced formats the vertical front porch of the Even Field
// is actually a half-line longer.
unsigned vfp, vsync;
// For interlaced formats the vertical back porch of the Odd Field
// is actually a half-line longer.
int vbp;
bool pos_pol_vsync;
unsigned hborder, vborder;
bool even_vtotal; // special for VIC 39
bool no_pol_vsync; // digital composite signals have no vsync polarity
unsigned hsize_mm, vsize_mm;
bool ycbcr420; // YCbCr 4:2:0 encoding
};
struct timings_ext {
timings_ext()
{
memset(&t, 0, sizeof(t));
}
timings_ext(unsigned svr, const std::string &_type)
{
memset(&t, 0, sizeof(t));
t.hact = svr;
type = _type;
}
timings_ext(const timings &_t, const std::string &_type, const std::string &_flags)
{
t = _t;
type = _type;
flags = _flags;
}
bool is_valid() const { return t.hact; }
bool has_svr() const { return t.hact && !t.vact; }
unsigned svr() const { return t.hact; }
timings t;
std::string type;
std::string flags;
};
typedef std::vector<timings_ext> vec_timings_ext;
struct edid_state {
edid_state()
{
// Global state
edid_size = num_blocks = block_nr = 0;
max_hor_freq_hz = max_vert_freq_hz = max_pixclk_khz = 0;
min_hor_freq_hz = 0xffffff;
min_vert_freq_hz = 0xffffffff;
warnings = failures = 0;
has_cta = has_dispid = false;
hide_serial_numbers = false;
// Base block state
base.edid_minor = 0;
base.has_name_descriptor = base.has_display_range_descriptor =
base.has_serial_number = base.has_serial_string =
base.supports_continuous_freq = base.supports_gtf =
base.supports_cvt = base.uses_gtf = base.uses_cvt =
base.has_640x480p60_est_timing = base.has_spwg =
base.seen_non_detailed_descriptor =
base.preferred_is_also_native = false;
base.detailed_block_cnt = base.dtd_cnt = 0;
base.min_display_hor_freq_hz = base.max_display_hor_freq_hz =
base.min_display_vert_freq_hz = base.max_display_vert_freq_hz =
base.max_display_pixclk_khz = base.max_display_width_mm =
base.max_display_height_mm = 0;
// CTA-861 block state
cta.has_vic_1 = cta.first_svd_might_be_preferred =
cta.has_hdmi = cta.has_vcdb = cta.has_vfpdb = false;
cta.last_block_was_hdmi_vsdb = cta.have_hf_vsdb = cta.have_hf_scdb = false;
cta.first_block = cta.first_svd = true;
cta.supported_hdmi_vic_codes = cta.supported_hdmi_vic_vsb_codes = 0;
memset(cta.vics, 0, sizeof(cta.vics));
memset(cta.preparsed_has_vic, 0, sizeof(cta.preparsed_has_vic));
cta.preparsed_phys_addr = 0xffff;
cta.preparse_total_dtds = 0;
cta.preparse_total_vtdbs = 0;
cta.preparse_has_t8vtdb = false;
// DisplayID block state
dispid.version = 0;
dispid.preparse_color_ids = dispid.preparse_xfer_ids = 0;
dispid.preparse_displayid_blocks = 0;
dispid.is_base_block = true;
dispid.is_display = dispid.has_product_identification =
dispid.has_display_parameters = dispid.has_type_1_7 =
dispid.has_display_interface_features = false;
// Block Map block state
block_map.saw_block_1 = false;
block_map.saw_block_128 = false;
}
// Global state
unsigned edid_size;
unsigned num_blocks;
unsigned block_nr;
std::string block;
std::string data_block;
bool has_cta;
bool has_dispid;
bool hide_serial_numbers;
unsigned min_hor_freq_hz;
unsigned max_hor_freq_hz;
double min_vert_freq_hz;
double max_vert_freq_hz;
unsigned max_pixclk_khz;
unsigned warnings;
unsigned failures;
// Base block state
struct {
unsigned edid_minor;
bool has_name_descriptor;
bool has_display_range_descriptor;
bool has_serial_number;
bool has_serial_string;
bool supports_continuous_freq;
bool supports_gtf;
bool supports_cvt;
bool uses_gtf;
bool uses_cvt;
bool has_spwg;
unsigned detailed_block_cnt;
unsigned dtd_cnt;
bool seen_non_detailed_descriptor;
bool has_640x480p60_est_timing;
bool preferred_is_also_native;
timings_ext preferred_timing;
unsigned min_display_hor_freq_hz;
unsigned max_display_hor_freq_hz;
unsigned min_display_vert_freq_hz;
unsigned max_display_vert_freq_hz;
unsigned max_display_pixclk_khz;
unsigned max_display_width_mm;
unsigned max_display_height_mm;
} base;
// CTA-861 block state
struct {
unsigned preparse_total_dtds;
vec_timings_ext vec_dtds;
unsigned preparse_total_vtdbs;
vec_timings_ext vec_vtdbs;
vec_timings_ext preferred_timings;
bool preparse_has_t8vtdb;
timings_ext t8vtdb;
vec_timings_ext native_timings;
bool has_vic_1;
bool first_svd_might_be_preferred;
unsigned char byte3;
bool has_hdmi;
bool has_vcdb;
bool has_vfpdb;
unsigned short preparsed_phys_addr;
bool last_block_was_hdmi_vsdb;
bool have_hf_vsdb, have_hf_scdb;
bool first_block;
bool first_svd;
unsigned supported_hdmi_vic_codes;
unsigned supported_hdmi_vic_vsb_codes;
unsigned short vics[256][2];
bool preparsed_has_vic[2][256];
std::vector<unsigned char> preparsed_svds[2];
} cta;
// DisplayID block state
struct {
unsigned char version;
unsigned short preparse_color_ids;
unsigned short preparse_xfer_ids;
unsigned preparse_displayid_blocks;
bool is_base_block;
bool is_display;
bool has_product_identification;
bool has_display_parameters;
bool has_type_1_7;
bool has_display_interface_features;
vec_timings_ext preferred_timings;
} dispid;
// Block Map block state
struct {
bool saw_block_1;
bool saw_block_128;
} block_map;
std::string dtd_type(unsigned dtd);
std::string dtd_type() { return dtd_type(base.dtd_cnt); }
bool print_timings(const char *prefix, const struct timings *t,
const char *type, const char *flags = "",
bool detailed = false);
bool print_timings(const char *prefix, const struct timings_ext &t,
bool detailed = false)
{
return print_timings(prefix, &t.t, t.type.c_str(), t.flags.c_str(), detailed);
};
bool match_timings(const timings &t1, const timings &t2);
void edid_gtf_mode(unsigned refresh, struct timings &t);
void edid_cvt_mode(unsigned refresh, struct timings &t);
timings calc_cvt_mode(unsigned refresh, unsigned hact, unsigned vact, unsigned rb);
void detailed_cvt_descriptor(const char *prefix, const unsigned char *x, bool first);
void print_standard_timing(const char *prefix, unsigned char b1, unsigned char b2,
bool gtf_only = false, unsigned vrefresh_offset = 60);
void detailed_display_range_limits(const unsigned char *x);
void detailed_epi(const unsigned char *x);
void detailed_timings(const char *prefix, const unsigned char *x,
bool base_or_cta = true);
void detailed_block(const unsigned char *x);
void parse_base_block(const unsigned char *x);
void check_base_block();
void print_vic_index(const char *prefix, unsigned idx, const char *suffix, bool ycbcr420 = false);
void cta_vcdb(const unsigned char *x, unsigned length);
void cta_svd(const unsigned char *x, unsigned n, bool for_ycbcr420);
void cta_y420cmdb(const unsigned char *x, unsigned length);
void cta_vfpdb(const unsigned char *x, unsigned length);
void cta_hdmi_block(const unsigned char *x, unsigned length);
void cta_displayid_type_7(const unsigned char *x, unsigned length);
void cta_displayid_type_8(const unsigned char *x, unsigned length);
void cta_displayid_type_10(const unsigned char *x, unsigned length);
void cta_ext_block(const unsigned char *x, unsigned length);
void cta_block(const unsigned char *x);
void preparse_cta_block(const unsigned char *x);
void parse_cta_block(const unsigned char *x);
void cta_resolve_svr(vec_timings_ext::iterator iter);
void cta_resolve_svrs();
void check_cta_blocks();
void parse_digital_interface(const unsigned char *x);
void parse_display_device(const unsigned char *x);
void parse_display_caps(const unsigned char *x);
void parse_display_xfer(const unsigned char *x);
void parse_di_ext_block(const unsigned char *x);
void check_displayid_datablock_revision(unsigned char hdr,
unsigned char valid_flags = 0,
unsigned char rev = 0);
void parse_displayid_product_id(const unsigned char *x);
std::string product_type(unsigned char x, bool heading);
void parse_displayid_interface_features(const unsigned char *x);
void parse_displayid_parameters(const unsigned char *x);
void parse_displayid_parameters_v2(const unsigned char *x);
void parse_displayid_display_intf(const unsigned char *x);
void parse_displayid_color_characteristics(const unsigned char *x);
void parse_displayid_transfer_characteristics(const unsigned char *x);
void parse_displayid_stereo_display_intf(const unsigned char *x);
void parse_displayid_type_1_7_timing(const unsigned char *x,
bool type7, unsigned block_rev, bool is_cta = false);
void parse_displayid_type_2_timing(const unsigned char *x);
void parse_displayid_type_3_timing(const unsigned char *x);
void parse_displayid_type_4_8_timing(unsigned char type, unsigned short id, bool is_cta = false);
void parse_displayid_video_timing_range_limits(const unsigned char *x);
void parse_displayid_string(const unsigned char *x);
void parse_displayid_display_device(const unsigned char *x);
void parse_displayid_intf_power_sequencing(const unsigned char *x);
void parse_displayid_type_5_timing(const unsigned char *x);
void parse_displayid_tiled_display_topology(const unsigned char *x, bool is_v2);
void parse_displayid_type_6_timing(const unsigned char *x);
void parse_displayid_type_9_timing(const unsigned char *x);
void parse_displayid_dynamic_video_timings_range_limits(const unsigned char *x);
void parse_displayid_ContainerID(const unsigned char *x);
void parse_displayid_type_10_timing(const unsigned char *x, bool is_cta = false);
void preparse_displayid_block(const unsigned char *x);
void parse_displayid_block(const unsigned char *x);
void parse_displayid_vesa(const unsigned char *x);
void parse_displayid_cta_data_block(const unsigned char *x);
void check_displayid_blocks();
void parse_vtb_ext_block(const unsigned char *x);
void parse_string_table(const unsigned char *x);
void parse_ls_ext_block(const unsigned char *x);
void parse_block_map(const unsigned char *x);
void preparse_extension(const unsigned char *x);
void parse_extension(const unsigned char *x);
int parse_edid();
};
static inline void add_str(std::string &s, const std::string &add)
{
if (s.empty())
s = add;
else if (!add.empty())
s = s + ", " + add;
}
void msg(bool is_warn, const char *fmt, ...);
#ifdef _WIN32
#define warn(fmt, ...) msg(true, fmt, __VA_ARGS__)
#define warn_once(fmt, ...) \
do { \
static bool shown_warn; \
if (!shown_warn) { \
shown_warn = true; \
msg(true, fmt, __VA_ARGS__); \
} \
} while (0)
#define fail(fmt, ...) msg(false, fmt, __VA_ARGS__)
#else
#define warn(fmt, args...) msg(true, fmt, ##args)
#define warn_once(fmt, args...) \
do { \
static bool shown_warn; \
if (!shown_warn) { \
shown_warn = true; \
msg(true, fmt, ##args); \
} \
} while (0)
#define fail(fmt, args...) msg(false, fmt, ##args)
#endif
void do_checksum(const char *prefix, const unsigned char *x, size_t len);
std::string utohex(unsigned char x);
std::string ouitohex(unsigned oui);
bool memchk(const unsigned char *x, unsigned len, unsigned char v = 0);
void hex_block(const char *prefix, const unsigned char *x, unsigned length,
bool show_ascii = true, unsigned step = 16);
std::string block_name(unsigned char block);
void calc_ratio(struct timings *t);
const char *oui_name(unsigned oui, bool reverse = false);
const struct timings *find_dmt_id(unsigned char dmt_id);
const struct timings *find_vic_id(unsigned char vic);
const struct timings *find_hdmi_vic_id(unsigned char hdmi_vic);
unsigned char hdmi_vic_to_vic(unsigned char hdmi_vic);
char *extract_string(const unsigned char *x, unsigned len);
#endif
|