From: Jani Nikula <jani.nikula@linux.intel.com>
To: "Jouni Högander" <jouni.hogander@intel.com>,
intel-gfx@lists.freedesktop.org, intel-xe@lists.freedesktop.org
Cc: "Jouni Högander" <jouni.hogander@intel.com>
Subject: Re: [PATCH] drm/i915/psr: Disable PSR2 on Xiaomi Book Pro 14 2026 as a quirk
Date: Fri, 17 Apr 2026 11:30:09 +0300 [thread overview]
Message-ID: <cb644bbb5baaeca058d8639fbbeaceb748f51522@intel.com> (raw)
In-Reply-To: <20260417044926.750354-1-jouni.hogander@intel.com>
On Fri, 17 Apr 2026, Jouni Högander <jouni.hogander@intel.com> wrote:
> Add new quirk (QUIRK_DISABLE_PSR2) for disabling PSR2 as a quirk for
> problematic setups. Apply this newly added quirk on Xiaomi Book Pro 14 2026.
>
> Closes: https://gitlab.freedesktop.org/drm/xe/kernel/-/work_items/7677
> Signed-off-by: Jouni Högander <jouni.hogander@intel.com>
> ---
> drivers/gpu/drm/i915/display/intel_psr.c | 6 ++++++
> drivers/gpu/drm/i915/display/intel_quirks.c | 9 +++++++++
> drivers/gpu/drm/i915/display/intel_quirks.h | 1 +
> 3 files changed, 16 insertions(+)
>
> diff --git a/drivers/gpu/drm/i915/display/intel_psr.c b/drivers/gpu/drm/i915/display/intel_psr.c
> index b4ca5843d098..19b3b9d52eb9 100644
> --- a/drivers/gpu/drm/i915/display/intel_psr.c
> +++ b/drivers/gpu/drm/i915/display/intel_psr.c
> @@ -695,6 +695,12 @@ static void _psr_init_dpcd(struct intel_dp *intel_dp, struct intel_connector *co
>
> connector->dp.psr_caps.sync_latency = intel_dp_get_sink_sync_latency(intel_dp);
>
> + if (intel_has_quirk(display, QUIRK_DISABLE_PSR2)) {
> + drm_dbg_kms(display->drm,
> + "PSR2 support not currently available for this setup\n");
I think the logging when matching at intel_quirks.c should be
sufficient.
> + return;
> + }
> +
> if (DISPLAY_VER(display) >= 9 &&
> connector->dp.psr_caps.dpcd[0] >= DP_PSR2_WITH_Y_COORD_IS_SUPPORTED) {
> bool y_req = connector->dp.psr_caps.dpcd[1] &
> diff --git a/drivers/gpu/drm/i915/display/intel_quirks.c b/drivers/gpu/drm/i915/display/intel_quirks.c
> index 883f297d4b83..229e0025a06c 100644
> --- a/drivers/gpu/drm/i915/display/intel_quirks.c
> +++ b/drivers/gpu/drm/i915/display/intel_quirks.c
> @@ -94,6 +94,12 @@ static void quirk_disable_edp_panel_replay(struct intel_dp *intel_dp)
> drm_info(display->drm, "Applying disable Panel Replay quirk\n");
> }
>
> +static void quirk_disable_psr2(struct intel_display *display)
> +{
> + intel_set_quirk(display, QUIRK_DISABLE_PSR2);
> + drm_info(display->drm, "Applying disable PSR2 quirk\n");
Maybe "applying quirk" isn't the most informative? Perhaps combine
something from the other message here?
BR,
Jani.
> +}
> +
> struct intel_quirk {
> int device;
> int subsystem_vendor;
> @@ -250,6 +256,9 @@ static struct intel_quirk intel_quirks[] = {
>
> /* Dell XPS 13 7390 2-in-1 */
> { 0x8a52, 0x1028, 0x08b0, quirk_edp_limit_rate_hbr2 },
> +
> + /* Xiaomi Book Pro 14 2026 */
> + { 0xb081, 0x1d72, 0x2424, quirk_disable_psr2 },
> };
>
> static const struct intel_dpcd_quirk intel_dpcd_quirks[] = {
> diff --git a/drivers/gpu/drm/i915/display/intel_quirks.h b/drivers/gpu/drm/i915/display/intel_quirks.h
> index 83214eb94b0c..970a4fe52faf 100644
> --- a/drivers/gpu/drm/i915/display/intel_quirks.h
> +++ b/drivers/gpu/drm/i915/display/intel_quirks.h
> @@ -22,6 +22,7 @@ enum intel_quirk_id {
> QUIRK_FW_SYNC_LEN,
> QUIRK_EDP_LIMIT_RATE_HBR2,
> QUIRK_DISABLE_EDP_PANEL_REPLAY,
> + QUIRK_DISABLE_PSR2,
> };
>
> void intel_init_quirks(struct intel_display *display);
--
Jani Nikula, Intel
next prev parent reply other threads:[~2026-04-17 8:30 UTC|newest]
Thread overview: 7+ messages / expand[flat|nested] mbox.gz Atom feed top
2026-04-17 4:49 [PATCH] drm/i915/psr: Disable PSR2 on Xiaomi Book Pro 14 2026 as a quirk Jouni Högander
2026-04-17 5:03 ` ✗ CI.checkpatch: warning for " Patchwork
2026-04-17 5:05 ` ✓ CI.KUnit: success " Patchwork
2026-04-17 5:59 ` ✓ Xe.CI.BAT: " Patchwork
2026-04-17 7:52 ` [PATCH] " Kahola, Mika
2026-04-17 8:30 ` Jani Nikula [this message]
2026-04-20 14:33 ` ✓ Xe.CI.FULL: success for " 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=cb644bbb5baaeca058d8639fbbeaceb748f51522@intel.com \
--to=jani.nikula@linux.intel.com \
--cc=intel-gfx@lists.freedesktop.org \
--cc=intel-xe@lists.freedesktop.org \
--cc=jouni.hogander@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 a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox