All the mail mirrored from lore.kernel.org
 help / color / mirror / Atom feed
From: Jani Nikula <jani.nikula@linux.intel.com>
To: Imre Deak <imre.deak@intel.com>, intel-gfx@lists.freedesktop.org
Cc: Daniel Vetter <daniel.vetter@ffwll.ch>
Subject: Re: [Intel-gfx] [PATCH 00/11] drm/i915/adl_p: Add support for Display Page Tables
Date: Thu, 15 Apr 2021 14:29:53 +0300	[thread overview]
Message-ID: <87a6pzeqfi.fsf@intel.com> (raw)
In-Reply-To: <20210414155208.3161335-1-imre.deak@intel.com>

On Wed, 14 Apr 2021, Imre Deak <imre.deak@intel.com> wrote:
> Alder Lake-P adds a new Display Page Table hardware structure, mapping
> tiled framebuffer pages to the display engine, reducing the address
> space required in GGTT for these framebuffers.
>
> This patchset adds support for this taking a minimum set of dependency
> patches from the ADL_P enabling patchset at
> https://patchwork.freedesktop.org/series/87897/

Cc: Daniel

I guess we'll need a topic branch for the base enabling to merge to both
din and dign? I guess it'll need to include the stuff in
topic/intel-gen-to-ver too.

Shared stuff like this keeps being a problem with the separate dign
branch, especially when the only way to sync is to merge both din and
dign to drm-next and then backmerge to both.

BR,
Jani.


>
> Clinton Taylor (2):
>   drm/i915/adl_p: Add PCI Devices IDs
>   drm/i915/adl_p: ADL_P device info enabling
>
> Imre Deak (4):
>   drm/i915: Pass intel_framebuffer instad of drm_framebuffer to
>     intel_fill_fb_info()
>   drm/i915/adl_p: Disable support for 90/270 FB rotation
>   drm/i915/adl_p: Require a minimum of 8 tiles stride for DPT FBs
>   drm/i915/adl_p: Enable remapping to pad DPT FB strides to POT
>
> José Roberto de Souza (2):
>   drm/i915/xelpd: Fallback to plane stride limitations when using DPT
>   drm/i915/adl_p: Add stride restriction when using DPT
>
> Juha-Pekka Heikkilä (1):
>   drm/i915/xelpd: Support 128k plane stride
>
> Matt Roper (1):
>   drm/i915/xelpd: add XE_LPD display characteristics
>
> Ville Syrjälä (1):
>   drm/i915/xelpd: First stab at DPT support
>
>  arch/x86/kernel/early-quirks.c                |   1 +
>  .../gpu/drm/i915/display/intel_atomic_plane.c |   7 +-
>  drivers/gpu/drm/i915/display/intel_display.c  | 381 ++++++++++++++++--
>  drivers/gpu/drm/i915/display/intel_display.h  |   1 +
>  .../drm/i915/display/intel_display_types.h    |  25 +-
>  drivers/gpu/drm/i915/display/intel_fb.c       |  92 +++--
>  drivers/gpu/drm/i915/display/intel_fb.h       |   5 +-
>  drivers/gpu/drm/i915/display/intel_fbc.c      |   6 +-
>  .../drm/i915/display/skl_universal_plane.c    |  68 +++-
>  drivers/gpu/drm/i915/gt/gen8_ppgtt.h          |   7 +
>  drivers/gpu/drm/i915/gt/intel_ggtt.c          |   7 +-
>  drivers/gpu/drm/i915/gt/intel_gtt.h           |   5 +
>  drivers/gpu/drm/i915/i915_drv.h               |   1 +
>  drivers/gpu/drm/i915/i915_pci.c               |  22 +
>  drivers/gpu/drm/i915/i915_reg.h               |   2 +
>  drivers/gpu/drm/i915/intel_device_info.c      |   1 +
>  drivers/gpu/drm/i915/intel_device_info.h      |   1 +
>  include/drm/i915_pciids.h                     |  21 +
>  18 files changed, 567 insertions(+), 86 deletions(-)

-- 
Jani Nikula, Intel Open Source Graphics Center
_______________________________________________
Intel-gfx mailing list
Intel-gfx@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/intel-gfx

  parent reply	other threads:[~2021-04-15 11:30 UTC|newest]

Thread overview: 24+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2021-04-14 15:51 [Intel-gfx] [PATCH 00/11] drm/i915/adl_p: Add support for Display Page Tables Imre Deak
2021-04-14 15:51 ` [Intel-gfx] [PATCH 01/11] drm/i915: Pass intel_framebuffer instad of drm_framebuffer to intel_fill_fb_info() Imre Deak
2021-04-14 15:51 ` [Intel-gfx] [PATCH 02/11] drm/i915/xelpd: add XE_LPD display characteristics Imre Deak
2021-05-05 23:55   ` Souza, Jose
2021-04-14 15:52 ` [Intel-gfx] [PATCH 03/11] drm/i915/adl_p: Add PCI Devices IDs Imre Deak
2021-04-14 15:52 ` [Intel-gfx] [PATCH 04/11] drm/i915/adl_p: ADL_P device info enabling Imre Deak
2021-05-05 23:54   ` Souza, Jose
2021-04-14 15:52 ` [Intel-gfx] [PATCH 05/11] drm/i915/xelpd: First stab at DPT support Imre Deak
2021-04-14 15:52 ` [Intel-gfx] [PATCH 06/11] drm/i915/xelpd: Fallback to plane stride limitations when using DPT Imre Deak
2021-04-14 15:52 ` [Intel-gfx] [PATCH 07/11] drm/i915/xelpd: Support 128k plane stride Imre Deak
2021-04-14 15:52 ` [Intel-gfx] [PATCH 08/11] drm/i915/adl_p: Add stride restriction when using DPT Imre Deak
2021-04-14 15:52 ` [Intel-gfx] [PATCH 09/11] drm/i915/adl_p: Disable support for 90/270 FB rotation Imre Deak
2021-04-14 15:52 ` [Intel-gfx] [PATCH 10/11] drm/i915/adl_p: Require a minimum of 8 tiles stride for DPT FBs Imre Deak
2021-04-15 22:12   ` Imre Deak
2021-05-06 11:11     ` Kahola, Mika
2021-04-14 15:52 ` [Intel-gfx] [PATCH 11/11] drm/i915/adl_p: Enable remapping to pad DPT FB strides to POT Imre Deak
2021-04-14 17:22 ` [Intel-gfx] ✗ Fi.CI.CHECKPATCH: warning for drm/i915/adl_p: Add support for Display Page Tables Patchwork
2021-04-14 17:50 ` [Intel-gfx] ✓ Fi.CI.BAT: success " Patchwork
2021-04-14 20:32 ` [Intel-gfx] ✓ Fi.CI.IGT: " Patchwork
2021-04-15 11:29 ` Jani Nikula [this message]
2021-04-21 11:03   ` [Intel-gfx] [PATCH 00/11] " Jani Nikula
2021-04-21 11:24     ` Imre Deak
2021-04-21 12:12       ` Jani Nikula
2021-04-21 19:21         ` Imre Deak

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=87a6pzeqfi.fsf@intel.com \
    --to=jani.nikula@linux.intel.com \
    --cc=daniel.vetter@ffwll.ch \
    --cc=imre.deak@intel.com \
    --cc=intel-gfx@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.