From: "Ville Syrjälä" <ville.syrjala@linux.intel.com>
To: Mika Kahola <mika.kahola@intel.com>
Cc: intel-gfx@lists.freedesktop.org
Subject: Re: [Intel-gfx] [PATCH v2] drm/i915/lnl: Remove watchdog timers for PSR
Date: Mon, 9 Oct 2023 17:57:32 +0300 [thread overview]
Message-ID: <ZSQU3Dbc_C3hLmZX@intel.com> (raw)
In-Reply-To: <20231009141303.577061-1-mika.kahola@intel.com>
On Mon, Oct 09, 2023 at 05:13:03PM +0300, Mika Kahola wrote:
> Currently we are not using watchdog timers for PSR/PSR2
> with Lunarlake. The patch removes the use of these timers
> from the driver code.
That still doesn't seem to say that the timers were removed
from the hardware. Or at least I can't parse it that way.
>
> BSpec: 69895
>
> v2: Reword commit message (Ville)
> Drop HPD mask from LNL (Ville)
That should probably be a separate patch since it has nothing to do
with what the commit message is saying.
> Revise masking logic (Jouni)
>
> Signed-off-by: Mika Kahola <mika.kahola@intel.com>
> ---
> drivers/gpu/drm/i915/display/intel_psr.c | 12 ++++++++----
> 1 file changed, 8 insertions(+), 4 deletions(-)
>
> diff --git a/drivers/gpu/drm/i915/display/intel_psr.c b/drivers/gpu/drm/i915/display/intel_psr.c
> index 850b11f20285..abdafd04d8e3 100644
> --- a/drivers/gpu/drm/i915/display/intel_psr.c
> +++ b/drivers/gpu/drm/i915/display/intel_psr.c
> @@ -676,7 +676,9 @@ static void hsw_activate_psr1(struct intel_dp *intel_dp)
>
> val |= EDP_PSR_IDLE_FRAMES(psr_compute_idle_frames(intel_dp));
>
> - val |= EDP_PSR_MAX_SLEEP_TIME(max_sleep_time);
> + if (DISPLAY_VER(dev_priv) < 20)
> + val |= EDP_PSR_MAX_SLEEP_TIME(max_sleep_time);
> +
> if (IS_HASWELL(dev_priv))
> val |= EDP_PSR_MIN_LINK_ENTRY_TIME_8_LINES;
>
> @@ -1399,9 +1401,11 @@ static void intel_psr_enable_source(struct intel_dp *intel_dp,
> * can rely on frontbuffer tracking.
> */
> mask = EDP_PSR_DEBUG_MASK_MEMUP |
> - EDP_PSR_DEBUG_MASK_HPD |
> - EDP_PSR_DEBUG_MASK_LPSP |
> - EDP_PSR_DEBUG_MASK_MAX_SLEEP;
> + EDP_PSR_DEBUG_MASK_LPSP;
> +
> + if (DISPLAY_VER(dev_priv) < 20)
> + mask |= EDP_PSR_DEBUG_MASK_HPD |
> + EDP_PSR_DEBUG_MASK_MAX_SLEEP;
>
> /*
> * No separate pipe reg write mask on hsw/bdw, so have to unmask all
> --
> 2.34.1
--
Ville Syrjälä
Intel
next prev parent reply other threads:[~2023-10-09 14:57 UTC|newest]
Thread overview: 5+ messages / expand[flat|nested] mbox.gz Atom feed top
2023-10-09 14:13 [Intel-gfx] [PATCH v2] drm/i915/lnl: Remove watchdog timers for PSR Mika Kahola
2023-10-09 14:57 ` Ville Syrjälä [this message]
2023-10-10 6:31 ` Kahola, Mika
2023-10-09 22:48 ` [Intel-gfx] ✓ Fi.CI.BAT: success for drm/i915/lnl: Remove watchdog timers for PSR (rev2) Patchwork
2023-10-10 5:08 ` [Intel-gfx] ✗ Fi.CI.IGT: failure " 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=ZSQU3Dbc_C3hLmZX@intel.com \
--to=ville.syrjala@linux.intel.com \
--cc=intel-gfx@lists.freedesktop.org \
--cc=mika.kahola@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 an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.