From: Rodrigo Vivi <rodrigo.vivi@intel.com>
To: "Jouni Högander" <jouni.hogander@intel.com>
Cc: intel-gfx@lists.freedesktop.org
Subject: Re: [PATCH 7/7] drm/i915/display: Take care of VSC select field in video dip ctl register
Date: Fri, 15 Dec 2023 12:26:10 -0500 [thread overview]
Message-ID: <ZXyMMp90gStXBecH@intel.com> (raw)
In-Reply-To: <20231214114838.1113648-8-jouni.hogander@intel.com>
On Thu, Dec 14, 2023 at 01:48:38PM +0200, Jouni Högander wrote:
> We need to configure VSC Select field in video dip ctl if we want to have
> e.g. colorimetry date in our VSC SDP.
>
> Signed-off-by: Jouni Högander <jouni.hogander@intel.com>
> ---
> drivers/gpu/drm/i915/display/intel_hdmi.c | 8 +++++---
> 1 file changed, 5 insertions(+), 3 deletions(-)
>
> diff --git a/drivers/gpu/drm/i915/display/intel_hdmi.c b/drivers/gpu/drm/i915/display/intel_hdmi.c
> index 39e4f5f7c817..eedef8121ff7 100644
> --- a/drivers/gpu/drm/i915/display/intel_hdmi.c
> +++ b/drivers/gpu/drm/i915/display/intel_hdmi.c
> @@ -523,10 +523,12 @@ void hsw_write_infoframe(struct intel_encoder *encoder,
> 0);
>
> /* Wa_14013475917 */
For a moment I thought that your change in the logic below would bypass this w/a.
But then I read its description and notice that it is only about the bit 20, while
your new case below you set bit 26. So we should be good.
I even wonder if we shouldn't move this w/a below. let us to calculate the bits, but
then if wa condition val &= ~VIDEO_DIP_ENABLE_VSC_HSW;
> - if (IS_DISPLAY_VER(dev_priv, 13, 14) && crtc_state->has_psr && type == DP_SDP_VSC)
> - return;
> + if (!(IS_DISPLAY_VER(dev_priv, 13, 14) && crtc_state->has_psr && type == DP_SDP_VSC))
> + val |= hsw_infoframe_enable(type);
> +
> + if (type == DP_SDP_VSC)
> + val |= VSC_DIP_HW_DATA_SW_HEA;
for the part of need to set this bit 26 I confess that I'm not 100% sure.
What register this is in the spec?
but if someone else check these bits, I have nothing against this patch:
Acked-by: Rodrigo Vivi <rodrigo.vivi@intel.com>
>
> - val |= hsw_infoframe_enable(type);
> intel_de_write(dev_priv, ctl_reg, val);
> intel_de_posting_read(dev_priv, ctl_reg);
> }
> --
> 2.34.1
>
next prev parent reply other threads:[~2023-12-15 17:26 UTC|newest]
Thread overview: 20+ messages / expand[flat|nested] mbox.gz Atom feed top
2023-12-14 11:48 [PATCH 0/7] VSC SDP rework Jouni Högander
2023-12-14 11:48 ` [PATCH 1/7] drm/i915/display: Remove intel_crtc_state->psr_vsc Jouni Högander
2023-12-14 16:26 ` Rodrigo Vivi
2023-12-14 11:48 ` [PATCH 2/7] drm/i915/display: Move colorimetry_support from intel_psr to intel_dp Jouni Högander
2023-12-14 16:26 ` Rodrigo Vivi
2023-12-14 11:48 ` [PATCH 3/7] drm/i915/display: Unify VSC SPD preparation Jouni Högander
2023-12-15 16:57 ` Rodrigo Vivi
2023-12-14 11:48 ` [PATCH 4/7] drm/i915/display: Fix vsc_sdp computation Jouni Högander
2023-12-15 17:05 ` Rodrigo Vivi
2023-12-14 11:48 ` [PATCH 5/7] drm/i915/display: Ignore only psr specific part of vsc sdp Jouni Högander
2023-12-15 17:29 ` Rodrigo Vivi
2023-12-14 11:48 ` [PATCH 6/7] drm/i915/display: Read PSR configuration before VSC SDP Jouni Högander
2023-12-15 17:08 ` Rodrigo Vivi
2023-12-14 11:48 ` [PATCH 7/7] drm/i915/display: Take care of VSC select field in video dip ctl register Jouni Högander
2023-12-15 17:26 ` Rodrigo Vivi [this message]
2023-12-20 8:02 ` Kahola, Mika
2023-12-14 14:04 ` ✗ Fi.CI.CHECKPATCH: warning for VSC SDP rework Patchwork
2023-12-14 14:04 ` ✗ Fi.CI.SPARSE: " Patchwork
2023-12-14 14:22 ` ✓ Fi.CI.BAT: success " Patchwork
2023-12-14 15:21 ` ✓ Fi.CI.IGT: " 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=ZXyMMp90gStXBecH@intel.com \
--to=rodrigo.vivi@intel.com \
--cc=intel-gfx@lists.freedesktop.org \
--cc=jouni.hogander@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