public inbox for intel-xe@lists.freedesktop.org
 help / color / mirror / Atom feed
* [PATCH v3 00/15] Basic enabling patches for Xe3p_LPG and NVL-P
@ 2026-02-06 18:35 Gustavo Sousa
  2026-02-06 18:35 ` [PATCH v3 01/15] drm/xe/xe3p_lpg: Add support for graphics IP 35.10 Gustavo Sousa
                   ` (19 more replies)
  0 siblings, 20 replies; 24+ messages in thread
From: Gustavo Sousa @ 2026-02-06 18:35 UTC (permalink / raw)
  To: intel-xe, intel-gfx
  Cc: Gustavo Sousa, Shekhar Chauhan, Matt Roper, Nitin Gote,
	Tangudu Tilak Tirumalesh, Mallesh Koujalagi, Tejas Upadhyay,
	Matt Atwood, Dnyaneshwar Bhadane, Aradhya Bhatia, Suraj Kandpal

NVL-P is a new Intel platform that comes with the following IPs:

- Xe3p_LPG graphics;
- Xe3p_LPM media;
- Xe3p_LPD display.

Enabling patches for Xe3p_LPM and Xe3p_LPD are already integrated in our
driver.  In this series we add patches enabling Xe3p_LPG and then follow
up with patches enabling NVL-P as a platform in our driver.

Signed-off-by: Gustavo Sousa <gustavo.sousa@intel.com>
---
Changes in v3:
- Adapt "drm/xe/xe3p_lpg: Add support for graphics IP 35.10" to latest
  upstream changes.
- Incorporate review feedback from v1 in "drm/xe/xe3p_lpg: Add MCR
  steering".
- Link to v2: https://patch.msgid.link/20260205-nvl-p-upstreaming-v2-0-9ec14f00cc6c@intel.com

Changes in v2:
- Added patch "drm/xe/nvlp: Bump maximum WOPCM size", which was missing
  in v1.
- Incorporated review feedback.  Please see the changelog in the
  individual patches for details.
- Dropped patch "drm/xe/nvlp: Define GuC firmware for NVL-P".  I'll
  apply this separately to topic/xe-for-CI and decided to drop from v2
  to avoid accidentally applying it to drm-xe-next.
- Link to v1: https://patch.msgid.link/20260202-nvl-p-upstreaming-v1-0-653e4ff105dc@intel.com

---
Aradhya Bhatia (1):
      drm/xe/xe3p_lpg: Set STLB bank hash mode to 4KB

Dnyaneshwar Bhadane (1):
      drm/xe/nvlp: Attach MOCS table for nvlp

Gustavo Sousa (3):
      drm/xe/pat: Differentiate between primary and media for PTA
      drm/xe/xe3p_lpg: Update LRC sizes
      drm/xe/nvlp: Bump maximum WOPCM size

Matt Roper (7):
      drm/xe/xe3p_lpg: Add new PAT table
      drm/xe/xe3p_lpg: Add MCR steering
      drm/xe/xe3p_lpg: Add LRC parsing for additional RCS engine state
      drm/xe/xe3p_lpg: Disable reporting of context switch status to GHWSP
      drm/xe/xe3p_lpg: Drop unnecessary tuning settings
      drm/xe/xe3p_lpg: Extend 'group ID' mask size
      drm/i915/nvlp: Hook up display support

Shekhar Chauhan (3):
      drm/xe/xe3p_lpg: Add support for graphics IP 35.10
      drm/xe/xe3p_lpg: Add initial workarounds for graphics version 35.10
      drm/xe/nvlp: Add NVL-P platform definition

 .../gpu/drm/i915/display/intel_display_device.c    |  1 +
 .../gpu/drm/xe/instructions/xe_gfxpipe_commands.h  | 10 +++
 drivers/gpu/drm/xe/regs/xe_gt_regs.h               | 20 +++++-
 drivers/gpu/drm/xe/xe_bo.c                         |  4 +-
 drivers/gpu/drm/xe/xe_device_types.h               |  8 ++-
 drivers/gpu/drm/xe/xe_gt_mcr.c                     | 18 ++++-
 drivers/gpu/drm/xe/xe_lrc.c                        | 18 ++++-
 drivers/gpu/drm/xe/xe_mocs.c                       |  1 +
 drivers/gpu/drm/xe/xe_pat.c                        | 82 +++++++++++++++++++---
 drivers/gpu/drm/xe/xe_pci.c                        | 23 ++++++
 drivers/gpu/drm/xe/xe_platform_types.h             |  1 +
 drivers/gpu/drm/xe/xe_reg_whitelist.c              |  8 +++
 drivers/gpu/drm/xe/xe_tuning.c                     | 22 +++++-
 drivers/gpu/drm/xe/xe_wa.c                         | 43 ++++++++++++
 drivers/gpu/drm/xe/xe_wopcm.c                      | 15 +++-
 include/drm/intel/pciids.h                         | 12 ++++
 16 files changed, 261 insertions(+), 25 deletions(-)
---
base-commit: ab5b6da7d4879640bce3197597e0bc707bd60ab5
change-id: 20260130-nvl-p-upstreaming-e69efaf1db91

Best regards,
--  
Gustavo Sousa <gustavo.sousa@intel.com>


^ permalink raw reply	[flat|nested] 24+ messages in thread

end of thread, other threads:[~2026-02-10  8:48 UTC | newest]

Thread overview: 24+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2026-02-06 18:35 [PATCH v3 00/15] Basic enabling patches for Xe3p_LPG and NVL-P Gustavo Sousa
2026-02-06 18:35 ` [PATCH v3 01/15] drm/xe/xe3p_lpg: Add support for graphics IP 35.10 Gustavo Sousa
2026-02-06 18:35 ` [PATCH v3 02/15] drm/xe/xe3p_lpg: Add initial workarounds for graphics version 35.10 Gustavo Sousa
2026-02-06 18:35 ` [PATCH v3 03/15] drm/xe/pat: Differentiate between primary and media for PTA Gustavo Sousa
2026-02-06 18:36 ` [PATCH v3 04/15] drm/xe/xe3p_lpg: Add new PAT table Gustavo Sousa
2026-02-06 18:36 ` [PATCH v3 05/15] drm/xe/xe3p_lpg: Add MCR steering Gustavo Sousa
2026-02-09  5:34   ` Bhadane, Dnyaneshwar
2026-02-06 18:36 ` [PATCH v3 06/15] drm/xe/xe3p_lpg: Add LRC parsing for additional RCS engine state Gustavo Sousa
2026-02-06 18:36 ` [PATCH v3 07/15] drm/xe/xe3p_lpg: Disable reporting of context switch status to GHWSP Gustavo Sousa
2026-02-06 18:36 ` [PATCH v3 08/15] drm/xe/xe3p_lpg: Drop unnecessary tuning settings Gustavo Sousa
2026-02-06 18:36 ` [PATCH v3 09/15] drm/xe/xe3p_lpg: Extend 'group ID' mask size Gustavo Sousa
2026-02-06 18:36 ` [PATCH v3 10/15] drm/xe/xe3p_lpg: Update LRC sizes Gustavo Sousa
2026-02-06 18:36 ` [PATCH v3 11/15] drm/xe/xe3p_lpg: Set STLB bank hash mode to 4KB Gustavo Sousa
2026-02-06 18:36 ` [PATCH v3 12/15] drm/xe/nvlp: Add NVL-P platform definition Gustavo Sousa
2026-02-06 18:36 ` [PATCH v3 13/15] drm/xe/nvlp: Attach MOCS table for nvlp Gustavo Sousa
2026-02-06 18:36 ` [PATCH v3 14/15] drm/i915/nvlp: Hook up display support Gustavo Sousa
2026-02-10  1:37   ` Gustavo Sousa
2026-02-10  8:48     ` Jani Nikula
2026-02-06 18:36 ` [PATCH v3 15/15] drm/xe/nvlp: Bump maximum WOPCM size Gustavo Sousa
2026-02-06 18:42 ` ✗ CI.checkpatch: warning for Basic enabling patches for Xe3p_LPG and NVL-P (rev3) Patchwork
2026-02-06 18:44 ` ✓ CI.KUnit: success " Patchwork
2026-02-06 18:59 ` ✗ CI.checksparse: warning " Patchwork
2026-02-06 19:44 ` ✓ Xe.CI.BAT: success " Patchwork
2026-02-07 19:26 ` ✓ Xe.CI.FULL: " Patchwork

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox