* [PATCH v2 00/15] Basic enabling patches for Xe3p_LPG and NVL-P
@ 2026-02-05 23:39 Gustavo Sousa
2026-02-05 23:39 ` [PATCH v2 01/15] drm/xe/xe3p_lpg: Add support for graphics IP 35.10 Gustavo Sousa
` (16 more replies)
0 siblings, 17 replies; 21+ messages in thread
From: Gustavo Sousa @ 2026-02-05 23:39 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 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 | 21 ++++++
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, 259 insertions(+), 25 deletions(-)
---
base-commit: 75acb0a8b6f69c6429941e6845df2af94ed15939
change-id: 20260130-nvl-p-upstreaming-e69efaf1db91
Best regards,
--
Gustavo Sousa <gustavo.sousa@intel.com>
^ permalink raw reply [flat|nested] 21+ messages in thread
* [PATCH v2 01/15] drm/xe/xe3p_lpg: Add support for graphics IP 35.10
2026-02-05 23:39 [PATCH v2 00/15] Basic enabling patches for Xe3p_LPG and NVL-P Gustavo Sousa
@ 2026-02-05 23:39 ` Gustavo Sousa
2026-02-06 15:26 ` Matt Roper
2026-02-05 23:39 ` [PATCH v2 02/15] drm/xe/xe3p_lpg: Add initial workarounds for graphics version 35.10 Gustavo Sousa
` (15 subsequent siblings)
16 siblings, 1 reply; 21+ messages in thread
From: Gustavo Sousa @ 2026-02-05 23:39 UTC (permalink / raw)
To: intel-xe, intel-gfx; +Cc: Gustavo Sousa, Shekhar Chauhan, Matt Roper
From: Shekhar Chauhan <shekhar.chauhan@intel.com>
Add Xe3p_LPG graphics IP version 35.10. Xe3p_LPG supports all features
described by XE2_GFX_FEATURES and also multi-queue feature on BCS and
CCS engines. As such, create a new struct xe_graphics_desc named
graphics_xe3p_lpg that inherits from XE2_GFX_FEATURES and also includes
the necessary .multi_queue_engine_class_mask.
Here is a list of fields and associated Bspec references for the members
of the IP descriptor:
.hw_engine_mask (Bspec 60149)
.multi_queue_engine_class_mask (Bspec 74110)
.has_asid (Bspec 71132)
.has_atomic_enable_pte_bit (Bspec 59510, 74675)
.has_indirect_ring_state (Bspec 67296)
.has_range_tlb_inval (Bspec 71126)
.has_usm (Bspec 59651)
.has_64bit_timestamp (Bspec 60318)
v2:
- Drop non-existing fields from the list in the commit message. (Matt)
- Squash patch adding .multi_queue_engine_class_mask here. (Matt)
- Rename graphics_xe3p to graphics_xe3p_lpg. (Matt)
Cc: Matt Roper <matthew.d.roper@intel.com>
Signed-off-by: Shekhar Chauhan <shekhar.chauhan@intel.com>
Signed-off-by: Gustavo Sousa <gustavo.sousa@intel.com>
---
drivers/gpu/drm/xe/xe_pci.c | 6 ++++++
1 file changed, 6 insertions(+)
diff --git a/drivers/gpu/drm/xe/xe_pci.c b/drivers/gpu/drm/xe/xe_pci.c
index b5e8935fff1d..08e0ff9f75e8 100644
--- a/drivers/gpu/drm/xe/xe_pci.c
+++ b/drivers/gpu/drm/xe/xe_pci.c
@@ -106,6 +106,11 @@ static const struct xe_graphics_desc graphics_xe2 = {
XE2_GFX_FEATURES,
};
+static const struct xe_graphics_desc graphics_xe3p_lpg = {
+ XE2_GFX_FEATURES,
+ .multi_queue_engine_class_mask = BIT(XE_ENGINE_CLASS_COPY) | BIT(XE_ENGINE_CLASS_COMPUTE),
+};
+
static const struct xe_graphics_desc graphics_xe3p_xpc = {
XE2_GFX_FEATURES,
.has_indirect_ring_state = 1,
@@ -148,6 +153,7 @@ static const struct xe_ip graphics_ips[] = {
{ 3003, "Xe3_LPG", &graphics_xe2 },
{ 3004, "Xe3_LPG", &graphics_xe2 },
{ 3005, "Xe3_LPG", &graphics_xe2 },
+ { 3510, "Xe3p_LPG", &graphics_xe3p_lpg },
{ 3511, "Xe3p_XPC", &graphics_xe3p_xpc },
};
--
2.52.0
^ permalink raw reply related [flat|nested] 21+ messages in thread
* [PATCH v2 02/15] drm/xe/xe3p_lpg: Add initial workarounds for graphics version 35.10
2026-02-05 23:39 [PATCH v2 00/15] Basic enabling patches for Xe3p_LPG and NVL-P Gustavo Sousa
2026-02-05 23:39 ` [PATCH v2 01/15] drm/xe/xe3p_lpg: Add support for graphics IP 35.10 Gustavo Sousa
@ 2026-02-05 23:39 ` Gustavo Sousa
2026-02-06 15:25 ` Matt Roper
2026-02-05 23:39 ` [PATCH v2 03/15] drm/xe/pat: Differentiate between primary and media for PTA Gustavo Sousa
` (14 subsequent siblings)
16 siblings, 1 reply; 21+ messages in thread
From: Gustavo Sousa @ 2026-02-05 23:39 UTC (permalink / raw)
To: intel-xe, intel-gfx
Cc: Gustavo Sousa, Shekhar Chauhan, Matt Roper, Nitin Gote,
Tangudu Tilak Tirumalesh, Mallesh Koujalagi
From: Shekhar Chauhan <shekhar.chauhan@intel.com>
Add the initial set of workarounds for Xe3p_LPG graphics version 35.10.
v2:
- Fix spacing style for field LOCALITYDIS. (Matt)
- Drop unnecessary Wa_14025780377. (Matt)
Cc: Matt Roper <matthew.d.roper@intel.com>
Signed-off-by: Shekhar Chauhan <shekhar.chauhan@intel.com>
Co-developed-by: Nitin Gote <nitin.r.gote@intel.com>
Signed-off-by: Nitin Gote <nitin.r.gote@intel.com>
Co-developed-by: Tangudu Tilak Tirumalesh <tilak.tirumalesh.tangudu@intel.com>
Signed-off-by: Tangudu Tilak Tirumalesh <tilak.tirumalesh.tangudu@intel.com>
Co-developed-by: Mallesh Koujalagi <mallesh.koujalagi@intel.com>
Signed-off-by: Mallesh Koujalagi <mallesh.koujalagi@intel.com>
Co-developed-by: Gustavo Sousa <gustavo.sousa@intel.com>
Signed-off-by: Gustavo Sousa <gustavo.sousa@intel.com>
---
drivers/gpu/drm/xe/regs/xe_gt_regs.h | 16 +++++++++++++
drivers/gpu/drm/xe/xe_reg_whitelist.c | 8 +++++++
drivers/gpu/drm/xe/xe_wa.c | 43 +++++++++++++++++++++++++++++++++++
3 files changed, 67 insertions(+)
diff --git a/drivers/gpu/drm/xe/regs/xe_gt_regs.h b/drivers/gpu/drm/xe/regs/xe_gt_regs.h
index 24fc64fc832e..55f5be7283db 100644
--- a/drivers/gpu/drm/xe/regs/xe_gt_regs.h
+++ b/drivers/gpu/drm/xe/regs/xe_gt_regs.h
@@ -100,6 +100,9 @@
#define VE1_AUX_INV XE_REG(0x42b8)
#define AUX_INV REG_BIT(0)
+#define GAMSTLB_CTRL2 XE_REG_MCR(0x4788)
+#define STLB_SINGLE_BANK_MODE REG_BIT(11)
+
#define XE2_LMEM_CFG XE_REG(0x48b0)
#define XE2_GAMWALK_CTRL 0x47e4
@@ -107,6 +110,9 @@
#define XE2_GAMWALK_CTRL_3D XE_REG_MCR(XE2_GAMWALK_CTRL)
#define EN_CMP_1WCOH_GW REG_BIT(14)
+#define MMIOATSREQLIMIT_GAM_WALK_3D XE_REG_MCR(0x47f8)
+#define DIS_ATS_WRONLY_PG REG_BIT(18)
+
#define XEHP_FLAT_CCS_BASE_ADDR XE_REG_MCR(0x4910)
#define XEHP_FLAT_CCS_PTR REG_GENMASK(31, 8)
@@ -210,6 +216,9 @@
#define GSCPSMI_BASE XE_REG(0x880c)
+#define CCCHKNREG2 XE_REG_MCR(0x881c)
+#define LOCALITYDIS REG_BIT(7)
+
#define CCCHKNREG1 XE_REG_MCR(0x8828)
#define L3CMPCTRL REG_BIT(23)
#define ENCOMPPERFFIX REG_BIT(18)
@@ -420,6 +429,8 @@
#define LSN_DIM_Z_WGT(value) REG_FIELD_PREP(LSN_DIM_Z_WGT_MASK, value)
#define L3SQCREG2 XE_REG_MCR(0xb104)
+#define L3_SQ_DISABLE_COAMA_2WAY_COH REG_BIT(30)
+#define L3_SQ_DISABLE_COAMA REG_BIT(22)
#define COMPMEMRD256BOVRFETCHEN REG_BIT(20)
#define L3SQCREG3 XE_REG_MCR(0xb108)
@@ -550,11 +561,16 @@
#define UGM_FRAGMENT_THRESHOLD_TO_3 REG_BIT(58 - 32)
#define DIS_CHAIN_2XSIMD8 REG_BIT(55 - 32)
#define XE2_ALLOC_DPA_STARVE_FIX_DIS REG_BIT(47 - 32)
+#define SAMPLER_LD_LSC_DISABLE REG_BIT(45 - 32)
#define ENABLE_SMP_LD_RENDER_SURFACE_CONTROL REG_BIT(44 - 32)
#define FORCE_SLM_FENCE_SCOPE_TO_TILE REG_BIT(42 - 32)
#define FORCE_UGM_FENCE_SCOPE_TO_TILE REG_BIT(41 - 32)
#define MAXREQS_PER_BANK REG_GENMASK(39 - 32, 37 - 32)
#define DISABLE_128B_EVICTION_COMMAND_UDW REG_BIT(36 - 32)
+#define LSCFE_SAME_ADDRESS_ATOMICS_COALESCING_DISABLE REG_BIT(35 - 32)
+
+#define ROW_CHICKEN5 XE_REG_MCR(0xe7f0)
+#define CPSS_AWARE_DIS REG_BIT(3)
#define SARB_CHICKEN1 XE_REG_MCR(0xe90c)
#define COMP_CKN_IN REG_GENMASK(30, 29)
diff --git a/drivers/gpu/drm/xe/xe_reg_whitelist.c b/drivers/gpu/drm/xe/xe_reg_whitelist.c
index 1d36c09681aa..9c513778d370 100644
--- a/drivers/gpu/drm/xe/xe_reg_whitelist.c
+++ b/drivers/gpu/drm/xe/xe_reg_whitelist.c
@@ -81,6 +81,14 @@ static const struct xe_rtp_entry_sr register_whitelist[] = {
WHITELIST(VFLSKPD,
RING_FORCE_TO_NONPRIV_ACCESS_RW))
},
+ { XE_RTP_NAME("14024997852"),
+ XE_RTP_RULES(GRAPHICS_VERSION(3510), GRAPHICS_STEP(A0, B0),
+ ENGINE_CLASS(RENDER)),
+ XE_RTP_ACTIONS(WHITELIST(FF_MODE,
+ RING_FORCE_TO_NONPRIV_ACCESS_RW),
+ WHITELIST(VFLSKPD,
+ RING_FORCE_TO_NONPRIV_ACCESS_RW))
+ },
#define WHITELIST_OA_MMIO_TRG(trg, status, head) \
WHITELIST(trg, RING_FORCE_TO_NONPRIV_ACCESS_RW), \
diff --git a/drivers/gpu/drm/xe/xe_wa.c b/drivers/gpu/drm/xe/xe_wa.c
index 1e8d61ac581b..682865f1fc16 100644
--- a/drivers/gpu/drm/xe/xe_wa.c
+++ b/drivers/gpu/drm/xe/xe_wa.c
@@ -325,6 +325,31 @@ static const struct xe_rtp_entry_sr gt_was[] = {
XE_RTP_RULES(MEDIA_VERSION(3500)),
XE_RTP_ACTIONS(SET(GUC_INTR_CHICKEN, DISABLE_SIGNALING_ENGINES))
},
+
+ /* Xe3P_LPG */
+
+ { XE_RTP_NAME("14025160223"),
+ XE_RTP_RULES(GRAPHICS_VERSION(3510), GRAPHICS_STEP(A0, B0)),
+ XE_RTP_ACTIONS(SET(MMIOATSREQLIMIT_GAM_WALK_3D,
+ DIS_ATS_WRONLY_PG))
+ },
+ { XE_RTP_NAME("16028780921"),
+ XE_RTP_RULES(GRAPHICS_VERSION(3510), GRAPHICS_STEP(A0, B0)),
+ XE_RTP_ACTIONS(SET(CCCHKNREG2, LOCALITYDIS))
+ },
+ { XE_RTP_NAME("14026144927"),
+ XE_RTP_RULES(GRAPHICS_VERSION(3510), GRAPHICS_STEP(A0, B0)),
+ XE_RTP_ACTIONS(SET(L3SQCREG2, L3_SQ_DISABLE_COAMA_2WAY_COH |
+ L3_SQ_DISABLE_COAMA))
+ },
+ { XE_RTP_NAME("14025635424"),
+ XE_RTP_RULES(GRAPHICS_VERSION(3510), GRAPHICS_STEP(A0, B0)),
+ XE_RTP_ACTIONS(SET(GAMSTLB_CTRL2, STLB_SINGLE_BANK_MODE))
+ },
+ { XE_RTP_NAME("16028005424"),
+ XE_RTP_RULES(GRAPHICS_VERSION(3510), GRAPHICS_STEP(A0, B0)),
+ XE_RTP_ACTIONS(SET(GUC_INTR_CHICKEN, DISABLE_SIGNALING_ENGINES))
+ },
};
static const struct xe_rtp_entry_sr engine_was[] = {
@@ -699,6 +724,24 @@ static const struct xe_rtp_entry_sr engine_was[] = {
FUNC(xe_rtp_match_gt_has_discontiguous_dss_groups)),
XE_RTP_ACTIONS(SET(TDL_CHICKEN, EUSTALL_PERF_SAMPLING_DISABLE))
},
+
+ /* Xe3p_LPG*/
+
+ { XE_RTP_NAME("22021149932"),
+ XE_RTP_RULES(GRAPHICS_VERSION(3510), GRAPHICS_STEP(A0, B0),
+ FUNC(xe_rtp_match_first_render_or_compute)),
+ XE_RTP_ACTIONS(SET(LSC_CHICKEN_BIT_0_UDW, SAMPLER_LD_LSC_DISABLE))
+ },
+ { XE_RTP_NAME("14025676848"),
+ XE_RTP_RULES(GRAPHICS_VERSION(3510), GRAPHICS_STEP(A0, B0),
+ FUNC(xe_rtp_match_first_render_or_compute)),
+ XE_RTP_ACTIONS(SET(LSC_CHICKEN_BIT_0_UDW, LSCFE_SAME_ADDRESS_ATOMICS_COALESCING_DISABLE))
+ },
+ { XE_RTP_NAME("16028951944"),
+ XE_RTP_RULES(GRAPHICS_VERSION(3510), GRAPHICS_STEP(A0, B0),
+ FUNC(xe_rtp_match_first_render_or_compute)),
+ XE_RTP_ACTIONS(SET(ROW_CHICKEN5, CPSS_AWARE_DIS))
+ },
};
static const struct xe_rtp_entry_sr lrc_was[] = {
--
2.52.0
^ permalink raw reply related [flat|nested] 21+ messages in thread
* [PATCH v2 03/15] drm/xe/pat: Differentiate between primary and media for PTA
2026-02-05 23:39 [PATCH v2 00/15] Basic enabling patches for Xe3p_LPG and NVL-P Gustavo Sousa
2026-02-05 23:39 ` [PATCH v2 01/15] drm/xe/xe3p_lpg: Add support for graphics IP 35.10 Gustavo Sousa
2026-02-05 23:39 ` [PATCH v2 02/15] drm/xe/xe3p_lpg: Add initial workarounds for graphics version 35.10 Gustavo Sousa
@ 2026-02-05 23:39 ` Gustavo Sousa
2026-02-05 23:39 ` [PATCH v2 04/15] drm/xe/xe3p_lpg: Add new PAT table Gustavo Sousa
` (13 subsequent siblings)
16 siblings, 0 replies; 21+ messages in thread
From: Gustavo Sousa @ 2026-02-05 23:39 UTC (permalink / raw)
To: intel-xe, intel-gfx; +Cc: Gustavo Sousa, Matt Roper, Tejas Upadhyay
Differently from currently supported platforms, in upcoming changes we
will need to have different PAT entries for PTA based on the GT type. As
such, let's prepare the code to support that by having two separate
PTA-specific members in the pat struct, one for each type of GT.
While at it, also fix the kerneldoc for pat_ats.
Reviewed-by: Matt Roper <matthew.d.roper@intel.com>
Co-developed-by: Tejas Upadhyay <tejas.upadhyay@intel.com>
Signed-off-by: Tejas Upadhyay <tejas.upadhyay@intel.com>
Signed-off-by: Gustavo Sousa <gustavo.sousa@intel.com>
---
drivers/gpu/drm/xe/xe_device_types.h | 8 +++++---
drivers/gpu/drm/xe/xe_pat.c | 27 ++++++++++++++++++---------
2 files changed, 23 insertions(+), 12 deletions(-)
diff --git a/drivers/gpu/drm/xe/xe_device_types.h b/drivers/gpu/drm/xe/xe_device_types.h
index 14bf2c027f89..059f026e80d5 100644
--- a/drivers/gpu/drm/xe/xe_device_types.h
+++ b/drivers/gpu/drm/xe/xe_device_types.h
@@ -400,10 +400,12 @@ struct xe_device {
const struct xe_pat_table_entry *table;
/** @pat.n_entries: Number of PAT entries */
int n_entries;
- /** @pat.ats_entry: PAT entry for PCIe ATS responses */
+ /** @pat.pat_ats: PAT entry for PCIe ATS responses */
const struct xe_pat_table_entry *pat_ats;
- /** @pat.pta_entry: PAT entry for page table accesses */
- const struct xe_pat_table_entry *pat_pta;
+ /** @pat.pat_primary_pta: primary GT PAT entry for page table accesses */
+ const struct xe_pat_table_entry *pat_primary_pta;
+ /** @pat.pat_media_pta: media GT PAT entry for page table accesses */
+ const struct xe_pat_table_entry *pat_media_pta;
u32 idx[__XE_CACHE_LEVEL_COUNT];
} pat;
diff --git a/drivers/gpu/drm/xe/xe_pat.c b/drivers/gpu/drm/xe/xe_pat.c
index 2cd3fd1c3953..5ba650948a4a 100644
--- a/drivers/gpu/drm/xe/xe_pat.c
+++ b/drivers/gpu/drm/xe/xe_pat.c
@@ -285,8 +285,10 @@ static void program_pat(struct xe_gt *gt, const struct xe_pat_table_entry table[
if (xe->pat.pat_ats)
xe_mmio_write32(>->mmio, XE_REG(_PAT_ATS), xe->pat.pat_ats->value);
- if (xe->pat.pat_pta)
- xe_mmio_write32(>->mmio, XE_REG(_PAT_PTA), xe->pat.pat_pta->value);
+ if (xe->pat.pat_primary_pta && xe_gt_is_main_type(gt))
+ xe_mmio_write32(>->mmio, XE_REG(_PAT_PTA), xe->pat.pat_primary_pta->value);
+ if (xe->pat.pat_media_pta && xe_gt_is_media_type(gt))
+ xe_mmio_write32(>->mmio, XE_REG(_PAT_PTA), xe->pat.pat_media_pta->value);
}
static void program_pat_mcr(struct xe_gt *gt, const struct xe_pat_table_entry table[],
@@ -302,8 +304,10 @@ static void program_pat_mcr(struct xe_gt *gt, const struct xe_pat_table_entry ta
if (xe->pat.pat_ats)
xe_gt_mcr_multicast_write(gt, XE_REG_MCR(_PAT_ATS), xe->pat.pat_ats->value);
- if (xe->pat.pat_pta)
- xe_gt_mcr_multicast_write(gt, XE_REG_MCR(_PAT_PTA), xe->pat.pat_pta->value);
+ if (xe->pat.pat_primary_pta && xe_gt_is_main_type(gt))
+ xe_gt_mcr_multicast_write(gt, XE_REG_MCR(_PAT_PTA), xe->pat.pat_primary_pta->value);
+ if (xe->pat.pat_media_pta && xe_gt_is_media_type(gt))
+ xe_gt_mcr_multicast_write(gt, XE_REG_MCR(_PAT_PTA), xe->pat.pat_media_pta->value);
}
static int xelp_dump(struct xe_gt *gt, struct drm_printer *p)
@@ -498,7 +502,8 @@ void xe_pat_init_early(struct xe_device *xe)
xe->pat.ops = &xe3p_xpc_pat_ops;
xe->pat.table = xe3p_xpc_pat_table;
xe->pat.pat_ats = &xe3p_xpc_pat_ats;
- xe->pat.pat_pta = &xe3p_xpc_pat_pta;
+ xe->pat.pat_primary_pta = &xe3p_xpc_pat_pta;
+ xe->pat.pat_media_pta = &xe3p_xpc_pat_pta;
xe->pat.n_entries = ARRAY_SIZE(xe3p_xpc_pat_table);
xe->pat.idx[XE_CACHE_NONE] = 3;
xe->pat.idx[XE_CACHE_WT] = 3; /* N/A (no display); use UC */
@@ -512,8 +517,10 @@ void xe_pat_init_early(struct xe_device *xe)
xe->pat.table = xe2_pat_table;
}
xe->pat.pat_ats = &xe2_pat_ats;
- if (IS_DGFX(xe))
- xe->pat.pat_pta = &xe2_pat_pta;
+ if (IS_DGFX(xe)) {
+ xe->pat.pat_primary_pta = &xe2_pat_pta;
+ xe->pat.pat_media_pta = &xe2_pat_pta;
+ }
/* Wa_16023588340. XXX: Should use XE_WA */
if (GRAPHICS_VERx100(xe) == 2001)
@@ -617,6 +624,8 @@ int xe_pat_dump(struct xe_gt *gt, struct drm_printer *p)
int xe_pat_dump_sw_config(struct xe_gt *gt, struct drm_printer *p)
{
struct xe_device *xe = gt_to_xe(gt);
+ const struct xe_pat_table_entry *pta_entry = xe_gt_is_main_type(gt) ?
+ xe->pat.pat_primary_pta : xe->pat.pat_media_pta;
char label[PAT_LABEL_LEN];
if (!xe->pat.table || !xe->pat.n_entries)
@@ -640,8 +649,8 @@ int xe_pat_dump_sw_config(struct xe_gt *gt, struct drm_printer *p)
}
}
- if (xe->pat.pat_pta) {
- u32 pat = xe->pat.pat_pta->value;
+ if (pta_entry) {
+ u32 pat = pta_entry->value;
drm_printf(p, "Page Table Access:\n");
xe->pat.ops->entry_dump(p, "PTA_MODE", pat, false);
--
2.52.0
^ permalink raw reply related [flat|nested] 21+ messages in thread
* [PATCH v2 04/15] drm/xe/xe3p_lpg: Add new PAT table
2026-02-05 23:39 [PATCH v2 00/15] Basic enabling patches for Xe3p_LPG and NVL-P Gustavo Sousa
` (2 preceding siblings ...)
2026-02-05 23:39 ` [PATCH v2 03/15] drm/xe/pat: Differentiate between primary and media for PTA Gustavo Sousa
@ 2026-02-05 23:39 ` Gustavo Sousa
2026-02-05 23:39 ` [PATCH v2 05/15] drm/xe/xe3p_lpg: Add MCR steering Gustavo Sousa
` (12 subsequent siblings)
16 siblings, 0 replies; 21+ messages in thread
From: Gustavo Sousa @ 2026-02-05 23:39 UTC (permalink / raw)
To: intel-xe, intel-gfx; +Cc: Gustavo Sousa, Matt Roper, Matt Atwood
From: Matt Roper <matthew.d.roper@intel.com>
PAT programming for Xe3p_LPG is more similar to Xe2 and Xe3 than it is
to Xe3p_XPC. Compared to Xe2/Xe3 we have:
* There's a slight update to the PAT table, where two new indices (18
and 19) are added to expose a new "WB - Transient App" L3 caching
mode.
* The PTA_MODE entry must be programmed differently according to the
media type, and both differ from Xe2.
There are no changes to the underlying registers, so the Xe2 ops can be
re-used for Xe3p.
Bspec: 71582, 74160
Reviewed-by: Matt Atwood <matthew.s.atwood@intel.com>
Signed-off-by: Matt Roper <matthew.d.roper@intel.com>
Signed-off-by: Gustavo Sousa <gustavo.sousa@intel.com>
---
drivers/gpu/drm/xe/xe_pat.c | 55 ++++++++++++++++++++++++++++++++++++++++++++-
1 file changed, 54 insertions(+), 1 deletion(-)
diff --git a/drivers/gpu/drm/xe/xe_pat.c b/drivers/gpu/drm/xe/xe_pat.c
index 5ba650948a4a..f840d9a58740 100644
--- a/drivers/gpu/drm/xe/xe_pat.c
+++ b/drivers/gpu/drm/xe/xe_pat.c
@@ -124,7 +124,8 @@ static const struct xe_pat_table_entry xelpg_pat_table[] = {
* - no_promote: 0=promotable, 1=no promote
* - comp_en: 0=disable, 1=enable
* - l3clos: L3 class of service (0-3)
- * - l3_policy: 0=WB, 1=XD ("WB - Transient Display"), 3=UC
+ * - l3_policy: 0=WB, 1=XD ("WB - Transient Display"),
+ * 2=XA ("WB - Transient App" for Xe3p), 3=UC
* - l4_policy: 0=WB, 1=WT, 3=UC
* - coh_mode: 0=no snoop, 2=1-way coherent, 3=2-way coherent
*
@@ -253,6 +254,44 @@ static const struct xe_pat_table_entry xe3p_xpc_pat_table[] = {
[31] = XE3P_XPC_PAT( 0, 3, 0, 0, 3 ),
};
+static const struct xe_pat_table_entry xe3p_primary_pat_pta = XE2_PAT(0, 0, 0, 0, 0, 3);
+static const struct xe_pat_table_entry xe3p_media_pat_pta = XE2_PAT(0, 0, 0, 0, 0, 2);
+
+static const struct xe_pat_table_entry xe3p_lpg_pat_table[] = {
+ [ 0] = XE2_PAT( 0, 0, 0, 0, 3, 0 ),
+ [ 1] = XE2_PAT( 0, 0, 0, 0, 3, 2 ),
+ [ 2] = XE2_PAT( 0, 0, 0, 0, 3, 3 ),
+ [ 3] = XE2_PAT( 0, 0, 0, 3, 3, 0 ),
+ [ 4] = XE2_PAT( 0, 0, 0, 3, 0, 2 ),
+ [ 5] = XE2_PAT( 0, 0, 0, 3, 3, 2 ),
+ [ 6] = XE2_PAT( 1, 0, 0, 1, 3, 0 ),
+ [ 7] = XE2_PAT( 0, 0, 0, 3, 0, 3 ),
+ [ 8] = XE2_PAT( 0, 0, 0, 3, 0, 0 ),
+ [ 9] = XE2_PAT( 0, 1, 0, 0, 3, 0 ),
+ [10] = XE2_PAT( 0, 1, 0, 3, 0, 0 ),
+ [11] = XE2_PAT( 1, 1, 0, 1, 3, 0 ),
+ [12] = XE2_PAT( 0, 1, 0, 3, 3, 0 ),
+ [13] = XE2_PAT( 0, 0, 0, 0, 0, 0 ),
+ [14] = XE2_PAT( 0, 1, 0, 0, 0, 0 ),
+ [15] = XE2_PAT( 1, 1, 0, 1, 1, 0 ),
+ [16] = XE2_PAT( 0, 1, 0, 0, 3, 2 ),
+ /* 17 is reserved; leave set to all 0's */
+ [18] = XE2_PAT( 1, 0, 0, 2, 3, 0 ),
+ [19] = XE2_PAT( 1, 0, 0, 2, 3, 2 ),
+ [20] = XE2_PAT( 0, 0, 1, 0, 3, 0 ),
+ [21] = XE2_PAT( 0, 1, 1, 0, 3, 0 ),
+ [22] = XE2_PAT( 0, 0, 1, 0, 3, 2 ),
+ [23] = XE2_PAT( 0, 0, 1, 0, 3, 3 ),
+ [24] = XE2_PAT( 0, 0, 2, 0, 3, 0 ),
+ [25] = XE2_PAT( 0, 1, 2, 0, 3, 0 ),
+ [26] = XE2_PAT( 0, 0, 2, 0, 3, 2 ),
+ [27] = XE2_PAT( 0, 0, 2, 0, 3, 3 ),
+ [28] = XE2_PAT( 0, 0, 3, 0, 3, 0 ),
+ [29] = XE2_PAT( 0, 1, 3, 0, 3, 0 ),
+ [30] = XE2_PAT( 0, 0, 3, 0, 3, 2 ),
+ [31] = XE2_PAT( 0, 0, 3, 0, 3, 3 ),
+};
+
u16 xe_pat_index_get_coh_mode(struct xe_device *xe, u16 pat_index)
{
WARN_ON(pat_index >= xe->pat.n_entries);
@@ -508,6 +547,20 @@ void xe_pat_init_early(struct xe_device *xe)
xe->pat.idx[XE_CACHE_NONE] = 3;
xe->pat.idx[XE_CACHE_WT] = 3; /* N/A (no display); use UC */
xe->pat.idx[XE_CACHE_WB] = 2;
+ } else if (GRAPHICS_VER(xe) == 35) {
+ xe->pat.ops = &xe2_pat_ops;
+ xe->pat.table = xe3p_lpg_pat_table;
+ xe->pat.pat_ats = &xe2_pat_ats;
+ if (!IS_DGFX(xe)) {
+ xe->pat.pat_primary_pta = &xe3p_primary_pat_pta;
+ xe->pat.pat_media_pta = &xe3p_media_pat_pta;
+ }
+ xe->pat.n_entries = ARRAY_SIZE(xe3p_lpg_pat_table);
+ xe->pat.idx[XE_CACHE_NONE] = 3;
+ xe->pat.idx[XE_CACHE_WT] = 15;
+ xe->pat.idx[XE_CACHE_WB] = 2;
+ xe->pat.idx[XE_CACHE_NONE_COMPRESSION] = 12;
+ xe->pat.idx[XE_CACHE_WB_COMPRESSION] = 16;
} else if (GRAPHICS_VER(xe) == 30 || GRAPHICS_VER(xe) == 20) {
xe->pat.ops = &xe2_pat_ops;
if (GRAPHICS_VER(xe) == 30) {
--
2.52.0
^ permalink raw reply related [flat|nested] 21+ messages in thread
* [PATCH v2 05/15] drm/xe/xe3p_lpg: Add MCR steering
2026-02-05 23:39 [PATCH v2 00/15] Basic enabling patches for Xe3p_LPG and NVL-P Gustavo Sousa
` (3 preceding siblings ...)
2026-02-05 23:39 ` [PATCH v2 04/15] drm/xe/xe3p_lpg: Add new PAT table Gustavo Sousa
@ 2026-02-05 23:39 ` Gustavo Sousa
2026-02-05 23:39 ` [PATCH v2 06/15] drm/xe/xe3p_lpg: Add LRC parsing for additional RCS engine state Gustavo Sousa
` (11 subsequent siblings)
16 siblings, 0 replies; 21+ messages in thread
From: Gustavo Sousa @ 2026-02-05 23:39 UTC (permalink / raw)
To: intel-xe, intel-gfx; +Cc: Gustavo Sousa, Matt Roper
From: Matt Roper <matthew.d.roper@intel.com>
Xe3p_LPG has nearly identical steering to Xe2 and Xe3. The only
DSS/XeCore change from those IPs is an additional range from
0xDE00-0xDE7F that was previously reserved, so we can simply grow one of
the existing ranges in the Xe2 table to include it. Similarly, the
"instance0" table is also almost identical, but gains one additional
PSMI range and requires a separate table.
Bspec: 75242
Signed-off-by: Matt Roper <matthew.d.roper@intel.com>
Signed-off-by: Gustavo Sousa <gustavo.sousa@intel.com>
---
drivers/gpu/drm/xe/xe_gt_mcr.c | 18 +++++++++++++++++-
1 file changed, 17 insertions(+), 1 deletion(-)
diff --git a/drivers/gpu/drm/xe/xe_gt_mcr.c b/drivers/gpu/drm/xe/xe_gt_mcr.c
index 7c1fe9ac120d..b112e551fc79 100644
--- a/drivers/gpu/drm/xe/xe_gt_mcr.c
+++ b/drivers/gpu/drm/xe/xe_gt_mcr.c
@@ -201,7 +201,7 @@ static const struct xe_mmio_range xe2lpg_dss_steering_table[] = {
{ 0x009680, 0x0096FF }, /* DSS */
{ 0x00D800, 0x00D87F }, /* SLICE */
{ 0x00DC00, 0x00DCFF }, /* SLICE */
- { 0x00DE80, 0x00E8FF }, /* DSS (0xE000-0xE0FF reserved) */
+ { 0x00DE00, 0x00E8FF }, /* DSS (0xE000-0xE0FF reserved) */
{ 0x00E980, 0x00E9FF }, /* SLICE */
{ 0x013000, 0x0133FF }, /* DSS (0x13000-0x131FF), SLICE (0x13200-0x133FF) */
{},
@@ -280,6 +280,19 @@ static const struct xe_mmio_range xe3p_xpc_instance0_steering_table[] = {
{},
};
+static const struct xe_mmio_range xe3p_lpg_instance0_steering_table[] = {
+ { 0x004000, 0x004AFF }, /* GAM, rsvd, GAMWKR */
+ { 0x008700, 0x00887F }, /* NODE */
+ { 0x00B000, 0x00B3FF }, /* NODE, L3BANK */
+ { 0x00B500, 0x00B6FF }, /* PSMI */
+ { 0x00C800, 0x00CFFF }, /* GAM */
+ { 0x00D880, 0x00D8FF }, /* NODE */
+ { 0x00DD00, 0x00DDFF }, /* MEMPIPE */
+ { 0x00F000, 0x00FFFF }, /* GAM, GAMWKR */
+ { 0x013400, 0x0135FF }, /* MEMPIPE */
+ {},
+};
+
static void init_steering_l3bank(struct xe_gt *gt)
{
struct xe_device *xe = gt_to_xe(gt);
@@ -533,6 +546,9 @@ void xe_gt_mcr_init_early(struct xe_gt *gt)
gt->steering[INSTANCE0].ranges = xe3p_xpc_instance0_steering_table;
gt->steering[L3BANK].ranges = xelpg_l3bank_steering_table;
gt->steering[NODE].ranges = xe3p_xpc_node_steering_table;
+ } else if (GRAPHICS_VERx100(xe) >= 3510) {
+ gt->steering[DSS].ranges = xe2lpg_dss_steering_table;
+ gt->steering[INSTANCE0].ranges = xe3p_lpg_instance0_steering_table;
} else if (GRAPHICS_VER(xe) >= 20) {
gt->steering[DSS].ranges = xe2lpg_dss_steering_table;
gt->steering[SQIDI_PSMI].ranges = xe2lpg_sqidi_psmi_steering_table;
--
2.52.0
^ permalink raw reply related [flat|nested] 21+ messages in thread
* [PATCH v2 06/15] drm/xe/xe3p_lpg: Add LRC parsing for additional RCS engine state
2026-02-05 23:39 [PATCH v2 00/15] Basic enabling patches for Xe3p_LPG and NVL-P Gustavo Sousa
` (4 preceding siblings ...)
2026-02-05 23:39 ` [PATCH v2 05/15] drm/xe/xe3p_lpg: Add MCR steering Gustavo Sousa
@ 2026-02-05 23:39 ` Gustavo Sousa
2026-02-05 23:39 ` [PATCH v2 07/15] drm/xe/xe3p_lpg: Disable reporting of context switch status to GHWSP Gustavo Sousa
` (10 subsequent siblings)
16 siblings, 0 replies; 21+ messages in thread
From: Gustavo Sousa @ 2026-02-05 23:39 UTC (permalink / raw)
To: intel-xe, intel-gfx; +Cc: Gustavo Sousa, Matt Roper, Matt Atwood
From: Matt Roper <matthew.d.roper@intel.com>
Xe3p_LPG adds some additional state instructions to the RCS engine's
LRC. Add support for these to the debugfs LRC parser.
Note that the bspec's LRC description page seems to have a few mistakes
in the name/spelling of these new instructions (e.g.,
"3DSTATE_TASK_DATA_EXT" instead of "3DSTATE_TASK_SHADER_DATA_EXT" or
"3DSTATE_VIEWPORT_STATE_POINTERS_CL_SF_2" instead of
"3DSTATE_VIEWPORT_STATE_POINTERS_SF_CLIP_2").
Bspec: 65182
Reviewed-by: Matt Atwood <matthew.s.atwood@intel.com>
Signed-off-by: Matt Roper <matthew.d.roper@intel.com>
Signed-off-by: Gustavo Sousa <gustavo.sousa@intel.com>
---
drivers/gpu/drm/xe/instructions/xe_gfxpipe_commands.h | 10 ++++++++++
drivers/gpu/drm/xe/xe_lrc.c | 10 ++++++++++
2 files changed, 20 insertions(+)
diff --git a/drivers/gpu/drm/xe/instructions/xe_gfxpipe_commands.h b/drivers/gpu/drm/xe/instructions/xe_gfxpipe_commands.h
index 457881af8af9..4d854c85e588 100644
--- a/drivers/gpu/drm/xe/instructions/xe_gfxpipe_commands.h
+++ b/drivers/gpu/drm/xe/instructions/xe_gfxpipe_commands.h
@@ -55,6 +55,7 @@
#define PIPELINE_SELECT GFXPIPE_SINGLE_DW_CMD(0x1, 0x4)
#define CMD_3DSTATE_DRAWING_RECTANGLE_FAST GFXPIPE_3D_CMD(0x0, 0x0)
+#define CMD_3DSTATE_CUSTOM_SAMPLE_PATTERN GFXPIPE_3D_CMD(0x0, 0x2)
#define CMD_3DSTATE_CLEAR_PARAMS GFXPIPE_3D_CMD(0x0, 0x4)
#define CMD_3DSTATE_DEPTH_BUFFER GFXPIPE_3D_CMD(0x0, 0x5)
#define CMD_3DSTATE_STENCIL_BUFFER GFXPIPE_3D_CMD(0x0, 0x6)
@@ -138,8 +139,16 @@
#define CMD_3DSTATE_SBE_MESH GFXPIPE_3D_CMD(0x0, 0x82)
#define CMD_3DSTATE_CPSIZE_CONTROL_BUFFER GFXPIPE_3D_CMD(0x0, 0x83)
#define CMD_3DSTATE_COARSE_PIXEL GFXPIPE_3D_CMD(0x0, 0x89)
+#define CMD_3DSTATE_MESH_SHADER_DATA_EXT GFXPIPE_3D_CMD(0x0, 0x8A)
+#define CMD_3DSTATE_TASK_SHADER_DATA_EXT GFXPIPE_3D_CMD(0x0, 0x8B)
+#define CMD_3DSTATE_VIEWPORT_STATE_POINTERS_CC_2 GFXPIPE_3D_CMD(0x0, 0x8D)
+#define CMD_3DSTATE_CC_STATE_POINTERS_2 GFXPIPE_3D_CMD(0x0, 0x8E)
+#define CMD_3DSTATE_SCISSOR_STATE_POINTERS_2 GFXPIPE_3D_CMD(0x0, 0x8F)
+#define CMD_3DSTATE_BLEND_STATE_POINTERS_2 GFXPIPE_3D_CMD(0x0, 0xA0)
+#define CMD_3DSTATE_VIEWPORT_STATE_POINTERS_SF_CLIP_2 GFXPIPE_3D_CMD(0x0, 0xA1)
#define CMD_3DSTATE_DRAWING_RECTANGLE GFXPIPE_3D_CMD(0x1, 0x0)
+#define CMD_3DSTATE_URB_MEMORY GFXPIPE_3D_CMD(0x1, 0x1)
#define CMD_3DSTATE_CHROMA_KEY GFXPIPE_3D_CMD(0x1, 0x4)
#define CMD_3DSTATE_POLY_STIPPLE_OFFSET GFXPIPE_3D_CMD(0x1, 0x6)
#define CMD_3DSTATE_POLY_STIPPLE_PATTERN GFXPIPE_3D_CMD(0x1, 0x7)
@@ -160,5 +169,6 @@
#define CMD_3DSTATE_SUBSLICE_HASH_TABLE GFXPIPE_3D_CMD(0x1, 0x1F)
#define CMD_3DSTATE_SLICE_TABLE_STATE_POINTERS GFXPIPE_3D_CMD(0x1, 0x20)
#define CMD_3DSTATE_PTBR_TILE_PASS_INFO GFXPIPE_3D_CMD(0x1, 0x22)
+#define CMD_3DSTATE_SLICE_TABLE_STATE_POINTER_2 GFXPIPE_3D_CMD(0x1, 0xA0)
#endif
diff --git a/drivers/gpu/drm/xe/xe_lrc.c b/drivers/gpu/drm/xe/xe_lrc.c
index 3db7968aa5e2..e58eb8b9db78 100644
--- a/drivers/gpu/drm/xe/xe_lrc.c
+++ b/drivers/gpu/drm/xe/xe_lrc.c
@@ -1966,6 +1966,7 @@ static int dump_gfxpipe_command(struct drm_printer *p,
MATCH(PIPELINE_SELECT);
MATCH3D(3DSTATE_DRAWING_RECTANGLE_FAST);
+ MATCH3D(3DSTATE_CUSTOM_SAMPLE_PATTERN);
MATCH3D(3DSTATE_CLEAR_PARAMS);
MATCH3D(3DSTATE_DEPTH_BUFFER);
MATCH3D(3DSTATE_STENCIL_BUFFER);
@@ -2049,8 +2050,16 @@ static int dump_gfxpipe_command(struct drm_printer *p,
MATCH3D(3DSTATE_SBE_MESH);
MATCH3D(3DSTATE_CPSIZE_CONTROL_BUFFER);
MATCH3D(3DSTATE_COARSE_PIXEL);
+ MATCH3D(3DSTATE_MESH_SHADER_DATA_EXT);
+ MATCH3D(3DSTATE_TASK_SHADER_DATA_EXT);
+ MATCH3D(3DSTATE_VIEWPORT_STATE_POINTERS_CC_2);
+ MATCH3D(3DSTATE_CC_STATE_POINTERS_2);
+ MATCH3D(3DSTATE_SCISSOR_STATE_POINTERS_2);
+ MATCH3D(3DSTATE_BLEND_STATE_POINTERS_2);
+ MATCH3D(3DSTATE_VIEWPORT_STATE_POINTERS_SF_CLIP_2);
MATCH3D(3DSTATE_DRAWING_RECTANGLE);
+ MATCH3D(3DSTATE_URB_MEMORY);
MATCH3D(3DSTATE_CHROMA_KEY);
MATCH3D(3DSTATE_POLY_STIPPLE_OFFSET);
MATCH3D(3DSTATE_POLY_STIPPLE_PATTERN);
@@ -2070,6 +2079,7 @@ static int dump_gfxpipe_command(struct drm_printer *p,
MATCH3D(3DSTATE_SUBSLICE_HASH_TABLE);
MATCH3D(3DSTATE_SLICE_TABLE_STATE_POINTERS);
MATCH3D(3DSTATE_PTBR_TILE_PASS_INFO);
+ MATCH3D(3DSTATE_SLICE_TABLE_STATE_POINTER_2);
default:
drm_printf(p, "[%#010x] unknown GFXPIPE command (pipeline=%#x, opcode=%#x, subopcode=%#x), likely %d dwords\n",
--
2.52.0
^ permalink raw reply related [flat|nested] 21+ messages in thread
* [PATCH v2 07/15] drm/xe/xe3p_lpg: Disable reporting of context switch status to GHWSP
2026-02-05 23:39 [PATCH v2 00/15] Basic enabling patches for Xe3p_LPG and NVL-P Gustavo Sousa
` (5 preceding siblings ...)
2026-02-05 23:39 ` [PATCH v2 06/15] drm/xe/xe3p_lpg: Add LRC parsing for additional RCS engine state Gustavo Sousa
@ 2026-02-05 23:39 ` Gustavo Sousa
2026-02-05 23:39 ` [PATCH v2 08/15] drm/xe/xe3p_lpg: Drop unnecessary tuning settings Gustavo Sousa
` (9 subsequent siblings)
16 siblings, 0 replies; 21+ messages in thread
From: Gustavo Sousa @ 2026-02-05 23:39 UTC (permalink / raw)
To: intel-xe, intel-gfx; +Cc: Gustavo Sousa, Matt Roper, Matt Atwood
From: Matt Roper <matthew.d.roper@intel.com>
By default the hardware reports context switch status into the global
hardware status page. The Xe driver doesn't use this information for
anything, and as of Xe3p, leaving this setting enabled will prevent
other hardware optimizations from being enabled. Disable this reporting
as suggested by the tuning guide.
Bspec: 72161
Reviewed-by: Matt Atwood <matthew.s.atwood@intel.com>
Signed-off-by: Matt Roper <matthew.d.roper@intel.com>
Signed-off-by: Gustavo Sousa <gustavo.sousa@intel.com>
---
drivers/gpu/drm/xe/xe_tuning.c | 7 +++++++
1 file changed, 7 insertions(+)
diff --git a/drivers/gpu/drm/xe/xe_tuning.c b/drivers/gpu/drm/xe/xe_tuning.c
index 5766fa7742d3..a97872b3214b 100644
--- a/drivers/gpu/drm/xe/xe_tuning.c
+++ b/drivers/gpu/drm/xe/xe_tuning.c
@@ -10,6 +10,7 @@
#include <drm/drm_managed.h>
#include <drm/drm_print.h>
+#include "regs/xe_engine_regs.h"
#include "regs/xe_gt_regs.h"
#include "xe_gt_types.h"
#include "xe_platform_types.h"
@@ -107,6 +108,12 @@ static const struct xe_rtp_entry_sr engine_tunings[] = {
FUNC(xe_rtp_match_first_render_or_compute)),
XE_RTP_ACTIONS(SET(RT_CTRL, DIS_NULL_QUERY))
},
+ { XE_RTP_NAME("Tuning: disable HW reporting of ctx switch to GHWSP"),
+ XE_RTP_RULES(GRAPHICS_VERSION_RANGE(3500, XE_RTP_END_VERSION_UNDEFINED)),
+ XE_RTP_ACTIONS(SET(CSFE_CHICKEN1(0),
+ GHWSP_CSB_REPORT_DIS,
+ XE_RTP_ACTION_FLAG(ENGINE_BASE)))
+ },
};
static const struct xe_rtp_entry_sr lrc_tunings[] = {
--
2.52.0
^ permalink raw reply related [flat|nested] 21+ messages in thread
* [PATCH v2 08/15] drm/xe/xe3p_lpg: Drop unnecessary tuning settings
2026-02-05 23:39 [PATCH v2 00/15] Basic enabling patches for Xe3p_LPG and NVL-P Gustavo Sousa
` (6 preceding siblings ...)
2026-02-05 23:39 ` [PATCH v2 07/15] drm/xe/xe3p_lpg: Disable reporting of context switch status to GHWSP Gustavo Sousa
@ 2026-02-05 23:39 ` Gustavo Sousa
2026-02-05 23:39 ` [PATCH v2 09/15] drm/xe/xe3p_lpg: Extend 'group ID' mask size Gustavo Sousa
` (8 subsequent siblings)
16 siblings, 0 replies; 21+ messages in thread
From: Gustavo Sousa @ 2026-02-05 23:39 UTC (permalink / raw)
To: intel-xe, intel-gfx; +Cc: Gustavo Sousa, Matt Roper, Matt Atwood
From: Matt Roper <matthew.d.roper@intel.com>
From Xe3p onward, the desired settings are now the hardware's
default values and the driver does not need to program them explicitly.
Since 35.xx seems to be the starting point for "Xe3p" version numbers;
we'll adjust the bounds of the old programming to stop at 34.99. Even
though there's no platform with version 35.00 at the moment, this is
simplest in case one does show up in the future.
Bspec: 72161, 59928, 59930
Reviewed-by: Matt Atwood <matthew.s.atwood@intel.com>
Signed-off-by: Matt Roper <matthew.d.roper@intel.com>
Signed-off-by: Gustavo Sousa <gustavo.sousa@intel.com>
---
drivers/gpu/drm/xe/xe_tuning.c | 6 +++---
1 file changed, 3 insertions(+), 3 deletions(-)
diff --git a/drivers/gpu/drm/xe/xe_tuning.c b/drivers/gpu/drm/xe/xe_tuning.c
index a97872b3214b..694385ae75f1 100644
--- a/drivers/gpu/drm/xe/xe_tuning.c
+++ b/drivers/gpu/drm/xe/xe_tuning.c
@@ -32,12 +32,12 @@ static const struct xe_rtp_entry_sr gt_tunings[] = {
/* Xe2 */
{ XE_RTP_NAME("Tuning: L3 cache"),
- XE_RTP_RULES(GRAPHICS_VERSION_RANGE(2001, XE_RTP_END_VERSION_UNDEFINED)),
+ XE_RTP_RULES(GRAPHICS_VERSION_RANGE(2001, 3499)),
XE_RTP_ACTIONS(FIELD_SET(XEHP_L3SQCREG5, L3_PWM_TIMER_INIT_VAL_MASK,
REG_FIELD_PREP(L3_PWM_TIMER_INIT_VAL_MASK, 0x7f)))
},
{ XE_RTP_NAME("Tuning: L3 cache - media"),
- XE_RTP_RULES(MEDIA_VERSION_RANGE(2000, XE_RTP_END_VERSION_UNDEFINED)),
+ XE_RTP_RULES(MEDIA_VERSION_RANGE(2000, 3499)),
XE_RTP_ACTIONS(FIELD_SET(XE2LPM_L3SQCREG5, L3_PWM_TIMER_INIT_VAL_MASK,
REG_FIELD_PREP(L3_PWM_TIMER_INIT_VAL_MASK, 0x7f)))
},
@@ -53,7 +53,7 @@ static const struct xe_rtp_entry_sr gt_tunings[] = {
SET(XE2LPM_CCCHKNREG1, L3CMPCTRL))
},
{ XE_RTP_NAME("Tuning: Enable compressible partial write overfetch in L3"),
- XE_RTP_RULES(GRAPHICS_VERSION_RANGE(2001, XE_RTP_END_VERSION_UNDEFINED)),
+ XE_RTP_RULES(GRAPHICS_VERSION_RANGE(2001, 3499)),
XE_RTP_ACTIONS(SET(L3SQCREG3, COMPPWOVERFETCHEN))
},
{ XE_RTP_NAME("Tuning: Enable compressible partial write overfetch in L3 - media"),
--
2.52.0
^ permalink raw reply related [flat|nested] 21+ messages in thread
* [PATCH v2 09/15] drm/xe/xe3p_lpg: Extend 'group ID' mask size
2026-02-05 23:39 [PATCH v2 00/15] Basic enabling patches for Xe3p_LPG and NVL-P Gustavo Sousa
` (7 preceding siblings ...)
2026-02-05 23:39 ` [PATCH v2 08/15] drm/xe/xe3p_lpg: Drop unnecessary tuning settings Gustavo Sousa
@ 2026-02-05 23:39 ` Gustavo Sousa
2026-02-05 23:39 ` [PATCH v2 10/15] drm/xe/xe3p_lpg: Update LRC sizes Gustavo Sousa
` (7 subsequent siblings)
16 siblings, 0 replies; 21+ messages in thread
From: Gustavo Sousa @ 2026-02-05 23:39 UTC (permalink / raw)
To: intel-xe, intel-gfx; +Cc: Gustavo Sousa, Matt Roper, Dnyaneshwar Bhadane
From: Matt Roper <matthew.d.roper@intel.com>
Xe3p_LPG extends the 'group ID' register mask by one bit. Since the new
upper bit (12) was unused on previous platforms, we can safely extend
the existing mask size without worrying about adding conditional version
checks to the register programming.
Bspec: 67175
Reviewed-by: Dnyaneshwar Bhadane <dnyaneshwar.bhadane@intel.com>
Signed-off-by: Matt Roper <matthew.d.roper@intel.com>
Signed-off-by: Gustavo Sousa <gustavo.sousa@intel.com>
---
drivers/gpu/drm/xe/regs/xe_gt_regs.h | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/drivers/gpu/drm/xe/regs/xe_gt_regs.h b/drivers/gpu/drm/xe/regs/xe_gt_regs.h
index 55f5be7283db..f626cc584bd9 100644
--- a/drivers/gpu/drm/xe/regs/xe_gt_regs.h
+++ b/drivers/gpu/drm/xe/regs/xe_gt_regs.h
@@ -58,7 +58,7 @@
#define MCR_SLICE(slice) REG_FIELD_PREP(MCR_SLICE_MASK, slice)
#define MCR_SUBSLICE_MASK REG_GENMASK(26, 24)
#define MCR_SUBSLICE(subslice) REG_FIELD_PREP(MCR_SUBSLICE_MASK, subslice)
-#define MTL_MCR_GROUPID REG_GENMASK(11, 8)
+#define MTL_MCR_GROUPID REG_GENMASK(12, 8)
#define MTL_MCR_INSTANCEID REG_GENMASK(3, 0)
#define PS_INVOCATION_COUNT XE_REG(0x2348)
--
2.52.0
^ permalink raw reply related [flat|nested] 21+ messages in thread
* [PATCH v2 10/15] drm/xe/xe3p_lpg: Update LRC sizes
2026-02-05 23:39 [PATCH v2 00/15] Basic enabling patches for Xe3p_LPG and NVL-P Gustavo Sousa
` (8 preceding siblings ...)
2026-02-05 23:39 ` [PATCH v2 09/15] drm/xe/xe3p_lpg: Extend 'group ID' mask size Gustavo Sousa
@ 2026-02-05 23:39 ` Gustavo Sousa
2026-02-05 23:39 ` [PATCH v2 11/15] drm/xe/xe3p_lpg: Set STLB bank hash mode to 4KB Gustavo Sousa
` (6 subsequent siblings)
16 siblings, 0 replies; 21+ messages in thread
From: Gustavo Sousa @ 2026-02-05 23:39 UTC (permalink / raw)
To: intel-xe, intel-gfx; +Cc: Gustavo Sousa, Matt Roper
Like with previous generations, the engine context images for of both
RCS and CCS in Xe3p_LPG contain a common layout at the end for the
context related to the "Compute Pipeline".
The size of the memory area written to such section varies; it depends
on the type of preemption has taken place during the execution and type
of command streamer instruction that was used on the pipeline. For
Xe3p_LPG, the maximum possible size, including NOOPs for cache line
alignment, is 4368 dwords, which would be the case of a mid-thread
preemption during the execution of a COMPUTE_WALKER_2 instruction.
The maximum size has increased in such a way that we need to update
xe_gt_lrc_size() to match the new sizing requirement. When we add that
to the engine-specific parts, we have:
- RCS context image: 6672 dwords = 26688 bytes -> 7 pages
- CCS context image: 5024 dwords = 20096 bytes -> 5 pages
Bspec: 65182, 55793, 73590
Reviewed-by: Matt Roper <matthew.d.roper@intel.com>
Signed-off-by: Gustavo Sousa <gustavo.sousa@intel.com>
---
drivers/gpu/drm/xe/xe_lrc.c | 8 ++++++--
1 file changed, 6 insertions(+), 2 deletions(-)
diff --git a/drivers/gpu/drm/xe/xe_lrc.c b/drivers/gpu/drm/xe/xe_lrc.c
index e58eb8b9db78..38f648b98868 100644
--- a/drivers/gpu/drm/xe/xe_lrc.c
+++ b/drivers/gpu/drm/xe/xe_lrc.c
@@ -113,13 +113,17 @@ size_t xe_gt_lrc_hang_replay_size(struct xe_gt *gt, enum xe_engine_class class)
/* Engine context image */
switch (class) {
case XE_ENGINE_CLASS_RENDER:
- if (GRAPHICS_VER(xe) >= 20)
+ if (GRAPHICS_VERx100(xe) >= 3510)
+ size += 7 * SZ_4K;
+ else if (GRAPHICS_VER(xe) >= 20)
size += 3 * SZ_4K;
else
size += 13 * SZ_4K;
break;
case XE_ENGINE_CLASS_COMPUTE:
- if (GRAPHICS_VER(xe) >= 20)
+ if (GRAPHICS_VERx100(xe) >= 3510)
+ size += 5 * SZ_4K;
+ else if (GRAPHICS_VER(xe) >= 20)
size += 2 * SZ_4K;
else
size += 13 * SZ_4K;
--
2.52.0
^ permalink raw reply related [flat|nested] 21+ messages in thread
* [PATCH v2 11/15] drm/xe/xe3p_lpg: Set STLB bank hash mode to 4KB
2026-02-05 23:39 [PATCH v2 00/15] Basic enabling patches for Xe3p_LPG and NVL-P Gustavo Sousa
` (9 preceding siblings ...)
2026-02-05 23:39 ` [PATCH v2 10/15] drm/xe/xe3p_lpg: Update LRC sizes Gustavo Sousa
@ 2026-02-05 23:39 ` Gustavo Sousa
2026-02-05 23:39 ` [PATCH v2 12/15] drm/xe/nvlp: Add NVL-P platform definition Gustavo Sousa
` (5 subsequent siblings)
16 siblings, 0 replies; 21+ messages in thread
From: Gustavo Sousa @ 2026-02-05 23:39 UTC (permalink / raw)
To: intel-xe, intel-gfx; +Cc: Gustavo Sousa, Aradhya Bhatia, Matt Roper
From: Aradhya Bhatia <aradhya.bhatia@intel.com>
Since the dominant size of the pages referred in an i-gpu, such as
Xe3p_LPG, will be 4KB, the HW default of mix of 64K and 2M for STLB bank
hash mode does not make sense.
Allow the SW to change it to 4KB Mode, for Xe3p_LPG.
v2:
- Add Bspec reference. (Matt)
Bspec: 78248
Reviewed-by: Matt Roper <matthew.d.roper@intel.com>
Signed-off-by: Aradhya Bhatia <aradhya.bhatia@intel.com>
Signed-off-by: Gustavo Sousa <gustavo.sousa@intel.com>
---
drivers/gpu/drm/xe/regs/xe_gt_regs.h | 2 ++
drivers/gpu/drm/xe/xe_tuning.c | 9 +++++++++
2 files changed, 11 insertions(+)
diff --git a/drivers/gpu/drm/xe/regs/xe_gt_regs.h b/drivers/gpu/drm/xe/regs/xe_gt_regs.h
index f626cc584bd9..1d652266f4f3 100644
--- a/drivers/gpu/drm/xe/regs/xe_gt_regs.h
+++ b/drivers/gpu/drm/xe/regs/xe_gt_regs.h
@@ -470,6 +470,8 @@
#define FORCE_MISS_FTLB REG_BIT(3)
#define XEHP_GAMSTLB_CTRL XE_REG_MCR(0xcf4c)
+#define BANK_HASH_MODE REG_GENMASK(27, 26)
+#define BANK_HASH_4KB_MODE REG_FIELD_PREP(BANK_HASH_MODE, 0x3)
#define CONTROL_BLOCK_CLKGATE_DIS REG_BIT(12)
#define EGRESS_BLOCK_CLKGATE_DIS REG_BIT(11)
#define TAG_BLOCK_CLKGATE_DIS REG_BIT(7)
diff --git a/drivers/gpu/drm/xe/xe_tuning.c b/drivers/gpu/drm/xe/xe_tuning.c
index 694385ae75f1..316f5e2b2e48 100644
--- a/drivers/gpu/drm/xe/xe_tuning.c
+++ b/drivers/gpu/drm/xe/xe_tuning.c
@@ -90,6 +90,15 @@ static const struct xe_rtp_entry_sr gt_tunings[] = {
XE_RTP_RULES(MEDIA_VERSION(2000)),
XE_RTP_ACTIONS(SET(XE2LPM_SCRATCH3_LBCF, RWFLUSHALLEN))
},
+
+ /* Xe3p */
+
+ { XE_RTP_NAME("Tuning: Set STLB Bank Hash Mode to 4KB"),
+ XE_RTP_RULES(GRAPHICS_VERSION_RANGE(3510, XE_RTP_END_VERSION_UNDEFINED),
+ IS_INTEGRATED),
+ XE_RTP_ACTIONS(FIELD_SET(XEHP_GAMSTLB_CTRL, BANK_HASH_MODE,
+ BANK_HASH_4KB_MODE))
+ },
};
static const struct xe_rtp_entry_sr engine_tunings[] = {
--
2.52.0
^ permalink raw reply related [flat|nested] 21+ messages in thread
* [PATCH v2 12/15] drm/xe/nvlp: Add NVL-P platform definition
2026-02-05 23:39 [PATCH v2 00/15] Basic enabling patches for Xe3p_LPG and NVL-P Gustavo Sousa
` (10 preceding siblings ...)
2026-02-05 23:39 ` [PATCH v2 11/15] drm/xe/xe3p_lpg: Set STLB bank hash mode to 4KB Gustavo Sousa
@ 2026-02-05 23:39 ` Gustavo Sousa
2026-02-05 23:39 ` [PATCH v2 13/15] drm/xe/nvlp: Attach MOCS table for nvlp Gustavo Sousa
` (4 subsequent siblings)
16 siblings, 0 replies; 21+ messages in thread
From: Gustavo Sousa @ 2026-02-05 23:39 UTC (permalink / raw)
To: intel-xe, intel-gfx; +Cc: Gustavo Sousa, Shekhar Chauhan, Matt Roper
From: Shekhar Chauhan <shekhar.chauhan@intel.com>
Add platform definition along with device IDs for NVL-P. Here is the
list of device descriptor fields and associated Bspec references:
.dma_mask_size (Bspec 74198)
.has_cached_pt (Bspec 71582)
.has_display (Bspec 74196)
.has_flat_ccs (Bspec 74110)
.has_page_reclaim_hw_assist (Bspec 73451)
.max_gt_per_tile (Bspec 74196)
.va_bits (Bspec 74198)
.vm_max_level (Bspec 59507)
v2:
- Add list of descriptor fields and Bspec references. (Matt)
Reviewed-by: Matt Roper <matthew.d.roper@intel.com>
Signed-off-by: Shekhar Chauhan <shekhar.chauhan@intel.com>
Signed-off-by: Gustavo Sousa <gustavo.sousa@intel.com>
---
drivers/gpu/drm/xe/xe_bo.c | 4 ++--
drivers/gpu/drm/xe/xe_pci.c | 15 +++++++++++++++
drivers/gpu/drm/xe/xe_platform_types.h | 1 +
include/drm/intel/pciids.h | 12 ++++++++++++
4 files changed, 30 insertions(+), 2 deletions(-)
diff --git a/drivers/gpu/drm/xe/xe_bo.c b/drivers/gpu/drm/xe/xe_bo.c
index 8bf16d60b9a5..9e998f9708df 100644
--- a/drivers/gpu/drm/xe/xe_bo.c
+++ b/drivers/gpu/drm/xe/xe_bo.c
@@ -512,8 +512,8 @@ static struct ttm_tt *xe_ttm_tt_create(struct ttm_buffer_object *ttm_bo,
/*
* Display scanout is always non-coherent with the CPU cache.
*
- * For Xe_LPG and beyond, PPGTT PTE lookups are also
- * non-coherent and require a CPU:WC mapping.
+ * For Xe_LPG and beyond up to NVL-P (excluding), PPGTT PTE
+ * lookups are also non-coherent and require a CPU:WC mapping.
*/
if ((!bo->cpu_caching && bo->flags & XE_BO_FLAG_SCANOUT) ||
(!xe->info.has_cached_pt && bo->flags & XE_BO_FLAG_PAGETABLE))
diff --git a/drivers/gpu/drm/xe/xe_pci.c b/drivers/gpu/drm/xe/xe_pci.c
index 08e0ff9f75e8..a90129d8e15b 100644
--- a/drivers/gpu/drm/xe/xe_pci.c
+++ b/drivers/gpu/drm/xe/xe_pci.c
@@ -438,6 +438,20 @@ static const struct xe_device_desc cri_desc = {
.vm_max_level = 4,
};
+static const struct xe_device_desc nvlp_desc = {
+ PLATFORM(NOVALAKE_P),
+ .dma_mask_size = 46,
+ .has_cached_pt = true,
+ .has_display = true,
+ .has_flat_ccs = 1,
+ .has_page_reclaim_hw_assist = true,
+ .has_pre_prod_wa = true,
+ .max_gt_per_tile = 2,
+ .require_force_probe = true,
+ .va_bits = 48,
+ .vm_max_level = 4,
+};
+
#undef PLATFORM
__diag_pop();
@@ -468,6 +482,7 @@ static const struct pci_device_id pciidlist[] = {
INTEL_WCL_IDS(INTEL_VGA_DEVICE, &ptl_desc),
INTEL_NVLS_IDS(INTEL_VGA_DEVICE, &nvls_desc),
INTEL_CRI_IDS(INTEL_PCI_DEVICE, &cri_desc),
+ INTEL_NVLP_IDS(INTEL_VGA_DEVICE, &nvlp_desc),
{ }
};
MODULE_DEVICE_TABLE(pci, pciidlist);
diff --git a/drivers/gpu/drm/xe/xe_platform_types.h b/drivers/gpu/drm/xe/xe_platform_types.h
index f516dbddfd88..6cff385227ea 100644
--- a/drivers/gpu/drm/xe/xe_platform_types.h
+++ b/drivers/gpu/drm/xe/xe_platform_types.h
@@ -26,6 +26,7 @@ enum xe_platform {
XE_PANTHERLAKE,
XE_NOVALAKE_S,
XE_CRESCENTISLAND,
+ XE_NOVALAKE_P,
};
enum xe_subplatform {
diff --git a/include/drm/intel/pciids.h b/include/drm/intel/pciids.h
index 52520e684ab1..33b91cb2e684 100644
--- a/include/drm/intel/pciids.h
+++ b/include/drm/intel/pciids.h
@@ -900,4 +900,16 @@
#define INTEL_CRI_IDS(MACRO__, ...) \
MACRO__(0x674C, ## __VA_ARGS__)
+/* NVL-P */
+#define INTEL_NVLP_IDS(MACRO__, ...) \
+ MACRO__(0xD750, ## __VA_ARGS__), \
+ MACRO__(0xD751, ## __VA_ARGS__), \
+ MACRO__(0xD752, ## __VA_ARGS__), \
+ MACRO__(0xD753, ## __VA_ARGS__), \
+ MACRO__(0XD754, ## __VA_ARGS__), \
+ MACRO__(0XD755, ## __VA_ARGS__), \
+ MACRO__(0XD756, ## __VA_ARGS__), \
+ MACRO__(0XD757, ## __VA_ARGS__), \
+ MACRO__(0xD75F, ## __VA_ARGS__)
+
#endif /* __PCIIDS_H__ */
--
2.52.0
^ permalink raw reply related [flat|nested] 21+ messages in thread
* [PATCH v2 13/15] drm/xe/nvlp: Attach MOCS table for nvlp
2026-02-05 23:39 [PATCH v2 00/15] Basic enabling patches for Xe3p_LPG and NVL-P Gustavo Sousa
` (11 preceding siblings ...)
2026-02-05 23:39 ` [PATCH v2 12/15] drm/xe/nvlp: Add NVL-P platform definition Gustavo Sousa
@ 2026-02-05 23:39 ` Gustavo Sousa
2026-02-05 23:39 ` [PATCH v2 14/15] drm/i915/nvlp: Hook up display support Gustavo Sousa
` (3 subsequent siblings)
16 siblings, 0 replies; 21+ messages in thread
From: Gustavo Sousa @ 2026-02-05 23:39 UTC (permalink / raw)
To: intel-xe, intel-gfx; +Cc: Gustavo Sousa, Dnyaneshwar Bhadane, Matt Roper
From: Dnyaneshwar Bhadane <dnyaneshwar.bhadane@intel.com>
The MOCS table for NVL-P is same as for Xe2/Xe3 platforms.
Reviewed-by: Matt Roper <matthew.d.roper@intel.com>
Signed-off-by: Dnyaneshwar Bhadane <dnyaneshwar.bhadane@intel.com>
Signed-off-by: Gustavo Sousa <gustavo.sousa@intel.com>
---
drivers/gpu/drm/xe/xe_mocs.c | 1 +
1 file changed, 1 insertion(+)
diff --git a/drivers/gpu/drm/xe/xe_mocs.c b/drivers/gpu/drm/xe/xe_mocs.c
index 54822497c21e..1d19df860bea 100644
--- a/drivers/gpu/drm/xe/xe_mocs.c
+++ b/drivers/gpu/drm/xe/xe_mocs.c
@@ -600,6 +600,7 @@ static unsigned int get_mocs_settings(struct xe_device *xe,
info->wb_index = 4;
info->unused_entries_index = 4;
break;
+ case XE_NOVALAKE_P:
case XE_NOVALAKE_S:
case XE_PANTHERLAKE:
case XE_LUNARLAKE:
--
2.52.0
^ permalink raw reply related [flat|nested] 21+ messages in thread
* [PATCH v2 14/15] drm/i915/nvlp: Hook up display support
2026-02-05 23:39 [PATCH v2 00/15] Basic enabling patches for Xe3p_LPG and NVL-P Gustavo Sousa
` (12 preceding siblings ...)
2026-02-05 23:39 ` [PATCH v2 13/15] drm/xe/nvlp: Attach MOCS table for nvlp Gustavo Sousa
@ 2026-02-05 23:39 ` Gustavo Sousa
2026-02-05 23:39 ` [PATCH v2 15/15] drm/xe/nvlp: Bump maximum WOPCM size Gustavo Sousa
` (2 subsequent siblings)
16 siblings, 0 replies; 21+ messages in thread
From: Gustavo Sousa @ 2026-02-05 23:39 UTC (permalink / raw)
To: intel-xe, intel-gfx; +Cc: Gustavo Sousa, Matt Roper, Suraj Kandpal
From: Matt Roper <matthew.d.roper@intel.com>
Although NVL-S and NVL-P are quite different on the GT side, they use
identical Xe3p_LPD display IP and should take all the same codepaths.
Reviewed-by: Suraj Kandpal <suraj.kandpal@intel.com>
Signed-off-by: Matt Roper <matthew.d.roper@intel.com>
Signed-off-by: Gustavo Sousa <gustavo.sousa@intel.com>
---
drivers/gpu/drm/i915/display/intel_display_device.c | 1 +
1 file changed, 1 insertion(+)
diff --git a/drivers/gpu/drm/i915/display/intel_display_device.c b/drivers/gpu/drm/i915/display/intel_display_device.c
index 471f236c9ddf..1a7f3ca079e8 100644
--- a/drivers/gpu/drm/i915/display/intel_display_device.c
+++ b/drivers/gpu/drm/i915/display/intel_display_device.c
@@ -1500,6 +1500,7 @@ static const struct {
INTEL_PTL_IDS(INTEL_DISPLAY_DEVICE, &ptl_desc),
INTEL_WCL_IDS(INTEL_DISPLAY_DEVICE, &ptl_desc),
INTEL_NVLS_IDS(INTEL_DISPLAY_DEVICE, &nvl_desc),
+ INTEL_NVLP_IDS(INTEL_DISPLAY_DEVICE, &nvl_desc),
};
static const struct {
--
2.52.0
^ permalink raw reply related [flat|nested] 21+ messages in thread
* [PATCH v2 15/15] drm/xe/nvlp: Bump maximum WOPCM size
2026-02-05 23:39 [PATCH v2 00/15] Basic enabling patches for Xe3p_LPG and NVL-P Gustavo Sousa
` (13 preceding siblings ...)
2026-02-05 23:39 ` [PATCH v2 14/15] drm/i915/nvlp: Hook up display support Gustavo Sousa
@ 2026-02-05 23:39 ` Gustavo Sousa
2026-02-06 8:39 ` Bhadane, Dnyaneshwar
2026-02-06 0:57 ` ✓ i915.CI.BAT: success for Basic enabling patches for Xe3p_LPG and NVL-P (rev2) Patchwork
2026-02-06 22:08 ` ✓ i915.CI.Full: " Patchwork
16 siblings, 1 reply; 21+ messages in thread
From: Gustavo Sousa @ 2026-02-05 23:39 UTC (permalink / raw)
To: intel-xe, intel-gfx; +Cc: Gustavo Sousa
On NVL-P, the primary GT's WOPCM gained an extra 8MiB for the Memory
URB. As such, we need to bump the maximum size in the driver so that
the driver is able to load without erroring out thinking that the WOPCM
is too small.
FIXME: The wopcm code in xe driver is a bit confusing. For the case
where the offsets for GUC WOPCM are already locked, it appears we are
using the maximum overall WOPCM size instead of the sizes relative to
each type of GT. The function __check_layout() should be checking
against the latter.
Bspec: 67090
Signed-off-by: Gustavo Sousa <gustavo.sousa@intel.com>
---
drivers/gpu/drm/xe/xe_wopcm.c | 15 ++++++++++++---
1 file changed, 12 insertions(+), 3 deletions(-)
diff --git a/drivers/gpu/drm/xe/xe_wopcm.c b/drivers/gpu/drm/xe/xe_wopcm.c
index dde4f4967ca3..900daf1d1b1b 100644
--- a/drivers/gpu/drm/xe/xe_wopcm.c
+++ b/drivers/gpu/drm/xe/xe_wopcm.c
@@ -55,8 +55,6 @@
#define MTL_WOPCM_SIZE SZ_4M
#define WOPCM_SIZE SZ_2M
-#define MAX_WOPCM_SIZE SZ_8M
-
/* 16KB WOPCM (RSVD WOPCM) is reserved from HuC firmware top. */
#define WOPCM_RESERVED_SIZE SZ_16K
@@ -186,6 +184,14 @@ u32 xe_wopcm_size(struct xe_device *xe)
WOPCM_SIZE;
}
+static u32 max_wopcm_size(struct xe_device *xe)
+{
+ if (xe->info.platform == XE_NOVALAKE_P)
+ return SZ_16M;
+ else
+ return SZ_8M;
+}
+
/**
* xe_wopcm_init() - Initialize the WOPCM structure.
* @wopcm: pointer to xe_wopcm.
@@ -227,8 +233,11 @@ int xe_wopcm_init(struct xe_wopcm *wopcm)
* When the GuC wopcm base and size are preprogrammed by
* BIOS/IFWI, check against the max allowed wopcm size to
* validate if the programmed values align to the wopcm layout.
+ *
+ * FIXME: This is giving the maximum overall WOPCM size and not
+ * the size relative to each GT.
*/
- wopcm->size = MAX_WOPCM_SIZE;
+ wopcm->size = max_wopcm_size(xe);
goto check;
}
--
2.52.0
^ permalink raw reply related [flat|nested] 21+ messages in thread
* ✓ i915.CI.BAT: success for Basic enabling patches for Xe3p_LPG and NVL-P (rev2)
2026-02-05 23:39 [PATCH v2 00/15] Basic enabling patches for Xe3p_LPG and NVL-P Gustavo Sousa
` (14 preceding siblings ...)
2026-02-05 23:39 ` [PATCH v2 15/15] drm/xe/nvlp: Bump maximum WOPCM size Gustavo Sousa
@ 2026-02-06 0:57 ` Patchwork
2026-02-06 22:08 ` ✓ i915.CI.Full: " Patchwork
16 siblings, 0 replies; 21+ messages in thread
From: Patchwork @ 2026-02-06 0:57 UTC (permalink / raw)
To: Gustavo Sousa; +Cc: intel-gfx
[-- Attachment #1: Type: text/plain, Size: 5852 bytes --]
== Series Details ==
Series: Basic enabling patches for Xe3p_LPG and NVL-P (rev2)
URL : https://patchwork.freedesktop.org/series/161036/
State : success
== Summary ==
CI Bug Log - changes from CI_DRM_17945 -> Patchwork_161036v2
====================================================
Summary
-------
**SUCCESS**
No regressions found.
External URL: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_161036v2/index.html
Participating hosts (42 -> 41)
------------------------------
Additional (1): bat-adls-6
Missing (2): bat-dg2-13 fi-snb-2520m
Known issues
------------
Here are the changes found in Patchwork_161036v2 that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@gem_lmem_swapping@parallel-random-engines:
- bat-adls-6: NOTRUN -> [SKIP][1] ([i915#4613]) +3 other tests skip
[1]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_161036v2/bat-adls-6/igt@gem_lmem_swapping@parallel-random-engines.html
* igt@gem_tiled_pread_basic@basic:
- bat-adls-6: NOTRUN -> [SKIP][2] ([i915#15656])
[2]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_161036v2/bat-adls-6/igt@gem_tiled_pread_basic@basic.html
* igt@i915_selftest@live@workarounds:
- bat-mtlp-9: [PASS][3] -> [DMESG-FAIL][4] ([i915#12061]) +1 other test dmesg-fail
[3]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17945/bat-mtlp-9/igt@i915_selftest@live@workarounds.html
[4]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_161036v2/bat-mtlp-9/igt@i915_selftest@live@workarounds.html
* igt@intel_hwmon@hwmon-read:
- bat-adls-6: NOTRUN -> [SKIP][5] ([i915#7707]) +1 other test skip
[5]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_161036v2/bat-adls-6/igt@intel_hwmon@hwmon-read.html
* igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy:
- bat-adls-6: NOTRUN -> [SKIP][6] ([i915#4103]) +1 other test skip
[6]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_161036v2/bat-adls-6/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy.html
* igt@kms_dsc@dsc-basic:
- bat-adls-6: NOTRUN -> [SKIP][7] ([i915#3555] / [i915#3840])
[7]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_161036v2/bat-adls-6/igt@kms_dsc@dsc-basic.html
* igt@kms_force_connector_basic@force-load-detect:
- bat-adls-6: NOTRUN -> [SKIP][8]
[8]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_161036v2/bat-adls-6/igt@kms_force_connector_basic@force-load-detect.html
* igt@kms_pm_backlight@basic-brightness:
- bat-adls-6: NOTRUN -> [SKIP][9] ([i915#5354])
[9]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_161036v2/bat-adls-6/igt@kms_pm_backlight@basic-brightness.html
* igt@kms_psr@psr-primary-mmap-gtt:
- bat-adls-6: NOTRUN -> [SKIP][10] ([i915#1072] / [i915#9732]) +3 other tests skip
[10]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_161036v2/bat-adls-6/igt@kms_psr@psr-primary-mmap-gtt.html
* igt@kms_setmode@basic-clone-single-crtc:
- bat-adls-6: NOTRUN -> [SKIP][11] ([i915#3555])
[11]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_161036v2/bat-adls-6/igt@kms_setmode@basic-clone-single-crtc.html
* igt@prime_vgem@basic-fence-read:
- bat-adls-6: NOTRUN -> [SKIP][12] ([i915#3291]) +2 other tests skip
[12]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_161036v2/bat-adls-6/igt@prime_vgem@basic-fence-read.html
#### Possible fixes ####
* igt@i915_selftest@live@workarounds:
- bat-arls-5: [DMESG-FAIL][13] ([i915#12061]) -> [PASS][14] +1 other test pass
[13]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17945/bat-arls-5/igt@i915_selftest@live@workarounds.html
[14]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_161036v2/bat-arls-5/igt@i915_selftest@live@workarounds.html
- bat-dg2-9: [DMESG-FAIL][15] ([i915#12061]) -> [PASS][16] +1 other test pass
[15]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17945/bat-dg2-9/igt@i915_selftest@live@workarounds.html
[16]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_161036v2/bat-dg2-9/igt@i915_selftest@live@workarounds.html
* igt@kms_pm_rpm@basic-rte:
- bat-rpls-4: [DMESG-WARN][17] ([i915#13400]) -> [PASS][18]
[17]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17945/bat-rpls-4/igt@kms_pm_rpm@basic-rte.html
[18]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_161036v2/bat-rpls-4/igt@kms_pm_rpm@basic-rte.html
[i915#1072]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1072
[i915#12061]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12061
[i915#13400]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13400
[i915#15656]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15656
[i915#3291]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3291
[i915#3555]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3555
[i915#3840]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3840
[i915#4103]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4103
[i915#4613]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4613
[i915#5354]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5354
[i915#7707]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7707
[i915#9732]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9732
Build changes
-------------
* Linux: CI_DRM_17945 -> Patchwork_161036v2
CI-20190529: 20190529
CI_DRM_17945: 75acb0a8b6f69c6429941e6845df2af94ed15939 @ git://anongit.freedesktop.org/gfx-ci/linux
IGT_8739: 8739
Patchwork_161036v2: 75acb0a8b6f69c6429941e6845df2af94ed15939 @ git://anongit.freedesktop.org/gfx-ci/linux
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_161036v2/index.html
[-- Attachment #2: Type: text/html, Size: 7008 bytes --]
^ permalink raw reply [flat|nested] 21+ messages in thread
* Re: [PATCH v2 15/15] drm/xe/nvlp: Bump maximum WOPCM size
2026-02-05 23:39 ` [PATCH v2 15/15] drm/xe/nvlp: Bump maximum WOPCM size Gustavo Sousa
@ 2026-02-06 8:39 ` Bhadane, Dnyaneshwar
0 siblings, 0 replies; 21+ messages in thread
From: Bhadane, Dnyaneshwar @ 2026-02-06 8:39 UTC (permalink / raw)
To: Gustavo Sousa, intel-xe, intel-gfx
On 06-Feb-26 5:09 AM, Gustavo Sousa wrote:
> On NVL-P, the primary GT's WOPCM gained an extra 8MiB for the Memory
> URB. As such, we need to bump the maximum size in the driver so that
> the driver is able to load without erroring out thinking that the WOPCM
> is too small.
>
> FIXME: The wopcm code in xe driver is a bit confusing. For the case
> where the offsets for GUC WOPCM are already locked, it appears we are
> using the maximum overall WOPCM size instead of the sizes relative to
> each type of GT. The function __check_layout() should be checking
> against the latter.
>
> Bspec: 67090
> Signed-off-by: Gustavo Sousa <gustavo.sousa@intel.com>
LGTM,
Reviewed-by: Dnyaneshwar Bhadane <dnyaneshwar.bhadane@intel.com>
> ---
> drivers/gpu/drm/xe/xe_wopcm.c | 15 ++++++++++++---
> 1 file changed, 12 insertions(+), 3 deletions(-)
>
> diff --git a/drivers/gpu/drm/xe/xe_wopcm.c b/drivers/gpu/drm/xe/xe_wopcm.c
> index dde4f4967ca3..900daf1d1b1b 100644
> --- a/drivers/gpu/drm/xe/xe_wopcm.c
> +++ b/drivers/gpu/drm/xe/xe_wopcm.c
> @@ -55,8 +55,6 @@
> #define MTL_WOPCM_SIZE SZ_4M
> #define WOPCM_SIZE SZ_2M
>
> -#define MAX_WOPCM_SIZE SZ_8M
> -
> /* 16KB WOPCM (RSVD WOPCM) is reserved from HuC firmware top. */
> #define WOPCM_RESERVED_SIZE SZ_16K
>
> @@ -186,6 +184,14 @@ u32 xe_wopcm_size(struct xe_device *xe)
> WOPCM_SIZE;
> }
>
> +static u32 max_wopcm_size(struct xe_device *xe)
> +{
> + if (xe->info.platform == XE_NOVALAKE_P)
> + return SZ_16M;
> + else
> + return SZ_8M;
> +}
> +
> /**
> * xe_wopcm_init() - Initialize the WOPCM structure.
> * @wopcm: pointer to xe_wopcm.
> @@ -227,8 +233,11 @@ int xe_wopcm_init(struct xe_wopcm *wopcm)
> * When the GuC wopcm base and size are preprogrammed by
> * BIOS/IFWI, check against the max allowed wopcm size to
> * validate if the programmed values align to the wopcm layout.
> + *
> + * FIXME: This is giving the maximum overall WOPCM size and not
> + * the size relative to each GT.
> */
> - wopcm->size = MAX_WOPCM_SIZE;
> + wopcm->size = max_wopcm_size(xe);
>
> goto check;
> }
>
^ permalink raw reply [flat|nested] 21+ messages in thread
* Re: [PATCH v2 02/15] drm/xe/xe3p_lpg: Add initial workarounds for graphics version 35.10
2026-02-05 23:39 ` [PATCH v2 02/15] drm/xe/xe3p_lpg: Add initial workarounds for graphics version 35.10 Gustavo Sousa
@ 2026-02-06 15:25 ` Matt Roper
0 siblings, 0 replies; 21+ messages in thread
From: Matt Roper @ 2026-02-06 15:25 UTC (permalink / raw)
To: Gustavo Sousa
Cc: intel-xe, intel-gfx, Shekhar Chauhan, Nitin Gote,
Tangudu Tilak Tirumalesh, Mallesh Koujalagi
On Thu, Feb 05, 2026 at 08:39:30PM -0300, Gustavo Sousa wrote:
> From: Shekhar Chauhan <shekhar.chauhan@intel.com>
>
> Add the initial set of workarounds for Xe3p_LPG graphics version 35.10.
>
> v2:
> - Fix spacing style for field LOCALITYDIS. (Matt)
> - Drop unnecessary Wa_14025780377. (Matt)
>
> Cc: Matt Roper <matthew.d.roper@intel.com>
> Signed-off-by: Shekhar Chauhan <shekhar.chauhan@intel.com>
> Co-developed-by: Nitin Gote <nitin.r.gote@intel.com>
> Signed-off-by: Nitin Gote <nitin.r.gote@intel.com>
> Co-developed-by: Tangudu Tilak Tirumalesh <tilak.tirumalesh.tangudu@intel.com>
> Signed-off-by: Tangudu Tilak Tirumalesh <tilak.tirumalesh.tangudu@intel.com>
> Co-developed-by: Mallesh Koujalagi <mallesh.koujalagi@intel.com>
> Signed-off-by: Mallesh Koujalagi <mallesh.koujalagi@intel.com>
> Co-developed-by: Gustavo Sousa <gustavo.sousa@intel.com>
> Signed-off-by: Gustavo Sousa <gustavo.sousa@intel.com>
Reviewed-by: Matt Roper <matthew.d.roper@intel.com>
> ---
> drivers/gpu/drm/xe/regs/xe_gt_regs.h | 16 +++++++++++++
> drivers/gpu/drm/xe/xe_reg_whitelist.c | 8 +++++++
> drivers/gpu/drm/xe/xe_wa.c | 43 +++++++++++++++++++++++++++++++++++
> 3 files changed, 67 insertions(+)
>
> diff --git a/drivers/gpu/drm/xe/regs/xe_gt_regs.h b/drivers/gpu/drm/xe/regs/xe_gt_regs.h
> index 24fc64fc832e..55f5be7283db 100644
> --- a/drivers/gpu/drm/xe/regs/xe_gt_regs.h
> +++ b/drivers/gpu/drm/xe/regs/xe_gt_regs.h
> @@ -100,6 +100,9 @@
> #define VE1_AUX_INV XE_REG(0x42b8)
> #define AUX_INV REG_BIT(0)
>
> +#define GAMSTLB_CTRL2 XE_REG_MCR(0x4788)
> +#define STLB_SINGLE_BANK_MODE REG_BIT(11)
> +
> #define XE2_LMEM_CFG XE_REG(0x48b0)
>
> #define XE2_GAMWALK_CTRL 0x47e4
> @@ -107,6 +110,9 @@
> #define XE2_GAMWALK_CTRL_3D XE_REG_MCR(XE2_GAMWALK_CTRL)
> #define EN_CMP_1WCOH_GW REG_BIT(14)
>
> +#define MMIOATSREQLIMIT_GAM_WALK_3D XE_REG_MCR(0x47f8)
> +#define DIS_ATS_WRONLY_PG REG_BIT(18)
> +
> #define XEHP_FLAT_CCS_BASE_ADDR XE_REG_MCR(0x4910)
> #define XEHP_FLAT_CCS_PTR REG_GENMASK(31, 8)
>
> @@ -210,6 +216,9 @@
>
> #define GSCPSMI_BASE XE_REG(0x880c)
>
> +#define CCCHKNREG2 XE_REG_MCR(0x881c)
> +#define LOCALITYDIS REG_BIT(7)
> +
> #define CCCHKNREG1 XE_REG_MCR(0x8828)
> #define L3CMPCTRL REG_BIT(23)
> #define ENCOMPPERFFIX REG_BIT(18)
> @@ -420,6 +429,8 @@
> #define LSN_DIM_Z_WGT(value) REG_FIELD_PREP(LSN_DIM_Z_WGT_MASK, value)
>
> #define L3SQCREG2 XE_REG_MCR(0xb104)
> +#define L3_SQ_DISABLE_COAMA_2WAY_COH REG_BIT(30)
> +#define L3_SQ_DISABLE_COAMA REG_BIT(22)
> #define COMPMEMRD256BOVRFETCHEN REG_BIT(20)
>
> #define L3SQCREG3 XE_REG_MCR(0xb108)
> @@ -550,11 +561,16 @@
> #define UGM_FRAGMENT_THRESHOLD_TO_3 REG_BIT(58 - 32)
> #define DIS_CHAIN_2XSIMD8 REG_BIT(55 - 32)
> #define XE2_ALLOC_DPA_STARVE_FIX_DIS REG_BIT(47 - 32)
> +#define SAMPLER_LD_LSC_DISABLE REG_BIT(45 - 32)
> #define ENABLE_SMP_LD_RENDER_SURFACE_CONTROL REG_BIT(44 - 32)
> #define FORCE_SLM_FENCE_SCOPE_TO_TILE REG_BIT(42 - 32)
> #define FORCE_UGM_FENCE_SCOPE_TO_TILE REG_BIT(41 - 32)
> #define MAXREQS_PER_BANK REG_GENMASK(39 - 32, 37 - 32)
> #define DISABLE_128B_EVICTION_COMMAND_UDW REG_BIT(36 - 32)
> +#define LSCFE_SAME_ADDRESS_ATOMICS_COALESCING_DISABLE REG_BIT(35 - 32)
> +
> +#define ROW_CHICKEN5 XE_REG_MCR(0xe7f0)
> +#define CPSS_AWARE_DIS REG_BIT(3)
>
> #define SARB_CHICKEN1 XE_REG_MCR(0xe90c)
> #define COMP_CKN_IN REG_GENMASK(30, 29)
> diff --git a/drivers/gpu/drm/xe/xe_reg_whitelist.c b/drivers/gpu/drm/xe/xe_reg_whitelist.c
> index 1d36c09681aa..9c513778d370 100644
> --- a/drivers/gpu/drm/xe/xe_reg_whitelist.c
> +++ b/drivers/gpu/drm/xe/xe_reg_whitelist.c
> @@ -81,6 +81,14 @@ static const struct xe_rtp_entry_sr register_whitelist[] = {
> WHITELIST(VFLSKPD,
> RING_FORCE_TO_NONPRIV_ACCESS_RW))
> },
> + { XE_RTP_NAME("14024997852"),
> + XE_RTP_RULES(GRAPHICS_VERSION(3510), GRAPHICS_STEP(A0, B0),
> + ENGINE_CLASS(RENDER)),
> + XE_RTP_ACTIONS(WHITELIST(FF_MODE,
> + RING_FORCE_TO_NONPRIV_ACCESS_RW),
> + WHITELIST(VFLSKPD,
> + RING_FORCE_TO_NONPRIV_ACCESS_RW))
> + },
>
> #define WHITELIST_OA_MMIO_TRG(trg, status, head) \
> WHITELIST(trg, RING_FORCE_TO_NONPRIV_ACCESS_RW), \
> diff --git a/drivers/gpu/drm/xe/xe_wa.c b/drivers/gpu/drm/xe/xe_wa.c
> index 1e8d61ac581b..682865f1fc16 100644
> --- a/drivers/gpu/drm/xe/xe_wa.c
> +++ b/drivers/gpu/drm/xe/xe_wa.c
> @@ -325,6 +325,31 @@ static const struct xe_rtp_entry_sr gt_was[] = {
> XE_RTP_RULES(MEDIA_VERSION(3500)),
> XE_RTP_ACTIONS(SET(GUC_INTR_CHICKEN, DISABLE_SIGNALING_ENGINES))
> },
> +
> + /* Xe3P_LPG */
> +
> + { XE_RTP_NAME("14025160223"),
> + XE_RTP_RULES(GRAPHICS_VERSION(3510), GRAPHICS_STEP(A0, B0)),
> + XE_RTP_ACTIONS(SET(MMIOATSREQLIMIT_GAM_WALK_3D,
> + DIS_ATS_WRONLY_PG))
> + },
> + { XE_RTP_NAME("16028780921"),
> + XE_RTP_RULES(GRAPHICS_VERSION(3510), GRAPHICS_STEP(A0, B0)),
> + XE_RTP_ACTIONS(SET(CCCHKNREG2, LOCALITYDIS))
> + },
> + { XE_RTP_NAME("14026144927"),
> + XE_RTP_RULES(GRAPHICS_VERSION(3510), GRAPHICS_STEP(A0, B0)),
> + XE_RTP_ACTIONS(SET(L3SQCREG2, L3_SQ_DISABLE_COAMA_2WAY_COH |
> + L3_SQ_DISABLE_COAMA))
> + },
> + { XE_RTP_NAME("14025635424"),
> + XE_RTP_RULES(GRAPHICS_VERSION(3510), GRAPHICS_STEP(A0, B0)),
> + XE_RTP_ACTIONS(SET(GAMSTLB_CTRL2, STLB_SINGLE_BANK_MODE))
> + },
> + { XE_RTP_NAME("16028005424"),
> + XE_RTP_RULES(GRAPHICS_VERSION(3510), GRAPHICS_STEP(A0, B0)),
> + XE_RTP_ACTIONS(SET(GUC_INTR_CHICKEN, DISABLE_SIGNALING_ENGINES))
> + },
> };
>
> static const struct xe_rtp_entry_sr engine_was[] = {
> @@ -699,6 +724,24 @@ static const struct xe_rtp_entry_sr engine_was[] = {
> FUNC(xe_rtp_match_gt_has_discontiguous_dss_groups)),
> XE_RTP_ACTIONS(SET(TDL_CHICKEN, EUSTALL_PERF_SAMPLING_DISABLE))
> },
> +
> + /* Xe3p_LPG*/
> +
> + { XE_RTP_NAME("22021149932"),
> + XE_RTP_RULES(GRAPHICS_VERSION(3510), GRAPHICS_STEP(A0, B0),
> + FUNC(xe_rtp_match_first_render_or_compute)),
> + XE_RTP_ACTIONS(SET(LSC_CHICKEN_BIT_0_UDW, SAMPLER_LD_LSC_DISABLE))
> + },
> + { XE_RTP_NAME("14025676848"),
> + XE_RTP_RULES(GRAPHICS_VERSION(3510), GRAPHICS_STEP(A0, B0),
> + FUNC(xe_rtp_match_first_render_or_compute)),
> + XE_RTP_ACTIONS(SET(LSC_CHICKEN_BIT_0_UDW, LSCFE_SAME_ADDRESS_ATOMICS_COALESCING_DISABLE))
> + },
> + { XE_RTP_NAME("16028951944"),
> + XE_RTP_RULES(GRAPHICS_VERSION(3510), GRAPHICS_STEP(A0, B0),
> + FUNC(xe_rtp_match_first_render_or_compute)),
> + XE_RTP_ACTIONS(SET(ROW_CHICKEN5, CPSS_AWARE_DIS))
> + },
> };
>
> static const struct xe_rtp_entry_sr lrc_was[] = {
>
> --
> 2.52.0
>
--
Matt Roper
Graphics Software Engineer
Linux GPU Platform Enablement
Intel Corporation
^ permalink raw reply [flat|nested] 21+ messages in thread
* Re: [PATCH v2 01/15] drm/xe/xe3p_lpg: Add support for graphics IP 35.10
2026-02-05 23:39 ` [PATCH v2 01/15] drm/xe/xe3p_lpg: Add support for graphics IP 35.10 Gustavo Sousa
@ 2026-02-06 15:26 ` Matt Roper
0 siblings, 0 replies; 21+ messages in thread
From: Matt Roper @ 2026-02-06 15:26 UTC (permalink / raw)
To: Gustavo Sousa; +Cc: intel-xe, intel-gfx, Shekhar Chauhan
On Thu, Feb 05, 2026 at 08:39:29PM -0300, Gustavo Sousa wrote:
> From: Shekhar Chauhan <shekhar.chauhan@intel.com>
>
> Add Xe3p_LPG graphics IP version 35.10. Xe3p_LPG supports all features
> described by XE2_GFX_FEATURES and also multi-queue feature on BCS and
> CCS engines. As such, create a new struct xe_graphics_desc named
> graphics_xe3p_lpg that inherits from XE2_GFX_FEATURES and also includes
> the necessary .multi_queue_engine_class_mask.
>
> Here is a list of fields and associated Bspec references for the members
> of the IP descriptor:
>
> .hw_engine_mask (Bspec 60149)
> .multi_queue_engine_class_mask (Bspec 74110)
> .has_asid (Bspec 71132)
> .has_atomic_enable_pte_bit (Bspec 59510, 74675)
> .has_indirect_ring_state (Bspec 67296)
> .has_range_tlb_inval (Bspec 71126)
> .has_usm (Bspec 59651)
> .has_64bit_timestamp (Bspec 60318)
>
> v2:
> - Drop non-existing fields from the list in the commit message. (Matt)
> - Squash patch adding .multi_queue_engine_class_mask here. (Matt)
> - Rename graphics_xe3p to graphics_xe3p_lpg. (Matt)
>
> Cc: Matt Roper <matthew.d.roper@intel.com>
> Signed-off-by: Shekhar Chauhan <shekhar.chauhan@intel.com>
> Signed-off-by: Gustavo Sousa <gustavo.sousa@intel.com>
Reviewed-by: Matt Roper <matthew.d.roper@intel.com>
> ---
> drivers/gpu/drm/xe/xe_pci.c | 6 ++++++
> 1 file changed, 6 insertions(+)
>
> diff --git a/drivers/gpu/drm/xe/xe_pci.c b/drivers/gpu/drm/xe/xe_pci.c
> index b5e8935fff1d..08e0ff9f75e8 100644
> --- a/drivers/gpu/drm/xe/xe_pci.c
> +++ b/drivers/gpu/drm/xe/xe_pci.c
> @@ -106,6 +106,11 @@ static const struct xe_graphics_desc graphics_xe2 = {
> XE2_GFX_FEATURES,
> };
>
> +static const struct xe_graphics_desc graphics_xe3p_lpg = {
> + XE2_GFX_FEATURES,
> + .multi_queue_engine_class_mask = BIT(XE_ENGINE_CLASS_COPY) | BIT(XE_ENGINE_CLASS_COMPUTE),
> +};
> +
> static const struct xe_graphics_desc graphics_xe3p_xpc = {
> XE2_GFX_FEATURES,
> .has_indirect_ring_state = 1,
> @@ -148,6 +153,7 @@ static const struct xe_ip graphics_ips[] = {
> { 3003, "Xe3_LPG", &graphics_xe2 },
> { 3004, "Xe3_LPG", &graphics_xe2 },
> { 3005, "Xe3_LPG", &graphics_xe2 },
> + { 3510, "Xe3p_LPG", &graphics_xe3p_lpg },
> { 3511, "Xe3p_XPC", &graphics_xe3p_xpc },
> };
>
>
> --
> 2.52.0
>
--
Matt Roper
Graphics Software Engineer
Linux GPU Platform Enablement
Intel Corporation
^ permalink raw reply [flat|nested] 21+ messages in thread
* ✓ i915.CI.Full: success for Basic enabling patches for Xe3p_LPG and NVL-P (rev2)
2026-02-05 23:39 [PATCH v2 00/15] Basic enabling patches for Xe3p_LPG and NVL-P Gustavo Sousa
` (15 preceding siblings ...)
2026-02-06 0:57 ` ✓ i915.CI.BAT: success for Basic enabling patches for Xe3p_LPG and NVL-P (rev2) Patchwork
@ 2026-02-06 22:08 ` Patchwork
16 siblings, 0 replies; 21+ messages in thread
From: Patchwork @ 2026-02-06 22:08 UTC (permalink / raw)
To: Gustavo Sousa; +Cc: intel-gfx
[-- Attachment #1: Type: text/plain, Size: 118333 bytes --]
== Series Details ==
Series: Basic enabling patches for Xe3p_LPG and NVL-P (rev2)
URL : https://patchwork.freedesktop.org/series/161036/
State : success
== Summary ==
CI Bug Log - changes from CI_DRM_17945_full -> Patchwork_161036v2_full
====================================================
Summary
-------
**SUCCESS**
No regressions found.
Participating hosts (10 -> 10)
------------------------------
No changes in participating hosts
Known issues
------------
Here are the changes found in Patchwork_161036v2_full that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@api_intel_bb@object-reloc-purge-cache:
- shard-rkl: NOTRUN -> [SKIP][1] ([i915#14544] / [i915#8411])
[1]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_161036v2/shard-rkl-6/igt@api_intel_bb@object-reloc-purge-cache.html
* igt@drm_buddy@drm_buddy:
- shard-dg2: NOTRUN -> [DMESG-WARN][2] ([i915#15095]) +1 other test dmesg-warn
[2]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_161036v2/shard-dg2-3/igt@drm_buddy@drm_buddy.html
* igt@drm_buddy@drm_buddy@drm_test_buddy_fragmentation_performance:
- shard-dg1: NOTRUN -> [DMESG-WARN][3] ([i915#15095]) +1 other test dmesg-warn
[3]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_161036v2/shard-dg1-18/igt@drm_buddy@drm_buddy@drm_test_buddy_fragmentation_performance.html
* igt@gem_bad_reloc@negative-reloc-lut:
- shard-mtlp: NOTRUN -> [SKIP][4] ([i915#3281])
[4]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_161036v2/shard-mtlp-5/igt@gem_bad_reloc@negative-reloc-lut.html
* igt@gem_basic@multigpu-create-close:
- shard-rkl: NOTRUN -> [SKIP][5] ([i915#7697])
[5]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_161036v2/shard-rkl-3/igt@gem_basic@multigpu-create-close.html
* igt@gem_ccs@ctrl-surf-copy:
- shard-tglu-1: NOTRUN -> [SKIP][6] ([i915#3555] / [i915#9323])
[6]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_161036v2/shard-tglu-1/igt@gem_ccs@ctrl-surf-copy.html
* igt@gem_ccs@suspend-resume@tile64-compressed-compfmt0-lmem0-lmem0:
- shard-dg2: NOTRUN -> [INCOMPLETE][7] ([i915#12392] / [i915#13356])
[7]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_161036v2/shard-dg2-6/igt@gem_ccs@suspend-resume@tile64-compressed-compfmt0-lmem0-lmem0.html
* igt@gem_ctx_freq@sysfs@gt0:
- shard-dg2: [PASS][8] -> [FAIL][9] ([i915#9561]) +1 other test fail
[8]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17945/shard-dg2-3/igt@gem_ctx_freq@sysfs@gt0.html
[9]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_161036v2/shard-dg2-8/igt@gem_ctx_freq@sysfs@gt0.html
* igt@gem_ctx_isolation@preservation-s3@bcs0:
- shard-rkl: NOTRUN -> [INCOMPLETE][10] ([i915#13356])
[10]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_161036v2/shard-rkl-3/igt@gem_ctx_isolation@preservation-s3@bcs0.html
* igt@gem_ctx_isolation@preservation-s3@rcs0:
- shard-glk: NOTRUN -> [INCOMPLETE][11] ([i915#13356]) +1 other test incomplete
[11]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_161036v2/shard-glk5/igt@gem_ctx_isolation@preservation-s3@rcs0.html
* igt@gem_ctx_sseu@mmap-args:
- shard-rkl: NOTRUN -> [SKIP][12] ([i915#280])
[12]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_161036v2/shard-rkl-7/igt@gem_ctx_sseu@mmap-args.html
* igt@gem_exec_balancer@parallel:
- shard-rkl: NOTRUN -> [SKIP][13] ([i915#14544] / [i915#4525])
[13]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_161036v2/shard-rkl-6/igt@gem_exec_balancer@parallel.html
* igt@gem_exec_balancer@parallel-dmabuf-import-out-fence:
- shard-tglu-1: NOTRUN -> [SKIP][14] ([i915#4525])
[14]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_161036v2/shard-tglu-1/igt@gem_exec_balancer@parallel-dmabuf-import-out-fence.html
* igt@gem_exec_capture@capture-recoverable:
- shard-rkl: NOTRUN -> [SKIP][15] ([i915#6344])
[15]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_161036v2/shard-rkl-7/igt@gem_exec_capture@capture-recoverable.html
* igt@gem_exec_capture@capture@vecs0-lmem0:
- shard-dg2: NOTRUN -> [FAIL][16] ([i915#11965]) +4 other tests fail
[16]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_161036v2/shard-dg2-3/igt@gem_exec_capture@capture@vecs0-lmem0.html
- shard-dg1: NOTRUN -> [FAIL][17] ([i915#11965]) +2 other tests fail
[17]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_161036v2/shard-dg1-18/igt@gem_exec_capture@capture@vecs0-lmem0.html
* igt@gem_exec_flush@basic-uc-prw-default:
- shard-dg2: NOTRUN -> [SKIP][18] ([i915#3539])
[18]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_161036v2/shard-dg2-3/igt@gem_exec_flush@basic-uc-prw-default.html
- shard-dg1: NOTRUN -> [SKIP][19] ([i915#3539])
[19]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_161036v2/shard-dg1-18/igt@gem_exec_flush@basic-uc-prw-default.html
* igt@gem_exec_reloc@basic-gtt-wc-active:
- shard-dg2: NOTRUN -> [SKIP][20] ([i915#3281]) +1 other test skip
[20]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_161036v2/shard-dg2-3/igt@gem_exec_reloc@basic-gtt-wc-active.html
- shard-dg1: NOTRUN -> [SKIP][21] ([i915#3281]) +1 other test skip
[21]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_161036v2/shard-dg1-18/igt@gem_exec_reloc@basic-gtt-wc-active.html
* igt@gem_exec_reloc@basic-wc-gtt-active:
- shard-rkl: NOTRUN -> [SKIP][22] ([i915#14544] / [i915#3281])
[22]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_161036v2/shard-rkl-6/igt@gem_exec_reloc@basic-wc-gtt-active.html
* igt@gem_exec_reloc@basic-write-read:
- shard-rkl: NOTRUN -> [SKIP][23] ([i915#3281]) +4 other tests skip
[23]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_161036v2/shard-rkl-7/igt@gem_exec_reloc@basic-write-read.html
* igt@gem_fenced_exec_thrash@2-spare-fences:
- shard-mtlp: NOTRUN -> [SKIP][24] ([i915#4860])
[24]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_161036v2/shard-mtlp-5/igt@gem_fenced_exec_thrash@2-spare-fences.html
* igt@gem_lmem_swapping@parallel-random-engines:
- shard-glk: NOTRUN -> [SKIP][25] ([i915#4613]) +1 other test skip
[25]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_161036v2/shard-glk1/igt@gem_lmem_swapping@parallel-random-engines.html
* igt@gem_lmem_swapping@parallel-random-verify-ccs:
- shard-tglu-1: NOTRUN -> [SKIP][26] ([i915#4613]) +3 other tests skip
[26]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_161036v2/shard-tglu-1/igt@gem_lmem_swapping@parallel-random-verify-ccs.html
* igt@gem_lmem_swapping@random-engines:
- shard-rkl: NOTRUN -> [SKIP][27] ([i915#14544] / [i915#4613])
[27]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_161036v2/shard-rkl-6/igt@gem_lmem_swapping@random-engines.html
* igt@gem_lmem_swapping@verify-ccs:
- shard-tglu: NOTRUN -> [SKIP][28] ([i915#4613])
[28]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_161036v2/shard-tglu-9/igt@gem_lmem_swapping@verify-ccs.html
* igt@gem_lmem_swapping@verify-random-ccs:
- shard-mtlp: NOTRUN -> [SKIP][29] ([i915#4613])
[29]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_161036v2/shard-mtlp-5/igt@gem_lmem_swapping@verify-random-ccs.html
* igt@gem_mmap_gtt@ptrace:
- shard-dg2: NOTRUN -> [SKIP][30] ([i915#4077]) +2 other tests skip
[30]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_161036v2/shard-dg2-3/igt@gem_mmap_gtt@ptrace.html
- shard-dg1: NOTRUN -> [SKIP][31] ([i915#4077]) +2 other tests skip
[31]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_161036v2/shard-dg1-18/igt@gem_mmap_gtt@ptrace.html
* igt@gem_mmap_wc@coherency:
- shard-dg2: NOTRUN -> [SKIP][32] ([i915#4083]) +1 other test skip
[32]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_161036v2/shard-dg2-3/igt@gem_mmap_wc@coherency.html
- shard-dg1: NOTRUN -> [SKIP][33] ([i915#4083]) +1 other test skip
[33]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_161036v2/shard-dg1-18/igt@gem_mmap_wc@coherency.html
* igt@gem_partial_pwrite_pread@write-display:
- shard-mtlp: NOTRUN -> [SKIP][34] ([i915#3282])
[34]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_161036v2/shard-mtlp-5/igt@gem_partial_pwrite_pread@write-display.html
* igt@gem_partial_pwrite_pread@writes-after-reads-uncached:
- shard-rkl: NOTRUN -> [SKIP][35] ([i915#3282]) +5 other tests skip
[35]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_161036v2/shard-rkl-7/igt@gem_partial_pwrite_pread@writes-after-reads-uncached.html
* igt@gem_pread@exhaustion:
- shard-tglu-1: NOTRUN -> [WARN][36] ([i915#2658]) +1 other test warn
[36]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_161036v2/shard-tglu-1/igt@gem_pread@exhaustion.html
* igt@gem_pxp@hw-rejects-pxp-context:
- shard-tglu-1: NOTRUN -> [SKIP][37] ([i915#13398])
[37]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_161036v2/shard-tglu-1/igt@gem_pxp@hw-rejects-pxp-context.html
* igt@gem_pxp@regular-baseline-src-copy-readible:
- shard-dg2: NOTRUN -> [SKIP][38] ([i915#4270]) +1 other test skip
[38]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_161036v2/shard-dg2-3/igt@gem_pxp@regular-baseline-src-copy-readible.html
- shard-dg1: NOTRUN -> [SKIP][39] ([i915#4270]) +1 other test skip
[39]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_161036v2/shard-dg1-18/igt@gem_pxp@regular-baseline-src-copy-readible.html
* igt@gem_render_copy@x-tiled-to-vebox-yf-tiled:
- shard-mtlp: NOTRUN -> [SKIP][40] ([i915#8428]) +1 other test skip
[40]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_161036v2/shard-mtlp-5/igt@gem_render_copy@x-tiled-to-vebox-yf-tiled.html
* igt@gem_render_copy@y-tiled-ccs-to-y-tiled-mc-ccs:
- shard-glk: NOTRUN -> [SKIP][41] +344 other tests skip
[41]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_161036v2/shard-glk1/igt@gem_render_copy@y-tiled-ccs-to-y-tiled-mc-ccs.html
* igt@gem_render_copy@y-tiled-ccs-to-yf-tiled-mc-ccs:
- shard-dg2: NOTRUN -> [SKIP][42] ([i915#5190] / [i915#8428])
[42]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_161036v2/shard-dg2-3/igt@gem_render_copy@y-tiled-ccs-to-yf-tiled-mc-ccs.html
* igt@gem_set_tiling_vs_blt@tiled-to-untiled:
- shard-dg2: NOTRUN -> [SKIP][43] ([i915#4079]) +1 other test skip
[43]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_161036v2/shard-dg2-3/igt@gem_set_tiling_vs_blt@tiled-to-untiled.html
- shard-dg1: NOTRUN -> [SKIP][44] ([i915#4079]) +1 other test skip
[44]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_161036v2/shard-dg1-18/igt@gem_set_tiling_vs_blt@tiled-to-untiled.html
* igt@gem_set_tiling_vs_blt@untiled-to-tiled:
- shard-mtlp: NOTRUN -> [SKIP][45] ([i915#4079])
[45]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_161036v2/shard-mtlp-5/igt@gem_set_tiling_vs_blt@untiled-to-tiled.html
* igt@gem_softpin@evict-snoop:
- shard-rkl: NOTRUN -> [SKIP][46] ([i915#14544]) +4 other tests skip
[46]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_161036v2/shard-rkl-6/igt@gem_softpin@evict-snoop.html
* igt@gem_userptr_blits@unsync-overlap:
- shard-dg2: NOTRUN -> [SKIP][47] ([i915#3297])
[47]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_161036v2/shard-dg2-3/igt@gem_userptr_blits@unsync-overlap.html
- shard-dg1: NOTRUN -> [SKIP][48] ([i915#3297])
[48]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_161036v2/shard-dg1-18/igt@gem_userptr_blits@unsync-overlap.html
* igt@gem_userptr_blits@unsync-unmap-after-close:
- shard-tglu: NOTRUN -> [SKIP][49] ([i915#3297]) +2 other tests skip
[49]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_161036v2/shard-tglu-9/igt@gem_userptr_blits@unsync-unmap-after-close.html
* igt@gem_userptr_blits@unsync-unmap-cycles:
- shard-tglu-1: NOTRUN -> [SKIP][50] ([i915#3297])
[50]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_161036v2/shard-tglu-1/igt@gem_userptr_blits@unsync-unmap-cycles.html
* igt@gen7_exec_parse@basic-rejected:
- shard-dg2: NOTRUN -> [SKIP][51] +4 other tests skip
[51]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_161036v2/shard-dg2-3/igt@gen7_exec_parse@basic-rejected.html
* igt@gen7_exec_parse@bitmasks:
- shard-glk10: NOTRUN -> [SKIP][52] +129 other tests skip
[52]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_161036v2/shard-glk10/igt@gen7_exec_parse@bitmasks.html
* igt@gen9_exec_parse@bb-oversize:
- shard-tglu-1: NOTRUN -> [SKIP][53] ([i915#2527] / [i915#2856]) +2 other tests skip
[53]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_161036v2/shard-tglu-1/igt@gen9_exec_parse@bb-oversize.html
* igt@gen9_exec_parse@bb-start-far:
- shard-rkl: NOTRUN -> [SKIP][54] ([i915#2527])
[54]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_161036v2/shard-rkl-3/igt@gen9_exec_parse@bb-start-far.html
* igt@gen9_exec_parse@secure-batches:
- shard-tglu: NOTRUN -> [SKIP][55] ([i915#2527] / [i915#2856]) +1 other test skip
[55]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_161036v2/shard-tglu-9/igt@gen9_exec_parse@secure-batches.html
* igt@i915_drm_fdinfo@all-busy-check-all:
- shard-mtlp: NOTRUN -> [SKIP][56] ([i915#14123])
[56]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_161036v2/shard-mtlp-5/igt@i915_drm_fdinfo@all-busy-check-all.html
* igt@i915_drm_fdinfo@busy-idle@bcs0:
- shard-dg1: NOTRUN -> [SKIP][57] ([i915#14073]) +5 other tests skip
[57]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_161036v2/shard-dg1-18/igt@i915_drm_fdinfo@busy-idle@bcs0.html
* igt@i915_drm_fdinfo@busy-idle@vecs0:
- shard-dg2: NOTRUN -> [SKIP][58] ([i915#14073]) +7 other tests skip
[58]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_161036v2/shard-dg2-3/igt@i915_drm_fdinfo@busy-idle@vecs0.html
* igt@i915_module_load@fault-injection@intel_connector_register:
- shard-tglu: NOTRUN -> [ABORT][59] ([i915#15342]) +1 other test abort
[59]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_161036v2/shard-tglu-9/igt@i915_module_load@fault-injection@intel_connector_register.html
- shard-glk: NOTRUN -> [ABORT][60] ([i915#15342]) +1 other test abort
[60]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_161036v2/shard-glk1/igt@i915_module_load@fault-injection@intel_connector_register.html
* igt@i915_module_load@fault-injection@uc_fw_rsa_data_create:
- shard-tglu: NOTRUN -> [SKIP][61] ([i915#15479]) +4 other tests skip
[61]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_161036v2/shard-tglu-9/igt@i915_module_load@fault-injection@uc_fw_rsa_data_create.html
* igt@i915_pm_freq_api@freq-basic-api:
- shard-rkl: NOTRUN -> [SKIP][62] ([i915#14544] / [i915#8399])
[62]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_161036v2/shard-rkl-6/igt@i915_pm_freq_api@freq-basic-api.html
* igt@i915_pm_freq_api@freq-suspend:
- shard-tglu-1: NOTRUN -> [SKIP][63] ([i915#8399])
[63]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_161036v2/shard-tglu-1/igt@i915_pm_freq_api@freq-suspend.html
* igt@i915_power@sanity:
- shard-rkl: NOTRUN -> [SKIP][64] ([i915#7984])
[64]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_161036v2/shard-rkl-4/igt@i915_power@sanity.html
* igt@i915_query@test-query-geometry-subslices:
- shard-dg1: NOTRUN -> [SKIP][65] ([i915#5723])
[65]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_161036v2/shard-dg1-18/igt@i915_query@test-query-geometry-subslices.html
* igt@i915_suspend@fence-restore-tiled2untiled:
- shard-rkl: [PASS][66] -> [ABORT][67] ([i915#15140])
[66]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17945/shard-rkl-4/igt@i915_suspend@fence-restore-tiled2untiled.html
[67]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_161036v2/shard-rkl-1/igt@i915_suspend@fence-restore-tiled2untiled.html
* igt@intel_hwmon@hwmon-read:
- shard-tglu-1: NOTRUN -> [SKIP][68] ([i915#7707])
[68]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_161036v2/shard-tglu-1/igt@intel_hwmon@hwmon-read.html
* igt@kms_addfb_basic@basic-y-tiled-legacy:
- shard-dg2: NOTRUN -> [SKIP][69] ([i915#4215] / [i915#5190])
[69]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_161036v2/shard-dg2-3/igt@kms_addfb_basic@basic-y-tiled-legacy.html
- shard-dg1: NOTRUN -> [SKIP][70] ([i915#4215])
[70]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_161036v2/shard-dg1-18/igt@kms_addfb_basic@basic-y-tiled-legacy.html
* igt@kms_atomic_transition@plane-all-modeset-transition:
- shard-dg1: [PASS][71] -> [FAIL][72] ([i915#5956])
[71]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17945/shard-dg1-18/igt@kms_atomic_transition@plane-all-modeset-transition.html
[72]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_161036v2/shard-dg1-14/igt@kms_atomic_transition@plane-all-modeset-transition.html
* igt@kms_atomic_transition@plane-all-modeset-transition@pipe-a-hdmi-a-1:
- shard-dg1: NOTRUN -> [FAIL][73] ([i915#5956])
[73]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_161036v2/shard-dg1-14/igt@kms_atomic_transition@plane-all-modeset-transition@pipe-a-hdmi-a-1.html
* igt@kms_big_fb@4-tiled-16bpp-rotate-270:
- shard-dg1: NOTRUN -> [SKIP][74] ([i915#4538] / [i915#5286])
[74]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_161036v2/shard-dg1-18/igt@kms_big_fb@4-tiled-16bpp-rotate-270.html
* igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0-hflip:
- shard-tglu-1: NOTRUN -> [SKIP][75] ([i915#5286]) +2 other tests skip
[75]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_161036v2/shard-tglu-1/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0-hflip.html
* igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-180-hflip:
- shard-tglu: NOTRUN -> [SKIP][76] ([i915#5286]) +2 other tests skip
[76]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_161036v2/shard-tglu-9/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-180-hflip.html
* igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-hflip:
- shard-mtlp: [PASS][77] -> [FAIL][78] ([i915#5138])
[77]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17945/shard-mtlp-5/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-hflip.html
[78]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_161036v2/shard-mtlp-7/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-hflip.html
* igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180:
- shard-rkl: NOTRUN -> [SKIP][79] ([i915#5286]) +1 other test skip
[79]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_161036v2/shard-rkl-7/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180.html
* igt@kms_big_fb@linear-64bpp-rotate-90:
- shard-rkl: NOTRUN -> [SKIP][80] ([i915#3638])
[80]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_161036v2/shard-rkl-3/igt@kms_big_fb@linear-64bpp-rotate-90.html
* igt@kms_big_fb@linear-max-hw-stride-32bpp-rotate-180-hflip:
- shard-dg2: NOTRUN -> [SKIP][81] ([i915#3828])
[81]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_161036v2/shard-dg2-3/igt@kms_big_fb@linear-max-hw-stride-32bpp-rotate-180-hflip.html
- shard-dg1: NOTRUN -> [SKIP][82] ([i915#3828])
[82]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_161036v2/shard-dg1-18/igt@kms_big_fb@linear-max-hw-stride-32bpp-rotate-180-hflip.html
* igt@kms_big_fb@linear-max-hw-stride-64bpp-rotate-0-hflip:
- shard-tglu: NOTRUN -> [SKIP][83] ([i915#3828])
[83]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_161036v2/shard-tglu-9/igt@kms_big_fb@linear-max-hw-stride-64bpp-rotate-0-hflip.html
* igt@kms_big_fb@y-tiled-addfb-size-offset-overflow:
- shard-dg2: NOTRUN -> [SKIP][84] ([i915#5190]) +1 other test skip
[84]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_161036v2/shard-dg2-3/igt@kms_big_fb@y-tiled-addfb-size-offset-overflow.html
* igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-0-async-flip:
- shard-dg2: NOTRUN -> [SKIP][85] ([i915#4538] / [i915#5190]) +1 other test skip
[85]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_161036v2/shard-dg2-3/igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-0-async-flip.html
* igt@kms_big_fb@yf-tiled-32bpp-rotate-270:
- shard-dg1: NOTRUN -> [SKIP][86] ([i915#4538])
[86]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_161036v2/shard-dg1-18/igt@kms_big_fb@yf-tiled-32bpp-rotate-270.html
* igt@kms_big_fb@yf-tiled-64bpp-rotate-180:
- shard-mtlp: NOTRUN -> [SKIP][87] +1 other test skip
[87]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_161036v2/shard-mtlp-5/igt@kms_big_fb@yf-tiled-64bpp-rotate-180.html
* igt@kms_ccs@bad-aux-stride-4-tiled-mtl-rc-ccs@pipe-c-hdmi-a-2:
- shard-rkl: NOTRUN -> [SKIP][88] ([i915#14098] / [i915#14544] / [i915#6095]) +4 other tests skip
[88]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_161036v2/shard-rkl-6/igt@kms_ccs@bad-aux-stride-4-tiled-mtl-rc-ccs@pipe-c-hdmi-a-2.html
* igt@kms_ccs@bad-pixel-format-4-tiled-dg2-rc-ccs-cc@pipe-c-edp-1:
- shard-mtlp: NOTRUN -> [SKIP][89] ([i915#6095]) +4 other tests skip
[89]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_161036v2/shard-mtlp-5/igt@kms_ccs@bad-pixel-format-4-tiled-dg2-rc-ccs-cc@pipe-c-edp-1.html
* igt@kms_ccs@bad-rotation-90-4-tiled-dg2-mc-ccs@pipe-d-hdmi-a-3:
- shard-dg2: NOTRUN -> [SKIP][90] ([i915#6095]) +73 other tests skip
[90]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_161036v2/shard-dg2-5/igt@kms_ccs@bad-rotation-90-4-tiled-dg2-mc-ccs@pipe-d-hdmi-a-3.html
* igt@kms_ccs@bad-rotation-90-4-tiled-dg2-rc-ccs-cc@pipe-c-hdmi-a-2:
- shard-rkl: NOTRUN -> [SKIP][91] ([i915#14098] / [i915#6095]) +42 other tests skip
[91]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_161036v2/shard-rkl-3/igt@kms_ccs@bad-rotation-90-4-tiled-dg2-rc-ccs-cc@pipe-c-hdmi-a-2.html
* igt@kms_ccs@bad-rotation-90-4-tiled-mtl-rc-ccs-cc@pipe-a-hdmi-a-2:
- shard-rkl: NOTRUN -> [SKIP][92] ([i915#14544] / [i915#6095]) +7 other tests skip
[92]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_161036v2/shard-rkl-6/igt@kms_ccs@bad-rotation-90-4-tiled-mtl-rc-ccs-cc@pipe-a-hdmi-a-2.html
* igt@kms_ccs@bad-rotation-90-y-tiled-gen12-mc-ccs:
- shard-tglu: NOTRUN -> [SKIP][93] ([i915#6095]) +29 other tests skip
[93]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_161036v2/shard-tglu-9/igt@kms_ccs@bad-rotation-90-y-tiled-gen12-mc-ccs.html
* igt@kms_ccs@crc-primary-basic-4-tiled-lnl-ccs:
- shard-mtlp: NOTRUN -> [SKIP][94] ([i915#12313])
[94]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_161036v2/shard-mtlp-5/igt@kms_ccs@crc-primary-basic-4-tiled-lnl-ccs.html
* igt@kms_ccs@crc-primary-basic-4-tiled-mtl-mc-ccs@pipe-d-hdmi-a-1:
- shard-dg2: NOTRUN -> [SKIP][95] ([i915#10307] / [i915#6095]) +133 other tests skip
[95]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_161036v2/shard-dg2-4/igt@kms_ccs@crc-primary-basic-4-tiled-mtl-mc-ccs@pipe-d-hdmi-a-1.html
* igt@kms_ccs@crc-primary-rotation-180-4-tiled-lnl-ccs:
- shard-tglu: NOTRUN -> [SKIP][96] ([i915#12313])
[96]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_161036v2/shard-tglu-9/igt@kms_ccs@crc-primary-rotation-180-4-tiled-lnl-ccs.html
* igt@kms_ccs@crc-primary-rotation-180-yf-tiled-ccs@pipe-d-hdmi-a-1:
- shard-dg2: NOTRUN -> [SKIP][97] ([i915#10307] / [i915#10434] / [i915#6095]) +3 other tests skip
[97]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_161036v2/shard-dg2-4/igt@kms_ccs@crc-primary-rotation-180-yf-tiled-ccs@pipe-d-hdmi-a-1.html
* igt@kms_ccs@crc-primary-suspend-4-tiled-mtl-rc-ccs-cc@pipe-c-hdmi-a-1:
- shard-tglu-1: NOTRUN -> [SKIP][98] ([i915#6095]) +59 other tests skip
[98]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_161036v2/shard-tglu-1/igt@kms_ccs@crc-primary-suspend-4-tiled-mtl-rc-ccs-cc@pipe-c-hdmi-a-1.html
* igt@kms_ccs@crc-sprite-planes-basic-4-tiled-mtl-rc-ccs@pipe-a-hdmi-a-2:
- shard-rkl: NOTRUN -> [SKIP][99] ([i915#6095]) +73 other tests skip
[99]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_161036v2/shard-rkl-4/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-mtl-rc-ccs@pipe-a-hdmi-a-2.html
* igt@kms_ccs@random-ccs-data-4-tiled-bmg-ccs:
- shard-rkl: NOTRUN -> [SKIP][100] ([i915#12313] / [i915#14544])
[100]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_161036v2/shard-rkl-6/igt@kms_ccs@random-ccs-data-4-tiled-bmg-ccs.html
* igt@kms_ccs@random-ccs-data-yf-tiled-ccs@pipe-a-hdmi-a-3:
- shard-dg1: NOTRUN -> [SKIP][101] ([i915#6095]) +219 other tests skip
[101]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_161036v2/shard-dg1-12/igt@kms_ccs@random-ccs-data-yf-tiled-ccs@pipe-a-hdmi-a-3.html
* igt@kms_cdclk@mode-transition@pipe-d-hdmi-a-1:
- shard-dg2: NOTRUN -> [SKIP][102] ([i915#13781]) +3 other tests skip
[102]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_161036v2/shard-dg2-4/igt@kms_cdclk@mode-transition@pipe-d-hdmi-a-1.html
* igt@kms_chamelium_edid@hdmi-edid-change-during-suspend:
- shard-rkl: NOTRUN -> [SKIP][103] ([i915#11151] / [i915#7828]) +1 other test skip
[103]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_161036v2/shard-rkl-7/igt@kms_chamelium_edid@hdmi-edid-change-during-suspend.html
* igt@kms_chamelium_frames@dp-crc-multiple:
- shard-dg2: NOTRUN -> [SKIP][104] ([i915#11151] / [i915#7828]) +1 other test skip
[104]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_161036v2/shard-dg2-3/igt@kms_chamelium_frames@dp-crc-multiple.html
- shard-dg1: NOTRUN -> [SKIP][105] ([i915#11151] / [i915#7828]) +1 other test skip
[105]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_161036v2/shard-dg1-18/igt@kms_chamelium_frames@dp-crc-multiple.html
* igt@kms_chamelium_frames@hdmi-crc-nonplanar-formats:
- shard-rkl: NOTRUN -> [SKIP][106] ([i915#11151] / [i915#14544] / [i915#7828]) +1 other test skip
[106]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_161036v2/shard-rkl-6/igt@kms_chamelium_frames@hdmi-crc-nonplanar-formats.html
* igt@kms_chamelium_hpd@vga-hpd-for-each-pipe:
- shard-tglu-1: NOTRUN -> [SKIP][107] ([i915#11151] / [i915#7828]) +4 other tests skip
[107]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_161036v2/shard-tglu-1/igt@kms_chamelium_hpd@vga-hpd-for-each-pipe.html
* igt@kms_chamelium_hpd@vga-hpd-without-ddc:
- shard-tglu: NOTRUN -> [SKIP][108] ([i915#11151] / [i915#7828]) +3 other tests skip
[108]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_161036v2/shard-tglu-9/igt@kms_chamelium_hpd@vga-hpd-without-ddc.html
* igt@kms_color@deep-color:
- shard-dg2: [PASS][109] -> [SKIP][110] ([i915#12655] / [i915#3555])
[109]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17945/shard-dg2-11/igt@kms_color@deep-color.html
[110]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_161036v2/shard-dg2-5/igt@kms_color@deep-color.html
* igt@kms_content_protection@atomic:
- shard-dg2: NOTRUN -> [SKIP][111] ([i915#6944] / [i915#7118] / [i915#9424])
[111]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_161036v2/shard-dg2-3/igt@kms_content_protection@atomic.html
- shard-dg1: NOTRUN -> [SKIP][112] ([i915#6944] / [i915#7116] / [i915#9424])
[112]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_161036v2/shard-dg1-18/igt@kms_content_protection@atomic.html
* igt@kms_content_protection@dp-mst-lic-type-0-hdcp14:
- shard-rkl: NOTRUN -> [SKIP][113] ([i915#15330]) +1 other test skip
[113]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_161036v2/shard-rkl-7/igt@kms_content_protection@dp-mst-lic-type-0-hdcp14.html
* igt@kms_content_protection@dp-mst-lic-type-1:
- shard-rkl: NOTRUN -> [SKIP][114] ([i915#15330] / [i915#3116])
[114]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_161036v2/shard-rkl-3/igt@kms_content_protection@dp-mst-lic-type-1.html
* igt@kms_content_protection@dp-mst-type-0-suspend-resume:
- shard-tglu: NOTRUN -> [SKIP][115] ([i915#15330])
[115]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_161036v2/shard-tglu-9/igt@kms_content_protection@dp-mst-type-0-suspend-resume.html
* igt@kms_content_protection@legacy:
- shard-tglu-1: NOTRUN -> [SKIP][116] ([i915#6944] / [i915#7116] / [i915#7118] / [i915#9424])
[116]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_161036v2/shard-tglu-1/igt@kms_content_protection@legacy.html
* igt@kms_content_protection@legacy-hdcp14:
- shard-tglu-1: NOTRUN -> [SKIP][117] ([i915#6944])
[117]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_161036v2/shard-tglu-1/igt@kms_content_protection@legacy-hdcp14.html
* igt@kms_content_protection@legacy@pipe-a-dp-3:
- shard-dg2: NOTRUN -> [FAIL][118] ([i915#7173]) +1 other test fail
[118]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_161036v2/shard-dg2-11/igt@kms_content_protection@legacy@pipe-a-dp-3.html
* igt@kms_content_protection@mei-interface:
- shard-tglu: NOTRUN -> [SKIP][119] ([i915#6944] / [i915#9424])
[119]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_161036v2/shard-tglu-9/igt@kms_content_protection@mei-interface.html
* igt@kms_content_protection@srm:
- shard-tglu-1: NOTRUN -> [SKIP][120] ([i915#6944] / [i915#7116] / [i915#7118])
[120]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_161036v2/shard-tglu-1/igt@kms_content_protection@srm.html
* igt@kms_cursor_crc@cursor-offscreen-32x10:
- shard-rkl: NOTRUN -> [SKIP][121] ([i915#3555])
[121]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_161036v2/shard-rkl-7/igt@kms_cursor_crc@cursor-offscreen-32x10.html
* igt@kms_cursor_crc@cursor-offscreen-64x21:
- shard-mtlp: NOTRUN -> [SKIP][122] ([i915#8814])
[122]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_161036v2/shard-mtlp-5/igt@kms_cursor_crc@cursor-offscreen-64x21.html
* igt@kms_cursor_crc@cursor-onscreen-32x32:
- shard-tglu-1: NOTRUN -> [SKIP][123] ([i915#3555]) +3 other tests skip
[123]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_161036v2/shard-tglu-1/igt@kms_cursor_crc@cursor-onscreen-32x32.html
* igt@kms_cursor_crc@cursor-onscreen-512x512:
- shard-tglu: NOTRUN -> [SKIP][124] ([i915#13049]) +1 other test skip
[124]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_161036v2/shard-tglu-9/igt@kms_cursor_crc@cursor-onscreen-512x512.html
* igt@kms_cursor_crc@cursor-random-256x85@pipe-a-hdmi-a-2:
- shard-rkl: NOTRUN -> [FAIL][125] ([i915#13566]) +1 other test fail
[125]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_161036v2/shard-rkl-7/igt@kms_cursor_crc@cursor-random-256x85@pipe-a-hdmi-a-2.html
* igt@kms_cursor_crc@cursor-sliding-512x170:
- shard-dg2: NOTRUN -> [SKIP][126] ([i915#13049])
[126]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_161036v2/shard-dg2-3/igt@kms_cursor_crc@cursor-sliding-512x170.html
- shard-dg1: NOTRUN -> [SKIP][127] ([i915#13049])
[127]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_161036v2/shard-dg1-18/igt@kms_cursor_crc@cursor-sliding-512x170.html
* igt@kms_cursor_crc@cursor-suspend:
- shard-glk10: NOTRUN -> [INCOMPLETE][128] ([i915#12358] / [i915#14152] / [i915#7882])
[128]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_161036v2/shard-glk10/igt@kms_cursor_crc@cursor-suspend.html
* igt@kms_cursor_crc@cursor-suspend@pipe-a-hdmi-a-1:
- shard-glk10: NOTRUN -> [INCOMPLETE][129] ([i915#12358] / [i915#14152])
[129]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_161036v2/shard-glk10/igt@kms_cursor_crc@cursor-suspend@pipe-a-hdmi-a-1.html
* igt@kms_cursor_legacy@cursorb-vs-flipa-atomic-transitions-varying-size:
- shard-dg2: NOTRUN -> [SKIP][130] ([i915#13046] / [i915#5354])
[130]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_161036v2/shard-dg2-3/igt@kms_cursor_legacy@cursorb-vs-flipa-atomic-transitions-varying-size.html
* igt@kms_cursor_legacy@cursorb-vs-flipa-legacy:
- shard-rkl: NOTRUN -> [SKIP][131] +9 other tests skip
[131]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_161036v2/shard-rkl-4/igt@kms_cursor_legacy@cursorb-vs-flipa-legacy.html
* igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size:
- shard-glk: NOTRUN -> [FAIL][132] ([i915#15588] / [i915#2346])
[132]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_161036v2/shard-glk1/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size.html
* igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions-varying-size:
- shard-dg2: NOTRUN -> [SKIP][133] ([i915#4103] / [i915#4213])
[133]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_161036v2/shard-dg2-3/igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions-varying-size.html
- shard-dg1: NOTRUN -> [SKIP][134] ([i915#4103] / [i915#4213])
[134]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_161036v2/shard-dg1-18/igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions-varying-size.html
* igt@kms_dirtyfb@drrs-dirtyfb-ioctl:
- shard-tglu-1: NOTRUN -> [SKIP][135] ([i915#9723])
[135]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_161036v2/shard-tglu-1/igt@kms_dirtyfb@drrs-dirtyfb-ioctl.html
* igt@kms_dp_aux_dev:
- shard-tglu: NOTRUN -> [SKIP][136] ([i915#1257])
[136]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_161036v2/shard-tglu-9/igt@kms_dp_aux_dev.html
* igt@kms_dp_link_training@non-uhbr-sst:
- shard-rkl: NOTRUN -> [SKIP][137] ([i915#13749])
[137]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_161036v2/shard-rkl-7/igt@kms_dp_link_training@non-uhbr-sst.html
* igt@kms_dsc@dsc-basic:
- shard-rkl: NOTRUN -> [SKIP][138] ([i915#3555] / [i915#3840])
[138]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_161036v2/shard-rkl-7/igt@kms_dsc@dsc-basic.html
* igt@kms_dsc@dsc-fractional-bpp:
- shard-tglu: NOTRUN -> [SKIP][139] ([i915#3840])
[139]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_161036v2/shard-tglu-9/igt@kms_dsc@dsc-fractional-bpp.html
* igt@kms_dsc@dsc-fractional-bpp-with-bpc:
- shard-dg2: NOTRUN -> [SKIP][140] ([i915#3840])
[140]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_161036v2/shard-dg2-3/igt@kms_dsc@dsc-fractional-bpp-with-bpc.html
- shard-dg1: NOTRUN -> [SKIP][141] ([i915#3840])
[141]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_161036v2/shard-dg1-18/igt@kms_dsc@dsc-fractional-bpp-with-bpc.html
* igt@kms_dsc@dsc-with-formats:
- shard-tglu: NOTRUN -> [SKIP][142] ([i915#3555] / [i915#3840])
[142]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_161036v2/shard-tglu-9/igt@kms_dsc@dsc-with-formats.html
* igt@kms_feature_discovery@display-3x:
- shard-tglu-1: NOTRUN -> [SKIP][143] ([i915#1839])
[143]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_161036v2/shard-tglu-1/igt@kms_feature_discovery@display-3x.html
* igt@kms_feature_discovery@dp-mst:
- shard-tglu-1: NOTRUN -> [SKIP][144] ([i915#9337])
[144]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_161036v2/shard-tglu-1/igt@kms_feature_discovery@dp-mst.html
* igt@kms_feature_discovery@psr1:
- shard-tglu-1: NOTRUN -> [SKIP][145] ([i915#658])
[145]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_161036v2/shard-tglu-1/igt@kms_feature_discovery@psr1.html
* igt@kms_flip@2x-blocking-absolute-wf_vblank-interruptible:
- shard-dg2: NOTRUN -> [SKIP][146] ([i915#9934])
[146]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_161036v2/shard-dg2-3/igt@kms_flip@2x-blocking-absolute-wf_vblank-interruptible.html
- shard-dg1: NOTRUN -> [SKIP][147] ([i915#9934])
[147]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_161036v2/shard-dg1-18/igt@kms_flip@2x-blocking-absolute-wf_vblank-interruptible.html
* igt@kms_flip@2x-flip-vs-absolute-wf_vblank:
- shard-tglu: NOTRUN -> [SKIP][148] ([i915#3637] / [i915#9934]) +3 other tests skip
[148]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_161036v2/shard-tglu-9/igt@kms_flip@2x-flip-vs-absolute-wf_vblank.html
* igt@kms_flip@2x-flip-vs-suspend:
- shard-glk: NOTRUN -> [INCOMPLETE][149] ([i915#12745] / [i915#4839] / [i915#6113])
[149]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_161036v2/shard-glk1/igt@kms_flip@2x-flip-vs-suspend.html
* igt@kms_flip@2x-flip-vs-suspend-interruptible:
- shard-glk10: NOTRUN -> [INCOMPLETE][150] ([i915#12745] / [i915#4839])
[150]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_161036v2/shard-glk10/igt@kms_flip@2x-flip-vs-suspend-interruptible.html
* igt@kms_flip@2x-flip-vs-suspend-interruptible@ab-hdmi-a1-hdmi-a2:
- shard-glk10: NOTRUN -> [INCOMPLETE][151] ([i915#4839])
[151]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_161036v2/shard-glk10/igt@kms_flip@2x-flip-vs-suspend-interruptible@ab-hdmi-a1-hdmi-a2.html
* igt@kms_flip@2x-flip-vs-suspend@ab-hdmi-a1-hdmi-a2:
- shard-glk: NOTRUN -> [INCOMPLETE][152] ([i915#4839] / [i915#6113])
[152]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_161036v2/shard-glk1/igt@kms_flip@2x-flip-vs-suspend@ab-hdmi-a1-hdmi-a2.html
* igt@kms_flip@2x-plain-flip-fb-recreate-interruptible:
- shard-tglu-1: NOTRUN -> [SKIP][153] ([i915#3637] / [i915#9934]) +3 other tests skip
[153]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_161036v2/shard-tglu-1/igt@kms_flip@2x-plain-flip-fb-recreate-interruptible.html
* igt@kms_flip@2x-plain-flip-ts-check:
- shard-rkl: NOTRUN -> [SKIP][154] ([i915#14544] / [i915#9934])
[154]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_161036v2/shard-rkl-6/igt@kms_flip@2x-plain-flip-ts-check.html
* igt@kms_flip@2x-wf_vblank-ts-check-interruptible:
- shard-rkl: NOTRUN -> [SKIP][155] ([i915#9934]) +3 other tests skip
[155]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_161036v2/shard-rkl-7/igt@kms_flip@2x-wf_vblank-ts-check-interruptible.html
* igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-32bpp-4tiledg2rcccs-downscaling:
- shard-mtlp: NOTRUN -> [SKIP][156] ([i915#15643])
[156]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_161036v2/shard-mtlp-5/igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-32bpp-4tiledg2rcccs-downscaling.html
* igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-32bpp-yftileccs-upscaling:
- shard-tglu: NOTRUN -> [SKIP][157] ([i915#15643]) +1 other test skip
[157]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_161036v2/shard-tglu-9/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-32bpp-yftileccs-upscaling.html
* igt@kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-downscaling:
- shard-dg2: NOTRUN -> [SKIP][158] ([i915#15643])
[158]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_161036v2/shard-dg2-3/igt@kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-downscaling.html
- shard-dg1: NOTRUN -> [SKIP][159] ([i915#15643])
[159]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_161036v2/shard-dg1-18/igt@kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-downscaling.html
* igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytilegen12rcccs-downscaling:
- shard-dg2: NOTRUN -> [SKIP][160] ([i915#15643] / [i915#5190])
[160]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_161036v2/shard-dg2-3/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytilegen12rcccs-downscaling.html
* igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling:
- shard-tglu-1: NOTRUN -> [SKIP][161] ([i915#15643])
[161]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_161036v2/shard-tglu-1/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling.html
* igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-16bpp-yftile-downscaling:
- shard-rkl: NOTRUN -> [SKIP][162] ([i915#15643]) +2 other tests skip
[162]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_161036v2/shard-rkl-7/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-16bpp-yftile-downscaling.html
* igt@kms_frontbuffer_tracking@fbc-1p-pri-indfb-multidraw:
- shard-dg2: [PASS][163] -> [FAIL][164] ([i915#15389] / [i915#6880])
[163]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17945/shard-dg2-8/igt@kms_frontbuffer_tracking@fbc-1p-pri-indfb-multidraw.html
[164]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_161036v2/shard-dg2-7/igt@kms_frontbuffer_tracking@fbc-1p-pri-indfb-multidraw.html
* igt@kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-draw-render:
- shard-rkl: NOTRUN -> [SKIP][165] ([i915#1825]) +12 other tests skip
[165]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_161036v2/shard-rkl-7/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-draw-render.html
* igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-indfb-draw-pwrite:
- shard-rkl: NOTRUN -> [SKIP][166] ([i915#14544] / [i915#1825]) +2 other tests skip
[166]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_161036v2/shard-rkl-6/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-indfb-draw-pwrite.html
* igt@kms_frontbuffer_tracking@fbc-2p-primscrn-shrfb-pgflip-blt:
- shard-tglu-1: NOTRUN -> [SKIP][167] +48 other tests skip
[167]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_161036v2/shard-tglu-1/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-shrfb-pgflip-blt.html
* igt@kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-draw-blt:
- shard-dg2: NOTRUN -> [SKIP][168] ([i915#5354]) +6 other tests skip
[168]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_161036v2/shard-dg2-3/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-draw-blt.html
- shard-dg1: NOTRUN -> [SKIP][169] +12 other tests skip
[169]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_161036v2/shard-dg1-18/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-draw-blt.html
* igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-shrfb-draw-mmap-gtt:
- shard-dg1: NOTRUN -> [SKIP][170] ([i915#8708]) +6 other tests skip
[170]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_161036v2/shard-dg1-18/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-shrfb-draw-mmap-gtt.html
* igt@kms_frontbuffer_tracking@fbc-suspend:
- shard-glk: NOTRUN -> [INCOMPLETE][171] ([i915#10056])
[171]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_161036v2/shard-glk9/igt@kms_frontbuffer_tracking@fbc-suspend.html
* igt@kms_frontbuffer_tracking@fbcpsr-1p-offscreen-pri-indfb-draw-blt:
- shard-rkl: NOTRUN -> [SKIP][172] ([i915#15102]) +1 other test skip
[172]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_161036v2/shard-rkl-7/igt@kms_frontbuffer_tracking@fbcpsr-1p-offscreen-pri-indfb-draw-blt.html
* igt@kms_frontbuffer_tracking@fbcpsr-1p-offscreen-pri-shrfb-draw-pwrite:
- shard-dg2: NOTRUN -> [SKIP][173] ([i915#15102])
[173]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_161036v2/shard-dg2-3/igt@kms_frontbuffer_tracking@fbcpsr-1p-offscreen-pri-shrfb-draw-pwrite.html
- shard-dg1: NOTRUN -> [SKIP][174] ([i915#15102])
[174]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_161036v2/shard-dg1-18/igt@kms_frontbuffer_tracking@fbcpsr-1p-offscreen-pri-shrfb-draw-pwrite.html
* igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-indfb-plflip-blt:
- shard-rkl: NOTRUN -> [SKIP][175] ([i915#14544] / [i915#15102] / [i915#3023])
[175]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_161036v2/shard-rkl-6/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-indfb-plflip-blt.html
* igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-pri-shrfb-draw-render:
- shard-rkl: NOTRUN -> [SKIP][176] ([i915#15102] / [i915#3023]) +8 other tests skip
[176]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_161036v2/shard-rkl-7/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-pri-shrfb-draw-render.html
* igt@kms_frontbuffer_tracking@fbcpsr-rgb101010-draw-render:
- shard-dg1: NOTRUN -> [SKIP][177] ([i915#15102] / [i915#3458]) +1 other test skip
[177]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_161036v2/shard-dg1-18/igt@kms_frontbuffer_tracking@fbcpsr-rgb101010-draw-render.html
* igt@kms_frontbuffer_tracking@fbcpsr-rgb565-draw-mmap-wc:
- shard-tglu-1: NOTRUN -> [SKIP][178] ([i915#15102]) +14 other tests skip
[178]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_161036v2/shard-tglu-1/igt@kms_frontbuffer_tracking@fbcpsr-rgb565-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@pipe-fbc-rte:
- shard-tglu-1: NOTRUN -> [SKIP][179] ([i915#9766])
[179]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_161036v2/shard-tglu-1/igt@kms_frontbuffer_tracking@pipe-fbc-rte.html
* igt@kms_frontbuffer_tracking@psr-1p-offscreen-pri-shrfb-draw-blt:
- shard-tglu: NOTRUN -> [SKIP][180] ([i915#15102]) +12 other tests skip
[180]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_161036v2/shard-tglu-9/igt@kms_frontbuffer_tracking@psr-1p-offscreen-pri-shrfb-draw-blt.html
* igt@kms_frontbuffer_tracking@psr-1p-offscreen-pri-shrfb-draw-mmap-gtt:
- shard-dg1: NOTRUN -> [SKIP][181] ([i915#15104]) +1 other test skip
[181]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_161036v2/shard-dg1-18/igt@kms_frontbuffer_tracking@psr-1p-offscreen-pri-shrfb-draw-mmap-gtt.html
- shard-dg2: NOTRUN -> [SKIP][182] ([i915#15104]) +1 other test skip
[182]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_161036v2/shard-dg2-3/igt@kms_frontbuffer_tracking@psr-1p-offscreen-pri-shrfb-draw-mmap-gtt.html
* igt@kms_frontbuffer_tracking@psr-1p-primscrn-pri-indfb-draw-mmap-gtt:
- shard-mtlp: NOTRUN -> [SKIP][183] ([i915#8708]) +2 other tests skip
[183]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_161036v2/shard-mtlp-5/igt@kms_frontbuffer_tracking@psr-1p-primscrn-pri-indfb-draw-mmap-gtt.html
* igt@kms_frontbuffer_tracking@psr-1p-primscrn-pri-indfb-draw-pwrite:
- shard-dg2: NOTRUN -> [SKIP][184] ([i915#15102] / [i915#3458]) +1 other test skip
[184]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_161036v2/shard-dg2-3/igt@kms_frontbuffer_tracking@psr-1p-primscrn-pri-indfb-draw-pwrite.html
* igt@kms_frontbuffer_tracking@psr-1p-primscrn-pri-shrfb-draw-mmap-wc:
- shard-dg2: NOTRUN -> [SKIP][185] ([i915#8708]) +6 other tests skip
[185]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_161036v2/shard-dg2-3/igt@kms_frontbuffer_tracking@psr-1p-primscrn-pri-shrfb-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@psr-2p-primscrn-spr-indfb-draw-render:
- shard-tglu: NOTRUN -> [SKIP][186] +18 other tests skip
[186]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_161036v2/shard-tglu-9/igt@kms_frontbuffer_tracking@psr-2p-primscrn-spr-indfb-draw-render.html
* igt@kms_frontbuffer_tracking@psr-2p-scndscrn-pri-shrfb-draw-mmap-wc:
- shard-mtlp: NOTRUN -> [SKIP][187] ([i915#1825]) +1 other test skip
[187]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_161036v2/shard-mtlp-5/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-pri-shrfb-draw-mmap-wc.html
* igt@kms_hdr@brightness-with-hdr:
- shard-tglu-1: NOTRUN -> [SKIP][188] ([i915#12713])
[188]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_161036v2/shard-tglu-1/igt@kms_hdr@brightness-with-hdr.html
* igt@kms_hdr@static-swap:
- shard-tglu-1: NOTRUN -> [SKIP][189] ([i915#3555] / [i915#8228])
[189]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_161036v2/shard-tglu-1/igt@kms_hdr@static-swap.html
* igt@kms_hdr@static-toggle-suspend:
- shard-rkl: NOTRUN -> [SKIP][190] ([i915#3555] / [i915#8228])
[190]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_161036v2/shard-rkl-4/igt@kms_hdr@static-toggle-suspend.html
* igt@kms_joiner@basic-force-big-joiner:
- shard-tglu: NOTRUN -> [SKIP][191] ([i915#15459])
[191]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_161036v2/shard-tglu-9/igt@kms_joiner@basic-force-big-joiner.html
* igt@kms_joiner@basic-max-non-joiner:
- shard-tglu-1: NOTRUN -> [SKIP][192] ([i915#13688])
[192]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_161036v2/shard-tglu-1/igt@kms_joiner@basic-max-non-joiner.html
* igt@kms_joiner@invalid-modeset-big-joiner:
- shard-tglu-1: NOTRUN -> [SKIP][193] ([i915#15460])
[193]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_161036v2/shard-tglu-1/igt@kms_joiner@invalid-modeset-big-joiner.html
* igt@kms_panel_fitting@atomic-fastset:
- shard-dg2: NOTRUN -> [SKIP][194] ([i915#6301])
[194]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_161036v2/shard-dg2-3/igt@kms_panel_fitting@atomic-fastset.html
- shard-dg1: NOTRUN -> [SKIP][195] ([i915#6301])
[195]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_161036v2/shard-dg1-18/igt@kms_panel_fitting@atomic-fastset.html
* igt@kms_pipe_stress@stress-xrgb8888-yftiled:
- shard-tglu-1: NOTRUN -> [SKIP][196] ([i915#14712])
[196]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_161036v2/shard-tglu-1/igt@kms_pipe_stress@stress-xrgb8888-yftiled.html
* igt@kms_plane@pixel-format-4-tiled-dg2-mc-ccs-modifier:
- shard-rkl: NOTRUN -> [SKIP][197] ([i915#15608] / [i915#8825]) +1 other test skip
[197]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_161036v2/shard-rkl-4/igt@kms_plane@pixel-format-4-tiled-dg2-mc-ccs-modifier.html
* igt@kms_plane@pixel-format-4-tiled-dg2-rc-ccs-modifier-source-clamping:
- shard-tglu-1: NOTRUN -> [SKIP][198] ([i915#15608] / [i915#15609] / [i915#8825])
[198]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_161036v2/shard-tglu-1/igt@kms_plane@pixel-format-4-tiled-dg2-rc-ccs-modifier-source-clamping.html
* igt@kms_plane@pixel-format-4-tiled-dg2-rc-ccs-modifier-source-clamping@pipe-a-plane-7:
- shard-tglu-1: NOTRUN -> [SKIP][199] ([i915#15609])
[199]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_161036v2/shard-tglu-1/igt@kms_plane@pixel-format-4-tiled-dg2-rc-ccs-modifier-source-clamping@pipe-a-plane-7.html
* igt@kms_plane@pixel-format-4-tiled-dg2-rc-ccs-modifier-source-clamping@pipe-b-plane-7:
- shard-tglu-1: NOTRUN -> [SKIP][200] ([i915#15609] / [i915#8825])
[200]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_161036v2/shard-tglu-1/igt@kms_plane@pixel-format-4-tiled-dg2-rc-ccs-modifier-source-clamping@pipe-b-plane-7.html
* igt@kms_plane@pixel-format-4-tiled-modifier@pipe-b-plane-7:
- shard-tglu-1: NOTRUN -> [SKIP][201] ([i915#15608] / [i915#8825]) +3 other tests skip
[201]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_161036v2/shard-tglu-1/igt@kms_plane@pixel-format-4-tiled-modifier@pipe-b-plane-7.html
* igt@kms_plane@pixel-format-4-tiled-mtl-rc-ccs-cc-modifier-source-clamping@pipe-a-plane-7:
- shard-tglu: NOTRUN -> [SKIP][202] ([i915#15609]) +1 other test skip
[202]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_161036v2/shard-tglu-9/igt@kms_plane@pixel-format-4-tiled-mtl-rc-ccs-cc-modifier-source-clamping@pipe-a-plane-7.html
* igt@kms_plane@pixel-format-4-tiled-mtl-rc-ccs-cc-modifier-source-clamping@pipe-b-plane-7:
- shard-tglu: NOTRUN -> [SKIP][203] ([i915#15609] / [i915#8825]) +1 other test skip
[203]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_161036v2/shard-tglu-9/igt@kms_plane@pixel-format-4-tiled-mtl-rc-ccs-cc-modifier-source-clamping@pipe-b-plane-7.html
* igt@kms_plane@pixel-format-4-tiled-mtl-rc-ccs-modifier-source-clamping:
- shard-rkl: NOTRUN -> [SKIP][204] ([i915#15608] / [i915#15609] / [i915#8825])
[204]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_161036v2/shard-rkl-3/igt@kms_plane@pixel-format-4-tiled-mtl-rc-ccs-modifier-source-clamping.html
* igt@kms_plane@pixel-format-4-tiled-mtl-rc-ccs-modifier-source-clamping@pipe-a-plane-5:
- shard-rkl: NOTRUN -> [SKIP][205] ([i915#15609])
[205]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_161036v2/shard-rkl-3/igt@kms_plane@pixel-format-4-tiled-mtl-rc-ccs-modifier-source-clamping@pipe-a-plane-5.html
* igt@kms_plane@pixel-format-4-tiled-mtl-rc-ccs-modifier-source-clamping@pipe-b-plane-5:
- shard-rkl: NOTRUN -> [SKIP][206] ([i915#15609] / [i915#8825])
[206]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_161036v2/shard-rkl-3/igt@kms_plane@pixel-format-4-tiled-mtl-rc-ccs-modifier-source-clamping@pipe-b-plane-5.html
* igt@kms_plane@pixel-format-x-tiled-modifier@pipe-b-plane-5:
- shard-rkl: NOTRUN -> [SKIP][207] ([i915#15608]) +10 other tests skip
[207]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_161036v2/shard-rkl-7/igt@kms_plane@pixel-format-x-tiled-modifier@pipe-b-plane-5.html
* igt@kms_plane@pixel-format-y-tiled-ccs-modifier:
- shard-dg2: NOTRUN -> [SKIP][208] ([i915#15608] / [i915#8825]) +1 other test skip
[208]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_161036v2/shard-dg2-3/igt@kms_plane@pixel-format-y-tiled-ccs-modifier.html
- shard-dg1: NOTRUN -> [SKIP][209] ([i915#15608] / [i915#8825]) +1 other test skip
[209]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_161036v2/shard-dg1-18/igt@kms_plane@pixel-format-y-tiled-ccs-modifier.html
* igt@kms_plane@pixel-format-y-tiled-ccs-modifier@pipe-a-plane-5:
- shard-dg2: NOTRUN -> [SKIP][210] ([i915#15608]) +4 other tests skip
[210]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_161036v2/shard-dg2-3/igt@kms_plane@pixel-format-y-tiled-ccs-modifier@pipe-a-plane-5.html
* igt@kms_plane@pixel-format-y-tiled-ccs-modifier@pipe-b-plane-5:
- shard-dg1: NOTRUN -> [SKIP][211] ([i915#15608]) +6 other tests skip
[211]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_161036v2/shard-dg1-18/igt@kms_plane@pixel-format-y-tiled-ccs-modifier@pipe-b-plane-5.html
* igt@kms_plane@pixel-format-y-tiled-gen12-mc-ccs-modifier-source-clamping:
- shard-tglu: NOTRUN -> [SKIP][212] ([i915#15608] / [i915#15609] / [i915#8825]) +1 other test skip
[212]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_161036v2/shard-tglu-9/igt@kms_plane@pixel-format-y-tiled-gen12-mc-ccs-modifier-source-clamping.html
* igt@kms_plane@pixel-format-y-tiled-gen12-mc-ccs-modifier-source-clamping@pipe-a-plane-5:
- shard-tglu: NOTRUN -> [SKIP][213] ([i915#15608]) +13 other tests skip
[213]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_161036v2/shard-tglu-9/igt@kms_plane@pixel-format-y-tiled-gen12-mc-ccs-modifier-source-clamping@pipe-a-plane-5.html
* igt@kms_plane@pixel-format-y-tiled-gen12-mc-ccs-modifier@pipe-b-plane-0:
- shard-tglu-1: NOTRUN -> [SKIP][214] ([i915#15608]) +21 other tests skip
[214]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_161036v2/shard-tglu-1/igt@kms_plane@pixel-format-y-tiled-gen12-mc-ccs-modifier@pipe-b-plane-0.html
* igt@kms_plane_lowres@tiling-4:
- shard-tglu: NOTRUN -> [SKIP][215] ([i915#3555]) +2 other tests skip
[215]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_161036v2/shard-tglu-9/igt@kms_plane_lowres@tiling-4.html
* igt@kms_plane_lowres@tiling-y:
- shard-mtlp: NOTRUN -> [SKIP][216] ([i915#3555] / [i915#8821])
[216]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_161036v2/shard-mtlp-5/igt@kms_plane_lowres@tiling-y.html
* igt@kms_plane_multiple@2x-tiling-y:
- shard-dg2: NOTRUN -> [SKIP][217] ([i915#13958])
[217]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_161036v2/shard-dg2-3/igt@kms_plane_multiple@2x-tiling-y.html
- shard-dg1: NOTRUN -> [SKIP][218] ([i915#13958])
[218]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_161036v2/shard-dg1-18/igt@kms_plane_multiple@2x-tiling-y.html
* igt@kms_plane_multiple@2x-tiling-yf:
- shard-rkl: NOTRUN -> [SKIP][219] ([i915#13958])
[219]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_161036v2/shard-rkl-7/igt@kms_plane_multiple@2x-tiling-yf.html
* igt@kms_plane_multiple@tiling-4:
- shard-tglu: NOTRUN -> [SKIP][220] ([i915#14259])
[220]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_161036v2/shard-tglu-9/igt@kms_plane_multiple@tiling-4.html
* igt@kms_plane_scaling@intel-max-src-size:
- shard-tglu-1: NOTRUN -> [SKIP][221] ([i915#6953])
[221]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_161036v2/shard-tglu-1/igt@kms_plane_scaling@intel-max-src-size.html
* igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-rotation:
- shard-tglu: NOTRUN -> [SKIP][222] ([i915#15329] / [i915#3555])
[222]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_161036v2/shard-tglu-9/igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-rotation.html
* igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-rotation@pipe-b:
- shard-tglu: NOTRUN -> [SKIP][223] ([i915#15329]) +3 other tests skip
[223]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_161036v2/shard-tglu-9/igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-rotation@pipe-b.html
* igt@kms_plane_scaling@plane-upscale-factor-0-25-with-rotation@pipe-c:
- shard-rkl: NOTRUN -> [SKIP][224] ([i915#15329]) +7 other tests skip
[224]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_161036v2/shard-rkl-7/igt@kms_plane_scaling@plane-upscale-factor-0-25-with-rotation@pipe-c.html
* igt@kms_pm_backlight@fade:
- shard-tglu: NOTRUN -> [SKIP][225] ([i915#9812])
[225]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_161036v2/shard-tglu-9/igt@kms_pm_backlight@fade.html
* igt@kms_pm_backlight@fade-with-dpms:
- shard-rkl: NOTRUN -> [SKIP][226] ([i915#5354])
[226]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_161036v2/shard-rkl-7/igt@kms_pm_backlight@fade-with-dpms.html
* igt@kms_pm_dc@dc9-dpms:
- shard-tglu: NOTRUN -> [SKIP][227] ([i915#4281])
[227]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_161036v2/shard-tglu-9/igt@kms_pm_dc@dc9-dpms.html
* igt@kms_pm_lpsp@kms-lpsp:
- shard-tglu-1: NOTRUN -> [SKIP][228] ([i915#3828])
[228]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_161036v2/shard-tglu-1/igt@kms_pm_lpsp@kms-lpsp.html
* igt@kms_pm_rpm@modeset-lpsp:
- shard-rkl: NOTRUN -> [SKIP][229] ([i915#15073])
[229]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_161036v2/shard-rkl-7/igt@kms_pm_rpm@modeset-lpsp.html
* igt@kms_pm_rpm@modeset-non-lpsp:
- shard-rkl: [PASS][230] -> [SKIP][231] ([i915#15073]) +2 other tests skip
[230]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17945/shard-rkl-7/igt@kms_pm_rpm@modeset-non-lpsp.html
[231]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_161036v2/shard-rkl-5/igt@kms_pm_rpm@modeset-non-lpsp.html
* igt@kms_pm_rpm@modeset-non-lpsp-stress:
- shard-tglu: NOTRUN -> [SKIP][232] ([i915#15073])
[232]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_161036v2/shard-tglu-9/igt@kms_pm_rpm@modeset-non-lpsp-stress.html
* igt@kms_pm_rpm@modeset-non-lpsp-stress-no-wait:
- shard-dg2: [PASS][233] -> [SKIP][234] ([i915#15073]) +2 other tests skip
[233]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17945/shard-dg2-11/igt@kms_pm_rpm@modeset-non-lpsp-stress-no-wait.html
[234]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_161036v2/shard-dg2-4/igt@kms_pm_rpm@modeset-non-lpsp-stress-no-wait.html
* igt@kms_pm_rpm@package-g7:
- shard-tglu-1: NOTRUN -> [SKIP][235] ([i915#15403])
[235]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_161036v2/shard-tglu-1/igt@kms_pm_rpm@package-g7.html
* igt@kms_pm_rpm@system-suspend-modeset:
- shard-rkl: [PASS][236] -> [INCOMPLETE][237] ([i915#14419])
[236]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17945/shard-rkl-8/igt@kms_pm_rpm@system-suspend-modeset.html
[237]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_161036v2/shard-rkl-6/igt@kms_pm_rpm@system-suspend-modeset.html
* igt@kms_prime@d3hot:
- shard-tglu-1: NOTRUN -> [SKIP][238] ([i915#6524])
[238]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_161036v2/shard-tglu-1/igt@kms_prime@d3hot.html
* igt@kms_psr2_sf@fbc-pr-cursor-plane-update-sf:
- shard-tglu: NOTRUN -> [SKIP][239] ([i915#11520]) +3 other tests skip
[239]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_161036v2/shard-tglu-9/igt@kms_psr2_sf@fbc-pr-cursor-plane-update-sf.html
* igt@kms_psr2_sf@fbc-pr-overlay-primary-update-sf-dmg-area:
- shard-glk10: NOTRUN -> [SKIP][240] ([i915#11520]) +2 other tests skip
[240]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_161036v2/shard-glk10/igt@kms_psr2_sf@fbc-pr-overlay-primary-update-sf-dmg-area.html
* igt@kms_psr2_sf@fbc-pr-primary-plane-update-sf-dmg-area:
- shard-tglu-1: NOTRUN -> [SKIP][241] ([i915#11520]) +4 other tests skip
[241]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_161036v2/shard-tglu-1/igt@kms_psr2_sf@fbc-pr-primary-plane-update-sf-dmg-area.html
* igt@kms_psr2_sf@fbc-psr2-cursor-plane-move-continuous-exceed-sf:
- shard-rkl: NOTRUN -> [SKIP][242] ([i915#11520] / [i915#14544])
[242]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_161036v2/shard-rkl-6/igt@kms_psr2_sf@fbc-psr2-cursor-plane-move-continuous-exceed-sf.html
* igt@kms_psr2_sf@fbc-psr2-cursor-plane-move-continuous-sf:
- shard-rkl: NOTRUN -> [SKIP][243] ([i915#11520]) +2 other tests skip
[243]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_161036v2/shard-rkl-7/igt@kms_psr2_sf@fbc-psr2-cursor-plane-move-continuous-sf.html
* igt@kms_psr2_sf@fbc-psr2-cursor-plane-update-sf@pipe-b-edp-1:
- shard-mtlp: NOTRUN -> [SKIP][244] ([i915#9808]) +2 other tests skip
[244]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_161036v2/shard-mtlp-5/igt@kms_psr2_sf@fbc-psr2-cursor-plane-update-sf@pipe-b-edp-1.html
* igt@kms_psr2_sf@psr2-cursor-plane-move-continuous-sf:
- shard-dg2: NOTRUN -> [SKIP][245] ([i915#11520]) +1 other test skip
[245]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_161036v2/shard-dg2-3/igt@kms_psr2_sf@psr2-cursor-plane-move-continuous-sf.html
- shard-dg1: NOTRUN -> [SKIP][246] ([i915#11520]) +1 other test skip
[246]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_161036v2/shard-dg1-18/igt@kms_psr2_sf@psr2-cursor-plane-move-continuous-sf.html
* igt@kms_psr2_sf@psr2-overlay-primary-update-sf-dmg-area:
- shard-glk: NOTRUN -> [SKIP][247] ([i915#11520]) +9 other tests skip
[247]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_161036v2/shard-glk1/igt@kms_psr2_sf@psr2-overlay-primary-update-sf-dmg-area.html
* igt@kms_psr2_su@page_flip-p010:
- shard-dg2: NOTRUN -> [SKIP][248] ([i915#9683])
[248]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_161036v2/shard-dg2-3/igt@kms_psr2_su@page_flip-p010.html
- shard-dg1: NOTRUN -> [SKIP][249] ([i915#9683])
[249]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_161036v2/shard-dg1-18/igt@kms_psr2_su@page_flip-p010.html
* igt@kms_psr2_su@page_flip-xrgb8888:
- shard-rkl: NOTRUN -> [SKIP][250] ([i915#9683])
[250]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_161036v2/shard-rkl-4/igt@kms_psr2_su@page_flip-xrgb8888.html
* igt@kms_psr@fbc-pr-cursor-render:
- shard-rkl: NOTRUN -> [SKIP][251] ([i915#1072] / [i915#14544] / [i915#9732]) +4 other tests skip
[251]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_161036v2/shard-rkl-6/igt@kms_psr@fbc-pr-cursor-render.html
* igt@kms_psr@fbc-psr-cursor-plane-move@edp-1:
- shard-mtlp: NOTRUN -> [SKIP][252] ([i915#9688]) +1 other test skip
[252]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_161036v2/shard-mtlp-5/igt@kms_psr@fbc-psr-cursor-plane-move@edp-1.html
* igt@kms_psr@fbc-psr-cursor-plane-onoff:
- shard-tglu: NOTRUN -> [SKIP][253] ([i915#9732]) +10 other tests skip
[253]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_161036v2/shard-tglu-9/igt@kms_psr@fbc-psr-cursor-plane-onoff.html
* igt@kms_psr@fbc-psr-primary-blt:
- shard-rkl: NOTRUN -> [SKIP][254] ([i915#1072] / [i915#9732]) +8 other tests skip
[254]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_161036v2/shard-rkl-7/igt@kms_psr@fbc-psr-primary-blt.html
* igt@kms_psr@fbc-psr2-basic:
- shard-tglu-1: NOTRUN -> [SKIP][255] ([i915#9732]) +13 other tests skip
[255]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_161036v2/shard-tglu-1/igt@kms_psr@fbc-psr2-basic.html
* igt@kms_psr@pr-primary-blt:
- shard-dg2: NOTRUN -> [SKIP][256] ([i915#1072] / [i915#9732]) +4 other tests skip
[256]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_161036v2/shard-dg2-3/igt@kms_psr@pr-primary-blt.html
- shard-dg1: NOTRUN -> [SKIP][257] ([i915#1072] / [i915#9732]) +4 other tests skip
[257]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_161036v2/shard-dg1-18/igt@kms_psr@pr-primary-blt.html
* igt@kms_psr_stress_test@flip-primary-invalidate-overlay:
- shard-tglu-1: NOTRUN -> [SKIP][258] ([i915#9685]) +1 other test skip
[258]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_161036v2/shard-tglu-1/igt@kms_psr_stress_test@flip-primary-invalidate-overlay.html
* igt@kms_rotation_crc@primary-yf-tiled-reflect-x-270:
- shard-tglu-1: NOTRUN -> [SKIP][259] ([i915#5289])
[259]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_161036v2/shard-tglu-1/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-270.html
* igt@kms_selftest@drm_framebuffer:
- shard-rkl: NOTRUN -> [ABORT][260] ([i915#13179]) +1 other test abort
[260]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_161036v2/shard-rkl-6/igt@kms_selftest@drm_framebuffer.html
- shard-glk10: NOTRUN -> [ABORT][261] ([i915#13179]) +1 other test abort
[261]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_161036v2/shard-glk10/igt@kms_selftest@drm_framebuffer.html
* igt@kms_setmode@invalid-clone-exclusive-crtc:
- shard-rkl: NOTRUN -> [SKIP][262] ([i915#14544] / [i915#3555])
[262]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_161036v2/shard-rkl-6/igt@kms_setmode@invalid-clone-exclusive-crtc.html
* igt@kms_tiled_display@basic-test-pattern:
- shard-glk: NOTRUN -> [FAIL][263] ([i915#10959])
[263]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_161036v2/shard-glk3/igt@kms_tiled_display@basic-test-pattern.html
- shard-rkl: NOTRUN -> [SKIP][264] ([i915#8623])
[264]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_161036v2/shard-rkl-7/igt@kms_tiled_display@basic-test-pattern.html
* igt@kms_vblank@ts-continuation-suspend:
- shard-glk: NOTRUN -> [INCOMPLETE][265] ([i915#12276]) +1 other test incomplete
[265]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_161036v2/shard-glk5/igt@kms_vblank@ts-continuation-suspend.html
* igt@kms_vrr@flip-basic:
- shard-rkl: NOTRUN -> [SKIP][266] ([i915#15243] / [i915#3555])
[266]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_161036v2/shard-rkl-7/igt@kms_vrr@flip-basic.html
* igt@kms_vrr@max-min:
- shard-tglu-1: NOTRUN -> [SKIP][267] ([i915#9906])
[267]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_161036v2/shard-tglu-1/igt@kms_vrr@max-min.html
* igt@kms_vrr@negative-basic:
- shard-dg2: NOTRUN -> [SKIP][268] ([i915#3555] / [i915#9906])
[268]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_161036v2/shard-dg2-3/igt@kms_vrr@negative-basic.html
- shard-dg1: NOTRUN -> [SKIP][269] ([i915#3555] / [i915#9906])
[269]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_161036v2/shard-dg1-18/igt@kms_vrr@negative-basic.html
* igt@perf_pmu@rc6-all-gts:
- shard-tglu-1: NOTRUN -> [SKIP][270] ([i915#8516]) +1 other test skip
[270]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_161036v2/shard-tglu-1/igt@perf_pmu@rc6-all-gts.html
* igt@prime_vgem@basic-read:
- shard-rkl: NOTRUN -> [SKIP][271] ([i915#3291] / [i915#3708])
[271]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_161036v2/shard-rkl-7/igt@prime_vgem@basic-read.html
#### Possible fixes ####
* igt@gem_ccs@suspend-resume@xmajor-compressed-compfmt0-lmem0-lmem0:
- shard-dg2: [INCOMPLETE][272] ([i915#12392] / [i915#13356]) -> [PASS][273]
[272]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17945/shard-dg2-3/igt@gem_ccs@suspend-resume@xmajor-compressed-compfmt0-lmem0-lmem0.html
[273]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_161036v2/shard-dg2-6/igt@gem_ccs@suspend-resume@xmajor-compressed-compfmt0-lmem0-lmem0.html
* igt@gem_ctx_isolation@preservation-s3@rcs0:
- shard-rkl: [INCOMPLETE][274] ([i915#13356]) -> [PASS][275]
[274]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17945/shard-rkl-6/igt@gem_ctx_isolation@preservation-s3@rcs0.html
[275]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_161036v2/shard-rkl-3/igt@gem_ctx_isolation@preservation-s3@rcs0.html
* igt@gem_mmap_offset@clear-via-pagefault:
- shard-mtlp: [ABORT][276] ([i915#14809]) -> [PASS][277] +1 other test pass
[276]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17945/shard-mtlp-4/igt@gem_mmap_offset@clear-via-pagefault.html
[277]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_161036v2/shard-mtlp-5/igt@gem_mmap_offset@clear-via-pagefault.html
* igt@i915_suspend@basic-s2idle-without-i915:
- shard-rkl: [ABORT][278] ([i915#15131]) -> [PASS][279]
[278]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17945/shard-rkl-1/igt@i915_suspend@basic-s2idle-without-i915.html
[279]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_161036v2/shard-rkl-6/igt@i915_suspend@basic-s2idle-without-i915.html
* igt@kms_cursor_crc@cursor-sliding-128x42:
- shard-rkl: [FAIL][280] ([i915#13566]) -> [PASS][281] +1 other test pass
[280]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17945/shard-rkl-3/igt@kms_cursor_crc@cursor-sliding-128x42.html
[281]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_161036v2/shard-rkl-6/igt@kms_cursor_crc@cursor-sliding-128x42.html
* igt@kms_cursor_crc@cursor-sliding-128x42@pipe-a-hdmi-a-1:
- shard-tglu: [FAIL][282] ([i915#13566]) -> [PASS][283] +3 other tests pass
[282]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17945/shard-tglu-3/igt@kms_cursor_crc@cursor-sliding-128x42@pipe-a-hdmi-a-1.html
[283]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_161036v2/shard-tglu-8/igt@kms_cursor_crc@cursor-sliding-128x42@pipe-a-hdmi-a-1.html
* igt@kms_dither@fb-8bpc-vs-panel-8bpc:
- shard-dg2: [SKIP][284] ([i915#3555]) -> [PASS][285]
[284]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17945/shard-dg2-5/igt@kms_dither@fb-8bpc-vs-panel-8bpc.html
[285]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_161036v2/shard-dg2-11/igt@kms_dither@fb-8bpc-vs-panel-8bpc.html
* igt@kms_flip@flip-vs-suspend-interruptible@a-hdmi-a2:
- shard-rkl: [INCOMPLETE][286] ([i915#6113]) -> [PASS][287] +1 other test pass
[286]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17945/shard-rkl-3/igt@kms_flip@flip-vs-suspend-interruptible@a-hdmi-a2.html
[287]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_161036v2/shard-rkl-4/igt@kms_flip@flip-vs-suspend-interruptible@a-hdmi-a2.html
* igt@kms_hdr@invalid-metadata-sizes:
- shard-rkl: [SKIP][288] ([i915#3555] / [i915#8228]) -> [PASS][289]
[288]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17945/shard-rkl-8/igt@kms_hdr@invalid-metadata-sizes.html
[289]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_161036v2/shard-rkl-6/igt@kms_hdr@invalid-metadata-sizes.html
* igt@kms_joiner@basic-force-big-joiner:
- shard-dg2: [SKIP][290] ([i915#15459]) -> [PASS][291]
[290]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17945/shard-dg2-5/igt@kms_joiner@basic-force-big-joiner.html
[291]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_161036v2/shard-dg2-11/igt@kms_joiner@basic-force-big-joiner.html
* igt@kms_pm_rpm@dpms-lpsp:
- shard-rkl: [SKIP][292] ([i915#15073]) -> [PASS][293] +1 other test pass
[292]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17945/shard-rkl-7/igt@kms_pm_rpm@dpms-lpsp.html
[293]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_161036v2/shard-rkl-5/igt@kms_pm_rpm@dpms-lpsp.html
* igt@kms_pm_rpm@modeset-non-lpsp-stress-no-wait:
- shard-dg1: [SKIP][294] ([i915#15073]) -> [PASS][295] +2 other tests pass
[294]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17945/shard-dg1-14/igt@kms_pm_rpm@modeset-non-lpsp-stress-no-wait.html
[295]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_161036v2/shard-dg1-13/igt@kms_pm_rpm@modeset-non-lpsp-stress-no-wait.html
* igt@perf_pmu@busy-double-start@vecs1:
- shard-dg2: [FAIL][296] ([i915#4349]) -> [PASS][297] +4 other tests pass
[296]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17945/shard-dg2-5/igt@perf_pmu@busy-double-start@vecs1.html
[297]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_161036v2/shard-dg2-11/igt@perf_pmu@busy-double-start@vecs1.html
#### Warnings ####
* igt@device_reset@unbind-cold-reset-rebind:
- shard-rkl: [SKIP][298] ([i915#11078]) -> [SKIP][299] ([i915#11078] / [i915#14544])
[298]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17945/shard-rkl-3/igt@device_reset@unbind-cold-reset-rebind.html
[299]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_161036v2/shard-rkl-6/igt@device_reset@unbind-cold-reset-rebind.html
* igt@gem_ccs@block-multicopy-compressed:
- shard-rkl: [SKIP][300] ([i915#9323]) -> [SKIP][301] ([i915#14544] / [i915#9323])
[300]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17945/shard-rkl-3/igt@gem_ccs@block-multicopy-compressed.html
[301]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_161036v2/shard-rkl-6/igt@gem_ccs@block-multicopy-compressed.html
* igt@gem_ctx_sseu@invalid-args:
- shard-rkl: [SKIP][302] ([i915#280]) -> [SKIP][303] ([i915#14544] / [i915#280])
[302]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17945/shard-rkl-8/igt@gem_ctx_sseu@invalid-args.html
[303]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_161036v2/shard-rkl-6/igt@gem_ctx_sseu@invalid-args.html
* igt@gem_exec_reloc@basic-gtt-wc-noreloc:
- shard-rkl: [SKIP][304] ([i915#3281]) -> [SKIP][305] ([i915#14544] / [i915#3281]) +5 other tests skip
[304]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17945/shard-rkl-8/igt@gem_exec_reloc@basic-gtt-wc-noreloc.html
[305]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_161036v2/shard-rkl-6/igt@gem_exec_reloc@basic-gtt-wc-noreloc.html
* igt@gem_exec_reloc@basic-write-wc-noreloc:
- shard-rkl: [SKIP][306] ([i915#14544] / [i915#3281]) -> [SKIP][307] ([i915#3281]) +1 other test skip
[306]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17945/shard-rkl-6/igt@gem_exec_reloc@basic-write-wc-noreloc.html
[307]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_161036v2/shard-rkl-3/igt@gem_exec_reloc@basic-write-wc-noreloc.html
* igt@gem_lmem_evict@dontneed-evict-race:
- shard-rkl: [SKIP][308] ([i915#4613] / [i915#7582]) -> [SKIP][309] ([i915#14544] / [i915#4613] / [i915#7582])
[308]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17945/shard-rkl-8/igt@gem_lmem_evict@dontneed-evict-race.html
[309]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_161036v2/shard-rkl-6/igt@gem_lmem_evict@dontneed-evict-race.html
* igt@gem_lmem_swapping@basic:
- shard-rkl: [SKIP][310] ([i915#4613]) -> [SKIP][311] ([i915#14544] / [i915#4613])
[310]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17945/shard-rkl-3/igt@gem_lmem_swapping@basic.html
[311]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_161036v2/shard-rkl-6/igt@gem_lmem_swapping@basic.html
* igt@gem_lmem_swapping@parallel-random-engines:
- shard-rkl: [SKIP][312] ([i915#14544] / [i915#4613]) -> [SKIP][313] ([i915#4613])
[312]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17945/shard-rkl-6/igt@gem_lmem_swapping@parallel-random-engines.html
[313]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_161036v2/shard-rkl-3/igt@gem_lmem_swapping@parallel-random-engines.html
* igt@gem_partial_pwrite_pread@reads-display:
- shard-rkl: [SKIP][314] ([i915#14544] / [i915#3282]) -> [SKIP][315] ([i915#3282])
[314]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17945/shard-rkl-6/igt@gem_partial_pwrite_pread@reads-display.html
[315]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_161036v2/shard-rkl-3/igt@gem_partial_pwrite_pread@reads-display.html
* igt@gem_partial_pwrite_pread@writes-after-reads:
- shard-rkl: [SKIP][316] ([i915#3282]) -> [SKIP][317] ([i915#14544] / [i915#3282]) +2 other tests skip
[316]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17945/shard-rkl-3/igt@gem_partial_pwrite_pread@writes-after-reads.html
[317]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_161036v2/shard-rkl-6/igt@gem_partial_pwrite_pread@writes-after-reads.html
* igt@gem_set_tiling_vs_blt@tiled-to-tiled:
- shard-rkl: [SKIP][318] ([i915#8411]) -> [SKIP][319] ([i915#14544] / [i915#8411])
[318]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17945/shard-rkl-3/igt@gem_set_tiling_vs_blt@tiled-to-tiled.html
[319]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_161036v2/shard-rkl-6/igt@gem_set_tiling_vs_blt@tiled-to-tiled.html
* igt@gem_userptr_blits@create-destroy-unsync:
- shard-rkl: [SKIP][320] ([i915#14544] / [i915#3297]) -> [SKIP][321] ([i915#3297])
[320]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17945/shard-rkl-6/igt@gem_userptr_blits@create-destroy-unsync.html
[321]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_161036v2/shard-rkl-3/igt@gem_userptr_blits@create-destroy-unsync.html
* igt@gem_userptr_blits@dmabuf-unsync:
- shard-rkl: [SKIP][322] ([i915#3297]) -> [SKIP][323] ([i915#14544] / [i915#3297]) +1 other test skip
[322]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17945/shard-rkl-3/igt@gem_userptr_blits@dmabuf-unsync.html
[323]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_161036v2/shard-rkl-6/igt@gem_userptr_blits@dmabuf-unsync.html
* igt@gen9_exec_parse@batch-invalid-length:
- shard-rkl: [SKIP][324] ([i915#2527]) -> [SKIP][325] ([i915#14544] / [i915#2527]) +1 other test skip
[324]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17945/shard-rkl-3/igt@gen9_exec_parse@batch-invalid-length.html
[325]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_161036v2/shard-rkl-6/igt@gen9_exec_parse@batch-invalid-length.html
* igt@i915_pm_sseu@full-enable:
- shard-rkl: [SKIP][326] ([i915#4387]) -> [SKIP][327] ([i915#14544] / [i915#4387])
[326]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17945/shard-rkl-8/igt@i915_pm_sseu@full-enable.html
[327]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_161036v2/shard-rkl-6/igt@i915_pm_sseu@full-enable.html
* igt@i915_query@hwconfig_table:
- shard-rkl: [SKIP][328] ([i915#14544] / [i915#6245]) -> [SKIP][329] ([i915#6245])
[328]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17945/shard-rkl-6/igt@i915_query@hwconfig_table.html
[329]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_161036v2/shard-rkl-3/igt@i915_query@hwconfig_table.html
* igt@kms_atomic@plane-primary-overlay-mutable-zpos:
- shard-rkl: [SKIP][330] ([i915#14544] / [i915#9531]) -> [SKIP][331] ([i915#9531])
[330]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17945/shard-rkl-6/igt@kms_atomic@plane-primary-overlay-mutable-zpos.html
[331]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_161036v2/shard-rkl-3/igt@kms_atomic@plane-primary-overlay-mutable-zpos.html
* igt@kms_big_fb@4-tiled-addfb-size-offset-overflow:
- shard-rkl: [SKIP][332] ([i915#14544] / [i915#5286]) -> [SKIP][333] ([i915#5286])
[332]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17945/shard-rkl-6/igt@kms_big_fb@4-tiled-addfb-size-offset-overflow.html
[333]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_161036v2/shard-rkl-3/igt@kms_big_fb@4-tiled-addfb-size-offset-overflow.html
* igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0-hflip-async-flip:
- shard-rkl: [SKIP][334] ([i915#5286]) -> [SKIP][335] ([i915#14544] / [i915#5286]) +2 other tests skip
[334]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17945/shard-rkl-8/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0-hflip-async-flip.html
[335]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_161036v2/shard-rkl-6/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0-hflip-async-flip.html
* igt@kms_big_fb@x-tiled-32bpp-rotate-270:
- shard-rkl: [SKIP][336] ([i915#3638]) -> [SKIP][337] ([i915#14544] / [i915#3638]) +1 other test skip
[336]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17945/shard-rkl-8/igt@kms_big_fb@x-tiled-32bpp-rotate-270.html
[337]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_161036v2/shard-rkl-6/igt@kms_big_fb@x-tiled-32bpp-rotate-270.html
* igt@kms_big_fb@yf-tiled-16bpp-rotate-270:
- shard-rkl: [SKIP][338] -> [SKIP][339] ([i915#14544]) +6 other tests skip
[338]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17945/shard-rkl-8/igt@kms_big_fb@yf-tiled-16bpp-rotate-270.html
[339]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_161036v2/shard-rkl-6/igt@kms_big_fb@yf-tiled-16bpp-rotate-270.html
* igt@kms_ccs@crc-primary-basic-4-tiled-dg2-rc-ccs-cc@pipe-a-hdmi-a-2:
- shard-rkl: [SKIP][340] ([i915#6095]) -> [SKIP][341] ([i915#14544] / [i915#6095]) +6 other tests skip
[340]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17945/shard-rkl-3/igt@kms_ccs@crc-primary-basic-4-tiled-dg2-rc-ccs-cc@pipe-a-hdmi-a-2.html
[341]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_161036v2/shard-rkl-6/igt@kms_ccs@crc-primary-basic-4-tiled-dg2-rc-ccs-cc@pipe-a-hdmi-a-2.html
* igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-rc-ccs@pipe-c-hdmi-a-2:
- shard-rkl: [SKIP][342] ([i915#14098] / [i915#6095]) -> [SKIP][343] ([i915#14098] / [i915#14544] / [i915#6095]) +10 other tests skip
[342]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17945/shard-rkl-3/igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-rc-ccs@pipe-c-hdmi-a-2.html
[343]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_161036v2/shard-rkl-6/igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-rc-ccs@pipe-c-hdmi-a-2.html
* igt@kms_ccs@crc-primary-suspend-y-tiled-gen12-mc-ccs:
- shard-rkl: [SKIP][344] ([i915#14098] / [i915#14544] / [i915#6095]) -> [SKIP][345] ([i915#14098] / [i915#6095]) +5 other tests skip
[344]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17945/shard-rkl-6/igt@kms_ccs@crc-primary-suspend-y-tiled-gen12-mc-ccs.html
[345]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_161036v2/shard-rkl-3/igt@kms_ccs@crc-primary-suspend-y-tiled-gen12-mc-ccs.html
* igt@kms_ccs@crc-primary-suspend-y-tiled-gen12-mc-ccs@pipe-a-hdmi-a-2:
- shard-rkl: [SKIP][346] ([i915#14544] / [i915#6095]) -> [SKIP][347] ([i915#6095]) +4 other tests skip
[346]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17945/shard-rkl-6/igt@kms_ccs@crc-primary-suspend-y-tiled-gen12-mc-ccs@pipe-a-hdmi-a-2.html
[347]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_161036v2/shard-rkl-3/igt@kms_ccs@crc-primary-suspend-y-tiled-gen12-mc-ccs@pipe-a-hdmi-a-2.html
* igt@kms_ccs@crc-sprite-planes-basic-4-tiled-bmg-ccs:
- shard-rkl: [SKIP][348] ([i915#12313]) -> [SKIP][349] ([i915#12313] / [i915#14544])
[348]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17945/shard-rkl-3/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-bmg-ccs.html
[349]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_161036v2/shard-rkl-6/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-bmg-ccs.html
* igt@kms_chamelium_edid@hdmi-edid-read:
- shard-rkl: [SKIP][350] ([i915#11151] / [i915#7828]) -> [SKIP][351] ([i915#11151] / [i915#14544] / [i915#7828]) +3 other tests skip
[350]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17945/shard-rkl-3/igt@kms_chamelium_edid@hdmi-edid-read.html
[351]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_161036v2/shard-rkl-6/igt@kms_chamelium_edid@hdmi-edid-read.html
* igt@kms_chamelium_frames@dp-frame-dump:
- shard-rkl: [SKIP][352] ([i915#11151] / [i915#14544] / [i915#7828]) -> [SKIP][353] ([i915#11151] / [i915#7828]) +1 other test skip
[352]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17945/shard-rkl-6/igt@kms_chamelium_frames@dp-frame-dump.html
[353]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_161036v2/shard-rkl-3/igt@kms_chamelium_frames@dp-frame-dump.html
* igt@kms_content_protection@atomic-hdcp14:
- shard-dg2: [FAIL][354] ([i915#7173]) -> [SKIP][355] ([i915#6944])
[354]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17945/shard-dg2-11/igt@kms_content_protection@atomic-hdcp14.html
[355]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_161036v2/shard-dg2-4/igt@kms_content_protection@atomic-hdcp14.html
* igt@kms_content_protection@legacy:
- shard-dg2: [SKIP][356] ([i915#6944] / [i915#7118] / [i915#9424]) -> [FAIL][357] ([i915#7173])
[356]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17945/shard-dg2-5/igt@kms_content_protection@legacy.html
[357]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_161036v2/shard-dg2-11/igt@kms_content_protection@legacy.html
- shard-rkl: [SKIP][358] ([i915#14544] / [i915#6944] / [i915#7118] / [i915#9424]) -> [SKIP][359] ([i915#6944] / [i915#7118] / [i915#9424])
[358]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17945/shard-rkl-6/igt@kms_content_protection@legacy.html
[359]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_161036v2/shard-rkl-3/igt@kms_content_protection@legacy.html
* igt@kms_content_protection@lic-type-1:
- shard-rkl: [SKIP][360] ([i915#6944] / [i915#9424]) -> [SKIP][361] ([i915#14544] / [i915#6944] / [i915#9424])
[360]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17945/shard-rkl-1/igt@kms_content_protection@lic-type-1.html
[361]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_161036v2/shard-rkl-6/igt@kms_content_protection@lic-type-1.html
* igt@kms_content_protection@mei-interface:
- shard-dg1: [SKIP][362] ([i915#6944] / [i915#9424]) -> [SKIP][363] ([i915#9433])
[362]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17945/shard-dg1-18/igt@kms_content_protection@mei-interface.html
[363]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_161036v2/shard-dg1-13/igt@kms_content_protection@mei-interface.html
* igt@kms_content_protection@srm:
- shard-rkl: [SKIP][364] ([i915#14544] / [i915#6944] / [i915#7118]) -> [SKIP][365] ([i915#6944] / [i915#7118])
[364]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17945/shard-rkl-6/igt@kms_content_protection@srm.html
[365]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_161036v2/shard-rkl-1/igt@kms_content_protection@srm.html
* igt@kms_content_protection@suspend-resume:
- shard-dg2: [SKIP][366] ([i915#6944]) -> [FAIL][367] ([i915#7173])
[366]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17945/shard-dg2-6/igt@kms_content_protection@suspend-resume.html
[367]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_161036v2/shard-dg2-11/igt@kms_content_protection@suspend-resume.html
- shard-rkl: [SKIP][368] ([i915#6944]) -> [SKIP][369] ([i915#14544] / [i915#6944]) +1 other test skip
[368]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17945/shard-rkl-3/igt@kms_content_protection@suspend-resume.html
[369]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_161036v2/shard-rkl-6/igt@kms_content_protection@suspend-resume.html
* igt@kms_cursor_crc@cursor-offscreen-max-size:
- shard-rkl: [SKIP][370] ([i915#3555]) -> [SKIP][371] ([i915#14544] / [i915#3555])
[370]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17945/shard-rkl-3/igt@kms_cursor_crc@cursor-offscreen-max-size.html
[371]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_161036v2/shard-rkl-6/igt@kms_cursor_crc@cursor-offscreen-max-size.html
* igt@kms_cursor_crc@cursor-onscreen-32x10:
- shard-rkl: [SKIP][372] ([i915#14544] / [i915#3555]) -> [SKIP][373] ([i915#3555])
[372]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17945/shard-rkl-6/igt@kms_cursor_crc@cursor-onscreen-32x10.html
[373]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_161036v2/shard-rkl-3/igt@kms_cursor_crc@cursor-onscreen-32x10.html
* igt@kms_cursor_crc@cursor-rapid-movement-512x512:
- shard-rkl: [SKIP][374] ([i915#13049]) -> [SKIP][375] ([i915#13049] / [i915#14544])
[374]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17945/shard-rkl-8/igt@kms_cursor_crc@cursor-rapid-movement-512x512.html
[375]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_161036v2/shard-rkl-6/igt@kms_cursor_crc@cursor-rapid-movement-512x512.html
* igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic:
- shard-dg1: [SKIP][376] ([i915#4103] / [i915#4213] / [i915#4423]) -> [SKIP][377] ([i915#4103] / [i915#4213])
[376]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17945/shard-dg1-13/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic.html
[377]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_161036v2/shard-dg1-15/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic.html
* igt@kms_cursor_legacy@cursora-vs-flipb-legacy:
- shard-rkl: [SKIP][378] ([i915#14544]) -> [SKIP][379]
[378]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17945/shard-rkl-6/igt@kms_cursor_legacy@cursora-vs-flipb-legacy.html
[379]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_161036v2/shard-rkl-3/igt@kms_cursor_legacy@cursora-vs-flipb-legacy.html
* igt@kms_cursor_legacy@short-busy-flip-before-cursor-toggle:
- shard-rkl: [SKIP][380] ([i915#14544] / [i915#4103]) -> [SKIP][381] ([i915#4103])
[380]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17945/shard-rkl-6/igt@kms_cursor_legacy@short-busy-flip-before-cursor-toggle.html
[381]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_161036v2/shard-rkl-3/igt@kms_cursor_legacy@short-busy-flip-before-cursor-toggle.html
* igt@kms_dp_link_training@uhbr-sst:
- shard-rkl: [SKIP][382] ([i915#13748]) -> [SKIP][383] ([i915#13748] / [i915#14544])
[382]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17945/shard-rkl-1/igt@kms_dp_link_training@uhbr-sst.html
[383]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_161036v2/shard-rkl-6/igt@kms_dp_link_training@uhbr-sst.html
* igt@kms_feature_discovery@psr2:
- shard-rkl: [SKIP][384] ([i915#14544] / [i915#658]) -> [SKIP][385] ([i915#658])
[384]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17945/shard-rkl-6/igt@kms_feature_discovery@psr2.html
[385]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_161036v2/shard-rkl-3/igt@kms_feature_discovery@psr2.html
* igt@kms_flip@2x-blocking-absolute-wf_vblank:
- shard-rkl: [SKIP][386] ([i915#14544] / [i915#9934]) -> [SKIP][387] ([i915#9934])
[386]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17945/shard-rkl-6/igt@kms_flip@2x-blocking-absolute-wf_vblank.html
[387]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_161036v2/shard-rkl-3/igt@kms_flip@2x-blocking-absolute-wf_vblank.html
* igt@kms_flip@2x-modeset-vs-vblank-race:
- shard-rkl: [SKIP][388] ([i915#9934]) -> [SKIP][389] ([i915#14544] / [i915#9934]) +3 other tests skip
[388]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17945/shard-rkl-8/igt@kms_flip@2x-modeset-vs-vblank-race.html
[389]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_161036v2/shard-rkl-6/igt@kms_flip@2x-modeset-vs-vblank-race.html
* igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling:
- shard-rkl: [SKIP][390] ([i915#15643]) -> [SKIP][391] ([i915#14544] / [i915#15643])
[390]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17945/shard-rkl-8/igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling.html
[391]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_161036v2/shard-rkl-6/igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling.html
* igt@kms_frontbuffer_tracking@fbc-suspend:
- shard-rkl: [INCOMPLETE][392] ([i915#10056]) -> [ABORT][393] ([i915#15132])
[392]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17945/shard-rkl-6/igt@kms_frontbuffer_tracking@fbc-suspend.html
[393]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_161036v2/shard-rkl-1/igt@kms_frontbuffer_tracking@fbc-suspend.html
* igt@kms_frontbuffer_tracking@fbcpsr-1p-offscreen-pri-shrfb-draw-blt:
- shard-rkl: [SKIP][394] ([i915#15102]) -> [SKIP][395] ([i915#14544] / [i915#15102]) +2 other tests skip
[394]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17945/shard-rkl-1/igt@kms_frontbuffer_tracking@fbcpsr-1p-offscreen-pri-shrfb-draw-blt.html
[395]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_161036v2/shard-rkl-6/igt@kms_frontbuffer_tracking@fbcpsr-1p-offscreen-pri-shrfb-draw-blt.html
* igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-cur-indfb-draw-mmap-gtt:
- shard-rkl: [SKIP][396] ([i915#1825]) -> [SKIP][397] ([i915#14544] / [i915#1825]) +15 other tests skip
[396]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17945/shard-rkl-8/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-cur-indfb-draw-mmap-gtt.html
[397]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_161036v2/shard-rkl-6/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-cur-indfb-draw-mmap-gtt.html
* igt@kms_frontbuffer_tracking@fbcpsr-rgb565-draw-mmap-cpu:
- shard-rkl: [SKIP][398] ([i915#15102] / [i915#3023]) -> [SKIP][399] ([i915#14544] / [i915#15102] / [i915#3023]) +10 other tests skip
[398]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17945/shard-rkl-3/igt@kms_frontbuffer_tracking@fbcpsr-rgb565-draw-mmap-cpu.html
[399]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_161036v2/shard-rkl-6/igt@kms_frontbuffer_tracking@fbcpsr-rgb565-draw-mmap-cpu.html
* igt@kms_frontbuffer_tracking@psr-1p-offscreen-pri-indfb-draw-blt:
- shard-rkl: [SKIP][400] ([i915#14544] / [i915#15102]) -> [SKIP][401] ([i915#15102])
[400]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17945/shard-rkl-6/igt@kms_frontbuffer_tracking@psr-1p-offscreen-pri-indfb-draw-blt.html
[401]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_161036v2/shard-rkl-3/igt@kms_frontbuffer_tracking@psr-1p-offscreen-pri-indfb-draw-blt.html
* igt@kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-draw-mmap-cpu:
- shard-dg2: [SKIP][402] ([i915#10433] / [i915#15102] / [i915#3458]) -> [SKIP][403] ([i915#15102] / [i915#3458]) +5 other tests skip
[402]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17945/shard-dg2-4/igt@kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-draw-mmap-cpu.html
[403]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_161036v2/shard-dg2-1/igt@kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-draw-mmap-cpu.html
* igt@kms_frontbuffer_tracking@psr-1p-primscrn-spr-indfb-draw-pwrite:
- shard-rkl: [SKIP][404] ([i915#14544] / [i915#15102] / [i915#3023]) -> [SKIP][405] ([i915#15102] / [i915#3023]) +1 other test skip
[404]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17945/shard-rkl-6/igt@kms_frontbuffer_tracking@psr-1p-primscrn-spr-indfb-draw-pwrite.html
[405]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_161036v2/shard-rkl-3/igt@kms_frontbuffer_tracking@psr-1p-primscrn-spr-indfb-draw-pwrite.html
* igt@kms_frontbuffer_tracking@psr-2p-primscrn-pri-shrfb-draw-render:
- shard-rkl: [SKIP][406] ([i915#14544] / [i915#1825]) -> [SKIP][407] ([i915#1825]) +6 other tests skip
[406]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17945/shard-rkl-6/igt@kms_frontbuffer_tracking@psr-2p-primscrn-pri-shrfb-draw-render.html
[407]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_161036v2/shard-rkl-3/igt@kms_frontbuffer_tracking@psr-2p-primscrn-pri-shrfb-draw-render.html
* igt@kms_frontbuffer_tracking@psr-indfb-scaledprimary:
- shard-dg2: [SKIP][408] ([i915#15102] / [i915#3458]) -> [SKIP][409] ([i915#10433] / [i915#15102] / [i915#3458]) +4 other tests skip
[408]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17945/shard-dg2-7/igt@kms_frontbuffer_tracking@psr-indfb-scaledprimary.html
[409]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_161036v2/shard-dg2-4/igt@kms_frontbuffer_tracking@psr-indfb-scaledprimary.html
* igt@kms_hdr@bpc-switch-suspend:
- shard-rkl: [INCOMPLETE][410] ([i915#15436]) -> [SKIP][411] ([i915#3555] / [i915#8228])
[410]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17945/shard-rkl-6/igt@kms_hdr@bpc-switch-suspend.html
[411]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_161036v2/shard-rkl-3/igt@kms_hdr@bpc-switch-suspend.html
* igt@kms_joiner@invalid-modeset-big-joiner:
- shard-rkl: [SKIP][412] ([i915#14544] / [i915#15460]) -> [SKIP][413] ([i915#15460])
[412]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17945/shard-rkl-6/igt@kms_joiner@invalid-modeset-big-joiner.html
[413]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_161036v2/shard-rkl-3/igt@kms_joiner@invalid-modeset-big-joiner.html
* igt@kms_pipe_stress@stress-xrgb8888-4tiled:
- shard-rkl: [SKIP][414] ([i915#14712]) -> [SKIP][415] ([i915#14544] / [i915#14712])
[414]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17945/shard-rkl-3/igt@kms_pipe_stress@stress-xrgb8888-4tiled.html
[415]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_161036v2/shard-rkl-6/igt@kms_pipe_stress@stress-xrgb8888-4tiled.html
* igt@kms_plane@pixel-format-4-tiled-dg2-rc-ccs-cc-modifier:
- shard-rkl: [SKIP][416] ([i915#14544] / [i915#15608] / [i915#8825]) -> [SKIP][417] ([i915#15608] / [i915#8825]) +1 other test skip
[416]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17945/shard-rkl-6/igt@kms_plane@pixel-format-4-tiled-dg2-rc-ccs-cc-modifier.html
[417]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_161036v2/shard-rkl-3/igt@kms_plane@pixel-format-4-tiled-dg2-rc-ccs-cc-modifier.html
* igt@kms_plane@pixel-format-4-tiled-dg2-rc-ccs-cc-modifier@pipe-a-plane-0:
- shard-rkl: [SKIP][418] ([i915#14544] / [i915#15608]) -> [SKIP][419] ([i915#15608])
[418]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17945/shard-rkl-6/igt@kms_plane@pixel-format-4-tiled-dg2-rc-ccs-cc-modifier@pipe-a-plane-0.html
[419]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_161036v2/shard-rkl-3/igt@kms_plane@pixel-format-4-tiled-dg2-rc-ccs-cc-modifier@pipe-a-plane-0.html
* igt@kms_plane@pixel-format-4-tiled-mtl-rc-ccs-modifier@pipe-a-plane-0:
- shard-rkl: [SKIP][420] ([i915#15608]) -> [SKIP][421] ([i915#14544] / [i915#15608])
[420]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17945/shard-rkl-3/igt@kms_plane@pixel-format-4-tiled-mtl-rc-ccs-modifier@pipe-a-plane-0.html
[421]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_161036v2/shard-rkl-6/igt@kms_plane@pixel-format-4-tiled-mtl-rc-ccs-modifier@pipe-a-plane-0.html
* igt@kms_plane@pixel-format-4-tiled-mtl-rc-ccs-modifier@pipe-b-plane-5:
- shard-rkl: [SKIP][422] ([i915#15608] / [i915#8825]) -> [SKIP][423] ([i915#14544] / [i915#15608] / [i915#8825]) +1 other test skip
[422]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17945/shard-rkl-3/igt@kms_plane@pixel-format-4-tiled-mtl-rc-ccs-modifier@pipe-b-plane-5.html
[423]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_161036v2/shard-rkl-6/igt@kms_plane@pixel-format-4-tiled-mtl-rc-ccs-modifier@pipe-b-plane-5.html
* igt@kms_plane_multiple@2x-tiling-none:
- shard-rkl: [SKIP][424] ([i915#13958]) -> [SKIP][425] ([i915#13958] / [i915#14544])
[424]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17945/shard-rkl-8/igt@kms_plane_multiple@2x-tiling-none.html
[425]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_161036v2/shard-rkl-6/igt@kms_plane_multiple@2x-tiling-none.html
* igt@kms_plane_scaling@plane-scaler-unity-scaling-with-rotation@pipe-b:
- shard-rkl: [SKIP][426] ([i915#15329]) -> [SKIP][427] ([i915#14544] / [i915#15329]) +3 other tests skip
[426]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17945/shard-rkl-8/igt@kms_plane_scaling@plane-scaler-unity-scaling-with-rotation@pipe-b.html
[427]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_161036v2/shard-rkl-6/igt@kms_plane_scaling@plane-scaler-unity-scaling-with-rotation@pipe-b.html
* igt@kms_pm_dc@dc3co-vpb-simulation:
- shard-rkl: [SKIP][428] ([i915#9685]) -> [SKIP][429] ([i915#14544] / [i915#9685])
[428]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17945/shard-rkl-3/igt@kms_pm_dc@dc3co-vpb-simulation.html
[429]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_161036v2/shard-rkl-6/igt@kms_pm_dc@dc3co-vpb-simulation.html
* igt@kms_pm_rpm@package-g7:
- shard-rkl: [SKIP][430] ([i915#14544] / [i915#15403]) -> [SKIP][431] ([i915#15403])
[430]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17945/shard-rkl-6/igt@kms_pm_rpm@package-g7.html
[431]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_161036v2/shard-rkl-1/igt@kms_pm_rpm@package-g7.html
* igt@kms_psr2_sf@pr-overlay-plane-update-continuous-sf:
- shard-rkl: [SKIP][432] ([i915#11520] / [i915#14544]) -> [SKIP][433] ([i915#11520]) +1 other test skip
[432]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17945/shard-rkl-6/igt@kms_psr2_sf@pr-overlay-plane-update-continuous-sf.html
[433]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_161036v2/shard-rkl-3/igt@kms_psr2_sf@pr-overlay-plane-update-continuous-sf.html
* igt@kms_psr2_sf@psr2-overlay-primary-update-sf-dmg-area:
- shard-rkl: [SKIP][434] ([i915#11520]) -> [SKIP][435] ([i915#11520] / [i915#14544]) +1 other test skip
[434]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17945/shard-rkl-3/igt@kms_psr2_sf@psr2-overlay-primary-update-sf-dmg-area.html
[435]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_161036v2/shard-rkl-6/igt@kms_psr2_sf@psr2-overlay-primary-update-sf-dmg-area.html
* igt@kms_psr2_su@frontbuffer-xrgb8888:
- shard-rkl: [SKIP][436] ([i915#9683]) -> [SKIP][437] ([i915#14544] / [i915#9683])
[436]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17945/shard-rkl-8/igt@kms_psr2_su@frontbuffer-xrgb8888.html
[437]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_161036v2/shard-rkl-6/igt@kms_psr2_su@frontbuffer-xrgb8888.html
* igt@kms_psr@pr-cursor-plane-onoff:
- shard-rkl: [SKIP][438] ([i915#1072] / [i915#14544] / [i915#9732]) -> [SKIP][439] ([i915#1072] / [i915#9732]) +2 other tests skip
[438]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17945/shard-rkl-6/igt@kms_psr@pr-cursor-plane-onoff.html
[439]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_161036v2/shard-rkl-3/igt@kms_psr@pr-cursor-plane-onoff.html
* igt@kms_psr@psr-cursor-render:
- shard-rkl: [SKIP][440] ([i915#1072] / [i915#9732]) -> [SKIP][441] ([i915#1072] / [i915#14544] / [i915#9732]) +6 other tests skip
[440]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17945/shard-rkl-3/igt@kms_psr@psr-cursor-render.html
[441]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_161036v2/shard-rkl-6/igt@kms_psr@psr-cursor-render.html
* igt@kms_rotation_crc@primary-4-tiled-reflect-x-0:
- shard-rkl: [SKIP][442] ([i915#5289]) -> [SKIP][443] ([i915#14544] / [i915#5289])
[442]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17945/shard-rkl-3/igt@kms_rotation_crc@primary-4-tiled-reflect-x-0.html
[443]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_161036v2/shard-rkl-6/igt@kms_rotation_crc@primary-4-tiled-reflect-x-0.html
* igt@kms_vrr@seamless-rr-switch-virtual:
- shard-rkl: [SKIP][444] ([i915#9906]) -> [SKIP][445] ([i915#14544] / [i915#9906])
[444]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17945/shard-rkl-8/igt@kms_vrr@seamless-rr-switch-virtual.html
[445]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_161036v2/shard-rkl-6/igt@kms_vrr@seamless-rr-switch-virtual.html
* igt@prime_vgem@fence-write-hang:
- shard-rkl: [SKIP][446] ([i915#3708]) -> [SKIP][447] ([i915#14544] / [i915#3708])
[446]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17945/shard-rkl-3/igt@prime_vgem@fence-write-hang.html
[447]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_161036v2/shard-rkl-6/igt@prime_vgem@fence-write-hang.html
[i915#10056]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10056
[i915#10307]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10307
[i915#10433]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10433
[i915#10434]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10434
[i915#1072]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1072
[i915#10959]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10959
[i915#11078]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11078
[i915#11151]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11151
[i915#11520]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11520
[i915#11965]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11965
[i915#12276]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12276
[i915#12313]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12313
[i915#12358]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12358
[i915#12392]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12392
[i915#1257]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1257
[i915#12655]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12655
[i915#12713]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12713
[i915#12745]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12745
[i915#13046]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13046
[i915#13049]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13049
[i915#13179]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13179
[i915#13356]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13356
[i915#13398]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13398
[i915#13566]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13566
[i915#13688]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13688
[i915#13748]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13748
[i915#13749]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13749
[i915#13781]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13781
[i915#13958]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13958
[i915#14073]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14073
[i915#14098]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14098
[i915#14123]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14123
[i915#14152]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14152
[i915#14259]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14259
[i915#14419]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14419
[i915#14544]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14544
[i915#14712]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14712
[i915#14809]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14809
[i915#15073]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15073
[i915#15095]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15095
[i915#15102]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15102
[i915#15104]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15104
[i915#15131]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15131
[i915#15132]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15132
[i915#15140]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15140
[i915#15243]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15243
[i915#15329]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15329
[i915#15330]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15330
[i915#15342]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15342
[i915#15389]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15389
[i915#15403]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15403
[i915#15436]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15436
[i915#15459]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15459
[i915#15460]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15460
[i915#15479]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15479
[i915#15588]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15588
[i915#15608]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15608
[i915#15609]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15609
[i915#15643]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15643
[i915#1825]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1825
[i915#1839]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1839
[i915#2346]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2346
[i915#2527]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2527
[i915#2658]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2658
[i915#280]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/280
[i915#2856]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2856
[i915#3023]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3023
[i915#3116]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3116
[i915#3281]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3281
[i915#3282]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3282
[i915#3291]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3291
[i915#3297]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3297
[i915#3458]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3458
[i915#3539]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3539
[i915#3555]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3555
[i915#3637]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3637
[i915#3638]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3638
[i915#3708]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3708
[i915#3828]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3828
[i915#3840]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3840
[i915#4077]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4077
[i915#4079]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4079
[i915#4083]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4083
[i915#4103]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4103
[i915#4213]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4213
[i915#4215]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4215
[i915#4270]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4270
[i915#4281]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4281
[i915#4349]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4349
[i915#4387]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4387
[i915#4423]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4423
[i915#4525]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4525
[i915#4538]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4538
[i915#4613]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4613
[i915#4839]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4839
[i915#4860]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4860
[i915#5138]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5138
[i915#5190]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5190
[i915#5286]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5286
[i915#5289]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5289
[i915#5354]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5354
[i915#5723]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5723
[i915#5956]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5956
[i915#6095]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6095
[i915#6113]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6113
[i915#6245]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6245
[i915#6301]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6301
[i915#6344]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6344
[i915#6524]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6524
[i915#658]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/658
[i915#6880]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6880
[i915#6944]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6944
[i915#6953]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6953
[i915#7116]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7116
[i915#7118]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7118
[i915#7173]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7173
[i915#7582]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7582
[i915#7697]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7697
[i915#7707]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7707
[i915#7828]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7828
[i915#7882]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7882
[i915#7984]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7984
[i915#8228]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8228
[i915#8399]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8399
[i915#8411]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8411
[i915#8428]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8428
[i915#8516]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8516
[i915#8623]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8623
[i915#8708]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8708
[i915#8814]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8814
[i915#8821]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8821
[i915#8825]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8825
[i915#9323]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9323
[i915#9337]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9337
[i915#9424]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9424
[i915#9433]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9433
[i915#9531]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9531
[i915#9561]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9561
[i915#9683]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9683
[i915#9685]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9685
[i915#9688]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9688
[i915#9723]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9723
[i915#9732]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9732
[i915#9766]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9766
[i915#9808]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9808
[i915#9812]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9812
[i915#9906]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9906
[i915#9934]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9934
Build changes
-------------
* Linux: CI_DRM_17945 -> Patchwork_161036v2
CI-20190529: 20190529
CI_DRM_17945: 75acb0a8b6f69c6429941e6845df2af94ed15939 @ git://anongit.freedesktop.org/gfx-ci/linux
IGT_8739: 8739
Patchwork_161036v2: 75acb0a8b6f69c6429941e6845df2af94ed15939 @ git://anongit.freedesktop.org/gfx-ci/linux
piglit_4509: fdc5a4ca11124ab8413c7988896eec4c97336694 @ git://anongit.freedesktop.org/piglit
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_161036v2/index.html
[-- Attachment #2: Type: text/html, Size: 161389 bytes --]
^ permalink raw reply [flat|nested] 21+ messages in thread
end of thread, other threads:[~2026-02-06 22:08 UTC | newest]
Thread overview: 21+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2026-02-05 23:39 [PATCH v2 00/15] Basic enabling patches for Xe3p_LPG and NVL-P Gustavo Sousa
2026-02-05 23:39 ` [PATCH v2 01/15] drm/xe/xe3p_lpg: Add support for graphics IP 35.10 Gustavo Sousa
2026-02-06 15:26 ` Matt Roper
2026-02-05 23:39 ` [PATCH v2 02/15] drm/xe/xe3p_lpg: Add initial workarounds for graphics version 35.10 Gustavo Sousa
2026-02-06 15:25 ` Matt Roper
2026-02-05 23:39 ` [PATCH v2 03/15] drm/xe/pat: Differentiate between primary and media for PTA Gustavo Sousa
2026-02-05 23:39 ` [PATCH v2 04/15] drm/xe/xe3p_lpg: Add new PAT table Gustavo Sousa
2026-02-05 23:39 ` [PATCH v2 05/15] drm/xe/xe3p_lpg: Add MCR steering Gustavo Sousa
2026-02-05 23:39 ` [PATCH v2 06/15] drm/xe/xe3p_lpg: Add LRC parsing for additional RCS engine state Gustavo Sousa
2026-02-05 23:39 ` [PATCH v2 07/15] drm/xe/xe3p_lpg: Disable reporting of context switch status to GHWSP Gustavo Sousa
2026-02-05 23:39 ` [PATCH v2 08/15] drm/xe/xe3p_lpg: Drop unnecessary tuning settings Gustavo Sousa
2026-02-05 23:39 ` [PATCH v2 09/15] drm/xe/xe3p_lpg: Extend 'group ID' mask size Gustavo Sousa
2026-02-05 23:39 ` [PATCH v2 10/15] drm/xe/xe3p_lpg: Update LRC sizes Gustavo Sousa
2026-02-05 23:39 ` [PATCH v2 11/15] drm/xe/xe3p_lpg: Set STLB bank hash mode to 4KB Gustavo Sousa
2026-02-05 23:39 ` [PATCH v2 12/15] drm/xe/nvlp: Add NVL-P platform definition Gustavo Sousa
2026-02-05 23:39 ` [PATCH v2 13/15] drm/xe/nvlp: Attach MOCS table for nvlp Gustavo Sousa
2026-02-05 23:39 ` [PATCH v2 14/15] drm/i915/nvlp: Hook up display support Gustavo Sousa
2026-02-05 23:39 ` [PATCH v2 15/15] drm/xe/nvlp: Bump maximum WOPCM size Gustavo Sousa
2026-02-06 8:39 ` Bhadane, Dnyaneshwar
2026-02-06 0:57 ` ✓ i915.CI.BAT: success for Basic enabling patches for Xe3p_LPG and NVL-P (rev2) Patchwork
2026-02-06 22:08 ` ✓ i915.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