[Intel-gfx] [PATCH 4/7] drm/i915: add HDMI and DP port enumeration on ValleyView
Jesse Barnes
jbarnes at virtuousgeek.org
Wed Jun 13 19:19:46 CEST 2012
On Wed, 13 Jun 2012 10:11:09 +0200
Daniel Vetter <daniel at ffwll.ch> wrote:
> On Tue, Jun 12, 2012 at 02:47:32PM -0700, Jesse Barnes wrote:
> > ValleyView is similar to IbexPeak here, but with different register
> > offsets.
> >
> > Signed-off-by: Jesse Barnes <jbarnes at virtuousgeek.org>
> > ---
> > drivers/gpu/drm/i915/intel_display.c | 17 +++++++++++++++++
> > 1 file changed, 17 insertions(+)
> >
> > diff --git a/drivers/gpu/drm/i915/intel_display.c b/drivers/gpu/drm/i915/intel_display.c
> > index 5006928..2a677f8 100644
> > --- a/drivers/gpu/drm/i915/intel_display.c
> > +++ b/drivers/gpu/drm/i915/intel_display.c
> > @@ -6772,7 +6772,24 @@ static void intel_setup_outputs(struct drm_device *dev)
> >
> > if (!dpd_is_edp && (I915_READ(PCH_DP_D) & DP_DETECTED))
> > intel_dp_init(dev, PCH_DP_D);
> > + } else if (IS_VALLEYVIEW(dev)) {
> > + int found;
> > +
> > + if (I915_READ(VLV_HDMIB) & PORT_DETECTED) {
>
> VLV_HDMIB == SDVOB, which royally confused me, especially since below you
> use SDVOC for VLV_HDMC. Yeah, pre-pch_split we just use the SDVO names for
> the HDMI registers. I guess I'll just wait for Paulo to clean up this
> mess.
I dropped this and just use SDVOB now; the docs look the same as
Cantiga, so we may as well keep it looking similar.
>
> > + /* SDVOB multiplex with HDMIB */
> > + found = intel_sdvo_init(dev, VLV_HDMIB, true);
> > + if (!found)
> > + intel_hdmi_init(dev, VLV_HDMIB);
> > + if (!found && (I915_READ(DP_B) & DP_DETECTED))
> > + intel_dp_init(dev, DP_B);
> > + }
> > +
> > + if (I915_READ(SDVOC) & PORT_DETECTED)
> > + intel_hdmi_init(dev, SDVOC);
> >
> > + /* Shares lanes with HDMI on SDVOC */
> > + if (!dpd_is_edp && (I915_READ(DP_C) & DP_DETECTED))
> > + intel_dp_init(dev, DP_C);
>
> This !dpd_is_edp check here looks fishy for DP_C, copy&paste fail?
Ah yeah, merge error on my part. Fixed.
> Also, I wonder where you set up the vlv eDP panels?
That'll be coming with Shobit's eDP patchset.
Thanks,
--
Jesse Barnes, Intel Open Source Technology Center
More information about the Intel-gfx
mailing list