From: Chaitanya Kumar Borah <chaitanya.kumar.borah@intel.com>
To: intel-xe@lists.freedesktop.org, intel-gfx@lists.freedesktop.org
Cc: uma.shankar@intel.com, chaitanya.kumar.borah@intel.com,
pranay.samala@intel.com
Subject: [PATCH 3/3] drm/i915/display: Do not program color pipeline for Y plane
Date: Wed, 1 Apr 2026 14:08:41 +0530 [thread overview]
Message-ID: <20260401083841.4081587-3-chaitanya.kumar.borah@intel.com> (raw)
In-Reply-To: <20260401083841.4081587-1-chaitanya.kumar.borah@intel.com>
The Y plane is only responsible for fetching luma data from a YCbCr
frame buffer. After chroma upsampling, pixel data is forwarded
through the UV plane for further processing. Programming the color
pipeline on the Y plane is therefore unnecessary.
The Y plane may still carry color pipeline state due to state copying
between the Y and UV planes. The hw state copying needs to be more
nuanced but until then, skip programming the color pipeline for the
Y plane.
Signed-off-by: Chaitanya Kumar Borah <chaitanya.kumar.borah@intel.com>
---
drivers/gpu/drm/i915/display/skl_universal_plane.c | 3 ++-
1 file changed, 2 insertions(+), 1 deletion(-)
diff --git a/drivers/gpu/drm/i915/display/skl_universal_plane.c b/drivers/gpu/drm/i915/display/skl_universal_plane.c
index 11ba42c67e3e..2f622a2d5e04 100644
--- a/drivers/gpu/drm/i915/display/skl_universal_plane.c
+++ b/drivers/gpu/drm/i915/display/skl_universal_plane.c
@@ -1567,7 +1567,8 @@ icl_plane_update_noarm(struct intel_dsb *dsb,
plane_color_ctl = plane_state->color_ctl |
glk_plane_color_ctl_crtc(crtc_state);
- intel_color_plane_program_pipeline(dsb, plane_state);
+ if (!plane_state->is_y_plane)
+ intel_color_plane_program_pipeline(dsb, plane_state);
/* The scaler will handle the output position */
if (plane_state->scaler_id >= 0) {
--
2.25.1
next prev parent reply other threads:[~2026-04-01 9:03 UTC|newest]
Thread overview: 9+ messages / expand[flat|nested] mbox.gz Atom feed top
2026-04-01 8:38 [PATCH 1/3] drm/i915/display: Copy color pipeline from plane in the primary joiner pipe Chaitanya Kumar Borah
2026-04-01 8:38 ` [PATCH 2/3] drm/i915: Fix color blob reference handling in intel_plane_state Chaitanya Kumar Borah
2026-04-01 8:38 ` Chaitanya Kumar Borah [this message]
2026-04-01 9:10 ` ✓ CI.KUnit: success for series starting with [1/3] drm/i915/display: Copy color pipeline from plane in the primary joiner pipe Patchwork
2026-04-01 9:44 ` ✓ Xe.CI.BAT: " Patchwork
2026-04-01 11:40 ` [PATCH 1/3] " Ville Syrjälä
2026-04-01 14:10 ` Borah, Chaitanya Kumar
2026-04-01 14:24 ` Ville Syrjälä
2026-04-01 14:37 ` ✗ Xe.CI.FULL: failure for series starting with [1/3] " 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=20260401083841.4081587-3-chaitanya.kumar.borah@intel.com \
--to=chaitanya.kumar.borah@intel.com \
--cc=intel-gfx@lists.freedesktop.org \
--cc=intel-xe@lists.freedesktop.org \
--cc=pranay.samala@intel.com \
--cc=uma.shankar@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