From: "Ville Syrjälä" <ville.syrjala@linux.intel.com>
To: Ander Conselvan De Oliveira <conselvan2@gmail.com>
Cc: intel-gfx@lists.freedesktop.org
Subject: Re: [PATCH v2 2/9] drm/i915: Send GCP infoframes for deep color HDMI sinks
Date: Mon, 25 May 2015 16:14:54 +0300 [thread overview]
Message-ID: <20150525131454.GG18908@intel.com> (raw)
In-Reply-To: <1432559397.3590.9.camel@gmail.com>
On Mon, May 25, 2015 at 04:09:57PM +0300, Ander Conselvan De Oliveira wrote:
> On Mon, 2015-05-25 at 15:44 +0300, Ville Syrjälä wrote:
> > On Mon, May 25, 2015 at 03:32:52PM +0300, Ander Conselvan De Oliveira wrote:
> > > On Tue, 2015-05-05 at 17:06 +0300, ville.syrjala@linux.intel.com wrote:
> > > > From: Ville Syrjälä <ville.syrjala@linux.intel.com>
> > > >
> > > > GCP infoframes are required to inform the HDMI sink about the color
> > > > depth.
> > > >
> > > > Send the GCP infoframe whenever the sink supports any deep color modes
> > > > since such sinks must anyway be capable of receiving them. For sinks
> > > > that don't support deep color let's skip the GCP in case it might
> > > > confuse the sink, although HDMI 1.4 spec does say all sinks must be
> > > > capable of reciving them. In theory we could skip the GCP infoframe
> > > > for deep color sinks in 8bpc mode as well since sinks must fall back to
> > > > 8bpc whenever GCP isn't received for some time.
> > > >
> > > > BSpec says we should disable GCP after disabling the port, so do that as
> > > > well.
> > > >
> > > > v2: s/intel_set_gcp_infoframe/intel_hdmi_set_gcp_infoframe/
> > > > Rebased due to crtc->config changes
> > > >
> > > > Signed-off-by: Ville Syrjälä <ville.syrjala@linux.intel.com>
> > > > ---
> > > > drivers/gpu/drm/i915/i915_reg.h | 3 ++
> > > > drivers/gpu/drm/i915/intel_hdmi.c | 74 +++++++++++++++++++++++++++++++++++++++
> > > > 2 files changed, 77 insertions(+)
> > > >
> > > > diff --git a/drivers/gpu/drm/i915/i915_reg.h b/drivers/gpu/drm/i915/i915_reg.h
> > > > index e619e41..dcd93b5 100644
> > > > --- a/drivers/gpu/drm/i915/i915_reg.h
> > > > +++ b/drivers/gpu/drm/i915/i915_reg.h
> > > > @@ -6010,6 +6010,9 @@ enum skl_disp_power_wells {
> > > > #define _VIDEO_DIP_CTL_A 0xe0200
> > > > #define _VIDEO_DIP_DATA_A 0xe0208
> > > > #define _VIDEO_DIP_GCP_A 0xe0210
> > > > +#define GCP_COLOR_INDICATION (1 << 2)
> > > > +#define GCP_DEFAULT_PHASE_ENABLE (1 << 1)
> > > > +#define GCP_AV_MUTE (1 << 0)
> > > >
> > > > #define _VIDEO_DIP_CTL_B 0xe1200
> > > > #define _VIDEO_DIP_DATA_B 0xe1208
> > > > diff --git a/drivers/gpu/drm/i915/intel_hdmi.c b/drivers/gpu/drm/i915/intel_hdmi.c
> > > > index 79cf445..87c4905 100644
> > > > --- a/drivers/gpu/drm/i915/intel_hdmi.c
> > > > +++ b/drivers/gpu/drm/i915/intel_hdmi.c
> > > > @@ -541,6 +541,66 @@ static void g4x_set_infoframes(struct drm_encoder *encoder,
> > > > intel_hdmi_set_hdmi_infoframe(encoder, adjusted_mode);
> > > > }
> > > >
> > > > +static bool hdmi_sink_is_deep_color(struct drm_encoder *encoder)
> > > > +{
> > > > + struct drm_device *dev = encoder->dev;
> > > > + struct drm_connector *connector;
> > > > +
> > > > + WARN_ON(!drm_modeset_is_locked(&dev->mode_config.connection_mutex));
> > > > +
> > > > + /*
> > > > + * HDMI cloning is only supported on g4x which doesn't
> > > > + * support deep color or GCP infoframes anyway so no
> > > > + * need to worry about multiple HDMI sinks here.
> > > > + */
> > > > + list_for_each_entry(connector, &dev->mode_config.connector_list, head)
> > > > + if (connector->encoder == encoder)
> > > > + return connector->display_info.bpc > 8;
> > > > +
> > > > + return false;
> > > > +}
> > > > +
> > > > +static bool intel_hdmi_set_gcp_infoframe(struct drm_encoder *encoder)
> > > > +{
> > > > + struct drm_i915_private *dev_priv = encoder->dev->dev_private;
> > > > + struct intel_crtc *crtc = to_intel_crtc(encoder->crtc);
> > > > + u32 reg, val = 0;
> > > > +
> > > > + if (HAS_DDI(dev_priv))
> > > > + reg = HSW_TVIDEO_DIP_GCP(crtc->config->cpu_transcoder);
> > > > + else if (IS_VALLEYVIEW(dev_priv))
> > > > + reg = VLV_TVIDEO_DIP_GCP(crtc->pipe);
> > > > + else if (HAS_PCH_SPLIT(dev_priv->dev))
> > > > + reg = TVIDEO_DIP_GCP(crtc->pipe);
> > > > + else
> > > > + return false;
> > > > +
> > > > + /* Indicate color depth wheneven the sink supports deep color */
> > > > + if (hdmi_sink_is_deep_color(encoder))
> > > > + val |= GCP_COLOR_INDICATION;
> > > > +
> > > > + I915_WRITE(reg, val);
> > > > +
> > > > + return val != 0;
> > > > +}
> > > > +
> > > > +static void intel_disable_gcp_infoframe(struct intel_crtc *crtc)
> > > > +{
> > > > + struct drm_i915_private *dev_priv = crtc->base.dev->dev_private;
> > > > + u32 reg;
> > > > +
> > > > + if (HAS_DDI(dev_priv))
> > > > + reg = HSW_TVIDEO_DIP_CTL(crtc->config->cpu_transcoder);
> > > > + else if (IS_VALLEYVIEW(dev_priv))
> > > > + reg = VLV_TVIDEO_DIP_CTL(crtc->pipe);
> > > > + else if (HAS_PCH_SPLIT(dev_priv->dev))
> > > > + reg = TVIDEO_DIP_CTL(crtc->pipe);
> > > > + else
> > > > + return;
> > > > +
> > > > + I915_WRITE(reg, I915_READ(reg) & ~VIDEO_DIP_ENABLE_GCP);
> > > > +}
> > > > +
> > > > static void ibx_set_infoframes(struct drm_encoder *encoder,
> > > > bool enable,
> > > > struct drm_display_mode *adjusted_mode)
> > > > @@ -581,6 +641,9 @@ static void ibx_set_infoframes(struct drm_encoder *encoder,
> > > > val &= ~(VIDEO_DIP_ENABLE_VENDOR | VIDEO_DIP_ENABLE_GAMUT |
> > > > VIDEO_DIP_ENABLE_GCP);
> > > >
> > > > + if (intel_hdmi_set_gcp_infoframe(encoder))
> > > > + val |= VIDEO_DIP_ENABLE_GCP;
> > > > +
> > > > I915_WRITE(reg, val);
> > > > POSTING_READ(reg);
> > > >
> > > > @@ -618,6 +681,9 @@ static void cpt_set_infoframes(struct drm_encoder *encoder,
> > > > val &= ~(VIDEO_DIP_ENABLE_VENDOR | VIDEO_DIP_ENABLE_GAMUT |
> > > > VIDEO_DIP_ENABLE_GCP);
> > > >
> > > > + if (intel_hdmi_set_gcp_infoframe(encoder))
> > > > + val |= VIDEO_DIP_ENABLE_GCP;
> > > > +
> > > > I915_WRITE(reg, val);
> > > > POSTING_READ(reg);
> > > >
> > > > @@ -666,6 +732,9 @@ static void vlv_set_infoframes(struct drm_encoder *encoder,
> > > > val &= ~(VIDEO_DIP_ENABLE_AVI | VIDEO_DIP_ENABLE_VENDOR |
> > > > VIDEO_DIP_ENABLE_GAMUT | VIDEO_DIP_ENABLE_GCP);
> > > >
> > > > + if (intel_hdmi_set_gcp_infoframe(encoder))
> > > > + val |= VIDEO_DIP_ENABLE_GCP;
> > > > +
> > > > I915_WRITE(reg, val);
> > > > POSTING_READ(reg);
> > > >
> > > > @@ -695,6 +764,9 @@ static void hsw_set_infoframes(struct drm_encoder *encoder,
> > > > val &= ~(VIDEO_DIP_ENABLE_VSC_HSW | VIDEO_DIP_ENABLE_GCP_HSW |
> > > > VIDEO_DIP_ENABLE_VS_HSW | VIDEO_DIP_ENABLE_GMP_HSW);
> > > >
> > > > + if (intel_hdmi_set_gcp_infoframe(encoder))
> > > > + val |= VIDEO_DIP_ENABLE_GCP_HSW;
> > > > +
> > > > I915_WRITE(reg, val);
> > > > POSTING_READ(reg);
> > > >
> > > > @@ -986,6 +1058,8 @@ static void intel_disable_hdmi(struct intel_encoder *encoder)
> > > >
> > > > if (IS_CHERRYVIEW(dev))
> > > > chv_powergate_phy_lanes(encoder, 0xf);
> > > > +
> > > > + intel_disable_gcp_infoframe(to_intel_crtc(encoder->base.crtc));
> > >
> > > BSpec says this should be disabled after disabling TRANS_DDI_FUNC_CTL,
> > > so shouldn't this go in post_disable?
> >
> > intel_disable_hdmi() isn't used on DDI platforms. I've not looked at the
> > DDI code too much, but I expect it could have similar issues with the
> > disable sequence like the earlier PCH platforms had.
>
> Ah, right. So if the GCP would be disabled that would only be done in
> ->set_infoframes() called from ->pre_enable(), that is called while
> TRANS_DDI_FUNC_CTL is disabled. So no issue there.
Perhaps. As stated I didn't really look at DDI. I do think we should
change it do things the same way as everyone else, but for the time
being I have enough things on my plate so I'll not take on another
project.
>
> Reviewed-by: Ander Conselvan de Oliveira <conselvan2@gmail.com>
>
>
--
Ville Syrjälä
Intel OTC
_______________________________________________
Intel-gfx mailing list
Intel-gfx@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/intel-gfx
next prev parent reply other threads:[~2015-05-25 13:15 UTC|newest]
Thread overview: 38+ messages / expand[flat|nested] mbox.gz Atom feed top
2015-05-05 14:06 [PATCH 0/9] drm/i915: HDMI 12bpc fixes ville.syrjala
2015-05-05 14:06 ` [PATCH v2 1/9] drm/i915: Implement WaEnableHDMI8bpcBefore12bpc:snb, ivb ville.syrjala
2015-05-05 14:24 ` Jani Nikula
2015-05-25 11:39 ` Ander Conselvan De Oliveira
2015-06-01 21:49 ` Konduru, Chandra
2015-05-05 14:06 ` [PATCH v2 2/9] drm/i915: Send GCP infoframes for deep color HDMI sinks ville.syrjala
2015-05-25 12:32 ` Ander Conselvan De Oliveira
2015-05-25 12:44 ` Ville Syrjälä
2015-05-25 13:09 ` Ander Conselvan De Oliveira
2015-05-25 13:14 ` Ville Syrjälä [this message]
2015-06-01 21:49 ` Konduru, Chandra
2015-06-02 12:58 ` Ville Syrjälä
2015-06-02 19:07 ` Konduru, Chandra
2015-05-05 14:06 ` [PATCH v2 3/9] drm/i915: Enable default_phase in GCP when possible ville.syrjala
2015-06-01 21:49 ` Konduru, Chandra
2015-06-02 11:46 ` Ville Syrjälä
2015-06-02 18:21 ` Konduru, Chandra
2015-06-03 9:34 ` Ville Syrjälä
2015-06-03 20:38 ` Konduru, Chandra
2015-05-05 14:06 ` [PATCH v2 4/9] drm/i915: Fix HDMI 12bpc TRANSCONF bpc value ville.syrjala
2015-06-01 21:48 ` Konduru, Chandra
2015-05-05 14:06 ` [PATCH v2 5/9] drm/i915: Fix 12bpc HDMI enable for IBX ville.syrjala
2015-06-03 20:52 ` Konduru, Chandra
2015-05-05 14:06 ` [PATCH v2 6/9] drm/i915: Disable all infoframes when turning off the HDMI port ville.syrjala
2015-06-01 22:48 ` Konduru, Chandra
2015-06-02 11:11 ` Ville Syrjälä
2015-06-02 18:18 ` Konduru, Chandra
2015-06-03 9:21 ` Ville Syrjälä
2015-06-03 23:24 ` Konduru, Chandra
2015-05-05 14:06 ` [PATCH 7/9] drm/i915: Check infoframe state more diligently ville.syrjala
2015-06-01 22:57 ` Konduru, Chandra
2015-05-05 14:06 ` [PATCH 8/9] drm/i915: Fix hdmi clock readout with pixel repeat ville.syrjala
2015-06-01 22:59 ` Konduru, Chandra
2015-05-05 14:06 ` [PATCH 9/9] drm/i915: Double the port clock when using double clocked modes with 12bpc ville.syrjala
2015-05-21 11:20 ` Ville Syrjälä
2015-06-01 23:23 ` Konduru, Chandra
2015-06-01 19:04 ` [PATCH 0/9] drm/i915: HDMI 12bpc fixes Konduru, Chandra
2015-06-15 9:37 ` Daniel Vetter
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=20150525131454.GG18908@intel.com \
--to=ville.syrjala@linux.intel.com \
--cc=conselvan2@gmail.com \
--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