* [PATCH v5 0/2] Add debugfs node to expose G-state and pcie link state residency
@ 2025-06-20 12:03 Soham Purkait
2025-06-20 12:03 ` [PATCH v5 1/2] drm/xe/regs/xe_pmt: Macros for G-State and pcie link state residency offset Soham Purkait
` (4 more replies)
0 siblings, 5 replies; 9+ messages in thread
From: Soham Purkait @ 2025-06-20 12:03 UTC (permalink / raw)
To: intel-xe, anshuman.gupta, badal.nilawar, karthik.poosa,
riana.tauro, jonathan.cavitt
Cc: lucas.demarchi, soham.purkait, ashutosh.dixit, jani.nikula
This patch exposes G-state and pcie link state residency counter
values through debugfs. The debugfs node "dgfx_pkg_residencies" exposes
G-states counters (G2, G6, G8, G10, ModS) and "dgfx_pcie_link_residencies"
exposes PCIe link states(L0, L1, L1.2) residency counters.
Soham Purkait (2):
drm/xe/regs/xe_pmt: Macros for G-State and pcie link state residency
offset
drm/xe/xe_debugfs: Exposure of G-State and pcie link state residency
counters through debugfs
drivers/gpu/drm/xe/regs/xe_pmt.h | 10 +++++
drivers/gpu/drm/xe/xe_debugfs.c | 71 ++++++++++++++++++++++++++++++++
2 files changed, 81 insertions(+)
--
2.34.1
^ permalink raw reply [flat|nested] 9+ messages in thread* [PATCH v5 1/2] drm/xe/regs/xe_pmt: Macros for G-State and pcie link state residency offset 2025-06-20 12:03 [PATCH v5 0/2] Add debugfs node to expose G-state and pcie link state residency Soham Purkait @ 2025-06-20 12:03 ` Soham Purkait 2025-06-22 5:57 ` Gupta, Anshuman 2025-06-20 12:03 ` [PATCH v5 2/2] drm/xe/xe_debugfs: Exposure of G-State and pcie link state residency counters through debugfs Soham Purkait ` (3 subsequent siblings) 4 siblings, 1 reply; 9+ messages in thread From: Soham Purkait @ 2025-06-20 12:03 UTC (permalink / raw) To: intel-xe, anshuman.gupta, badal.nilawar, karthik.poosa, riana.tauro, jonathan.cavitt Cc: lucas.demarchi, soham.purkait, ashutosh.dixit, jani.nikula Add G-State residency and pcie link state residency offset macros for G2, G6, G8, G10, ModS and L0, L1, L1.2 respectively. v1 : Moved offset macros to drm/xe/regs/xe_pmt. (Riana) v5 : Reordered commits to reflect the correct dependency hierarchy. (Jonathan) Signed-off-by: Soham Purkait <soham.purkait@intel.com> --- drivers/gpu/drm/xe/regs/xe_pmt.h | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/drivers/gpu/drm/xe/regs/xe_pmt.h b/drivers/gpu/drm/xe/regs/xe_pmt.h index b0efd9b48d1e..4e377b6eac92 100644 --- a/drivers/gpu/drm/xe/regs/xe_pmt.h +++ b/drivers/gpu/drm/xe/regs/xe_pmt.h @@ -21,4 +21,14 @@ #define SG_REMAP_INDEX1 XE_REG(SOC_BASE + 0x08) #define SG_REMAP_BITS REG_GENMASK(31, 24) +#define BMG_G2_RESIDENCY_OFFSET (0x530) +#define BMG_G6_RESIDENCY_OFFSET (0x538) +#define BMG_G8_RESIDENCY_OFFSET (0x540) +#define BMG_G10_RESIDENCY_OFFSET (0x548) +#define BMG_MODS_RESIDENCY_OFFSET (0x4D0) + +#define PCIE_LINK_L0_RESIDENCY_COUNTER (0x570) +#define PCIE_LINK_L1_RESIDENCY_COUNTER (0x578) +#define PCIE_LINK_L1_2_RESIDENCY_COUNTER (0x580) + #endif -- 2.34.1 ^ permalink raw reply related [flat|nested] 9+ messages in thread
* RE: [PATCH v5 1/2] drm/xe/regs/xe_pmt: Macros for G-State and pcie link state residency offset 2025-06-20 12:03 ` [PATCH v5 1/2] drm/xe/regs/xe_pmt: Macros for G-State and pcie link state residency offset Soham Purkait @ 2025-06-22 5:57 ` Gupta, Anshuman 2025-06-24 13:10 ` Poosa, Karthik 0 siblings, 1 reply; 9+ messages in thread From: Gupta, Anshuman @ 2025-06-22 5:57 UTC (permalink / raw) To: Purkait, Soham, intel-xe@lists.freedesktop.org, Nilawar, Badal, Poosa, Karthik, Tauro, Riana, Cavitt, Jonathan Cc: De Marchi, Lucas, Dixit, Ashutosh, Nikula, Jani > -----Original Message----- > From: Purkait, Soham <soham.purkait@intel.com> > Sent: Friday, June 20, 2025 5:34 PM > To: intel-xe@lists.freedesktop.org; Gupta, Anshuman > <anshuman.gupta@intel.com>; Nilawar, Badal <badal.nilawar@intel.com>; > Poosa, Karthik <karthik.poosa@intel.com>; Tauro, Riana > <riana.tauro@intel.com>; Cavitt, Jonathan <jonathan.cavitt@intel.com> > Cc: De Marchi, Lucas <lucas.demarchi@intel.com>; Purkait, Soham > <soham.purkait@intel.com>; Dixit, Ashutosh <ashutosh.dixit@intel.com>; > Nikula, Jani <jani.nikula@intel.com> > Subject: [PATCH v5 1/2] drm/xe/regs/xe_pmt: Macros for G-State and pcie link > state residency offset > > Add G-State residency and pcie link state residency offset macros for G2, G6, > G8, G10, ModS and L0, L1, L1.2 respectively. > > v1 : Moved offset macros to drm/xe/regs/xe_pmt. (Riana) > > v5 : Reordered commits to reflect the correct dependency hierarchy. > (Jonathan) > > Signed-off-by: Soham Purkait <soham.purkait@intel.com> > --- > drivers/gpu/drm/xe/regs/xe_pmt.h | 10 ++++++++++ > 1 file changed, 10 insertions(+) > > diff --git a/drivers/gpu/drm/xe/regs/xe_pmt.h > b/drivers/gpu/drm/xe/regs/xe_pmt.h > index b0efd9b48d1e..4e377b6eac92 100644 > --- a/drivers/gpu/drm/xe/regs/xe_pmt.h > +++ b/drivers/gpu/drm/xe/regs/xe_pmt.h > @@ -21,4 +21,14 @@ > #define SG_REMAP_INDEX1 XE_REG(SOC_BASE + 0x08) > #define SG_REMAP_BITS REG_GENMASK(31, 24) > > +#define BMG_G2_RESIDENCY_OFFSET (0x530) > +#define BMG_G6_RESIDENCY_OFFSET (0x538) > +#define BMG_G8_RESIDENCY_OFFSET (0x540) > +#define BMG_G10_RESIDENCY_OFFSET (0x548) > +#define BMG_MODS_RESIDENCY_OFFSET (0x4D0) > + > +#define PCIE_LINK_L0_RESIDENCY_COUNTER (0x570) > +#define PCIE_LINK_L1_RESIDENCY_COUNTER (0x578) > +#define PCIE_LINK_L1_2_RESIDENCY_COUNTER (0x580) If these are BMG specific offset, these should be prefixed with BMG. Thanks, Anshuman. > + > #endif > -- > 2.34.1 ^ permalink raw reply [flat|nested] 9+ messages in thread
* Re: [PATCH v5 1/2] drm/xe/regs/xe_pmt: Macros for G-State and pcie link state residency offset 2025-06-22 5:57 ` Gupta, Anshuman @ 2025-06-24 13:10 ` Poosa, Karthik 0 siblings, 0 replies; 9+ messages in thread From: Poosa, Karthik @ 2025-06-24 13:10 UTC (permalink / raw) To: Gupta, Anshuman, Purkait, Soham, intel-xe@lists.freedesktop.org, Nilawar, Badal, Tauro, Riana, Cavitt, Jonathan Cc: De Marchi, Lucas, Dixit, Ashutosh, Nikula, Jani On 22-06-2025 11:27, Gupta, Anshuman wrote: > >> -----Original Message----- >> From: Purkait, Soham <soham.purkait@intel.com> >> Sent: Friday, June 20, 2025 5:34 PM >> To: intel-xe@lists.freedesktop.org; Gupta, Anshuman >> <anshuman.gupta@intel.com>; Nilawar, Badal <badal.nilawar@intel.com>; >> Poosa, Karthik <karthik.poosa@intel.com>; Tauro, Riana >> <riana.tauro@intel.com>; Cavitt, Jonathan <jonathan.cavitt@intel.com> >> Cc: De Marchi, Lucas <lucas.demarchi@intel.com>; Purkait, Soham >> <soham.purkait@intel.com>; Dixit, Ashutosh <ashutosh.dixit@intel.com>; >> Nikula, Jani <jani.nikula@intel.com> >> Subject: [PATCH v5 1/2] drm/xe/regs/xe_pmt: Macros for G-State and pcie link >> state residency offset >> >> Add G-State residency and pcie link state residency offset macros for G2, G6, >> G8, G10, ModS and L0, L1, L1.2 respectively. >> >> v1 : Moved offset macros to drm/xe/regs/xe_pmt. (Riana) Move offset >> >> v5 : Reordered commits to reflect the correct dependency hierarchy. The need not be mentioned here. Having this mentioned in cover letter should be fine. >> (Jonathan) >> >> Signed-off-by: Soham Purkait <soham.purkait@intel.com> >> --- >> drivers/gpu/drm/xe/regs/xe_pmt.h | 10 ++++++++++ >> 1 file changed, 10 insertions(+) >> >> diff --git a/drivers/gpu/drm/xe/regs/xe_pmt.h >> b/drivers/gpu/drm/xe/regs/xe_pmt.h >> index b0efd9b48d1e..4e377b6eac92 100644 >> --- a/drivers/gpu/drm/xe/regs/xe_pmt.h >> +++ b/drivers/gpu/drm/xe/regs/xe_pmt.h >> @@ -21,4 +21,14 @@ >> #define SG_REMAP_INDEX1 XE_REG(SOC_BASE + 0x08) >> #define SG_REMAP_BITS REG_GENMASK(31, 24) >> >> +#define BMG_G2_RESIDENCY_OFFSET (0x530) >> +#define BMG_G6_RESIDENCY_OFFSET (0x538) >> +#define BMG_G8_RESIDENCY_OFFSET (0x540) >> +#define BMG_G10_RESIDENCY_OFFSET (0x548) >> +#define BMG_MODS_RESIDENCY_OFFSET (0x4D0) >> + >> +#define PCIE_LINK_L0_RESIDENCY_COUNTER (0x570) >> +#define PCIE_LINK_L1_RESIDENCY_COUNTER (0x578) >> +#define PCIE_LINK_L1_2_RESIDENCY_COUNTER (0x580) > If these are BMG specific offset, these should be prefixed with BMG. > > Thanks, > Anshuman. Agree with Anshuman on this. >> + >> #endif >> -- >> 2.34.1 ^ permalink raw reply [flat|nested] 9+ messages in thread
* [PATCH v5 2/2] drm/xe/xe_debugfs: Exposure of G-State and pcie link state residency counters through debugfs 2025-06-20 12:03 [PATCH v5 0/2] Add debugfs node to expose G-state and pcie link state residency Soham Purkait 2025-06-20 12:03 ` [PATCH v5 1/2] drm/xe/regs/xe_pmt: Macros for G-State and pcie link state residency offset Soham Purkait @ 2025-06-20 12:03 ` Soham Purkait 2025-06-24 13:01 ` Poosa, Karthik 2025-06-20 12:28 ` ✗ CI.checkpatch: warning for Add debugfs node to expose G-state and pcie link state residency (rev3) Patchwork ` (2 subsequent siblings) 4 siblings, 1 reply; 9+ messages in thread From: Soham Purkait @ 2025-06-20 12:03 UTC (permalink / raw) To: intel-xe, anshuman.gupta, badal.nilawar, karthik.poosa, riana.tauro, jonathan.cavitt Cc: lucas.demarchi, soham.purkait, ashutosh.dixit, jani.nikula Add debug nodes, "dgfx_pkg_residencies" for G-states (G2, G6, G8, G10, ModS) and "dgfx_pcie_link_residencies" for PCIe link states(L0, L1, L1.2) residency counters. V1 : Expose all G-State residency counter values under dgfx_pkg_residencies. (Anshuman) Included runtime_get/put and removed drm_warn. (Riana) v2 : Moved "dgfx_pkg_residencies" from "/sys/kernel/debug/gtidle/" to "/sys/kernel/debug/". (Anshuman) v3 : Included debugfs node "dgfx_pcie_link_residencies" for pcie link state residency counter values. (Anshuman) v4 : Included check for BMG and dgfx and helper function for repetitive code. (Riana) Used drm_info_list to create the debugfs. (Karthik) v5 : Reordered commits to reflect the correct dependency hierarchy. (Jonathan) Simplification of commit message and rectified register offset. (Karthik) Error handling and return before printing. (Riana) Signed-off-by: Soham Purkait <soham.purkait@intel.com> --- drivers/gpu/drm/xe/xe_debugfs.c | 71 +++++++++++++++++++++++++++++++++ 1 file changed, 71 insertions(+) diff --git a/drivers/gpu/drm/xe/xe_debugfs.c b/drivers/gpu/drm/xe/xe_debugfs.c index d83cd6ed3fa8..9e1f753ed1df 100644 --- a/drivers/gpu/drm/xe/xe_debugfs.c +++ b/drivers/gpu/drm/xe/xe_debugfs.c @@ -11,16 +11,19 @@ #include <drm/drm_debugfs.h> +#include "regs/xe_pmt.h" #include "xe_bo.h" #include "xe_device.h" #include "xe_force_wake.h" #include "xe_gt_debugfs.h" #include "xe_gt_printk.h" #include "xe_guc_ads.h" +#include "xe_mmio.h" #include "xe_pm.h" #include "xe_pxp_debugfs.h" #include "xe_sriov.h" #include "xe_step.h" +#include "xe_vsec.h" #ifdef CONFIG_DRM_XE_DEBUG #include "xe_bo_evict.h" @@ -30,6 +33,23 @@ DECLARE_FAULT_ATTR(gt_reset_failure); +static void read_residency_counter(struct xe_device *xe, struct xe_mmio *mmio, + u32 offset, char *name, struct drm_printer *p) +{ + u64 residency = 0; + int ret; + + ret = xe_pmt_telem_read(to_pci_dev(xe->drm.dev), + xe_mmio_read32(mmio, PUNIT_TELEMETRY_GUID), + &residency, offset, sizeof(residency)); + if (ret != sizeof(residency)) { + drm_warn(&xe->drm, "%s counter failed to read, ret %d\n", name, ret); + return; + } + + drm_printf(p, "%s : %llu\n", name, residency); +} + static struct xe_device *node_to_xe(struct drm_info_node *node) { return to_xe_device(node->minor->dev); @@ -82,11 +102,57 @@ static int sriov_info(struct seq_file *m, void *data) return 0; } +static int dgfx_pkg_residencies_show(struct seq_file *m, void *data) +{ + struct xe_device *xe; + struct xe_mmio *mmio; + struct drm_printer p; + + xe = node_to_xe(m->private); + p = drm_seq_file_printer(m); + xe_pm_runtime_get(xe); + mmio = xe_root_tile_mmio(xe); + + read_residency_counter(xe, mmio, BMG_G2_RESIDENCY_OFFSET, "Package G2", &p); + read_residency_counter(xe, mmio, BMG_G6_RESIDENCY_OFFSET, "Package G6", &p); + read_residency_counter(xe, mmio, BMG_G8_RESIDENCY_OFFSET, "Package G8", &p); + read_residency_counter(xe, mmio, BMG_G10_RESIDENCY_OFFSET, "Package G10", &p); + read_residency_counter(xe, mmio, BMG_MODS_RESIDENCY_OFFSET, "Package ModS", &p); + xe_pm_runtime_put(xe); + return 0; +} + +static int dgfx_pcie_link_residencies_show(struct seq_file *m, void *data) +{ + struct xe_device *xe; + struct xe_mmio *mmio; + struct drm_printer p; + + xe = node_to_xe(m->private); + p = drm_seq_file_printer(m); + xe_pm_runtime_get(xe); + mmio = xe_root_tile_mmio(xe); + + read_residency_counter(xe, mmio, PCIE_LINK_L0_RESIDENCY_COUNTER, + "PCIE LINK L0 RESIDENCY", &p); + read_residency_counter(xe, mmio, PCIE_LINK_L1_RESIDENCY_COUNTER, + "PCIE LINK L1 RESIDENCY", &p); + read_residency_counter(xe, mmio, PCIE_LINK_L1_2_RESIDENCY_COUNTER, + "PCIE LINK L1.2 RESIDENCY", &p); + xe_pm_runtime_put(xe); + return 0; +} + static const struct drm_info_list debugfs_list[] = { {"info", info, 0}, { .name = "sriov_info", .show = sriov_info, }, }; +static const struct drm_info_list debugfs_residencies[] = { + { .name = "dgfx_pkg_residencies", .show = dgfx_pkg_residencies_show, }, + { .name = "dgfx_pcie_link_residencies", .show = dgfx_pcie_link_residencies_show, }, +}; + static int forcewake_open(struct inode *inode, struct file *file) { struct xe_device *xe = inode->i_private; @@ -240,6 +306,11 @@ void xe_debugfs_register(struct xe_device *xe) ARRAY_SIZE(debugfs_list), root, minor); + if (IS_DGFX(xe) && xe->info.platform == XE_BATTLEMAGE) + drm_debugfs_create_files(debugfs_residencies, + ARRAY_SIZE(debugfs_residencies), + root, minor); + debugfs_create_file("forcewake_all", 0400, root, xe, &forcewake_all_fops); -- 2.34.1 ^ permalink raw reply related [flat|nested] 9+ messages in thread
* Re: [PATCH v5 2/2] drm/xe/xe_debugfs: Exposure of G-State and pcie link state residency counters through debugfs 2025-06-20 12:03 ` [PATCH v5 2/2] drm/xe/xe_debugfs: Exposure of G-State and pcie link state residency counters through debugfs Soham Purkait @ 2025-06-24 13:01 ` Poosa, Karthik 0 siblings, 0 replies; 9+ messages in thread From: Poosa, Karthik @ 2025-06-24 13:01 UTC (permalink / raw) To: Soham Purkait, intel-xe, anshuman.gupta, badal.nilawar, riana.tauro, jonathan.cavitt Cc: lucas.demarchi, ashutosh.dixit, jani.nikula On 20-06-2025 17:33, Soham Purkait wrote: > Add debug nodes, "dgfx_pkg_residencies" for G-states (G2, G6, G8, G10, > ModS) and "dgfx_pcie_link_residencies" for PCIe link states(L0, L1, L1.2) > residency counters. > > V1 : Expose all G-State residency counter values under dgfx_pkg_residencies. (Anshuman) > Included runtime_get/put and removed drm_warn. (Riana) > > v2 : Moved "dgfx_pkg_residencies" from "/sys/kernel/debug/gtidle/" to "/sys/kernel/debug/". > (Anshuman) > > v3 : Included debugfs node "dgfx_pcie_link_residencies" for pcie link state residency > counter values. (Anshuman) > > v4 : Included check for BMG and dgfx and helper function for repetitive code. (Riana) > Used drm_info_list to create the debugfs. (Karthik) > > v5 : Reordered commits to reflect the correct dependency hierarchy. (Jonathan) > Simplification of commit message and rectified register offset. (Karthik) > Error handling and return before printing. (Riana) Commit message should be in imperative, present tense. Please change: Moved -> Move, Included -> Include, Reordered-> Reorder Space is not needed after version, it should be v2: v3: etc Multiple changes should be prefixed with - You can refer to other commit messages. Example: v3: - Rebase. - Rephrase commit message. > Signed-off-by: Soham Purkait <soham.purkait@intel.com> > --- > drivers/gpu/drm/xe/xe_debugfs.c | 71 +++++++++++++++++++++++++++++++++ > 1 file changed, 71 insertions(+) > > diff --git a/drivers/gpu/drm/xe/xe_debugfs.c b/drivers/gpu/drm/xe/xe_debugfs.c > index d83cd6ed3fa8..9e1f753ed1df 100644 > --- a/drivers/gpu/drm/xe/xe_debugfs.c > +++ b/drivers/gpu/drm/xe/xe_debugfs.c > @@ -11,16 +11,19 @@ > > #include <drm/drm_debugfs.h> > > +#include "regs/xe_pmt.h" > #include "xe_bo.h" > #include "xe_device.h" > #include "xe_force_wake.h" > #include "xe_gt_debugfs.h" > #include "xe_gt_printk.h" > #include "xe_guc_ads.h" > +#include "xe_mmio.h" > #include "xe_pm.h" > #include "xe_pxp_debugfs.h" > #include "xe_sriov.h" > #include "xe_step.h" > +#include "xe_vsec.h" > > #ifdef CONFIG_DRM_XE_DEBUG > #include "xe_bo_evict.h" > @@ -30,6 +33,23 @@ > > DECLARE_FAULT_ATTR(gt_reset_failure); > > +static void read_residency_counter(struct xe_device *xe, struct xe_mmio *mmio, > + u32 offset, char *name, struct drm_printer *p) > +{ > + u64 residency = 0; > + int ret; > + > + ret = xe_pmt_telem_read(to_pci_dev(xe->drm.dev), > + xe_mmio_read32(mmio, PUNIT_TELEMETRY_GUID), > + &residency, offset, sizeof(residency)); > + if (ret != sizeof(residency)) { > + drm_warn(&xe->drm, "%s counter failed to read, ret %d\n", name, ret); > + return; > + } > + > + drm_printf(p, "%s : %llu\n", name, residency); > +} > + > static struct xe_device *node_to_xe(struct drm_info_node *node) > { > return to_xe_device(node->minor->dev); > @@ -82,11 +102,57 @@ static int sriov_info(struct seq_file *m, void *data) > return 0; > } > > +static int dgfx_pkg_residencies_show(struct seq_file *m, void *data) > +{ > + struct xe_device *xe; > + struct xe_mmio *mmio; > + struct drm_printer p; > + > + xe = node_to_xe(m->private); > + p = drm_seq_file_printer(m); > + xe_pm_runtime_get(xe); > + mmio = xe_root_tile_mmio(xe); > + > + read_residency_counter(xe, mmio, BMG_G2_RESIDENCY_OFFSET, "Package G2", &p); > + read_residency_counter(xe, mmio, BMG_G6_RESIDENCY_OFFSET, "Package G6", &p); > + read_residency_counter(xe, mmio, BMG_G8_RESIDENCY_OFFSET, "Package G8", &p); > + read_residency_counter(xe, mmio, BMG_G10_RESIDENCY_OFFSET, "Package G10", &p); > + read_residency_counter(xe, mmio, BMG_MODS_RESIDENCY_OFFSET, "Package ModS", &p); > + xe_pm_runtime_put(xe); > + return 0; > +} > + > +static int dgfx_pcie_link_residencies_show(struct seq_file *m, void *data) > +{ > + struct xe_device *xe; > + struct xe_mmio *mmio; > + struct drm_printer p; > + > + xe = node_to_xe(m->private); > + p = drm_seq_file_printer(m); > + xe_pm_runtime_get(xe); > + mmio = xe_root_tile_mmio(xe); > + > + read_residency_counter(xe, mmio, PCIE_LINK_L0_RESIDENCY_COUNTER, > + "PCIE LINK L0 RESIDENCY", &p); > + read_residency_counter(xe, mmio, PCIE_LINK_L1_RESIDENCY_COUNTER, > + "PCIE LINK L1 RESIDENCY", &p); > + read_residency_counter(xe, mmio, PCIE_LINK_L1_2_RESIDENCY_COUNTER, > + "PCIE LINK L1.2 RESIDENCY", &p); > + xe_pm_runtime_put(xe); > + return 0; > +} > + > static const struct drm_info_list debugfs_list[] = { > {"info", info, 0}, > { .name = "sriov_info", .show = sriov_info, }, > }; > > +static const struct drm_info_list debugfs_residencies[] = { > + { .name = "dgfx_pkg_residencies", .show = dgfx_pkg_residencies_show, }, > + { .name = "dgfx_pcie_link_residencies", .show = dgfx_pcie_link_residencies_show, }, > +}; > + > static int forcewake_open(struct inode *inode, struct file *file) > { > struct xe_device *xe = inode->i_private; > @@ -240,6 +306,11 @@ void xe_debugfs_register(struct xe_device *xe) > ARRAY_SIZE(debugfs_list), > root, minor); > > + if (IS_DGFX(xe) && xe->info.platform == XE_BATTLEMAGE) If the offsets are common for all DGFX you can keep only IS_DGFX() check. else IS_DGFX() is not needed, as BATTLEMAGE is already DGFX. > + drm_debugfs_create_files(debugfs_residencies, > + ARRAY_SIZE(debugfs_residencies), > + root, minor); > + > debugfs_create_file("forcewake_all", 0400, root, xe, > &forcewake_all_fops); > ^ permalink raw reply [flat|nested] 9+ messages in thread
* ✗ CI.checkpatch: warning for Add debugfs node to expose G-state and pcie link state residency (rev3) 2025-06-20 12:03 [PATCH v5 0/2] Add debugfs node to expose G-state and pcie link state residency Soham Purkait 2025-06-20 12:03 ` [PATCH v5 1/2] drm/xe/regs/xe_pmt: Macros for G-State and pcie link state residency offset Soham Purkait 2025-06-20 12:03 ` [PATCH v5 2/2] drm/xe/xe_debugfs: Exposure of G-State and pcie link state residency counters through debugfs Soham Purkait @ 2025-06-20 12:28 ` Patchwork 2025-06-20 12:29 ` ✓ CI.KUnit: success " Patchwork 2025-06-20 22:52 ` ✗ Xe.CI.Full: failure " Patchwork 4 siblings, 0 replies; 9+ messages in thread From: Patchwork @ 2025-06-20 12:28 UTC (permalink / raw) To: Soham Purkait; +Cc: intel-xe == Series Details == Series: Add debugfs node to expose G-state and pcie link state residency (rev3) URL : https://patchwork.freedesktop.org/series/149793/ State : warning == Summary == + KERNEL=/kernel + git clone https://gitlab.freedesktop.org/drm/maintainer-tools mt Cloning into 'mt'... warning: redirecting to https://gitlab.freedesktop.org/drm/maintainer-tools.git/ + git -C mt rev-list -n1 origin/master f8ff75ae1d2127635239b134695774ed4045d05b + cd /kernel + git config --global --add safe.directory /kernel + git log -n1 commit 178a117ee35c572010bcd7584657cd8cc1025b10 Author: Soham Purkait <soham.purkait@intel.com> Date: Fri Jun 20 17:33:56 2025 +0530 drm/xe/xe_debugfs: Exposure of G-State and pcie link state residency counters through debugfs Add debug nodes, "dgfx_pkg_residencies" for G-states (G2, G6, G8, G10, ModS) and "dgfx_pcie_link_residencies" for PCIe link states(L0, L1, L1.2) residency counters. V1 : Expose all G-State residency counter values under dgfx_pkg_residencies. (Anshuman) Included runtime_get/put and removed drm_warn. (Riana) v2 : Moved "dgfx_pkg_residencies" from "/sys/kernel/debug/gtidle/" to "/sys/kernel/debug/". (Anshuman) v3 : Included debugfs node "dgfx_pcie_link_residencies" for pcie link state residency counter values. (Anshuman) v4 : Included check for BMG and dgfx and helper function for repetitive code. (Riana) Used drm_info_list to create the debugfs. (Karthik) v5 : Reordered commits to reflect the correct dependency hierarchy. (Jonathan) Simplification of commit message and rectified register offset. (Karthik) Error handling and return before printing. (Riana) Signed-off-by: Soham Purkait <soham.purkait@intel.com> + /mt/dim checkpatch 1b4be188ae14a43b901f3005075fab3a22f77968 drm-intel a3011746b82e drm/xe/regs/xe_pmt: Macros for G-State and pcie link state residency offset -:13: WARNING:COMMIT_LOG_LONG_LINE: Prefer a maximum 75 chars per line (possible unwrapped commit description?) #13: v5 : Reordered commits to reflect the correct dependency hierarchy. (Jonathan) total: 0 errors, 1 warnings, 0 checks, 14 lines checked 178a117ee35c drm/xe/xe_debugfs: Exposure of G-State and pcie link state residency counters through debugfs -:11: WARNING:COMMIT_LOG_LONG_LINE: Prefer a maximum 75 chars per line (possible unwrapped commit description?) #11: V1 : Expose all G-State residency counter values under dgfx_pkg_residencies. (Anshuman) total: 0 errors, 1 warnings, 0 checks, 110 lines checked ^ permalink raw reply [flat|nested] 9+ messages in thread
* ✓ CI.KUnit: success for Add debugfs node to expose G-state and pcie link state residency (rev3) 2025-06-20 12:03 [PATCH v5 0/2] Add debugfs node to expose G-state and pcie link state residency Soham Purkait ` (2 preceding siblings ...) 2025-06-20 12:28 ` ✗ CI.checkpatch: warning for Add debugfs node to expose G-state and pcie link state residency (rev3) Patchwork @ 2025-06-20 12:29 ` Patchwork 2025-06-20 22:52 ` ✗ Xe.CI.Full: failure " Patchwork 4 siblings, 0 replies; 9+ messages in thread From: Patchwork @ 2025-06-20 12:29 UTC (permalink / raw) To: Soham Purkait; +Cc: intel-xe == Series Details == Series: Add debugfs node to expose G-state and pcie link state residency (rev3) URL : https://patchwork.freedesktop.org/series/149793/ State : success == Summary == + trap cleanup EXIT + /kernel/tools/testing/kunit/kunit.py run --kunitconfig /kernel/drivers/gpu/drm/xe/.kunitconfig [12:28:10] Configuring KUnit Kernel ... Generating .config ... Populating config with: $ make ARCH=um O=.kunit olddefconfig [12:28:14] Building KUnit Kernel ... Populating config with: $ make ARCH=um O=.kunit olddefconfig Building with: $ make all compile_commands.json scripts_gdb ARCH=um O=.kunit --jobs=48 [12:28:41] Starting KUnit Kernel (1/1)... [12:28:41] ============================================================ Running tests with: $ .kunit/linux kunit.enable=1 mem=1G console=tty kunit_shutdown=halt [12:28:41] ================== guc_buf (11 subtests) =================== [12:28:41] [PASSED] test_smallest [12:28:41] [PASSED] test_largest [12:28:41] [PASSED] test_granular [12:28:41] [PASSED] test_unique [12:28:41] [PASSED] test_overlap [12:28:41] [PASSED] test_reusable [12:28:41] [PASSED] test_too_big [12:28:41] [PASSED] test_flush [12:28:41] [PASSED] test_lookup [12:28:41] [PASSED] test_data [12:28:41] [PASSED] test_class [12:28:41] ===================== [PASSED] guc_buf ===================== [12:28:41] =================== guc_dbm (7 subtests) =================== [12:28:41] [PASSED] test_empty [12:28:41] [PASSED] test_default [12:28:41] ======================== test_size ======================== [12:28:41] [PASSED] 4 [12:28:41] [PASSED] 8 [12:28:41] [PASSED] 32 [12:28:41] [PASSED] 256 [12:28:41] ==================== [PASSED] test_size ==================== [12:28:41] ======================= test_reuse ======================== [12:28:41] [PASSED] 4 [12:28:41] [PASSED] 8 [12:28:41] [PASSED] 32 [12:28:41] [PASSED] 256 [12:28:41] =================== [PASSED] test_reuse ==================== [12:28:41] =================== test_range_overlap ==================== [12:28:41] [PASSED] 4 [12:28:41] [PASSED] 8 [12:28:41] [PASSED] 32 [12:28:41] [PASSED] 256 [12:28:41] =============== [PASSED] test_range_overlap ================ [12:28:41] =================== test_range_compact ==================== [12:28:41] [PASSED] 4 [12:28:41] [PASSED] 8 [12:28:41] [PASSED] 32 [12:28:41] [PASSED] 256 [12:28:41] =============== [PASSED] test_range_compact ================ [12:28:41] ==================== test_range_spare ===================== [12:28:41] [PASSED] 4 [12:28:41] [PASSED] 8 [12:28:41] [PASSED] 32 [12:28:41] [PASSED] 256 [12:28:41] ================ [PASSED] test_range_spare ================= [12:28:41] ===================== [PASSED] guc_dbm ===================== [12:28:41] =================== guc_idm (6 subtests) =================== [12:28:41] [PASSED] bad_init [12:28:41] [PASSED] no_init [12:28:41] [PASSED] init_fini [12:28:41] [PASSED] check_used [12:28:41] [PASSED] check_quota [12:28:41] [PASSED] check_all [12:28:41] ===================== [PASSED] guc_idm ===================== [12:28:41] ================== no_relay (3 subtests) =================== [12:28:41] [PASSED] xe_drops_guc2pf_if_not_ready [12:28:41] [PASSED] xe_drops_guc2vf_if_not_ready [12:28:41] [PASSED] xe_rejects_send_if_not_ready [12:28:41] ==================== [PASSED] no_relay ===================== [12:28:41] ================== pf_relay (14 subtests) ================== [12:28:41] [PASSED] pf_rejects_guc2pf_too_short [12:28:41] [PASSED] pf_rejects_guc2pf_too_long [12:28:41] [PASSED] pf_rejects_guc2pf_no_payload [12:28:41] [PASSED] pf_fails_no_payload [12:28:41] [PASSED] pf_fails_bad_origin [12:28:41] [PASSED] pf_fails_bad_type [12:28:41] [PASSED] pf_txn_reports_error [12:28:41] [PASSED] pf_txn_sends_pf2guc [12:28:41] [PASSED] pf_sends_pf2guc [12:28:41] [SKIPPED] pf_loopback_nop [12:28:41] [SKIPPED] pf_loopback_echo [12:28:41] [SKIPPED] pf_loopback_fail [12:28:41] [SKIPPED] pf_loopback_busy [12:28:41] [SKIPPED] pf_loopback_retry [12:28:41] ==================== [PASSED] pf_relay ===================== [12:28:41] ================== vf_relay (3 subtests) =================== [12:28:41] [PASSED] vf_rejects_guc2vf_too_short [12:28:41] [PASSED] vf_rejects_guc2vf_too_long [12:28:41] [PASSED] vf_rejects_guc2vf_no_payload [12:28:41] ==================== [PASSED] vf_relay ===================== [12:28:41] ================= pf_service (11 subtests) ================= [12:28:41] [PASSED] pf_negotiate_any [12:28:41] [PASSED] pf_negotiate_base_match [12:28:41] [PASSED] pf_negotiate_base_newer [12:28:41] [PASSED] pf_negotiate_base_next [12:28:41] [SKIPPED] pf_negotiate_base_older [12:28:41] [PASSED] pf_negotiate_base_prev [12:28:41] [PASSED] pf_negotiate_latest_match [12:28:41] [PASSED] pf_negotiate_latest_newer [12:28:41] [PASSED] pf_negotiate_latest_next [12:28:41] [SKIPPED] pf_negotiate_latest_older [12:28:41] [SKIPPED] pf_negotiate_latest_prev [12:28:41] =================== [PASSED] pf_service ==================== [12:28:41] ===================== lmtt (1 subtest) ===================== [12:28:41] ======================== test_ops ========================= [12:28:41] [PASSED] 2-level [12:28:41] [PASSED] multi-level [12:28:41] ==================== [PASSED] test_ops ===================== [12:28:41] ====================== [PASSED] lmtt ======================= [12:28:41] =================== xe_mocs (2 subtests) =================== [12:28:41] ================ xe_live_mocs_kernel_kunit ================ [12:28:41] =========== [SKIPPED] xe_live_mocs_kernel_kunit ============ [12:28:41] ================ xe_live_mocs_reset_kunit ================= [12:28:41] ============ [SKIPPED] xe_live_mocs_reset_kunit ============ [12:28:41] ==================== [SKIPPED] xe_mocs ===================== [12:28:41] ================= xe_migrate (2 subtests) ================== [12:28:41] ================= xe_migrate_sanity_kunit ================= [12:28:41] ============ [SKIPPED] xe_migrate_sanity_kunit ============= [12:28:41] ================== xe_validate_ccs_kunit ================== [12:28:41] ============= [SKIPPED] xe_validate_ccs_kunit ============== [12:28:41] =================== [SKIPPED] xe_migrate =================== [12:28:41] ================== xe_dma_buf (1 subtest) ================== [12:28:41] ==================== xe_dma_buf_kunit ===================== [12:28:41] ================ [SKIPPED] xe_dma_buf_kunit ================ [12:28:41] =================== [SKIPPED] xe_dma_buf =================== [12:28:41] ================= xe_bo_shrink (1 subtest) ================= [12:28:41] =================== xe_bo_shrink_kunit ==================== [12:28:41] =============== [SKIPPED] xe_bo_shrink_kunit =============== [12:28:41] ================== [SKIPPED] xe_bo_shrink ================== [12:28:41] ==================== xe_bo (2 subtests) ==================== [12:28:41] ================== xe_ccs_migrate_kunit =================== [12:28:41] ============== [SKIPPED] xe_ccs_migrate_kunit ============== [12:28:41] ==================== xe_bo_evict_kunit ==================== [12:28:41] =============== [SKIPPED] xe_bo_evict_kunit ================ [12:28:41] ===================== [SKIPPED] xe_bo ====================== [12:28:41] ==================== args (11 subtests) ==================== [12:28:41] [PASSED] count_args_test [12:28:41] [PASSED] call_args_example [12:28:41] [PASSED] call_args_test [12:28:41] [PASSED] drop_first_arg_example [12:28:41] [PASSED] drop_first_arg_test [12:28:41] [PASSED] first_arg_example [12:28:41] [PASSED] first_arg_test [12:28:41] [PASSED] last_arg_example [12:28:41] [PASSED] last_arg_test [12:28:41] [PASSED] pick_arg_example [12:28:41] [PASSED] sep_comma_example [12:28:41] ====================== [PASSED] args ======================= [12:28:41] =================== xe_pci (2 subtests) ==================== [12:28:41] ==================== check_graphics_ip ==================== [12:28:41] [PASSED] 12.70 Xe_LPG [12:28:41] [PASSED] 12.71 Xe_LPG [12:28:41] [PASSED] 12.74 Xe_LPG+ [12:28:41] [PASSED] 20.01 Xe2_HPG [12:28:41] [PASSED] 20.02 Xe2_HPG [12:28:41] [PASSED] 20.04 Xe2_LPG [12:28:41] [PASSED] 30.00 Xe3_LPG [12:28:41] [PASSED] 30.01 Xe3_LPG [12:28:41] [PASSED] 30.03 Xe3_LPG [12:28:41] ================ [PASSED] check_graphics_ip ================ [12:28:41] ===================== check_media_ip ====================== [12:28:41] [PASSED] 13.00 Xe_LPM+ [12:28:41] [PASSED] 13.01 Xe2_HPM [12:28:41] [PASSED] 20.00 Xe2_LPM [12:28:41] [PASSED] 30.00 Xe3_LPM [12:28:41] [PASSED] 30.02 Xe3_LPM stty: 'standard input': Inappropriate ioctl for device [12:28:41] ================= [PASSED] check_media_ip ================== [12:28:41] ===================== [PASSED] xe_pci ====================== [12:28:41] =================== xe_rtp (2 subtests) ==================== [12:28:41] =============== xe_rtp_process_to_sr_tests ================ [12:28:41] [PASSED] coalesce-same-reg [12:28:41] [PASSED] no-match-no-add [12:28:41] [PASSED] match-or [12:28:41] [PASSED] match-or-xfail [12:28:41] [PASSED] no-match-no-add-multiple-rules [12:28:41] [PASSED] two-regs-two-entries [12:28:41] [PASSED] clr-one-set-other [12:28:41] [PASSED] set-field [12:28:41] [PASSED] conflict-duplicate [12:28:41] [PASSED] conflict-not-disjoint [12:28:41] [PASSED] conflict-reg-type [12:28:41] =========== [PASSED] xe_rtp_process_to_sr_tests ============ [12:28:41] ================== xe_rtp_process_tests =================== [12:28:41] [PASSED] active1 [12:28:41] [PASSED] active2 [12:28:41] [PASSED] active-inactive [12:28:41] [PASSED] inactive-active [12:28:41] [PASSED] inactive-1st_or_active-inactive [12:28:41] [PASSED] inactive-2nd_or_active-inactive [12:28:41] [PASSED] inactive-last_or_active-inactive [12:28:41] [PASSED] inactive-no_or_active-inactive [12:28:41] ============== [PASSED] xe_rtp_process_tests =============== [12:28:41] ===================== [PASSED] xe_rtp ====================== [12:28:41] ==================== xe_wa (1 subtest) ===================== [12:28:41] ======================== xe_wa_gt ========================= [12:28:41] [PASSED] TIGERLAKE (B0) [12:28:41] [PASSED] DG1 (A0) [12:28:41] [PASSED] DG1 (B0) [12:28:41] [PASSED] ALDERLAKE_S (A0) [12:28:41] [PASSED] ALDERLAKE_S (B0) [12:28:41] [PASSED] ALDERLAKE_S (C0) [12:28:41] [PASSED] ALDERLAKE_S (D0) [12:28:41] [PASSED] ALDERLAKE_P (A0) [12:28:41] [PASSED] ALDERLAKE_P (B0) [12:28:41] [PASSED] ALDERLAKE_P (C0) [12:28:41] [PASSED] ALDERLAKE_S_RPLS (D0) [12:28:41] [PASSED] ALDERLAKE_P_RPLU (E0) [12:28:41] [PASSED] DG2_G10 (C0) [12:28:41] [PASSED] DG2_G11 (B1) [12:28:41] [PASSED] DG2_G12 (A1) [12:28:41] [PASSED] METEORLAKE (g:A0, m:A0) [12:28:41] [PASSED] METEORLAKE (g:A0, m:A0) [12:28:41] [PASSED] METEORLAKE (g:A0, m:A0) [12:28:41] [PASSED] LUNARLAKE (g:A0, m:A0) [12:28:41] [PASSED] LUNARLAKE (g:B0, m:A0) [12:28:41] [PASSED] BATTLEMAGE (g:A0, m:A1) [12:28:41] ==================== [PASSED] xe_wa_gt ===================== [12:28:41] ====================== [PASSED] xe_wa ====================== [12:28:41] ============================================================ [12:28:41] Testing complete. Ran 145 tests: passed: 129, skipped: 16 [12:28:41] Elapsed time: 31.273s total, 4.135s configuring, 26.822s building, 0.293s running + /kernel/tools/testing/kunit/kunit.py run --kunitconfig /kernel/drivers/gpu/drm/tests/.kunitconfig [12:28:41] Configuring KUnit Kernel ... Regenerating .config ... Populating config with: $ make ARCH=um O=.kunit olddefconfig [12:28:43] Building KUnit Kernel ... Populating config with: $ make ARCH=um O=.kunit olddefconfig Building with: $ make all compile_commands.json scripts_gdb ARCH=um O=.kunit --jobs=48 [12:29:05] Starting KUnit Kernel (1/1)... [12:29:05] ============================================================ Running tests with: $ .kunit/linux kunit.enable=1 mem=1G console=tty kunit_shutdown=halt [12:29:05] == drm_test_atomic_get_connector_for_encoder (1 subtest) === [12:29:05] [PASSED] drm_test_drm_atomic_get_connector_for_encoder [12:29:05] ==== [PASSED] drm_test_atomic_get_connector_for_encoder ==== [12:29:05] =========== drm_validate_clone_mode (2 subtests) =========== [12:29:05] ============== drm_test_check_in_clone_mode =============== [12:29:05] [PASSED] in_clone_mode [12:29:05] [PASSED] not_in_clone_mode [12:29:05] ========== [PASSED] drm_test_check_in_clone_mode =========== [12:29:05] =============== drm_test_check_valid_clones =============== [12:29:05] [PASSED] not_in_clone_mode [12:29:05] [PASSED] valid_clone [12:29:05] [PASSED] invalid_clone [12:29:05] =========== [PASSED] drm_test_check_valid_clones =========== [12:29:05] ============= [PASSED] drm_validate_clone_mode ============= [12:29:05] ============= drm_validate_modeset (1 subtest) ============= [12:29:05] [PASSED] drm_test_check_connector_changed_modeset [12:29:05] ============== [PASSED] drm_validate_modeset =============== [12:29:05] ====== drm_test_bridge_get_current_state (2 subtests) ====== [12:29:05] [PASSED] drm_test_drm_bridge_get_current_state_atomic [12:29:05] [PASSED] drm_test_drm_bridge_get_current_state_legacy [12:29:05] ======== [PASSED] drm_test_bridge_get_current_state ======== [12:29:05] ====== drm_test_bridge_helper_reset_crtc (3 subtests) ====== [12:29:05] [PASSED] drm_test_drm_bridge_helper_reset_crtc_atomic [12:29:05] [PASSED] drm_test_drm_bridge_helper_reset_crtc_atomic_disabled [12:29:05] [PASSED] drm_test_drm_bridge_helper_reset_crtc_legacy [12:29:05] ======== [PASSED] drm_test_bridge_helper_reset_crtc ======== [12:29:05] ============== drm_bridge_alloc (2 subtests) =============== [12:29:05] [PASSED] drm_test_drm_bridge_alloc_basic [12:29:05] [PASSED] drm_test_drm_bridge_alloc_get_put [12:29:05] ================ [PASSED] drm_bridge_alloc ================= [12:29:05] ================== drm_buddy (7 subtests) ================== [12:29:05] [PASSED] drm_test_buddy_alloc_limit [12:29:05] [PASSED] drm_test_buddy_alloc_optimistic [12:29:05] [PASSED] drm_test_buddy_alloc_pessimistic [12:29:05] [PASSED] drm_test_buddy_alloc_pathological [12:29:05] [PASSED] drm_test_buddy_alloc_contiguous [12:29:05] [PASSED] drm_test_buddy_alloc_clear [12:29:05] [PASSED] drm_test_buddy_alloc_range_bias [12:29:05] ==================== [PASSED] drm_buddy ==================== [12:29:05] ============= drm_cmdline_parser (40 subtests) ============= [12:29:05] [PASSED] drm_test_cmdline_force_d_only [12:29:05] [PASSED] drm_test_cmdline_force_D_only_dvi [12:29:05] [PASSED] drm_test_cmdline_force_D_only_hdmi [12:29:05] [PASSED] drm_test_cmdline_force_D_only_not_digital [12:29:05] [PASSED] drm_test_cmdline_force_e_only [12:29:05] [PASSED] drm_test_cmdline_res [12:29:05] [PASSED] drm_test_cmdline_res_vesa [12:29:05] [PASSED] drm_test_cmdline_res_vesa_rblank [12:29:05] [PASSED] drm_test_cmdline_res_rblank [12:29:05] [PASSED] drm_test_cmdline_res_bpp [12:29:05] [PASSED] drm_test_cmdline_res_refresh [12:29:05] [PASSED] drm_test_cmdline_res_bpp_refresh [12:29:05] [PASSED] drm_test_cmdline_res_bpp_refresh_interlaced [12:29:05] [PASSED] drm_test_cmdline_res_bpp_refresh_margins [12:29:05] [PASSED] drm_test_cmdline_res_bpp_refresh_force_off [12:29:05] [PASSED] drm_test_cmdline_res_bpp_refresh_force_on [12:29:05] [PASSED] drm_test_cmdline_res_bpp_refresh_force_on_analog [12:29:05] [PASSED] drm_test_cmdline_res_bpp_refresh_force_on_digital [12:29:05] [PASSED] drm_test_cmdline_res_bpp_refresh_interlaced_margins_force_on [12:29:05] [PASSED] drm_test_cmdline_res_margins_force_on [12:29:05] [PASSED] drm_test_cmdline_res_vesa_margins [12:29:05] [PASSED] drm_test_cmdline_name [12:29:05] [PASSED] drm_test_cmdline_name_bpp [12:29:05] [PASSED] drm_test_cmdline_name_option [12:29:05] [PASSED] drm_test_cmdline_name_bpp_option [12:29:05] [PASSED] drm_test_cmdline_rotate_0 [12:29:05] [PASSED] drm_test_cmdline_rotate_90 [12:29:05] [PASSED] drm_test_cmdline_rotate_180 [12:29:05] [PASSED] drm_test_cmdline_rotate_270 [12:29:05] [PASSED] drm_test_cmdline_hmirror [12:29:05] [PASSED] drm_test_cmdline_vmirror [12:29:05] [PASSED] drm_test_cmdline_margin_options [12:29:05] [PASSED] drm_test_cmdline_multiple_options [12:29:05] [PASSED] drm_test_cmdline_bpp_extra_and_option [12:29:05] [PASSED] drm_test_cmdline_extra_and_option [12:29:05] [PASSED] drm_test_cmdline_freestanding_options [12:29:05] [PASSED] drm_test_cmdline_freestanding_force_e_and_options [12:29:05] [PASSED] drm_test_cmdline_panel_orientation [12:29:05] ================ drm_test_cmdline_invalid ================= [12:29:05] [PASSED] margin_only [12:29:05] [PASSED] interlace_only [12:29:05] [PASSED] res_missing_x [12:29:05] [PASSED] res_missing_y [12:29:05] [PASSED] res_bad_y [12:29:05] [PASSED] res_missing_y_bpp [12:29:05] [PASSED] res_bad_bpp [12:29:05] [PASSED] res_bad_refresh [12:29:05] [PASSED] res_bpp_refresh_force_on_off [12:29:05] [PASSED] res_invalid_mode [12:29:05] [PASSED] res_bpp_wrong_place_mode [12:29:05] [PASSED] name_bpp_refresh [12:29:05] [PASSED] name_refresh [12:29:05] [PASSED] name_refresh_wrong_mode [12:29:05] [PASSED] name_refresh_invalid_mode [12:29:05] [PASSED] rotate_multiple [12:29:05] [PASSED] rotate_invalid_val [12:29:05] [PASSED] rotate_truncated [12:29:05] [PASSED] invalid_option [12:29:05] [PASSED] invalid_tv_option [12:29:05] [PASSED] truncated_tv_option [12:29:05] ============ [PASSED] drm_test_cmdline_invalid ============= [12:29:05] =============== drm_test_cmdline_tv_options =============== [12:29:05] [PASSED] NTSC [12:29:05] [PASSED] NTSC_443 [12:29:05] [PASSED] NTSC_J [12:29:05] [PASSED] PAL [12:29:05] [PASSED] PAL_M [12:29:05] [PASSED] PAL_N [12:29:05] [PASSED] SECAM [12:29:05] [PASSED] MONO_525 [12:29:05] [PASSED] MONO_625 [12:29:05] =========== [PASSED] drm_test_cmdline_tv_options =========== [12:29:05] =============== [PASSED] drm_cmdline_parser ================ [12:29:05] ========== drmm_connector_hdmi_init (20 subtests) ========== [12:29:05] [PASSED] drm_test_connector_hdmi_init_valid [12:29:05] [PASSED] drm_test_connector_hdmi_init_bpc_8 [12:29:05] [PASSED] drm_test_connector_hdmi_init_bpc_10 [12:29:05] [PASSED] drm_test_connector_hdmi_init_bpc_12 [12:29:05] [PASSED] drm_test_connector_hdmi_init_bpc_invalid [12:29:05] [PASSED] drm_test_connector_hdmi_init_bpc_null [12:29:05] [PASSED] drm_test_connector_hdmi_init_formats_empty [12:29:05] [PASSED] drm_test_connector_hdmi_init_formats_no_rgb [12:29:05] === drm_test_connector_hdmi_init_formats_yuv420_allowed === [12:29:05] [PASSED] supported_formats=0x9 yuv420_allowed=1 [12:29:05] [PASSED] supported_formats=0x9 yuv420_allowed=0 [12:29:05] [PASSED] supported_formats=0x3 yuv420_allowed=1 [12:29:05] [PASSED] supported_formats=0x3 yuv420_allowed=0 [12:29:05] === [PASSED] drm_test_connector_hdmi_init_formats_yuv420_allowed === [12:29:05] [PASSED] drm_test_connector_hdmi_init_null_ddc [12:29:05] [PASSED] drm_test_connector_hdmi_init_null_product [12:29:05] [PASSED] drm_test_connector_hdmi_init_null_vendor [12:29:05] [PASSED] drm_test_connector_hdmi_init_product_length_exact [12:29:05] [PASSED] drm_test_connector_hdmi_init_product_length_too_long [12:29:05] [PASSED] drm_test_connector_hdmi_init_product_valid [12:29:05] [PASSED] drm_test_connector_hdmi_init_vendor_length_exact [12:29:05] [PASSED] drm_test_connector_hdmi_init_vendor_length_too_long [12:29:05] [PASSED] drm_test_connector_hdmi_init_vendor_valid [12:29:05] ========= drm_test_connector_hdmi_init_type_valid ========= [12:29:05] [PASSED] HDMI-A [12:29:05] [PASSED] HDMI-B [12:29:05] ===== [PASSED] drm_test_connector_hdmi_init_type_valid ===== [12:29:05] ======== drm_test_connector_hdmi_init_type_invalid ======== [12:29:05] [PASSED] Unknown [12:29:05] [PASSED] VGA [12:29:05] [PASSED] DVI-I [12:29:05] [PASSED] DVI-D [12:29:05] [PASSED] DVI-A [12:29:05] [PASSED] Composite [12:29:05] [PASSED] SVIDEO [12:29:05] [PASSED] LVDS [12:29:05] [PASSED] Component [12:29:05] [PASSED] DIN [12:29:05] [PASSED] DP [12:29:05] [PASSED] TV [12:29:05] [PASSED] eDP [12:29:05] [PASSED] Virtual [12:29:05] [PASSED] DSI [12:29:05] [PASSED] DPI [12:29:05] [PASSED] Writeback [12:29:05] [PASSED] SPI [12:29:05] [PASSED] USB [12:29:05] ==== [PASSED] drm_test_connector_hdmi_init_type_invalid ==== [12:29:05] ============ [PASSED] drmm_connector_hdmi_init ============= [12:29:05] ============= drmm_connector_init (3 subtests) ============= [12:29:05] [PASSED] drm_test_drmm_connector_init [12:29:05] [PASSED] drm_test_drmm_connector_init_null_ddc [12:29:05] ========= drm_test_drmm_connector_init_type_valid ========= [12:29:05] [PASSED] Unknown [12:29:05] [PASSED] VGA [12:29:05] [PASSED] DVI-I [12:29:05] [PASSED] DVI-D [12:29:05] [PASSED] DVI-A [12:29:05] [PASSED] Composite [12:29:05] [PASSED] SVIDEO [12:29:05] [PASSED] LVDS [12:29:05] [PASSED] Component [12:29:05] [PASSED] DIN [12:29:05] [PASSED] DP [12:29:05] [PASSED] HDMI-A [12:29:05] [PASSED] HDMI-B [12:29:05] [PASSED] TV [12:29:05] [PASSED] eDP [12:29:05] [PASSED] Virtual [12:29:05] [PASSED] DSI [12:29:05] [PASSED] DPI [12:29:05] [PASSED] Writeback [12:29:05] [PASSED] SPI [12:29:05] [PASSED] USB [12:29:05] ===== [PASSED] drm_test_drmm_connector_init_type_valid ===== [12:29:05] =============== [PASSED] drmm_connector_init =============== [12:29:05] ========= drm_connector_dynamic_init (6 subtests) ========== [12:29:05] [PASSED] drm_test_drm_connector_dynamic_init [12:29:05] [PASSED] drm_test_drm_connector_dynamic_init_null_ddc [12:29:05] [PASSED] drm_test_drm_connector_dynamic_init_not_added [12:29:05] [PASSED] drm_test_drm_connector_dynamic_init_properties [12:29:05] ===== drm_test_drm_connector_dynamic_init_type_valid ====== [12:29:05] [PASSED] Unknown [12:29:05] [PASSED] VGA [12:29:05] [PASSED] DVI-I [12:29:05] [PASSED] DVI-D [12:29:05] [PASSED] DVI-A [12:29:05] [PASSED] Composite [12:29:05] [PASSED] SVIDEO [12:29:05] [PASSED] LVDS [12:29:05] [PASSED] Component [12:29:05] [PASSED] DIN [12:29:05] [PASSED] DP [12:29:05] [PASSED] HDMI-A [12:29:05] [PASSED] HDMI-B [12:29:05] [PASSED] TV [12:29:05] [PASSED] eDP [12:29:05] [PASSED] Virtual [12:29:05] [PASSED] DSI [12:29:05] [PASSED] DPI [12:29:05] [PASSED] Writeback [12:29:05] [PASSED] SPI [12:29:05] [PASSED] USB [12:29:05] = [PASSED] drm_test_drm_connector_dynamic_init_type_valid == [12:29:05] ======== drm_test_drm_connector_dynamic_init_name ========= [12:29:05] [PASSED] Unknown [12:29:05] [PASSED] VGA [12:29:05] [PASSED] DVI-I [12:29:05] [PASSED] DVI-D [12:29:05] [PASSED] DVI-A [12:29:05] [PASSED] Composite [12:29:05] [PASSED] SVIDEO [12:29:05] [PASSED] LVDS [12:29:05] [PASSED] Component [12:29:05] [PASSED] DIN [12:29:05] [PASSED] DP [12:29:05] [PASSED] HDMI-A [12:29:05] [PASSED] HDMI-B [12:29:05] [PASSED] TV [12:29:05] [PASSED] eDP [12:29:05] [PASSED] Virtual [12:29:05] [PASSED] DSI [12:29:05] [PASSED] DPI [12:29:05] [PASSED] Writeback [12:29:05] [PASSED] SPI [12:29:05] [PASSED] USB [12:29:05] ==== [PASSED] drm_test_drm_connector_dynamic_init_name ===== [12:29:05] =========== [PASSED] drm_connector_dynamic_init ============ [12:29:05] ==== drm_connector_dynamic_register_early (4 subtests) ===== [12:29:05] [PASSED] drm_test_drm_connector_dynamic_register_early_on_list [12:29:05] [PASSED] drm_test_drm_connector_dynamic_register_early_defer [12:29:05] [PASSED] drm_test_drm_connector_dynamic_register_early_no_init [12:29:05] [PASSED] drm_test_drm_connector_dynamic_register_early_no_mode_object [12:29:05] ====== [PASSED] drm_connector_dynamic_register_early ======= [12:29:05] ======= drm_connector_dynamic_register (7 subtests) ======== [12:29:05] [PASSED] drm_test_drm_connector_dynamic_register_on_list [12:29:05] [PASSED] drm_test_drm_connector_dynamic_register_no_defer [12:29:05] [PASSED] drm_test_drm_connector_dynamic_register_no_init [12:29:05] [PASSED] drm_test_drm_connector_dynamic_register_mode_object [12:29:05] [PASSED] drm_test_drm_connector_dynamic_register_sysfs [12:29:05] [PASSED] drm_test_drm_connector_dynamic_register_sysfs_name [12:29:05] [PASSED] drm_test_drm_connector_dynamic_register_debugfs [12:29:05] ========= [PASSED] drm_connector_dynamic_register ========== [12:29:05] = drm_connector_attach_broadcast_rgb_property (2 subtests) = [12:29:05] [PASSED] drm_test_drm_connector_attach_broadcast_rgb_property [12:29:05] [PASSED] drm_test_drm_connector_attach_broadcast_rgb_property_hdmi_connector [12:29:05] === [PASSED] drm_connector_attach_broadcast_rgb_property === [12:29:05] ========== drm_get_tv_mode_from_name (2 subtests) ========== [12:29:05] ========== drm_test_get_tv_mode_from_name_valid =========== [12:29:05] [PASSED] NTSC [12:29:05] [PASSED] NTSC-443 [12:29:05] [PASSED] NTSC-J [12:29:05] [PASSED] PAL [12:29:05] [PASSED] PAL-M [12:29:05] [PASSED] PAL-N [12:29:05] [PASSED] SECAM [12:29:05] [PASSED] Mono [12:29:05] ====== [PASSED] drm_test_get_tv_mode_from_name_valid ======= [12:29:05] [PASSED] drm_test_get_tv_mode_from_name_truncated [12:29:05] ============ [PASSED] drm_get_tv_mode_from_name ============ [12:29:05] = drm_test_connector_hdmi_compute_mode_clock (12 subtests) = [12:29:05] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb [12:29:05] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb_10bpc [12:29:05] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb_10bpc_vic_1 [12:29:05] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb_12bpc [12:29:05] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb_12bpc_vic_1 [12:29:05] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb_double [12:29:05] = drm_test_connector_hdmi_compute_mode_clock_yuv420_valid = [12:29:05] [PASSED] VIC 96 [12:29:05] [PASSED] VIC 97 [12:29:05] [PASSED] VIC 101 [12:29:05] [PASSED] VIC 102 [12:29:05] [PASSED] VIC 106 [12:29:05] [PASSED] VIC 107 [12:29:05] === [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv420_valid === [12:29:05] [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv420_10_bpc [12:29:05] [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv420_12_bpc [12:29:05] [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv422_8_bpc [12:29:05] [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv422_10_bpc [12:29:05] [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv422_12_bpc [12:29:05] === [PASSED] drm_test_connector_hdmi_compute_mode_clock ==== [12:29:05] == drm_hdmi_connector_get_broadcast_rgb_name (2 subtests) == [12:29:05] === drm_test_drm_hdmi_connector_get_broadcast_rgb_name ==== [12:29:05] [PASSED] Automatic [12:29:05] [PASSED] Full [12:29:05] [PASSED] Limited 16:235 [12:29:05] === [PASSED] drm_test_drm_hdmi_connector_get_broadcast_rgb_name === [12:29:05] [PASSED] drm_test_drm_hdmi_connector_get_broadcast_rgb_name_invalid [12:29:05] ==== [PASSED] drm_hdmi_connector_get_broadcast_rgb_name ==== [12:29:05] == drm_hdmi_connector_get_output_format_name (2 subtests) == [12:29:05] === drm_test_drm_hdmi_connector_get_output_format_name ==== [12:29:05] [PASSED] RGB [12:29:05] [PASSED] YUV 4:2:0 [12:29:05] [PASSED] YUV 4:2:2 [12:29:05] [PASSED] YUV 4:4:4 [12:29:05] === [PASSED] drm_test_drm_hdmi_connector_get_output_format_name === [12:29:05] [PASSED] drm_test_drm_hdmi_connector_get_output_format_name_invalid [12:29:05] ==== [PASSED] drm_hdmi_connector_get_output_format_name ==== [12:29:05] ============= drm_damage_helper (21 subtests) ============== [12:29:05] [PASSED] drm_test_damage_iter_no_damage [12:29:05] [PASSED] drm_test_damage_iter_no_damage_fractional_src [12:29:05] [PASSED] drm_test_damage_iter_no_damage_src_moved [12:29:05] [PASSED] drm_test_damage_iter_no_damage_fractional_src_moved [12:29:05] [PASSED] drm_test_damage_iter_no_damage_not_visible [12:29:05] [PASSED] drm_test_damage_iter_no_damage_no_crtc [12:29:05] [PASSED] drm_test_damage_iter_no_damage_no_fb [12:29:05] [PASSED] drm_test_damage_iter_simple_damage [12:29:05] [PASSED] drm_test_damage_iter_single_damage [12:29:05] [PASSED] drm_test_damage_iter_single_damage_intersect_src [12:29:05] [PASSED] drm_test_damage_iter_single_damage_outside_src [12:29:05] [PASSED] drm_test_damage_iter_single_damage_fractional_src [12:29:05] [PASSED] drm_test_damage_iter_single_damage_intersect_fractional_src [12:29:05] [PASSED] drm_test_damage_iter_single_damage_outside_fractional_src [12:29:05] [PASSED] drm_test_damage_iter_single_damage_src_moved [12:29:05] [PASSED] drm_test_damage_iter_single_damage_fractional_src_moved [12:29:05] [PASSED] drm_test_damage_iter_damage [12:29:05] [PASSED] drm_test_damage_iter_damage_one_intersect [12:29:05] [PASSED] drm_test_damage_iter_damage_one_outside [12:29:05] [PASSED] drm_test_damage_iter_damage_src_moved [12:29:05] [PASSED] drm_test_damage_iter_damage_not_visible [12:29:05] ================ [PASSED] drm_damage_helper ================ [12:29:05] ============== drm_dp_mst_helper (3 subtests) ============== [12:29:05] ============== drm_test_dp_mst_calc_pbn_mode ============== [12:29:05] [PASSED] Clock 154000 BPP 30 DSC disabled [12:29:05] [PASSED] Clock 234000 BPP 30 DSC disabled [12:29:05] [PASSED] Clock 297000 BPP 24 DSC disabled [12:29:05] [PASSED] Clock 332880 BPP 24 DSC enabled [12:29:05] [PASSED] Clock 324540 BPP 24 DSC enabled [12:29:05] ========== [PASSED] drm_test_dp_mst_calc_pbn_mode ========== [12:29:05] ============== drm_test_dp_mst_calc_pbn_div =============== [12:29:05] [PASSED] Link rate 2000000 lane count 4 [12:29:05] [PASSED] Link rate 2000000 lane count 2 [12:29:05] [PASSED] Link rate 2000000 lane count 1 [12:29:05] [PASSED] Link rate 1350000 lane count 4 [12:29:05] [PASSED] Link rate 1350000 lane count 2 [12:29:05] [PASSED] Link rate 1350000 lane count 1 [12:29:05] [PASSED] Link rate 1000000 lane count 4 [12:29:05] [PASSED] Link rate 1000000 lane count 2 [12:29:05] [PASSED] Link rate 1000000 lane count 1 [12:29:05] [PASSED] Link rate 810000 lane count 4 [12:29:05] [PASSED] Link rate 810000 lane count 2 [12:29:05] [PASSED] Link rate 810000 lane count 1 [12:29:05] [PASSED] Link rate 540000 lane count 4 [12:29:05] [PASSED] Link rate 540000 lane count 2 [12:29:05] [PASSED] Link rate 540000 lane count 1 [12:29:05] [PASSED] Link rate 270000 lane count 4 [12:29:05] [PASSED] Link rate 270000 lane count 2 [12:29:05] [PASSED] Link rate 270000 lane count 1 [12:29:05] [PASSED] Link rate 162000 lane count 4 [12:29:05] [PASSED] Link rate 162000 lane count 2 [12:29:05] [PASSED] Link rate 162000 lane count 1 [12:29:05] ========== [PASSED] drm_test_dp_mst_calc_pbn_div =========== [12:29:05] ========= drm_test_dp_mst_sideband_msg_req_decode ========= [12:29:05] [PASSED] DP_ENUM_PATH_RESOURCES with port number [12:29:05] [PASSED] DP_POWER_UP_PHY with port number [12:29:05] [PASSED] DP_POWER_DOWN_PHY with port number [12:29:05] [PASSED] DP_ALLOCATE_PAYLOAD with SDP stream sinks [12:29:05] [PASSED] DP_ALLOCATE_PAYLOAD with port number [12:29:05] [PASSED] DP_ALLOCATE_PAYLOAD with VCPI [12:29:05] [PASSED] DP_ALLOCATE_PAYLOAD with PBN [12:29:05] [PASSED] DP_QUERY_PAYLOAD with port number [12:29:05] [PASSED] DP_QUERY_PAYLOAD with VCPI [12:29:05] [PASSED] DP_REMOTE_DPCD_READ with port number [12:29:05] [PASSED] DP_REMOTE_DPCD_READ with DPCD address [12:29:05] [PASSED] DP_REMOTE_DPCD_READ with max number of bytes [12:29:05] [PASSED] DP_REMOTE_DPCD_WRITE with port number [12:29:05] [PASSED] DP_REMOTE_DPCD_WRITE with DPCD address [12:29:05] [PASSED] DP_REMOTE_DPCD_WRITE with data array [12:29:05] [PASSED] DP_REMOTE_I2C_READ with port number [12:29:05] [PASSED] DP_REMOTE_I2C_READ with I2C device ID [12:29:05] [PASSED] DP_REMOTE_I2C_READ with transactions array [12:29:05] [PASSED] DP_REMOTE_I2C_WRITE with port number [12:29:05] [PASSED] DP_REMOTE_I2C_WRITE with I2C device ID [12:29:05] [PASSED] DP_REMOTE_I2C_WRITE with data array [12:29:05] [PASSED] DP_QUERY_STREAM_ENC_STATUS with stream ID [12:29:05] [PASSED] DP_QUERY_STREAM_ENC_STATUS with client ID [12:29:05] [PASSED] DP_QUERY_STREAM_ENC_STATUS with stream event [12:29:05] [PASSED] DP_QUERY_STREAM_ENC_STATUS with valid stream event [12:29:05] [PASSED] DP_QUERY_STREAM_ENC_STATUS with stream behavior [12:29:05] [PASSED] DP_QUERY_STREAM_ENC_STATUS with a valid stream behavior [12:29:05] ===== [PASSED] drm_test_dp_mst_sideband_msg_req_decode ===== [12:29:05] ================ [PASSED] drm_dp_mst_helper ================ [12:29:05] ================== drm_exec (7 subtests) =================== [12:29:05] [PASSED] sanitycheck [12:29:05] [PASSED] test_lock [12:29:05] [PASSED] test_lock_unlock [12:29:05] [PASSED] test_duplicates [12:29:05] [PASSED] test_prepare [12:29:05] [PASSED] test_prepare_array [12:29:05] [PASSED] test_multiple_loops [12:29:05] ==================== [PASSED] drm_exec ===================== [12:29:05] =========== drm_format_helper_test (17 subtests) =========== [12:29:05] ============== drm_test_fb_xrgb8888_to_gray8 ============== [12:29:05] [PASSED] single_pixel_source_buffer [12:29:05] [PASSED] single_pixel_clip_rectangle [12:29:05] [PASSED] well_known_colors [12:29:05] [PASSED] destination_pitch [12:29:05] ========== [PASSED] drm_test_fb_xrgb8888_to_gray8 ========== [12:29:05] ============= drm_test_fb_xrgb8888_to_rgb332 ============== [12:29:05] [PASSED] single_pixel_source_buffer [12:29:05] [PASSED] single_pixel_clip_rectangle [12:29:05] [PASSED] well_known_colors [12:29:05] [PASSED] destination_pitch [12:29:05] ========= [PASSED] drm_test_fb_xrgb8888_to_rgb332 ========== [12:29:05] ============= drm_test_fb_xrgb8888_to_rgb565 ============== [12:29:05] [PASSED] single_pixel_source_buffer [12:29:05] [PASSED] single_pixel_clip_rectangle [12:29:05] [PASSED] well_known_colors [12:29:05] [PASSED] destination_pitch [12:29:05] ========= [PASSED] drm_test_fb_xrgb8888_to_rgb565 ========== [12:29:05] ============ drm_test_fb_xrgb8888_to_xrgb1555 ============= [12:29:05] [PASSED] single_pixel_source_buffer [12:29:05] [PASSED] single_pixel_clip_rectangle [12:29:05] [PASSED] well_known_colors [12:29:05] [PASSED] destination_pitch [12:29:05] ======== [PASSED] drm_test_fb_xrgb8888_to_xrgb1555 ========= [12:29:05] ============ drm_test_fb_xrgb8888_to_argb1555 ============= [12:29:05] [PASSED] single_pixel_source_buffer [12:29:05] [PASSED] single_pixel_clip_rectangle [12:29:05] [PASSED] well_known_colors [12:29:05] [PASSED] destination_pitch [12:29:05] ======== [PASSED] drm_test_fb_xrgb8888_to_argb1555 ========= [12:29:05] ============ drm_test_fb_xrgb8888_to_rgba5551 ============= [12:29:05] [PASSED] single_pixel_source_buffer [12:29:05] [PASSED] single_pixel_clip_rectangle [12:29:05] [PASSED] well_known_colors [12:29:05] [PASSED] destination_pitch [12:29:05] ======== [PASSED] drm_test_fb_xrgb8888_to_rgba5551 ========= [12:29:05] ============= drm_test_fb_xrgb8888_to_rgb888 ============== [12:29:05] [PASSED] single_pixel_source_buffer [12:29:05] [PASSED] single_pixel_clip_rectangle [12:29:05] [PASSED] well_known_colors [12:29:05] [PASSED] destination_pitch [12:29:05] ========= [PASSED] drm_test_fb_xrgb8888_to_rgb888 ========== [12:29:05] ============= drm_test_fb_xrgb8888_to_bgr888 ============== [12:29:05] [PASSED] single_pixel_source_buffer [12:29:05] [PASSED] single_pixel_clip_rectangle [12:29:05] [PASSED] well_known_colors [12:29:05] [PASSED] destination_pitch [12:29:05] ========= [PASSED] drm_test_fb_xrgb8888_to_bgr888 ========== [12:29:05] ============ drm_test_fb_xrgb8888_to_argb8888 ============= [12:29:05] [PASSED] single_pixel_source_buffer [12:29:05] [PASSED] single_pixel_clip_rectangle [12:29:05] [PASSED] well_known_colors [12:29:05] [PASSED] destination_pitch [12:29:05] ======== [PASSED] drm_test_fb_xrgb8888_to_argb8888 ========= [12:29:05] =========== drm_test_fb_xrgb8888_to_xrgb2101010 =========== [12:29:05] [PASSED] single_pixel_source_buffer [12:29:05] [PASSED] single_pixel_clip_rectangle [12:29:05] [PASSED] well_known_colors [12:29:05] [PASSED] destination_pitch [12:29:05] ======= [PASSED] drm_test_fb_xrgb8888_to_xrgb2101010 ======= [12:29:05] =========== drm_test_fb_xrgb8888_to_argb2101010 =========== [12:29:05] [PASSED] single_pixel_source_buffer [12:29:05] [PASSED] single_pixel_clip_rectangle [12:29:05] [PASSED] well_known_colors [12:29:05] [PASSED] destination_pitch [12:29:05] ======= [PASSED] drm_test_fb_xrgb8888_to_argb2101010 ======= [12:29:05] ============== drm_test_fb_xrgb8888_to_mono =============== [12:29:05] [PASSED] single_pixel_source_buffer [12:29:05] [PASSED] single_pixel_clip_rectangle [12:29:05] [PASSED] well_known_colors [12:29:05] [PASSED] destination_pitch [12:29:05] ========== [PASSED] drm_test_fb_xrgb8888_to_mono =========== [12:29:05] ==================== drm_test_fb_swab ===================== [12:29:05] [PASSED] single_pixel_source_buffer [12:29:05] [PASSED] single_pixel_clip_rectangle [12:29:05] [PASSED] well_known_colors [12:29:05] [PASSED] destination_pitch [12:29:05] ================ [PASSED] drm_test_fb_swab ================= [12:29:05] ============ drm_test_fb_xrgb8888_to_xbgr8888 ============= [12:29:05] [PASSED] single_pixel_source_buffer [12:29:05] [PASSED] single_pixel_clip_rectangle [12:29:05] [PASSED] well_known_colors [12:29:05] [PASSED] destination_pitch [12:29:05] ======== [PASSED] drm_test_fb_xrgb8888_to_xbgr8888 ========= [12:29:05] ============ drm_test_fb_xrgb8888_to_abgr8888 ============= [12:29:05] [PASSED] single_pixel_source_buffer [12:29:05] [PASSED] single_pixel_clip_rectangle [12:29:05] [PASSED] well_known_colors [12:29:05] [PASSED] destination_pitch [12:29:05] ======== [PASSED] drm_test_fb_xrgb8888_to_abgr8888 ========= [12:29:05] ================= drm_test_fb_clip_offset ================= [12:29:05] [PASSED] pass through [12:29:05] [PASSED] horizontal offset [12:29:05] [PASSED] vertical offset [12:29:05] [PASSED] horizontal and vertical offset [12:29:05] [PASSED] horizontal offset (custom pitch) [12:29:05] [PASSED] vertical offset (custom pitch) [12:29:05] [PASSED] horizontal and vertical offset (custom pitch) [12:29:05] ============= [PASSED] drm_test_fb_clip_offset ============= [12:29:05] =================== drm_test_fb_memcpy ==================== [12:29:05] [PASSED] single_pixel_source_buffer: XR24 little-endian (0x34325258) [12:29:05] [PASSED] single_pixel_source_buffer: XRA8 little-endian (0x38415258) [12:29:05] [PASSED] single_pixel_source_buffer: YU24 little-endian (0x34325559) [12:29:05] [PASSED] single_pixel_clip_rectangle: XB24 little-endian (0x34324258) [12:29:05] [PASSED] single_pixel_clip_rectangle: XRA8 little-endian (0x38415258) [12:29:05] [PASSED] single_pixel_clip_rectangle: YU24 little-endian (0x34325559) [12:29:05] [PASSED] well_known_colors: XB24 little-endian (0x34324258) [12:29:05] [PASSED] well_known_colors: XRA8 little-endian (0x38415258) [12:29:05] [PASSED] well_known_colors: YU24 little-endian (0x34325559) [12:29:05] [PASSED] destination_pitch: XB24 little-endian (0x34324258) [12:29:05] [PASSED] destination_pitch: XRA8 little-endian (0x38415258) [12:29:05] [PASSED] destination_pitch: YU24 little-endian (0x34325559) [12:29:05] =============== [PASSED] drm_test_fb_memcpy ================ [12:29:05] ============= [PASSED] drm_format_helper_test ============== [12:29:05] ================= drm_format (18 subtests) ================= [12:29:05] [PASSED] drm_test_format_block_width_invalid [12:29:05] [PASSED] drm_test_format_block_width_one_plane [12:29:05] [PASSED] drm_test_format_block_width_two_plane [12:29:05] [PASSED] drm_test_format_block_width_three_plane [12:29:05] [PASSED] drm_test_format_block_width_tiled [12:29:05] [PASSED] drm_test_format_block_height_invalid [12:29:05] [PASSED] drm_test_format_block_height_one_plane [12:29:05] [PASSED] drm_test_format_block_height_two_plane [12:29:05] [PASSED] drm_test_format_block_height_three_plane [12:29:05] [PASSED] drm_test_format_block_height_tiled [12:29:05] [PASSED] drm_test_format_min_pitch_invalid [12:29:05] [PASSED] drm_test_format_min_pitch_one_plane_8bpp [12:29:05] [PASSED] drm_test_format_min_pitch_one_plane_16bpp [12:29:05] [PASSED] drm_test_format_min_pitch_one_plane_24bpp [12:29:05] [PASSED] drm_test_format_min_pitch_one_plane_32bpp [12:29:05] [PASSED] drm_test_format_min_pitch_two_plane [12:29:05] [PASSED] drm_test_format_min_pitch_three_plane_8bpp [12:29:05] [PASSED] drm_test_format_min_pitch_tiled [12:29:05] =================== [PASSED] drm_format ==================== [12:29:05] ============== drm_framebuffer (10 subtests) =============== [12:29:05] ========== drm_test_framebuffer_check_src_coords ========== [12:29:05] [PASSED] Success: source fits into fb [12:29:05] [PASSED] Fail: overflowing fb with x-axis coordinate [12:29:05] [PASSED] Fail: overflowing fb with y-axis coordinate [12:29:05] [PASSED] Fail: overflowing fb with source width [12:29:05] [PASSED] Fail: overflowing fb with source height [12:29:05] ====== [PASSED] drm_test_framebuffer_check_src_coords ====== [12:29:05] [PASSED] drm_test_framebuffer_cleanup [12:29:05] =============== drm_test_framebuffer_create =============== [12:29:05] [PASSED] ABGR8888 normal sizes [12:29:05] [PASSED] ABGR8888 max sizes [12:29:05] [PASSED] ABGR8888 pitch greater than min required [12:29:05] [PASSED] ABGR8888 pitch less than min required [12:29:05] [PASSED] ABGR8888 Invalid width [12:29:05] [PASSED] ABGR8888 Invalid buffer handle [12:29:05] [PASSED] No pixel format [12:29:05] [PASSED] ABGR8888 Width 0 [12:29:05] [PASSED] ABGR8888 Height 0 [12:29:05] [PASSED] ABGR8888 Out of bound height * pitch combination [12:29:05] [PASSED] ABGR8888 Large buffer offset [12:29:05] [PASSED] ABGR8888 Buffer offset for inexistent plane [12:29:05] [PASSED] ABGR8888 Invalid flag [12:29:05] [PASSED] ABGR8888 Set DRM_MODE_FB_MODIFIERS without modifiers [12:29:05] [PASSED] ABGR8888 Valid buffer modifier [12:29:05] [PASSED] ABGR8888 Invalid buffer modifier(DRM_FORMAT_MOD_SAMSUNG_64_32_TILE) [12:29:05] [PASSED] ABGR8888 Extra pitches without DRM_MODE_FB_MODIFIERS [12:29:05] [PASSED] ABGR8888 Extra pitches with DRM_MODE_FB_MODIFIERS [12:29:05] [PASSED] NV12 Normal sizes [12:29:05] [PASSED] NV12 Max sizes [12:29:05] [PASSED] NV12 Invalid pitch [12:29:05] [PASSED] NV12 Invalid modifier/missing DRM_MODE_FB_MODIFIERS flag [12:29:05] [PASSED] NV12 different modifier per-plane [12:29:05] [PASSED] NV12 with DRM_FORMAT_MOD_SAMSUNG_64_32_TILE [12:29:05] [PASSED] NV12 Valid modifiers without DRM_MODE_FB_MODIFIERS [12:29:05] [PASSED] NV12 Modifier for inexistent plane [12:29:05] [PASSED] NV12 Handle for inexistent plane [12:29:05] [PASSED] NV12 Handle for inexistent plane without DRM_MODE_FB_MODIFIERS [12:29:05] [PASSED] YVU420 DRM_MODE_FB_MODIFIERS set without modifier [12:29:05] [PASSED] YVU420 Normal sizes [12:29:05] [PASSED] YVU420 Max sizes [12:29:05] [PASSED] YVU420 Invalid pitch [12:29:05] [PASSED] YVU420 Different pitches [12:29:05] [PASSED] YVU420 Different buffer offsets/pitches [12:29:05] [PASSED] YVU420 Modifier set just for plane 0, without DRM_MODE_FB_MODIFIERS [12:29:05] [PASSED] YVU420 Modifier set just for planes 0, 1, without DRM_MODE_FB_MODIFIERS [12:29:05] [PASSED] YVU420 Modifier set just for plane 0, 1, with DRM_MODE_FB_MODIFIERS [12:29:05] [PASSED] YVU420 Valid modifier [12:29:05] [PASSED] YVU420 Different modifiers per plane [12:29:05] [PASSED] YVU420 Modifier for inexistent plane [12:29:05] [PASSED] YUV420_10BIT Invalid modifier(DRM_FORMAT_MOD_LINEAR) [12:29:05] [PASSED] X0L2 Normal sizes [12:29:05] [PASSED] X0L2 Max sizes [12:29:05] [PASSED] X0L2 Invalid pitch [12:29:05] [PASSED] X0L2 Pitch greater than minimum required [12:29:05] [PASSED] X0L2 Handle for inexistent plane [12:29:05] [PASSED] X0L2 Offset for inexistent plane, without DRM_MODE_FB_MODIFIERS set [12:29:05] [PASSED] X0L2 Modifier without DRM_MODE_FB_MODIFIERS set [12:29:05] [PASSED] X0L2 Valid modifier [12:29:05] [PASSED] X0L2 Modifier for inexistent plane [12:29:05] =========== [PASSED] drm_test_framebuffer_create =========== [12:29:05] [PASSED] drm_test_framebuffer_free [12:29:05] [PASSED] drm_test_framebuffer_init [12:29:05] [PASSED] drm_test_framebuffer_init_bad_format [12:29:05] [PASSED] drm_test_framebuffer_init_dev_mismatch [12:29:05] [PASSED] drm_test_framebuffer_lookup [12:29:05] [PASSED] drm_test_framebuffer_lookup_inexistent [12:29:05] [PASSED] drm_test_framebuffer_modifiers_not_supported [12:29:05] ================= [PASSED] drm_framebuffer ================= [12:29:05] ================ drm_gem_shmem (8 subtests) ================ [12:29:05] [PASSED] drm_gem_shmem_test_obj_create [12:29:05] [PASSED] drm_gem_shmem_test_obj_create_private [12:29:05] [PASSED] drm_gem_shmem_test_pin_pages [12:29:05] [PASSED] drm_gem_shmem_test_vmap [12:29:05] [PASSED] drm_gem_shmem_test_get_pages_sgt [12:29:05] [PASSED] drm_gem_shmem_test_get_sg_table [12:29:05] [PASSED] drm_gem_shmem_test_madvise [12:29:05] [PASSED] drm_gem_shmem_test_purge [12:29:05] ================== [PASSED] drm_gem_shmem ================== [12:29:05] === drm_atomic_helper_connector_hdmi_check (27 subtests) === [12:29:05] [PASSED] drm_test_check_broadcast_rgb_auto_cea_mode [12:29:05] [PASSED] drm_test_check_broadcast_rgb_auto_cea_mode_vic_1 [12:29:05] [PASSED] drm_test_check_broadcast_rgb_full_cea_mode [12:29:05] [PASSED] drm_test_check_broadcast_rgb_full_cea_mode_vic_1 [12:29:05] [PASSED] drm_test_check_broadcast_rgb_limited_cea_mode [12:29:05] [PASSED] drm_test_check_broadcast_rgb_limited_cea_mode_vic_1 [12:29:05] ====== drm_test_check_broadcast_rgb_cea_mode_yuv420 ======= [12:29:05] [PASSED] Automatic [12:29:05] [PASSED] Full [12:29:05] [PASSED] Limited 16:235 [12:29:05] == [PASSED] drm_test_check_broadcast_rgb_cea_mode_yuv420 === [12:29:05] [PASSED] drm_test_check_broadcast_rgb_crtc_mode_changed [12:29:05] [PASSED] drm_test_check_broadcast_rgb_crtc_mode_not_changed [12:29:05] [PASSED] drm_test_check_disable_connector [12:29:05] [PASSED] drm_test_check_hdmi_funcs_reject_rate [12:29:05] [PASSED] drm_test_check_max_tmds_rate_bpc_fallback_rgb [12:29:05] [PASSED] drm_test_check_max_tmds_rate_bpc_fallback_yuv420 [12:29:05] [PASSED] drm_test_check_max_tmds_rate_bpc_fallback_ignore_yuv422 [12:29:05] [PASSED] drm_test_check_max_tmds_rate_bpc_fallback_ignore_yuv420 [12:29:05] [PASSED] drm_test_check_driver_unsupported_fallback_yuv420 [12:29:05] [PASSED] drm_test_check_output_bpc_crtc_mode_changed [12:29:05] [PASSED] drm_test_check_output_bpc_crtc_mode_not_changed [12:29:05] [PASSED] drm_test_check_output_bpc_dvi [12:29:05] [PASSED] drm_test_check_output_bpc_format_vic_1 [12:29:05] [PASSED] drm_test_check_output_bpc_format_display_8bpc_only [12:29:05] [PASSED] drm_test_check_output_bpc_format_display_rgb_only [12:29:05] [PASSED] drm_test_check_output_bpc_format_driver_8bpc_only [12:29:05] [PASSED] drm_test_check_output_bpc_format_driver_rgb_only [12:29:05] [PASSED] drm_test_check_tmds_char_rate_rgb_8bpc [12:29:05] [PASSED] drm_test_check_tmds_char_rate_rgb_10bpc [12:29:05] [PASSED] drm_test_check_tmds_char_rate_rgb_12bpc [12:29:05] ===== [PASSED] drm_atomic_helper_connector_hdmi_check ====== [12:29:05] === drm_atomic_helper_connector_hdmi_reset (6 subtests) ==== [12:29:05] [PASSED] drm_test_check_broadcast_rgb_value [12:29:05] [PASSED] drm_test_check_bpc_8_value [12:29:05] [PASSED] drm_test_check_bpc_10_value [12:29:05] [PASSED] drm_test_check_bpc_12_value [12:29:05] [PASSED] drm_test_check_format_value [12:29:05] [PASSED] drm_test_check_tmds_char_value [12:29:05] ===== [PASSED] drm_atomic_helper_connector_hdmi_reset ====== [12:29:05] = drm_atomic_helper_connector_hdmi_mode_valid (4 subtests) = [12:29:05] [PASSED] drm_test_check_mode_valid [12:29:05] [PASSED] drm_test_check_mode_valid_reject [12:29:05] [PASSED] drm_test_check_mode_valid_reject_rate [12:29:05] [PASSED] drm_test_check_mode_valid_reject_max_clock [12:29:05] === [PASSED] drm_atomic_helper_connector_hdmi_mode_valid === [12:29:05] ================= drm_managed (2 subtests) ================= [12:29:05] [PASSED] drm_test_managed_release_action [12:29:05] [PASSED] drm_test_managed_run_action [12:29:05] =================== [PASSED] drm_managed =================== [12:29:05] =================== drm_mm (6 subtests) ==================== [12:29:05] [PASSED] drm_test_mm_init [12:29:05] [PASSED] drm_test_mm_debug [12:29:05] [PASSED] drm_test_mm_align32 [12:29:05] [PASSED] drm_test_mm_align64 [12:29:05] [PASSED] drm_test_mm_lowest [12:29:05] [PASSED] drm_test_mm_highest [12:29:05] ===================== [PASSED] drm_mm ====================== [12:29:05] ============= drm_modes_analog_tv (5 subtests) ============= [12:29:05] [PASSED] drm_test_modes_analog_tv_mono_576i [12:29:05] [PASSED] drm_test_modes_analog_tv_ntsc_480i [12:29:05] [PASSED] drm_test_modes_analog_tv_ntsc_480i_inlined [12:29:05] [PASSED] drm_test_modes_analog_tv_pal_576i [12:29:05] [PASSED] drm_test_modes_analog_tv_pal_576i_inlined [12:29:05] =============== [PASSED] drm_modes_analog_tv =============== [12:29:05] ============== drm_plane_helper (2 subtests) =============== [12:29:05] =============== drm_test_check_plane_state ================ [12:29:05] [PASSED] clipping_simple [12:29:05] [PASSED] clipping_rotate_reflect [12:29:05] [PASSED] positioning_simple [12:29:05] [PASSED] upscaling [12:29:05] [PASSED] downscaling [12:29:05] [PASSED] rounding1 [12:29:05] [PASSED] rounding2 [12:29:05] [PASSED] rounding3 [12:29:05] [PASSED] rounding4 [12:29:05] =========== [PASSED] drm_test_check_plane_state ============ [12:29:05] =========== drm_test_check_invalid_plane_state ============ [12:29:05] [PASSED] positioning_invalid [12:29:05] [PASSED] upscaling_invalid [12:29:05] [PASSED] downscaling_invalid [12:29:05] ======= [PASSED] drm_test_check_invalid_plane_state ======== [12:29:05] ================ [PASSED] drm_plane_helper ================= [12:29:05] ====== drm_connector_helper_tv_get_modes (1 subtest) ======= [12:29:05] ====== drm_test_connector_helper_tv_get_modes_check ======= [12:29:05] [PASSED] None [12:29:05] [PASSED] PAL [12:29:05] [PASSED] NTSC [12:29:05] [PASSED] Both, NTSC Default [12:29:05] [PASSED] Both, PAL Default [12:29:05] [PASSED] Both, NTSC Default, with PAL on command-line [12:29:05] [PASSED] Both, PAL Default, with NTSC on command-line [12:29:05] == [PASSED] drm_test_connector_helper_tv_get_modes_check === [12:29:05] ======== [PASSED] drm_connector_helper_tv_get_modes ======== [12:29:05] ================== drm_rect (9 subtests) =================== [12:29:05] [PASSED] drm_test_rect_clip_scaled_div_by_zero [12:29:05] [PASSED] drm_test_rect_clip_scaled_not_clipped [12:29:05] [PASSED] drm_test_rect_clip_scaled_clipped [12:29:05] [PASSED] drm_test_rect_clip_scaled_signed_vs_unsigned [12:29:05] ================= drm_test_rect_intersect ================= [12:29:05] [PASSED] top-left x bottom-right: 2x2+1+1 x 2x2+0+0 [12:29:05] [PASSED] top-right x bottom-left: 2x2+0+0 x 2x2+1-1 [12:29:05] [PASSED] bottom-left x top-right: 2x2+1-1 x 2x2+0+0 [12:29:05] [PASSED] bottom-right x top-left: 2x2+0+0 x 2x2+1+1 [12:29:05] [PASSED] right x left: 2x1+0+0 x 3x1+1+0 [12:29:05] [PASSED] left x right: 3x1+1+0 x 2x1+0+0 [12:29:05] [PASSED] up x bottom: 1x2+0+0 x 1x3+0-1 [12:29:05] [PASSED] bottom x up: 1x3+0-1 x 1x2+0+0 [12:29:05] [PASSED] touching corner: 1x1+0+0 x 2x2+1+1 [12:29:05] [PASSED] touching side: 1x1+0+0 x 1x1+1+0 [12:29:05] [PASSED] equal rects: 2x2+0+0 x 2x2+0+0 [12:29:05] [PASSED] inside another: 2x2+0+0 x 1x1+1+1 [12:29:05] [PASSED] far away: 1x1+0+0 x 1x1+3+6 [12:29:05] [PASSED] points intersecting: 0x0+5+10 x 0x0+5+10 [12:29:05] [PASSED] points not intersecting: 0x0+0+0 x 0x0+5+10 [12:29:05] ============= [PASSED] drm_test_rect_intersect ============= [12:29:05] ================ drm_test_rect_calc_hscale ================ [12:29:05] [PASSED] normal use [12:29:05] [PASSED] out of max range [12:29:05] [PASSED] out of min range [12:29:05] [PASSED] zero dst [12:29:05] [PASSED] negative src [12:29:05] [PASSED] negative dst [12:29:05] ============ [PASSED] drm_test_rect_calc_hscale ============ [12:29:05] ================ drm_test_rect_calc_vscale ================ [12:29:05] [PASSED] normal use [12:29:05] [PASSED] out of max range [12:29:05] [PASSED] out of min range [12:29:05] [PASSED] zero dst [12:29:05] [PASSED] negative src [12:29:05] [PASSED] negative dst [12:29:05] ============ [PASSED] drm_test_rect_calc_vscale ============ [12:29:05] ================== drm_test_rect_rotate =================== [12:29:05] [PASSED] reflect-x [12:29:05] [PASSED] reflect-y [12:29:05] [PASSED] rotate-0 [12:29:05] [PASSED] rotate-90 [12:29:05] [PASSED] rotate-180 [12:29:05] [PASSED] rotate-270 stty: 'standard input': Inappropriate ioctl for device [12:29:05] ============== [PASSED] drm_test_rect_rotate =============== [12:29:05] ================ drm_test_rect_rotate_inv ================= [12:29:05] [PASSED] reflect-x [12:29:05] [PASSED] reflect-y [12:29:05] [PASSED] rotate-0 [12:29:05] [PASSED] rotate-90 [12:29:05] [PASSED] rotate-180 [12:29:05] [PASSED] rotate-270 [12:29:05] ============ [PASSED] drm_test_rect_rotate_inv ============= [12:29:05] ==================== [PASSED] drm_rect ===================== [12:29:05] ============ drm_sysfb_modeset_test (1 subtest) ============ [12:29:05] ============ drm_test_sysfb_build_fourcc_list ============= [12:29:05] [PASSED] no native formats [12:29:05] [PASSED] XRGB8888 as native format [12:29:05] [PASSED] remove duplicates [12:29:05] [PASSED] convert alpha formats [12:29:05] [PASSED] random formats [12:29:05] ======== [PASSED] drm_test_sysfb_build_fourcc_list ========= [12:29:05] ============= [PASSED] drm_sysfb_modeset_test ============== [12:29:05] ============================================================ [12:29:05] Testing complete. Ran 616 tests: passed: 616 [12:29:05] Elapsed time: 23.470s total, 1.646s configuring, 21.605s building, 0.188s running + /kernel/tools/testing/kunit/kunit.py run --kunitconfig /kernel/drivers/gpu/drm/ttm/tests/.kunitconfig [12:29:05] Configuring KUnit Kernel ... Regenerating .config ... Populating config with: $ make ARCH=um O=.kunit olddefconfig [12:29:07] Building KUnit Kernel ... Populating config with: $ make ARCH=um O=.kunit olddefconfig Building with: $ make all compile_commands.json scripts_gdb ARCH=um O=.kunit --jobs=48 [12:29:14] Starting KUnit Kernel (1/1)... [12:29:14] ============================================================ Running tests with: $ .kunit/linux kunit.enable=1 mem=1G console=tty kunit_shutdown=halt [12:29:14] ================= ttm_device (5 subtests) ================== [12:29:14] [PASSED] ttm_device_init_basic [12:29:14] [PASSED] ttm_device_init_multiple [12:29:14] [PASSED] ttm_device_fini_basic [12:29:14] [PASSED] ttm_device_init_no_vma_man [12:29:14] ================== ttm_device_init_pools ================== [12:29:14] [PASSED] No DMA allocations, no DMA32 required [12:29:14] [PASSED] DMA allocations, DMA32 required [12:29:14] [PASSED] No DMA allocations, DMA32 required [12:29:14] [PASSED] DMA allocations, no DMA32 required [12:29:14] ============== [PASSED] ttm_device_init_pools ============== [12:29:14] =================== [PASSED] ttm_device ==================== [12:29:14] ================== ttm_pool (8 subtests) =================== [12:29:14] ================== ttm_pool_alloc_basic =================== [12:29:14] [PASSED] One page [12:29:14] [PASSED] More than one page [12:29:14] [PASSED] Above the allocation limit [12:29:14] [PASSED] One page, with coherent DMA mappings enabled [12:29:14] [PASSED] Above the allocation limit, with coherent DMA mappings enabled [12:29:14] ============== [PASSED] ttm_pool_alloc_basic =============== [12:29:14] ============== ttm_pool_alloc_basic_dma_addr ============== [12:29:14] [PASSED] One page [12:29:14] [PASSED] More than one page [12:29:14] [PASSED] Above the allocation limit [12:29:14] [PASSED] One page, with coherent DMA mappings enabled [12:29:14] [PASSED] Above the allocation limit, with coherent DMA mappings enabled [12:29:14] ========== [PASSED] ttm_pool_alloc_basic_dma_addr ========== [12:29:14] [PASSED] ttm_pool_alloc_order_caching_match [12:29:14] [PASSED] ttm_pool_alloc_caching_mismatch [12:29:14] [PASSED] ttm_pool_alloc_order_mismatch [12:29:14] [PASSED] ttm_pool_free_dma_alloc [12:29:14] [PASSED] ttm_pool_free_no_dma_alloc [12:29:14] [PASSED] ttm_pool_fini_basic [12:29:14] ==================== [PASSED] ttm_pool ===================== [12:29:14] ================ ttm_resource (8 subtests) ================= [12:29:14] ================= ttm_resource_init_basic ================= [12:29:14] [PASSED] Init resource in TTM_PL_SYSTEM [12:29:14] [PASSED] Init resource in TTM_PL_VRAM [12:29:14] [PASSED] Init resource in a private placement [12:29:14] [PASSED] Init resource in TTM_PL_SYSTEM, set placement flags [12:29:14] ============= [PASSED] ttm_resource_init_basic ============= [12:29:14] [PASSED] ttm_resource_init_pinned [12:29:14] [PASSED] ttm_resource_fini_basic [12:29:14] [PASSED] ttm_resource_manager_init_basic [12:29:14] [PASSED] ttm_resource_manager_usage_basic [12:29:14] [PASSED] ttm_resource_manager_set_used_basic [12:29:14] [PASSED] ttm_sys_man_alloc_basic [12:29:14] [PASSED] ttm_sys_man_free_basic [12:29:14] ================== [PASSED] ttm_resource =================== [12:29:14] =================== ttm_tt (15 subtests) =================== [12:29:14] ==================== ttm_tt_init_basic ==================== [12:29:14] [PASSED] Page-aligned size [12:29:14] [PASSED] Extra pages requested [12:29:14] ================ [PASSED] ttm_tt_init_basic ================ [12:29:14] [PASSED] ttm_tt_init_misaligned [12:29:14] [PASSED] ttm_tt_fini_basic [12:29:14] [PASSED] ttm_tt_fini_sg [12:29:14] [PASSED] ttm_tt_fini_shmem [12:29:14] [PASSED] ttm_tt_create_basic [12:29:14] [PASSED] ttm_tt_create_invalid_bo_type [12:29:14] [PASSED] ttm_tt_create_ttm_exists [12:29:14] [PASSED] ttm_tt_create_failed [12:29:14] [PASSED] ttm_tt_destroy_basic [12:29:14] [PASSED] ttm_tt_populate_null_ttm [12:29:14] [PASSED] ttm_tt_populate_populated_ttm [12:29:14] [PASSED] ttm_tt_unpopulate_basic [12:29:14] [PASSED] ttm_tt_unpopulate_empty_ttm [12:29:14] [PASSED] ttm_tt_swapin_basic [12:29:14] ===================== [PASSED] ttm_tt ====================== [12:29:14] =================== ttm_bo (14 subtests) =================== [12:29:14] =========== ttm_bo_reserve_optimistic_no_ticket =========== [12:29:14] [PASSED] Cannot be interrupted and sleeps [12:29:14] [PASSED] Cannot be interrupted, locks straight away [12:29:14] [PASSED] Can be interrupted, sleeps [12:29:14] ======= [PASSED] ttm_bo_reserve_optimistic_no_ticket ======= [12:29:14] [PASSED] ttm_bo_reserve_locked_no_sleep [12:29:14] [PASSED] ttm_bo_reserve_no_wait_ticket [12:29:14] [PASSED] ttm_bo_reserve_double_resv [12:29:14] [PASSED] ttm_bo_reserve_interrupted [12:29:14] [PASSED] ttm_bo_reserve_deadlock [12:29:14] [PASSED] ttm_bo_unreserve_basic [12:29:14] [PASSED] ttm_bo_unreserve_pinned [12:29:14] [PASSED] ttm_bo_unreserve_bulk [12:29:14] [PASSED] ttm_bo_put_basic [12:29:14] [PASSED] ttm_bo_put_shared_resv [12:29:14] [PASSED] ttm_bo_pin_basic [12:29:14] [PASSED] ttm_bo_pin_unpin_resource [12:29:14] [PASSED] ttm_bo_multiple_pin_one_unpin [12:29:14] ===================== [PASSED] ttm_bo ====================== [12:29:14] ============== ttm_bo_validate (22 subtests) =============== [12:29:14] ============== ttm_bo_init_reserved_sys_man =============== [12:29:14] [PASSED] Buffer object for userspace [12:29:14] [PASSED] Kernel buffer object [12:29:14] [PASSED] Shared buffer object [12:29:14] ========== [PASSED] ttm_bo_init_reserved_sys_man =========== [12:29:14] ============== ttm_bo_init_reserved_mock_man ============== [12:29:14] [PASSED] Buffer object for userspace [12:29:14] [PASSED] Kernel buffer object [12:29:14] [PASSED] Shared buffer object [12:29:14] ========== [PASSED] ttm_bo_init_reserved_mock_man ========== [12:29:14] [PASSED] ttm_bo_init_reserved_resv [12:29:14] ================== ttm_bo_validate_basic ================== [12:29:14] [PASSED] Buffer object for userspace [12:29:14] [PASSED] Kernel buffer object [12:29:14] [PASSED] Shared buffer object [12:29:14] ============== [PASSED] ttm_bo_validate_basic ============== [12:29:14] [PASSED] ttm_bo_validate_invalid_placement [12:29:14] ============= ttm_bo_validate_same_placement ============== [12:29:14] [PASSED] System manager [12:29:14] [PASSED] VRAM manager [12:29:14] ========= [PASSED] ttm_bo_validate_same_placement ========== [12:29:14] [PASSED] ttm_bo_validate_failed_alloc [12:29:14] [PASSED] ttm_bo_validate_pinned [12:29:14] [PASSED] ttm_bo_validate_busy_placement [12:29:14] ================ ttm_bo_validate_multihop ================= [12:29:14] [PASSED] Buffer object for userspace [12:29:14] [PASSED] Kernel buffer object [12:29:14] [PASSED] Shared buffer object [12:29:14] ============ [PASSED] ttm_bo_validate_multihop ============= [12:29:14] ========== ttm_bo_validate_no_placement_signaled ========== [12:29:14] [PASSED] Buffer object in system domain, no page vector [12:29:14] [PASSED] Buffer object in system domain with an existing page vector [12:29:14] ====== [PASSED] ttm_bo_validate_no_placement_signaled ====== [12:29:14] ======== ttm_bo_validate_no_placement_not_signaled ======== [12:29:14] [PASSED] Buffer object for userspace [12:29:14] [PASSED] Kernel buffer object [12:29:14] [PASSED] Shared buffer object [12:29:14] ==== [PASSED] ttm_bo_validate_no_placement_not_signaled ==== [12:29:14] [PASSED] ttm_bo_validate_move_fence_signaled [12:29:14] ========= ttm_bo_validate_move_fence_not_signaled ========= [12:29:14] [PASSED] Waits for GPU [12:29:14] [PASSED] Tries to lock straight away [12:29:15] ===== [PASSED] ttm_bo_validate_move_fence_not_signaled ===== [12:29:15] [PASSED] ttm_bo_validate_swapout [12:29:15] [PASSED] ttm_bo_validate_happy_evict [12:29:15] [PASSED] ttm_bo_validate_all_pinned_evict [12:29:15] [PASSED] ttm_bo_validate_allowed_only_evict [12:29:15] [PASSED] ttm_bo_validate_deleted_evict [12:29:15] [PASSED] ttm_bo_validate_busy_domain_evict [12:29:15] [PASSED] ttm_bo_validate_evict_gutting [12:29:15] [PASSED] ttm_bo_validate_recrusive_evict stty: 'standard input': Inappropriate ioctl for device [12:29:15] ================= [PASSED] ttm_bo_validate ================= [12:29:15] ============================================================ [12:29:15] Testing complete. Ran 102 tests: passed: 102 [12:29:15] Elapsed time: 10.083s total, 1.653s configuring, 7.813s building, 0.529s running + cleanup ++ stat -c %u:%g /kernel + chown -R 1003:1003 /kernel ^ permalink raw reply [flat|nested] 9+ messages in thread
* ✗ Xe.CI.Full: failure for Add debugfs node to expose G-state and pcie link state residency (rev3) 2025-06-20 12:03 [PATCH v5 0/2] Add debugfs node to expose G-state and pcie link state residency Soham Purkait ` (3 preceding siblings ...) 2025-06-20 12:29 ` ✓ CI.KUnit: success " Patchwork @ 2025-06-20 22:52 ` Patchwork 4 siblings, 0 replies; 9+ messages in thread From: Patchwork @ 2025-06-20 22:52 UTC (permalink / raw) To: Soham Purkait; +Cc: intel-xe [-- Attachment #1: Type: text/plain, Size: 62935 bytes --] == Series Details == Series: Add debugfs node to expose G-state and pcie link state residency (rev3) URL : https://patchwork.freedesktop.org/series/149793/ State : failure == Summary == CI Bug Log - changes from xe-3282-1b4be188ae14a43b901f3005075fab3a22f77968_FULL -> xe-pw-149793v3_FULL ==================================================== Summary ------- **FAILURE** Serious unknown changes coming with xe-pw-149793v3_FULL absolutely need to be verified manually. If you think the reported changes have nothing to do with the changes introduced in xe-pw-149793v3_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 (4 -> 4) ------------------------------ No changes in participating hosts Possible new issues ------------------- Here are the unknown changes that may have been introduced in xe-pw-149793v3_FULL: ### IGT changes ### #### Possible regressions #### * igt@kms_sequence@queue-busy@pipe-a-dp-4: - shard-dg2-set2: [PASS][1] -> [INCOMPLETE][2] +1 other test incomplete [1]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3282-1b4be188ae14a43b901f3005075fab3a22f77968/shard-dg2-436/igt@kms_sequence@queue-busy@pipe-a-dp-4.html [2]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149793v3/shard-dg2-434/igt@kms_sequence@queue-busy@pipe-a-dp-4.html Known issues ------------ Here are the changes found in xe-pw-149793v3_FULL that come from known issues: ### IGT changes ### #### Issues hit #### * igt@kms_async_flips@async-flip-with-page-flip-events-tiled@pipe-d-dp-4-4-rc-ccs-cc: - shard-dg2-set2: NOTRUN -> [SKIP][3] ([Intel XE#3767]) +15 other tests skip [3]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149793v3/shard-dg2-436/igt@kms_async_flips@async-flip-with-page-flip-events-tiled@pipe-d-dp-4-4-rc-ccs-cc.html * igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-hflip-async-flip: - shard-lnl: NOTRUN -> [SKIP][4] ([Intel XE#3658]) [4]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149793v3/shard-lnl-5/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-hflip-async-flip.html * igt@kms_big_fb@x-tiled-8bpp-rotate-270: - shard-dg2-set2: NOTRUN -> [SKIP][5] ([Intel XE#316]) +5 other tests skip [5]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149793v3/shard-dg2-466/igt@kms_big_fb@x-tiled-8bpp-rotate-270.html * igt@kms_big_fb@y-tiled-8bpp-rotate-90: - shard-lnl: NOTRUN -> [SKIP][6] ([Intel XE#1124]) [6]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149793v3/shard-lnl-5/igt@kms_big_fb@y-tiled-8bpp-rotate-90.html * igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-0-hflip: - shard-dg2-set2: NOTRUN -> [SKIP][7] ([Intel XE#1124]) +17 other tests skip [7]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149793v3/shard-dg2-466/igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-0-hflip.html * igt@kms_big_fb@yf-tiled-16bpp-rotate-270: - shard-bmg: NOTRUN -> [SKIP][8] ([Intel XE#1124]) +1 other test skip [8]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149793v3/shard-bmg-1/igt@kms_big_fb@yf-tiled-16bpp-rotate-270.html * igt@kms_big_fb@yf-tiled-addfb: - shard-dg2-set2: NOTRUN -> [SKIP][9] ([Intel XE#619]) [9]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149793v3/shard-dg2-436/igt@kms_big_fb@yf-tiled-addfb.html * igt@kms_bw@connected-linear-tiling-4-displays-1920x1080p: - shard-dg2-set2: NOTRUN -> [SKIP][10] ([Intel XE#2191]) [10]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149793v3/shard-dg2-436/igt@kms_bw@connected-linear-tiling-4-displays-1920x1080p.html * igt@kms_bw@linear-tiling-3-displays-2160x1440p: - shard-dg2-set2: NOTRUN -> [SKIP][11] ([Intel XE#367]) +3 other tests skip [11]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149793v3/shard-dg2-466/igt@kms_bw@linear-tiling-3-displays-2160x1440p.html * igt@kms_ccs@bad-pixel-format-4-tiled-dg2-rc-ccs-cc: - shard-bmg: NOTRUN -> [SKIP][12] ([Intel XE#2887]) [12]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149793v3/shard-bmg-1/igt@kms_ccs@bad-pixel-format-4-tiled-dg2-rc-ccs-cc.html * igt@kms_ccs@crc-primary-basic-4-tiled-mtl-rc-ccs@pipe-b-hdmi-a-6: - shard-dg2-set2: NOTRUN -> [SKIP][13] ([Intel XE#787]) +132 other tests skip [13]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149793v3/shard-dg2-434/igt@kms_ccs@crc-primary-basic-4-tiled-mtl-rc-ccs@pipe-b-hdmi-a-6.html * igt@kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs: - shard-bmg: [PASS][14] -> [INCOMPLETE][15] ([Intel XE#3862]) +1 other test incomplete [14]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3282-1b4be188ae14a43b901f3005075fab3a22f77968/shard-bmg-3/igt@kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs.html [15]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149793v3/shard-bmg-4/igt@kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs.html * igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-mc-ccs@pipe-d-hdmi-a-6: - shard-dg2-set2: [PASS][16] -> [INCOMPLETE][17] ([Intel XE#3862]) [16]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3282-1b4be188ae14a43b901f3005075fab3a22f77968/shard-dg2-434/igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-mc-ccs@pipe-d-hdmi-a-6.html [17]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149793v3/shard-dg2-466/igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-mc-ccs@pipe-d-hdmi-a-6.html * igt@kms_ccs@missing-ccs-buffer-4-tiled-mtl-mc-ccs@pipe-d-dp-4: - shard-dg2-set2: NOTRUN -> [SKIP][18] ([Intel XE#455] / [Intel XE#787]) +35 other tests skip [18]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149793v3/shard-dg2-436/igt@kms_ccs@missing-ccs-buffer-4-tiled-mtl-mc-ccs@pipe-d-dp-4.html * igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc: - shard-dg2-set2: NOTRUN -> [INCOMPLETE][19] ([Intel XE#1727] / [Intel XE#3113] / [Intel XE#3124]) [19]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149793v3/shard-dg2-436/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc.html * igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc@pipe-c-dp-4: - shard-dg2-set2: NOTRUN -> [INCOMPLETE][20] ([Intel XE#3124]) [20]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149793v3/shard-dg2-436/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc@pipe-c-dp-4.html * igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc@pipe-c-hdmi-a-6: - shard-dg2-set2: NOTRUN -> [DMESG-WARN][21] ([Intel XE#1727] / [Intel XE#3113]) [21]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149793v3/shard-dg2-436/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc@pipe-c-hdmi-a-6.html * igt@kms_ccs@random-ccs-data-4-tiled-lnl-ccs: - shard-dg2-set2: NOTRUN -> [SKIP][22] ([Intel XE#2907]) +2 other tests skip [22]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149793v3/shard-dg2-435/igt@kms_ccs@random-ccs-data-4-tiled-lnl-ccs.html * igt@kms_cdclk@plane-scaling@pipe-b-dp-4: - shard-dg2-set2: NOTRUN -> [SKIP][23] ([Intel XE#4416]) +3 other tests skip [23]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149793v3/shard-dg2-434/igt@kms_cdclk@plane-scaling@pipe-b-dp-4.html * igt@kms_chamelium_color@degamma: - shard-dg2-set2: NOTRUN -> [SKIP][24] ([Intel XE#306]) +3 other tests skip [24]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149793v3/shard-dg2-466/igt@kms_chamelium_color@degamma.html * igt@kms_chamelium_frames@hdmi-crc-nonplanar-formats: - shard-dg2-set2: NOTRUN -> [SKIP][25] ([Intel XE#373]) +13 other tests skip [25]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149793v3/shard-dg2-436/igt@kms_chamelium_frames@hdmi-crc-nonplanar-formats.html * igt@kms_chamelium_hpd@hdmi-hpd-after-hibernate: - shard-bmg: NOTRUN -> [SKIP][26] ([Intel XE#2252]) +1 other test skip [26]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149793v3/shard-bmg-1/igt@kms_chamelium_hpd@hdmi-hpd-after-hibernate.html * igt@kms_content_protection@dp-mst-type-1: - shard-dg2-set2: NOTRUN -> [SKIP][27] ([Intel XE#307]) [27]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149793v3/shard-dg2-434/igt@kms_content_protection@dp-mst-type-1.html * igt@kms_content_protection@lic-type-0@pipe-a-dp-4: - shard-dg2-set2: NOTRUN -> [FAIL][28] ([Intel XE#3304]) [28]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149793v3/shard-dg2-436/igt@kms_content_protection@lic-type-0@pipe-a-dp-4.html * igt@kms_content_protection@srm@pipe-a-dp-4: - shard-dg2-set2: NOTRUN -> [FAIL][29] ([Intel XE#1178]) +4 other tests fail [29]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149793v3/shard-dg2-435/igt@kms_content_protection@srm@pipe-a-dp-4.html * igt@kms_content_protection@uevent@pipe-a-dp-2: - shard-bmg: NOTRUN -> [FAIL][30] ([Intel XE#1188]) [30]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149793v3/shard-bmg-4/igt@kms_content_protection@uevent@pipe-a-dp-2.html * igt@kms_cursor_crc@cursor-offscreen-512x512: - shard-dg2-set2: NOTRUN -> [SKIP][31] ([Intel XE#308]) +2 other tests skip [31]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149793v3/shard-dg2-436/igt@kms_cursor_crc@cursor-offscreen-512x512.html * igt@kms_cursor_crc@cursor-random-128x42: - shard-adlp: [PASS][32] -> [DMESG-WARN][33] ([Intel XE#2953] / [Intel XE#4173]) +14 other tests dmesg-warn [32]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3282-1b4be188ae14a43b901f3005075fab3a22f77968/shard-adlp-8/igt@kms_cursor_crc@cursor-random-128x42.html [33]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149793v3/shard-adlp-2/igt@kms_cursor_crc@cursor-random-128x42.html * igt@kms_cursor_crc@cursor-random-256x85: - shard-lnl: NOTRUN -> [SKIP][34] ([Intel XE#1424]) [34]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149793v3/shard-lnl-5/igt@kms_cursor_crc@cursor-random-256x85.html * igt@kms_cursor_legacy@cursora-vs-flipb-legacy: - shard-bmg: [PASS][35] -> [SKIP][36] ([Intel XE#2291]) +1 other test skip [35]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3282-1b4be188ae14a43b901f3005075fab3a22f77968/shard-bmg-4/igt@kms_cursor_legacy@cursora-vs-flipb-legacy.html [36]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149793v3/shard-bmg-5/igt@kms_cursor_legacy@cursora-vs-flipb-legacy.html * igt@kms_dither@fb-8bpc-vs-panel-6bpc@pipe-a-hdmi-a-6: - shard-dg2-set2: NOTRUN -> [SKIP][37] ([Intel XE#4494] / [i915#3804]) [37]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149793v3/shard-dg2-435/igt@kms_dither@fb-8bpc-vs-panel-6bpc@pipe-a-hdmi-a-6.html * igt@kms_dp_link_training@non-uhbr-mst: - shard-dg2-set2: NOTRUN -> [SKIP][38] ([Intel XE#4354]) [38]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149793v3/shard-dg2-436/igt@kms_dp_link_training@non-uhbr-mst.html * igt@kms_dp_link_training@non-uhbr-sst: - shard-bmg: [PASS][39] -> [SKIP][40] ([Intel XE#4354]) [39]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3282-1b4be188ae14a43b901f3005075fab3a22f77968/shard-bmg-7/igt@kms_dp_link_training@non-uhbr-sst.html [40]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149793v3/shard-bmg-6/igt@kms_dp_link_training@non-uhbr-sst.html * igt@kms_fbc_dirty_rect@fbc-dirty-rectangle-different-formats: - shard-dg2-set2: NOTRUN -> [SKIP][41] ([Intel XE#4422]) +1 other test skip [41]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149793v3/shard-dg2-435/igt@kms_fbc_dirty_rect@fbc-dirty-rectangle-different-formats.html * igt@kms_feature_discovery@chamelium: - shard-dg2-set2: NOTRUN -> [SKIP][42] ([Intel XE#701]) [42]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149793v3/shard-dg2-436/igt@kms_feature_discovery@chamelium.html * igt@kms_flip@2x-plain-flip: - shard-bmg: [PASS][43] -> [SKIP][44] ([Intel XE#2316]) +6 other tests skip [43]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3282-1b4be188ae14a43b901f3005075fab3a22f77968/shard-bmg-4/igt@kms_flip@2x-plain-flip.html [44]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149793v3/shard-bmg-5/igt@kms_flip@2x-plain-flip.html * igt@kms_flip@2x-plain-flip-fb-recreate: - shard-bmg: [PASS][45] -> [FAIL][46] ([Intel XE#2882]) +1 other test fail [45]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3282-1b4be188ae14a43b901f3005075fab3a22f77968/shard-bmg-2/igt@kms_flip@2x-plain-flip-fb-recreate.html [46]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149793v3/shard-bmg-3/igt@kms_flip@2x-plain-flip-fb-recreate.html * igt@kms_flip@flip-vs-expired-vblank-interruptible: - shard-dg2-set2: NOTRUN -> [FAIL][47] ([Intel XE#301]) +1 other test fail [47]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149793v3/shard-dg2-434/igt@kms_flip@flip-vs-expired-vblank-interruptible.html * igt@kms_flip@flip-vs-expired-vblank@a-dp4: - shard-dg2-set2: [PASS][48] -> [FAIL][49] ([Intel XE#301] / [Intel XE#3321]) +1 other test fail [48]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3282-1b4be188ae14a43b901f3005075fab3a22f77968/shard-dg2-436/igt@kms_flip@flip-vs-expired-vblank@a-dp4.html [49]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149793v3/shard-dg2-466/igt@kms_flip@flip-vs-expired-vblank@a-dp4.html * igt@kms_flip@flip-vs-suspend@d-dp4: - shard-dg2-set2: [PASS][50] -> [INCOMPLETE][51] ([Intel XE#2049] / [Intel XE#2597]) +1 other test incomplete [50]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3282-1b4be188ae14a43b901f3005075fab3a22f77968/shard-dg2-435/igt@kms_flip@flip-vs-suspend@d-dp4.html [51]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149793v3/shard-dg2-436/igt@kms_flip@flip-vs-suspend@d-dp4.html * igt@kms_flip@plain-flip-ts-check: - shard-adlp: [PASS][52] -> [FAIL][53] ([Intel XE#886]) +2 other tests fail [52]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3282-1b4be188ae14a43b901f3005075fab3a22f77968/shard-adlp-6/igt@kms_flip@plain-flip-ts-check.html [53]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149793v3/shard-adlp-6/igt@kms_flip@plain-flip-ts-check.html * igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytile-downscaling: - shard-dg2-set2: NOTRUN -> [SKIP][54] ([Intel XE#455]) +22 other tests skip [54]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149793v3/shard-dg2-466/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytile-downscaling.html * igt@kms_flip_tiling@flip-change-tiling@pipe-c-hdmi-a-1-x-to-y: - shard-adlp: [PASS][55] -> [DMESG-FAIL][56] ([Intel XE#4543]) [55]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3282-1b4be188ae14a43b901f3005075fab3a22f77968/shard-adlp-1/igt@kms_flip_tiling@flip-change-tiling@pipe-c-hdmi-a-1-x-to-y.html [56]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149793v3/shard-adlp-4/igt@kms_flip_tiling@flip-change-tiling@pipe-c-hdmi-a-1-x-to-y.html * igt@kms_frontbuffer_tracking@drrs-1p-primscrn-cur-indfb-move: - shard-lnl: NOTRUN -> [SKIP][57] ([Intel XE#651]) [57]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149793v3/shard-lnl-5/igt@kms_frontbuffer_tracking@drrs-1p-primscrn-cur-indfb-move.html * igt@kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-onoff: - shard-bmg: NOTRUN -> [SKIP][58] ([Intel XE#4141]) [58]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149793v3/shard-bmg-1/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-onoff.html * igt@kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-cur-indfb-draw-render: - shard-dg2-set2: NOTRUN -> [SKIP][59] ([Intel XE#651]) +45 other tests skip [59]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149793v3/shard-dg2-466/igt@kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-cur-indfb-draw-render.html * igt@kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-cur-indfb-onoff: - shard-bmg: NOTRUN -> [SKIP][60] ([Intel XE#2311]) +2 other tests skip [60]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149793v3/shard-bmg-1/igt@kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-cur-indfb-onoff.html * igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-spr-indfb-draw-blt: - shard-dg2-set2: NOTRUN -> [SKIP][61] ([Intel XE#653]) +44 other tests skip [61]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149793v3/shard-dg2-435/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-spr-indfb-draw-blt.html * igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-cur-indfb-move: - shard-bmg: NOTRUN -> [SKIP][62] ([Intel XE#2313]) [62]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149793v3/shard-bmg-1/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-cur-indfb-move.html * igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-spr-indfb-draw-render: - shard-lnl: NOTRUN -> [SKIP][63] ([Intel XE#656]) +2 other tests skip [63]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149793v3/shard-lnl-5/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-spr-indfb-draw-render.html * igt@kms_hdmi_inject@inject-audio: - shard-lnl: NOTRUN -> [SKIP][64] ([Intel XE#1470] / [Intel XE#2853]) [64]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149793v3/shard-lnl-5/igt@kms_hdmi_inject@inject-audio.html * igt@kms_joiner@basic-force-big-joiner: - shard-bmg: [PASS][65] -> [SKIP][66] ([Intel XE#3012]) [65]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3282-1b4be188ae14a43b901f3005075fab3a22f77968/shard-bmg-4/igt@kms_joiner@basic-force-big-joiner.html [66]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149793v3/shard-bmg-5/igt@kms_joiner@basic-force-big-joiner.html * igt@kms_joiner@basic-max-non-joiner: - shard-dg2-set2: NOTRUN -> [SKIP][67] ([Intel XE#4298]) [67]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149793v3/shard-dg2-436/igt@kms_joiner@basic-max-non-joiner.html * igt@kms_joiner@switch-modeset-ultra-joiner-big-joiner: - shard-dg2-set2: NOTRUN -> [SKIP][68] ([Intel XE#2925]) [68]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149793v3/shard-dg2-436/igt@kms_joiner@switch-modeset-ultra-joiner-big-joiner.html * igt@kms_multipipe_modeset@basic-max-pipe-crc-check: - shard-dg2-set2: NOTRUN -> [SKIP][69] ([Intel XE#356]) [69]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149793v3/shard-dg2-435/igt@kms_multipipe_modeset@basic-max-pipe-crc-check.html * igt@kms_pipe_stress@stress-xrgb8888-ytiled: - shard-dg2-set2: NOTRUN -> [SKIP][70] ([Intel XE#4359]) [70]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149793v3/shard-dg2-436/igt@kms_pipe_stress@stress-xrgb8888-ytiled.html * igt@kms_plane_cursor@primary@pipe-a-hdmi-a-6-size-256: - shard-dg2-set2: NOTRUN -> [FAIL][71] ([Intel XE#616]) +3 other tests fail [71]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149793v3/shard-dg2-435/igt@kms_plane_cursor@primary@pipe-a-hdmi-a-6-size-256.html * igt@kms_plane_multiple@tiling-y: - shard-dg2-set2: NOTRUN -> [SKIP][72] ([Intel XE#5020]) [72]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149793v3/shard-dg2-435/igt@kms_plane_multiple@tiling-y.html * igt@kms_plane_scaling@2x-scaler-multi-pipe: - shard-bmg: [PASS][73] -> [SKIP][74] ([Intel XE#2571]) [73]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3282-1b4be188ae14a43b901f3005075fab3a22f77968/shard-bmg-4/igt@kms_plane_scaling@2x-scaler-multi-pipe.html [74]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149793v3/shard-bmg-5/igt@kms_plane_scaling@2x-scaler-multi-pipe.html * igt@kms_plane_scaling@intel-max-src-size: - shard-lnl: NOTRUN -> [SKIP][75] ([Intel XE#3307]) [75]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149793v3/shard-lnl-5/igt@kms_plane_scaling@intel-max-src-size.html * igt@kms_pm_dc@dc6-psr: - shard-dg2-set2: NOTRUN -> [SKIP][76] ([Intel XE#1129]) [76]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149793v3/shard-dg2-435/igt@kms_pm_dc@dc6-psr.html * igt@kms_pm_dc@deep-pkgc: - shard-dg2-set2: NOTRUN -> [SKIP][77] ([Intel XE#908]) [77]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149793v3/shard-dg2-435/igt@kms_pm_dc@deep-pkgc.html * igt@kms_psr2_sf@fbc-psr2-cursor-plane-move-continuous-exceed-fully-sf: - shard-dg2-set2: NOTRUN -> [SKIP][78] ([Intel XE#1489]) +13 other tests skip [78]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149793v3/shard-dg2-434/igt@kms_psr2_sf@fbc-psr2-cursor-plane-move-continuous-exceed-fully-sf.html * igt@kms_psr@fbc-psr-sprite-plane-onoff: - shard-dg2-set2: NOTRUN -> [SKIP][79] ([Intel XE#2850] / [Intel XE#929]) +19 other tests skip [79]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149793v3/shard-dg2-435/igt@kms_psr@fbc-psr-sprite-plane-onoff.html * igt@kms_psr@fbc-psr2-sprite-blt: - shard-lnl: NOTRUN -> [SKIP][80] ([Intel XE#1406]) [80]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149793v3/shard-lnl-5/igt@kms_psr@fbc-psr2-sprite-blt.html * igt@kms_psr@fbc-psr2-sprite-blt@edp-1: - shard-lnl: NOTRUN -> [SKIP][81] ([Intel XE#4609]) [81]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149793v3/shard-lnl-5/igt@kms_psr@fbc-psr2-sprite-blt@edp-1.html * igt@kms_rotation_crc@bad-tiling: - shard-dg2-set2: NOTRUN -> [SKIP][82] ([Intel XE#3414]) +2 other tests skip [82]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149793v3/shard-dg2-435/igt@kms_rotation_crc@bad-tiling.html * igt@kms_setmode@invalid-clone-single-crtc-stealing: - shard-bmg: [PASS][83] -> [SKIP][84] ([Intel XE#1435]) [83]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3282-1b4be188ae14a43b901f3005075fab3a22f77968/shard-bmg-4/igt@kms_setmode@invalid-clone-single-crtc-stealing.html [84]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149793v3/shard-bmg-5/igt@kms_setmode@invalid-clone-single-crtc-stealing.html * igt@sriov_basic@enable-vfs-autoprobe-off: - shard-dg2-set2: NOTRUN -> [SKIP][85] ([Intel XE#1091] / [Intel XE#2849]) [85]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149793v3/shard-dg2-435/igt@sriov_basic@enable-vfs-autoprobe-off.html * igt@xe_compute_preempt@compute-preempt-many: - shard-dg2-set2: NOTRUN -> [SKIP][86] ([Intel XE#1280] / [Intel XE#455]) +1 other test skip [86]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149793v3/shard-dg2-435/igt@xe_compute_preempt@compute-preempt-many.html * igt@xe_copy_basic@mem-copy-linear-0x369: - shard-dg2-set2: NOTRUN -> [SKIP][87] ([Intel XE#1123]) [87]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149793v3/shard-dg2-436/igt@xe_copy_basic@mem-copy-linear-0x369.html * igt@xe_copy_basic@mem-set-linear-0xfffe: - shard-dg2-set2: NOTRUN -> [SKIP][88] ([Intel XE#1126]) +1 other test skip [88]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149793v3/shard-dg2-436/igt@xe_copy_basic@mem-set-linear-0xfffe.html * igt@xe_create@create-big-vram: - shard-lnl: NOTRUN -> [SKIP][89] ([Intel XE#1062]) [89]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149793v3/shard-lnl-5/igt@xe_create@create-big-vram.html * igt@xe_eu_stall@unprivileged-access: - shard-dg2-set2: NOTRUN -> [SKIP][90] ([Intel XE#5308]) [90]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149793v3/shard-dg2-435/igt@xe_eu_stall@unprivileged-access.html * igt@xe_eudebug@basic-vm-access-userptr-faultable: - shard-dg2-set2: NOTRUN -> [SKIP][91] ([Intel XE#4837]) +18 other tests skip [91]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149793v3/shard-dg2-434/igt@xe_eudebug@basic-vm-access-userptr-faultable.html * igt@xe_eudebug_online@reset-with-attention: - shard-bmg: NOTRUN -> [SKIP][92] ([Intel XE#4837]) [92]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149793v3/shard-bmg-1/igt@xe_eudebug_online@reset-with-attention.html * igt@xe_exec_fault_mode@once-bindexecqueue-imm: - shard-dg2-set2: NOTRUN -> [SKIP][93] ([Intel XE#288]) +37 other tests skip [93]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149793v3/shard-dg2-435/igt@xe_exec_fault_mode@once-bindexecqueue-imm.html * igt@xe_exec_mix_modes@exec-spinner-interrupted-lr: - shard-dg2-set2: NOTRUN -> [SKIP][94] ([Intel XE#2360]) [94]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149793v3/shard-dg2-436/igt@xe_exec_mix_modes@exec-spinner-interrupted-lr.html * igt@xe_exec_system_allocator@process-many-large-mmap-huge-nomemset: - shard-bmg: NOTRUN -> [SKIP][95] ([Intel XE#4943]) +1 other test skip [95]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149793v3/shard-bmg-1/igt@xe_exec_system_allocator@process-many-large-mmap-huge-nomemset.html * igt@xe_exec_system_allocator@threads-many-stride-mmap-remap-eocheck: - shard-dg2-set2: NOTRUN -> [SKIP][96] ([Intel XE#4915]) +379 other tests skip [96]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149793v3/shard-dg2-436/igt@xe_exec_system_allocator@threads-many-stride-mmap-remap-eocheck.html * igt@xe_exec_system_allocator@threads-shared-vm-many-stride-new-bo-map-nomemset: - shard-lnl: [PASS][97] -> [FAIL][98] ([Intel XE#5018]) [97]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3282-1b4be188ae14a43b901f3005075fab3a22f77968/shard-lnl-2/igt@xe_exec_system_allocator@threads-shared-vm-many-stride-new-bo-map-nomemset.html [98]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149793v3/shard-lnl-4/igt@xe_exec_system_allocator@threads-shared-vm-many-stride-new-bo-map-nomemset.html * igt@xe_mmap@small-bar: - shard-dg2-set2: NOTRUN -> [SKIP][99] ([Intel XE#512]) [99]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149793v3/shard-dg2-466/igt@xe_mmap@small-bar.html * igt@xe_module_load@force-load: - shard-dg2-set2: NOTRUN -> [SKIP][100] ([Intel XE#378]) [100]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149793v3/shard-dg2-435/igt@xe_module_load@force-load.html * igt@xe_oa@missing-sample-flags: - shard-dg2-set2: NOTRUN -> [SKIP][101] ([Intel XE#2541] / [Intel XE#3573]) +7 other tests skip [101]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149793v3/shard-dg2-435/igt@xe_oa@missing-sample-flags.html * igt@xe_oa@syncs-syncobj-cfg: - shard-dg2-set2: NOTRUN -> [SKIP][102] ([Intel XE#2541] / [Intel XE#3573] / [Intel XE#4501]) +1 other test skip [102]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149793v3/shard-dg2-466/igt@xe_oa@syncs-syncobj-cfg.html * igt@xe_pat@pat-index-xehpc: - shard-dg2-set2: NOTRUN -> [SKIP][103] ([Intel XE#2838] / [Intel XE#979]) [103]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149793v3/shard-dg2-434/igt@xe_pat@pat-index-xehpc.html * igt@xe_pm@d3cold-mocs: - shard-dg2-set2: NOTRUN -> [SKIP][104] ([Intel XE#2284]) [104]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149793v3/shard-dg2-436/igt@xe_pm@d3cold-mocs.html * igt@xe_pm@s2idle-d3cold-basic-exec: - shard-dg2-set2: NOTRUN -> [SKIP][105] ([Intel XE#2284] / [Intel XE#366]) +2 other tests skip [105]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149793v3/shard-dg2-435/igt@xe_pm@s2idle-d3cold-basic-exec.html * igt@xe_pm@s3-vm-bind-unbind-all: - shard-lnl: NOTRUN -> [SKIP][106] ([Intel XE#584]) [106]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149793v3/shard-lnl-5/igt@xe_pm@s3-vm-bind-unbind-all.html * igt@xe_pxp@pxp-termination-key-update-post-rpm: - shard-dg2-set2: NOTRUN -> [SKIP][107] ([Intel XE#4733]) +5 other tests skip [107]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149793v3/shard-dg2-466/igt@xe_pxp@pxp-termination-key-update-post-rpm.html * igt@xe_query@multigpu-query-invalid-uc-fw-version-mbz: - shard-dg2-set2: NOTRUN -> [SKIP][108] ([Intel XE#944]) [108]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149793v3/shard-dg2-466/igt@xe_query@multigpu-query-invalid-uc-fw-version-mbz.html * igt@xe_query@multigpu-query-pxp-status: - shard-lnl: NOTRUN -> [SKIP][109] ([Intel XE#944]) [109]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149793v3/shard-lnl-5/igt@xe_query@multigpu-query-pxp-status.html * igt@xe_render_copy@render-stress-4-copies: - shard-dg2-set2: NOTRUN -> [SKIP][110] ([Intel XE#4814]) +1 other test skip [110]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149793v3/shard-dg2-436/igt@xe_render_copy@render-stress-4-copies.html * igt@xe_sriov_auto_provisioning@selfconfig-reprovision-increase-numvfs: - shard-dg2-set2: NOTRUN -> [SKIP][111] ([Intel XE#4130]) +1 other test skip [111]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149793v3/shard-dg2-435/igt@xe_sriov_auto_provisioning@selfconfig-reprovision-increase-numvfs.html * igt@xe_sriov_flr@flr-vf1-clear: - shard-dg2-set2: NOTRUN -> [SKIP][112] ([Intel XE#3342]) [112]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149793v3/shard-dg2-434/igt@xe_sriov_flr@flr-vf1-clear.html #### Possible fixes #### * igt@kms_cursor_legacy@2x-nonblocking-modeset-vs-cursor-atomic: - shard-dg2-set2: [SKIP][113] ([Intel XE#4208] / [i915#2575]) -> [PASS][114] +5 other tests pass [113]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3282-1b4be188ae14a43b901f3005075fab3a22f77968/shard-dg2-435/igt@kms_cursor_legacy@2x-nonblocking-modeset-vs-cursor-atomic.html [114]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149793v3/shard-dg2-435/igt@kms_cursor_legacy@2x-nonblocking-modeset-vs-cursor-atomic.html * igt@kms_cursor_legacy@cursorb-vs-flipa-atomic-transitions-varying-size: - shard-bmg: [SKIP][115] ([Intel XE#2291]) -> [PASS][116] +9 other tests pass [115]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3282-1b4be188ae14a43b901f3005075fab3a22f77968/shard-bmg-5/igt@kms_cursor_legacy@cursorb-vs-flipa-atomic-transitions-varying-size.html [116]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149793v3/shard-bmg-4/igt@kms_cursor_legacy@cursorb-vs-flipa-atomic-transitions-varying-size.html * igt@kms_dp_linktrain_fallback@dp-fallback: - shard-bmg: [SKIP][117] ([Intel XE#4294]) -> [PASS][118] [117]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3282-1b4be188ae14a43b901f3005075fab3a22f77968/shard-bmg-6/igt@kms_dp_linktrain_fallback@dp-fallback.html [118]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149793v3/shard-bmg-3/igt@kms_dp_linktrain_fallback@dp-fallback.html * igt@kms_flip@2x-flip-vs-dpms-on-nop: - shard-bmg: [SKIP][119] ([Intel XE#2316]) -> [PASS][120] +8 other tests pass [119]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3282-1b4be188ae14a43b901f3005075fab3a22f77968/shard-bmg-5/igt@kms_flip@2x-flip-vs-dpms-on-nop.html [120]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149793v3/shard-bmg-7/igt@kms_flip@2x-flip-vs-dpms-on-nop.html * igt@kms_flip@flip-vs-absolute-wf_vblank: - shard-lnl: [FAIL][121] ([Intel XE#886]) -> [PASS][122] +3 other tests pass [121]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3282-1b4be188ae14a43b901f3005075fab3a22f77968/shard-lnl-4/igt@kms_flip@flip-vs-absolute-wf_vblank.html [122]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149793v3/shard-lnl-1/igt@kms_flip@flip-vs-absolute-wf_vblank.html * igt@kms_flip@flip-vs-suspend@d-hdmi-a1: - shard-adlp: [DMESG-WARN][123] ([Intel XE#2953] / [Intel XE#4173]) -> [PASS][124] +14 other tests pass [123]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3282-1b4be188ae14a43b901f3005075fab3a22f77968/shard-adlp-3/igt@kms_flip@flip-vs-suspend@d-hdmi-a1.html [124]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149793v3/shard-adlp-3/igt@kms_flip@flip-vs-suspend@d-hdmi-a1.html * igt@kms_flip@plain-flip-ts-check@a-hdmi-a3: - shard-bmg: [FAIL][125] ([Intel XE#2882]) -> [PASS][126] +2 other tests pass [125]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3282-1b4be188ae14a43b901f3005075fab3a22f77968/shard-bmg-5/igt@kms_flip@plain-flip-ts-check@a-hdmi-a3.html [126]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149793v3/shard-bmg-7/igt@kms_flip@plain-flip-ts-check@a-hdmi-a3.html * igt@kms_flip_tiling@flip-change-tiling@pipe-b-hdmi-a-1-y-to-y: - shard-adlp: [DMESG-FAIL][127] ([Intel XE#4543]) -> [PASS][128] [127]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3282-1b4be188ae14a43b901f3005075fab3a22f77968/shard-adlp-1/igt@kms_flip_tiling@flip-change-tiling@pipe-b-hdmi-a-1-y-to-y.html [128]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149793v3/shard-adlp-4/igt@kms_flip_tiling@flip-change-tiling@pipe-b-hdmi-a-1-y-to-y.html * igt@kms_flip_tiling@flip-change-tiling@pipe-c-hdmi-a-1-y-to-y: - shard-adlp: [FAIL][129] ([Intel XE#1874]) -> [PASS][130] [129]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3282-1b4be188ae14a43b901f3005075fab3a22f77968/shard-adlp-1/igt@kms_flip_tiling@flip-change-tiling@pipe-c-hdmi-a-1-y-to-y.html [130]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149793v3/shard-adlp-4/igt@kms_flip_tiling@flip-change-tiling@pipe-c-hdmi-a-1-y-to-y.html * igt@kms_hdr@bpc-switch-dpms: - shard-dg2-set2: [FAIL][131] -> [PASS][132] +1 other test pass [131]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3282-1b4be188ae14a43b901f3005075fab3a22f77968/shard-dg2-435/igt@kms_hdr@bpc-switch-dpms.html [132]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149793v3/shard-dg2-436/igt@kms_hdr@bpc-switch-dpms.html * igt@kms_hdr@invalid-hdr: - shard-bmg: [SKIP][133] ([Intel XE#1503]) -> [PASS][134] [133]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3282-1b4be188ae14a43b901f3005075fab3a22f77968/shard-bmg-5/igt@kms_hdr@invalid-hdr.html [134]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149793v3/shard-bmg-7/igt@kms_hdr@invalid-hdr.html * igt@kms_plane_multiple@2x-tiling-4: - shard-bmg: [SKIP][135] ([Intel XE#4596]) -> [PASS][136] [135]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3282-1b4be188ae14a43b901f3005075fab3a22f77968/shard-bmg-6/igt@kms_plane_multiple@2x-tiling-4.html [136]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149793v3/shard-bmg-2/igt@kms_plane_multiple@2x-tiling-4.html * igt@kms_vrr@cmrr@pipe-a-edp-1: - shard-lnl: [FAIL][137] ([Intel XE#4459]) -> [PASS][138] +1 other test pass [137]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3282-1b4be188ae14a43b901f3005075fab3a22f77968/shard-lnl-2/igt@kms_vrr@cmrr@pipe-a-edp-1.html [138]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149793v3/shard-lnl-3/igt@kms_vrr@cmrr@pipe-a-edp-1.html * igt@xe_exec_system_allocator@threads-shared-vm-many-large-execqueues-new-bo-map-nomemset: - shard-lnl: [FAIL][139] ([Intel XE#5018]) -> [PASS][140] [139]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3282-1b4be188ae14a43b901f3005075fab3a22f77968/shard-lnl-2/igt@xe_exec_system_allocator@threads-shared-vm-many-large-execqueues-new-bo-map-nomemset.html [140]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149793v3/shard-lnl-4/igt@xe_exec_system_allocator@threads-shared-vm-many-large-execqueues-new-bo-map-nomemset.html * igt@xe_module_load@load: - shard-dg2-set2: ([PASS][141], [PASS][142], [PASS][143], [PASS][144], [PASS][145], [PASS][146], [PASS][147], [SKIP][148], [PASS][149], [PASS][150], [PASS][151], [PASS][152], [PASS][153], [PASS][154], [PASS][155], [PASS][156], [PASS][157], [PASS][158], [PASS][159]) ([Intel XE#378]) -> ([PASS][160], [PASS][161], [PASS][162], [PASS][163], [PASS][164], [PASS][165], [PASS][166], [PASS][167], [PASS][168], [PASS][169], [PASS][170], [PASS][171], [PASS][172], [PASS][173], [PASS][174], [PASS][175], [PASS][176], [PASS][177]) [141]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3282-1b4be188ae14a43b901f3005075fab3a22f77968/shard-dg2-436/igt@xe_module_load@load.html [142]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3282-1b4be188ae14a43b901f3005075fab3a22f77968/shard-dg2-435/igt@xe_module_load@load.html [143]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3282-1b4be188ae14a43b901f3005075fab3a22f77968/shard-dg2-435/igt@xe_module_load@load.html [144]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3282-1b4be188ae14a43b901f3005075fab3a22f77968/shard-dg2-436/igt@xe_module_load@load.html [145]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3282-1b4be188ae14a43b901f3005075fab3a22f77968/shard-dg2-436/igt@xe_module_load@load.html [146]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3282-1b4be188ae14a43b901f3005075fab3a22f77968/shard-dg2-436/igt@xe_module_load@load.html [147]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3282-1b4be188ae14a43b901f3005075fab3a22f77968/shard-dg2-435/igt@xe_module_load@load.html [148]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3282-1b4be188ae14a43b901f3005075fab3a22f77968/shard-dg2-434/igt@xe_module_load@load.html [149]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3282-1b4be188ae14a43b901f3005075fab3a22f77968/shard-dg2-435/igt@xe_module_load@load.html [150]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3282-1b4be188ae14a43b901f3005075fab3a22f77968/shard-dg2-466/igt@xe_module_load@load.html [151]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3282-1b4be188ae14a43b901f3005075fab3a22f77968/shard-dg2-466/igt@xe_module_load@load.html [152]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3282-1b4be188ae14a43b901f3005075fab3a22f77968/shard-dg2-466/igt@xe_module_load@load.html [153]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3282-1b4be188ae14a43b901f3005075fab3a22f77968/shard-dg2-466/igt@xe_module_load@load.html [154]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3282-1b4be188ae14a43b901f3005075fab3a22f77968/shard-dg2-434/igt@xe_module_load@load.html [155]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3282-1b4be188ae14a43b901f3005075fab3a22f77968/shard-dg2-434/igt@xe_module_load@load.html [156]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3282-1b4be188ae14a43b901f3005075fab3a22f77968/shard-dg2-434/igt@xe_module_load@load.html [157]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3282-1b4be188ae14a43b901f3005075fab3a22f77968/shard-dg2-434/igt@xe_module_load@load.html [158]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3282-1b4be188ae14a43b901f3005075fab3a22f77968/shard-dg2-434/igt@xe_module_load@load.html [159]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3282-1b4be188ae14a43b901f3005075fab3a22f77968/shard-dg2-436/igt@xe_module_load@load.html [160]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149793v3/shard-dg2-434/igt@xe_module_load@load.html [161]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149793v3/shard-dg2-434/igt@xe_module_load@load.html [162]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149793v3/shard-dg2-434/igt@xe_module_load@load.html [163]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149793v3/shard-dg2-434/igt@xe_module_load@load.html [164]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149793v3/shard-dg2-434/igt@xe_module_load@load.html [165]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149793v3/shard-dg2-435/igt@xe_module_load@load.html [166]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149793v3/shard-dg2-435/igt@xe_module_load@load.html [167]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149793v3/shard-dg2-436/igt@xe_module_load@load.html [168]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149793v3/shard-dg2-436/igt@xe_module_load@load.html [169]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149793v3/shard-dg2-436/igt@xe_module_load@load.html [170]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149793v3/shard-dg2-436/igt@xe_module_load@load.html [171]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149793v3/shard-dg2-435/igt@xe_module_load@load.html [172]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149793v3/shard-dg2-435/igt@xe_module_load@load.html [173]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149793v3/shard-dg2-435/igt@xe_module_load@load.html [174]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149793v3/shard-dg2-466/igt@xe_module_load@load.html [175]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149793v3/shard-dg2-466/igt@xe_module_load@load.html [176]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149793v3/shard-dg2-466/igt@xe_module_load@load.html [177]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149793v3/shard-dg2-466/igt@xe_module_load@load.html * igt@xe_module_load@many-reload: - shard-adlp: [DMESG-WARN][178] ([Intel XE#2953] / [Intel XE#4173] / [Intel XE#5244]) -> [PASS][179] [178]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3282-1b4be188ae14a43b901f3005075fab3a22f77968/shard-adlp-3/igt@xe_module_load@many-reload.html [179]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149793v3/shard-adlp-3/igt@xe_module_load@many-reload.html * igt@xe_oa@oa-exponents: - shard-lnl: [TIMEOUT][180] -> [PASS][181] +1 other test pass [180]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3282-1b4be188ae14a43b901f3005075fab3a22f77968/shard-lnl-6/igt@xe_oa@oa-exponents.html [181]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149793v3/shard-lnl-1/igt@xe_oa@oa-exponents.html * igt@xe_vm@munmap-style-unbind-many-either-side-partial: - shard-dg2-set2: [SKIP][182] ([Intel XE#4208]) -> [PASS][183] +15 other tests pass [182]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3282-1b4be188ae14a43b901f3005075fab3a22f77968/shard-dg2-435/igt@xe_vm@munmap-style-unbind-many-either-side-partial.html [183]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149793v3/shard-dg2-435/igt@xe_vm@munmap-style-unbind-many-either-side-partial.html #### Warnings #### * igt@kms_big_fb@y-tiled-32bpp-rotate-90: - shard-dg2-set2: [SKIP][184] ([Intel XE#2351] / [Intel XE#4208]) -> [SKIP][185] ([Intel XE#1124]) [184]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3282-1b4be188ae14a43b901f3005075fab3a22f77968/shard-dg2-435/igt@kms_big_fb@y-tiled-32bpp-rotate-90.html [185]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149793v3/shard-dg2-435/igt@kms_big_fb@y-tiled-32bpp-rotate-90.html * igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-0-hflip: - shard-dg2-set2: [SKIP][186] ([Intel XE#4208]) -> [SKIP][187] ([Intel XE#1124]) [186]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3282-1b4be188ae14a43b901f3005075fab3a22f77968/shard-dg2-435/igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-0-hflip.html [187]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149793v3/shard-dg2-435/igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-0-hflip.html * igt@kms_ccs@bad-pixel-format-4-tiled-mtl-mc-ccs: - shard-dg2-set2: [SKIP][188] ([Intel XE#4208]) -> [SKIP][189] ([Intel XE#455] / [Intel XE#787]) +1 other test skip [188]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3282-1b4be188ae14a43b901f3005075fab3a22f77968/shard-dg2-435/igt@kms_ccs@bad-pixel-format-4-tiled-mtl-mc-ccs.html [189]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149793v3/shard-dg2-435/igt@kms_ccs@bad-pixel-format-4-tiled-mtl-mc-ccs.html * igt@kms_content_protection@lic-type-0: - shard-bmg: [FAIL][190] ([Intel XE#1178]) -> [SKIP][191] ([Intel XE#2341]) +1 other test skip [190]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3282-1b4be188ae14a43b901f3005075fab3a22f77968/shard-bmg-4/igt@kms_content_protection@lic-type-0.html [191]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149793v3/shard-bmg-5/igt@kms_content_protection@lic-type-0.html * igt@kms_content_protection@uevent: - shard-bmg: [SKIP][192] ([Intel XE#2341]) -> [FAIL][193] ([Intel XE#1188]) [192]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3282-1b4be188ae14a43b901f3005075fab3a22f77968/shard-bmg-5/igt@kms_content_protection@uevent.html [193]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149793v3/shard-bmg-4/igt@kms_content_protection@uevent.html * igt@kms_dp_linktrain_fallback@dsc-fallback: - shard-dg2-set2: [SKIP][194] ([Intel XE#4208]) -> [SKIP][195] ([Intel XE#4331]) [194]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3282-1b4be188ae14a43b901f3005075fab3a22f77968/shard-dg2-435/igt@kms_dp_linktrain_fallback@dsc-fallback.html [195]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149793v3/shard-dg2-435/igt@kms_dp_linktrain_fallback@dsc-fallback.html * igt@kms_flip@plain-flip-ts-check: - shard-lnl: [FAIL][196] ([Intel XE#3149] / [Intel XE#886]) -> [FAIL][197] ([Intel XE#3098] / [Intel XE#3149] / [Intel XE#886]) [196]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3282-1b4be188ae14a43b901f3005075fab3a22f77968/shard-lnl-5/igt@kms_flip@plain-flip-ts-check.html [197]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149793v3/shard-lnl-6/igt@kms_flip@plain-flip-ts-check.html * igt@kms_flip@plain-flip-ts-check@a-edp1: - shard-lnl: [FAIL][198] ([Intel XE#886]) -> [FAIL][199] ([Intel XE#3098]) [198]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3282-1b4be188ae14a43b901f3005075fab3a22f77968/shard-lnl-5/igt@kms_flip@plain-flip-ts-check@a-edp1.html [199]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149793v3/shard-lnl-6/igt@kms_flip@plain-flip-ts-check@a-edp1.html * igt@kms_frontbuffer_tracking@drrs-2p-primscrn-indfb-pgflip-blt: - shard-bmg: [SKIP][200] ([Intel XE#2312]) -> [SKIP][201] ([Intel XE#2311]) +21 other tests skip [200]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3282-1b4be188ae14a43b901f3005075fab3a22f77968/shard-bmg-5/igt@kms_frontbuffer_tracking@drrs-2p-primscrn-indfb-pgflip-blt.html [201]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149793v3/shard-bmg-7/igt@kms_frontbuffer_tracking@drrs-2p-primscrn-indfb-pgflip-blt.html * igt@kms_frontbuffer_tracking@drrs-2p-primscrn-pri-indfb-draw-blt: - shard-dg2-set2: [SKIP][202] ([Intel XE#2351] / [Intel XE#4208]) -> [SKIP][203] ([Intel XE#651]) +1 other test skip [202]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3282-1b4be188ae14a43b901f3005075fab3a22f77968/shard-dg2-435/igt@kms_frontbuffer_tracking@drrs-2p-primscrn-pri-indfb-draw-blt.html [203]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149793v3/shard-dg2-435/igt@kms_frontbuffer_tracking@drrs-2p-primscrn-pri-indfb-draw-blt.html * igt@kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-fullscreen: - shard-bmg: [SKIP][204] ([Intel XE#4141]) -> [SKIP][205] ([Intel XE#2312]) +8 other tests skip [204]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3282-1b4be188ae14a43b901f3005075fab3a22f77968/shard-bmg-4/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-fullscreen.html [205]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149793v3/shard-bmg-5/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-fullscreen.html * igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-onoff: - shard-bmg: [SKIP][206] ([Intel XE#2312]) -> [SKIP][207] ([Intel XE#4141]) +14 other tests skip [206]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3282-1b4be188ae14a43b901f3005075fab3a22f77968/shard-bmg-6/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-onoff.html [207]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149793v3/shard-bmg-3/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-onoff.html * igt@kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-spr-indfb-move: - shard-dg2-set2: [SKIP][208] ([Intel XE#4208]) -> [SKIP][209] ([Intel XE#651]) +1 other test skip [208]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3282-1b4be188ae14a43b901f3005075fab3a22f77968/shard-dg2-435/igt@kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-spr-indfb-move.html [209]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149793v3/shard-dg2-435/igt@kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-spr-indfb-move.html * igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-cur-indfb-draw-mmap-wc: - shard-bmg: [SKIP][210] ([Intel XE#2311]) -> [SKIP][211] ([Intel XE#2312]) +12 other tests skip [210]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3282-1b4be188ae14a43b901f3005075fab3a22f77968/shard-bmg-8/igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-cur-indfb-draw-mmap-wc.html [211]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149793v3/shard-bmg-6/igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-cur-indfb-draw-mmap-wc.html * igt@kms_frontbuffer_tracking@psr-2p-primscrn-indfb-plflip-blt: - shard-bmg: [SKIP][212] ([Intel XE#2313]) -> [SKIP][213] ([Intel XE#2312]) +14 other tests skip [212]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3282-1b4be188ae14a43b901f3005075fab3a22f77968/shard-bmg-4/igt@kms_frontbuffer_tracking@psr-2p-primscrn-indfb-plflip-blt.html [213]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149793v3/shard-bmg-5/igt@kms_frontbuffer_tracking@psr-2p-primscrn-indfb-plflip-blt.html * igt@kms_frontbuffer_tracking@psr-2p-primscrn-pri-indfb-draw-render: - shard-dg2-set2: [SKIP][214] ([Intel XE#4208]) -> [SKIP][215] ([Intel XE#653]) +1 other test skip [214]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3282-1b4be188ae14a43b901f3005075fab3a22f77968/shard-dg2-435/igt@kms_frontbuffer_tracking@psr-2p-primscrn-pri-indfb-draw-render.html [215]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149793v3/shard-dg2-435/igt@kms_frontbuffer_tracking@psr-2p-primscrn-pri-indfb-draw-render.html * igt@kms_frontbuffer_tracking@psr-2p-primscrn-spr-indfb-fullscreen: - shard-bmg: [SKIP][216] ([Intel XE#2312]) -> [SKIP][217] ([Intel XE#2313]) +20 other tests skip [216]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3282-1b4be188ae14a43b901f3005075fab3a22f77968/shard-bmg-5/igt@kms_frontbuffer_tracking@psr-2p-primscrn-spr-indfb-fullscreen.html [217]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149793v3/shard-bmg-4/igt@kms_frontbuffer_tracking@psr-2p-primscrn-spr-indfb-fullscreen.html * igt@kms_plane_multiple@2x-tiling-y: - shard-bmg: [SKIP][218] ([Intel XE#4596]) -> [SKIP][219] ([Intel XE#5021]) [218]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3282-1b4be188ae14a43b901f3005075fab3a22f77968/shard-bmg-6/igt@kms_plane_multiple@2x-tiling-y.html [219]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149793v3/shard-bmg-3/igt@kms_plane_multiple@2x-tiling-y.html * igt@kms_psr2_sf@fbc-pr-overlay-plane-move-continuous-exceed-fully-sf: - shard-dg2-set2: [SKIP][220] ([Intel XE#4208]) -> [SKIP][221] ([Intel XE#1489]) +1 other test skip [220]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3282-1b4be188ae14a43b901f3005075fab3a22f77968/shard-dg2-435/igt@kms_psr2_sf@fbc-pr-overlay-plane-move-continuous-exceed-fully-sf.html [221]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149793v3/shard-dg2-435/igt@kms_psr2_sf@fbc-pr-overlay-plane-move-continuous-exceed-fully-sf.html * igt@kms_psr@pr-sprite-plane-onoff: - shard-dg2-set2: [SKIP][222] ([Intel XE#2351] / [Intel XE#4208]) -> [SKIP][223] ([Intel XE#2850] / [Intel XE#929]) [222]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3282-1b4be188ae14a43b901f3005075fab3a22f77968/shard-dg2-435/igt@kms_psr@pr-sprite-plane-onoff.html [223]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149793v3/shard-dg2-435/igt@kms_psr@pr-sprite-plane-onoff.html * igt@kms_vrr@seamless-rr-switch-virtual: - shard-dg2-set2: [SKIP][224] ([Intel XE#4208] / [i915#2575]) -> [SKIP][225] ([Intel XE#455]) [224]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3282-1b4be188ae14a43b901f3005075fab3a22f77968/shard-dg2-435/igt@kms_vrr@seamless-rr-switch-virtual.html [225]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149793v3/shard-dg2-435/igt@kms_vrr@seamless-rr-switch-virtual.html * igt@xe_exec_fault_mode@twice-invalid-fault: - shard-dg2-set2: [SKIP][226] ([Intel XE#4208]) -> [SKIP][227] ([Intel XE#288]) +2 other tests skip [226]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3282-1b4be188ae14a43b901f3005075fab3a22f77968/shard-dg2-435/igt@xe_exec_fault_mode@twice-invalid-fault.html [227]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149793v3/shard-dg2-435/igt@xe_exec_fault_mode@twice-invalid-fault.html * igt@xe_exec_system_allocator@threads-many-execqueues-mmap-remap-dontunmap-eocheck: - shard-dg2-set2: [SKIP][228] ([Intel XE#4208]) -> [SKIP][229] ([Intel XE#4915]) +20 other tests skip [228]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3282-1b4be188ae14a43b901f3005075fab3a22f77968/shard-dg2-435/igt@xe_exec_system_allocator@threads-many-execqueues-mmap-remap-dontunmap-eocheck.html [229]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149793v3/shard-dg2-435/igt@xe_exec_system_allocator@threads-many-execqueues-mmap-remap-dontunmap-eocheck.html * igt@xe_oa@unprivileged-single-ctx-counters: - shard-dg2-set2: [SKIP][230] ([Intel XE#4208]) -> [SKIP][231] ([Intel XE#2541] / [Intel XE#3573]) +1 other test skip [230]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3282-1b4be188ae14a43b901f3005075fab3a22f77968/shard-dg2-435/igt@xe_oa@unprivileged-single-ctx-counters.html [231]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149793v3/shard-dg2-435/igt@xe_oa@unprivileged-single-ctx-counters.html * igt@xe_query@multigpu-query-engines: - shard-dg2-set2: [SKIP][232] ([Intel XE#4208]) -> [SKIP][233] ([Intel XE#944]) +1 other test skip [232]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3282-1b4be188ae14a43b901f3005075fab3a22f77968/shard-dg2-435/igt@xe_query@multigpu-query-engines.html [233]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149793v3/shard-dg2-435/igt@xe_query@multigpu-query-engines.html * igt@xe_sriov_auto_provisioning@selfconfig-reprovision-reduce-numvfs: - shard-dg2-set2: [SKIP][234] ([Intel XE#4208]) -> [SKIP][235] ([Intel XE#4130]) [234]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3282-1b4be188ae14a43b901f3005075fab3a22f77968/shard-dg2-435/igt@xe_sriov_auto_provisioning@selfconfig-reprovision-reduce-numvfs.html [235]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149793v3/shard-dg2-435/igt@xe_sriov_auto_provisioning@selfconfig-reprovision-reduce-numvfs.html {name}: This element is suppressed. This means it is ignored when computing the status of the difference (SUCCESS, WARNING, or FAILURE). [Intel XE#1062]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1062 [Intel XE#1091]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1091 [Intel XE#1123]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1123 [Intel XE#1124]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1124 [Intel XE#1126]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1126 [Intel XE#1129]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1129 [Intel XE#1178]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1178 [Intel XE#1188]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1188 [Intel XE#1280]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1280 [Intel XE#1406]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1406 [Intel XE#1424]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1424 [Intel XE#1435]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1435 [Intel XE#1470]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1470 [Intel XE#1489]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1489 [Intel XE#1503]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1503 [Intel XE#1727]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1727 [Intel XE#1874]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1874 [Intel XE#2049]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2049 [Intel XE#2191]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2191 [Intel XE#2252]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2252 [Intel XE#2284]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2284 [Intel XE#2291]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2291 [Intel XE#2311]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2311 [Intel XE#2312]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2312 [Intel XE#2313]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2313 [Intel XE#2316]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2316 [Intel XE#2341]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2341 [Intel XE#2351]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2351 [Intel XE#2360]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2360 [Intel XE#2541]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2541 [Intel XE#2571]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2571 [Intel XE#2597]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2597 [Intel XE#2838]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2838 [Intel XE#2849]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2849 [Intel XE#2850]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2850 [Intel XE#2853]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2853 [Intel XE#288]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/288 [Intel XE#2882]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2882 [Intel XE#2887]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2887 [Intel XE#2907]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2907 [Intel XE#2925]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2925 [Intel XE#2953]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2953 [Intel XE#301]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/301 [Intel XE#3012]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3012 [Intel XE#306]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/306 [Intel XE#307]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/307 [Intel XE#308]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/308 [Intel XE#3098]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3098 [Intel XE#3113]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3113 [Intel XE#3124]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3124 [Intel XE#3149]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3149 [Intel XE#316]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/316 [Intel XE#3304]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3304 [Intel XE#3307]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3307 [Intel XE#3321]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3321 [Intel XE#3342]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3342 [Intel XE#3414]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3414 [Intel XE#356]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/356 [Intel XE#3573]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3573 [Intel XE#3658]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3658 [Intel XE#366]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/366 [Intel XE#367]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/367 [Intel XE#373]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/373 [Intel XE#3767]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3767 [Intel XE#378]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/378 [Intel XE#3862]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3862 [Intel XE#4130]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4130 [Intel XE#4141]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4141 [Intel XE#4173]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4173 [Intel XE#4208]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4208 [Intel XE#4294]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4294 [Intel XE#4298]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4298 [Intel XE#4331]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4331 [Intel XE#4354]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4354 [Intel XE#4359]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4359 [Intel XE#4416]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4416 [Intel XE#4422]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4422 [Intel XE#4459]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4459 [Intel XE#4494]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4494 [Intel XE#4501]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4501 [Intel XE#4543]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4543 [Intel XE#455]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/455 [Intel XE#4596]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4596 [Intel XE#4609]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4609 [Intel XE#4733]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4733 [Intel XE#4814]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4814 [Intel XE#4837]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4837 [Intel XE#4915]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4915 [Intel XE#4943]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4943 [Intel XE#5018]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5018 [Intel XE#5020]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5020 [Intel XE#5021]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5021 [Intel XE#512]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/512 [Intel XE#5244]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5244 [Intel XE#5300]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5300 [Intel XE#5301]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5301 [Intel XE#5308]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5308 [Intel XE#584]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/584 [Intel XE#616]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/616 [Intel XE#619]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/619 [Intel XE#651]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/651 [Intel XE#653]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/653 [Intel XE#656]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/656 [Intel XE#701]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/701 [Intel XE#787]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/787 [Intel XE#886]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/886 [Intel XE#908]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/908 [Intel XE#929]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/929 [Intel XE#944]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/944 [Intel XE#979]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/979 [i915#2575]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2575 [i915#3804]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3804 Build changes ------------- * Linux: xe-3282-1b4be188ae14a43b901f3005075fab3a22f77968 -> xe-pw-149793v3 IGT_8418: 8418 xe-3282-1b4be188ae14a43b901f3005075fab3a22f77968: 1b4be188ae14a43b901f3005075fab3a22f77968 xe-pw-149793v3: 149793v3 == Logs == For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149793v3/index.html [-- Attachment #2: Type: text/html, Size: 73020 bytes --] ^ permalink raw reply [flat|nested] 9+ messages in thread
end of thread, other threads:[~2025-06-24 13:10 UTC | newest] Thread overview: 9+ messages (download: mbox.gz follow: Atom feed -- links below jump to the message on this page -- 2025-06-20 12:03 [PATCH v5 0/2] Add debugfs node to expose G-state and pcie link state residency Soham Purkait 2025-06-20 12:03 ` [PATCH v5 1/2] drm/xe/regs/xe_pmt: Macros for G-State and pcie link state residency offset Soham Purkait 2025-06-22 5:57 ` Gupta, Anshuman 2025-06-24 13:10 ` Poosa, Karthik 2025-06-20 12:03 ` [PATCH v5 2/2] drm/xe/xe_debugfs: Exposure of G-State and pcie link state residency counters through debugfs Soham Purkait 2025-06-24 13:01 ` Poosa, Karthik 2025-06-20 12:28 ` ✗ CI.checkpatch: warning for Add debugfs node to expose G-state and pcie link state residency (rev3) Patchwork 2025-06-20 12:29 ` ✓ CI.KUnit: success " Patchwork 2025-06-20 22:52 ` ✗ Xe.CI.Full: failure " Patchwork
This is a public inbox, see mirroring instructions for how to clone and mirror all data and code used for this inbox