public inbox for intel-gfx@lists.freedesktop.org
 help / color / mirror / Atom feed
From: Simon Farnsworth <simon.farnsworth@onelan.co.uk>
To: intel-gfx@lists.freedesktop.org
Subject: Re: [PATCH igt] intel_infoframes: Add support for decoding HDMI VICs
Date: Wed, 14 Aug 2013 10:54:17 +0100	[thread overview]
Message-ID: <1671526.IZpRXsBCGM@f17simon> (raw)
In-Reply-To: <1376435954-15415-1-git-send-email-damien.lespiau@intel.com>


[-- Attachment #1.1: Type: text/plain, Size: 1960 bytes --]

Reviewed-by: Simon Farnsworth <simon.farnsworth@onelan.co.uk>

On Wednesday 14 August 2013 00:19:14 Damien Lespiau wrote:
> The HDMI vendor infoframe can contain a HDMI VIC (as of HDMI 1.4, only
> used for 4k formats).
> 
> Signed-off-by: Damien Lespiau <damien.lespiau@intel.com>
> ---
>  tools/intel_infoframes.c | 26 ++++++++++++++++++++++----
>  1 file changed, 22 insertions(+), 4 deletions(-)
> 
> diff --git a/tools/intel_infoframes.c b/tools/intel_infoframes.c
> index 09fdcb9..b6d289f 100644
> --- a/tools/intel_infoframes.c
> +++ b/tools/intel_infoframes.c
> @@ -184,8 +184,13 @@ typedef union {
>  		uint8_t Rsvd0        :5;
>  		uint8_t video_format :3;
>  
> -		uint8_t Rsvd1         :4;
> -		uint8_t s3d_structure :4;
> +		union {
> +			uint8_t vic;
> +			struct {
> +				uint8_t Rsvd1         :4;
> +				uint8_t s3d_structure :4;
> +			} s3d;
> +		} pb5;
>  
>  		uint8_t Rsvd2        :4;
>  		uint8_t s3d_ext_data :4;
> @@ -467,13 +472,26 @@ static const char *s3d_structure_to_string(int format)
>  
>  static void dump_vendor_hdmi(DipInfoFrame *frame)
>  {
> +	int vic_present = frame->vendor.video_format & 0x1;
>  	int s3d_present = frame->vendor.video_format & 0x2;
>  
>  	printf("- video format: 0x%03x %s\n", frame->vendor.video_format,
>  	       s3d_present ? "(3D)" : "");
> -	if (s3d_present)
> +
> +	if (vic_present && s3d_present) {
> +		printf("Error: HDMI VIC and S3D bits set. Only one of those "
> +		       " at a time is valid\n");
> +		return;
> +	}
> +
> +	if (vic_present)
> +		printf("- HDMI VIC: %d\n", frame->vendor.pb5.vic);
> +	else if (s3d_present) {
> +		int s3d_structure = frame->vendor.pb5.s3d.s3d_structure;
> +
>  		printf("- 3D Format: %s\n",
> -		       s3d_structure_to_string(frame->vendor.s3d_structure));
> +		       s3d_structure_to_string(s3d_structure));
> +	}
>  }
>  
>  static void dump_vendor_info(Transcoder transcoder)
> 
-- 
Simon Farnsworth
Software Engineer
ONELAN Ltd
http://www.onelan.com

[-- Attachment #1.2: This is a digitally signed message part. --]
[-- Type: application/pgp-signature, Size: 490 bytes --]

[-- Attachment #2: Type: text/plain, Size: 159 bytes --]

_______________________________________________
Intel-gfx mailing list
Intel-gfx@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/intel-gfx

  reply	other threads:[~2013-08-14  9:54 UTC|newest]

Thread overview: 3+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2013-08-13 23:19 [PATCH igt] intel_infoframes: Add support for decoding HDMI VICs Damien Lespiau
2013-08-14  9:54 ` Simon Farnsworth [this message]
2013-08-15 15:49   ` Damien Lespiau

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=1671526.IZpRXsBCGM@f17simon \
    --to=simon.farnsworth@onelan.co.uk \
    --cc=intel-gfx@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