Igt-dev Archive on lore.kernel.org
 help / color / mirror / Atom feed
From: Ville Syrjala <ville.syrjala@linux.intel.com>
To: igt-dev@lists.freedesktop.org
Subject: [PATCH i-g-t 06/27] tools/intel_vbt_decode: Decode block 5 (Generic Mode Table)
Date: Fri,  7 Jun 2024 16:57:37 +0300	[thread overview]
Message-ID: <20240607135758.31421-7-ville.syrjala@linux.intel.com> (raw)
In-Reply-To: <20240607135758.31421-1-ville.syrjala@linux.intel.com>

From: Ville Syrjälä <ville.syrjala@linux.intel.com>

Decode VBT block 5 (Generic Mode Table). Details were mostly
gleaned from some VBIOS sources.

There are apparently two variants of the block: ALM only
vs. MGM, with mostly the same contents.

Example output from ALM:
BDB block 5 (117 bytes, min 117 bytes) - Generic mode table:
        0000: 05 75 00 00 04 58 02 1e  3c 4b 55 ff 80 24 10 ff
        0010: ff 0c e8 fd 00 00 ff 03  3f 05 ff 03 3f 05 17 04
        0020: 9f 04 57 02 25 03 58 02  24 03 b9 02 c0 02 01 01
        0030: 03 01 06 01 9e 33 01 00  ff 03 1f 05 ff 03 1f 05
        0040: 0f 04 6f 04 57 02 1f 03  58 02 1e 03 b4 02 b8 02
        0050: 02 01 04 01 08 01 24 71  01 00 ff 03 5f 05 ff 03
        0060: 5f 05 2f 04 8f 04 57 02  27 03 58 02 26 03 b4 02
        0070: b8 02 03 01 04 01 09 01

        Resolution: 1024x600
        Color depths: 0x1e
        Refresh rates: 60 75 85 Hz
        Reserved: 0xff
        Text columns: 128
        Text rows: 36
        Font height: 16
        Page size: 0xffff
        Misc: 0x0c
        #1 timings:
                Dotclock: 65000 kHz
                Horizontal active: 1024
                Horizontal total: 1344
                Horizontal blank start: 1024
                Horizontal blank end: 1344
                Horizontal sync start: 1048
                Horizontal sync end: 1184
                Vertical active: 600
                Vertical total: 806
                Vertical blank start: 601
                Vertical blank end: 805
                Vertical sync start: 698
                Vertical sync end: 705
                Watermark for 8 bpp: 1 SW
                Burst length for 8 bpp: 8 SW
                Watermark for 16 bpp: 4 SW
                Burst length for 16 bpp: 8 SW
                Watermark for 32 bpp: 7 SW
                Burst length for 32 bpp: 8 SW
       ...

Signed-off-by: Ville Syrjälä <ville.syrjala@linux.intel.com>
---
 tools/intel_vbt_decode.c | 85 ++++++++++++++++++++++++++++++++++++++++
 1 file changed, 85 insertions(+)

diff --git a/tools/intel_vbt_decode.c b/tools/intel_vbt_decode.c
index 845f26828c44..829d4c560916 100644
--- a/tools/intel_vbt_decode.c
+++ b/tools/intel_vbt_decode.c
@@ -320,6 +320,9 @@ static size_t block_min_size(const struct context *context, int section_id)
 		return sizeof(struct bdb_display_toggle);
 	case BDB_MODE_SUPPORT_LIST:
 		return sizeof(struct bdb_mode_support_list);
+	case BDB_GENERIC_MODE_TABLE:
+		return max(sizeof(struct bdb_generic_mode_table_alm),
+			   sizeof(struct bdb_generic_mode_table_mgm));
 	case BDB_PSR:
 		return sizeof(struct bdb_psr);
 	case BDB_CHILD_DEVICE_TABLE:
@@ -1281,6 +1284,83 @@ static void dump_mode_support_list(struct context *context,
 	printf("\tMode list length: %d\n", l->mode_list_length);
 }
 
+static void dump_generic_mode_table_base(const struct generic_mode_table *t)
+{
+	printf("\tResolution: %dx%d\n", t->x_res, t->y_res);
+	printf("\tColor depths: 0x%02x\n", t->color_depths);
+	printf("\tRefresh rates: %d %d %d Hz\n",
+	       t->refresh_rate[0], t->refresh_rate[1], t->refresh_rate[2]);
+	printf("\tReserved: 0x%02x\n", t->reserved);
+	printf("\tText columns: %d\n", t->text_cols);
+	printf("\tText rows: %d\n", t->text_rows);
+	printf("\tFont height: %d\n", t->font_height);
+	printf("\tPage size: 0x%04x\n", t->page_size);
+	printf("\tMisc: 0x%02x\n", t->misc);
+}
+
+static void dump_generic_mode_timings(const struct generic_mode_timings *t)
+{
+	printf("\t\tDotclock: %d kHz\n", t->dotclock_khz);
+	printf("\t\tHorizontal active: %d\n", t->hdisplay+1);
+	printf("\t\tHorizontal total: %d\n", t->htotal+1);
+	printf("\t\tHorizontal blank start: %d\n", t->hblank_start+1);
+	printf("\t\tHorizontal blank end: %d\n", t->hblank_end+1);
+	printf("\t\tHorizontal sync start: %d\n", t->hsync_start+1);
+	printf("\t\tHorizontal sync end: %d\n", t->hsync_end+1);
+	printf("\t\tVertical active: %d\n", t->vdisplay+1);
+	printf("\t\tVertical total: %d\n", t->vtotal+1);
+	printf("\t\tVertical blank start: %d\n", t->vblank_start+1);
+	printf("\t\tVertical blank end: %d\n", t->vblank_end+1);
+	printf("\t\tVertical sync start: %d\n", t->vsync_start+1);
+	printf("\t\tVertical sync end: %d\n", t->vsync_end+1);
+}
+
+static void dump_generic_mode_table_alm(const struct bdb_block *block)
+{
+	const struct bdb_generic_mode_table_alm *t = block_data(block);
+
+	dump_generic_mode_table_base(&t->table);
+
+	for (int i = 0; i < ARRAY_SIZE(t->timings); i++) {
+		printf("\t#%d timings:\n", i+1);
+		dump_generic_mode_timings(&t->timings[i].timings);
+		printf("\t\tWatermark for 8 bpp: %d SW\n", t->timings[i].wm_8bpp);
+		printf("\t\tBurst length for 8 bpp: %d SW\n", 4*(t->timings[i].burst_8bpp+1));
+		printf("\t\tWatermark for 16 bpp: %d SW\n", t->timings[i].wm_16bpp+1);
+		printf("\t\tBurst length for 16 bpp: %d SW\n", 4*(t->timings[i].burst_16bpp+1));
+		printf("\t\tWatermark for 32 bpp: %d SW\n", t->timings[i].wm_32bpp+1);
+		printf("\t\tBurst length for 32 bpp: %d SW\n", 4*(t->timings[i].burst_32bpp+1));
+	}
+}
+
+static void dump_generic_mode_table_mgm(const struct bdb_block *block)
+{
+	const struct bdb_generic_mode_table_mgm *t = block_data(block);
+
+	printf("\tMode flag: 0x%04x\n", t->mode_flag);
+
+	dump_generic_mode_table_base(&t->table);
+
+	for (int i = 0; i < ARRAY_SIZE(t->timings); i++) {
+		printf("\t#%d timings:\n", i+1);
+		dump_generic_mode_timings(&t->timings[i]);
+	}
+}
+
+static void dump_generic_mode_table(struct context *context,
+				    const struct bdb_block *block)
+{
+	/*
+	 * FIXME ALM/105 is showing one layout, MGM/108
+	 * another. Not sure there is actual version
+	 * based cutoff.
+	 */
+	if (context->bdb->version >= 106)
+		dump_generic_mode_table_mgm(block);
+	else
+		dump_generic_mode_table_alm(block);
+}
+
 static void dump_legacy_child_devices(struct context *context,
 				      const struct bdb_block *block)
 {
@@ -2769,6 +2849,11 @@ struct dumper dumpers[] = {
 		.name = "Mode support list",
 		.dump = dump_mode_support_list,
 	},
+	{
+		.id = BDB_GENERIC_MODE_TABLE,
+		.name = "Generic mode table",
+		.dump = dump_generic_mode_table,
+	},
 	{
 		.id = BDB_PSR,
 		.min_bdb_version = 165,
-- 
2.44.2


  parent reply	other threads:[~2024-06-07 13:58 UTC|newest]

Thread overview: 38+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2024-06-07 13:57 [PATCH i-g-t 00/27] tools/intel_vbt_decode: Decode almost everything Ville Syrjala
2024-06-07 13:57 ` [PATCH i-g-t 01/27] tools/intel_vbt_decode: sync intel_vbt_defs.h with kernel commit 80c414772d93 Ville Syrjala
2024-06-07 13:57 ` [PATCH i-g-t 02/27] tools/intel_vbt_decode: sync intel_vbt_defs.h with kernel commit 3e8daf14c47d Ville Syrjala
2024-06-07 13:57 ` [PATCH i-g-t 03/27] tools/intel_vbt_decode: Dump MIPI config for the correct panel Ville Syrjala
2024-06-13  9:13   ` Jani Nikula
2024-06-07 13:57 ` [PATCH i-g-t 04/27] tools/intel_vbt_decode: Decode block 3 (Display Toggle Option) Ville Syrjala
2024-06-13  9:14   ` Jani Nikula
2024-06-13 17:19     ` Ville Syrjälä
2024-06-07 13:57 ` [PATCH i-g-t 05/27] tools/intel_vbt_decode: Decode block 4 (Mode Support List) Ville Syrjala
2024-06-07 13:57 ` Ville Syrjala [this message]
2024-06-07 13:57 ` [PATCH i-g-t 07/27] tools/intel_vbt_decode: Decode blocks 6, 7, 8 (register tables) Ville Syrjala
2024-06-07 13:57 ` [PATCH i-g-t 08/27] tools/intel_vbt_decode: Decode block 10 (Mode Removal Table) Ville Syrjala
2024-06-07 13:57 ` [PATCH i-g-t 09/27] tools/intel_vbt_decode: Decode block 12 (Driver Persistent Algorithm) Ville Syrjala
2024-06-07 13:57 ` [PATCH i-g-t 10/27] tools/intel_vbt_decode: Decode block 15 (Dot Clock Override Table) and block 9 (ALM only) Ville Syrjala
2024-06-07 13:57 ` [PATCH i-g-t 11/27] tools/intel_vbt_decode: Decode blocks 16, 29, 31 (Toggle List) Ville Syrjala
2024-06-07 13:57 ` [PATCH i-g-t 12/27] tools/intel_vbt_decode: Decode blocks 19, 30, 32 (Display Configuration Removal Table) Ville Syrjala
2024-06-07 13:57 ` [PATCH i-g-t 13/27] tools/intel_vbt_decode: Decode block 18 (Driver Rotation) Ville Syrjala
2024-06-07 13:57 ` [PATCH i-g-t 14/27] tools/intel_vbt_decode: Decode block 20 (OEM Customizable Modes) Ville Syrjala
2024-06-07 13:57 ` [PATCH i-g-t 15/27] tools/intel_vbt_decode: Decode block 21 (EFP List) Ville Syrjala
2024-06-07 13:57 ` [PATCH i-g-t 16/27] tools/intel_vbt_decode: Decode block 24 (SDVO LVDS PnP ID) Ville Syrjala
2024-06-07 13:57 ` [PATCH i-g-t 17/27] tools/intel_vbt_decode: Decode block 25 (SDVO LVDS PPS) Ville Syrjala
2024-06-07 13:57 ` [PATCH i-g-t 18/27] tools/intel_vbt_decode: Decode block 26 (TV Options) Ville Syrjala
2024-06-07 13:57 ` [PATCH i-g-t 19/27] tools/intel_vbt_decode: Decode block 28 (EFP DTD) Ville Syrjala
2024-06-07 13:57 ` [PATCH i-g-t 20/27] tools/intel_vbt_decode: Decode block 45 (eDP BFI) Ville Syrjala
2024-06-07 13:57 ` [PATCH i-g-t 21/27] tools/intel_vbt_decode: Decode block 46 (Chromaticity For Narrow Gamut Panel) Ville Syrjala
2024-06-07 13:57 ` [PATCH i-g-t 22/27] tools/intel_vbt_decode: Decode block 51 (Fixed Set Mode Table) Ville Syrjala
2024-06-07 13:57 ` [PATCH i-g-t 23/27] tools/intel_vbt_decode: Decode block 55 (RGB Palette Table) Ville Syrjala
2024-06-07 13:57 ` [PATCH i-g-t 24/27] tools/intel_vbt_decode: Decode block 57 (Vswing PreEmphasis Table) Ville Syrjala
2024-06-07 13:57 ` [PATCH i-g-t 25/27] tools/intel_vbt_decode: Decode block 58 (Generic DTD Block) Ville Syrjala
2024-06-07 13:57 ` [PATCH i-g-t 26/27] tools/intel_vbt_decode: Decode block 253 (PRD Table) Ville Syrjala
2024-06-07 13:57 ` [PATCH i-g-t 27/27] tools/intel_vbt_decode: Name a few more VBT blocks Ville Syrjala
2024-06-07 22:08 ` ✓ CI.xeBAT: success for tools/intel_vbt_decode: Decode almost everything Patchwork
2024-06-07 22:13 ` ✓ Fi.CI.BAT: " Patchwork
2024-06-08 12:30 ` ✗ CI.xeFULL: failure " Patchwork
2024-06-11 15:37   ` Kamil Konieczny
2024-06-08 13:08 ` ✗ Fi.CI.IGT: " Patchwork
2024-06-11 15:36   ` Kamil Konieczny
2024-06-13  9:17 ` [PATCH i-g-t 00/27] " Jani Nikula

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=20240607135758.31421-7-ville.syrjala@linux.intel.com \
    --to=ville.syrjala@linux.intel.com \
    --cc=igt-dev@lists.freedesktop.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox