From: "Ville Syrjälä" <ville.syrjala@linux.intel.com>
To: "S, Deepak" <deepak.s@intel.com>
Cc: intel-gfx@lists.freedesktop.org
Subject: Re: [PATCH 1/3] drm/i915: Track the enabled PM interrupts in dev_priv.
Date: Thu, 13 Mar 2014 20:59:48 +0200 [thread overview]
Message-ID: <20140313185948.GS20292@intel.com> (raw)
In-Reply-To: <5321FC52.1000707@intel.com>
On Fri, Mar 14, 2014 at 12:13:30AM +0530, S, Deepak wrote:
>
>
> On 3/13/2014 11:46 PM, Ville Syrjälä wrote:
> > On Thu, Mar 13, 2014 at 09:30:16PM +0530, deepak.s@linux.intel.com wrote:
> >> From: Deepak S <deepak.s@intel.com>
> >>
> >> When we use different rps events for different platform or due to wa, we
> >> mgiht end up doing (vs) everywahere. Insted of this, Let's use a variable
> >> in dev_priv to track the enabled PM interrupts
> >>
> >> Signed-off-by: Deepak S <deepak.s@linux.intel.com>
> >> ---
> >> drivers/gpu/drm/i915/i915_drv.h | 1 +
> >> drivers/gpu/drm/i915/i915_irq.c | 14 +++++++-------
> >> drivers/gpu/drm/i915/intel_pm.c | 14 +++++++++-----
> >> 3 files changed, 17 insertions(+), 12 deletions(-)
> >>
> >> diff --git a/drivers/gpu/drm/i915/i915_drv.h b/drivers/gpu/drm/i915/i915_drv.h
> >> index 70fbe90..d522313 100644
> > <snip>
> >> @@ -3311,6 +3311,8 @@ static void gen8_enable_rps(struct drm_device *dev)
> >> GEN6_RP_UP_BUSY_AVG |
> >> GEN6_RP_DOWN_IDLE_AVG);
> >>
> >> + dev_priv->pm_rps_events = GEN6_PM_RPS_EVENTS;
> >> +
> >> /* 6: Ring frequency + overclocking (our driver does this later */
> >>
> >> gen6_set_rps(dev, (I915_READ(GEN6_GT_PERF_STATUS) & 0xff00) >> 8);
> >> @@ -3430,6 +3432,7 @@ static void gen6_enable_rps(struct drm_device *dev)
> >> dev_priv->rps.power = HIGH_POWER; /* force a reset */
> >> gen6_set_rps(dev_priv->dev, dev_priv->rps.min_delay);
> >>
> >> + dev_priv->pm_rps_events = GEN6_PM_RPS_EVENTS;
> >> gen6_enable_rps_interrupts(dev);
> >>
> >> rc6vids = 0;
> >> @@ -3688,6 +3691,7 @@ static void valleyview_enable_rps(struct drm_device *dev)
> >> dev_priv->rps.rp_up_masked = false;
> >> dev_priv->rps.rp_down_masked = false;
> >>
> >> + dev_priv->pm_rps_events = GEN6_PM_RPS_EVENTS;
> >> gen6_enable_rps_interrupts(dev);
> >>
> >> gen6_gt_force_wake_put(dev_priv, FORCEWAKE_ALL);
> >
> > I think we need to initialize pm_rps_events somewhere earlier since we
> > depend on it already in irq postinstall. Othwewise the patch looks
> > good.
> Adding it in functions "intel_uncore_early_sanitize" or "pm_init" as
> this gets executed before irq_install in driver_load?
intel_irq_init() might be a good choice since that's where we also
initialize the rps.work, and then it's clear it gets executed before any
other irq setup code.
--
Ville Syrjälä
Intel OTC
next prev parent reply other threads:[~2014-03-13 19:00 UTC|newest]
Thread overview: 30+ messages / expand[flat|nested] mbox.gz Atom feed top
2014-03-03 6:05 [PATCH v2] drm/i915/vlv: WA for Turbo and RC6 to work together deepak.s
2014-03-04 14:20 ` S, Deepak
2014-03-05 12:11 ` Ville Syrjälä
2014-03-05 12:30 ` S, Deepak
2014-03-13 16:00 ` [PATCH v3 0/3] " deepak.s
2014-03-13 16:00 ` [PATCH 1/3] drm/i915: Track the enabled PM interrupts in dev_priv deepak.s
2014-03-13 18:16 ` Ville Syrjälä
2014-03-13 18:43 ` S, Deepak
2014-03-13 18:59 ` Ville Syrjälä [this message]
2014-03-15 14:53 ` [PATCH v4 0/3] WA for Turbo and RC6 to work together deepak.s
2014-03-15 14:53 ` [PATCH v2 1/3] drm/i915: Track the enabled PM interrupts in dev_priv deepak.s
2014-03-24 19:26 ` Ville Syrjälä
2014-03-24 20:22 ` Daniel Vetter
2014-03-15 14:53 ` [PATCH v4 2/3] drm/i915/vlv: WA for Turbo and RC6 to work together deepak.s
2014-03-24 19:26 ` Ville Syrjälä
2014-03-15 14:53 ` [PATCH v3 3/3] drm/i915: Add boot paramter to control rps boost at boot time deepak.s
2014-03-24 19:27 ` Ville Syrjälä
2014-03-27 6:35 ` [PATCH v5] drm/i915/vlv: WA for Turbo and RC6 to work together deepak.s
2014-03-28 12:53 ` Ville Syrjälä
2014-03-28 13:06 ` Chris Wilson
2014-03-30 6:27 ` Deepak S
2014-03-30 6:28 ` [PATCH v6] " deepak.s
2014-05-13 22:12 ` Jesse Barnes
2014-03-13 16:00 ` [PATCH v3 2/3] " deepak.s
2014-03-13 18:17 ` Ville Syrjälä
2014-03-13 18:40 ` S, Deepak
2014-03-13 18:57 ` Ville Syrjälä
2014-03-13 16:00 ` [PATCH v2 3/3] drm/i915: Add boot paramter to control rps boost at boot time deepak.s
2014-03-13 18:16 ` Ville Syrjälä
2014-03-13 18:46 ` S, Deepak
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=20140313185948.GS20292@intel.com \
--to=ville.syrjala@linux.intel.com \
--cc=deepak.s@intel.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