* [CI v4 v4 00/16] drm/i915/display: platform identification with display->platform.<platform>
@ 2024-10-24 12:33 Jani Nikula
2024-10-24 12:33 ` [CI v4 v4 01/16] drm/i915/display: reindent subplatform initialization Jani Nikula
` (19 more replies)
0 siblings, 20 replies; 21+ messages in thread
From: Jani Nikula @ 2024-10-24 12:33 UTC (permalink / raw)
To: intel-gfx, intel-xe
Cc: jani.nikula, rodrigo.vivi, lucas.demarchi, maarten.lankhorst
The last patch was split to two, otherwise the same as before.
Jani Nikula (16):
drm/i915/display: reindent subplatform initialization
drm/i915/display: use a macro to initialize subplatforms
drm/i915/display: use a macro to define platform enumerations
drm/i915/display: join the platform and subplatform enums
drm/i915/display: convert display platforms to lower case
drm/i915/display: add display platforms structure with platform
members
drm/i915/display: add platform member to struct intel_display
drm/i915/display: remove the display platform enum as unnecessary
drm/i915/display: add platform group for g4x
drm/i915/display: add subplatform group for HSW/BDW ULT
drm/i915/bios: use display->platform.<platform> instead of
IS_<PLATFORM>()
drm/i915/pps: use display->platform.<platform> instead of
IS_<PLATFORM>()
drm/i915/tv: use display->platform.<platform> instead of
IS_<PLATFORM>()
drm/i915/vga: use display->platform.<platform> instead of
IS_<PLATFORM>()
drm/i915/vblank: drop unnecessary i915 local variable
drm/i915/vblank: use display->platform.<platform> instead of
IS_<PLATFORM>()
drivers/gpu/drm/i915/display/intel_bios.c | 40 +--
.../gpu/drm/i915/display/intel_display_core.h | 3 +
.../drm/i915/display/intel_display_device.c | 269 +++++++++++++-----
.../drm/i915/display/intel_display_device.h | 185 ++++++------
drivers/gpu/drm/i915/display/intel_pps.c | 47 ++-
drivers/gpu/drm/i915/display/intel_tv.c | 10 +-
drivers/gpu/drm/i915/display/intel_vblank.c | 11 +-
drivers/gpu/drm/i915/display/intel_vga.c | 4 +-
8 files changed, 340 insertions(+), 229 deletions(-)
--
2.39.5
^ permalink raw reply [flat|nested] 21+ messages in thread
* [CI v4 v4 01/16] drm/i915/display: reindent subplatform initialization
2024-10-24 12:33 [CI v4 v4 00/16] drm/i915/display: platform identification with display->platform.<platform> Jani Nikula
@ 2024-10-24 12:33 ` Jani Nikula
2024-10-24 12:33 ` [CI v4 v4 02/16] drm/i915/display: use a macro to initialize subplatforms Jani Nikula
` (18 subsequent siblings)
19 siblings, 0 replies; 21+ messages in thread
From: Jani Nikula @ 2024-10-24 12:33 UTC (permalink / raw)
To: intel-gfx, intel-xe
Cc: jani.nikula, rodrigo.vivi, lucas.demarchi, maarten.lankhorst
Make the subplatform initialization less cramped, and follow the coding
style more closely. Initialize .pciidlist using designated initializers.
Reviewed-by: Rodrigo Vivi <rodrigo.vivi@intel.com>
Signed-off-by: Jani Nikula <jani.nikula@intel.com>
---
.../drm/i915/display/intel_display_device.c | 116 +++++++++++++-----
1 file changed, 88 insertions(+), 28 deletions(-)
diff --git a/drivers/gpu/drm/i915/display/intel_display_device.c b/drivers/gpu/drm/i915/display/intel_display_device.c
index aa22189e3853..9c54a8b3cb6f 100644
--- a/drivers/gpu/drm/i915/display/intel_display_device.c
+++ b/drivers/gpu/drm/i915/display/intel_display_device.c
@@ -497,8 +497,14 @@ static const u16 hsw_ulx_ids[] = {
static const struct platform_desc hsw_desc = {
PLATFORM(HASWELL),
.subplatforms = (const struct subplatform_desc[]) {
- { INTEL_DISPLAY_HASWELL_ULT, "ULT", hsw_ult_ids },
- { INTEL_DISPLAY_HASWELL_ULX, "ULX", hsw_ulx_ids },
+ {
+ INTEL_DISPLAY_HASWELL_ULT, "ULT",
+ .pciidlist = hsw_ult_ids,
+ },
+ {
+ INTEL_DISPLAY_HASWELL_ULX, "ULX",
+ .pciidlist = hsw_ulx_ids,
+ },
{},
},
.info = &(const struct intel_display_device_info) {
@@ -541,8 +547,14 @@ static const u16 bdw_ulx_ids[] = {
static const struct platform_desc bdw_desc = {
PLATFORM(BROADWELL),
.subplatforms = (const struct subplatform_desc[]) {
- { INTEL_DISPLAY_BROADWELL_ULT, "ULT", bdw_ult_ids },
- { INTEL_DISPLAY_BROADWELL_ULX, "ULX", bdw_ulx_ids },
+ {
+ INTEL_DISPLAY_BROADWELL_ULT, "ULT",
+ .pciidlist = bdw_ult_ids,
+ },
+ {
+ INTEL_DISPLAY_BROADWELL_ULX, "ULX",
+ .pciidlist = bdw_ulx_ids,
+ },
{},
},
.info = &(const struct intel_display_device_info) {
@@ -632,8 +644,14 @@ static const enum intel_step skl_steppings[] = {
static const struct platform_desc skl_desc = {
PLATFORM(SKYLAKE),
.subplatforms = (const struct subplatform_desc[]) {
- { INTEL_DISPLAY_SKYLAKE_ULT, "ULT", skl_ult_ids },
- { INTEL_DISPLAY_SKYLAKE_ULX, "ULX", skl_ulx_ids },
+ {
+ INTEL_DISPLAY_SKYLAKE_ULT, "ULT",
+ .pciidlist = skl_ult_ids,
+ },
+ {
+ INTEL_DISPLAY_SKYLAKE_ULX, "ULX",
+ .pciidlist = skl_ulx_ids,
+ },
{},
},
.info = &skl_display,
@@ -667,8 +685,14 @@ static const enum intel_step kbl_steppings[] = {
static const struct platform_desc kbl_desc = {
PLATFORM(KABYLAKE),
.subplatforms = (const struct subplatform_desc[]) {
- { INTEL_DISPLAY_KABYLAKE_ULT, "ULT", kbl_ult_ids },
- { INTEL_DISPLAY_KABYLAKE_ULX, "ULX", kbl_ulx_ids },
+ {
+ INTEL_DISPLAY_KABYLAKE_ULT, "ULT",
+ .pciidlist = kbl_ult_ids,
+ },
+ {
+ INTEL_DISPLAY_KABYLAKE_ULX, "ULX",
+ .pciidlist = kbl_ulx_ids,
+ },
{},
},
.info = &skl_display,
@@ -692,8 +716,14 @@ static const u16 cfl_ulx_ids[] = {
static const struct platform_desc cfl_desc = {
PLATFORM(COFFEELAKE),
.subplatforms = (const struct subplatform_desc[]) {
- { INTEL_DISPLAY_COFFEELAKE_ULT, "ULT", cfl_ult_ids },
- { INTEL_DISPLAY_COFFEELAKE_ULX, "ULX", cfl_ulx_ids },
+ {
+ INTEL_DISPLAY_COFFEELAKE_ULT, "ULT",
+ .pciidlist = cfl_ult_ids,
+ },
+ {
+ INTEL_DISPLAY_COFFEELAKE_ULX, "ULX",
+ .pciidlist = cfl_ulx_ids,
+ },
{},
},
.info = &skl_display,
@@ -708,7 +738,10 @@ static const u16 cml_ult_ids[] = {
static const struct platform_desc cml_desc = {
PLATFORM(COMETLAKE),
.subplatforms = (const struct subplatform_desc[]) {
- { INTEL_DISPLAY_COMETLAKE_ULT, "ULT", cml_ult_ids },
+ {
+ INTEL_DISPLAY_COMETLAKE_ULT, "ULT",
+ .pciidlist = cml_ult_ids,
+ },
{},
},
.info = &skl_display,
@@ -824,7 +857,10 @@ static const enum intel_step icl_steppings[] = {
static const struct platform_desc icl_desc = {
PLATFORM(ICELAKE),
.subplatforms = (const struct subplatform_desc[]) {
- { INTEL_DISPLAY_ICELAKE_PORT_F, "Port F", icl_port_f_ids },
+ {
+ INTEL_DISPLAY_ICELAKE_PORT_F, "Port F",
+ .pciidlist = icl_port_f_ids,
+ },
{},
},
.info = &(const struct intel_display_device_info) {
@@ -921,8 +957,11 @@ static const enum intel_step tgl_uy_steppings[] = {
static const struct platform_desc tgl_desc = {
PLATFORM(TIGERLAKE),
.subplatforms = (const struct subplatform_desc[]) {
- { INTEL_DISPLAY_TIGERLAKE_UY, "UY", tgl_uy_ids,
- STEP_INFO(tgl_uy_steppings) },
+ {
+ INTEL_DISPLAY_TIGERLAKE_UY, "UY",
+ .pciidlist = tgl_uy_ids,
+ STEP_INFO(tgl_uy_steppings),
+ },
{},
},
.info = &(const struct intel_display_device_info) {
@@ -998,8 +1037,11 @@ static const enum intel_step adl_s_rpl_s_steppings[] = {
static const struct platform_desc adl_s_desc = {
PLATFORM(ALDERLAKE_S),
.subplatforms = (const struct subplatform_desc[]) {
- { INTEL_DISPLAY_ALDERLAKE_S_RAPTORLAKE_S, "RPL-S", adls_rpls_ids,
- STEP_INFO(adl_s_rpl_s_steppings) },
+ {
+ INTEL_DISPLAY_ALDERLAKE_S_RAPTORLAKE_S, "RPL-S",
+ .pciidlist = adls_rpls_ids,
+ STEP_INFO(adl_s_rpl_s_steppings),
+ },
{},
},
.info = &(const struct intel_display_device_info) {
@@ -1102,12 +1144,21 @@ static const enum intel_step adl_p_rpl_pu_steppings[] = {
static const struct platform_desc adl_p_desc = {
PLATFORM(ALDERLAKE_P),
.subplatforms = (const struct subplatform_desc[]) {
- { INTEL_DISPLAY_ALDERLAKE_P_ALDERLAKE_N, "ADL-N", adlp_adln_ids,
- STEP_INFO(adl_p_adl_n_steppings) },
- { INTEL_DISPLAY_ALDERLAKE_P_RAPTORLAKE_P, "RPL-P", adlp_rplp_ids,
- STEP_INFO(adl_p_rpl_pu_steppings) },
- { INTEL_DISPLAY_ALDERLAKE_P_RAPTORLAKE_U, "RPL-U", adlp_rplu_ids,
- STEP_INFO(adl_p_rpl_pu_steppings) },
+ {
+ INTEL_DISPLAY_ALDERLAKE_P_ALDERLAKE_N, "ADL-N",
+ .pciidlist = adlp_adln_ids,
+ STEP_INFO(adl_p_adl_n_steppings),
+ },
+ {
+ INTEL_DISPLAY_ALDERLAKE_P_RAPTORLAKE_P, "RPL-P",
+ .pciidlist = adlp_rplp_ids,
+ STEP_INFO(adl_p_rpl_pu_steppings),
+ },
+ {
+ INTEL_DISPLAY_ALDERLAKE_P_RAPTORLAKE_U, "RPL-U",
+ .pciidlist = adlp_rplu_ids,
+ STEP_INFO(adl_p_rpl_pu_steppings),
+ },
{},
},
.info = &xe_lpd_display,
@@ -1161,12 +1212,21 @@ static const enum intel_step dg2_g12_steppings[] = {
static const struct platform_desc dg2_desc = {
PLATFORM(DG2),
.subplatforms = (const struct subplatform_desc[]) {
- { INTEL_DISPLAY_DG2_G10, "G10", dg2_g10_ids,
- STEP_INFO(dg2_g10_steppings) },
- { INTEL_DISPLAY_DG2_G11, "G11", dg2_g11_ids,
- STEP_INFO(dg2_g11_steppings) },
- { INTEL_DISPLAY_DG2_G12, "G12", dg2_g12_ids,
- STEP_INFO(dg2_g12_steppings) },
+ {
+ INTEL_DISPLAY_DG2_G10, "G10",
+ .pciidlist = dg2_g10_ids,
+ STEP_INFO(dg2_g10_steppings),
+ },
+ {
+ INTEL_DISPLAY_DG2_G11, "G11",
+ .pciidlist = dg2_g11_ids,
+ STEP_INFO(dg2_g11_steppings),
+ },
+ {
+ INTEL_DISPLAY_DG2_G12, "G12",
+ .pciidlist = dg2_g12_ids,
+ STEP_INFO(dg2_g12_steppings),
+ },
{},
},
.info = &xe_hpd_display,
--
2.39.5
^ permalink raw reply related [flat|nested] 21+ messages in thread
* [CI v4 v4 02/16] drm/i915/display: use a macro to initialize subplatforms
2024-10-24 12:33 [CI v4 v4 00/16] drm/i915/display: platform identification with display->platform.<platform> Jani Nikula
2024-10-24 12:33 ` [CI v4 v4 01/16] drm/i915/display: reindent subplatform initialization Jani Nikula
@ 2024-10-24 12:33 ` Jani Nikula
2024-10-24 12:33 ` [CI v4 v4 03/16] drm/i915/display: use a macro to define platform enumerations Jani Nikula
` (17 subsequent siblings)
19 siblings, 0 replies; 21+ messages in thread
From: Jani Nikula @ 2024-10-24 12:33 UTC (permalink / raw)
To: intel-gfx, intel-xe
Cc: jani.nikula, rodrigo.vivi, lucas.demarchi, maarten.lankhorst
Make it easier to change the underlying structures by using a macro
similar to PLATFORM() for initialization.
The subplatform names in debug logs change slightly as they now reflect
the enum rather than manually entered names. For example, RAPTORLAKE_S
rather than RPL-S.
Reviewed-by: Rodrigo Vivi <rodrigo.vivi@intel.com>
Signed-off-by: Jani Nikula <jani.nikula@intel.com>
---
.../drm/i915/display/intel_display_device.c | 44 ++++++++++---------
1 file changed, 24 insertions(+), 20 deletions(-)
diff --git a/drivers/gpu/drm/i915/display/intel_display_device.c b/drivers/gpu/drm/i915/display/intel_display_device.c
index 9c54a8b3cb6f..3330ec1bf2cf 100644
--- a/drivers/gpu/drm/i915/display/intel_display_device.c
+++ b/drivers/gpu/drm/i915/display/intel_display_device.c
@@ -37,6 +37,10 @@ struct subplatform_desc {
struct stepping_desc step_info;
};
+#define SUBPLATFORM(_platform, _subplatform) \
+ .subplatform = (INTEL_DISPLAY_##_platform##_##_subplatform), \
+ .name = #_subplatform
+
struct platform_desc {
enum intel_display_platform platform;
const char *name;
@@ -498,11 +502,11 @@ static const struct platform_desc hsw_desc = {
PLATFORM(HASWELL),
.subplatforms = (const struct subplatform_desc[]) {
{
- INTEL_DISPLAY_HASWELL_ULT, "ULT",
+ SUBPLATFORM(HASWELL, ULT),
.pciidlist = hsw_ult_ids,
},
{
- INTEL_DISPLAY_HASWELL_ULX, "ULX",
+ SUBPLATFORM(HASWELL, ULX),
.pciidlist = hsw_ulx_ids,
},
{},
@@ -548,11 +552,11 @@ static const struct platform_desc bdw_desc = {
PLATFORM(BROADWELL),
.subplatforms = (const struct subplatform_desc[]) {
{
- INTEL_DISPLAY_BROADWELL_ULT, "ULT",
+ SUBPLATFORM(BROADWELL, ULT),
.pciidlist = bdw_ult_ids,
},
{
- INTEL_DISPLAY_BROADWELL_ULX, "ULX",
+ SUBPLATFORM(BROADWELL, ULX),
.pciidlist = bdw_ulx_ids,
},
{},
@@ -645,11 +649,11 @@ static const struct platform_desc skl_desc = {
PLATFORM(SKYLAKE),
.subplatforms = (const struct subplatform_desc[]) {
{
- INTEL_DISPLAY_SKYLAKE_ULT, "ULT",
+ SUBPLATFORM(SKYLAKE, ULT),
.pciidlist = skl_ult_ids,
},
{
- INTEL_DISPLAY_SKYLAKE_ULX, "ULX",
+ SUBPLATFORM(SKYLAKE, ULX),
.pciidlist = skl_ulx_ids,
},
{},
@@ -686,11 +690,11 @@ static const struct platform_desc kbl_desc = {
PLATFORM(KABYLAKE),
.subplatforms = (const struct subplatform_desc[]) {
{
- INTEL_DISPLAY_KABYLAKE_ULT, "ULT",
+ SUBPLATFORM(KABYLAKE, ULT),
.pciidlist = kbl_ult_ids,
},
{
- INTEL_DISPLAY_KABYLAKE_ULX, "ULX",
+ SUBPLATFORM(KABYLAKE, ULX),
.pciidlist = kbl_ulx_ids,
},
{},
@@ -717,11 +721,11 @@ static const struct platform_desc cfl_desc = {
PLATFORM(COFFEELAKE),
.subplatforms = (const struct subplatform_desc[]) {
{
- INTEL_DISPLAY_COFFEELAKE_ULT, "ULT",
+ SUBPLATFORM(COFFEELAKE, ULT),
.pciidlist = cfl_ult_ids,
},
{
- INTEL_DISPLAY_COFFEELAKE_ULX, "ULX",
+ SUBPLATFORM(COFFEELAKE, ULX),
.pciidlist = cfl_ulx_ids,
},
{},
@@ -739,7 +743,7 @@ static const struct platform_desc cml_desc = {
PLATFORM(COMETLAKE),
.subplatforms = (const struct subplatform_desc[]) {
{
- INTEL_DISPLAY_COMETLAKE_ULT, "ULT",
+ SUBPLATFORM(COMETLAKE, ULT),
.pciidlist = cml_ult_ids,
},
{},
@@ -858,7 +862,7 @@ static const struct platform_desc icl_desc = {
PLATFORM(ICELAKE),
.subplatforms = (const struct subplatform_desc[]) {
{
- INTEL_DISPLAY_ICELAKE_PORT_F, "Port F",
+ SUBPLATFORM(ICELAKE, PORT_F),
.pciidlist = icl_port_f_ids,
},
{},
@@ -958,7 +962,7 @@ static const struct platform_desc tgl_desc = {
PLATFORM(TIGERLAKE),
.subplatforms = (const struct subplatform_desc[]) {
{
- INTEL_DISPLAY_TIGERLAKE_UY, "UY",
+ SUBPLATFORM(TIGERLAKE, UY),
.pciidlist = tgl_uy_ids,
STEP_INFO(tgl_uy_steppings),
},
@@ -1038,7 +1042,7 @@ static const struct platform_desc adl_s_desc = {
PLATFORM(ALDERLAKE_S),
.subplatforms = (const struct subplatform_desc[]) {
{
- INTEL_DISPLAY_ALDERLAKE_S_RAPTORLAKE_S, "RPL-S",
+ SUBPLATFORM(ALDERLAKE_S, RAPTORLAKE_S),
.pciidlist = adls_rpls_ids,
STEP_INFO(adl_s_rpl_s_steppings),
},
@@ -1145,17 +1149,17 @@ static const struct platform_desc adl_p_desc = {
PLATFORM(ALDERLAKE_P),
.subplatforms = (const struct subplatform_desc[]) {
{
- INTEL_DISPLAY_ALDERLAKE_P_ALDERLAKE_N, "ADL-N",
+ SUBPLATFORM(ALDERLAKE_P, ALDERLAKE_N),
.pciidlist = adlp_adln_ids,
STEP_INFO(adl_p_adl_n_steppings),
},
{
- INTEL_DISPLAY_ALDERLAKE_P_RAPTORLAKE_P, "RPL-P",
+ SUBPLATFORM(ALDERLAKE_P, RAPTORLAKE_P),
.pciidlist = adlp_rplp_ids,
STEP_INFO(adl_p_rpl_pu_steppings),
},
{
- INTEL_DISPLAY_ALDERLAKE_P_RAPTORLAKE_U, "RPL-U",
+ SUBPLATFORM(ALDERLAKE_P, RAPTORLAKE_U),
.pciidlist = adlp_rplu_ids,
STEP_INFO(adl_p_rpl_pu_steppings),
},
@@ -1213,17 +1217,17 @@ static const struct platform_desc dg2_desc = {
PLATFORM(DG2),
.subplatforms = (const struct subplatform_desc[]) {
{
- INTEL_DISPLAY_DG2_G10, "G10",
+ SUBPLATFORM(DG2, G10),
.pciidlist = dg2_g10_ids,
STEP_INFO(dg2_g10_steppings),
},
{
- INTEL_DISPLAY_DG2_G11, "G11",
+ SUBPLATFORM(DG2, G11),
.pciidlist = dg2_g11_ids,
STEP_INFO(dg2_g11_steppings),
},
{
- INTEL_DISPLAY_DG2_G12, "G12",
+ SUBPLATFORM(DG2, G12),
.pciidlist = dg2_g12_ids,
STEP_INFO(dg2_g12_steppings),
},
--
2.39.5
^ permalink raw reply related [flat|nested] 21+ messages in thread
* [CI v4 v4 03/16] drm/i915/display: use a macro to define platform enumerations
2024-10-24 12:33 [CI v4 v4 00/16] drm/i915/display: platform identification with display->platform.<platform> Jani Nikula
2024-10-24 12:33 ` [CI v4 v4 01/16] drm/i915/display: reindent subplatform initialization Jani Nikula
2024-10-24 12:33 ` [CI v4 v4 02/16] drm/i915/display: use a macro to initialize subplatforms Jani Nikula
@ 2024-10-24 12:33 ` Jani Nikula
2024-10-24 12:33 ` [CI v4 v4 04/16] drm/i915/display: join the platform and subplatform enums Jani Nikula
` (16 subsequent siblings)
19 siblings, 0 replies; 21+ messages in thread
From: Jani Nikula @ 2024-10-24 12:33 UTC (permalink / raw)
To: intel-gfx, intel-xe
Cc: jani.nikula, rodrigo.vivi, lucas.demarchi, maarten.lankhorst
We'll be needing a macro based list of platforms for more things in the
future. Start by defining the platform enumerations with it.
v3: Rebase for PTL
Reviewed-by: Rodrigo Vivi <rodrigo.vivi@intel.com>
Signed-off-by: Jani Nikula <jani.nikula@intel.com>
---
.../drm/i915/display/intel_display_device.h | 119 +++++++++---------
1 file changed, 63 insertions(+), 56 deletions(-)
diff --git a/drivers/gpu/drm/i915/display/intel_display_device.h b/drivers/gpu/drm/i915/display/intel_display_device.h
index 071a36b51f79..39da0c25c0b5 100644
--- a/drivers/gpu/drm/i915/display/intel_display_device.h
+++ b/drivers/gpu/drm/i915/display/intel_display_device.h
@@ -15,65 +15,72 @@ struct drm_i915_private;
struct drm_printer;
/* Keep in gen based order, and chronological order within a gen */
+#define INTEL_DISPLAY_PLATFORMS(func) \
+ func(PLATFORM_UNINITIALIZED) \
+ /* Display ver 2 */ \
+ func(I830) \
+ func(I845G) \
+ func(I85X) \
+ func(I865G) \
+ /* Display ver 3 */ \
+ func(I915G) \
+ func(I915GM) \
+ func(I945G) \
+ func(I945GM) \
+ func(G33) \
+ func(PINEVIEW) \
+ /* Display ver 4 */ \
+ func(I965G) \
+ func(I965GM) \
+ func(G45) \
+ func(GM45) \
+ /* Display ver 5 */ \
+ func(IRONLAKE) \
+ /* Display ver 6 */ \
+ func(SANDYBRIDGE) \
+ /* Display ver 7 */ \
+ func(IVYBRIDGE) \
+ func(VALLEYVIEW) \
+ func(HASWELL) \
+ /* Display ver 8 */ \
+ func(BROADWELL) \
+ func(CHERRYVIEW) \
+ /* Display ver 9 */ \
+ func(SKYLAKE) \
+ func(BROXTON) \
+ func(KABYLAKE) \
+ func(GEMINILAKE) \
+ func(COFFEELAKE) \
+ func(COMETLAKE) \
+ /* Display ver 11 */ \
+ func(ICELAKE) \
+ func(JASPERLAKE) \
+ func(ELKHARTLAKE) \
+ /* Display ver 12 */ \
+ func(TIGERLAKE) \
+ func(ROCKETLAKE) \
+ func(DG1) \
+ func(ALDERLAKE_S) \
+ /* Display ver 13 */ \
+ func(ALDERLAKE_P) \
+ func(DG2) \
+ /* Display ver 14 (based on GMD ID) */ \
+ func(METEORLAKE) \
+ /* Display ver 20 (based on GMD ID) */ \
+ func(LUNARLAKE) \
+ /* Display ver 14.1 (based on GMD ID) */ \
+ func(BATTLEMAGE) \
+ /* Display ver 30 (based on GMD ID) */ \
+ func(PANTHERLAKE)
+
+#define __ENUM(x) INTEL_DISPLAY_ ## x,
+
enum intel_display_platform {
- INTEL_DISPLAY_PLATFORM_UNINITIALIZED = 0,
- /* Display ver 2 */
- INTEL_DISPLAY_I830,
- INTEL_DISPLAY_I845G,
- INTEL_DISPLAY_I85X,
- INTEL_DISPLAY_I865G,
- /* Display ver 3 */
- INTEL_DISPLAY_I915G,
- INTEL_DISPLAY_I915GM,
- INTEL_DISPLAY_I945G,
- INTEL_DISPLAY_I945GM,
- INTEL_DISPLAY_G33,
- INTEL_DISPLAY_PINEVIEW,
- /* Display ver 4 */
- INTEL_DISPLAY_I965G,
- INTEL_DISPLAY_I965GM,
- INTEL_DISPLAY_G45,
- INTEL_DISPLAY_GM45,
- /* Display ver 5 */
- INTEL_DISPLAY_IRONLAKE,
- /* Display ver 6 */
- INTEL_DISPLAY_SANDYBRIDGE,
- /* Display ver 7 */
- INTEL_DISPLAY_IVYBRIDGE,
- INTEL_DISPLAY_VALLEYVIEW,
- INTEL_DISPLAY_HASWELL,
- /* Display ver 8 */
- INTEL_DISPLAY_BROADWELL,
- INTEL_DISPLAY_CHERRYVIEW,
- /* Display ver 9 */
- INTEL_DISPLAY_SKYLAKE,
- INTEL_DISPLAY_BROXTON,
- INTEL_DISPLAY_KABYLAKE,
- INTEL_DISPLAY_GEMINILAKE,
- INTEL_DISPLAY_COFFEELAKE,
- INTEL_DISPLAY_COMETLAKE,
- /* Display ver 11 */
- INTEL_DISPLAY_ICELAKE,
- INTEL_DISPLAY_JASPERLAKE,
- INTEL_DISPLAY_ELKHARTLAKE,
- /* Display ver 12 */
- INTEL_DISPLAY_TIGERLAKE,
- INTEL_DISPLAY_ROCKETLAKE,
- INTEL_DISPLAY_DG1,
- INTEL_DISPLAY_ALDERLAKE_S,
- /* Display ver 13 */
- INTEL_DISPLAY_ALDERLAKE_P,
- INTEL_DISPLAY_DG2,
- /* Display ver 14 (based on GMD ID) */
- INTEL_DISPLAY_METEORLAKE,
- /* Display ver 20 (based on GMD ID) */
- INTEL_DISPLAY_LUNARLAKE,
- /* Display ver 14.1 (based on GMD ID) */
- INTEL_DISPLAY_BATTLEMAGE,
- /* Display ver 30 (based on GMD ID) */
- INTEL_DISPLAY_PANTHERLAKE,
+ INTEL_DISPLAY_PLATFORMS(__ENUM)
};
+#undef __ENUM
+
enum intel_display_subplatform {
INTEL_DISPLAY_SUBPLATFORM_UNINITIALIZED = 0,
INTEL_DISPLAY_HASWELL_ULT,
--
2.39.5
^ permalink raw reply related [flat|nested] 21+ messages in thread
* [CI v4 v4 04/16] drm/i915/display: join the platform and subplatform enums
2024-10-24 12:33 [CI v4 v4 00/16] drm/i915/display: platform identification with display->platform.<platform> Jani Nikula
` (2 preceding siblings ...)
2024-10-24 12:33 ` [CI v4 v4 03/16] drm/i915/display: use a macro to define platform enumerations Jani Nikula
@ 2024-10-24 12:33 ` Jani Nikula
2024-10-24 12:33 ` [CI v4 v4 05/16] drm/i915/display: convert display platforms to lower case Jani Nikula
` (15 subsequent siblings)
19 siblings, 0 replies; 21+ messages in thread
From: Jani Nikula @ 2024-10-24 12:33 UTC (permalink / raw)
To: intel-gfx, intel-xe
Cc: jani.nikula, rodrigo.vivi, lucas.demarchi, maarten.lankhorst
We'll want to use the subplatforms similar to platforms. Join the
subplatforms next to their corresponding platforms. Update the comment
while at it.
v2: Put the subplatforms next to the platforms
Reviewed-by: Rodrigo Vivi <rodrigo.vivi@intel.com>
Signed-off-by: Jani Nikula <jani.nikula@intel.com>
---
.../drm/i915/display/intel_display_device.c | 2 +-
.../drm/i915/display/intel_display_device.h | 54 +++++++++----------
2 files changed, 28 insertions(+), 28 deletions(-)
diff --git a/drivers/gpu/drm/i915/display/intel_display_device.c b/drivers/gpu/drm/i915/display/intel_display_device.c
index 3330ec1bf2cf..787f231926ca 100644
--- a/drivers/gpu/drm/i915/display/intel_display_device.c
+++ b/drivers/gpu/drm/i915/display/intel_display_device.c
@@ -31,7 +31,7 @@ struct stepping_desc {
.step_info.size = ARRAY_SIZE(_map)
struct subplatform_desc {
- enum intel_display_subplatform subplatform;
+ enum intel_display_platform subplatform;
const char *name;
const u16 *pciidlist;
struct stepping_desc step_info;
diff --git a/drivers/gpu/drm/i915/display/intel_display_device.h b/drivers/gpu/drm/i915/display/intel_display_device.h
index 39da0c25c0b5..479f0705f2f4 100644
--- a/drivers/gpu/drm/i915/display/intel_display_device.h
+++ b/drivers/gpu/drm/i915/display/intel_display_device.h
@@ -14,7 +14,11 @@
struct drm_i915_private;
struct drm_printer;
-/* Keep in gen based order, and chronological order within a gen */
+/*
+ * Display platforms and subplatforms. Keep platforms in display version based
+ * order, chronological order within a version, and subplatforms next to the
+ * platform.
+ */
#define INTEL_DISPLAY_PLATFORMS(func) \
func(PLATFORM_UNINITIALIZED) \
/* Display ver 2 */ \
@@ -42,28 +46,49 @@ struct drm_printer;
func(IVYBRIDGE) \
func(VALLEYVIEW) \
func(HASWELL) \
+ func(HASWELL_ULT) \
+ func(HASWELL_ULX) \
/* Display ver 8 */ \
func(BROADWELL) \
+ func(BROADWELL_ULT) \
+ func(BROADWELL_ULX) \
func(CHERRYVIEW) \
/* Display ver 9 */ \
func(SKYLAKE) \
+ func(SKYLAKE_ULT) \
+ func(SKYLAKE_ULX) \
func(BROXTON) \
func(KABYLAKE) \
+ func(KABYLAKE_ULT) \
+ func(KABYLAKE_ULX) \
func(GEMINILAKE) \
func(COFFEELAKE) \
+ func(COFFEELAKE_ULT) \
+ func(COFFEELAKE_ULX) \
func(COMETLAKE) \
+ func(COMETLAKE_ULT) \
+ func(COMETLAKE_ULX) \
/* Display ver 11 */ \
func(ICELAKE) \
+ func(ICELAKE_PORT_F) \
func(JASPERLAKE) \
func(ELKHARTLAKE) \
/* Display ver 12 */ \
func(TIGERLAKE) \
+ func(TIGERLAKE_UY) \
func(ROCKETLAKE) \
func(DG1) \
func(ALDERLAKE_S) \
+ func(ALDERLAKE_S_RAPTORLAKE_S) \
/* Display ver 13 */ \
func(ALDERLAKE_P) \
+ func(ALDERLAKE_P_ALDERLAKE_N) \
+ func(ALDERLAKE_P_RAPTORLAKE_P) \
+ func(ALDERLAKE_P_RAPTORLAKE_U) \
func(DG2) \
+ func(DG2_G10) \
+ func(DG2_G11) \
+ func(DG2_G12) \
/* Display ver 14 (based on GMD ID) */ \
func(METEORLAKE) \
/* Display ver 20 (based on GMD ID) */ \
@@ -81,31 +106,6 @@ enum intel_display_platform {
#undef __ENUM
-enum intel_display_subplatform {
- INTEL_DISPLAY_SUBPLATFORM_UNINITIALIZED = 0,
- INTEL_DISPLAY_HASWELL_ULT,
- INTEL_DISPLAY_HASWELL_ULX,
- INTEL_DISPLAY_BROADWELL_ULT,
- INTEL_DISPLAY_BROADWELL_ULX,
- INTEL_DISPLAY_SKYLAKE_ULT,
- INTEL_DISPLAY_SKYLAKE_ULX,
- INTEL_DISPLAY_KABYLAKE_ULT,
- INTEL_DISPLAY_KABYLAKE_ULX,
- INTEL_DISPLAY_COFFEELAKE_ULT,
- INTEL_DISPLAY_COFFEELAKE_ULX,
- INTEL_DISPLAY_COMETLAKE_ULT,
- INTEL_DISPLAY_COMETLAKE_ULX,
- INTEL_DISPLAY_ICELAKE_PORT_F,
- INTEL_DISPLAY_TIGERLAKE_UY,
- INTEL_DISPLAY_ALDERLAKE_S_RAPTORLAKE_S,
- INTEL_DISPLAY_ALDERLAKE_P_ALDERLAKE_N,
- INTEL_DISPLAY_ALDERLAKE_P_RAPTORLAKE_P,
- INTEL_DISPLAY_ALDERLAKE_P_RAPTORLAKE_U,
- INTEL_DISPLAY_DG2_G10,
- INTEL_DISPLAY_DG2_G11,
- INTEL_DISPLAY_DG2_G12,
-};
-
#define DEV_INFO_DISPLAY_FOR_EACH_FLAG(func) \
/* Keep in alphabetical order */ \
func(cursor_needs_physical); \
@@ -216,7 +216,7 @@ enum intel_display_subplatform {
struct intel_display_runtime_info {
enum intel_display_platform platform;
- enum intel_display_subplatform subplatform;
+ enum intel_display_platform subplatform;
struct intel_display_ip_ver {
u16 ver;
--
2.39.5
^ permalink raw reply related [flat|nested] 21+ messages in thread
* [CI v4 v4 05/16] drm/i915/display: convert display platforms to lower case
2024-10-24 12:33 [CI v4 v4 00/16] drm/i915/display: platform identification with display->platform.<platform> Jani Nikula
` (3 preceding siblings ...)
2024-10-24 12:33 ` [CI v4 v4 04/16] drm/i915/display: join the platform and subplatform enums Jani Nikula
@ 2024-10-24 12:33 ` Jani Nikula
2024-10-24 12:33 ` [CI v4 v4 06/16] drm/i915/display: add display platforms structure with platform members Jani Nikula
` (14 subsequent siblings)
19 siblings, 0 replies; 21+ messages in thread
From: Jani Nikula @ 2024-10-24 12:33 UTC (permalink / raw)
To: intel-gfx, intel-xe
Cc: jani.nikula, rodrigo.vivi, lucas.demarchi, maarten.lankhorst
This will be helpful for follow-up, where the names here become struct
member names.
This does impact debug logs as well, making everything lower case.
v2: Rebase to adapt to PTL
Reviewed-by: Rodrigo Vivi <rodrigo.vivi@intel.com>
Signed-off-by: Jani Nikula <jani.nikula@intel.com>
---
.../drm/i915/display/intel_display_device.c | 122 +++++++++---------
.../drm/i915/display/intel_display_device.h | 122 +++++++++---------
2 files changed, 122 insertions(+), 122 deletions(-)
diff --git a/drivers/gpu/drm/i915/display/intel_display_device.c b/drivers/gpu/drm/i915/display/intel_display_device.c
index 787f231926ca..c51efc3a97d6 100644
--- a/drivers/gpu/drm/i915/display/intel_display_device.c
+++ b/drivers/gpu/drm/i915/display/intel_display_device.c
@@ -236,7 +236,7 @@ static const struct intel_display_device_info no_display = {};
.__runtime_defaults.cpu_transcoder_mask = BIT(TRANSCODER_A)
static const struct platform_desc i830_desc = {
- PLATFORM(I830),
+ PLATFORM(i830),
.info = &(const struct intel_display_device_info) {
I830_DISPLAY,
@@ -245,7 +245,7 @@ static const struct platform_desc i830_desc = {
};
static const struct platform_desc i845_desc = {
- PLATFORM(I845G),
+ PLATFORM(i845g),
.info = &(const struct intel_display_device_info) {
I845_DISPLAY,
@@ -254,7 +254,7 @@ static const struct platform_desc i845_desc = {
};
static const struct platform_desc i85x_desc = {
- PLATFORM(I85X),
+ PLATFORM(i85x),
.info = &(const struct intel_display_device_info) {
I830_DISPLAY,
@@ -264,7 +264,7 @@ static const struct platform_desc i85x_desc = {
};
static const struct platform_desc i865g_desc = {
- PLATFORM(I865G),
+ PLATFORM(i865g),
.info = &(const struct intel_display_device_info) {
I845_DISPLAY,
@@ -286,7 +286,7 @@ static const struct platform_desc i865g_desc = {
.__runtime_defaults.port_mask = BIT(PORT_B) | BIT(PORT_C) /* SDVO B/C */
static const struct platform_desc i915g_desc = {
- PLATFORM(I915G),
+ PLATFORM(i915g),
.info = &(const struct intel_display_device_info) {
GEN3_DISPLAY,
I845_COLORS,
@@ -296,7 +296,7 @@ static const struct platform_desc i915g_desc = {
};
static const struct platform_desc i915gm_desc = {
- PLATFORM(I915GM),
+ PLATFORM(i915gm),
.info = &(const struct intel_display_device_info) {
GEN3_DISPLAY,
I9XX_COLORS,
@@ -309,7 +309,7 @@ static const struct platform_desc i915gm_desc = {
};
static const struct platform_desc i945g_desc = {
- PLATFORM(I945G),
+ PLATFORM(i945g),
.info = &(const struct intel_display_device_info) {
GEN3_DISPLAY,
I845_COLORS,
@@ -320,7 +320,7 @@ static const struct platform_desc i945g_desc = {
};
static const struct platform_desc i945gm_desc = {
- PLATFORM(I915GM),
+ PLATFORM(i915gm),
.info = &(const struct intel_display_device_info) {
GEN3_DISPLAY,
I9XX_COLORS,
@@ -334,7 +334,7 @@ static const struct platform_desc i945gm_desc = {
};
static const struct platform_desc g33_desc = {
- PLATFORM(G33),
+ PLATFORM(g33),
.info = &(const struct intel_display_device_info) {
GEN3_DISPLAY,
I845_COLORS,
@@ -343,7 +343,7 @@ static const struct platform_desc g33_desc = {
};
static const struct platform_desc pnv_desc = {
- PLATFORM(PINEVIEW),
+ PLATFORM(pineview),
.info = &(const struct intel_display_device_info) {
GEN3_DISPLAY,
I9XX_COLORS,
@@ -364,7 +364,7 @@ static const struct platform_desc pnv_desc = {
BIT(TRANSCODER_A) | BIT(TRANSCODER_B)
static const struct platform_desc i965g_desc = {
- PLATFORM(I965G),
+ PLATFORM(i965g),
.info = &(const struct intel_display_device_info) {
GEN4_DISPLAY,
.has_overlay = 1,
@@ -374,7 +374,7 @@ static const struct platform_desc i965g_desc = {
};
static const struct platform_desc i965gm_desc = {
- PLATFORM(I965GM),
+ PLATFORM(i965gm),
.info = &(const struct intel_display_device_info) {
GEN4_DISPLAY,
.has_overlay = 1,
@@ -386,7 +386,7 @@ static const struct platform_desc i965gm_desc = {
};
static const struct platform_desc g45_desc = {
- PLATFORM(G45),
+ PLATFORM(g45),
.info = &(const struct intel_display_device_info) {
GEN4_DISPLAY,
@@ -395,7 +395,7 @@ static const struct platform_desc g45_desc = {
};
static const struct platform_desc gm45_desc = {
- PLATFORM(GM45),
+ PLATFORM(gm45),
.info = &(const struct intel_display_device_info) {
GEN4_DISPLAY,
.supports_tv = 1,
@@ -418,14 +418,14 @@ static const struct platform_desc gm45_desc = {
.__runtime_defaults.port_mask = BIT(PORT_A) | BIT(PORT_B) | BIT(PORT_C) | BIT(PORT_D) /* DP A, SDVO/HDMI/DP B, HDMI/DP C/D */
static const struct platform_desc ilk_d_desc = {
- PLATFORM(IRONLAKE),
+ PLATFORM(ironlake),
.info = &(const struct intel_display_device_info) {
ILK_DISPLAY,
},
};
static const struct platform_desc ilk_m_desc = {
- PLATFORM(IRONLAKE),
+ PLATFORM(ironlake),
.info = &(const struct intel_display_device_info) {
ILK_DISPLAY,
@@ -434,7 +434,7 @@ static const struct platform_desc ilk_m_desc = {
};
static const struct platform_desc snb_desc = {
- PLATFORM(SANDYBRIDGE),
+ PLATFORM(sandybridge),
.info = &(const struct intel_display_device_info) {
.has_hotplug = 1,
I9XX_PIPE_OFFSETS,
@@ -451,7 +451,7 @@ static const struct platform_desc snb_desc = {
};
static const struct platform_desc ivb_desc = {
- PLATFORM(IVYBRIDGE),
+ PLATFORM(ivybridge),
.info = &(const struct intel_display_device_info) {
.has_hotplug = 1,
IVB_PIPE_OFFSETS,
@@ -468,7 +468,7 @@ static const struct platform_desc ivb_desc = {
};
static const struct platform_desc vlv_desc = {
- PLATFORM(VALLEYVIEW),
+ PLATFORM(valleyview),
.info = &(const struct intel_display_device_info) {
.has_gmch = 1,
.has_hotplug = 1,
@@ -499,14 +499,14 @@ static const u16 hsw_ulx_ids[] = {
};
static const struct platform_desc hsw_desc = {
- PLATFORM(HASWELL),
+ PLATFORM(haswell),
.subplatforms = (const struct subplatform_desc[]) {
{
- SUBPLATFORM(HASWELL, ULT),
+ SUBPLATFORM(haswell, ult),
.pciidlist = hsw_ult_ids,
},
{
- SUBPLATFORM(HASWELL, ULX),
+ SUBPLATFORM(haswell, ulx),
.pciidlist = hsw_ulx_ids,
},
{},
@@ -549,14 +549,14 @@ static const u16 bdw_ulx_ids[] = {
};
static const struct platform_desc bdw_desc = {
- PLATFORM(BROADWELL),
+ PLATFORM(broadwell),
.subplatforms = (const struct subplatform_desc[]) {
{
- SUBPLATFORM(BROADWELL, ULT),
+ SUBPLATFORM(broadwell, ult),
.pciidlist = bdw_ult_ids,
},
{
- SUBPLATFORM(BROADWELL, ULX),
+ SUBPLATFORM(broadwell, ulx),
.pciidlist = bdw_ulx_ids,
},
{},
@@ -583,7 +583,7 @@ static const struct platform_desc bdw_desc = {
};
static const struct platform_desc chv_desc = {
- PLATFORM(CHERRYVIEW),
+ PLATFORM(cherryview),
.info = &(const struct intel_display_device_info) {
.has_hotplug = 1,
.has_gmch = 1,
@@ -646,14 +646,14 @@ static const enum intel_step skl_steppings[] = {
};
static const struct platform_desc skl_desc = {
- PLATFORM(SKYLAKE),
+ PLATFORM(skylake),
.subplatforms = (const struct subplatform_desc[]) {
{
- SUBPLATFORM(SKYLAKE, ULT),
+ SUBPLATFORM(skylake, ult),
.pciidlist = skl_ult_ids,
},
{
- SUBPLATFORM(SKYLAKE, ULX),
+ SUBPLATFORM(skylake, ulx),
.pciidlist = skl_ulx_ids,
},
{},
@@ -687,14 +687,14 @@ static const enum intel_step kbl_steppings[] = {
};
static const struct platform_desc kbl_desc = {
- PLATFORM(KABYLAKE),
+ PLATFORM(kabylake),
.subplatforms = (const struct subplatform_desc[]) {
{
- SUBPLATFORM(KABYLAKE, ULT),
+ SUBPLATFORM(kabylake, ult),
.pciidlist = kbl_ult_ids,
},
{
- SUBPLATFORM(KABYLAKE, ULX),
+ SUBPLATFORM(kabylake, ulx),
.pciidlist = kbl_ulx_ids,
},
{},
@@ -718,14 +718,14 @@ static const u16 cfl_ulx_ids[] = {
};
static const struct platform_desc cfl_desc = {
- PLATFORM(COFFEELAKE),
+ PLATFORM(coffeelake),
.subplatforms = (const struct subplatform_desc[]) {
{
- SUBPLATFORM(COFFEELAKE, ULT),
+ SUBPLATFORM(coffeelake, ult),
.pciidlist = cfl_ult_ids,
},
{
- SUBPLATFORM(COFFEELAKE, ULX),
+ SUBPLATFORM(coffeelake, ulx),
.pciidlist = cfl_ulx_ids,
},
{},
@@ -740,10 +740,10 @@ static const u16 cml_ult_ids[] = {
};
static const struct platform_desc cml_desc = {
- PLATFORM(COMETLAKE),
+ PLATFORM(cometlake),
.subplatforms = (const struct subplatform_desc[]) {
{
- SUBPLATFORM(COMETLAKE, ULT),
+ SUBPLATFORM(cometlake, ult),
.pciidlist = cml_ult_ids,
},
{},
@@ -782,7 +782,7 @@ static const enum intel_step bxt_steppings[] = {
};
static const struct platform_desc bxt_desc = {
- PLATFORM(BROXTON),
+ PLATFORM(broxton),
.info = &(const struct intel_display_device_info) {
GEN9_LP_DISPLAY,
.dbuf.size = 512 - 4, /* 4 blocks for bypass path allocation */
@@ -797,7 +797,7 @@ static const enum intel_step glk_steppings[] = {
};
static const struct platform_desc glk_desc = {
- PLATFORM(GEMINILAKE),
+ PLATFORM(geminilake),
.info = &(const struct intel_display_device_info) {
GEN9_LP_DISPLAY,
.dbuf.size = 1024 - 4, /* 4 blocks for bypass path allocation */
@@ -859,10 +859,10 @@ static const enum intel_step icl_steppings[] = {
};
static const struct platform_desc icl_desc = {
- PLATFORM(ICELAKE),
+ PLATFORM(icelake),
.subplatforms = (const struct subplatform_desc[]) {
{
- SUBPLATFORM(ICELAKE, PORT_F),
+ SUBPLATFORM(icelake, port_f),
.pciidlist = icl_port_f_ids,
},
{},
@@ -887,13 +887,13 @@ static const enum intel_step jsl_ehl_steppings[] = {
};
static const struct platform_desc jsl_desc = {
- PLATFORM(JASPERLAKE),
+ PLATFORM(jasperlake),
.info = &jsl_ehl_display,
STEP_INFO(jsl_ehl_steppings),
};
static const struct platform_desc ehl_desc = {
- PLATFORM(ELKHARTLAKE),
+ PLATFORM(elkhartlake),
.info = &jsl_ehl_display,
STEP_INFO(jsl_ehl_steppings),
};
@@ -959,10 +959,10 @@ static const enum intel_step tgl_uy_steppings[] = {
};
static const struct platform_desc tgl_desc = {
- PLATFORM(TIGERLAKE),
+ PLATFORM(tigerlake),
.subplatforms = (const struct subplatform_desc[]) {
{
- SUBPLATFORM(TIGERLAKE, UY),
+ SUBPLATFORM(tigerlake, uy),
.pciidlist = tgl_uy_ids,
STEP_INFO(tgl_uy_steppings),
},
@@ -987,7 +987,7 @@ static const enum intel_step dg1_steppings[] = {
};
static const struct platform_desc dg1_desc = {
- PLATFORM(DG1),
+ PLATFORM(dg1),
.info = &(const struct intel_display_device_info) {
XE_D_DISPLAY,
@@ -1004,7 +1004,7 @@ static const enum intel_step rkl_steppings[] = {
};
static const struct platform_desc rkl_desc = {
- PLATFORM(ROCKETLAKE),
+ PLATFORM(rocketlake),
.info = &(const struct intel_display_device_info) {
XE_D_DISPLAY,
.abox_mask = BIT(0),
@@ -1039,10 +1039,10 @@ static const enum intel_step adl_s_rpl_s_steppings[] = {
};
static const struct platform_desc adl_s_desc = {
- PLATFORM(ALDERLAKE_S),
+ PLATFORM(alderlake_s),
.subplatforms = (const struct subplatform_desc[]) {
{
- SUBPLATFORM(ALDERLAKE_S, RAPTORLAKE_S),
+ SUBPLATFORM(alderlake_s, raptorlake_s),
.pciidlist = adls_rpls_ids,
STEP_INFO(adl_s_rpl_s_steppings),
},
@@ -1146,20 +1146,20 @@ static const enum intel_step adl_p_rpl_pu_steppings[] = {
};
static const struct platform_desc adl_p_desc = {
- PLATFORM(ALDERLAKE_P),
+ PLATFORM(alderlake_p),
.subplatforms = (const struct subplatform_desc[]) {
{
- SUBPLATFORM(ALDERLAKE_P, ALDERLAKE_N),
+ SUBPLATFORM(alderlake_p, alderlake_n),
.pciidlist = adlp_adln_ids,
STEP_INFO(adl_p_adl_n_steppings),
},
{
- SUBPLATFORM(ALDERLAKE_P, RAPTORLAKE_P),
+ SUBPLATFORM(alderlake_p, raptorlake_p),
.pciidlist = adlp_rplp_ids,
STEP_INFO(adl_p_rpl_pu_steppings),
},
{
- SUBPLATFORM(ALDERLAKE_P, RAPTORLAKE_U),
+ SUBPLATFORM(alderlake_p, raptorlake_u),
.pciidlist = adlp_rplu_ids,
STEP_INFO(adl_p_rpl_pu_steppings),
},
@@ -1214,20 +1214,20 @@ static const enum intel_step dg2_g12_steppings[] = {
};
static const struct platform_desc dg2_desc = {
- PLATFORM(DG2),
+ PLATFORM(dg2),
.subplatforms = (const struct subplatform_desc[]) {
{
- SUBPLATFORM(DG2, G10),
+ SUBPLATFORM(dg2, g10),
.pciidlist = dg2_g10_ids,
STEP_INFO(dg2_g10_steppings),
},
{
- SUBPLATFORM(DG2, G11),
+ SUBPLATFORM(dg2, g11),
.pciidlist = dg2_g11_ids,
STEP_INFO(dg2_g11_steppings),
},
{
- SUBPLATFORM(DG2, G12),
+ SUBPLATFORM(dg2, g12),
.pciidlist = dg2_g12_ids,
STEP_INFO(dg2_g12_steppings),
},
@@ -1305,19 +1305,19 @@ static const struct intel_display_device_info xe2_hpd_display = {
* reported by the hardware.
*/
static const struct platform_desc mtl_desc = {
- PLATFORM(METEORLAKE),
+ PLATFORM(meteorlake),
};
static const struct platform_desc lnl_desc = {
- PLATFORM(LUNARLAKE),
+ PLATFORM(lunarlake),
};
static const struct platform_desc bmg_desc = {
- PLATFORM(BATTLEMAGE),
+ PLATFORM(battlemage),
};
static const struct platform_desc ptl_desc = {
- PLATFORM(PANTHERLAKE),
+ PLATFORM(pantherlake),
};
__diag_pop();
diff --git a/drivers/gpu/drm/i915/display/intel_display_device.h b/drivers/gpu/drm/i915/display/intel_display_device.h
index 479f0705f2f4..cef10babce30 100644
--- a/drivers/gpu/drm/i915/display/intel_display_device.h
+++ b/drivers/gpu/drm/i915/display/intel_display_device.h
@@ -22,81 +22,81 @@ struct drm_printer;
#define INTEL_DISPLAY_PLATFORMS(func) \
func(PLATFORM_UNINITIALIZED) \
/* Display ver 2 */ \
- func(I830) \
- func(I845G) \
- func(I85X) \
- func(I865G) \
+ func(i830) \
+ func(i845g) \
+ func(i85x) \
+ func(i865g) \
/* Display ver 3 */ \
- func(I915G) \
- func(I915GM) \
- func(I945G) \
- func(I945GM) \
- func(G33) \
- func(PINEVIEW) \
+ func(i915g) \
+ func(i915gm) \
+ func(i945g) \
+ func(i945gm) \
+ func(g33) \
+ func(pineview) \
/* Display ver 4 */ \
- func(I965G) \
- func(I965GM) \
- func(G45) \
- func(GM45) \
+ func(i965g) \
+ func(i965gm) \
+ func(g45) \
+ func(gm45) \
/* Display ver 5 */ \
- func(IRONLAKE) \
+ func(ironlake) \
/* Display ver 6 */ \
- func(SANDYBRIDGE) \
+ func(sandybridge) \
/* Display ver 7 */ \
- func(IVYBRIDGE) \
- func(VALLEYVIEW) \
- func(HASWELL) \
- func(HASWELL_ULT) \
- func(HASWELL_ULX) \
+ func(ivybridge) \
+ func(valleyview) \
+ func(haswell) \
+ func(haswell_ult) \
+ func(haswell_ulx) \
/* Display ver 8 */ \
- func(BROADWELL) \
- func(BROADWELL_ULT) \
- func(BROADWELL_ULX) \
- func(CHERRYVIEW) \
+ func(broadwell) \
+ func(broadwell_ult) \
+ func(broadwell_ulx) \
+ func(cherryview) \
/* Display ver 9 */ \
- func(SKYLAKE) \
- func(SKYLAKE_ULT) \
- func(SKYLAKE_ULX) \
- func(BROXTON) \
- func(KABYLAKE) \
- func(KABYLAKE_ULT) \
- func(KABYLAKE_ULX) \
- func(GEMINILAKE) \
- func(COFFEELAKE) \
- func(COFFEELAKE_ULT) \
- func(COFFEELAKE_ULX) \
- func(COMETLAKE) \
- func(COMETLAKE_ULT) \
- func(COMETLAKE_ULX) \
+ func(skylake) \
+ func(skylake_ult) \
+ func(skylake_ulx) \
+ func(broxton) \
+ func(kabylake) \
+ func(kabylake_ult) \
+ func(kabylake_ulx) \
+ func(geminilake) \
+ func(coffeelake) \
+ func(coffeelake_ult) \
+ func(coffeelake_ulx) \
+ func(cometlake) \
+ func(cometlake_ult) \
+ func(cometlake_ulx) \
/* Display ver 11 */ \
- func(ICELAKE) \
- func(ICELAKE_PORT_F) \
- func(JASPERLAKE) \
- func(ELKHARTLAKE) \
+ func(icelake) \
+ func(icelake_port_f) \
+ func(jasperlake) \
+ func(elkhartlake) \
/* Display ver 12 */ \
- func(TIGERLAKE) \
- func(TIGERLAKE_UY) \
- func(ROCKETLAKE) \
- func(DG1) \
- func(ALDERLAKE_S) \
- func(ALDERLAKE_S_RAPTORLAKE_S) \
+ func(tigerlake) \
+ func(tigerlake_uy) \
+ func(rocketlake) \
+ func(dg1) \
+ func(alderlake_s) \
+ func(alderlake_s_raptorlake_s) \
/* Display ver 13 */ \
- func(ALDERLAKE_P) \
- func(ALDERLAKE_P_ALDERLAKE_N) \
- func(ALDERLAKE_P_RAPTORLAKE_P) \
- func(ALDERLAKE_P_RAPTORLAKE_U) \
- func(DG2) \
- func(DG2_G10) \
- func(DG2_G11) \
- func(DG2_G12) \
+ func(alderlake_p) \
+ func(alderlake_p_alderlake_n) \
+ func(alderlake_p_raptorlake_p) \
+ func(alderlake_p_raptorlake_u) \
+ func(dg2) \
+ func(dg2_g10) \
+ func(dg2_g11) \
+ func(dg2_g12) \
/* Display ver 14 (based on GMD ID) */ \
- func(METEORLAKE) \
+ func(meteorlake) \
/* Display ver 20 (based on GMD ID) */ \
- func(LUNARLAKE) \
+ func(lunarlake) \
/* Display ver 14.1 (based on GMD ID) */ \
- func(BATTLEMAGE) \
+ func(battlemage) \
/* Display ver 30 (based on GMD ID) */ \
- func(PANTHERLAKE)
+ func(pantherlake)
#define __ENUM(x) INTEL_DISPLAY_ ## x,
--
2.39.5
^ permalink raw reply related [flat|nested] 21+ messages in thread
* [CI v4 v4 06/16] drm/i915/display: add display platforms structure with platform members
2024-10-24 12:33 [CI v4 v4 00/16] drm/i915/display: platform identification with display->platform.<platform> Jani Nikula
` (4 preceding siblings ...)
2024-10-24 12:33 ` [CI v4 v4 05/16] drm/i915/display: convert display platforms to lower case Jani Nikula
@ 2024-10-24 12:33 ` Jani Nikula
2024-10-24 12:33 ` [CI v4 v4 07/16] drm/i915/display: add platform member to struct intel_display Jani Nikula
` (13 subsequent siblings)
19 siblings, 0 replies; 21+ messages in thread
From: Jani Nikula @ 2024-10-24 12:33 UTC (permalink / raw)
To: intel-gfx, intel-xe
Cc: jani.nikula, rodrigo.vivi, lucas.demarchi, maarten.lankhorst
Add a structure with a bitfield member for each platform and
subplatform, and initialize them in platform and subplatform descs.
The structure also contains a bitmap in a union for easier manipulation
of the bits. This, in turn, requires a bit of trickery with
INTEL_DISPLAY_PLATFORMS() to count the number of bits required for
DECLARE_BITMAP().
Reviewed-by: Rodrigo Vivi <rodrigo.vivi@intel.com>
Signed-off-by: Jani Nikula <jani.nikula@intel.com>
---
.../drm/i915/display/intel_display_device.c | 4 ++++
.../drm/i915/display/intel_display_device.h | 19 +++++++++++++++++++
2 files changed, 23 insertions(+)
diff --git a/drivers/gpu/drm/i915/display/intel_display_device.c b/drivers/gpu/drm/i915/display/intel_display_device.c
index c51efc3a97d6..0e835f714bf5 100644
--- a/drivers/gpu/drm/i915/display/intel_display_device.c
+++ b/drivers/gpu/drm/i915/display/intel_display_device.c
@@ -31,6 +31,7 @@ struct stepping_desc {
.step_info.size = ARRAY_SIZE(_map)
struct subplatform_desc {
+ struct intel_display_platforms platforms;
enum intel_display_platform subplatform;
const char *name;
const u16 *pciidlist;
@@ -38,10 +39,12 @@ struct subplatform_desc {
};
#define SUBPLATFORM(_platform, _subplatform) \
+ .platforms._platform##_##_subplatform = 1, \
.subplatform = (INTEL_DISPLAY_##_platform##_##_subplatform), \
.name = #_subplatform
struct platform_desc {
+ struct intel_display_platforms platforms;
enum intel_display_platform platform;
const char *name;
const struct subplatform_desc *subplatforms;
@@ -50,6 +53,7 @@ struct platform_desc {
};
#define PLATFORM(_platform) \
+ .platforms._platform = 1, \
.platform = (INTEL_DISPLAY_##_platform), \
.name = #_platform
diff --git a/drivers/gpu/drm/i915/display/intel_display_device.h b/drivers/gpu/drm/i915/display/intel_display_device.h
index cef10babce30..fac361a4921b 100644
--- a/drivers/gpu/drm/i915/display/intel_display_device.h
+++ b/drivers/gpu/drm/i915/display/intel_display_device.h
@@ -6,6 +6,7 @@
#ifndef __INTEL_DISPLAY_DEVICE_H__
#define __INTEL_DISPLAY_DEVICE_H__
+#include <linux/bitops.h>
#include <linux/types.h>
#include "intel_display_conversion.h"
@@ -106,6 +107,24 @@ enum intel_display_platform {
#undef __ENUM
+#define __MEMBER(name) unsigned long name:1;
+#define __COUNT(x) 1 +
+
+#define __NUM_PLATFORMS (INTEL_DISPLAY_PLATFORMS(__COUNT) 0)
+
+struct intel_display_platforms {
+ union {
+ struct {
+ INTEL_DISPLAY_PLATFORMS(__MEMBER);
+ };
+ DECLARE_BITMAP(bitmap, __NUM_PLATFORMS);
+ };
+};
+
+#undef __MEMBER
+#undef __COUNT
+#undef __NUM_PLATFORMS
+
#define DEV_INFO_DISPLAY_FOR_EACH_FLAG(func) \
/* Keep in alphabetical order */ \
func(cursor_needs_physical); \
--
2.39.5
^ permalink raw reply related [flat|nested] 21+ messages in thread
* [CI v4 v4 07/16] drm/i915/display: add platform member to struct intel_display
2024-10-24 12:33 [CI v4 v4 00/16] drm/i915/display: platform identification with display->platform.<platform> Jani Nikula
` (5 preceding siblings ...)
2024-10-24 12:33 ` [CI v4 v4 06/16] drm/i915/display: add display platforms structure with platform members Jani Nikula
@ 2024-10-24 12:33 ` Jani Nikula
2024-10-24 12:33 ` [CI v4 v4 08/16] drm/i915/display: remove the display platform enum as unnecessary Jani Nikula
` (12 subsequent siblings)
19 siblings, 0 replies; 21+ messages in thread
From: Jani Nikula @ 2024-10-24 12:33 UTC (permalink / raw)
To: intel-gfx, intel-xe
Cc: jani.nikula, rodrigo.vivi, lucas.demarchi, maarten.lankhorst
Facilitate using display->platform.haswell and
display->platform.haswell_ult etc. for identifying platforms and
subplatforms.
Merge the platform and subplatform bitmaps together, and check that
there's no overlap.
v4:
- Lower case, s/is/platform/
v3:
- Fix sanity check on display->is after merging subplatform members
v2:
- Use bitmap ops
- Add some sanity checks with warnings
Reviewed-by: Rodrigo Vivi <rodrigo.vivi@intel.com>
Signed-off-by: Jani Nikula <jani.nikula@intel.com>
---
.../gpu/drm/i915/display/intel_display_core.h | 3 ++
.../drm/i915/display/intel_display_device.c | 35 +++++++++++++++++--
2 files changed, 36 insertions(+), 2 deletions(-)
diff --git a/drivers/gpu/drm/i915/display/intel_display_core.h b/drivers/gpu/drm/i915/display/intel_display_core.h
index 45697af25fa9..45b7c6900adc 100644
--- a/drivers/gpu/drm/i915/display/intel_display_core.h
+++ b/drivers/gpu/drm/i915/display/intel_display_core.h
@@ -284,6 +284,9 @@ struct intel_display {
/* drm device backpointer */
struct drm_device *drm;
+ /* Platform (and subplatform, if any) identification */
+ struct intel_display_platforms platform;
+
/* Display functions */
struct {
/* Top level crtc-ish functions */
diff --git a/drivers/gpu/drm/i915/display/intel_display_device.c b/drivers/gpu/drm/i915/display/intel_display_device.c
index 0e835f714bf5..c124df204166 100644
--- a/drivers/gpu/drm/i915/display/intel_display_device.c
+++ b/drivers/gpu/drm/i915/display/intel_display_device.c
@@ -1525,6 +1525,25 @@ static enum intel_step get_pre_gmdid_step(struct intel_display *display,
return step;
}
+/* Size of the entire bitmap, not the number of platforms */
+static unsigned int display_platforms_num_bits(void)
+{
+ return sizeof(((struct intel_display_platforms *)0)->bitmap) * BITS_PER_BYTE;
+}
+
+/* Number of platform bits set */
+static unsigned int display_platforms_weight(const struct intel_display_platforms *p)
+{
+ return bitmap_weight(p->bitmap, display_platforms_num_bits());
+}
+
+/* Merge the subplatform information from src to dst */
+static void display_platforms_or(struct intel_display_platforms *dst,
+ const struct intel_display_platforms *src)
+{
+ bitmap_or(dst->bitmap, dst->bitmap, src->bitmap, display_platforms_num_bits());
+}
+
void intel_display_device_probe(struct drm_i915_private *i915)
{
struct intel_display *display = &i915->display;
@@ -1564,13 +1583,25 @@ void intel_display_device_probe(struct drm_i915_private *i915)
&DISPLAY_INFO(i915)->__runtime_defaults,
sizeof(*DISPLAY_RUNTIME_INFO(i915)));
- drm_WARN_ON(&i915->drm, !desc->platform || !desc->name);
+ drm_WARN_ON(&i915->drm, !desc->platform || !desc->name ||
+ !display_platforms_weight(&desc->platforms));
DISPLAY_RUNTIME_INFO(i915)->platform = desc->platform;
+ display->platform = desc->platforms;
+
subdesc = find_subplatform_desc(pdev, desc);
if (subdesc) {
- drm_WARN_ON(&i915->drm, !subdesc->subplatform || !subdesc->name);
+ drm_WARN_ON(&i915->drm, !subdesc->subplatform || !subdesc->name ||
+ !display_platforms_weight(&subdesc->platforms));
DISPLAY_RUNTIME_INFO(i915)->subplatform = subdesc->subplatform;
+
+ display_platforms_or(&display->platform, &subdesc->platforms);
+
+ /* Ensure platform and subplatform are distinct */
+ drm_WARN_ON(&i915->drm,
+ display_platforms_weight(&display->platform) !=
+ display_platforms_weight(&desc->platforms) +
+ display_platforms_weight(&subdesc->platforms));
}
if (ip_ver.ver || ip_ver.rel || ip_ver.step) {
--
2.39.5
^ permalink raw reply related [flat|nested] 21+ messages in thread
* [CI v4 v4 08/16] drm/i915/display: remove the display platform enum as unnecessary
2024-10-24 12:33 [CI v4 v4 00/16] drm/i915/display: platform identification with display->platform.<platform> Jani Nikula
` (6 preceding siblings ...)
2024-10-24 12:33 ` [CI v4 v4 07/16] drm/i915/display: add platform member to struct intel_display Jani Nikula
@ 2024-10-24 12:33 ` Jani Nikula
2024-10-24 12:33 ` [CI v4 v4 09/16] drm/i915/display: add platform group for g4x Jani Nikula
` (11 subsequent siblings)
19 siblings, 0 replies; 21+ messages in thread
From: Jani Nikula @ 2024-10-24 12:33 UTC (permalink / raw)
To: intel-gfx, intel-xe
Cc: jani.nikula, rodrigo.vivi, lucas.demarchi, maarten.lankhorst
The display platform enums are not really needed for anything. Remove.
Without the enum, PLATFORM_UNINITIALIZED is also no longer needed for
keeping the first enum 0. Also need to switch from sp->subplatform to
sp->pciidlist as the check for array end.
Reviewed-by: Rodrigo Vivi <rodrigo.vivi@intel.com>
Signed-off-by: Jani Nikula <jani.nikula@intel.com>
---
drivers/gpu/drm/i915/display/intel_display_device.c | 12 +++---------
drivers/gpu/drm/i915/display/intel_display_device.h | 12 ------------
2 files changed, 3 insertions(+), 21 deletions(-)
diff --git a/drivers/gpu/drm/i915/display/intel_display_device.c b/drivers/gpu/drm/i915/display/intel_display_device.c
index c124df204166..e9d56f8aa3ab 100644
--- a/drivers/gpu/drm/i915/display/intel_display_device.c
+++ b/drivers/gpu/drm/i915/display/intel_display_device.c
@@ -32,7 +32,6 @@ struct stepping_desc {
struct subplatform_desc {
struct intel_display_platforms platforms;
- enum intel_display_platform subplatform;
const char *name;
const u16 *pciidlist;
struct stepping_desc step_info;
@@ -40,12 +39,10 @@ struct subplatform_desc {
#define SUBPLATFORM(_platform, _subplatform) \
.platforms._platform##_##_subplatform = 1, \
- .subplatform = (INTEL_DISPLAY_##_platform##_##_subplatform), \
.name = #_subplatform
struct platform_desc {
struct intel_display_platforms platforms;
- enum intel_display_platform platform;
const char *name;
const struct subplatform_desc *subplatforms;
const struct intel_display_device_info *info; /* NULL for GMD ID */
@@ -54,7 +51,6 @@ struct platform_desc {
#define PLATFORM(_platform) \
.platforms._platform = 1, \
- .platform = (INTEL_DISPLAY_##_platform), \
.name = #_platform
#define ID(id) (id)
@@ -1466,7 +1462,7 @@ find_subplatform_desc(struct pci_dev *pdev, const struct platform_desc *desc)
const struct subplatform_desc *sp;
const u16 *id;
- for (sp = desc->subplatforms; sp && sp->subplatform; sp++)
+ for (sp = desc->subplatforms; sp && sp->pciidlist; sp++)
for (id = sp->pciidlist; *id; id++)
if (*id == pdev->device)
return sp;
@@ -1583,17 +1579,15 @@ void intel_display_device_probe(struct drm_i915_private *i915)
&DISPLAY_INFO(i915)->__runtime_defaults,
sizeof(*DISPLAY_RUNTIME_INFO(i915)));
- drm_WARN_ON(&i915->drm, !desc->platform || !desc->name ||
+ drm_WARN_ON(&i915->drm, !desc->name ||
!display_platforms_weight(&desc->platforms));
- DISPLAY_RUNTIME_INFO(i915)->platform = desc->platform;
display->platform = desc->platforms;
subdesc = find_subplatform_desc(pdev, desc);
if (subdesc) {
- drm_WARN_ON(&i915->drm, !subdesc->subplatform || !subdesc->name ||
+ drm_WARN_ON(&i915->drm, !subdesc->name ||
!display_platforms_weight(&subdesc->platforms));
- DISPLAY_RUNTIME_INFO(i915)->subplatform = subdesc->subplatform;
display_platforms_or(&display->platform, &subdesc->platforms);
diff --git a/drivers/gpu/drm/i915/display/intel_display_device.h b/drivers/gpu/drm/i915/display/intel_display_device.h
index fac361a4921b..b240c28db2cb 100644
--- a/drivers/gpu/drm/i915/display/intel_display_device.h
+++ b/drivers/gpu/drm/i915/display/intel_display_device.h
@@ -21,7 +21,6 @@ struct drm_printer;
* platform.
*/
#define INTEL_DISPLAY_PLATFORMS(func) \
- func(PLATFORM_UNINITIALIZED) \
/* Display ver 2 */ \
func(i830) \
func(i845g) \
@@ -99,14 +98,6 @@ struct drm_printer;
/* Display ver 30 (based on GMD ID) */ \
func(pantherlake)
-#define __ENUM(x) INTEL_DISPLAY_ ## x,
-
-enum intel_display_platform {
- INTEL_DISPLAY_PLATFORMS(__ENUM)
-};
-
-#undef __ENUM
-
#define __MEMBER(name) unsigned long name:1;
#define __COUNT(x) 1 +
@@ -234,9 +225,6 @@ struct intel_display_platforms {
INTEL_DISPLAY_STEP(__i915) >= (since) && INTEL_DISPLAY_STEP(__i915) < (until))
struct intel_display_runtime_info {
- enum intel_display_platform platform;
- enum intel_display_platform subplatform;
-
struct intel_display_ip_ver {
u16 ver;
u16 rel;
--
2.39.5
^ permalink raw reply related [flat|nested] 21+ messages in thread
* [CI v4 v4 09/16] drm/i915/display: add platform group for g4x
2024-10-24 12:33 [CI v4 v4 00/16] drm/i915/display: platform identification with display->platform.<platform> Jani Nikula
` (7 preceding siblings ...)
2024-10-24 12:33 ` [CI v4 v4 08/16] drm/i915/display: remove the display platform enum as unnecessary Jani Nikula
@ 2024-10-24 12:33 ` Jani Nikula
2024-10-24 12:33 ` [CI v4 v4 10/16] drm/i915/display: add subplatform group for HSW/BDW ULT Jani Nikula
` (10 subsequent siblings)
19 siblings, 0 replies; 21+ messages in thread
From: Jani Nikula @ 2024-10-24 12:33 UTC (permalink / raw)
To: intel-gfx, intel-xe
Cc: jani.nikula, rodrigo.vivi, lucas.demarchi, maarten.lankhorst
Add support for defining aliases for platform groups, such as g4x that
covers both g45 and gm45.
Reviewed-by: Rodrigo Vivi <rodrigo.vivi@intel.com>
Signed-off-by: Jani Nikula <jani.nikula@intel.com>
---
drivers/gpu/drm/i915/display/intel_display_device.c | 9 +++++++++
drivers/gpu/drm/i915/display/intel_display_device.h | 1 +
2 files changed, 10 insertions(+)
diff --git a/drivers/gpu/drm/i915/display/intel_display_device.c b/drivers/gpu/drm/i915/display/intel_display_device.c
index e9d56f8aa3ab..50ffb31662b1 100644
--- a/drivers/gpu/drm/i915/display/intel_display_device.c
+++ b/drivers/gpu/drm/i915/display/intel_display_device.c
@@ -53,6 +53,13 @@ struct platform_desc {
.platforms._platform = 1, \
.name = #_platform
+/*
+ * Group platform alias that matches multiple platforms. For aliases such as g4x
+ * that covers both g45 and gm45.
+ */
+#define PLATFORM_GROUP(_platform) \
+ .platforms._platform = 1
+
#define ID(id) (id)
static const struct intel_display_device_info no_display = {};
@@ -387,6 +394,7 @@ static const struct platform_desc i965gm_desc = {
static const struct platform_desc g45_desc = {
PLATFORM(g45),
+ PLATFORM_GROUP(g4x),
.info = &(const struct intel_display_device_info) {
GEN4_DISPLAY,
@@ -396,6 +404,7 @@ static const struct platform_desc g45_desc = {
static const struct platform_desc gm45_desc = {
PLATFORM(gm45),
+ PLATFORM_GROUP(g4x),
.info = &(const struct intel_display_device_info) {
GEN4_DISPLAY,
.supports_tv = 1,
diff --git a/drivers/gpu/drm/i915/display/intel_display_device.h b/drivers/gpu/drm/i915/display/intel_display_device.h
index b240c28db2cb..745d03f49acf 100644
--- a/drivers/gpu/drm/i915/display/intel_display_device.h
+++ b/drivers/gpu/drm/i915/display/intel_display_device.h
@@ -38,6 +38,7 @@ struct drm_printer;
func(i965gm) \
func(g45) \
func(gm45) \
+ func(g4x) /* group alias for g45 and gm45 */ \
/* Display ver 5 */ \
func(ironlake) \
/* Display ver 6 */ \
--
2.39.5
^ permalink raw reply related [flat|nested] 21+ messages in thread
* [CI v4 v4 10/16] drm/i915/display: add subplatform group for HSW/BDW ULT
2024-10-24 12:33 [CI v4 v4 00/16] drm/i915/display: platform identification with display->platform.<platform> Jani Nikula
` (8 preceding siblings ...)
2024-10-24 12:33 ` [CI v4 v4 09/16] drm/i915/display: add platform group for g4x Jani Nikula
@ 2024-10-24 12:33 ` Jani Nikula
2024-10-24 12:33 ` [CI v4 v4 11/16] drm/i915/bios: use display->platform.<platform> instead of IS_<PLATFORM>() Jani Nikula
` (9 subsequent siblings)
19 siblings, 0 replies; 21+ messages in thread
From: Jani Nikula @ 2024-10-24 12:33 UTC (permalink / raw)
To: intel-gfx, intel-xe
Cc: jani.nikula, rodrigo.vivi, lucas.demarchi, maarten.lankhorst
Add support for defining aliases for subplatform groups, such as HSW/BDW
ULT that covers both ULT and ULX.
ULT is a special case, because we slightly abuse the ULT subplatform
both as a subplatform and group, but with the way this is defined, it
should be fairly clear.
This follows i915 core and IS_HASWELL_ULT()/IS_BROADWELL_ULT()
conventions, i.e. "is ULT" also matches ULX platforms.
Note: Pedantically, this should have been done earlier, but it's only
feasible now that we no longer have a subplatform enum and can actually
initialize multiple subplatforms.
v2: Use the subplatform group idea
Reviewed-by: Rodrigo Vivi <rodrigo.vivi@intel.com>
Signed-off-by: Jani Nikula <jani.nikula@intel.com>
---
drivers/gpu/drm/i915/display/intel_display_device.c | 13 +++++++++++++
1 file changed, 13 insertions(+)
diff --git a/drivers/gpu/drm/i915/display/intel_display_device.c b/drivers/gpu/drm/i915/display/intel_display_device.c
index 50ffb31662b1..35abb4eaa0ef 100644
--- a/drivers/gpu/drm/i915/display/intel_display_device.c
+++ b/drivers/gpu/drm/i915/display/intel_display_device.c
@@ -41,6 +41,13 @@ struct subplatform_desc {
.platforms._platform##_##_subplatform = 1, \
.name = #_subplatform
+/*
+ * Group subplatform alias that matches multiple subplatforms. For making ult
+ * cover both ult and ulx on HSW/BDW.
+ */
+#define SUBPLATFORM_GROUP(_platform, _subplatform) \
+ .platforms._platform##_##_subplatform = 1
+
struct platform_desc {
struct intel_display_platforms platforms;
const char *name;
@@ -510,12 +517,15 @@ static const u16 hsw_ulx_ids[] = {
static const struct platform_desc hsw_desc = {
PLATFORM(haswell),
.subplatforms = (const struct subplatform_desc[]) {
+ /* Special case: Use ult both as group and subplatform. */
{
SUBPLATFORM(haswell, ult),
+ SUBPLATFORM_GROUP(haswell, ult),
.pciidlist = hsw_ult_ids,
},
{
SUBPLATFORM(haswell, ulx),
+ SUBPLATFORM_GROUP(haswell, ult),
.pciidlist = hsw_ulx_ids,
},
{},
@@ -560,12 +570,15 @@ static const u16 bdw_ulx_ids[] = {
static const struct platform_desc bdw_desc = {
PLATFORM(broadwell),
.subplatforms = (const struct subplatform_desc[]) {
+ /* Special case: Use ult both as group and subplatform. */
{
SUBPLATFORM(broadwell, ult),
+ SUBPLATFORM_GROUP(broadwell, ult),
.pciidlist = bdw_ult_ids,
},
{
SUBPLATFORM(broadwell, ulx),
+ SUBPLATFORM_GROUP(broadwell, ult),
.pciidlist = bdw_ulx_ids,
},
{},
--
2.39.5
^ permalink raw reply related [flat|nested] 21+ messages in thread
* [CI v4 v4 11/16] drm/i915/bios: use display->platform.<platform> instead of IS_<PLATFORM>()
2024-10-24 12:33 [CI v4 v4 00/16] drm/i915/display: platform identification with display->platform.<platform> Jani Nikula
` (9 preceding siblings ...)
2024-10-24 12:33 ` [CI v4 v4 10/16] drm/i915/display: add subplatform group for HSW/BDW ULT Jani Nikula
@ 2024-10-24 12:33 ` Jani Nikula
2024-10-24 12:33 ` [CI v4 v4 12/16] drm/i915/pps: " Jani Nikula
` (8 subsequent siblings)
19 siblings, 0 replies; 21+ messages in thread
From: Jani Nikula @ 2024-10-24 12:33 UTC (permalink / raw)
To: intel-gfx, intel-xe
Cc: jani.nikula, rodrigo.vivi, lucas.demarchi, maarten.lankhorst
Switch to using the new display->platform.<platform> members for
platform identification in display code.
Reviewed-by: Rodrigo Vivi <rodrigo.vivi@intel.com>
Signed-off-by: Jani Nikula <jani.nikula@intel.com>
---
drivers/gpu/drm/i915/display/intel_bios.c | 40 +++++++++--------------
1 file changed, 15 insertions(+), 25 deletions(-)
diff --git a/drivers/gpu/drm/i915/display/intel_bios.c b/drivers/gpu/drm/i915/display/intel_bios.c
index 9967b65e3cf6..ef3fc831ac88 100644
--- a/drivers/gpu/drm/i915/display/intel_bios.c
+++ b/drivers/gpu/drm/i915/display/intel_bios.c
@@ -1169,7 +1169,6 @@ static int intel_bios_ssc_frequency(struct intel_display *display,
static void
parse_general_features(struct intel_display *display)
{
- struct drm_i915_private *i915 = to_i915(display->drm);
const struct bdb_general_features *general;
general = bdb_find_section(display, BDB_GENERAL_FEATURES);
@@ -1179,7 +1178,7 @@ parse_general_features(struct intel_display *display)
display->vbt.int_tv_support = general->int_tv_support;
/* int_crt_support can't be trusted on earlier platforms */
if (display->vbt.version >= 155 &&
- (HAS_DDI(display) || IS_VALLEYVIEW(i915)))
+ (HAS_DDI(display) || display->platform.valleyview))
display->vbt.int_crt_support = general->int_crt_support;
display->vbt.lvds_use_ssc = general->enable_ssc;
display->vbt.lvds_ssc_freq =
@@ -1542,7 +1541,6 @@ static void
parse_psr(struct intel_display *display,
struct intel_panel *panel)
{
- struct drm_i915_private *i915 = to_i915(display->drm);
const struct bdb_psr *psr;
const struct psr_table *psr_table;
int panel_type = panel->vbt.panel_type;
@@ -1567,7 +1565,7 @@ parse_psr(struct intel_display *display,
* Old decimal value is wake up time in multiples of 100 us.
*/
if (display->vbt.version >= 205 &&
- (DISPLAY_VER(display) >= 9 && !IS_BROXTON(i915))) {
+ (DISPLAY_VER(display) >= 9 && !display->platform.broxton)) {
switch (psr_table->tp1_wakeup_time) {
case 0:
panel->vbt.psr.tp1_wakeup_time_us = 500;
@@ -2029,11 +2027,9 @@ static void icl_fixup_mipi_sequences(struct intel_display *display,
static void fixup_mipi_sequences(struct intel_display *display,
struct intel_panel *panel)
{
- struct drm_i915_private *i915 = to_i915(display->drm);
-
if (DISPLAY_VER(display) >= 11)
icl_fixup_mipi_sequences(display, panel);
- else if (IS_VALLEYVIEW(i915))
+ else if (display->platform.valleyview)
vlv_fixup_mipi_sequences(display, panel);
}
@@ -2243,15 +2239,15 @@ static u8 map_ddc_pin(struct intel_display *display, u8 vbt_pin)
const u8 *ddc_pin_map;
int i, n_entries;
- if (INTEL_PCH_TYPE(i915) >= PCH_MTL || IS_ALDERLAKE_P(i915)) {
+ if (INTEL_PCH_TYPE(i915) >= PCH_MTL || display->platform.alderlake_p) {
ddc_pin_map = adlp_ddc_pin_map;
n_entries = ARRAY_SIZE(adlp_ddc_pin_map);
- } else if (IS_ALDERLAKE_S(i915)) {
+ } else if (display->platform.alderlake_s) {
ddc_pin_map = adls_ddc_pin_map;
n_entries = ARRAY_SIZE(adls_ddc_pin_map);
} else if (INTEL_PCH_TYPE(i915) >= PCH_DG1) {
return vbt_pin;
- } else if (IS_ROCKETLAKE(i915) && INTEL_PCH_TYPE(i915) == PCH_TGP) {
+ } else if (display->platform.rocketlake && INTEL_PCH_TYPE(i915) == PCH_TGP) {
ddc_pin_map = rkl_pch_tgp_ddc_pin_map;
n_entries = ARRAY_SIZE(rkl_pch_tgp_ddc_pin_map);
} else if (HAS_PCH_TGP(i915) && DISPLAY_VER(display) == 9) {
@@ -2334,7 +2330,6 @@ static enum port __dvo_port_to_port(int n_ports, int n_dvo,
static enum port dvo_port_to_port(struct intel_display *display,
u8 dvo_port)
{
- struct drm_i915_private *i915 = to_i915(display->drm);
/*
* Each DDI port can have more than one value on the "DVO Port" field,
* so look for all the possible values for each port.
@@ -2391,12 +2386,12 @@ static enum port dvo_port_to_port(struct intel_display *display,
ARRAY_SIZE(xelpd_port_mapping[0]),
xelpd_port_mapping,
dvo_port);
- else if (IS_ALDERLAKE_S(i915))
+ else if (display->platform.alderlake_s)
return __dvo_port_to_port(ARRAY_SIZE(adls_port_mapping),
ARRAY_SIZE(adls_port_mapping[0]),
adls_port_mapping,
dvo_port);
- else if (IS_DG1(i915) || IS_ROCKETLAKE(i915))
+ else if (display->platform.dg1 || display->platform.rocketlake)
return __dvo_port_to_port(ARRAY_SIZE(rkl_port_mapping),
ARRAY_SIZE(rkl_port_mapping[0]),
rkl_port_mapping,
@@ -2519,7 +2514,6 @@ static void sanitize_hdmi_level_shift(struct intel_bios_encoder_data *devdata,
enum port port)
{
struct intel_display *display = devdata->display;
- struct drm_i915_private *i915 = to_i915(display->drm);
if (!intel_bios_encoder_supports_dvi(devdata))
return;
@@ -2529,7 +2523,7 @@ static void sanitize_hdmi_level_shift(struct intel_bios_encoder_data *devdata,
* with a HSW VBT where the level shifter value goes
* up to 11, whereas the BDW max is 9.
*/
- if (IS_BROADWELL(i915) && devdata->child.hdmi_level_shifter_value > 9) {
+ if (display->platform.broadwell && devdata->child.hdmi_level_shifter_value > 9) {
drm_dbg_kms(display->drm,
"Bogus port %c VBT HDMI level shift %d, adjusting to %d\n",
port_name(port), devdata->child.hdmi_level_shifter_value, 9);
@@ -2618,14 +2612,13 @@ int intel_bios_hdmi_max_tmds_clock(const struct intel_bios_encoder_data *devdata
static bool is_port_valid(struct intel_display *display, enum port port)
{
- struct drm_i915_private *i915 = to_i915(display->drm);
/*
* On some ICL SKUs port F is not present, but broken VBTs mark
* the port as present. Only try to initialize port F for the
* SKUs that may actually have it.
*/
- if (port == PORT_F && IS_ICELAKE(i915))
- return IS_ICL_WITH_PORT_F(i915);
+ if (port == PORT_F && display->platform.icelake)
+ return display->platform.icelake_port_f;
return true;
}
@@ -2723,9 +2716,7 @@ static void parse_ddi_port(struct intel_bios_encoder_data *devdata)
static bool has_ddi_port_info(struct intel_display *display)
{
- struct drm_i915_private *i915 = to_i915(display->drm);
-
- return DISPLAY_VER(display) >= 5 || IS_G4X(i915);
+ return DISPLAY_VER(display) >= 5 || display->platform.g4x;
}
static void parse_ddi_ports(struct intel_display *display)
@@ -2907,7 +2898,7 @@ init_vbt_missing_defaults(struct intel_display *display)
unsigned int ports = DISPLAY_RUNTIME_INFO(display)->port_mask;
enum port port;
- if (!HAS_DDI(display) && !IS_CHERRYVIEW(i915))
+ if (!HAS_DDI(display) && !display->platform.cherryview)
return;
for_each_port_masked(port, ports) {
@@ -3603,17 +3594,16 @@ static const u8 direct_aux_ch_map[] = {
static enum aux_ch map_aux_ch(struct intel_display *display, u8 aux_channel)
{
- struct drm_i915_private *i915 = to_i915(display->drm);
const u8 *aux_ch_map;
int i, n_entries;
if (DISPLAY_VER(display) >= 13) {
aux_ch_map = adlp_aux_ch_map;
n_entries = ARRAY_SIZE(adlp_aux_ch_map);
- } else if (IS_ALDERLAKE_S(i915)) {
+ } else if (display->platform.alderlake_s) {
aux_ch_map = adls_aux_ch_map;
n_entries = ARRAY_SIZE(adls_aux_ch_map);
- } else if (IS_DG1(i915) || IS_ROCKETLAKE(i915)) {
+ } else if (display->platform.dg1 || display->platform.rocketlake) {
aux_ch_map = rkl_aux_ch_map;
n_entries = ARRAY_SIZE(rkl_aux_ch_map);
} else {
--
2.39.5
^ permalink raw reply related [flat|nested] 21+ messages in thread
* [CI v4 v4 12/16] drm/i915/pps: use display->platform.<platform> instead of IS_<PLATFORM>()
2024-10-24 12:33 [CI v4 v4 00/16] drm/i915/display: platform identification with display->platform.<platform> Jani Nikula
` (10 preceding siblings ...)
2024-10-24 12:33 ` [CI v4 v4 11/16] drm/i915/bios: use display->platform.<platform> instead of IS_<PLATFORM>() Jani Nikula
@ 2024-10-24 12:33 ` Jani Nikula
2024-10-24 12:33 ` [CI v4 v4 13/16] drm/i915/tv: " Jani Nikula
` (7 subsequent siblings)
19 siblings, 0 replies; 21+ messages in thread
From: Jani Nikula @ 2024-10-24 12:33 UTC (permalink / raw)
To: intel-gfx, intel-xe
Cc: jani.nikula, rodrigo.vivi, lucas.demarchi, maarten.lankhorst
Switch to using the new display->platform.<platform> members for
platform identification in display code.
Reviewed-by: Rodrigo Vivi <rodrigo.vivi@intel.com>
Signed-off-by: Jani Nikula <jani.nikula@intel.com>
---
drivers/gpu/drm/i915/display/intel_pps.c | 47 ++++++++++--------------
1 file changed, 20 insertions(+), 27 deletions(-)
diff --git a/drivers/gpu/drm/i915/display/intel_pps.c b/drivers/gpu/drm/i915/display/intel_pps.c
index ffeee9daa568..4bb7461e4616 100644
--- a/drivers/gpu/drm/i915/display/intel_pps.c
+++ b/drivers/gpu/drm/i915/display/intel_pps.c
@@ -29,10 +29,9 @@ static void pps_init_registers(struct intel_dp *intel_dp, bool force_disable_vdd
static const char *pps_name(struct intel_dp *intel_dp)
{
struct intel_display *display = to_intel_display(intel_dp);
- struct drm_i915_private *i915 = to_i915(display->drm);
struct intel_pps *pps = &intel_dp->pps;
- if (IS_VALLEYVIEW(i915) || IS_CHERRYVIEW(i915)) {
+ if (display->platform.valleyview || display->platform.cherryview) {
switch (pps->vlv_pps_pipe) {
case INVALID_PIPE:
/*
@@ -122,7 +121,7 @@ vlv_power_sequencer_kick(struct intel_dp *intel_dp)
DP |= DP_PORT_WIDTH(1);
DP |= DP_LINK_TRAIN_PAT_1;
- if (IS_CHERRYVIEW(dev_priv))
+ if (display->platform.cherryview)
DP |= DP_PIPE_SEL_CHV(pipe);
else
DP |= DP_PIPE_SEL(pipe);
@@ -134,7 +133,7 @@ vlv_power_sequencer_kick(struct intel_dp *intel_dp)
* So enable temporarily it if it's not already enabled.
*/
if (!pll_enabled) {
- release_cl_override = IS_CHERRYVIEW(dev_priv) &&
+ release_cl_override = display->platform.cherryview &&
!chv_phy_powergate_ch(dev_priv, phy, ch, true);
if (vlv_force_pll_on(dev_priv, pipe, vlv_get_dpll(dev_priv))) {
@@ -356,10 +355,10 @@ static int intel_num_pps(struct intel_display *display)
{
struct drm_i915_private *i915 = to_i915(display->drm);
- if (IS_VALLEYVIEW(i915) || IS_CHERRYVIEW(i915))
+ if (display->platform.valleyview || display->platform.cherryview)
return 2;
- if (IS_GEMINILAKE(i915) || IS_BROXTON(i915))
+ if (display->platform.geminilake || display->platform.broxton)
return 2;
if (INTEL_PCH_TYPE(i915) >= PCH_MTL)
@@ -406,11 +405,10 @@ pps_initial_setup(struct intel_dp *intel_dp)
struct intel_display *display = to_intel_display(intel_dp);
struct intel_encoder *encoder = &dp_to_dig_port(intel_dp)->base;
struct intel_connector *connector = intel_dp->attached_connector;
- struct drm_i915_private *i915 = to_i915(encoder->base.dev);
lockdep_assert_held(&display->pps.mutex);
- if (IS_VALLEYVIEW(i915) || IS_CHERRYVIEW(i915)) {
+ if (display->platform.valleyview || display->platform.cherryview) {
vlv_initial_power_sequencer_setup(intel_dp);
return true;
}
@@ -509,9 +507,9 @@ static void intel_pps_get_registers(struct intel_dp *intel_dp,
memset(regs, 0, sizeof(*regs));
- if (IS_VALLEYVIEW(dev_priv) || IS_CHERRYVIEW(dev_priv))
+ if (display->platform.valleyview || display->platform.cherryview)
pps_idx = vlv_power_sequencer_pipe(intel_dp);
- else if (IS_GEMINILAKE(dev_priv) || IS_BROXTON(dev_priv))
+ else if (display->platform.geminilake || display->platform.broxton)
pps_idx = bxt_power_sequencer_idx(intel_dp);
else
pps_idx = intel_dp->pps.pps_idx;
@@ -522,7 +520,7 @@ static void intel_pps_get_registers(struct intel_dp *intel_dp,
regs->pp_off = PP_OFF_DELAYS(display, pps_idx);
/* Cycle delay moved from PP_DIVISOR to PP_CONTROL */
- if (IS_GEMINILAKE(dev_priv) || IS_BROXTON(dev_priv) ||
+ if (display->platform.geminilake || display->platform.broxton ||
INTEL_PCH_TYPE(dev_priv) >= PCH_CNP)
regs->pp_div = INVALID_MMIO_REG;
else
@@ -552,11 +550,10 @@ _pp_stat_reg(struct intel_dp *intel_dp)
static bool edp_have_panel_power(struct intel_dp *intel_dp)
{
struct intel_display *display = to_intel_display(intel_dp);
- struct drm_i915_private *dev_priv = to_i915(display->drm);
lockdep_assert_held(&display->pps.mutex);
- if ((IS_VALLEYVIEW(dev_priv) || IS_CHERRYVIEW(dev_priv)) &&
+ if ((display->platform.valleyview || display->platform.cherryview) &&
intel_dp->pps.vlv_pps_pipe == INVALID_PIPE)
return false;
@@ -566,11 +563,10 @@ static bool edp_have_panel_power(struct intel_dp *intel_dp)
static bool edp_have_panel_vdd(struct intel_dp *intel_dp)
{
struct intel_display *display = to_intel_display(intel_dp);
- struct drm_i915_private *dev_priv = to_i915(display->drm);
lockdep_assert_held(&display->pps.mutex);
- if ((IS_VALLEYVIEW(dev_priv) || IS_CHERRYVIEW(dev_priv)) &&
+ if ((display->platform.valleyview || display->platform.cherryview) &&
intel_dp->pps.vlv_pps_pipe == INVALID_PIPE)
return false;
@@ -953,7 +949,6 @@ void intel_pps_vdd_off_unlocked(struct intel_dp *intel_dp, bool sync)
void intel_pps_on_unlocked(struct intel_dp *intel_dp)
{
struct intel_display *display = to_intel_display(intel_dp);
- struct drm_i915_private *dev_priv = to_i915(display->drm);
u32 pp;
i915_reg_t pp_ctrl_reg;
@@ -978,7 +973,7 @@ void intel_pps_on_unlocked(struct intel_dp *intel_dp)
pp_ctrl_reg = _pp_ctrl_reg(intel_dp);
pp = ilk_get_pp_control(intel_dp);
- if (IS_IRONLAKE(dev_priv)) {
+ if (display->platform.ironlake) {
/* ILK workaround: disable reset around power sequence */
pp &= ~PANEL_POWER_RESET;
intel_de_write(display, pp_ctrl_reg, pp);
@@ -994,7 +989,7 @@ void intel_pps_on_unlocked(struct intel_dp *intel_dp)
0, PCH_DPLSUNIT_CLOCK_GATE_DISABLE);
pp |= PANEL_POWER_ON;
- if (!IS_IRONLAKE(dev_priv))
+ if (!display->platform.ironlake)
pp |= PANEL_POWER_RESET;
intel_de_write(display, pp_ctrl_reg, pp);
@@ -1007,7 +1002,7 @@ void intel_pps_on_unlocked(struct intel_dp *intel_dp)
intel_de_rmw(display, SOUTH_DSPCLK_GATE_D,
PCH_DPLSUNIT_CLOCK_GATE_DISABLE, 0);
- if (IS_IRONLAKE(dev_priv)) {
+ if (display->platform.ironlake) {
pp |= PANEL_POWER_RESET; /* restore panel reset bit */
intel_de_write(display, pp_ctrl_reg, pp);
intel_de_posting_read(display, pp_ctrl_reg);
@@ -1627,7 +1622,7 @@ static void pps_init_registers(struct intel_dp *intel_dp, bool force_disable_vdd
/* Haswell doesn't have any port selection bits for the panel
* power sequencer any more. */
- if (IS_VALLEYVIEW(dev_priv) || IS_CHERRYVIEW(dev_priv)) {
+ if (display->platform.valleyview || display->platform.cherryview) {
port_sel = PANEL_PORT_SELECT_VLV(port);
} else if (HAS_PCH_IBX(dev_priv) || HAS_PCH_CPT(dev_priv)) {
switch (port) {
@@ -1674,7 +1669,6 @@ static void pps_init_registers(struct intel_dp *intel_dp, bool force_disable_vdd
void intel_pps_encoder_reset(struct intel_dp *intel_dp)
{
struct intel_display *display = to_intel_display(intel_dp);
- struct drm_i915_private *i915 = to_i915(display->drm);
intel_wakeref_t wakeref;
if (!intel_dp_is_edp(intel_dp))
@@ -1685,7 +1679,7 @@ void intel_pps_encoder_reset(struct intel_dp *intel_dp)
* Reinit the power sequencer also on the resume path, in case
* BIOS did something nasty with it.
*/
- if (IS_VALLEYVIEW(i915) || IS_CHERRYVIEW(i915))
+ if (display->platform.valleyview || display->platform.cherryview)
vlv_initial_power_sequencer_setup(intel_dp);
pps_init_delays(intel_dp);
@@ -1721,11 +1715,10 @@ bool intel_pps_init(struct intel_dp *intel_dp)
static void pps_init_late(struct intel_dp *intel_dp)
{
struct intel_display *display = to_intel_display(intel_dp);
- struct drm_i915_private *i915 = to_i915(display->drm);
struct intel_encoder *encoder = &dp_to_dig_port(intel_dp)->base;
struct intel_connector *connector = intel_dp->attached_connector;
- if (IS_VALLEYVIEW(i915) || IS_CHERRYVIEW(i915))
+ if (display->platform.valleyview || display->platform.cherryview)
return;
if (intel_num_pps(display) < 2)
@@ -1783,9 +1776,9 @@ void intel_pps_setup(struct intel_display *display)
{
struct drm_i915_private *i915 = to_i915(display->drm);
- if (HAS_PCH_SPLIT(i915) || IS_GEMINILAKE(i915) || IS_BROXTON(i915))
+ if (HAS_PCH_SPLIT(i915) || display->platform.geminilake || display->platform.broxton)
display->pps.mmio_base = PCH_PPS_BASE;
- else if (IS_VALLEYVIEW(i915) || IS_CHERRYVIEW(i915))
+ else if (display->platform.valleyview || display->platform.cherryview)
display->pps.mmio_base = VLV_PPS_BASE;
else
display->pps.mmio_base = PPS_BASE;
@@ -1857,7 +1850,7 @@ void assert_pps_unlocked(struct intel_display *display, enum pipe pipe)
MISSING_CASE(port_sel);
break;
}
- } else if (IS_VALLEYVIEW(dev_priv) || IS_CHERRYVIEW(dev_priv)) {
+ } else if (display->platform.valleyview || display->platform.cherryview) {
/* presumably write lock depends on pipe, not port select */
pp_reg = PP_CONTROL(display, pipe);
panel_pipe = pipe;
--
2.39.5
^ permalink raw reply related [flat|nested] 21+ messages in thread
* [CI v4 v4 13/16] drm/i915/tv: use display->platform.<platform> instead of IS_<PLATFORM>()
2024-10-24 12:33 [CI v4 v4 00/16] drm/i915/display: platform identification with display->platform.<platform> Jani Nikula
` (11 preceding siblings ...)
2024-10-24 12:33 ` [CI v4 v4 12/16] drm/i915/pps: " Jani Nikula
@ 2024-10-24 12:33 ` Jani Nikula
2024-10-24 12:33 ` [CI v4 v4 14/16] drm/i915/vga: " Jani Nikula
` (6 subsequent siblings)
19 siblings, 0 replies; 21+ messages in thread
From: Jani Nikula @ 2024-10-24 12:33 UTC (permalink / raw)
To: intel-gfx, intel-xe
Cc: jani.nikula, rodrigo.vivi, lucas.demarchi, maarten.lankhorst
Switch to using the new display->platform.<platform> members for
platform identification in display code.
Reviewed-by: Rodrigo Vivi <rodrigo.vivi@intel.com>
Signed-off-by: Jani Nikula <jani.nikula@intel.com>
---
drivers/gpu/drm/i915/display/intel_tv.c | 10 ++++------
1 file changed, 4 insertions(+), 6 deletions(-)
diff --git a/drivers/gpu/drm/i915/display/intel_tv.c b/drivers/gpu/drm/i915/display/intel_tv.c
index e40aff490486..bfd16054ca05 100644
--- a/drivers/gpu/drm/i915/display/intel_tv.c
+++ b/drivers/gpu/drm/i915/display/intel_tv.c
@@ -1093,7 +1093,6 @@ intel_tv_get_config(struct intel_encoder *encoder,
struct intel_crtc_state *pipe_config)
{
struct intel_display *display = to_intel_display(encoder);
- struct drm_i915_private *dev_priv = to_i915(encoder->base.dev);
struct drm_display_mode *adjusted_mode =
&pipe_config->hw.adjusted_mode;
struct drm_display_mode mode = {};
@@ -1167,7 +1166,7 @@ intel_tv_get_config(struct intel_encoder *encoder,
adjusted_mode->crtc_clock /= 2;
/* pixel counter doesn't work on i965gm TV output */
- if (IS_I965GM(dev_priv))
+ if (display->platform.i965gm)
pipe_config->mode_flags |=
I915_MODE_FLAG_USE_SCANLINE_COUNTER;
}
@@ -1197,7 +1196,6 @@ intel_tv_compute_config(struct intel_encoder *encoder,
struct intel_atomic_state *state =
to_intel_atomic_state(pipe_config->uapi.state);
struct intel_crtc *crtc = to_intel_crtc(pipe_config->uapi.crtc);
- struct drm_i915_private *dev_priv = to_i915(encoder->base.dev);
struct intel_tv_connector_state *tv_conn_state =
to_intel_tv_connector_state(conn_state);
const struct tv_mode *tv_mode = intel_tv_mode_find(conn_state);
@@ -1349,7 +1347,7 @@ intel_tv_compute_config(struct intel_encoder *encoder,
adjusted_mode->name[0] = '\0';
/* pixel counter doesn't work on i965gm TV output */
- if (IS_I965GM(dev_priv))
+ if (display->platform.i965gm)
pipe_config->mode_flags |=
I915_MODE_FLAG_USE_SCANLINE_COUNTER;
@@ -1525,7 +1523,7 @@ static void intel_tv_pre_enable(struct intel_atomic_state *state,
tv_mode->dda3_inc << TV_SCDDA3_INC_SHIFT;
/* Enable two fixes for the chips that need them. */
- if (IS_I915GM(dev_priv))
+ if (display->platform.i915gm)
tv_ctl |= TV_ENC_C0_FIX | TV_ENC_SDP_FIX;
set_tv_mode_timings(display, tv_mode, burst_ena);
@@ -1627,7 +1625,7 @@ intel_tv_detect_type(struct intel_tv *intel_tv,
* The TV sense state should be cleared to zero on cantiga platform. Otherwise
* the TV is misdetected. This is hardware requirement.
*/
- if (IS_GM45(dev_priv))
+ if (display->platform.gm45)
tv_dac &= ~(TVDAC_STATE_CHG_EN | TVDAC_A_SENSE_CTL |
TVDAC_B_SENSE_CTL | TVDAC_C_SENSE_CTL);
--
2.39.5
^ permalink raw reply related [flat|nested] 21+ messages in thread
* [CI v4 v4 14/16] drm/i915/vga: use display->platform.<platform> instead of IS_<PLATFORM>()
2024-10-24 12:33 [CI v4 v4 00/16] drm/i915/display: platform identification with display->platform.<platform> Jani Nikula
` (12 preceding siblings ...)
2024-10-24 12:33 ` [CI v4 v4 13/16] drm/i915/tv: " Jani Nikula
@ 2024-10-24 12:33 ` Jani Nikula
2024-10-24 12:33 ` [CI v4 v4 15/16] drm/i915/vblank: drop unnecessary i915 local variable Jani Nikula
` (5 subsequent siblings)
19 siblings, 0 replies; 21+ messages in thread
From: Jani Nikula @ 2024-10-24 12:33 UTC (permalink / raw)
To: intel-gfx, intel-xe
Cc: jani.nikula, rodrigo.vivi, lucas.demarchi, maarten.lankhorst
Switch to using the new display->platform.<platform> members for
platform identification in display code.
Reviewed-by: Rodrigo Vivi <rodrigo.vivi@intel.com>
Signed-off-by: Jani Nikula <jani.nikula@intel.com>
---
drivers/gpu/drm/i915/display/intel_vga.c | 4 +---
1 file changed, 1 insertion(+), 3 deletions(-)
diff --git a/drivers/gpu/drm/i915/display/intel_vga.c b/drivers/gpu/drm/i915/display/intel_vga.c
index 2c76a0176a35..fd18dd07ae49 100644
--- a/drivers/gpu/drm/i915/display/intel_vga.c
+++ b/drivers/gpu/drm/i915/display/intel_vga.c
@@ -16,9 +16,7 @@
static i915_reg_t intel_vga_cntrl_reg(struct intel_display *display)
{
- struct drm_i915_private *i915 = to_i915(display->drm);
-
- if (IS_VALLEYVIEW(i915) || IS_CHERRYVIEW(i915))
+ if (display->platform.valleyview || display->platform.cherryview)
return VLV_VGACNTRL;
else if (DISPLAY_VER(display) >= 5)
return CPU_VGACNTRL;
--
2.39.5
^ permalink raw reply related [flat|nested] 21+ messages in thread
* [CI v4 v4 15/16] drm/i915/vblank: drop unnecessary i915 local variable
2024-10-24 12:33 [CI v4 v4 00/16] drm/i915/display: platform identification with display->platform.<platform> Jani Nikula
` (13 preceding siblings ...)
2024-10-24 12:33 ` [CI v4 v4 14/16] drm/i915/vga: " Jani Nikula
@ 2024-10-24 12:33 ` Jani Nikula
2024-10-24 12:33 ` [CI v4 v4 16/16] drm/i915/vblank: use display->platform.<platform> instead of IS_<PLATFORM>() Jani Nikula
` (4 subsequent siblings)
19 siblings, 0 replies; 21+ messages in thread
From: Jani Nikula @ 2024-10-24 12:33 UTC (permalink / raw)
To: intel-gfx, intel-xe
Cc: jani.nikula, rodrigo.vivi, lucas.demarchi, maarten.lankhorst
Use struct intel_display where possible.
Reviewed-by: Rodrigo Vivi <rodrigo.vivi@intel.com>
Signed-off-by: Jani Nikula <jani.nikula@intel.com>
---
drivers/gpu/drm/i915/display/intel_vblank.c | 3 +--
1 file changed, 1 insertion(+), 2 deletions(-)
diff --git a/drivers/gpu/drm/i915/display/intel_vblank.c b/drivers/gpu/drm/i915/display/intel_vblank.c
index d18b8292be49..9278d0b2ae74 100644
--- a/drivers/gpu/drm/i915/display/intel_vblank.c
+++ b/drivers/gpu/drm/i915/display/intel_vblank.c
@@ -195,7 +195,6 @@ static u32 __intel_get_crtc_scanline_from_timestamp(struct intel_crtc *crtc)
int intel_crtc_scanline_offset(const struct intel_crtc_state *crtc_state)
{
struct intel_display *display = to_intel_display(crtc_state);
- struct drm_i915_private *i915 = to_i915(crtc_state->uapi.crtc->dev);
/*
* The scanline counter increments at the leading edge of hsync.
@@ -225,7 +224,7 @@ int intel_crtc_scanline_offset(const struct intel_crtc_state *crtc_state)
*/
if (DISPLAY_VER(display) == 2)
return -1;
- else if (HAS_DDI(i915) && intel_crtc_has_type(crtc_state, INTEL_OUTPUT_HDMI))
+ else if (HAS_DDI(display) && intel_crtc_has_type(crtc_state, INTEL_OUTPUT_HDMI))
return 2;
else
return 1;
--
2.39.5
^ permalink raw reply related [flat|nested] 21+ messages in thread
* [CI v4 v4 16/16] drm/i915/vblank: use display->platform.<platform> instead of IS_<PLATFORM>()
2024-10-24 12:33 [CI v4 v4 00/16] drm/i915/display: platform identification with display->platform.<platform> Jani Nikula
` (14 preceding siblings ...)
2024-10-24 12:33 ` [CI v4 v4 15/16] drm/i915/vblank: drop unnecessary i915 local variable Jani Nikula
@ 2024-10-24 12:33 ` Jani Nikula
2024-10-24 13:18 ` ✗ Fi.CI.CHECKPATCH: warning for drm/i915/display: platform identification with display->platform.<platform> (rev3) Patchwork
` (3 subsequent siblings)
19 siblings, 0 replies; 21+ messages in thread
From: Jani Nikula @ 2024-10-24 12:33 UTC (permalink / raw)
To: intel-gfx, intel-xe
Cc: jani.nikula, rodrigo.vivi, lucas.demarchi, maarten.lankhorst
Switch to using the new display->platform.<platform> members for
platform identification in display code.
v2: Split out an unrelated hunk to a separate patch (Rodrigo)
Reviewed-by: Rodrigo Vivi <rodrigo.vivi@intel.com>
Signed-off-by: Jani Nikula <jani.nikula@intel.com>
---
drivers/gpu/drm/i915/display/intel_vblank.c | 8 ++++----
1 file changed, 4 insertions(+), 4 deletions(-)
diff --git a/drivers/gpu/drm/i915/display/intel_vblank.c b/drivers/gpu/drm/i915/display/intel_vblank.c
index 9278d0b2ae74..a95fb3349eba 100644
--- a/drivers/gpu/drm/i915/display/intel_vblank.c
+++ b/drivers/gpu/drm/i915/display/intel_vblank.c
@@ -326,14 +326,13 @@ static bool i915_get_crtc_scanoutpos(struct drm_crtc *_crtc,
const struct drm_display_mode *mode)
{
struct intel_display *display = to_intel_display(_crtc->dev);
- struct drm_i915_private *dev_priv = to_i915(display->drm);
struct intel_crtc *crtc = to_intel_crtc(_crtc);
enum pipe pipe = crtc->pipe;
int position;
int vbl_start, vbl_end, hsync_start, htotal, vtotal;
unsigned long irqflags;
bool use_scanline_counter = DISPLAY_VER(display) >= 5 ||
- IS_G4X(dev_priv) || DISPLAY_VER(display) == 2 ||
+ display->platform.g4x || DISPLAY_VER(display) == 2 ||
crtc->mode_flags & I915_MODE_FLAG_USE_SCANLINE_COUNTER;
if (drm_WARN_ON(display->drm, !mode->crtc_clock)) {
@@ -602,14 +601,15 @@ void intel_vblank_evade_init(const struct intel_crtc_state *old_crtc_state,
const struct intel_crtc_state *new_crtc_state,
struct intel_vblank_evade_ctx *evade)
{
+ struct intel_display *display = to_intel_display(new_crtc_state);
struct intel_crtc *crtc = to_intel_crtc(new_crtc_state->uapi.crtc);
- struct drm_i915_private *i915 = to_i915(crtc->base.dev);
const struct intel_crtc_state *crtc_state;
const struct drm_display_mode *adjusted_mode;
evade->crtc = crtc;
- evade->need_vlv_dsi_wa = (IS_VALLEYVIEW(i915) || IS_CHERRYVIEW(i915)) &&
+ evade->need_vlv_dsi_wa = (display->platform.valleyview ||
+ display->platform.cherryview) &&
intel_crtc_has_type(new_crtc_state, INTEL_OUTPUT_DSI);
/*
--
2.39.5
^ permalink raw reply related [flat|nested] 21+ messages in thread
* ✗ Fi.CI.CHECKPATCH: warning for drm/i915/display: platform identification with display->platform.<platform> (rev3)
2024-10-24 12:33 [CI v4 v4 00/16] drm/i915/display: platform identification with display->platform.<platform> Jani Nikula
` (15 preceding siblings ...)
2024-10-24 12:33 ` [CI v4 v4 16/16] drm/i915/vblank: use display->platform.<platform> instead of IS_<PLATFORM>() Jani Nikula
@ 2024-10-24 13:18 ` Patchwork
2024-10-24 13:18 ` ✗ Fi.CI.SPARSE: " Patchwork
` (2 subsequent siblings)
19 siblings, 0 replies; 21+ messages in thread
From: Patchwork @ 2024-10-24 13:18 UTC (permalink / raw)
To: Jani Nikula; +Cc: intel-gfx
== Series Details ==
Series: drm/i915/display: platform identification with display->platform.<platform> (rev3)
URL : https://patchwork.freedesktop.org/series/139302/
State : warning
== Summary ==
Error: dim checkpatch failed
613fac167fb2 drm/i915/display: reindent subplatform initialization
49fb0f8401fa drm/i915/display: use a macro to initialize subplatforms
1b325a15cf22 drm/i915/display: use a macro to define platform enumerations
-:22: ERROR:COMPLEX_MACRO: Macros with complex values should be enclosed in parentheses
#22: FILE: drivers/gpu/drm/i915/display/intel_display_device.h:18:
+#define INTEL_DISPLAY_PLATFORMS(func) \
+ func(PLATFORM_UNINITIALIZED) \
+ /* Display ver 2 */ \
+ func(I830) \
+ func(I845G) \
+ func(I85X) \
+ func(I865G) \
+ /* Display ver 3 */ \
+ func(I915G) \
+ func(I915GM) \
+ func(I945G) \
+ func(I945GM) \
+ func(G33) \
+ func(PINEVIEW) \
+ /* Display ver 4 */ \
+ func(I965G) \
+ func(I965GM) \
+ func(G45) \
+ func(GM45) \
+ /* Display ver 5 */ \
+ func(IRONLAKE) \
+ /* Display ver 6 */ \
+ func(SANDYBRIDGE) \
+ /* Display ver 7 */ \
+ func(IVYBRIDGE) \
+ func(VALLEYVIEW) \
+ func(HASWELL) \
+ /* Display ver 8 */ \
+ func(BROADWELL) \
+ func(CHERRYVIEW) \
+ /* Display ver 9 */ \
+ func(SKYLAKE) \
+ func(BROXTON) \
+ func(KABYLAKE) \
+ func(GEMINILAKE) \
+ func(COFFEELAKE) \
+ func(COMETLAKE) \
+ /* Display ver 11 */ \
+ func(ICELAKE) \
+ func(JASPERLAKE) \
+ func(ELKHARTLAKE) \
+ /* Display ver 12 */ \
+ func(TIGERLAKE) \
+ func(ROCKETLAKE) \
+ func(DG1) \
+ func(ALDERLAKE_S) \
+ /* Display ver 13 */ \
+ func(ALDERLAKE_P) \
+ func(DG2) \
+ /* Display ver 14 (based on GMD ID) */ \
+ func(METEORLAKE) \
+ /* Display ver 20 (based on GMD ID) */ \
+ func(LUNARLAKE) \
+ /* Display ver 14.1 (based on GMD ID) */ \
+ func(BATTLEMAGE) \
+ /* Display ver 30 (based on GMD ID) */ \
+ func(PANTHERLAKE)
-:22: CHECK:MACRO_ARG_REUSE: Macro argument reuse 'func' - possible side-effects?
#22: FILE: drivers/gpu/drm/i915/display/intel_display_device.h:18:
+#define INTEL_DISPLAY_PLATFORMS(func) \
+ func(PLATFORM_UNINITIALIZED) \
+ /* Display ver 2 */ \
+ func(I830) \
+ func(I845G) \
+ func(I85X) \
+ func(I865G) \
+ /* Display ver 3 */ \
+ func(I915G) \
+ func(I915GM) \
+ func(I945G) \
+ func(I945GM) \
+ func(G33) \
+ func(PINEVIEW) \
+ /* Display ver 4 */ \
+ func(I965G) \
+ func(I965GM) \
+ func(G45) \
+ func(GM45) \
+ /* Display ver 5 */ \
+ func(IRONLAKE) \
+ /* Display ver 6 */ \
+ func(SANDYBRIDGE) \
+ /* Display ver 7 */ \
+ func(IVYBRIDGE) \
+ func(VALLEYVIEW) \
+ func(HASWELL) \
+ /* Display ver 8 */ \
+ func(BROADWELL) \
+ func(CHERRYVIEW) \
+ /* Display ver 9 */ \
+ func(SKYLAKE) \
+ func(BROXTON) \
+ func(KABYLAKE) \
+ func(GEMINILAKE) \
+ func(COFFEELAKE) \
+ func(COMETLAKE) \
+ /* Display ver 11 */ \
+ func(ICELAKE) \
+ func(JASPERLAKE) \
+ func(ELKHARTLAKE) \
+ /* Display ver 12 */ \
+ func(TIGERLAKE) \
+ func(ROCKETLAKE) \
+ func(DG1) \
+ func(ALDERLAKE_S) \
+ /* Display ver 13 */ \
+ func(ALDERLAKE_P) \
+ func(DG2) \
+ /* Display ver 14 (based on GMD ID) */ \
+ func(METEORLAKE) \
+ /* Display ver 20 (based on GMD ID) */ \
+ func(LUNARLAKE) \
+ /* Display ver 14.1 (based on GMD ID) */ \
+ func(BATTLEMAGE) \
+ /* Display ver 30 (based on GMD ID) */ \
+ func(PANTHERLAKE)
total: 1 errors, 0 warnings, 1 checks, 128 lines checked
66442fb64b0a drm/i915/display: join the platform and subplatform enums
ff9b83d6b01c drm/i915/display: convert display platforms to lower case
bf06aa992119 drm/i915/display: add display platforms structure with platform members
-:67: WARNING:TRAILING_SEMICOLON: macros should not use a trailing semicolon
#67: FILE: drivers/gpu/drm/i915/display/intel_display_device.h:110:
+#define __MEMBER(name) unsigned long name:1;
-:68: ERROR:COMPLEX_MACRO: Macros with complex values should be enclosed in parentheses
#68: FILE: drivers/gpu/drm/i915/display/intel_display_device.h:111:
+#define __COUNT(x) 1 +
-:68: WARNING:MACRO_ARG_UNUSED: Argument 'x' is not used in function-like macro
#68: FILE: drivers/gpu/drm/i915/display/intel_display_device.h:111:
+#define __COUNT(x) 1 +
total: 1 errors, 2 warnings, 0 checks, 57 lines checked
7c66611c0018 drm/i915/display: add platform member to struct intel_display
7c7f4642b871 drm/i915/display: remove the display platform enum as unnecessary
1b8d0ae8044b drm/i915/display: add platform group for g4x
e94b6cc241d6 drm/i915/display: add subplatform group for HSW/BDW ULT
aef88db132e7 drm/i915/bios: use display->platform.<platform> instead of IS_<PLATFORM>()
13aacd86cce1 drm/i915/pps: use display->platform.<platform> instead of IS_<PLATFORM>()
d04ddab7d4be drm/i915/tv: use display->platform.<platform> instead of IS_<PLATFORM>()
ccc3ada7ad9a drm/i915/vga: use display->platform.<platform> instead of IS_<PLATFORM>()
4704e768e12c drm/i915/vblank: drop unnecessary i915 local variable
4e420c6ccf6b drm/i915/vblank: use display->platform.<platform> instead of IS_<PLATFORM>()
^ permalink raw reply [flat|nested] 21+ messages in thread
* ✗ Fi.CI.SPARSE: warning for drm/i915/display: platform identification with display->platform.<platform> (rev3)
2024-10-24 12:33 [CI v4 v4 00/16] drm/i915/display: platform identification with display->platform.<platform> Jani Nikula
` (16 preceding siblings ...)
2024-10-24 13:18 ` ✗ Fi.CI.CHECKPATCH: warning for drm/i915/display: platform identification with display->platform.<platform> (rev3) Patchwork
@ 2024-10-24 13:18 ` Patchwork
2024-10-24 13:35 ` ✓ Fi.CI.BAT: success " Patchwork
2024-10-24 17:11 ` ✗ Fi.CI.IGT: failure " Patchwork
19 siblings, 0 replies; 21+ messages in thread
From: Patchwork @ 2024-10-24 13:18 UTC (permalink / raw)
To: Jani Nikula; +Cc: intel-gfx
== Series Details ==
Series: drm/i915/display: platform identification with display->platform.<platform> (rev3)
URL : https://patchwork.freedesktop.org/series/139302/
State : warning
== Summary ==
Error: dim sparse failed
Sparse version: v0.6.2
Fast mode used, each commit won't be checked separately.
^ permalink raw reply [flat|nested] 21+ messages in thread
* ✓ Fi.CI.BAT: success for drm/i915/display: platform identification with display->platform.<platform> (rev3)
2024-10-24 12:33 [CI v4 v4 00/16] drm/i915/display: platform identification with display->platform.<platform> Jani Nikula
` (17 preceding siblings ...)
2024-10-24 13:18 ` ✗ Fi.CI.SPARSE: " Patchwork
@ 2024-10-24 13:35 ` Patchwork
2024-10-24 17:11 ` ✗ Fi.CI.IGT: failure " Patchwork
19 siblings, 0 replies; 21+ messages in thread
From: Patchwork @ 2024-10-24 13:35 UTC (permalink / raw)
To: Jani Nikula; +Cc: intel-gfx
[-- Attachment #1: Type: text/plain, Size: 4140 bytes --]
== Series Details ==
Series: drm/i915/display: platform identification with display->platform.<platform> (rev3)
URL : https://patchwork.freedesktop.org/series/139302/
State : success
== Summary ==
CI Bug Log - changes from CI_DRM_15588 -> Patchwork_139302v3
====================================================
Summary
-------
**SUCCESS**
No regressions found.
External URL: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139302v3/index.html
Participating hosts (44 -> 45)
------------------------------
Additional (2): fi-skl-6600u fi-kbl-8809g
Missing (1): fi-snb-2520m
Known issues
------------
Here are the changes found in Patchwork_139302v3 that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@gem_huc_copy@huc-copy:
- fi-kbl-8809g: NOTRUN -> [SKIP][1] ([i915#2190])
[1]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139302v3/fi-kbl-8809g/igt@gem_huc_copy@huc-copy.html
- fi-skl-6600u: NOTRUN -> [SKIP][2] ([i915#2190])
[2]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139302v3/fi-skl-6600u/igt@gem_huc_copy@huc-copy.html
* igt@gem_lmem_swapping@parallel-random-engines:
- fi-kbl-8809g: NOTRUN -> [SKIP][3] ([i915#4613]) +3 other tests skip
[3]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139302v3/fi-kbl-8809g/igt@gem_lmem_swapping@parallel-random-engines.html
* igt@gem_lmem_swapping@random-engines:
- fi-skl-6600u: NOTRUN -> [SKIP][4] ([i915#4613]) +3 other tests skip
[4]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139302v3/fi-skl-6600u/igt@gem_lmem_swapping@random-engines.html
* igt@kms_dsc@dsc-basic:
- fi-kbl-8809g: NOTRUN -> [SKIP][5] +30 other tests skip
[5]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139302v3/fi-kbl-8809g/igt@kms_dsc@dsc-basic.html
- fi-skl-6600u: NOTRUN -> [SKIP][6] +9 other tests skip
[6]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139302v3/fi-skl-6600u/igt@kms_dsc@dsc-basic.html
#### Possible fixes ####
* igt@i915_selftest@live:
- bat-arlh-3: [INCOMPLETE][7] ([i915#10341] / [i915#12133]) -> [PASS][8]
[7]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15588/bat-arlh-3/igt@i915_selftest@live.html
[8]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139302v3/bat-arlh-3/igt@i915_selftest@live.html
- bat-atsm-1: [INCOMPLETE][9] ([i915#12133]) -> [PASS][10]
[9]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15588/bat-atsm-1/igt@i915_selftest@live.html
[10]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139302v3/bat-atsm-1/igt@i915_selftest@live.html
* igt@i915_selftest@live@hangcheck:
- bat-atsm-1: [INCOMPLETE][11] -> [PASS][12]
[11]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15588/bat-atsm-1/igt@i915_selftest@live@hangcheck.html
[12]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139302v3/bat-atsm-1/igt@i915_selftest@live@hangcheck.html
* igt@i915_selftest@live@reset:
- bat-arlh-3: [INCOMPLETE][13] ([i915#12133]) -> [PASS][14]
[13]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15588/bat-arlh-3/igt@i915_selftest@live@reset.html
[14]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139302v3/bat-arlh-3/igt@i915_selftest@live@reset.html
[i915#10341]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10341
[i915#12133]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12133
[i915#2190]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2190
[i915#4613]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4613
Build changes
-------------
* Linux: CI_DRM_15588 -> Patchwork_139302v3
CI-20190529: 20190529
CI_DRM_15588: 121cd95da591284c97d6f9ac1c58c7a79d27b201 @ git://anongit.freedesktop.org/gfx-ci/linux
IGT_8082: c8379ec8b26f3c21bae5473706b23da78bd26ffa @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
Patchwork_139302v3: 121cd95da591284c97d6f9ac1c58c7a79d27b201 @ git://anongit.freedesktop.org/gfx-ci/linux
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139302v3/index.html
[-- Attachment #2: Type: text/html, Size: 5239 bytes --]
^ permalink raw reply [flat|nested] 21+ messages in thread
* ✗ Fi.CI.IGT: failure for drm/i915/display: platform identification with display->platform.<platform> (rev3)
2024-10-24 12:33 [CI v4 v4 00/16] drm/i915/display: platform identification with display->platform.<platform> Jani Nikula
` (18 preceding siblings ...)
2024-10-24 13:35 ` ✓ Fi.CI.BAT: success " Patchwork
@ 2024-10-24 17:11 ` Patchwork
19 siblings, 0 replies; 21+ messages in thread
From: Patchwork @ 2024-10-24 17:11 UTC (permalink / raw)
To: Jani Nikula; +Cc: intel-gfx
[-- Attachment #1: Type: text/plain, Size: 100309 bytes --]
== Series Details ==
Series: drm/i915/display: platform identification with display->platform.<platform> (rev3)
URL : https://patchwork.freedesktop.org/series/139302/
State : failure
== Summary ==
CI Bug Log - changes from CI_DRM_15588_full -> Patchwork_139302v3_full
====================================================
Summary
-------
**FAILURE**
Serious unknown changes coming with Patchwork_139302v3_full absolutely need to be
verified manually.
If you think the reported changes have nothing to do with the changes
introduced in Patchwork_139302v3_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 (9 -> 8)
------------------------------
Missing (1): shard-glk-0
Possible new issues
-------------------
Here are the unknown changes that may have been introduced in Patchwork_139302v3_full:
### IGT changes ###
#### Possible regressions ####
* igt@i915_pipe_stress@stress-xrgb8888-untiled:
- shard-snb: NOTRUN -> [INCOMPLETE][1]
[1]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139302v3/shard-snb1/igt@i915_pipe_stress@stress-xrgb8888-untiled.html
* igt@kms_color@ctm-0-50@pipe-b-edp-1:
- shard-mtlp: [PASS][2] -> [FAIL][3]
[2]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15588/shard-mtlp-1/igt@kms_color@ctm-0-50@pipe-b-edp-1.html
[3]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139302v3/shard-mtlp-6/igt@kms_color@ctm-0-50@pipe-b-edp-1.html
New tests
---------
New tests have been introduced between CI_DRM_15588_full and Patchwork_139302v3_full:
### New IGT tests (1) ###
* igt@kms_plane_alpha_blend@alpha-basic@pipe-d-dp-3:
- Statuses : 1 pass(s)
- Exec time: [2.64] s
Known issues
------------
Here are the changes found in Patchwork_139302v3_full that come from known issues:
### CI changes ###
#### Possible fixes ####
* boot:
- shard-dg1: ([PASS][4], [PASS][5], [FAIL][6], [PASS][7], [PASS][8], [PASS][9], [PASS][10], [PASS][11], [PASS][12], [PASS][13], [PASS][14], [PASS][15], [PASS][16], [PASS][17], [PASS][18], [PASS][19], [PASS][20], [PASS][21], [PASS][22], [PASS][23], [PASS][24], [PASS][25], [PASS][26], [PASS][27], [PASS][28]) -> ([PASS][29], [PASS][30], [PASS][31], [PASS][32], [PASS][33], [PASS][34], [PASS][35], [PASS][36], [PASS][37], [PASS][38], [PASS][39], [PASS][40], [PASS][41], [PASS][42], [PASS][43], [PASS][44], [PASS][45], [PASS][46], [PASS][47], [PASS][48], [PASS][49], [PASS][50], [PASS][51], [PASS][52], [PASS][53])
[4]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15588/shard-dg1-19/boot.html
[5]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15588/shard-dg1-19/boot.html
[6]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15588/shard-dg1-19/boot.html
[7]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15588/shard-dg1-18/boot.html
[8]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15588/shard-dg1-18/boot.html
[9]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15588/shard-dg1-18/boot.html
[10]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15588/shard-dg1-18/boot.html
[11]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15588/shard-dg1-17/boot.html
[12]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15588/shard-dg1-17/boot.html
[13]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15588/shard-dg1-17/boot.html
[14]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15588/shard-dg1-17/boot.html
[15]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15588/shard-dg1-16/boot.html
[16]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15588/shard-dg1-16/boot.html
[17]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15588/shard-dg1-16/boot.html
[18]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15588/shard-dg1-15/boot.html
[19]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15588/shard-dg1-15/boot.html
[20]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15588/shard-dg1-15/boot.html
[21]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15588/shard-dg1-14/boot.html
[22]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15588/shard-dg1-14/boot.html
[23]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15588/shard-dg1-14/boot.html
[24]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15588/shard-dg1-13/boot.html
[25]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15588/shard-dg1-13/boot.html
[26]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15588/shard-dg1-12/boot.html
[27]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15588/shard-dg1-12/boot.html
[28]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15588/shard-dg1-12/boot.html
[29]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139302v3/shard-dg1-18/boot.html
[30]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139302v3/shard-dg1-18/boot.html
[31]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139302v3/shard-dg1-17/boot.html
[32]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139302v3/shard-dg1-17/boot.html
[33]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139302v3/shard-dg1-18/boot.html
[34]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139302v3/shard-dg1-19/boot.html
[35]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139302v3/shard-dg1-17/boot.html
[36]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139302v3/shard-dg1-16/boot.html
[37]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139302v3/shard-dg1-16/boot.html
[38]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139302v3/shard-dg1-19/boot.html
[39]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139302v3/shard-dg1-16/boot.html
[40]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139302v3/shard-dg1-15/boot.html
[41]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139302v3/shard-dg1-19/boot.html
[42]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139302v3/shard-dg1-15/boot.html
[43]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139302v3/shard-dg1-15/boot.html
[44]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139302v3/shard-dg1-14/boot.html
[45]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139302v3/shard-dg1-14/boot.html
[46]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139302v3/shard-dg1-14/boot.html
[47]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139302v3/shard-dg1-14/boot.html
[48]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139302v3/shard-dg1-13/boot.html
[49]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139302v3/shard-dg1-13/boot.html
[50]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139302v3/shard-dg1-13/boot.html
[51]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139302v3/shard-dg1-12/boot.html
[52]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139302v3/shard-dg1-12/boot.html
[53]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139302v3/shard-dg1-12/boot.html
### IGT changes ###
#### Issues hit ####
* igt@api_intel_bb@blit-reloc-keep-cache:
- shard-rkl: NOTRUN -> [SKIP][54] ([i915#8411]) +1 other test skip
[54]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139302v3/shard-rkl-2/igt@api_intel_bb@blit-reloc-keep-cache.html
* igt@device_reset@cold-reset-bound:
- shard-tglu-1: NOTRUN -> [SKIP][55] ([i915#11078])
[55]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139302v3/shard-tglu-1/igt@device_reset@cold-reset-bound.html
- shard-rkl: NOTRUN -> [SKIP][56] ([i915#11078])
[56]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139302v3/shard-rkl-6/igt@device_reset@cold-reset-bound.html
* igt@drm_fdinfo@busy-idle@bcs0:
- shard-dg2: NOTRUN -> [SKIP][57] ([i915#8414]) +8 other tests skip
[57]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139302v3/shard-dg2-10/igt@drm_fdinfo@busy-idle@bcs0.html
* igt@gem_ccs@block-multicopy-inplace:
- shard-rkl: NOTRUN -> [SKIP][58] ([i915#3555] / [i915#9323])
[58]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139302v3/shard-rkl-5/igt@gem_ccs@block-multicopy-inplace.html
* igt@gem_ccs@ctrl-surf-copy:
- shard-dg1: NOTRUN -> [SKIP][59] ([i915#3555] / [i915#9323])
[59]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139302v3/shard-dg1-12/igt@gem_ccs@ctrl-surf-copy.html
* igt@gem_ccs@suspend-resume@tile4-compressed-compfmt0-smem-lmem0:
- shard-dg2: NOTRUN -> [INCOMPLETE][60] ([i915#12392] / [i915#7297])
[60]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139302v3/shard-dg2-7/igt@gem_ccs@suspend-resume@tile4-compressed-compfmt0-smem-lmem0.html
* igt@gem_close_race@multigpu-basic-threads:
- shard-rkl: NOTRUN -> [SKIP][61] ([i915#7697])
[61]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139302v3/shard-rkl-2/igt@gem_close_race@multigpu-basic-threads.html
* igt@gem_create@create-ext-set-pat:
- shard-dg1: NOTRUN -> [SKIP][62] ([i915#8562])
[62]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139302v3/shard-dg1-18/igt@gem_create@create-ext-set-pat.html
* igt@gem_ctx_persistence@engines-mixed:
- shard-snb: NOTRUN -> [SKIP][63] ([i915#1099])
[63]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139302v3/shard-snb7/igt@gem_ctx_persistence@engines-mixed.html
* igt@gem_ctx_sseu@invalid-args:
- shard-dg2: NOTRUN -> [SKIP][64] ([i915#280])
[64]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139302v3/shard-dg2-10/igt@gem_ctx_sseu@invalid-args.html
* igt@gem_ctx_sseu@mmap-args:
- shard-rkl: NOTRUN -> [SKIP][65] ([i915#280])
[65]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139302v3/shard-rkl-4/igt@gem_ctx_sseu@mmap-args.html
* igt@gem_eio@reset-stress:
- shard-dg1: [PASS][66] -> [FAIL][67] ([i915#5784])
[66]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15588/shard-dg1-16/igt@gem_eio@reset-stress.html
[67]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139302v3/shard-dg1-19/igt@gem_eio@reset-stress.html
* igt@gem_exec_balancer@bonded-false-hang:
- shard-dg1: NOTRUN -> [SKIP][68] ([i915#4812])
[68]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139302v3/shard-dg1-18/igt@gem_exec_balancer@bonded-false-hang.html
* igt@gem_exec_balancer@parallel-balancer:
- shard-rkl: NOTRUN -> [SKIP][69] ([i915#4525]) +2 other tests skip
[69]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139302v3/shard-rkl-6/igt@gem_exec_balancer@parallel-balancer.html
* igt@gem_exec_balancer@parallel-ordering:
- shard-tglu: NOTRUN -> [FAIL][70] ([i915#6117])
[70]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139302v3/shard-tglu-9/igt@gem_exec_balancer@parallel-ordering.html
* igt@gem_exec_capture@capture-invisible@smem0:
- shard-rkl: NOTRUN -> [SKIP][71] ([i915#6334]) +1 other test skip
[71]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139302v3/shard-rkl-6/igt@gem_exec_capture@capture-invisible@smem0.html
- shard-tglu-1: NOTRUN -> [SKIP][72] ([i915#6334]) +1 other test skip
[72]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139302v3/shard-tglu-1/igt@gem_exec_capture@capture-invisible@smem0.html
* igt@gem_exec_fair@basic-none-rrul:
- shard-dg1: NOTRUN -> [SKIP][73] ([i915#3539] / [i915#4852])
[73]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139302v3/shard-dg1-12/igt@gem_exec_fair@basic-none-rrul.html
* igt@gem_exec_fair@basic-none-share:
- shard-rkl: [PASS][74] -> [FAIL][75] ([i915#2842]) +1 other test fail
[74]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15588/shard-rkl-3/igt@gem_exec_fair@basic-none-share.html
[75]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139302v3/shard-rkl-5/igt@gem_exec_fair@basic-none-share.html
* igt@gem_exec_fair@basic-none-solo:
- shard-tglu: NOTRUN -> [FAIL][76] ([i915#2842]) +1 other test fail
[76]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139302v3/shard-tglu-9/igt@gem_exec_fair@basic-none-solo.html
* igt@gem_exec_fair@basic-none@bcs0:
- shard-rkl: NOTRUN -> [FAIL][77] ([i915#2842]) +4 other tests fail
[77]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139302v3/shard-rkl-5/igt@gem_exec_fair@basic-none@bcs0.html
* igt@gem_exec_fence@syncobj-backward-timeline-chain-engines:
- shard-snb: NOTRUN -> [SKIP][78] +100 other tests skip
[78]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139302v3/shard-snb7/igt@gem_exec_fence@syncobj-backward-timeline-chain-engines.html
* igt@gem_exec_flush@basic-batch-kernel-default-cmd:
- shard-dg2: NOTRUN -> [SKIP][79] ([i915#3539] / [i915#4852]) +1 other test skip
[79]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139302v3/shard-dg2-10/igt@gem_exec_flush@basic-batch-kernel-default-cmd.html
* igt@gem_exec_reloc@basic-wc-cpu:
- shard-mtlp: NOTRUN -> [SKIP][80] ([i915#3281])
[80]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139302v3/shard-mtlp-4/igt@gem_exec_reloc@basic-wc-cpu.html
* igt@gem_exec_reloc@basic-wc-read:
- shard-dg2: NOTRUN -> [SKIP][81] ([i915#3281]) +3 other tests skip
[81]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139302v3/shard-dg2-10/igt@gem_exec_reloc@basic-wc-read.html
* igt@gem_exec_reloc@basic-write-read-noreloc:
- shard-rkl: NOTRUN -> [SKIP][82] ([i915#3281]) +10 other tests skip
[82]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139302v3/shard-rkl-2/igt@gem_exec_reloc@basic-write-read-noreloc.html
* igt@gem_exec_reloc@basic-write-wc-noreloc:
- shard-dg1: NOTRUN -> [SKIP][83] ([i915#3281]) +3 other tests skip
[83]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139302v3/shard-dg1-18/igt@gem_exec_reloc@basic-write-wc-noreloc.html
* igt@gem_exec_schedule@pi-ringfull@rcs0:
- shard-rkl: NOTRUN -> [FAIL][84] ([i915#12296]) +4 other tests fail
[84]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139302v3/shard-rkl-6/igt@gem_exec_schedule@pi-ringfull@rcs0.html
- shard-tglu-1: NOTRUN -> [FAIL][85] ([i915#12296]) +5 other tests fail
[85]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139302v3/shard-tglu-1/igt@gem_exec_schedule@pi-ringfull@rcs0.html
* igt@gem_exec_schedule@preempt-queue-contexts:
- shard-dg2: NOTRUN -> [SKIP][86] ([i915#4537] / [i915#4812])
[86]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139302v3/shard-dg2-10/igt@gem_exec_schedule@preempt-queue-contexts.html
* igt@gem_exec_schedule@semaphore-power:
- shard-rkl: NOTRUN -> [SKIP][87] ([i915#7276])
[87]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139302v3/shard-rkl-6/igt@gem_exec_schedule@semaphore-power.html
* igt@gem_exec_suspend@basic-s4-devices:
- shard-rkl: NOTRUN -> [ABORT][88] ([i915#7975] / [i915#8213]) +1 other test abort
[88]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139302v3/shard-rkl-2/igt@gem_exec_suspend@basic-s4-devices.html
* igt@gem_fence_thrash@bo-copy:
- shard-dg2: NOTRUN -> [SKIP][89] ([i915#4860])
[89]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139302v3/shard-dg2-10/igt@gem_fence_thrash@bo-copy.html
* igt@gem_huc_copy@huc-copy:
- shard-rkl: NOTRUN -> [SKIP][90] ([i915#2190])
[90]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139302v3/shard-rkl-2/igt@gem_huc_copy@huc-copy.html
* igt@gem_lmem_swapping@massive:
- shard-glk: NOTRUN -> [SKIP][91] ([i915#4613])
[91]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139302v3/shard-glk1/igt@gem_lmem_swapping@massive.html
* igt@gem_lmem_swapping@parallel-random-verify:
- shard-tglu-1: NOTRUN -> [SKIP][92] ([i915#4613]) +1 other test skip
[92]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139302v3/shard-tglu-1/igt@gem_lmem_swapping@parallel-random-verify.html
* igt@gem_lmem_swapping@parallel-random-verify-ccs:
- shard-rkl: NOTRUN -> [SKIP][93] ([i915#4613]) +4 other tests skip
[93]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139302v3/shard-rkl-4/igt@gem_lmem_swapping@parallel-random-verify-ccs.html
* igt@gem_lmem_swapping@random:
- shard-tglu: NOTRUN -> [SKIP][94] ([i915#4613])
[94]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139302v3/shard-tglu-9/igt@gem_lmem_swapping@random.html
* igt@gem_media_vme:
- shard-dg1: NOTRUN -> [SKIP][95] ([i915#284])
[95]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139302v3/shard-dg1-18/igt@gem_media_vme.html
* igt@gem_mmap_gtt@bad-object:
- shard-dg2: NOTRUN -> [SKIP][96] ([i915#4077]) +2 other tests skip
[96]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139302v3/shard-dg2-10/igt@gem_mmap_gtt@bad-object.html
* igt@gem_mmap_gtt@medium-copy-xy:
- shard-mtlp: NOTRUN -> [SKIP][97] ([i915#4077]) +1 other test skip
[97]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139302v3/shard-mtlp-4/igt@gem_mmap_gtt@medium-copy-xy.html
* igt@gem_mmap_gtt@zero-extend:
- shard-dg1: NOTRUN -> [SKIP][98] ([i915#4077]) +2 other tests skip
[98]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139302v3/shard-dg1-18/igt@gem_mmap_gtt@zero-extend.html
* igt@gem_mmap_wc@bad-size:
- shard-dg1: NOTRUN -> [SKIP][99] ([i915#4083]) +2 other tests skip
[99]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139302v3/shard-dg1-18/igt@gem_mmap_wc@bad-size.html
* igt@gem_mmap_wc@set-cache-level:
- shard-dg2: NOTRUN -> [SKIP][100] ([i915#4083]) +2 other tests skip
[100]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139302v3/shard-dg2-10/igt@gem_mmap_wc@set-cache-level.html
* igt@gem_partial_pwrite_pread@writes-after-reads-display:
- shard-dg2: NOTRUN -> [SKIP][101] ([i915#3282]) +1 other test skip
[101]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139302v3/shard-dg2-10/igt@gem_partial_pwrite_pread@writes-after-reads-display.html
* igt@gem_partial_pwrite_pread@writes-after-reads-uncached:
- shard-rkl: NOTRUN -> [SKIP][102] ([i915#3282]) +6 other tests skip
[102]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139302v3/shard-rkl-2/igt@gem_partial_pwrite_pread@writes-after-reads-uncached.html
* igt@gem_pread@display:
- shard-dg1: NOTRUN -> [SKIP][103] ([i915#3282]) +2 other tests skip
[103]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139302v3/shard-dg1-18/igt@gem_pread@display.html
* igt@gem_pxp@create-regular-context-1:
- shard-tglu: NOTRUN -> [SKIP][104] ([i915#4270])
[104]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139302v3/shard-tglu-9/igt@gem_pxp@create-regular-context-1.html
* igt@gem_pxp@reject-modify-context-protection-off-3:
- shard-rkl: NOTRUN -> [SKIP][105] ([i915#4270]) +2 other tests skip
[105]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139302v3/shard-rkl-5/igt@gem_pxp@reject-modify-context-protection-off-3.html
* igt@gem_pxp@verify-pxp-execution-after-suspend-resume:
- shard-dg1: NOTRUN -> [SKIP][106] ([i915#4270]) +2 other tests skip
[106]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139302v3/shard-dg1-18/igt@gem_pxp@verify-pxp-execution-after-suspend-resume.html
* igt@gem_pxp@verify-pxp-stale-buf-execution:
- shard-mtlp: NOTRUN -> [SKIP][107] ([i915#4270])
[107]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139302v3/shard-mtlp-4/igt@gem_pxp@verify-pxp-stale-buf-execution.html
* igt@gem_render_copy@y-tiled-ccs-to-yf-tiled-mc-ccs:
- shard-dg2: NOTRUN -> [SKIP][108] ([i915#5190] / [i915#8428])
[108]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139302v3/shard-dg2-10/igt@gem_render_copy@y-tiled-ccs-to-yf-tiled-mc-ccs.html
* igt@gem_render_copy@yf-tiled-ccs-to-y-tiled-ccs:
- shard-mtlp: NOTRUN -> [SKIP][109] ([i915#8428])
[109]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139302v3/shard-mtlp-4/igt@gem_render_copy@yf-tiled-ccs-to-y-tiled-ccs.html
* igt@gem_set_tiling_vs_blt@tiled-to-untiled:
- shard-dg2: NOTRUN -> [SKIP][110] ([i915#4079]) +1 other test skip
[110]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139302v3/shard-dg2-10/igt@gem_set_tiling_vs_blt@tiled-to-untiled.html
* igt@gem_userptr_blits@readonly-pwrite-unsync:
- shard-rkl: NOTRUN -> [SKIP][111] ([i915#3297]) +1 other test skip
[111]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139302v3/shard-rkl-5/igt@gem_userptr_blits@readonly-pwrite-unsync.html
* igt@gen9_exec_parse@bb-secure:
- shard-dg1: NOTRUN -> [SKIP][112] ([i915#2527])
[112]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139302v3/shard-dg1-12/igt@gen9_exec_parse@bb-secure.html
* igt@gen9_exec_parse@bb-start-param:
- shard-tglu-1: NOTRUN -> [SKIP][113] ([i915#2527] / [i915#2856])
[113]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139302v3/shard-tglu-1/igt@gen9_exec_parse@bb-start-param.html
* igt@gen9_exec_parse@secure-batches:
- shard-dg2: NOTRUN -> [SKIP][114] ([i915#2856]) +1 other test skip
[114]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139302v3/shard-dg2-2/igt@gen9_exec_parse@secure-batches.html
* igt@gen9_exec_parse@shadow-peek:
- shard-rkl: NOTRUN -> [SKIP][115] ([i915#2527]) +6 other tests skip
[115]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139302v3/shard-rkl-6/igt@gen9_exec_parse@shadow-peek.html
* igt@i915_module_load@reload-with-fault-injection:
- shard-rkl: [PASS][116] -> [ABORT][117] ([i915#9697])
[116]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15588/shard-rkl-7/igt@i915_module_load@reload-with-fault-injection.html
[117]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139302v3/shard-rkl-3/igt@i915_module_load@reload-with-fault-injection.html
* igt@i915_pm_rc6_residency@rc6-idle@gt0-rcs0:
- shard-dg1: [PASS][118] -> [FAIL][119] ([i915#3591])
[118]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15588/shard-dg1-12/igt@i915_pm_rc6_residency@rc6-idle@gt0-rcs0.html
[119]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139302v3/shard-dg1-19/igt@i915_pm_rc6_residency@rc6-idle@gt0-rcs0.html
* igt@i915_pm_rps@engine-order:
- shard-glk: ([PASS][120], [PASS][121], [PASS][122]) -> [FAIL][123] ([i915#12308])
[120]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15588/shard-glk8/igt@i915_pm_rps@engine-order.html
[121]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15588/shard-glk3/igt@i915_pm_rps@engine-order.html
[122]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15588/shard-glk9/igt@i915_pm_rps@engine-order.html
[123]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139302v3/shard-glk7/igt@i915_pm_rps@engine-order.html
* igt@i915_pm_rps@thresholds:
- shard-dg1: NOTRUN -> [SKIP][124] ([i915#11681])
[124]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139302v3/shard-dg1-18/igt@i915_pm_rps@thresholds.html
* igt@i915_query@hwconfig_table:
- shard-dg1: NOTRUN -> [SKIP][125] ([i915#6245])
[125]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139302v3/shard-dg1-12/igt@i915_query@hwconfig_table.html
* igt@intel_hwmon@hwmon-read:
- shard-rkl: NOTRUN -> [SKIP][126] ([i915#7707])
[126]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139302v3/shard-rkl-6/igt@intel_hwmon@hwmon-read.html
- shard-tglu-1: NOTRUN -> [SKIP][127] ([i915#7707])
[127]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139302v3/shard-tglu-1/igt@intel_hwmon@hwmon-read.html
* igt@kms_addfb_basic@tile-pitch-mismatch:
- shard-dg1: NOTRUN -> [SKIP][128] ([i915#4212]) +1 other test skip
[128]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139302v3/shard-dg1-12/igt@kms_addfb_basic@tile-pitch-mismatch.html
* igt@kms_async_flips@async-flip-with-page-flip-events@pipe-a-hdmi-a-1-y-rc-ccs-cc:
- shard-rkl: NOTRUN -> [SKIP][129] ([i915#8709]) +3 other tests skip
[129]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139302v3/shard-rkl-7/igt@kms_async_flips@async-flip-with-page-flip-events@pipe-a-hdmi-a-1-y-rc-ccs-cc.html
* igt@kms_async_flips@async-flip-with-page-flip-events@pipe-b-hdmi-a-1-y-rc-ccs:
- shard-tglu: NOTRUN -> [SKIP][130] ([i915#8709]) +7 other tests skip
[130]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139302v3/shard-tglu-9/igt@kms_async_flips@async-flip-with-page-flip-events@pipe-b-hdmi-a-1-y-rc-ccs.html
* igt@kms_async_flips@async-flip-with-page-flip-events@pipe-b-hdmi-a-4-y-rc-ccs:
- shard-dg1: NOTRUN -> [SKIP][131] ([i915#8709]) +7 other tests skip
[131]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139302v3/shard-dg1-18/igt@kms_async_flips@async-flip-with-page-flip-events@pipe-b-hdmi-a-4-y-rc-ccs.html
* igt@kms_atomic_transition@plane-all-modeset-transition-internal-panels:
- shard-tglu: NOTRUN -> [SKIP][132] ([i915#1769] / [i915#3555])
[132]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139302v3/shard-tglu-9/igt@kms_atomic_transition@plane-all-modeset-transition-internal-panels.html
* igt@kms_big_fb@4-tiled-32bpp-rotate-180:
- shard-tglu: NOTRUN -> [SKIP][133] ([i915#5286]) +1 other test skip
[133]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139302v3/shard-tglu-9/igt@kms_big_fb@4-tiled-32bpp-rotate-180.html
* igt@kms_big_fb@4-tiled-8bpp-rotate-0:
- shard-tglu-1: NOTRUN -> [SKIP][134] ([i915#5286])
[134]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139302v3/shard-tglu-1/igt@kms_big_fb@4-tiled-8bpp-rotate-0.html
* igt@kms_big_fb@4-tiled-8bpp-rotate-180:
- shard-dg1: NOTRUN -> [SKIP][135] ([i915#4538] / [i915#5286]) +1 other test skip
[135]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139302v3/shard-dg1-12/igt@kms_big_fb@4-tiled-8bpp-rotate-180.html
* igt@kms_big_fb@4-tiled-addfb:
- shard-rkl: NOTRUN -> [SKIP][136] ([i915#5286]) +6 other tests skip
[136]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139302v3/shard-rkl-5/igt@kms_big_fb@4-tiled-addfb.html
* igt@kms_big_fb@linear-64bpp-rotate-90:
- shard-rkl: NOTRUN -> [SKIP][137] ([i915#3638]) +4 other tests skip
[137]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139302v3/shard-rkl-4/igt@kms_big_fb@linear-64bpp-rotate-90.html
* igt@kms_big_fb@linear-8bpp-rotate-270:
- shard-dg1: NOTRUN -> [SKIP][138] ([i915#3638])
[138]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139302v3/shard-dg1-18/igt@kms_big_fb@linear-8bpp-rotate-270.html
* igt@kms_big_fb@y-tiled-addfb-size-overflow:
- shard-dg2: NOTRUN -> [SKIP][139] ([i915#5190])
[139]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139302v3/shard-dg2-10/igt@kms_big_fb@y-tiled-addfb-size-overflow.html
* igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-0-hflip:
- shard-mtlp: NOTRUN -> [SKIP][140] +4 other tests skip
[140]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139302v3/shard-mtlp-4/igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-0-hflip.html
* igt@kms_big_fb@yf-tiled-32bpp-rotate-90:
- shard-dg1: NOTRUN -> [SKIP][141] ([i915#4538]) +2 other tests skip
[141]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139302v3/shard-dg1-18/igt@kms_big_fb@yf-tiled-32bpp-rotate-90.html
* igt@kms_big_fb@yf-tiled-8bpp-rotate-180:
- shard-dg2: NOTRUN -> [SKIP][142] ([i915#4538] / [i915#5190]) +2 other tests skip
[142]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139302v3/shard-dg2-10/igt@kms_big_fb@yf-tiled-8bpp-rotate-180.html
* igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-0-hflip:
- shard-dg2: NOTRUN -> [SKIP][143] ([i915#5190] / [i915#9197])
[143]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139302v3/shard-dg2-2/igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-0-hflip.html
* igt@kms_ccs@bad-aux-stride-y-tiled-ccs@pipe-c-hdmi-a-1:
- shard-tglu: NOTRUN -> [SKIP][144] ([i915#6095]) +9 other tests skip
[144]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139302v3/shard-tglu-9/igt@kms_ccs@bad-aux-stride-y-tiled-ccs@pipe-c-hdmi-a-1.html
* igt@kms_ccs@bad-rotation-90-4-tiled-dg2-rc-ccs-cc@pipe-b-hdmi-a-1:
- shard-glk: NOTRUN -> [SKIP][145] +21 other tests skip
[145]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139302v3/shard-glk1/igt@kms_ccs@bad-rotation-90-4-tiled-dg2-rc-ccs-cc@pipe-b-hdmi-a-1.html
* igt@kms_ccs@bad-rotation-90-4-tiled-mtl-rc-ccs@pipe-b-hdmi-a-2:
- shard-rkl: NOTRUN -> [SKIP][146] ([i915#6095]) +80 other tests skip
[146]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139302v3/shard-rkl-3/igt@kms_ccs@bad-rotation-90-4-tiled-mtl-rc-ccs@pipe-b-hdmi-a-2.html
* igt@kms_ccs@crc-primary-basic-4-tiled-bmg-ccs:
- shard-tglu: NOTRUN -> [SKIP][147] ([i915#12313])
[147]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139302v3/shard-tglu-9/igt@kms_ccs@crc-primary-basic-4-tiled-bmg-ccs.html
* igt@kms_ccs@crc-primary-rotation-180-yf-tiled-ccs@pipe-d-hdmi-a-3:
- shard-dg1: NOTRUN -> [SKIP][148] ([i915#6095]) +109 other tests skip
[148]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139302v3/shard-dg1-12/igt@kms_ccs@crc-primary-rotation-180-yf-tiled-ccs@pipe-d-hdmi-a-3.html
* igt@kms_ccs@missing-ccs-buffer-yf-tiled-ccs@pipe-a-edp-1:
- shard-mtlp: NOTRUN -> [SKIP][149] ([i915#6095]) +9 other tests skip
[149]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139302v3/shard-mtlp-4/igt@kms_ccs@missing-ccs-buffer-yf-tiled-ccs@pipe-a-edp-1.html
* igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc:
- shard-tglu-1: NOTRUN -> [SKIP][150] ([i915#6095]) +14 other tests skip
[150]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139302v3/shard-tglu-1/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc.html
* igt@kms_ccs@random-ccs-data-4-tiled-lnl-ccs:
- shard-rkl: NOTRUN -> [SKIP][151] ([i915#12313])
[151]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139302v3/shard-rkl-4/igt@kms_ccs@random-ccs-data-4-tiled-lnl-ccs.html
* igt@kms_ccs@random-ccs-data-y-tiled-gen12-rc-ccs@pipe-a-hdmi-a-2:
- shard-dg2: NOTRUN -> [SKIP][152] ([i915#10307] / [i915#6095]) +152 other tests skip
[152]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139302v3/shard-dg2-3/igt@kms_ccs@random-ccs-data-y-tiled-gen12-rc-ccs@pipe-a-hdmi-a-2.html
* igt@kms_cdclk@mode-transition-all-outputs:
- shard-rkl: NOTRUN -> [SKIP][153] ([i915#3742])
[153]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139302v3/shard-rkl-5/igt@kms_cdclk@mode-transition-all-outputs.html
* igt@kms_cdclk@plane-scaling@pipe-a-hdmi-a-2:
- shard-dg2: NOTRUN -> [SKIP][154] ([i915#4087]) +3 other tests skip
[154]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139302v3/shard-dg2-3/igt@kms_cdclk@plane-scaling@pipe-a-hdmi-a-2.html
* igt@kms_chamelium_edid@hdmi-edid-stress-resolution-non-4k:
- shard-dg2: NOTRUN -> [SKIP][155] ([i915#7828]) +2 other tests skip
[155]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139302v3/shard-dg2-10/igt@kms_chamelium_edid@hdmi-edid-stress-resolution-non-4k.html
* igt@kms_chamelium_frames@dp-frame-dump:
- shard-tglu: NOTRUN -> [SKIP][156] ([i915#7828]) +1 other test skip
[156]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139302v3/shard-tglu-9/igt@kms_chamelium_frames@dp-frame-dump.html
* igt@kms_chamelium_frames@hdmi-frame-dump:
- shard-rkl: NOTRUN -> [SKIP][157] ([i915#7828]) +8 other tests skip
[157]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139302v3/shard-rkl-6/igt@kms_chamelium_frames@hdmi-frame-dump.html
- shard-tglu-1: NOTRUN -> [SKIP][158] ([i915#7828])
[158]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139302v3/shard-tglu-1/igt@kms_chamelium_frames@hdmi-frame-dump.html
* igt@kms_chamelium_hpd@vga-hpd-fast:
- shard-dg1: NOTRUN -> [SKIP][159] ([i915#7828]) +4 other tests skip
[159]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139302v3/shard-dg1-12/igt@kms_chamelium_hpd@vga-hpd-fast.html
* igt@kms_content_protection@dp-mst-lic-type-1:
- shard-rkl: NOTRUN -> [SKIP][160] ([i915#3116])
[160]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139302v3/shard-rkl-4/igt@kms_content_protection@dp-mst-lic-type-1.html
* igt@kms_content_protection@legacy:
- shard-dg1: NOTRUN -> [SKIP][161] ([i915#7116] / [i915#9424])
[161]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139302v3/shard-dg1-12/igt@kms_content_protection@legacy.html
* igt@kms_content_protection@lic-type-0:
- shard-dg1: NOTRUN -> [SKIP][162] ([i915#9424])
[162]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139302v3/shard-dg1-19/igt@kms_content_protection@lic-type-0.html
* igt@kms_content_protection@lic-type-0@pipe-a-dp-3:
- shard-dg2: NOTRUN -> [TIMEOUT][163] ([i915#7173])
[163]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139302v3/shard-dg2-10/igt@kms_content_protection@lic-type-0@pipe-a-dp-3.html
* igt@kms_content_protection@srm:
- shard-rkl: NOTRUN -> [SKIP][164] ([i915#7118])
[164]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139302v3/shard-rkl-5/igt@kms_content_protection@srm.html
* igt@kms_content_protection@type1:
- shard-rkl: NOTRUN -> [SKIP][165] ([i915#7118] / [i915#9424])
[165]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139302v3/shard-rkl-6/igt@kms_content_protection@type1.html
- shard-tglu-1: NOTRUN -> [SKIP][166] ([i915#6944] / [i915#7116] / [i915#7118] / [i915#9424])
[166]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139302v3/shard-tglu-1/igt@kms_content_protection@type1.html
* igt@kms_cursor_crc@cursor-offscreen-256x85:
- shard-mtlp: NOTRUN -> [SKIP][167] ([i915#8814])
[167]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139302v3/shard-mtlp-4/igt@kms_cursor_crc@cursor-offscreen-256x85.html
* igt@kms_cursor_crc@cursor-offscreen-512x512:
- shard-tglu: NOTRUN -> [SKIP][168] ([i915#11453] / [i915#3359])
[168]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139302v3/shard-tglu-9/igt@kms_cursor_crc@cursor-offscreen-512x512.html
* igt@kms_cursor_crc@cursor-onscreen-32x32:
- shard-dg1: NOTRUN -> [SKIP][169] ([i915#3555]) +2 other tests skip
[169]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139302v3/shard-dg1-12/igt@kms_cursor_crc@cursor-onscreen-32x32.html
* igt@kms_cursor_crc@cursor-rapid-movement-32x10:
- shard-rkl: NOTRUN -> [SKIP][170] ([i915#3555]) +4 other tests skip
[170]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139302v3/shard-rkl-6/igt@kms_cursor_crc@cursor-rapid-movement-32x10.html
- shard-tglu-1: NOTRUN -> [SKIP][171] ([i915#3555]) +1 other test skip
[171]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139302v3/shard-tglu-1/igt@kms_cursor_crc@cursor-rapid-movement-32x10.html
* igt@kms_cursor_crc@cursor-sliding-512x512:
- shard-rkl: NOTRUN -> [SKIP][172] ([i915#11453] / [i915#3359]) +1 other test skip
[172]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139302v3/shard-rkl-6/igt@kms_cursor_crc@cursor-sliding-512x512.html
* igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic:
- shard-dg2: NOTRUN -> [SKIP][173] ([i915#4103] / [i915#4213])
[173]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139302v3/shard-dg2-10/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic.html
* igt@kms_cursor_legacy@basic-busy-flip-before-cursor-varying-size:
- shard-rkl: NOTRUN -> [SKIP][174] ([i915#4103])
[174]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139302v3/shard-rkl-5/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-varying-size.html
* igt@kms_cursor_legacy@flip-vs-cursor-toggle:
- shard-mtlp: [PASS][175] -> [FAIL][176] ([i915#2346])
[175]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15588/shard-mtlp-5/igt@kms_cursor_legacy@flip-vs-cursor-toggle.html
[176]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139302v3/shard-mtlp-4/igt@kms_cursor_legacy@flip-vs-cursor-toggle.html
* igt@kms_dirtyfb@drrs-dirtyfb-ioctl:
- shard-dg1: NOTRUN -> [SKIP][177] ([i915#9723])
[177]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139302v3/shard-dg1-12/igt@kms_dirtyfb@drrs-dirtyfb-ioctl.html
* igt@kms_display_modes@mst-extended-mode-negative:
- shard-rkl: NOTRUN -> [SKIP][178] ([i915#8588])
[178]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139302v3/shard-rkl-4/igt@kms_display_modes@mst-extended-mode-negative.html
* igt@kms_dither@fb-8bpc-vs-panel-6bpc:
- shard-rkl: NOTRUN -> [SKIP][179] ([i915#3555] / [i915#3804])
[179]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139302v3/shard-rkl-6/igt@kms_dither@fb-8bpc-vs-panel-6bpc.html
- shard-tglu-1: NOTRUN -> [SKIP][180] ([i915#1769] / [i915#3555] / [i915#3804])
[180]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139302v3/shard-tglu-1/igt@kms_dither@fb-8bpc-vs-panel-6bpc.html
* igt@kms_dither@fb-8bpc-vs-panel-6bpc@pipe-a-hdmi-a-1:
- shard-tglu-1: NOTRUN -> [SKIP][181] ([i915#3804])
[181]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139302v3/shard-tglu-1/igt@kms_dither@fb-8bpc-vs-panel-6bpc@pipe-a-hdmi-a-1.html
* igt@kms_dither@fb-8bpc-vs-panel-6bpc@pipe-a-hdmi-a-2:
- shard-rkl: NOTRUN -> [SKIP][182] ([i915#3804])
[182]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139302v3/shard-rkl-6/igt@kms_dither@fb-8bpc-vs-panel-6bpc@pipe-a-hdmi-a-2.html
* igt@kms_dp_linktrain_fallback@dp-fallback:
- shard-dg2: [PASS][183] -> [SKIP][184] ([i915#12402])
[183]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15588/shard-dg2-10/igt@kms_dp_linktrain_fallback@dp-fallback.html
[184]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139302v3/shard-dg2-6/igt@kms_dp_linktrain_fallback@dp-fallback.html
- shard-rkl: NOTRUN -> [SKIP][185] ([i915#12402])
[185]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139302v3/shard-rkl-6/igt@kms_dp_linktrain_fallback@dp-fallback.html
* igt@kms_dsc@dsc-fractional-bpp:
- shard-rkl: NOTRUN -> [SKIP][186] ([i915#3840])
[186]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139302v3/shard-rkl-6/igt@kms_dsc@dsc-fractional-bpp.html
- shard-tglu-1: NOTRUN -> [SKIP][187] ([i915#3840])
[187]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139302v3/shard-tglu-1/igt@kms_dsc@dsc-fractional-bpp.html
* igt@kms_dsc@dsc-with-bpc:
- shard-rkl: NOTRUN -> [SKIP][188] ([i915#3555] / [i915#3840])
[188]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139302v3/shard-rkl-5/igt@kms_dsc@dsc-with-bpc.html
* igt@kms_dsc@dsc-with-output-formats-with-bpc:
- shard-dg1: NOTRUN -> [SKIP][189] ([i915#3840] / [i915#9053])
[189]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139302v3/shard-dg1-12/igt@kms_dsc@dsc-with-output-formats-with-bpc.html
* igt@kms_fbcon_fbt@fbc:
- shard-dg2: [PASS][190] -> [SKIP][191] ([i915#1849])
[190]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15588/shard-dg2-6/igt@kms_fbcon_fbt@fbc.html
[191]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139302v3/shard-dg2-2/igt@kms_fbcon_fbt@fbc.html
* igt@kms_feature_discovery@psr1:
- shard-rkl: NOTRUN -> [SKIP][192] ([i915#658])
[192]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139302v3/shard-rkl-4/igt@kms_feature_discovery@psr1.html
* igt@kms_flip@2x-flip-vs-blocking-wf-vblank@ab-vga1-hdmi-a1:
- shard-snb: [PASS][193] -> [FAIL][194] ([i915#2122]) +1 other test fail
[193]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15588/shard-snb1/igt@kms_flip@2x-flip-vs-blocking-wf-vblank@ab-vga1-hdmi-a1.html
[194]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139302v3/shard-snb7/igt@kms_flip@2x-flip-vs-blocking-wf-vblank@ab-vga1-hdmi-a1.html
* igt@kms_flip@2x-flip-vs-dpms:
- shard-rkl: NOTRUN -> [SKIP][195] +29 other tests skip
[195]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139302v3/shard-rkl-6/igt@kms_flip@2x-flip-vs-dpms.html
- shard-tglu-1: NOTRUN -> [SKIP][196] ([i915#3637]) +2 other tests skip
[196]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139302v3/shard-tglu-1/igt@kms_flip@2x-flip-vs-dpms.html
* igt@kms_flip@2x-flip-vs-fences-interruptible:
- shard-dg2: NOTRUN -> [SKIP][197] ([i915#8381])
[197]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139302v3/shard-dg2-10/igt@kms_flip@2x-flip-vs-fences-interruptible.html
* igt@kms_flip@2x-flip-vs-wf_vblank-interruptible:
- shard-mtlp: NOTRUN -> [SKIP][198] ([i915#3637])
[198]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139302v3/shard-mtlp-4/igt@kms_flip@2x-flip-vs-wf_vblank-interruptible.html
* igt@kms_flip@2x-single-buffer-flip-vs-dpms-off-vs-modeset:
- shard-dg1: NOTRUN -> [SKIP][199] ([i915#9934]) +2 other tests skip
[199]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139302v3/shard-dg1-18/igt@kms_flip@2x-single-buffer-flip-vs-dpms-off-vs-modeset.html
* igt@kms_flip@2x-wf_vblank-ts-check:
- shard-tglu: NOTRUN -> [SKIP][200] ([i915#3637]) +1 other test skip
[200]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139302v3/shard-tglu-9/igt@kms_flip@2x-wf_vblank-ts-check.html
* igt@kms_flip@blocking-wf_vblank:
- shard-rkl: [PASS][201] -> [FAIL][202] ([i915#11961] / [i915#2122])
[201]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15588/shard-rkl-7/igt@kms_flip@blocking-wf_vblank.html
[202]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139302v3/shard-rkl-7/igt@kms_flip@blocking-wf_vblank.html
* igt@kms_flip@blocking-wf_vblank@a-hdmi-a1:
- shard-rkl: [PASS][203] -> [FAIL][204] ([i915#2122]) +1 other test fail
[203]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15588/shard-rkl-7/igt@kms_flip@blocking-wf_vblank@a-hdmi-a1.html
[204]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139302v3/shard-rkl-7/igt@kms_flip@blocking-wf_vblank@a-hdmi-a1.html
* igt@kms_flip@flip-vs-suspend:
- shard-dg2: NOTRUN -> [SKIP][205] ([i915#5354]) +18 other tests skip
[205]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139302v3/shard-dg2-2/igt@kms_flip@flip-vs-suspend.html
* igt@kms_flip@modeset-vs-vblank-race:
- shard-dg2: [PASS][206] -> [SKIP][207] ([i915#5354]) +12 other tests skip
[206]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15588/shard-dg2-1/igt@kms_flip@modeset-vs-vblank-race.html
[207]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139302v3/shard-dg2-2/igt@kms_flip@modeset-vs-vblank-race.html
* igt@kms_flip@plain-flip-fb-recreate@a-hdmi-a2:
- shard-rkl: NOTRUN -> [FAIL][208] ([i915#2122])
[208]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139302v3/shard-rkl-1/igt@kms_flip@plain-flip-fb-recreate@a-hdmi-a2.html
* igt@kms_flip@plain-flip-fb-recreate@b-hdmi-a2:
- shard-rkl: NOTRUN -> [FAIL][209] ([i915#11989])
[209]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139302v3/shard-rkl-1/igt@kms_flip@plain-flip-fb-recreate@b-hdmi-a2.html
* igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling:
- shard-tglu-1: NOTRUN -> [SKIP][210] ([i915#2672] / [i915#3555]) +1 other test skip
[210]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139302v3/shard-tglu-1/igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling.html
* igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling@pipe-a-valid-mode:
- shard-rkl: NOTRUN -> [SKIP][211] ([i915#2672]) +4 other tests skip
[211]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139302v3/shard-rkl-6/igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling@pipe-a-valid-mode.html
- shard-tglu-1: NOTRUN -> [SKIP][212] ([i915#2587] / [i915#2672]) +1 other test skip
[212]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139302v3/shard-tglu-1/igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling@pipe-a-valid-mode.html
* igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-64bpp-4tile-upscaling:
- shard-tglu: NOTRUN -> [SKIP][213] ([i915#2672] / [i915#3555]) +1 other test skip
[213]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139302v3/shard-tglu-9/igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-64bpp-4tile-upscaling.html
* igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-64bpp-4tile-upscaling@pipe-a-valid-mode:
- shard-tglu: NOTRUN -> [SKIP][214] ([i915#2587] / [i915#2672]) +1 other test skip
[214]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139302v3/shard-tglu-9/igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-64bpp-4tile-upscaling@pipe-a-valid-mode.html
* igt@kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-upscaling@pipe-a-valid-mode:
- shard-dg1: NOTRUN -> [SKIP][215] ([i915#2587] / [i915#2672]) +3 other tests skip
[215]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139302v3/shard-dg1-18/igt@kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-upscaling@pipe-a-valid-mode.html
* igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-64bpp-ytile-upscaling@pipe-a-valid-mode:
- shard-dg2: NOTRUN -> [SKIP][216] ([i915#2672]) +3 other tests skip
[216]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139302v3/shard-dg2-5/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-64bpp-ytile-upscaling@pipe-a-valid-mode.html
* igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-16bpp-4tile-upscaling:
- shard-rkl: NOTRUN -> [SKIP][217] ([i915#2672] / [i915#3555]) +4 other tests skip
[217]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139302v3/shard-rkl-6/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-16bpp-4tile-upscaling.html
* igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-downscaling:
- shard-dg1: NOTRUN -> [SKIP][218] ([i915#2672] / [i915#3555]) +3 other tests skip
[218]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139302v3/shard-dg1-12/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-downscaling.html
* igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-16bpp-ytile-upscaling:
- shard-dg2: NOTRUN -> [SKIP][219] ([i915#2672] / [i915#3555] / [i915#5190])
[219]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139302v3/shard-dg2-10/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-16bpp-ytile-upscaling.html
* igt@kms_frontbuffer_tracking@fbc-2p-primscrn-shrfb-pgflip-blt:
- shard-dg1: NOTRUN -> [SKIP][220] +23 other tests skip
[220]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139302v3/shard-dg1-18/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-shrfb-pgflip-blt.html
* igt@kms_frontbuffer_tracking@fbcpsr-1p-offscren-pri-indfb-draw-mmap-gtt:
- shard-mtlp: NOTRUN -> [SKIP][221] ([i915#8708])
[221]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139302v3/shard-mtlp-3/igt@kms_frontbuffer_tracking@fbcpsr-1p-offscren-pri-indfb-draw-mmap-gtt.html
* igt@kms_frontbuffer_tracking@fbcpsr-1p-offscren-pri-shrfb-draw-pwrite:
- shard-dg1: NOTRUN -> [SKIP][222] ([i915#3458]) +5 other tests skip
[222]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139302v3/shard-dg1-18/igt@kms_frontbuffer_tracking@fbcpsr-1p-offscren-pri-shrfb-draw-pwrite.html
* igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-spr-indfb-draw-blt:
- shard-rkl: NOTRUN -> [SKIP][223] ([i915#1825]) +42 other tests skip
[223]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139302v3/shard-rkl-2/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-spr-indfb-draw-blt.html
* igt@kms_frontbuffer_tracking@psr-1p-primscrn-spr-indfb-draw-render:
- shard-dg2: NOTRUN -> [SKIP][224] ([i915#3458]) +5 other tests skip
[224]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139302v3/shard-dg2-10/igt@kms_frontbuffer_tracking@psr-1p-primscrn-spr-indfb-draw-render.html
* igt@kms_frontbuffer_tracking@psr-2p-primscrn-pri-indfb-draw-mmap-wc:
- shard-mtlp: NOTRUN -> [SKIP][225] ([i915#1825]) +2 other tests skip
[225]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139302v3/shard-mtlp-4/igt@kms_frontbuffer_tracking@psr-2p-primscrn-pri-indfb-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@psr-2p-primscrn-pri-shrfb-draw-mmap-gtt:
- shard-dg2: NOTRUN -> [SKIP][226] ([i915#8708]) +2 other tests skip
[226]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139302v3/shard-dg2-10/igt@kms_frontbuffer_tracking@psr-2p-primscrn-pri-shrfb-draw-mmap-gtt.html
* igt@kms_frontbuffer_tracking@psr-2p-primscrn-spr-indfb-draw-mmap-wc:
- shard-dg1: NOTRUN -> [SKIP][227] ([i915#8708]) +11 other tests skip
[227]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139302v3/shard-dg1-12/igt@kms_frontbuffer_tracking@psr-2p-primscrn-spr-indfb-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@psr-2p-scndscrn-pri-shrfb-draw-mmap-cpu:
- shard-tglu: NOTRUN -> [SKIP][228] +20 other tests skip
[228]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139302v3/shard-tglu-9/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-pri-shrfb-draw-mmap-cpu.html
* igt@kms_frontbuffer_tracking@psr-suspend:
- shard-rkl: NOTRUN -> [SKIP][229] ([i915#3023]) +24 other tests skip
[229]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139302v3/shard-rkl-6/igt@kms_frontbuffer_tracking@psr-suspend.html
- shard-tglu-1: NOTRUN -> [SKIP][230] +15 other tests skip
[230]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139302v3/shard-tglu-1/igt@kms_frontbuffer_tracking@psr-suspend.html
* igt@kms_hdmi_inject@inject-audio:
- shard-dg1: NOTRUN -> [SKIP][231] ([i915#433])
[231]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139302v3/shard-dg1-18/igt@kms_hdmi_inject@inject-audio.html
* igt@kms_hdr@bpc-switch-suspend:
- shard-dg1: NOTRUN -> [SKIP][232] ([i915#3555] / [i915#8228])
[232]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139302v3/shard-dg1-12/igt@kms_hdr@bpc-switch-suspend.html
* igt@kms_hdr@static-swap:
- shard-dg2: [PASS][233] -> [SKIP][234] ([i915#3555] / [i915#8228])
[233]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15588/shard-dg2-10/igt@kms_hdr@static-swap.html
[234]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139302v3/shard-dg2-6/igt@kms_hdr@static-swap.html
* igt@kms_hdr@static-toggle-suspend:
- shard-rkl: NOTRUN -> [SKIP][235] ([i915#3555] / [i915#8228]) +1 other test skip
[235]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139302v3/shard-rkl-4/igt@kms_hdr@static-toggle-suspend.html
* igt@kms_invalid_mode@bad-hsync-end:
- shard-dg2: [PASS][236] -> [SKIP][237] ([i915#3555]) +3 other tests skip
[236]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15588/shard-dg2-6/igt@kms_invalid_mode@bad-hsync-end.html
[237]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139302v3/shard-dg2-2/igt@kms_invalid_mode@bad-hsync-end.html
* igt@kms_joiner@basic-big-joiner:
- shard-rkl: NOTRUN -> [SKIP][238] ([i915#10656])
[238]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139302v3/shard-rkl-4/igt@kms_joiner@basic-big-joiner.html
* igt@kms_joiner@basic-force-ultra-joiner:
- shard-tglu: NOTRUN -> [SKIP][239] ([i915#12394])
[239]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139302v3/shard-tglu-9/igt@kms_joiner@basic-force-ultra-joiner.html
* igt@kms_joiner@basic-ultra-joiner:
- shard-dg1: NOTRUN -> [SKIP][240] ([i915#12339])
[240]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139302v3/shard-dg1-12/igt@kms_joiner@basic-ultra-joiner.html
* igt@kms_lease@lease-revoke:
- shard-dg2: [PASS][241] -> [SKIP][242] ([i915#9197]) +28 other tests skip
[241]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15588/shard-dg2-7/igt@kms_lease@lease-revoke.html
[242]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139302v3/shard-dg2-2/igt@kms_lease@lease-revoke.html
* igt@kms_multipipe_modeset@basic-max-pipe-crc-check:
- shard-dg1: NOTRUN -> [SKIP][243] ([i915#1839])
[243]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139302v3/shard-dg1-12/igt@kms_multipipe_modeset@basic-max-pipe-crc-check.html
* igt@kms_plane@pixel-format:
- shard-dg2: [PASS][244] -> [SKIP][245] ([i915#8825])
[244]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15588/shard-dg2-6/igt@kms_plane@pixel-format.html
[245]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139302v3/shard-dg2-2/igt@kms_plane@pixel-format.html
* igt@kms_plane_alpha_blend@alpha-transparent-fb:
- shard-dg2: [PASS][246] -> [SKIP][247] ([i915#7294]) +1 other test skip
[246]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15588/shard-dg2-7/igt@kms_plane_alpha_blend@alpha-transparent-fb.html
[247]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139302v3/shard-dg2-2/igt@kms_plane_alpha_blend@alpha-transparent-fb.html
* igt@kms_plane_scaling@2x-scaler-multi-pipe:
- shard-mtlp: NOTRUN -> [SKIP][248] ([i915#9809])
[248]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139302v3/shard-mtlp-4/igt@kms_plane_scaling@2x-scaler-multi-pipe.html
* igt@kms_plane_scaling@intel-max-src-size@pipe-a-hdmi-a-1:
- shard-tglu-1: NOTRUN -> [FAIL][249] ([i915#8292]) +1 other test fail
[249]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139302v3/shard-tglu-1/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-2:
- shard-rkl: NOTRUN -> [FAIL][250] ([i915#8292]) +1 other test fail
[250]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139302v3/shard-rkl-6/igt@kms_plane_scaling@intel-max-src-size@pipe-a-hdmi-a-2.html
* igt@kms_plane_scaling@invalid-parameters:
- shard-dg2: [PASS][251] -> [SKIP][252] ([i915#8152] / [i915#9423]) +1 other test skip
[251]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15588/shard-dg2-8/igt@kms_plane_scaling@invalid-parameters.html
[252]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139302v3/shard-dg2-2/igt@kms_plane_scaling@invalid-parameters.html
* igt@kms_plane_scaling@plane-downscale-factor-0-5-with-rotation@pipe-b:
- shard-rkl: NOTRUN -> [SKIP][253] ([i915#12247]) +5 other tests skip
[253]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139302v3/shard-rkl-4/igt@kms_plane_scaling@plane-downscale-factor-0-5-with-rotation@pipe-b.html
* igt@kms_plane_scaling@plane-downscale-factor-0-75-with-pixel-format@pipe-c:
- shard-dg2: [PASS][254] -> [SKIP][255] ([i915#12247]) +11 other tests skip
[254]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15588/shard-dg2-6/igt@kms_plane_scaling@plane-downscale-factor-0-75-with-pixel-format@pipe-c.html
[255]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139302v3/shard-dg2-2/igt@kms_plane_scaling@plane-downscale-factor-0-75-with-pixel-format@pipe-c.html
* igt@kms_plane_scaling@plane-downscale-factor-0-75-with-pixel-format@pipe-d:
- shard-dg2: [PASS][256] -> [SKIP][257] ([i915#8152])
[256]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15588/shard-dg2-6/igt@kms_plane_scaling@plane-downscale-factor-0-75-with-pixel-format@pipe-d.html
[257]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139302v3/shard-dg2-2/igt@kms_plane_scaling@plane-downscale-factor-0-75-with-pixel-format@pipe-d.html
* igt@kms_plane_scaling@plane-upscale-20x20-with-rotation@pipe-d:
- shard-dg2: [PASS][258] -> [SKIP][259] ([i915#12247] / [i915#8152]) +2 other tests skip
[258]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15588/shard-dg2-7/igt@kms_plane_scaling@plane-upscale-20x20-with-rotation@pipe-d.html
[259]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139302v3/shard-dg2-2/igt@kms_plane_scaling@plane-upscale-20x20-with-rotation@pipe-d.html
* igt@kms_plane_scaling@plane-upscale-factor-0-25-with-rotation@pipe-d:
- shard-dg1: NOTRUN -> [SKIP][260] ([i915#12247]) +9 other tests skip
[260]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139302v3/shard-dg1-18/igt@kms_plane_scaling@plane-upscale-factor-0-25-with-rotation@pipe-d.html
* igt@kms_plane_scaling@planes-downscale-factor-0-5-upscale-20x20:
- shard-dg2: [PASS][261] -> [SKIP][262] ([i915#12247] / [i915#8152] / [i915#9423]) +2 other tests skip
[261]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15588/shard-dg2-7/igt@kms_plane_scaling@planes-downscale-factor-0-5-upscale-20x20.html
[262]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139302v3/shard-dg2-2/igt@kms_plane_scaling@planes-downscale-factor-0-5-upscale-20x20.html
* igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-25:
- shard-tglu: NOTRUN -> [SKIP][263] ([i915#12247] / [i915#6953])
[263]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139302v3/shard-tglu-9/igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-25.html
* igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-25@pipe-d:
- shard-tglu: NOTRUN -> [SKIP][264] ([i915#12247]) +3 other tests skip
[264]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139302v3/shard-tglu-9/igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-25@pipe-d.html
* igt@kms_plane_scaling@planes-upscale-factor-0-25:
- shard-dg2: NOTRUN -> [SKIP][265] ([i915#3555] / [i915#6953] / [i915#8152] / [i915#9423])
[265]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139302v3/shard-dg2-2/igt@kms_plane_scaling@planes-upscale-factor-0-25.html
* igt@kms_plane_scaling@planes-upscale-factor-0-25@pipe-b:
- shard-dg2: NOTRUN -> [SKIP][266] ([i915#12247]) +2 other tests skip
[266]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139302v3/shard-dg2-2/igt@kms_plane_scaling@planes-upscale-factor-0-25@pipe-b.html
* igt@kms_plane_scaling@planes-upscale-factor-0-25@pipe-d:
- shard-dg2: NOTRUN -> [SKIP][267] ([i915#8152])
[267]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139302v3/shard-dg2-2/igt@kms_plane_scaling@planes-upscale-factor-0-25@pipe-d.html
* igt@kms_pm_dc@dc6-psr:
- shard-dg1: NOTRUN -> [SKIP][268] ([i915#9685]) +1 other test skip
[268]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139302v3/shard-dg1-12/igt@kms_pm_dc@dc6-psr.html
* igt@kms_pm_dc@dc9-dpms:
- shard-tglu: [PASS][269] -> [SKIP][270] ([i915#4281])
[269]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15588/shard-tglu-5/igt@kms_pm_dc@dc9-dpms.html
[270]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139302v3/shard-tglu-7/igt@kms_pm_dc@dc9-dpms.html
* igt@kms_pm_lpsp@kms-lpsp:
- shard-dg2: NOTRUN -> [SKIP][271] ([i915#9340])
[271]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139302v3/shard-dg2-2/igt@kms_pm_lpsp@kms-lpsp.html
- shard-rkl: NOTRUN -> [SKIP][272] ([i915#9340])
[272]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139302v3/shard-rkl-5/igt@kms_pm_lpsp@kms-lpsp.html
* igt@kms_pm_rpm@dpms-mode-unset-non-lpsp:
- shard-tglu-1: NOTRUN -> [SKIP][273] ([i915#9519])
[273]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139302v3/shard-tglu-1/igt@kms_pm_rpm@dpms-mode-unset-non-lpsp.html
* igt@kms_pm_rpm@i2c:
- shard-dg2: [PASS][274] -> [SKIP][275]
[274]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15588/shard-dg2-6/igt@kms_pm_rpm@i2c.html
[275]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139302v3/shard-dg2-2/igt@kms_pm_rpm@i2c.html
* igt@kms_pm_rpm@modeset-lpsp-stress:
- shard-rkl: [PASS][276] -> [SKIP][277] ([i915#9519])
[276]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15588/shard-rkl-4/igt@kms_pm_rpm@modeset-lpsp-stress.html
[277]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139302v3/shard-rkl-1/igt@kms_pm_rpm@modeset-lpsp-stress.html
* igt@kms_pm_rpm@modeset-non-lpsp:
- shard-rkl: NOTRUN -> [SKIP][278] ([i915#9519])
[278]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139302v3/shard-rkl-2/igt@kms_pm_rpm@modeset-non-lpsp.html
* igt@kms_prime@basic-modeset-hybrid:
- shard-rkl: NOTRUN -> [SKIP][279] ([i915#6524])
[279]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139302v3/shard-rkl-5/igt@kms_prime@basic-modeset-hybrid.html
* igt@kms_properties@plane-properties-legacy:
- shard-dg2: [PASS][280] -> [SKIP][281] ([i915#11521])
[280]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15588/shard-dg2-7/igt@kms_properties@plane-properties-legacy.html
[281]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139302v3/shard-dg2-2/igt@kms_properties@plane-properties-legacy.html
* igt@kms_psr2_sf@fbc-pr-cursor-plane-move-continuous-exceed-fully-sf:
- shard-snb: NOTRUN -> [SKIP][282] ([i915#11520]) +2 other tests skip
[282]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139302v3/shard-snb1/igt@kms_psr2_sf@fbc-pr-cursor-plane-move-continuous-exceed-fully-sf.html
- shard-mtlp: NOTRUN -> [SKIP][283] ([i915#12316]) +1 other test skip
[283]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139302v3/shard-mtlp-4/igt@kms_psr2_sf@fbc-pr-cursor-plane-move-continuous-exceed-fully-sf.html
* igt@kms_psr2_sf@fbc-psr2-overlay-plane-move-continuous-exceed-sf:
- shard-dg1: NOTRUN -> [SKIP][284] ([i915#11520]) +3 other tests skip
[284]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139302v3/shard-dg1-18/igt@kms_psr2_sf@fbc-psr2-overlay-plane-move-continuous-exceed-sf.html
* igt@kms_psr2_sf@pr-overlay-plane-move-continuous-exceed-sf:
- shard-dg2: NOTRUN -> [SKIP][285] ([i915#11520]) +2 other tests skip
[285]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139302v3/shard-dg2-10/igt@kms_psr2_sf@pr-overlay-plane-move-continuous-exceed-sf.html
* igt@kms_psr2_sf@psr2-cursor-plane-move-continuous-exceed-fully-sf:
- shard-tglu: NOTRUN -> [SKIP][286] ([i915#11520]) +1 other test skip
[286]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139302v3/shard-tglu-9/igt@kms_psr2_sf@psr2-cursor-plane-move-continuous-exceed-fully-sf.html
* igt@kms_psr2_sf@psr2-overlay-plane-update-continuous-sf:
- shard-rkl: NOTRUN -> [SKIP][287] ([i915#11520]) +7 other tests skip
[287]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139302v3/shard-rkl-6/igt@kms_psr2_sf@psr2-overlay-plane-update-continuous-sf.html
- shard-tglu-1: NOTRUN -> [SKIP][288] ([i915#11520]) +1 other test skip
[288]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139302v3/shard-tglu-1/igt@kms_psr2_sf@psr2-overlay-plane-update-continuous-sf.html
* igt@kms_psr2_su@page_flip-nv12:
- shard-rkl: NOTRUN -> [SKIP][289] ([i915#9683])
[289]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139302v3/shard-rkl-2/igt@kms_psr2_su@page_flip-nv12.html
* igt@kms_psr@fbc-pr-cursor-render:
- shard-tglu: NOTRUN -> [SKIP][290] ([i915#9732]) +4 other tests skip
[290]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139302v3/shard-tglu-9/igt@kms_psr@fbc-pr-cursor-render.html
* igt@kms_psr@fbc-pr-sprite-mmap-gtt:
- shard-dg2: NOTRUN -> [SKIP][291] ([i915#1072] / [i915#9732]) +8 other tests skip
[291]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139302v3/shard-dg2-2/igt@kms_psr@fbc-pr-sprite-mmap-gtt.html
* igt@kms_psr@fbc-psr-no-drrs:
- shard-mtlp: NOTRUN -> [SKIP][292] ([i915#9688]) +3 other tests skip
[292]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139302v3/shard-mtlp-4/igt@kms_psr@fbc-psr-no-drrs.html
* igt@kms_psr@fbc-psr2-sprite-render:
- shard-rkl: NOTRUN -> [SKIP][293] ([i915#1072] / [i915#9732]) +23 other tests skip
[293]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139302v3/shard-rkl-5/igt@kms_psr@fbc-psr2-sprite-render.html
* igt@kms_psr@psr-cursor-plane-move:
- shard-dg1: NOTRUN -> [SKIP][294] ([i915#1072] / [i915#9732]) +10 other tests skip
[294]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139302v3/shard-dg1-12/igt@kms_psr@psr-cursor-plane-move.html
* igt@kms_psr@psr2-cursor-blt:
- shard-tglu-1: NOTRUN -> [SKIP][295] ([i915#9732]) +4 other tests skip
[295]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139302v3/shard-tglu-1/igt@kms_psr@psr2-cursor-blt.html
* igt@kms_psr@psr2-cursor-plane-move@edp-1:
- shard-mtlp: [PASS][296] -> [FAIL][297] ([i915#12380]) +1 other test fail
[296]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15588/shard-mtlp-7/igt@kms_psr@psr2-cursor-plane-move@edp-1.html
[297]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139302v3/shard-mtlp-5/igt@kms_psr@psr2-cursor-plane-move@edp-1.html
* igt@kms_rotation_crc@primary-4-tiled-reflect-x-180:
- shard-rkl: NOTRUN -> [SKIP][298] ([i915#5289])
[298]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139302v3/shard-rkl-6/igt@kms_rotation_crc@primary-4-tiled-reflect-x-180.html
- shard-tglu-1: NOTRUN -> [SKIP][299] ([i915#5289])
[299]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139302v3/shard-tglu-1/igt@kms_rotation_crc@primary-4-tiled-reflect-x-180.html
* igt@kms_scaling_modes@scaling-mode-center:
- shard-dg2: NOTRUN -> [SKIP][300] ([i915#3555]) +3 other tests skip
[300]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139302v3/shard-dg2-10/igt@kms_scaling_modes@scaling-mode-center.html
* igt@kms_scaling_modes@scaling-mode-full-aspect:
- shard-tglu: NOTRUN -> [SKIP][301] ([i915#3555])
[301]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139302v3/shard-tglu-9/igt@kms_scaling_modes@scaling-mode-full-aspect.html
* igt@kms_selftest@drm_framebuffer:
- shard-rkl: NOTRUN -> [ABORT][302] ([i915#12231]) +1 other test abort
[302]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139302v3/shard-rkl-6/igt@kms_selftest@drm_framebuffer.html
* igt@kms_setmode@basic@pipe-b-hdmi-a-2:
- shard-rkl: [PASS][303] -> [FAIL][304] ([i915#5465]) +2 other tests fail
[303]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15588/shard-rkl-3/igt@kms_setmode@basic@pipe-b-hdmi-a-2.html
[304]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139302v3/shard-rkl-5/igt@kms_setmode@basic@pipe-b-hdmi-a-2.html
* igt@kms_universal_plane@universal-plane-sanity:
- shard-dg2: NOTRUN -> [SKIP][305] ([i915#9197]) +8 other tests skip
[305]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139302v3/shard-dg2-2/igt@kms_universal_plane@universal-plane-sanity.html
* igt@kms_vrr@flip-basic-fastset:
- shard-rkl: NOTRUN -> [SKIP][306] ([i915#9906]) +1 other test skip
[306]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139302v3/shard-rkl-5/igt@kms_vrr@flip-basic-fastset.html
* igt@kms_vrr@negative-basic:
- shard-rkl: NOTRUN -> [SKIP][307] ([i915#3555] / [i915#9906])
[307]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139302v3/shard-rkl-2/igt@kms_vrr@negative-basic.html
- shard-mtlp: [PASS][308] -> [FAIL][309] ([i915#10393]) +1 other test fail
[308]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15588/shard-mtlp-4/igt@kms_vrr@negative-basic.html
[309]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139302v3/shard-mtlp-2/igt@kms_vrr@negative-basic.html
* igt@kms_vrr@seamless-rr-switch-vrr:
- shard-dg2: NOTRUN -> [SKIP][310] ([i915#9906])
[310]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139302v3/shard-dg2-10/igt@kms_vrr@seamless-rr-switch-vrr.html
* igt@kms_writeback@writeback-fb-id:
- shard-dg1: NOTRUN -> [SKIP][311] ([i915#2437]) +1 other test skip
[311]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139302v3/shard-dg1-18/igt@kms_writeback@writeback-fb-id.html
* igt@kms_writeback@writeback-pixel-formats:
- shard-glk: NOTRUN -> [SKIP][312] ([i915#2437])
[312]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139302v3/shard-glk1/igt@kms_writeback@writeback-pixel-formats.html
* igt@perf@blocking:
- shard-dg2: [PASS][313] -> [FAIL][314] ([i915#10538]) +1 other test fail
[313]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15588/shard-dg2-7/igt@perf@blocking.html
[314]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139302v3/shard-dg2-3/igt@perf@blocking.html
* igt@perf@blocking@0-rcs0:
- shard-dg1: NOTRUN -> [FAIL][315] ([i915#10538]) +1 other test fail
[315]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139302v3/shard-dg1-12/igt@perf@blocking@0-rcs0.html
* igt@perf@gen8-unprivileged-single-ctx-counters:
- shard-dg2: NOTRUN -> [SKIP][316] ([i915#2436])
[316]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139302v3/shard-dg2-10/igt@perf@gen8-unprivileged-single-ctx-counters.html
* igt@perf@per-context-mode-unprivileged:
- shard-dg2: NOTRUN -> [SKIP][317] +3 other tests skip
[317]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139302v3/shard-dg2-10/igt@perf@per-context-mode-unprivileged.html
* igt@perf_pmu@most-busy-check-all:
- shard-rkl: [PASS][318] -> [FAIL][319] ([i915#4349]) +1 other test fail
[318]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15588/shard-rkl-3/igt@perf_pmu@most-busy-check-all.html
[319]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139302v3/shard-rkl-5/igt@perf_pmu@most-busy-check-all.html
* igt@prime_vgem@basic-write:
- shard-dg1: NOTRUN -> [SKIP][320] ([i915#3708]) +1 other test skip
[320]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139302v3/shard-dg1-18/igt@prime_vgem@basic-write.html
* igt@prime_vgem@fence-flip-hang:
- shard-dg2: NOTRUN -> [SKIP][321] ([i915#3708])
[321]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139302v3/shard-dg2-2/igt@prime_vgem@fence-flip-hang.html
- shard-rkl: NOTRUN -> [SKIP][322] ([i915#3708])
[322]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139302v3/shard-rkl-5/igt@prime_vgem@fence-flip-hang.html
* igt@sriov_basic@enable-vfs-autoprobe-off:
- shard-rkl: NOTRUN -> [SKIP][323] ([i915#9917]) +1 other test skip
[323]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139302v3/shard-rkl-2/igt@sriov_basic@enable-vfs-autoprobe-off.html
* igt@sriov_basic@enable-vfs-autoprobe-on:
- shard-tglu-1: NOTRUN -> [SKIP][324] ([i915#9917])
[324]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139302v3/shard-tglu-1/igt@sriov_basic@enable-vfs-autoprobe-on.html
* igt@tools_test@sysfs_l3_parity:
- shard-dg2: NOTRUN -> [SKIP][325] ([i915#4818])
[325]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139302v3/shard-dg2-2/igt@tools_test@sysfs_l3_parity.html
#### Possible fixes ####
* igt@fbdev@write:
- shard-dg2: [SKIP][326] ([i915#2582]) -> [PASS][327]
[326]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15588/shard-dg2-2/igt@fbdev@write.html
[327]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139302v3/shard-dg2-6/igt@fbdev@write.html
* igt@gem_ccs@suspend-resume@linear-compressed-compfmt0-lmem0-lmem0:
- shard-dg2: [INCOMPLETE][328] ([i915#12392] / [i915#7297]) -> [PASS][329]
[328]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15588/shard-dg2-10/igt@gem_ccs@suspend-resume@linear-compressed-compfmt0-lmem0-lmem0.html
[329]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139302v3/shard-dg2-7/igt@gem_ccs@suspend-resume@linear-compressed-compfmt0-lmem0-lmem0.html
* igt@gem_exec_fair@basic-pace@bcs0:
- shard-rkl: [FAIL][330] ([i915#2842]) -> [PASS][331]
[330]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15588/shard-rkl-2/igt@gem_exec_fair@basic-pace@bcs0.html
[331]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139302v3/shard-rkl-1/igt@gem_exec_fair@basic-pace@bcs0.html
* igt@gem_exec_suspend@basic-s0:
- shard-dg2: [INCOMPLETE][332] ([i915#11441]) -> [PASS][333]
[332]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15588/shard-dg2-1/igt@gem_exec_suspend@basic-s0.html
[333]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139302v3/shard-dg2-2/igt@gem_exec_suspend@basic-s0.html
* igt@gem_exec_suspend@basic-s0@lmem0:
- shard-dg2: [INCOMPLETE][334] -> [PASS][335]
[334]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15588/shard-dg2-1/igt@gem_exec_suspend@basic-s0@lmem0.html
[335]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139302v3/shard-dg2-2/igt@gem_exec_suspend@basic-s0@lmem0.html
* igt@gem_exec_suspend@basic-s4-devices:
- shard-dg1: [ABORT][336] ([i915#7975] / [i915#8213]) -> [PASS][337] +1 other test pass
[336]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15588/shard-dg1-14/igt@gem_exec_suspend@basic-s4-devices.html
[337]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139302v3/shard-dg1-18/igt@gem_exec_suspend@basic-s4-devices.html
* igt@gen9_exec_parse@allowed-single:
- shard-glk: ([PASS][338], [ABORT][339]) ([i915#12375] / [i915#5566]) -> [PASS][340]
[338]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15588/shard-glk9/igt@gen9_exec_parse@allowed-single.html
[339]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15588/shard-glk6/igt@gen9_exec_parse@allowed-single.html
[340]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139302v3/shard-glk2/igt@gen9_exec_parse@allowed-single.html
* igt@i915_module_load@reload-with-fault-injection:
- shard-dg2: [ABORT][341] ([i915#9820]) -> [PASS][342]
[341]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15588/shard-dg2-8/igt@i915_module_load@reload-with-fault-injection.html
[342]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139302v3/shard-dg2-10/igt@i915_module_load@reload-with-fault-injection.html
- shard-snb: [ABORT][343] ([i915#9820]) -> [PASS][344]
[343]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15588/shard-snb1/igt@i915_module_load@reload-with-fault-injection.html
[344]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139302v3/shard-snb7/igt@i915_module_load@reload-with-fault-injection.html
* igt@i915_pm_rc6_residency@rc6-idle@gt0-vecs0:
- shard-dg1: [FAIL][345] ([i915#3591]) -> [PASS][346] +1 other test pass
[345]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15588/shard-dg1-12/igt@i915_pm_rc6_residency@rc6-idle@gt0-vecs0.html
[346]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139302v3/shard-dg1-19/igt@i915_pm_rc6_residency@rc6-idle@gt0-vecs0.html
* igt@kms_atomic@plane-cursor-legacy:
- shard-dg2: [SKIP][347] ([i915#9197]) -> [PASS][348] +34 other tests pass
[347]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15588/shard-dg2-2/igt@kms_atomic@plane-cursor-legacy.html
[348]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139302v3/shard-dg2-6/igt@kms_atomic@plane-cursor-legacy.html
* igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-0-hflip:
- shard-dg1: [DMESG-WARN][349] ([i915#4423]) -> [PASS][350] +1 other test pass
[349]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15588/shard-dg1-17/igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-0-hflip.html
[350]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139302v3/shard-dg1-17/igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-0-hflip.html
* igt@kms_cursor_legacy@2x-cursor-vs-flip-legacy:
- shard-snb: [SKIP][351] -> [PASS][352] +1 other test pass
[351]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15588/shard-snb1/igt@kms_cursor_legacy@2x-cursor-vs-flip-legacy.html
[352]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139302v3/shard-snb7/igt@kms_cursor_legacy@2x-cursor-vs-flip-legacy.html
* igt@kms_flip@2x-modeset-vs-vblank-race-interruptible@ac-hdmi-a1-hdmi-a2:
- shard-glk: ([PASS][353], [FAIL][354]) -> [PASS][355]
[353]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15588/shard-glk7/igt@kms_flip@2x-modeset-vs-vblank-race-interruptible@ac-hdmi-a1-hdmi-a2.html
[354]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15588/shard-glk6/igt@kms_flip@2x-modeset-vs-vblank-race-interruptible@ac-hdmi-a1-hdmi-a2.html
[355]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139302v3/shard-glk2/igt@kms_flip@2x-modeset-vs-vblank-race-interruptible@ac-hdmi-a1-hdmi-a2.html
* igt@kms_flip@2x-modeset-vs-vblank-race-interruptible@bc-hdmi-a1-hdmi-a2:
- shard-glk: ([PASS][356], [FAIL][357]) ([i915#12403]) -> [PASS][358] +1 other test pass
[356]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15588/shard-glk7/igt@kms_flip@2x-modeset-vs-vblank-race-interruptible@bc-hdmi-a1-hdmi-a2.html
[357]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15588/shard-glk6/igt@kms_flip@2x-modeset-vs-vblank-race-interruptible@bc-hdmi-a1-hdmi-a2.html
[358]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139302v3/shard-glk2/igt@kms_flip@2x-modeset-vs-vblank-race-interruptible@bc-hdmi-a1-hdmi-a2.html
* igt@kms_flip@flip-vs-suspend:
- shard-dg1: [INCOMPLETE][359] ([i915#4839] / [i915#6113]) -> [PASS][360]
[359]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15588/shard-dg1-13/igt@kms_flip@flip-vs-suspend.html
[360]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139302v3/shard-dg1-17/igt@kms_flip@flip-vs-suspend.html
* igt@kms_flip@flip-vs-suspend@c-hdmi-a2:
- shard-glk: ([INCOMPLETE][361], [PASS][362], [PASS][363]) ([i915#4839]) -> [PASS][364] +1 other test pass
[361]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15588/shard-glk4/igt@kms_flip@flip-vs-suspend@c-hdmi-a2.html
[362]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15588/shard-glk7/igt@kms_flip@flip-vs-suspend@c-hdmi-a2.html
[363]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15588/shard-glk9/igt@kms_flip@flip-vs-suspend@c-hdmi-a2.html
[364]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139302v3/shard-glk3/igt@kms_flip@flip-vs-suspend@c-hdmi-a2.html
* igt@kms_flip@plain-flip-fb-recreate:
- shard-glk: ([PASS][365], [FAIL][366]) ([i915#2122]) -> [PASS][367] +1 other test pass
[365]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15588/shard-glk5/igt@kms_flip@plain-flip-fb-recreate.html
[366]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15588/shard-glk1/igt@kms_flip@plain-flip-fb-recreate.html
[367]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139302v3/shard-glk6/igt@kms_flip@plain-flip-fb-recreate.html
* igt@kms_flip@plain-flip-fb-recreate@a-vga1:
- shard-snb: [FAIL][368] ([i915#2122]) -> [PASS][369] +5 other tests pass
[368]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15588/shard-snb1/igt@kms_flip@plain-flip-fb-recreate@a-vga1.html
[369]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139302v3/shard-snb7/igt@kms_flip@plain-flip-fb-recreate@a-vga1.html
* igt@kms_flip@plain-flip-fb-recreate@c-hdmi-a1:
- shard-tglu: [FAIL][370] ([i915#2122]) -> [PASS][371] +4 other tests pass
[370]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15588/shard-tglu-3/igt@kms_flip@plain-flip-fb-recreate@c-hdmi-a1.html
[371]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139302v3/shard-tglu-7/igt@kms_flip@plain-flip-fb-recreate@c-hdmi-a1.html
* igt@kms_flip@plain-flip-ts-check-interruptible:
- shard-mtlp: [FAIL][372] ([i915#11989] / [i915#2122]) -> [PASS][373]
[372]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15588/shard-mtlp-4/igt@kms_flip@plain-flip-ts-check-interruptible.html
[373]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139302v3/shard-mtlp-2/igt@kms_flip@plain-flip-ts-check-interruptible.html
* igt@kms_flip@plain-flip-ts-check-interruptible@a-edp1:
- shard-mtlp: [FAIL][374] ([i915#2122]) -> [PASS][375]
[374]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15588/shard-mtlp-4/igt@kms_flip@plain-flip-ts-check-interruptible@a-edp1.html
[375]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139302v3/shard-mtlp-2/igt@kms_flip@plain-flip-ts-check-interruptible@a-edp1.html
* igt@kms_flip@wf_vblank-ts-check-interruptible:
- shard-dg2: [FAIL][376] ([i915#2122]) -> [PASS][377] +2 other tests pass
[376]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15588/shard-dg2-1/igt@kms_flip@wf_vblank-ts-check-interruptible.html
[377]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139302v3/shard-dg2-7/igt@kms_flip@wf_vblank-ts-check-interruptible.html
* igt@kms_flip@wf_vblank-ts-check-interruptible@a-hdmi-a1:
- shard-glk: ([PASS][378], [FAIL][379], [PASS][380]) ([i915#2122]) -> [PASS][381] +3 other tests pass
[378]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15588/shard-glk7/igt@kms_flip@wf_vblank-ts-check-interruptible@a-hdmi-a1.html
[379]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15588/shard-glk8/igt@kms_flip@wf_vblank-ts-check-interruptible@a-hdmi-a1.html
[380]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15588/shard-glk6/igt@kms_flip@wf_vblank-ts-check-interruptible@a-hdmi-a1.html
[381]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139302v3/shard-glk9/igt@kms_flip@wf_vblank-ts-check-interruptible@a-hdmi-a1.html
* igt@kms_frontbuffer_tracking@fbc-1p-primscrn-cur-indfb-move:
- shard-dg2: [SKIP][382] ([i915#5354]) -> [PASS][383] +14 other tests pass
[382]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15588/shard-dg2-2/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-cur-indfb-move.html
[383]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139302v3/shard-dg2-5/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-cur-indfb-move.html
* igt@kms_hdr@static-toggle-suspend:
- shard-dg2: [SKIP][384] ([i915#3555] / [i915#8228]) -> [PASS][385]
[384]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15588/shard-dg2-3/igt@kms_hdr@static-toggle-suspend.html
[385]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139302v3/shard-dg2-10/igt@kms_hdr@static-toggle-suspend.html
* igt@kms_invalid_mode@clock-too-high:
- shard-dg2: [SKIP][386] ([i915#3555]) -> [PASS][387] +2 other tests pass
[386]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15588/shard-dg2-2/igt@kms_invalid_mode@clock-too-high.html
[387]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139302v3/shard-dg2-4/igt@kms_invalid_mode@clock-too-high.html
* igt@kms_plane@plane-panning-bottom-right:
- shard-dg2: [SKIP][388] ([i915#8825]) -> [PASS][389]
[388]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15588/shard-dg2-2/igt@kms_plane@plane-panning-bottom-right.html
[389]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139302v3/shard-dg2-6/igt@kms_plane@plane-panning-bottom-right.html
* igt@kms_plane_alpha_blend@constant-alpha-mid:
- shard-dg2: [SKIP][390] ([i915#7294]) -> [PASS][391]
[390]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15588/shard-dg2-2/igt@kms_plane_alpha_blend@constant-alpha-mid.html
[391]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139302v3/shard-dg2-5/igt@kms_plane_alpha_blend@constant-alpha-mid.html
* igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-rotation:
- shard-dg2: [SKIP][392] ([i915#3555] / [i915#8152] / [i915#9423]) -> [PASS][393] +1 other test pass
[392]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15588/shard-dg2-2/igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-rotation.html
[393]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139302v3/shard-dg2-5/igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-rotation.html
* igt@kms_plane_scaling@plane-upscale-factor-0-25-with-modifiers:
- shard-dg2: [SKIP][394] ([i915#8152] / [i915#9423]) -> [PASS][395] +1 other test pass
[394]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15588/shard-dg2-2/igt@kms_plane_scaling@plane-upscale-factor-0-25-with-modifiers.html
[395]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139302v3/shard-dg2-6/igt@kms_plane_scaling@plane-upscale-factor-0-25-with-modifiers.html
* igt@kms_plane_scaling@plane-upscale-factor-0-25-with-modifiers@pipe-c:
- shard-dg2: [SKIP][396] ([i915#12247]) -> [PASS][397] +14 other tests pass
[396]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15588/shard-dg2-2/igt@kms_plane_scaling@plane-upscale-factor-0-25-with-modifiers@pipe-c.html
[397]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139302v3/shard-dg2-6/igt@kms_plane_scaling@plane-upscale-factor-0-25-with-modifiers@pipe-c.html
* igt@kms_plane_scaling@plane-upscale-factor-0-25-with-modifiers@pipe-d:
- shard-dg2: [SKIP][398] ([i915#8152]) -> [PASS][399] +2 other tests pass
[398]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15588/shard-dg2-2/igt@kms_plane_scaling@plane-upscale-factor-0-25-with-modifiers@pipe-d.html
[399]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139302v3/shard-dg2-6/igt@kms_plane_scaling@plane-upscale-factor-0-25-with-modifiers@pipe-d.html
* igt@kms_plane_scaling@planes-downscale-factor-0-75-upscale-factor-0-25:
- shard-dg2: [SKIP][400] ([i915#6953] / [i915#8152] / [i915#9423]) -> [PASS][401]
[400]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15588/shard-dg2-2/igt@kms_plane_scaling@planes-downscale-factor-0-75-upscale-factor-0-25.html
[401]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139302v3/shard-dg2-5/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-dg2: [SKIP][402] ([i915#12247] / [i915#8152]) -> [PASS][403] +1 other test pass
[402]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15588/shard-dg2-2/igt@kms_plane_scaling@planes-downscale-factor-0-75-upscale-factor-0-25@pipe-d.html
[403]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139302v3/shard-dg2-5/igt@kms_plane_scaling@planes-downscale-factor-0-75-upscale-factor-0-25@pipe-d.html
* igt@kms_pm_dc@dc5-dpms-negative:
- shard-dg2: [SKIP][404] ([i915#9293]) -> [PASS][405]
[404]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15588/shard-dg2-2/igt@kms_pm_dc@dc5-dpms-negative.html
[405]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139302v3/shard-dg2-6/igt@kms_pm_dc@dc5-dpms-negative.html
* igt@kms_pm_rpm@modeset-non-lpsp-stress-no-wait:
- shard-dg2: [SKIP][406] ([i915#9519]) -> [PASS][407]
[406]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15588/shard-dg2-2/igt@kms_pm_rpm@modeset-non-lpsp-stress-no-wait.html
[407]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139302v3/shard-dg2-6/igt@kms_pm_rpm@modeset-non-lpsp-stress-no-wait.html
- shard-rkl: [SKIP][408] ([i915#9519]) -> [PASS][409] +1 other test pass
[408]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15588/shard-rkl-4/igt@kms_pm_rpm@modeset-non-lpsp-stress-no-wait.html
[409]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139302v3/shard-rkl-3/igt@kms_pm_rpm@modeset-non-lpsp-stress-no-wait.html
* igt@perf@blocking:
- shard-mtlp: [FAIL][410] ([i915#10538]) -> [PASS][411] +1 other test pass
[410]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15588/shard-mtlp-4/igt@perf@blocking.html
[411]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139302v3/shard-mtlp-3/igt@perf@blocking.html
* igt@perf_pmu@busy-double-start@vecs1:
- shard-dg2: [FAIL][412] ([i915#4349]) -> [PASS][413] +4 other tests pass
[412]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15588/shard-dg2-5/igt@perf_pmu@busy-double-start@vecs1.html
[413]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139302v3/shard-dg2-6/igt@perf_pmu@busy-double-start@vecs1.html
* igt@syncobj_timeline@multi-wait-for-submit-available-submitted-signaled:
- shard-glk: [INCOMPLETE][414] ([i915#2295]) -> [PASS][415]
[414]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15588/shard-glk1/igt@syncobj_timeline@multi-wait-for-submit-available-submitted-signaled.html
[415]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139302v3/shard-glk6/igt@syncobj_timeline@multi-wait-for-submit-available-submitted-signaled.html
#### Warnings ####
* igt@gem_pread@exhaustion:
- shard-snb: [INCOMPLETE][416] -> [WARN][417] ([i915#2658])
[416]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15588/shard-snb5/igt@gem_pread@exhaustion.html
[417]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139302v3/shard-snb7/igt@gem_pread@exhaustion.html
* igt@i915_module_load@reload-with-fault-injection:
- shard-mtlp: [ABORT][418] ([i915#10131] / [i915#10887] / [i915#9820]) -> [ABORT][419] ([i915#10131] / [i915#9820])
[418]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15588/shard-mtlp-1/igt@i915_module_load@reload-with-fault-injection.html
[419]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139302v3/shard-mtlp-3/igt@i915_module_load@reload-with-fault-injection.html
* igt@i915_pm_rpm@gem-evict-pwrite:
- shard-dg1: [SKIP][420] ([i915#4077] / [i915#4423]) -> [SKIP][421] ([i915#4077])
[420]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15588/shard-dg1-15/igt@i915_pm_rpm@gem-evict-pwrite.html
[421]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139302v3/shard-dg1-13/igt@i915_pm_rpm@gem-evict-pwrite.html
* igt@i915_selftest@mock:
- shard-glk: ([DMESG-WARN][422], [DMESG-WARN][423], [DMESG-WARN][424]) ([i915#1982] / [i915#9311]) -> [DMESG-WARN][425] ([i915#9311])
[422]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15588/shard-glk9/igt@i915_selftest@mock.html
[423]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15588/shard-glk1/igt@i915_selftest@mock.html
[424]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15588/shard-glk4/igt@i915_selftest@mock.html
[425]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139302v3/shard-glk1/igt@i915_selftest@mock.html
* igt@kms_atomic_transition@plane-all-modeset-transition:
- shard-dg2: [FAIL][426] ([i915#5956]) -> [SKIP][427] ([i915#9197])
[426]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15588/shard-dg2-8/igt@kms_atomic_transition@plane-all-modeset-transition.html
[427]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139302v3/shard-dg2-2/igt@kms_atomic_transition@plane-all-modeset-transition.html
* igt@kms_atomic_transition@plane-all-modeset-transition-internal-panels:
- shard-dg2: [SKIP][428] ([i915#1769] / [i915#3555]) -> [SKIP][429] ([i915#9197])
[428]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15588/shard-dg2-6/igt@kms_atomic_transition@plane-all-modeset-transition-internal-panels.html
[429]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139302v3/shard-dg2-2/igt@kms_atomic_transition@plane-all-modeset-transition-internal-panels.html
* igt@kms_big_fb@x-tiled-16bpp-rotate-270:
- shard-dg2: [SKIP][430] -> [SKIP][431] ([i915#9197]) +2 other tests skip
[430]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15588/shard-dg2-6/igt@kms_big_fb@x-tiled-16bpp-rotate-270.html
[431]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139302v3/shard-dg2-2/igt@kms_big_fb@x-tiled-16bpp-rotate-270.html
* igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-0-async-flip:
- shard-dg2: [SKIP][432] ([i915#4538] / [i915#5190]) -> [SKIP][433] ([i915#5190] / [i915#9197]) +6 other tests skip
[432]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15588/shard-dg2-6/igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-0-async-flip.html
[433]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139302v3/shard-dg2-2/igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-0-async-flip.html
* igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-180-hflip-async-flip:
- shard-dg2: [SKIP][434] ([i915#5190] / [i915#9197]) -> [SKIP][435] ([i915#4538] / [i915#5190]) +3 other tests skip
[434]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15588/shard-dg2-2/igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-180-hflip-async-flip.html
[435]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139302v3/shard-dg2-4/igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-180-hflip-async-flip.html
* igt@kms_big_fb@yf-tiled-64bpp-rotate-180:
- shard-dg1: [SKIP][436] ([i915#4423] / [i915#4538]) -> [SKIP][437] ([i915#4538])
[436]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15588/shard-dg1-15/igt@kms_big_fb@yf-tiled-64bpp-rotate-180.html
[437]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139302v3/shard-dg1-13/igt@kms_big_fb@yf-tiled-64bpp-rotate-180.html
* igt@kms_ccs@bad-aux-stride-y-tiled-gen12-rc-ccs-cc:
- shard-dg2: [SKIP][438] ([i915#10307] / [i915#6095]) -> [SKIP][439] ([i915#9197]) +8 other tests skip
[438]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15588/shard-dg2-7/igt@kms_ccs@bad-aux-stride-y-tiled-gen12-rc-ccs-cc.html
[439]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139302v3/shard-dg2-2/igt@kms_ccs@bad-aux-stride-y-tiled-gen12-rc-ccs-cc.html
* igt@kms_ccs@ccs-on-another-bo-y-tiled-gen12-rc-ccs:
- shard-dg2: [SKIP][440] ([i915#9197]) -> [SKIP][441] ([i915#10307] / [i915#6095]) +7 other tests skip
[440]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15588/shard-dg2-2/igt@kms_ccs@ccs-on-another-bo-y-tiled-gen12-rc-ccs.html
[441]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139302v3/shard-dg2-4/igt@kms_ccs@ccs-on-another-bo-y-tiled-gen12-rc-ccs.html
* igt@kms_ccs@crc-primary-basic-4-tiled-bmg-ccs:
- shard-dg2: [SKIP][442] ([i915#12313]) -> [SKIP][443] ([i915#9197])
[442]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15588/shard-dg2-6/igt@kms_ccs@crc-primary-basic-4-tiled-bmg-ccs.html
[443]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139302v3/shard-dg2-2/igt@kms_ccs@crc-primary-basic-4-tiled-bmg-ccs.html
* igt@kms_ccs@crc-sprite-planes-basic-4-tiled-bmg-ccs:
- shard-dg2: [SKIP][444] ([i915#9197]) -> [SKIP][445] ([i915#12313]) +1 other test skip
[444]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15588/shard-dg2-2/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-bmg-ccs.html
[445]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139302v3/shard-dg2-6/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-bmg-ccs.html
* igt@kms_cdclk@mode-transition-all-outputs:
- shard-dg2: [SKIP][446] ([i915#11616] / [i915#7213]) -> [SKIP][447] ([i915#9197])
[446]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15588/shard-dg2-1/igt@kms_cdclk@mode-transition-all-outputs.html
[447]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139302v3/shard-dg2-2/igt@kms_cdclk@mode-transition-all-outputs.html
* igt@kms_chamelium_hpd@dp-hpd-fast:
- shard-dg1: [SKIP][448] ([i915#4423] / [i915#7828]) -> [SKIP][449] ([i915#7828]) +1 other test skip
[448]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15588/shard-dg1-18/igt@kms_chamelium_hpd@dp-hpd-fast.html
[449]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139302v3/shard-dg1-14/igt@kms_chamelium_hpd@dp-hpd-fast.html
* igt@kms_content_protection@lic-type-0:
- shard-dg2: [SKIP][450] ([i915#9424]) -> [TIMEOUT][451] ([i915#7173])
[450]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15588/shard-dg2-8/igt@kms_content_protection@lic-type-0.html
[451]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139302v3/shard-dg2-10/igt@kms_content_protection@lic-type-0.html
* igt@kms_content_protection@srm:
- shard-dg2: [SKIP][452] ([i915#7118]) -> [SKIP][453] ([i915#9197])
[452]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15588/shard-dg2-1/igt@kms_content_protection@srm.html
[453]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139302v3/shard-dg2-2/igt@kms_content_protection@srm.html
* igt@kms_content_protection@type1:
- shard-dg2: [SKIP][454] ([i915#9197]) -> [SKIP][455] ([i915#7118] / [i915#9424])
[454]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15588/shard-dg2-2/igt@kms_content_protection@type1.html
[455]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139302v3/shard-dg2-4/igt@kms_content_protection@type1.html
* igt@kms_cursor_crc@cursor-offscreen-32x32:
- shard-dg2: [SKIP][456] ([i915#3555]) -> [SKIP][457] ([i915#9197]) +1 other test skip
[456]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15588/shard-dg2-7/igt@kms_cursor_crc@cursor-offscreen-32x32.html
[457]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139302v3/shard-dg2-2/igt@kms_cursor_crc@cursor-offscreen-32x32.html
* igt@kms_cursor_crc@cursor-offscreen-512x512:
- shard-dg2: [SKIP][458] ([i915#11453] / [i915#3359]) -> [SKIP][459] ([i915#9197]) +1 other test skip
[458]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15588/shard-dg2-6/igt@kms_cursor_crc@cursor-offscreen-512x512.html
[459]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139302v3/shard-dg2-2/igt@kms_cursor_crc@cursor-offscreen-512x512.html
* igt@kms_cursor_crc@cursor-random-32x32:
- shard-dg2: [SKIP][460] ([i915#9197]) -> [SKIP][461] ([i915#3555]) +2 other tests skip
[460]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15588/shard-dg2-2/igt@kms_cursor_crc@cursor-random-32x32.html
[461]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139302v3/shard-dg2-4/igt@kms_cursor_crc@cursor-random-32x32.html
* igt@kms_cursor_crc@cursor-random-512x512:
- shard-dg2: [SKIP][462] ([i915#9197]) -> [SKIP][463] ([i915#11453] / [i915#3359])
[462]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15588/shard-dg2-2/igt@kms_cursor_crc@cursor-random-512x512.html
[463]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139302v3/shard-dg2-5/igt@kms_cursor_crc@cursor-random-512x512.html
* igt@kms_cursor_legacy@2x-flip-vs-cursor-atomic:
- shard-dg2: [SKIP][464] ([i915#5354]) -> [SKIP][465] ([i915#9197])
[464]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15588/shard-dg2-7/igt@kms_cursor_legacy@2x-flip-vs-cursor-atomic.html
[465]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139302v3/shard-dg2-2/igt@kms_cursor_legacy@2x-flip-vs-cursor-atomic.html
* igt@kms_cursor_legacy@basic-busy-flip-before-cursor-varying-size:
- shard-dg2: [SKIP][466] ([i915#4103] / [i915#4213]) -> [SKIP][467] ([i915#9197])
[466]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15588/shard-dg2-1/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-varying-size.html
[467]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139302v3/shard-dg2-2/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-varying-size.html
* igt@kms_cursor_legacy@cursorb-vs-flipa-atomic:
- shard-dg2: [SKIP][468] ([i915#9197]) -> [SKIP][469] ([i915#5354]) +2 other tests skip
[468]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15588/shard-dg2-2/igt@kms_cursor_legacy@cursorb-vs-flipa-atomic.html
[469]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139302v3/shard-dg2-6/igt@kms_cursor_legacy@cursorb-vs-flipa-atomic.html
* igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions:
-
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139302v3/index.html
[-- Attachment #2: Type: text/html, Size: 110317 bytes --]
^ permalink raw reply [flat|nested] 21+ messages in thread
end of thread, other threads:[~2024-10-24 17:11 UTC | newest]
Thread overview: 21+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2024-10-24 12:33 [CI v4 v4 00/16] drm/i915/display: platform identification with display->platform.<platform> Jani Nikula
2024-10-24 12:33 ` [CI v4 v4 01/16] drm/i915/display: reindent subplatform initialization Jani Nikula
2024-10-24 12:33 ` [CI v4 v4 02/16] drm/i915/display: use a macro to initialize subplatforms Jani Nikula
2024-10-24 12:33 ` [CI v4 v4 03/16] drm/i915/display: use a macro to define platform enumerations Jani Nikula
2024-10-24 12:33 ` [CI v4 v4 04/16] drm/i915/display: join the platform and subplatform enums Jani Nikula
2024-10-24 12:33 ` [CI v4 v4 05/16] drm/i915/display: convert display platforms to lower case Jani Nikula
2024-10-24 12:33 ` [CI v4 v4 06/16] drm/i915/display: add display platforms structure with platform members Jani Nikula
2024-10-24 12:33 ` [CI v4 v4 07/16] drm/i915/display: add platform member to struct intel_display Jani Nikula
2024-10-24 12:33 ` [CI v4 v4 08/16] drm/i915/display: remove the display platform enum as unnecessary Jani Nikula
2024-10-24 12:33 ` [CI v4 v4 09/16] drm/i915/display: add platform group for g4x Jani Nikula
2024-10-24 12:33 ` [CI v4 v4 10/16] drm/i915/display: add subplatform group for HSW/BDW ULT Jani Nikula
2024-10-24 12:33 ` [CI v4 v4 11/16] drm/i915/bios: use display->platform.<platform> instead of IS_<PLATFORM>() Jani Nikula
2024-10-24 12:33 ` [CI v4 v4 12/16] drm/i915/pps: " Jani Nikula
2024-10-24 12:33 ` [CI v4 v4 13/16] drm/i915/tv: " Jani Nikula
2024-10-24 12:33 ` [CI v4 v4 14/16] drm/i915/vga: " Jani Nikula
2024-10-24 12:33 ` [CI v4 v4 15/16] drm/i915/vblank: drop unnecessary i915 local variable Jani Nikula
2024-10-24 12:33 ` [CI v4 v4 16/16] drm/i915/vblank: use display->platform.<platform> instead of IS_<PLATFORM>() Jani Nikula
2024-10-24 13:18 ` ✗ Fi.CI.CHECKPATCH: warning for drm/i915/display: platform identification with display->platform.<platform> (rev3) Patchwork
2024-10-24 13:18 ` ✗ Fi.CI.SPARSE: " Patchwork
2024-10-24 13:35 ` ✓ Fi.CI.BAT: success " Patchwork
2024-10-24 17:11 ` ✗ 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