* [PATCH 00/10] drm/i915: identify all platforms in display probe
@ 2024-05-22 17:33 Jani Nikula
2024-05-22 17:33 ` [PATCH 01/10] drm/i915/display: move params copy at probe earlier Jani Nikula
` (18 more replies)
0 siblings, 19 replies; 34+ messages in thread
From: Jani Nikula @ 2024-05-22 17:33 UTC (permalink / raw)
To: intel-gfx, intel-xe; +Cc: jani.nikula, rodrigo.vivi, lucas.demarchi
Add independent platform probe in display, in preparation for breaking
free from i915 and xe code.
Up next would be adding separate IS_<PLATFORM>() style macros to
display. Not included here, because I couldn't come up with nice names
yet. IS_DISPLAY_<PLATFORM>() is a bit verbose.
BR,
Jani.
Jani Nikula (10):
drm/i915/display: move params copy at probe earlier
drm/i915/display: change probe for no display case
drm/i915/display: check platforms without display one level higher
drm/i915/display: change GMD ID display ip ver propagation at probe
drm/i915/display: add platform descriptors
drm/i915: add LNL PCI IDs
drm/i915/display: change display probe to identify GMD ID based
platforms
drm/i915/display: identify platforms with enum and name
drm/i915/display: add support for subplatforms
drm/i915/display: add probe message
.../drm/i915/display/intel_display_device.c | 920 ++++++++++++------
.../drm/i915/display/intel_display_device.h | 86 +-
include/drm/i915_pciids.h | 6 +
3 files changed, 731 insertions(+), 281 deletions(-)
--
2.39.2
^ permalink raw reply [flat|nested] 34+ messages in thread
* [PATCH 01/10] drm/i915/display: move params copy at probe earlier
2024-05-22 17:33 [PATCH 00/10] drm/i915: identify all platforms in display probe Jani Nikula
@ 2024-05-22 17:33 ` Jani Nikula
2024-05-22 19:53 ` Rodrigo Vivi
2024-05-22 17:33 ` [PATCH 02/10] drm/i915/display: change probe for no display case Jani Nikula
` (17 subsequent siblings)
18 siblings, 1 reply; 34+ messages in thread
From: Jani Nikula @ 2024-05-22 17:33 UTC (permalink / raw)
To: intel-gfx, intel-xe; +Cc: jani.nikula, rodrigo.vivi, lucas.demarchi
Copy the parameters earlier to make subsequent changes easier.
Signed-off-by: Jani Nikula <jani.nikula@intel.com>
---
drivers/gpu/drm/i915/display/intel_display_device.c | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/drivers/gpu/drm/i915/display/intel_display_device.c b/drivers/gpu/drm/i915/display/intel_display_device.c
index cf093bc0cb28..9edadc7270f6 100644
--- a/drivers/gpu/drm/i915/display/intel_display_device.c
+++ b/drivers/gpu/drm/i915/display/intel_display_device.c
@@ -936,6 +936,8 @@ void intel_display_device_probe(struct drm_i915_private *i915)
/* Add drm device backpointer as early as possible. */
i915->display.drm = &i915->drm;
+ intel_display_params_copy(&i915->display.params);
+
if (HAS_GMD_ID(i915))
info = probe_gmdid_display(i915, &ver, &rel, &step);
else
@@ -952,8 +954,6 @@ void intel_display_device_probe(struct drm_i915_private *i915)
DISPLAY_RUNTIME_INFO(i915)->ip.rel = rel;
DISPLAY_RUNTIME_INFO(i915)->ip.step = step;
}
-
- intel_display_params_copy(&i915->display.params);
}
void intel_display_device_remove(struct drm_i915_private *i915)
--
2.39.2
^ permalink raw reply related [flat|nested] 34+ messages in thread
* [PATCH 02/10] drm/i915/display: change probe for no display case
2024-05-22 17:33 [PATCH 00/10] drm/i915: identify all platforms in display probe Jani Nikula
2024-05-22 17:33 ` [PATCH 01/10] drm/i915/display: move params copy at probe earlier Jani Nikula
@ 2024-05-22 17:33 ` Jani Nikula
2024-05-22 19:57 ` Rodrigo Vivi
2024-05-22 17:33 ` [PATCH 03/10] drm/i915/display: check platforms without display one level higher Jani Nikula
` (16 subsequent siblings)
18 siblings, 1 reply; 34+ messages in thread
From: Jani Nikula @ 2024-05-22 17:33 UTC (permalink / raw)
To: intel-gfx, intel-xe; +Cc: jani.nikula, rodrigo.vivi, lucas.demarchi
Return NULL for errors, and handle the no display case in one
location. This will make subsequent changes easier.
Signed-off-by: Jani Nikula <jani.nikula@intel.com>
---
.../drm/i915/display/intel_display_device.c | 18 +++++++++++++-----
1 file changed, 13 insertions(+), 5 deletions(-)
diff --git a/drivers/gpu/drm/i915/display/intel_display_device.c b/drivers/gpu/drm/i915/display/intel_display_device.c
index 9edadc7270f6..03181bb79d21 100644
--- a/drivers/gpu/drm/i915/display/intel_display_device.c
+++ b/drivers/gpu/drm/i915/display/intel_display_device.c
@@ -881,7 +881,7 @@ probe_gmdid_display(struct drm_i915_private *i915, u16 *ver, u16 *rel, u16 *step
addr = pci_iomap_range(pdev, 0, i915_mmio_reg_offset(GMD_ID_DISPLAY), sizeof(u32));
if (!addr) {
drm_err(&i915->drm, "Cannot map MMIO BAR to read display GMD_ID\n");
- return &no_display;
+ return NULL;
}
val = ioread32(addr);
@@ -889,7 +889,7 @@ probe_gmdid_display(struct drm_i915_private *i915, u16 *ver, u16 *rel, u16 *step
if (val == 0) {
drm_dbg_kms(&i915->drm, "Device doesn't have display\n");
- return &no_display;
+ return NULL;
}
*ver = REG_FIELD_GET(GMD_ID_ARCH_MASK, val);
@@ -903,7 +903,7 @@ probe_gmdid_display(struct drm_i915_private *i915, u16 *ver, u16 *rel, u16 *step
drm_err(&i915->drm, "Unrecognized display IP version %d.%02d; disabling display.\n",
*ver, *rel);
- return &no_display;
+ return NULL;
}
static const struct intel_display_device_info *
@@ -914,7 +914,7 @@ probe_display(struct drm_i915_private *i915)
if (has_no_display(pdev)) {
drm_dbg_kms(&i915->drm, "Device doesn't have display\n");
- return &no_display;
+ return NULL;
}
for (i = 0; i < ARRAY_SIZE(intel_display_ids); i++) {
@@ -925,7 +925,7 @@ probe_display(struct drm_i915_private *i915)
drm_dbg(&i915->drm, "No display ID found for device ID %04x; disabling display.\n",
pdev->device);
- return &no_display;
+ return NULL;
}
void intel_display_device_probe(struct drm_i915_private *i915)
@@ -943,6 +943,9 @@ void intel_display_device_probe(struct drm_i915_private *i915)
else
info = probe_display(i915);
+ if (!info)
+ goto no_display;
+
DISPLAY_INFO(i915) = info;
memcpy(DISPLAY_RUNTIME_INFO(i915),
@@ -954,6 +957,11 @@ void intel_display_device_probe(struct drm_i915_private *i915)
DISPLAY_RUNTIME_INFO(i915)->ip.rel = rel;
DISPLAY_RUNTIME_INFO(i915)->ip.step = step;
}
+
+ return;
+
+no_display:
+ DISPLAY_INFO(i915) = &no_display;
}
void intel_display_device_remove(struct drm_i915_private *i915)
--
2.39.2
^ permalink raw reply related [flat|nested] 34+ messages in thread
* [PATCH 03/10] drm/i915/display: check platforms without display one level higher
2024-05-22 17:33 [PATCH 00/10] drm/i915: identify all platforms in display probe Jani Nikula
2024-05-22 17:33 ` [PATCH 01/10] drm/i915/display: move params copy at probe earlier Jani Nikula
2024-05-22 17:33 ` [PATCH 02/10] drm/i915/display: change probe for no display case Jani Nikula
@ 2024-05-22 17:33 ` Jani Nikula
2024-05-22 19:58 ` Rodrigo Vivi
2024-05-22 17:33 ` [PATCH 04/10] drm/i915/display: change GMD ID display ip ver propagation at probe Jani Nikula
` (15 subsequent siblings)
18 siblings, 1 reply; 34+ messages in thread
From: Jani Nikula @ 2024-05-22 17:33 UTC (permalink / raw)
To: intel-gfx, intel-xe; +Cc: jani.nikula, rodrigo.vivi, lucas.demarchi
The main change here is that the check for platforms without display is
now also done for GMD ID based platforms. However, without matches, the
end result is the same.
Signed-off-by: Jani Nikula <jani.nikula@intel.com>
---
drivers/gpu/drm/i915/display/intel_display_device.c | 11 ++++++-----
1 file changed, 6 insertions(+), 5 deletions(-)
diff --git a/drivers/gpu/drm/i915/display/intel_display_device.c b/drivers/gpu/drm/i915/display/intel_display_device.c
index 03181bb79d21..f548a7b0ec23 100644
--- a/drivers/gpu/drm/i915/display/intel_display_device.c
+++ b/drivers/gpu/drm/i915/display/intel_display_device.c
@@ -912,11 +912,6 @@ probe_display(struct drm_i915_private *i915)
struct pci_dev *pdev = to_pci_dev(i915->drm.dev);
int i;
- if (has_no_display(pdev)) {
- drm_dbg_kms(&i915->drm, "Device doesn't have display\n");
- return NULL;
- }
-
for (i = 0; i < ARRAY_SIZE(intel_display_ids); i++) {
if (intel_display_ids[i].devid == pdev->device)
return intel_display_ids[i].info;
@@ -930,6 +925,7 @@ probe_display(struct drm_i915_private *i915)
void intel_display_device_probe(struct drm_i915_private *i915)
{
+ struct pci_dev *pdev = to_pci_dev(i915->drm.dev);
const struct intel_display_device_info *info;
u16 ver, rel, step;
@@ -938,6 +934,11 @@ void intel_display_device_probe(struct drm_i915_private *i915)
intel_display_params_copy(&i915->display.params);
+ if (has_no_display(pdev)) {
+ drm_dbg_kms(&i915->drm, "Device doesn't have display\n");
+ goto no_display;
+ }
+
if (HAS_GMD_ID(i915))
info = probe_gmdid_display(i915, &ver, &rel, &step);
else
--
2.39.2
^ permalink raw reply related [flat|nested] 34+ messages in thread
* [PATCH 04/10] drm/i915/display: change GMD ID display ip ver propagation at probe
2024-05-22 17:33 [PATCH 00/10] drm/i915: identify all platforms in display probe Jani Nikula
` (2 preceding siblings ...)
2024-05-22 17:33 ` [PATCH 03/10] drm/i915/display: check platforms without display one level higher Jani Nikula
@ 2024-05-22 17:33 ` Jani Nikula
2024-05-22 20:15 ` Rodrigo Vivi
2024-05-22 17:33 ` [PATCH 05/10] drm/i915/display: add platform descriptors Jani Nikula
` (14 subsequent siblings)
18 siblings, 1 reply; 34+ messages in thread
From: Jani Nikula @ 2024-05-22 17:33 UTC (permalink / raw)
To: intel-gfx, intel-xe; +Cc: jani.nikula, rodrigo.vivi, lucas.demarchi
Add a name to the display ip version structure, and pass that around
instead of a triplet of u16's.
Signed-off-by: Jani Nikula <jani.nikula@intel.com>
---
.../drm/i915/display/intel_display_device.c | 40 ++++++++-----------
.../drm/i915/display/intel_display_device.h | 2 +-
2 files changed, 17 insertions(+), 25 deletions(-)
diff --git a/drivers/gpu/drm/i915/display/intel_display_device.c b/drivers/gpu/drm/i915/display/intel_display_device.c
index f548a7b0ec23..56b27546d1b3 100644
--- a/drivers/gpu/drm/i915/display/intel_display_device.c
+++ b/drivers/gpu/drm/i915/display/intel_display_device.c
@@ -862,22 +862,14 @@ static const struct {
};
static const struct intel_display_device_info *
-probe_gmdid_display(struct drm_i915_private *i915, u16 *ver, u16 *rel, u16 *step)
+probe_gmdid_display(struct drm_i915_private *i915, struct intel_display_ip_ver *ip_ver)
{
struct pci_dev *pdev = to_pci_dev(i915->drm.dev);
+ struct intel_display_ip_ver gmd_id;
void __iomem *addr;
u32 val;
int i;
- /* The caller expects to ver, rel and step to be initialized
- * here, and there's no good way to check when there was a
- * failure and no_display was returned. So initialize all these
- * values here zero, to be sure.
- */
- *ver = 0;
- *rel = 0;
- *step = 0;
-
addr = pci_iomap_range(pdev, 0, i915_mmio_reg_offset(GMD_ID_DISPLAY), sizeof(u32));
if (!addr) {
drm_err(&i915->drm, "Cannot map MMIO BAR to read display GMD_ID\n");
@@ -892,17 +884,20 @@ probe_gmdid_display(struct drm_i915_private *i915, u16 *ver, u16 *rel, u16 *step
return NULL;
}
- *ver = REG_FIELD_GET(GMD_ID_ARCH_MASK, val);
- *rel = REG_FIELD_GET(GMD_ID_RELEASE_MASK, val);
- *step = REG_FIELD_GET(GMD_ID_STEP, val);
+ gmd_id.ver = REG_FIELD_GET(GMD_ID_ARCH_MASK, val);
+ gmd_id.rel = REG_FIELD_GET(GMD_ID_RELEASE_MASK, val);
+ gmd_id.step = REG_FIELD_GET(GMD_ID_STEP, val);
- for (i = 0; i < ARRAY_SIZE(gmdid_display_map); i++)
- if (*ver == gmdid_display_map[i].ver &&
- *rel == gmdid_display_map[i].rel)
+ for (i = 0; i < ARRAY_SIZE(gmdid_display_map); i++) {
+ if (gmd_id.ver == gmdid_display_map[i].ver &&
+ gmd_id.rel == gmdid_display_map[i].rel) {
+ *ip_ver = gmd_id;
return gmdid_display_map[i].display;
+ }
+ }
drm_err(&i915->drm, "Unrecognized display IP version %d.%02d; disabling display.\n",
- *ver, *rel);
+ gmd_id.ver, gmd_id.rel);
return NULL;
}
@@ -927,7 +922,7 @@ void intel_display_device_probe(struct drm_i915_private *i915)
{
struct pci_dev *pdev = to_pci_dev(i915->drm.dev);
const struct intel_display_device_info *info;
- u16 ver, rel, step;
+ struct intel_display_ip_ver ip_ver = {};
/* Add drm device backpointer as early as possible. */
i915->display.drm = &i915->drm;
@@ -940,7 +935,7 @@ void intel_display_device_probe(struct drm_i915_private *i915)
}
if (HAS_GMD_ID(i915))
- info = probe_gmdid_display(i915, &ver, &rel, &step);
+ info = probe_gmdid_display(i915, &ip_ver);
else
info = probe_display(i915);
@@ -953,11 +948,8 @@ void intel_display_device_probe(struct drm_i915_private *i915)
&DISPLAY_INFO(i915)->__runtime_defaults,
sizeof(*DISPLAY_RUNTIME_INFO(i915)));
- if (HAS_GMD_ID(i915)) {
- DISPLAY_RUNTIME_INFO(i915)->ip.ver = ver;
- DISPLAY_RUNTIME_INFO(i915)->ip.rel = rel;
- DISPLAY_RUNTIME_INFO(i915)->ip.step = step;
- }
+ if (ip_ver.ver || ip_ver.rel || ip_ver.step)
+ DISPLAY_RUNTIME_INFO(i915)->ip = ip_ver;
return;
diff --git a/drivers/gpu/drm/i915/display/intel_display_device.h b/drivers/gpu/drm/i915/display/intel_display_device.h
index 17ddf82f0b6e..fd2d03bfe8a6 100644
--- a/drivers/gpu/drm/i915/display/intel_display_device.h
+++ b/drivers/gpu/drm/i915/display/intel_display_device.h
@@ -111,7 +111,7 @@ struct drm_printer;
(DISPLAY_VER(i915) >= (from) && DISPLAY_VER(i915) <= (until))
struct intel_display_runtime_info {
- struct {
+ struct intel_display_ip_ver {
u16 ver;
u16 rel;
u16 step;
--
2.39.2
^ permalink raw reply related [flat|nested] 34+ messages in thread
* [PATCH 05/10] drm/i915/display: add platform descriptors
2024-05-22 17:33 [PATCH 00/10] drm/i915: identify all platforms in display probe Jani Nikula
` (3 preceding siblings ...)
2024-05-22 17:33 ` [PATCH 04/10] drm/i915/display: change GMD ID display ip ver propagation at probe Jani Nikula
@ 2024-05-22 17:33 ` Jani Nikula
2024-05-23 18:47 ` Rodrigo Vivi
2024-05-22 17:33 ` [PATCH 06/10] drm/i915: add LNL PCI IDs Jani Nikula
` (13 subsequent siblings)
18 siblings, 1 reply; 34+ messages in thread
From: Jani Nikula @ 2024-05-22 17:33 UTC (permalink / raw)
To: intel-gfx, intel-xe; +Cc: jani.nikula, rodrigo.vivi, lucas.demarchi
We'll need to start identifying the platforms independently in display
code in order to break free from the i915 and xe IS_<PLATFORM>()
macros. This is fairly straightforward, as we already identify most
platforms by PCI ID in display probe anyway.
As the first step, add platform descriptors with pointers to display
info. We'll have more platforms than display info, so minimize
duplication:
- Add separate skl/kbl/cfl/cml descriptors while they share the display
info.
- Add separate jsl/ehl descriptors while they share the display info.
Identify ADL-P (and derivatives) and DG2 descriptors by their names even
though their display info is Xe LPD or HPD.
Signed-off-by: Jani Nikula <jani.nikula@intel.com>
---
.../drm/i915/display/intel_display_device.c | 558 ++++++++++--------
1 file changed, 326 insertions(+), 232 deletions(-)
diff --git a/drivers/gpu/drm/i915/display/intel_display_device.c b/drivers/gpu/drm/i915/display/intel_display_device.c
index 56b27546d1b3..d1e03437abb3 100644
--- a/drivers/gpu/drm/i915/display/intel_display_device.c
+++ b/drivers/gpu/drm/i915/display/intel_display_device.c
@@ -20,6 +20,10 @@
__diag_push();
__diag_ignore_all("-Woverride-init", "Allow field initialization overrides for display info");
+struct platform_desc {
+ const struct intel_display_device_info *info;
+};
+
static const struct intel_display_device_info no_display = {};
#define PIPE_A_OFFSET 0x70000
@@ -200,33 +204,41 @@ static const struct intel_display_device_info no_display = {};
.__runtime_defaults.pipe_mask = BIT(PIPE_A), \
.__runtime_defaults.cpu_transcoder_mask = BIT(TRANSCODER_A)
-static const struct intel_display_device_info i830_display = {
- I830_DISPLAY,
+static const struct platform_desc i830_desc = {
+ .info = &(const struct intel_display_device_info) {
+ I830_DISPLAY,
- .__runtime_defaults.port_mask = BIT(PORT_A) | BIT(PORT_B) | BIT(PORT_C), /* DVO A/B/C */
+ .__runtime_defaults.port_mask = BIT(PORT_A) | BIT(PORT_B) | BIT(PORT_C), /* DVO A/B/C */
+ },
};
-static const struct intel_display_device_info i845_display = {
- I845_DISPLAY,
+static const struct platform_desc i845_desc = {
+ .info = &(const struct intel_display_device_info) {
+ I845_DISPLAY,
- .__runtime_defaults.port_mask = BIT(PORT_B) | BIT(PORT_C), /* DVO B/C */
+ .__runtime_defaults.port_mask = BIT(PORT_B) | BIT(PORT_C), /* DVO B/C */
+ },
};
-static const struct intel_display_device_info i85x_display = {
- I830_DISPLAY,
+static const struct platform_desc i85x_desc = {
+ .info = &(const struct intel_display_device_info) {
+ I830_DISPLAY,
- .__runtime_defaults.port_mask = BIT(PORT_B) | BIT(PORT_C), /* DVO B/C */
- .__runtime_defaults.fbc_mask = BIT(INTEL_FBC_A),
+ .__runtime_defaults.port_mask = BIT(PORT_B) | BIT(PORT_C), /* DVO B/C */
+ .__runtime_defaults.fbc_mask = BIT(INTEL_FBC_A),
+ },
};
-static const struct intel_display_device_info i865g_display = {
- I845_DISPLAY,
+static const struct platform_desc i865g_desc = {
+ .info = &(const struct intel_display_device_info) {
+ I845_DISPLAY,
- .__runtime_defaults.port_mask = BIT(PORT_B) | BIT(PORT_C), /* DVO B/C */
- .__runtime_defaults.fbc_mask = BIT(INTEL_FBC_A),
+ .__runtime_defaults.port_mask = BIT(PORT_B) | BIT(PORT_C), /* DVO B/C */
+ .__runtime_defaults.fbc_mask = BIT(INTEL_FBC_A),
+ },
};
-#define GEN3_DISPLAY \
+#define GEN3_DISPLAY \
.has_gmch = 1, \
.has_overlay = 1, \
I9XX_PIPE_OFFSETS, \
@@ -238,52 +250,64 @@ static const struct intel_display_device_info i865g_display = {
BIT(TRANSCODER_A) | BIT(TRANSCODER_B), \
.__runtime_defaults.port_mask = BIT(PORT_B) | BIT(PORT_C) /* SDVO B/C */
-static const struct intel_display_device_info i915g_display = {
- GEN3_DISPLAY,
- I845_COLORS,
- .cursor_needs_physical = 1,
- .overlay_needs_physical = 1,
+static const struct platform_desc i915g_desc = {
+ .info = &(const struct intel_display_device_info) {
+ GEN3_DISPLAY,
+ I845_COLORS,
+ .cursor_needs_physical = 1,
+ .overlay_needs_physical = 1,
+ },
};
-static const struct intel_display_device_info i915gm_display = {
- GEN3_DISPLAY,
- I9XX_COLORS,
- .cursor_needs_physical = 1,
- .overlay_needs_physical = 1,
- .supports_tv = 1,
+static const struct platform_desc i915gm_desc = {
+ .info = &(const struct intel_display_device_info) {
+ GEN3_DISPLAY,
+ I9XX_COLORS,
+ .cursor_needs_physical = 1,
+ .overlay_needs_physical = 1,
+ .supports_tv = 1,
- .__runtime_defaults.fbc_mask = BIT(INTEL_FBC_A),
+ .__runtime_defaults.fbc_mask = BIT(INTEL_FBC_A),
+ },
};
-static const struct intel_display_device_info i945g_display = {
- GEN3_DISPLAY,
- I845_COLORS,
- .has_hotplug = 1,
- .cursor_needs_physical = 1,
- .overlay_needs_physical = 1,
+static const struct platform_desc i945g_desc = {
+ .info = &(const struct intel_display_device_info) {
+ GEN3_DISPLAY,
+ I845_COLORS,
+ .has_hotplug = 1,
+ .cursor_needs_physical = 1,
+ .overlay_needs_physical = 1,
+ },
};
-static const struct intel_display_device_info i945gm_display = {
- GEN3_DISPLAY,
- I9XX_COLORS,
- .has_hotplug = 1,
- .cursor_needs_physical = 1,
- .overlay_needs_physical = 1,
- .supports_tv = 1,
-
- .__runtime_defaults.fbc_mask = BIT(INTEL_FBC_A),
+static const struct platform_desc i945gm_desc = {
+ .info = &(const struct intel_display_device_info) {
+ GEN3_DISPLAY,
+ I9XX_COLORS,
+ .has_hotplug = 1,
+ .cursor_needs_physical = 1,
+ .overlay_needs_physical = 1,
+ .supports_tv = 1,
+
+ .__runtime_defaults.fbc_mask = BIT(INTEL_FBC_A),
+ },
};
-static const struct intel_display_device_info g33_display = {
- GEN3_DISPLAY,
- I845_COLORS,
- .has_hotplug = 1,
+static const struct platform_desc g33_desc = {
+ .info = &(const struct intel_display_device_info) {
+ GEN3_DISPLAY,
+ I845_COLORS,
+ .has_hotplug = 1,
+ },
};
-static const struct intel_display_device_info pnv_display = {
- GEN3_DISPLAY,
- I9XX_COLORS,
- .has_hotplug = 1,
+static const struct platform_desc pnv_desc = {
+ .info = &(const struct intel_display_device_info) {
+ GEN3_DISPLAY,
+ I9XX_COLORS,
+ .has_hotplug = 1,
+ },
};
#define GEN4_DISPLAY \
@@ -298,34 +322,42 @@ static const struct intel_display_device_info pnv_display = {
.__runtime_defaults.cpu_transcoder_mask = \
BIT(TRANSCODER_A) | BIT(TRANSCODER_B)
-static const struct intel_display_device_info i965g_display = {
- GEN4_DISPLAY,
- .has_overlay = 1,
+static const struct platform_desc i965g_desc = {
+ .info = &(const struct intel_display_device_info) {
+ GEN4_DISPLAY,
+ .has_overlay = 1,
- .__runtime_defaults.port_mask = BIT(PORT_B) | BIT(PORT_C), /* SDVO B/C */
+ .__runtime_defaults.port_mask = BIT(PORT_B) | BIT(PORT_C), /* SDVO B/C */
+ },
};
-static const struct intel_display_device_info i965gm_display = {
- GEN4_DISPLAY,
- .has_overlay = 1,
- .supports_tv = 1,
+static const struct platform_desc i965gm_desc = {
+ .info = &(const struct intel_display_device_info) {
+ GEN4_DISPLAY,
+ .has_overlay = 1,
+ .supports_tv = 1,
- .__runtime_defaults.port_mask = BIT(PORT_B) | BIT(PORT_C), /* SDVO B/C */
- .__runtime_defaults.fbc_mask = BIT(INTEL_FBC_A),
+ .__runtime_defaults.port_mask = BIT(PORT_B) | BIT(PORT_C), /* SDVO B/C */
+ .__runtime_defaults.fbc_mask = BIT(INTEL_FBC_A),
+ },
};
-static const struct intel_display_device_info g45_display = {
- GEN4_DISPLAY,
+static const struct platform_desc g45_desc = {
+ .info = &(const struct intel_display_device_info) {
+ GEN4_DISPLAY,
- .__runtime_defaults.port_mask = BIT(PORT_B) | BIT(PORT_C) | BIT(PORT_D), /* SDVO/HDMI/DP B/C, DP D */
+ .__runtime_defaults.port_mask = BIT(PORT_B) | BIT(PORT_C) | BIT(PORT_D), /* SDVO/HDMI/DP B/C, DP D */
+ },
};
-static const struct intel_display_device_info gm45_display = {
- GEN4_DISPLAY,
- .supports_tv = 1,
+static const struct platform_desc gm45_desc = {
+ .info = &(const struct intel_display_device_info) {
+ GEN4_DISPLAY,
+ .supports_tv = 1,
- .__runtime_defaults.port_mask = BIT(PORT_B) | BIT(PORT_C) | BIT(PORT_D), /* SDVO/HDMI/DP B/C, DP D */
- .__runtime_defaults.fbc_mask = BIT(INTEL_FBC_A),
+ .__runtime_defaults.port_mask = BIT(PORT_B) | BIT(PORT_C) | BIT(PORT_D), /* SDVO/HDMI/DP B/C, DP D */
+ .__runtime_defaults.fbc_mask = BIT(INTEL_FBC_A),
+ },
};
#define ILK_DISPLAY \
@@ -340,112 +372,128 @@ static const struct intel_display_device_info gm45_display = {
BIT(TRANSCODER_A) | BIT(TRANSCODER_B), \
.__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 intel_display_device_info ilk_d_display = {
- ILK_DISPLAY,
+static const struct platform_desc ilk_d_desc = {
+ .info = &(const struct intel_display_device_info) {
+ ILK_DISPLAY,
+ },
};
-static const struct intel_display_device_info ilk_m_display = {
- ILK_DISPLAY,
+static const struct platform_desc ilk_m_desc = {
+ .info = &(const struct intel_display_device_info) {
+ ILK_DISPLAY,
- .__runtime_defaults.fbc_mask = BIT(INTEL_FBC_A),
+ .__runtime_defaults.fbc_mask = BIT(INTEL_FBC_A),
+ },
};
-static const struct intel_display_device_info snb_display = {
- .has_hotplug = 1,
- I9XX_PIPE_OFFSETS,
- I9XX_CURSOR_OFFSETS,
- ILK_COLORS,
+static const struct platform_desc snb_desc = {
+ .info = &(const struct intel_display_device_info) {
+ .has_hotplug = 1,
+ I9XX_PIPE_OFFSETS,
+ I9XX_CURSOR_OFFSETS,
+ ILK_COLORS,
- .__runtime_defaults.ip.ver = 6,
- .__runtime_defaults.pipe_mask = BIT(PIPE_A) | BIT(PIPE_B),
- .__runtime_defaults.cpu_transcoder_mask =
+ .__runtime_defaults.ip.ver = 6,
+ .__runtime_defaults.pipe_mask = BIT(PIPE_A) | BIT(PIPE_B),
+ .__runtime_defaults.cpu_transcoder_mask =
BIT(TRANSCODER_A) | BIT(TRANSCODER_B),
- .__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 */
- .__runtime_defaults.fbc_mask = BIT(INTEL_FBC_A),
+ .__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 */
+ .__runtime_defaults.fbc_mask = BIT(INTEL_FBC_A),
+ },
};
-static const struct intel_display_device_info ivb_display = {
- .has_hotplug = 1,
- IVB_PIPE_OFFSETS,
- IVB_CURSOR_OFFSETS,
- IVB_COLORS,
+static const struct platform_desc ivb_desc = {
+ .info = &(const struct intel_display_device_info) {
+ .has_hotplug = 1,
+ IVB_PIPE_OFFSETS,
+ IVB_CURSOR_OFFSETS,
+ IVB_COLORS,
- .__runtime_defaults.ip.ver = 7,
- .__runtime_defaults.pipe_mask = BIT(PIPE_A) | BIT(PIPE_B) | BIT(PIPE_C),
- .__runtime_defaults.cpu_transcoder_mask =
+ .__runtime_defaults.ip.ver = 7,
+ .__runtime_defaults.pipe_mask = BIT(PIPE_A) | BIT(PIPE_B) | BIT(PIPE_C),
+ .__runtime_defaults.cpu_transcoder_mask =
BIT(TRANSCODER_A) | BIT(TRANSCODER_B) | BIT(TRANSCODER_C),
- .__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 */
- .__runtime_defaults.fbc_mask = BIT(INTEL_FBC_A),
+ .__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 */
+ .__runtime_defaults.fbc_mask = BIT(INTEL_FBC_A),
+ },
};
-static const struct intel_display_device_info vlv_display = {
- .has_gmch = 1,
- .has_hotplug = 1,
- .mmio_offset = VLV_DISPLAY_BASE,
- I9XX_PIPE_OFFSETS,
- I9XX_CURSOR_OFFSETS,
- I9XX_COLORS,
-
- .__runtime_defaults.ip.ver = 7,
- .__runtime_defaults.pipe_mask = BIT(PIPE_A) | BIT(PIPE_B),
- .__runtime_defaults.cpu_transcoder_mask =
+static const struct platform_desc vlv_desc = {
+ .info = &(const struct intel_display_device_info) {
+ .has_gmch = 1,
+ .has_hotplug = 1,
+ .mmio_offset = VLV_DISPLAY_BASE,
+ I9XX_PIPE_OFFSETS,
+ I9XX_CURSOR_OFFSETS,
+ I9XX_COLORS,
+
+ .__runtime_defaults.ip.ver = 7,
+ .__runtime_defaults.pipe_mask = BIT(PIPE_A) | BIT(PIPE_B),
+ .__runtime_defaults.cpu_transcoder_mask =
BIT(TRANSCODER_A) | BIT(TRANSCODER_B),
- .__runtime_defaults.port_mask = BIT(PORT_B) | BIT(PORT_C), /* HDMI/DP B/C */
+ .__runtime_defaults.port_mask = BIT(PORT_B) | BIT(PORT_C), /* HDMI/DP B/C */
+ },
};
-static const struct intel_display_device_info hsw_display = {
- .has_ddi = 1,
- .has_dp_mst = 1,
- .has_fpga_dbg = 1,
- .has_hotplug = 1,
- .has_psr = 1,
- .has_psr_hw_tracking = 1,
- HSW_PIPE_OFFSETS,
- IVB_CURSOR_OFFSETS,
- IVB_COLORS,
-
- .__runtime_defaults.ip.ver = 7,
- .__runtime_defaults.pipe_mask = BIT(PIPE_A) | BIT(PIPE_B) | BIT(PIPE_C),
- .__runtime_defaults.cpu_transcoder_mask =
+static const struct platform_desc hsw_desc = {
+ .info = &(const struct intel_display_device_info) {
+ .has_ddi = 1,
+ .has_dp_mst = 1,
+ .has_fpga_dbg = 1,
+ .has_hotplug = 1,
+ .has_psr = 1,
+ .has_psr_hw_tracking = 1,
+ HSW_PIPE_OFFSETS,
+ IVB_CURSOR_OFFSETS,
+ IVB_COLORS,
+
+ .__runtime_defaults.ip.ver = 7,
+ .__runtime_defaults.pipe_mask = BIT(PIPE_A) | BIT(PIPE_B) | BIT(PIPE_C),
+ .__runtime_defaults.cpu_transcoder_mask =
BIT(TRANSCODER_A) | BIT(TRANSCODER_B) |
BIT(TRANSCODER_C) | BIT(TRANSCODER_EDP),
- .__runtime_defaults.port_mask = BIT(PORT_A) | BIT(PORT_B) | BIT(PORT_C) | BIT(PORT_D) | BIT(PORT_E),
- .__runtime_defaults.fbc_mask = BIT(INTEL_FBC_A),
+ .__runtime_defaults.port_mask = BIT(PORT_A) | BIT(PORT_B) | BIT(PORT_C) | BIT(PORT_D) | BIT(PORT_E),
+ .__runtime_defaults.fbc_mask = BIT(INTEL_FBC_A),
+ },
};
-static const struct intel_display_device_info bdw_display = {
- .has_ddi = 1,
- .has_dp_mst = 1,
- .has_fpga_dbg = 1,
- .has_hotplug = 1,
- .has_psr = 1,
- .has_psr_hw_tracking = 1,
- HSW_PIPE_OFFSETS,
- IVB_CURSOR_OFFSETS,
- IVB_COLORS,
-
- .__runtime_defaults.ip.ver = 8,
- .__runtime_defaults.pipe_mask = BIT(PIPE_A) | BIT(PIPE_B) | BIT(PIPE_C),
- .__runtime_defaults.cpu_transcoder_mask =
+static const struct platform_desc bdw_desc = {
+ .info = &(const struct intel_display_device_info) {
+ .has_ddi = 1,
+ .has_dp_mst = 1,
+ .has_fpga_dbg = 1,
+ .has_hotplug = 1,
+ .has_psr = 1,
+ .has_psr_hw_tracking = 1,
+ HSW_PIPE_OFFSETS,
+ IVB_CURSOR_OFFSETS,
+ IVB_COLORS,
+
+ .__runtime_defaults.ip.ver = 8,
+ .__runtime_defaults.pipe_mask = BIT(PIPE_A) | BIT(PIPE_B) | BIT(PIPE_C),
+ .__runtime_defaults.cpu_transcoder_mask =
BIT(TRANSCODER_A) | BIT(TRANSCODER_B) |
BIT(TRANSCODER_C) | BIT(TRANSCODER_EDP),
- .__runtime_defaults.port_mask = BIT(PORT_A) | BIT(PORT_B) | BIT(PORT_C) | BIT(PORT_D) | BIT(PORT_E),
- .__runtime_defaults.fbc_mask = BIT(INTEL_FBC_A),
+ .__runtime_defaults.port_mask = BIT(PORT_A) | BIT(PORT_B) | BIT(PORT_C) | BIT(PORT_D) | BIT(PORT_E),
+ .__runtime_defaults.fbc_mask = BIT(INTEL_FBC_A),
+ },
};
-static const struct intel_display_device_info chv_display = {
- .has_hotplug = 1,
- .has_gmch = 1,
- .mmio_offset = VLV_DISPLAY_BASE,
- CHV_PIPE_OFFSETS,
- CHV_CURSOR_OFFSETS,
- CHV_COLORS,
-
- .__runtime_defaults.ip.ver = 8,
- .__runtime_defaults.pipe_mask = BIT(PIPE_A) | BIT(PIPE_B) | BIT(PIPE_C),
- .__runtime_defaults.cpu_transcoder_mask =
+static const struct platform_desc chv_desc = {
+ .info = &(const struct intel_display_device_info) {
+ .has_hotplug = 1,
+ .has_gmch = 1,
+ .mmio_offset = VLV_DISPLAY_BASE,
+ CHV_PIPE_OFFSETS,
+ CHV_CURSOR_OFFSETS,
+ CHV_COLORS,
+
+ .__runtime_defaults.ip.ver = 8,
+ .__runtime_defaults.pipe_mask = BIT(PIPE_A) | BIT(PIPE_B) | BIT(PIPE_C),
+ .__runtime_defaults.cpu_transcoder_mask =
BIT(TRANSCODER_A) | BIT(TRANSCODER_B) | BIT(TRANSCODER_C),
- .__runtime_defaults.port_mask = BIT(PORT_B) | BIT(PORT_C) | BIT(PORT_D), /* HDMI/DP B/C/D */
+ .__runtime_defaults.port_mask = BIT(PORT_B) | BIT(PORT_C) | BIT(PORT_D), /* HDMI/DP B/C/D */
+ },
};
static const struct intel_display_device_info skl_display = {
@@ -467,13 +515,29 @@ static const struct intel_display_device_info skl_display = {
.__runtime_defaults.has_hdcp = 1,
.__runtime_defaults.pipe_mask = BIT(PIPE_A) | BIT(PIPE_B) | BIT(PIPE_C),
.__runtime_defaults.cpu_transcoder_mask =
- BIT(TRANSCODER_A) | BIT(TRANSCODER_B) |
- BIT(TRANSCODER_C) | BIT(TRANSCODER_EDP),
+ BIT(TRANSCODER_A) | BIT(TRANSCODER_B) |
+ BIT(TRANSCODER_C) | BIT(TRANSCODER_EDP),
.__runtime_defaults.port_mask = BIT(PORT_A) | BIT(PORT_B) | BIT(PORT_C) | BIT(PORT_D) | BIT(PORT_E),
.__runtime_defaults.fbc_mask = BIT(INTEL_FBC_A),
};
-#define GEN9_LP_DISPLAY \
+static const struct platform_desc skl_desc = {
+ .info = &skl_display,
+};
+
+static const struct platform_desc kbl_desc = {
+ .info = &skl_display,
+};
+
+static const struct platform_desc cfl_desc = {
+ .info = &skl_display,
+};
+
+static const struct platform_desc cml_desc = {
+ .info = &skl_display,
+};
+
+#define GEN9_LP_DISPLAY \
.dbuf.slice_mask = BIT(DBUF_S1), \
.has_dp_mst = 1, \
.has_ddi = 1, \
@@ -496,19 +560,23 @@ static const struct intel_display_device_info skl_display = {
BIT(TRANSCODER_DSI_A) | BIT(TRANSCODER_DSI_C), \
.__runtime_defaults.port_mask = BIT(PORT_A) | BIT(PORT_B) | BIT(PORT_C)
-static const struct intel_display_device_info bxt_display = {
- GEN9_LP_DISPLAY,
- .dbuf.size = 512 - 4, /* 4 blocks for bypass path allocation */
+static const struct platform_desc bxt_desc = {
+ .info = &(const struct intel_display_device_info) {
+ GEN9_LP_DISPLAY,
+ .dbuf.size = 512 - 4, /* 4 blocks for bypass path allocation */
- .__runtime_defaults.ip.ver = 9,
+ .__runtime_defaults.ip.ver = 9,
+ },
};
-static const struct intel_display_device_info glk_display = {
- GEN9_LP_DISPLAY,
- .dbuf.size = 1024 - 4, /* 4 blocks for bypass path allocation */
- GLK_COLORS,
+static const struct platform_desc glk_desc = {
+ .info = &(const struct intel_display_device_info) {
+ GEN9_LP_DISPLAY,
+ .dbuf.size = 1024 - 4, /* 4 blocks for bypass path allocation */
+ GLK_COLORS,
- .__runtime_defaults.ip.ver = 10,
+ .__runtime_defaults.ip.ver = 10,
+ },
};
#define ICL_DISPLAY \
@@ -552,10 +620,12 @@ static const struct intel_display_device_info glk_display = {
BIT(TRANSCODER_DSI_0) | BIT(TRANSCODER_DSI_1), \
.__runtime_defaults.fbc_mask = BIT(INTEL_FBC_A)
-static const struct intel_display_device_info icl_display = {
- ICL_DISPLAY,
+static const struct platform_desc icl_desc = {
+ .info = &(const struct intel_display_device_info) {
+ ICL_DISPLAY,
- .__runtime_defaults.port_mask = BIT(PORT_A) | BIT(PORT_B) | BIT(PORT_C) | BIT(PORT_D) | BIT(PORT_E),
+ .__runtime_defaults.port_mask = BIT(PORT_A) | BIT(PORT_B) | BIT(PORT_C) | BIT(PORT_D) | BIT(PORT_E),
+ },
};
static const struct intel_display_device_info jsl_ehl_display = {
@@ -564,6 +634,14 @@ static const struct intel_display_device_info jsl_ehl_display = {
.__runtime_defaults.port_mask = BIT(PORT_A) | BIT(PORT_B) | BIT(PORT_C) | BIT(PORT_D),
};
+static const struct platform_desc jsl_desc = {
+ .info = &jsl_ehl_display,
+};
+
+static const struct platform_desc ehl_desc = {
+ .info = &jsl_ehl_display,
+};
+
#define XE_D_DISPLAY \
.abox_mask = GENMASK(2, 1), \
.dbuf.size = 2048, \
@@ -607,44 +685,52 @@ static const struct intel_display_device_info jsl_ehl_display = {
BIT(TRANSCODER_DSI_0) | BIT(TRANSCODER_DSI_1), \
.__runtime_defaults.fbc_mask = BIT(INTEL_FBC_A)
-static const struct intel_display_device_info tgl_display = {
- XE_D_DISPLAY,
+static const struct platform_desc tgl_desc = {
+ .info = &(const struct intel_display_device_info) {
+ XE_D_DISPLAY,
- /*
- * FIXME DDI C/combo PHY C missing due to combo PHY
- * code making a mess on SKUs where the PHY is missing.
- */
- .__runtime_defaults.port_mask = BIT(PORT_A) | BIT(PORT_B) |
+ /*
+ * FIXME DDI C/combo PHY C missing due to combo PHY
+ * code making a mess on SKUs where the PHY is missing.
+ */
+ .__runtime_defaults.port_mask = BIT(PORT_A) | BIT(PORT_B) |
BIT(PORT_TC1) | BIT(PORT_TC2) | BIT(PORT_TC3) | BIT(PORT_TC4) | BIT(PORT_TC5) | BIT(PORT_TC6),
+ },
};
-static const struct intel_display_device_info dg1_display = {
- XE_D_DISPLAY,
+static const struct platform_desc dg1_desc = {
+ .info = &(const struct intel_display_device_info) {
+ XE_D_DISPLAY,
- .__runtime_defaults.port_mask = BIT(PORT_A) | BIT(PORT_B) |
+ .__runtime_defaults.port_mask = BIT(PORT_A) | BIT(PORT_B) |
BIT(PORT_TC1) | BIT(PORT_TC2),
+ },
};
-static const struct intel_display_device_info rkl_display = {
- XE_D_DISPLAY,
- .abox_mask = BIT(0),
- .has_hti = 1,
- .has_psr_hw_tracking = 0,
+static const struct platform_desc rkl_desc = {
+ .info = &(const struct intel_display_device_info) {
+ XE_D_DISPLAY,
+ .abox_mask = BIT(0),
+ .has_hti = 1,
+ .has_psr_hw_tracking = 0,
- .__runtime_defaults.pipe_mask = BIT(PIPE_A) | BIT(PIPE_B) | BIT(PIPE_C),
- .__runtime_defaults.cpu_transcoder_mask =
+ .__runtime_defaults.pipe_mask = BIT(PIPE_A) | BIT(PIPE_B) | BIT(PIPE_C),
+ .__runtime_defaults.cpu_transcoder_mask =
BIT(TRANSCODER_A) | BIT(TRANSCODER_B) | BIT(TRANSCODER_C),
- .__runtime_defaults.port_mask = BIT(PORT_A) | BIT(PORT_B) |
+ .__runtime_defaults.port_mask = BIT(PORT_A) | BIT(PORT_B) |
BIT(PORT_TC1) | BIT(PORT_TC2),
+ },
};
-static const struct intel_display_device_info adl_s_display = {
- XE_D_DISPLAY,
- .has_hti = 1,
- .has_psr_hw_tracking = 0,
+static const struct platform_desc adl_s_desc = {
+ .info = &(const struct intel_display_device_info) {
+ XE_D_DISPLAY,
+ .has_hti = 1,
+ .has_psr_hw_tracking = 0,
- .__runtime_defaults.port_mask = BIT(PORT_A) |
+ .__runtime_defaults.port_mask = BIT(PORT_A) |
BIT(PORT_TC1) | BIT(PORT_TC2) | BIT(PORT_TC3) | BIT(PORT_TC4),
+ },
};
#define XE_LPD_FEATURES \
@@ -703,6 +789,10 @@ static const struct intel_display_device_info xe_lpd_display = {
BIT(PORT_TC1) | BIT(PORT_TC2) | BIT(PORT_TC3) | BIT(PORT_TC4),
};
+static const struct platform_desc adl_p_desc = {
+ .info = &xe_lpd_display,
+};
+
static const struct intel_display_device_info xe_hpd_display = {
XE_LPD_FEATURES,
.has_cdclk_squash = 1,
@@ -714,6 +804,10 @@ static const struct intel_display_device_info xe_hpd_display = {
BIT(PORT_TC1),
};
+static const struct platform_desc dg2_desc = {
+ .info = &xe_hpd_display,
+};
+
#define XE_LPDP_FEATURES \
.abox_mask = GENMASK(1, 0), \
.color = { \
@@ -795,54 +889,54 @@ static bool has_no_display(struct pci_dev *pdev)
return pci_match_id(ids, pdev);
}
-#define INTEL_DISPLAY_DEVICE(_id, _info) { .devid = (_id), .info = (_info) }
+#define INTEL_DISPLAY_DEVICE(_id, _desc) { .devid = (_id), .desc = (_desc) }
static const struct {
u32 devid;
- const struct intel_display_device_info *info;
+ const struct platform_desc *desc;
} intel_display_ids[] = {
- INTEL_I830_IDS(INTEL_DISPLAY_DEVICE, &i830_display),
- INTEL_I845G_IDS(INTEL_DISPLAY_DEVICE, &i845_display),
- INTEL_I85X_IDS(INTEL_DISPLAY_DEVICE, &i85x_display),
- INTEL_I865G_IDS(INTEL_DISPLAY_DEVICE, &i865g_display),
- INTEL_I915G_IDS(INTEL_DISPLAY_DEVICE, &i915g_display),
- INTEL_I915GM_IDS(INTEL_DISPLAY_DEVICE, &i915gm_display),
- INTEL_I945G_IDS(INTEL_DISPLAY_DEVICE, &i945g_display),
- INTEL_I945GM_IDS(INTEL_DISPLAY_DEVICE, &i945gm_display),
- INTEL_I965G_IDS(INTEL_DISPLAY_DEVICE, &i965g_display),
- INTEL_G33_IDS(INTEL_DISPLAY_DEVICE, &g33_display),
- INTEL_I965GM_IDS(INTEL_DISPLAY_DEVICE, &i965gm_display),
- INTEL_GM45_IDS(INTEL_DISPLAY_DEVICE, &gm45_display),
- INTEL_G45_IDS(INTEL_DISPLAY_DEVICE, &g45_display),
- INTEL_PNV_IDS(INTEL_DISPLAY_DEVICE, &pnv_display),
- INTEL_ILK_D_IDS(INTEL_DISPLAY_DEVICE, &ilk_d_display),
- INTEL_ILK_M_IDS(INTEL_DISPLAY_DEVICE, &ilk_m_display),
- INTEL_SNB_IDS(INTEL_DISPLAY_DEVICE, &snb_display),
- INTEL_IVB_IDS(INTEL_DISPLAY_DEVICE, &ivb_display),
- INTEL_HSW_IDS(INTEL_DISPLAY_DEVICE, &hsw_display),
- INTEL_VLV_IDS(INTEL_DISPLAY_DEVICE, &vlv_display),
- INTEL_BDW_IDS(INTEL_DISPLAY_DEVICE, &bdw_display),
- INTEL_CHV_IDS(INTEL_DISPLAY_DEVICE, &chv_display),
- INTEL_SKL_IDS(INTEL_DISPLAY_DEVICE, &skl_display),
- INTEL_BXT_IDS(INTEL_DISPLAY_DEVICE, &bxt_display),
- INTEL_GLK_IDS(INTEL_DISPLAY_DEVICE, &glk_display),
- INTEL_KBL_IDS(INTEL_DISPLAY_DEVICE, &skl_display),
- INTEL_CFL_IDS(INTEL_DISPLAY_DEVICE, &skl_display),
- INTEL_WHL_IDS(INTEL_DISPLAY_DEVICE, &skl_display),
- INTEL_CML_IDS(INTEL_DISPLAY_DEVICE, &skl_display),
- INTEL_ICL_IDS(INTEL_DISPLAY_DEVICE, &icl_display),
- INTEL_EHL_IDS(INTEL_DISPLAY_DEVICE, &jsl_ehl_display),
- INTEL_JSL_IDS(INTEL_DISPLAY_DEVICE, &jsl_ehl_display),
- INTEL_TGL_IDS(INTEL_DISPLAY_DEVICE, &tgl_display),
- INTEL_DG1_IDS(INTEL_DISPLAY_DEVICE, &dg1_display),
- INTEL_RKL_IDS(INTEL_DISPLAY_DEVICE, &rkl_display),
- INTEL_ADLS_IDS(INTEL_DISPLAY_DEVICE, &adl_s_display),
- INTEL_RPLS_IDS(INTEL_DISPLAY_DEVICE, &adl_s_display),
- INTEL_ADLP_IDS(INTEL_DISPLAY_DEVICE, &xe_lpd_display),
- INTEL_ADLN_IDS(INTEL_DISPLAY_DEVICE, &xe_lpd_display),
- INTEL_RPLU_IDS(INTEL_DISPLAY_DEVICE, &xe_lpd_display),
- INTEL_RPLP_IDS(INTEL_DISPLAY_DEVICE, &xe_lpd_display),
- INTEL_DG2_IDS(INTEL_DISPLAY_DEVICE, &xe_hpd_display),
+ INTEL_I830_IDS(INTEL_DISPLAY_DEVICE, &i830_desc),
+ INTEL_I845G_IDS(INTEL_DISPLAY_DEVICE, &i845_desc),
+ INTEL_I85X_IDS(INTEL_DISPLAY_DEVICE, &i85x_desc),
+ INTEL_I865G_IDS(INTEL_DISPLAY_DEVICE, &i865g_desc),
+ INTEL_I915G_IDS(INTEL_DISPLAY_DEVICE, &i915g_desc),
+ INTEL_I915GM_IDS(INTEL_DISPLAY_DEVICE, &i915gm_desc),
+ INTEL_I945G_IDS(INTEL_DISPLAY_DEVICE, &i945g_desc),
+ INTEL_I945GM_IDS(INTEL_DISPLAY_DEVICE, &i945gm_desc),
+ INTEL_I965G_IDS(INTEL_DISPLAY_DEVICE, &i965g_desc),
+ INTEL_G33_IDS(INTEL_DISPLAY_DEVICE, &g33_desc),
+ INTEL_I965GM_IDS(INTEL_DISPLAY_DEVICE, &i965gm_desc),
+ INTEL_GM45_IDS(INTEL_DISPLAY_DEVICE, &gm45_desc),
+ INTEL_G45_IDS(INTEL_DISPLAY_DEVICE, &g45_desc),
+ INTEL_PNV_IDS(INTEL_DISPLAY_DEVICE, &pnv_desc),
+ INTEL_ILK_D_IDS(INTEL_DISPLAY_DEVICE, &ilk_d_desc),
+ INTEL_ILK_M_IDS(INTEL_DISPLAY_DEVICE, &ilk_m_desc),
+ INTEL_SNB_IDS(INTEL_DISPLAY_DEVICE, &snb_desc),
+ INTEL_IVB_IDS(INTEL_DISPLAY_DEVICE, &ivb_desc),
+ INTEL_HSW_IDS(INTEL_DISPLAY_DEVICE, &hsw_desc),
+ INTEL_VLV_IDS(INTEL_DISPLAY_DEVICE, &vlv_desc),
+ INTEL_BDW_IDS(INTEL_DISPLAY_DEVICE, &bdw_desc),
+ INTEL_CHV_IDS(INTEL_DISPLAY_DEVICE, &chv_desc),
+ INTEL_SKL_IDS(INTEL_DISPLAY_DEVICE, &skl_desc),
+ INTEL_BXT_IDS(INTEL_DISPLAY_DEVICE, &bxt_desc),
+ INTEL_GLK_IDS(INTEL_DISPLAY_DEVICE, &glk_desc),
+ INTEL_KBL_IDS(INTEL_DISPLAY_DEVICE, &kbl_desc),
+ INTEL_CFL_IDS(INTEL_DISPLAY_DEVICE, &cfl_desc),
+ INTEL_WHL_IDS(INTEL_DISPLAY_DEVICE, &cfl_desc),
+ INTEL_CML_IDS(INTEL_DISPLAY_DEVICE, &cml_desc),
+ INTEL_ICL_IDS(INTEL_DISPLAY_DEVICE, &icl_desc),
+ INTEL_EHL_IDS(INTEL_DISPLAY_DEVICE, &ehl_desc),
+ INTEL_JSL_IDS(INTEL_DISPLAY_DEVICE, &jsl_desc),
+ INTEL_TGL_IDS(INTEL_DISPLAY_DEVICE, &tgl_desc),
+ INTEL_DG1_IDS(INTEL_DISPLAY_DEVICE, &dg1_desc),
+ INTEL_RKL_IDS(INTEL_DISPLAY_DEVICE, &rkl_desc),
+ INTEL_ADLS_IDS(INTEL_DISPLAY_DEVICE, &adl_s_desc),
+ INTEL_RPLS_IDS(INTEL_DISPLAY_DEVICE, &adl_s_desc),
+ INTEL_ADLP_IDS(INTEL_DISPLAY_DEVICE, &adl_p_desc),
+ INTEL_ADLN_IDS(INTEL_DISPLAY_DEVICE, &adl_p_desc),
+ INTEL_RPLU_IDS(INTEL_DISPLAY_DEVICE, &adl_p_desc),
+ INTEL_RPLP_IDS(INTEL_DISPLAY_DEVICE, &adl_p_desc),
+ INTEL_DG2_IDS(INTEL_DISPLAY_DEVICE, &dg2_desc),
/*
* Do not add any GMD_ID-based platforms to this list. They will
@@ -909,7 +1003,7 @@ probe_display(struct drm_i915_private *i915)
for (i = 0; i < ARRAY_SIZE(intel_display_ids); i++) {
if (intel_display_ids[i].devid == pdev->device)
- return intel_display_ids[i].info;
+ return intel_display_ids[i].desc->info;
}
drm_dbg(&i915->drm, "No display ID found for device ID %04x; disabling display.\n",
--
2.39.2
^ permalink raw reply related [flat|nested] 34+ messages in thread
* [PATCH 06/10] drm/i915: add LNL PCI IDs
2024-05-22 17:33 [PATCH 00/10] drm/i915: identify all platforms in display probe Jani Nikula
` (4 preceding siblings ...)
2024-05-22 17:33 ` [PATCH 05/10] drm/i915/display: add platform descriptors Jani Nikula
@ 2024-05-22 17:33 ` Jani Nikula
2024-05-23 18:31 ` Rodrigo Vivi
2024-05-22 17:33 ` [PATCH 07/10] drm/i915/display: change display probe to identify GMD ID based platforms Jani Nikula
` (12 subsequent siblings)
18 siblings, 1 reply; 34+ messages in thread
From: Jani Nikula @ 2024-05-22 17:33 UTC (permalink / raw)
To: intel-gfx, intel-xe; +Cc: jani.nikula, rodrigo.vivi, lucas.demarchi
Although not supported by i915 core, the display code needs to know the
LNL PCI IDs.
Long term, xe and i915 should probably share the file defining PCI IDs.
Signed-off-by: Jani Nikula <jani.nikula@intel.com>
---
include/drm/i915_pciids.h | 6 ++++++
1 file changed, 6 insertions(+)
diff --git a/include/drm/i915_pciids.h b/include/drm/i915_pciids.h
index 3e39d644ebaa..7ae7ee11ef38 100644
--- a/include/drm/i915_pciids.h
+++ b/include/drm/i915_pciids.h
@@ -783,4 +783,10 @@
MACRO__(0x7DD1, ## __VA_ARGS__), \
MACRO__(0x7DD5, ## __VA_ARGS__)
+/* LNL */
+#define INTEL_LNL_IDS(MACRO__, ...) \
+ MACRO__(0x6420, ## __VA_ARGS__), \
+ MACRO__(0x64A0, ## __VA_ARGS__), \
+ MACRO__(0x64B0, ## __VA_ARGS__)
+
#endif /* _I915_PCIIDS_H */
--
2.39.2
^ permalink raw reply related [flat|nested] 34+ messages in thread
* [PATCH 07/10] drm/i915/display: change display probe to identify GMD ID based platforms
2024-05-22 17:33 [PATCH 00/10] drm/i915: identify all platforms in display probe Jani Nikula
` (5 preceding siblings ...)
2024-05-22 17:33 ` [PATCH 06/10] drm/i915: add LNL PCI IDs Jani Nikula
@ 2024-05-22 17:33 ` Jani Nikula
2024-05-23 18:39 ` Rodrigo Vivi
2024-05-22 17:33 ` [PATCH 08/10] drm/i915/display: identify platforms with enum and name Jani Nikula
` (11 subsequent siblings)
18 siblings, 1 reply; 34+ messages in thread
From: Jani Nikula @ 2024-05-22 17:33 UTC (permalink / raw)
To: intel-gfx, intel-xe; +Cc: jani.nikula, rodrigo.vivi, lucas.demarchi
We'll need to identify all platforms, including the ones that have
display defined by GMD ID. Add MTL and LNL. Their display info will
still be probed via GMD ID.
Signed-off-by: Jani Nikula <jani.nikula@intel.com>
---
.../drm/i915/display/intel_display_device.c | 44 +++++++++++--------
1 file changed, 26 insertions(+), 18 deletions(-)
diff --git a/drivers/gpu/drm/i915/display/intel_display_device.c b/drivers/gpu/drm/i915/display/intel_display_device.c
index d1e03437abb3..416853ed50df 100644
--- a/drivers/gpu/drm/i915/display/intel_display_device.c
+++ b/drivers/gpu/drm/i915/display/intel_display_device.c
@@ -21,7 +21,7 @@ __diag_push();
__diag_ignore_all("-Woverride-init", "Allow field initialization overrides for display info");
struct platform_desc {
- const struct intel_display_device_info *info;
+ const struct intel_display_device_info *info; /* NULL for GMD ID */
};
static const struct intel_display_device_info no_display = {};
@@ -871,6 +871,17 @@ static const struct intel_display_device_info xe2_hpd_display = {
BIT(PORT_TC1) | BIT(PORT_TC2) | BIT(PORT_TC3) | BIT(PORT_TC4),
};
+/*
+ * Do not initialize the .info member of the platform desc for GMD ID based
+ * platforms. Their display will be probed automatically based on the IP version
+ * reported by the hardware.
+ */
+static const struct platform_desc mtl_desc = {
+};
+
+static const struct platform_desc lnl_desc = {
+};
+
__diag_pop();
/*
@@ -937,12 +948,8 @@ static const struct {
INTEL_RPLU_IDS(INTEL_DISPLAY_DEVICE, &adl_p_desc),
INTEL_RPLP_IDS(INTEL_DISPLAY_DEVICE, &adl_p_desc),
INTEL_DG2_IDS(INTEL_DISPLAY_DEVICE, &dg2_desc),
-
- /*
- * Do not add any GMD_ID-based platforms to this list. They will
- * be probed automatically based on the IP version reported by
- * the hardware.
- */
+ INTEL_MTL_IDS(INTEL_DISPLAY_DEVICE, &mtl_desc),
+ INTEL_LNL_IDS(INTEL_DISPLAY_DEVICE, &lnl_desc),
};
static const struct {
@@ -995,20 +1002,15 @@ probe_gmdid_display(struct drm_i915_private *i915, struct intel_display_ip_ver *
return NULL;
}
-static const struct intel_display_device_info *
-probe_display(struct drm_i915_private *i915)
+static const struct platform_desc *find_platform_desc(struct pci_dev *pdev)
{
- struct pci_dev *pdev = to_pci_dev(i915->drm.dev);
int i;
for (i = 0; i < ARRAY_SIZE(intel_display_ids); i++) {
if (intel_display_ids[i].devid == pdev->device)
- return intel_display_ids[i].desc->info;
+ return intel_display_ids[i].desc;
}
- drm_dbg(&i915->drm, "No display ID found for device ID %04x; disabling display.\n",
- pdev->device);
-
return NULL;
}
@@ -1017,6 +1019,7 @@ void intel_display_device_probe(struct drm_i915_private *i915)
struct pci_dev *pdev = to_pci_dev(i915->drm.dev);
const struct intel_display_device_info *info;
struct intel_display_ip_ver ip_ver = {};
+ const struct platform_desc *desc;
/* Add drm device backpointer as early as possible. */
i915->display.drm = &i915->drm;
@@ -1028,12 +1031,17 @@ void intel_display_device_probe(struct drm_i915_private *i915)
goto no_display;
}
- if (HAS_GMD_ID(i915))
- info = probe_gmdid_display(i915, &ip_ver);
- else
- info = probe_display(i915);
+ desc = find_platform_desc(pdev);
+ if (!desc) {
+ drm_dbg_kms(&i915->drm, "Unknown device ID %04x; disabling display.\n",
+ pdev->device);
+ goto no_display;
+ }
+ info = desc->info;
if (!info)
+ info = probe_gmdid_display(i915, &ip_ver);
+ if (!info)
goto no_display;
DISPLAY_INFO(i915) = info;
--
2.39.2
^ permalink raw reply related [flat|nested] 34+ messages in thread
* [PATCH 08/10] drm/i915/display: identify platforms with enum and name
2024-05-22 17:33 [PATCH 00/10] drm/i915: identify all platforms in display probe Jani Nikula
` (6 preceding siblings ...)
2024-05-22 17:33 ` [PATCH 07/10] drm/i915/display: change display probe to identify GMD ID based platforms Jani Nikula
@ 2024-05-22 17:33 ` Jani Nikula
2024-05-23 18:38 ` Rodrigo Vivi
2024-05-22 17:33 ` [PATCH 09/10] drm/i915/display: add support for subplatforms Jani Nikula
` (10 subsequent siblings)
18 siblings, 1 reply; 34+ messages in thread
From: Jani Nikula @ 2024-05-22 17:33 UTC (permalink / raw)
To: intel-gfx, intel-xe; +Cc: jani.nikula, rodrigo.vivi, lucas.demarchi
Add enum intel_display_platform and add that and name to all platform
descriptors.
Signed-off-by: Jani Nikula <jani.nikula@intel.com>
---
.../drm/i915/display/intel_display_device.c | 48 +++++++++++++++
.../drm/i915/display/intel_display_device.h | 58 +++++++++++++++++++
2 files changed, 106 insertions(+)
diff --git a/drivers/gpu/drm/i915/display/intel_display_device.c b/drivers/gpu/drm/i915/display/intel_display_device.c
index 416853ed50df..7c5cead1fe15 100644
--- a/drivers/gpu/drm/i915/display/intel_display_device.c
+++ b/drivers/gpu/drm/i915/display/intel_display_device.c
@@ -21,9 +21,15 @@ __diag_push();
__diag_ignore_all("-Woverride-init", "Allow field initialization overrides for display info");
struct platform_desc {
+ enum intel_display_platform platform;
+ const char *name;
const struct intel_display_device_info *info; /* NULL for GMD ID */
};
+#define PLATFORM(_platform) \
+ .platform = (INTEL_DISPLAY_##_platform), \
+ .name = #_platform
+
static const struct intel_display_device_info no_display = {};
#define PIPE_A_OFFSET 0x70000
@@ -205,6 +211,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),
.info = &(const struct intel_display_device_info) {
I830_DISPLAY,
@@ -213,6 +220,7 @@ static const struct platform_desc i830_desc = {
};
static const struct platform_desc i845_desc = {
+ PLATFORM(I845G),
.info = &(const struct intel_display_device_info) {
I845_DISPLAY,
@@ -221,6 +229,7 @@ static const struct platform_desc i845_desc = {
};
static const struct platform_desc i85x_desc = {
+ PLATFORM(I85X),
.info = &(const struct intel_display_device_info) {
I830_DISPLAY,
@@ -230,6 +239,7 @@ static const struct platform_desc i85x_desc = {
};
static const struct platform_desc i865g_desc = {
+ PLATFORM(I865G),
.info = &(const struct intel_display_device_info) {
I845_DISPLAY,
@@ -251,6 +261,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),
.info = &(const struct intel_display_device_info) {
GEN3_DISPLAY,
I845_COLORS,
@@ -260,6 +271,7 @@ static const struct platform_desc i915g_desc = {
};
static const struct platform_desc i915gm_desc = {
+ PLATFORM(I915GM),
.info = &(const struct intel_display_device_info) {
GEN3_DISPLAY,
I9XX_COLORS,
@@ -272,6 +284,7 @@ static const struct platform_desc i915gm_desc = {
};
static const struct platform_desc i945g_desc = {
+ PLATFORM(I945G),
.info = &(const struct intel_display_device_info) {
GEN3_DISPLAY,
I845_COLORS,
@@ -282,6 +295,7 @@ static const struct platform_desc i945g_desc = {
};
static const struct platform_desc i945gm_desc = {
+ PLATFORM(I915GM),
.info = &(const struct intel_display_device_info) {
GEN3_DISPLAY,
I9XX_COLORS,
@@ -295,6 +309,7 @@ static const struct platform_desc i945gm_desc = {
};
static const struct platform_desc g33_desc = {
+ PLATFORM(G33),
.info = &(const struct intel_display_device_info) {
GEN3_DISPLAY,
I845_COLORS,
@@ -303,6 +318,7 @@ static const struct platform_desc g33_desc = {
};
static const struct platform_desc pnv_desc = {
+ PLATFORM(PINEVIEW),
.info = &(const struct intel_display_device_info) {
GEN3_DISPLAY,
I9XX_COLORS,
@@ -323,6 +339,7 @@ static const struct platform_desc pnv_desc = {
BIT(TRANSCODER_A) | BIT(TRANSCODER_B)
static const struct platform_desc i965g_desc = {
+ PLATFORM(I965G),
.info = &(const struct intel_display_device_info) {
GEN4_DISPLAY,
.has_overlay = 1,
@@ -332,6 +349,7 @@ static const struct platform_desc i965g_desc = {
};
static const struct platform_desc i965gm_desc = {
+ PLATFORM(I965GM),
.info = &(const struct intel_display_device_info) {
GEN4_DISPLAY,
.has_overlay = 1,
@@ -343,6 +361,7 @@ static const struct platform_desc i965gm_desc = {
};
static const struct platform_desc g45_desc = {
+ PLATFORM(G45),
.info = &(const struct intel_display_device_info) {
GEN4_DISPLAY,
@@ -351,6 +370,7 @@ static const struct platform_desc g45_desc = {
};
static const struct platform_desc gm45_desc = {
+ PLATFORM(GM45),
.info = &(const struct intel_display_device_info) {
GEN4_DISPLAY,
.supports_tv = 1,
@@ -373,12 +393,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),
.info = &(const struct intel_display_device_info) {
ILK_DISPLAY,
},
};
static const struct platform_desc ilk_m_desc = {
+ PLATFORM(IRONLAKE),
.info = &(const struct intel_display_device_info) {
ILK_DISPLAY,
@@ -387,6 +409,7 @@ static const struct platform_desc ilk_m_desc = {
};
static const struct platform_desc snb_desc = {
+ PLATFORM(SANDYBRIDGE),
.info = &(const struct intel_display_device_info) {
.has_hotplug = 1,
I9XX_PIPE_OFFSETS,
@@ -403,6 +426,7 @@ static const struct platform_desc snb_desc = {
};
static const struct platform_desc ivb_desc = {
+ PLATFORM(IVYBRIDGE),
.info = &(const struct intel_display_device_info) {
.has_hotplug = 1,
IVB_PIPE_OFFSETS,
@@ -419,6 +443,7 @@ static const struct platform_desc ivb_desc = {
};
static const struct platform_desc vlv_desc = {
+ PLATFORM(VALLEYVIEW),
.info = &(const struct intel_display_device_info) {
.has_gmch = 1,
.has_hotplug = 1,
@@ -436,6 +461,7 @@ static const struct platform_desc vlv_desc = {
};
static const struct platform_desc hsw_desc = {
+ PLATFORM(HASWELL),
.info = &(const struct intel_display_device_info) {
.has_ddi = 1,
.has_dp_mst = 1,
@@ -458,6 +484,7 @@ static const struct platform_desc hsw_desc = {
};
static const struct platform_desc bdw_desc = {
+ PLATFORM(BROADWELL),
.info = &(const struct intel_display_device_info) {
.has_ddi = 1,
.has_dp_mst = 1,
@@ -480,6 +507,7 @@ static const struct platform_desc bdw_desc = {
};
static const struct platform_desc chv_desc = {
+ PLATFORM(CHERRYVIEW),
.info = &(const struct intel_display_device_info) {
.has_hotplug = 1,
.has_gmch = 1,
@@ -522,18 +550,22 @@ static const struct intel_display_device_info skl_display = {
};
static const struct platform_desc skl_desc = {
+ PLATFORM(SKYLAKE),
.info = &skl_display,
};
static const struct platform_desc kbl_desc = {
+ PLATFORM(KABYLAKE),
.info = &skl_display,
};
static const struct platform_desc cfl_desc = {
+ PLATFORM(COFFEELAKE),
.info = &skl_display,
};
static const struct platform_desc cml_desc = {
+ PLATFORM(COMETLAKE),
.info = &skl_display,
};
@@ -561,6 +593,7 @@ static const struct platform_desc cml_desc = {
.__runtime_defaults.port_mask = BIT(PORT_A) | BIT(PORT_B) | BIT(PORT_C)
static const struct platform_desc bxt_desc = {
+ PLATFORM(BROXTON),
.info = &(const struct intel_display_device_info) {
GEN9_LP_DISPLAY,
.dbuf.size = 512 - 4, /* 4 blocks for bypass path allocation */
@@ -570,6 +603,7 @@ static const struct platform_desc bxt_desc = {
};
static const struct platform_desc glk_desc = {
+ PLATFORM(GEMINILAKE),
.info = &(const struct intel_display_device_info) {
GEN9_LP_DISPLAY,
.dbuf.size = 1024 - 4, /* 4 blocks for bypass path allocation */
@@ -621,6 +655,7 @@ static const struct platform_desc glk_desc = {
.__runtime_defaults.fbc_mask = BIT(INTEL_FBC_A)
static const struct platform_desc icl_desc = {
+ PLATFORM(ICELAKE),
.info = &(const struct intel_display_device_info) {
ICL_DISPLAY,
@@ -635,10 +670,12 @@ static const struct intel_display_device_info jsl_ehl_display = {
};
static const struct platform_desc jsl_desc = {
+ PLATFORM(JASPERLAKE),
.info = &jsl_ehl_display,
};
static const struct platform_desc ehl_desc = {
+ PLATFORM(ELKHARTLAKE),
.info = &jsl_ehl_display,
};
@@ -686,6 +723,7 @@ static const struct platform_desc ehl_desc = {
.__runtime_defaults.fbc_mask = BIT(INTEL_FBC_A)
static const struct platform_desc tgl_desc = {
+ PLATFORM(TIGERLAKE),
.info = &(const struct intel_display_device_info) {
XE_D_DISPLAY,
@@ -699,6 +737,7 @@ static const struct platform_desc tgl_desc = {
};
static const struct platform_desc dg1_desc = {
+ PLATFORM(DG1),
.info = &(const struct intel_display_device_info) {
XE_D_DISPLAY,
@@ -708,6 +747,7 @@ static const struct platform_desc dg1_desc = {
};
static const struct platform_desc rkl_desc = {
+ PLATFORM(ROCKETLAKE),
.info = &(const struct intel_display_device_info) {
XE_D_DISPLAY,
.abox_mask = BIT(0),
@@ -723,6 +763,7 @@ static const struct platform_desc rkl_desc = {
};
static const struct platform_desc adl_s_desc = {
+ PLATFORM(ALDERLAKE_S),
.info = &(const struct intel_display_device_info) {
XE_D_DISPLAY,
.has_hti = 1,
@@ -790,6 +831,7 @@ static const struct intel_display_device_info xe_lpd_display = {
};
static const struct platform_desc adl_p_desc = {
+ PLATFORM(ALDERLAKE_P),
.info = &xe_lpd_display,
};
@@ -805,6 +847,7 @@ static const struct intel_display_device_info xe_hpd_display = {
};
static const struct platform_desc dg2_desc = {
+ PLATFORM(DG2),
.info = &xe_hpd_display,
};
@@ -877,9 +920,11 @@ static const struct intel_display_device_info xe2_hpd_display = {
* reported by the hardware.
*/
static const struct platform_desc mtl_desc = {
+ PLATFORM(METEORLAKE),
};
static const struct platform_desc lnl_desc = {
+ PLATFORM(LUNARLAKE),
};
__diag_pop();
@@ -1050,6 +1095,9 @@ 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);
+ DISPLAY_RUNTIME_INFO(i915)->platform = desc->platform;
+
if (ip_ver.ver || ip_ver.rel || ip_ver.step)
DISPLAY_RUNTIME_INFO(i915)->ip = ip_ver;
diff --git a/drivers/gpu/drm/i915/display/intel_display_device.h b/drivers/gpu/drm/i915/display/intel_display_device.h
index fd2d03bfe8a6..8accd680a61e 100644
--- a/drivers/gpu/drm/i915/display/intel_display_device.h
+++ b/drivers/gpu/drm/i915/display/intel_display_device.h
@@ -14,6 +14,62 @@
struct drm_i915_private;
struct drm_printer;
+/* Keep in gen based order, and chronological order within a gen */
+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,
+};
+
#define DEV_INFO_DISPLAY_FOR_EACH_FLAG(func) \
/* Keep in alphabetical order */ \
func(cursor_needs_physical); \
@@ -111,6 +167,8 @@ struct drm_printer;
(DISPLAY_VER(i915) >= (from) && DISPLAY_VER(i915) <= (until))
struct intel_display_runtime_info {
+ enum intel_display_platform platform;
+
struct intel_display_ip_ver {
u16 ver;
u16 rel;
--
2.39.2
^ permalink raw reply related [flat|nested] 34+ messages in thread
* [PATCH 09/10] drm/i915/display: add support for subplatforms
2024-05-22 17:33 [PATCH 00/10] drm/i915: identify all platforms in display probe Jani Nikula
` (7 preceding siblings ...)
2024-05-22 17:33 ` [PATCH 08/10] drm/i915/display: identify platforms with enum and name Jani Nikula
@ 2024-05-22 17:33 ` Jani Nikula
2024-05-23 18:37 ` Rodrigo Vivi
2024-05-22 17:33 ` [PATCH 10/10] drm/i915/display: add probe message Jani Nikula
` (9 subsequent siblings)
18 siblings, 1 reply; 34+ messages in thread
From: Jani Nikula @ 2024-05-22 17:33 UTC (permalink / raw)
To: intel-gfx, intel-xe; +Cc: jani.nikula, rodrigo.vivi, lucas.demarchi
Add support for subplatforms. This is similar to what the xe driver is
doing. The subplatform is an enum and it's exclusive, i.e. only one
subplatform can match, and it completely identifies the platform and
subplatform. This is different from i915 core, and is notable in the
handling of ULT/ULX and RPL/RPL-U.
Signed-off-by: Jani Nikula <jani.nikula@intel.com>
---
.../drm/i915/display/intel_display_device.c | 204 ++++++++++++++++++
.../drm/i915/display/intel_display_device.h | 26 +++
2 files changed, 230 insertions(+)
diff --git a/drivers/gpu/drm/i915/display/intel_display_device.c b/drivers/gpu/drm/i915/display/intel_display_device.c
index 7c5cead1fe15..59b8ca174ef8 100644
--- a/drivers/gpu/drm/i915/display/intel_display_device.c
+++ b/drivers/gpu/drm/i915/display/intel_display_device.c
@@ -20,9 +20,16 @@
__diag_push();
__diag_ignore_all("-Woverride-init", "Allow field initialization overrides for display info");
+struct subplatform_desc {
+ enum intel_display_subplatform subplatform;
+ const char *name;
+ const u16 *pciidlist;
+};
+
struct platform_desc {
enum intel_display_platform platform;
const char *name;
+ const struct subplatform_desc *subplatforms;
const struct intel_display_device_info *info; /* NULL for GMD ID */
};
@@ -30,6 +37,8 @@ struct platform_desc {
.platform = (INTEL_DISPLAY_##_platform), \
.name = #_platform
+#define ID(id) (id)
+
static const struct intel_display_device_info no_display = {};
#define PIPE_A_OFFSET 0x70000
@@ -460,8 +469,26 @@ static const struct platform_desc vlv_desc = {
},
};
+static const u16 hsw_ult_ids[] = {
+ INTEL_HSW_ULT_GT1_IDS(ID),
+ INTEL_HSW_ULT_GT2_IDS(ID),
+ INTEL_HSW_ULT_GT3_IDS(ID),
+ 0
+};
+
+static const u16 hsw_ulx_ids[] = {
+ INTEL_HSW_ULX_GT1_IDS(ID),
+ INTEL_HSW_ULX_GT2_IDS(ID),
+ 0
+};
+
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 },
+ {},
+ },
.info = &(const struct intel_display_device_info) {
.has_ddi = 1,
.has_dp_mst = 1,
@@ -483,8 +510,29 @@ static const struct platform_desc hsw_desc = {
},
};
+static const u16 bdw_ult_ids[] = {
+ INTEL_BDW_ULT_GT1_IDS(ID),
+ INTEL_BDW_ULT_GT2_IDS(ID),
+ INTEL_BDW_ULT_GT3_IDS(ID),
+ INTEL_BDW_ULT_RSVD_IDS(ID),
+ 0
+};
+
+static const u16 bdw_ulx_ids[] = {
+ INTEL_BDW_ULX_GT1_IDS(ID),
+ INTEL_BDW_ULX_GT2_IDS(ID),
+ INTEL_BDW_ULX_GT3_IDS(ID),
+ INTEL_BDW_ULX_RSVD_IDS(ID),
+ 0
+};
+
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 },
+ {},
+ },
.info = &(const struct intel_display_device_info) {
.has_ddi = 1,
.has_dp_mst = 1,
@@ -549,23 +597,89 @@ static const struct intel_display_device_info skl_display = {
.__runtime_defaults.fbc_mask = BIT(INTEL_FBC_A),
};
+static const u16 skl_ult_ids[] = {
+ INTEL_SKL_ULT_GT1_IDS(ID),
+ INTEL_SKL_ULT_GT2_IDS(ID),
+ INTEL_SKL_ULT_GT3_IDS(ID),
+ 0
+};
+
+static const u16 skl_ulx_ids[] = {
+ INTEL_SKL_ULX_GT1_IDS(ID),
+ INTEL_SKL_ULX_GT2_IDS(ID),
+ 0
+};
+
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 },
+ {},
+ },
.info = &skl_display,
};
+static const u16 kbl_ult_ids[] = {
+ INTEL_KBL_ULT_GT1_IDS(ID),
+ INTEL_KBL_ULT_GT2_IDS(ID),
+ INTEL_KBL_ULT_GT3_IDS(ID),
+ 0
+};
+
+static const u16 kbl_ulx_ids[] = {
+ INTEL_KBL_ULX_GT1_IDS(ID),
+ INTEL_KBL_ULX_GT2_IDS(ID),
+ INTEL_AML_KBL_GT2_IDS(ID),
+ 0
+};
+
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 },
+ {},
+ },
.info = &skl_display,
};
+static const u16 cfl_ult_ids[] = {
+ INTEL_CFL_U_GT2_IDS(ID),
+ INTEL_CFL_U_GT3_IDS(ID),
+ INTEL_WHL_U_GT1_IDS(ID),
+ INTEL_WHL_U_GT2_IDS(ID),
+ INTEL_WHL_U_GT3_IDS(ID),
+ 0
+};
+
+static const u16 cfl_ulx_ids[] = {
+ INTEL_AML_CFL_GT2_IDS(ID),
+ 0
+};
+
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 },
+ {},
+ },
.info = &skl_display,
};
+static const u16 cml_ult_ids[] = {
+ INTEL_CML_U_GT1_IDS(ID),
+ INTEL_CML_U_GT2_IDS(ID),
+ 0
+};
+
static const struct platform_desc cml_desc = {
PLATFORM(COMETLAKE),
+ .subplatforms = (const struct subplatform_desc[]) {
+ { INTEL_DISPLAY_COMETLAKE_ULT, "ULT", cml_ult_ids },
+ {},
+ },
.info = &skl_display,
};
@@ -654,8 +768,17 @@ static const struct platform_desc glk_desc = {
BIT(TRANSCODER_DSI_0) | BIT(TRANSCODER_DSI_1), \
.__runtime_defaults.fbc_mask = BIT(INTEL_FBC_A)
+static const u16 icl_port_f_ids[] = {
+ INTEL_ICL_PORT_F_IDS(ID),
+ 0
+};
+
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 },
+ {},
+ },
.info = &(const struct intel_display_device_info) {
ICL_DISPLAY,
@@ -722,8 +845,17 @@ static const struct platform_desc ehl_desc = {
BIT(TRANSCODER_DSI_0) | BIT(TRANSCODER_DSI_1), \
.__runtime_defaults.fbc_mask = BIT(INTEL_FBC_A)
+static const u16 tgl_uy_ids[] = {
+ INTEL_TGL_GT2_IDS(ID),
+ 0
+};
+
static const struct platform_desc tgl_desc = {
PLATFORM(TIGERLAKE),
+ .subplatforms = (const struct subplatform_desc[]) {
+ { INTEL_DISPLAY_TIGERLAKE_UY, "UY", tgl_uy_ids },
+ {},
+ },
.info = &(const struct intel_display_device_info) {
XE_D_DISPLAY,
@@ -762,8 +894,17 @@ static const struct platform_desc rkl_desc = {
},
};
+static const u16 adls_rpls_ids[] = {
+ INTEL_RPLS_IDS(ID),
+ 0
+};
+
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 },
+ {},
+ },
.info = &(const struct intel_display_device_info) {
XE_D_DISPLAY,
.has_hti = 1,
@@ -830,8 +971,29 @@ static const struct intel_display_device_info xe_lpd_display = {
BIT(PORT_TC1) | BIT(PORT_TC2) | BIT(PORT_TC3) | BIT(PORT_TC4),
};
+static const u16 adlp_adln_ids[] = {
+ INTEL_ADLN_IDS(ID),
+ 0
+};
+
+static const u16 adlp_rplu_ids[] = {
+ INTEL_RPLU_IDS(ID),
+ 0
+};
+
+static const u16 adlp_rplp_ids[] = {
+ INTEL_RPLP_IDS(ID),
+ 0
+};
+
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 },
+ { INTEL_DISPLAY_ALDERLAKE_P_RAPTORLAKE_U, "RPL-U", adlp_rplu_ids },
+ { INTEL_DISPLAY_ALDERLAKE_P_RAPTORLAKE_P, "RPL-P", adlp_rplp_ids },
+ {},
+ },
.info = &xe_lpd_display,
};
@@ -846,8 +1008,29 @@ static const struct intel_display_device_info xe_hpd_display = {
BIT(PORT_TC1),
};
+static const u16 dg2_g10_ids[] = {
+ INTEL_DG2_G10_IDS(ID),
+ 0
+};
+
+static const u16 dg2_g11_ids[] = {
+ INTEL_DG2_G11_IDS(ID),
+ 0
+};
+
+static const u16 dg2_g12_ids[] = {
+ INTEL_DG2_G12_IDS(ID),
+ 0
+};
+
static const struct platform_desc dg2_desc = {
PLATFORM(DG2),
+ .subplatforms = (const struct subplatform_desc[]) {
+ { INTEL_DISPLAY_DG2_G10, "G10", dg2_g10_ids },
+ { INTEL_DISPLAY_DG2_G11, "G11", dg2_g11_ids },
+ { INTEL_DISPLAY_DG2_G12, "G12", dg2_g12_ids },
+ {},
+ },
.info = &xe_hpd_display,
};
@@ -1059,12 +1242,27 @@ static const struct platform_desc *find_platform_desc(struct pci_dev *pdev)
return NULL;
}
+static const struct subplatform_desc *
+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 (id = sp->pciidlist; *id; id++)
+ if (*id == pdev->device)
+ return sp;
+
+ return NULL;
+}
+
void intel_display_device_probe(struct drm_i915_private *i915)
{
struct pci_dev *pdev = to_pci_dev(i915->drm.dev);
const struct intel_display_device_info *info;
struct intel_display_ip_ver ip_ver = {};
const struct platform_desc *desc;
+ const struct subplatform_desc *subdesc;
/* Add drm device backpointer as early as possible. */
i915->display.drm = &i915->drm;
@@ -1098,6 +1296,12 @@ void intel_display_device_probe(struct drm_i915_private *i915)
drm_WARN_ON(&i915->drm, !desc->platform || !desc->name);
DISPLAY_RUNTIME_INFO(i915)->platform = desc->platform;
+ subdesc = find_subplatform_desc(pdev, desc);
+ if (subdesc) {
+ drm_WARN_ON(&i915->drm, !subdesc->subplatform || !subdesc->name);
+ DISPLAY_RUNTIME_INFO(i915)->subplatform = subdesc->subplatform;
+ }
+
if (ip_ver.ver || ip_ver.rel || ip_ver.step)
DISPLAY_RUNTIME_INFO(i915)->ip = ip_ver;
diff --git a/drivers/gpu/drm/i915/display/intel_display_device.h b/drivers/gpu/drm/i915/display/intel_display_device.h
index 8accd680a61e..e1d9947394dc 100644
--- a/drivers/gpu/drm/i915/display/intel_display_device.h
+++ b/drivers/gpu/drm/i915/display/intel_display_device.h
@@ -70,6 +70,31 @@ enum intel_display_platform {
INTEL_DISPLAY_LUNARLAKE,
};
+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); \
@@ -168,6 +193,7 @@ enum intel_display_platform {
struct intel_display_runtime_info {
enum intel_display_platform platform;
+ enum intel_display_subplatform subplatform;
struct intel_display_ip_ver {
u16 ver;
--
2.39.2
^ permalink raw reply related [flat|nested] 34+ messages in thread
* [PATCH 10/10] drm/i915/display: add probe message
2024-05-22 17:33 [PATCH 00/10] drm/i915: identify all platforms in display probe Jani Nikula
` (8 preceding siblings ...)
2024-05-22 17:33 ` [PATCH 09/10] drm/i915/display: add support for subplatforms Jani Nikula
@ 2024-05-22 17:33 ` Jani Nikula
2024-05-23 18:33 ` Rodrigo Vivi
2024-05-22 18:14 ` [PATCH 00/10] drm/i915: identify all platforms in display probe Gustavo Sousa
` (8 subsequent siblings)
18 siblings, 1 reply; 34+ messages in thread
From: Jani Nikula @ 2024-05-22 17:33 UTC (permalink / raw)
To: intel-gfx, intel-xe; +Cc: jani.nikula, rodrigo.vivi, lucas.demarchi
Add an info message about which display device was probed.
Signed-off-by: Jani Nikula <jani.nikula@intel.com>
---
drivers/gpu/drm/i915/display/intel_display_device.c | 5 +++++
1 file changed, 5 insertions(+)
diff --git a/drivers/gpu/drm/i915/display/intel_display_device.c b/drivers/gpu/drm/i915/display/intel_display_device.c
index 59b8ca174ef8..5b6dfb5032e7 100644
--- a/drivers/gpu/drm/i915/display/intel_display_device.c
+++ b/drivers/gpu/drm/i915/display/intel_display_device.c
@@ -1305,6 +1305,11 @@ void intel_display_device_probe(struct drm_i915_private *i915)
if (ip_ver.ver || ip_ver.rel || ip_ver.step)
DISPLAY_RUNTIME_INFO(i915)->ip = ip_ver;
+ drm_info(&i915->drm, "Found %s%s%s (device ID %04x) display version %u.%02u\n",
+ desc->name, subdesc ? "/" : "", subdesc ? subdesc->name : "",
+ pdev->device, DISPLAY_RUNTIME_INFO(i915)->ip.ver,
+ DISPLAY_RUNTIME_INFO(i915)->ip.rel);
+
return;
no_display:
--
2.39.2
^ permalink raw reply related [flat|nested] 34+ messages in thread
* Re: [PATCH 00/10] drm/i915: identify all platforms in display probe
2024-05-22 17:33 [PATCH 00/10] drm/i915: identify all platforms in display probe Jani Nikula
` (9 preceding siblings ...)
2024-05-22 17:33 ` [PATCH 10/10] drm/i915/display: add probe message Jani Nikula
@ 2024-05-22 18:14 ` Gustavo Sousa
2024-05-22 18:36 ` Jani Nikula
2024-05-22 18:19 ` ✗ Fi.CI.CHECKPATCH: warning for " Patchwork
` (7 subsequent siblings)
18 siblings, 1 reply; 34+ messages in thread
From: Gustavo Sousa @ 2024-05-22 18:14 UTC (permalink / raw)
To: Jani Nikula, intel-gfx, intel-xe
Cc: jani.nikula, rodrigo.vivi, lucas.demarchi
Quoting Jani Nikula (2024-05-22 14:33:37-03:00)
>Add independent platform probe in display, in preparation for breaking
>free from i915 and xe code.
>
>Up next would be adding separate IS_<PLATFORM>() style macros to
>display. Not included here, because I couldn't come up with nice names
>yet. IS_DISPLAY_<PLATFORM>() is a bit verbose.
Drive-by comment: At least for recent hardware, we can use
display-specific release names, e.g. IS_XE2LPD() for LNL's display,
since theoretically that display IP could be reused in a different
platform.
--
Gustavo Sousa
>
>BR,
>Jani.
>
>Jani Nikula (10):
> drm/i915/display: move params copy at probe earlier
> drm/i915/display: change probe for no display case
> drm/i915/display: check platforms without display one level higher
> drm/i915/display: change GMD ID display ip ver propagation at probe
> drm/i915/display: add platform descriptors
> drm/i915: add LNL PCI IDs
> drm/i915/display: change display probe to identify GMD ID based
> platforms
> drm/i915/display: identify platforms with enum and name
> drm/i915/display: add support for subplatforms
> drm/i915/display: add probe message
>
> .../drm/i915/display/intel_display_device.c | 920 ++++++++++++------
> .../drm/i915/display/intel_display_device.h | 86 +-
> include/drm/i915_pciids.h | 6 +
> 3 files changed, 731 insertions(+), 281 deletions(-)
>
>--
>2.39.2
>
^ permalink raw reply [flat|nested] 34+ messages in thread
* ✗ Fi.CI.CHECKPATCH: warning for drm/i915: identify all platforms in display probe
2024-05-22 17:33 [PATCH 00/10] drm/i915: identify all platforms in display probe Jani Nikula
` (10 preceding siblings ...)
2024-05-22 18:14 ` [PATCH 00/10] drm/i915: identify all platforms in display probe Gustavo Sousa
@ 2024-05-22 18:19 ` Patchwork
2024-05-22 18:27 ` ✓ Fi.CI.BAT: success " Patchwork
` (6 subsequent siblings)
18 siblings, 0 replies; 34+ messages in thread
From: Patchwork @ 2024-05-22 18:19 UTC (permalink / raw)
To: Jani Nikula; +Cc: intel-gfx
== Series Details ==
Series: drm/i915: identify all platforms in display probe
URL : https://patchwork.freedesktop.org/series/133932/
State : warning
== Summary ==
Error: dim checkpatch failed
4b7fb7e322d3 drm/i915/display: move params copy at probe earlier
1740c90203fa drm/i915/display: change probe for no display case
d09e0d981dd9 drm/i915/display: check platforms without display one level higher
9fec60fe3fc3 drm/i915/display: change GMD ID display ip ver propagation at probe
347981472468 drm/i915/display: add platform descriptors
-:51: WARNING:LONG_LINE_COMMENT: line length of 104 exceeds 100 columns
#51: FILE: drivers/gpu/drm/i915/display/intel_display_device.c:211:
+ .__runtime_defaults.port_mask = BIT(PORT_A) | BIT(PORT_B) | BIT(PORT_C), /* DVO A/B/C */
-:238: WARNING:LONG_LINE_COMMENT: line length of 117 exceeds 100 columns
#238: FILE: drivers/gpu/drm/i915/display/intel_display_device.c:349:
+ .__runtime_defaults.port_mask = BIT(PORT_B) | BIT(PORT_C) | BIT(PORT_D), /* SDVO/HDMI/DP B/C, DP D */
-:252: WARNING:LONG_LINE_COMMENT: line length of 117 exceeds 100 columns
#252: FILE: drivers/gpu/drm/i915/display/intel_display_device.c:358:
+ .__runtime_defaults.port_mask = BIT(PORT_B) | BIT(PORT_C) | BIT(PORT_D), /* SDVO/HDMI/DP B/C, DP D */
-:302: WARNING:LONG_LINE: line length of 142 exceeds 100 columns
#302: FILE: drivers/gpu/drm/i915/display/intel_display_device.c:400:
+ .__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 */
-:328: WARNING:LONG_LINE: line length of 142 exceeds 100 columns
#328: FILE: drivers/gpu/drm/i915/display/intel_display_device.c:416:
+ .__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 */
-:395: WARNING:LONG_LINE: line length of 116 exceeds 100 columns
#395: FILE: drivers/gpu/drm/i915/display/intel_display_device.c:455:
+ .__runtime_defaults.port_mask = BIT(PORT_A) | BIT(PORT_B) | BIT(PORT_C) | BIT(PORT_D) | BIT(PORT_E),
-:433: WARNING:LONG_LINE: line length of 116 exceeds 100 columns
#433: FILE: drivers/gpu/drm/i915/display/intel_display_device.c:477:
+ .__runtime_defaults.port_mask = BIT(PORT_A) | BIT(PORT_B) | BIT(PORT_C) | BIT(PORT_D) | BIT(PORT_E),
-:463: WARNING:LONG_LINE_COMMENT: line length of 108 exceeds 100 columns
#463: FILE: drivers/gpu/drm/i915/display/intel_display_device.c:495:
+ .__runtime_defaults.port_mask = BIT(PORT_B) | BIT(PORT_C) | BIT(PORT_D), /* HDMI/DP B/C/D */
-:545: WARNING:LONG_LINE: line length of 116 exceeds 100 columns
#545: FILE: drivers/gpu/drm/i915/display/intel_display_device.c:627:
+ .__runtime_defaults.port_mask = BIT(PORT_A) | BIT(PORT_B) | BIT(PORT_C) | BIT(PORT_D) | BIT(PORT_E),
total: 0 errors, 9 warnings, 0 checks, 728 lines checked
6911c76c17b3 drm/i915: add LNL PCI IDs
-:22: ERROR:COMPLEX_MACRO: Macros with complex values should be enclosed in parentheses
#22: FILE: include/drm/i915_pciids.h:787:
+#define INTEL_LNL_IDS(MACRO__, ...) \
+ MACRO__(0x6420, ## __VA_ARGS__), \
+ MACRO__(0x64A0, ## __VA_ARGS__), \
+ MACRO__(0x64B0, ## __VA_ARGS__)
-:22: CHECK:MACRO_ARG_REUSE: Macro argument reuse 'MACRO__' - possible side-effects?
#22: FILE: include/drm/i915_pciids.h:787:
+#define INTEL_LNL_IDS(MACRO__, ...) \
+ MACRO__(0x6420, ## __VA_ARGS__), \
+ MACRO__(0x64A0, ## __VA_ARGS__), \
+ MACRO__(0x64B0, ## __VA_ARGS__)
total: 1 errors, 0 warnings, 1 checks, 10 lines checked
79c37572339f drm/i915/display: change display probe to identify GMD ID based platforms
-:108: ERROR:CODE_INDENT: code indent should use tabs where possible
#108: FILE: drivers/gpu/drm/i915/display/intel_display_device.c:1044:
+ if (!info)$
-:108: WARNING:LEADING_SPACE: please, no spaces at the start of a line
#108: FILE: drivers/gpu/drm/i915/display/intel_display_device.c:1044:
+ if (!info)$
total: 1 errors, 1 warnings, 0 checks, 89 lines checked
4b7235ae8cf5 drm/i915/display: identify platforms with enum and name
23bf096a14df drm/i915/display: add support for subplatforms
da0463e24a73 drm/i915/display: add probe message
^ permalink raw reply [flat|nested] 34+ messages in thread
* ✓ Fi.CI.BAT: success for drm/i915: identify all platforms in display probe
2024-05-22 17:33 [PATCH 00/10] drm/i915: identify all platforms in display probe Jani Nikula
` (11 preceding siblings ...)
2024-05-22 18:19 ` ✗ Fi.CI.CHECKPATCH: warning for " Patchwork
@ 2024-05-22 18:27 ` Patchwork
2024-05-23 14:12 ` ✗ Fi.CI.IGT: failure " Patchwork
` (5 subsequent siblings)
18 siblings, 0 replies; 34+ messages in thread
From: Patchwork @ 2024-05-22 18:27 UTC (permalink / raw)
To: Jani Nikula; +Cc: intel-gfx
[-- Attachment #1: Type: text/plain, Size: 2363 bytes --]
== Series Details ==
Series: drm/i915: identify all platforms in display probe
URL : https://patchwork.freedesktop.org/series/133932/
State : success
== Summary ==
CI Bug Log - changes from CI_DRM_14804 -> Patchwork_133932v1
====================================================
Summary
-------
**SUCCESS**
No regressions found.
External URL: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133932v1/index.html
Participating hosts (42 -> 39)
------------------------------
Additional (1): fi-bsw-n3050
Missing (4): fi-glk-j4005 bat-dg2-11 bat-jsl-1 fi-snb-2520m
Known issues
------------
Here are the changes found in Patchwork_133932v1 that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@gem_lmem_swapping@random-engines:
- fi-bsw-n3050: NOTRUN -> [SKIP][1] +19 other tests skip
[1]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133932v1/fi-bsw-n3050/igt@gem_lmem_swapping@random-engines.html
* igt@i915_selftest@live@gem_contexts:
- bat-atsm-1: [PASS][2] -> [INCOMPLETE][3] ([i915#10461])
[2]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14804/bat-atsm-1/igt@i915_selftest@live@gem_contexts.html
[3]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133932v1/bat-atsm-1/igt@i915_selftest@live@gem_contexts.html
#### Possible fixes ####
* igt@i915_selftest@live@gt_mocs:
- bat-mtlp-8: [DMESG-WARN][4] ([i915#9522]) -> [PASS][5]
[4]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14804/bat-mtlp-8/igt@i915_selftest@live@gt_mocs.html
[5]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133932v1/bat-mtlp-8/igt@i915_selftest@live@gt_mocs.html
[i915#10461]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10461
[i915#9522]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9522
Build changes
-------------
* Linux: CI_DRM_14804 -> Patchwork_133932v1
CI-20190529: 20190529
CI_DRM_14804: 42b9a14c5932c577019bf2f5d5ff25d208c1f921 @ git://anongit.freedesktop.org/gfx-ci/linux
IGT_7868: fb027c7a11b77ea2bc9747f5d796cb123d383a23 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
Patchwork_133932v1: 42b9a14c5932c577019bf2f5d5ff25d208c1f921 @ git://anongit.freedesktop.org/gfx-ci/linux
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133932v1/index.html
[-- Attachment #2: Type: text/html, Size: 3020 bytes --]
^ permalink raw reply [flat|nested] 34+ messages in thread
* Re: [PATCH 00/10] drm/i915: identify all platforms in display probe
2024-05-22 18:14 ` [PATCH 00/10] drm/i915: identify all platforms in display probe Gustavo Sousa
@ 2024-05-22 18:36 ` Jani Nikula
2024-05-22 19:48 ` Rodrigo Vivi
0 siblings, 1 reply; 34+ messages in thread
From: Jani Nikula @ 2024-05-22 18:36 UTC (permalink / raw)
To: Gustavo Sousa, intel-gfx, intel-xe; +Cc: rodrigo.vivi, lucas.demarchi
On Wed, 22 May 2024, Gustavo Sousa <gustavo.sousa@intel.com> wrote:
> Quoting Jani Nikula (2024-05-22 14:33:37-03:00)
>>Add independent platform probe in display, in preparation for breaking
>>free from i915 and xe code.
>>
>>Up next would be adding separate IS_<PLATFORM>() style macros to
>>display. Not included here, because I couldn't come up with nice names
>>yet. IS_DISPLAY_<PLATFORM>() is a bit verbose.
>
> Drive-by comment: At least for recent hardware, we can use
> display-specific release names, e.g. IS_XE2LPD() for LNL's display,
> since theoretically that display IP could be reused in a different
> platform.
I think we should prefer the IP version checks over adding names like
xe2lpd which IMO are hard to remember and associate with platforms or IP
versions.
And we'll still need the platform checks for a plethora of old
platforms.
BR,
Jani.
--
Jani Nikula, Intel
^ permalink raw reply [flat|nested] 34+ messages in thread
* Re: [PATCH 00/10] drm/i915: identify all platforms in display probe
2024-05-22 18:36 ` Jani Nikula
@ 2024-05-22 19:48 ` Rodrigo Vivi
0 siblings, 0 replies; 34+ messages in thread
From: Rodrigo Vivi @ 2024-05-22 19:48 UTC (permalink / raw)
To: Jani Nikula; +Cc: Gustavo Sousa, intel-gfx, intel-xe, lucas.demarchi
On Wed, May 22, 2024 at 09:36:40PM +0300, Jani Nikula wrote:
> On Wed, 22 May 2024, Gustavo Sousa <gustavo.sousa@intel.com> wrote:
> > Quoting Jani Nikula (2024-05-22 14:33:37-03:00)
> >>Add independent platform probe in display, in preparation for breaking
> >>free from i915 and xe code.
> >>
> >>Up next would be adding separate IS_<PLATFORM>() style macros to
> >>display. Not included here, because I couldn't come up with nice names
> >>yet. IS_DISPLAY_<PLATFORM>() is a bit verbose.
> >
> > Drive-by comment: At least for recent hardware, we can use
> > display-specific release names, e.g. IS_XE2LPD() for LNL's display,
> > since theoretically that display IP could be reused in a different
> > platform.
>
> I think we should prefer the IP version checks over adding names like
> xe2lpd which IMO are hard to remember and associate with platforms or IP
> versions.
yeap, but perhaps we will need something like that anyway, because
the mix and match from different platforms using same IP block
or even the possibility of the same platform but different skus
using different IP blocks. :/
>
> And we'll still need the platform checks for a plethora of old
> platforms.
What about DISP_<PLATFORM> ? or <PLATFORM>_DISP ?
or even DISPLAY_<PLATFORM> or <PLATFORM>_DISPLAY, but definitely
getting rid of the extra 'IS'...
>
>
> BR,
> Jani.
>
>
> --
> Jani Nikula, Intel
^ permalink raw reply [flat|nested] 34+ messages in thread
* Re: [PATCH 01/10] drm/i915/display: move params copy at probe earlier
2024-05-22 17:33 ` [PATCH 01/10] drm/i915/display: move params copy at probe earlier Jani Nikula
@ 2024-05-22 19:53 ` Rodrigo Vivi
0 siblings, 0 replies; 34+ messages in thread
From: Rodrigo Vivi @ 2024-05-22 19:53 UTC (permalink / raw)
To: Jani Nikula; +Cc: intel-gfx, intel-xe, lucas.demarchi
On Wed, May 22, 2024 at 08:33:38PM +0300, Jani Nikula wrote:
> Copy the parameters earlier to make subsequent changes easier.
>
> Signed-off-by: Jani Nikula <jani.nikula@intel.com>
> ---
> drivers/gpu/drm/i915/display/intel_display_device.c | 4 ++--
> 1 file changed, 2 insertions(+), 2 deletions(-)
>
> diff --git a/drivers/gpu/drm/i915/display/intel_display_device.c b/drivers/gpu/drm/i915/display/intel_display_device.c
> index cf093bc0cb28..9edadc7270f6 100644
> --- a/drivers/gpu/drm/i915/display/intel_display_device.c
> +++ b/drivers/gpu/drm/i915/display/intel_display_device.c
> @@ -936,6 +936,8 @@ void intel_display_device_probe(struct drm_i915_private *i915)
> /* Add drm device backpointer as early as possible. */
> i915->display.drm = &i915->drm;
>
> + intel_display_params_copy(&i915->display.params);
> +
> if (HAS_GMD_ID(i915))
> info = probe_gmdid_display(i915, &ver, &rel, &step);
> else
> @@ -952,8 +954,6 @@ void intel_display_device_probe(struct drm_i915_private *i915)
> DISPLAY_RUNTIME_INFO(i915)->ip.rel = rel;
> DISPLAY_RUNTIME_INFO(i915)->ip.step = step;
> }
> -
> - intel_display_params_copy(&i915->display.params);
I confess I got lost on the macros there. But from what I could
see, none of the things in between these 2 points would change
anything related to the params that are getting copied here.
Reviewed-by: Rodrigo Vivi <rodrigo.vivi@intel.com>
> }
>
> void intel_display_device_remove(struct drm_i915_private *i915)
> --
> 2.39.2
>
^ permalink raw reply [flat|nested] 34+ messages in thread
* Re: [PATCH 02/10] drm/i915/display: change probe for no display case
2024-05-22 17:33 ` [PATCH 02/10] drm/i915/display: change probe for no display case Jani Nikula
@ 2024-05-22 19:57 ` Rodrigo Vivi
0 siblings, 0 replies; 34+ messages in thread
From: Rodrigo Vivi @ 2024-05-22 19:57 UTC (permalink / raw)
To: Jani Nikula; +Cc: intel-gfx, intel-xe, lucas.demarchi
On Wed, May 22, 2024 at 08:33:39PM +0300, Jani Nikula wrote:
> Return NULL for errors, and handle the no display case in one
> location. This will make subsequent changes easier.
>
> Signed-off-by: Jani Nikula <jani.nikula@intel.com>
> ---
> .../drm/i915/display/intel_display_device.c | 18 +++++++++++++-----
> 1 file changed, 13 insertions(+), 5 deletions(-)
>
> diff --git a/drivers/gpu/drm/i915/display/intel_display_device.c b/drivers/gpu/drm/i915/display/intel_display_device.c
> index 9edadc7270f6..03181bb79d21 100644
> --- a/drivers/gpu/drm/i915/display/intel_display_device.c
> +++ b/drivers/gpu/drm/i915/display/intel_display_device.c
> @@ -881,7 +881,7 @@ probe_gmdid_display(struct drm_i915_private *i915, u16 *ver, u16 *rel, u16 *step
> addr = pci_iomap_range(pdev, 0, i915_mmio_reg_offset(GMD_ID_DISPLAY), sizeof(u32));
> if (!addr) {
> drm_err(&i915->drm, "Cannot map MMIO BAR to read display GMD_ID\n");
> - return &no_display;
> + return NULL;
> }
>
> val = ioread32(addr);
> @@ -889,7 +889,7 @@ probe_gmdid_display(struct drm_i915_private *i915, u16 *ver, u16 *rel, u16 *step
>
> if (val == 0) {
> drm_dbg_kms(&i915->drm, "Device doesn't have display\n");
> - return &no_display;
> + return NULL;
> }
>
> *ver = REG_FIELD_GET(GMD_ID_ARCH_MASK, val);
> @@ -903,7 +903,7 @@ probe_gmdid_display(struct drm_i915_private *i915, u16 *ver, u16 *rel, u16 *step
>
> drm_err(&i915->drm, "Unrecognized display IP version %d.%02d; disabling display.\n",
> *ver, *rel);
> - return &no_display;
> + return NULL;
> }
>
> static const struct intel_display_device_info *
> @@ -914,7 +914,7 @@ probe_display(struct drm_i915_private *i915)
>
> if (has_no_display(pdev)) {
> drm_dbg_kms(&i915->drm, "Device doesn't have display\n");
> - return &no_display;
> + return NULL;
> }
>
> for (i = 0; i < ARRAY_SIZE(intel_display_ids); i++) {
> @@ -925,7 +925,7 @@ probe_display(struct drm_i915_private *i915)
> drm_dbg(&i915->drm, "No display ID found for device ID %04x; disabling display.\n",
> pdev->device);
>
> - return &no_display;
> + return NULL;
> }
>
> void intel_display_device_probe(struct drm_i915_private *i915)
> @@ -943,6 +943,9 @@ void intel_display_device_probe(struct drm_i915_private *i915)
> else
> info = probe_display(i915);
>
> + if (!info)
> + goto no_display;
> +
> DISPLAY_INFO(i915) = info;
>
> memcpy(DISPLAY_RUNTIME_INFO(i915),
> @@ -954,6 +957,11 @@ void intel_display_device_probe(struct drm_i915_private *i915)
> DISPLAY_RUNTIME_INFO(i915)->ip.rel = rel;
> DISPLAY_RUNTIME_INFO(i915)->ip.step = step;
> }
> +
> + return;
> +
> +no_display:
> + DISPLAY_INFO(i915) = &no_display;
now I understood why you moved it over and I believe display_runtime_info
is really not needed when no_display, so:
Reviewed-by: Rodrigo Vivi <rodrigo.vivi@intel.com>
> }
>
> void intel_display_device_remove(struct drm_i915_private *i915)
> --
> 2.39.2
>
^ permalink raw reply [flat|nested] 34+ messages in thread
* Re: [PATCH 03/10] drm/i915/display: check platforms without display one level higher
2024-05-22 17:33 ` [PATCH 03/10] drm/i915/display: check platforms without display one level higher Jani Nikula
@ 2024-05-22 19:58 ` Rodrigo Vivi
0 siblings, 0 replies; 34+ messages in thread
From: Rodrigo Vivi @ 2024-05-22 19:58 UTC (permalink / raw)
To: Jani Nikula; +Cc: intel-gfx, intel-xe, lucas.demarchi
On Wed, May 22, 2024 at 08:33:40PM +0300, Jani Nikula wrote:
> The main change here is that the check for platforms without display is
> now also done for GMD ID based platforms. However, without matches, the
> end result is the same.
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 | 11 ++++++-----
> 1 file changed, 6 insertions(+), 5 deletions(-)
>
> diff --git a/drivers/gpu/drm/i915/display/intel_display_device.c b/drivers/gpu/drm/i915/display/intel_display_device.c
> index 03181bb79d21..f548a7b0ec23 100644
> --- a/drivers/gpu/drm/i915/display/intel_display_device.c
> +++ b/drivers/gpu/drm/i915/display/intel_display_device.c
> @@ -912,11 +912,6 @@ probe_display(struct drm_i915_private *i915)
> struct pci_dev *pdev = to_pci_dev(i915->drm.dev);
> int i;
>
> - if (has_no_display(pdev)) {
> - drm_dbg_kms(&i915->drm, "Device doesn't have display\n");
> - return NULL;
> - }
> -
> for (i = 0; i < ARRAY_SIZE(intel_display_ids); i++) {
> if (intel_display_ids[i].devid == pdev->device)
> return intel_display_ids[i].info;
> @@ -930,6 +925,7 @@ probe_display(struct drm_i915_private *i915)
>
> void intel_display_device_probe(struct drm_i915_private *i915)
> {
> + struct pci_dev *pdev = to_pci_dev(i915->drm.dev);
> const struct intel_display_device_info *info;
> u16 ver, rel, step;
>
> @@ -938,6 +934,11 @@ void intel_display_device_probe(struct drm_i915_private *i915)
>
> intel_display_params_copy(&i915->display.params);
>
> + if (has_no_display(pdev)) {
> + drm_dbg_kms(&i915->drm, "Device doesn't have display\n");
> + goto no_display;
> + }
> +
> if (HAS_GMD_ID(i915))
> info = probe_gmdid_display(i915, &ver, &rel, &step);
> else
> --
> 2.39.2
>
^ permalink raw reply [flat|nested] 34+ messages in thread
* Re: [PATCH 04/10] drm/i915/display: change GMD ID display ip ver propagation at probe
2024-05-22 17:33 ` [PATCH 04/10] drm/i915/display: change GMD ID display ip ver propagation at probe Jani Nikula
@ 2024-05-22 20:15 ` Rodrigo Vivi
0 siblings, 0 replies; 34+ messages in thread
From: Rodrigo Vivi @ 2024-05-22 20:15 UTC (permalink / raw)
To: Jani Nikula; +Cc: intel-gfx, intel-xe, lucas.demarchi
On Wed, May 22, 2024 at 08:33:41PM +0300, Jani Nikula wrote:
> Add a name to the display ip version structure, and pass that around
> instead of a triplet of u16's.
>
> Signed-off-by: Jani Nikula <jani.nikula@intel.com>
> ---
> .../drm/i915/display/intel_display_device.c | 40 ++++++++-----------
> .../drm/i915/display/intel_display_device.h | 2 +-
> 2 files changed, 17 insertions(+), 25 deletions(-)
>
> diff --git a/drivers/gpu/drm/i915/display/intel_display_device.c b/drivers/gpu/drm/i915/display/intel_display_device.c
> index f548a7b0ec23..56b27546d1b3 100644
> --- a/drivers/gpu/drm/i915/display/intel_display_device.c
> +++ b/drivers/gpu/drm/i915/display/intel_display_device.c
> @@ -862,22 +862,14 @@ static const struct {
> };
>
> static const struct intel_display_device_info *
> -probe_gmdid_display(struct drm_i915_private *i915, u16 *ver, u16 *rel, u16 *step)
> +probe_gmdid_display(struct drm_i915_private *i915, struct intel_display_ip_ver *ip_ver)
> {
> struct pci_dev *pdev = to_pci_dev(i915->drm.dev);
> + struct intel_display_ip_ver gmd_id;
hmm... technically it is just d_id here. or perhaps gmd_id_disp ?
But I'm bad with nameing, so up to you:
Reviewed-by: Rodrigo Vivi <rodrigo.vivi@intel.com>
> void __iomem *addr;
> u32 val;
> int i;
>
> - /* The caller expects to ver, rel and step to be initialized
> - * here, and there's no good way to check when there was a
> - * failure and no_display was returned. So initialize all these
> - * values here zero, to be sure.
> - */
> - *ver = 0;
> - *rel = 0;
> - *step = 0;
> -
> addr = pci_iomap_range(pdev, 0, i915_mmio_reg_offset(GMD_ID_DISPLAY), sizeof(u32));
> if (!addr) {
> drm_err(&i915->drm, "Cannot map MMIO BAR to read display GMD_ID\n");
> @@ -892,17 +884,20 @@ probe_gmdid_display(struct drm_i915_private *i915, u16 *ver, u16 *rel, u16 *step
> return NULL;
> }
>
> - *ver = REG_FIELD_GET(GMD_ID_ARCH_MASK, val);
> - *rel = REG_FIELD_GET(GMD_ID_RELEASE_MASK, val);
> - *step = REG_FIELD_GET(GMD_ID_STEP, val);
> + gmd_id.ver = REG_FIELD_GET(GMD_ID_ARCH_MASK, val);
> + gmd_id.rel = REG_FIELD_GET(GMD_ID_RELEASE_MASK, val);
> + gmd_id.step = REG_FIELD_GET(GMD_ID_STEP, val);
>
> - for (i = 0; i < ARRAY_SIZE(gmdid_display_map); i++)
> - if (*ver == gmdid_display_map[i].ver &&
> - *rel == gmdid_display_map[i].rel)
> + for (i = 0; i < ARRAY_SIZE(gmdid_display_map); i++) {
> + if (gmd_id.ver == gmdid_display_map[i].ver &&
> + gmd_id.rel == gmdid_display_map[i].rel) {
> + *ip_ver = gmd_id;
> return gmdid_display_map[i].display;
> + }
> + }
>
> drm_err(&i915->drm, "Unrecognized display IP version %d.%02d; disabling display.\n",
> - *ver, *rel);
> + gmd_id.ver, gmd_id.rel);
> return NULL;
> }
>
> @@ -927,7 +922,7 @@ void intel_display_device_probe(struct drm_i915_private *i915)
> {
> struct pci_dev *pdev = to_pci_dev(i915->drm.dev);
> const struct intel_display_device_info *info;
> - u16 ver, rel, step;
> + struct intel_display_ip_ver ip_ver = {};
>
> /* Add drm device backpointer as early as possible. */
> i915->display.drm = &i915->drm;
> @@ -940,7 +935,7 @@ void intel_display_device_probe(struct drm_i915_private *i915)
> }
>
> if (HAS_GMD_ID(i915))
> - info = probe_gmdid_display(i915, &ver, &rel, &step);
> + info = probe_gmdid_display(i915, &ip_ver);
> else
> info = probe_display(i915);
>
> @@ -953,11 +948,8 @@ void intel_display_device_probe(struct drm_i915_private *i915)
> &DISPLAY_INFO(i915)->__runtime_defaults,
> sizeof(*DISPLAY_RUNTIME_INFO(i915)));
>
> - if (HAS_GMD_ID(i915)) {
> - DISPLAY_RUNTIME_INFO(i915)->ip.ver = ver;
> - DISPLAY_RUNTIME_INFO(i915)->ip.rel = rel;
> - DISPLAY_RUNTIME_INFO(i915)->ip.step = step;
> - }
> + if (ip_ver.ver || ip_ver.rel || ip_ver.step)
> + DISPLAY_RUNTIME_INFO(i915)->ip = ip_ver;
>
> return;
>
> diff --git a/drivers/gpu/drm/i915/display/intel_display_device.h b/drivers/gpu/drm/i915/display/intel_display_device.h
> index 17ddf82f0b6e..fd2d03bfe8a6 100644
> --- a/drivers/gpu/drm/i915/display/intel_display_device.h
> +++ b/drivers/gpu/drm/i915/display/intel_display_device.h
> @@ -111,7 +111,7 @@ struct drm_printer;
> (DISPLAY_VER(i915) >= (from) && DISPLAY_VER(i915) <= (until))
>
> struct intel_display_runtime_info {
> - struct {
> + struct intel_display_ip_ver {
> u16 ver;
> u16 rel;
> u16 step;
> --
> 2.39.2
>
^ permalink raw reply [flat|nested] 34+ messages in thread
* ✗ Fi.CI.IGT: failure for drm/i915: identify all platforms in display probe
2024-05-22 17:33 [PATCH 00/10] drm/i915: identify all platforms in display probe Jani Nikula
` (12 preceding siblings ...)
2024-05-22 18:27 ` ✓ Fi.CI.BAT: success " Patchwork
@ 2024-05-23 14:12 ` Patchwork
2024-05-30 10:55 ` ✗ Fi.CI.CHECKPATCH: warning for drm/i915: identify all platforms in display probe (rev2) Patchwork
` (4 subsequent siblings)
18 siblings, 0 replies; 34+ messages in thread
From: Patchwork @ 2024-05-23 14:12 UTC (permalink / raw)
To: Jani Nikula; +Cc: intel-gfx
[-- Attachment #1: Type: text/plain, Size: 65417 bytes --]
== Series Details ==
Series: drm/i915: identify all platforms in display probe
URL : https://patchwork.freedesktop.org/series/133932/
State : failure
== Summary ==
CI Bug Log - changes from CI_DRM_14804_full -> Patchwork_133932v1_full
====================================================
Summary
-------
**FAILURE**
Serious unknown changes coming with Patchwork_133932v1_full absolutely need to be
verified manually.
If you think the reported changes have nothing to do with the changes
introduced in Patchwork_133932v1_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 -> 9)
------------------------------
No changes in participating hosts
Possible new issues
-------------------
Here are the unknown changes that may have been introduced in Patchwork_133932v1_full:
### IGT changes ###
#### Possible regressions ####
* igt@fbdev@write:
- shard-snb: NOTRUN -> [FAIL][1]
[1]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133932v1/shard-snb5/igt@fbdev@write.html
* igt@gem_mmap_offset@open-flood:
- shard-dg2: [PASS][2] -> [INCOMPLETE][3]
[2]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14804/shard-dg2-4/igt@gem_mmap_offset@open-flood.html
[3]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133932v1/shard-dg2-5/igt@gem_mmap_offset@open-flood.html
New tests
---------
New tests have been introduced between CI_DRM_14804_full and Patchwork_133932v1_full:
### New IGT tests (1) ###
* igt@kms_flip@dpms-vs-vblank-race@d-hdmi-a3:
- Statuses : 1 pass(s)
- Exec time: [2.91] s
Known issues
------------
Here are the changes found in Patchwork_133932v1_full that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@drm_fdinfo@all-busy-check-all:
- shard-dg2: NOTRUN -> [SKIP][4] ([i915#8414])
[4]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133932v1/shard-dg2-3/igt@drm_fdinfo@all-busy-check-all.html
* igt@drm_fdinfo@busy-check-all@bcs0:
- shard-dg1: NOTRUN -> [SKIP][5] ([i915#8414]) +4 other tests skip
[5]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133932v1/shard-dg1-16/igt@drm_fdinfo@busy-check-all@bcs0.html
* igt@gem_bad_reloc@negative-reloc-lut:
- shard-rkl: NOTRUN -> [SKIP][6] ([i915#3281]) +7 other tests skip
[6]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133932v1/shard-rkl-3/igt@gem_bad_reloc@negative-reloc-lut.html
* igt@gem_ccs@block-copy-compressed:
- shard-dg1: NOTRUN -> [SKIP][7] ([i915#3555] / [i915#9323])
[7]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133932v1/shard-dg1-16/igt@gem_ccs@block-copy-compressed.html
* igt@gem_ccs@suspend-resume:
- shard-tglu: NOTRUN -> [SKIP][8] ([i915#9323])
[8]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133932v1/shard-tglu-8/igt@gem_ccs@suspend-resume.html
* igt@gem_create@create-ext-set-pat:
- shard-rkl: NOTRUN -> [SKIP][9] ([i915#8562])
[9]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133932v1/shard-rkl-5/igt@gem_create@create-ext-set-pat.html
* igt@gem_ctx_persistence@heartbeat-hang:
- shard-dg1: NOTRUN -> [SKIP][10] ([i915#8555])
[10]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133932v1/shard-dg1-16/igt@gem_ctx_persistence@heartbeat-hang.html
* igt@gem_ctx_persistence@heartbeat-stop:
- shard-mtlp: NOTRUN -> [SKIP][11] ([i915#8555])
[11]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133932v1/shard-mtlp-4/igt@gem_ctx_persistence@heartbeat-stop.html
* igt@gem_ctx_sseu@invalid-sseu:
- shard-dg2: NOTRUN -> [SKIP][12] ([i915#280])
[12]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133932v1/shard-dg2-3/igt@gem_ctx_sseu@invalid-sseu.html
- shard-rkl: NOTRUN -> [SKIP][13] ([i915#280])
[13]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133932v1/shard-rkl-3/igt@gem_ctx_sseu@invalid-sseu.html
* igt@gem_exec_balancer@parallel-bb-first:
- shard-rkl: NOTRUN -> [SKIP][14] ([i915#4525])
[14]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133932v1/shard-rkl-3/igt@gem_exec_balancer@parallel-bb-first.html
* igt@gem_exec_capture@capture-invisible@smem0:
- shard-glk: NOTRUN -> [SKIP][15] ([i915#6334])
[15]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133932v1/shard-glk8/igt@gem_exec_capture@capture-invisible@smem0.html
* igt@gem_exec_capture@capture-recoverable:
- shard-tglu: NOTRUN -> [SKIP][16] ([i915#6344])
[16]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133932v1/shard-tglu-9/igt@gem_exec_capture@capture-recoverable.html
* igt@gem_exec_fair@basic-none-solo@rcs0:
- shard-rkl: NOTRUN -> [FAIL][17] ([i915#2842])
[17]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133932v1/shard-rkl-5/igt@gem_exec_fair@basic-none-solo@rcs0.html
* igt@gem_exec_fair@basic-pace-solo@rcs0:
- shard-rkl: [PASS][18] -> [FAIL][19] ([i915#2842])
[18]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14804/shard-rkl-3/igt@gem_exec_fair@basic-pace-solo@rcs0.html
[19]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133932v1/shard-rkl-2/igt@gem_exec_fair@basic-pace-solo@rcs0.html
* igt@gem_exec_flush@basic-uc-ro-default:
- shard-dg1: NOTRUN -> [SKIP][20] ([i915#3539] / [i915#4852]) +1 other test skip
[20]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133932v1/shard-dg1-16/igt@gem_exec_flush@basic-uc-ro-default.html
* igt@gem_exec_flush@basic-uc-set-default:
- shard-dg1: NOTRUN -> [SKIP][21] ([i915#3539])
[21]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133932v1/shard-dg1-16/igt@gem_exec_flush@basic-uc-set-default.html
* igt@gem_exec_reloc@basic-concurrent0:
- shard-dg1: NOTRUN -> [SKIP][22] ([i915#3281]) +2 other tests skip
[22]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133932v1/shard-dg1-16/igt@gem_exec_reloc@basic-concurrent0.html
* igt@gem_exec_reloc@basic-cpu-noreloc:
- shard-mtlp: NOTRUN -> [SKIP][23] ([i915#3281]) +1 other test skip
[23]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133932v1/shard-mtlp-4/igt@gem_exec_reloc@basic-cpu-noreloc.html
* igt@gem_exec_reloc@basic-write-gtt-noreloc:
- shard-dg2: NOTRUN -> [SKIP][24] ([i915#3281]) +3 other tests skip
[24]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133932v1/shard-dg2-3/igt@gem_exec_reloc@basic-write-gtt-noreloc.html
* igt@gem_fenced_exec_thrash@no-spare-fences-interruptible:
- shard-dg1: NOTRUN -> [SKIP][25] ([i915#4860])
[25]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133932v1/shard-dg1-16/igt@gem_fenced_exec_thrash@no-spare-fences-interruptible.html
* igt@gem_lmem_swapping@basic@lmem0:
- shard-dg2: [PASS][26] -> [FAIL][27] ([i915#10378]) +1 other test fail
[26]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14804/shard-dg2-10/igt@gem_lmem_swapping@basic@lmem0.html
[27]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133932v1/shard-dg2-7/igt@gem_lmem_swapping@basic@lmem0.html
* igt@gem_lmem_swapping@heavy-verify-multi-ccs:
- shard-tglu: NOTRUN -> [SKIP][28] ([i915#4613]) +1 other test skip
[28]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133932v1/shard-tglu-9/igt@gem_lmem_swapping@heavy-verify-multi-ccs.html
* igt@gem_lmem_swapping@heavy-verify-random:
- shard-rkl: NOTRUN -> [SKIP][29] ([i915#4613]) +2 other tests skip
[29]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133932v1/shard-rkl-5/igt@gem_lmem_swapping@heavy-verify-random.html
* igt@gem_lmem_swapping@parallel-random-verify:
- shard-mtlp: NOTRUN -> [SKIP][30] ([i915#4613])
[30]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133932v1/shard-mtlp-4/igt@gem_lmem_swapping@parallel-random-verify.html
* igt@gem_lmem_swapping@verify-random-ccs:
- shard-glk: NOTRUN -> [SKIP][31] ([i915#4613]) +2 other tests skip
[31]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133932v1/shard-glk3/igt@gem_lmem_swapping@verify-random-ccs.html
* igt@gem_madvise@dontneed-before-pwrite:
- shard-dg2: NOTRUN -> [SKIP][32] ([i915#3282])
[32]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133932v1/shard-dg2-3/igt@gem_madvise@dontneed-before-pwrite.html
* igt@gem_mmap_gtt@fault-concurrent-x:
- shard-dg2: NOTRUN -> [SKIP][33] ([i915#4077]) +2 other tests skip
[33]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133932v1/shard-dg2-3/igt@gem_mmap_gtt@fault-concurrent-x.html
* igt@gem_mmap_gtt@zero-extend:
- shard-dg1: NOTRUN -> [SKIP][34] ([i915#4077]) +1 other test skip
[34]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133932v1/shard-dg1-16/igt@gem_mmap_gtt@zero-extend.html
* igt@gem_mmap_wc@fault-concurrent:
- shard-dg2: NOTRUN -> [SKIP][35] ([i915#4083]) +2 other tests skip
[35]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133932v1/shard-dg2-3/igt@gem_mmap_wc@fault-concurrent.html
* igt@gem_partial_pwrite_pread@reads-uncached:
- shard-rkl: NOTRUN -> [SKIP][36] ([i915#3282]) +1 other test skip
[36]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133932v1/shard-rkl-5/igt@gem_partial_pwrite_pread@reads-uncached.html
* igt@gem_pxp@fail-invalid-protected-context:
- shard-dg2: NOTRUN -> [SKIP][37] ([i915#4270])
[37]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133932v1/shard-dg2-3/igt@gem_pxp@fail-invalid-protected-context.html
* igt@gem_pxp@regular-baseline-src-copy-readible:
- shard-rkl: NOTRUN -> [SKIP][38] ([i915#4270]) +4 other tests skip
[38]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133932v1/shard-rkl-3/igt@gem_pxp@regular-baseline-src-copy-readible.html
* igt@gem_pxp@reject-modify-context-protection-off-1:
- shard-dg1: NOTRUN -> [SKIP][39] ([i915#4270])
[39]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133932v1/shard-dg1-16/igt@gem_pxp@reject-modify-context-protection-off-1.html
* igt@gem_pxp@verify-pxp-stale-buf-execution:
- shard-mtlp: NOTRUN -> [SKIP][40] ([i915#4270]) +1 other test skip
[40]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133932v1/shard-mtlp-4/igt@gem_pxp@verify-pxp-stale-buf-execution.html
* igt@gem_render_copy@y-tiled-ccs-to-y-tiled-ccs:
- shard-dg2: NOTRUN -> [SKIP][41] ([i915#5190] / [i915#8428])
[41]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133932v1/shard-dg2-3/igt@gem_render_copy@y-tiled-ccs-to-y-tiled-ccs.html
* igt@gem_set_tiling_vs_blt@tiled-to-tiled:
- shard-mtlp: NOTRUN -> [SKIP][42] ([i915#4079])
[42]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133932v1/shard-mtlp-4/igt@gem_set_tiling_vs_blt@tiled-to-tiled.html
* igt@gem_set_tiling_vs_blt@untiled-to-tiled:
- shard-dg2: NOTRUN -> [SKIP][43] ([i915#4079])
[43]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133932v1/shard-dg2-3/igt@gem_set_tiling_vs_blt@untiled-to-tiled.html
- shard-rkl: NOTRUN -> [SKIP][44] ([i915#8411])
[44]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133932v1/shard-rkl-3/igt@gem_set_tiling_vs_blt@untiled-to-tiled.html
* igt@gem_userptr_blits@dmabuf-unsync:
- shard-dg1: NOTRUN -> [SKIP][45] ([i915#3297])
[45]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133932v1/shard-dg1-16/igt@gem_userptr_blits@dmabuf-unsync.html
* igt@gem_userptr_blits@map-fixed-invalidate:
- shard-dg1: NOTRUN -> [SKIP][46] ([i915#3297] / [i915#4880])
[46]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133932v1/shard-dg1-16/igt@gem_userptr_blits@map-fixed-invalidate.html
* igt@gem_userptr_blits@map-fixed-invalidate-overlap:
- shard-dg2: NOTRUN -> [SKIP][47] ([i915#3297] / [i915#4880])
[47]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133932v1/shard-dg2-3/igt@gem_userptr_blits@map-fixed-invalidate-overlap.html
* igt@gem_userptr_blits@unsync-unmap-cycles:
- shard-rkl: NOTRUN -> [SKIP][48] ([i915#3297])
[48]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133932v1/shard-rkl-3/igt@gem_userptr_blits@unsync-unmap-cycles.html
* igt@gen9_exec_parse@bb-oversize:
- shard-dg1: NOTRUN -> [SKIP][49] ([i915#2527])
[49]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133932v1/shard-dg1-16/igt@gen9_exec_parse@bb-oversize.html
* igt@gen9_exec_parse@bb-start-out:
- shard-mtlp: NOTRUN -> [SKIP][50] ([i915#2856])
[50]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133932v1/shard-mtlp-4/igt@gen9_exec_parse@bb-start-out.html
* igt@gen9_exec_parse@shadow-peek:
- shard-rkl: NOTRUN -> [SKIP][51] ([i915#2527]) +2 other tests skip
[51]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133932v1/shard-rkl-3/igt@gen9_exec_parse@shadow-peek.html
* igt@gen9_exec_parse@unaligned-access:
- shard-tglu: NOTRUN -> [SKIP][52] ([i915#2527] / [i915#2856]) +1 other test skip
[52]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133932v1/shard-tglu-9/igt@gen9_exec_parse@unaligned-access.html
* igt@i915_module_load@load:
- shard-dg1: NOTRUN -> [SKIP][53] ([i915#6227])
[53]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133932v1/shard-dg1-16/igt@i915_module_load@load.html
* igt@i915_module_load@reload-with-fault-injection:
- shard-dg1: [PASS][54] -> [INCOMPLETE][55] ([i915#1982] / [i915#9849])
[54]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14804/shard-dg1-14/igt@i915_module_load@reload-with-fault-injection.html
[55]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133932v1/shard-dg1-14/igt@i915_module_load@reload-with-fault-injection.html
* igt@i915_pm_freq_api@freq-basic-api:
- shard-tglu: NOTRUN -> [SKIP][56] ([i915#8399])
[56]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133932v1/shard-tglu-8/igt@i915_pm_freq_api@freq-basic-api.html
* igt@i915_pm_rc6_residency@rc6-idle@gt0-vecs0:
- shard-dg1: NOTRUN -> [FAIL][57] ([i915#3591])
[57]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133932v1/shard-dg1-16/igt@i915_pm_rc6_residency@rc6-idle@gt0-vecs0.html
* igt@i915_pm_sseu@full-enable:
- shard-tglu: NOTRUN -> [SKIP][58] ([i915#4387])
[58]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133932v1/shard-tglu-9/igt@i915_pm_sseu@full-enable.html
* igt@intel_hwmon@hwmon-read:
- shard-rkl: NOTRUN -> [SKIP][59] ([i915#7707])
[59]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133932v1/shard-rkl-3/igt@intel_hwmon@hwmon-read.html
* igt@kms_addfb_basic@invalid-smem-bo-on-discrete:
- shard-tglu: NOTRUN -> [SKIP][60] ([i915#3826])
[60]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133932v1/shard-tglu-8/igt@kms_addfb_basic@invalid-smem-bo-on-discrete.html
* igt@kms_async_flips@async-flip-with-page-flip-events@pipe-d-hdmi-a-3-4-mc-ccs:
- shard-dg2: NOTRUN -> [SKIP][61] ([i915#8709]) +11 other tests skip
[61]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133932v1/shard-dg2-1/igt@kms_async_flips@async-flip-with-page-flip-events@pipe-d-hdmi-a-3-4-mc-ccs.html
* igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels:
- shard-dg2: NOTRUN -> [SKIP][62] ([i915#1769] / [i915#3555])
[62]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133932v1/shard-dg2-3/igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels.html
- shard-rkl: NOTRUN -> [SKIP][63] ([i915#1769] / [i915#3555])
[63]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133932v1/shard-rkl-3/igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels.html
* igt@kms_atomic_transition@plane-all-modeset-transition-internal-panels:
- shard-dg1: NOTRUN -> [SKIP][64] ([i915#1769] / [i915#3555])
[64]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133932v1/shard-dg1-16/igt@kms_atomic_transition@plane-all-modeset-transition-internal-panels.html
* igt@kms_big_fb@4-tiled-64bpp-rotate-270:
- shard-rkl: NOTRUN -> [SKIP][65] ([i915#5286]) +2 other tests skip
[65]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133932v1/shard-rkl-3/igt@kms_big_fb@4-tiled-64bpp-rotate-270.html
* igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0-hflip:
- shard-tglu: NOTRUN -> [SKIP][66] ([i915#5286]) +3 other tests skip
[66]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133932v1/shard-tglu-9/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0-hflip.html
* igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0-hflip-async-flip:
- shard-dg1: NOTRUN -> [SKIP][67] ([i915#4538] / [i915#5286])
[67]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133932v1/shard-dg1-16/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0-hflip-async-flip.html
* igt@kms_big_fb@linear-32bpp-rotate-90:
- shard-rkl: NOTRUN -> [SKIP][68] ([i915#3638]) +1 other test skip
[68]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133932v1/shard-rkl-3/igt@kms_big_fb@linear-32bpp-rotate-90.html
* igt@kms_big_fb@y-tiled-64bpp-rotate-90:
- shard-dg1: NOTRUN -> [SKIP][69] ([i915#3638]) +1 other test skip
[69]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133932v1/shard-dg1-16/igt@kms_big_fb@y-tiled-64bpp-rotate-90.html
* igt@kms_big_fb@y-tiled-addfb-size-offset-overflow:
- shard-dg2: NOTRUN -> [SKIP][70] ([i915#5190])
[70]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133932v1/shard-dg2-3/igt@kms_big_fb@y-tiled-addfb-size-offset-overflow.html
* igt@kms_big_fb@yf-tiled-32bpp-rotate-90:
- shard-dg1: NOTRUN -> [SKIP][71] ([i915#4538]) +1 other test skip
[71]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133932v1/shard-dg1-16/igt@kms_big_fb@yf-tiled-32bpp-rotate-90.html
* igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-0-hflip-async-flip:
- shard-dg2: NOTRUN -> [SKIP][72] ([i915#4538] / [i915#5190])
[72]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133932v1/shard-dg2-3/igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-0-hflip-async-flip.html
* igt@kms_big_joiner@invalid-modeset:
- shard-dg2: NOTRUN -> [SKIP][73] ([i915#10656])
[73]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133932v1/shard-dg2-3/igt@kms_big_joiner@invalid-modeset.html
* igt@kms_big_joiner@invalid-modeset-force-joiner:
- shard-rkl: NOTRUN -> [SKIP][74] ([i915#10656]) +1 other test skip
[74]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133932v1/shard-rkl-3/igt@kms_big_joiner@invalid-modeset-force-joiner.html
* igt@kms_ccs@bad-aux-stride-4-tiled-mtl-mc-ccs@pipe-a-hdmi-a-4:
- shard-dg1: NOTRUN -> [SKIP][75] ([i915#6095]) +47 other tests skip
[75]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133932v1/shard-dg1-16/igt@kms_ccs@bad-aux-stride-4-tiled-mtl-mc-ccs@pipe-a-hdmi-a-4.html
* igt@kms_ccs@bad-aux-stride-y-tiled-ccs@pipe-d-hdmi-a-1:
- shard-tglu: NOTRUN -> [SKIP][76] ([i915#6095]) +23 other tests skip
[76]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133932v1/shard-tglu-9/igt@kms_ccs@bad-aux-stride-y-tiled-ccs@pipe-d-hdmi-a-1.html
* igt@kms_ccs@bad-pixel-format-y-tiled-ccs@pipe-d-hdmi-a-1:
- shard-dg2: NOTRUN -> [SKIP][77] ([i915#10307] / [i915#10434] / [i915#6095]) +6 other tests skip
[77]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133932v1/shard-dg2-10/igt@kms_ccs@bad-pixel-format-y-tiled-ccs@pipe-d-hdmi-a-1.html
* igt@kms_ccs@bad-rotation-90-4-tiled-xe2-ccs:
- shard-dg2: NOTRUN -> [SKIP][78] ([i915#10278])
[78]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133932v1/shard-dg2-3/igt@kms_ccs@bad-rotation-90-4-tiled-xe2-ccs.html
- shard-rkl: NOTRUN -> [SKIP][79] ([i915#10278])
[79]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133932v1/shard-rkl-3/igt@kms_ccs@bad-rotation-90-4-tiled-xe2-ccs.html
* igt@kms_ccs@ccs-on-another-bo-y-tiled-ccs@pipe-b-hdmi-a-1:
- shard-dg2: NOTRUN -> [SKIP][80] ([i915#10307] / [i915#6095]) +188 other tests skip
[80]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133932v1/shard-dg2-10/igt@kms_ccs@ccs-on-another-bo-y-tiled-ccs@pipe-b-hdmi-a-1.html
* igt@kms_ccs@missing-ccs-buffer-4-tiled-mtl-rc-ccs-cc@pipe-a-hdmi-a-1:
- shard-rkl: NOTRUN -> [SKIP][81] ([i915#6095]) +41 other tests skip
[81]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133932v1/shard-rkl-2/igt@kms_ccs@missing-ccs-buffer-4-tiled-mtl-rc-ccs-cc@pipe-a-hdmi-a-1.html
* igt@kms_cdclk@mode-transition-all-outputs:
- shard-tglu: NOTRUN -> [SKIP][82] ([i915#3742])
[82]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133932v1/shard-tglu-8/igt@kms_cdclk@mode-transition-all-outputs.html
* igt@kms_cdclk@plane-scaling@pipe-d-dp-4:
- shard-dg2: NOTRUN -> [SKIP][83] ([i915#4087]) +3 other tests skip
[83]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133932v1/shard-dg2-11/igt@kms_cdclk@plane-scaling@pipe-d-dp-4.html
* igt@kms_chamelium_color@ctm-0-75:
- shard-snb: NOTRUN -> [SKIP][84] +29 other tests skip
[84]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133932v1/shard-snb5/igt@kms_chamelium_color@ctm-0-75.html
- shard-mtlp: NOTRUN -> [SKIP][85] +1 other test skip
[85]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133932v1/shard-mtlp-4/igt@kms_chamelium_color@ctm-0-75.html
* igt@kms_chamelium_edid@dp-edid-change-during-suspend:
- shard-dg1: NOTRUN -> [SKIP][86] ([i915#7828]) +1 other test skip
[86]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133932v1/shard-dg1-16/igt@kms_chamelium_edid@dp-edid-change-during-suspend.html
* igt@kms_chamelium_edid@hdmi-edid-change-during-suspend:
- shard-tglu: NOTRUN -> [SKIP][87] ([i915#7828]) +4 other tests skip
[87]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133932v1/shard-tglu-9/igt@kms_chamelium_edid@hdmi-edid-change-during-suspend.html
* igt@kms_chamelium_edid@vga-edid-read:
- shard-mtlp: NOTRUN -> [SKIP][88] ([i915#7828]) +1 other test skip
[88]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133932v1/shard-mtlp-4/igt@kms_chamelium_edid@vga-edid-read.html
* igt@kms_chamelium_frames@hdmi-crc-single:
- shard-rkl: NOTRUN -> [SKIP][89] ([i915#7828]) +5 other tests skip
[89]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133932v1/shard-rkl-3/igt@kms_chamelium_frames@hdmi-crc-single.html
- shard-dg2: NOTRUN -> [SKIP][90] ([i915#7828])
[90]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133932v1/shard-dg2-3/igt@kms_chamelium_frames@hdmi-crc-single.html
* igt@kms_color@deep-color:
- shard-tglu: NOTRUN -> [SKIP][91] ([i915#3555] / [i915#9979])
[91]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133932v1/shard-tglu-8/igt@kms_color@deep-color.html
* igt@kms_content_protection@dp-mst-type-0:
- shard-dg1: NOTRUN -> [SKIP][92] ([i915#3299])
[92]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133932v1/shard-dg1-16/igt@kms_content_protection@dp-mst-type-0.html
* igt@kms_content_protection@lic-type-0:
- shard-tglu: NOTRUN -> [SKIP][93] ([i915#6944] / [i915#9424])
[93]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133932v1/shard-tglu-9/igt@kms_content_protection@lic-type-0.html
* igt@kms_content_protection@mei-interface:
- shard-rkl: NOTRUN -> [SKIP][94] ([i915#9424])
[94]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133932v1/shard-rkl-3/igt@kms_content_protection@mei-interface.html
* igt@kms_content_protection@uevent:
- shard-dg2: NOTRUN -> [SKIP][95] ([i915#7118] / [i915#9424]) +1 other test skip
[95]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133932v1/shard-dg2-3/igt@kms_content_protection@uevent.html
- shard-rkl: NOTRUN -> [SKIP][96] ([i915#7118] / [i915#9424])
[96]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133932v1/shard-rkl-3/igt@kms_content_protection@uevent.html
* igt@kms_cursor_crc@cursor-offscreen-128x42:
- shard-mtlp: NOTRUN -> [SKIP][97] ([i915#8814])
[97]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133932v1/shard-mtlp-4/igt@kms_cursor_crc@cursor-offscreen-128x42.html
* igt@kms_cursor_crc@cursor-offscreen-32x10:
- shard-dg1: NOTRUN -> [SKIP][98] ([i915#3555]) +1 other test skip
[98]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133932v1/shard-dg1-16/igt@kms_cursor_crc@cursor-offscreen-32x10.html
* igt@kms_cursor_crc@cursor-random-512x170:
- shard-tglu: NOTRUN -> [SKIP][99] ([i915#3359])
[99]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133932v1/shard-tglu-9/igt@kms_cursor_crc@cursor-random-512x170.html
* igt@kms_cursor_crc@cursor-rapid-movement-512x170:
- shard-dg2: NOTRUN -> [SKIP][100] ([i915#3359])
[100]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133932v1/shard-dg2-3/igt@kms_cursor_crc@cursor-rapid-movement-512x170.html
- shard-rkl: NOTRUN -> [SKIP][101] ([i915#3359])
[101]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133932v1/shard-rkl-3/igt@kms_cursor_crc@cursor-rapid-movement-512x170.html
* igt@kms_cursor_legacy@cursora-vs-flipb-varying-size:
- shard-rkl: NOTRUN -> [SKIP][102] +30 other tests skip
[102]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133932v1/shard-rkl-5/igt@kms_cursor_legacy@cursora-vs-flipb-varying-size.html
* igt@kms_dirtyfb@drrs-dirtyfb-ioctl:
- shard-dg1: NOTRUN -> [SKIP][103] ([i915#9723])
[103]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133932v1/shard-dg1-16/igt@kms_dirtyfb@drrs-dirtyfb-ioctl.html
* igt@kms_dirtyfb@fbc-dirtyfb-ioctl@a-hdmi-a-1:
- shard-rkl: NOTRUN -> [SKIP][104] ([i915#9723])
[104]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133932v1/shard-rkl-5/igt@kms_dirtyfb@fbc-dirtyfb-ioctl@a-hdmi-a-1.html
* igt@kms_dirtyfb@psr-dirtyfb-ioctl:
- shard-tglu: NOTRUN -> [SKIP][105] ([i915#9723])
[105]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133932v1/shard-tglu-8/igt@kms_dirtyfb@psr-dirtyfb-ioctl.html
* igt@kms_display_modes@mst-extended-mode-negative:
- shard-rkl: NOTRUN -> [SKIP][106] ([i915#8588])
[106]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133932v1/shard-rkl-3/igt@kms_display_modes@mst-extended-mode-negative.html
* igt@kms_dither@fb-8bpc-vs-panel-8bpc:
- shard-dg2: NOTRUN -> [SKIP][107] ([i915#3555]) +1 other test skip
[107]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133932v1/shard-dg2-3/igt@kms_dither@fb-8bpc-vs-panel-8bpc.html
* igt@kms_dp_aux_dev:
- shard-tglu: NOTRUN -> [SKIP][108] ([i915#1257])
[108]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133932v1/shard-tglu-9/igt@kms_dp_aux_dev.html
* igt@kms_dsc@dsc-with-formats:
- shard-rkl: NOTRUN -> [SKIP][109] ([i915#3555] / [i915#3840]) +1 other test skip
[109]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133932v1/shard-rkl-5/igt@kms_dsc@dsc-with-formats.html
* igt@kms_dsc@dsc-with-output-formats:
- shard-tglu: NOTRUN -> [SKIP][110] ([i915#3555] / [i915#3840])
[110]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133932v1/shard-tglu-9/igt@kms_dsc@dsc-with-output-formats.html
* igt@kms_feature_discovery@chamelium:
- shard-mtlp: NOTRUN -> [SKIP][111] ([i915#4854])
[111]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133932v1/shard-mtlp-4/igt@kms_feature_discovery@chamelium.html
* igt@kms_feature_discovery@display-2x:
- shard-tglu: NOTRUN -> [SKIP][112] ([i915#1839])
[112]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133932v1/shard-tglu-8/igt@kms_feature_discovery@display-2x.html
* igt@kms_flip@2x-absolute-wf_vblank-interruptible:
- shard-dg1: NOTRUN -> [SKIP][113] ([i915#9934])
[113]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133932v1/shard-dg1-16/igt@kms_flip@2x-absolute-wf_vblank-interruptible.html
* igt@kms_flip@2x-flip-vs-fences-interruptible:
- shard-tglu: NOTRUN -> [SKIP][114] ([i915#3637]) +2 other tests skip
[114]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133932v1/shard-tglu-9/igt@kms_flip@2x-flip-vs-fences-interruptible.html
* igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-32bpp-4tiledg2rcccs-downscaling@pipe-a-valid-mode:
- shard-rkl: NOTRUN -> [SKIP][115] ([i915#2672]) +3 other tests skip
[115]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133932v1/shard-rkl-3/igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-32bpp-4tiledg2rcccs-downscaling@pipe-a-valid-mode.html
* igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tile-upscaling@pipe-a-valid-mode:
- shard-tglu: NOTRUN -> [SKIP][116] ([i915#2587] / [i915#2672]) +1 other test skip
[116]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133932v1/shard-tglu-9/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tile-upscaling@pipe-a-valid-mode.html
* igt@kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-draw-mmap-wc:
- shard-dg1: NOTRUN -> [SKIP][117] ([i915#8708]) +5 other tests skip
[117]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133932v1/shard-dg1-16/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-indfb-draw-mmap-wc:
- shard-rkl: NOTRUN -> [SKIP][118] ([i915#1825]) +30 other tests skip
[118]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133932v1/shard-rkl-3/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-indfb-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-fullscreen:
- shard-snb: [PASS][119] -> [SKIP][120] +1 other test skip
[119]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14804/shard-snb7/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-fullscreen.html
[120]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133932v1/shard-snb7/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-fullscreen.html
* igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-indfb-draw-pwrite:
- shard-dg1: NOTRUN -> [SKIP][121] +10 other tests skip
[121]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133932v1/shard-dg1-16/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-indfb-draw-pwrite.html
* igt@kms_frontbuffer_tracking@fbcpsr-1p-offscren-pri-shrfb-draw-mmap-gtt:
- shard-dg2: NOTRUN -> [SKIP][122] ([i915#8708]) +5 other tests skip
[122]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133932v1/shard-dg2-3/igt@kms_frontbuffer_tracking@fbcpsr-1p-offscren-pri-shrfb-draw-mmap-gtt.html
* igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-spr-indfb-draw-pwrite:
- shard-mtlp: NOTRUN -> [SKIP][123] ([i915#1825]) +2 other tests skip
[123]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133932v1/shard-mtlp-4/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-spr-indfb-draw-pwrite.html
* igt@kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-move:
- shard-dg2: NOTRUN -> [SKIP][124] ([i915#3458]) +1 other test skip
[124]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133932v1/shard-dg2-3/igt@kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-move.html
* igt@kms_frontbuffer_tracking@psr-1p-primscrn-pri-indfb-draw-render:
- shard-rkl: NOTRUN -> [SKIP][125] ([i915#3023]) +13 other tests skip
[125]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133932v1/shard-rkl-5/igt@kms_frontbuffer_tracking@psr-1p-primscrn-pri-indfb-draw-render.html
* igt@kms_frontbuffer_tracking@psr-1p-primscrn-shrfb-msflip-blt:
- shard-dg1: NOTRUN -> [SKIP][126] ([i915#3458]) +3 other tests skip
[126]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133932v1/shard-dg1-16/igt@kms_frontbuffer_tracking@psr-1p-primscrn-shrfb-msflip-blt.html
* igt@kms_frontbuffer_tracking@psr-2p-scndscrn-cur-indfb-draw-render:
- shard-dg2: NOTRUN -> [SKIP][127] ([i915#5354]) +9 other tests skip
[127]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133932v1/shard-dg2-3/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-cur-indfb-draw-render.html
* igt@kms_frontbuffer_tracking@psr-rgb565-draw-mmap-gtt:
- shard-tglu: NOTRUN -> [SKIP][128] +42 other tests skip
[128]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133932v1/shard-tglu-9/igt@kms_frontbuffer_tracking@psr-rgb565-draw-mmap-gtt.html
* igt@kms_hdr@bpc-switch:
- shard-dg2: NOTRUN -> [SKIP][129] ([i915#3555] / [i915#8228])
[129]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133932v1/shard-dg2-4/igt@kms_hdr@bpc-switch.html
* igt@kms_hdr@invalid-metadata-sizes:
- shard-rkl: NOTRUN -> [SKIP][130] ([i915#3555] / [i915#8228])
[130]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133932v1/shard-rkl-3/igt@kms_hdr@invalid-metadata-sizes.html
* igt@kms_hdr@static-toggle-suspend:
- shard-dg1: NOTRUN -> [SKIP][131] ([i915#3555] / [i915#8228])
[131]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133932v1/shard-dg1-16/igt@kms_hdr@static-toggle-suspend.html
* igt@kms_panel_fitting@atomic-fastset:
- shard-rkl: NOTRUN -> [SKIP][132] ([i915#6301])
[132]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133932v1/shard-rkl-5/igt@kms_panel_fitting@atomic-fastset.html
* igt@kms_pipe_b_c_ivb@disable-pipe-b-enable-pipe-c:
- shard-dg2: NOTRUN -> [SKIP][133] +5 other tests skip
[133]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133932v1/shard-dg2-3/igt@kms_pipe_b_c_ivb@disable-pipe-b-enable-pipe-c.html
* igt@kms_plane_multiple@tiling-yf:
- shard-rkl: NOTRUN -> [SKIP][134] ([i915#3555]) +3 other tests skip
[134]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133932v1/shard-rkl-5/igt@kms_plane_multiple@tiling-yf.html
* igt@kms_plane_scaling@intel-max-src-size@pipe-a-hdmi-a-2:
- shard-rkl: NOTRUN -> [FAIL][135] ([i915#8292])
[135]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133932v1/shard-rkl-3/igt@kms_plane_scaling@intel-max-src-size@pipe-a-hdmi-a-2.html
* igt@kms_plane_scaling@plane-downscale-factor-0-25-with-pixel-format@pipe-b-hdmi-a-1:
- shard-glk: NOTRUN -> [SKIP][136] +254 other tests skip
[136]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133932v1/shard-glk5/igt@kms_plane_scaling@plane-downscale-factor-0-25-with-pixel-format@pipe-b-hdmi-a-1.html
* igt@kms_plane_scaling@plane-downscale-factor-0-25-with-pixel-format@pipe-b-hdmi-a-3:
- shard-dg2: NOTRUN -> [SKIP][137] ([i915#9423]) +7 other tests skip
[137]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133932v1/shard-dg2-7/igt@kms_plane_scaling@plane-downscale-factor-0-25-with-pixel-format@pipe-b-hdmi-a-3.html
* igt@kms_plane_scaling@plane-downscale-factor-0-25-with-rotation@pipe-b-hdmi-a-2:
- shard-rkl: NOTRUN -> [SKIP][138] ([i915#9423]) +1 other test skip
[138]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133932v1/shard-rkl-3/igt@kms_plane_scaling@plane-downscale-factor-0-25-with-rotation@pipe-b-hdmi-a-2.html
* igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-rotation@pipe-b-hdmi-a-1:
- shard-tglu: NOTRUN -> [SKIP][139] ([i915#5176] / [i915#9423]) +3 other tests skip
[139]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133932v1/shard-tglu-9/igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-rotation@pipe-b-hdmi-a-1.html
* igt@kms_plane_scaling@plane-upscale-20x20-with-rotation@pipe-d-hdmi-a-3:
- shard-dg1: NOTRUN -> [SKIP][140] ([i915#9423]) +7 other tests skip
[140]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133932v1/shard-dg1-13/igt@kms_plane_scaling@plane-upscale-20x20-with-rotation@pipe-d-hdmi-a-3.html
* igt@kms_plane_scaling@plane-upscale-factor-0-25-with-rotation@pipe-d-hdmi-a-1:
- shard-tglu: NOTRUN -> [SKIP][141] ([i915#9423]) +7 other tests skip
[141]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133932v1/shard-tglu-8/igt@kms_plane_scaling@plane-upscale-factor-0-25-with-rotation@pipe-d-hdmi-a-1.html
* igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25@pipe-d-hdmi-a-3:
- shard-dg2: NOTRUN -> [SKIP][142] ([i915#5235] / [i915#9423]) +11 other tests skip
[142]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133932v1/shard-dg2-1/igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25@pipe-d-hdmi-a-3.html
* igt@kms_plane_scaling@planes-downscale-factor-0-25@pipe-c-hdmi-a-4:
- shard-dg1: NOTRUN -> [SKIP][143] ([i915#5235]) +3 other tests skip
[143]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133932v1/shard-dg1-16/igt@kms_plane_scaling@planes-downscale-factor-0-25@pipe-c-hdmi-a-4.html
* igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-25@pipe-b-hdmi-a-1:
- shard-rkl: NOTRUN -> [SKIP][144] ([i915#5235]) +3 other tests skip
[144]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133932v1/shard-rkl-2/igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-25@pipe-b-hdmi-a-1.html
* igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-75@pipe-a-edp-1:
- shard-mtlp: NOTRUN -> [SKIP][145] ([i915#5235]) +2 other tests skip
[145]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133932v1/shard-mtlp-4/igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-75@pipe-a-edp-1.html
* igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-75@pipe-d-edp-1:
- shard-mtlp: NOTRUN -> [SKIP][146] ([i915#3555] / [i915#5235])
[146]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133932v1/shard-mtlp-4/igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-75@pipe-d-edp-1.html
* igt@kms_pm_backlight@fade-with-suspend:
- shard-rkl: NOTRUN -> [SKIP][147] ([i915#5354]) +1 other test skip
[147]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133932v1/shard-rkl-3/igt@kms_pm_backlight@fade-with-suspend.html
* igt@kms_pm_lpsp@kms-lpsp:
- shard-dg2: NOTRUN -> [SKIP][148] ([i915#9340])
[148]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133932v1/shard-dg2-6/igt@kms_pm_lpsp@kms-lpsp.html
* igt@kms_pm_rpm@dpms-mode-unset-non-lpsp:
- shard-dg2: [PASS][149] -> [SKIP][150] ([i915#9519]) +1 other test skip
[149]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14804/shard-dg2-5/igt@kms_pm_rpm@dpms-mode-unset-non-lpsp.html
[150]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133932v1/shard-dg2-10/igt@kms_pm_rpm@dpms-mode-unset-non-lpsp.html
* igt@kms_pm_rpm@modeset-lpsp-stress-no-wait:
- shard-rkl: [PASS][151] -> [SKIP][152] ([i915#9519])
[151]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14804/shard-rkl-2/igt@kms_pm_rpm@modeset-lpsp-stress-no-wait.html
[152]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133932v1/shard-rkl-3/igt@kms_pm_rpm@modeset-lpsp-stress-no-wait.html
* igt@kms_psr@fbc-psr2-cursor-plane-onoff@edp-1:
- shard-mtlp: NOTRUN -> [SKIP][153] ([i915#9688])
[153]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133932v1/shard-mtlp-4/igt@kms_psr@fbc-psr2-cursor-plane-onoff@edp-1.html
* igt@kms_psr@pr-cursor-mmap-gtt:
- shard-dg1: NOTRUN -> [SKIP][154] ([i915#1072] / [i915#9732]) +6 other tests skip
[154]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133932v1/shard-dg1-16/igt@kms_psr@pr-cursor-mmap-gtt.html
* igt@kms_psr@psr2-cursor-plane-onoff:
- shard-tglu: NOTRUN -> [SKIP][155] ([i915#9732]) +9 other tests skip
[155]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133932v1/shard-tglu-9/igt@kms_psr@psr2-cursor-plane-onoff.html
* igt@kms_psr@psr2-primary-mmap-gtt:
- shard-dg2: NOTRUN -> [SKIP][156] ([i915#1072] / [i915#9732]) +4 other tests skip
[156]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133932v1/shard-dg2-3/igt@kms_psr@psr2-primary-mmap-gtt.html
- shard-rkl: NOTRUN -> [SKIP][157] ([i915#1072] / [i915#9732]) +14 other tests skip
[157]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133932v1/shard-rkl-3/igt@kms_psr@psr2-primary-mmap-gtt.html
* igt@kms_psr_stress_test@flip-primary-invalidate-overlay:
- shard-rkl: NOTRUN -> [SKIP][158] ([i915#9685]) +1 other test skip
[158]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133932v1/shard-rkl-3/igt@kms_psr_stress_test@flip-primary-invalidate-overlay.html
- shard-dg2: NOTRUN -> [SKIP][159] ([i915#9685])
[159]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133932v1/shard-dg2-3/igt@kms_psr_stress_test@flip-primary-invalidate-overlay.html
* igt@kms_rotation_crc@primary-yf-tiled-reflect-x-0:
- shard-rkl: NOTRUN -> [SKIP][160] ([i915#5289])
[160]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133932v1/shard-rkl-3/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-0.html
* igt@kms_setmode@clone-exclusive-crtc:
- shard-tglu: NOTRUN -> [SKIP][161] ([i915#3555]) +3 other tests skip
[161]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133932v1/shard-tglu-9/igt@kms_setmode@clone-exclusive-crtc.html
* igt@kms_universal_plane@cursor-fb-leak@pipe-b-hdmi-a-1:
- shard-snb: [PASS][162] -> [FAIL][163] ([i915#9196])
[162]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14804/shard-snb6/igt@kms_universal_plane@cursor-fb-leak@pipe-b-hdmi-a-1.html
[163]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133932v1/shard-snb6/igt@kms_universal_plane@cursor-fb-leak@pipe-b-hdmi-a-1.html
* igt@kms_universal_plane@cursor-fb-leak@pipe-d-hdmi-a-1:
- shard-tglu: [PASS][164] -> [FAIL][165] ([i915#9196]) +1 other test fail
[164]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14804/shard-tglu-7/igt@kms_universal_plane@cursor-fb-leak@pipe-d-hdmi-a-1.html
[165]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133932v1/shard-tglu-6/igt@kms_universal_plane@cursor-fb-leak@pipe-d-hdmi-a-1.html
* igt@kms_vrr@seamless-rr-switch-virtual:
- shard-dg2: NOTRUN -> [SKIP][166] ([i915#9906])
[166]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133932v1/shard-dg2-3/igt@kms_vrr@seamless-rr-switch-virtual.html
- shard-rkl: NOTRUN -> [SKIP][167] ([i915#9906])
[167]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133932v1/shard-rkl-3/igt@kms_vrr@seamless-rr-switch-virtual.html
* igt@perf@blocking@0-rcs0:
- shard-rkl: NOTRUN -> [FAIL][168] ([i915#10538])
[168]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133932v1/shard-rkl-5/igt@perf@blocking@0-rcs0.html
* igt@prime_vgem@basic-read:
- shard-dg1: NOTRUN -> [SKIP][169] ([i915#3708])
[169]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133932v1/shard-dg1-16/igt@prime_vgem@basic-read.html
* igt@tools_test@sysfs_l3_parity:
- shard-dg1: NOTRUN -> [SKIP][170] ([i915#4818])
[170]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133932v1/shard-dg1-17/igt@tools_test@sysfs_l3_parity.html
* igt@v3d/v3d_create_bo@create-bo-0:
- shard-dg2: NOTRUN -> [SKIP][171] ([i915#2575]) +2 other tests skip
[171]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133932v1/shard-dg2-3/igt@v3d/v3d_create_bo@create-bo-0.html
* igt@v3d/v3d_get_param@get-bad-param:
- shard-dg1: NOTRUN -> [SKIP][172] ([i915#2575]) +4 other tests skip
[172]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133932v1/shard-dg1-16/igt@v3d/v3d_get_param@get-bad-param.html
* igt@v3d/v3d_submit_cl@bad-flag:
- shard-tglu: NOTRUN -> [SKIP][173] ([i915#2575]) +9 other tests skip
[173]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133932v1/shard-tglu-9/igt@v3d/v3d_submit_cl@bad-flag.html
* igt@v3d/v3d_submit_cl@valid-multisync-submission:
- shard-mtlp: NOTRUN -> [SKIP][174] ([i915#2575])
[174]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133932v1/shard-mtlp-4/igt@v3d/v3d_submit_cl@valid-multisync-submission.html
* igt@vc4/vc4_label_bo@set-bad-name:
- shard-dg1: NOTRUN -> [SKIP][175] ([i915#7711]) +1 other test skip
[175]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133932v1/shard-dg1-16/igt@vc4/vc4_label_bo@set-bad-name.html
* igt@vc4/vc4_label_bo@set-kernel-name:
- shard-dg2: NOTRUN -> [SKIP][176] ([i915#7711]) +1 other test skip
[176]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133932v1/shard-dg2-3/igt@vc4/vc4_label_bo@set-kernel-name.html
- shard-rkl: NOTRUN -> [SKIP][177] ([i915#7711]) +5 other tests skip
[177]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133932v1/shard-rkl-3/igt@vc4/vc4_label_bo@set-kernel-name.html
* igt@vc4/vc4_lookup_fail@bad-color-write:
- shard-mtlp: NOTRUN -> [SKIP][178] ([i915#7711]) +1 other test skip
[178]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133932v1/shard-mtlp-4/igt@vc4/vc4_lookup_fail@bad-color-write.html
#### Possible fixes ####
* igt@gem_ctx_freq@sysfs@gt0:
- shard-dg2: [FAIL][179] ([i915#9561]) -> [PASS][180]
[179]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14804/shard-dg2-4/igt@gem_ctx_freq@sysfs@gt0.html
[180]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133932v1/shard-dg2-5/igt@gem_ctx_freq@sysfs@gt0.html
* igt@gem_eio@kms:
- shard-tglu: [INCOMPLETE][181] ([i915#10513]) -> [PASS][182]
[181]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14804/shard-tglu-2/igt@gem_eio@kms.html
[182]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133932v1/shard-tglu-5/igt@gem_eio@kms.html
* igt@gem_exec_fair@basic-none-share@rcs0:
- shard-rkl: [FAIL][183] ([i915#2842]) -> [PASS][184]
[183]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14804/shard-rkl-5/igt@gem_exec_fair@basic-none-share@rcs0.html
[184]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133932v1/shard-rkl-4/igt@gem_exec_fair@basic-none-share@rcs0.html
* igt@gem_exec_fair@basic-pace-share@rcs0:
- shard-tglu: [FAIL][185] ([i915#2842]) -> [PASS][186]
[185]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14804/shard-tglu-3/igt@gem_exec_fair@basic-pace-share@rcs0.html
[186]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133932v1/shard-tglu-2/igt@gem_exec_fair@basic-pace-share@rcs0.html
* igt@gem_lmem_swapping@heavy-verify-multi-ccs@lmem0:
- shard-dg2: [FAIL][187] ([i915#10378]) -> [PASS][188]
[187]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14804/shard-dg2-4/igt@gem_lmem_swapping@heavy-verify-multi-ccs@lmem0.html
[188]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133932v1/shard-dg2-5/igt@gem_lmem_swapping@heavy-verify-multi-ccs@lmem0.html
* igt@i915_module_load@reload-with-fault-injection:
- shard-snb: [INCOMPLETE][189] ([i915#9849]) -> [PASS][190]
[189]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14804/shard-snb5/igt@i915_module_load@reload-with-fault-injection.html
[190]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133932v1/shard-snb5/igt@i915_module_load@reload-with-fault-injection.html
- shard-mtlp: [ABORT][191] ([i915#10131] / [i915#10887] / [i915#9820]) -> [PASS][192]
[191]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14804/shard-mtlp-7/igt@i915_module_load@reload-with-fault-injection.html
[192]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133932v1/shard-mtlp-4/igt@i915_module_load@reload-with-fault-injection.html
* igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size:
- shard-glk: [FAIL][193] ([i915#2346]) -> [PASS][194]
[193]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14804/shard-glk1/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size.html
[194]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133932v1/shard-glk1/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size.html
* igt@kms_cursor_legacy@torture-move@pipe-a:
- shard-snb: [DMESG-WARN][195] ([i915#10166]) -> [PASS][196]
[195]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14804/shard-snb2/igt@kms_cursor_legacy@torture-move@pipe-a.html
[196]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133932v1/shard-snb2/igt@kms_cursor_legacy@torture-move@pipe-a.html
* igt@kms_flip@2x-flip-vs-absolute-wf_vblank@ab-vga1-hdmi-a1:
- shard-snb: [FAIL][197] ([i915#2122]) -> [PASS][198]
[197]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14804/shard-snb7/igt@kms_flip@2x-flip-vs-absolute-wf_vblank@ab-vga1-hdmi-a1.html
[198]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133932v1/shard-snb7/igt@kms_flip@2x-flip-vs-absolute-wf_vblank@ab-vga1-hdmi-a1.html
* igt@kms_pm_dc@dc6-dpms:
- shard-tglu: [FAIL][199] ([i915#9295]) -> [PASS][200]
[199]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14804/shard-tglu-9/igt@kms_pm_dc@dc6-dpms.html
[200]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133932v1/shard-tglu-4/igt@kms_pm_dc@dc6-dpms.html
* igt@kms_pm_rpm@modeset-lpsp:
- shard-dg2: [SKIP][201] ([i915#9519]) -> [PASS][202]
[201]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14804/shard-dg2-11/igt@kms_pm_rpm@modeset-lpsp.html
[202]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133932v1/shard-dg2-10/igt@kms_pm_rpm@modeset-lpsp.html
- shard-rkl: [SKIP][203] ([i915#9519]) -> [PASS][204]
[203]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14804/shard-rkl-6/igt@kms_pm_rpm@modeset-lpsp.html
[204]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133932v1/shard-rkl-5/igt@kms_pm_rpm@modeset-lpsp.html
* igt@kms_universal_plane@cursor-fb-leak@pipe-a-hdmi-a-1:
- shard-tglu: [FAIL][205] ([i915#9196]) -> [PASS][206]
[205]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14804/shard-tglu-7/igt@kms_universal_plane@cursor-fb-leak@pipe-a-hdmi-a-1.html
[206]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133932v1/shard-tglu-6/igt@kms_universal_plane@cursor-fb-leak@pipe-a-hdmi-a-1.html
#### Warnings ####
* igt@gem_create@create-ext-cpu-access-big:
- shard-dg2: [ABORT][207] ([i915#9846]) -> [INCOMPLETE][208] ([i915#9364])
[207]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14804/shard-dg2-7/igt@gem_create@create-ext-cpu-access-big.html
[208]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133932v1/shard-dg2-10/igt@gem_create@create-ext-cpu-access-big.html
* igt@i915_module_load@reload-with-fault-injection:
- shard-tglu: [INCOMPLETE][209] ([i915#10047] / [i915#9820]) -> [INCOMPLETE][210] ([i915#10047] / [i915#9697] / [i915#9820])
[209]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14804/shard-tglu-3/igt@i915_module_load@reload-with-fault-injection.html
[210]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133932v1/shard-tglu-8/igt@i915_module_load@reload-with-fault-injection.html
- shard-dg2: [INCOMPLETE][211] ([i915#1982] / [i915#9849]) -> [INCOMPLETE][212] ([i915#1982] / [i915#9820] / [i915#9849])
[211]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14804/shard-dg2-5/igt@i915_module_load@reload-with-fault-injection.html
[212]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133932v1/shard-dg2-11/igt@i915_module_load@reload-with-fault-injection.html
* igt@kms_big_fb@yf-tiled-16bpp-rotate-0:
- shard-dg1: [SKIP][213] ([i915#4538]) -> [SKIP][214] ([i915#4423] / [i915#4538])
[213]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14804/shard-dg1-17/igt@kms_big_fb@yf-tiled-16bpp-rotate-0.html
[214]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133932v1/shard-dg1-13/igt@kms_big_fb@yf-tiled-16bpp-rotate-0.html
* igt@kms_content_protection@atomic-dpms:
- shard-snb: [INCOMPLETE][215] ([i915#8816]) -> [SKIP][216]
[215]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14804/shard-snb7/igt@kms_content_protection@atomic-dpms.html
[216]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133932v1/shard-snb7/igt@kms_content_protection@atomic-dpms.html
* igt@kms_content_protection@type1:
- shard-dg2: [SKIP][217] ([i915#7118] / [i915#9424]) -> [SKIP][218] ([i915#7118] / [i915#7162] / [i915#9424])
[217]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14804/shard-dg2-5/igt@kms_content_protection@type1.html
[218]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133932v1/shard-dg2-11/igt@kms_content_protection@type1.html
* igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-pri-indfb-draw-blt:
- shard-dg2: [SKIP][219] ([i915#3458]) -> [SKIP][220] ([i915#10433] / [i915#3458]) +1 other test skip
[219]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14804/shard-dg2-7/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-pri-indfb-draw-blt.html
[220]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133932v1/shard-dg2-4/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-pri-indfb-draw-blt.html
* igt@kms_frontbuffer_tracking@fbcpsr-rgb565-draw-render:
- shard-dg2: [SKIP][221] ([i915#10433] / [i915#3458]) -> [SKIP][222] ([i915#3458]) +3 other tests skip
[221]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14804/shard-dg2-4/igt@kms_frontbuffer_tracking@fbcpsr-rgb565-draw-render.html
[222]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133932v1/shard-dg2-5/igt@kms_frontbuffer_tracking@fbcpsr-rgb565-draw-render.html
* igt@kms_multipipe_modeset@basic-max-pipe-crc-check:
- shard-rkl: [SKIP][223] ([i915#4070] / [i915#4816]) -> [SKIP][224] ([i915#4816])
[223]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14804/shard-rkl-1/igt@kms_multipipe_modeset@basic-max-pipe-crc-check.html
[224]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133932v1/shard-rkl-3/igt@kms_multipipe_modeset@basic-max-pipe-crc-check.html
* igt@kms_pm_dc@dc6-dpms:
- shard-rkl: [FAIL][225] ([i915#9295]) -> [SKIP][226] ([i915#3361])
[225]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14804/shard-rkl-5/igt@kms_pm_dc@dc6-dpms.html
[226]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133932v1/shard-rkl-4/igt@kms_pm_dc@dc6-dpms.html
* igt@kms_psr@fbc-psr-primary-mmap-gtt:
- shard-dg2: [SKIP][227] ([i915#1072] / [i915#9732]) -> [SKIP][228] ([i915#1072] / [i915#9673] / [i915#9732]) +13 other tests skip
[227]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14804/shard-dg2-3/igt@kms_psr@fbc-psr-primary-mmap-gtt.html
[228]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133932v1/shard-dg2-11/igt@kms_psr@fbc-psr-primary-mmap-gtt.html
* igt@kms_psr@fbc-psr2-sprite-mmap-cpu:
- shard-dg2: [SKIP][229] ([i915#1072] / [i915#9673] / [i915#9732]) -> [SKIP][230] ([i915#1072] / [i915#9732]) +9 other tests skip
[229]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14804/shard-dg2-11/igt@kms_psr@fbc-psr2-sprite-mmap-cpu.html
[230]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133932v1/shard-dg2-10/igt@kms_psr@fbc-psr2-sprite-mmap-cpu.html
* igt@prime_mmap@test_aperture_limit@test_aperture_limit-smem:
- shard-dg2: [INCOMPLETE][231] ([i915#5493]) -> [CRASH][232] ([i915#9351])
[231]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14804/shard-dg2-2/igt@prime_mmap@test_aperture_limit@test_aperture_limit-smem.html
[232]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133932v1/shard-dg2-2/igt@prime_mmap@test_aperture_limit@test_aperture_limit-smem.html
[i915#10047]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10047
[i915#10131]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10131
[i915#10166]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10166
[i915#10278]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10278
[i915#10307]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10307
[i915#10378]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10378
[i915#10433]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10433
[i915#10434]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10434
[i915#10513]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10513
[i915#10538]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10538
[i915#10656]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10656
[i915#1072]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1072
[i915#10887]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10887
[i915#1257]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1257
[i915#1769]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1769
[i915#1825]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1825
[i915#1839]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1839
[i915#1982]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1982
[i915#2122]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2122
[i915#2346]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2346
[i915#2527]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2527
[i915#2575]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2575
[i915#2587]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2587
[i915#2672]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2672
[i915#280]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/280
[i915#2842]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2842
[i915#2856]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2856
[i915#3023]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3023
[i915#3281]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3281
[i915#3282]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3282
[i915#3297]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3297
[i915#3299]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3299
[i915#3359]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3359
[i915#3361]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3361
[i915#3458]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3458
[i915#3539]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3539
[i915#3555]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3555
[i915#3591]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3591
[i915#3637]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3637
[i915#3638]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3638
[i915#3708]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3708
[i915#3742]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3742
[i915#3826]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3826
[i915#3840]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3840
[i915#4070]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4070
[i915#4077]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4077
[i915#4079]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4079
[i915#4083]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4083
[i915#4087]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4087
[i915#4270]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4270
[i915#4387]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4387
[i915#4423]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4423
[i915#4525]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4525
[i915#4538]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4538
[i915#4613]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4613
[i915#4816]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4816
[i915#4818]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4818
[i915#4852]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4852
[i915#4854]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4854
[i915#4860]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4860
[i915#4880]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4880
[i915#5176]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5176
[i915#5190]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5190
[i915#5235]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5235
[i915#5286]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5286
[i915#5289]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5289
[i915#5354]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5354
[i915#5493]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5493
[i915#6095]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6095
[i915#6227]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6227
[i915#6301]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6301
[i915#6334]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6334
[i915#6344]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6344
[i915#6944]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6944
[i915#7118]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7118
[i915#7162]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7162
[i915#7707]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7707
[i915#7711]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7711
[i915#7828]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7828
[i915#8228]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8228
[i915#8292]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8292
[i915#8399]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8399
[i915#8411]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8411
[i915#8414]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8414
[i915#8428]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8428
[i915#8555]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8555
[i915#8562]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8562
[i915#8588]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8588
[i915#8708]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8708
[i915#8709]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8709
[i915#8814]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8814
[i915#8816]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8816
[i915#9196]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9196
[i915#9295]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9295
[i915#9323]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9323
[i915#9340]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9340
[i915#9351]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9351
[i915#9364]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9364
[i915#9423]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9423
[i915#9424]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9424
[i915#9519]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9519
[i915#9561]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9561
[i915#9673]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9673
[i915#9685]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9685
[i915#9688]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9688
[i915#9697]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9697
[i915#9723]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9723
[i915#9732]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9732
[i915#9820]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9820
[i915#9846]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9846
[i915#9849]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9849
[i915#9906]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9906
[i915#9934]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9934
[i915#9979]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9979
Build changes
-------------
* Linux: CI_DRM_14804 -> Patchwork_133932v1
CI-20190529: 20190529
CI_DRM_14804: 42b9a14c5932c577019bf2f5d5ff25d208c1f921 @ git://anongit.freedesktop.org/gfx-ci/linux
IGT_7868: fb027c7a11b77ea2bc9747f5d796cb123d383a23 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
Patchwork_133932v1: 42b9a14c5932c577019bf2f5d5ff25d208c1f921 @ git://anongit.freedesktop.org/gfx-ci/linux
piglit_4509: fdc5a4ca11124ab8413c7988896eec4c97336694 @ git://anongit.freedesktop.org/piglit
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133932v1/index.html
[-- Attachment #2: Type: text/html, Size: 80661 bytes --]
^ permalink raw reply [flat|nested] 34+ messages in thread
* Re: [PATCH 06/10] drm/i915: add LNL PCI IDs
2024-05-22 17:33 ` [PATCH 06/10] drm/i915: add LNL PCI IDs Jani Nikula
@ 2024-05-23 18:31 ` Rodrigo Vivi
0 siblings, 0 replies; 34+ messages in thread
From: Rodrigo Vivi @ 2024-05-23 18:31 UTC (permalink / raw)
To: Jani Nikula; +Cc: intel-gfx, intel-xe, lucas.demarchi
On Wed, May 22, 2024 at 08:33:43PM +0300, Jani Nikula wrote:
> Although not supported by i915 core, the display code needs to know the
> LNL PCI IDs.
perhaps we should add a comment in the header near the IDs?
>
> Long term, xe and i915 should probably share the file defining PCI IDs.
although it might get harder to distinguish the intersection, this
might be a good idea indeed.
Reviewed-by: Rodrigo Vivi <rodrigo.vivi@intel.com>
>
> Signed-off-by: Jani Nikula <jani.nikula@intel.com>
> ---
> include/drm/i915_pciids.h | 6 ++++++
> 1 file changed, 6 insertions(+)
>
> diff --git a/include/drm/i915_pciids.h b/include/drm/i915_pciids.h
> index 3e39d644ebaa..7ae7ee11ef38 100644
> --- a/include/drm/i915_pciids.h
> +++ b/include/drm/i915_pciids.h
> @@ -783,4 +783,10 @@
> MACRO__(0x7DD1, ## __VA_ARGS__), \
> MACRO__(0x7DD5, ## __VA_ARGS__)
>
> +/* LNL */
> +#define INTEL_LNL_IDS(MACRO__, ...) \
> + MACRO__(0x6420, ## __VA_ARGS__), \
> + MACRO__(0x64A0, ## __VA_ARGS__), \
> + MACRO__(0x64B0, ## __VA_ARGS__)
> +
> #endif /* _I915_PCIIDS_H */
> --
> 2.39.2
>
^ permalink raw reply [flat|nested] 34+ messages in thread
* Re: [PATCH 10/10] drm/i915/display: add probe message
2024-05-22 17:33 ` [PATCH 10/10] drm/i915/display: add probe message Jani Nikula
@ 2024-05-23 18:33 ` Rodrigo Vivi
0 siblings, 0 replies; 34+ messages in thread
From: Rodrigo Vivi @ 2024-05-23 18:33 UTC (permalink / raw)
To: Jani Nikula; +Cc: intel-gfx, intel-xe, lucas.demarchi
On Wed, May 22, 2024 at 08:33:47PM +0300, Jani Nikula wrote:
> Add an info message about which display device was probed.
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 | 5 +++++
> 1 file changed, 5 insertions(+)
>
> diff --git a/drivers/gpu/drm/i915/display/intel_display_device.c b/drivers/gpu/drm/i915/display/intel_display_device.c
> index 59b8ca174ef8..5b6dfb5032e7 100644
> --- a/drivers/gpu/drm/i915/display/intel_display_device.c
> +++ b/drivers/gpu/drm/i915/display/intel_display_device.c
> @@ -1305,6 +1305,11 @@ void intel_display_device_probe(struct drm_i915_private *i915)
> if (ip_ver.ver || ip_ver.rel || ip_ver.step)
> DISPLAY_RUNTIME_INFO(i915)->ip = ip_ver;
>
> + drm_info(&i915->drm, "Found %s%s%s (device ID %04x) display version %u.%02u\n",
> + desc->name, subdesc ? "/" : "", subdesc ? subdesc->name : "",
> + pdev->device, DISPLAY_RUNTIME_INFO(i915)->ip.ver,
> + DISPLAY_RUNTIME_INFO(i915)->ip.rel);
> +
> return;
>
> no_display:
> --
> 2.39.2
>
^ permalink raw reply [flat|nested] 34+ messages in thread
* Re: [PATCH 09/10] drm/i915/display: add support for subplatforms
2024-05-22 17:33 ` [PATCH 09/10] drm/i915/display: add support for subplatforms Jani Nikula
@ 2024-05-23 18:37 ` Rodrigo Vivi
0 siblings, 0 replies; 34+ messages in thread
From: Rodrigo Vivi @ 2024-05-23 18:37 UTC (permalink / raw)
To: Jani Nikula; +Cc: intel-gfx, intel-xe, lucas.demarchi
On Wed, May 22, 2024 at 08:33:46PM +0300, Jani Nikula wrote:
> Add support for subplatforms. This is similar to what the xe driver is
> doing. The subplatform is an enum and it's exclusive, i.e. only one
> subplatform can match, and it completely identifies the platform and
> subplatform. This is different from i915 core, and is notable in the
> handling of ULT/ULX and RPL/RPL-U.
Only used to print information in the next patch?
But I guess other future use in mind as well?
anyway it is a good organization by itself.
Reviewed-by: Rodrigo Vivi <rodrigo.vivi@intel.com>
>
> Signed-off-by: Jani Nikula <jani.nikula@intel.com>
> ---
> .../drm/i915/display/intel_display_device.c | 204 ++++++++++++++++++
> .../drm/i915/display/intel_display_device.h | 26 +++
> 2 files changed, 230 insertions(+)
>
> diff --git a/drivers/gpu/drm/i915/display/intel_display_device.c b/drivers/gpu/drm/i915/display/intel_display_device.c
> index 7c5cead1fe15..59b8ca174ef8 100644
> --- a/drivers/gpu/drm/i915/display/intel_display_device.c
> +++ b/drivers/gpu/drm/i915/display/intel_display_device.c
> @@ -20,9 +20,16 @@
> __diag_push();
> __diag_ignore_all("-Woverride-init", "Allow field initialization overrides for display info");
>
> +struct subplatform_desc {
> + enum intel_display_subplatform subplatform;
> + const char *name;
> + const u16 *pciidlist;
> +};
> +
> struct platform_desc {
> enum intel_display_platform platform;
> const char *name;
> + const struct subplatform_desc *subplatforms;
> const struct intel_display_device_info *info; /* NULL for GMD ID */
> };
>
> @@ -30,6 +37,8 @@ struct platform_desc {
> .platform = (INTEL_DISPLAY_##_platform), \
> .name = #_platform
>
> +#define ID(id) (id)
> +
> static const struct intel_display_device_info no_display = {};
>
> #define PIPE_A_OFFSET 0x70000
> @@ -460,8 +469,26 @@ static const struct platform_desc vlv_desc = {
> },
> };
>
> +static const u16 hsw_ult_ids[] = {
> + INTEL_HSW_ULT_GT1_IDS(ID),
> + INTEL_HSW_ULT_GT2_IDS(ID),
> + INTEL_HSW_ULT_GT3_IDS(ID),
> + 0
> +};
> +
> +static const u16 hsw_ulx_ids[] = {
> + INTEL_HSW_ULX_GT1_IDS(ID),
> + INTEL_HSW_ULX_GT2_IDS(ID),
> + 0
> +};
> +
> 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 },
> + {},
> + },
> .info = &(const struct intel_display_device_info) {
> .has_ddi = 1,
> .has_dp_mst = 1,
> @@ -483,8 +510,29 @@ static const struct platform_desc hsw_desc = {
> },
> };
>
> +static const u16 bdw_ult_ids[] = {
> + INTEL_BDW_ULT_GT1_IDS(ID),
> + INTEL_BDW_ULT_GT2_IDS(ID),
> + INTEL_BDW_ULT_GT3_IDS(ID),
> + INTEL_BDW_ULT_RSVD_IDS(ID),
> + 0
> +};
> +
> +static const u16 bdw_ulx_ids[] = {
> + INTEL_BDW_ULX_GT1_IDS(ID),
> + INTEL_BDW_ULX_GT2_IDS(ID),
> + INTEL_BDW_ULX_GT3_IDS(ID),
> + INTEL_BDW_ULX_RSVD_IDS(ID),
> + 0
> +};
> +
> 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 },
> + {},
> + },
> .info = &(const struct intel_display_device_info) {
> .has_ddi = 1,
> .has_dp_mst = 1,
> @@ -549,23 +597,89 @@ static const struct intel_display_device_info skl_display = {
> .__runtime_defaults.fbc_mask = BIT(INTEL_FBC_A),
> };
>
> +static const u16 skl_ult_ids[] = {
> + INTEL_SKL_ULT_GT1_IDS(ID),
> + INTEL_SKL_ULT_GT2_IDS(ID),
> + INTEL_SKL_ULT_GT3_IDS(ID),
> + 0
> +};
> +
> +static const u16 skl_ulx_ids[] = {
> + INTEL_SKL_ULX_GT1_IDS(ID),
> + INTEL_SKL_ULX_GT2_IDS(ID),
> + 0
> +};
> +
> 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 },
> + {},
> + },
> .info = &skl_display,
> };
>
> +static const u16 kbl_ult_ids[] = {
> + INTEL_KBL_ULT_GT1_IDS(ID),
> + INTEL_KBL_ULT_GT2_IDS(ID),
> + INTEL_KBL_ULT_GT3_IDS(ID),
> + 0
> +};
> +
> +static const u16 kbl_ulx_ids[] = {
> + INTEL_KBL_ULX_GT1_IDS(ID),
> + INTEL_KBL_ULX_GT2_IDS(ID),
> + INTEL_AML_KBL_GT2_IDS(ID),
> + 0
> +};
> +
> 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 },
> + {},
> + },
> .info = &skl_display,
> };
>
> +static const u16 cfl_ult_ids[] = {
> + INTEL_CFL_U_GT2_IDS(ID),
> + INTEL_CFL_U_GT3_IDS(ID),
> + INTEL_WHL_U_GT1_IDS(ID),
> + INTEL_WHL_U_GT2_IDS(ID),
> + INTEL_WHL_U_GT3_IDS(ID),
> + 0
> +};
> +
> +static const u16 cfl_ulx_ids[] = {
> + INTEL_AML_CFL_GT2_IDS(ID),
> + 0
> +};
> +
> 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 },
> + {},
> + },
> .info = &skl_display,
> };
>
> +static const u16 cml_ult_ids[] = {
> + INTEL_CML_U_GT1_IDS(ID),
> + INTEL_CML_U_GT2_IDS(ID),
> + 0
> +};
> +
> static const struct platform_desc cml_desc = {
> PLATFORM(COMETLAKE),
> + .subplatforms = (const struct subplatform_desc[]) {
> + { INTEL_DISPLAY_COMETLAKE_ULT, "ULT", cml_ult_ids },
> + {},
> + },
> .info = &skl_display,
> };
>
> @@ -654,8 +768,17 @@ static const struct platform_desc glk_desc = {
> BIT(TRANSCODER_DSI_0) | BIT(TRANSCODER_DSI_1), \
> .__runtime_defaults.fbc_mask = BIT(INTEL_FBC_A)
>
> +static const u16 icl_port_f_ids[] = {
> + INTEL_ICL_PORT_F_IDS(ID),
> + 0
> +};
> +
> 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 },
> + {},
> + },
> .info = &(const struct intel_display_device_info) {
> ICL_DISPLAY,
>
> @@ -722,8 +845,17 @@ static const struct platform_desc ehl_desc = {
> BIT(TRANSCODER_DSI_0) | BIT(TRANSCODER_DSI_1), \
> .__runtime_defaults.fbc_mask = BIT(INTEL_FBC_A)
>
> +static const u16 tgl_uy_ids[] = {
> + INTEL_TGL_GT2_IDS(ID),
> + 0
> +};
> +
> static const struct platform_desc tgl_desc = {
> PLATFORM(TIGERLAKE),
> + .subplatforms = (const struct subplatform_desc[]) {
> + { INTEL_DISPLAY_TIGERLAKE_UY, "UY", tgl_uy_ids },
> + {},
> + },
> .info = &(const struct intel_display_device_info) {
> XE_D_DISPLAY,
>
> @@ -762,8 +894,17 @@ static const struct platform_desc rkl_desc = {
> },
> };
>
> +static const u16 adls_rpls_ids[] = {
> + INTEL_RPLS_IDS(ID),
> + 0
> +};
> +
> 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 },
> + {},
> + },
> .info = &(const struct intel_display_device_info) {
> XE_D_DISPLAY,
> .has_hti = 1,
> @@ -830,8 +971,29 @@ static const struct intel_display_device_info xe_lpd_display = {
> BIT(PORT_TC1) | BIT(PORT_TC2) | BIT(PORT_TC3) | BIT(PORT_TC4),
> };
>
> +static const u16 adlp_adln_ids[] = {
> + INTEL_ADLN_IDS(ID),
> + 0
> +};
> +
> +static const u16 adlp_rplu_ids[] = {
> + INTEL_RPLU_IDS(ID),
> + 0
> +};
> +
> +static const u16 adlp_rplp_ids[] = {
> + INTEL_RPLP_IDS(ID),
> + 0
> +};
> +
> 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 },
> + { INTEL_DISPLAY_ALDERLAKE_P_RAPTORLAKE_U, "RPL-U", adlp_rplu_ids },
> + { INTEL_DISPLAY_ALDERLAKE_P_RAPTORLAKE_P, "RPL-P", adlp_rplp_ids },
> + {},
> + },
> .info = &xe_lpd_display,
> };
>
> @@ -846,8 +1008,29 @@ static const struct intel_display_device_info xe_hpd_display = {
> BIT(PORT_TC1),
> };
>
> +static const u16 dg2_g10_ids[] = {
> + INTEL_DG2_G10_IDS(ID),
> + 0
> +};
> +
> +static const u16 dg2_g11_ids[] = {
> + INTEL_DG2_G11_IDS(ID),
> + 0
> +};
> +
> +static const u16 dg2_g12_ids[] = {
> + INTEL_DG2_G12_IDS(ID),
> + 0
> +};
> +
> static const struct platform_desc dg2_desc = {
> PLATFORM(DG2),
> + .subplatforms = (const struct subplatform_desc[]) {
> + { INTEL_DISPLAY_DG2_G10, "G10", dg2_g10_ids },
> + { INTEL_DISPLAY_DG2_G11, "G11", dg2_g11_ids },
> + { INTEL_DISPLAY_DG2_G12, "G12", dg2_g12_ids },
> + {},
> + },
> .info = &xe_hpd_display,
> };
>
> @@ -1059,12 +1242,27 @@ static const struct platform_desc *find_platform_desc(struct pci_dev *pdev)
> return NULL;
> }
>
> +static const struct subplatform_desc *
> +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 (id = sp->pciidlist; *id; id++)
> + if (*id == pdev->device)
> + return sp;
> +
> + return NULL;
> +}
> +
> void intel_display_device_probe(struct drm_i915_private *i915)
> {
> struct pci_dev *pdev = to_pci_dev(i915->drm.dev);
> const struct intel_display_device_info *info;
> struct intel_display_ip_ver ip_ver = {};
> const struct platform_desc *desc;
> + const struct subplatform_desc *subdesc;
>
> /* Add drm device backpointer as early as possible. */
> i915->display.drm = &i915->drm;
> @@ -1098,6 +1296,12 @@ void intel_display_device_probe(struct drm_i915_private *i915)
> drm_WARN_ON(&i915->drm, !desc->platform || !desc->name);
> DISPLAY_RUNTIME_INFO(i915)->platform = desc->platform;
>
> + subdesc = find_subplatform_desc(pdev, desc);
> + if (subdesc) {
> + drm_WARN_ON(&i915->drm, !subdesc->subplatform || !subdesc->name);
> + DISPLAY_RUNTIME_INFO(i915)->subplatform = subdesc->subplatform;
> + }
> +
> if (ip_ver.ver || ip_ver.rel || ip_ver.step)
> DISPLAY_RUNTIME_INFO(i915)->ip = ip_ver;
>
> diff --git a/drivers/gpu/drm/i915/display/intel_display_device.h b/drivers/gpu/drm/i915/display/intel_display_device.h
> index 8accd680a61e..e1d9947394dc 100644
> --- a/drivers/gpu/drm/i915/display/intel_display_device.h
> +++ b/drivers/gpu/drm/i915/display/intel_display_device.h
> @@ -70,6 +70,31 @@ enum intel_display_platform {
> INTEL_DISPLAY_LUNARLAKE,
> };
>
> +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); \
> @@ -168,6 +193,7 @@ enum intel_display_platform {
>
> struct intel_display_runtime_info {
> enum intel_display_platform platform;
> + enum intel_display_subplatform subplatform;
>
> struct intel_display_ip_ver {
> u16 ver;
> --
> 2.39.2
>
^ permalink raw reply [flat|nested] 34+ messages in thread
* Re: [PATCH 08/10] drm/i915/display: identify platforms with enum and name
2024-05-22 17:33 ` [PATCH 08/10] drm/i915/display: identify platforms with enum and name Jani Nikula
@ 2024-05-23 18:38 ` Rodrigo Vivi
0 siblings, 0 replies; 34+ messages in thread
From: Rodrigo Vivi @ 2024-05-23 18:38 UTC (permalink / raw)
To: Jani Nikula; +Cc: intel-gfx, intel-xe, lucas.demarchi
On Wed, May 22, 2024 at 08:33:45PM +0300, Jani Nikula wrote:
> Add enum intel_display_platform and add that and name to all platform
> descriptors.
Reviewed-by: Rodrigo Vivi <rodrigo.vivi@intel.com>
>
> Signed-off-by: Jani Nikula <jani.nikula@intel.com>
> ---
> .../drm/i915/display/intel_display_device.c | 48 +++++++++++++++
> .../drm/i915/display/intel_display_device.h | 58 +++++++++++++++++++
> 2 files changed, 106 insertions(+)
>
> diff --git a/drivers/gpu/drm/i915/display/intel_display_device.c b/drivers/gpu/drm/i915/display/intel_display_device.c
> index 416853ed50df..7c5cead1fe15 100644
> --- a/drivers/gpu/drm/i915/display/intel_display_device.c
> +++ b/drivers/gpu/drm/i915/display/intel_display_device.c
> @@ -21,9 +21,15 @@ __diag_push();
> __diag_ignore_all("-Woverride-init", "Allow field initialization overrides for display info");
>
> struct platform_desc {
> + enum intel_display_platform platform;
> + const char *name;
> const struct intel_display_device_info *info; /* NULL for GMD ID */
> };
>
> +#define PLATFORM(_platform) \
> + .platform = (INTEL_DISPLAY_##_platform), \
> + .name = #_platform
> +
> static const struct intel_display_device_info no_display = {};
>
> #define PIPE_A_OFFSET 0x70000
> @@ -205,6 +211,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),
> .info = &(const struct intel_display_device_info) {
> I830_DISPLAY,
>
> @@ -213,6 +220,7 @@ static const struct platform_desc i830_desc = {
> };
>
> static const struct platform_desc i845_desc = {
> + PLATFORM(I845G),
> .info = &(const struct intel_display_device_info) {
> I845_DISPLAY,
>
> @@ -221,6 +229,7 @@ static const struct platform_desc i845_desc = {
> };
>
> static const struct platform_desc i85x_desc = {
> + PLATFORM(I85X),
> .info = &(const struct intel_display_device_info) {
> I830_DISPLAY,
>
> @@ -230,6 +239,7 @@ static const struct platform_desc i85x_desc = {
> };
>
> static const struct platform_desc i865g_desc = {
> + PLATFORM(I865G),
> .info = &(const struct intel_display_device_info) {
> I845_DISPLAY,
>
> @@ -251,6 +261,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),
> .info = &(const struct intel_display_device_info) {
> GEN3_DISPLAY,
> I845_COLORS,
> @@ -260,6 +271,7 @@ static const struct platform_desc i915g_desc = {
> };
>
> static const struct platform_desc i915gm_desc = {
> + PLATFORM(I915GM),
> .info = &(const struct intel_display_device_info) {
> GEN3_DISPLAY,
> I9XX_COLORS,
> @@ -272,6 +284,7 @@ static const struct platform_desc i915gm_desc = {
> };
>
> static const struct platform_desc i945g_desc = {
> + PLATFORM(I945G),
> .info = &(const struct intel_display_device_info) {
> GEN3_DISPLAY,
> I845_COLORS,
> @@ -282,6 +295,7 @@ static const struct platform_desc i945g_desc = {
> };
>
> static const struct platform_desc i945gm_desc = {
> + PLATFORM(I915GM),
> .info = &(const struct intel_display_device_info) {
> GEN3_DISPLAY,
> I9XX_COLORS,
> @@ -295,6 +309,7 @@ static const struct platform_desc i945gm_desc = {
> };
>
> static const struct platform_desc g33_desc = {
> + PLATFORM(G33),
> .info = &(const struct intel_display_device_info) {
> GEN3_DISPLAY,
> I845_COLORS,
> @@ -303,6 +318,7 @@ static const struct platform_desc g33_desc = {
> };
>
> static const struct platform_desc pnv_desc = {
> + PLATFORM(PINEVIEW),
> .info = &(const struct intel_display_device_info) {
> GEN3_DISPLAY,
> I9XX_COLORS,
> @@ -323,6 +339,7 @@ static const struct platform_desc pnv_desc = {
> BIT(TRANSCODER_A) | BIT(TRANSCODER_B)
>
> static const struct platform_desc i965g_desc = {
> + PLATFORM(I965G),
> .info = &(const struct intel_display_device_info) {
> GEN4_DISPLAY,
> .has_overlay = 1,
> @@ -332,6 +349,7 @@ static const struct platform_desc i965g_desc = {
> };
>
> static const struct platform_desc i965gm_desc = {
> + PLATFORM(I965GM),
> .info = &(const struct intel_display_device_info) {
> GEN4_DISPLAY,
> .has_overlay = 1,
> @@ -343,6 +361,7 @@ static const struct platform_desc i965gm_desc = {
> };
>
> static const struct platform_desc g45_desc = {
> + PLATFORM(G45),
> .info = &(const struct intel_display_device_info) {
> GEN4_DISPLAY,
>
> @@ -351,6 +370,7 @@ static const struct platform_desc g45_desc = {
> };
>
> static const struct platform_desc gm45_desc = {
> + PLATFORM(GM45),
> .info = &(const struct intel_display_device_info) {
> GEN4_DISPLAY,
> .supports_tv = 1,
> @@ -373,12 +393,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),
> .info = &(const struct intel_display_device_info) {
> ILK_DISPLAY,
> },
> };
>
> static const struct platform_desc ilk_m_desc = {
> + PLATFORM(IRONLAKE),
> .info = &(const struct intel_display_device_info) {
> ILK_DISPLAY,
>
> @@ -387,6 +409,7 @@ static const struct platform_desc ilk_m_desc = {
> };
>
> static const struct platform_desc snb_desc = {
> + PLATFORM(SANDYBRIDGE),
> .info = &(const struct intel_display_device_info) {
> .has_hotplug = 1,
> I9XX_PIPE_OFFSETS,
> @@ -403,6 +426,7 @@ static const struct platform_desc snb_desc = {
> };
>
> static const struct platform_desc ivb_desc = {
> + PLATFORM(IVYBRIDGE),
> .info = &(const struct intel_display_device_info) {
> .has_hotplug = 1,
> IVB_PIPE_OFFSETS,
> @@ -419,6 +443,7 @@ static const struct platform_desc ivb_desc = {
> };
>
> static const struct platform_desc vlv_desc = {
> + PLATFORM(VALLEYVIEW),
> .info = &(const struct intel_display_device_info) {
> .has_gmch = 1,
> .has_hotplug = 1,
> @@ -436,6 +461,7 @@ static const struct platform_desc vlv_desc = {
> };
>
> static const struct platform_desc hsw_desc = {
> + PLATFORM(HASWELL),
> .info = &(const struct intel_display_device_info) {
> .has_ddi = 1,
> .has_dp_mst = 1,
> @@ -458,6 +484,7 @@ static const struct platform_desc hsw_desc = {
> };
>
> static const struct platform_desc bdw_desc = {
> + PLATFORM(BROADWELL),
> .info = &(const struct intel_display_device_info) {
> .has_ddi = 1,
> .has_dp_mst = 1,
> @@ -480,6 +507,7 @@ static const struct platform_desc bdw_desc = {
> };
>
> static const struct platform_desc chv_desc = {
> + PLATFORM(CHERRYVIEW),
> .info = &(const struct intel_display_device_info) {
> .has_hotplug = 1,
> .has_gmch = 1,
> @@ -522,18 +550,22 @@ static const struct intel_display_device_info skl_display = {
> };
>
> static const struct platform_desc skl_desc = {
> + PLATFORM(SKYLAKE),
> .info = &skl_display,
> };
>
> static const struct platform_desc kbl_desc = {
> + PLATFORM(KABYLAKE),
> .info = &skl_display,
> };
>
> static const struct platform_desc cfl_desc = {
> + PLATFORM(COFFEELAKE),
> .info = &skl_display,
> };
>
> static const struct platform_desc cml_desc = {
> + PLATFORM(COMETLAKE),
> .info = &skl_display,
> };
>
> @@ -561,6 +593,7 @@ static const struct platform_desc cml_desc = {
> .__runtime_defaults.port_mask = BIT(PORT_A) | BIT(PORT_B) | BIT(PORT_C)
>
> static const struct platform_desc bxt_desc = {
> + PLATFORM(BROXTON),
> .info = &(const struct intel_display_device_info) {
> GEN9_LP_DISPLAY,
> .dbuf.size = 512 - 4, /* 4 blocks for bypass path allocation */
> @@ -570,6 +603,7 @@ static const struct platform_desc bxt_desc = {
> };
>
> static const struct platform_desc glk_desc = {
> + PLATFORM(GEMINILAKE),
> .info = &(const struct intel_display_device_info) {
> GEN9_LP_DISPLAY,
> .dbuf.size = 1024 - 4, /* 4 blocks for bypass path allocation */
> @@ -621,6 +655,7 @@ static const struct platform_desc glk_desc = {
> .__runtime_defaults.fbc_mask = BIT(INTEL_FBC_A)
>
> static const struct platform_desc icl_desc = {
> + PLATFORM(ICELAKE),
> .info = &(const struct intel_display_device_info) {
> ICL_DISPLAY,
>
> @@ -635,10 +670,12 @@ static const struct intel_display_device_info jsl_ehl_display = {
> };
>
> static const struct platform_desc jsl_desc = {
> + PLATFORM(JASPERLAKE),
> .info = &jsl_ehl_display,
> };
>
> static const struct platform_desc ehl_desc = {
> + PLATFORM(ELKHARTLAKE),
> .info = &jsl_ehl_display,
> };
>
> @@ -686,6 +723,7 @@ static const struct platform_desc ehl_desc = {
> .__runtime_defaults.fbc_mask = BIT(INTEL_FBC_A)
>
> static const struct platform_desc tgl_desc = {
> + PLATFORM(TIGERLAKE),
> .info = &(const struct intel_display_device_info) {
> XE_D_DISPLAY,
>
> @@ -699,6 +737,7 @@ static const struct platform_desc tgl_desc = {
> };
>
> static const struct platform_desc dg1_desc = {
> + PLATFORM(DG1),
> .info = &(const struct intel_display_device_info) {
> XE_D_DISPLAY,
>
> @@ -708,6 +747,7 @@ static const struct platform_desc dg1_desc = {
> };
>
> static const struct platform_desc rkl_desc = {
> + PLATFORM(ROCKETLAKE),
> .info = &(const struct intel_display_device_info) {
> XE_D_DISPLAY,
> .abox_mask = BIT(0),
> @@ -723,6 +763,7 @@ static const struct platform_desc rkl_desc = {
> };
>
> static const struct platform_desc adl_s_desc = {
> + PLATFORM(ALDERLAKE_S),
> .info = &(const struct intel_display_device_info) {
> XE_D_DISPLAY,
> .has_hti = 1,
> @@ -790,6 +831,7 @@ static const struct intel_display_device_info xe_lpd_display = {
> };
>
> static const struct platform_desc adl_p_desc = {
> + PLATFORM(ALDERLAKE_P),
> .info = &xe_lpd_display,
> };
>
> @@ -805,6 +847,7 @@ static const struct intel_display_device_info xe_hpd_display = {
> };
>
> static const struct platform_desc dg2_desc = {
> + PLATFORM(DG2),
> .info = &xe_hpd_display,
> };
>
> @@ -877,9 +920,11 @@ static const struct intel_display_device_info xe2_hpd_display = {
> * reported by the hardware.
> */
> static const struct platform_desc mtl_desc = {
> + PLATFORM(METEORLAKE),
> };
>
> static const struct platform_desc lnl_desc = {
> + PLATFORM(LUNARLAKE),
> };
>
> __diag_pop();
> @@ -1050,6 +1095,9 @@ 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);
> + DISPLAY_RUNTIME_INFO(i915)->platform = desc->platform;
> +
> if (ip_ver.ver || ip_ver.rel || ip_ver.step)
> DISPLAY_RUNTIME_INFO(i915)->ip = ip_ver;
>
> diff --git a/drivers/gpu/drm/i915/display/intel_display_device.h b/drivers/gpu/drm/i915/display/intel_display_device.h
> index fd2d03bfe8a6..8accd680a61e 100644
> --- a/drivers/gpu/drm/i915/display/intel_display_device.h
> +++ b/drivers/gpu/drm/i915/display/intel_display_device.h
> @@ -14,6 +14,62 @@
> struct drm_i915_private;
> struct drm_printer;
>
> +/* Keep in gen based order, and chronological order within a gen */
> +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,
> +};
> +
> #define DEV_INFO_DISPLAY_FOR_EACH_FLAG(func) \
> /* Keep in alphabetical order */ \
> func(cursor_needs_physical); \
> @@ -111,6 +167,8 @@ struct drm_printer;
> (DISPLAY_VER(i915) >= (from) && DISPLAY_VER(i915) <= (until))
>
> struct intel_display_runtime_info {
> + enum intel_display_platform platform;
> +
> struct intel_display_ip_ver {
> u16 ver;
> u16 rel;
> --
> 2.39.2
>
^ permalink raw reply [flat|nested] 34+ messages in thread
* Re: [PATCH 07/10] drm/i915/display: change display probe to identify GMD ID based platforms
2024-05-22 17:33 ` [PATCH 07/10] drm/i915/display: change display probe to identify GMD ID based platforms Jani Nikula
@ 2024-05-23 18:39 ` Rodrigo Vivi
0 siblings, 0 replies; 34+ messages in thread
From: Rodrigo Vivi @ 2024-05-23 18:39 UTC (permalink / raw)
To: Jani Nikula; +Cc: intel-gfx, intel-xe, lucas.demarchi
On Wed, May 22, 2024 at 08:33:44PM +0300, Jani Nikula wrote:
> We'll need to identify all platforms, including the ones that have
> display defined by GMD ID. Add MTL and LNL. Their display info will
> still be probed via GMD ID.
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, 26 insertions(+), 18 deletions(-)
>
> diff --git a/drivers/gpu/drm/i915/display/intel_display_device.c b/drivers/gpu/drm/i915/display/intel_display_device.c
> index d1e03437abb3..416853ed50df 100644
> --- a/drivers/gpu/drm/i915/display/intel_display_device.c
> +++ b/drivers/gpu/drm/i915/display/intel_display_device.c
> @@ -21,7 +21,7 @@ __diag_push();
> __diag_ignore_all("-Woverride-init", "Allow field initialization overrides for display info");
>
> struct platform_desc {
> - const struct intel_display_device_info *info;
> + const struct intel_display_device_info *info; /* NULL for GMD ID */
> };
>
> static const struct intel_display_device_info no_display = {};
> @@ -871,6 +871,17 @@ static const struct intel_display_device_info xe2_hpd_display = {
> BIT(PORT_TC1) | BIT(PORT_TC2) | BIT(PORT_TC3) | BIT(PORT_TC4),
> };
>
> +/*
> + * Do not initialize the .info member of the platform desc for GMD ID based
> + * platforms. Their display will be probed automatically based on the IP version
> + * reported by the hardware.
> + */
> +static const struct platform_desc mtl_desc = {
> +};
> +
> +static const struct platform_desc lnl_desc = {
> +};
> +
> __diag_pop();
>
> /*
> @@ -937,12 +948,8 @@ static const struct {
> INTEL_RPLU_IDS(INTEL_DISPLAY_DEVICE, &adl_p_desc),
> INTEL_RPLP_IDS(INTEL_DISPLAY_DEVICE, &adl_p_desc),
> INTEL_DG2_IDS(INTEL_DISPLAY_DEVICE, &dg2_desc),
> -
> - /*
> - * Do not add any GMD_ID-based platforms to this list. They will
> - * be probed automatically based on the IP version reported by
> - * the hardware.
> - */
> + INTEL_MTL_IDS(INTEL_DISPLAY_DEVICE, &mtl_desc),
> + INTEL_LNL_IDS(INTEL_DISPLAY_DEVICE, &lnl_desc),
> };
>
> static const struct {
> @@ -995,20 +1002,15 @@ probe_gmdid_display(struct drm_i915_private *i915, struct intel_display_ip_ver *
> return NULL;
> }
>
> -static const struct intel_display_device_info *
> -probe_display(struct drm_i915_private *i915)
> +static const struct platform_desc *find_platform_desc(struct pci_dev *pdev)
> {
> - struct pci_dev *pdev = to_pci_dev(i915->drm.dev);
> int i;
>
> for (i = 0; i < ARRAY_SIZE(intel_display_ids); i++) {
> if (intel_display_ids[i].devid == pdev->device)
> - return intel_display_ids[i].desc->info;
> + return intel_display_ids[i].desc;
> }
>
> - drm_dbg(&i915->drm, "No display ID found for device ID %04x; disabling display.\n",
> - pdev->device);
> -
> return NULL;
> }
>
> @@ -1017,6 +1019,7 @@ void intel_display_device_probe(struct drm_i915_private *i915)
> struct pci_dev *pdev = to_pci_dev(i915->drm.dev);
> const struct intel_display_device_info *info;
> struct intel_display_ip_ver ip_ver = {};
> + const struct platform_desc *desc;
>
> /* Add drm device backpointer as early as possible. */
> i915->display.drm = &i915->drm;
> @@ -1028,12 +1031,17 @@ void intel_display_device_probe(struct drm_i915_private *i915)
> goto no_display;
> }
>
> - if (HAS_GMD_ID(i915))
> - info = probe_gmdid_display(i915, &ip_ver);
> - else
> - info = probe_display(i915);
> + desc = find_platform_desc(pdev);
> + if (!desc) {
> + drm_dbg_kms(&i915->drm, "Unknown device ID %04x; disabling display.\n",
> + pdev->device);
> + goto no_display;
> + }
>
> + info = desc->info;
> if (!info)
> + info = probe_gmdid_display(i915, &ip_ver);
> + if (!info)
> goto no_display;
>
> DISPLAY_INFO(i915) = info;
> --
> 2.39.2
>
^ permalink raw reply [flat|nested] 34+ messages in thread
* Re: [PATCH 05/10] drm/i915/display: add platform descriptors
2024-05-22 17:33 ` [PATCH 05/10] drm/i915/display: add platform descriptors Jani Nikula
@ 2024-05-23 18:47 ` Rodrigo Vivi
2024-05-24 8:17 ` Jani Nikula
0 siblings, 1 reply; 34+ messages in thread
From: Rodrigo Vivi @ 2024-05-23 18:47 UTC (permalink / raw)
To: Jani Nikula; +Cc: intel-gfx, intel-xe, lucas.demarchi
On Wed, May 22, 2024 at 08:33:42PM +0300, Jani Nikula wrote:
> We'll need to start identifying the platforms independently in display
> code in order to break free from the i915 and xe IS_<PLATFORM>()
> macros. This is fairly straightforward, as we already identify most
> platforms by PCI ID in display probe anyway.
>
> As the first step, add platform descriptors with pointers to display
> info. We'll have more platforms than display info, so minimize
> duplication:
>
> - Add separate skl/kbl/cfl/cml descriptors while they share the display
> info.
>
> - Add separate jsl/ehl descriptors while they share the display info.
>
> Identify ADL-P (and derivatives) and DG2 descriptors by their names even
> though their display info is Xe LPD or HPD.
>
> Signed-off-by: Jani Nikula <jani.nikula@intel.com>
> ---
> .../drm/i915/display/intel_display_device.c | 558 ++++++++++--------
> 1 file changed, 326 insertions(+), 232 deletions(-)
>
> diff --git a/drivers/gpu/drm/i915/display/intel_display_device.c b/drivers/gpu/drm/i915/display/intel_display_device.c
> index 56b27546d1b3..d1e03437abb3 100644
> --- a/drivers/gpu/drm/i915/display/intel_display_device.c
> +++ b/drivers/gpu/drm/i915/display/intel_display_device.c
> @@ -20,6 +20,10 @@
> __diag_push();
> __diag_ignore_all("-Woverride-init", "Allow field initialization overrides for display info");
>
> +struct platform_desc {
> + const struct intel_display_device_info *info;
> +};
I had to jump to the latest patch to understand why this single item
in a new struct... later it makes sense...
> +
> static const struct intel_display_device_info no_display = {};
>
> #define PIPE_A_OFFSET 0x70000
> @@ -200,33 +204,41 @@ static const struct intel_display_device_info no_display = {};
> .__runtime_defaults.pipe_mask = BIT(PIPE_A), \
> .__runtime_defaults.cpu_transcoder_mask = BIT(TRANSCODER_A)
>
> -static const struct intel_display_device_info i830_display = {
> - I830_DISPLAY,
> +static const struct platform_desc i830_desc = {
> + .info = &(const struct intel_display_device_info) {
> + I830_DISPLAY,
>
> - .__runtime_defaults.port_mask = BIT(PORT_A) | BIT(PORT_B) | BIT(PORT_C), /* DVO A/B/C */
> + .__runtime_defaults.port_mask = BIT(PORT_A) | BIT(PORT_B) | BIT(PORT_C), /* DVO A/B/C */
> + },
> };
>
> -static const struct intel_display_device_info i845_display = {
> - I845_DISPLAY,
> +static const struct platform_desc i845_desc = {
> + .info = &(const struct intel_display_device_info) {
> + I845_DISPLAY,
>
> - .__runtime_defaults.port_mask = BIT(PORT_B) | BIT(PORT_C), /* DVO B/C */
> + .__runtime_defaults.port_mask = BIT(PORT_B) | BIT(PORT_C), /* DVO B/C */
> + },
> };
>
> -static const struct intel_display_device_info i85x_display = {
> - I830_DISPLAY,
> +static const struct platform_desc i85x_desc = {
> + .info = &(const struct intel_display_device_info) {
> + I830_DISPLAY,
>
> - .__runtime_defaults.port_mask = BIT(PORT_B) | BIT(PORT_C), /* DVO B/C */
> - .__runtime_defaults.fbc_mask = BIT(INTEL_FBC_A),
> + .__runtime_defaults.port_mask = BIT(PORT_B) | BIT(PORT_C), /* DVO B/C */
> + .__runtime_defaults.fbc_mask = BIT(INTEL_FBC_A),
> + },
> };
>
> -static const struct intel_display_device_info i865g_display = {
> - I845_DISPLAY,
> +static const struct platform_desc i865g_desc = {
> + .info = &(const struct intel_display_device_info) {
> + I845_DISPLAY,
>
> - .__runtime_defaults.port_mask = BIT(PORT_B) | BIT(PORT_C), /* DVO B/C */
> - .__runtime_defaults.fbc_mask = BIT(INTEL_FBC_A),
> + .__runtime_defaults.port_mask = BIT(PORT_B) | BIT(PORT_C), /* DVO B/C */
> + .__runtime_defaults.fbc_mask = BIT(INTEL_FBC_A),
> + },
> };
>
> -#define GEN3_DISPLAY \
> +#define GEN3_DISPLAY \
I had noticed a trend in all of your recent series, to replace the long tab
or space before '\' with a single space. But then here you change the single
space to multiple spaces. Intentional?
> .has_gmch = 1, \
> .has_overlay = 1, \
> I9XX_PIPE_OFFSETS, \
> @@ -238,52 +250,64 @@ static const struct intel_display_device_info i865g_display = {
> BIT(TRANSCODER_A) | BIT(TRANSCODER_B), \
> .__runtime_defaults.port_mask = BIT(PORT_B) | BIT(PORT_C) /* SDVO B/C */
>
> -static const struct intel_display_device_info i915g_display = {
> - GEN3_DISPLAY,
> - I845_COLORS,
> - .cursor_needs_physical = 1,
> - .overlay_needs_physical = 1,
> +static const struct platform_desc i915g_desc = {
> + .info = &(const struct intel_display_device_info) {
> + GEN3_DISPLAY,
> + I845_COLORS,
> + .cursor_needs_physical = 1,
> + .overlay_needs_physical = 1,
> + },
> };
>
> -static const struct intel_display_device_info i915gm_display = {
> - GEN3_DISPLAY,
> - I9XX_COLORS,
> - .cursor_needs_physical = 1,
> - .overlay_needs_physical = 1,
> - .supports_tv = 1,
> +static const struct platform_desc i915gm_desc = {
> + .info = &(const struct intel_display_device_info) {
> + GEN3_DISPLAY,
> + I9XX_COLORS,
> + .cursor_needs_physical = 1,
> + .overlay_needs_physical = 1,
> + .supports_tv = 1,
>
> - .__runtime_defaults.fbc_mask = BIT(INTEL_FBC_A),
> + .__runtime_defaults.fbc_mask = BIT(INTEL_FBC_A),
> + },
> };
>
> -static const struct intel_display_device_info i945g_display = {
> - GEN3_DISPLAY,
> - I845_COLORS,
> - .has_hotplug = 1,
> - .cursor_needs_physical = 1,
> - .overlay_needs_physical = 1,
> +static const struct platform_desc i945g_desc = {
> + .info = &(const struct intel_display_device_info) {
> + GEN3_DISPLAY,
> + I845_COLORS,
> + .has_hotplug = 1,
> + .cursor_needs_physical = 1,
> + .overlay_needs_physical = 1,
> + },
> };
>
> -static const struct intel_display_device_info i945gm_display = {
> - GEN3_DISPLAY,
> - I9XX_COLORS,
> - .has_hotplug = 1,
> - .cursor_needs_physical = 1,
> - .overlay_needs_physical = 1,
> - .supports_tv = 1,
> -
> - .__runtime_defaults.fbc_mask = BIT(INTEL_FBC_A),
> +static const struct platform_desc i945gm_desc = {
> + .info = &(const struct intel_display_device_info) {
> + GEN3_DISPLAY,
> + I9XX_COLORS,
> + .has_hotplug = 1,
> + .cursor_needs_physical = 1,
> + .overlay_needs_physical = 1,
> + .supports_tv = 1,
> +
> + .__runtime_defaults.fbc_mask = BIT(INTEL_FBC_A),
> + },
> };
>
> -static const struct intel_display_device_info g33_display = {
> - GEN3_DISPLAY,
> - I845_COLORS,
> - .has_hotplug = 1,
> +static const struct platform_desc g33_desc = {
> + .info = &(const struct intel_display_device_info) {
> + GEN3_DISPLAY,
> + I845_COLORS,
> + .has_hotplug = 1,
> + },
> };
>
> -static const struct intel_display_device_info pnv_display = {
> - GEN3_DISPLAY,
> - I9XX_COLORS,
> - .has_hotplug = 1,
> +static const struct platform_desc pnv_desc = {
> + .info = &(const struct intel_display_device_info) {
> + GEN3_DISPLAY,
> + I9XX_COLORS,
> + .has_hotplug = 1,
> + },
> };
>
> #define GEN4_DISPLAY \
> @@ -298,34 +322,42 @@ static const struct intel_display_device_info pnv_display = {
> .__runtime_defaults.cpu_transcoder_mask = \
> BIT(TRANSCODER_A) | BIT(TRANSCODER_B)
>
> -static const struct intel_display_device_info i965g_display = {
> - GEN4_DISPLAY,
> - .has_overlay = 1,
> +static const struct platform_desc i965g_desc = {
> + .info = &(const struct intel_display_device_info) {
> + GEN4_DISPLAY,
> + .has_overlay = 1,
>
> - .__runtime_defaults.port_mask = BIT(PORT_B) | BIT(PORT_C), /* SDVO B/C */
> + .__runtime_defaults.port_mask = BIT(PORT_B) | BIT(PORT_C), /* SDVO B/C */
> + },
> };
>
> -static const struct intel_display_device_info i965gm_display = {
> - GEN4_DISPLAY,
> - .has_overlay = 1,
> - .supports_tv = 1,
> +static const struct platform_desc i965gm_desc = {
> + .info = &(const struct intel_display_device_info) {
> + GEN4_DISPLAY,
> + .has_overlay = 1,
> + .supports_tv = 1,
>
> - .__runtime_defaults.port_mask = BIT(PORT_B) | BIT(PORT_C), /* SDVO B/C */
> - .__runtime_defaults.fbc_mask = BIT(INTEL_FBC_A),
> + .__runtime_defaults.port_mask = BIT(PORT_B) | BIT(PORT_C), /* SDVO B/C */
> + .__runtime_defaults.fbc_mask = BIT(INTEL_FBC_A),
> + },
> };
>
> -static const struct intel_display_device_info g45_display = {
> - GEN4_DISPLAY,
> +static const struct platform_desc g45_desc = {
> + .info = &(const struct intel_display_device_info) {
> + GEN4_DISPLAY,
>
> - .__runtime_defaults.port_mask = BIT(PORT_B) | BIT(PORT_C) | BIT(PORT_D), /* SDVO/HDMI/DP B/C, DP D */
> + .__runtime_defaults.port_mask = BIT(PORT_B) | BIT(PORT_C) | BIT(PORT_D), /* SDVO/HDMI/DP B/C, DP D */
> + },
> };
>
> -static const struct intel_display_device_info gm45_display = {
> - GEN4_DISPLAY,
> - .supports_tv = 1,
> +static const struct platform_desc gm45_desc = {
> + .info = &(const struct intel_display_device_info) {
> + GEN4_DISPLAY,
> + .supports_tv = 1,
>
> - .__runtime_defaults.port_mask = BIT(PORT_B) | BIT(PORT_C) | BIT(PORT_D), /* SDVO/HDMI/DP B/C, DP D */
> - .__runtime_defaults.fbc_mask = BIT(INTEL_FBC_A),
> + .__runtime_defaults.port_mask = BIT(PORT_B) | BIT(PORT_C) | BIT(PORT_D), /* SDVO/HDMI/DP B/C, DP D */
> + .__runtime_defaults.fbc_mask = BIT(INTEL_FBC_A),
> + },
> };
>
> #define ILK_DISPLAY \
> @@ -340,112 +372,128 @@ static const struct intel_display_device_info gm45_display = {
> BIT(TRANSCODER_A) | BIT(TRANSCODER_B), \
> .__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 intel_display_device_info ilk_d_display = {
> - ILK_DISPLAY,
> +static const struct platform_desc ilk_d_desc = {
> + .info = &(const struct intel_display_device_info) {
> + ILK_DISPLAY,
> + },
> };
>
> -static const struct intel_display_device_info ilk_m_display = {
> - ILK_DISPLAY,
> +static const struct platform_desc ilk_m_desc = {
> + .info = &(const struct intel_display_device_info) {
> + ILK_DISPLAY,
>
> - .__runtime_defaults.fbc_mask = BIT(INTEL_FBC_A),
> + .__runtime_defaults.fbc_mask = BIT(INTEL_FBC_A),
> + },
> };
>
> -static const struct intel_display_device_info snb_display = {
> - .has_hotplug = 1,
> - I9XX_PIPE_OFFSETS,
> - I9XX_CURSOR_OFFSETS,
> - ILK_COLORS,
> +static const struct platform_desc snb_desc = {
> + .info = &(const struct intel_display_device_info) {
> + .has_hotplug = 1,
> + I9XX_PIPE_OFFSETS,
> + I9XX_CURSOR_OFFSETS,
> + ILK_COLORS,
>
> - .__runtime_defaults.ip.ver = 6,
> - .__runtime_defaults.pipe_mask = BIT(PIPE_A) | BIT(PIPE_B),
> - .__runtime_defaults.cpu_transcoder_mask =
> + .__runtime_defaults.ip.ver = 6,
> + .__runtime_defaults.pipe_mask = BIT(PIPE_A) | BIT(PIPE_B),
> + .__runtime_defaults.cpu_transcoder_mask =
> BIT(TRANSCODER_A) | BIT(TRANSCODER_B),
> - .__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 */
> - .__runtime_defaults.fbc_mask = BIT(INTEL_FBC_A),
> + .__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 */
> + .__runtime_defaults.fbc_mask = BIT(INTEL_FBC_A),
> + },
> };
>
> -static const struct intel_display_device_info ivb_display = {
> - .has_hotplug = 1,
> - IVB_PIPE_OFFSETS,
> - IVB_CURSOR_OFFSETS,
> - IVB_COLORS,
> +static const struct platform_desc ivb_desc = {
> + .info = &(const struct intel_display_device_info) {
> + .has_hotplug = 1,
> + IVB_PIPE_OFFSETS,
> + IVB_CURSOR_OFFSETS,
> + IVB_COLORS,
>
> - .__runtime_defaults.ip.ver = 7,
> - .__runtime_defaults.pipe_mask = BIT(PIPE_A) | BIT(PIPE_B) | BIT(PIPE_C),
> - .__runtime_defaults.cpu_transcoder_mask =
> + .__runtime_defaults.ip.ver = 7,
> + .__runtime_defaults.pipe_mask = BIT(PIPE_A) | BIT(PIPE_B) | BIT(PIPE_C),
> + .__runtime_defaults.cpu_transcoder_mask =
> BIT(TRANSCODER_A) | BIT(TRANSCODER_B) | BIT(TRANSCODER_C),
> - .__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 */
> - .__runtime_defaults.fbc_mask = BIT(INTEL_FBC_A),
> + .__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 */
> + .__runtime_defaults.fbc_mask = BIT(INTEL_FBC_A),
> + },
> };
>
> -static const struct intel_display_device_info vlv_display = {
> - .has_gmch = 1,
> - .has_hotplug = 1,
> - .mmio_offset = VLV_DISPLAY_BASE,
> - I9XX_PIPE_OFFSETS,
> - I9XX_CURSOR_OFFSETS,
> - I9XX_COLORS,
> -
> - .__runtime_defaults.ip.ver = 7,
> - .__runtime_defaults.pipe_mask = BIT(PIPE_A) | BIT(PIPE_B),
> - .__runtime_defaults.cpu_transcoder_mask =
> +static const struct platform_desc vlv_desc = {
> + .info = &(const struct intel_display_device_info) {
> + .has_gmch = 1,
> + .has_hotplug = 1,
> + .mmio_offset = VLV_DISPLAY_BASE,
> + I9XX_PIPE_OFFSETS,
> + I9XX_CURSOR_OFFSETS,
> + I9XX_COLORS,
> +
> + .__runtime_defaults.ip.ver = 7,
> + .__runtime_defaults.pipe_mask = BIT(PIPE_A) | BIT(PIPE_B),
> + .__runtime_defaults.cpu_transcoder_mask =
> BIT(TRANSCODER_A) | BIT(TRANSCODER_B),
> - .__runtime_defaults.port_mask = BIT(PORT_B) | BIT(PORT_C), /* HDMI/DP B/C */
> + .__runtime_defaults.port_mask = BIT(PORT_B) | BIT(PORT_C), /* HDMI/DP B/C */
> + },
> };
>
> -static const struct intel_display_device_info hsw_display = {
> - .has_ddi = 1,
> - .has_dp_mst = 1,
> - .has_fpga_dbg = 1,
> - .has_hotplug = 1,
> - .has_psr = 1,
> - .has_psr_hw_tracking = 1,
> - HSW_PIPE_OFFSETS,
> - IVB_CURSOR_OFFSETS,
> - IVB_COLORS,
> -
> - .__runtime_defaults.ip.ver = 7,
> - .__runtime_defaults.pipe_mask = BIT(PIPE_A) | BIT(PIPE_B) | BIT(PIPE_C),
> - .__runtime_defaults.cpu_transcoder_mask =
> +static const struct platform_desc hsw_desc = {
> + .info = &(const struct intel_display_device_info) {
> + .has_ddi = 1,
> + .has_dp_mst = 1,
> + .has_fpga_dbg = 1,
> + .has_hotplug = 1,
> + .has_psr = 1,
> + .has_psr_hw_tracking = 1,
> + HSW_PIPE_OFFSETS,
> + IVB_CURSOR_OFFSETS,
> + IVB_COLORS,
> +
> + .__runtime_defaults.ip.ver = 7,
> + .__runtime_defaults.pipe_mask = BIT(PIPE_A) | BIT(PIPE_B) | BIT(PIPE_C),
> + .__runtime_defaults.cpu_transcoder_mask =
> BIT(TRANSCODER_A) | BIT(TRANSCODER_B) |
> BIT(TRANSCODER_C) | BIT(TRANSCODER_EDP),
> - .__runtime_defaults.port_mask = BIT(PORT_A) | BIT(PORT_B) | BIT(PORT_C) | BIT(PORT_D) | BIT(PORT_E),
> - .__runtime_defaults.fbc_mask = BIT(INTEL_FBC_A),
> + .__runtime_defaults.port_mask = BIT(PORT_A) | BIT(PORT_B) | BIT(PORT_C) | BIT(PORT_D) | BIT(PORT_E),
> + .__runtime_defaults.fbc_mask = BIT(INTEL_FBC_A),
> + },
> };
>
> -static const struct intel_display_device_info bdw_display = {
> - .has_ddi = 1,
> - .has_dp_mst = 1,
> - .has_fpga_dbg = 1,
> - .has_hotplug = 1,
> - .has_psr = 1,
> - .has_psr_hw_tracking = 1,
> - HSW_PIPE_OFFSETS,
> - IVB_CURSOR_OFFSETS,
> - IVB_COLORS,
> -
> - .__runtime_defaults.ip.ver = 8,
> - .__runtime_defaults.pipe_mask = BIT(PIPE_A) | BIT(PIPE_B) | BIT(PIPE_C),
> - .__runtime_defaults.cpu_transcoder_mask =
> +static const struct platform_desc bdw_desc = {
> + .info = &(const struct intel_display_device_info) {
> + .has_ddi = 1,
> + .has_dp_mst = 1,
> + .has_fpga_dbg = 1,
> + .has_hotplug = 1,
> + .has_psr = 1,
> + .has_psr_hw_tracking = 1,
> + HSW_PIPE_OFFSETS,
> + IVB_CURSOR_OFFSETS,
> + IVB_COLORS,
> +
> + .__runtime_defaults.ip.ver = 8,
> + .__runtime_defaults.pipe_mask = BIT(PIPE_A) | BIT(PIPE_B) | BIT(PIPE_C),
> + .__runtime_defaults.cpu_transcoder_mask =
> BIT(TRANSCODER_A) | BIT(TRANSCODER_B) |
> BIT(TRANSCODER_C) | BIT(TRANSCODER_EDP),
> - .__runtime_defaults.port_mask = BIT(PORT_A) | BIT(PORT_B) | BIT(PORT_C) | BIT(PORT_D) | BIT(PORT_E),
> - .__runtime_defaults.fbc_mask = BIT(INTEL_FBC_A),
> + .__runtime_defaults.port_mask = BIT(PORT_A) | BIT(PORT_B) | BIT(PORT_C) | BIT(PORT_D) | BIT(PORT_E),
> + .__runtime_defaults.fbc_mask = BIT(INTEL_FBC_A),
> + },
> };
>
> -static const struct intel_display_device_info chv_display = {
> - .has_hotplug = 1,
> - .has_gmch = 1,
> - .mmio_offset = VLV_DISPLAY_BASE,
> - CHV_PIPE_OFFSETS,
> - CHV_CURSOR_OFFSETS,
> - CHV_COLORS,
> -
> - .__runtime_defaults.ip.ver = 8,
> - .__runtime_defaults.pipe_mask = BIT(PIPE_A) | BIT(PIPE_B) | BIT(PIPE_C),
> - .__runtime_defaults.cpu_transcoder_mask =
> +static const struct platform_desc chv_desc = {
> + .info = &(const struct intel_display_device_info) {
> + .has_hotplug = 1,
> + .has_gmch = 1,
> + .mmio_offset = VLV_DISPLAY_BASE,
> + CHV_PIPE_OFFSETS,
> + CHV_CURSOR_OFFSETS,
> + CHV_COLORS,
> +
> + .__runtime_defaults.ip.ver = 8,
> + .__runtime_defaults.pipe_mask = BIT(PIPE_A) | BIT(PIPE_B) | BIT(PIPE_C),
> + .__runtime_defaults.cpu_transcoder_mask =
> BIT(TRANSCODER_A) | BIT(TRANSCODER_B) | BIT(TRANSCODER_C),
> - .__runtime_defaults.port_mask = BIT(PORT_B) | BIT(PORT_C) | BIT(PORT_D), /* HDMI/DP B/C/D */
> + .__runtime_defaults.port_mask = BIT(PORT_B) | BIT(PORT_C) | BIT(PORT_D), /* HDMI/DP B/C/D */
> + },
> };
>
> static const struct intel_display_device_info skl_display = {
> @@ -467,13 +515,29 @@ static const struct intel_display_device_info skl_display = {
> .__runtime_defaults.has_hdcp = 1,
> .__runtime_defaults.pipe_mask = BIT(PIPE_A) | BIT(PIPE_B) | BIT(PIPE_C),
> .__runtime_defaults.cpu_transcoder_mask =
> - BIT(TRANSCODER_A) | BIT(TRANSCODER_B) |
> - BIT(TRANSCODER_C) | BIT(TRANSCODER_EDP),
> + BIT(TRANSCODER_A) | BIT(TRANSCODER_B) |
> + BIT(TRANSCODER_C) | BIT(TRANSCODER_EDP),
> .__runtime_defaults.port_mask = BIT(PORT_A) | BIT(PORT_B) | BIT(PORT_C) | BIT(PORT_D) | BIT(PORT_E),
> .__runtime_defaults.fbc_mask = BIT(INTEL_FBC_A),
> };
>
> -#define GEN9_LP_DISPLAY \
> +static const struct platform_desc skl_desc = {
> + .info = &skl_display,
> +};
> +
> +static const struct platform_desc kbl_desc = {
> + .info = &skl_display,
> +};
> +
> +static const struct platform_desc cfl_desc = {
> + .info = &skl_display,
> +};
> +
> +static const struct platform_desc cml_desc = {
> + .info = &skl_display,
> +};
> +
> +#define GEN9_LP_DISPLAY \
> .dbuf.slice_mask = BIT(DBUF_S1), \
> .has_dp_mst = 1, \
> .has_ddi = 1, \
> @@ -496,19 +560,23 @@ static const struct intel_display_device_info skl_display = {
> BIT(TRANSCODER_DSI_A) | BIT(TRANSCODER_DSI_C), \
> .__runtime_defaults.port_mask = BIT(PORT_A) | BIT(PORT_B) | BIT(PORT_C)
>
> -static const struct intel_display_device_info bxt_display = {
> - GEN9_LP_DISPLAY,
> - .dbuf.size = 512 - 4, /* 4 blocks for bypass path allocation */
> +static const struct platform_desc bxt_desc = {
> + .info = &(const struct intel_display_device_info) {
> + GEN9_LP_DISPLAY,
> + .dbuf.size = 512 - 4, /* 4 blocks for bypass path allocation */
>
> - .__runtime_defaults.ip.ver = 9,
> + .__runtime_defaults.ip.ver = 9,
> + },
> };
>
> -static const struct intel_display_device_info glk_display = {
> - GEN9_LP_DISPLAY,
> - .dbuf.size = 1024 - 4, /* 4 blocks for bypass path allocation */
> - GLK_COLORS,
> +static const struct platform_desc glk_desc = {
> + .info = &(const struct intel_display_device_info) {
> + GEN9_LP_DISPLAY,
> + .dbuf.size = 1024 - 4, /* 4 blocks for bypass path allocation */
> + GLK_COLORS,
>
> - .__runtime_defaults.ip.ver = 10,
> + .__runtime_defaults.ip.ver = 10,
> + },
> };
>
> #define ICL_DISPLAY \
> @@ -552,10 +620,12 @@ static const struct intel_display_device_info glk_display = {
> BIT(TRANSCODER_DSI_0) | BIT(TRANSCODER_DSI_1), \
> .__runtime_defaults.fbc_mask = BIT(INTEL_FBC_A)
>
> -static const struct intel_display_device_info icl_display = {
> - ICL_DISPLAY,
> +static const struct platform_desc icl_desc = {
> + .info = &(const struct intel_display_device_info) {
> + ICL_DISPLAY,
>
> - .__runtime_defaults.port_mask = BIT(PORT_A) | BIT(PORT_B) | BIT(PORT_C) | BIT(PORT_D) | BIT(PORT_E),
> + .__runtime_defaults.port_mask = BIT(PORT_A) | BIT(PORT_B) | BIT(PORT_C) | BIT(PORT_D) | BIT(PORT_E),
> + },
> };
>
> static const struct intel_display_device_info jsl_ehl_display = {
> @@ -564,6 +634,14 @@ static const struct intel_display_device_info jsl_ehl_display = {
> .__runtime_defaults.port_mask = BIT(PORT_A) | BIT(PORT_B) | BIT(PORT_C) | BIT(PORT_D),
> };
>
> +static const struct platform_desc jsl_desc = {
> + .info = &jsl_ehl_display,
> +};
> +
> +static const struct platform_desc ehl_desc = {
> + .info = &jsl_ehl_display,
> +};
> +
> #define XE_D_DISPLAY \
> .abox_mask = GENMASK(2, 1), \
> .dbuf.size = 2048, \
> @@ -607,44 +685,52 @@ static const struct intel_display_device_info jsl_ehl_display = {
> BIT(TRANSCODER_DSI_0) | BIT(TRANSCODER_DSI_1), \
> .__runtime_defaults.fbc_mask = BIT(INTEL_FBC_A)
>
> -static const struct intel_display_device_info tgl_display = {
> - XE_D_DISPLAY,
> +static const struct platform_desc tgl_desc = {
> + .info = &(const struct intel_display_device_info) {
> + XE_D_DISPLAY,
>
> - /*
> - * FIXME DDI C/combo PHY C missing due to combo PHY
> - * code making a mess on SKUs where the PHY is missing.
> - */
> - .__runtime_defaults.port_mask = BIT(PORT_A) | BIT(PORT_B) |
> + /*
> + * FIXME DDI C/combo PHY C missing due to combo PHY
> + * code making a mess on SKUs where the PHY is missing.
> + */
> + .__runtime_defaults.port_mask = BIT(PORT_A) | BIT(PORT_B) |
> BIT(PORT_TC1) | BIT(PORT_TC2) | BIT(PORT_TC3) | BIT(PORT_TC4) | BIT(PORT_TC5) | BIT(PORT_TC6),
> + },
> };
>
> -static const struct intel_display_device_info dg1_display = {
> - XE_D_DISPLAY,
> +static const struct platform_desc dg1_desc = {
> + .info = &(const struct intel_display_device_info) {
> + XE_D_DISPLAY,
>
> - .__runtime_defaults.port_mask = BIT(PORT_A) | BIT(PORT_B) |
> + .__runtime_defaults.port_mask = BIT(PORT_A) | BIT(PORT_B) |
> BIT(PORT_TC1) | BIT(PORT_TC2),
> + },
> };
>
> -static const struct intel_display_device_info rkl_display = {
> - XE_D_DISPLAY,
> - .abox_mask = BIT(0),
> - .has_hti = 1,
> - .has_psr_hw_tracking = 0,
> +static const struct platform_desc rkl_desc = {
> + .info = &(const struct intel_display_device_info) {
> + XE_D_DISPLAY,
> + .abox_mask = BIT(0),
> + .has_hti = 1,
> + .has_psr_hw_tracking = 0,
>
> - .__runtime_defaults.pipe_mask = BIT(PIPE_A) | BIT(PIPE_B) | BIT(PIPE_C),
> - .__runtime_defaults.cpu_transcoder_mask =
> + .__runtime_defaults.pipe_mask = BIT(PIPE_A) | BIT(PIPE_B) | BIT(PIPE_C),
> + .__runtime_defaults.cpu_transcoder_mask =
> BIT(TRANSCODER_A) | BIT(TRANSCODER_B) | BIT(TRANSCODER_C),
> - .__runtime_defaults.port_mask = BIT(PORT_A) | BIT(PORT_B) |
> + .__runtime_defaults.port_mask = BIT(PORT_A) | BIT(PORT_B) |
> BIT(PORT_TC1) | BIT(PORT_TC2),
> + },
> };
>
> -static const struct intel_display_device_info adl_s_display = {
> - XE_D_DISPLAY,
> - .has_hti = 1,
> - .has_psr_hw_tracking = 0,
> +static const struct platform_desc adl_s_desc = {
> + .info = &(const struct intel_display_device_info) {
> + XE_D_DISPLAY,
> + .has_hti = 1,
> + .has_psr_hw_tracking = 0,
>
> - .__runtime_defaults.port_mask = BIT(PORT_A) |
> + .__runtime_defaults.port_mask = BIT(PORT_A) |
> BIT(PORT_TC1) | BIT(PORT_TC2) | BIT(PORT_TC3) | BIT(PORT_TC4),
> + },
> };
>
> #define XE_LPD_FEATURES \
> @@ -703,6 +789,10 @@ static const struct intel_display_device_info xe_lpd_display = {
> BIT(PORT_TC1) | BIT(PORT_TC2) | BIT(PORT_TC3) | BIT(PORT_TC4),
> };
>
> +static const struct platform_desc adl_p_desc = {
> + .info = &xe_lpd_display,
> +};
> +
> static const struct intel_display_device_info xe_hpd_display = {
> XE_LPD_FEATURES,
> .has_cdclk_squash = 1,
> @@ -714,6 +804,10 @@ static const struct intel_display_device_info xe_hpd_display = {
> BIT(PORT_TC1),
> };
>
> +static const struct platform_desc dg2_desc = {
> + .info = &xe_hpd_display,
> +};
> +
> #define XE_LPDP_FEATURES \
> .abox_mask = GENMASK(1, 0), \
> .color = { \
> @@ -795,54 +889,54 @@ static bool has_no_display(struct pci_dev *pdev)
> return pci_match_id(ids, pdev);
> }
>
> -#define INTEL_DISPLAY_DEVICE(_id, _info) { .devid = (_id), .info = (_info) }
> +#define INTEL_DISPLAY_DEVICE(_id, _desc) { .devid = (_id), .desc = (_desc) }
>
> static const struct {
> u32 devid;
> - const struct intel_display_device_info *info;
> + const struct platform_desc *desc;
> } intel_display_ids[] = {
> - INTEL_I830_IDS(INTEL_DISPLAY_DEVICE, &i830_display),
> - INTEL_I845G_IDS(INTEL_DISPLAY_DEVICE, &i845_display),
> - INTEL_I85X_IDS(INTEL_DISPLAY_DEVICE, &i85x_display),
> - INTEL_I865G_IDS(INTEL_DISPLAY_DEVICE, &i865g_display),
> - INTEL_I915G_IDS(INTEL_DISPLAY_DEVICE, &i915g_display),
> - INTEL_I915GM_IDS(INTEL_DISPLAY_DEVICE, &i915gm_display),
> - INTEL_I945G_IDS(INTEL_DISPLAY_DEVICE, &i945g_display),
> - INTEL_I945GM_IDS(INTEL_DISPLAY_DEVICE, &i945gm_display),
> - INTEL_I965G_IDS(INTEL_DISPLAY_DEVICE, &i965g_display),
> - INTEL_G33_IDS(INTEL_DISPLAY_DEVICE, &g33_display),
> - INTEL_I965GM_IDS(INTEL_DISPLAY_DEVICE, &i965gm_display),
> - INTEL_GM45_IDS(INTEL_DISPLAY_DEVICE, &gm45_display),
> - INTEL_G45_IDS(INTEL_DISPLAY_DEVICE, &g45_display),
> - INTEL_PNV_IDS(INTEL_DISPLAY_DEVICE, &pnv_display),
> - INTEL_ILK_D_IDS(INTEL_DISPLAY_DEVICE, &ilk_d_display),
> - INTEL_ILK_M_IDS(INTEL_DISPLAY_DEVICE, &ilk_m_display),
> - INTEL_SNB_IDS(INTEL_DISPLAY_DEVICE, &snb_display),
> - INTEL_IVB_IDS(INTEL_DISPLAY_DEVICE, &ivb_display),
> - INTEL_HSW_IDS(INTEL_DISPLAY_DEVICE, &hsw_display),
> - INTEL_VLV_IDS(INTEL_DISPLAY_DEVICE, &vlv_display),
> - INTEL_BDW_IDS(INTEL_DISPLAY_DEVICE, &bdw_display),
> - INTEL_CHV_IDS(INTEL_DISPLAY_DEVICE, &chv_display),
> - INTEL_SKL_IDS(INTEL_DISPLAY_DEVICE, &skl_display),
> - INTEL_BXT_IDS(INTEL_DISPLAY_DEVICE, &bxt_display),
> - INTEL_GLK_IDS(INTEL_DISPLAY_DEVICE, &glk_display),
> - INTEL_KBL_IDS(INTEL_DISPLAY_DEVICE, &skl_display),
> - INTEL_CFL_IDS(INTEL_DISPLAY_DEVICE, &skl_display),
> - INTEL_WHL_IDS(INTEL_DISPLAY_DEVICE, &skl_display),
> - INTEL_CML_IDS(INTEL_DISPLAY_DEVICE, &skl_display),
> - INTEL_ICL_IDS(INTEL_DISPLAY_DEVICE, &icl_display),
> - INTEL_EHL_IDS(INTEL_DISPLAY_DEVICE, &jsl_ehl_display),
> - INTEL_JSL_IDS(INTEL_DISPLAY_DEVICE, &jsl_ehl_display),
> - INTEL_TGL_IDS(INTEL_DISPLAY_DEVICE, &tgl_display),
> - INTEL_DG1_IDS(INTEL_DISPLAY_DEVICE, &dg1_display),
> - INTEL_RKL_IDS(INTEL_DISPLAY_DEVICE, &rkl_display),
> - INTEL_ADLS_IDS(INTEL_DISPLAY_DEVICE, &adl_s_display),
> - INTEL_RPLS_IDS(INTEL_DISPLAY_DEVICE, &adl_s_display),
> - INTEL_ADLP_IDS(INTEL_DISPLAY_DEVICE, &xe_lpd_display),
> - INTEL_ADLN_IDS(INTEL_DISPLAY_DEVICE, &xe_lpd_display),
> - INTEL_RPLU_IDS(INTEL_DISPLAY_DEVICE, &xe_lpd_display),
> - INTEL_RPLP_IDS(INTEL_DISPLAY_DEVICE, &xe_lpd_display),
> - INTEL_DG2_IDS(INTEL_DISPLAY_DEVICE, &xe_hpd_display),
> + INTEL_I830_IDS(INTEL_DISPLAY_DEVICE, &i830_desc),
But here is what I'm not sure if I completely understand/agree...
before this patch is a display device with a display struct
but then it becomes a display device with a platform description
but a platform that is not used by the driver...
I'm probably missing some later jump there.
> + INTEL_I845G_IDS(INTEL_DISPLAY_DEVICE, &i845_desc),
> + INTEL_I85X_IDS(INTEL_DISPLAY_DEVICE, &i85x_desc),
> + INTEL_I865G_IDS(INTEL_DISPLAY_DEVICE, &i865g_desc),
> + INTEL_I915G_IDS(INTEL_DISPLAY_DEVICE, &i915g_desc),
> + INTEL_I915GM_IDS(INTEL_DISPLAY_DEVICE, &i915gm_desc),
> + INTEL_I945G_IDS(INTEL_DISPLAY_DEVICE, &i945g_desc),
> + INTEL_I945GM_IDS(INTEL_DISPLAY_DEVICE, &i945gm_desc),
> + INTEL_I965G_IDS(INTEL_DISPLAY_DEVICE, &i965g_desc),
> + INTEL_G33_IDS(INTEL_DISPLAY_DEVICE, &g33_desc),
> + INTEL_I965GM_IDS(INTEL_DISPLAY_DEVICE, &i965gm_desc),
> + INTEL_GM45_IDS(INTEL_DISPLAY_DEVICE, &gm45_desc),
> + INTEL_G45_IDS(INTEL_DISPLAY_DEVICE, &g45_desc),
> + INTEL_PNV_IDS(INTEL_DISPLAY_DEVICE, &pnv_desc),
> + INTEL_ILK_D_IDS(INTEL_DISPLAY_DEVICE, &ilk_d_desc),
> + INTEL_ILK_M_IDS(INTEL_DISPLAY_DEVICE, &ilk_m_desc),
> + INTEL_SNB_IDS(INTEL_DISPLAY_DEVICE, &snb_desc),
> + INTEL_IVB_IDS(INTEL_DISPLAY_DEVICE, &ivb_desc),
> + INTEL_HSW_IDS(INTEL_DISPLAY_DEVICE, &hsw_desc),
> + INTEL_VLV_IDS(INTEL_DISPLAY_DEVICE, &vlv_desc),
> + INTEL_BDW_IDS(INTEL_DISPLAY_DEVICE, &bdw_desc),
> + INTEL_CHV_IDS(INTEL_DISPLAY_DEVICE, &chv_desc),
> + INTEL_SKL_IDS(INTEL_DISPLAY_DEVICE, &skl_desc),
> + INTEL_BXT_IDS(INTEL_DISPLAY_DEVICE, &bxt_desc),
> + INTEL_GLK_IDS(INTEL_DISPLAY_DEVICE, &glk_desc),
> + INTEL_KBL_IDS(INTEL_DISPLAY_DEVICE, &kbl_desc),
> + INTEL_CFL_IDS(INTEL_DISPLAY_DEVICE, &cfl_desc),
> + INTEL_WHL_IDS(INTEL_DISPLAY_DEVICE, &cfl_desc),
> + INTEL_CML_IDS(INTEL_DISPLAY_DEVICE, &cml_desc),
> + INTEL_ICL_IDS(INTEL_DISPLAY_DEVICE, &icl_desc),
> + INTEL_EHL_IDS(INTEL_DISPLAY_DEVICE, &ehl_desc),
> + INTEL_JSL_IDS(INTEL_DISPLAY_DEVICE, &jsl_desc),
> + INTEL_TGL_IDS(INTEL_DISPLAY_DEVICE, &tgl_desc),
> + INTEL_DG1_IDS(INTEL_DISPLAY_DEVICE, &dg1_desc),
> + INTEL_RKL_IDS(INTEL_DISPLAY_DEVICE, &rkl_desc),
> + INTEL_ADLS_IDS(INTEL_DISPLAY_DEVICE, &adl_s_desc),
> + INTEL_RPLS_IDS(INTEL_DISPLAY_DEVICE, &adl_s_desc),
> + INTEL_ADLP_IDS(INTEL_DISPLAY_DEVICE, &adl_p_desc),
> + INTEL_ADLN_IDS(INTEL_DISPLAY_DEVICE, &adl_p_desc),
> + INTEL_RPLU_IDS(INTEL_DISPLAY_DEVICE, &adl_p_desc),
> + INTEL_RPLP_IDS(INTEL_DISPLAY_DEVICE, &adl_p_desc),
> + INTEL_DG2_IDS(INTEL_DISPLAY_DEVICE, &dg2_desc),
>
> /*
> * Do not add any GMD_ID-based platforms to this list. They will
> @@ -909,7 +1003,7 @@ probe_display(struct drm_i915_private *i915)
>
> for (i = 0; i < ARRAY_SIZE(intel_display_ids); i++) {
> if (intel_display_ids[i].devid == pdev->device)
> - return intel_display_ids[i].info;
> + return intel_display_ids[i].desc->info;
> }
>
> drm_dbg(&i915->drm, "No display ID found for device ID %04x; disabling display.\n",
> --
> 2.39.2
>
^ permalink raw reply [flat|nested] 34+ messages in thread
* Re: [PATCH 05/10] drm/i915/display: add platform descriptors
2024-05-23 18:47 ` Rodrigo Vivi
@ 2024-05-24 8:17 ` Jani Nikula
2024-05-24 14:04 ` Rodrigo Vivi
0 siblings, 1 reply; 34+ messages in thread
From: Jani Nikula @ 2024-05-24 8:17 UTC (permalink / raw)
To: Rodrigo Vivi; +Cc: intel-gfx, intel-xe, lucas.demarchi
On Thu, 23 May 2024, Rodrigo Vivi <rodrigo.vivi@intel.com> wrote:
> On Wed, May 22, 2024 at 08:33:42PM +0300, Jani Nikula wrote:
>> We'll need to start identifying the platforms independently in display
>> code in order to break free from the i915 and xe IS_<PLATFORM>()
>> macros. This is fairly straightforward, as we already identify most
>> platforms by PCI ID in display probe anyway.
>>
>> As the first step, add platform descriptors with pointers to display
>> info. We'll have more platforms than display info, so minimize
>> duplication:
>>
>> - Add separate skl/kbl/cfl/cml descriptors while they share the display
>> info.
>>
>> - Add separate jsl/ehl descriptors while they share the display info.
>>
>> Identify ADL-P (and derivatives) and DG2 descriptors by their names even
>> though their display info is Xe LPD or HPD.
>>
>> Signed-off-by: Jani Nikula <jani.nikula@intel.com>
>> ---
>> .../drm/i915/display/intel_display_device.c | 558 ++++++++++--------
>> 1 file changed, 326 insertions(+), 232 deletions(-)
>>
>> diff --git a/drivers/gpu/drm/i915/display/intel_display_device.c b/drivers/gpu/drm/i915/display/intel_display_device.c
>> index 56b27546d1b3..d1e03437abb3 100644
>> --- a/drivers/gpu/drm/i915/display/intel_display_device.c
>> +++ b/drivers/gpu/drm/i915/display/intel_display_device.c
>> @@ -20,6 +20,10 @@
>> __diag_push();
>> __diag_ignore_all("-Woverride-init", "Allow field initialization overrides for display info");
>>
>> +struct platform_desc {
>> + const struct intel_display_device_info *info;
>> +};
>
> I had to jump to the latest patch to understand why this single item
> in a new struct... later it makes sense...
Yeah...
>> -#define GEN3_DISPLAY \
>> +#define GEN3_DISPLAY \
>
> I had noticed a trend in all of your recent series, to replace the long tab
> or space before '\' with a single space. But then here you change the single
> space to multiple spaces. Intentional?
Accidental.
Emacs wants to indent and align \'s in a specific way, in a nice column
towards the right. Usually I follow that when adding new stuff manually.
Here, that happened on a line I didn't mean to change.
In the PCI ID patches I intentionally used a single space because I
scripted the whole thing, and I couldn't be bothered to figure out how
to align the \'s any other way! :)
>> static const struct {
>> u32 devid;
>> - const struct intel_display_device_info *info;
>> + const struct platform_desc *desc;
>> } intel_display_ids[] = {
>> - INTEL_I830_IDS(INTEL_DISPLAY_DEVICE, &i830_display),
>> - INTEL_I845G_IDS(INTEL_DISPLAY_DEVICE, &i845_display),
>> - INTEL_I85X_IDS(INTEL_DISPLAY_DEVICE, &i85x_display),
>> - INTEL_I865G_IDS(INTEL_DISPLAY_DEVICE, &i865g_display),
>> - INTEL_I915G_IDS(INTEL_DISPLAY_DEVICE, &i915g_display),
>> - INTEL_I915GM_IDS(INTEL_DISPLAY_DEVICE, &i915gm_display),
>> - INTEL_I945G_IDS(INTEL_DISPLAY_DEVICE, &i945g_display),
>> - INTEL_I945GM_IDS(INTEL_DISPLAY_DEVICE, &i945gm_display),
>> - INTEL_I965G_IDS(INTEL_DISPLAY_DEVICE, &i965g_display),
>> - INTEL_G33_IDS(INTEL_DISPLAY_DEVICE, &g33_display),
>> - INTEL_I965GM_IDS(INTEL_DISPLAY_DEVICE, &i965gm_display),
>> - INTEL_GM45_IDS(INTEL_DISPLAY_DEVICE, &gm45_display),
>> - INTEL_G45_IDS(INTEL_DISPLAY_DEVICE, &g45_display),
>> - INTEL_PNV_IDS(INTEL_DISPLAY_DEVICE, &pnv_display),
>> - INTEL_ILK_D_IDS(INTEL_DISPLAY_DEVICE, &ilk_d_display),
>> - INTEL_ILK_M_IDS(INTEL_DISPLAY_DEVICE, &ilk_m_display),
>> - INTEL_SNB_IDS(INTEL_DISPLAY_DEVICE, &snb_display),
>> - INTEL_IVB_IDS(INTEL_DISPLAY_DEVICE, &ivb_display),
>> - INTEL_HSW_IDS(INTEL_DISPLAY_DEVICE, &hsw_display),
>> - INTEL_VLV_IDS(INTEL_DISPLAY_DEVICE, &vlv_display),
>> - INTEL_BDW_IDS(INTEL_DISPLAY_DEVICE, &bdw_display),
>> - INTEL_CHV_IDS(INTEL_DISPLAY_DEVICE, &chv_display),
>> - INTEL_SKL_IDS(INTEL_DISPLAY_DEVICE, &skl_display),
>> - INTEL_BXT_IDS(INTEL_DISPLAY_DEVICE, &bxt_display),
>> - INTEL_GLK_IDS(INTEL_DISPLAY_DEVICE, &glk_display),
>> - INTEL_KBL_IDS(INTEL_DISPLAY_DEVICE, &skl_display),
>> - INTEL_CFL_IDS(INTEL_DISPLAY_DEVICE, &skl_display),
>> - INTEL_WHL_IDS(INTEL_DISPLAY_DEVICE, &skl_display),
>> - INTEL_CML_IDS(INTEL_DISPLAY_DEVICE, &skl_display),
>> - INTEL_ICL_IDS(INTEL_DISPLAY_DEVICE, &icl_display),
>> - INTEL_EHL_IDS(INTEL_DISPLAY_DEVICE, &jsl_ehl_display),
>> - INTEL_JSL_IDS(INTEL_DISPLAY_DEVICE, &jsl_ehl_display),
>> - INTEL_TGL_IDS(INTEL_DISPLAY_DEVICE, &tgl_display),
>> - INTEL_DG1_IDS(INTEL_DISPLAY_DEVICE, &dg1_display),
>> - INTEL_RKL_IDS(INTEL_DISPLAY_DEVICE, &rkl_display),
>> - INTEL_ADLS_IDS(INTEL_DISPLAY_DEVICE, &adl_s_display),
>> - INTEL_RPLS_IDS(INTEL_DISPLAY_DEVICE, &adl_s_display),
>> - INTEL_ADLP_IDS(INTEL_DISPLAY_DEVICE, &xe_lpd_display),
>> - INTEL_ADLN_IDS(INTEL_DISPLAY_DEVICE, &xe_lpd_display),
>> - INTEL_RPLU_IDS(INTEL_DISPLAY_DEVICE, &xe_lpd_display),
>> - INTEL_RPLP_IDS(INTEL_DISPLAY_DEVICE, &xe_lpd_display),
>> - INTEL_DG2_IDS(INTEL_DISPLAY_DEVICE, &xe_hpd_display),
>> + INTEL_I830_IDS(INTEL_DISPLAY_DEVICE, &i830_desc),
>
> But here is what I'm not sure if I completely understand/agree...
> before this patch is a display device with a display struct
> but then it becomes a display device with a platform description
> but a platform that is not used by the driver...
>
> I'm probably missing some later jump there.
Yeah, I did not want to put too much stuff in the same patch. I think
easier to review this way, though I guess I should've made my intentions
more clear in the commit message! Also, easy to squash if so desired.
So this one adds the platform descs with just the display struct, and
later patches add more content in the descs.
BR,
Jani.
--
Jani Nikula, Intel
^ permalink raw reply [flat|nested] 34+ messages in thread
* Re: [PATCH 05/10] drm/i915/display: add platform descriptors
2024-05-24 8:17 ` Jani Nikula
@ 2024-05-24 14:04 ` Rodrigo Vivi
0 siblings, 0 replies; 34+ messages in thread
From: Rodrigo Vivi @ 2024-05-24 14:04 UTC (permalink / raw)
To: Jani Nikula; +Cc: intel-gfx, intel-xe, lucas.demarchi
On Fri, May 24, 2024 at 11:17:32AM +0300, Jani Nikula wrote:
> On Thu, 23 May 2024, Rodrigo Vivi <rodrigo.vivi@intel.com> wrote:
> > On Wed, May 22, 2024 at 08:33:42PM +0300, Jani Nikula wrote:
> >> We'll need to start identifying the platforms independently in display
> >> code in order to break free from the i915 and xe IS_<PLATFORM>()
> >> macros. This is fairly straightforward, as we already identify most
> >> platforms by PCI ID in display probe anyway.
> >>
> >> As the first step, add platform descriptors with pointers to display
> >> info. We'll have more platforms than display info, so minimize
> >> duplication:
> >>
> >> - Add separate skl/kbl/cfl/cml descriptors while they share the display
> >> info.
> >>
> >> - Add separate jsl/ehl descriptors while they share the display info.
> >>
> >> Identify ADL-P (and derivatives) and DG2 descriptors by their names even
> >> though their display info is Xe LPD or HPD.
> >>
> >> Signed-off-by: Jani Nikula <jani.nikula@intel.com>
> >> ---
> >> .../drm/i915/display/intel_display_device.c | 558 ++++++++++--------
> >> 1 file changed, 326 insertions(+), 232 deletions(-)
> >>
> >> diff --git a/drivers/gpu/drm/i915/display/intel_display_device.c b/drivers/gpu/drm/i915/display/intel_display_device.c
> >> index 56b27546d1b3..d1e03437abb3 100644
> >> --- a/drivers/gpu/drm/i915/display/intel_display_device.c
> >> +++ b/drivers/gpu/drm/i915/display/intel_display_device.c
> >> @@ -20,6 +20,10 @@
> >> __diag_push();
> >> __diag_ignore_all("-Woverride-init", "Allow field initialization overrides for display info");
> >>
> >> +struct platform_desc {
> >> + const struct intel_display_device_info *info;
> >> +};
> >
> > I had to jump to the latest patch to understand why this single item
> > in a new struct... later it makes sense...
>
> Yeah...
>
> >> -#define GEN3_DISPLAY \
> >> +#define GEN3_DISPLAY \
> >
> > I had noticed a trend in all of your recent series, to replace the long tab
> > or space before '\' with a single space. But then here you change the single
> > space to multiple spaces. Intentional?
>
> Accidental.
>
> Emacs wants to indent and align \'s in a specific way, in a nice column
> towards the right. Usually I follow that when adding new stuff manually.
>
> Here, that happened on a line I didn't mean to change.
>
> In the PCI ID patches I intentionally used a single space because I
> scripted the whole thing, and I couldn't be bothered to figure out how
> to align the \'s any other way! :)
As an emacs user I also tend to do that right alignment hitting the 'tab' key.
But I really never care if it is all to the right or all the 1 space.
>
> >> static const struct {
> >> u32 devid;
> >> - const struct intel_display_device_info *info;
> >> + const struct platform_desc *desc;
> >> } intel_display_ids[] = {
> >> - INTEL_I830_IDS(INTEL_DISPLAY_DEVICE, &i830_display),
> >> - INTEL_I845G_IDS(INTEL_DISPLAY_DEVICE, &i845_display),
> >> - INTEL_I85X_IDS(INTEL_DISPLAY_DEVICE, &i85x_display),
> >> - INTEL_I865G_IDS(INTEL_DISPLAY_DEVICE, &i865g_display),
> >> - INTEL_I915G_IDS(INTEL_DISPLAY_DEVICE, &i915g_display),
> >> - INTEL_I915GM_IDS(INTEL_DISPLAY_DEVICE, &i915gm_display),
> >> - INTEL_I945G_IDS(INTEL_DISPLAY_DEVICE, &i945g_display),
> >> - INTEL_I945GM_IDS(INTEL_DISPLAY_DEVICE, &i945gm_display),
> >> - INTEL_I965G_IDS(INTEL_DISPLAY_DEVICE, &i965g_display),
> >> - INTEL_G33_IDS(INTEL_DISPLAY_DEVICE, &g33_display),
> >> - INTEL_I965GM_IDS(INTEL_DISPLAY_DEVICE, &i965gm_display),
> >> - INTEL_GM45_IDS(INTEL_DISPLAY_DEVICE, &gm45_display),
> >> - INTEL_G45_IDS(INTEL_DISPLAY_DEVICE, &g45_display),
> >> - INTEL_PNV_IDS(INTEL_DISPLAY_DEVICE, &pnv_display),
> >> - INTEL_ILK_D_IDS(INTEL_DISPLAY_DEVICE, &ilk_d_display),
> >> - INTEL_ILK_M_IDS(INTEL_DISPLAY_DEVICE, &ilk_m_display),
> >> - INTEL_SNB_IDS(INTEL_DISPLAY_DEVICE, &snb_display),
> >> - INTEL_IVB_IDS(INTEL_DISPLAY_DEVICE, &ivb_display),
> >> - INTEL_HSW_IDS(INTEL_DISPLAY_DEVICE, &hsw_display),
> >> - INTEL_VLV_IDS(INTEL_DISPLAY_DEVICE, &vlv_display),
> >> - INTEL_BDW_IDS(INTEL_DISPLAY_DEVICE, &bdw_display),
> >> - INTEL_CHV_IDS(INTEL_DISPLAY_DEVICE, &chv_display),
> >> - INTEL_SKL_IDS(INTEL_DISPLAY_DEVICE, &skl_display),
> >> - INTEL_BXT_IDS(INTEL_DISPLAY_DEVICE, &bxt_display),
> >> - INTEL_GLK_IDS(INTEL_DISPLAY_DEVICE, &glk_display),
> >> - INTEL_KBL_IDS(INTEL_DISPLAY_DEVICE, &skl_display),
> >> - INTEL_CFL_IDS(INTEL_DISPLAY_DEVICE, &skl_display),
> >> - INTEL_WHL_IDS(INTEL_DISPLAY_DEVICE, &skl_display),
> >> - INTEL_CML_IDS(INTEL_DISPLAY_DEVICE, &skl_display),
> >> - INTEL_ICL_IDS(INTEL_DISPLAY_DEVICE, &icl_display),
> >> - INTEL_EHL_IDS(INTEL_DISPLAY_DEVICE, &jsl_ehl_display),
> >> - INTEL_JSL_IDS(INTEL_DISPLAY_DEVICE, &jsl_ehl_display),
> >> - INTEL_TGL_IDS(INTEL_DISPLAY_DEVICE, &tgl_display),
> >> - INTEL_DG1_IDS(INTEL_DISPLAY_DEVICE, &dg1_display),
> >> - INTEL_RKL_IDS(INTEL_DISPLAY_DEVICE, &rkl_display),
> >> - INTEL_ADLS_IDS(INTEL_DISPLAY_DEVICE, &adl_s_display),
> >> - INTEL_RPLS_IDS(INTEL_DISPLAY_DEVICE, &adl_s_display),
> >> - INTEL_ADLP_IDS(INTEL_DISPLAY_DEVICE, &xe_lpd_display),
> >> - INTEL_ADLN_IDS(INTEL_DISPLAY_DEVICE, &xe_lpd_display),
> >> - INTEL_RPLU_IDS(INTEL_DISPLAY_DEVICE, &xe_lpd_display),
> >> - INTEL_RPLP_IDS(INTEL_DISPLAY_DEVICE, &xe_lpd_display),
> >> - INTEL_DG2_IDS(INTEL_DISPLAY_DEVICE, &xe_hpd_display),
> >> + INTEL_I830_IDS(INTEL_DISPLAY_DEVICE, &i830_desc),
> >
> > But here is what I'm not sure if I completely understand/agree...
> > before this patch is a display device with a display struct
> > but then it becomes a display device with a platform description
> > but a platform that is not used by the driver...
> >
> > I'm probably missing some later jump there.
>
> Yeah, I did not want to put too much stuff in the same patch. I think
> easier to review this way, though I guess I should've made my intentions
> more clear in the commit message! Also, easy to squash if so desired.
>
> So this one adds the platform descs with just the display struct, and
> later patches add more content in the descs.
yeap, indeed... let's go with this then.
Reviewed-by: Rodrigo Vivi <rodrigo.vivi@intel.com>
>
>
> BR,
> Jani.
>
>
> --
> Jani Nikula, Intel
^ permalink raw reply [flat|nested] 34+ messages in thread
* ✗ Fi.CI.CHECKPATCH: warning for drm/i915: identify all platforms in display probe (rev2)
2024-05-22 17:33 [PATCH 00/10] drm/i915: identify all platforms in display probe Jani Nikula
` (13 preceding siblings ...)
2024-05-23 14:12 ` ✗ Fi.CI.IGT: failure " Patchwork
@ 2024-05-30 10:55 ` Patchwork
2024-05-30 10:55 ` ✗ Fi.CI.SPARSE: " Patchwork
` (3 subsequent siblings)
18 siblings, 0 replies; 34+ messages in thread
From: Patchwork @ 2024-05-30 10:55 UTC (permalink / raw)
To: Jani Nikula; +Cc: intel-gfx
== Series Details ==
Series: drm/i915: identify all platforms in display probe (rev2)
URL : https://patchwork.freedesktop.org/series/133932/
State : warning
== Summary ==
Error: dim checkpatch failed
4a12935c03fe drm/i915/display: move params copy at probe earlier
9e54c7084bb1 drm/i915/display: change probe for no display case
bd215ad1beb8 drm/i915/display: check platforms without display one level higher
b3a37780088e drm/i915/display: change GMD ID display ip ver propagation at probe
99943557591a drm/i915/display: add platform descriptors
-:52: WARNING:LONG_LINE_COMMENT: line length of 104 exceeds 100 columns
#52: FILE: drivers/gpu/drm/i915/display/intel_display_device.c:211:
+ .__runtime_defaults.port_mask = BIT(PORT_A) | BIT(PORT_B) | BIT(PORT_C), /* DVO A/B/C */
-:239: WARNING:LONG_LINE_COMMENT: line length of 117 exceeds 100 columns
#239: FILE: drivers/gpu/drm/i915/display/intel_display_device.c:349:
+ .__runtime_defaults.port_mask = BIT(PORT_B) | BIT(PORT_C) | BIT(PORT_D), /* SDVO/HDMI/DP B/C, DP D */
-:253: WARNING:LONG_LINE_COMMENT: line length of 117 exceeds 100 columns
#253: FILE: drivers/gpu/drm/i915/display/intel_display_device.c:358:
+ .__runtime_defaults.port_mask = BIT(PORT_B) | BIT(PORT_C) | BIT(PORT_D), /* SDVO/HDMI/DP B/C, DP D */
-:303: WARNING:LONG_LINE: line length of 142 exceeds 100 columns
#303: FILE: drivers/gpu/drm/i915/display/intel_display_device.c:400:
+ .__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 */
-:329: WARNING:LONG_LINE: line length of 142 exceeds 100 columns
#329: FILE: drivers/gpu/drm/i915/display/intel_display_device.c:416:
+ .__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 */
-:396: WARNING:LONG_LINE: line length of 116 exceeds 100 columns
#396: FILE: drivers/gpu/drm/i915/display/intel_display_device.c:455:
+ .__runtime_defaults.port_mask = BIT(PORT_A) | BIT(PORT_B) | BIT(PORT_C) | BIT(PORT_D) | BIT(PORT_E),
-:434: WARNING:LONG_LINE: line length of 116 exceeds 100 columns
#434: FILE: drivers/gpu/drm/i915/display/intel_display_device.c:477:
+ .__runtime_defaults.port_mask = BIT(PORT_A) | BIT(PORT_B) | BIT(PORT_C) | BIT(PORT_D) | BIT(PORT_E),
-:464: WARNING:LONG_LINE_COMMENT: line length of 108 exceeds 100 columns
#464: FILE: drivers/gpu/drm/i915/display/intel_display_device.c:495:
+ .__runtime_defaults.port_mask = BIT(PORT_B) | BIT(PORT_C) | BIT(PORT_D), /* HDMI/DP B/C/D */
-:546: WARNING:LONG_LINE: line length of 116 exceeds 100 columns
#546: FILE: drivers/gpu/drm/i915/display/intel_display_device.c:627:
+ .__runtime_defaults.port_mask = BIT(PORT_A) | BIT(PORT_B) | BIT(PORT_C) | BIT(PORT_D) | BIT(PORT_E),
total: 0 errors, 9 warnings, 0 checks, 728 lines checked
589b6c2dd52b drm/i915: add LNL PCI IDs
-:23: ERROR:COMPLEX_MACRO: Macros with complex values should be enclosed in parentheses
#23: FILE: include/drm/i915_pciids.h:787:
+#define INTEL_LNL_IDS(MACRO__, ...) \
+ MACRO__(0x6420, ## __VA_ARGS__), \
+ MACRO__(0x64A0, ## __VA_ARGS__), \
+ MACRO__(0x64B0, ## __VA_ARGS__)
-:23: CHECK:MACRO_ARG_REUSE: Macro argument reuse 'MACRO__' - possible side-effects?
#23: FILE: include/drm/i915_pciids.h:787:
+#define INTEL_LNL_IDS(MACRO__, ...) \
+ MACRO__(0x6420, ## __VA_ARGS__), \
+ MACRO__(0x64A0, ## __VA_ARGS__), \
+ MACRO__(0x64B0, ## __VA_ARGS__)
total: 1 errors, 0 warnings, 1 checks, 10 lines checked
71eb16357c7d drm/i915/display: change display probe to identify GMD ID based platforms
-:109: ERROR:CODE_INDENT: code indent should use tabs where possible
#109: FILE: drivers/gpu/drm/i915/display/intel_display_device.c:1044:
+ if (!info)$
-:109: WARNING:LEADING_SPACE: please, no spaces at the start of a line
#109: FILE: drivers/gpu/drm/i915/display/intel_display_device.c:1044:
+ if (!info)$
total: 1 errors, 1 warnings, 0 checks, 89 lines checked
8839f6e91bef drm/i915/display: identify platforms with enum and name
d695d60f1e8c drm/i915/display: add support for subplatforms
241f1aaa977b drm/i915/display: add probe message
^ permalink raw reply [flat|nested] 34+ messages in thread
* ✗ Fi.CI.SPARSE: warning for drm/i915: identify all platforms in display probe (rev2)
2024-05-22 17:33 [PATCH 00/10] drm/i915: identify all platforms in display probe Jani Nikula
` (14 preceding siblings ...)
2024-05-30 10:55 ` ✗ Fi.CI.CHECKPATCH: warning for drm/i915: identify all platforms in display probe (rev2) Patchwork
@ 2024-05-30 10:55 ` Patchwork
2024-05-30 11:04 ` ✓ Fi.CI.BAT: success " Patchwork
` (2 subsequent siblings)
18 siblings, 0 replies; 34+ messages in thread
From: Patchwork @ 2024-05-30 10:55 UTC (permalink / raw)
To: Jani Nikula; +Cc: intel-gfx
== Series Details ==
Series: drm/i915: identify all platforms in display probe (rev2)
URL : https://patchwork.freedesktop.org/series/133932/
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] 34+ messages in thread
* ✓ Fi.CI.BAT: success for drm/i915: identify all platforms in display probe (rev2)
2024-05-22 17:33 [PATCH 00/10] drm/i915: identify all platforms in display probe Jani Nikula
` (15 preceding siblings ...)
2024-05-30 10:55 ` ✗ Fi.CI.SPARSE: " Patchwork
@ 2024-05-30 11:04 ` Patchwork
2024-05-31 1:57 ` ✗ Fi.CI.IGT: failure " Patchwork
2024-05-31 8:28 ` [PATCH 00/10] drm/i915: identify all platforms in display probe Jani Nikula
18 siblings, 0 replies; 34+ messages in thread
From: Patchwork @ 2024-05-30 11:04 UTC (permalink / raw)
To: Jani Nikula; +Cc: intel-gfx
[-- Attachment #1: Type: text/plain, Size: 4144 bytes --]
== Series Details ==
Series: drm/i915: identify all platforms in display probe (rev2)
URL : https://patchwork.freedesktop.org/series/133932/
State : success
== Summary ==
CI Bug Log - changes from CI_DRM_14849 -> Patchwork_133932v2
====================================================
Summary
-------
**SUCCESS**
No regressions found.
External URL: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133932v2/index.html
Participating hosts (42 -> 38)
------------------------------
Additional (1): fi-glk-j4005
Missing (5): fi-kbl-7567u bat-kbl-2 fi-cfl-8109u bat-atsm-1 bat-jsl-3
Known issues
------------
Here are the changes found in Patchwork_133932v2 that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@gem_huc_copy@huc-copy:
- fi-glk-j4005: NOTRUN -> [SKIP][1] ([i915#2190])
[1]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133932v2/fi-glk-j4005/igt@gem_huc_copy@huc-copy.html
* igt@gem_lmem_swapping@basic:
- fi-glk-j4005: NOTRUN -> [SKIP][2] ([i915#4613]) +3 other tests skip
[2]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133932v2/fi-glk-j4005/igt@gem_lmem_swapping@basic.html
* igt@gem_lmem_swapping@basic@lmem0:
- bat-dg2-9: [PASS][3] -> [FAIL][4] ([i915#10378])
[3]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14849/bat-dg2-9/igt@gem_lmem_swapping@basic@lmem0.html
[4]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133932v2/bat-dg2-9/igt@gem_lmem_swapping@basic@lmem0.html
* igt@i915_selftest@live@guc_hang:
- bat-arls-3: [PASS][5] -> [DMESG-FAIL][6] ([i915#10262]) +13 other tests dmesg-fail
[5]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14849/bat-arls-3/igt@i915_selftest@live@guc_hang.html
[6]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133932v2/bat-arls-3/igt@i915_selftest@live@guc_hang.html
* igt@i915_selftest@live@hugepages:
- bat-arls-3: [PASS][7] -> [DMESG-WARN][8] ([i915#10341])
[7]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14849/bat-arls-3/igt@i915_selftest@live@hugepages.html
[8]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133932v2/bat-arls-3/igt@i915_selftest@live@hugepages.html
* igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic:
- fi-glk-j4005: NOTRUN -> [SKIP][9] +10 other tests skip
[9]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133932v2/fi-glk-j4005/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic.html
#### Possible fixes ####
* igt@i915_module_load@load:
- bat-dg2-8: [DMESG-WARN][10] ([i915#10014]) -> [PASS][11]
[10]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14849/bat-dg2-8/igt@i915_module_load@load.html
[11]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133932v2/bat-dg2-8/igt@i915_module_load@load.html
{name}: This element is suppressed. This means it is ignored when computing
the status of the difference (SUCCESS, WARNING, or FAILURE).
[i915#10014]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10014
[i915#10262]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10262
[i915#10341]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10341
[i915#10378]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10378
[i915#11199]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11199
[i915#11217]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11217
[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_14849 -> Patchwork_133932v2
CI-20190529: 20190529
CI_DRM_14849: 55d6179b96e0390025f2ba101c03b94b50cab7a1 @ git://anongit.freedesktop.org/gfx-ci/linux
IGT_7873: b9bcded9123ac56ce05748de6c4870fb49451b87 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
Patchwork_133932v2: 55d6179b96e0390025f2ba101c03b94b50cab7a1 @ git://anongit.freedesktop.org/gfx-ci/linux
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133932v2/index.html
[-- Attachment #2: Type: text/html, Size: 4762 bytes --]
^ permalink raw reply [flat|nested] 34+ messages in thread
* ✗ Fi.CI.IGT: failure for drm/i915: identify all platforms in display probe (rev2)
2024-05-22 17:33 [PATCH 00/10] drm/i915: identify all platforms in display probe Jani Nikula
` (16 preceding siblings ...)
2024-05-30 11:04 ` ✓ Fi.CI.BAT: success " Patchwork
@ 2024-05-31 1:57 ` Patchwork
2024-05-31 8:28 ` [PATCH 00/10] drm/i915: identify all platforms in display probe Jani Nikula
18 siblings, 0 replies; 34+ messages in thread
From: Patchwork @ 2024-05-31 1:57 UTC (permalink / raw)
To: Jani Nikula; +Cc: intel-gfx
[-- Attachment #1: Type: text/plain, Size: 82008 bytes --]
== Series Details ==
Series: drm/i915: identify all platforms in display probe (rev2)
URL : https://patchwork.freedesktop.org/series/133932/
State : failure
== Summary ==
CI Bug Log - changes from CI_DRM_14849_full -> Patchwork_133932v2_full
====================================================
Summary
-------
**FAILURE**
Serious unknown changes coming with Patchwork_133932v2_full absolutely need to be
verified manually.
If you think the reported changes have nothing to do with the changes
introduced in Patchwork_133932v2_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 -> 10)
------------------------------
Additional (1): shard-snb-0
Possible new issues
-------------------
Here are the unknown changes that may have been introduced in Patchwork_133932v2_full:
### IGT changes ###
#### Possible regressions ####
* igt@kms_frontbuffer_tracking@fbc-1p-primscrn-cur-indfb-draw-blt:
- shard-dg1: NOTRUN -> [INCOMPLETE][1]
[1]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133932v2/shard-dg1-18/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-cur-indfb-draw-blt.html
Known issues
------------
Here are the changes found in Patchwork_133932v2_full that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@api_intel_bb@object-reloc-purge-cache:
- shard-rkl: NOTRUN -> [SKIP][2] ([i915#8411])
[2]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133932v2/shard-rkl-3/igt@api_intel_bb@object-reloc-purge-cache.html
* igt@device_reset@cold-reset-bound:
- shard-mtlp: NOTRUN -> [SKIP][3] ([i915#11078])
[3]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133932v2/shard-mtlp-8/igt@device_reset@cold-reset-bound.html
* igt@drm_fdinfo@isolation@vecs0:
- shard-dg1: NOTRUN -> [SKIP][4] ([i915#8414]) +10 other tests skip
[4]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133932v2/shard-dg1-16/igt@drm_fdinfo@isolation@vecs0.html
* igt@drm_fdinfo@virtual-busy-all:
- shard-mtlp: NOTRUN -> [SKIP][5] ([i915#8414])
[5]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133932v2/shard-mtlp-1/igt@drm_fdinfo@virtual-busy-all.html
* igt@gem_caching@writes:
- shard-mtlp: NOTRUN -> [SKIP][6] ([i915#4873])
[6]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133932v2/shard-mtlp-1/igt@gem_caching@writes.html
* igt@gem_ccs@block-multicopy-inplace:
- shard-rkl: NOTRUN -> [SKIP][7] ([i915#3555] / [i915#9323])
[7]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133932v2/shard-rkl-4/igt@gem_ccs@block-multicopy-inplace.html
* igt@gem_ccs@suspend-resume:
- shard-rkl: NOTRUN -> [SKIP][8] ([i915#9323]) +1 other test skip
[8]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133932v2/shard-rkl-4/igt@gem_ccs@suspend-resume.html
- shard-dg1: NOTRUN -> [SKIP][9] ([i915#9323])
[9]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133932v2/shard-dg1-18/igt@gem_ccs@suspend-resume.html
* igt@gem_create@create-ext-set-pat:
- shard-rkl: NOTRUN -> [SKIP][10] ([i915#8562])
[10]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133932v2/shard-rkl-4/igt@gem_create@create-ext-set-pat.html
- shard-dg1: NOTRUN -> [SKIP][11] ([i915#8562])
[11]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133932v2/shard-dg1-18/igt@gem_create@create-ext-set-pat.html
* igt@gem_ctx_persistence@heartbeat-close:
- shard-mtlp: NOTRUN -> [SKIP][12] ([i915#8555])
[12]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133932v2/shard-mtlp-1/igt@gem_ctx_persistence@heartbeat-close.html
* igt@gem_ctx_persistence@heartbeat-many:
- shard-dg1: NOTRUN -> [SKIP][13] ([i915#8555]) +1 other test skip
[13]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133932v2/shard-dg1-18/igt@gem_ctx_persistence@heartbeat-many.html
* igt@gem_ctx_persistence@processes:
- shard-snb: NOTRUN -> [SKIP][14] ([i915#1099])
[14]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133932v2/shard-snb2/igt@gem_ctx_persistence@processes.html
* igt@gem_eio@kms:
- shard-tglu: [PASS][15] -> [INCOMPLETE][16] ([i915#10513])
[15]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14849/shard-tglu-9/igt@gem_eio@kms.html
[16]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133932v2/shard-tglu-4/igt@gem_eio@kms.html
* igt@gem_exec_balancer@bonded-false-hang:
- shard-dg1: NOTRUN -> [SKIP][17] ([i915#4812]) +1 other test skip
[17]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133932v2/shard-dg1-16/igt@gem_exec_balancer@bonded-false-hang.html
* igt@gem_exec_balancer@hog:
- shard-dg2: NOTRUN -> [SKIP][18] ([i915#4812])
[18]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133932v2/shard-dg2-5/igt@gem_exec_balancer@hog.html
* igt@gem_exec_balancer@invalid-bonds:
- shard-dg1: NOTRUN -> [SKIP][19] ([i915#4036])
[19]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133932v2/shard-dg1-17/igt@gem_exec_balancer@invalid-bonds.html
* igt@gem_exec_balancer@parallel-balancer:
- shard-rkl: NOTRUN -> [SKIP][20] ([i915#4525]) +1 other test skip
[20]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133932v2/shard-rkl-4/igt@gem_exec_balancer@parallel-balancer.html
* igt@gem_exec_capture@many-4k-incremental:
- shard-glk: NOTRUN -> [FAIL][21] ([i915#9606]) +1 other test fail
[21]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133932v2/shard-glk5/igt@gem_exec_capture@many-4k-incremental.html
* igt@gem_exec_fair@basic-none-rrul@rcs0:
- shard-tglu: NOTRUN -> [FAIL][22] ([i915#2842])
[22]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133932v2/shard-tglu-3/igt@gem_exec_fair@basic-none-rrul@rcs0.html
* igt@gem_exec_fair@basic-none-share:
- shard-dg1: NOTRUN -> [SKIP][23] ([i915#3539] / [i915#4852]) +3 other tests skip
[23]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133932v2/shard-dg1-17/igt@gem_exec_fair@basic-none-share.html
* igt@gem_exec_fair@basic-none@bcs0:
- shard-rkl: [PASS][24] -> [FAIL][25] ([i915#2842]) +1 other test fail
[24]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14849/shard-rkl-4/igt@gem_exec_fair@basic-none@bcs0.html
[25]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133932v2/shard-rkl-2/igt@gem_exec_fair@basic-none@bcs0.html
* igt@gem_exec_fair@basic-pace-share@rcs0:
- shard-rkl: NOTRUN -> [FAIL][26] ([i915#2842])
[26]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133932v2/shard-rkl-3/igt@gem_exec_fair@basic-pace-share@rcs0.html
* igt@gem_exec_fair@basic-pace-solo@rcs0:
- shard-tglu: [PASS][27] -> [FAIL][28] ([i915#2842])
[27]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14849/shard-tglu-10/igt@gem_exec_fair@basic-pace-solo@rcs0.html
[28]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133932v2/shard-tglu-8/igt@gem_exec_fair@basic-pace-solo@rcs0.html
- shard-glk: NOTRUN -> [FAIL][29] ([i915#2842])
[29]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133932v2/shard-glk3/igt@gem_exec_fair@basic-pace-solo@rcs0.html
* igt@gem_exec_reloc@basic-cpu-wc:
- shard-dg1: NOTRUN -> [SKIP][30] ([i915#3281]) +13 other tests skip
[30]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133932v2/shard-dg1-17/igt@gem_exec_reloc@basic-cpu-wc.html
* igt@gem_exec_reloc@basic-gtt-cpu-noreloc:
- shard-mtlp: NOTRUN -> [SKIP][31] ([i915#3281]) +4 other tests skip
[31]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133932v2/shard-mtlp-1/igt@gem_exec_reloc@basic-gtt-cpu-noreloc.html
* igt@gem_exec_reloc@basic-write-read-noreloc:
- shard-rkl: NOTRUN -> [SKIP][32] ([i915#3281]) +10 other tests skip
[32]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133932v2/shard-rkl-3/igt@gem_exec_reloc@basic-write-read-noreloc.html
* igt@gem_exec_schedule@preempt-queue-contexts:
- shard-mtlp: NOTRUN -> [SKIP][33] ([i915#4537] / [i915#4812]) +1 other test skip
[33]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133932v2/shard-mtlp-1/igt@gem_exec_schedule@preempt-queue-contexts.html
* igt@gem_fence_thrash@bo-write-verify-none:
- shard-mtlp: NOTRUN -> [SKIP][34] ([i915#4860])
[34]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133932v2/shard-mtlp-1/igt@gem_fence_thrash@bo-write-verify-none.html
* igt@gem_fence_thrash@bo-write-verify-y:
- shard-dg1: NOTRUN -> [SKIP][35] ([i915#4860]) +1 other test skip
[35]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133932v2/shard-dg1-13/igt@gem_fence_thrash@bo-write-verify-y.html
* igt@gem_fenced_exec_thrash@2-spare-fences:
- shard-dg2: NOTRUN -> [SKIP][36] ([i915#4860])
[36]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133932v2/shard-dg2-8/igt@gem_fenced_exec_thrash@2-spare-fences.html
* igt@gem_lmem_swapping@heavy-verify-multi-ccs@lmem0:
- shard-dg2: [PASS][37] -> [FAIL][38] ([i915#10378]) +1 other test fail
[37]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14849/shard-dg2-10/igt@gem_lmem_swapping@heavy-verify-multi-ccs@lmem0.html
[38]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133932v2/shard-dg2-11/igt@gem_lmem_swapping@heavy-verify-multi-ccs@lmem0.html
* igt@gem_lmem_swapping@heavy-verify-random-ccs:
- shard-rkl: NOTRUN -> [SKIP][39] ([i915#4613]) +3 other tests skip
[39]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133932v2/shard-rkl-4/igt@gem_lmem_swapping@heavy-verify-random-ccs.html
* igt@gem_lmem_swapping@heavy-verify-random-ccs@lmem0:
- shard-dg1: NOTRUN -> [SKIP][40] ([i915#4565]) +1 other test skip
[40]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133932v2/shard-dg1-18/igt@gem_lmem_swapping@heavy-verify-random-ccs@lmem0.html
* igt@gem_lmem_swapping@massive:
- shard-glk: NOTRUN -> [SKIP][41] ([i915#4613]) +1 other test skip
[41]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133932v2/shard-glk3/igt@gem_lmem_swapping@massive.html
* igt@gem_lmem_swapping@parallel-multi:
- shard-tglu: NOTRUN -> [SKIP][42] ([i915#4613])
[42]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133932v2/shard-tglu-3/igt@gem_lmem_swapping@parallel-multi.html
* igt@gem_lmem_swapping@smem-oom:
- shard-mtlp: NOTRUN -> [SKIP][43] ([i915#4613])
[43]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133932v2/shard-mtlp-1/igt@gem_lmem_swapping@smem-oom.html
* igt@gem_lmem_swapping@smem-oom@lmem0:
- shard-dg1: [PASS][44] -> [TIMEOUT][45] ([i915#5493])
[44]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14849/shard-dg1-18/igt@gem_lmem_swapping@smem-oom@lmem0.html
[45]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133932v2/shard-dg1-15/igt@gem_lmem_swapping@smem-oom@lmem0.html
* igt@gem_mmap@bad-offset:
- shard-dg1: NOTRUN -> [SKIP][46] ([i915#4083]) +5 other tests skip
[46]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133932v2/shard-dg1-16/igt@gem_mmap@bad-offset.html
* igt@gem_mmap@short-mmap:
- shard-mtlp: NOTRUN -> [SKIP][47] ([i915#4083]) +3 other tests skip
[47]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133932v2/shard-mtlp-8/igt@gem_mmap@short-mmap.html
* igt@gem_mmap_gtt@basic-small-copy-xy:
- shard-dg1: NOTRUN -> [SKIP][48] ([i915#4077]) +10 other tests skip
[48]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133932v2/shard-dg1-13/igt@gem_mmap_gtt@basic-small-copy-xy.html
* igt@gem_mmap_gtt@coherency:
- shard-mtlp: NOTRUN -> [SKIP][49] ([i915#4077]) +3 other tests skip
[49]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133932v2/shard-mtlp-1/igt@gem_mmap_gtt@coherency.html
* igt@gem_mmap_wc@write-read-distinct:
- shard-dg2: NOTRUN -> [SKIP][50] ([i915#4083])
[50]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133932v2/shard-dg2-5/igt@gem_mmap_wc@write-read-distinct.html
* igt@gem_pread@exhaustion:
- shard-mtlp: NOTRUN -> [SKIP][51] ([i915#3282])
[51]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133932v2/shard-mtlp-8/igt@gem_pread@exhaustion.html
* igt@gem_pread@uncached:
- shard-dg2: NOTRUN -> [SKIP][52] ([i915#3282]) +1 other test skip
[52]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133932v2/shard-dg2-5/igt@gem_pread@uncached.html
* igt@gem_pwrite_snooped:
- shard-dg1: NOTRUN -> [SKIP][53] ([i915#3282]) +3 other tests skip
[53]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133932v2/shard-dg1-16/igt@gem_pwrite_snooped.html
* igt@gem_pxp@create-protected-buffer:
- shard-rkl: NOTRUN -> [SKIP][54] ([i915#4270]) +3 other tests skip
[54]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133932v2/shard-rkl-4/igt@gem_pxp@create-protected-buffer.html
* igt@gem_pxp@reject-modify-context-protection-off-1:
- shard-tglu: NOTRUN -> [SKIP][55] ([i915#4270])
[55]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133932v2/shard-tglu-3/igt@gem_pxp@reject-modify-context-protection-off-1.html
* igt@gem_pxp@reject-modify-context-protection-off-3:
- shard-mtlp: NOTRUN -> [SKIP][56] ([i915#4270])
[56]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133932v2/shard-mtlp-1/igt@gem_pxp@reject-modify-context-protection-off-3.html
* igt@gem_pxp@verify-pxp-execution-after-suspend-resume:
- shard-dg1: NOTRUN -> [SKIP][57] ([i915#4270]) +3 other tests skip
[57]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133932v2/shard-dg1-18/igt@gem_pxp@verify-pxp-execution-after-suspend-resume.html
* igt@gem_render_copy@y-tiled-ccs-to-y-tiled-mc-ccs:
- shard-mtlp: NOTRUN -> [SKIP][58] ([i915#8428]) +1 other test skip
[58]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133932v2/shard-mtlp-8/igt@gem_render_copy@y-tiled-ccs-to-y-tiled-mc-ccs.html
* igt@gem_render_copy@yf-tiled-ccs-to-yf-tiled:
- shard-dg2: NOTRUN -> [SKIP][59] ([i915#5190] / [i915#8428]) +1 other test skip
[59]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133932v2/shard-dg2-5/igt@gem_render_copy@yf-tiled-ccs-to-yf-tiled.html
* igt@gem_set_tiling_vs_blt@untiled-to-tiled:
- shard-dg1: NOTRUN -> [SKIP][60] ([i915#4079])
[60]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133932v2/shard-dg1-17/igt@gem_set_tiling_vs_blt@untiled-to-tiled.html
* igt@gem_softpin@evict-snoop:
- shard-mtlp: NOTRUN -> [SKIP][61] ([i915#4885])
[61]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133932v2/shard-mtlp-8/igt@gem_softpin@evict-snoop.html
* igt@gem_tiled_partial_pwrite_pread@writes:
- shard-rkl: NOTRUN -> [SKIP][62] ([i915#3282]) +3 other tests skip
[62]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133932v2/shard-rkl-3/igt@gem_tiled_partial_pwrite_pread@writes.html
* igt@gem_tiled_pread_basic:
- shard-mtlp: NOTRUN -> [SKIP][63] ([i915#4079]) +1 other test skip
[63]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133932v2/shard-mtlp-1/igt@gem_tiled_pread_basic.html
* igt@gem_userptr_blits@create-destroy-unsync:
- shard-dg2: NOTRUN -> [SKIP][64] ([i915#3297])
[64]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133932v2/shard-dg2-8/igt@gem_userptr_blits@create-destroy-unsync.html
* igt@gem_userptr_blits@forbidden-operations:
- shard-rkl: NOTRUN -> [SKIP][65] ([i915#3282] / [i915#3297])
[65]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133932v2/shard-rkl-4/igt@gem_userptr_blits@forbidden-operations.html
* igt@gem_userptr_blits@map-fixed-invalidate-overlap:
- shard-dg1: NOTRUN -> [SKIP][66] ([i915#3297] / [i915#4880]) +2 other tests skip
[66]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133932v2/shard-dg1-17/igt@gem_userptr_blits@map-fixed-invalidate-overlap.html
* igt@gem_userptr_blits@unsync-unmap-after-close:
- shard-dg1: NOTRUN -> [SKIP][67] ([i915#3297]) +1 other test skip
[67]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133932v2/shard-dg1-13/igt@gem_userptr_blits@unsync-unmap-after-close.html
* igt@gem_userptr_blits@unsync-unmap-cycles:
- shard-rkl: NOTRUN -> [SKIP][68] ([i915#3297]) +1 other test skip
[68]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133932v2/shard-rkl-4/igt@gem_userptr_blits@unsync-unmap-cycles.html
* igt@gen9_exec_parse@allowed-single:
- shard-tglu: NOTRUN -> [SKIP][69] ([i915#2527] / [i915#2856])
[69]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133932v2/shard-tglu-3/igt@gen9_exec_parse@allowed-single.html
* igt@gen9_exec_parse@bb-oversize:
- shard-rkl: NOTRUN -> [SKIP][70] ([i915#2527]) +1 other test skip
[70]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133932v2/shard-rkl-2/igt@gen9_exec_parse@bb-oversize.html
- shard-mtlp: NOTRUN -> [SKIP][71] ([i915#2856])
[71]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133932v2/shard-mtlp-1/igt@gen9_exec_parse@bb-oversize.html
* igt@gen9_exec_parse@bb-start-cmd:
- shard-dg2: NOTRUN -> [SKIP][72] ([i915#2856]) +1 other test skip
[72]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133932v2/shard-dg2-8/igt@gen9_exec_parse@bb-start-cmd.html
* igt@gen9_exec_parse@unaligned-access:
- shard-dg1: NOTRUN -> [SKIP][73] ([i915#2527]) +2 other tests skip
[73]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133932v2/shard-dg1-17/igt@gen9_exec_parse@unaligned-access.html
* igt@i915_fb_tiling:
- shard-dg1: NOTRUN -> [SKIP][74] ([i915#4881])
[74]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133932v2/shard-dg1-16/igt@i915_fb_tiling.html
* igt@i915_module_load@load:
- shard-glk: NOTRUN -> [SKIP][75] ([i915#6227])
[75]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133932v2/shard-glk3/igt@i915_module_load@load.html
* igt@i915_module_load@reload-with-fault-injection:
- shard-snb: [PASS][76] -> [INCOMPLETE][77] ([i915#9849])
[76]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14849/shard-snb7/igt@i915_module_load@reload-with-fault-injection.html
[77]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133932v2/shard-snb6/igt@i915_module_load@reload-with-fault-injection.html
- shard-dg2: [PASS][78] -> [ABORT][79] ([i915#9820])
[78]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14849/shard-dg2-3/igt@i915_module_load@reload-with-fault-injection.html
[79]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133932v2/shard-dg2-8/igt@i915_module_load@reload-with-fault-injection.html
* igt@i915_module_load@resize-bar:
- shard-rkl: NOTRUN -> [SKIP][80] ([i915#6412])
[80]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133932v2/shard-rkl-3/igt@i915_module_load@resize-bar.html
* igt@i915_pm_rps@min-max-config-loaded:
- shard-dg2: NOTRUN -> [SKIP][81] ([i915#6621])
[81]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133932v2/shard-dg2-5/igt@i915_pm_rps@min-max-config-loaded.html
* igt@i915_pm_rps@reset:
- shard-snb: [PASS][82] -> [INCOMPLETE][83] ([i915#7790])
[82]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14849/shard-snb6/igt@i915_pm_rps@reset.html
[83]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133932v2/shard-snb5/igt@i915_pm_rps@reset.html
* igt@i915_pm_rps@thresholds-idle@gt0:
- shard-dg1: NOTRUN -> [SKIP][84] ([i915#8925])
[84]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133932v2/shard-dg1-13/igt@i915_pm_rps@thresholds-idle@gt0.html
* igt@i915_pm_rps@thresholds@gt0:
- shard-mtlp: NOTRUN -> [SKIP][85] ([i915#8925])
[85]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133932v2/shard-mtlp-8/igt@i915_pm_rps@thresholds@gt0.html
* igt@i915_pm_rps@thresholds@gt1:
- shard-mtlp: NOTRUN -> [SKIP][86] ([i915#3555] / [i915#8925])
[86]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133932v2/shard-mtlp-8/igt@i915_pm_rps@thresholds@gt1.html
* igt@i915_pm_sseu@full-enable:
- shard-rkl: NOTRUN -> [SKIP][87] ([i915#4387])
[87]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133932v2/shard-rkl-4/igt@i915_pm_sseu@full-enable.html
* igt@i915_selftest@mock@memory_region:
- shard-rkl: NOTRUN -> [DMESG-WARN][88] ([i915#9311])
[88]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133932v2/shard-rkl-2/igt@i915_selftest@mock@memory_region.html
- shard-mtlp: NOTRUN -> [DMESG-WARN][89] ([i915#9311])
[89]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133932v2/shard-mtlp-1/igt@i915_selftest@mock@memory_region.html
* igt@kms_addfb_basic@framebuffer-vs-set-tiling:
- shard-dg2: NOTRUN -> [SKIP][90] ([i915#4212])
[90]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133932v2/shard-dg2-5/igt@kms_addfb_basic@framebuffer-vs-set-tiling.html
* igt@kms_async_flips@async-flip-with-page-flip-events@pipe-c-hdmi-a-1-4-mc-ccs:
- shard-dg2: NOTRUN -> [SKIP][91] ([i915#8709]) +11 other tests skip
[91]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133932v2/shard-dg2-8/igt@kms_async_flips@async-flip-with-page-flip-events@pipe-c-hdmi-a-1-4-mc-ccs.html
* igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels:
- shard-glk: NOTRUN -> [SKIP][92] ([i915#1769])
[92]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133932v2/shard-glk5/igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels.html
* igt@kms_atomic_transition@plane-all-modeset-transition-internal-panels:
- shard-rkl: NOTRUN -> [SKIP][93] ([i915#1769] / [i915#3555])
[93]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133932v2/shard-rkl-4/igt@kms_atomic_transition@plane-all-modeset-transition-internal-panels.html
- shard-dg1: NOTRUN -> [SKIP][94] ([i915#1769] / [i915#3555])
[94]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133932v2/shard-dg1-18/igt@kms_atomic_transition@plane-all-modeset-transition-internal-panels.html
* igt@kms_big_fb@4-tiled-8bpp-rotate-90:
- shard-tglu: NOTRUN -> [SKIP][95] ([i915#5286]) +1 other test skip
[95]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133932v2/shard-tglu-3/igt@kms_big_fb@4-tiled-8bpp-rotate-90.html
* igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-hflip:
- shard-rkl: NOTRUN -> [SKIP][96] ([i915#5286]) +3 other tests skip
[96]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133932v2/shard-rkl-2/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-hflip.html
* igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-async-flip:
- shard-dg1: NOTRUN -> [SKIP][97] ([i915#4538] / [i915#5286]) +3 other tests skip
[97]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133932v2/shard-dg1-13/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-async-flip.html
* igt@kms_big_fb@y-tiled-32bpp-rotate-180:
- shard-mtlp: NOTRUN -> [SKIP][98] +8 other tests skip
[98]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133932v2/shard-mtlp-8/igt@kms_big_fb@y-tiled-32bpp-rotate-180.html
* igt@kms_big_fb@y-tiled-64bpp-rotate-270:
- shard-rkl: NOTRUN -> [SKIP][99] ([i915#3638]) +3 other tests skip
[99]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133932v2/shard-rkl-4/igt@kms_big_fb@y-tiled-64bpp-rotate-270.html
* igt@kms_big_fb@y-tiled-64bpp-rotate-90:
- shard-dg1: NOTRUN -> [SKIP][100] ([i915#3638]) +2 other tests skip
[100]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133932v2/shard-dg1-13/igt@kms_big_fb@y-tiled-64bpp-rotate-90.html
* igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-180-hflip-async-flip:
- shard-dg2: NOTRUN -> [SKIP][101] ([i915#4538] / [i915#5190]) +1 other test skip
[101]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133932v2/shard-dg2-5/igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-180-hflip-async-flip.html
* igt@kms_big_fb@yf-tiled-addfb-size-overflow:
- shard-dg2: NOTRUN -> [SKIP][102] ([i915#5190]) +1 other test skip
[102]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133932v2/shard-dg2-8/igt@kms_big_fb@yf-tiled-addfb-size-overflow.html
* igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-180:
- shard-dg1: NOTRUN -> [SKIP][103] ([i915#4538]) +1 other test skip
[103]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133932v2/shard-dg1-16/igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-180.html
* igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-180-hflip:
- shard-tglu: NOTRUN -> [SKIP][104] +24 other tests skip
[104]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133932v2/shard-tglu-3/igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-180-hflip.html
* igt@kms_big_joiner@basic-force-joiner:
- shard-dg1: NOTRUN -> [SKIP][105] ([i915#10656])
[105]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133932v2/shard-dg1-16/igt@kms_big_joiner@basic-force-joiner.html
* igt@kms_big_joiner@invalid-modeset:
- shard-dg2: NOTRUN -> [SKIP][106] ([i915#10656])
[106]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133932v2/shard-dg2-5/igt@kms_big_joiner@invalid-modeset.html
* igt@kms_ccs@bad-rotation-90-4-tiled-dg2-mc-ccs@pipe-c-hdmi-a-1:
- shard-tglu: NOTRUN -> [SKIP][107] ([i915#6095]) +11 other tests skip
[107]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133932v2/shard-tglu-3/igt@kms_ccs@bad-rotation-90-4-tiled-dg2-mc-ccs@pipe-c-hdmi-a-1.html
* igt@kms_ccs@ccs-on-another-bo-y-tiled-ccs@pipe-b-hdmi-a-1:
- shard-dg2: NOTRUN -> [SKIP][108] ([i915#10307] / [i915#6095]) +134 other tests skip
[108]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133932v2/shard-dg2-8/igt@kms_ccs@ccs-on-another-bo-y-tiled-ccs@pipe-b-hdmi-a-1.html
* igt@kms_ccs@crc-primary-rotation-180-4-tiled-dg2-mc-ccs@pipe-b-hdmi-a-1:
- shard-rkl: NOTRUN -> [SKIP][109] ([i915#6095]) +89 other tests skip
[109]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133932v2/shard-rkl-2/igt@kms_ccs@crc-primary-rotation-180-4-tiled-dg2-mc-ccs@pipe-b-hdmi-a-1.html
* igt@kms_ccs@crc-primary-rotation-180-4-tiled-dg2-mc-ccs@pipe-c-edp-1:
- shard-mtlp: NOTRUN -> [SKIP][110] ([i915#6095]) +23 other tests skip
[110]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133932v2/shard-mtlp-1/igt@kms_ccs@crc-primary-rotation-180-4-tiled-dg2-mc-ccs@pipe-c-edp-1.html
* igt@kms_ccs@missing-ccs-buffer-y-tiled-ccs@pipe-d-hdmi-a-1:
- shard-dg2: NOTRUN -> [SKIP][111] ([i915#10307] / [i915#10434] / [i915#6095]) +4 other tests skip
[111]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133932v2/shard-dg2-8/igt@kms_ccs@missing-ccs-buffer-y-tiled-ccs@pipe-d-hdmi-a-1.html
* igt@kms_ccs@random-ccs-data-4-tiled-mtl-mc-ccs@pipe-d-hdmi-a-3:
- shard-dg1: NOTRUN -> [SKIP][112] ([i915#6095]) +75 other tests skip
[112]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133932v2/shard-dg1-13/igt@kms_ccs@random-ccs-data-4-tiled-mtl-mc-ccs@pipe-d-hdmi-a-3.html
* igt@kms_ccs@random-ccs-data-4-tiled-xe2-ccs:
- shard-mtlp: NOTRUN -> [SKIP][113] ([i915#10278])
[113]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133932v2/shard-mtlp-1/igt@kms_ccs@random-ccs-data-4-tiled-xe2-ccs.html
- shard-rkl: NOTRUN -> [SKIP][114] ([i915#10278])
[114]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133932v2/shard-rkl-2/igt@kms_ccs@random-ccs-data-4-tiled-xe2-ccs.html
* igt@kms_cdclk@mode-transition:
- shard-glk: NOTRUN -> [SKIP][115] +253 other tests skip
[115]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133932v2/shard-glk6/igt@kms_cdclk@mode-transition.html
* igt@kms_cdclk@plane-scaling:
- shard-rkl: NOTRUN -> [SKIP][116] ([i915#3742])
[116]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133932v2/shard-rkl-4/igt@kms_cdclk@plane-scaling.html
* igt@kms_chamelium_audio@dp-audio:
- shard-tglu: NOTRUN -> [SKIP][117] ([i915#7828]) +2 other tests skip
[117]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133932v2/shard-tglu-3/igt@kms_chamelium_audio@dp-audio.html
* igt@kms_chamelium_audio@hdmi-audio:
- shard-rkl: NOTRUN -> [SKIP][118] ([i915#7828]) +7 other tests skip
[118]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133932v2/shard-rkl-3/igt@kms_chamelium_audio@hdmi-audio.html
* igt@kms_chamelium_frames@dp-crc-fast:
- shard-dg2: NOTRUN -> [SKIP][119] ([i915#7828]) +1 other test skip
[119]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133932v2/shard-dg2-5/igt@kms_chamelium_frames@dp-crc-fast.html
* igt@kms_chamelium_hpd@hdmi-hpd-for-each-pipe:
- shard-mtlp: NOTRUN -> [SKIP][120] ([i915#7828]) +3 other tests skip
[120]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133932v2/shard-mtlp-1/igt@kms_chamelium_hpd@hdmi-hpd-for-each-pipe.html
* igt@kms_chamelium_hpd@hdmi-hpd-storm-disable:
- shard-dg1: NOTRUN -> [SKIP][121] ([i915#7828]) +7 other tests skip
[121]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133932v2/shard-dg1-18/igt@kms_chamelium_hpd@hdmi-hpd-storm-disable.html
* igt@kms_content_protection@dp-mst-lic-type-1:
- shard-rkl: NOTRUN -> [SKIP][122] ([i915#3116]) +1 other test skip
[122]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133932v2/shard-rkl-3/igt@kms_content_protection@dp-mst-lic-type-1.html
* igt@kms_content_protection@dp-mst-type-0:
- shard-dg1: NOTRUN -> [SKIP][123] ([i915#3299]) +1 other test skip
[123]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133932v2/shard-dg1-13/igt@kms_content_protection@dp-mst-type-0.html
* igt@kms_content_protection@lic-type-0@pipe-a-dp-4:
- shard-dg2: NOTRUN -> [TIMEOUT][124] ([i915#7173]) +1 other test timeout
[124]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133932v2/shard-dg2-11/igt@kms_content_protection@lic-type-0@pipe-a-dp-4.html
* igt@kms_content_protection@uevent:
- shard-rkl: NOTRUN -> [SKIP][125] ([i915#7118] / [i915#9424]) +1 other test skip
[125]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133932v2/shard-rkl-3/igt@kms_content_protection@uevent.html
* igt@kms_cursor_crc@cursor-onscreen-32x10:
- shard-mtlp: NOTRUN -> [SKIP][126] ([i915#3555] / [i915#8814])
[126]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133932v2/shard-mtlp-1/igt@kms_cursor_crc@cursor-onscreen-32x10.html
* igt@kms_cursor_crc@cursor-onscreen-512x170:
- shard-dg1: NOTRUN -> [SKIP][127] ([i915#3359])
[127]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133932v2/shard-dg1-17/igt@kms_cursor_crc@cursor-onscreen-512x170.html
* igt@kms_cursor_crc@cursor-random-32x10:
- shard-tglu: NOTRUN -> [SKIP][128] ([i915#3555])
[128]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133932v2/shard-tglu-3/igt@kms_cursor_crc@cursor-random-32x10.html
* igt@kms_cursor_crc@cursor-rapid-movement-32x10:
- shard-rkl: NOTRUN -> [SKIP][129] ([i915#3555]) +8 other tests skip
[129]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133932v2/shard-rkl-4/igt@kms_cursor_crc@cursor-rapid-movement-32x10.html
* igt@kms_cursor_crc@cursor-rapid-movement-64x21:
- shard-mtlp: NOTRUN -> [SKIP][130] ([i915#8814])
[130]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133932v2/shard-mtlp-8/igt@kms_cursor_crc@cursor-rapid-movement-64x21.html
* igt@kms_cursor_crc@cursor-sliding-512x170:
- shard-mtlp: NOTRUN -> [SKIP][131] ([i915#3359])
[131]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133932v2/shard-mtlp-8/igt@kms_cursor_crc@cursor-sliding-512x170.html
* igt@kms_cursor_legacy@2x-long-cursor-vs-flip-atomic:
- shard-mtlp: NOTRUN -> [SKIP][132] ([i915#9809]) +1 other test skip
[132]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133932v2/shard-mtlp-8/igt@kms_cursor_legacy@2x-long-cursor-vs-flip-atomic.html
* igt@kms_cursor_legacy@2x-long-flip-vs-cursor-atomic:
- shard-dg2: NOTRUN -> [SKIP][133] ([i915#5354]) +5 other tests skip
[133]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133932v2/shard-dg2-5/igt@kms_cursor_legacy@2x-long-flip-vs-cursor-atomic.html
* igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic:
- shard-mtlp: NOTRUN -> [SKIP][134] ([i915#4213])
[134]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133932v2/shard-mtlp-1/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic.html
- shard-rkl: NOTRUN -> [SKIP][135] ([i915#4103])
[135]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133932v2/shard-rkl-2/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic.html
* igt@kms_cursor_legacy@modeset-atomic-cursor-hotspot:
- shard-dg1: NOTRUN -> [SKIP][136] ([i915#9067])
[136]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133932v2/shard-dg1-13/igt@kms_cursor_legacy@modeset-atomic-cursor-hotspot.html
* igt@kms_dirtyfb@fbc-dirtyfb-ioctl@a-hdmi-a-2:
- shard-rkl: NOTRUN -> [SKIP][137] ([i915#9723])
[137]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133932v2/shard-rkl-3/igt@kms_dirtyfb@fbc-dirtyfb-ioctl@a-hdmi-a-2.html
* igt@kms_dirtyfb@fbc-dirtyfb-ioctl@a-hdmi-a-3:
- shard-dg1: NOTRUN -> [SKIP][138] ([i915#9723])
[138]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133932v2/shard-dg1-13/igt@kms_dirtyfb@fbc-dirtyfb-ioctl@a-hdmi-a-3.html
* igt@kms_display_modes@mst-extended-mode-negative:
- shard-dg1: NOTRUN -> [SKIP][139] ([i915#8588])
[139]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133932v2/shard-dg1-16/igt@kms_display_modes@mst-extended-mode-negative.html
* igt@kms_dither@fb-8bpc-vs-panel-6bpc@pipe-a-hdmi-a-1:
- shard-rkl: NOTRUN -> [SKIP][140] ([i915#3804])
[140]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133932v2/shard-rkl-5/igt@kms_dither@fb-8bpc-vs-panel-6bpc@pipe-a-hdmi-a-1.html
* igt@kms_dither@fb-8bpc-vs-panel-8bpc:
- shard-dg2: NOTRUN -> [SKIP][141] ([i915#3555]) +1 other test skip
[141]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133932v2/shard-dg2-8/igt@kms_dither@fb-8bpc-vs-panel-8bpc.html
* igt@kms_dp_aux_dev:
- shard-rkl: NOTRUN -> [SKIP][142] ([i915#1257])
[142]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133932v2/shard-rkl-2/igt@kms_dp_aux_dev.html
* igt@kms_dsc@dsc-basic:
- shard-rkl: NOTRUN -> [SKIP][143] ([i915#3555] / [i915#3840]) +1 other test skip
[143]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133932v2/shard-rkl-3/igt@kms_dsc@dsc-basic.html
* igt@kms_dsc@dsc-fractional-bpp:
- shard-dg1: NOTRUN -> [SKIP][144] ([i915#3840])
[144]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133932v2/shard-dg1-13/igt@kms_dsc@dsc-fractional-bpp.html
* igt@kms_dsc@dsc-with-bpc:
- shard-dg1: NOTRUN -> [SKIP][145] ([i915#3555] / [i915#3840])
[145]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133932v2/shard-dg1-17/igt@kms_dsc@dsc-with-bpc.html
* igt@kms_dsc@dsc-with-output-formats-with-bpc:
- shard-dg1: NOTRUN -> [SKIP][146] ([i915#3840] / [i915#9053])
[146]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133932v2/shard-dg1-16/igt@kms_dsc@dsc-with-output-formats-with-bpc.html
* igt@kms_feature_discovery@chamelium:
- shard-mtlp: NOTRUN -> [SKIP][147] ([i915#4854])
[147]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133932v2/shard-mtlp-8/igt@kms_feature_discovery@chamelium.html
* igt@kms_feature_discovery@display-2x:
- shard-mtlp: NOTRUN -> [SKIP][148] ([i915#1839])
[148]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133932v2/shard-mtlp-1/igt@kms_feature_discovery@display-2x.html
- shard-rkl: NOTRUN -> [SKIP][149] ([i915#1839])
[149]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133932v2/shard-rkl-2/igt@kms_feature_discovery@display-2x.html
* igt@kms_feature_discovery@psr1:
- shard-rkl: NOTRUN -> [SKIP][150] ([i915#658])
[150]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133932v2/shard-rkl-4/igt@kms_feature_discovery@psr1.html
* igt@kms_fence_pin_leak:
- shard-mtlp: NOTRUN -> [SKIP][151] ([i915#4881])
[151]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133932v2/shard-mtlp-1/igt@kms_fence_pin_leak.html
* igt@kms_flip@2x-flip-vs-dpms-off-vs-modeset-interruptible:
- shard-tglu: NOTRUN -> [SKIP][152] ([i915#3637] / [i915#3966])
[152]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133932v2/shard-tglu-3/igt@kms_flip@2x-flip-vs-dpms-off-vs-modeset-interruptible.html
* igt@kms_flip@2x-flip-vs-fences:
- shard-mtlp: NOTRUN -> [SKIP][153] ([i915#8381])
[153]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133932v2/shard-mtlp-1/igt@kms_flip@2x-flip-vs-fences.html
* igt@kms_flip@2x-flip-vs-rmfb:
- shard-dg2: NOTRUN -> [SKIP][154] +7 other tests skip
[154]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133932v2/shard-dg2-5/igt@kms_flip@2x-flip-vs-rmfb.html
* igt@kms_flip@2x-plain-flip:
- shard-rkl: NOTRUN -> [SKIP][155] +43 other tests skip
[155]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133932v2/shard-rkl-3/igt@kms_flip@2x-plain-flip.html
* igt@kms_flip@2x-single-buffer-flip-vs-dpms-off-vs-modeset:
- shard-mtlp: NOTRUN -> [SKIP][156] ([i915#3637]) +1 other test skip
[156]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133932v2/shard-mtlp-1/igt@kms_flip@2x-single-buffer-flip-vs-dpms-off-vs-modeset.html
* igt@kms_flip@2x-wf_vblank-ts-check-interruptible:
- shard-dg1: NOTRUN -> [SKIP][157] ([i915#9934]) +5 other tests skip
[157]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133932v2/shard-dg1-16/igt@kms_flip@2x-wf_vblank-ts-check-interruptible.html
* igt@kms_flip@flip-vs-absolute-wf_vblank-interruptible@a-hdmi-a1:
- shard-rkl: NOTRUN -> [FAIL][158] ([i915#2122]) +1 other test fail
[158]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133932v2/shard-rkl-5/igt@kms_flip@flip-vs-absolute-wf_vblank-interruptible@a-hdmi-a1.html
* igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-64bpp-4tile-upscaling@pipe-a-valid-mode:
- shard-rkl: NOTRUN -> [SKIP][159] ([i915#2672]) +4 other tests skip
[159]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133932v2/shard-rkl-3/igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-64bpp-4tile-upscaling@pipe-a-valid-mode.html
* igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-downscaling@pipe-a-valid-mode:
- shard-dg2: NOTRUN -> [SKIP][160] ([i915#2672])
[160]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133932v2/shard-dg2-5/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-downscaling@pipe-a-valid-mode.html
* igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-upscaling@pipe-a-default-mode:
- shard-mtlp: NOTRUN -> [SKIP][161] ([i915#2672]) +1 other test skip
[161]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133932v2/shard-mtlp-8/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-upscaling@pipe-a-default-mode.html
* igt@kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-downscaling@pipe-a-valid-mode:
- shard-dg1: NOTRUN -> [SKIP][162] ([i915#2587] / [i915#2672]) +5 other tests skip
[162]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133932v2/shard-dg1-18/igt@kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-downscaling@pipe-a-valid-mode.html
* igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-upscaling@pipe-a-valid-mode:
- shard-tglu: NOTRUN -> [SKIP][163] ([i915#2587] / [i915#2672])
[163]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133932v2/shard-tglu-3/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-upscaling@pipe-a-valid-mode.html
* igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-shrfb-draw-mmap-cpu:
- shard-dg1: NOTRUN -> [SKIP][164] +43 other tests skip
[164]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133932v2/shard-dg1-13/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-shrfb-draw-mmap-cpu.html
* igt@kms_frontbuffer_tracking@fbcpsr-tiling-y:
- shard-mtlp: NOTRUN -> [SKIP][165] ([i915#10055])
[165]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133932v2/shard-mtlp-8/igt@kms_frontbuffer_tracking@fbcpsr-tiling-y.html
* igt@kms_frontbuffer_tracking@psr-1p-offscren-pri-shrfb-draw-render:
- shard-dg2: NOTRUN -> [SKIP][166] ([i915#3458]) +4 other tests skip
[166]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133932v2/shard-dg2-8/igt@kms_frontbuffer_tracking@psr-1p-offscren-pri-shrfb-draw-render.html
* igt@kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-draw-mmap-wc:
- shard-dg1: NOTRUN -> [SKIP][167] ([i915#8708]) +16 other tests skip
[167]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133932v2/shard-dg1-16/igt@kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@psr-1p-primscrn-pri-indfb-draw-mmap-gtt:
- shard-mtlp: NOTRUN -> [SKIP][168] ([i915#8708]) +3 other tests skip
[168]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133932v2/shard-mtlp-1/igt@kms_frontbuffer_tracking@psr-1p-primscrn-pri-indfb-draw-mmap-gtt.html
* igt@kms_frontbuffer_tracking@psr-1p-primscrn-spr-indfb-draw-pwrite:
- shard-rkl: NOTRUN -> [SKIP][169] ([i915#3023]) +24 other tests skip
[169]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133932v2/shard-rkl-4/igt@kms_frontbuffer_tracking@psr-1p-primscrn-spr-indfb-draw-pwrite.html
* igt@kms_frontbuffer_tracking@psr-2p-primscrn-spr-indfb-draw-pwrite:
- shard-mtlp: NOTRUN -> [SKIP][170] ([i915#1825]) +11 other tests skip
[170]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133932v2/shard-mtlp-1/igt@kms_frontbuffer_tracking@psr-2p-primscrn-spr-indfb-draw-pwrite.html
* igt@kms_frontbuffer_tracking@psr-2p-scndscrn-cur-indfb-draw-mmap-wc:
- shard-dg2: NOTRUN -> [SKIP][171] ([i915#8708]) +7 other tests skip
[171]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133932v2/shard-dg2-5/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-cur-indfb-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@psr-2p-scndscrn-indfb-msflip-blt:
- shard-rkl: NOTRUN -> [SKIP][172] ([i915#1825]) +28 other tests skip
[172]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133932v2/shard-rkl-2/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-indfb-msflip-blt.html
* igt@kms_frontbuffer_tracking@psr-indfb-scaledprimary:
- shard-dg1: NOTRUN -> [SKIP][173] ([i915#3458]) +17 other tests skip
[173]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133932v2/shard-dg1-17/igt@kms_frontbuffer_tracking@psr-indfb-scaledprimary.html
* igt@kms_hdr@bpc-switch-dpms:
- shard-dg2: NOTRUN -> [SKIP][174] ([i915#3555] / [i915#8228])
[174]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133932v2/shard-dg2-5/igt@kms_hdr@bpc-switch-dpms.html
* igt@kms_hdr@static-swap:
- shard-mtlp: NOTRUN -> [SKIP][175] ([i915#3555] / [i915#8228])
[175]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133932v2/shard-mtlp-1/igt@kms_hdr@static-swap.html
* igt@kms_hdr@static-toggle:
- shard-rkl: NOTRUN -> [SKIP][176] ([i915#3555] / [i915#8228]) +1 other test skip
[176]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133932v2/shard-rkl-4/igt@kms_hdr@static-toggle.html
- shard-dg1: NOTRUN -> [SKIP][177] ([i915#3555] / [i915#8228])
[177]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133932v2/shard-dg1-18/igt@kms_hdr@static-toggle.html
* igt@kms_hdr@static-toggle-dpms:
- shard-tglu: NOTRUN -> [SKIP][178] ([i915#3555] / [i915#8228])
[178]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133932v2/shard-tglu-3/igt@kms_hdr@static-toggle-dpms.html
* igt@kms_pipe_crc_basic@nonblocking-crc-frame-sequence@pipe-b-edp-1:
- shard-mtlp: [PASS][179] -> [DMESG-WARN][180] ([i915#1982])
[179]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14849/shard-mtlp-1/igt@kms_pipe_crc_basic@nonblocking-crc-frame-sequence@pipe-b-edp-1.html
[180]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133932v2/shard-mtlp-7/igt@kms_pipe_crc_basic@nonblocking-crc-frame-sequence@pipe-b-edp-1.html
* igt@kms_plane_alpha_blend@constant-alpha-max@pipe-c-hdmi-a-1:
- shard-glk: NOTRUN -> [FAIL][181] ([i915#10647]) +3 other tests fail
[181]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133932v2/shard-glk7/igt@kms_plane_alpha_blend@constant-alpha-max@pipe-c-hdmi-a-1.html
* igt@kms_plane_lowres@tiling-x@pipe-a-edp-1:
- shard-mtlp: NOTRUN -> [SKIP][182] ([i915#10226] / [i915#3582]) +2 other tests skip
[182]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133932v2/shard-mtlp-1/igt@kms_plane_lowres@tiling-x@pipe-a-edp-1.html
* igt@kms_plane_lowres@tiling-x@pipe-d-edp-1:
- shard-mtlp: NOTRUN -> [SKIP][183] ([i915#3582])
[183]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133932v2/shard-mtlp-1/igt@kms_plane_lowres@tiling-x@pipe-d-edp-1.html
* igt@kms_plane_scaling@plane-downscale-factor-0-25-with-modifiers@pipe-b-dp-4:
- shard-dg2: NOTRUN -> [SKIP][184] ([i915#9423]) +7 other tests skip
[184]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133932v2/shard-dg2-11/igt@kms_plane_scaling@plane-downscale-factor-0-25-with-modifiers@pipe-b-dp-4.html
* igt@kms_plane_scaling@plane-downscale-factor-0-5-with-rotation@pipe-a-hdmi-a-1:
- shard-rkl: NOTRUN -> [SKIP][185] ([i915#9423]) +9 other tests skip
[185]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133932v2/shard-rkl-5/igt@kms_plane_scaling@plane-downscale-factor-0-5-with-rotation@pipe-a-hdmi-a-1.html
* igt@kms_plane_scaling@plane-scaler-unity-scaling-with-rotation@pipe-d-hdmi-a-4:
- shard-dg1: NOTRUN -> [SKIP][186] ([i915#9423]) +15 other tests skip
[186]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133932v2/shard-dg1-18/igt@kms_plane_scaling@plane-scaler-unity-scaling-with-rotation@pipe-d-hdmi-a-4.html
* igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-rotation@pipe-a-hdmi-a-1:
- shard-rkl: NOTRUN -> [SKIP][187] ([i915#5176] / [i915#9423]) +1 other test skip
[187]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133932v2/shard-rkl-4/igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-rotation@pipe-a-hdmi-a-1.html
* igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-rotation@pipe-c-hdmi-a-4:
- shard-dg1: NOTRUN -> [SKIP][188] ([i915#5176] / [i915#9423]) +3 other tests skip
[188]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133932v2/shard-dg1-18/igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-rotation@pipe-c-hdmi-a-4.html
* igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-20x20@pipe-d-hdmi-a-4:
- shard-dg1: NOTRUN -> [SKIP][189] ([i915#5235]) +3 other tests skip
[189]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133932v2/shard-dg1-17/igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-20x20@pipe-d-hdmi-a-4.html
* igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25@pipe-b-hdmi-a-1:
- shard-dg2: NOTRUN -> [SKIP][190] ([i915#5235] / [i915#9423]) +7 other tests skip
[190]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133932v2/shard-dg2-8/igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25@pipe-b-hdmi-a-1.html
* igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25@pipe-b-hdmi-a-2:
- shard-rkl: NOTRUN -> [SKIP][191] ([i915#5235]) +9 other tests skip
[191]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133932v2/shard-rkl-1/igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25@pipe-b-hdmi-a-2.html
* igt@kms_pm_backlight@fade-with-suspend:
- shard-rkl: NOTRUN -> [SKIP][192] ([i915#5354]) +1 other test skip
[192]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133932v2/shard-rkl-4/igt@kms_pm_backlight@fade-with-suspend.html
* igt@kms_pm_dc@dc5-psr:
- shard-tglu: NOTRUN -> [SKIP][193] ([i915#9685])
[193]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133932v2/shard-tglu-3/igt@kms_pm_dc@dc5-psr.html
* igt@kms_pm_dc@dc6-dpms:
- shard-mtlp: NOTRUN -> [SKIP][194] ([i915#10139])
[194]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133932v2/shard-mtlp-1/igt@kms_pm_dc@dc6-dpms.html
- shard-rkl: NOTRUN -> [SKIP][195] ([i915#3361])
[195]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133932v2/shard-rkl-2/igt@kms_pm_dc@dc6-dpms.html
* igt@kms_pm_dc@dc6-psr:
- shard-dg2: NOTRUN -> [SKIP][196] ([i915#9685])
[196]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133932v2/shard-dg2-5/igt@kms_pm_dc@dc6-psr.html
* igt@kms_pm_rpm@dpms-mode-unset-non-lpsp:
- shard-rkl: [PASS][197] -> [SKIP][198] ([i915#9519])
[197]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14849/shard-rkl-6/igt@kms_pm_rpm@dpms-mode-unset-non-lpsp.html
[198]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133932v2/shard-rkl-5/igt@kms_pm_rpm@dpms-mode-unset-non-lpsp.html
- shard-tglu: NOTRUN -> [SKIP][199] ([i915#9519])
[199]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133932v2/shard-tglu-3/igt@kms_pm_rpm@dpms-mode-unset-non-lpsp.html
* igt@kms_pm_rpm@modeset-lpsp:
- shard-dg2: NOTRUN -> [SKIP][200] ([i915#9519])
[200]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133932v2/shard-dg2-5/igt@kms_pm_rpm@modeset-lpsp.html
* igt@kms_pm_rpm@modeset-non-lpsp-stress:
- shard-mtlp: NOTRUN -> [SKIP][201] ([i915#9519])
[201]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133932v2/shard-mtlp-1/igt@kms_pm_rpm@modeset-non-lpsp-stress.html
* igt@kms_pm_rpm@modeset-non-lpsp-stress-no-wait:
- shard-rkl: NOTRUN -> [SKIP][202] ([i915#9519]) +1 other test skip
[202]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133932v2/shard-rkl-4/igt@kms_pm_rpm@modeset-non-lpsp-stress-no-wait.html
* igt@kms_prime@d3hot:
- shard-tglu: NOTRUN -> [SKIP][203] ([i915#6524])
[203]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133932v2/shard-tglu-3/igt@kms_prime@d3hot.html
* igt@kms_psr2_sf@fbc-overlay-plane-update-sf-dmg-area@psr2-pipe-b-edp-1:
- shard-mtlp: NOTRUN -> [SKIP][204] ([i915#9808]) +1 other test skip
[204]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133932v2/shard-mtlp-8/igt@kms_psr2_sf@fbc-overlay-plane-update-sf-dmg-area@psr2-pipe-b-edp-1.html
* igt@kms_psr2_su@frontbuffer-xrgb8888:
- shard-dg2: NOTRUN -> [SKIP][205] ([i915#9683])
[205]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133932v2/shard-dg2-5/igt@kms_psr2_su@frontbuffer-xrgb8888.html
* igt@kms_psr2_su@page_flip-xrgb8888:
- shard-mtlp: NOTRUN -> [SKIP][206] ([i915#4348])
[206]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133932v2/shard-mtlp-8/igt@kms_psr2_su@page_flip-xrgb8888.html
* igt@kms_psr@fbc-pr-dpms:
- shard-mtlp: NOTRUN -> [SKIP][207] ([i915#9688]) +5 other tests skip
[207]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133932v2/shard-mtlp-1/igt@kms_psr@fbc-pr-dpms.html
* igt@kms_psr@fbc-psr-cursor-plane-move:
- shard-tglu: NOTRUN -> [SKIP][208] ([i915#9732]) +4 other tests skip
[208]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133932v2/shard-tglu-3/igt@kms_psr@fbc-psr-cursor-plane-move.html
* igt@kms_psr@fbc-psr2-sprite-render:
- shard-rkl: NOTRUN -> [SKIP][209] ([i915#1072] / [i915#9732]) +19 other tests skip
[209]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133932v2/shard-rkl-4/igt@kms_psr@fbc-psr2-sprite-render.html
- shard-dg1: NOTRUN -> [SKIP][210] ([i915#1072] / [i915#9732]) +17 other tests skip
[210]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133932v2/shard-dg1-18/igt@kms_psr@fbc-psr2-sprite-render.html
* igt@kms_psr@psr-sprite-mmap-gtt@edp-1:
- shard-mtlp: NOTRUN -> [SKIP][211] ([i915#4077] / [i915#9688])
[211]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133932v2/shard-mtlp-1/igt@kms_psr@psr-sprite-mmap-gtt@edp-1.html
* igt@kms_psr@psr2-primary-mmap-gtt:
- shard-dg2: NOTRUN -> [SKIP][212] ([i915#1072] / [i915#9732]) +6 other tests skip
[212]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133932v2/shard-dg2-5/igt@kms_psr@psr2-primary-mmap-gtt.html
* igt@kms_rotation_crc@bad-tiling:
- shard-mtlp: NOTRUN -> [SKIP][213] ([i915#4235])
[213]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133932v2/shard-mtlp-8/igt@kms_rotation_crc@bad-tiling.html
* igt@kms_rotation_crc@exhaust-fences:
- shard-dg2: NOTRUN -> [SKIP][214] ([i915#4235])
[214]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133932v2/shard-dg2-5/igt@kms_rotation_crc@exhaust-fences.html
* igt@kms_rotation_crc@primary-4-tiled-reflect-x-180:
- shard-rkl: NOTRUN -> [SKIP][215] ([i915#5289])
[215]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133932v2/shard-rkl-4/igt@kms_rotation_crc@primary-4-tiled-reflect-x-180.html
- shard-dg1: NOTRUN -> [SKIP][216] ([i915#5289])
[216]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133932v2/shard-dg1-18/igt@kms_rotation_crc@primary-4-tiled-reflect-x-180.html
* igt@kms_rotation_crc@primary-yf-tiled-reflect-x-270:
- shard-dg2: NOTRUN -> [SKIP][217] ([i915#4235] / [i915#5190])
[217]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133932v2/shard-dg2-5/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-270.html
* igt@kms_scaling_modes@scaling-mode-none@pipe-a-edp-1:
- shard-mtlp: NOTRUN -> [SKIP][218] ([i915#5030]) +2 other tests skip
[218]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133932v2/shard-mtlp-1/igt@kms_scaling_modes@scaling-mode-none@pipe-a-edp-1.html
* igt@kms_scaling_modes@scaling-mode-none@pipe-d-edp-1:
- shard-mtlp: NOTRUN -> [SKIP][219] ([i915#5030] / [i915#9041])
[219]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133932v2/shard-mtlp-1/igt@kms_scaling_modes@scaling-mode-none@pipe-d-edp-1.html
* igt@kms_setmode@clone-exclusive-crtc:
- shard-dg1: NOTRUN -> [SKIP][220] ([i915#3555]) +4 other tests skip
[220]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133932v2/shard-dg1-13/igt@kms_setmode@clone-exclusive-crtc.html
* igt@kms_setmode@invalid-clone-single-crtc-stealing:
- shard-mtlp: NOTRUN -> [SKIP][221] ([i915#3555] / [i915#8809])
[221]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133932v2/shard-mtlp-8/igt@kms_setmode@invalid-clone-single-crtc-stealing.html
* igt@kms_tiled_display@basic-test-pattern:
- shard-dg2: NOTRUN -> [SKIP][222] ([i915#8623])
[222]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133932v2/shard-dg2-5/igt@kms_tiled_display@basic-test-pattern.html
* igt@kms_universal_plane@cursor-fb-leak@pipe-c-hdmi-a-1:
- shard-tglu: [PASS][223] -> [FAIL][224] ([i915#9196]) +1 other test fail
[223]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14849/shard-tglu-3/igt@kms_universal_plane@cursor-fb-leak@pipe-c-hdmi-a-1.html
[224]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133932v2/shard-tglu-9/igt@kms_universal_plane@cursor-fb-leak@pipe-c-hdmi-a-1.html
* igt@kms_vblank@query-forked-hang@pipe-d-hdmi-a-4:
- shard-dg1: NOTRUN -> [INCOMPLETE][225] ([i915#9508])
[225]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133932v2/shard-dg1-15/igt@kms_vblank@query-forked-hang@pipe-d-hdmi-a-4.html
* igt@kms_vrr@flip-dpms:
- shard-mtlp: NOTRUN -> [SKIP][226] ([i915#3555] / [i915#8808])
[226]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133932v2/shard-mtlp-8/igt@kms_vrr@flip-dpms.html
* igt@kms_vrr@seamless-rr-switch-virtual:
- shard-dg1: NOTRUN -> [SKIP][227] ([i915#9906]) +1 other test skip
[227]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133932v2/shard-dg1-16/igt@kms_vrr@seamless-rr-switch-virtual.html
* igt@kms_vrr@seamless-rr-switch-vrr:
- shard-rkl: NOTRUN -> [SKIP][228] ([i915#9906])
[228]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133932v2/shard-rkl-2/igt@kms_vrr@seamless-rr-switch-vrr.html
- shard-mtlp: NOTRUN -> [SKIP][229] ([i915#8808] / [i915#9906])
[229]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133932v2/shard-mtlp-1/igt@kms_vrr@seamless-rr-switch-vrr.html
* igt@kms_writeback@writeback-check-output:
- shard-tglu: NOTRUN -> [SKIP][230] ([i915#2437])
[230]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133932v2/shard-tglu-3/igt@kms_writeback@writeback-check-output.html
* igt@kms_writeback@writeback-check-output-xrgb2101010:
- shard-glk: NOTRUN -> [SKIP][231] ([i915#2437])
[231]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133932v2/shard-glk3/igt@kms_writeback@writeback-check-output-xrgb2101010.html
* igt@kms_writeback@writeback-fb-id:
- shard-rkl: NOTRUN -> [SKIP][232] ([i915#2437])
[232]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133932v2/shard-rkl-4/igt@kms_writeback@writeback-fb-id.html
- shard-dg1: NOTRUN -> [SKIP][233] ([i915#2437])
[233]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133932v2/shard-dg1-18/igt@kms_writeback@writeback-fb-id.html
* igt@kms_writeback@writeback-fb-id-xrgb2101010:
- shard-dg2: NOTRUN -> [SKIP][234] ([i915#2437] / [i915#9412])
[234]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133932v2/shard-dg2-5/igt@kms_writeback@writeback-fb-id-xrgb2101010.html
* igt@kms_writeback@writeback-pixel-formats:
- shard-rkl: NOTRUN -> [SKIP][235] ([i915#2437] / [i915#9412])
[235]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133932v2/shard-rkl-3/igt@kms_writeback@writeback-pixel-formats.html
* igt@perf_pmu@busy-double-start@vecs1:
- shard-dg2: NOTRUN -> [FAIL][236] ([i915#4349])
[236]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133932v2/shard-dg2-8/igt@perf_pmu@busy-double-start@vecs1.html
* igt@perf_pmu@rc6-all-gts:
- shard-rkl: NOTRUN -> [SKIP][237] ([i915#8516])
[237]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133932v2/shard-rkl-4/igt@perf_pmu@rc6-all-gts.html
* igt@prime_vgem@basic-fence-flip:
- shard-dg2: NOTRUN -> [SKIP][238] ([i915#3708])
[238]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133932v2/shard-dg2-5/igt@prime_vgem@basic-fence-flip.html
* igt@prime_vgem@basic-write:
- shard-rkl: NOTRUN -> [SKIP][239] ([i915#3291] / [i915#3708])
[239]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133932v2/shard-rkl-4/igt@prime_vgem@basic-write.html
* igt@prime_vgem@fence-write-hang:
- shard-dg1: NOTRUN -> [SKIP][240] ([i915#3708])
[240]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133932v2/shard-dg1-13/igt@prime_vgem@fence-write-hang.html
* igt@sriov_basic@enable-vfs-bind-unbind-each:
- shard-rkl: NOTRUN -> [SKIP][241] ([i915#9917])
[241]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133932v2/shard-rkl-4/igt@sriov_basic@enable-vfs-bind-unbind-each.html
* igt@syncobj_timeline@invalid-wait-zero-handles:
- shard-dg2: NOTRUN -> [FAIL][242] ([i915#9781])
[242]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133932v2/shard-dg2-5/igt@syncobj_timeline@invalid-wait-zero-handles.html
* igt@tools_test@sysfs_l3_parity:
- shard-dg1: NOTRUN -> [SKIP][243] ([i915#4818])
[243]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133932v2/shard-dg1-13/igt@tools_test@sysfs_l3_parity.html
* igt@v3d/v3d_perfmon@destroy-valid-perfmon:
- shard-snb: NOTRUN -> [SKIP][244] +37 other tests skip
[244]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133932v2/shard-snb2/igt@v3d/v3d_perfmon@destroy-valid-perfmon.html
* igt@v3d/v3d_perfmon@get-values-invalid-perfmon:
- shard-dg1: NOTRUN -> [SKIP][245] ([i915#2575]) +11 other tests skip
[245]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133932v2/shard-dg1-16/igt@v3d/v3d_perfmon@get-values-invalid-perfmon.html
* igt@v3d/v3d_submit_csd@bad-flag:
- shard-dg2: NOTRUN -> [SKIP][246] ([i915#2575]) +2 other tests skip
[246]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133932v2/shard-dg2-5/igt@v3d/v3d_submit_csd@bad-flag.html
* igt@v3d/v3d_submit_csd@bad-perfmon:
- shard-mtlp: NOTRUN -> [SKIP][247] ([i915#2575]) +5 other tests skip
[247]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133932v2/shard-mtlp-8/igt@v3d/v3d_submit_csd@bad-perfmon.html
* igt@vc4/vc4_mmap@mmap-bad-handle:
- shard-dg1: NOTRUN -> [SKIP][248] ([i915#7711]) +7 other tests skip
[248]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133932v2/shard-dg1-16/igt@vc4/vc4_mmap@mmap-bad-handle.html
* igt@vc4/vc4_purgeable_bo@free-purged-bo:
- shard-tglu: NOTRUN -> [SKIP][249] ([i915#2575]) +4 other tests skip
[249]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133932v2/shard-tglu-3/igt@vc4/vc4_purgeable_bo@free-purged-bo.html
* igt@vc4/vc4_purgeable_bo@mark-purgeable:
- shard-rkl: NOTRUN -> [SKIP][250] ([i915#7711]) +6 other tests skip
[250]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133932v2/shard-rkl-2/igt@vc4/vc4_purgeable_bo@mark-purgeable.html
- shard-mtlp: NOTRUN -> [SKIP][251] ([i915#7711]) +2 other tests skip
[251]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133932v2/shard-mtlp-1/igt@vc4/vc4_purgeable_bo@mark-purgeable.html
* igt@vc4/vc4_wait_bo@bad-bo:
- shard-dg2: NOTRUN -> [SKIP][252] ([i915#7711]) +2 other tests skip
[252]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133932v2/shard-dg2-5/igt@vc4/vc4_wait_bo@bad-bo.html
#### Possible fixes ####
* igt@gem_exec_fair@basic-pace-share@rcs0:
- shard-tglu: [FAIL][253] ([i915#2842]) -> [PASS][254]
[253]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14849/shard-tglu-6/igt@gem_exec_fair@basic-pace-share@rcs0.html
[254]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133932v2/shard-tglu-6/igt@gem_exec_fair@basic-pace-share@rcs0.html
* igt@gem_lmem_swapping@smem-oom@lmem0:
- shard-dg2: [DMESG-WARN][255] ([i915#4936] / [i915#5493]) -> [PASS][256]
[255]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14849/shard-dg2-8/igt@gem_lmem_swapping@smem-oom@lmem0.html
[256]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133932v2/shard-dg2-5/igt@gem_lmem_swapping@smem-oom@lmem0.html
* igt@i915_module_load@reload-with-fault-injection:
- shard-mtlp: [ABORT][257] ([i915#10887] / [i915#10976] / [i915#11231]) -> [PASS][258]
[257]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14849/shard-mtlp-5/igt@i915_module_load@reload-with-fault-injection.html
[258]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133932v2/shard-mtlp-8/igt@i915_module_load@reload-with-fault-injection.html
* igt@kms_cursor_legacy@cursorb-vs-flipa-atomic-transitions:
- shard-snb: [SKIP][259] -> [PASS][260]
[259]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14849/shard-snb6/igt@kms_cursor_legacy@cursorb-vs-flipa-atomic-transitions.html
[260]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133932v2/shard-snb5/igt@kms_cursor_legacy@cursorb-vs-flipa-atomic-transitions.html
* igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@ab-vga1-hdmi-a1:
- shard-snb: [ABORT][261] -> [PASS][262]
[261]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14849/shard-snb2/igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@ab-vga1-hdmi-a1.html
[262]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133932v2/shard-snb2/igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@ab-vga1-hdmi-a1.html
* igt@kms_pm_rpm@dpms-lpsp:
- shard-rkl: [SKIP][263] ([i915#9519]) -> [PASS][264] +1 other test pass
[263]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14849/shard-rkl-1/igt@kms_pm_rpm@dpms-lpsp.html
[264]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133932v2/shard-rkl-4/igt@kms_pm_rpm@dpms-lpsp.html
* igt@kms_pm_rpm@modeset-non-lpsp-stress:
- shard-dg2: [SKIP][265] ([i915#9519]) -> [PASS][266] +1 other test pass
[265]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14849/shard-dg2-8/igt@kms_pm_rpm@modeset-non-lpsp-stress.html
[266]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133932v2/shard-dg2-5/igt@kms_pm_rpm@modeset-non-lpsp-stress.html
* igt@kms_universal_plane@cursor-fb-leak@pipe-d-edp-1:
- shard-mtlp: [FAIL][267] ([i915#9196]) -> [PASS][268]
[267]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14849/shard-mtlp-3/igt@kms_universal_plane@cursor-fb-leak@pipe-d-edp-1.html
[268]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133932v2/shard-mtlp-4/igt@kms_universal_plane@cursor-fb-leak@pipe-d-edp-1.html
* igt@kms_universal_plane@cursor-fb-leak@pipe-d-hdmi-a-1:
- shard-tglu: [FAIL][269] ([i915#9196]) -> [PASS][270] +1 other test pass
[269]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14849/shard-tglu-3/igt@kms_universal_plane@cursor-fb-leak@pipe-d-hdmi-a-1.html
[270]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133932v2/shard-tglu-9/igt@kms_universal_plane@cursor-fb-leak@pipe-d-hdmi-a-1.html
* igt@kms_universal_plane@cursor-fb-leak@pipe-d-hdmi-a-4:
- shard-dg1: [FAIL][271] ([i915#9196]) -> [PASS][272]
[271]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14849/shard-dg1-18/igt@kms_universal_plane@cursor-fb-leak@pipe-d-hdmi-a-4.html
[272]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133932v2/shard-dg1-17/igt@kms_universal_plane@cursor-fb-leak@pipe-d-hdmi-a-4.html
* igt@kms_vblank@query-forked-hang@pipe-a-hdmi-a-4:
- shard-dg1: [INCOMPLETE][273] -> [PASS][274]
[273]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14849/shard-dg1-15/igt@kms_vblank@query-forked-hang@pipe-a-hdmi-a-4.html
[274]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133932v2/shard-dg1-15/igt@kms_vblank@query-forked-hang@pipe-a-hdmi-a-4.html
#### Warnings ####
* igt@i915_module_load@reload-with-fault-injection:
- shard-rkl: [ABORT][275] ([i915#9820]) -> [ABORT][276] ([i915#9697] / [i915#9820])
[275]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14849/shard-rkl-3/igt@i915_module_load@reload-with-fault-injection.html
[276]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133932v2/shard-rkl-3/igt@i915_module_load@reload-with-fault-injection.html
* igt@kms_content_protection@type1:
- shard-dg2: [SKIP][277] ([i915#7118] / [i915#9424]) -> [SKIP][278] ([i915#7118] / [i915#7162] / [i915#9424])
[277]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14849/shard-dg2-1/igt@kms_content_protection@type1.html
[278]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133932v2/shard-dg2-11/igt@kms_content_protection@type1.html
* igt@kms_frontbuffer_tracking@psr-1p-offscren-pri-indfb-draw-blt:
- shard-dg2: [SKIP][279] ([i915#3458]) -> [SKIP][280] ([i915#10433] / [i915#3458]) +6 other tests skip
[279]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14849/shard-dg2-8/igt@kms_frontbuffer_tracking@psr-1p-offscren-pri-indfb-draw-blt.html
[280]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133932v2/shard-dg2-4/igt@kms_frontbuffer_tracking@psr-1p-offscren-pri-indfb-draw-blt.html
* igt@kms_frontbuffer_tracking@psr-indfb-scaledprimary:
- shard-dg2: [SKIP][281] ([i915#10433] / [i915#3458]) -> [SKIP][282] ([i915#3458]) +2 other tests skip
[281]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14849/shard-dg2-4/igt@kms_frontbuffer_tracking@psr-indfb-scaledprimary.html
[282]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133932v2/shard-dg2-10/igt@kms_frontbuffer_tracking@psr-indfb-scaledprimary.html
* igt@kms_pm_dc@dc9-dpms:
- shard-rkl: [SKIP][283] ([i915#3361]) -> [SKIP][284] ([i915#4281])
[283]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14849/shard-rkl-3/igt@kms_pm_dc@dc9-dpms.html
[284]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133932v2/shard-rkl-5/igt@kms_pm_dc@dc9-dpms.html
* igt@kms_psr@fbc-psr-cursor-mmap-cpu:
- shard-dg2: [SKIP][285] ([i915#1072] / [i915#9732]) -> [SKIP][286] ([i915#1072] / [i915#9673] / [i915#9732]) +13 other tests skip
[285]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14849/shard-dg2-5/igt@kms_psr@fbc-psr-cursor-mmap-cpu.html
[286]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133932v2/shard-dg2-11/igt@kms_psr@fbc-psr-cursor-mmap-cpu.html
* igt@kms_psr@psr-cursor-mmap-cpu:
- shard-dg2: [SKIP][287] ([i915#1072] / [i915#9673] / [i915#9732]) -> [SKIP][288] ([i915#1072] / [i915#9732]) +5 other tests skip
[287]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14849/shard-dg2-11/igt@kms_psr@psr-cursor-mmap-cpu.html
[288]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133932v2/shard-dg2-8/igt@kms_psr@psr-cursor-mmap-cpu.html
* igt@perf_pmu@busy-double-start@vecs0:
- shard-dg2: [INCOMPLETE][289] ([i915#9853]) -> [FAIL][290] ([i915#4349])
[289]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14849/shard-dg2-2/igt@perf_pmu@busy-double-start@vecs0.html
[290]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133932v2/shard-dg2-8/igt@perf_pmu@busy-double-start@vecs0.html
[i915#10055]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10055
[i915#10139]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10139
[i915#10226]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10226
[i915#10278]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10278
[i915#10307]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10307
[i915#10378]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10378
[i915#10433]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10433
[i915#10434]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10434
[i915#10513]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10513
[i915#10647]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10647
[i915#10656]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10656
[i915#1072]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1072
[i915#10887]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10887
[i915#10976]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10976
[i915#1099]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1099
[i915#11078]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11078
[i915#11231]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11231
[i915#1257]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1257
[i915#1769]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1769
[i915#1825]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1825
[i915#1839]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1839
[i915#1982]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1982
[i915#2122]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2122
[i915#2437]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2437
[i915#2527]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2527
[i915#2575]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2575
[i915#2587]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2587
[i915#2672]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2672
[i915#2842]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2842
[i915#2856]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2856
[i915#3023]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3023
[i915#3116]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3116
[i915#3281]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3281
[i915#3282]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3282
[i915#3291]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3291
[i915#3297]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3297
[i915#3299]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3299
[i915#3359]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3359
[i915#3361]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3361
[i915#3458]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3458
[i915#3539]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3539
[i915#3555]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3555
[i915#3582]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3582
[i915#3637]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3637
[i915#3638]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3638
[i915#3708]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3708
[i915#3742]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3742
[i915#3804]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3804
[i915#3840]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3840
[i915#3966]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3966
[i915#4036]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4036
[i915#4077]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4077
[i915#4079]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4079
[i915#4083]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4083
[i915#4103]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4103
[i915#4212]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4212
[i915#4213]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4213
[i915#4235]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4235
[i915#4270]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4270
[i915#4281]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4281
[i915#4348]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4348
[i915#4349]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4349
[i915#4387]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4387
[i915#4525]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4525
[i915#4537]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4537
[i915#4538]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4538
[i915#4565]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4565
[i915#4613]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4613
[i915#4812]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4812
[i915#4818]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4818
[i915#4852]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4852
[i915#4854]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4854
[i915#4860]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4860
[i915#4873]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4873
[i915#4880]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4880
[i915#4881]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4881
[i915#4885]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4885
[i915#4936]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4936
[i915#5030]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5030
[i915#5176]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5176
[i915#5190]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5190
[i915#5235]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5235
[i915#5286]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5286
[i915#5289]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5289
[i915#5354]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5354
[i915#5493]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5493
[i915#6095]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6095
[i915#6227]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6227
[i915#6412]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6412
[i915#6524]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6524
[i915#658]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/658
[i915#6621]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6621
[i915#7118]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7118
[i915#7162]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7162
[i915#7173]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7173
[i915#7711]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7711
[i915#7790]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7790
[i915#7828]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7828
[i915#8228]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8228
[i915#8381]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8381
[i915#8411]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8411
[i915#8414]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8414
[i915#8428]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8428
[i915#8516]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8516
[i915#8555]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8555
[i915#8562]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8562
[i915#8588]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8588
[i915#8623]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8623
[i915#8708]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8708
[i915#8709]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8709
[i915#8808]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8808
[i915#8809]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8809
[i915#8814]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8814
[i915#8925]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8925
[i915#9041]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9041
[i915#9053]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9053
[i915#9067]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9067
[i915#9196]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9196
[i915#9311]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9311
[i915#9323]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9323
[i915#9412]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9412
[i915#9423]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9423
[i915#9424]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9424
[i915#9508]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9508
[i915#9519]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9519
[i915#9606]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9606
[i915#9673]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9673
[i915#9683]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9683
[i915#9685]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9685
[i915#9688]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9688
[i915#9697]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9697
[i915#9723]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9723
[i915#9732]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9732
[i915#9781]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9781
[i915#9808]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9808
[i915#9809]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9809
[i915#9820]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9820
[i915#9849]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9849
[i915#9853]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9853
[i915#9906]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9906
[i915#9917]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9917
[i915#9934]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9934
Build changes
-------------
* Linux: CI_DRM_14849 -> Patchwork_133932v2
* Piglit: None -> piglit_4509
CI-20190529: 20190529
CI_DRM_14849: 55d6179b96e0390025f2ba101c03b94b50cab7a1 @ git://anongit.freedesktop.org/gfx-ci/linux
IGT_7873: b9bcded9123ac56ce05748de6c4870fb49451b87 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
Patchwork_133932v2: 55d6179b96e0390025f2ba101c03b94b50cab7a1 @ git://anongit.freedesktop.org/gfx-ci/linux
piglit_4509: fdc5a4ca11124ab8413c7988896eec4c97336694 @ git://anongit.freedesktop.org/piglit
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133932v2/index.html
[-- Attachment #2: Type: text/html, Size: 101581 bytes --]
^ permalink raw reply [flat|nested] 34+ messages in thread
* Re: [PATCH 00/10] drm/i915: identify all platforms in display probe
2024-05-22 17:33 [PATCH 00/10] drm/i915: identify all platforms in display probe Jani Nikula
` (17 preceding siblings ...)
2024-05-31 1:57 ` ✗ Fi.CI.IGT: failure " Patchwork
@ 2024-05-31 8:28 ` Jani Nikula
18 siblings, 0 replies; 34+ messages in thread
From: Jani Nikula @ 2024-05-31 8:28 UTC (permalink / raw)
To: intel-gfx, intel-xe; +Cc: rodrigo.vivi, lucas.demarchi
On Wed, 22 May 2024, Jani Nikula <jani.nikula@intel.com> wrote:
> Add independent platform probe in display, in preparation for breaking
> free from i915 and xe code.
Merged to din, thanks for the review.
BR,
Jani.
--
Jani Nikula, Intel
^ permalink raw reply [flat|nested] 34+ messages in thread
end of thread, other threads:[~2024-05-31 8:29 UTC | newest]
Thread overview: 34+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2024-05-22 17:33 [PATCH 00/10] drm/i915: identify all platforms in display probe Jani Nikula
2024-05-22 17:33 ` [PATCH 01/10] drm/i915/display: move params copy at probe earlier Jani Nikula
2024-05-22 19:53 ` Rodrigo Vivi
2024-05-22 17:33 ` [PATCH 02/10] drm/i915/display: change probe for no display case Jani Nikula
2024-05-22 19:57 ` Rodrigo Vivi
2024-05-22 17:33 ` [PATCH 03/10] drm/i915/display: check platforms without display one level higher Jani Nikula
2024-05-22 19:58 ` Rodrigo Vivi
2024-05-22 17:33 ` [PATCH 04/10] drm/i915/display: change GMD ID display ip ver propagation at probe Jani Nikula
2024-05-22 20:15 ` Rodrigo Vivi
2024-05-22 17:33 ` [PATCH 05/10] drm/i915/display: add platform descriptors Jani Nikula
2024-05-23 18:47 ` Rodrigo Vivi
2024-05-24 8:17 ` Jani Nikula
2024-05-24 14:04 ` Rodrigo Vivi
2024-05-22 17:33 ` [PATCH 06/10] drm/i915: add LNL PCI IDs Jani Nikula
2024-05-23 18:31 ` Rodrigo Vivi
2024-05-22 17:33 ` [PATCH 07/10] drm/i915/display: change display probe to identify GMD ID based platforms Jani Nikula
2024-05-23 18:39 ` Rodrigo Vivi
2024-05-22 17:33 ` [PATCH 08/10] drm/i915/display: identify platforms with enum and name Jani Nikula
2024-05-23 18:38 ` Rodrigo Vivi
2024-05-22 17:33 ` [PATCH 09/10] drm/i915/display: add support for subplatforms Jani Nikula
2024-05-23 18:37 ` Rodrigo Vivi
2024-05-22 17:33 ` [PATCH 10/10] drm/i915/display: add probe message Jani Nikula
2024-05-23 18:33 ` Rodrigo Vivi
2024-05-22 18:14 ` [PATCH 00/10] drm/i915: identify all platforms in display probe Gustavo Sousa
2024-05-22 18:36 ` Jani Nikula
2024-05-22 19:48 ` Rodrigo Vivi
2024-05-22 18:19 ` ✗ Fi.CI.CHECKPATCH: warning for " Patchwork
2024-05-22 18:27 ` ✓ Fi.CI.BAT: success " Patchwork
2024-05-23 14:12 ` ✗ Fi.CI.IGT: failure " Patchwork
2024-05-30 10:55 ` ✗ Fi.CI.CHECKPATCH: warning for drm/i915: identify all platforms in display probe (rev2) Patchwork
2024-05-30 10:55 ` ✗ Fi.CI.SPARSE: " Patchwork
2024-05-30 11:04 ` ✓ Fi.CI.BAT: success " Patchwork
2024-05-31 1:57 ` ✗ Fi.CI.IGT: failure " Patchwork
2024-05-31 8:28 ` [PATCH 00/10] drm/i915: identify all platforms in display probe Jani Nikula
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox