[igt-dev] [PATCH i-g-t v2 11/17] tools/intel_vbt_decode: Decode eDP/DP max lane count
Ville Syrjala
ville.syrjala at linux.intel.com
Tue Sep 6 12:29:38 UTC 2022
From: Ville Syrjälä <ville.syrjala at linux.intel.com>
We have a new field for eDP/DP max lane count. Decode it.
Signed-off-by: Ville Syrjälä <ville.syrjala at linux.intel.com>
---
tools/intel_vbt_decode.c | 2 ++
1 file changed, 2 insertions(+)
diff --git a/tools/intel_vbt_decode.c b/tools/intel_vbt_decode.c
index d01d89f9aa27..f82be17b17f5 100644
--- a/tools/intel_vbt_decode.c
+++ b/tools/intel_vbt_decode.c
@@ -969,6 +969,8 @@ static void dump_child_device(struct context *context,
printf("\t\tIboost enable: %s\n", YESNO(child->iboost));
printf("\t\tHPD sense invert: %s\n", YESNO(child->hpd_invert));
printf("\t\tUse VBT vswing/premph table: %s\n", YESNO(child->use_vbt_vswing));
+ if (context->bdb->version >= 244)
+ printf("\t\teDP/DP max lane count: X%d\n", child->dp_max_lane_count + 1);
printf("\t\tHDMI compatible? %s\n", YESNO(child->hdmi_support));
printf("\t\tDP compatible? %s\n", YESNO(child->dp_support));
printf("\t\tTMDS compatible? %s\n", YESNO(child->tmds_support));
--
2.35.1
More information about the igt-dev
mailing list