From: "Ville Syrjälä" <ville.syrjala@linux.intel.com>
To: intel-gfx@lists.freedesktop.org
Cc: intel-xe@lists.freedesktop.org
Subject: Re: [PATCH v2 00/13] drm/i915: Use DSB for plane/color management commits
Date: Fri, 4 Oct 2024 00:52:58 +0300 [thread overview]
Message-ID: <Zv8SOu0598bMdv5u@intel.com> (raw)
In-Reply-To: <20240930170415.23841-1-ville.syrjala@linux.intel.com>
On Mon, Sep 30, 2024 at 08:04:02PM +0300, Ville Syrjala wrote:
> From: Ville Syrjälä <ville.syrjala@linux.intel.com>
>
> Use the DSB to perform simple plane/color management commits.
> Anything more complicatd (modesets and fastsets) are still
> punted to the mmio path.
>
> Also DSB won't be used when any of these are in use:
> - scalers (scaler code needs more work)
> - VRR (need to figure out a race free commit completion scheme)
> - PSR (zero thoughts given for PSR interactions so far)
> - async flips (no real though given here either)
>
> v2: rebase
>
> Ville Syrjälä (13):
> drm/i915/dsb: Avoid reads of the DSB buffer for indexed register
> writes
> drm/i915: Prepare clear color before wait_for_dependencies()
> drm/i915/dsb: Generate the DSB buffer in commit_tail()
> drm/i915/dsb: Enable programmable DSB interrupt
> drm/i915/dsb: Introduce intel_dsb_vblank_evade()
> drm/i915/dsb: Introduce intel_dsb_wait_usec()
> drm/i915/dsb: Introduce intel_dsb_wait_vblanks()
> drm/i915: Introduce intel_scanlines_to_usecs()
> drm/i915/dsb: Introduce intel_dsb_wait_vblank_delay()
> drm/i915: Extract intel_crtc_prepare_vblank_event()
> drm/i915: Plumb 'dsb' all way to the plane hooks
> drm/i915: Plumb 'dsb' all way to the color commit hooks
> drm/i915/dsb: Use DSB for plane/color management updates
Pushed to drm-intel-next. Thanks for the reviews.
If the world catches fire you know who to blame.
>
> drivers/gpu/drm/i915/display/i9xx_plane.c | 22 +-
> drivers/gpu/drm/i915/display/intel_atomic.c | 5 +-
> .../gpu/drm/i915/display/intel_atomic_plane.c | 49 +--
> .../gpu/drm/i915/display/intel_atomic_plane.h | 19 +-
> drivers/gpu/drm/i915/display/intel_color.c | 207 ++++++------
> drivers/gpu/drm/i915/display/intel_color.h | 7 +-
> drivers/gpu/drm/i915/display/intel_crtc.c | 37 ++-
> drivers/gpu/drm/i915/display/intel_crtc.h | 5 +
> drivers/gpu/drm/i915/display/intel_cursor.c | 101 +++---
> drivers/gpu/drm/i915/display/intel_de.h | 11 +
> drivers/gpu/drm/i915/display/intel_display.c | 180 ++++++++---
> .../drm/i915/display/intel_display_types.h | 23 +-
> drivers/gpu/drm/i915/display/intel_dsb.c | 137 ++++++--
> drivers/gpu/drm/i915/display/intel_dsb.h | 7 +
> .../drm/i915/display/intel_modeset_setup.c | 4 +-
> drivers/gpu/drm/i915/display/intel_sprite.c | 27 +-
> .../drm/i915/display/skl_universal_plane.c | 305 ++++++++++--------
> drivers/gpu/drm/xe/display/xe_plane_initial.c | 2 +-
> 18 files changed, 735 insertions(+), 413 deletions(-)
>
> --
> 2.45.2
--
Ville Syrjälä
Intel
prev parent reply other threads:[~2024-10-03 21:53 UTC|newest]
Thread overview: 27+ messages / expand[flat|nested] mbox.gz Atom feed top
2024-09-30 17:04 [PATCH v2 00/13] drm/i915: Use DSB for plane/color management commits Ville Syrjala
2024-09-30 17:04 ` [PATCH v2 01/13] drm/i915/dsb: Avoid reads of the DSB buffer for indexed register writes Ville Syrjala
2024-09-30 17:04 ` [PATCH v2 02/13] drm/i915: Prepare clear color before wait_for_dependencies() Ville Syrjala
2024-09-30 17:04 ` [PATCH v2 03/13] drm/i915/dsb: Generate the DSB buffer in commit_tail() Ville Syrjala
2024-09-30 17:04 ` [PATCH v2 04/13] drm/i915/dsb: Enable programmable DSB interrupt Ville Syrjala
2024-09-30 17:04 ` [PATCH v2 05/13] drm/i915/dsb: Introduce intel_dsb_vblank_evade() Ville Syrjala
2024-09-30 17:04 ` [PATCH v2 06/13] drm/i915/dsb: Introduce intel_dsb_wait_usec() Ville Syrjala
2024-09-30 17:04 ` [PATCH v2 07/13] drm/i915/dsb: Introduce intel_dsb_wait_vblanks() Ville Syrjala
2024-09-30 17:04 ` [PATCH v2 08/13] drm/i915: Introduce intel_scanlines_to_usecs() Ville Syrjala
2024-09-30 17:04 ` [PATCH v2 09/13] drm/i915/dsb: Introduce intel_dsb_wait_vblank_delay() Ville Syrjala
2024-09-30 17:04 ` [PATCH v2 10/13] drm/i915: Extract intel_crtc_prepare_vblank_event() Ville Syrjala
2024-09-30 17:04 ` [PATCH v2 11/13] drm/i915: Plumb 'dsb' all way to the plane hooks Ville Syrjala
2024-09-30 17:04 ` [PATCH v2 12/13] drm/i915: Plumb 'dsb' all way to the color commit hooks Ville Syrjala
2024-09-30 17:04 ` [PATCH v2 13/13] drm/i915/dsb: Use DSB for plane/color management updates Ville Syrjala
2024-09-30 23:18 ` ✓ CI.Patch_applied: success for drm/i915: Use DSB for plane/color management commits Patchwork
2024-09-30 23:19 ` ✗ CI.checkpatch: warning " Patchwork
2024-09-30 23:20 ` ✓ CI.KUnit: success " Patchwork
2024-09-30 23:31 ` ✓ CI.Build: " Patchwork
2024-09-30 23:34 ` ✓ CI.Hooks: " Patchwork
2024-09-30 23:35 ` ✗ CI.checksparse: warning " Patchwork
2024-09-30 23:58 ` ✓ CI.BAT: success " Patchwork
2024-10-01 9:45 ` ✗ CI.FULL: failure " Patchwork
2024-10-01 22:32 ` ✓ Fi.CI.BAT: success for drm/i915: Use DSB for plane/color management commits (rev2) Patchwork
2024-10-01 22:32 ` ✗ Fi.CI.CHECKPATCH: warning " Patchwork
2024-10-01 22:32 ` ✗ Fi.CI.SPARSE: " Patchwork
2024-10-02 21:01 ` ✗ Fi.CI.IGT: failure " Patchwork
2024-10-03 21:52 ` Ville Syrjälä [this message]
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=Zv8SOu0598bMdv5u@intel.com \
--to=ville.syrjala@linux.intel.com \
--cc=intel-gfx@lists.freedesktop.org \
--cc=intel-xe@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 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.