diff options
author | Ville Syrjälä <ville.syrjala@linux.intel.com> | 2024-05-02 16:19:42 +0300 |
---|---|---|
committer | Ville Syrjälä <ville.syrjala@linux.intel.com> | 2024-06-13 20:12:17 +0300 |
commit | 021538d059575eb9f93d36fea36015cd3f9fca7d (patch) | |
tree | b449b3cf38a82524cebcca031aabb9bd4b5e728a /tools | |
parent | 90996bd7c7904478bcfcd19932f8433ff5742d8f (diff) |
tools/intel_vbt_decode: Name a few more VBT blocks
Give names to a few more known VBT blocks. Most of these are VBIOS only
junk so probably not worth the hassle to decode, and the old MIPI
block is perhaps not actually used anywhere so didn't bother with
that one either.
Signed-off-by: Ville Syrjälä <ville.syrjala@linux.intel.com>
Acked-by: Jani Nikula <jani.nikula@intel.com>
Diffstat (limited to 'tools')
-rw-r--r-- | tools/intel_vbt_decode.c | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/tools/intel_vbt_decode.c b/tools/intel_vbt_decode.c index ad33949ba..1b0d93d37 100644 --- a/tools/intel_vbt_decode.c +++ b/tools/intel_vbt_decode.c @@ -3763,6 +3763,10 @@ struct dumper dumpers[] = { .dump = dump_driver_persistence, }, { + .id = BDB_EXT_TABLE_PTRS, + .name = "Ext table pointers, VBIOS only", + }, + { .id = BDB_DOT_CLOCK_OVERRIDE, .name = "Dot clock override", .dump = dump_dot_clock_override, @@ -3773,6 +3777,10 @@ struct dumper dumpers[] = { .dump = dump_display_select_old, }, { + .id = BDB_SV_TEST_FUNCTIONS, + .name = "SV test functions", + }, + { .id = BDB_DRIVER_ROTATION, .name = "Driver rotation", .dump = dump_driver_rotation, @@ -3883,6 +3891,10 @@ struct dumper dumpers[] = { .dump = dump_chromaticity, }, { + .id = BDB_MIPI, + .name = "MIPI", + }, + { .id = BDB_FIXED_SET_MODE, .name = "Fixed set mode", .dump = dump_fixed_set_mode, @@ -3918,10 +3930,18 @@ struct dumper dumpers[] = { .dump = dump_generic_dtd, }, { + .id = BDB_INT15_HOOK, + .name = "INT15h hook", + }, + { .id = BDB_PRD_TABLE, .name = "PRD table", .dump = dump_prd_table, }, + { + .id = BDB_SKIP, + .name = "VBIOS only", + }, }; static void hex_dump_block(const struct bdb_block *block) |