public inbox for intel-gfx@lists.freedesktop.org
 help / color / mirror / Atom feed
From: Imre Deak <imre.deak@intel.com>
To: Daniel Vetter <daniel@ffwll.ch>
Cc: intel-gfx@lists.freedesktop.org
Subject: Re: [PATCH v2 25/25] drm/i915: vlv: add runtime PM support
Date: Wed, 16 Apr 2014 19:01:54 +0300	[thread overview]
Message-ID: <1397664114.4215.35.camel@intelbox> (raw)
In-Reply-To: <20140416145343.GI10722@phenom.ffwll.local>


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

On Wed, 2014-04-16 at 16:53 +0200, Daniel Vetter wrote:
> On Mon, Apr 14, 2014 at 08:24:46PM +0300, Imre Deak wrote:
> > Add runtime PM support for VLV, but leave it disabled. The next patch
> > enables it.
> > 
> > The suspend/resume sequence used is based on [1] and [2]. In practice we
> > depend on the GT RC6 mechanism to save the HW context depending on the
> > render and media power wells. By the time we run the runtime suspend
> > callback the display side is also off and the HW context for that is
> > managed by the display power domain framework.
> > 
> > Besides the above there are Gunit registers that depend on a system-wide
> > power well. This power well goes off once the device enters any of the
> > S0i[R123] states. To handle this scenario, save/restore these Gunit
> > registers. Note that this is not the complete register set dictated by
> > [2], to remove some overhead, registers that are known not to be used are
> > ignored. Also some registers are fully setup by initialization functions
> > called during resume, these are not saved either. The list of registers
> > can be further reduced, see the TODO note in the code.
> > 
> > [1] VLV_gfx_clocking_PM_reset_y12w21d3 / "Driver D3 entry/exit"
> > [2] VLV2_S0IXRegs
> > 
> > Signed-off-by: Imre Deak <imre.deak@intel.com>
> > ---
> >  drivers/gpu/drm/i915/i915_drv.c | 327 ++++++++++++++++++++++++++++++++++++++++
> >  drivers/gpu/drm/i915/i915_drv.h |  62 ++++++++
> >  2 files changed, 389 insertions(+)
> > 
> > diff --git a/drivers/gpu/drm/i915/i915_drv.c b/drivers/gpu/drm/i915/i915_drv.c
> > index 08e210c..bc206dd 100644
> > --- a/drivers/gpu/drm/i915/i915_drv.c
> > +++ b/drivers/gpu/drm/i915/i915_drv.c
> > @@ -911,6 +911,198 @@ static int hsw_runtime_resume(struct drm_i915_private *dev_priv)
> >  	return 0;
> >  }
> >  
> > +/*
> > + * Save all Gunit registers that may be lost after a D3 and a subsequent
> > + * S0i[R123] transition. The list of registers needing a save/restore is
> > + * defined in the VLV2_S0IXRegs document. This documents marks all Gunit
> > + * registers in the following way:
> > + * - Driver: saved/restored by the driver
> > + * - Punit : saved/restored by the Punit firmware
> > + * - No, w/o marking: no need to save/restore, since the register is R/O or
> > + *                    used internally by the HW in a way that doesn't depend
> > + *                    keeping the content across a suspend/resume.
> > + * - Debug : used for debugging
> > + *
> > + * We save/restore all registers marked with 'Driver', with the following
> > + * exceptions:
> > + * - Registers out of use, including also registers marked with 'Debug'.
> > + *   These have no effect on the driver's operation, so we don't save/restore
> > + *   them to reduce the overhead.
> > + * - Registers that are fully setup by an initialization function called from
> > + *   the resume path. For example many clock gating and RPS/RC6 registers.
> > + * - Registers that provide the right functionality with their reset defaults.
> > + *
> > + * TODO: Except for registers that based on the above 3 criteria can be safely
> > + * ignored, we save/restore all others, practically treating the HW context as
> > + * a black-box for the driver. Further investigation is needed to reduce the
> > + * saved/restored registers even further, by following the same 3 criteria.
> > + */
> > +static void vlv_save_gunit_s0ix_state(struct drm_i915_private *dev_priv)
> > +{
> > +	struct vlv_s0ix_state *s = &dev_priv->vlv_s0ix_state;
> > +	int i;
> > +
> > +	/* GAM 0x4000-0x4770 */
> > +	s->wr_watermark		= I915_READ(GEN7_WR_WATERMARK);
> > +	s->gfx_prio_ctrl	= I915_READ(GEN7_GFX_PRIO_CTRL);
> > +	s->arb_mode		= I915_READ(ARB_MODE);
> > +	s->gfx_pend_tlb0	= I915_READ(GEN7_GFX_PEND_TLB0);
> > +	s->gfx_pend_tlb1	= I915_READ(GEN7_GFX_PEND_TLB1);
> > +
> > +	for (i = 0; i < ARRAY_SIZE(s->lra_limits); i++)
> > +		s->lra_limits[i] = I915_READ(GEN7_LRA_LIMITS_BASE + i * 4);
> > +
> > +	s->media_max_req_count	= I915_READ(GEN7_MEDIA_MAX_REQ_COUNT);
> > +	s->gfx_max_req_count	= I915_READ(GEN7_MEDIA_MAX_REQ_COUNT);
> > +
> > +	s->render_hwsp		= I915_READ(RENDER_HWS_PGA_GEN7);
> > +	s->ecochk		= I915_READ(GAM_ECOCHK);
> > +	s->bsd_hwsp		= I915_READ(BSD_HWS_PGA_GEN7);
> > +	s->blt_hwsp		= I915_READ(BLT_HWS_PGA_GEN7);
> > +
> > +	s->tlb_rd_addr		= I915_READ(GEN7_TLB_RD_ADDR);
> > +
> > +	/* MBC 0x9024-0x91D0, 0x8500 */
> > +	s->g3dctl		= I915_READ(GEN7_G3DCTL);
> > +	s->gsckgctl		= I915_READ(GEN7_GSCKGCTL);
> > +	s->mbctl		= I915_READ(GEN6_MBCTL);
> > +
> > +	/* GCP 0x9400-0x9424, 0x8100-0x810C */
> > +	s->ucgctl1		= I915_READ(GEN6_UCGCTL1);
> > +	s->ucgctl3		= I915_READ(GEN7_UCGCTL3);
> > +	s->rcgctl1		= I915_READ(GEN7_RCGCTL1);
> > +	s->rcgctl2		= I915_READ(GEN7_RCGCTL2);
> > +	s->rstctl		= I915_READ(GEN7_RSTCTL);
> > +	s->misccpctl		= I915_READ(GEN7_MISCCPCTL);
> > +
> > +	/* GPM 0xA000-0xAA84, 0x8000-0x80FC */
> > +	s->gfxpause		= I915_READ(GEN7_GFXPAUSE);
> > +	s->rpdeuhwtc		= I915_READ(GEN7_RPDEUHWTC);
> > +	s->rpdeuc		= I915_READ(GEN7_RPDEUC);
> > +	s->ecobus		= I915_READ(ECOBUS);
> > +	s->pwrdwnupctl		= I915_READ(VLV_PWRDWNUPCTL);
> > +	s->rp_down_timeout	= I915_READ(GEN6_RP_DOWN_TIMEOUT);
> > +	s->rp_deucsw		= I915_READ(GEN7_RPDEUCSW);
> > +	s->rcubmabdtmr		= I915_READ(VLV_RCUBMABDTMR);
> > +	s->rcedata		= I915_READ(VLV_RCEDATA);
> > +	s->spare2gh		= I915_READ(VLV_SPAREG2H);
> > +
> > +	/* Display CZ domain, 0x4400C-0x4402C, 0x4F000-0x4F11F */
> > +	s->gt_imr		= I915_READ(GTIMR);
> > +	s->gt_ier		= I915_READ(GTIER);
> > +	s->pm_imr		= I915_READ(GEN6_PMIIR);
> > +	s->pm_ier		= I915_READ(GEN6_PMIER);
> > +
> > +	for (i = 0; i < ARRAY_SIZE(s->gt_scratch); i++)
> > +		s->gt_scratch[i] = I915_READ(GEN7_GT_SCRATCH_BASE + i * 4);
> > +
> > +	/* GT SA CZ domain, 0x100000-0x138124 */
> > +	s->tilectl		= I915_READ(TILECTL);
> > +	s->gt_fifoctl		= I915_READ(GTFIFOCTL);
> > +	s->gtlc_wake_ctrl	= I915_READ(VLV_GTLC_WAKE_CTRL);
> > +	s->gtlc_survive		= I915_READ(VLV_GTLC_SURVIVABILITY_REG);
> > +	s->pmwgicz		= I915_READ(VLV_PMWGICZ);
> > +
> > +	/* Gunit-Display CZ domain, 0x182028-0x1821CF */
> > +	s->gu_ctl0		= I915_READ(VLV_GU_CTL0);
> > +	s->gu_ctl1		= I915_READ(VLV_GU_CTL1);
> > +	s->clock_gate_dis2	= I915_READ(VLV_GUNIT_CLOCK_GATE2);
> > +
> > +	/*
> > +	 * Not saving any of:
> > +	 * DFT,		0x9800-0x9EC0
> > +	 * SARB,	0xB000-0xB1FC
> > +	 * GAC,		0x5208-0x524C, 0x14000-0x14C000
> > +	 * PCI CFG
> > +	 */
> > +}
> 
> Ok somehow I've missed this, and it totally freaks me out ;-) I really
> don't like large-scale register save/restore code since it tends to be
> race and brittle. And a bunch of these (e.g. for the interrupt stuff)
> should be handled already by simply running the interrupt code again.

