From: "Ville Syrjälä" <ville.syrjala@linux.intel.com>
To: Lee Shawn C <shawn.c.lee@intel.com>
Cc: intel-gfx@lists.freedesktop.org
Subject: Re: [Intel-gfx] [PATCH] drm/i915/display: refine eDP power off sequence
Date: Wed, 31 Aug 2022 13:48:25 +0300 [thread overview]
Message-ID: <Yw88eUkBTEBOnEZZ@intel.com> (raw)
In-Reply-To: <20220831103724.14839-1-shawn.c.lee@intel.com>
On Wed, Aug 31, 2022 at 06:37:24PM +0800, Lee Shawn C wrote:
> The current eDP disable sequence like this.
>
> disable plane > disable backlight (include T9, the delay
> from backlight disable to end of valid video data) >
> disalbe transcoder/pipe > disable eDP power
>
> Found abnormal pixel output after plane off sometimes.
> It did not cause any issue but impact user experience.
> So we modify the eDP disable flow to turn backlight off
> earlier to avoid abnormal display.
NAK. Planes can be disable at any time by userspace.
We need to find out what is causing the glitch.
>
> disable backlight > disable plane > disalbe transcoder/pipe
> > disable eDP power
>
> Cc: Shankar Uma <uma.shankar@intel.com>
> Cc: Jani Nikula <jani.nikula@linux.intel.com>
> Signed-off-by: Lee Shawn C <shawn.c.lee@intel.com>
> ---
> drivers/gpu/drm/i915/display/intel_display.c | 8 +++++---
> 1 file changed, 5 insertions(+), 3 deletions(-)
>
> diff --git a/drivers/gpu/drm/i915/display/intel_display.c b/drivers/gpu/drm/i915/display/intel_display.c
> index 72e2091d9fcb..d08927036350 100644
> --- a/drivers/gpu/drm/i915/display/intel_display.c
> +++ b/drivers/gpu/drm/i915/display/intel_display.c
> @@ -2045,10 +2045,8 @@ static void hsw_crtc_disable(struct intel_atomic_state *state,
> * FIXME collapse everything to one hook.
> * Need care with mst->ddi interactions.
> */
> - if (!intel_crtc_is_bigjoiner_slave(old_crtc_state)) {
> - intel_encoders_disable(state, crtc);
> + if (!intel_crtc_is_bigjoiner_slave(old_crtc_state))
> intel_encoders_post_disable(state, crtc);
> - }
> }
>
> static void i9xx_pfit_enable(const struct intel_crtc_state *crtc_state)
> @@ -7224,6 +7222,10 @@ static void intel_commit_modeset_disables(struct intel_atomic_state *state)
> continue;
>
> intel_pre_plane_update(state, crtc);
> +
> + if (!intel_crtc_is_bigjoiner_slave(old_crtc_state))
> + intel_encoders_disable(state, crtc);
> +
> intel_crtc_disable_planes(state, crtc);
> }
>
> --
> 2.31.1
--
Ville Syrjälä
Intel
next prev parent reply other threads:[~2022-08-31 10:48 UTC|newest]
Thread overview: 5+ messages / expand[flat|nested] mbox.gz Atom feed top
2022-08-31 10:37 [Intel-gfx] [PATCH] drm/i915/display: refine eDP power off sequence Lee Shawn C
2022-08-31 10:48 ` Ville Syrjälä [this message]
2022-08-31 11:20 ` Lee, Shawn C
2022-08-31 11:24 ` [Intel-gfx] ✓ Fi.CI.BAT: success for " Patchwork
2022-08-31 18:19 ` [Intel-gfx] ✓ Fi.CI.IGT: " 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=Yw88eUkBTEBOnEZZ@intel.com \
--to=ville.syrjala@linux.intel.com \
--cc=intel-gfx@lists.freedesktop.org \
--cc=shawn.c.lee@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.