* [PATCH v2 0/6] drm/i915/bios: Refactor ROM access
@ 2024-09-23 15:24 Ville Syrjala
2024-09-23 15:24 ` [PATCH v2 1/6] drm/i915/bios: Use drm_dbg_kms() consistently Ville Syrjala
` (9 more replies)
0 siblings, 10 replies; 12+ messages in thread
From: Ville Syrjala @ 2024-09-23 15:24 UTC (permalink / raw)
To: intel-gfx; +Cc: intel-xe
From: Ville Syrjälä <ville.syrjala@linux.intel.com>
Unify the behaviour of the PCI ROM vs. SPI flash VBT
read codepaths, and relocate out the low level nuts details
from intel_bios.c into a new soc/intel_rom.c file.
v2: Sort out the drm_dbg() vs. drm_dbg_kms() mess
Include terminating '\0' in vbt_signature[]
Drop an unneccesry cast
Ville Syrjälä (6):
drm/i915/bios: Use drm_dbg_kms() consistently
drm/i915/bios: Add some size checks to SPI VBT read
drm/i915/bios: Round PCI ROM VBT allocation to multiple of 4
drm/i915/bios: Extract intel_spi_read16()
drm/i915/bios: Extract vbt_signature[]
drm/i915/bios: Extract soc/intel_rom.c
drivers/gpu/drm/i915/Makefile | 3 +-
drivers/gpu/drm/i915/display/intel_bios.c | 157 +++++------------
drivers/gpu/drm/i915/soc/intel_rom.c | 160 ++++++++++++++++++
drivers/gpu/drm/i915/soc/intel_rom.h | 25 +++
drivers/gpu/drm/xe/Makefile | 3 +-
.../xe/compat-i915-headers/soc/intel_rom.h | 6 +
6 files changed, 239 insertions(+), 115 deletions(-)
create mode 100644 drivers/gpu/drm/i915/soc/intel_rom.c
create mode 100644 drivers/gpu/drm/i915/soc/intel_rom.h
create mode 100644 drivers/gpu/drm/xe/compat-i915-headers/soc/intel_rom.h
--
2.44.2
^ permalink raw reply [flat|nested] 12+ messages in thread
* [PATCH v2 1/6] drm/i915/bios: Use drm_dbg_kms() consistently
2024-09-23 15:24 [PATCH v2 0/6] drm/i915/bios: Refactor ROM access Ville Syrjala
@ 2024-09-23 15:24 ` Ville Syrjala
2024-09-24 13:52 ` Jani Nikula
2024-09-23 15:24 ` [PATCH v2 2/6] drm/i915/bios: Add some size checks to SPI VBT read Ville Syrjala
` (8 subsequent siblings)
9 siblings, 1 reply; 12+ messages in thread
From: Ville Syrjala @ 2024-09-23 15:24 UTC (permalink / raw)
To: intel-gfx; +Cc: intel-xe
From: Ville Syrjälä <ville.syrjala@linux.intel.com>
Replace the few oddball drm_dbg() calls in VBT related code
with drm_dbg_kms() as that is what we generally use for all
display code.
Signed-off-by: Ville Syrjälä <ville.syrjala@linux.intel.com>
---
drivers/gpu/drm/i915/display/intel_bios.c | 22 +++++++++++-----------
1 file changed, 11 insertions(+), 11 deletions(-)
diff --git a/drivers/gpu/drm/i915/display/intel_bios.c b/drivers/gpu/drm/i915/display/intel_bios.c
index daa4b9535123..b00aad23d6c2 100644
--- a/drivers/gpu/drm/i915/display/intel_bios.c
+++ b/drivers/gpu/drm/i915/display/intel_bios.c
@@ -1706,8 +1706,8 @@ parse_mipi_config(struct intel_display *display,
return;
}
- drm_dbg(display->drm, "Found MIPI Config block, panel index = %d\n",
- panel_type);
+ drm_dbg_kms(display->drm, "Found MIPI Config block, panel index = %d\n",
+ panel_type);
/*
* get hold of the correct configuration block and pps data as per
@@ -2067,8 +2067,8 @@ parse_mipi_sequence(struct intel_display *display,
return;
}
- drm_dbg(display->drm, "Found MIPI sequence block v%u\n",
- sequence->version);
+ drm_dbg_kms(display->drm, "Found MIPI sequence block v%u\n",
+ sequence->version);
seq_data = find_panel_sequence_block(display, sequence, panel_type, &seq_size);
if (!seq_data)
@@ -2114,7 +2114,7 @@ parse_mipi_sequence(struct intel_display *display,
fixup_mipi_sequences(display, panel);
- drm_dbg(display->drm, "MIPI related VBT parsing complete\n");
+ drm_dbg_kms(display->drm, "MIPI related VBT parsing complete\n");
return;
err:
@@ -2771,9 +2771,9 @@ static bool child_device_size_valid(struct intel_display *display, int size)
expected_size = child_device_expected_size(display->vbt.version);
if (expected_size < 0) {
expected_size = sizeof(struct child_device_config);
- drm_dbg(display->drm,
- "Expected child device config size for VBT version %u not known; assuming %d\n",
- display->vbt.version, expected_size);
+ drm_dbg_kms(display->drm,
+ "Expected child device config size for VBT version %u not known; assuming %d\n",
+ display->vbt.version, expected_size);
}
/* Flag an error for unexpected size, but continue anyway. */
@@ -3143,14 +3143,14 @@ static struct vbt_header *oprom_get_vbt(struct intel_display *display,
goto err_unmap_oprom;
if (sizeof(struct vbt_header) > size) {
- drm_dbg(display->drm, "VBT header incomplete\n");
+ drm_dbg_kms(display->drm, "VBT header incomplete\n");
goto err_unmap_oprom;
}
vbt_size = ioread16(p + offsetof(struct vbt_header, vbt_size));
if (vbt_size > size) {
- drm_dbg(display->drm,
- "VBT incomplete (vbt_size overflows)\n");
+ drm_dbg_kms(display->drm,
+ "VBT incomplete (vbt_size overflows)\n");
goto err_unmap_oprom;
}
--
2.44.2
^ permalink raw reply related [flat|nested] 12+ messages in thread
* [PATCH v2 2/6] drm/i915/bios: Add some size checks to SPI VBT read
2024-09-23 15:24 [PATCH v2 0/6] drm/i915/bios: Refactor ROM access Ville Syrjala
2024-09-23 15:24 ` [PATCH v2 1/6] drm/i915/bios: Use drm_dbg_kms() consistently Ville Syrjala
@ 2024-09-23 15:24 ` Ville Syrjala
2024-09-23 15:24 ` [PATCH v2 3/6] drm/i915/bios: Round PCI ROM VBT allocation to multiple of 4 Ville Syrjala
` (7 subsequent siblings)
9 siblings, 0 replies; 12+ messages in thread
From: Ville Syrjala @ 2024-09-23 15:24 UTC (permalink / raw)
To: intel-gfx; +Cc: intel-xe, Jani Nikula
From: Ville Syrjälä <ville.syrjala@linux.intel.com>
Unify the SPI vs. PCI ROM VBT read codepaths a bit by
pulling some size overflow checks from the PCI side
into the SPI side.
v2: s/drm_dbg()/drm_dbg_kms()/
Reviewed-by: Jani Nikula <jani.nikula@intel.com>
Signed-off-by: Ville Syrjälä <ville.syrjala@linux.intel.com>
---
drivers/gpu/drm/i915/display/intel_bios.c | 11 +++++++++++
1 file changed, 11 insertions(+)
diff --git a/drivers/gpu/drm/i915/display/intel_bios.c b/drivers/gpu/drm/i915/display/intel_bios.c
index b00aad23d6c2..37f30bb76e08 100644
--- a/drivers/gpu/drm/i915/display/intel_bios.c
+++ b/drivers/gpu/drm/i915/display/intel_bios.c
@@ -3088,11 +3088,22 @@ static struct vbt_header *spi_oprom_get_vbt(struct intel_display *display,
if (count >= oprom_size)
goto err_not_found;
+ if (sizeof(struct vbt_header) > oprom_size - count) {
+ drm_dbg_kms(display->drm, "VBT header incomplete\n");
+ goto err_not_found;
+ }
+
/* Get VBT size and allocate space for the VBT */
vbt_size = intel_spi_read(&i915->uncore,
found + offsetof(struct vbt_header, vbt_size));
vbt_size &= 0xffff;
+ if (vbt_size > oprom_size - count) {
+ drm_dbg_kms(display->drm,
+ "VBT incomplete (vbt_size overflows)\n");
+ goto err_not_found;
+ }
+
vbt = kzalloc(round_up(vbt_size, 4), GFP_KERNEL);
if (!vbt)
goto err_not_found;
--
2.44.2
^ permalink raw reply related [flat|nested] 12+ messages in thread
* [PATCH v2 3/6] drm/i915/bios: Round PCI ROM VBT allocation to multiple of 4
2024-09-23 15:24 [PATCH v2 0/6] drm/i915/bios: Refactor ROM access Ville Syrjala
2024-09-23 15:24 ` [PATCH v2 1/6] drm/i915/bios: Use drm_dbg_kms() consistently Ville Syrjala
2024-09-23 15:24 ` [PATCH v2 2/6] drm/i915/bios: Add some size checks to SPI VBT read Ville Syrjala
@ 2024-09-23 15:24 ` Ville Syrjala
2024-09-23 15:24 ` [PATCH v2 4/6] drm/i915/bios: Extract intel_spi_read16() Ville Syrjala
` (6 subsequent siblings)
9 siblings, 0 replies; 12+ messages in thread
From: Ville Syrjala @ 2024-09-23 15:24 UTC (permalink / raw)
To: intel-gfx; +Cc: intel-xe, Jani Nikula
From: Ville Syrjälä <ville.syrjala@linux.intel.com>
The SPI code rounds the VBT allocation to a multiple of four bytes
(presumably because it reads the VBT 4 bytes at a time). Do the
same for the PCI ROM side to eliminate pointless differences between
the two codepaths. This will make no functional difference.
Reviewed-by: Jani Nikula <jani.nikula@intel.com>
Signed-off-by: Ville Syrjälä <ville.syrjala@linux.intel.com>
---
drivers/gpu/drm/i915/display/intel_bios.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/drivers/gpu/drm/i915/display/intel_bios.c b/drivers/gpu/drm/i915/display/intel_bios.c
index 37f30bb76e08..d4281234773c 100644
--- a/drivers/gpu/drm/i915/display/intel_bios.c
+++ b/drivers/gpu/drm/i915/display/intel_bios.c
@@ -3166,7 +3166,7 @@ static struct vbt_header *oprom_get_vbt(struct intel_display *display,
}
/* The rest will be validated by intel_bios_is_valid_vbt() */
- vbt = kmalloc(vbt_size, GFP_KERNEL);
+ vbt = kmalloc(round_up(vbt_size, 4), GFP_KERNEL);
if (!vbt)
goto err_unmap_oprom;
--
2.44.2
^ permalink raw reply related [flat|nested] 12+ messages in thread
* [PATCH v2 4/6] drm/i915/bios: Extract intel_spi_read16()
2024-09-23 15:24 [PATCH v2 0/6] drm/i915/bios: Refactor ROM access Ville Syrjala
` (2 preceding siblings ...)
2024-09-23 15:24 ` [PATCH v2 3/6] drm/i915/bios: Round PCI ROM VBT allocation to multiple of 4 Ville Syrjala
@ 2024-09-23 15:24 ` Ville Syrjala
2024-09-23 15:24 ` [PATCH v2 5/6] drm/i915/bios: Extract vbt_signature[] Ville Syrjala
` (5 subsequent siblings)
9 siblings, 0 replies; 12+ messages in thread
From: Ville Syrjala @ 2024-09-23 15:24 UTC (permalink / raw)
To: intel-gfx; +Cc: intel-xe, Jani Nikula
From: Ville Syrjälä <ville.syrjala@linux.intel.com>
The SPI VBT codepath only knows how to read 4 bytes at a time.
So to read the 2 byte vbt_size it masks out the unwanted msbs.
Hide that little implementation detail inside a new intel_spi_read16()
helper. Alse rename the existing intel_spi_read() to intel_spi_read32()
to make it clear what it does.
Reviewed-by: Jani Nikula <jani.nikula@intel.com>
Signed-off-by: Ville Syrjälä <ville.syrjala@linux.intel.com>
---
drivers/gpu/drm/i915/display/intel_bios.c | 16 ++++++++++------
1 file changed, 10 insertions(+), 6 deletions(-)
diff --git a/drivers/gpu/drm/i915/display/intel_bios.c b/drivers/gpu/drm/i915/display/intel_bios.c
index d4281234773c..38ea92b4ff13 100644
--- a/drivers/gpu/drm/i915/display/intel_bios.c
+++ b/drivers/gpu/drm/i915/display/intel_bios.c
@@ -3053,13 +3053,18 @@ static struct vbt_header *firmware_get_vbt(struct intel_display *display,
return vbt;
}
-static u32 intel_spi_read(struct intel_uncore *uncore, u32 offset)
+static u32 intel_spi_read32(struct intel_uncore *uncore, u32 offset)
{
intel_uncore_write(uncore, PRIMARY_SPI_ADDRESS, offset);
return intel_uncore_read(uncore, PRIMARY_SPI_TRIGGER);
}
+static u16 intel_spi_read16(struct intel_uncore *uncore, u32 offset)
+{
+ return intel_spi_read32(uncore, offset) & 0xffff;
+}
+
static struct vbt_header *spi_oprom_get_vbt(struct intel_display *display,
size_t *size)
{
@@ -3078,7 +3083,7 @@ static struct vbt_header *spi_oprom_get_vbt(struct intel_display *display,
oprom_offset &= OROM_OFFSET_MASK;
for (count = 0; count < oprom_size; count += 4) {
- data = intel_spi_read(&i915->uncore, oprom_offset + count);
+ data = intel_spi_read32(&i915->uncore, oprom_offset + count);
if (data == *((const u32 *)"$VBT")) {
found = oprom_offset + count;
break;
@@ -3094,9 +3099,8 @@ static struct vbt_header *spi_oprom_get_vbt(struct intel_display *display,
}
/* Get VBT size and allocate space for the VBT */
- vbt_size = intel_spi_read(&i915->uncore,
- found + offsetof(struct vbt_header, vbt_size));
- vbt_size &= 0xffff;
+ vbt_size = intel_spi_read16(&i915->uncore,
+ found + offsetof(struct vbt_header, vbt_size));
if (vbt_size > oprom_size - count) {
drm_dbg_kms(display->drm,
@@ -3109,7 +3113,7 @@ static struct vbt_header *spi_oprom_get_vbt(struct intel_display *display,
goto err_not_found;
for (count = 0; count < vbt_size; count += 4)
- *(vbt + store++) = intel_spi_read(&i915->uncore, found + count);
+ *(vbt + store++) = intel_spi_read32(&i915->uncore, found + count);
if (!intel_bios_is_valid_vbt(display, vbt, vbt_size))
goto err_free_vbt;
--
2.44.2
^ permalink raw reply related [flat|nested] 12+ messages in thread
* [PATCH v2 5/6] drm/i915/bios: Extract vbt_signature[]
2024-09-23 15:24 [PATCH v2 0/6] drm/i915/bios: Refactor ROM access Ville Syrjala
` (3 preceding siblings ...)
2024-09-23 15:24 ` [PATCH v2 4/6] drm/i915/bios: Extract intel_spi_read16() Ville Syrjala
@ 2024-09-23 15:24 ` Ville Syrjala
2024-09-23 15:24 ` [PATCH v2 6/6] drm/i915/bios: Extract soc/intel_rom.c Ville Syrjala
` (4 subsequent siblings)
9 siblings, 0 replies; 12+ messages in thread
From: Ville Syrjala @ 2024-09-23 15:24 UTC (permalink / raw)
To: intel-gfx; +Cc: intel-xe, Jani Nikula
From: Ville Syrjälä <ville.syrjala@linux.intel.com>
Replace the three hand rolled "$VBT"s with a vbt_signature[]
to avoid accidents.
v2: Include terminating '\0' for safety (Jani)
Reviewed-by: Jani Nikula <jani.nikula@intel.com>
Signed-off-by: Ville Syrjälä <ville.syrjala@linux.intel.com>
---
drivers/gpu/drm/i915/display/intel_bios.c | 15 ++++++++++++---
1 file changed, 12 insertions(+), 3 deletions(-)
diff --git a/drivers/gpu/drm/i915/display/intel_bios.c b/drivers/gpu/drm/i915/display/intel_bios.c
index 38ea92b4ff13..c57426940cf8 100644
--- a/drivers/gpu/drm/i915/display/intel_bios.c
+++ b/drivers/gpu/drm/i915/display/intel_bios.c
@@ -2964,6 +2964,9 @@ static const struct bdb_header *get_bdb_header(const struct vbt_header *vbt)
return _vbt + vbt->bdb_offset;
}
+static const char vbt_signature[] = "$VBT";
+static const int vbt_signature_len = 4;
+
/**
* intel_bios_is_valid_vbt - does the given buffer contain a valid VBT
* @display: display device
@@ -2986,7 +2989,7 @@ bool intel_bios_is_valid_vbt(struct intel_display *display,
return false;
}
- if (memcmp(vbt->signature, "$VBT", 4)) {
+ if (memcmp(vbt->signature, vbt_signature, vbt_signature_len)) {
drm_dbg_kms(display->drm, "VBT invalid signature\n");
return false;
}
@@ -3082,9 +3085,12 @@ static struct vbt_header *spi_oprom_get_vbt(struct intel_display *display,
oprom_offset = intel_uncore_read(&i915->uncore, OROM_OFFSET);
oprom_offset &= OROM_OFFSET_MASK;
+ BUILD_BUG_ON(vbt_signature_len != sizeof(vbt_signature) - 1);
+ BUILD_BUG_ON(vbt_signature_len != sizeof(u32));
+
for (count = 0; count < oprom_size; count += 4) {
data = intel_spi_read32(&i915->uncore, oprom_offset + count);
- if (data == *((const u32 *)"$VBT")) {
+ if (data == *((const u32 *)vbt_signature)) {
found = oprom_offset + count;
break;
}
@@ -3144,9 +3150,12 @@ static struct vbt_header *oprom_get_vbt(struct intel_display *display,
if (!oprom)
return NULL;
+ BUILD_BUG_ON(vbt_signature_len != sizeof(vbt_signature) - 1);
+ BUILD_BUG_ON(vbt_signature_len != sizeof(u32));
+
/* Scour memory looking for the VBT signature. */
for (i = 0; i + 4 < size; i += 4) {
- if (ioread32(oprom + i) != *((const u32 *)"$VBT"))
+ if (ioread32(oprom + i) != *((const u32 *)vbt_signature))
continue;
p = oprom + i;
--
2.44.2
^ permalink raw reply related [flat|nested] 12+ messages in thread
* [PATCH v2 6/6] drm/i915/bios: Extract soc/intel_rom.c
2024-09-23 15:24 [PATCH v2 0/6] drm/i915/bios: Refactor ROM access Ville Syrjala
` (4 preceding siblings ...)
2024-09-23 15:24 ` [PATCH v2 5/6] drm/i915/bios: Extract vbt_signature[] Ville Syrjala
@ 2024-09-23 15:24 ` Ville Syrjala
2024-09-26 17:22 ` ✓ Fi.CI.BAT: success for drm/i915/bios: Refactor ROM access (rev2) Patchwork
` (3 subsequent siblings)
9 siblings, 0 replies; 12+ messages in thread
From: Ville Syrjala @ 2024-09-23 15:24 UTC (permalink / raw)
To: intel-gfx; +Cc: intel-xe, Jani Nikula
From: Ville Syrjälä <ville.syrjala@linux.intel.com>
Abstract away the nuts and bolts of the SPI vs. PCI ROM
stuff, and hide it all in soc/intel_rom.c so that the
VBT code doesn't have to care about this stuff.
This leaves intel_bios.c with a single codepath that
can focus on the details related to the VBT layout.
This should have no functional changes.
v2: Rebase due to vbt_signature changes
Drop unnecessary cast (Jani)
Reviewed-by: Jani Nikula <jani.nikula@intel.com>
Signed-off-by: Ville Syrjälä <ville.syrjala@linux.intel.com>
---
drivers/gpu/drm/i915/Makefile | 3 +-
drivers/gpu/drm/i915/display/intel_bios.c | 149 +++-------------
drivers/gpu/drm/i915/soc/intel_rom.c | 160 ++++++++++++++++++
drivers/gpu/drm/i915/soc/intel_rom.h | 25 +++
drivers/gpu/drm/xe/Makefile | 3 +-
| 6 +
6 files changed, 223 insertions(+), 123 deletions(-)
create mode 100644 drivers/gpu/drm/i915/soc/intel_rom.c
create mode 100644 drivers/gpu/drm/i915/soc/intel_rom.h
create mode 100644 drivers/gpu/drm/xe/compat-i915-headers/soc/intel_rom.h
diff --git a/drivers/gpu/drm/i915/Makefile b/drivers/gpu/drm/i915/Makefile
index 70771e521b1c..e033bcaef4f3 100644
--- a/drivers/gpu/drm/i915/Makefile
+++ b/drivers/gpu/drm/i915/Makefile
@@ -51,7 +51,8 @@ i915-y += \
i915-y += \
soc/intel_dram.o \
soc/intel_gmch.o \
- soc/intel_pch.o
+ soc/intel_pch.o \
+ soc/intel_rom.o
# core library code
i915-y += \
diff --git a/drivers/gpu/drm/i915/display/intel_bios.c b/drivers/gpu/drm/i915/display/intel_bios.c
index c57426940cf8..9967b65e3cf6 100644
--- a/drivers/gpu/drm/i915/display/intel_bios.c
+++ b/drivers/gpu/drm/i915/display/intel_bios.c
@@ -33,12 +33,12 @@
#include <drm/drm_edid.h>
#include <drm/drm_fixed.h>
+#include "soc/intel_rom.h"
+
#include "i915_drv.h"
-#include "i915_reg.h"
#include "intel_display.h"
#include "intel_display_types.h"
#include "intel_gmbus.h"
-#include "intel_uncore.h"
#define _INTEL_BIOS_PRIVATE
#include "intel_vbt_defs.h"
@@ -3056,152 +3056,59 @@ static struct vbt_header *firmware_get_vbt(struct intel_display *display,
return vbt;
}
-static u32 intel_spi_read32(struct intel_uncore *uncore, u32 offset)
+static struct vbt_header *oprom_get_vbt(struct intel_display *display,
+ struct intel_rom *rom,
+ size_t *size, const char *type)
{
- intel_uncore_write(uncore, PRIMARY_SPI_ADDRESS, offset);
+ struct vbt_header *vbt;
+ size_t vbt_size;
+ loff_t offset;
- return intel_uncore_read(uncore, PRIMARY_SPI_TRIGGER);
-}
-
-static u16 intel_spi_read16(struct intel_uncore *uncore, u32 offset)
-{
- return intel_spi_read32(uncore, offset) & 0xffff;
-}
-
-static struct vbt_header *spi_oprom_get_vbt(struct intel_display *display,
- size_t *size)
-{
- struct drm_i915_private *i915 = to_i915(display->drm);
- u32 count, data, found, store = 0;
- u32 static_region, oprom_offset;
- u32 oprom_size = 0x200000;
- u16 vbt_size;
- u32 *vbt;
-
- static_region = intel_uncore_read(&i915->uncore, SPI_STATIC_REGIONS);
- static_region &= OPTIONROM_SPI_REGIONID_MASK;
- intel_uncore_write(&i915->uncore, PRIMARY_SPI_REGIONID, static_region);
-
- oprom_offset = intel_uncore_read(&i915->uncore, OROM_OFFSET);
- oprom_offset &= OROM_OFFSET_MASK;
+ if (!rom)
+ return NULL;
BUILD_BUG_ON(vbt_signature_len != sizeof(vbt_signature) - 1);
BUILD_BUG_ON(vbt_signature_len != sizeof(u32));
- for (count = 0; count < oprom_size; count += 4) {
- data = intel_spi_read32(&i915->uncore, oprom_offset + count);
- if (data == *((const u32 *)vbt_signature)) {
- found = oprom_offset + count;
- break;
- }
- }
+ offset = intel_rom_find(rom, *(const u32 *)vbt_signature);
+ if (offset < 0)
+ goto err_free_rom;
- if (count >= oprom_size)
- goto err_not_found;
-
- if (sizeof(struct vbt_header) > oprom_size - count) {
+ if (sizeof(struct vbt_header) > intel_rom_size(rom) - offset) {
drm_dbg_kms(display->drm, "VBT header incomplete\n");
- goto err_not_found;
+ goto err_free_rom;
}
- /* Get VBT size and allocate space for the VBT */
- vbt_size = intel_spi_read16(&i915->uncore,
- found + offsetof(struct vbt_header, vbt_size));
+ BUILD_BUG_ON(sizeof(vbt->vbt_size) != sizeof(u16));
- if (vbt_size > oprom_size - count) {
- drm_dbg_kms(display->drm,
- "VBT incomplete (vbt_size overflows)\n");
- goto err_not_found;
+ vbt_size = intel_rom_read16(rom, offset + offsetof(struct vbt_header, vbt_size));
+ if (vbt_size > intel_rom_size(rom) - offset) {
+ drm_dbg_kms(display->drm, "VBT incomplete (vbt_size overflows)\n");
+ goto err_free_rom;
}
vbt = kzalloc(round_up(vbt_size, 4), GFP_KERNEL);
if (!vbt)
- goto err_not_found;
+ goto err_free_rom;
- for (count = 0; count < vbt_size; count += 4)
- *(vbt + store++) = intel_spi_read32(&i915->uncore, found + count);
+ intel_rom_read_block(rom, vbt, offset, vbt_size);
if (!intel_bios_is_valid_vbt(display, vbt, vbt_size))
goto err_free_vbt;
- drm_dbg_kms(display->drm, "Found valid VBT in SPI flash\n");
+ drm_dbg_kms(display->drm, "Found valid VBT in %s\n", type);
if (size)
*size = vbt_size;
- return (struct vbt_header *)vbt;
-
-err_free_vbt:
- kfree(vbt);
-err_not_found:
- return NULL;
-}
-
-static struct vbt_header *oprom_get_vbt(struct intel_display *display,
- size_t *sizep)
-{
- struct pci_dev *pdev = to_pci_dev(display->drm->dev);
- void __iomem *p = NULL, *oprom;
- struct vbt_header *vbt;
- u16 vbt_size;
- size_t i, size;
-
- oprom = pci_map_rom(pdev, &size);
- if (!oprom)
- return NULL;
-
- BUILD_BUG_ON(vbt_signature_len != sizeof(vbt_signature) - 1);
- BUILD_BUG_ON(vbt_signature_len != sizeof(u32));
-
- /* Scour memory looking for the VBT signature. */
- for (i = 0; i + 4 < size; i += 4) {
- if (ioread32(oprom + i) != *((const u32 *)vbt_signature))
- continue;
-
- p = oprom + i;
- size -= i;
- break;
- }
-
- if (!p)
- goto err_unmap_oprom;
-
- if (sizeof(struct vbt_header) > size) {
- drm_dbg_kms(display->drm, "VBT header incomplete\n");
- goto err_unmap_oprom;
- }
-
- vbt_size = ioread16(p + offsetof(struct vbt_header, vbt_size));
- if (vbt_size > size) {
- drm_dbg_kms(display->drm,
- "VBT incomplete (vbt_size overflows)\n");
- goto err_unmap_oprom;
- }
-
- /* The rest will be validated by intel_bios_is_valid_vbt() */
- vbt = kmalloc(round_up(vbt_size, 4), GFP_KERNEL);
- if (!vbt)
- goto err_unmap_oprom;
-
- memcpy_fromio(vbt, p, vbt_size);
-
- if (!intel_bios_is_valid_vbt(display, vbt, vbt_size))
- goto err_free_vbt;
-
- pci_unmap_rom(pdev, oprom);
-
- if (sizep)
- *sizep = vbt_size;
-
- drm_dbg_kms(display->drm, "Found valid VBT in PCI ROM\n");
+ intel_rom_free(rom);
return vbt;
err_free_vbt:
kfree(vbt);
-err_unmap_oprom:
- pci_unmap_rom(pdev, oprom);
-
+err_free_rom:
+ intel_rom_free(rom);
return NULL;
}
@@ -3223,11 +3130,11 @@ static const struct vbt_header *intel_bios_get_vbt(struct intel_display *display
*/
if (!vbt && IS_DGFX(i915))
with_intel_runtime_pm(&i915->runtime_pm, wakeref)
- vbt = spi_oprom_get_vbt(display, sizep);
+ vbt = oprom_get_vbt(display, intel_rom_spi(i915), sizep, "SPI flash");
if (!vbt)
with_intel_runtime_pm(&i915->runtime_pm, wakeref)
- vbt = oprom_get_vbt(display, sizep);
+ vbt = oprom_get_vbt(display, intel_rom_pci(i915), sizep, "PCI ROM");
return vbt;
}
diff --git a/drivers/gpu/drm/i915/soc/intel_rom.c b/drivers/gpu/drm/i915/soc/intel_rom.c
new file mode 100644
index 000000000000..243d98cab8c3
--- /dev/null
+++ b/drivers/gpu/drm/i915/soc/intel_rom.c
@@ -0,0 +1,160 @@
+// SPDX-License-Identifier: MIT
+/*
+ * Copyright © 2024 Intel Corporation
+ */
+
+#include "i915_drv.h"
+#include "i915_reg.h"
+
+#include "intel_rom.h"
+#include "intel_uncore.h"
+
+struct intel_rom {
+ /* for PCI ROM */
+ struct pci_dev *pdev;
+ void __iomem *oprom;
+
+ /* for SPI */
+ struct intel_uncore *uncore;
+ loff_t offset;
+
+ size_t size;
+
+ u32 (*read32)(struct intel_rom *rom, loff_t offset);
+ u16 (*read16)(struct intel_rom *rom, loff_t offset);
+ void (*read_block)(struct intel_rom *rom, void *data, loff_t offset, size_t size);
+ void (*free)(struct intel_rom *rom);
+};
+
+static u32 spi_read32(struct intel_rom *rom, loff_t offset)
+{
+ intel_uncore_write(rom->uncore, PRIMARY_SPI_ADDRESS,
+ rom->offset + offset);
+
+ return intel_uncore_read(rom->uncore, PRIMARY_SPI_TRIGGER);
+}
+
+static u16 spi_read16(struct intel_rom *rom, loff_t offset)
+{
+ return spi_read32(rom, offset) & 0xffff;
+}
+
+struct intel_rom *intel_rom_spi(struct drm_i915_private *i915)
+{
+ struct intel_rom *rom;
+ u32 static_region;
+
+ rom = kzalloc(sizeof(*rom), GFP_KERNEL);
+ if (!rom)
+ return NULL;
+
+ rom->uncore = &i915->uncore;
+
+ static_region = intel_uncore_read(rom->uncore, SPI_STATIC_REGIONS);
+ static_region &= OPTIONROM_SPI_REGIONID_MASK;
+ intel_uncore_write(rom->uncore, PRIMARY_SPI_REGIONID, static_region);
+
+ rom->offset = intel_uncore_read(rom->uncore, OROM_OFFSET) & OROM_OFFSET_MASK;
+
+ rom->size = 0x200000;
+
+ rom->read32 = spi_read32;
+ rom->read16 = spi_read16;
+
+ return rom;
+}
+
+static u32 pci_read32(struct intel_rom *rom, loff_t offset)
+{
+ return ioread32(rom->oprom + offset);
+}
+
+static u16 pci_read16(struct intel_rom *rom, loff_t offset)
+{
+ return ioread16(rom->oprom + offset);
+}
+
+static void pci_read_block(struct intel_rom *rom, void *data,
+ loff_t offset, size_t size)
+{
+ memcpy_fromio(data, rom->oprom + offset, size);
+}
+
+static void pci_free(struct intel_rom *rom)
+{
+ pci_unmap_rom(rom->pdev, rom->oprom);
+}
+
+struct intel_rom *intel_rom_pci(struct drm_i915_private *i915)
+{
+ struct intel_rom *rom;
+
+ rom = kzalloc(sizeof(*rom), GFP_KERNEL);
+ if (!rom)
+ return NULL;
+
+ rom->pdev = to_pci_dev(i915->drm.dev);
+
+ rom->oprom = pci_map_rom(rom->pdev, &rom->size);
+ if (!rom->oprom) {
+ kfree(rom);
+ return NULL;
+ }
+
+ rom->read32 = pci_read32;
+ rom->read16 = pci_read16;
+ rom->read_block = pci_read_block;
+ rom->free = pci_free;
+
+ return rom;
+}
+
+u32 intel_rom_read32(struct intel_rom *rom, loff_t offset)
+{
+ return rom->read32(rom, offset);
+}
+
+u16 intel_rom_read16(struct intel_rom *rom, loff_t offset)
+{
+ return rom->read16(rom, offset);
+}
+
+void intel_rom_read_block(struct intel_rom *rom, void *data,
+ loff_t offset, size_t size)
+{
+ u32 *ptr = data;
+ loff_t index;
+
+ if (rom->read_block) {
+ rom->read_block(rom, data, offset, size);
+ return;
+ }
+
+ for (index = 0; index < size; index += 4)
+ *ptr++ = rom->read32(rom, offset + index);
+}
+
+loff_t intel_rom_find(struct intel_rom *rom, u32 needle)
+{
+ loff_t offset;
+
+ for (offset = 0; offset < rom->size; offset += 4) {
+ if (rom->read32(rom, offset) == needle)
+ return offset;
+ }
+
+ return -ENOENT;
+}
+
+size_t intel_rom_size(struct intel_rom *rom)
+{
+ return rom->size;
+}
+
+void intel_rom_free(struct intel_rom *rom)
+{
+ if (rom && rom->free)
+ rom->free(rom);
+
+ kfree(rom);
+}
diff --git a/drivers/gpu/drm/i915/soc/intel_rom.h b/drivers/gpu/drm/i915/soc/intel_rom.h
new file mode 100644
index 000000000000..fb2979c8ef7f
--- /dev/null
+++ b/drivers/gpu/drm/i915/soc/intel_rom.h
@@ -0,0 +1,25 @@
+/* SPDX-License-Identifier: MIT */
+/*
+ * Copyright © 2024 Intel Corporation
+ */
+
+#ifndef __INTEL_ROM_H__
+#define __INTEL_ROM_H__
+
+#include <linux/types.h>
+
+struct drm_i915_private;
+struct intel_rom;
+
+struct intel_rom *intel_rom_spi(struct drm_i915_private *i915);
+struct intel_rom *intel_rom_pci(struct drm_i915_private *i915);
+
+u32 intel_rom_read32(struct intel_rom *rom, loff_t offset);
+u16 intel_rom_read16(struct intel_rom *rom, loff_t offset);
+void intel_rom_read_block(struct intel_rom *rom, void *data,
+ loff_t offset, size_t size);
+loff_t intel_rom_find(struct intel_rom *rom, u32 needle);
+size_t intel_rom_size(struct intel_rom *rom);
+void intel_rom_free(struct intel_rom *rom);
+
+#endif /* __INTEL_ROM_H__ */
diff --git a/drivers/gpu/drm/xe/Makefile b/drivers/gpu/drm/xe/Makefile
index 1122765c711d..26cd21bc7189 100644
--- a/drivers/gpu/drm/xe/Makefile
+++ b/drivers/gpu/drm/xe/Makefile
@@ -181,7 +181,8 @@ xe-$(CONFIG_DRM_XE_DISPLAY) += \
# SOC code shared with i915
xe-$(CONFIG_DRM_XE_DISPLAY) += \
i915-soc/intel_dram.o \
- i915-soc/intel_pch.o
+ i915-soc/intel_pch.o \
+ i915-soc/intel_rom.o
# Display code shared with i915
xe-$(CONFIG_DRM_XE_DISPLAY) += \
--git a/drivers/gpu/drm/xe/compat-i915-headers/soc/intel_rom.h b/drivers/gpu/drm/xe/compat-i915-headers/soc/intel_rom.h
new file mode 100644
index 000000000000..05cbfb697b2b
--- /dev/null
+++ b/drivers/gpu/drm/xe/compat-i915-headers/soc/intel_rom.h
@@ -0,0 +1,6 @@
+/* SPDX-License-Identifier: MIT */
+/*
+ * Copyright © 2024 Intel Corporation
+ */
+
+#include "../../../i915/soc/intel_rom.h"
--
2.44.2
^ permalink raw reply related [flat|nested] 12+ messages in thread
* Re: [PATCH v2 1/6] drm/i915/bios: Use drm_dbg_kms() consistently
2024-09-23 15:24 ` [PATCH v2 1/6] drm/i915/bios: Use drm_dbg_kms() consistently Ville Syrjala
@ 2024-09-24 13:52 ` Jani Nikula
0 siblings, 0 replies; 12+ messages in thread
From: Jani Nikula @ 2024-09-24 13:52 UTC (permalink / raw)
To: Ville Syrjala, intel-gfx; +Cc: intel-xe
On Mon, 23 Sep 2024, Ville Syrjala <ville.syrjala@linux.intel.com> wrote:
> From: Ville Syrjälä <ville.syrjala@linux.intel.com>
>
> Replace the few oddball drm_dbg() calls in VBT related code
> with drm_dbg_kms() as that is what we generally use for all
> display code.
>
> Signed-off-by: Ville Syrjälä <ville.syrjala@linux.intel.com>
Reviewed-by: Jani Nikula <jani.nikula@intel.com>
> ---
> drivers/gpu/drm/i915/display/intel_bios.c | 22 +++++++++++-----------
> 1 file changed, 11 insertions(+), 11 deletions(-)
>
> diff --git a/drivers/gpu/drm/i915/display/intel_bios.c b/drivers/gpu/drm/i915/display/intel_bios.c
> index daa4b9535123..b00aad23d6c2 100644
> --- a/drivers/gpu/drm/i915/display/intel_bios.c
> +++ b/drivers/gpu/drm/i915/display/intel_bios.c
> @@ -1706,8 +1706,8 @@ parse_mipi_config(struct intel_display *display,
> return;
> }
>
> - drm_dbg(display->drm, "Found MIPI Config block, panel index = %d\n",
> - panel_type);
> + drm_dbg_kms(display->drm, "Found MIPI Config block, panel index = %d\n",
> + panel_type);
>
> /*
> * get hold of the correct configuration block and pps data as per
> @@ -2067,8 +2067,8 @@ parse_mipi_sequence(struct intel_display *display,
> return;
> }
>
> - drm_dbg(display->drm, "Found MIPI sequence block v%u\n",
> - sequence->version);
> + drm_dbg_kms(display->drm, "Found MIPI sequence block v%u\n",
> + sequence->version);
>
> seq_data = find_panel_sequence_block(display, sequence, panel_type, &seq_size);
> if (!seq_data)
> @@ -2114,7 +2114,7 @@ parse_mipi_sequence(struct intel_display *display,
>
> fixup_mipi_sequences(display, panel);
>
> - drm_dbg(display->drm, "MIPI related VBT parsing complete\n");
> + drm_dbg_kms(display->drm, "MIPI related VBT parsing complete\n");
> return;
>
> err:
> @@ -2771,9 +2771,9 @@ static bool child_device_size_valid(struct intel_display *display, int size)
> expected_size = child_device_expected_size(display->vbt.version);
> if (expected_size < 0) {
> expected_size = sizeof(struct child_device_config);
> - drm_dbg(display->drm,
> - "Expected child device config size for VBT version %u not known; assuming %d\n",
> - display->vbt.version, expected_size);
> + drm_dbg_kms(display->drm,
> + "Expected child device config size for VBT version %u not known; assuming %d\n",
> + display->vbt.version, expected_size);
> }
>
> /* Flag an error for unexpected size, but continue anyway. */
> @@ -3143,14 +3143,14 @@ static struct vbt_header *oprom_get_vbt(struct intel_display *display,
> goto err_unmap_oprom;
>
> if (sizeof(struct vbt_header) > size) {
> - drm_dbg(display->drm, "VBT header incomplete\n");
> + drm_dbg_kms(display->drm, "VBT header incomplete\n");
> goto err_unmap_oprom;
> }
>
> vbt_size = ioread16(p + offsetof(struct vbt_header, vbt_size));
> if (vbt_size > size) {
> - drm_dbg(display->drm,
> - "VBT incomplete (vbt_size overflows)\n");
> + drm_dbg_kms(display->drm,
> + "VBT incomplete (vbt_size overflows)\n");
> goto err_unmap_oprom;
> }
--
Jani Nikula, Intel
^ permalink raw reply [flat|nested] 12+ messages in thread
* ✓ Fi.CI.BAT: success for drm/i915/bios: Refactor ROM access (rev2)
2024-09-23 15:24 [PATCH v2 0/6] drm/i915/bios: Refactor ROM access Ville Syrjala
` (5 preceding siblings ...)
2024-09-23 15:24 ` [PATCH v2 6/6] drm/i915/bios: Extract soc/intel_rom.c Ville Syrjala
@ 2024-09-26 17:22 ` Patchwork
2024-09-26 17:22 ` ✗ Fi.CI.CHECKPATCH: warning " Patchwork
` (2 subsequent siblings)
9 siblings, 0 replies; 12+ messages in thread
From: Patchwork @ 2024-09-26 17:22 UTC (permalink / raw)
To: Ville Syrjälä; +Cc: intel-gfx
[-- Attachment #1: Type: text/plain, Size: 11489 bytes --]
== Series Details ==
Series: drm/i915/bios: Refactor ROM access (rev2)
URL : https://patchwork.freedesktop.org/series/138477/
State : success
== Summary ==
CI Bug Log - changes from CI_DRM_15448 -> Patchwork_138477v2
====================================================
Summary
-------
**SUCCESS**
No regressions found.
External URL: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138477v2/index.html
Participating hosts (38 -> 38)
------------------------------
Additional (1): bat-arls-1
Missing (1): fi-snb-2520m
Known issues
------------
Here are the changes found in Patchwork_138477v2 that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@debugfs_test@basic-hwmon:
- bat-arls-1: NOTRUN -> [SKIP][1] ([i915#9318])
[1]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138477v2/bat-arls-1/igt@debugfs_test@basic-hwmon.html
* igt@gem_lmem_swapping@basic:
- bat-arls-1: NOTRUN -> [SKIP][2] ([i915#11671]) +3 other tests skip
[2]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138477v2/bat-arls-1/igt@gem_lmem_swapping@basic.html
* igt@gem_mmap@basic:
- bat-arls-1: NOTRUN -> [SKIP][3] ([i915#11343] / [i915#4083])
[3]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138477v2/bat-arls-1/igt@gem_mmap@basic.html
* igt@gem_render_tiled_blits@basic:
- bat-arls-1: NOTRUN -> [SKIP][4] ([i915#10211] / [i915#4079])
[4]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138477v2/bat-arls-1/igt@gem_render_tiled_blits@basic.html
* igt@gem_tiled_blits@basic:
- bat-arls-1: NOTRUN -> [SKIP][5] ([i915#10196] / [i915#4077]) +2 other tests skip
[5]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138477v2/bat-arls-1/igt@gem_tiled_blits@basic.html
* igt@gem_tiled_pread_basic:
- bat-arls-1: NOTRUN -> [SKIP][6] ([i915#4079])
[6]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138477v2/bat-arls-1/igt@gem_tiled_pread_basic.html
* igt@i915_pm_rps@basic-api:
- bat-arls-1: NOTRUN -> [SKIP][7] ([i915#11681])
[7]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138477v2/bat-arls-1/igt@i915_pm_rps@basic-api.html
* igt@i915_selftest@live:
- bat-arls-1: NOTRUN -> [DMESG-WARN][8] ([i915#10341] / [i915#12133])
[8]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138477v2/bat-arls-1/igt@i915_selftest@live.html
* igt@i915_selftest@live@hangcheck:
- bat-arls-1: NOTRUN -> [DMESG-WARN][9] ([i915#11349])
[9]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138477v2/bat-arls-1/igt@i915_selftest@live@hangcheck.html
* igt@kms_addfb_basic@addfb25-y-tiled-small-legacy:
- bat-arls-1: NOTRUN -> [SKIP][10] ([i915#10200] / [i915#12203])
[10]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138477v2/bat-arls-1/igt@kms_addfb_basic@addfb25-y-tiled-small-legacy.html
* igt@kms_addfb_basic@basic-y-tiled-legacy:
- bat-arls-1: NOTRUN -> [SKIP][11] ([i915#10200]) +8 other tests skip
[11]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138477v2/bat-arls-1/igt@kms_addfb_basic@basic-y-tiled-legacy.html
* igt@kms_chamelium_hpd@dp-hpd-fast:
- bat-dg2-13: NOTRUN -> [SKIP][12] ([i915#7828]) +8 other tests skip
[12]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138477v2/bat-dg2-13/igt@kms_chamelium_hpd@dp-hpd-fast.html
* igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy:
- bat-arls-1: NOTRUN -> [SKIP][13] ([i915#11346]) +1 other test skip
[13]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138477v2/bat-arls-1/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy.html
* igt@kms_dsc@dsc-basic:
- bat-arls-1: NOTRUN -> [SKIP][14] ([i915#11346] / [i915#9886])
[14]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138477v2/bat-arls-1/igt@kms_dsc@dsc-basic.html
* igt@kms_force_connector_basic@force-load-detect:
- bat-arls-1: NOTRUN -> [SKIP][15] ([i915#10207] / [i915#11346])
[15]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138477v2/bat-arls-1/igt@kms_force_connector_basic@force-load-detect.html
* igt@kms_pm_backlight@basic-brightness:
- bat-arls-1: NOTRUN -> [SKIP][16] ([i915#11346] / [i915#9812])
[16]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138477v2/bat-arls-1/igt@kms_pm_backlight@basic-brightness.html
* igt@kms_psr@psr-primary-mmap-gtt:
- bat-arls-1: NOTRUN -> [SKIP][17] ([i915#11346] / [i915#9732]) +3 other tests skip
[17]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138477v2/bat-arls-1/igt@kms_psr@psr-primary-mmap-gtt.html
* igt@kms_setmode@basic-clone-single-crtc:
- bat-arls-1: NOTRUN -> [SKIP][18] ([i915#10208] / [i915#8809])
[18]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138477v2/bat-arls-1/igt@kms_setmode@basic-clone-single-crtc.html
* igt@prime_vgem@basic-fence-read:
- bat-arls-1: NOTRUN -> [SKIP][19] ([i915#10212] / [i915#3708])
[19]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138477v2/bat-arls-1/igt@prime_vgem@basic-fence-read.html
* igt@prime_vgem@basic-gtt:
- bat-arls-1: NOTRUN -> [SKIP][20] ([i915#10196] / [i915#3708] / [i915#4077]) +1 other test skip
[20]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138477v2/bat-arls-1/igt@prime_vgem@basic-gtt.html
* igt@prime_vgem@basic-read:
- bat-arls-1: NOTRUN -> [SKIP][21] ([i915#10214] / [i915#3708])
[21]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138477v2/bat-arls-1/igt@prime_vgem@basic-read.html
* igt@prime_vgem@basic-write:
- bat-arls-1: NOTRUN -> [SKIP][22] ([i915#10216] / [i915#3708])
[22]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138477v2/bat-arls-1/igt@prime_vgem@basic-write.html
#### Possible fixes ####
* igt@i915_module_load@reload:
- bat-apl-1: [DMESG-WARN][23] ([i915#180] / [i915#1982]) -> [PASS][24] +3 other tests pass
[23]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15448/bat-apl-1/igt@i915_module_load@reload.html
[24]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138477v2/bat-apl-1/igt@i915_module_load@reload.html
* igt@i915_selftest@live:
- bat-mtlp-6: [DMESG-WARN][25] ([i915#10341]) -> [PASS][26]
[25]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15448/bat-mtlp-6/igt@i915_selftest@live.html
[26]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138477v2/bat-mtlp-6/igt@i915_selftest@live.html
* igt@i915_selftest@live@gt_lrc:
- bat-twl-2: [INCOMPLETE][27] ([i915#9413]) -> [PASS][28] +1 other test pass
[27]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15448/bat-twl-2/igt@i915_selftest@live@gt_lrc.html
[28]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138477v2/bat-twl-2/igt@i915_selftest@live@gt_lrc.html
* igt@i915_selftest@live@hangcheck:
- bat-mtlp-6: [DMESG-WARN][29] ([i915#11349]) -> [PASS][30]
[29]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15448/bat-mtlp-6/igt@i915_selftest@live@hangcheck.html
[30]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138477v2/bat-mtlp-6/igt@i915_selftest@live@hangcheck.html
* igt@i915_selftest@live@sanitycheck:
- bat-apl-1: [DMESG-WARN][31] ([i915#11621]) -> [PASS][32] +79 other tests pass
[31]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15448/bat-apl-1/igt@i915_selftest@live@sanitycheck.html
[32]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138477v2/bat-apl-1/igt@i915_selftest@live@sanitycheck.html
* igt@kms_flip@basic-flip-vs-wf_vblank@a-dp1:
- bat-apl-1: [DMESG-WARN][33] ([i915#11621] / [i915#180] / [i915#1982]) -> [PASS][34]
[33]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15448/bat-apl-1/igt@kms_flip@basic-flip-vs-wf_vblank@a-dp1.html
[34]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138477v2/bat-apl-1/igt@kms_flip@basic-flip-vs-wf_vblank@a-dp1.html
* igt@kms_pipe_crc_basic@nonblocking-crc:
- bat-apl-1: [DMESG-WARN][35] ([i915#180]) -> [PASS][36] +10 other tests pass
[35]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15448/bat-apl-1/igt@kms_pipe_crc_basic@nonblocking-crc.html
[36]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138477v2/bat-apl-1/igt@kms_pipe_crc_basic@nonblocking-crc.html
* igt@kms_pm_rpm@basic-pci-d3-state:
- bat-apl-1: [DMESG-WARN][37] ([i915#11621] / [i915#180]) -> [PASS][38] +33 other tests pass
[37]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15448/bat-apl-1/igt@kms_pm_rpm@basic-pci-d3-state.html
[38]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138477v2/bat-apl-1/igt@kms_pm_rpm@basic-pci-d3-state.html
[i915#10196]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10196
[i915#10200]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10200
[i915#10207]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10207
[i915#10208]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10208
[i915#10211]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10211
[i915#10212]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10212
[i915#10214]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10214
[i915#10216]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10216
[i915#10341]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10341
[i915#11343]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11343
[i915#11346]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11346
[i915#11349]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11349
[i915#11621]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11621
[i915#11671]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11671
[i915#11681]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11681
[i915#12133]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12133
[i915#12203]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12203
[i915#180]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/180
[i915#1982]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1982
[i915#3708]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3708
[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#7828]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7828
[i915#8809]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8809
[i915#9318]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9318
[i915#9413]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9413
[i915#9732]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9732
[i915#9812]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9812
[i915#9886]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9886
Build changes
-------------
* Linux: CI_DRM_15448 -> Patchwork_138477v2
CI-20190529: 20190529
CI_DRM_15448: ec87b409d3a9358c9a079186d528fad3f7d64334 @ git://anongit.freedesktop.org/gfx-ci/linux
IGT_8032: 8032
Patchwork_138477v2: ec87b409d3a9358c9a079186d528fad3f7d64334 @ git://anongit.freedesktop.org/gfx-ci/linux
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138477v2/index.html
[-- Attachment #2: Type: text/html, Size: 14235 bytes --]
^ permalink raw reply [flat|nested] 12+ messages in thread
* ✗ Fi.CI.CHECKPATCH: warning for drm/i915/bios: Refactor ROM access (rev2)
2024-09-23 15:24 [PATCH v2 0/6] drm/i915/bios: Refactor ROM access Ville Syrjala
` (6 preceding siblings ...)
2024-09-26 17:22 ` ✓ Fi.CI.BAT: success for drm/i915/bios: Refactor ROM access (rev2) Patchwork
@ 2024-09-26 17:22 ` Patchwork
2024-09-26 17:22 ` ✗ Fi.CI.SPARSE: " Patchwork
2024-09-26 23:12 ` ✗ Fi.CI.IGT: failure " Patchwork
9 siblings, 0 replies; 12+ messages in thread
From: Patchwork @ 2024-09-26 17:22 UTC (permalink / raw)
To: Ville Syrjälä; +Cc: intel-gfx
== Series Details ==
Series: drm/i915/bios: Refactor ROM access (rev2)
URL : https://patchwork.freedesktop.org/series/138477/
State : warning
== Summary ==
Error: dim checkpatch failed
8b4f246ee508 drm/i915/bios: Use drm_dbg_kms() consistently
a487ab653835 drm/i915/bios: Add some size checks to SPI VBT read
664b7ac3b855 drm/i915/bios: Round PCI ROM VBT allocation to multiple of 4
b27eed83d56e drm/i915/bios: Extract intel_spi_read16()
cb8dcdb7d0b0 drm/i915/bios: Extract vbt_signature[]
2c6278f1c120 drm/i915/bios: Extract soc/intel_rom.c
-:249: WARNING:FILE_PATH_CHANGES: added, moved or deleted file(s), does MAINTAINERS need updating?
#249:
new file mode 100644
total: 0 errors, 1 warnings, 0 checks, 412 lines checked
^ permalink raw reply [flat|nested] 12+ messages in thread
* ✗ Fi.CI.SPARSE: warning for drm/i915/bios: Refactor ROM access (rev2)
2024-09-23 15:24 [PATCH v2 0/6] drm/i915/bios: Refactor ROM access Ville Syrjala
` (7 preceding siblings ...)
2024-09-26 17:22 ` ✗ Fi.CI.CHECKPATCH: warning " Patchwork
@ 2024-09-26 17:22 ` Patchwork
2024-09-26 23:12 ` ✗ Fi.CI.IGT: failure " Patchwork
9 siblings, 0 replies; 12+ messages in thread
From: Patchwork @ 2024-09-26 17:22 UTC (permalink / raw)
To: Ville Syrjälä; +Cc: intel-gfx
== Series Details ==
Series: drm/i915/bios: Refactor ROM access (rev2)
URL : https://patchwork.freedesktop.org/series/138477/
State : warning
== Summary ==
Error: dim sparse failed
Sparse version: v0.6.2
Fast mode used, each commit won't be checked separately.
+./arch/x86/include/asm/bitops.h:116:1: warning: unreplaced symbol 'return'
+./arch/x86/include/asm/bitops.h:116:1: warning: unreplaced symbol 'return'
+./arch/x86/include/asm/bitops.h:147:1: warning: unreplaced symbol 'return'
+./arch/x86/include/asm/bitops.h:147:1: warning: unreplaced symbol 'return'
+./arch/x86/include/asm/bitops.h:149:9: warning: unreplaced symbol 'oldbit'
+./arch/x86/include/asm/bitops.h:149:9: warning: unreplaced symbol 'oldbit'
+./arch/x86/include/asm/bitops.h:153:26: warning: unreplaced symbol 'oldbit'
+./arch/x86/include/asm/bitops.h:153:26: warning: unreplaced symbol 'oldbit'
+./arch/x86/include/asm/bitops.h:155:16: warning: unreplaced symbol 'oldbit'
+./arch/x86/include/asm/bitops.h:155:16: warning: unreplaced symbol 'oldbit'
+./arch/x86/include/asm/bitops.h:155:9: warning: unreplaced symbol 'return'
+./arch/x86/include/asm/bitops.h:155:9: warning: unreplaced symbol 'return'
+./arch/x86/include/asm/bitops.h:173:1: warning: unreplaced symbol 'return'
+./arch/x86/include/asm/bitops.h:173:1: warning: unreplaced symbol 'return'
+./arch/x86/include/asm/bitops.h:175:9: warning: unreplaced symbol 'oldbit'
+./arch/x86/include/asm/bitops.h:175:9: warning: unreplaced symbol 'oldbit'
+./arch/x86/include/asm/bitops.h:179:35: warning: unreplaced symbol 'oldbit'
+./arch/x86/include/asm/bitops.h:179:35: warning: unreplaced symbol 'oldbit'
+./arch/x86/include/asm/bitops.h:181:16: warning: unreplaced symbol 'oldbit'
+./arch/x86/include/asm/bitops.h:181:16: warning: unreplaced symbol 'oldbit'
+./arch/x86/include/asm/bitops.h:181:9: warning: unreplaced symbol 'return'
+./arch/x86/include/asm/bitops.h:181:9: warning: unreplaced symbol 'return'
+./arch/x86/include/asm/bitops.h:185:1: warning: unreplaced symbol 'return'
+./arch/x86/include/asm/bitops.h:185:1: warning: unreplaced symbol 'return'
+./arch/x86/include/asm/bitops.h:187:9: warning: unreplaced symbol 'oldbit'
+./arch/x86/include/asm/bitops.h:187:9: warning: unreplaced symbol 'oldbit'
+./arch/x86/include/asm/bitops.h:191:35: warning: unreplaced symbol 'oldbit'
+./arch/x86/include/asm/bitops.h:191:35: warning: unreplaced symbol 'oldbit'
+./arch/x86/include/asm/bitops.h:194:16: warning: unreplaced symbol 'oldbit'
+./arch/x86/include/asm/bitops.h:194:16: warning: unreplaced symbol 'oldbit'
+./arch/x86/include/asm/bitops.h:194:9: warning: unreplaced symbol 'return'
+./arch/x86/include/asm/bitops.h:194:9: warning: unreplaced symbol 'return'
+./arch/x86/include/asm/bitops.h:236:1: warning: unreplaced symbol 'return'
+./arch/x86/include/asm/bitops.h:236:1: warning: unreplaced symbol 'return'
+./arch/x86/include/asm/bitops.h:238:9: warning: unreplaced symbol 'return'
+./arch/x86/include/asm/bitops.h:238:9: warning: unreplaced symbol 'return'
+./arch/x86/include/asm/bitops.h:243:1: warning: unreplaced symbol 'return'
+./arch/x86/include/asm/bitops.h:243:1: warning: unreplaced symbol 'return'
+./arch/x86/include/asm/bitops.h:245:9: warning: unreplaced symbol 'return'
+./arch/x86/include/asm/bitops.h:245:9: warning: unreplaced symbol 'return'
+./arch/x86/include/asm/bitops.h:66:1: warning: unreplaced symbol 'return'
+./arch/x86/include/asm/bitops.h:66:1: warning: unreplaced symbol 'return'
+./arch/x86/include/asm/bitops.h:92:1: warning: unreplaced symbol 'return'
+./arch/x86/include/asm/bitops.h:92:1: warning: unreplaced symbol 'return'
+./include/asm-generic/bitops/generic-non-atomic.h:100:17: warning: unreplaced symbol 'old'
+./include/asm-generic/bitops/generic-non-atomic.h:100:17: warning: unreplaced symbol 'old'
+./include/asm-generic/bitops/generic-non-atomic.h:100:23: warning: unreplaced symbol 'mask'
+./include/asm-generic/bitops/generic-non-atomic.h:100:23: warning: unreplaced symbol 'mask'
+./include/asm-generic/bitops/generic-non-atomic.h:100:9: warning: unreplaced symbol 'return'
+./include/asm-generic/bitops/generic-non-atomic.h:100:9: warning: unreplaced symbol 'return'
+./include/asm-generic/bitops/generic-non-atomic.h:105:1: warning: unreplaced symbol 'return'
+./include/asm-generic/bitops/generic-non-atomic.h:105:1: warning: unreplaced symbol 'return'
+./include/asm-generic/bitops/generic-non-atomic.h:107:9: warning: unreplaced symbol 'mask'
+./include/asm-generic/bitops/generic-non-atomic.h:107:9: warning: unreplaced symbol 'mask'
+./include/asm-generic/bitops/generic-non-atomic.h:108:9: warning: unreplaced symbol 'p'
+./include/asm-generic/bitops/generic-non-atomic.h:108:9: warning: unreplaced symbol 'p'
+./include/asm-generic/bitops/generic-non-atomic.h:109:9: warning: unreplaced symbol 'old'
+./include/asm-generic/bitops/generic-non-atomic.h:109:9: warning: unreplaced symbol 'old'
+./include/asm-generic/bitops/generic-non-atomic.h:111:10: warning: unreplaced symbol 'p'
+./include/asm-generic/bitops/generic-non-atomic.h:111:10: warning: unreplaced symbol 'p'
+./include/asm-generic/bitops/generic-non-atomic.h:111:14: warning: unreplaced symbol 'old'
+./include/asm-generic/bitops/generic-non-atomic.h:111:14: warning: unreplaced symbol 'old'
+./include/asm-generic/bitops/generic-non-atomic.h:111:20: warning: unreplaced symbol 'mask'
+./include/asm-generic/bitops/generic-non-atomic.h:111:20: warning: unreplaced symbol 'mask'
+./include/asm-generic/bitops/generic-non-atomic.h:112:17: warning: unreplaced symbol 'old'
+./include/asm-generic/bitops/generic-non-atomic.h:112:17: warning: unreplaced symbol 'old'
+./include/asm-generic/bitops/generic-non-atomic.h:112:23: warning: unreplaced symbol 'mask'
+./include/asm-generic/bitops/generic-non-atomic.h:112:23: warning: unreplaced symbol 'mask'
+./include/asm-generic/bitops/generic-non-atomic.h:112:9: warning: unreplaced symbol 'return'
+./include/asm-generic/bitops/generic-non-atomic.h:112:9: warning: unreplaced symbol 'return'
+./include/asm-generic/bitops/generic-non-atomic.h:121:1: warning: unreplaced symbol 'return'
+./include/asm-generic/bitops/generic-non-atomic.h:121:1: warning: unreplaced symbol 'return'
+./include/asm-generic/bitops/generic-non-atomic.h:128:9: warning: unreplaced symbol 'return'
+./include/asm-generic/bitops/generic-non-atomic.h:128:9: warning: unreplaced symbol 'return'
+./include/asm-generic/bitops/generic-non-atomic.h:137:1: warning: unreplaced symbol 'return'
+./include/asm-generic/bitops/generic-non-atomic.h:137:1: warning: unreplaced symbol 'return'
+./include/asm-generic/bitops/generic-non-atomic.h:139:9: warning: unreplaced symbol 'p'
+./include/asm-generic/bitops/generic-non-atomic.h:139:9: warning: unreplaced symbol 'p'
+./include/asm-generic/bitops/generic-non-atomic.h:140:23: warning: unreplaced symbol 'break'
+./include/asm-generic/bitops/generic-non-atomic.h:140:23: warning: unreplaced symbol 'break'
+./include/asm-generic/bitops/generic-non-atomic.h:140:23: warning: unreplaced symbol 'continue'
+./include/asm-generic/bitops/generic-non-atomic.h:140:23: warning: unreplaced symbol 'continue'
+./include/asm-generic/bitops/generic-non-atomic.h:140:23: warning: unreplaced symbol 'p'
+./include/asm-generic/bitops/generic-non-atomic.h:140:23: warning: unreplaced symbol 'p'
+./include/asm-generic/bitops/generic-non-atomic.h:140:23: warning: unreplaced symbol 'p'
+./include/asm-generic/bitops/generic-non-atomic.h:140:23: warning: unreplaced symbol 'p'
+./include/asm-generic/bitops/generic-non-atomic.h:140:23: warning: unreplaced symbol 'p'
+./include/asm-generic/bitops/generic-non-atomic.h:140:23: warning: unreplaced symbol 'p'
+./include/asm-generic/bitops/generic-non-atomic.h:140:23: warning: unreplaced symbol 'p'
+./include/asm-generic/bitops/generic-non-atomic.h:140:23: warning: unreplaced symbol 'p'
+./include/asm-generic/bitops/generic-non-atomic.h:140:23: warning: unreplaced symbol '___p1'
+./include/asm-generic/bitops/generic-non-atomic.h:140:23: warning: unreplaced symbol '___p1'
+./include/asm-generic/bitops/generic-non-atomic.h:140:23: warning: unreplaced symbol '___p1'
+./include/asm-generic/bitops/generic-non-atomic.h:140:23: warning: unreplaced symbol '___p1'
+./include/asm-generic/bitops/generic-non-atomic.h:140:9: warning: unreplaced symbol 'return'
+./include/asm-generic/bitops/generic-non-atomic.h:140:9: warning: unreplaced symbol 'return'
+./include/asm-generic/bitops/generic-non-atomic.h:166:1: warning: unreplaced symbol 'return'
+./include/asm-generic/bitops/generic-non-atomic.h:166:1: warning: unreplaced symbol 'return'
+./include/asm-generic/bitops/generic-non-atomic.h:168:9: warning: unreplaced symbol 'p'
+./include/asm-generic/bitops/generic-non-atomic.h:168:9: warning: unreplaced symbol 'p'
+./include/asm-generic/bitops/generic-non-atomic.h:169:9: warning: unreplaced symbol 'mask'
+./include/asm-generic/bitops/generic-non-atomic.h:169:9: warning: unreplaced symbol 'mask'
+./include/asm-generic/bitops/generic-non-atomic.h:170:9: warning: unreplaced symbol 'val'
+./include/asm-generic/bitops/generic-non-atomic.h:170:9: warning: unreplaced symbol 'val'
+./include/asm-generic/bitops/generic-non-atomic.h:172:19: warning: unreplaced symbol 'val'
+./include/asm-generic/bitops/generic-non-atomic.h:172:19: warning: unreplaced symbol 'val'
+./include/asm-generic/bitops/generic-non-atomic.h:172:25: warning: unreplaced symbol 'mask'
+./include/asm-generic/bitops/generic-non-atomic.h:172:25: warning: unreplaced symbol 'mask'
+./include/asm-generic/bitops/generic-non-atomic.h:172:9: warning: unreplaced symbol 'return'
+./include/asm-generic/bitops/generic-non-atomic.h:172:9: warning: unreplaced symbol 'return'
+./include/asm-generic/bitops/generic-non-atomic.h:28:1: warning: unreplaced symbol 'return'
+./include/asm-generic/bitops/generic-non-atomic.h:28:1: warning: unreplaced symbol 'return'
+./include/asm-generic/bitops/generic-non-atomic.h:30:9: warning: unreplaced symbol 'mask'
+./include/asm-generic/bitops/generic-non-atomic.h:30:9: warning: unreplaced symbol 'mask'
+./include/asm-generic/bitops/generic-non-atomic.h:31:9: warning: unreplaced symbol 'p'
+./include/asm-generic/bitops/generic-non-atomic.h:31:9: warning: unreplaced symbol 'p'
+./include/asm-generic/bitops/generic-non-atomic.h:33:10: warning: unreplaced symbol 'p'
+./include/asm-generic/bitops/generic-non-atomic.h:33:10: warning: unreplaced symbol 'p'
+./include/asm-generic/bitops/generic-non-atomic.h:33:16: warning: unreplaced symbol 'mask'
+./include/asm-generic/bitops/generic-non-atomic.h:33:16: warning: unreplaced symbol 'mask'
+./include/asm-generic/bitops/generic-non-atomic.h:37:1: warning: unreplaced symbol 'return'
+./include/asm-generic/bitops/generic-non-atomic.h:37:1: warning: unreplaced symbol 'return'
+./include/asm-generic/bitops/generic-non-atomic.h:39:9: warning: unreplaced symbol 'mask'
+./include/asm-generic/bitops/generic-non-atomic.h:39:9: warning: unreplaced symbol 'mask'
+./include/asm-generic/bitops/generic-non-atomic.h:40:9: warning: unreplaced symbol 'p'
+./include/asm-generic/bitops/generic-non-atomic.h:40:9: warning: unreplaced symbol 'p'
+./include/asm-generic/bitops/generic-non-atomic.h:42:10: warning: unreplaced symbol 'p'
+./include/asm-generic/bitops/generic-non-atomic.h:42:10: warning: unreplaced symbol 'p'
+./include/asm-generic/bitops/generic-non-atomic.h:42:16: warning: unreplaced symbol 'mask'
+./include/asm-generic/bitops/generic-non-atomic.h:42:16: warning: unreplaced symbol 'mask'
+./include/asm-generic/bitops/generic-non-atomic.h:55:1: warning: unreplaced symbol 'return'
+./include/asm-generic/bitops/generic-non-atomic.h:55:1: warning: unreplaced symbol 'return'
+./include/asm-generic/bitops/generic-non-atomic.h:57:9: warning: unreplaced symbol 'mask'
+./include/asm-generic/bitops/generic-non-atomic.h:57:9: warning: unreplaced symbol 'mask'
+./include/asm-generic/bitops/generic-non-atomic.h:58:9: warning: unreplaced symbol 'p'
+./include/asm-generic/bitops/generic-non-atomic.h:58:9: warning: unreplaced symbol 'p'
+./include/asm-generic/bitops/generic-non-atomic.h:60:10: warning: unreplaced symbol 'p'
+./include/asm-generic/bitops/generic-non-atomic.h:60:10: warning: unreplaced symbol 'p'
+./include/asm-generic/bitops/generic-non-atomic.h:60:15: warning: unreplaced symbol 'mask'
+./include/asm-generic/bitops/generic-non-atomic.h:60:15: warning: unreplaced symbol 'mask'
+./include/asm-generic/bitops/generic-non-atomic.h:73:1: warning: unreplaced symbol 'return'
+./include/asm-generic/bitops/generic-non-atomic.h:73:1: warning: unreplaced symbol 'return'
+./include/asm-generic/bitops/generic-non-atomic.h:75:9: warning: unreplaced symbol 'mask'
+./include/asm-generic/bitops/generic-non-atomic.h:75:9: warning: unreplaced symbol 'mask'
+./include/asm-generic/bitops/generic-non-atomic.h:76:9: warning: unreplaced symbol 'p'
+./include/asm-generic/bitops/generic-non-atomic.h:76:9: warning: unreplaced symbol 'p'
+./include/asm-generic/bitops/generic-non-atomic.h:77:9: warning: unreplaced symbol 'old'
+./include/asm-generic/bitops/generic-non-atomic.h:77:9: warning: unreplaced symbol 'old'
+./include/asm-generic/bitops/generic-non-atomic.h:79:10: warning: unreplaced symbol 'p'
+./include/asm-generic/bitops/generic-non-atomic.h:79:10: warning: unreplaced symbol 'p'
+./include/asm-generic/bitops/generic-non-atomic.h:79:14: warning: unreplaced symbol 'old'
+./include/asm-generic/bitops/generic-non-atomic.h:79:14: warning: unreplaced symbol 'old'
+./include/asm-generic/bitops/generic-non-atomic.h:79:20: warning: unreplaced symbol 'mask'
+./include/asm-generic/bitops/generic-non-atomic.h:79:20: warning: unreplaced symbol 'mask'
+./include/asm-generic/bitops/generic-non-atomic.h:80:17: warning: unreplaced symbol 'old'
+./include/asm-generic/bitops/generic-non-atomic.h:80:17: warning: unreplaced symbol 'old'
+./include/asm-generic/bitops/generic-non-atomic.h:80:23: warning: unreplaced symbol 'mask'
+./include/asm-generic/bitops/generic-non-atomic.h:80:23: warning: unreplaced symbol 'mask'
+./include/asm-generic/bitops/generic-non-atomic.h:80:9: warning: unreplaced symbol 'return'
+./include/asm-generic/bitops/generic-non-atomic.h:80:9: warning: unreplaced symbol 'return'
+./include/asm-generic/bitops/generic-non-atomic.h:93:1: warning: unreplaced symbol 'return'
+./include/asm-generic/bitops/generic-non-atomic.h:93:1: warning: unreplaced symbol 'return'
+./include/asm-generic/bitops/generic-non-atomic.h:95:9: warning: unreplaced symbol 'mask'
+./include/asm-generic/bitops/generic-non-atomic.h:95:9: warning: unreplaced symbol 'mask'
+./include/asm-generic/bitops/generic-non-atomic.h:96:9: warning: unreplaced symbol 'p'
+./include/asm-generic/bitops/generic-non-atomic.h:96:9: warning: unreplaced symbol 'p'
+./include/asm-generic/bitops/generic-non-atomic.h:97:9: warning: unreplaced symbol 'old'
+./include/asm-generic/bitops/generic-non-atomic.h:97:9: warning: unreplaced symbol 'old'
+./include/asm-generic/bitops/generic-non-atomic.h:99:10: warning: unreplaced symbol 'p'
+./include/asm-generic/bitops/generic-non-atomic.h:99:10: warning: unreplaced symbol 'p'
+./include/asm-generic/bitops/generic-non-atomic.h:99:14: warning: unreplaced symbol 'old'
+./include/asm-generic/bitops/generic-non-atomic.h:99:14: warning: unreplaced symbol 'old'
+./include/asm-generic/bitops/generic-non-atomic.h:99:21: warning: unreplaced symbol 'mask'
+./include/asm-generic/bitops/generic-non-atomic.h:99:21: warning: unreplaced symbol 'mask'
+./include/asm-generic/bitops/instrumented-non-atomic.h:100:9: warning: unreplaced symbol 'return'
+./include/asm-generic/bitops/instrumented-non-atomic.h:100:9: warning: unreplaced symbol 'return'
+./include/asm-generic/bitops/instrumented-non-atomic.h:112:1: warning: unreplaced symbol 'return'
+./include/asm-generic/bitops/instrumented-non-atomic.h:112:1: warning: unreplaced symbol 'return'
+./include/asm-generic/bitops/instrumented-non-atomic.h:115:9: warning: unreplaced symbol 'return'
+./include/asm-generic/bitops/instrumented-non-atomic.h:115:9: warning: unreplaced symbol 'return'
+./include/asm-generic/bitops/instrumented-non-atomic.h:127:1: warning: unreplaced symbol 'return'
+./include/asm-generic/bitops/instrumented-non-atomic.h:127:1: warning: unreplaced symbol 'return'
+./include/asm-generic/bitops/instrumented-non-atomic.h:130:9: warning: unreplaced symbol 'return'
+./include/asm-generic/bitops/instrumented-non-atomic.h:130:9: warning: unreplaced symbol 'return'
+./include/asm-generic/bitops/instrumented-non-atomic.h:139:1: warning: unreplaced symbol 'return'
+./include/asm-generic/bitops/instrumented-non-atomic.h:139:1: warning: unreplaced symbol 'return'
+./include/asm-generic/bitops/instrumented-non-atomic.h:142:9: warning: unreplaced symbol 'return'
+./include/asm-generic/bitops/instrumented-non-atomic.h:142:9: warning: unreplaced symbol 'return'
+./include/asm-generic/bitops/instrumented-non-atomic.h:151:1: warning: too many warnings
+./include/asm-generic/bitops/instrumented-non-atomic.h:151:1: warning: too many warnings
+./include/asm-generic/bitops/instrumented-non-atomic.h:154:9: warning: unreplaced symbol 'return'
+./include/asm-generic/bitops/instrumented-non-atomic.h:154:9: warning: unreplaced symbol 'return'
+./include/asm-generic/bitops/instrumented-non-atomic.h:26:1: warning: unreplaced symbol 'return'
+./include/asm-generic/bitops/instrumented-non-atomic.h:26:1: warning: unreplaced symbol 'return'
+./include/asm-generic/bitops/instrumented-non-atomic.h:42:1: warning: unreplaced symbol 'return'
+./include/asm-generic/bitops/instrumented-non-atomic.h:42:1: warning: unreplaced symbol 'return'
+./include/asm-generic/bitops/instrumented-non-atomic.h:58:1: warning: unreplaced symbol 'return'
+./include/asm-generic/bitops/instrumented-non-atomic.h:58:1: warning: unreplaced symbol 'return'
+./include/asm-generic/bitops/instrumented-non-atomic.h:97:1: warning: unreplaced symbol 'return'
+./include/asm-generic/bitops/instrumented-non-atomic.h:97:1: warning: unreplaced symbol 'return'
/home/kbuild2/linux/maintainer-tools/dim: line 2106: echo: write error: Broken pipe
^ permalink raw reply [flat|nested] 12+ messages in thread
* ✗ Fi.CI.IGT: failure for drm/i915/bios: Refactor ROM access (rev2)
2024-09-23 15:24 [PATCH v2 0/6] drm/i915/bios: Refactor ROM access Ville Syrjala
` (8 preceding siblings ...)
2024-09-26 17:22 ` ✗ Fi.CI.SPARSE: " Patchwork
@ 2024-09-26 23:12 ` Patchwork
9 siblings, 0 replies; 12+ messages in thread
From: Patchwork @ 2024-09-26 23:12 UTC (permalink / raw)
To: Ville Syrjälä; +Cc: intel-gfx
[-- Attachment #1: Type: text/plain, Size: 100268 bytes --]
== Series Details ==
Series: drm/i915/bios: Refactor ROM access (rev2)
URL : https://patchwork.freedesktop.org/series/138477/
State : failure
== Summary ==
CI Bug Log - changes from CI_DRM_15448_full -> Patchwork_138477v2_full
====================================================
Summary
-------
**FAILURE**
Serious unknown changes coming with Patchwork_138477v2_full absolutely need to be
verified manually.
If you think the reported changes have nothing to do with the changes
introduced in Patchwork_138477v2_full, please notify your bug team (I915-ci-infra@lists.freedesktop.org) to allow them
to document this new failure mode, which will reduce false positives in CI.
Participating hosts (8 -> 8)
------------------------------
No changes in participating hosts
Possible new issues
-------------------
Here are the unknown changes that may have been introduced in Patchwork_138477v2_full:
### IGT changes ###
#### Possible regressions ####
* igt@gem_exec_balancer@nop:
- shard-dg2: [PASS][1] -> [INCOMPLETE][2]
[1]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15448/shard-dg2-2/igt@gem_exec_balancer@nop.html
[2]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138477v2/shard-dg2-3/igt@gem_exec_balancer@nop.html
* igt@gem_exec_schedule@pi-common:
- shard-tglu: NOTRUN -> [FAIL][3] +5 other tests fail
[3]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138477v2/shard-tglu-3/igt@gem_exec_schedule@pi-common.html
* igt@kms_async_flips@test-cursor:
- shard-mtlp: NOTRUN -> [SKIP][4] +2 other tests skip
[4]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138477v2/shard-mtlp-4/igt@kms_async_flips@test-cursor.html
* igt@kms_atomic_transition@modeset-transition-nonblocking:
- shard-tglu: NOTRUN -> [SKIP][5] +33 other tests skip
[5]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138477v2/shard-tglu-8/igt@kms_atomic_transition@modeset-transition-nonblocking.html
* igt@kms_cursor_crc@cursor-suspend@pipe-d-hdmi-a-3:
- shard-dg2: NOTRUN -> [INCOMPLETE][6]
[6]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138477v2/shard-dg2-1/igt@kms_cursor_crc@cursor-suspend@pipe-d-hdmi-a-3.html
* igt@kms_cursor_edge_walk@64x64-right-edge:
- shard-tglu: [PASS][7] -> [SKIP][8] +25 other tests skip
[7]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15448/shard-tglu-6/igt@kms_cursor_edge_walk@64x64-right-edge.html
[8]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138477v2/shard-tglu-8/igt@kms_cursor_edge_walk@64x64-right-edge.html
* igt@kms_flip@plain-flip-fb-recreate@a-edp1:
- shard-mtlp: NOTRUN -> [FAIL][9]
[9]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138477v2/shard-mtlp-1/igt@kms_flip@plain-flip-fb-recreate@a-edp1.html
* igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-shrfb-draw-mmap-wc:
- shard-dg2: NOTRUN -> [SKIP][10] +8 other tests skip
[10]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138477v2/shard-dg2-1/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-shrfb-draw-mmap-wc.html
* igt@kms_psr2_sf@cursor-plane-move-continuous-exceed-fully-sf:
- shard-rkl: NOTRUN -> [SKIP][11] +4 other tests skip
[11]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138477v2/shard-rkl-2/igt@kms_psr2_sf@cursor-plane-move-continuous-exceed-fully-sf.html
* igt@kms_psr2_sf@fbc-primary-plane-update-sf-dmg-area:
- shard-dg1: NOTRUN -> [SKIP][12] +6 other tests skip
[12]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138477v2/shard-dg1-15/igt@kms_psr2_sf@fbc-primary-plane-update-sf-dmg-area.html
#### Warnings ####
* igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180:
- shard-tglu: [SKIP][13] ([i915#5286]) -> [SKIP][14] +3 other tests skip
[13]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15448/shard-tglu-6/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180.html
[14]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138477v2/shard-tglu-8/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180.html
* igt@kms_ccs@random-ccs-data-4-tiled-bmg-ccs:
- shard-tglu: [SKIP][15] ([i915#12042]) -> [SKIP][16]
[15]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15448/shard-tglu-6/igt@kms_ccs@random-ccs-data-4-tiled-bmg-ccs.html
[16]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138477v2/shard-tglu-8/igt@kms_ccs@random-ccs-data-4-tiled-bmg-ccs.html
* igt@kms_ccs@random-ccs-data-4-tiled-mtl-rc-ccs-cc:
- shard-tglu: [SKIP][17] ([i915#6095]) -> [SKIP][18] +7 other tests skip
[17]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15448/shard-tglu-6/igt@kms_ccs@random-ccs-data-4-tiled-mtl-rc-ccs-cc.html
[18]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138477v2/shard-tglu-8/igt@kms_ccs@random-ccs-data-4-tiled-mtl-rc-ccs-cc.html
* igt@kms_content_protection@srm:
- shard-tglu: [SKIP][19] ([i915#6944] / [i915#7116] / [i915#7118]) -> [SKIP][20]
[19]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15448/shard-tglu-6/igt@kms_content_protection@srm.html
[20]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138477v2/shard-tglu-8/igt@kms_content_protection@srm.html
* igt@kms_cursor_crc@cursor-onscreen-512x170:
- shard-tglu: [SKIP][21] ([i915#11453]) -> [SKIP][22]
[21]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15448/shard-tglu-6/igt@kms_cursor_crc@cursor-onscreen-512x170.html
[22]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138477v2/shard-tglu-8/igt@kms_cursor_crc@cursor-onscreen-512x170.html
* igt@kms_cursor_legacy@short-busy-flip-before-cursor-toggle:
- shard-tglu: [SKIP][23] ([i915#4103]) -> [SKIP][24]
[23]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15448/shard-tglu-6/igt@kms_cursor_legacy@short-busy-flip-before-cursor-toggle.html
[24]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138477v2/shard-tglu-8/igt@kms_cursor_legacy@short-busy-flip-before-cursor-toggle.html
* igt@kms_dsc@dsc-with-output-formats-with-bpc:
- shard-tglu: [SKIP][25] ([i915#3840] / [i915#9053]) -> [SKIP][26]
[25]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15448/shard-tglu-6/igt@kms_dsc@dsc-with-output-formats-with-bpc.html
[26]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138477v2/shard-tglu-8/igt@kms_dsc@dsc-with-output-formats-with-bpc.html
* igt@kms_frontbuffer_tracking@fbcpsr-2p-shrfb-fliptrack-mmap-gtt:
- shard-dg2: [SKIP][27] ([i915#5354]) -> [SKIP][28] +6 other tests skip
[27]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15448/shard-dg2-2/igt@kms_frontbuffer_tracking@fbcpsr-2p-shrfb-fliptrack-mmap-gtt.html
[28]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138477v2/shard-dg2-3/igt@kms_frontbuffer_tracking@fbcpsr-2p-shrfb-fliptrack-mmap-gtt.html
* igt@kms_rotation_crc@primary-4-tiled-reflect-x-180:
- shard-tglu: [SKIP][29] ([i915#5289]) -> [SKIP][30]
[29]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15448/shard-tglu-6/igt@kms_rotation_crc@primary-4-tiled-reflect-x-180.html
[30]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138477v2/shard-tglu-8/igt@kms_rotation_crc@primary-4-tiled-reflect-x-180.html
* igt@kms_vrr@flip-basic:
- shard-tglu: [SKIP][31] ([i915#3555]) -> [SKIP][32]
[31]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15448/shard-tglu-6/igt@kms_vrr@flip-basic.html
[32]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138477v2/shard-tglu-8/igt@kms_vrr@flip-basic.html
#### Suppressed ####
The following results come from untrusted machines, tests, or statuses.
They do not affect the overall result.
* igt@gem_exec_fair@basic-none-vip@rcs0:
- {shard-tglu-1}: NOTRUN -> [FAIL][33] +1 other test fail
[33]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138477v2/shard-tglu-1/igt@gem_exec_fair@basic-none-vip@rcs0.html
* igt@i915_pm_freq_api@freq-reset:
- {shard-tglu-1}: NOTRUN -> [SKIP][34] +126 other tests skip
[34]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138477v2/shard-tglu-1/igt@i915_pm_freq_api@freq-reset.html
* igt@i915_pm_rc6_residency@rc6-fence:
- {shard-tglu-1}: NOTRUN -> [WARN][35] +1 other test warn
[35]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138477v2/shard-tglu-1/igt@i915_pm_rc6_residency@rc6-fence.html
New tests
---------
New tests have been introduced between CI_DRM_15448_full and Patchwork_138477v2_full:
### New IGT tests (2) ###
* igt@kms_color@ctm-max@pipe-a-dp-3:
- Statuses : 1 pass(s)
- Exec time: [0.66] s
* igt@kms_color@ctm-max@pipe-b-dp-3:
- Statuses : 1 pass(s)
- Exec time: [0.57] s
Known issues
------------
Here are the changes found in Patchwork_138477v2_full that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@api_intel_bb@crc32:
- shard-rkl: NOTRUN -> [SKIP][36] ([i915#6230])
[36]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138477v2/shard-rkl-5/igt@api_intel_bb@crc32.html
* igt@fbdev@nullptr:
- shard-dg2: [PASS][37] -> [SKIP][38] ([i915#2582])
[37]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15448/shard-dg2-11/igt@fbdev@nullptr.html
[38]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138477v2/shard-dg2-2/igt@fbdev@nullptr.html
* igt@gem_basic@multigpu-create-close:
- shard-tglu: NOTRUN -> [SKIP][39] ([i915#7697])
[39]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138477v2/shard-tglu-3/igt@gem_basic@multigpu-create-close.html
* igt@gem_ccs@ctrl-surf-copy-new-ctx:
- shard-rkl: NOTRUN -> [SKIP][40] ([i915#9323])
[40]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138477v2/shard-rkl-2/igt@gem_ccs@ctrl-surf-copy-new-ctx.html
- shard-tglu: NOTRUN -> [SKIP][41] ([i915#9323])
[41]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138477v2/shard-tglu-8/igt@gem_ccs@ctrl-surf-copy-new-ctx.html
* igt@gem_ccs@suspend-resume@linear-compressed-compfmt0-smem-lmem0:
- shard-dg2: [PASS][42] -> [INCOMPLETE][43] ([i915#7297])
[42]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15448/shard-dg2-1/igt@gem_ccs@suspend-resume@linear-compressed-compfmt0-smem-lmem0.html
[43]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138477v2/shard-dg2-4/igt@gem_ccs@suspend-resume@linear-compressed-compfmt0-smem-lmem0.html
* igt@gem_ctx_engines@invalid-engines:
- shard-rkl: [PASS][44] -> [FAIL][45] ([i915#12027])
[44]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15448/shard-rkl-2/igt@gem_ctx_engines@invalid-engines.html
[45]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138477v2/shard-rkl-7/igt@gem_ctx_engines@invalid-engines.html
* igt@gem_ctx_freq@sysfs:
- shard-dg2: [PASS][46] -> [FAIL][47] ([i915#9561]) +1 other test fail
[46]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15448/shard-dg2-6/igt@gem_ctx_freq@sysfs.html
[47]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138477v2/shard-dg2-6/igt@gem_ctx_freq@sysfs.html
* igt@gem_ctx_sseu@engines:
- shard-rkl: NOTRUN -> [SKIP][48] ([i915#280])
[48]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138477v2/shard-rkl-5/igt@gem_ctx_sseu@engines.html
* igt@gem_ctx_sseu@invalid-sseu:
- shard-tglu: NOTRUN -> [SKIP][49] ([i915#280])
[49]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138477v2/shard-tglu-4/igt@gem_ctx_sseu@invalid-sseu.html
* igt@gem_exec_big@single:
- shard-tglu: NOTRUN -> [ABORT][50] ([i915#11713])
[50]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138477v2/shard-tglu-7/igt@gem_exec_big@single.html
* igt@gem_exec_fair@basic-deadline:
- shard-dg1: NOTRUN -> [SKIP][51] ([i915#3539] / [i915#4852]) +1 other test skip
[51]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138477v2/shard-dg1-15/igt@gem_exec_fair@basic-deadline.html
- shard-glk: NOTRUN -> [FAIL][52] ([i915#2846])
[52]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138477v2/shard-glk7/igt@gem_exec_fair@basic-deadline.html
- shard-mtlp: NOTRUN -> [SKIP][53] ([i915#4473] / [i915#4771]) +1 other test skip
[53]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138477v2/shard-mtlp-4/igt@gem_exec_fair@basic-deadline.html
- shard-dg2: NOTRUN -> [SKIP][54] ([i915#3539] / [i915#4852])
[54]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138477v2/shard-dg2-8/igt@gem_exec_fair@basic-deadline.html
* igt@gem_exec_fair@basic-none-rrul:
- shard-rkl: NOTRUN -> [FAIL][55] ([i915#2842]) +1 other test fail
[55]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138477v2/shard-rkl-2/igt@gem_exec_fair@basic-none-rrul.html
- shard-tglu: NOTRUN -> [FAIL][56] ([i915#2842]) +1 other test fail
[56]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138477v2/shard-tglu-8/igt@gem_exec_fair@basic-none-rrul.html
* igt@gem_exec_fair@basic-pace@vcs0:
- shard-rkl: [PASS][57] -> [FAIL][58] ([i915#2842])
[57]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15448/shard-rkl-7/igt@gem_exec_fair@basic-pace@vcs0.html
[58]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138477v2/shard-rkl-7/igt@gem_exec_fair@basic-pace@vcs0.html
* igt@gem_exec_reloc@basic-cpu-wc-active:
- shard-mtlp: NOTRUN -> [SKIP][59] ([i915#3281]) +1 other test skip
[59]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138477v2/shard-mtlp-4/igt@gem_exec_reloc@basic-cpu-wc-active.html
- shard-dg2: NOTRUN -> [SKIP][60] ([i915#3281])
[60]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138477v2/shard-dg2-8/igt@gem_exec_reloc@basic-cpu-wc-active.html
- shard-dg1: NOTRUN -> [SKIP][61] ([i915#3281])
[61]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138477v2/shard-dg1-15/igt@gem_exec_reloc@basic-cpu-wc-active.html
* igt@gem_exec_reloc@basic-softpin:
- shard-rkl: NOTRUN -> [SKIP][62] ([i915#3281]) +2 other tests skip
[62]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138477v2/shard-rkl-5/igt@gem_exec_reloc@basic-softpin.html
* igt@gem_exec_schedule@preempt-queue-contexts-chain:
- shard-dg1: NOTRUN -> [SKIP][63] ([i915#4812])
[63]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138477v2/shard-dg1-18/igt@gem_exec_schedule@preempt-queue-contexts-chain.html
* igt@gem_huc_copy@huc-copy:
- shard-rkl: NOTRUN -> [SKIP][64] ([i915#2190])
[64]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138477v2/shard-rkl-5/igt@gem_huc_copy@huc-copy.html
* igt@gem_lmem_evict@dontneed-evict-race:
- shard-tglu: NOTRUN -> [SKIP][65] ([i915#4613] / [i915#7582])
[65]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138477v2/shard-tglu-3/igt@gem_lmem_evict@dontneed-evict-race.html
* igt@gem_lmem_swapping@heavy-random:
- shard-tglu: NOTRUN -> [SKIP][66] ([i915#4613]) +2 other tests skip
[66]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138477v2/shard-tglu-8/igt@gem_lmem_swapping@heavy-random.html
- shard-rkl: NOTRUN -> [SKIP][67] ([i915#4613])
[67]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138477v2/shard-rkl-2/igt@gem_lmem_swapping@heavy-random.html
* igt@gem_lmem_swapping@smem-oom@lmem0:
- shard-dg2: [PASS][68] -> [TIMEOUT][69] ([i915#5493]) +1 other test timeout
[68]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15448/shard-dg2-10/igt@gem_lmem_swapping@smem-oom@lmem0.html
[69]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138477v2/shard-dg2-2/igt@gem_lmem_swapping@smem-oom@lmem0.html
* igt@gem_madvise@dontneed-before-exec:
- shard-mtlp: NOTRUN -> [SKIP][70] ([i915#3282]) +2 other tests skip
[70]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138477v2/shard-mtlp-4/igt@gem_madvise@dontneed-before-exec.html
- shard-dg2: NOTRUN -> [SKIP][71] ([i915#3282])
[71]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138477v2/shard-dg2-8/igt@gem_madvise@dontneed-before-exec.html
- shard-dg1: NOTRUN -> [SKIP][72] ([i915#3282])
[72]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138477v2/shard-dg1-15/igt@gem_madvise@dontneed-before-exec.html
* igt@gem_mmap_wc@bad-object:
- shard-dg2: NOTRUN -> [SKIP][73] ([i915#4083])
[73]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138477v2/shard-dg2-11/igt@gem_mmap_wc@bad-object.html
- shard-dg1: NOTRUN -> [SKIP][74] ([i915#4083]) +1 other test skip
[74]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138477v2/shard-dg1-16/igt@gem_mmap_wc@bad-object.html
* igt@gem_mmap_wc@bad-size:
- shard-mtlp: NOTRUN -> [SKIP][75] ([i915#4083])
[75]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138477v2/shard-mtlp-7/igt@gem_mmap_wc@bad-size.html
* igt@gem_pxp@create-regular-context-1:
- shard-mtlp: NOTRUN -> [SKIP][76] ([i915#4270]) +1 other test skip
[76]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138477v2/shard-mtlp-4/igt@gem_pxp@create-regular-context-1.html
* igt@gem_pxp@reject-modify-context-protection-off-1:
- shard-dg1: NOTRUN -> [SKIP][77] ([i915#4270])
[77]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138477v2/shard-dg1-18/igt@gem_pxp@reject-modify-context-protection-off-1.html
* igt@gem_pxp@reject-modify-context-protection-off-2:
- shard-rkl: NOTRUN -> [SKIP][78] ([i915#4270]) +1 other test skip
[78]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138477v2/shard-rkl-2/igt@gem_pxp@reject-modify-context-protection-off-2.html
- shard-tglu: NOTRUN -> [SKIP][79] ([i915#4270]) +1 other test skip
[79]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138477v2/shard-tglu-8/igt@gem_pxp@reject-modify-context-protection-off-2.html
* igt@gem_readwrite@read-bad-handle:
- shard-rkl: NOTRUN -> [SKIP][80] ([i915#3282]) +4 other tests skip
[80]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138477v2/shard-rkl-2/igt@gem_readwrite@read-bad-handle.html
* igt@gem_render_copy@mixed-tiled-to-yf-tiled-ccs:
- shard-mtlp: NOTRUN -> [SKIP][81] ([i915#8428])
[81]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138477v2/shard-mtlp-4/igt@gem_render_copy@mixed-tiled-to-yf-tiled-ccs.html
- shard-dg2: NOTRUN -> [SKIP][82] ([i915#5190] / [i915#8428]) +1 other test skip
[82]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138477v2/shard-dg2-8/igt@gem_render_copy@mixed-tiled-to-yf-tiled-ccs.html
* igt@gem_render_tiled_blits@basic:
- shard-mtlp: NOTRUN -> [SKIP][83] ([i915#4079])
[83]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138477v2/shard-mtlp-7/igt@gem_render_tiled_blits@basic.html
* igt@gem_tiled_partial_pwrite_pread@writes:
- shard-dg1: NOTRUN -> [SKIP][84] ([i915#4077])
[84]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138477v2/shard-dg1-13/igt@gem_tiled_partial_pwrite_pread@writes.html
* igt@gen9_exec_parse@shadow-peek:
- shard-rkl: NOTRUN -> [SKIP][85] ([i915#2527]) +1 other test skip
[85]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138477v2/shard-rkl-2/igt@gen9_exec_parse@shadow-peek.html
- shard-tglu: NOTRUN -> [SKIP][86] ([i915#2527] / [i915#2856]) +1 other test skip
[86]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138477v2/shard-tglu-8/igt@gen9_exec_parse@shadow-peek.html
* igt@i915_module_load@reload-with-fault-injection:
- shard-dg1: [PASS][87] -> [ABORT][88] ([i915#9820])
[87]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15448/shard-dg1-16/igt@i915_module_load@reload-with-fault-injection.html
[88]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138477v2/shard-dg1-14/igt@i915_module_load@reload-with-fault-injection.html
- shard-glk: [PASS][89] -> [ABORT][90] ([i915#9820])
[89]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15448/shard-glk4/igt@i915_module_load@reload-with-fault-injection.html
[90]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138477v2/shard-glk9/igt@i915_module_load@reload-with-fault-injection.html
* igt@i915_pm_freq_api@freq-reset:
- shard-rkl: NOTRUN -> [SKIP][91] ([i915#8399])
[91]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138477v2/shard-rkl-5/igt@i915_pm_freq_api@freq-reset.html
* igt@i915_pm_freq_mult@media-freq@gt0:
- shard-tglu: NOTRUN -> [SKIP][92] ([i915#6590]) +1 other test skip
[92]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138477v2/shard-tglu-4/igt@i915_pm_freq_mult@media-freq@gt0.html
* igt@i915_query@test-query-geometry-subslices:
- shard-tglu: NOTRUN -> [SKIP][93] ([i915#5723])
[93]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138477v2/shard-tglu-7/igt@i915_query@test-query-geometry-subslices.html
* igt@intel_hwmon@hwmon-write:
- shard-rkl: NOTRUN -> [SKIP][94] ([i915#7707])
[94]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138477v2/shard-rkl-5/igt@intel_hwmon@hwmon-write.html
* igt@kms_atomic@plane-primary-overlay-mutable-zpos:
- shard-glk: NOTRUN -> [SKIP][95] +30 other tests skip
[95]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138477v2/shard-glk7/igt@kms_atomic@plane-primary-overlay-mutable-zpos.html
- shard-mtlp: NOTRUN -> [SKIP][96] ([i915#3555])
[96]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138477v2/shard-mtlp-4/igt@kms_atomic@plane-primary-overlay-mutable-zpos.html
- shard-dg1: NOTRUN -> [SKIP][97] ([i915#9531])
[97]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138477v2/shard-dg1-15/igt@kms_atomic@plane-primary-overlay-mutable-zpos.html
- shard-tglu: NOTRUN -> [SKIP][98] ([i915#9531])
[98]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138477v2/shard-tglu-3/igt@kms_atomic@plane-primary-overlay-mutable-zpos.html
* igt@kms_atomic_transition@plane-all-modeset-transition-fencing:
- shard-dg2: [PASS][99] -> [FAIL][100] ([i915#5956]) +1 other test fail
[99]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15448/shard-dg2-8/igt@kms_atomic_transition@plane-all-modeset-transition-fencing.html
[100]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138477v2/shard-dg2-8/igt@kms_atomic_transition@plane-all-modeset-transition-fencing.html
* igt@kms_big_fb@4-tiled-16bpp-rotate-90:
- shard-dg1: NOTRUN -> [SKIP][101] ([i915#4538] / [i915#5286])
[101]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138477v2/shard-dg1-18/igt@kms_big_fb@4-tiled-16bpp-rotate-90.html
* igt@kms_big_fb@4-tiled-8bpp-rotate-180:
- shard-tglu: NOTRUN -> [SKIP][102] ([i915#5286]) +1 other test skip
[102]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138477v2/shard-tglu-3/igt@kms_big_fb@4-tiled-8bpp-rotate-180.html
* igt@kms_big_fb@4-tiled-8bpp-rotate-270:
- shard-dg2: NOTRUN -> [SKIP][103] +2 other tests skip
[103]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138477v2/shard-dg2-10/igt@kms_big_fb@4-tiled-8bpp-rotate-270.html
* igt@kms_big_fb@4-tiled-addfb-size-overflow:
- shard-rkl: NOTRUN -> [SKIP][104] ([i915#5286]) +1 other test skip
[104]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138477v2/shard-rkl-5/igt@kms_big_fb@4-tiled-addfb-size-overflow.html
* igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-hflip:
- shard-mtlp: [PASS][105] -> [FAIL][106] ([i915#5138]) +1 other test fail
[105]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15448/shard-mtlp-4/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-hflip.html
[106]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138477v2/shard-mtlp-1/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-hflip.html
* igt@kms_big_fb@x-tiled-64bpp-rotate-180:
- shard-dg2: [PASS][107] -> [SKIP][108] ([i915#9197]) +37 other tests skip
[107]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15448/shard-dg2-10/igt@kms_big_fb@x-tiled-64bpp-rotate-180.html
[108]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138477v2/shard-dg2-2/igt@kms_big_fb@x-tiled-64bpp-rotate-180.html
* igt@kms_big_fb@y-tiled-16bpp-rotate-90:
- shard-dg1: [PASS][109] -> [DMESG-WARN][110] ([i915#4423])
[109]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15448/shard-dg1-15/igt@kms_big_fb@y-tiled-16bpp-rotate-90.html
[110]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138477v2/shard-dg1-17/igt@kms_big_fb@y-tiled-16bpp-rotate-90.html
* igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-180-async-flip:
- shard-mtlp: NOTRUN -> [SKIP][111] +1 other test skip
[111]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138477v2/shard-mtlp-3/igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-180-async-flip.html
* igt@kms_big_fb@yf-tiled-16bpp-rotate-180:
- shard-dg2: NOTRUN -> [SKIP][112] ([i915#4538] / [i915#5190])
[112]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138477v2/shard-dg2-10/igt@kms_big_fb@yf-tiled-16bpp-rotate-180.html
* igt@kms_ccs@bad-aux-stride-y-tiled-gen12-rc-ccs-cc@pipe-c-edp-1:
- shard-mtlp: NOTRUN -> [SKIP][113] ([i915#6095]) +4 other tests skip
[113]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138477v2/shard-mtlp-4/igt@kms_ccs@bad-aux-stride-y-tiled-gen12-rc-ccs-cc@pipe-c-edp-1.html
* igt@kms_ccs@bad-aux-stride-y-tiled-gen12-rc-ccs-cc@pipe-d-hdmi-a-1:
- shard-dg2: NOTRUN -> [SKIP][114] ([i915#10307] / [i915#10434] / [i915#6095])
[114]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138477v2/shard-dg2-8/igt@kms_ccs@bad-aux-stride-y-tiled-gen12-rc-ccs-cc@pipe-d-hdmi-a-1.html
* igt@kms_ccs@bad-rotation-90-4-tiled-dg2-mc-ccs@pipe-c-hdmi-a-1:
- shard-tglu: NOTRUN -> [SKIP][115] ([i915#6095]) +54 other tests skip
[115]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138477v2/shard-tglu-4/igt@kms_ccs@bad-rotation-90-4-tiled-dg2-mc-ccs@pipe-c-hdmi-a-1.html
* igt@kms_ccs@bad-rotation-90-4-tiled-mtl-rc-ccs-cc@pipe-b-hdmi-a-4:
- shard-dg1: NOTRUN -> [SKIP][116] ([i915#6095]) +84 other tests skip
[116]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138477v2/shard-dg1-14/igt@kms_ccs@bad-rotation-90-4-tiled-mtl-rc-ccs-cc@pipe-b-hdmi-a-4.html
* igt@kms_ccs@crc-primary-basic-4-tiled-bmg-ccs:
- shard-dg1: NOTRUN -> [SKIP][117] ([i915#12042])
[117]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138477v2/shard-dg1-18/igt@kms_ccs@crc-primary-basic-4-tiled-bmg-ccs.html
* igt@kms_ccs@crc-primary-basic-y-tiled-gen12-rc-ccs@pipe-a-dp-3:
- shard-dg2: NOTRUN -> [SKIP][118] ([i915#10307] / [i915#6095]) +149 other tests skip
[118]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138477v2/shard-dg2-10/igt@kms_ccs@crc-primary-basic-y-tiled-gen12-rc-ccs@pipe-a-dp-3.html
* igt@kms_ccs@crc-sprite-planes-basic-4-tiled-mtl-rc-ccs@pipe-a-hdmi-a-2:
- shard-rkl: NOTRUN -> [SKIP][119] ([i915#6095]) +41 other tests skip
[119]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138477v2/shard-rkl-5/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-mtl-rc-ccs@pipe-a-hdmi-a-2.html
* igt@kms_chamelium_audio@hdmi-audio-edid:
- shard-dg1: NOTRUN -> [SKIP][120] ([i915#7828]) +3 other tests skip
[120]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138477v2/shard-dg1-18/igt@kms_chamelium_audio@hdmi-audio-edid.html
* igt@kms_chamelium_edid@dp-edid-resolution-list:
- shard-tglu: NOTRUN -> [SKIP][121] ([i915#7828]) +5 other tests skip
[121]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138477v2/shard-tglu-8/igt@kms_chamelium_edid@dp-edid-resolution-list.html
* igt@kms_chamelium_hpd@hdmi-hpd-with-enabled-mode:
- shard-mtlp: NOTRUN -> [SKIP][122] ([i915#7828])
[122]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138477v2/shard-mtlp-4/igt@kms_chamelium_hpd@hdmi-hpd-with-enabled-mode.html
- shard-dg2: NOTRUN -> [SKIP][123] ([i915#7828]) +1 other test skip
[123]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138477v2/shard-dg2-8/igt@kms_chamelium_hpd@hdmi-hpd-with-enabled-mode.html
* igt@kms_chamelium_hpd@vga-hpd-fast:
- shard-rkl: NOTRUN -> [SKIP][124] ([i915#7828]) +5 other tests skip
[124]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138477v2/shard-rkl-2/igt@kms_chamelium_hpd@vga-hpd-fast.html
* igt@kms_color@deep-color:
- shard-tglu: NOTRUN -> [SKIP][125] ([i915#3555] / [i915#9979])
[125]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138477v2/shard-tglu-4/igt@kms_color@deep-color.html
* igt@kms_content_protection@atomic-dpms:
- shard-rkl: NOTRUN -> [SKIP][126] ([i915#7118] / [i915#9424])
[126]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138477v2/shard-rkl-5/igt@kms_content_protection@atomic-dpms.html
* igt@kms_content_protection@dp-mst-type-1:
- shard-tglu: NOTRUN -> [SKIP][127] ([i915#3116] / [i915#3299]) +1 other test skip
[127]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138477v2/shard-tglu-4/igt@kms_content_protection@dp-mst-type-1.html
* igt@kms_cursor_crc@cursor-rapid-movement-32x32:
- shard-rkl: NOTRUN -> [SKIP][128] ([i915#3555]) +2 other tests skip
[128]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138477v2/shard-rkl-2/igt@kms_cursor_crc@cursor-rapid-movement-32x32.html
* igt@kms_cursor_crc@cursor-sliding-512x512:
- shard-rkl: NOTRUN -> [SKIP][129] ([i915#11453]) +1 other test skip
[129]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138477v2/shard-rkl-5/igt@kms_cursor_crc@cursor-sliding-512x512.html
* igt@kms_cursor_crc@cursor-suspend:
- shard-dg2: NOTRUN -> [INCOMPLETE][130] ([i915#7882])
[130]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138477v2/shard-dg2-1/igt@kms_cursor_crc@cursor-suspend.html
* igt@kms_cursor_legacy@basic-busy-flip-before-cursor-varying-size:
- shard-rkl: NOTRUN -> [SKIP][131] ([i915#4103])
[131]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138477v2/shard-rkl-2/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-varying-size.html
* igt@kms_cursor_legacy@cursorb-vs-flipa-legacy:
- shard-mtlp: NOTRUN -> [SKIP][132] ([i915#9809])
[132]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138477v2/shard-mtlp-7/igt@kms_cursor_legacy@cursorb-vs-flipa-legacy.html
* igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions:
- shard-glk: [PASS][133] -> [FAIL][134] ([i915#2346])
[133]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15448/shard-glk8/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions.html
[134]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138477v2/shard-glk7/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions.html
* igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions:
- shard-dg2: NOTRUN -> [SKIP][135] ([i915#4103] / [i915#4213])
[135]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138477v2/shard-dg2-1/igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions.html
* igt@kms_dirtyfb@psr-dirtyfb-ioctl:
- shard-tglu: NOTRUN -> [SKIP][136] ([i915#9723])
[136]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138477v2/shard-tglu-4/igt@kms_dirtyfb@psr-dirtyfb-ioctl.html
* igt@kms_display_modes@mst-extended-mode-negative:
- shard-rkl: NOTRUN -> [SKIP][137] ([i915#8588])
[137]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138477v2/shard-rkl-2/igt@kms_display_modes@mst-extended-mode-negative.html
* igt@kms_dsc@dsc-with-bpc:
- shard-tglu: NOTRUN -> [SKIP][138] ([i915#3555] / [i915#3840]) +1 other test skip
[138]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138477v2/shard-tglu-4/igt@kms_dsc@dsc-with-bpc.html
* igt@kms_feature_discovery@chamelium:
- shard-rkl: NOTRUN -> [SKIP][139] ([i915#4854])
[139]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138477v2/shard-rkl-5/igt@kms_feature_discovery@chamelium.html
* igt@kms_feature_discovery@psr2:
- shard-rkl: NOTRUN -> [SKIP][140] ([i915#658])
[140]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138477v2/shard-rkl-5/igt@kms_feature_discovery@psr2.html
* igt@kms_flip@2x-flip-vs-expired-vblank@bc-hdmi-a1-hdmi-a2:
- shard-glk: [PASS][141] -> [FAIL][142] ([i915#79]) +1 other test fail
[141]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15448/shard-glk7/igt@kms_flip@2x-flip-vs-expired-vblank@bc-hdmi-a1-hdmi-a2.html
[142]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138477v2/shard-glk2/igt@kms_flip@2x-flip-vs-expired-vblank@bc-hdmi-a1-hdmi-a2.html
* igt@kms_flip@2x-nonexisting-fb-interruptible:
- shard-tglu: NOTRUN -> [SKIP][143] ([i915#3637]) +6 other tests skip
[143]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138477v2/shard-tglu-8/igt@kms_flip@2x-nonexisting-fb-interruptible.html
* igt@kms_flip@2x-plain-flip-ts-check:
- shard-tglu: NOTRUN -> [SKIP][144] ([i915#3637] / [i915#3966])
[144]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138477v2/shard-tglu-4/igt@kms_flip@2x-plain-flip-ts-check.html
* igt@kms_flip@2x-wf_vblank-ts-check-interruptible:
- shard-glk: [PASS][145] -> [FAIL][146] ([i915#2122]) +1 other test fail
[145]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15448/shard-glk6/igt@kms_flip@2x-wf_vblank-ts-check-interruptible.html
[146]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138477v2/shard-glk5/igt@kms_flip@2x-wf_vblank-ts-check-interruptible.html
* igt@kms_flip@basic-flip-vs-modeset:
- shard-tglu: [PASS][147] -> [SKIP][148] ([i915#3637]) +1 other test skip
[147]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15448/shard-tglu-6/igt@kms_flip@basic-flip-vs-modeset.html
[148]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138477v2/shard-tglu-8/igt@kms_flip@basic-flip-vs-modeset.html
* igt@kms_flip@plain-flip-fb-recreate@c-edp1:
- shard-mtlp: NOTRUN -> [FAIL][149] ([i915#2122]) +2 other tests fail
[149]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138477v2/shard-mtlp-1/igt@kms_flip@plain-flip-fb-recreate@c-edp1.html
* igt@kms_flip@plain-flip-fb-recreate@c-hdmi-a1:
- shard-tglu: [PASS][150] -> [FAIL][151] ([i915#2122]) +3 other tests fail
[150]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15448/shard-tglu-4/igt@kms_flip@plain-flip-fb-recreate@c-hdmi-a1.html
[151]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138477v2/shard-tglu-4/igt@kms_flip@plain-flip-fb-recreate@c-hdmi-a1.html
* igt@kms_flip_scaled_crc@flip-32bpp-ytileccs-to-64bpp-ytile-downscaling@pipe-a-valid-mode:
- shard-tglu: NOTRUN -> [SKIP][152] ([i915#2587] / [i915#2672]) +3 other tests skip
[152]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138477v2/shard-tglu-2/igt@kms_flip_scaled_crc@flip-32bpp-ytileccs-to-64bpp-ytile-downscaling@pipe-a-valid-mode.html
* igt@kms_flip_scaled_crc@flip-32bpp-ytileccs-to-64bpp-ytile-upscaling:
- shard-tglu: NOTRUN -> [SKIP][153] ([i915#2587] / [i915#2672] / [i915#3555])
[153]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138477v2/shard-tglu-4/igt@kms_flip_scaled_crc@flip-32bpp-ytileccs-to-64bpp-ytile-upscaling.html
* igt@kms_flip_scaled_crc@flip-64bpp-linear-to-16bpp-linear-downscaling:
- shard-dg2: [PASS][154] -> [SKIP][155] ([i915#3555]) +2 other tests skip
[154]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15448/shard-dg2-10/igt@kms_flip_scaled_crc@flip-64bpp-linear-to-16bpp-linear-downscaling.html
[155]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138477v2/shard-dg2-2/igt@kms_flip_scaled_crc@flip-64bpp-linear-to-16bpp-linear-downscaling.html
* igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-downscaling:
- shard-rkl: NOTRUN -> [SKIP][156] ([i915#2672] / [i915#3555]) +1 other test skip
[156]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138477v2/shard-rkl-5/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-downscaling.html
* igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-downscaling@pipe-a-valid-mode:
- shard-rkl: NOTRUN -> [SKIP][157] ([i915#2672]) +1 other test skip
[157]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138477v2/shard-rkl-5/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-downscaling@pipe-a-valid-mode.html
* igt@kms_frontbuffer_tracking@fbc-1p-primscrn-spr-indfb-draw-mmap-cpu:
- shard-dg2: [PASS][158] -> [SKIP][159] ([i915#5354]) +13 other tests skip
[158]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15448/shard-dg2-10/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-spr-indfb-draw-mmap-cpu.html
[159]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138477v2/shard-dg2-2/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-spr-indfb-draw-mmap-cpu.html
* igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-shrfb-draw-mmap-gtt:
- shard-snb: [PASS][160] -> [SKIP][161] +4 other tests skip
[160]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15448/shard-snb2/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-shrfb-draw-mmap-gtt.html
[161]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138477v2/shard-snb4/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-shrfb-draw-mmap-gtt.html
* igt@kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-fullscreen:
- shard-mtlp: NOTRUN -> [SKIP][162] ([i915#1825]) +4 other tests skip
[162]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138477v2/shard-mtlp-4/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-fullscreen.html
* igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-draw-mmap-cpu:
- shard-rkl: NOTRUN -> [SKIP][163] ([i915#1825]) +15 other tests skip
[163]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138477v2/shard-rkl-5/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-draw-mmap-cpu.html
* igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-shrfb-msflip-blt:
- shard-rkl: NOTRUN -> [SKIP][164] ([i915#3023]) +9 other tests skip
[164]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138477v2/shard-rkl-2/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-shrfb-msflip-blt.html
* igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-indfb-draw-render:
- shard-dg1: NOTRUN -> [SKIP][165] +4 other tests skip
[165]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138477v2/shard-dg1-18/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-indfb-draw-render.html
* igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-spr-indfb-draw-render:
- shard-tglu: NOTRUN -> [SKIP][166] +44 other tests skip
[166]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138477v2/shard-tglu-3/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-spr-indfb-draw-render.html
* igt@kms_frontbuffer_tracking@psr-1p-primscrn-pri-indfb-draw-blt:
- shard-dg1: NOTRUN -> [SKIP][167] ([i915#3458]) +1 other test skip
[167]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138477v2/shard-dg1-19/igt@kms_frontbuffer_tracking@psr-1p-primscrn-pri-indfb-draw-blt.html
* igt@kms_frontbuffer_tracking@psr-2p-primscrn-pri-shrfb-draw-render:
- shard-dg2: NOTRUN -> [SKIP][168] ([i915#5354]) +1 other test skip
[168]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138477v2/shard-dg2-8/igt@kms_frontbuffer_tracking@psr-2p-primscrn-pri-shrfb-draw-render.html
* igt@kms_frontbuffer_tracking@psr-2p-scndscrn-cur-indfb-draw-pwrite:
- shard-tglu: NOTRUN -> [SKIP][169] ([i915#1849]) +18 other tests skip
[169]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138477v2/shard-tglu-8/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-cur-indfb-draw-pwrite.html
* igt@kms_frontbuffer_tracking@psr-rgb101010-draw-blt:
- shard-dg2: NOTRUN -> [SKIP][170] ([i915#3458]) +1 other test skip
[170]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138477v2/shard-dg2-8/igt@kms_frontbuffer_tracking@psr-rgb101010-draw-blt.html
* igt@kms_hdr@static-swap:
- shard-tglu: NOTRUN -> [SKIP][171] ([i915#3555] / [i915#8228])
[171]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138477v2/shard-tglu-4/igt@kms_hdr@static-swap.html
* igt@kms_invalid_mode@bad-vsync-start:
- shard-tglu: [PASS][172] -> [SKIP][173] ([i915#3555]) +2 other tests skip
[172]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15448/shard-tglu-6/igt@kms_invalid_mode@bad-vsync-start.html
[173]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138477v2/shard-tglu-8/igt@kms_invalid_mode@bad-vsync-start.html
* igt@kms_multipipe_modeset@basic-max-pipe-crc-check:
- shard-tglu: NOTRUN -> [SKIP][174] ([i915#1839])
[174]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138477v2/shard-tglu-7/igt@kms_multipipe_modeset@basic-max-pipe-crc-check.html
* igt@kms_plane@pixel-format:
- shard-tglu: NOTRUN -> [SKIP][175] ([i915#8825])
[175]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138477v2/shard-tglu-8/igt@kms_plane@pixel-format.html
* igt@kms_plane@plane-panning-bottom-right-suspend:
- shard-tglu: [PASS][176] -> [SKIP][177] ([i915#8825])
[176]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15448/shard-tglu-6/igt@kms_plane@plane-panning-bottom-right-suspend.html
[177]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138477v2/shard-tglu-8/igt@kms_plane@plane-panning-bottom-right-suspend.html
* igt@kms_plane@plane-panning-top-left:
- shard-dg2: [PASS][178] -> [SKIP][179] ([i915#8825]) +1 other test skip
[178]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15448/shard-dg2-11/igt@kms_plane@plane-panning-top-left.html
[179]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138477v2/shard-dg2-2/igt@kms_plane@plane-panning-top-left.html
* igt@kms_plane_alpha_blend@alpha-opaque-fb:
- shard-tglu: [PASS][180] -> [SKIP][181] ([i915#7294])
[180]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15448/shard-tglu-6/igt@kms_plane_alpha_blend@alpha-opaque-fb.html
[181]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138477v2/shard-tglu-8/igt@kms_plane_alpha_blend@alpha-opaque-fb.html
* igt@kms_plane_alpha_blend@coverage-7efc:
- shard-dg2: [PASS][182] -> [SKIP][183] ([i915#7294]) +1 other test skip
[182]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15448/shard-dg2-10/igt@kms_plane_alpha_blend@coverage-7efc.html
[183]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138477v2/shard-dg2-2/igt@kms_plane_alpha_blend@coverage-7efc.html
* igt@kms_plane_scaling@2x-scaler-multi-pipe:
- shard-tglu: NOTRUN -> [SKIP][184] ([i915#8152])
[184]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138477v2/shard-tglu-8/igt@kms_plane_scaling@2x-scaler-multi-pipe.html
* igt@kms_plane_scaling@intel-max-src-size@pipe-a-hdmi-a-1:
- shard-rkl: NOTRUN -> [FAIL][185] ([i915#8292])
[185]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138477v2/shard-rkl-2/igt@kms_plane_scaling@intel-max-src-size@pipe-a-hdmi-a-1.html
* igt@kms_plane_scaling@intel-max-src-size@pipe-a-hdmi-a-4:
- shard-dg1: NOTRUN -> [FAIL][186] ([i915#8292])
[186]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138477v2/shard-dg1-14/igt@kms_plane_scaling@intel-max-src-size@pipe-a-hdmi-a-4.html
* igt@kms_plane_scaling@plane-scaler-unity-scaling-with-pixel-format@pipe-b:
- shard-tglu: [PASS][187] -> [SKIP][188] ([i915#12247]) +5 other tests skip
[187]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15448/shard-tglu-6/igt@kms_plane_scaling@plane-scaler-unity-scaling-with-pixel-format@pipe-b.html
[188]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138477v2/shard-tglu-8/igt@kms_plane_scaling@plane-scaler-unity-scaling-with-pixel-format@pipe-b.html
* igt@kms_plane_scaling@plane-scaler-unity-scaling-with-pixel-format@pipe-d:
- shard-tglu: [PASS][189] -> [SKIP][190] ([i915#8152]) +1 other test skip
[189]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15448/shard-tglu-6/igt@kms_plane_scaling@plane-scaler-unity-scaling-with-pixel-format@pipe-d.html
[190]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138477v2/shard-tglu-8/igt@kms_plane_scaling@plane-scaler-unity-scaling-with-pixel-format@pipe-d.html
* igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-modifiers@pipe-b:
- shard-dg2: [PASS][191] -> [SKIP][192] ([i915#12247]) +8 other tests skip
[191]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15448/shard-dg2-10/igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-modifiers@pipe-b.html
[192]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138477v2/shard-dg2-2/igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-modifiers@pipe-b.html
* igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-modifiers@pipe-d:
- shard-dg2: [PASS][193] -> [SKIP][194] ([i915#8152])
[193]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15448/shard-dg2-10/igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-modifiers@pipe-d.html
[194]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138477v2/shard-dg2-2/igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-modifiers@pipe-d.html
* igt@kms_plane_scaling@plane-upscale-factor-0-25-with-rotation:
- shard-dg2: [PASS][195] -> [SKIP][196] ([i915#12247] / [i915#8152] / [i915#9423])
[195]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15448/shard-dg2-10/igt@kms_plane_scaling@plane-upscale-factor-0-25-with-rotation.html
[196]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138477v2/shard-dg2-2/igt@kms_plane_scaling@plane-upscale-factor-0-25-with-rotation.html
* igt@kms_plane_scaling@planes-downscale-factor-0-25:
- shard-rkl: NOTRUN -> [SKIP][197] ([i915#12247] / [i915#6953])
[197]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138477v2/shard-rkl-5/igt@kms_plane_scaling@planes-downscale-factor-0-25.html
* igt@kms_plane_scaling@planes-downscale-factor-0-25@pipe-b:
- shard-rkl: NOTRUN -> [SKIP][198] ([i915#12247]) +1 other test skip
[198]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138477v2/shard-rkl-5/igt@kms_plane_scaling@planes-downscale-factor-0-25@pipe-b.html
* igt@kms_plane_scaling@planes-downscale-factor-0-5:
- shard-tglu: NOTRUN -> [SKIP][199] ([i915#12247] / [i915#6953])
[199]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138477v2/shard-tglu-3/igt@kms_plane_scaling@planes-downscale-factor-0-5.html
- shard-mtlp: NOTRUN -> [SKIP][200] ([i915#12247] / [i915#6953])
[200]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138477v2/shard-mtlp-4/igt@kms_plane_scaling@planes-downscale-factor-0-5.html
* igt@kms_plane_scaling@planes-downscale-factor-0-5-upscale-20x20:
- shard-tglu: NOTRUN -> [SKIP][201] ([i915#12247] / [i915#8152]) +1 other test skip
[201]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138477v2/shard-tglu-8/igt@kms_plane_scaling@planes-downscale-factor-0-5-upscale-20x20.html
* igt@kms_plane_scaling@planes-downscale-factor-0-5@pipe-b:
- shard-tglu: NOTRUN -> [SKIP][202] ([i915#12247]) +11 other tests skip
[202]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138477v2/shard-tglu-3/igt@kms_plane_scaling@planes-downscale-factor-0-5@pipe-b.html
- shard-mtlp: NOTRUN -> [SKIP][203] ([i915#12247]) +3 other tests skip
[203]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138477v2/shard-mtlp-4/igt@kms_plane_scaling@planes-downscale-factor-0-5@pipe-b.html
* igt@kms_plane_scaling@planes-downscale-factor-0-75-upscale-factor-0-25:
- shard-tglu: [PASS][204] -> [SKIP][205] ([i915#6953] / [i915#8152])
[204]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15448/shard-tglu-6/igt@kms_plane_scaling@planes-downscale-factor-0-75-upscale-factor-0-25.html
[205]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138477v2/shard-tglu-8/igt@kms_plane_scaling@planes-downscale-factor-0-75-upscale-factor-0-25.html
* igt@kms_plane_scaling@planes-downscale-factor-0-75-upscale-factor-0-25@pipe-d:
- shard-tglu: [PASS][206] -> [SKIP][207] ([i915#12247] / [i915#8152])
[206]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15448/shard-tglu-6/igt@kms_plane_scaling@planes-downscale-factor-0-75-upscale-factor-0-25@pipe-d.html
[207]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138477v2/shard-tglu-8/igt@kms_plane_scaling@planes-downscale-factor-0-75-upscale-factor-0-25@pipe-d.html
* igt@kms_plane_scaling@planes-scaler-unity-scaling:
- shard-dg2: [PASS][208] -> [SKIP][209] ([i915#3555] / [i915#8152] / [i915#9423]) +1 other test skip
[208]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15448/shard-dg2-5/igt@kms_plane_scaling@planes-scaler-unity-scaling.html
[209]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138477v2/shard-dg2-2/igt@kms_plane_scaling@planes-scaler-unity-scaling.html
* igt@kms_plane_scaling@planes-scaler-unity-scaling@pipe-d:
- shard-dg2: [PASS][210] -> [SKIP][211] ([i915#12247] / [i915#8152]) +1 other test skip
[210]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15448/shard-dg2-5/igt@kms_plane_scaling@planes-scaler-unity-scaling@pipe-d.html
[211]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138477v2/shard-dg2-2/igt@kms_plane_scaling@planes-scaler-unity-scaling@pipe-d.html
* igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-5@pipe-b:
- shard-snb: NOTRUN -> [SKIP][212] +12 other tests skip
[212]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138477v2/shard-snb7/igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-5@pipe-b.html
* igt@kms_pm_backlight@bad-brightness:
- shard-rkl: NOTRUN -> [SKIP][213] ([i915#5354]) +1 other test skip
[213]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138477v2/shard-rkl-5/igt@kms_pm_backlight@bad-brightness.html
* igt@kms_pm_backlight@basic-brightness:
- shard-dg1: NOTRUN -> [SKIP][214] ([i915#5354])
[214]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138477v2/shard-dg1-16/igt@kms_pm_backlight@basic-brightness.html
- shard-tglu: NOTRUN -> [SKIP][215] ([i915#9812])
[215]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138477v2/shard-tglu-8/igt@kms_pm_backlight@basic-brightness.html
* igt@kms_pm_rpm@cursor-dpms:
- shard-tglu: [PASS][216] -> [SKIP][217] ([i915#1849]) +4 other tests skip
[216]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15448/shard-tglu-6/igt@kms_pm_rpm@cursor-dpms.html
[217]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138477v2/shard-tglu-8/igt@kms_pm_rpm@cursor-dpms.html
* igt@kms_pm_rpm@drm-resources-equal:
- shard-tglu: [PASS][218] -> [SKIP][219] ([i915#3547] / [i915#9519])
[218]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15448/shard-tglu-6/igt@kms_pm_rpm@drm-resources-equal.html
[219]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138477v2/shard-tglu-8/igt@kms_pm_rpm@drm-resources-equal.html
* igt@kms_pm_rpm@modeset-lpsp:
- shard-dg2: NOTRUN -> [SKIP][220] ([i915#9519])
[220]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138477v2/shard-dg2-11/igt@kms_pm_rpm@modeset-lpsp.html
* igt@kms_pm_rpm@modeset-non-lpsp-stress:
- shard-dg2: [PASS][221] -> [SKIP][222] ([i915#9519]) +1 other test skip
[221]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15448/shard-dg2-5/igt@kms_pm_rpm@modeset-non-lpsp-stress.html
[222]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138477v2/shard-dg2-2/igt@kms_pm_rpm@modeset-non-lpsp-stress.html
* igt@kms_pm_rpm@pm-tiling:
- shard-tglu: [PASS][223] -> [SKIP][224] ([i915#9519])
[223]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15448/shard-tglu-6/igt@kms_pm_rpm@pm-tiling.html
[224]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138477v2/shard-tglu-8/igt@kms_pm_rpm@pm-tiling.html
* igt@kms_psr2_sf@fbc-primary-plane-update-sf-dmg-area@psr2-pipe-a-edp-1:
- shard-mtlp: NOTRUN -> [SKIP][225] ([i915#9808]) +2 other tests skip
[225]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138477v2/shard-mtlp-4/igt@kms_psr2_sf@fbc-primary-plane-update-sf-dmg-area@psr2-pipe-a-edp-1.html
* igt@kms_psr@fbc-psr2-primary-blt:
- shard-dg1: NOTRUN -> [SKIP][226] ([i915#1072] / [i915#9732]) +4 other tests skip
[226]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138477v2/shard-dg1-19/igt@kms_psr@fbc-psr2-primary-blt.html
* igt@kms_psr@pr-sprite-mmap-cpu:
- shard-mtlp: NOTRUN -> [SKIP][227] ([i915#9688]) +2 other tests skip
[227]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138477v2/shard-mtlp-4/igt@kms_psr@pr-sprite-mmap-cpu.html
- shard-dg2: NOTRUN -> [SKIP][228] ([i915#1072] / [i915#9732]) +2 other tests skip
[228]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138477v2/shard-dg2-8/igt@kms_psr@pr-sprite-mmap-cpu.html
* igt@kms_psr@psr2-cursor-plane-onoff:
- shard-tglu: NOTRUN -> [SKIP][229] ([i915#9732]) +15 other tests skip
[229]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138477v2/shard-tglu-4/igt@kms_psr@psr2-cursor-plane-onoff.html
* igt@kms_psr@psr2-suspend:
- shard-rkl: NOTRUN -> [SKIP][230] ([i915#1072] / [i915#9732]) +9 other tests skip
[230]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138477v2/shard-rkl-2/igt@kms_psr@psr2-suspend.html
* igt@kms_psr_stress_test@invalidate-primary-flip-overlay:
- shard-dg1: NOTRUN -> [SKIP][231] ([i915#9685])
[231]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138477v2/shard-dg1-16/igt@kms_psr_stress_test@invalidate-primary-flip-overlay.html
- shard-dg2: NOTRUN -> [SKIP][232] ([i915#9685])
[232]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138477v2/shard-dg2-11/igt@kms_psr_stress_test@invalidate-primary-flip-overlay.html
* igt@kms_vrr@flip-suspend:
- shard-tglu: NOTRUN -> [SKIP][233] ([i915#3555]) +4 other tests skip
[233]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138477v2/shard-tglu-4/igt@kms_vrr@flip-suspend.html
* igt@kms_vrr@seamless-rr-switch-virtual:
- shard-rkl: NOTRUN -> [SKIP][234] ([i915#9906])
[234]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138477v2/shard-rkl-5/igt@kms_vrr@seamless-rr-switch-virtual.html
* igt@kms_writeback@writeback-invalid-parameters:
- shard-tglu: NOTRUN -> [SKIP][235] ([i915#2437])
[235]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138477v2/shard-tglu-3/igt@kms_writeback@writeback-invalid-parameters.html
* igt@prime_vgem@basic-fence-mmap:
- shard-dg1: NOTRUN -> [SKIP][236] ([i915#3708] / [i915#4077])
[236]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138477v2/shard-dg1-18/igt@prime_vgem@basic-fence-mmap.html
* igt@tools_test@sysfs_l3_parity:
- shard-rkl: NOTRUN -> [SKIP][237] +14 other tests skip
[237]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138477v2/shard-rkl-5/igt@tools_test@sysfs_l3_parity.html
#### Possible fixes ####
* igt@drm_fdinfo@most-busy-idle-check-all:
- shard-rkl: [FAIL][238] ([i915#12179]) -> [PASS][239]
[238]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15448/shard-rkl-4/igt@drm_fdinfo@most-busy-idle-check-all.html
[239]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138477v2/shard-rkl-4/igt@drm_fdinfo@most-busy-idle-check-all.html
* igt@drm_fdinfo@most-busy-idle-check-all@rcs0:
- shard-rkl: [FAIL][240] ([i915#7742]) -> [PASS][241]
[240]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15448/shard-rkl-4/igt@drm_fdinfo@most-busy-idle-check-all@rcs0.html
[241]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138477v2/shard-rkl-4/igt@drm_fdinfo@most-busy-idle-check-all@rcs0.html
* igt@fbdev@unaligned-read:
- shard-dg2: [SKIP][242] ([i915#2582]) -> [PASS][243]
[242]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15448/shard-dg2-2/igt@fbdev@unaligned-read.html
[243]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138477v2/shard-dg2-3/igt@fbdev@unaligned-read.html
* igt@gem_ctx_engines@invalid-engines:
- shard-glk: [FAIL][244] ([i915#12027]) -> [PASS][245]
[244]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15448/shard-glk5/igt@gem_ctx_engines@invalid-engines.html
[245]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138477v2/shard-glk9/igt@gem_ctx_engines@invalid-engines.html
- shard-mtlp: [FAIL][246] ([i915#12027]) -> [PASS][247]
[246]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15448/shard-mtlp-2/igt@gem_ctx_engines@invalid-engines.html
[247]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138477v2/shard-mtlp-7/igt@gem_ctx_engines@invalid-engines.html
* igt@gem_exec_fair@basic-pace@bcs0:
- shard-rkl: [FAIL][248] ([i915#2842]) -> [PASS][249]
[248]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15448/shard-rkl-7/igt@gem_exec_fair@basic-pace@bcs0.html
[249]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138477v2/shard-rkl-7/igt@gem_exec_fair@basic-pace@bcs0.html
* igt@i915_module_load@reload-with-fault-injection:
- shard-tglu: [ABORT][250] ([i915#9820]) -> [PASS][251]
[250]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15448/shard-tglu-8/igt@i915_module_load@reload-with-fault-injection.html
[251]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138477v2/shard-tglu-4/igt@i915_module_load@reload-with-fault-injection.html
* igt@i915_pm_rc6_residency@rc6-idle@gt0-vcs0:
- shard-dg1: [FAIL][252] ([i915#3591]) -> [PASS][253] +1 other test pass
[252]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15448/shard-dg1-16/igt@i915_pm_rc6_residency@rc6-idle@gt0-vcs0.html
[253]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138477v2/shard-dg1-18/igt@i915_pm_rc6_residency@rc6-idle@gt0-vcs0.html
* igt@i915_pm_rps@reset:
- shard-snb: [INCOMPLETE][254] ([i915#7790]) -> [PASS][255]
[254]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15448/shard-snb4/igt@i915_pm_rps@reset.html
[255]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138477v2/shard-snb7/igt@i915_pm_rps@reset.html
* igt@i915_power@sanity:
- shard-mtlp: [SKIP][256] ([i915#7984]) -> [PASS][257]
[256]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15448/shard-mtlp-4/igt@i915_power@sanity.html
[257]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138477v2/shard-mtlp-6/igt@i915_power@sanity.html
* igt@kms_addfb_basic@master-rmfb:
- shard-dg1: [DMESG-WARN][258] ([i915#4423]) -> [PASS][259] +1 other test pass
[258]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15448/shard-dg1-13/igt@kms_addfb_basic@master-rmfb.html
[259]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138477v2/shard-dg1-12/igt@kms_addfb_basic@master-rmfb.html
* igt@kms_big_joiner@invalid-modeset-force-joiner:
- shard-dg2: [SKIP][260] -> [PASS][261]
[260]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15448/shard-dg2-7/igt@kms_big_joiner@invalid-modeset-force-joiner.html
[261]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138477v2/shard-dg2-10/igt@kms_big_joiner@invalid-modeset-force-joiner.html
* igt@kms_cursor_crc@cursor-dpms:
- shard-tglu: [SKIP][262] -> [PASS][263] +27 other tests pass
[262]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15448/shard-tglu-8/igt@kms_cursor_crc@cursor-dpms.html
[263]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138477v2/shard-tglu-2/igt@kms_cursor_crc@cursor-dpms.html
* igt@kms_cursor_crc@cursor-suspend:
- shard-mtlp: [INCOMPLETE][264] -> [PASS][265] +1 other test pass
[264]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15448/shard-mtlp-8/igt@kms_cursor_crc@cursor-suspend.html
[265]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138477v2/shard-mtlp-1/igt@kms_cursor_crc@cursor-suspend.html
* igt@kms_flip@2x-flip-vs-absolute-wf_vblank-interruptible@ab-vga1-hdmi-a1:
- shard-snb: [FAIL][266] ([i915#2122]) -> [PASS][267] +3 other tests pass
[266]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15448/shard-snb2/igt@kms_flip@2x-flip-vs-absolute-wf_vblank-interruptible@ab-vga1-hdmi-a1.html
[267]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138477v2/shard-snb4/igt@kms_flip@2x-flip-vs-absolute-wf_vblank-interruptible@ab-vga1-hdmi-a1.html
* igt@kms_flip@dpms-vs-vblank-race-interruptible:
- shard-tglu: [SKIP][268] ([i915#3637]) -> [PASS][269] +3 other tests pass
[268]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15448/shard-tglu-8/igt@kms_flip@dpms-vs-vblank-race-interruptible.html
[269]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138477v2/shard-tglu-2/igt@kms_flip@dpms-vs-vblank-race-interruptible.html
* igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tile-downscaling:
- shard-dg2: [SKIP][270] ([i915#3555]) -> [PASS][271] +3 other tests pass
[270]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15448/shard-dg2-2/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tile-downscaling.html
[271]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138477v2/shard-dg2-3/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tile-downscaling.html
* igt@kms_frontbuffer_tracking@fbc-1p-rte:
- shard-tglu: [SKIP][272] ([i915#1849]) -> [PASS][273] +4 other tests pass
[272]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15448/shard-tglu-8/igt@kms_frontbuffer_tracking@fbc-1p-rte.html
[273]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138477v2/shard-tglu-2/igt@kms_frontbuffer_tracking@fbc-1p-rte.html
* igt@kms_frontbuffer_tracking@fbc-suspend:
- shard-dg2: [SKIP][274] ([i915#5354]) -> [PASS][275] +9 other tests pass
[274]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15448/shard-dg2-2/igt@kms_frontbuffer_tracking@fbc-suspend.html
[275]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138477v2/shard-dg2-3/igt@kms_frontbuffer_tracking@fbc-suspend.html
* igt@kms_invalid_mode@bad-vtotal:
- shard-tglu: [SKIP][276] ([i915#3555]) -> [PASS][277] +1 other test pass
[276]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15448/shard-tglu-8/igt@kms_invalid_mode@bad-vtotal.html
[277]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138477v2/shard-tglu-2/igt@kms_invalid_mode@bad-vtotal.html
* igt@kms_pipe_crc_basic@suspend-read-crc:
- shard-dg2: [SKIP][278] ([i915#9197]) -> [PASS][279] +24 other tests pass
[278]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15448/shard-dg2-2/igt@kms_pipe_crc_basic@suspend-read-crc.html
[279]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138477v2/shard-dg2-3/igt@kms_pipe_crc_basic@suspend-read-crc.html
* igt@kms_plane@plane-position-covered:
- shard-dg2: [SKIP][280] ([i915#8825]) -> [PASS][281]
[280]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15448/shard-dg2-2/igt@kms_plane@plane-position-covered.html
[281]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138477v2/shard-dg2-7/igt@kms_plane@plane-position-covered.html
* igt@kms_plane@plane-position-hole:
- shard-tglu: [SKIP][282] ([i915#8825]) -> [PASS][283] +1 other test pass
[282]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15448/shard-tglu-8/igt@kms_plane@plane-position-hole.html
[283]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138477v2/shard-tglu-2/igt@kms_plane@plane-position-hole.html
* igt@kms_plane_alpha_blend@constant-alpha-min:
- shard-dg2: [SKIP][284] ([i915#7294]) -> [PASS][285]
[284]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15448/shard-dg2-2/igt@kms_plane_alpha_blend@constant-alpha-min.html
[285]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138477v2/shard-dg2-7/igt@kms_plane_alpha_blend@constant-alpha-min.html
* igt@kms_plane_alpha_blend@coverage-vs-premult-vs-constant:
- shard-tglu: [SKIP][286] ([i915#7294]) -> [PASS][287]
[286]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15448/shard-tglu-8/igt@kms_plane_alpha_blend@coverage-vs-premult-vs-constant.html
[287]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138477v2/shard-tglu-2/igt@kms_plane_alpha_blend@coverage-vs-premult-vs-constant.html
* igt@kms_plane_scaling@invalid-num-scalers:
- shard-tglu: [SKIP][288] ([i915#3555] / [i915#6953] / [i915#8152]) -> [PASS][289]
[288]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15448/shard-tglu-8/igt@kms_plane_scaling@invalid-num-scalers.html
[289]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138477v2/shard-tglu-2/igt@kms_plane_scaling@invalid-num-scalers.html
* igt@kms_plane_scaling@plane-downscale-factor-0-75-with-pixel-format:
- shard-tglu: [SKIP][290] ([i915#8152]) -> [PASS][291] +3 other tests pass
[290]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15448/shard-tglu-8/igt@kms_plane_scaling@plane-downscale-factor-0-75-with-pixel-format.html
[291]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138477v2/shard-tglu-2/igt@kms_plane_scaling@plane-downscale-factor-0-75-with-pixel-format.html
* igt@kms_plane_scaling@plane-upscale-20x20-with-modifiers:
- shard-dg2: [SKIP][292] ([i915#8152] / [i915#9423]) -> [PASS][293] +1 other test pass
[292]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15448/shard-dg2-2/igt@kms_plane_scaling@plane-upscale-20x20-with-modifiers.html
[293]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138477v2/shard-dg2-3/igt@kms_plane_scaling@plane-upscale-20x20-with-modifiers.html
* igt@kms_plane_scaling@plane-upscale-20x20-with-modifiers@pipe-d:
- shard-dg2: [SKIP][294] ([i915#8152]) -> [PASS][295] +1 other test pass
[294]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15448/shard-dg2-2/igt@kms_plane_scaling@plane-upscale-20x20-with-modifiers@pipe-d.html
[295]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138477v2/shard-dg2-3/igt@kms_plane_scaling@plane-upscale-20x20-with-modifiers@pipe-d.html
* igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-5:
- shard-dg2: [SKIP][296] ([i915#6953] / [i915#8152] / [i915#9423]) -> [PASS][297]
[296]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15448/shard-dg2-2/igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-5.html
[297]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138477v2/shard-dg2-3/igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-5.html
* igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-5@pipe-b:
- shard-dg2: [SKIP][298] ([i915#12247]) -> [PASS][299] +11 other tests pass
[298]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15448/shard-dg2-2/igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-5@pipe-b.html
[299]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138477v2/shard-dg2-3/igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-5@pipe-b.html
* igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-5@pipe-d:
- shard-dg2: [SKIP][300] ([i915#12247] / [i915#8152]) -> [PASS][301] +1 other test pass
[300]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15448/shard-dg2-2/igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-5@pipe-d.html
[301]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138477v2/shard-dg2-3/igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-5@pipe-d.html
* igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-75:
- shard-tglu: [SKIP][302] ([i915#12247] / [i915#6953] / [i915#8152]) -> [PASS][303]
[302]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15448/shard-tglu-8/igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-75.html
[303]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138477v2/shard-tglu-2/igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-75.html
* igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-75@pipe-a:
- shard-tglu: [SKIP][304] ([i915#12247]) -> [PASS][305] +8 other tests pass
[304]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15448/shard-tglu-8/igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-75@pipe-a.html
[305]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138477v2/shard-tglu-2/igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-75@pipe-a.html
* igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-75@pipe-d:
- shard-tglu: [SKIP][306] ([i915#12247] / [i915#8152]) -> [PASS][307]
[306]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15448/shard-tglu-8/igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-75@pipe-d.html
[307]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138477v2/shard-tglu-2/igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-75@pipe-d.html
* igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-75:
- shard-dg2: [SKIP][308] ([i915#12247] / [i915#3555] / [i915#6953] / [i915#8152] / [i915#9423]) -> [PASS][309]
[308]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15448/shard-dg2-2/igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-75.html
[309]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138477v2/shard-dg2-7/igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-75.html
* igt@kms_pm_dc@dc9-dpms:
- shard-tglu: [SKIP][310] ([i915#4281]) -> [PASS][311]
[310]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15448/shard-tglu-8/igt@kms_pm_dc@dc9-dpms.html
[311]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138477v2/shard-tglu-2/igt@kms_pm_dc@dc9-dpms.html
* igt@kms_pm_rpm@dpms-mode-unset-lpsp:
- shard-rkl: [SKIP][312] ([i915#9519]) -> [PASS][313]
[312]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15448/shard-rkl-5/igt@kms_pm_rpm@dpms-mode-unset-lpsp.html
[313]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138477v2/shard-rkl-2/igt@kms_pm_rpm@dpms-mode-unset-lpsp.html
* igt@kms_pm_rpm@dpms-mode-unset-non-lpsp:
- shard-dg2: [SKIP][314] ([i915#9519]) -> [PASS][315]
[314]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15448/shard-dg2-2/igt@kms_pm_rpm@dpms-mode-unset-non-lpsp.html
[315]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138477v2/shard-dg2-7/igt@kms_pm_rpm@dpms-mode-unset-non-lpsp.html
* igt@kms_properties@crtc-properties-legacy:
- shard-dg2: [SKIP][316] ([i915#11521]) -> [PASS][317]
[316]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15448/shard-dg2-2/igt@kms_properties@crtc-properties-legacy.html
[317]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138477v2/shard-dg2-3/igt@kms_properties@crtc-properties-legacy.html
* igt@kms_psr2_sf@cursor-plane-move-continuous-exceed-fully-sf:
- shard-mtlp: [FAIL][318] -> [PASS][319] +1 other test pass
[318]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15448/shard-mtlp-8/igt@kms_psr2_sf@cursor-plane-move-continuous-exceed-fully-sf.html
[319]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138477v2/shard-mtlp-7/igt@kms_psr2_sf@cursor-plane-move-continuous-exceed-fully-sf.html
* igt@perf_pmu@busy-double-start@vecs1:
- shard-dg2: [FAIL][320] ([i915#4349]) -> [PASS][321] +4 other tests pass
[320]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15448/shard-dg2-3/igt@perf_pmu@busy-double-start@vecs1.html
[321]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138477v2/shard-dg2-11/igt@perf_pmu@busy-double-start@vecs1.html
#### Warnings ####
* igt@gem_exec_fair@basic-pace@rcs0:
- shard-tglu: [FAIL][322] ([i915#2876]) -> [FAIL][323] ([i915#2842])
[322]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15448/shard-tglu-7/igt@gem_exec_fair@basic-pace@rcs0.html
[323]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138477v2/shard-tglu-6/igt@gem_exec_fair@basic-pace@rcs0.html
* igt@i915_module_load@reload-with-fault-injection:
- shard-mtlp: [ABORT][324] ([i915#10131] / [i915#9820]) -> [ABORT][325] ([i915#11231])
[324]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15448/shard-mtlp-5/igt@i915_module_load@reload-with-fault-injection.html
[325]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138477v2/shard-mtlp-8/igt@i915_module_load@reload-with-fault-injection.html
* igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels:
- shard-dg2: [SKIP][326] ([i915#9197]) -> [SKIP][327] ([i915#1769] / [i915#3555])
[326]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15448/shard-dg2-2/igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels.html
[327]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138477v2/shard-dg2-7/igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels.html
* igt@kms_big_fb@4-tiled-64bpp-rotate-270:
- shard-dg2: [SKIP][328] ([i915#9197]) -> [SKIP][329] +2 other tests skip
[328]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15448/shard-dg2-2/igt@kms_big_fb@4-tiled-64bpp-rotate-270.html
[329]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138477v2/shard-dg2-7/igt@kms_big_fb@4-tiled-64bpp-rotate-270.html
* igt@kms_big_fb@4-tiled-addfb-size-offset-overflow:
- shard-tglu: [SKIP][330] -> [SKIP][331] ([i915#5286]) +3 other tests skip
[330]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15448/shard-tglu-8/igt@kms_big_fb@4-tiled-addfb-size-offset-overflow.html
[331]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138477v2/shard-tglu-2/igt@kms_big_fb@4-tiled-addfb-size-offset-overflow.html
* igt@kms_big_fb@linear-64bpp-rotate-270:
- shard-dg2: [SKIP][332] -> [SKIP][333] ([i915#9197])
[332]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15448/shard-dg2-5/igt@kms_big_fb@linear-64bpp-rotate-270.html
[333]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138477v2/shard-dg2-2/igt@kms_big_fb@linear-64bpp-rotate-270.html
* igt@kms_big_fb@y-tiled-8bpp-rotate-90:
- shard-dg2: [SKIP][334] ([i915#5190] / [i915#9197]) -> [SKIP][335] ([i915#4538] / [i915#5190]) +3 other tests skip
[334]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15448/shard-dg2-2/igt@kms_big_fb@y-tiled-8bpp-rotate-90.html
[335]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138477v2/shard-dg2-7/igt@kms_big_fb@y-tiled-8bpp-rotate-90.html
* igt@kms_big_fb@y-tiled-addfb-size-offset-overflow:
- shard-dg2: [SKIP][336] ([i915#5190]) -> [SKIP][337] ([i915#5190] / [i915#9197]) +2 other tests skip
[336]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15448/shard-dg2-11/igt@kms_big_fb@y-tiled-addfb-size-offset-overflow.html
[337]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138477v2/shard-dg2-2/igt@kms_big_fb@y-tiled-addfb-size-offset-overflow.html
* igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-180-hflip-async-flip:
- shard-dg2: [SKIP][338] ([i915#4538] / [i915#5190]) -> [SKIP][339] ([i915#5190] / [i915#9197]) +7 other tests skip
[338]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15448/shard-dg2-10/igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-180-hflip-async-flip.html
[339]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138477v2/shard-dg2-2/igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-180-hflip-async-flip.html
* igt@kms_ccs@bad-rotation-90-4-tiled-bmg-ccs:
- shard-dg2: [SKIP][340] ([i915#9197]) -> [SKIP][341] ([i915#12042]) +1 other test skip
[340]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15448/shard-dg2-2/igt@kms_ccs@bad-rotation-90-4-tiled-bmg-ccs.html
[341]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138477v2/shard-dg2-3/igt@kms_ccs@bad-rotation-90-4-tiled-bmg-ccs.html
* igt@kms_ccs@ccs-on-another-bo-y-tiled-gen12-rc-ccs:
- shard-dg2: [SKIP][342] ([i915#9197]) -> [SKIP][343] ([i915#10307] / [i915#6095]) +3 other tests skip
[342]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15448/shard-dg2-2/igt@kms_ccs@ccs-on-another-bo-y-tiled-gen12-rc-ccs.html
[343]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138477v2/shard-dg2-7/igt@kms_ccs@ccs-on-another-bo-y-tiled-gen12-rc-ccs.html
* igt@kms_ccs@crc-primary-basic-4-tiled-mtl-rc-ccs:
- shard-dg2: [SKIP][344] ([i915#10307] / [i915#6095]) -> [SKIP][345] ([i915#9197]) +7 other tests skip
[344]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15448/shard-dg2-10/igt@kms_ccs@crc-primary-basic-4-tiled-mtl-rc-ccs.html
[345]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138477v2/shard-dg2-2/igt@kms_ccs@crc-primary-basic-4-tiled-mtl-rc-ccs.html
* igt@kms_ccs@crc-primary-rotation-180-4-tiled-dg2-rc-ccs-cc:
- shard-tglu: [SKIP][346] -> [SKIP][347] ([i915#6095]) +4 other tests skip
[346]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15448/shard-tglu-8/igt@kms_ccs@crc-primary-rotation-180-4-tiled-dg2-rc-ccs-cc.html
[347]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138477v2/shard-tglu-2/igt@kms_ccs@crc-primary-rotation-180-4-tiled-dg2-rc-ccs-cc.html
* igt@kms_ccs@crc-primary-rotation-180-4-tiled-lnl-ccs:
- shard-dg2: [SKIP][348] ([i915#12042]) -> [SKIP][349] ([i915#9197])
[348]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15448/shard-dg2-5/igt@kms_ccs@crc-primary-rotation-180-4-tiled-lnl-ccs.html
[349]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138477v2/shard-dg2-2/igt@kms_ccs@crc-primary-rotation-180-4-tiled-lnl-ccs.html
* igt@kms_cdclk@mode-transition:
- shard-dg2: [SKIP][350] ([i915#11616] / [i915#7213]) -> [SKIP][351] ([i915#9197])
[350]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15448/shard-dg2-5/igt@kms_cdclk@mode-transition.html
[351]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138477v2/shard-dg2-2/igt@kms_cdclk@mode-transition.html
* igt@kms_content_protection@atomic-dpms:
- shard-dg2: [SKIP][352] ([i915#7118] / [i915#9424]) -> [SKIP][353] ([i915#9197])
[352]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15448/shard-dg2-11/igt@kms_content_protection@atomic-dpms.html
[353]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138477v2/shard-dg2-2/igt@kms_content_protection@atomic-dpms.html
* igt@kms_content_protection@content-type-change:
- shard-dg2: [SKIP][354] ([i915#9424]) -> [SKIP][355] ([i915#9197])
[354]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15448/shard-dg2-5/igt@kms_content_protection@content-type-change.html
[355]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138477v2/shard-dg2-2/igt@kms_content_protection@content-type-change.html
* igt@kms_content_protection@dp-mst-lic-type-0:
- shard-dg2: [SKIP][356] ([i915#9197]) -> [SKIP][357] ([i915#3299])
[356]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15448/shard-dg2-2/igt@kms_content_protection@dp-mst-lic-type-0.html
[357]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138477v2/shard-dg2-6/igt@kms_content_protection@dp-mst-lic-type-0.html
* igt@kms_content_protection@dp-mst-type-1:
- shard-dg2: [SKIP][358] ([i915#3299]) -> [SKIP][359] ([i915#9197])
[358]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15448/shard-dg2-10/igt@kms_content_protection@dp-mst-type-1.html
[359]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138477v2/shard-dg2-2/igt@kms_content_protection@dp-mst-type-1.html
* igt@kms_content_protection@lic-type-1:
- shard-dg2: [SKIP][360] ([i915#9197]) -> [SKIP][361] ([i915#9424])
[360]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15448/shard-dg2-2/igt@kms_content_protection@lic-type-1.html
[361]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138477v2/shard-dg2-3/igt@kms_content_protection@lic-type-1.html
* igt@kms_content_protection@srm:
- shard-dg2: [TIMEOUT][362] ([i915#7173]) -> [SKIP][363] ([i915#7118])
[362]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15448/shard-dg2-10/igt@kms_content_protection@srm.html
[363]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138477v2/shard-dg2-1/igt@kms_content_protection@srm.html
* igt@kms_content_protection@uevent:
- shard-dg2: [SKIP][364] ([i915#9197]) -> [SKIP][365] ([i915#7118] / [i915#9424])
[364]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15448/shard-dg2-2/igt@kms_content_protection@uevent.html
[365]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138477v2/shard-dg2-7/igt@kms_content_protection@uevent.html
* igt@kms_cursor_crc@cursor-onscreen-512x170:
- shard-dg2: [SKIP][366] ([i915#11453] / [i915#3359]) -> [SKIP][367] ([i915#11453]) +1 other test skip
[366]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15448/shard-dg2-10/igt@kms_cursor_crc@cursor-onscreen-512x170.html
[367]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138477v2/shard-dg2-1/igt@kms_cursor_crc@cursor-onscreen-512x170.html
* igt@kms_cursor_crc@cursor-onscreen-512x512:
- shard-dg2: [SKIP][368] ([i915#11453]) -> [SKIP][369] ([i915#11453] / [i915#3359]) +2 other tests skip
[368]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15448/shard-dg2-4/igt@kms_cursor_crc@cursor-onscreen-512x512.html
[369]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138477v2/shard-dg2-10/igt@kms_cursor_crc@cursor-onscreen-512x512.html
* igt@kms_cursor_crc@cursor-sliding-512x170:
- shard-tglu: [SKIP][370] -> [SKIP][371] ([i915#11453])
[370]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15448/shard-tglu-8/igt@kms_cursor_crc@cursor-sliding-512x170.html
[371]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138477v2/shard-tglu-2/igt@kms_cursor_crc@cursor-sliding-512x170.html
* igt@kms_cursor_crc@cursor-sliding-512x512:
- shard-dg2: [SKIP][372] ([i915#11453]) -> [SKIP][373] ([i915#9197])
[372]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15448/shard-dg2-11/igt@kms_cursor_crc@cursor-sliding-512x512.html
[373]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138477v2/shard-dg2-2/igt@kms_cursor_crc@cursor-sliding-512x512.html
* igt@kms_cursor_legacy@2x-long-flip-vs-cursor-atomic:
- shard-dg2: [SKIP][374] ([i915#9197]) -> [SKIP][375] ([i915#5354]) +2 other tests skip
[374]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15448/shard-dg2-2/igt@kms_cursor_legacy@2x-long-flip-vs-cursor-atomic.html
[375]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138477v2/shard-dg2-3/igt@kms_cursor_legacy@2x-long-flip-vs-cursor-atomic.html
* igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy:
- shard-dg2: [SKIP][376] ([i915#9197]) -> [SKIP][377] ([i915#4103] / [i915#4213])
[376]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15448/shard-dg2-2/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy.html
[377]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138477v2/shard-dg2-7/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy.html
* igt@kms_cursor_legacy@cursora-vs-flipb-toggle:
- shard-dg2: [SKIP][378] ([i915#5354]) -> [SKIP][379] ([i915#9197]) +3 other tests skip
[378]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15448/shard-dg2-5/igt@kms_cursor_legacy@cursora-vs-flipb-toggle.html
[379]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138477v2/shard-dg2-2/igt@kms_cursor_legacy@cursora-vs-flipb-toggle.html
* igt@kms_cursor_legacy@modeset-atomic-cursor-hotspot:
- shard-dg2: [SKIP][380] ([i915#9197]) -> [SKIP][381] ([i915#9067])
[380]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15448/shard-dg2-2/igt@kms_cursor_legacy@modeset-atomic-cursor-hotspot.html
[381]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138477v2/shard-dg2-3/igt@kms_cursor_legacy@modeset-atomic-cursor-hotspot.html
* igt@kms_dirtyfb@psr-dirtyfb-ioctl:
- shard-dg2: [SKIP][382] ([i915#9833]) -> [SKIP][383] ([i915#9197])
[382]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15448/shard-dg2-10/igt@kms_dirtyfb@psr-dirtyfb-ioctl.html
[383]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138477v2/shard-dg2-2/igt@kms_dirtyfb@psr-dirtyfb-ioctl.html
* igt@kms_display_modes@extended-mode-basic:
- shard-tglu: [SKIP][384] -> [SKIP][385] ([i915#3555]) +2 other tests skip
[384]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15448/shard-tglu-8/igt@kms_display_modes@extended-mode-basic.html
[385]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138477v2/shard-tglu-2/igt@kms_display_modes@extended-mode-basic.html
* igt@kms_draw_crc@draw-method-mmap-gtt:
- shard-dg2: [SKIP][386] ([i915#9197]) -> [SKIP][387] ([i915#8812])
[386]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15448/shard-dg2-2/igt@kms_draw_crc@draw-method-mmap-gtt.html
[387]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138477v2/shard-dg2-7/igt@kms_draw_crc@draw-method-mmap-gtt.html
* igt@kms_dsc@dsc-with-bpc:
- shard-dg2: [SKIP][388] ([i915#3555] / [i915#3840]) -> [SKIP][389] ([i915#9197])
[388]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15448/shard-dg2-10/igt@kms_dsc@dsc-with-bpc.html
[389]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138477v2/shard-dg2-2/igt@kms_dsc@dsc-with-bpc.html
* igt@kms_dsc@dsc-with-formats:
- shard-tglu: [SKIP][390] -> [SKIP][391] ([i915#3555] / [i915#3840])
[390]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15448/shard-tglu-8/igt@kms_dsc@dsc-with-formats.html
[391]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138477v2/shard-tglu-2/igt@kms_dsc@dsc-with-formats.html
* igt@kms_fence_pin_leak:
- shard-dg2: [SKIP][392] ([i915#4881]) -> [SKIP][393] ([i915#9197])
[392]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15448/shard-dg2-11/igt@kms_fence_pin_leak.html
[393]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138477v2/shard-dg2-2/igt@kms_fence_pin_leak.html
* igt@kms_flip@wf_vblank-ts-check:
- shard-dg2: [FAIL][394] ([i915#2122]) -> [SKIP][395] ([i915#5354])
[394]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15448/shard-dg2-10/igt@kms_flip@wf_vblank-ts-check.html
[395]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138477v2/shard-dg2-2/igt@kms_flip@wf_vblank-ts-check.html
* igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-upscaling:
- shard-tglu: [SKIP][396] ([i915#3555]) -> [SKIP][397] ([i915#2587] / [i915#2672] / [i915#3555]) +1 other test skip
[396]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15448/shard-tglu-8/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-upscaling.html
[397]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138477v2/shard-tglu-2/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-upscaling.html
* igt@kms_flip_scaled_crc@flip-32bpp-ytileccs-to-64bpp-ytile-upscaling:
- shard-dg2: [SKIP][398] ([i915#2672] / [i915#3555] / [i915#5190]) -> [SKIP][399] ([i915#3555] / [i915#5190]) +2 other tests skip
[398]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15448/shard-dg2-10/igt@kms_flip_scaled_crc@flip-32bpp-ytileccs-to-64bpp-ytile-upscaling.html
[399]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138477v2/shard-dg2-2/igt@kms_flip_scaled_crc@flip-32bpp-ytileccs-to-64bpp-ytile-upscaling.html
* igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling:
- shard-tglu: [SKIP][400] ([i915#3555]) -> [SKIP][401] ([i915#2672] / [i915#3555])
[400]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15448/shard-tglu-8/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling.html
[401]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138477v2/shard-tglu-2/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling.html
* igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-16bpp-yftile-upscaling:
- shard-tglu: [SKIP][402] ([i915#2672] / [i915#3555]) -> [SKIP][403] ([i915#3555]) +1 other test skip
[402]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15448/shard-tglu-6/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-16bpp-yftile-upscaling.html
[403]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138477v2/shard-tglu-8/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-16bpp-yftile-upscaling.html
* igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling:
- shard-dg2: [SKIP][404] ([i915#2672] / [i915#3555]) -> [SKIP][405] ([i915#3555]) +2 other tests skip
[404]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15448/shard-dg2-11/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling.html
[405]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138477v2/shard-dg2-2/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling.html
* igt@kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-draw-render:
- shard-tglu: [SKIP][406] -> [SKIP][407] ([i915#1849]) +34 other tests skip
[406]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15448/shard-tglu-6/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-draw-render.html
[407]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138477v2/shard-tglu-8/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-draw-render.html
* igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-shrfb-draw-pwrite:
- shard-tglu: [SKIP][408] ([i915#1849]) -> [SKIP][409] +29 other tests skip
[408]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15448/shard-tglu-8/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-shrfb-draw-pwrite.html
[409]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138477v2/shard-tglu-2/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-shrfb-draw-pwrite.html
* igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-cur-indfb-draw-mmap-cpu:
- shard-dg2: [SKIP][410] ([i915#5354]) -> [SKIP][411] ([i915#3458]) +7 other tests skip
[410]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15448/shard-dg2-2/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-cur-indfb-draw-mmap-cpu.html
[411]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138477v2/shard-dg2-3/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-cur-indfb-draw-mmap-cpu.html
* igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-indfb-draw-mmap-gtt:
- shard-dg2: [SKIP][412] -> [SKIP][413] ([i915#5354]) +11 other tests skip
[412]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15448/shard-dg2-10/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-indfb-draw-mmap-gtt.html
[413]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138477v2/shard-dg2-2/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-indfb-draw-mmap-gtt.html
* igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-shrfb-draw-pwrite:
- shard-dg1: [SKIP][414] -> [SKIP][415] ([i915#4423]) +1 other test skip
[414]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15448/shard-dg1-15/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-shrfb-draw-pwrite.html
[415]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138477v2/shard-dg1-17/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-shrfb-draw-pwrite.html
* igt@kms_frontbuffer_tracking@fbcpsr-rgb565-draw-pwrite:
- shard-dg1: [SKIP][416] ([i915#3458]) -> [SKIP][417] ([i915#3458] / [i915#4423])
[416]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15448/shard-dg1-15/igt@kms_frontbuffer_tracking@fbcpsr-rgb565-draw-pwrite.html
[417]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138477v2/shard-dg1-17/igt@kms_frontbuffer_tracking@fbcpsr-rgb565-draw-pwrite.html
* igt@kms_frontbuffer_tracking@pipe-fbc-rte:
- shard-tglu: [SKIP][418] ([i915#9766]) -> [SKIP][419] ([i915#1849])
[418]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15448/shard-tglu-6/igt@kms_frontbuffer_tracking@pipe-fbc-rte.html
[419]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138477v2/shard-tglu-8/igt@kms_frontbuffer_tracking@pipe-fbc-rte.html
* igt@kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-draw-mmap-cpu:
- shard-dg2: [SKIP][420] ([i915#10433] / [i915#3458]) -> [SKIP][421] ([i915#3458]) +2 other tests skip
[420]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15448/shard-dg2-4/igt@kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-draw-mmap-cpu.html
[421]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138477v2/shard-dg2-10/igt@kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-draw-mmap-cpu.html
* igt@kms_frontbuffer_tracking@psr-1p-primscrn-spr-indfb-onoff:
- shard-dg2: [SKIP][422] ([i915#3458]) -> [SKIP][423] ([i915#5354]) +10 other tests skip
[422]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15448/shard-dg2-11/igt@kms_frontbuffer_tracking@psr-1p-primscrn-spr-indfb-onoff.html
[423]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138477v2/shard-dg2-2/igt@kms_frontbuffer_tracking@psr-1p-primscrn-spr-indfb-onoff.html
* igt@kms_hdr@bpc-switch-suspend:
- shard-dg2: [SKIP][424] ([i915#9197]) -> [SKIP][425] ([i915#3555] / [i915#8228]) +1 other test skip
[424]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15448/shard-dg2-2/igt@kms_hdr@bpc-switch-suspend.html
[425]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138477v2/shard-dg2-7/igt@kms_hdr@bpc-switch-suspend.html
* igt@kms_hdr@static-toggle-dpms:
- shard-dg2: [SKIP][426] ([i915#3555] / [i915#8228]) -> [SKIP][427] ([i915#9197])
[426]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15448/shard-dg2-5/igt@kms_hdr@static-toggle-dpms.html
[427]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138477v2/shard-dg2-2/igt@kms_hdr@static-toggle-dpms.html
* igt@kms_multipipe_modeset@basic-max-pipe-crc-check:
- shard-rkl: [SKIP][428] ([i915#4070] / [i915#4816]) -> [SKIP][429] ([i915#4816])
[428]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15448/shard-rkl-2/igt@kms_multipipe_modeset@basic-max-pipe-crc-check.html
[429]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138477v2/shard-rkl-7/igt@kms_multipipe_modeset@basic-max-pipe-crc-check.html
* igt@kms_plane_multiple@tiling-yf:
- shard-dg2: [SKIP][430] ([i915#3555] / [i915#8806]) -> [SKIP][431] ([i915#9197])
[430]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15448/shard-dg2-5/igt@kms_plane_multiple@tiling-yf.html
[431]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138477v2/shard-dg2-2/igt@kms_plane_multiple@tiling-yf.html
* igt@kms_plane_scaling@plane-downscale-factor-0-25-with-modifiers:
- shard-dg2: [SKIP][432] ([i915#12247] / [i915#8152] / [i915#9423]) -> [SKIP][433] ([i915#12247] / [i915#9423])
[432]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15448/shard-dg2-2/igt@kms_plane_scaling@plane-downscale-factor-0-25-with-modifiers.html
[433]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138477v2/shard-dg2-3/igt@kms_plane_scaling@plane-downscale-factor-0-25-with-modifiers.html
* igt@kms_plane_scaling@plane-downscale-factor-0-25-with-modifiers@pipe-d:
- shard-dg2: [SKIP][434] ([i915#12247] / [i915#8152]) -> [SKIP][435] ([i915#12247])
[434]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15448/shard-dg2-2/igt@kms_plane_scaling@plane-downscale-factor-0-25-with-modifiers@pipe-d.html
[435]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138477v2/shard-dg2-3/igt@kms_plane_scaling@plane-downscale-factor-0-25-with-modifiers@pipe-d.html
* igt@kms_plane_scaling@planes-downscale-factor-0-25:
- shard-dg2: [SKIP][436] ([i915#12247] / [i915#6953] / [i915#9423]) -> [SKIP][437] ([i915#12247] / [i915#6953] / [i915#8152] / [i915#9423])
[436]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15448/shard-dg2-11/igt@kms_plane_scaling@planes-downscale-factor-0-25.html
[437]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138477v2/shard-dg2-2/igt@kms_plane_scaling@planes-downscale-factor-0-25.html
* igt@kms_plane_scaling@planes-downscale-factor-0-25@pipe-d:
- shard-dg2: [SKIP][438] ([i915#12247]) -> [SKIP][439] ([i915#12247] / [i915#8152])
[438]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15448/shard-dg2-11/igt@kms_plane_scaling@planes-downscale-factor-0-25@pipe-d.html
[439]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138477v2/shard-dg2-2/igt@kms_plane_scaling@planes-downscale-factor-0-25@pipe-d.html
* igt@kms_plane_scaling@planes-downscale-factor-0-5-unity-scaling:
- shard-tglu: [SKIP][440] ([i915#12247] / [i915#8152]) -> [SKIP][441] ([i915#12247]) +1 other test skip
[440]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15448/shard-tglu-8/igt@kms_plane_scaling@planes-downscale-factor-0-5-unity-scaling.html
[441]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138477v2/shard-tglu-2/igt@kms_plane_scaling@planes-downscale-factor-0-5-unity-scaling.html
* igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-5:
- shard-tglu: [SKIP][442] ([i915#12247] / [i915#6953]) -> [SKIP][443] ([i915#12247] / [i915#6953] / [i915#8152]) +1 other test skip
[442]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15448/shard-tglu-6/igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-5.html
[443]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138477v2/shard-tglu-8/igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-5.html
* igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-5@pipe-d:
- shard-tglu: [SKIP][444] ([i915#12247]) -> [SKIP][445] ([i915#12247] / [i915#8152]) +1 other test skip
[444]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15448/shard-tglu-6/igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-5@pipe-d.html
[445]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138477v2/shard-tglu-8/igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-5@pipe-d.html
* igt@kms_rotation_crc@exhaust-fences:
- shard-dg2: [SKIP][446] ([i915#4235]) -> [SKIP][447] ([i915#9197])
[446]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15448/shard-dg2-10/igt@kms_rotation_crc@exhaust-fences.html
[447]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138477v2/shard-dg2-2/igt@kms_rotation_crc@exhaust-fences.html
* igt@kms_rotation_crc@primary-rotation-270:
- shard-dg2: [SKIP][448] ([i915#11131]) -> [SKIP][449] ([i915#11131] / [i915#4235])
[448]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15448/shard-dg2-4/igt@kms_rotation_crc@primary-rotation-270.html
[449]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138477v2/shard-dg2-10/igt@kms_rotation_crc@primary-rotation-270.html
* igt@kms_rotation_crc@primary-yf-tiled-reflect-x-180:
- shard-tglu: [SKIP][450] -> [SKIP][451] ([i915#5289]) +1 other test skip
[450]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15448/shard-tglu-8/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-180.html
[451]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138477v2/shard-tglu-2/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-180.html
* igt@kms_rotation_crc@primary-yf-tiled-reflect-x-270:
- shard-dg2: [SKIP][452] ([i915#11131] / [i915#5190]) -> [SKIP][453] ([i915#11131] / [i915#4235] / [i915#5190])
[452]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15448/shard-dg2-7/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-270.html
[453]: https://intel-gfx-ci.01.
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138477v2/index.html
[-- Attachment #2: Type: text/html, Size: 108025 bytes --]
^ permalink raw reply [flat|nested] 12+ messages in thread
end of thread, other threads:[~2024-09-26 23:12 UTC | newest]
Thread overview: 12+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2024-09-23 15:24 [PATCH v2 0/6] drm/i915/bios: Refactor ROM access Ville Syrjala
2024-09-23 15:24 ` [PATCH v2 1/6] drm/i915/bios: Use drm_dbg_kms() consistently Ville Syrjala
2024-09-24 13:52 ` Jani Nikula
2024-09-23 15:24 ` [PATCH v2 2/6] drm/i915/bios: Add some size checks to SPI VBT read Ville Syrjala
2024-09-23 15:24 ` [PATCH v2 3/6] drm/i915/bios: Round PCI ROM VBT allocation to multiple of 4 Ville Syrjala
2024-09-23 15:24 ` [PATCH v2 4/6] drm/i915/bios: Extract intel_spi_read16() Ville Syrjala
2024-09-23 15:24 ` [PATCH v2 5/6] drm/i915/bios: Extract vbt_signature[] Ville Syrjala
2024-09-23 15:24 ` [PATCH v2 6/6] drm/i915/bios: Extract soc/intel_rom.c Ville Syrjala
2024-09-26 17:22 ` ✓ Fi.CI.BAT: success for drm/i915/bios: Refactor ROM access (rev2) Patchwork
2024-09-26 17:22 ` ✗ Fi.CI.CHECKPATCH: warning " Patchwork
2024-09-26 17:22 ` ✗ Fi.CI.SPARSE: " Patchwork
2024-09-26 23:12 ` ✗ Fi.CI.IGT: failure " Patchwork
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).