Igt-dev Archive on lore.kernel.org
 help / color / mirror / Atom feed
From: Jani Nikula <jani.nikula@intel.com>
To: Ville Syrjala <ville.syrjala@linux.intel.com>,
	igt-dev@lists.freedesktop.org
Subject: Re: [PATCH i-g-t 5/5] tools/intel_vbt_decode: Optionally determine panel type from EDID
Date: Mon, 25 Mar 2024 17:08:57 +0200	[thread overview]
Message-ID: <87h6guic1i.fsf@intel.com> (raw)
In-Reply-To: <20240322163251.11102-6-ville.syrjala@linux.intel.com>

On Fri, 22 Mar 2024, Ville Syrjala <ville.syrjala@linux.intel.com> wrote:
> From: Ville Syrjälä <ville.syrjala@linux.intel.com>
>
> VBT may declare panel type as 255, which means we should match the
> EDID PnP ID against the panel entries in the VBT to determine the
> correct panel type. Implemnt support for this by allowing the user
> to optionally provide the EDID via a command like parameter.
>
> Signed-off-by: Ville Syrjälä <ville.syrjala@linux.intel.com>
> ---
>  tools/intel_vbt_decode.c | 96 ++++++++++++++++++++++++++++++++++++++++
>  1 file changed, 96 insertions(+)
>
> diff --git a/tools/intel_vbt_decode.c b/tools/intel_vbt_decode.c
> index f223ce2bf5a1..9aeb8ea04d06 100644
> --- a/tools/intel_vbt_decode.c
> +++ b/tools/intel_vbt_decode.c
> @@ -84,6 +84,12 @@ struct context {
>  	bool hexdump;
>  };
>  
> +struct edid {
> +	uint8_t header[8];
> +	struct lvds_pnp_id pnpid;
> +	/* ... */
> +} __packed;
> +
>  static bool dump_panel(const struct context *context, int panel_type)
>  {
>  	return panel_type == context->panel_type ||
> @@ -2506,6 +2512,70 @@ static void dump_compression_parameters(struct context *context,
>  	}
>  }
>  
> +static int get_panel_type_pnpid(const struct context *context,
> +				const char *edid_file)
> +{
> +	struct bdb_block *ptrs_block, *data_block;
> +	const struct bdb_lvds_lfp_data *data;
> +	const struct bdb_lvds_lfp_data_ptrs *ptrs;
> +	struct lvds_pnp_id edid_id, edid_id_nodate;
> +	const struct edid *edid;
> +	int fd, best = -1;
> +
> +	fd =  open(edid_file, O_RDONLY);
            ^

superfluous space.

> +	if (fd < 0) {
> +		fprintf(stderr, "Unable to open EDID file %s\n", edid_file);
> +		return -1;
> +	}
> +
> +	edid = mmap(0, sizeof(*edid), PROT_READ, MAP_SHARED, fd, 0);
> +	close(fd);
> +	if (edid == MAP_FAILED) {
> +		fprintf(stderr, "Unable to read EDID file %s\n", edid_file);
> +		return -1;
> +	}
> +	edid_id = edid->pnpid;
> +	munmap((void*)edid, sizeof(*edid));
> +
> +	edid_id_nodate = edid_id;
> +	edid_id_nodate.mfg_week = 0;
> +	edid_id_nodate.mfg_year = 0;
> +
> +	ptrs_block = find_section(context, BDB_LVDS_LFP_DATA_PTRS);
> +	if (!ptrs_block)
> +		return -1;
> +
> +	data_block = find_section(context, BDB_LVDS_LFP_DATA);
> +	if (!data_block)
> +		return -1;
> +
> +	ptrs = block_data(ptrs_block);
> +	data = block_data(data_block);
> +
> +	for (int i = 0; i < 16; i++) {
> +		const struct lvds_pnp_id *vbt_id =
> +			(const void*)data + ptrs->ptr[i].panel_pnp_id.offset;
> +
> +		/* full match? */
> +		if (!memcmp(vbt_id, &edid_id, sizeof(*vbt_id)))
> +			return i;
> +
> +		/*
> +		 * Accept a match w/o date if no full match is found,
> +		 * and the VBT entry does not specify a date.
> +		 */
> +		if (best < 0 &&
> +		    !memcmp(vbt_id, &edid_id_nodate, sizeof(*vbt_id)))
> +			best = i;
> +	}
> +
> +	if (best >= 0) {
> +		// ... dump
> +	}

Maybe drop this?

Other than that,

Reviewed-by: Jani Nikula <jani.nikula@intel.com>


> +
> +	return best;
> +}
> +
>  /* get panel type from lvds options block, or -1 if block not found */
>  static int get_panel_type(struct context *context, bool is_panel_type2)
>  {
> @@ -2784,6 +2854,8 @@ enum opt {
>  	OPT_DEVID,
>  	OPT_PANEL_TYPE,
>  	OPT_PANEL_TYPE2,
> +	OPT_PANEL_EDID,
> +	OPT_PANEL_EDID2,
>  	OPT_ALL_PANELS,
>  	OPT_HEXDUMP,
>  	OPT_BLOCK,
> @@ -2798,6 +2870,9 @@ static void usage(const char *toolname)
>  	fprintf(stderr, " --file=<rom_file>"
>  			" [--devid=<device_id>]"
>  			" [--panel-type=<panel_type>]"
> +			" [--panel-type2=<panel_type>]"
> +			" [--panel-edid=<edid file>]"
> +			" [--panel-edid2=<edid file>]"
>  			" [--all-panels]"
>  			" [--hexdump]"
>  			" [--block=<block_no>]"
> @@ -2822,6 +2897,7 @@ int main(int argc, char **argv)
>  		.panel_type = -1,
>  		.panel_type2 = -1,
>  	};
> +	const char *panel_edid = NULL, *panel_edid2 = NULL;
>  	char *endp;
>  	int block_number = -1;
>  	bool header_only = false, describe = false;
> @@ -2830,7 +2906,9 @@ int main(int argc, char **argv)
>  		{ "file",	required_argument,	NULL,	OPT_FILE },
>  		{ "devid",	required_argument,	NULL,	OPT_DEVID },
>  		{ "panel-type",	required_argument,	NULL,	OPT_PANEL_TYPE },
> +		{ "panel-edid",	required_argument,	NULL,	OPT_PANEL_EDID },
>  		{ "panel-type2",	required_argument,	NULL,	OPT_PANEL_TYPE2 },
> +		{ "panel-edid2",	required_argument,	NULL,	OPT_PANEL_EDID2 },
>  		{ "all-panels",	no_argument,		NULL,	OPT_ALL_PANELS },
>  		{ "hexdump",	no_argument,		NULL,	OPT_HEXDUMP },
>  		{ "block",	required_argument,	NULL,	OPT_BLOCK },
> @@ -2870,6 +2948,12 @@ int main(int argc, char **argv)
>  				return EXIT_FAILURE;
>  			}
>  			break;
> +		case OPT_PANEL_EDID:
> +			panel_edid = optarg;
> +			break;
> +		case OPT_PANEL_EDID2:
> +			panel_edid2 = optarg;
> +			break;
>  		case OPT_ALL_PANELS:
>  			context.dump_all_panel_types = true;
>  			break;
> @@ -2988,6 +3072,12 @@ int main(int argc, char **argv)
>  
>  	if (context.panel_type == -1)
>  		context.panel_type = get_panel_type(&context, false);
> +	if (context.panel_type == 255 && !panel_edid) {
> +		fprintf(stderr, "Warning: panel type depends on EDID (use --panel-edid), ignoring\n");
> +		context.panel_type = -1;
> +	} else if (context.panel_type == 255) {
> +		context.panel_type = get_panel_type_pnpid(&context, panel_edid);
> +	}
>  	if (context.panel_type == -1) {
>  		fprintf(stderr, "Warning: panel type not set, using 0\n");
>  		context.panel_type = 0;
> @@ -2995,6 +3085,12 @@ int main(int argc, char **argv)
>  
>  	if (context.panel_type2 == -1)
>  		context.panel_type2 = get_panel_type(&context, true);
> +	if (context.panel_type2 == 255 && !panel_edid2) {
> +		fprintf(stderr, "Warning: panel type2 depends on EDID (use --panel-edid2), ignoring\n");
> +		context.panel_type2 = -1;
> +	} else if (context.panel_type2 == 255) {
> +		context.panel_type2 = get_panel_type_pnpid(&context, panel_edid2);
> +	}
>  	if (context.panel_type2 != -1 && context.bdb->version < 212) {
>  		fprintf(stderr, "Warning: panel type2 not valid for BDB version %d\n",
>  			context.bdb->version);

-- 
Jani Nikula, Intel

  reply	other threads:[~2024-03-25 15:09 UTC|newest]

Thread overview: 20+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2024-03-22 16:32 [PATCH i-g-t 0/5] tools/intel_vbt_decode: Improve panel type handling Ville Syrjala
2024-03-22 16:32 ` [PATCH i-g-t 1/5] tools/intel_vbt_decode: Extract dump_panel() Ville Syrjala
2024-03-25 14:56   ` Jani Nikula
2024-03-22 16:32 ` [PATCH i-g-t 2/5] tools/intel_vbt_decode: Extract panel_str() Ville Syrjala
2024-03-25 14:56   ` Jani Nikula
2024-03-22 16:32 ` [PATCH i-g-t 3/5] tools/intel_vbt_decode: Change panel indicator from * to (1) Ville Syrjala
2024-03-25 14:57   ` Jani Nikula
2024-03-22 16:32 ` [PATCH i-g-t 4/5] tools/intel_vbt_decode: Also dump the second panel (panel_type2) Ville Syrjala
2024-03-25 15:04   ` Jani Nikula
2024-03-25 15:08     ` Ville Syrjälä
2024-03-25 16:33   ` [PATCH i-g-t v2 " Ville Syrjala
2024-03-22 16:32 ` [PATCH i-g-t 5/5] tools/intel_vbt_decode: Optionally determine panel type from EDID Ville Syrjala
2024-03-25 15:08   ` Jani Nikula [this message]
2024-03-25 15:16     ` Ville Syrjälä
2024-03-25 16:36   ` [PATCH i-g-t v2 " Ville Syrjala
2024-03-22 18:51 ` ✓ CI.xeBAT: success for tools/intel_vbt_decode: Improve panel type handling Patchwork
2024-03-22 18:56 ` ✓ Fi.CI.BAT: " Patchwork
2024-03-23 21:17 ` ✗ Fi.CI.IGT: failure " Patchwork
2024-03-25 19:39 ` ✗ Fi.CI.BAT: failure for tools/intel_vbt_decode: Improve panel type handling (rev3) Patchwork
2024-03-25 19:42 ` ✓ CI.xeBAT: success " Patchwork

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=87h6guic1i.fsf@intel.com \
    --to=jani.nikula@intel.com \
    --cc=igt-dev@lists.freedesktop.org \
    --cc=ville.syrjala@linux.intel.com \
    /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