I don't like it either and that's why I put a TODO in the comment above
to further reduce the list. Note that I already removed a bunch of the
registers that the spec says we should save/restore. Those I found to be
safe, but for all others there is no guarantee that we can do away with
this code. It needs time to go through all this stuff, so I chose this
solution leaving a way to optimize things further over time.

> Most of the others probably just work if we run the ring init code again.
> Thanks to Chris' work to not tear down ring structures (unfortunately
> patches stuck in review limbo) that boils down to a simple call to the
> ring init functions.

Yes, I noticed that and once it gets merged and someone cross-checks it
against this reglist we can remove some further registers. Until that
this code is at worst unneeded overhead, I don't see how it can cause
any functional issues.

> For the remaining ones we either ok with the reset value, or we definitely
> miss a w/a somewhere or it's placed at the wrong place (e.g. in the
> clock_gating function instead of the right ring init function).

Yes, those need to be checked and fixed up one-by-one, but again until
that happens this code is at worst unneeded overhead. But in case the
BIOS sets some value to its non-reset value it can save things.  

> Not sure yet what to do whit this patch, but I'm voting for further
> discussion. Imo all the others can already be pulled in ...

I'd vote for inclusion with a promise from me that I reduce the reglist
here over time.

> Also I wonder whether hsw/bdw _really_ don't need any of this, or whether
> it would be better to manually load the ring state into the hardware again
> too. Another reason for more unified runtime pm code ;-)

In this patchset I made the first step for a more unified PM code, could
we continue from there on? :)

--Imre

> 
> Cheers, Daniel
> 
> > +
> > +static void vlv_restore_gunit_s0ix_state(struct drm_i915_private *dev_priv)
> > +{
> > +	struct vlv_s0ix_state *s = &dev_priv->vlv_s0ix_state;
> > +	u32 val;
> > +	int i;
> > +
> > +	/* GAM 0x4000-0x4770 */
> > +	I915_WRITE(GEN7_WR_WATERMARK,	s->wr_watermark);
> > +	I915_WRITE(GEN7_GFX_PRIO_CTRL,	s->gfx_prio_ctrl);
> > +	I915_WRITE(ARB_MODE,		s->arb_mode | (0xffff << 16));
> > +	I915_WRITE(GEN7_GFX_PEND_TLB0,	s->gfx_pend_tlb0);
> > +	I915_WRITE(GEN7_GFX_PEND_TLB1,	s->gfx_pend_tlb1);
> > +
> > +	for (i = 0; i < ARRAY_SIZE(s->lra_limits); i++)
> > +		I915_WRITE(GEN7_LRA_LIMITS_BASE + i * 4, s->lra_limits[i]);
> > +
> > +	I915_WRITE(GEN7_MEDIA_MAX_REQ_COUNT, s->media_max_req_count);
> > +	I915_WRITE(GEN7_MEDIA_MAX_REQ_COUNT, s->gfx_max_req_count);
> > +
> > +	I915_WRITE(RENDER_HWS_PGA_GEN7,	s->render_hwsp);
> > +	I915_WRITE(GAM_ECOCHK,		s->ecochk);
> > +	I915_WRITE(BSD_HWS_PGA_GEN7,	s->bsd_hwsp);
> > +	I915_WRITE(BLT_HWS_PGA_GEN7,	s->blt_hwsp);
> > +
> > +	I915_WRITE(GEN7_TLB_RD_ADDR,	s->tlb_rd_addr);
> > +
> > +	/* MBC 0x9024-0x91D0, 0x8500 */
> > +	I915_WRITE(GEN7_G3DCTL,		s->g3dctl);
> > +	I915_WRITE(GEN7_GSCKGCTL,	s->gsckgctl);
> > +	I915_WRITE(GEN6_MBCTL,		s->mbctl);
> > +
> > +	/* GCP 0x9400-0x9424, 0x8100-0x810C */
> > +	I915_WRITE(GEN6_UCGCTL1,	s->ucgctl1);
> > +	I915_WRITE(GEN7_UCGCTL3,	s->ucgctl3);
> > +	I915_WRITE(GEN7_RCGCTL1,	s->rcgctl1);
> > +	I915_WRITE(GEN7_RCGCTL2,	s->rcgctl2);
> > +	I915_WRITE(GEN7_RSTCTL,		s->rstctl);
> > +	I915_WRITE(GEN7_MISCCPCTL,	s->misccpctl);
> > +
> > +	/* GPM 0xA000-0xAA84, 0x8000-0x80FC */
> > +	I915_WRITE(GEN7_GFXPAUSE,	s->gfxpause);
> > +	I915_WRITE(GEN7_RPDEUHWTC,	s->rpdeuhwtc);
> > +	I915_WRITE(GEN7_RPDEUC,		s->rpdeuc);
> > +	I915_WRITE(ECOBUS,		s->ecobus);
> > +	I915_WRITE(VLV_PWRDWNUPCTL,	s->pwrdwnupctl);
> > +	I915_WRITE(GEN6_RP_DOWN_TIMEOUT,s->rp_down_timeout);
> > +	I915_WRITE(GEN7_RPDEUCSW,	s->rp_deucsw);
> > +	I915_WRITE(VLV_RCUBMABDTMR,	s->rcubmabdtmr);
> > +	I915_WRITE(VLV_RCEDATA,		s->rcedata);
> > +	I915_WRITE(VLV_SPAREG2H,	s->spare2gh);
> > +
> > +	/* Display CZ domain, 0x4400C-0x4402C, 0x4F000-0x4F11F */
> > +	I915_WRITE(GTIMR,		s->gt_imr);
> > +	I915_WRITE(GTIER,		s->gt_ier);
> > +	I915_WRITE(GEN6_PMIIR,		s->pm_imr);
> > +	I915_WRITE(GEN6_PMIER,		s->pm_ier);
> > +
> > +	for (i = 0; i < ARRAY_SIZE(s->gt_scratch); i++)
> > +		I915_WRITE(GEN7_GT_SCRATCH_BASE + i * 4, s->gt_scratch[i]);
> > +
> > +	/* GT SA CZ domain, 0x100000-0x138124 */
> > +	I915_WRITE(TILECTL,			s->tilectl);
> > +	I915_WRITE(GTFIFOCTL,			s->gt_fifoctl);
> > +	/*
> > +	 * Preserve the GT allow wake and GFX force clock bit, they are not
> > +	 * be restored, as they are used to control the s0ix suspend/resume
> > +	 * sequence by the caller.
> > +	 */
> > +	val = I915_READ(VLV_GTLC_WAKE_CTRL);
> > +	val &= VLV_GTLC_ALLOWWAKEREQ;
> > +	val |= s->gtlc_wake_ctrl & ~VLV_GTLC_ALLOWWAKEREQ;
> > +	I915_WRITE(VLV_GTLC_WAKE_CTRL, val);
> > +
> > +	val = I915_READ(VLV_GTLC_SURVIVABILITY_REG);
> > +	val &= VLV_GFX_CLK_FORCE_ON_BIT;
> > +	val |= s->gtlc_survive & ~VLV_GFX_CLK_FORCE_ON_BIT;
> > +	I915_WRITE(VLV_GTLC_SURVIVABILITY_REG, val);
> > +
> > +	I915_WRITE(VLV_PMWGICZ,			s->pmwgicz);
> > +
> > +	/* Gunit-Display CZ domain, 0x182028-0x1821CF */
> > +	I915_WRITE(VLV_GU_CTL0,			s->gu_ctl0);
> > +	I915_WRITE(VLV_GU_CTL1,			s->gu_ctl1);
> > +	I915_WRITE(VLV_GUNIT_CLOCK_GATE2,	s->clock_gate_dis2);
> > +}
> > +
> >  int vlv_force_gfx_clock(struct drm_i915_private *dev_priv, bool force_on)
> >  {
> >  	u32 val;
> > @@ -948,6 +1140,137 @@ int vlv_force_gfx_clock(struct drm_i915_private *dev_priv, bool force_on)
> >  #undef COND
> >  }
> >  
> > +static int vlv_allow_gt_wake(struct drm_i915_private *dev_priv, bool allow)
> > +{
> > +	u32 val;
> > +	int err = 0;
> > +
> > +	val = I915_READ(VLV_GTLC_WAKE_CTRL);
> > +	val &= ~VLV_GTLC_ALLOWWAKEREQ;
> > +	if (allow)
> > +		val |= VLV_GTLC_ALLOWWAKEREQ;
> > +	I915_WRITE(VLV_GTLC_WAKE_CTRL, val);
> > +	POSTING_READ(VLV_GTLC_WAKE_CTRL);
> > +
> > +#define COND (!!(I915_READ(VLV_GTLC_PW_STATUS) & VLV_GTLC_ALLOWWAKEACK) == \
> > +	      allow)
> > +	err = wait_for(COND, 1);
> > +	if (err)
> > +		DRM_ERROR("timeout disabling GT waking\n");
> > +	return err;
> > +#undef COND
> > +}
> > +
> > +static int vlv_wait_for_gt_wells(struct drm_i915_private *dev_priv,
> > +				 bool wait_for_on)
> > +{
> > +	u32 mask;
> > +	u32 val;
> > +	int err;
> > +
> > +	mask = VLV_GTLC_PW_MEDIA_STATUS_MASK | VLV_GTLC_PW_RENDER_STATUS_MASK;
> > +	val = wait_for_on ? mask : 0;
> > +#define COND ((I915_READ(VLV_GTLC_PW_STATUS) & mask) == val)
> > +	if (COND)
> > +		return 0;
> > +
> > +	DRM_DEBUG_KMS("waiting for GT wells to go %s (%08x)\n",
> > +			wait_for_on ? "on" : "off",
> > +			I915_READ(VLV_GTLC_PW_STATUS));
> > +
> > +	/*
> > +	 * RC6 transitioning can be delayed up to 2 msec (see
> > +	 * valleyview_enable_rps), use 3 msec for safety.
> > +	 */
> > +	err = wait_for(COND, 3);
> > +	if (err)
> > +		DRM_ERROR("timeout waiting for GT wells to go %s\n",
> > +			  wait_for_on ? "on" : "off");
> > +
> > +	return err;
> > +#undef COND
> > +}
> > +
> > +static void vlv_check_no_gt_access(struct drm_i915_private *dev_priv)
> > +{
> > +	if (!(I915_READ(VLV_GTLC_PW_STATUS) & VLV_GTLC_ALLOWWAKEERR))
> > +		return;
> > +
> > +	DRM_ERROR("GT register access while GT waking disabled\n");
> > +	I915_WRITE(VLV_GTLC_PW_STATUS, VLV_GTLC_ALLOWWAKEERR);
> > +}
> > +
> > +static int vlv_runtime_suspend(struct drm_i915_private *dev_priv)
> > +{
> > +	u32 mask;
> > +	int err;
> > +
> > +	/*
> > +	 * Bspec defines the following GT well on flags as debug only, so
> > +	 * don't treat them as hard failures.
> > +	 */
> > +	(void)vlv_wait_for_gt_wells(dev_priv, false);
> > +
> > +	mask = VLV_GTLC_RENDER_CTX_EXISTS | VLV_GTLC_MEDIA_CTX_EXISTS;
> > +	WARN_ON((I915_READ(VLV_GTLC_WAKE_CTRL) & mask) != mask);
> > +
> > +	vlv_check_no_gt_access(dev_priv);
> > +
> > +	err = vlv_force_gfx_clock(dev_priv, true);
> > +	if (err)
> > +		goto err1;
> > +
> > +	err = vlv_allow_gt_wake(dev_priv, false);
> > +	if (err)
> > +		goto err2;
> > +	vlv_save_gunit_s0ix_state(dev_priv);
> > +
> > +	err = vlv_force_gfx_clock(dev_priv, false);
> > +	if (err)
> > +		goto err2;
> > +
> > +	return 0;
> > +
> > +err2:
> > +	/* For safety always re-enable waking and disable gfx clock forcing */
> > +	vlv_allow_gt_wake(dev_priv, true);
> > +err1:
> > +	vlv_force_gfx_clock(dev_priv, false);
> > +
> > +	return err;
> > +}
> > +
> > +static int vlv_runtime_resume(struct drm_i915_private *dev_priv)
> > +{
> > +	struct drm_device *dev = dev_priv->dev;
> > +	int err;
> > +	int ret;
> > +
> > +	/*
> > +	 * If any of the steps fail just try to continue, that's the best we
> > +	 * can do at this point. Return the first error code (which will also
> > +	 * leave RPM permanently disabled).
> > +	 */
> > +	ret = vlv_force_gfx_clock(dev_priv, true);
> > +
> > +	vlv_restore_gunit_s0ix_state(dev_priv);
> > +
> > +	err = vlv_allow_gt_wake(dev_priv, true);
> > +	if (!ret)
> > +		ret = err;
> > +
> > +	err = vlv_force_gfx_clock(dev_priv, false);
> > +	if (!ret)
> > +		ret = err;
> > +
> > +	vlv_check_no_gt_access(dev_priv);
> > +
> > +	intel_init_clock_gating(dev);
> > +	i915_gem_restore_fences(dev);
> > +
> > +	return ret;
> > +}
> > +
> >  static int intel_runtime_suspend(struct device *device)
> >  {
> >  	struct pci_dev *pdev = to_pci_dev(device);
> > @@ -970,6 +1293,8 @@ static int intel_runtime_suspend(struct device *device)
> >  		ret = 0;
> >  	} if (IS_HASWELL(dev) || IS_BROADWELL(dev)) {
> >  		ret = hsw_runtime_suspend(dev_priv);
> > +	} else if (IS_VALLEYVIEW(dev)) {
> > +		ret = vlv_runtime_suspend(dev_priv);
> >  	} else {
> >  		ret = -ENODEV;
> >  		WARN_ON(1);
> > @@ -1018,6 +1343,8 @@ static int intel_runtime_resume(struct device *device)
> >  		ret = snb_runtime_resume(dev_priv);
> >  	} else if (IS_HASWELL(dev) || IS_BROADWELL(dev)) {
> >  		ret = hsw_runtime_resume(dev_priv);
> > +	} else if (IS_VALLEYVIEW(dev)) {
> > +		ret = vlv_runtime_resume(dev_priv);
> >  	} else {
> >  		WARN_ON(1);
> >  		ret = -ENODEV;
> > diff --git a/drivers/gpu/drm/i915/i915_drv.h b/drivers/gpu/drm/i915/i915_drv.h
> > index 3cac434..77cb7fc 100644
> > --- a/drivers/gpu/drm/i915/i915_drv.h
> > +++ b/drivers/gpu/drm/i915/i915_drv.h
> > @@ -819,6 +819,67 @@ struct i915_suspend_saved_registers {
> >  	u32 savePCH_PORT_HOTPLUG;
> >  };
> >  
> > +struct vlv_s0ix_state {
> > +	/* GAM */
> > +	u32 wr_watermark;
> > +	u32 gfx_prio_ctrl;
> > +	u32 arb_mode;
> > +	u32 gfx_pend_tlb0;
> > +	u32 gfx_pend_tlb1;
> > +	u32 lra_limits[GEN7_LRA_LIMITS_REG_NUM];
> > +	u32 media_max_req_count;
> > +	u32 gfx_max_req_count;
> > +	u32 render_hwsp;
> > +	u32 ecochk;
> > +	u32 bsd_hwsp;
> > +	u32 blt_hwsp;
> > +	u32 tlb_rd_addr;
> > +
> > +	/* MBC */
> > +	u32 g3dctl;
> > +	u32 gsckgctl;
> > +	u32 mbctl;
> > +
> > +	/* GCP */
> > +	u32 ucgctl1;
> > +	u32 ucgctl3;
> > +	u32 rcgctl1;
> > +	u32 rcgctl2;
> > +	u32 rstctl;
> > +	u32 misccpctl;
> > +
> > +	/* GPM */
> > +	u32 gfxpause;
> > +	u32 rpdeuhwtc;
> > +	u32 rpdeuc;
> > +	u32 ecobus;
> > +	u32 pwrdwnupctl;
> > +	u32 rp_down_timeout;
> > +	u32 rp_deucsw;
> > +	u32 rcubmabdtmr;
> > +	u32 rcedata;
> > +	u32 spare2gh;
> > +
> > +	/* Display 1 CZ domain */
> > +	u32 gt_imr;
> > +	u32 gt_ier;
> > +	u32 pm_imr;
> > +	u32 pm_ier;
> > +	u32 gt_scratch[GEN7_GT_SCRATCH_REG_NUM];
> > +
> > +	/* GT SA CZ domain */
> > +	u32 tilectl;
> > +	u32 gt_fifoctl;
> > +	u32 gtlc_wake_ctrl;
> > +	u32 gtlc_survive;
> > +	u32 pmwgicz;
> > +
> > +	/* Display 2 CZ domain */
> > +	u32 gu_ctl0;
> > +	u32 gu_ctl1;
> > +	u32 clock_gate_dis2;
> > +};
> > +
> >  struct intel_gen6_power_mgmt {
> >  	/* work and pm_iir are protected by dev_priv->irq_lock */
> >  	struct work_struct work;
> > @@ -1447,6 +1508,7 @@ struct drm_i915_private {
> >  
> >  	u32 suspend_count;
> >  	struct i915_suspend_saved_registers regfile;
> > +	struct vlv_s0ix_state vlv_s0ix_state;
> >  
> >  	struct {
> >  		/*
> > -- 
> > 1.8.4
> > 
> > _______________________________________________
> > Intel-gfx mailing list
> > Intel-gfx@lists.freedesktop.org
> > http://lists.freedesktop.org/mailman/listinfo/intel-gfx
> 


[-- 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:[~2014-04-16 16:03 UTC|newest]

Thread overview: 85+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2014-04-14 17:24 [PATCH v2 00/25] vlv: add support for RPM Imre Deak
2014-04-14 17:24 ` [PATCH v2 01/25] drm/i915: vlv: clean up GTLC wake control/status register macros Imre Deak
2014-04-24 21:04   ` Rodrigo Vivi
2014-04-14 17:24 ` [PATCH v2 02/25] drm/i915: vlv: clear master interrupt flag when disabling interrupts Imre Deak
2014-04-14 17:24 ` [PATCH v2 03/25] drm/i915: vlv: add RC6 residency counters Imre Deak
2014-04-14 17:24 ` [PATCH v2 04/25] drm/i915: fix the RC6 status debug print Imre Deak
2014-04-14 17:24 ` [PATCH v2 05/25] drm/i915: remove the i915_dpio debugfs entry Imre Deak
2014-04-14 17:24 ` [PATCH v2 06/25] drm/i915: get a runtime PM ref for debugfs entries where needed Imre Deak
2014-04-14 17:24 ` [PATCH v2 07/25] drm/i915: move getting struct_mutex lower in the callstack during GPU reset Imre Deak
2014-04-14 17:24 ` [PATCH v2 08/25] drm/i915: get a runtime PM ref for the deferred GT powersave enabling Imre Deak
2014-04-25  7:59   ` Daniel Vetter
2014-04-25  8:14     ` Imre Deak
2014-04-25  9:09       ` Daniel Vetter
2014-04-25  8:01   ` Daniel Vetter
2014-04-14 17:24 ` [PATCH v2 09/25] drm/i915: get a runtime PM ref for the deferred GPU reset work Imre Deak
2014-04-16 12:11   ` Ville Syrjälä
2014-04-18 12:47   ` [PATCH v3] " Imre Deak
2014-04-22 19:38     ` Daniel Vetter
2014-04-22 20:34       ` Imre Deak
2014-04-22 21:05         ` Daniel Vetter
2014-04-22 22:13     ` [PATCH v4] " Imre Deak
2014-04-23  7:07       ` Daniel Vetter
2014-04-23  7:52         ` Imre Deak
2014-04-25  8:00           ` Daniel Vetter
2014-04-14 17:24 ` [PATCH v2 10/25] drm/i915: gen2: move error capture of IER to its correct place Imre Deak
2014-04-16 12:22   ` Ville Syrjälä
2014-04-16 12:57     ` Imre Deak
2014-04-24 21:06       ` Rodrigo Vivi
2014-04-14 17:24 ` [PATCH v2 11/25] drm/i915: add missing error capturing of the PIPESTAT reg Imre Deak
2014-04-16 12:17   ` Ville Syrjälä
2014-04-18 11:44     ` Imre Deak
2014-04-18 12:55   ` [PATCH v3 " Imre Deak
2014-04-23  7:53     ` Ville Syrjälä
2014-04-14 17:24 ` [PATCH v2 12/25] drm/i915: vlv: check port power domain instead of only D0 for eDP VDD on Imre Deak
2014-04-14 17:24 ` [PATCH v2 13/25] drm/i915: fix unbalanced GT powersave enable / disable calls Imre Deak
2014-04-14 17:24 ` [PATCH v2 14/25] drm/i915: sanitize enable_rc6 option Imre Deak
2014-04-16 12:28   ` Ville Syrjälä
2014-04-16 12:37     ` Imre Deak
2014-04-18 13:01   ` [PATCH v3 " Imre Deak
2014-04-23  7:58     ` Ville Syrjälä
2014-04-14 17:24 ` [PATCH v2 15/25] drm/i915: disable runtime PM if RC6 is disabled Imre Deak
2014-04-14 17:24 ` [PATCH v2 16/25] drm/i915: make runtime PM interrupt enable/disable platform independent Imre Deak
2014-04-14 17:24 ` [PATCH v2 17/25] drm/i915: factor out gen6_update_ring_freq Imre Deak
2014-04-16 17:31   ` Ville Syrjälä
2014-04-18 13:16   ` [PATCH v3 " Imre Deak
2014-04-23  7:59     ` Ville Syrjälä
2014-04-14 17:24 ` [PATCH v2 18/25] drm/i915: make runtime PM swizzling/ring_freq init platform independent Imre Deak
2014-04-14 17:24 ` [PATCH v2 19/25] drm/i915: reinit GT power save during resume Imre Deak
2014-04-16 17:46   ` Ville Syrjälä
2014-04-18 10:51     ` Imre Deak
2014-04-22 17:21   ` [PATCH v3 " Imre Deak
2014-04-23  8:06     ` Ville Syrjälä
2014-04-14 17:24 ` [PATCH v2 20/25] drm/i915: vlv: setup RPS min/max frequencies once during init time Imre Deak
2014-04-14 17:24 ` [PATCH v2 21/25] drm/i915: vlv: factor out vlv_force_gfx_clock Imre Deak
2014-04-16 17:49   ` Ville Syrjälä
2014-04-18 13:35   ` [PATCH v3 21/25] drm/i915: vlv: factor out vlv_force_gfx_clock and check for pending force-off Imre Deak
2014-04-23  8:11     ` Ville Syrjälä
2014-04-14 17:24 ` [PATCH v2 22/25] drm/i915: vlv: increase timeout when forcing on the GFX clock Imre Deak
2014-04-25 14:04   ` Daniel Vetter
2014-04-14 17:24 ` [PATCH v2 23/25] drm/i915: add various missing GTI/Gunit register definitions Imre Deak
2014-04-24 21:17   ` Rodrigo Vivi
2014-04-24 21:49     ` Imre Deak
2014-04-30 14:32   ` Ville Syrjälä
2014-05-05 11:43     ` Imre Deak
2014-05-05 12:13   ` [PATCH v3 " Imre Deak
2014-05-05 12:21     ` Ville Syrjälä
2014-04-14 17:24 ` [PATCH v2 24/25] drm/i915: propagate the error code from runtime PM callbacks Imre Deak
2014-04-15 13:39   ` [PATCH v3 " Imre Deak
2014-04-30 18:05     ` Ville Syrjälä
2014-04-30 18:53       ` Imre Deak
2014-05-05 12:44         ` Ville Syrjälä
2014-05-05 13:18           ` Imre Deak
2014-04-14 17:24 ` [PATCH v2 25/25] drm/i915: vlv: add runtime PM support Imre Deak
2014-04-16 12:39   ` Ville Syrjälä
2014-04-16 14:53   ` Daniel Vetter
2014-04-16 16:01     ` Imre Deak [this message]
2014-04-22 17:28   ` [PATCH v3 " Imre Deak
2014-04-22 22:09     ` [PATCH v4] drm/i915: get a runtime PM ref for the deferred GPU reset work Imre Deak
2014-04-24 21:02       ` Rodrigo Vivi
2014-04-30 17:35     ` [PATCH v3 25/25] drm/i915: vlv: add runtime PM support Ville Syrjälä
2014-05-05  9:33       ` Daniel Vetter
2014-05-05 12:19     ` [PATCH v4 " Imre Deak
2014-04-14 17:41 ` [PATCH v2 26/25] drm/i915: vlv: enable runtime PM Imre Deak
2014-05-06 19:39   ` Daniel Vetter
2014-04-17 11:00 ` [PATCH v2 00/25] vlv: add support for RPM Ville Syrjälä

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=1397664114.4215.35.camel@intelbox \
    --to=imre.deak@intel.com \
    --cc=daniel@ffwll.ch \
    --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