* [PATCH v6 0/5] Introduce cold reset recovery method
@ 2026-05-20 11:33 Mallesh Koujalagi
2026-05-20 11:33 ` [PATCH v6 1/5] Introduce Xe Uncorrectable Error Handling Mallesh Koujalagi
` (12 more replies)
0 siblings, 13 replies; 15+ messages in thread
From: Mallesh Koujalagi @ 2026-05-20 11:33 UTC (permalink / raw)
To: intel-xe, dri-devel, rodrigo.vivi
Cc: andrealmeid, christian.koenig, airlied, simona.vetter, mripard,
maarten.lankhorst, tzimmermann, anshuman.gupta, badal.nilawar,
riana.tauro, karthik.poosa, sk.anirban, raag.jadav,
Mallesh Koujalagi
This series builds on top of Introduce Xe Uncorrectable Error Handling[1]
and adds support for handling errors that require a complete
device power cycle (cold reset) to recover.
Certain error conditions leave the device in a persistent hardware
error state that cannot be cleared through existing recovery mechanisms
such as driver reload or PCIe reset. In these cases, functionality can
only be restored by performing a cold reset.
To support this, the series introduces a new DRM wedging recovery
method, DRM_WEDGE_RECOVERY_COLD_RESET (BIT(4)). When a device is wedged
with this method, the DRM core notifies userspace via a uevent that a cold
reset is required. This allows userspace to take appropriate action to
power-cycle the device.
Example uevent received:
SUBSYSTEM=drm
WEDGED=cold-reset
DEVPATH=/devices/.../drm/card0
Detailed description in commit message.
[1] https://patchwork.freedesktop.org/series/160482/
This patch series introduces a call to punit_error_handler() from
within handle_soc_internal_errors() when PUNIT errors detected.
v2:
- Add use case: Handling errors from power management unit,
which requires a complete power cycle to
recover. (Christian)
- Add several instead of number to avoid update. (Jani)
v3:
- Update any scenario that requires cold-reset. (Riana)
- Update document with generic scenario. (Riana)
- Consistent with terminology. (Raag)
- Remove already covered information.
- Use PUNIT instead of PMU. (Riana)
- Use consistent wordingi.
- Remove log. (Raag)
v4:
- Rename cold reset to power cyclce. (Raag)
- Update doc. (Raag/Riana)
- Change commit message. (Raag)
- Make function static. (Raag)
v5:
- Make it consistent with consumer expectations. (Raag)
- Update commit message.
- Remove unbind.
- Simplify cold-reset script.
- Remove kdoc for static function.
- Remove xe_ prefix for static function.
v6:
- Drop "last resort" wording. (Riana)
- Look up the hotplug slot in DEVPATH instead of scanning
every PCI slot on the system. (Raag)
- Drop arbitrary sleep values from the example script.
- Expand commit message to explain why SUR_DN is masked. (Raag/Riana)
- Check Slot Implemented bit before reading Slot Capabilities, per
PCIe spec. (Riana)
- Add debug log.
Cc: André Almeida <andrealmeid@igalia.com>
Cc: Christian König <christian.koenig@amd.com>
Cc: David Airlie <airlied@gmail.com>
Cc: Simona Vetter <simona.vetter@ffwll.ch>
Cc: Maxime Ripard <mripard@kernel.org>
Cc: Maarten Lankhorst <maarten.lankhorst@linux.intel.com>
Cc: Thomas Zimmermann <tzimmermann@suse.de>
Mallesh Koujalagi (4):
drm: Add DRM_WEDGE_RECOVERY_COLD_RESET recovery method
drm/doc: Document DRM_WEDGE_RECOVERY_COLD_RESET recovery method
drm/xe: Handle PUNIT errors by requesting cold-reset recovery
drm/xe: Suppress Surprise Link Down on non-hotplug device
Riana Tauro (1):
Introduce Xe Uncorrectable Error Handling
Documentation/gpu/drm-uapi.rst | 60 +-
drivers/gpu/drm/drm_drv.c | 2 +
drivers/gpu/drm/xe/Makefile | 1 +
drivers/gpu/drm/xe/xe_device.c | 19 +-
drivers/gpu/drm/xe/xe_device.h | 15 +
drivers/gpu/drm/xe/xe_device_types.h | 6 +
drivers/gpu/drm/xe/xe_gt.c | 14 +-
drivers/gpu/drm/xe/xe_guc_submit.c | 9 +-
drivers/gpu/drm/xe/xe_pci.c | 10 +
drivers/gpu/drm/xe/xe_pci_error.c | 138 +++++
drivers/gpu/drm/xe/xe_ras.c | 567 ++++++++++++++++++
drivers/gpu/drm/xe/xe_ras.h | 5 +-
drivers/gpu/drm/xe/xe_ras_types.h | 215 +++++++
drivers/gpu/drm/xe/xe_survivability_mode.c | 13 +-
drivers/gpu/drm/xe/xe_sysctrl_event.c | 2 +-
drivers/gpu/drm/xe/xe_sysctrl_event_types.h | 2 +-
drivers/gpu/drm/xe/xe_sysctrl_mailbox_types.h | 11 +
include/drm/drm_device.h | 1 +
18 files changed, 1069 insertions(+), 21 deletions(-)
create mode 100644 drivers/gpu/drm/xe/xe_pci_error.c
--
2.34.1
^ permalink raw reply [flat|nested] 15+ messages in thread* [PATCH v6 1/5] Introduce Xe Uncorrectable Error Handling 2026-05-20 11:33 [PATCH v6 0/5] Introduce cold reset recovery method Mallesh Koujalagi @ 2026-05-20 11:33 ` Mallesh Koujalagi 2026-05-20 11:33 ` [PATCH v6 2/5] drm: Add DRM_WEDGE_RECOVERY_COLD_RESET recovery method Mallesh Koujalagi ` (11 subsequent siblings) 12 siblings, 0 replies; 15+ messages in thread From: Mallesh Koujalagi @ 2026-05-20 11:33 UTC (permalink / raw) To: intel-xe, dri-devel, rodrigo.vivi Cc: andrealmeid, christian.koenig, airlied, simona.vetter, mripard, maarten.lankhorst, tzimmermann, anshuman.gupta, badal.nilawar, riana.tauro, karthik.poosa, sk.anirban, raag.jadav, Mallesh Koujalagi From: Riana Tauro <riana.tauro@intel.com> DO NOT REVIEW. COMPILATION ONLY This patch is from https://patchwork.freedesktop.org/series/160482/ Added only for Compilation. Signed-off-by: Riana Tauro <riana.tauro@intel.com> Signed-off-by: Mallesh Koujalagi <mallesh.koujalagi@intel.com> --- drivers/gpu/drm/xe/Makefile | 1 + drivers/gpu/drm/xe/xe_device.c | 19 +- drivers/gpu/drm/xe/xe_device.h | 15 + drivers/gpu/drm/xe/xe_device_types.h | 6 + drivers/gpu/drm/xe/xe_gt.c | 14 +- drivers/gpu/drm/xe/xe_guc_submit.c | 9 +- drivers/gpu/drm/xe/xe_pci.c | 10 + drivers/gpu/drm/xe/xe_pci_error.c | 138 +++++ drivers/gpu/drm/xe/xe_ras.c | 493 ++++++++++++++++++ drivers/gpu/drm/xe/xe_ras.h | 5 +- drivers/gpu/drm/xe/xe_ras_types.h | 215 ++++++++ drivers/gpu/drm/xe/xe_survivability_mode.c | 13 +- drivers/gpu/drm/xe/xe_sysctrl_event.c | 2 +- drivers/gpu/drm/xe/xe_sysctrl_event_types.h | 2 +- drivers/gpu/drm/xe/xe_sysctrl_mailbox_types.h | 11 + 15 files changed, 933 insertions(+), 20 deletions(-) create mode 100644 drivers/gpu/drm/xe/xe_pci_error.c diff --git a/drivers/gpu/drm/xe/Makefile b/drivers/gpu/drm/xe/Makefile index 09661f079d03..091872771e98 100644 --- a/drivers/gpu/drm/xe/Makefile +++ b/drivers/gpu/drm/xe/Makefile @@ -101,6 +101,7 @@ xe-y += xe_bb.o \ xe_page_reclaim.o \ xe_pat.o \ xe_pci.o \ + xe_pci_error.o \ xe_pci_rebar.o \ xe_pcode.o \ xe_pm.o \ diff --git a/drivers/gpu/drm/xe/xe_device.c b/drivers/gpu/drm/xe/xe_device.c index 576095cf0952..5a852e353258 100644 --- a/drivers/gpu/drm/xe/xe_device.c +++ b/drivers/gpu/drm/xe/xe_device.c @@ -61,6 +61,7 @@ #include "xe_psmi.h" #include "xe_pxp.h" #include "xe_query.h" +#include "xe_ras.h" #include "xe_shrinker.h" #include "xe_soc_remapper.h" #include "xe_survivability_mode.h" @@ -963,6 +964,16 @@ int xe_device_probe(struct xe_device *xe) if (err) return err; + err = xe_soc_remapper_init(xe); + if (err) + return err; + + err = xe_sysctrl_init(xe); + if (err) + return err; + + xe_ras_init(xe); + /* * Now that GT is initialized (TTM in particular), * we can try to init display, and inherit the initial fb. @@ -1003,10 +1014,6 @@ int xe_device_probe(struct xe_device *xe) xe_nvm_init(xe); - err = xe_soc_remapper_init(xe); - if (err) - return err; - err = xe_heci_gsc_init(xe); if (err) return err; @@ -1045,10 +1052,6 @@ int xe_device_probe(struct xe_device *xe) if (err) goto err_unregister_display; - err = xe_sysctrl_init(xe); - if (err) - goto err_unregister_display; - err = xe_device_sysfs_init(xe); if (err) goto err_unregister_display; diff --git a/drivers/gpu/drm/xe/xe_device.h b/drivers/gpu/drm/xe/xe_device.h index 355d69dc8f54..765e90f4220f 100644 --- a/drivers/gpu/drm/xe/xe_device.h +++ b/drivers/gpu/drm/xe/xe_device.h @@ -181,6 +181,21 @@ static inline bool xe_device_has_mert(const struct xe_device *xe) return xe->info.has_mert; } +static inline bool xe_device_is_in_reset(struct xe_device *xe) +{ + return atomic_read(&xe->in_reset); +} + +static inline void xe_device_set_in_reset(struct xe_device *xe) +{ + atomic_set(&xe->in_reset, 1); +} + +static inline void xe_device_clear_in_reset(struct xe_device *xe) +{ + atomic_set(&xe->in_reset, 0); +} + u32 xe_device_ccs_bytes(struct xe_device *xe, u64 size); void xe_device_snapshot_print(struct xe_device *xe, struct drm_printer *p); diff --git a/drivers/gpu/drm/xe/xe_device_types.h b/drivers/gpu/drm/xe/xe_device_types.h index 32dd2ffbc796..f64e1a149cee 100644 --- a/drivers/gpu/drm/xe/xe_device_types.h +++ b/drivers/gpu/drm/xe/xe_device_types.h @@ -483,6 +483,9 @@ struct xe_device { /** @needs_flr_on_fini: requests function-reset on fini */ bool needs_flr_on_fini; + /** @in_reset: Indicates if device is in reset */ + atomic_t in_reset; + /** @wedged: Struct to control Wedged States and mode */ struct { /** @wedged.flag: Xe device faced a critical error and is now blocked. */ @@ -495,6 +498,9 @@ struct xe_device { bool inconsistent_reset; } wedged; + /** @devres_group_id: id for devres group */ + void *devres_group_id; + /** @bo_device: Struct to control async free of BOs */ struct xe_bo_dev { /** @bo_device.async_free: Free worker */ diff --git a/drivers/gpu/drm/xe/xe_gt.c b/drivers/gpu/drm/xe/xe_gt.c index 783eb6d631b5..c117f6cf5e3e 100644 --- a/drivers/gpu/drm/xe/xe_gt.c +++ b/drivers/gpu/drm/xe/xe_gt.c @@ -917,6 +917,9 @@ static void gt_reset_worker(struct work_struct *w) if (xe_device_wedged(gt_to_xe(gt))) goto err_pm_put; + if (xe_device_is_in_reset(gt_to_xe(gt))) + goto err_pm_put; + /* We only support GT resets with GuC submission */ if (!xe_device_uc_enabled(gt_to_xe(gt))) goto err_pm_put; @@ -977,18 +980,23 @@ static void gt_reset_worker(struct work_struct *w) void xe_gt_reset_async(struct xe_gt *gt) { - xe_gt_info(gt, "trying reset from %ps\n", __builtin_return_address(0)); + struct xe_device *xe = gt_to_xe(gt); + + if (xe_device_is_in_reset(xe)) + return; /* Don't do a reset while one is already in flight */ if (!xe_fault_inject_gt_reset() && xe_uc_reset_prepare(>->uc)) return; + xe_gt_info(gt, "trying reset from %ps\n", __builtin_return_address(0)); + xe_gt_info(gt, "reset queued\n"); /* Pair with put in gt_reset_worker() if work is enqueued */ - xe_pm_runtime_get_noresume(gt_to_xe(gt)); + xe_pm_runtime_get_noresume(xe); if (!queue_work(gt->ordered_wq, >->reset.worker)) - xe_pm_runtime_put(gt_to_xe(gt)); + xe_pm_runtime_put(xe); } void xe_gt_suspend_prepare(struct xe_gt *gt) diff --git a/drivers/gpu/drm/xe/xe_guc_submit.c b/drivers/gpu/drm/xe/xe_guc_submit.c index afd8cc7bd231..f21a1f709c4a 100644 --- a/drivers/gpu/drm/xe/xe_guc_submit.c +++ b/drivers/gpu/drm/xe/xe_guc_submit.c @@ -1514,7 +1514,7 @@ guc_exec_queue_timedout_job(struct drm_sched_job *drm_job) * If devcoredump not captured and GuC capture for the job is not ready * do manual capture first and decide later if we need to use it */ - if (!exec_queue_killed(q) && !xe->devcoredump.captured && + if (!xe_device_is_in_reset(xe) && !exec_queue_killed(q) && !xe->devcoredump.captured && !xe_guc_capture_get_matching_and_lock(q)) { /* take force wake before engine register manual capture */ CLASS(xe_force_wake, fw_ref)(gt_to_fw(q->gt), XE_FORCEWAKE_ALL); @@ -1536,8 +1536,8 @@ guc_exec_queue_timedout_job(struct drm_sched_job *drm_job) set_exec_queue_banned(q); /* Kick job / queue off hardware */ - if (!wedged && (exec_queue_enabled(primary) || - exec_queue_pending_disable(primary))) { + if (!xe_device_is_in_reset(xe) && !wedged && + (exec_queue_enabled(primary) || exec_queue_pending_disable(primary))) { int ret; if (exec_queue_reset(primary)) @@ -1605,7 +1605,8 @@ guc_exec_queue_timedout_job(struct drm_sched_job *drm_job) trace_xe_sched_job_timedout(job); - if (!exec_queue_killed(q)) + /* Do not access device if in reset */ + if (!xe_device_is_in_reset(xe) && !exec_queue_killed(q)) xe_devcoredump(q, job, "Timedout job - seqno=%u, lrc_seqno=%u, guc_id=%d, flags=0x%lx", xe_sched_job_seqno(job), xe_sched_job_lrc_seqno(job), diff --git a/drivers/gpu/drm/xe/xe_pci.c b/drivers/gpu/drm/xe/xe_pci.c index e2a1232c4fbf..b0b5f2fe7ba8 100644 --- a/drivers/gpu/drm/xe/xe_pci.c +++ b/drivers/gpu/drm/xe/xe_pci.c @@ -1063,6 +1063,7 @@ static int xe_pci_probe(struct pci_dev *pdev, const struct pci_device_id *ent) const struct xe_device_desc *desc = (const void *)ent->driver_data; const struct xe_subplatform_desc *subplatform_desc; struct xe_device *xe; + void *devres_id; int err; xe_configfs_check_device(pdev); @@ -1088,6 +1089,10 @@ static int xe_pci_probe(struct pci_dev *pdev, const struct pci_device_id *ent) if (xe_display_driver_probe_defer(pdev)) return -EPROBE_DEFER; + devres_id = devres_open_group(&pdev->dev, NULL, GFP_KERNEL); + if (!devres_id) + return -ENOMEM; + err = pcim_enable_device(pdev); if (err) return err; @@ -1096,6 +1101,8 @@ static int xe_pci_probe(struct pci_dev *pdev, const struct pci_device_id *ent) if (IS_ERR(xe)) return PTR_ERR(xe); + xe->devres_group_id = devres_id; + pci_set_drvdata(pdev, &xe->drm); xe_pm_assert_unbounded_bridge(xe); @@ -1331,6 +1338,8 @@ static const struct dev_pm_ops xe_pm_ops = { }; #endif +extern const struct pci_error_handlers xe_pci_error_handlers; + static struct pci_driver xe_pci_driver = { .name = DRIVER_NAME, .id_table = pciidlist, @@ -1338,6 +1347,7 @@ static struct pci_driver xe_pci_driver = { .remove = xe_pci_remove, .shutdown = xe_pci_shutdown, .sriov_configure = xe_pci_sriov_configure, + .err_handler = &xe_pci_error_handlers, #ifdef CONFIG_PM_SLEEP .driver.pm = &xe_pm_ops, #endif diff --git a/drivers/gpu/drm/xe/xe_pci_error.c b/drivers/gpu/drm/xe/xe_pci_error.c new file mode 100644 index 000000000000..8d62bcbcbbb6 --- /dev/null +++ b/drivers/gpu/drm/xe/xe_pci_error.c @@ -0,0 +1,138 @@ +// SPDX-License-Identifier: MIT +/* + * Copyright © 2026 Intel Corporation + */ +#include <linux/pci.h> + +#include <drm/drm_drv.h> + +#include "xe_device.h" +#include "xe_gt.h" +#include "xe_pci.h" +#include "xe_ras.h" +#include "xe_survivability_mode.h" +#include "xe_uc.h" + +static pci_ers_result_t ras_action_to_pci_result(enum xe_ras_recovery_action action) +{ + switch (action) { + case XE_RAS_RECOVERY_ACTION_RECOVERED: + return PCI_ERS_RESULT_RECOVERED; + case XE_RAS_RECOVERY_ACTION_RESET: + return PCI_ERS_RESULT_NEED_RESET; + case XE_RAS_RECOVERY_ACTION_DISCONNECT: + return PCI_ERS_RESULT_DISCONNECT; + default: + return PCI_ERS_RESULT_DISCONNECT; + } +} + +static void xe_pci_error_handling(struct pci_dev *pdev) +{ + struct xe_device *xe = pdev_to_xe_device(pdev); + struct xe_gt *gt; + u8 id; + + /* + * Wedge the device to prevent userspace access but don't send the event yet. + * Runtime PM ref is taken by PCI core for the duration of error handling. + */ + xe_device_set_in_reset(xe); + atomic_set(&xe->wedged.flag, 1); + + for_each_gt(gt, xe, id) + xe_gt_declare_wedged(gt); + + pci_disable_device(pdev); +} + +static pci_ers_result_t xe_pci_error_detected(struct pci_dev *pdev, pci_channel_state_t state) +{ + struct xe_device *xe = pdev_to_xe_device(pdev); + + dev_err(&pdev->dev, "Xe Pci error recovery: error detected state %d\n", state); + + if (state == pci_channel_io_perm_failure) + return PCI_ERS_RESULT_DISCONNECT; + + /* If the device is already wedged or in survivability mode, do not attempt recovery */ + if (xe_survivability_mode_is_boot_enabled(xe) || xe_device_wedged(xe)) + return PCI_ERS_RESULT_DISCONNECT; + + switch (state) { + case pci_channel_io_normal: + return PCI_ERS_RESULT_CAN_RECOVER; + case pci_channel_io_frozen: + xe_pci_error_handling(pdev); + return PCI_ERS_RESULT_NEED_RESET; + default: + dev_err(&pdev->dev, "Unknown state %d\n", state); + return PCI_ERS_RESULT_NEED_RESET; + } +} + +static pci_ers_result_t xe_pci_error_mmio_enabled(struct pci_dev *pdev) +{ + struct xe_device *xe = pdev_to_xe_device(pdev); + enum xe_ras_recovery_action action; + + dev_err(&pdev->dev, "Xe Pci error recovery: MMIO enabled\n"); + + action = xe_ras_process_errors(xe); + + return ras_action_to_pci_result(action); +} + +static pci_ers_result_t xe_pci_error_slot_reset(struct pci_dev *pdev) +{ + const struct pci_device_id *ent = pci_match_id(pdev->driver->id_table, pdev); + struct xe_device *xe = pdev_to_xe_device(pdev); + + dev_err(&pdev->dev, "Xe Pci error recovery: Slot reset\n"); + + pci_restore_state(pdev); + + if (pci_enable_device(pdev)) { + dev_err(&pdev->dev, + "Cannot re-enable PCI device after reset\n"); + return PCI_ERS_RESULT_DISCONNECT; + } + + /* + * Secondary Bus Reset causes all VRAM state to be lost along with + * hardware state. As an initial step, re-probe the device to + * re-initialize the driver and hardware. + * TODO: optimize by re-initializing only the hardware state and re-creating + * kernel BOs. + */ + xe_device_clear_in_reset(xe); + pdev->driver->remove(pdev); + devres_release_group(&pdev->dev, xe->devres_group_id); + + if (pdev->driver->probe(pdev, ent)) + return PCI_ERS_RESULT_DISCONNECT; + + xe = pdev_to_xe_device(pdev); + + /* Wedge the device to prevent I/O operations till the resume callback */ + atomic_set(&xe->wedged.flag, 1); + + return PCI_ERS_RESULT_RECOVERED; +} + +static void xe_pci_error_resume(struct pci_dev *pdev) +{ + struct xe_device *xe = pdev_to_xe_device(pdev); + + dev_info(&pdev->dev, "Xe Pci error recovery: Recovered\n"); + + /* Resume I/O operations */ + atomic_set(&xe->wedged.flag, 0); +} + +const struct pci_error_handlers xe_pci_error_handlers = { + .error_detected = xe_pci_error_detected, + .mmio_enabled = xe_pci_error_mmio_enabled, + .slot_reset = xe_pci_error_slot_reset, + .resume = xe_pci_error_resume, +}; diff --git a/drivers/gpu/drm/xe/xe_ras.c b/drivers/gpu/drm/xe/xe_ras.c index 4cb16b419b0c..d79f8a6589ac 100644 --- a/drivers/gpu/drm/xe/xe_ras.c +++ b/drivers/gpu/drm/xe/xe_ras.c @@ -3,12 +3,18 @@ * Copyright © 2026 Intel Corporation */ +#include "xe_bo.h" #include "xe_device.h" #include "xe_printk.h" #include "xe_ras.h" #include "xe_ras_types.h" #include "xe_sysctrl.h" #include "xe_sysctrl_event_types.h" +#include "xe_sysctrl_mailbox.h" +#include "xe_sysctrl_mailbox_types.h" + +#define CORE_COMPUTE_UNCORR_TYPE GENMASK(26, 25) +#define GLOBAL_UNCORR_ERROR 2 /* Severity of detected errors */ enum xe_ras_severity { @@ -31,12 +37,25 @@ enum xe_ras_component { XE_RAS_COMP_MAX }; +static const int ras_status_to_errno_map[] = { + [XE_RAS_STATUS_SUCCESS] = 0, + [XE_RAS_STATUS_INVALID_PARAM] = -EINVAL, + [XE_RAS_STATUS_OP_NOT_SUPPORTED] = -EOPNOTSUPP, + [XE_RAS_STATUS_TIMEOUT] = -ETIMEDOUT, + [XE_RAS_STATUS_HARDWARE_FAILURE] = -EIO, + [XE_RAS_STATUS_INSUFFICIENT_RESOURCES] = -ENAVAIL, + [XE_RAS_STATUS_UNKNOWN_ERROR] = -ENODATA +}; + +static_assert(ARRAY_SIZE(ras_status_to_errno_map) == XE_RAS_STATUS_UNKNOWN_ERROR + 1); + static const char *const xe_ras_severities[] = { [XE_RAS_SEV_NOT_SUPPORTED] = "Not Supported", [XE_RAS_SEV_CORRECTABLE] = "Correctable Error", [XE_RAS_SEV_UNCORRECTABLE] = "Uncorrectable Error", [XE_RAS_SEV_INFORMATIONAL] = "Informational Error", }; + static_assert(ARRAY_SIZE(xe_ras_severities) == XE_RAS_SEV_MAX); static const char *const xe_ras_components[] = { @@ -48,6 +67,7 @@ static const char *const xe_ras_components[] = { [XE_RAS_COMP_FABRIC] = "Fabric", [XE_RAS_COMP_SOC_INTERNAL] = "SoC Internal", }; + static_assert(ARRAY_SIZE(xe_ras_components) == XE_RAS_COMP_MAX); static inline const char *sev_to_str(u8 severity) @@ -66,6 +86,296 @@ static inline const char *comp_to_str(u8 component) return xe_ras_components[component]; } +static int ras_status_to_errno(enum xe_ras_response_status status) +{ + if (status > XE_RAS_STATUS_UNKNOWN_ERROR) + status = XE_RAS_STATUS_UNKNOWN_ERROR; + + return ras_status_to_errno_map[status]; +} + +static void prepare_ras_command(struct xe_sysctrl_mailbox_command *command, + u32 cmd_mask, void *request, size_t request_len, + void *response, size_t response_len) +{ + struct xe_sysctrl_app_msg_hdr hdr = {0}; + + hdr.data = FIELD_PREP(APP_HDR_GROUP_ID_MASK, XE_SYSCTRL_GROUP_GFSP) | + FIELD_PREP(APP_HDR_COMMAND_MASK, cmd_mask); + + command->header = hdr; + command->data_in = request; + command->data_in_len = request_len; + command->data_out = response; + command->data_out_len = response_len; +} + +static int send_page_offline(struct xe_device *xe, enum xe_ras_page_action action, u64 page_address) +{ + struct xe_sysctrl_mailbox_command command = {0}; + struct xe_ras_page_offline_request request = {0}; + struct xe_ras_page_offline_response response = {0}; + size_t rlen; + int ret; + + if (!xe->info.has_sysctrl) + return 0; + + if (action >= XE_RAS_PAGE_ACTION_MAX) { + xe_err(xe, "[RAS]: Invalid page offline action %d\n", action); + return -EINVAL; + } + + request.page_address = page_address; + request.action = action; + + prepare_ras_command(&command, XE_SYSCTRL_CMD_PAGE_OFFLINE, &request, + sizeof(request), &response, sizeof(response)); + + ret = xe_sysctrl_send_command(&xe->sc, &command, &rlen); + if (ret) { + xe_err(xe, "sysctrl: failed to send page offline command %d\n", ret); + return ret; + } + + if (rlen != sizeof(response)) { + xe_err(xe, "sysctrl: unexpected page offline response length %zu (expected %zu)\n", + rlen, sizeof(response)); + return -EINVAL; + } + + ret = ras_status_to_errno(response.status); + if (ret) + xe_err(xe, "sysctrl: page offline command failed with status %d\n", + response.status); + + return ret; +} + +static int handle_page_offline(struct xe_device *xe, u64 page_address, bool send_offline_cmd) +{ + enum xe_ras_page_action action; + int ret; + + if (!IS_ALIGNED(page_address, XE_PAGE_SIZE)) { + xe_err(xe, "sysctrl: Unaligned page address: 0x%llx\n", page_address); + return -EINVAL; + } + + /* + * TODO: Call function to handle address fault + * ret = xe_ttm_vram_handle_addr_fault(xe, page_address); + */ + + /* + * Handle return code from address fault handling function: + * 0: Address is valid and can be offlined + * -EIO: Address belongs to a critical BO that cannot be offlined + * -ENXIO: Invalid address + * -EOPNOTSUPP: Address is valid and can be offlined but user policy is not to offline + * + * For any other non-zero error code, skip offlining. + */ + + switch (ret) { + case 0: + action = XE_RAS_PAGE_ACTION_OFFLINE; + break; + /* User policy set to decline page offlining */ + case -EOPNOTSUPP: + action = XE_RAS_PAGE_ACTION_DECLINE; + break; + case -EIO: + xe_err(xe, "[RAS]: Page address belongs to critical BO: 0x%llx\n", + page_address); + return ret; + default: + xe_err(xe, "[RAS]: Failed to handle address fault 0x%llx: %d\n", + page_address, ret); + return 0; + } + + if (send_offline_cmd) { + ret = send_page_offline(xe, action, page_address); + if (ret) + xe_err(xe, "sysctrl: Failed to offline page for address 0x%llx: %d\n", + page_address, ret); + return ret; + } + + return 0; +} + +static enum xe_ras_recovery_action handle_core_compute_errors(struct xe_device *xe, + struct xe_ras_error_array *arr) +{ + struct xe_ras_compute_error *error_info = (struct xe_ras_compute_error *)arr->error_details; + u8 uncorr_type; + + uncorr_type = FIELD_GET(CORE_COMPUTE_UNCORR_TYPE, error_info->error_log_header); + + /* Request a reset if error is global */ + if (uncorr_type == GLOBAL_UNCORR_ERROR) + return XE_RAS_RECOVERY_ACTION_RESET; + + /* Local errors are recovered using an engine reset by GuC */ + return XE_RAS_RECOVERY_ACTION_RECOVERED; +} + +static enum xe_ras_recovery_action handle_soc_internal_errors(struct xe_device *xe, + struct xe_ras_error_array *arr) +{ + struct xe_ras_soc_error *error_info = (struct xe_ras_soc_error *)arr->error_details; + struct xe_ras_soc_error_source *source = &error_info->error_source; + struct xe_ras_error_class *error_class = &arr->error_class; + u8 tile_id = error_class->product.unit.tile; + struct xe_tile *tile; + + if (tile_id >= xe->info.tile_count) { + xe_err(xe, "sysctrl: SOC internal error reported from invalid tile %u\n", tile_id); + return XE_RAS_RECOVERY_ACTION_RESET; + } + + tile = &xe->tiles[tile_id]; + + if (source->csc) { + struct xe_ras_csc_error *csc_error = + (struct xe_ras_csc_error *)error_info->additional_details; + + /* + * CSC uncorrectable errors are classified as hardware errors and firmware errors. + * CSC firmware errors are critical errors that can be recovered only by firmware + * update via SPI driver. On a CSC firmware error, PCODE enables FDO mode and sets + * the bit in the capability register. On receiving this error, the driver enables + * runtime survivability mode which notifies userspace that a firmware update + * is required. + */ + if (csc_error->hec_uncorr_fw_err_dw0) { + xe_err(xe, "[RAS]: CSC %s detected: 0x%x\n", + sev_to_str(error_class->common.severity), + csc_error->hec_uncorr_fw_err_dw0); + schedule_work(&tile->csc_hw_error_work); + return XE_RAS_RECOVERY_ACTION_DISCONNECT; + } + } else if (source->ieh) { + struct xe_ras_ieh_error *ieh_error = + (struct xe_ras_ieh_error *)error_info->additional_details; + + if (ieh_error->global_error_status & XE_RAS_SOC_IEH_PUNIT) { + xe_err(xe, "[RAS]: PUNIT %s detected: 0x%x\n", + sev_to_str(error_class->common.severity), + ieh_error->global_error_status); + /* TODO: Add PUNIT error handling */ + return XE_RAS_RECOVERY_ACTION_DISCONNECT; + } + } + + /* For other SOC internal errors, request a reset as recovery mechanism */ + return XE_RAS_RECOVERY_ACTION_RESET; +} + +static enum xe_ras_recovery_action handle_device_memory_errors(struct xe_device *xe, + struct xe_ras_error_array *arr) +{ + struct xe_ras_memory_error *error_info = (struct xe_ras_memory_error *)arr->error_details; + int ret; + + if (error_info->category & XE_RAS_MEMORY_ECC) { + xe_err(xe, "[RAS]: double-bit ECC error detected at sw address 0x%llx\n", + error_info->sw_address); + ret = handle_page_offline(xe, error_info->sw_address, true); + if (!ret) + return XE_RAS_RECOVERY_ACTION_RECOVERED; + } + + /* Request a reset for other device memory errors and if page offlining failed */ + return XE_RAS_RECOVERY_ACTION_RESET; +} + +static void get_queued_pages(struct xe_device *xe) +{ + struct xe_sysctrl_mailbox_command command = {0}; + struct xe_ras_page_offline_queue response = {0}; + u32 count = 0; + size_t rlen; + int ret, i; + + /* Supported only on platforms with system controller */ + if (!xe->info.has_sysctrl) + return; + + prepare_ras_command(&command, XE_SYSCTRL_CMD_GET_OFFLINE_QUEUE, NULL, 0, + &response, sizeof(response)); + + do { + memset(&response, 0, sizeof(response)); + + ret = xe_sysctrl_send_command(&xe->sc, &command, &rlen); + if (ret) { + xe_err(xe, "sysctrl: failed to get page offline queue %d\n", ret); + return; + } + + if (rlen != sizeof(response)) { + xe_err(xe, "sysctrl: unexpected page offline queue response length %zu (expected %zu)\n", + rlen, sizeof(response)); + return; + } + + for (i = 0; i < response.pages_returned && i < XE_RAS_NUM_PAGES; i++) + handle_page_offline(xe, response.page_addresses[i], true); + + count += response.pages_returned; + if (count > response.total_pages) { + xe_err(xe, "sysctrl: Pages returned from queue exceed total pages %u, returned %u\n", + response.total_pages, count); + return; + } + } while (response.additional_data); +} + +static void get_offlined_list(struct xe_device *xe) +{ + struct xe_sysctrl_mailbox_command command = {0}; + struct xe_ras_page_offline_list response = {0}; + u32 count = 0; + size_t rlen; + int ret, i; + + /* Supported only on platforms with system controller */ + if (!xe->info.has_sysctrl) + return; + + prepare_ras_command(&command, XE_SYSCTRL_CMD_GET_OFFLINE_LIST, NULL, 0, + &response, sizeof(response)); + + do { + memset(&response, 0, sizeof(response)); + + ret = xe_sysctrl_send_command(&xe->sc, &command, &rlen); + if (ret) { + xe_err(xe, "sysctrl: failed to get page offline list %d\n", ret); + return; + } + + if (rlen != sizeof(response)) { + xe_err(xe, "sysctrl: unexpected page offline list response length %zu (expected %zu)\n", + rlen, sizeof(response)); + return; + } + + for (i = 0; i < response.pages_returned && i < XE_RAS_NUM_PAGES; i++) + handle_page_offline(xe, response.page_addresses[i], false); + + count += response.pages_returned; + if (count > response.total_pages) { + xe_err(xe, "sysctrl: Pages returned from list exceed total pages %u, returned %u\n", + response.total_pages, count); + return; + } + } while (response.additional_data); +} + void xe_ras_counter_threshold_crossed(struct xe_device *xe, struct xe_sysctrl_event_response *response) { @@ -91,3 +401,186 @@ void xe_ras_counter_threshold_crossed(struct xe_device *xe, comp_to_str(component), sev_to_str(severity)); } } + +/** + * xe_ras_process_errors() - Process and contain hardware errors + * @xe: xe device instance + * + * Get error details from system controller and return recovery + * method. Called only from PCI error handling. + * + * Returns: recovery action to be taken + */ +enum xe_ras_recovery_action xe_ras_process_errors(struct xe_device *xe) +{ + struct xe_sysctrl_mailbox_command command = {0}; + struct xe_ras_get_soc_error response; + enum xe_ras_recovery_action final_action; + u32 count = XE_SYSCTRL_FLOOD; + size_t rlen; + int ret; + + if (!xe->info.has_sysctrl) + return XE_RAS_RECOVERY_ACTION_RESET; + + /* Default action */ + final_action = XE_RAS_RECOVERY_ACTION_RECOVERED; + + prepare_ras_command(&command, XE_SYSCTRL_CMD_GET_SOC_ERROR, NULL, 0, + &response, sizeof(response)); + + do { + memset(&response, 0, sizeof(response)); + + ret = xe_sysctrl_send_command(&xe->sc, &command, &rlen); + if (ret) { + xe_err(xe, "sysctrl: failed to get soc error %d\n", ret); + goto err; + } + + if (rlen != sizeof(response)) { + xe_err(xe, "sysctrl: unexpected get soc error response length %zu (expected %zu)\n", + rlen, sizeof(response)); + goto err; + } + + /* Report if number of errors exceeds the maximum errors supported */ + if (response.num_errors > XE_RAS_NUM_ERROR_ARR) + xe_err(xe, "sysctrl: number of errors received %d out of bound (%d)\n", + response.num_errors, XE_RAS_NUM_ERROR_ARR); + + for (int i = 0; i < response.num_errors && i < XE_RAS_NUM_ERROR_ARR; i++) { + struct xe_ras_error_array *arr = &response.error_arr[i]; + enum xe_ras_recovery_action action; + struct xe_ras_error_class error_class; + u8 component, severity; + + error_class = arr->error_class; + component = error_class.common.component; + severity = error_class.common.severity; + + xe_err(xe, "[RAS]: %s %s detected\n", comp_to_str(component), + sev_to_str(severity)); + + switch (component) { + case XE_RAS_COMP_CORE_COMPUTE: + action = handle_core_compute_errors(xe, arr); + break; + case XE_RAS_COMP_SOC_INTERNAL: + action = handle_soc_internal_errors(xe, arr); + break; + case XE_RAS_COMP_DEVICE_MEMORY: + action = handle_device_memory_errors(xe, arr); + break; + default: + /* For any other component, reset */ + action = XE_RAS_RECOVERY_ACTION_RESET; + break; + } + + /* Process and log all errors and then trigger highest recovery action */ + if (action > final_action) + final_action = action; + } + + /* Treat flooding as an system controller error */ + if (!--count) { + xe_err(xe, "[RAS]: sysctrl: get soc error response flooding\n"); + return XE_RAS_RECOVERY_ACTION_RESET; + } + + } while (response.additional_errors); + + return final_action; + +err: + return XE_RAS_RECOVERY_ACTION_RESET; +} + +#ifdef CONFIG_PCIEAER +static void aer_unmask_and_downgrade_internal_error(struct xe_device *xe) +{ + struct pci_dev *pdev = to_pci_dev(xe->drm.dev); + struct pci_dev *vsp, *usp; + u32 aer_uncorr_mask, aer_uncorr_sev, aer_uncorr_status; + u16 aer_cap; + + /* + * Device Hierarchy: + * + * Upstream Switch Port (USP)--> Virtual Switch Port (VSP)--> SGunit (GPU endpoint) + */ + vsp = pci_upstream_bridge(pdev); + if (!vsp) + return; + + usp = pci_upstream_bridge(vsp); + if (!usp) + return; + + aer_cap = usp->aer_cap; + + if (!aer_cap) { + dev_info(&usp->dev, "USP doesn't support AER capability\n"); + return; + } + + /* + * Clear any stale Uncorrectable Internal Error Status event in Uncorrectable Error + * Status Register. + */ + pci_read_config_dword(usp, aer_cap + PCI_ERR_UNCOR_STATUS, &aer_uncorr_status); + if (aer_uncorr_status & PCI_ERR_UNC_INTN) + pci_write_config_dword(usp, aer_cap + PCI_ERR_UNCOR_STATUS, PCI_ERR_UNC_INTN); + + /* + * All errors are steered to USP which is a PCIe AER Compliant device. + * Downgrade all the errors to non-fatal to prevent PCIe bus driver + * from triggering a Secondary Bus Reset (SBR). This allows error + * detection, containment and recovery in the driver. + * + * The Uncorrectable Error Severity Register has the 'Uncorrectable + * Internal Error Severity' set to fatal by default. Set this to + * non-fatal and unmask the error. + */ + + /* Initialize Uncorrectable Error Severity Register */ + pci_read_config_dword(usp, aer_cap + PCI_ERR_UNCOR_SEVER, &aer_uncorr_sev); + aer_uncorr_sev &= ~PCI_ERR_UNC_INTN; + pci_write_config_dword(usp, aer_cap + PCI_ERR_UNCOR_SEVER, aer_uncorr_sev); + + /* Initialize Uncorrectable Error Mask Register */ + pci_read_config_dword(usp, aer_cap + PCI_ERR_UNCOR_MASK, &aer_uncorr_mask); + aer_uncorr_mask &= ~PCI_ERR_UNC_INTN; + pci_write_config_dword(usp, aer_cap + PCI_ERR_UNCOR_MASK, aer_uncorr_mask); + + pci_save_state(usp); + dev_dbg(&usp->dev, "Uncorrectable Internal Errors downgraded and unmasked\n"); +} +#endif + +/** + * xe_ras_init - Initialize Xe RAS + * @xe: xe device instance + * + * Initialize Xe RAS + */ +void xe_ras_init(struct xe_device *xe) +{ + if (!xe->info.has_sysctrl || IS_SRIOV_VF(xe)) + return; + +#ifdef CONFIG_PCIEAER + aer_unmask_and_downgrade_internal_error(xe); +#endif + + get_queued_pages(xe); + get_offlined_list(xe); + + /* + * On init, process and log any errors detected by firmware before driver load. + * Critical errors such as Punit, CSC are reported through PCode init failure, + * causing the driver to enter survivability mode. + */ + xe_ras_process_errors(xe); +} diff --git a/drivers/gpu/drm/xe/xe_ras.h b/drivers/gpu/drm/xe/xe_ras.h index ea90593b62dc..cdaad3114dae 100644 --- a/drivers/gpu/drm/xe/xe_ras.h +++ b/drivers/gpu/drm/xe/xe_ras.h @@ -6,10 +6,13 @@ #ifndef _XE_RAS_H_ #define _XE_RAS_H_ +#include "xe_ras_types.h" + struct xe_device; struct xe_sysctrl_event_response; void xe_ras_counter_threshold_crossed(struct xe_device *xe, struct xe_sysctrl_event_response *response); - +void xe_ras_init(struct xe_device *xe); +enum xe_ras_recovery_action xe_ras_process_errors(struct xe_device *xe); #endif diff --git a/drivers/gpu/drm/xe/xe_ras_types.h b/drivers/gpu/drm/xe/xe_ras_types.h index 4e63c67f806a..3ec64b4f5a17 100644 --- a/drivers/gpu/drm/xe/xe_ras_types.h +++ b/drivers/gpu/drm/xe/xe_ras_types.h @@ -8,7 +8,63 @@ #include <linux/types.h> +#define XE_RAS_NUM_ERROR_ARR 3 #define XE_RAS_NUM_COUNTERS 16 +#define XE_RAS_SOC_IEH_PUNIT BIT(1) +#define XE_RAS_MEMORY_ECC BIT(1) +#define XE_RAS_NUM_PAGES 25 + +/** + * enum xe_ras_recovery_action - RAS recovery actions + * + * @XE_RAS_RECOVERY_ACTION_RECOVERED: Error recovered + * @XE_RAS_RECOVERY_ACTION_RESET: Requires reset + * @XE_RAS_RECOVERY_ACTION_DISCONNECT: Requires disconnect + * @XE_RAS_RECOVERY_ACTION_MAX: Max action value + * + * This enum defines the possible recovery actions that can be taken in response + * to RAS errors. + */ +enum xe_ras_recovery_action { + XE_RAS_RECOVERY_ACTION_RECOVERED = 0, + XE_RAS_RECOVERY_ACTION_RESET, + XE_RAS_RECOVERY_ACTION_DISCONNECT, + XE_RAS_RECOVERY_ACTION_MAX +}; + +/** + * enum xe_ras_page_action - Page offline actions for page offline request + * + * @XE_RAS_PAGE_ACTION_OFFLINE: Instruct firmware to remove page from queue + * @XE_RAS_PAGE_ACTION_DECLINE: Instruct firmware to mark page as not offline + * @XE_RAS_PAGE_ACTION_MAX: Max value for validation + */ +enum xe_ras_page_action { + XE_RAS_PAGE_ACTION_OFFLINE, + XE_RAS_PAGE_ACTION_DECLINE, + XE_RAS_PAGE_ACTION_MAX +}; + +/** + * enum xe_ras_response_status - RAS response status codes + * + * @XE_RAS_STATUS_SUCCESS: Operation successful + * @XE_RAS_STATUS_INVALID_PARAM: Invalid parameter + * @XE_RAS_STATUS_OP_NOT_SUPPORTED: Operation not supported + * @XE_RAS_STATUS_TIMEOUT: Operation timed out + * @XE_RAS_STATUS_HARDWARE_FAILURE: Hardware failure + * @XE_RAS_STATUS_INSUFFICIENT_RESOURCES: Insufficient resources + * @XE_RAS_STATUS_UNKNOWN_ERROR: Unknown error + */ +enum xe_ras_response_status { + XE_RAS_STATUS_SUCCESS = 0, + XE_RAS_STATUS_INVALID_PARAM, + XE_RAS_STATUS_OP_NOT_SUPPORTED, + XE_RAS_STATUS_TIMEOUT, + XE_RAS_STATUS_HARDWARE_FAILURE, + XE_RAS_STATUS_INSUFFICIENT_RESOURCES, + XE_RAS_STATUS_UNKNOWN_ERROR +}; /** * struct xe_ras_error_common - Error fields that are common across all products @@ -70,4 +126,163 @@ struct xe_ras_threshold_crossed { struct xe_ras_error_class counters[XE_RAS_NUM_COUNTERS]; } __packed; +/** + * struct xe_ras_error_array - Details of the error types + */ +struct xe_ras_error_array { + /** @counter_value: Counter value of the returned error */ + u32 counter_value; + /** @error_class: Error class */ + struct xe_ras_error_class error_class; + /** @timestamp: Timestamp */ + u64 timestamp; + /** @error_details: Error details specific to the class */ + u32 error_details[XE_RAS_NUM_COUNTERS]; +} __packed; + +/** + * struct xe_ras_get_soc_error - Response from get soc error command + */ +struct xe_ras_get_soc_error { + /** @num_errors: Number of errors reported in this response */ + u8 num_errors; + /** @additional_errors: Indicates if the errors are pending */ + u8 additional_errors; + /** @error_arr: Array of up to 3 errors */ + struct xe_ras_error_array error_arr[XE_RAS_NUM_ERROR_ARR]; +} __packed; + +/** + * struct xe_ras_compute_error - Error details of Core Compute error + */ +struct xe_ras_compute_error { + /** @error_log_header: Error Source and type */ + u32 error_log_header; + /** @reserved: Reserved */ + u32 reserved[15]; +} __packed; + +/** + * struct xe_ras_soc_error_source - Source of SoC error + */ +struct xe_ras_soc_error_source { + /** @csc: CSC */ + u32 csc:1; + /** @ieh: IEH (Integrated Error Handler) */ + u32 ieh:1; + /** @reserved: Reserved for future use */ + u32 reserved:30; +} __packed; + +/** + * struct xe_ras_soc_error - Error details of SoC internal error + */ +struct xe_ras_soc_error { + /** @error_source: Error source */ + struct xe_ras_soc_error_source error_source; + /** @additional_details: Additional details */ + u32 additional_details[15]; +} __packed; + +/** + * struct xe_ras_csc_error - CSC error details + */ +struct xe_ras_csc_error { + /** @hec_uncorr_err_status: CSC hardware error status */ + u32 hec_uncorr_err_status; + /** @hec_uncorr_fw_err_dw0: CSC firmware error */ + u32 hec_uncorr_fw_err_dw0; +} __packed; + +/** + * struct xe_ras_ieh_error - SoC IEH (Integrated Error Handler) error details + */ +struct xe_ras_ieh_error { + /** @ieh_instance: IEH instance */ + u32 ieh_instance:2; + /** @reserved: Reserved for future use */ + u32 reserved:30; + /** @global_error_status: Global error status */ + u32 global_error_status; + /** @local_error_status: Local error status */ + u32 local_error_status; + /** @gerr_mask: Global error mask */ + u32 gerr_mask; + /** @additional_info: Additional information */ + u32 additional_info[10]; +} __packed; + +/** + * struct xe_ras_memory_error - Device memory error details + */ +struct xe_ras_memory_error { + /** @category: Device memory error category */ + u8 category; + /** @reserved: Reserved for future use */ + u8 reserved[7]; + /** @hardware_address: Hardware physical address details */ + u64 hardware_address; + /** @sw_address: Software address where error occurred */ + u64 sw_address; + /** @reserved2: Reserved for future use */ + u32 reserved2[10]; +} __packed; + +/** + * struct xe_ras_page_offline_list - Response from get offline list command + */ +struct xe_ras_page_offline_list { + /** @max_entries: Total no of pages that can be stored in flash */ + u32 max_entries; + /** @total_pages: Total number of permanently offlined pages */ + u32 total_pages; + /** @pages_returned: Number of pages returned in this response */ + u32 pages_returned; + /** @page_addresses: Array of permanently offlined page addresses (4KB aligned) */ + u64 page_addresses[XE_RAS_NUM_PAGES]; + /** @additional_data: Indicates if more data is available */ + u8 additional_data; + /** @reserved: Reserved for future use */ + u8 reserved[3]; +} __packed; + +/** + * struct xe_ras_page_offline_queue - Response from get offline queue command + */ +struct xe_ras_page_offline_queue { + /** @total_pages: Total number of queued pages */ + u32 total_pages; + /** @pages_returned: Number of pages returned in this response */ + u32 pages_returned; + /** @page_addresses: Array of page addresses (4KB aligned) */ + u64 page_addresses[XE_RAS_NUM_PAGES]; + /** @additional_data: Indicates if more data is available */ + u8 additional_data; + /** @reserved: Reserved for future use */ + u8 reserved[3]; +} __packed; + +/** + * struct xe_ras_page_offline_request - Request for page offline command + * + * This structure provides the request format to offline/decline a page + */ +struct xe_ras_page_offline_request { + /** @page_address: Page address (4KB aligned) */ + u64 page_address; + /** @action: Action to be performed, see &enum xe_ras_page_action */ + u32 action; + /** @reserved: Reserved for future use */ + u32 reserved; +} __packed; + +/** + * struct xe_ras_page_offline_response - Response from page offline command + */ +struct xe_ras_page_offline_response { + /** @status: Status of the page offline request, see &enum xe_ras_response_status */ + u32 status; + /** @reserved: Reserved for future use */ + u32 reserved; +} __packed; #endif diff --git a/drivers/gpu/drm/xe/xe_survivability_mode.c b/drivers/gpu/drm/xe/xe_survivability_mode.c index 427afd144f3a..4c506027fa94 100644 --- a/drivers/gpu/drm/xe/xe_survivability_mode.c +++ b/drivers/gpu/drm/xe/xe_survivability_mode.c @@ -54,7 +54,6 @@ * # cat /sys/bus/pci/devices/<device>/survivability_mode * Boot * - * * Any additional debug information if present will be visible under the directory * ``survivability_info``:: * @@ -98,6 +97,15 @@ * # cat /sys/bus/pci/devices/<device>/survivability_mode * Runtime * + * On some CSC firmware errors, PCODE sets FDO mode and the only recovery possible is through + * firmware flash using SPI driver. Userspace can check if FDO mode is set by checking the below + * sysfs entry. + * + * .. code-block:: shell + * + * # cat /sys/bus/pci/devices/<device>/survivability_info/fdo_mode + * enabled + * * When such errors occur, userspace is notified with the drm device wedged uevent and runtime * survivability mode. User can then initiate a firmware flash using userspace tools like fwupd * to restore device to normal operation. @@ -296,7 +304,8 @@ static int create_survivability_sysfs(struct pci_dev *pdev) if (ret) return ret; - if (check_boot_failure(xe)) { + /* Survivability info is not required if enabled via configfs */ + if (!xe_configfs_get_survivability_mode(pdev)) { ret = devm_device_add_group(dev, &survivability_info_group); if (ret) return ret; diff --git a/drivers/gpu/drm/xe/xe_sysctrl_event.c b/drivers/gpu/drm/xe/xe_sysctrl_event.c index b4d17329af6c..faf6ba89ce98 100644 --- a/drivers/gpu/drm/xe/xe_sysctrl_event.c +++ b/drivers/gpu/drm/xe/xe_sysctrl_event.c @@ -16,7 +16,7 @@ static void get_pending_event(struct xe_sysctrl *sc, struct xe_sysctrl_mailbox_c { struct xe_sysctrl_event_response *response = command->data_out; struct xe_device *xe = sc_to_xe(sc); - u32 count = XE_SYSCTRL_EVENT_FLOOD; + u32 count = XE_SYSCTRL_FLOOD; size_t len; int ret; diff --git a/drivers/gpu/drm/xe/xe_sysctrl_event_types.h b/drivers/gpu/drm/xe/xe_sysctrl_event_types.h index c16c66b9fa7f..d236e22fe9dd 100644 --- a/drivers/gpu/drm/xe/xe_sysctrl_event_types.h +++ b/drivers/gpu/drm/xe/xe_sysctrl_event_types.h @@ -11,7 +11,7 @@ #define XE_SYSCTRL_EVENT_DATA_LEN 59 /* Modify as needed */ -#define XE_SYSCTRL_EVENT_FLOOD 16 +#define XE_SYSCTRL_FLOOD 16 /** * enum xe_sysctrl_event - Events reported by System Controller diff --git a/drivers/gpu/drm/xe/xe_sysctrl_mailbox_types.h b/drivers/gpu/drm/xe/xe_sysctrl_mailbox_types.h index 84d7c647e743..12ffd011ee8e 100644 --- a/drivers/gpu/drm/xe/xe_sysctrl_mailbox_types.h +++ b/drivers/gpu/drm/xe/xe_sysctrl_mailbox_types.h @@ -22,10 +22,18 @@ enum xe_sysctrl_group { /** * enum xe_sysctrl_gfsp_cmd - Commands supported by GFSP group * + * @XE_SYSCTRL_CMD_GET_SOC_ERROR: Retrieve basic error information * @XE_SYSCTRL_CMD_GET_PENDING_EVENT: Retrieve pending event + * @XE_SYSCTRL_CMD_PAGE_OFFLINE: Instruct firmware to offline/decline a page + * @XE_SYSCTRL_CMD_GET_OFFLINE_LIST: Retrieve list of all offlined pages from flash + * @XE_SYSCTRL_CMD_GET_OFFLINE_QUEUE: Retrieve list of offlined queued pages from firmware */ enum xe_sysctrl_gfsp_cmd { + XE_SYSCTRL_CMD_GET_SOC_ERROR = 0x01, XE_SYSCTRL_CMD_GET_PENDING_EVENT = 0x07, + XE_SYSCTRL_CMD_PAGE_OFFLINE = 0x08, + XE_SYSCTRL_CMD_GET_OFFLINE_LIST = 0x09, + XE_SYSCTRL_CMD_GET_OFFLINE_QUEUE = 0x0A, }; /** @@ -48,6 +56,9 @@ struct xe_sysctrl_mailbox_command { size_t data_out_len; }; +/* Modify as needed */ +#define XE_SYSCTRL_FLOOD 16 + #define XE_SYSCTRL_MB_FRAME_SIZE 16 #define XE_SYSCTRL_MB_MAX_FRAMES 64 #define XE_SYSCTRL_MB_MAX_MESSAGE_SIZE \ -- 2.34.1 ^ permalink raw reply related [flat|nested] 15+ messages in thread
* [PATCH v6 2/5] drm: Add DRM_WEDGE_RECOVERY_COLD_RESET recovery method 2026-05-20 11:33 [PATCH v6 0/5] Introduce cold reset recovery method Mallesh Koujalagi 2026-05-20 11:33 ` [PATCH v6 1/5] Introduce Xe Uncorrectable Error Handling Mallesh Koujalagi @ 2026-05-20 11:33 ` Mallesh Koujalagi 2026-05-20 11:33 ` [PATCH v6 3/5] drm/doc: Document " Mallesh Koujalagi ` (10 subsequent siblings) 12 siblings, 0 replies; 15+ messages in thread From: Mallesh Koujalagi @ 2026-05-20 11:33 UTC (permalink / raw) To: intel-xe, dri-devel, rodrigo.vivi Cc: andrealmeid, christian.koenig, airlied, simona.vetter, mripard, maarten.lankhorst, tzimmermann, anshuman.gupta, badal.nilawar, riana.tauro, karthik.poosa, sk.anirban, raag.jadav, Mallesh Koujalagi Introduce DRM_WEDGE_RECOVERY_COLD_RESET (BIT(4)) recovery method to handle scenarios requiring device power cycle. This method addresses cases where other recovery mechanisms (driver reload, PCIe reset, etc.) are insufficient to restore device functionality. When set, it indicates to userspace that only device power cycle can recover the device from its current error state. Signed-off-by: Mallesh Koujalagi <mallesh.koujalagi@intel.com> Reviewed-by: Raag Jadav <raag.jadav@intel.com> --- v3: - Update any scenario that requires cold-reset. (Riana) v4: - Rename cold reset to power cyclce. (Raag) v5: - Make it consistent with consumer expectations. (Raag) v6: - Drop "last resort" wording. (Riana) --- drivers/gpu/drm/drm_drv.c | 2 ++ include/drm/drm_device.h | 1 + 2 files changed, 3 insertions(+) diff --git a/drivers/gpu/drm/drm_drv.c b/drivers/gpu/drm/drm_drv.c index 675675480da4..19c25366635e 100644 --- a/drivers/gpu/drm/drm_drv.c +++ b/drivers/gpu/drm/drm_drv.c @@ -535,6 +535,8 @@ static const char *drm_get_wedge_recovery(unsigned int opt) return "bus-reset"; case DRM_WEDGE_RECOVERY_VENDOR: return "vendor-specific"; + case DRM_WEDGE_RECOVERY_COLD_RESET: + return "cold-reset"; default: return NULL; } diff --git a/include/drm/drm_device.h b/include/drm/drm_device.h index 768a8dae83c5..75f030d027ee 100644 --- a/include/drm/drm_device.h +++ b/include/drm/drm_device.h @@ -37,6 +37,7 @@ struct pci_controller; #define DRM_WEDGE_RECOVERY_REBIND BIT(1) /* unbind + bind driver */ #define DRM_WEDGE_RECOVERY_BUS_RESET BIT(2) /* unbind + reset bus device + bind */ #define DRM_WEDGE_RECOVERY_VENDOR BIT(3) /* vendor specific recovery method */ +#define DRM_WEDGE_RECOVERY_COLD_RESET BIT(4) /* remove device + slot power cycle + rescan */ /** * struct drm_wedge_task_info - information about the guilty task of a wedge dev -- 2.34.1 ^ permalink raw reply related [flat|nested] 15+ messages in thread
* [PATCH v6 3/5] drm/doc: Document DRM_WEDGE_RECOVERY_COLD_RESET recovery method 2026-05-20 11:33 [PATCH v6 0/5] Introduce cold reset recovery method Mallesh Koujalagi 2026-05-20 11:33 ` [PATCH v6 1/5] Introduce Xe Uncorrectable Error Handling Mallesh Koujalagi 2026-05-20 11:33 ` [PATCH v6 2/5] drm: Add DRM_WEDGE_RECOVERY_COLD_RESET recovery method Mallesh Koujalagi @ 2026-05-20 11:33 ` Mallesh Koujalagi 2026-06-03 11:21 ` Raag Jadav 2026-05-20 11:33 ` [PATCH v6 4/5] drm/xe: Handle PUNIT errors by requesting cold-reset recovery Mallesh Koujalagi ` (9 subsequent siblings) 12 siblings, 1 reply; 15+ messages in thread From: Mallesh Koujalagi @ 2026-05-20 11:33 UTC (permalink / raw) To: intel-xe, dri-devel, rodrigo.vivi Cc: andrealmeid, christian.koenig, airlied, simona.vetter, mripard, maarten.lankhorst, tzimmermann, anshuman.gupta, badal.nilawar, riana.tauro, karthik.poosa, sk.anirban, raag.jadav, Mallesh Koujalagi When ``WEDGED=cold-reset`` is sent, it indicates that the device has encountered an error condition that cannot be resolved through other recovery methods such as driver rebind or bus reset, and requires a complete device power cycle to restore functionality. Signed-off-by: Mallesh Koujalagi <mallesh.koujalagi@intel.com> --- v2: - Add several instead of number to avoid update. (Jani) v3: - Update document with generic scenario. (Riana) - Consistent with terminology. (Raag) - Remove already covered information. v4: - Update doc. (Raag/Riana) - Change commit message. v5: - Update commit message. (Raag) - Remove unbind. - Simplify cold-reset script. v6: - Look up the hotplug slot in DEVPATH instead of scanning every PCI slot on the system. (Raag) - Drop arbitrary sleep values from the example script. --- Documentation/gpu/drm-uapi.rst | 60 +++++++++++++++++++++++++++++++++- 1 file changed, 59 insertions(+), 1 deletion(-) diff --git a/Documentation/gpu/drm-uapi.rst b/Documentation/gpu/drm-uapi.rst index 2c2f939322fb..665c66782504 100644 --- a/Documentation/gpu/drm-uapi.rst +++ b/Documentation/gpu/drm-uapi.rst @@ -424,7 +424,7 @@ needed. Recovery -------- -Current implementation defines four recovery methods, out of which, drivers +Current implementation defines several recovery methods, out of which, drivers can use any one, multiple or none. Method(s) of choice will be sent in the uevent environment as ``WEDGED=<method1>[,..,<methodN>]`` in order of less to more side-effects. See the section `Vendor Specific Recovery`_ @@ -441,6 +441,7 @@ following expectations. rebind unbind + bind driver bus-reset unbind + bus reset/re-enumeration + bind vendor-specific vendor specific recovery method + cold-reset remove device + slot power cycle + rescan unknown consumer policy =============== ======================================== @@ -453,6 +454,17 @@ debug purpose in order to root cause the hang. This is useful because the first hang is usually the most critical one which can result in consequential hangs or complete wedging. +Cold Reset Recovery +------------------- + +When ``WEDGED=cold-reset`` is sent, it indicates that the device has +encountered an error condition that cannot be resolved through other +recovery methods such as driver rebind or bus reset, and requires a complete +device power cycle to restore functionality. + +This method is used by devices that are plugged directly into the PCIe slot +which supports removing the power. + Vendor Specific Recovery ------------------------ @@ -530,6 +542,52 @@ Recovery script:: echo -n $DEVICE > $DRIVER/unbind echo -n $DEVICE > $DRIVER/bind +Example - cold-reset +-------------------- + +Udev rule:: + + SUBSYSTEM=="drm", ENV{WEDGED}=="cold-reset", DEVPATH=="*/drm/card[0-9]", + RUN+="/path/to/cold-reset.sh $env{DEVPATH}" + +Recovery script:: + + #!/bin/sh + + [ -z "$1" ] && echo "Usage: $0 <device-path>" && exit 1 + + # Get device + DEVPATH=$(readlink -f /sys/$1/device 2>/dev/null || readlink -f /sys/$1) + DEVICE=$(basename $DEVPATH) + + echo "Cold reset: $DEVICE" + + # The PCI core exposes a 'slot' symlink on the device that sits in a + # registered hotplug slot. Use it directly instead of scanning every + # slot on the system. + SLOT="" + if [ -L "$DEVPATH/slot" ]; then + SLOT=$(basename "$(readlink -f "$DEVPATH/slot")") + fi + + if [ -n "$SLOT" ]; then + echo "Using slot $SLOT" + + # Remove device + echo 1 > /sys/bus/pci/devices/$DEVICE/remove + + # Power cycle slot. A platform-specific settle delay may be required + # between power off and power on; tune to the hardware as needed. + echo 0 > /sys/bus/pci/slots/$SLOT/power + echo 1 > /sys/bus/pci/slots/$SLOT/power + + # Rescan + echo 1 > /sys/bus/pci/rescan + echo "Done!" + else + echo "No slot found" + fi + Customization ------------- -- 2.34.1 ^ permalink raw reply related [flat|nested] 15+ messages in thread
* Re: [PATCH v6 3/5] drm/doc: Document DRM_WEDGE_RECOVERY_COLD_RESET recovery method 2026-05-20 11:33 ` [PATCH v6 3/5] drm/doc: Document " Mallesh Koujalagi @ 2026-06-03 11:21 ` Raag Jadav 0 siblings, 0 replies; 15+ messages in thread From: Raag Jadav @ 2026-06-03 11:21 UTC (permalink / raw) To: Mallesh Koujalagi Cc: intel-xe, dri-devel, rodrigo.vivi, andrealmeid, christian.koenig, airlied, simona.vetter, mripard, maarten.lankhorst, tzimmermann, anshuman.gupta, badal.nilawar, riana.tauro, karthik.poosa, sk.anirban On Wed, May 20, 2026 at 05:03:55PM +0530, Mallesh Koujalagi wrote: > When ``WEDGED=cold-reset`` is sent, it indicates that the device has > encountered an error condition that cannot be resolved through other > recovery methods such as driver rebind or bus reset, and requires a > complete device power cycle to restore functionality. ... > +Example - cold-reset > +-------------------- > + > +Udev rule:: > + > + SUBSYSTEM=="drm", ENV{WEDGED}=="cold-reset", DEVPATH=="*/drm/card[0-9]", > + RUN+="/path/to/cold-reset.sh $env{DEVPATH}" > + > +Recovery script:: > + > + #!/bin/sh > + > + [ -z "$1" ] && echo "Usage: $0 <device-path>" && exit 1 > + > + # Get device > + DEVPATH=$(readlink -f /sys/$1/device 2>/dev/null || readlink -f /sys/$1) > + DEVICE=$(basename $DEVPATH) > + > + echo "Cold reset: $DEVICE" > + > + # The PCI core exposes a 'slot' symlink on the device that sits in a > + # registered hotplug slot. Use it directly instead of scanning every > + # slot on the system. > + SLOT="" > + if [ -L "$DEVPATH/slot" ]; then I think we'll need to iterate through the hierarchy to find it. Raag > + SLOT=$(basename "$(readlink -f "$DEVPATH/slot")") > + fi > + > + if [ -n "$SLOT" ]; then > + echo "Using slot $SLOT" > + > + # Remove device > + echo 1 > /sys/bus/pci/devices/$DEVICE/remove > + > + # Power cycle slot. A platform-specific settle delay may be required > + # between power off and power on; tune to the hardware as needed. > + echo 0 > /sys/bus/pci/slots/$SLOT/power > + echo 1 > /sys/bus/pci/slots/$SLOT/power > + > + # Rescan > + echo 1 > /sys/bus/pci/rescan > + echo "Done!" > + else > + echo "No slot found" > + fi > + > Customization > ------------- > > -- > 2.34.1 > ^ permalink raw reply [flat|nested] 15+ messages in thread
* [PATCH v6 4/5] drm/xe: Handle PUNIT errors by requesting cold-reset recovery 2026-05-20 11:33 [PATCH v6 0/5] Introduce cold reset recovery method Mallesh Koujalagi ` (2 preceding siblings ...) 2026-05-20 11:33 ` [PATCH v6 3/5] drm/doc: Document " Mallesh Koujalagi @ 2026-05-20 11:33 ` Mallesh Koujalagi 2026-05-20 11:33 ` [PATCH v6 5/5] drm/xe: Suppress Surprise Link Down on non-hotplug device Mallesh Koujalagi ` (8 subsequent siblings) 12 siblings, 0 replies; 15+ messages in thread From: Mallesh Koujalagi @ 2026-05-20 11:33 UTC (permalink / raw) To: intel-xe, dri-devel, rodrigo.vivi Cc: andrealmeid, christian.koenig, airlied, simona.vetter, mripard, maarten.lankhorst, tzimmermann, anshuman.gupta, badal.nilawar, riana.tauro, karthik.poosa, sk.anirban, raag.jadav, Mallesh Koujalagi When PUNIT (power management unit) errors are detected that persist across warm resets, mark the device as wedged with DRM_WEDGE_RECOVERY_COLD_RESET and notify userspace that a complete device power cycle is required to restore normal operation. Signed-off-by: Mallesh Koujalagi <mallesh.koujalagi@intel.com> Reviewed-by: Raag Jadav <raag.jadav@intel.com> --- v3: - Use PUNIT instead of PMU. (Riana) - Use consistent wordingi. - Remove log. (Raag) v4: - Make function static. (Raag) v5: - Remove kdoc for static function. (Raag) - Remove xe_ prefix for static function. --- drivers/gpu/drm/xe/xe_ras.c | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) diff --git a/drivers/gpu/drm/xe/xe_ras.c b/drivers/gpu/drm/xe/xe_ras.c index d79f8a6589ac..604470565bf3 100644 --- a/drivers/gpu/drm/xe/xe_ras.c +++ b/drivers/gpu/drm/xe/xe_ras.c @@ -4,6 +4,8 @@ */ #include "xe_bo.h" +#include "xe_assert.h" +#include "xe_device_types.h" #include "xe_device.h" #include "xe_printk.h" #include "xe_ras.h" @@ -222,6 +224,12 @@ static enum xe_ras_recovery_action handle_core_compute_errors(struct xe_device * return XE_RAS_RECOVERY_ACTION_RECOVERED; } +static void punit_error_handler(struct xe_device *xe) +{ + xe_device_set_wedged_method(xe, DRM_WEDGE_RECOVERY_COLD_RESET); + xe_device_declare_wedged(xe); +} + static enum xe_ras_recovery_action handle_soc_internal_errors(struct xe_device *xe, struct xe_ras_error_array *arr) { @@ -265,7 +273,7 @@ static enum xe_ras_recovery_action handle_soc_internal_errors(struct xe_device * xe_err(xe, "[RAS]: PUNIT %s detected: 0x%x\n", sev_to_str(error_class->common.severity), ieh_error->global_error_status); - /* TODO: Add PUNIT error handling */ + punit_error_handler(xe); return XE_RAS_RECOVERY_ACTION_DISCONNECT; } } -- 2.34.1 ^ permalink raw reply related [flat|nested] 15+ messages in thread
* [PATCH v6 5/5] drm/xe: Suppress Surprise Link Down on non-hotplug device 2026-05-20 11:33 [PATCH v6 0/5] Introduce cold reset recovery method Mallesh Koujalagi ` (3 preceding siblings ...) 2026-05-20 11:33 ` [PATCH v6 4/5] drm/xe: Handle PUNIT errors by requesting cold-reset recovery Mallesh Koujalagi @ 2026-05-20 11:33 ` Mallesh Koujalagi 2026-05-20 12:33 ` ✗ CI.checkpatch: warning for Introduce cold reset recovery method (rev5) Patchwork ` (7 subsequent siblings) 12 siblings, 0 replies; 15+ messages in thread From: Mallesh Koujalagi @ 2026-05-20 11:33 UTC (permalink / raw) To: intel-xe, dri-devel, rodrigo.vivi Cc: andrealmeid, christian.koenig, airlied, simona.vetter, mripard, maarten.lankhorst, tzimmermann, anshuman.gupta, badal.nilawar, riana.tauro, karthik.poosa, sk.anirban, raag.jadav, Mallesh Koujalagi A PUNIT (power management unit) error recovery on GPUs triggers a power cycle (cold reset). On platforms where the upstream port is not hotplug capable, the brief link drop caused by powering the device off and back on is reported by hardware as a Surprise Link Down (SLD), which AER then escalates as an Uncorrectable Fatal Error. That error fires before the device finishes coming back up and defeats the very recovery we are attempting. To keep the expected, recovery-induced link drop from being raised as a fatal AER event, mask the Surprise Link Down bit (PCI_ERR_UNC_SURPDN) in the upstream port's AER Uncorrectable Error Mask register before punit_error_handler() requests the cold reset. The mask is only applied when the slot is not hotplug capable. Signed-off-by: Mallesh Koujalagi <mallesh.koujalagi@intel.com> --- v6: - Expand commit message to explain why SUR_DN is masked. (Raag/Riana) - Check Slot Implemented bit before reading Slot Capabilities, per PCIe spec. (Riana) - Add debug log. --- drivers/gpu/drm/xe/xe_ras.c | 66 +++++++++++++++++++++++++++++++++++++ 1 file changed, 66 insertions(+) diff --git a/drivers/gpu/drm/xe/xe_ras.c b/drivers/gpu/drm/xe/xe_ras.c index 604470565bf3..f1a6d7b23c93 100644 --- a/drivers/gpu/drm/xe/xe_ras.c +++ b/drivers/gpu/drm/xe/xe_ras.c @@ -224,8 +224,74 @@ static enum xe_ras_recovery_action handle_core_compute_errors(struct xe_device * return XE_RAS_RECOVERY_ACTION_RECOVERED; } +#ifdef CONFIG_PCIEAER +static bool pcie_slot_is_hotplug_capable(struct pci_dev *usp) +{ + struct pci_dev *root_port = pci_upstream_bridge(usp); + u32 sltcap; + u16 flags; + + if (!root_port) + return false; + + /* + * Per PCIe spec, the Slot Capabilities register contents are + * undefined unless the Slot Implemented bit in the PCI Express + * Capabilities register is set. Check it before reading SLTCAP. + */ + if (pcie_capability_read_word(root_port, PCI_EXP_FLAGS, &flags)) + return false; + + if (!(flags & PCI_EXP_FLAGS_SLOT)) + return false; + + if (pcie_capability_read_dword(root_port, PCI_EXP_SLTCAP, &sltcap)) + return false; + + return (sltcap & (PCI_EXP_SLTCAP_HPC | PCI_EXP_SLTCAP_PCP)) == + (PCI_EXP_SLTCAP_HPC | PCI_EXP_SLTCAP_PCP); +} + +static void pcie_suppress_surprise_link_down(struct pci_dev *usp) +{ + u32 aer_uncorr_mask; + u16 aer_cap; + + aer_cap = usp->aer_cap; + if (!aer_cap) { + dev_dbg(&usp->dev, + "AER capability not present; cannot mask Surprise Link Down for cold reset\n"); + return; + } + + pci_read_config_dword(usp, aer_cap + PCI_ERR_UNCOR_MASK, &aer_uncorr_mask); + aer_uncorr_mask |= PCI_ERR_UNC_SURPDN; + pci_write_config_dword(usp, aer_cap + PCI_ERR_UNCOR_MASK, aer_uncorr_mask); + dev_dbg(&usp->dev, "Non-hotplug slot: Surprise Link Down masked for cold reset\n"); +} +#endif /* CONFIG_PCIEAER */ + static void punit_error_handler(struct xe_device *xe) { +#ifdef CONFIG_PCIEAER + struct pci_dev *pdev = to_pci_dev(xe->drm.dev); + struct pci_dev *vsp, *usp; + + /* + * Device Hierarchy: + * + * Root Port --> Upstream Switch Port (USP) --> Virtual Switch Port (VSP) --> SGunit + * + * Cold reset power-cycles the slot, dropping the PCIe link. On a non-hotplug + * slot this triggers a spurious Surprise Link Down AER event on the USP. + * Suppress it if the slot is not hotplug capable. + */ + vsp = pci_upstream_bridge(pdev); + usp = vsp ? pci_upstream_bridge(vsp) : NULL; + + if (usp && !pcie_slot_is_hotplug_capable(usp)) + pcie_suppress_surprise_link_down(usp); +#endif xe_device_set_wedged_method(xe, DRM_WEDGE_RECOVERY_COLD_RESET); xe_device_declare_wedged(xe); } -- 2.34.1 ^ permalink raw reply related [flat|nested] 15+ messages in thread
* ✗ CI.checkpatch: warning for Introduce cold reset recovery method (rev5) 2026-05-20 11:33 [PATCH v6 0/5] Introduce cold reset recovery method Mallesh Koujalagi ` (4 preceding siblings ...) 2026-05-20 11:33 ` [PATCH v6 5/5] drm/xe: Suppress Surprise Link Down on non-hotplug device Mallesh Koujalagi @ 2026-05-20 12:33 ` Patchwork 2026-05-20 12:34 ` ✓ CI.KUnit: success " Patchwork ` (6 subsequent siblings) 12 siblings, 0 replies; 15+ messages in thread From: Patchwork @ 2026-05-20 12:33 UTC (permalink / raw) To: Mallesh Koujalagi; +Cc: intel-xe == Series Details == Series: Introduce cold reset recovery method (rev5) URL : https://patchwork.freedesktop.org/series/163428/ 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 061140b9bc586ae7f40abc1249c97e1cc72d1b9d + cd /kernel + git config --global --add safe.directory /kernel + git log -n1 commit 0133536b6dcc2059b22064c6ebbb0a8c1a3fdf11 Author: Mallesh Koujalagi <mallesh.koujalagi@intel.com> Date: Wed May 20 17:03:57 2026 +0530 drm/xe: Suppress Surprise Link Down on non-hotplug device A PUNIT (power management unit) error recovery on GPUs triggers a power cycle (cold reset). On platforms where the upstream port is not hotplug capable, the brief link drop caused by powering the device off and back on is reported by hardware as a Surprise Link Down (SLD), which AER then escalates as an Uncorrectable Fatal Error. That error fires before the device finishes coming back up and defeats the very recovery we are attempting. To keep the expected, recovery-induced link drop from being raised as a fatal AER event, mask the Surprise Link Down bit (PCI_ERR_UNC_SURPDN) in the upstream port's AER Uncorrectable Error Mask register before punit_error_handler() requests the cold reset. The mask is only applied when the slot is not hotplug capable. Signed-off-by: Mallesh Koujalagi <mallesh.koujalagi@intel.com> + /mt/dim checkpatch 7d39df83e93eba14a23b1fb6ffff076eb191f27b drm-intel 15be9f5827cd Introduce Xe Uncorrectable Error Handling -:251: WARNING:FILE_PATH_CHANGES: added, moved or deleted file(s), does MAINTAINERS need updating? #251: new file mode 100644 total: 0 errors, 1 warnings, 0 checks, 1175 lines checked eab7bcf23127 drm: Add DRM_WEDGE_RECOVERY_COLD_RESET recovery method 187cc9cebce0 drm/doc: Document DRM_WEDGE_RECOVERY_COLD_RESET recovery method 1e41f7b089e6 drm/xe: Handle PUNIT errors by requesting cold-reset recovery 0133536b6dcc drm/xe: Suppress Surprise Link Down on non-hotplug device ^ permalink raw reply [flat|nested] 15+ messages in thread
* ✓ CI.KUnit: success for Introduce cold reset recovery method (rev5) 2026-05-20 11:33 [PATCH v6 0/5] Introduce cold reset recovery method Mallesh Koujalagi ` (5 preceding siblings ...) 2026-05-20 12:33 ` ✗ CI.checkpatch: warning for Introduce cold reset recovery method (rev5) Patchwork @ 2026-05-20 12:34 ` Patchwork 2026-05-20 13:14 ` ✓ Xe.CI.BAT: " Patchwork ` (5 subsequent siblings) 12 siblings, 0 replies; 15+ messages in thread From: Patchwork @ 2026-05-20 12:34 UTC (permalink / raw) To: Mallesh Koujalagi; +Cc: intel-xe == Series Details == Series: Introduce cold reset recovery method (rev5) URL : https://patchwork.freedesktop.org/series/163428/ State : success == Summary == + trap cleanup EXIT + /kernel/tools/testing/kunit/kunit.py run --kunitconfig /kernel/drivers/gpu/drm/xe/.kunitconfig [12:33:18] Configuring KUnit Kernel ... Generating .config ... Populating config with: $ make ARCH=um O=.kunit olddefconfig [12:33:22] 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:33:53] Starting KUnit Kernel (1/1)... [12:33:53] ============================================================ Running tests with: $ .kunit/linux kunit.enable=1 mem=1G console=tty kunit_shutdown=halt [12:33:53] ================== guc_buf (11 subtests) =================== [12:33:53] [PASSED] test_smallest [12:33:53] [PASSED] test_largest [12:33:53] [PASSED] test_granular [12:33:53] [PASSED] test_unique [12:33:53] [PASSED] test_overlap [12:33:53] [PASSED] test_reusable [12:33:53] [PASSED] test_too_big [12:33:53] [PASSED] test_flush [12:33:53] [PASSED] test_lookup [12:33:53] [PASSED] test_data [12:33:53] [PASSED] test_class [12:33:53] ===================== [PASSED] guc_buf ===================== [12:33:53] =================== guc_dbm (7 subtests) =================== [12:33:53] [PASSED] test_empty [12:33:53] [PASSED] test_default [12:33:53] ======================== test_size ======================== [12:33:53] [PASSED] 4 [12:33:53] [PASSED] 8 [12:33:53] [PASSED] 32 [12:33:53] [PASSED] 256 [12:33:53] ==================== [PASSED] test_size ==================== [12:33:53] ======================= test_reuse ======================== [12:33:53] [PASSED] 4 [12:33:53] [PASSED] 8 [12:33:53] [PASSED] 32 [12:33:53] [PASSED] 256 [12:33:53] =================== [PASSED] test_reuse ==================== [12:33:53] =================== test_range_overlap ==================== [12:33:53] [PASSED] 4 [12:33:53] [PASSED] 8 [12:33:53] [PASSED] 32 [12:33:53] [PASSED] 256 [12:33:53] =============== [PASSED] test_range_overlap ================ [12:33:53] =================== test_range_compact ==================== [12:33:53] [PASSED] 4 [12:33:53] [PASSED] 8 [12:33:53] [PASSED] 32 [12:33:53] [PASSED] 256 [12:33:53] =============== [PASSED] test_range_compact ================ [12:33:53] ==================== test_range_spare ===================== [12:33:53] [PASSED] 4 [12:33:53] [PASSED] 8 [12:33:53] [PASSED] 32 [12:33:53] [PASSED] 256 [12:33:53] ================ [PASSED] test_range_spare ================= [12:33:53] ===================== [PASSED] guc_dbm ===================== [12:33:53] =================== guc_idm (6 subtests) =================== [12:33:53] [PASSED] bad_init [12:33:53] [PASSED] no_init [12:33:53] [PASSED] init_fini [12:33:53] [PASSED] check_used [12:33:53] [PASSED] check_quota [12:33:53] [PASSED] check_all [12:33:53] ===================== [PASSED] guc_idm ===================== [12:33:53] ================== no_relay (3 subtests) =================== [12:33:53] [PASSED] xe_drops_guc2pf_if_not_ready [12:33:53] [PASSED] xe_drops_guc2vf_if_not_ready [12:33:53] [PASSED] xe_rejects_send_if_not_ready [12:33:53] ==================== [PASSED] no_relay ===================== [12:33:53] ================== pf_relay (14 subtests) ================== [12:33:53] [PASSED] pf_rejects_guc2pf_too_short [12:33:53] [PASSED] pf_rejects_guc2pf_too_long [12:33:53] [PASSED] pf_rejects_guc2pf_no_payload [12:33:53] [PASSED] pf_fails_no_payload [12:33:53] [PASSED] pf_fails_bad_origin [12:33:53] [PASSED] pf_fails_bad_type [12:33:53] [PASSED] pf_txn_reports_error [12:33:53] [PASSED] pf_txn_sends_pf2guc [12:33:53] [PASSED] pf_sends_pf2guc [12:33:53] [SKIPPED] pf_loopback_nop [12:33:53] [SKIPPED] pf_loopback_echo [12:33:53] [SKIPPED] pf_loopback_fail [12:33:53] [SKIPPED] pf_loopback_busy [12:33:53] [SKIPPED] pf_loopback_retry [12:33:53] ==================== [PASSED] pf_relay ===================== [12:33:53] ================== vf_relay (3 subtests) =================== [12:33:53] [PASSED] vf_rejects_guc2vf_too_short [12:33:53] [PASSED] vf_rejects_guc2vf_too_long [12:33:53] [PASSED] vf_rejects_guc2vf_no_payload [12:33:53] ==================== [PASSED] vf_relay ===================== [12:33:53] ================ pf_gt_config (9 subtests) ================= [12:33:53] [PASSED] fair_contexts_1vf [12:33:53] [PASSED] fair_doorbells_1vf [12:33:53] [PASSED] fair_ggtt_1vf [12:33:53] ====================== fair_vram_1vf ====================== [12:33:53] [PASSED] 3.50 GiB [12:33:53] [PASSED] 11.5 GiB [12:33:53] [PASSED] 15.5 GiB [12:33:53] [PASSED] 31.5 GiB [12:33:53] [PASSED] 63.5 GiB [12:33:53] [PASSED] 1.91 GiB [12:33:53] ================== [PASSED] fair_vram_1vf ================== [12:33:53] ================ fair_vram_1vf_admin_only ================= [12:33:53] [PASSED] 3.50 GiB [12:33:53] [PASSED] 11.5 GiB [12:33:53] [PASSED] 15.5 GiB [12:33:53] [PASSED] 31.5 GiB [12:33:53] [PASSED] 63.5 GiB [12:33:53] [PASSED] 1.91 GiB [12:33:53] ============ [PASSED] fair_vram_1vf_admin_only ============= [12:33:53] ====================== fair_contexts ====================== [12:33:53] [PASSED] 1 VF [12:33:53] [PASSED] 2 VFs [12:33:53] [PASSED] 3 VFs [12:33:53] [PASSED] 4 VFs [12:33:53] [PASSED] 5 VFs [12:33:53] [PASSED] 6 VFs [12:33:53] [PASSED] 7 VFs [12:33:53] [PASSED] 8 VFs [12:33:53] [PASSED] 9 VFs [12:33:53] [PASSED] 10 VFs [12:33:53] [PASSED] 11 VFs [12:33:53] [PASSED] 12 VFs [12:33:53] [PASSED] 13 VFs [12:33:53] [PASSED] 14 VFs [12:33:53] [PASSED] 15 VFs [12:33:53] [PASSED] 16 VFs [12:33:53] [PASSED] 17 VFs [12:33:53] [PASSED] 18 VFs [12:33:53] [PASSED] 19 VFs [12:33:53] [PASSED] 20 VFs [12:33:53] [PASSED] 21 VFs [12:33:53] [PASSED] 22 VFs [12:33:53] [PASSED] 23 VFs [12:33:53] [PASSED] 24 VFs [12:33:53] [PASSED] 25 VFs [12:33:53] [PASSED] 26 VFs [12:33:53] [PASSED] 27 VFs [12:33:53] [PASSED] 28 VFs [12:33:53] [PASSED] 29 VFs [12:33:53] [PASSED] 30 VFs [12:33:53] [PASSED] 31 VFs [12:33:53] [PASSED] 32 VFs [12:33:53] [PASSED] 33 VFs [12:33:53] [PASSED] 34 VFs [12:33:53] [PASSED] 35 VFs [12:33:53] [PASSED] 36 VFs [12:33:53] [PASSED] 37 VFs [12:33:53] [PASSED] 38 VFs [12:33:53] [PASSED] 39 VFs [12:33:53] [PASSED] 40 VFs [12:33:53] [PASSED] 41 VFs [12:33:53] [PASSED] 42 VFs [12:33:53] [PASSED] 43 VFs [12:33:53] [PASSED] 44 VFs [12:33:53] [PASSED] 45 VFs [12:33:53] [PASSED] 46 VFs [12:33:53] [PASSED] 47 VFs [12:33:53] [PASSED] 48 VFs [12:33:53] [PASSED] 49 VFs [12:33:53] [PASSED] 50 VFs [12:33:53] [PASSED] 51 VFs [12:33:53] [PASSED] 52 VFs [12:33:53] [PASSED] 53 VFs [12:33:53] [PASSED] 54 VFs [12:33:53] [PASSED] 55 VFs [12:33:53] [PASSED] 56 VFs [12:33:53] [PASSED] 57 VFs [12:33:53] [PASSED] 58 VFs [12:33:53] [PASSED] 59 VFs [12:33:53] [PASSED] 60 VFs [12:33:53] [PASSED] 61 VFs [12:33:53] [PASSED] 62 VFs [12:33:53] [PASSED] 63 VFs [12:33:53] ================== [PASSED] fair_contexts ================== [12:33:53] ===================== fair_doorbells ====================== [12:33:53] [PASSED] 1 VF [12:33:53] [PASSED] 2 VFs [12:33:53] [PASSED] 3 VFs [12:33:53] [PASSED] 4 VFs [12:33:53] [PASSED] 5 VFs [12:33:53] [PASSED] 6 VFs [12:33:53] [PASSED] 7 VFs [12:33:53] [PASSED] 8 VFs [12:33:53] [PASSED] 9 VFs [12:33:53] [PASSED] 10 VFs [12:33:53] [PASSED] 11 VFs [12:33:53] [PASSED] 12 VFs [12:33:53] [PASSED] 13 VFs [12:33:53] [PASSED] 14 VFs [12:33:53] [PASSED] 15 VFs [12:33:53] [PASSED] 16 VFs [12:33:53] [PASSED] 17 VFs [12:33:53] [PASSED] 18 VFs [12:33:53] [PASSED] 19 VFs [12:33:53] [PASSED] 20 VFs [12:33:53] [PASSED] 21 VFs [12:33:53] [PASSED] 22 VFs [12:33:53] [PASSED] 23 VFs [12:33:53] [PASSED] 24 VFs [12:33:53] [PASSED] 25 VFs [12:33:53] [PASSED] 26 VFs [12:33:53] [PASSED] 27 VFs [12:33:53] [PASSED] 28 VFs [12:33:53] [PASSED] 29 VFs [12:33:53] [PASSED] 30 VFs [12:33:53] [PASSED] 31 VFs [12:33:53] [PASSED] 32 VFs [12:33:53] [PASSED] 33 VFs [12:33:53] [PASSED] 34 VFs [12:33:53] [PASSED] 35 VFs [12:33:53] [PASSED] 36 VFs [12:33:53] [PASSED] 37 VFs [12:33:53] [PASSED] 38 VFs [12:33:53] [PASSED] 39 VFs [12:33:53] [PASSED] 40 VFs [12:33:53] [PASSED] 41 VFs [12:33:53] [PASSED] 42 VFs [12:33:53] [PASSED] 43 VFs [12:33:53] [PASSED] 44 VFs [12:33:53] [PASSED] 45 VFs [12:33:53] [PASSED] 46 VFs [12:33:53] [PASSED] 47 VFs [12:33:53] [PASSED] 48 VFs [12:33:53] [PASSED] 49 VFs [12:33:53] [PASSED] 50 VFs [12:33:53] [PASSED] 51 VFs [12:33:53] [PASSED] 52 VFs [12:33:53] [PASSED] 53 VFs [12:33:53] [PASSED] 54 VFs [12:33:53] [PASSED] 55 VFs [12:33:53] [PASSED] 56 VFs [12:33:53] [PASSED] 57 VFs [12:33:53] [PASSED] 58 VFs [12:33:53] [PASSED] 59 VFs [12:33:53] [PASSED] 60 VFs [12:33:53] [PASSED] 61 VFs [12:33:54] [PASSED] 62 VFs [12:33:54] [PASSED] 63 VFs [12:33:54] ================= [PASSED] fair_doorbells ================== [12:33:54] ======================== fair_ggtt ======================== [12:33:54] [PASSED] 1 VF [12:33:54] [PASSED] 2 VFs [12:33:54] [PASSED] 3 VFs [12:33:54] [PASSED] 4 VFs [12:33:54] [PASSED] 5 VFs [12:33:54] [PASSED] 6 VFs [12:33:54] [PASSED] 7 VFs [12:33:54] [PASSED] 8 VFs [12:33:54] [PASSED] 9 VFs [12:33:54] [PASSED] 10 VFs [12:33:54] [PASSED] 11 VFs [12:33:54] [PASSED] 12 VFs [12:33:54] [PASSED] 13 VFs [12:33:54] [PASSED] 14 VFs [12:33:54] [PASSED] 15 VFs [12:33:54] [PASSED] 16 VFs [12:33:54] [PASSED] 17 VFs [12:33:54] [PASSED] 18 VFs [12:33:54] [PASSED] 19 VFs [12:33:54] [PASSED] 20 VFs [12:33:54] [PASSED] 21 VFs [12:33:54] [PASSED] 22 VFs [12:33:54] [PASSED] 23 VFs [12:33:54] [PASSED] 24 VFs [12:33:54] [PASSED] 25 VFs [12:33:54] [PASSED] 26 VFs [12:33:54] [PASSED] 27 VFs [12:33:54] [PASSED] 28 VFs [12:33:54] [PASSED] 29 VFs [12:33:54] [PASSED] 30 VFs [12:33:54] [PASSED] 31 VFs [12:33:54] [PASSED] 32 VFs [12:33:54] [PASSED] 33 VFs [12:33:54] [PASSED] 34 VFs [12:33:54] [PASSED] 35 VFs [12:33:54] [PASSED] 36 VFs [12:33:54] [PASSED] 37 VFs [12:33:54] [PASSED] 38 VFs [12:33:54] [PASSED] 39 VFs [12:33:54] [PASSED] 40 VFs [12:33:54] [PASSED] 41 VFs [12:33:54] [PASSED] 42 VFs [12:33:54] [PASSED] 43 VFs [12:33:54] [PASSED] 44 VFs [12:33:54] [PASSED] 45 VFs [12:33:54] [PASSED] 46 VFs [12:33:54] [PASSED] 47 VFs [12:33:54] [PASSED] 48 VFs [12:33:54] [PASSED] 49 VFs [12:33:54] [PASSED] 50 VFs [12:33:54] [PASSED] 51 VFs [12:33:54] [PASSED] 52 VFs [12:33:54] [PASSED] 53 VFs [12:33:54] [PASSED] 54 VFs [12:33:54] [PASSED] 55 VFs [12:33:54] [PASSED] 56 VFs [12:33:54] [PASSED] 57 VFs [12:33:54] [PASSED] 58 VFs [12:33:54] [PASSED] 59 VFs [12:33:54] [PASSED] 60 VFs [12:33:54] [PASSED] 61 VFs [12:33:54] [PASSED] 62 VFs [12:33:54] [PASSED] 63 VFs [12:33:54] ==================== [PASSED] fair_ggtt ==================== [12:33:54] ======================== fair_vram ======================== [12:33:54] [PASSED] 1 VF [12:33:54] [PASSED] 2 VFs [12:33:54] [PASSED] 3 VFs [12:33:54] [PASSED] 4 VFs [12:33:54] [PASSED] 5 VFs [12:33:54] [PASSED] 6 VFs [12:33:54] [PASSED] 7 VFs [12:33:54] [PASSED] 8 VFs [12:33:54] [PASSED] 9 VFs [12:33:54] [PASSED] 10 VFs [12:33:54] [PASSED] 11 VFs [12:33:54] [PASSED] 12 VFs [12:33:54] [PASSED] 13 VFs [12:33:54] [PASSED] 14 VFs [12:33:54] [PASSED] 15 VFs [12:33:54] [PASSED] 16 VFs [12:33:54] [PASSED] 17 VFs [12:33:54] [PASSED] 18 VFs [12:33:54] [PASSED] 19 VFs [12:33:54] [PASSED] 20 VFs [12:33:54] [PASSED] 21 VFs [12:33:54] [PASSED] 22 VFs [12:33:54] [PASSED] 23 VFs [12:33:54] [PASSED] 24 VFs [12:33:54] [PASSED] 25 VFs [12:33:54] [PASSED] 26 VFs [12:33:54] [PASSED] 27 VFs [12:33:54] [PASSED] 28 VFs [12:33:54] [PASSED] 29 VFs [12:33:54] [PASSED] 30 VFs [12:33:54] [PASSED] 31 VFs [12:33:54] [PASSED] 32 VFs [12:33:54] [PASSED] 33 VFs [12:33:54] [PASSED] 34 VFs [12:33:54] [PASSED] 35 VFs [12:33:54] [PASSED] 36 VFs [12:33:54] [PASSED] 37 VFs [12:33:54] [PASSED] 38 VFs [12:33:54] [PASSED] 39 VFs [12:33:54] [PASSED] 40 VFs [12:33:54] [PASSED] 41 VFs [12:33:54] [PASSED] 42 VFs [12:33:54] [PASSED] 43 VFs [12:33:54] [PASSED] 44 VFs [12:33:54] [PASSED] 45 VFs [12:33:54] [PASSED] 46 VFs [12:33:54] [PASSED] 47 VFs [12:33:54] [PASSED] 48 VFs [12:33:54] [PASSED] 49 VFs [12:33:54] [PASSED] 50 VFs [12:33:54] [PASSED] 51 VFs [12:33:54] [PASSED] 52 VFs [12:33:54] [PASSED] 53 VFs [12:33:54] [PASSED] 54 VFs [12:33:54] [PASSED] 55 VFs [12:33:54] [PASSED] 56 VFs [12:33:54] [PASSED] 57 VFs [12:33:54] [PASSED] 58 VFs [12:33:54] [PASSED] 59 VFs [12:33:54] [PASSED] 60 VFs [12:33:54] [PASSED] 61 VFs [12:33:54] [PASSED] 62 VFs [12:33:54] [PASSED] 63 VFs [12:33:54] ==================== [PASSED] fair_vram ==================== [12:33:54] ================== [PASSED] pf_gt_config =================== [12:33:54] ===================== lmtt (1 subtest) ===================== [12:33:54] ======================== test_ops ========================= [12:33:54] [PASSED] 2-level [12:33:54] [PASSED] multi-level [12:33:54] ==================== [PASSED] test_ops ===================== [12:33:54] ====================== [PASSED] lmtt ======================= [12:33:54] ================= pf_service (11 subtests) ================= [12:33:54] [PASSED] pf_negotiate_any [12:33:54] [PASSED] pf_negotiate_base_match [12:33:54] [PASSED] pf_negotiate_base_newer [12:33:54] [PASSED] pf_negotiate_base_next [12:33:54] [SKIPPED] pf_negotiate_base_older [12:33:54] [PASSED] pf_negotiate_base_prev [12:33:54] [PASSED] pf_negotiate_latest_match [12:33:54] [PASSED] pf_negotiate_latest_newer [12:33:54] [PASSED] pf_negotiate_latest_next [12:33:54] [SKIPPED] pf_negotiate_latest_older [12:33:54] [SKIPPED] pf_negotiate_latest_prev [12:33:54] =================== [PASSED] pf_service ==================== [12:33:54] ================= xe_guc_g2g (2 subtests) ================== [12:33:54] ============== xe_live_guc_g2g_kunit_default ============== [12:33:54] ========= [SKIPPED] xe_live_guc_g2g_kunit_default ========== [12:33:54] ============== xe_live_guc_g2g_kunit_allmem =============== [12:33:54] ========== [SKIPPED] xe_live_guc_g2g_kunit_allmem ========== [12:33:54] =================== [SKIPPED] xe_guc_g2g =================== [12:33:54] =================== xe_mocs (2 subtests) =================== [12:33:54] ================ xe_live_mocs_kernel_kunit ================ [12:33:54] =========== [SKIPPED] xe_live_mocs_kernel_kunit ============ [12:33:54] ================ xe_live_mocs_reset_kunit ================= [12:33:54] ============ [SKIPPED] xe_live_mocs_reset_kunit ============ [12:33:54] ==================== [SKIPPED] xe_mocs ===================== [12:33:54] ================= xe_migrate (2 subtests) ================== [12:33:54] ================= xe_migrate_sanity_kunit ================= [12:33:54] ============ [SKIPPED] xe_migrate_sanity_kunit ============= [12:33:54] ================== xe_validate_ccs_kunit ================== [12:33:54] ============= [SKIPPED] xe_validate_ccs_kunit ============== [12:33:54] =================== [SKIPPED] xe_migrate =================== [12:33:54] ================== xe_dma_buf (1 subtest) ================== [12:33:54] ==================== xe_dma_buf_kunit ===================== [12:33:54] ================ [SKIPPED] xe_dma_buf_kunit ================ [12:33:54] =================== [SKIPPED] xe_dma_buf =================== [12:33:54] ================= xe_bo_shrink (1 subtest) ================= [12:33:54] =================== xe_bo_shrink_kunit ==================== [12:33:54] =============== [SKIPPED] xe_bo_shrink_kunit =============== [12:33:54] ================== [SKIPPED] xe_bo_shrink ================== [12:33:54] ==================== xe_bo (2 subtests) ==================== [12:33:54] ================== xe_ccs_migrate_kunit =================== [12:33:54] ============== [SKIPPED] xe_ccs_migrate_kunit ============== [12:33:54] ==================== xe_bo_evict_kunit ==================== [12:33:54] =============== [SKIPPED] xe_bo_evict_kunit ================ [12:33:54] ===================== [SKIPPED] xe_bo ====================== [12:33:54] ==================== args (13 subtests) ==================== [12:33:54] [PASSED] count_args_test [12:33:54] [PASSED] call_args_example [12:33:54] [PASSED] call_args_test [12:33:54] [PASSED] drop_first_arg_example [12:33:54] [PASSED] drop_first_arg_test [12:33:54] [PASSED] first_arg_example [12:33:54] [PASSED] first_arg_test [12:33:54] [PASSED] last_arg_example [12:33:54] [PASSED] last_arg_test [12:33:54] [PASSED] pick_arg_example [12:33:54] [PASSED] if_args_example [12:33:54] [PASSED] if_args_test [12:33:54] [PASSED] sep_comma_example [12:33:54] ====================== [PASSED] args ======================= [12:33:54] =================== xe_pci (3 subtests) ==================== [12:33:54] ==================== check_graphics_ip ==================== [12:33:54] [PASSED] 12.00 Xe_LP [12:33:54] [PASSED] 12.10 Xe_LP+ [12:33:54] [PASSED] 12.55 Xe_HPG [12:33:54] [PASSED] 12.60 Xe_HPC [12:33:54] [PASSED] 12.70 Xe_LPG [12:33:54] [PASSED] 12.71 Xe_LPG [12:33:54] [PASSED] 12.74 Xe_LPG+ [12:33:54] [PASSED] 20.01 Xe2_HPG [12:33:54] [PASSED] 20.02 Xe2_HPG [12:33:54] [PASSED] 20.04 Xe2_LPG [12:33:54] [PASSED] 30.00 Xe3_LPG [12:33:54] [PASSED] 30.01 Xe3_LPG [12:33:54] [PASSED] 30.03 Xe3_LPG [12:33:54] [PASSED] 30.04 Xe3_LPG [12:33:54] [PASSED] 30.05 Xe3_LPG [12:33:54] [PASSED] 35.10 Xe3p_LPG [12:33:54] [PASSED] 35.11 Xe3p_XPC [12:33:54] ================ [PASSED] check_graphics_ip ================ [12:33:54] ===================== check_media_ip ====================== [12:33:54] [PASSED] 12.00 Xe_M [12:33:54] [PASSED] 12.55 Xe_HPM [12:33:54] [PASSED] 13.00 Xe_LPM+ [12:33:54] [PASSED] 13.01 Xe2_HPM [12:33:54] [PASSED] 20.00 Xe2_LPM [12:33:54] [PASSED] 30.00 Xe3_LPM [12:33:54] [PASSED] 30.02 Xe3_LPM [12:33:54] [PASSED] 35.00 Xe3p_LPM [12:33:54] [PASSED] 35.03 Xe3p_HPM [12:33:54] ================= [PASSED] check_media_ip ================== [12:33:54] =================== check_platform_desc =================== [12:33:54] [PASSED] 0x9A60 (TIGERLAKE) [12:33:54] [PASSED] 0x9A68 (TIGERLAKE) [12:33:54] [PASSED] 0x9A70 (TIGERLAKE) [12:33:54] [PASSED] 0x9A40 (TIGERLAKE) [12:33:54] [PASSED] 0x9A49 (TIGERLAKE) [12:33:54] [PASSED] 0x9A59 (TIGERLAKE) [12:33:54] [PASSED] 0x9A78 (TIGERLAKE) [12:33:54] [PASSED] 0x9AC0 (TIGERLAKE) [12:33:54] [PASSED] 0x9AC9 (TIGERLAKE) [12:33:54] [PASSED] 0x9AD9 (TIGERLAKE) [12:33:54] [PASSED] 0x9AF8 (TIGERLAKE) [12:33:54] [PASSED] 0x4C80 (ROCKETLAKE) [12:33:54] [PASSED] 0x4C8A (ROCKETLAKE) [12:33:54] [PASSED] 0x4C8B (ROCKETLAKE) [12:33:54] [PASSED] 0x4C8C (ROCKETLAKE) [12:33:54] [PASSED] 0x4C90 (ROCKETLAKE) [12:33:54] [PASSED] 0x4C9A (ROCKETLAKE) [12:33:54] [PASSED] 0x4680 (ALDERLAKE_S) [12:33:54] [PASSED] 0x4682 (ALDERLAKE_S) [12:33:54] [PASSED] 0x4688 (ALDERLAKE_S) [12:33:54] [PASSED] 0x468A (ALDERLAKE_S) [12:33:54] [PASSED] 0x468B (ALDERLAKE_S) [12:33:54] [PASSED] 0x4690 (ALDERLAKE_S) [12:33:54] [PASSED] 0x4692 (ALDERLAKE_S) [12:33:54] [PASSED] 0x4693 (ALDERLAKE_S) [12:33:54] [PASSED] 0x46A0 (ALDERLAKE_P) [12:33:54] [PASSED] 0x46A1 (ALDERLAKE_P) [12:33:54] [PASSED] 0x46A2 (ALDERLAKE_P) [12:33:54] [PASSED] 0x46A3 (ALDERLAKE_P) [12:33:54] [PASSED] 0x46A6 (ALDERLAKE_P) [12:33:54] [PASSED] 0x46A8 (ALDERLAKE_P) [12:33:54] [PASSED] 0x46AA (ALDERLAKE_P) [12:33:54] [PASSED] 0x462A (ALDERLAKE_P) [12:33:54] [PASSED] 0x4626 (ALDERLAKE_P) [12:33:54] [PASSED] 0x4628 (ALDERLAKE_P) [12:33:54] [PASSED] 0x46B0 (ALDERLAKE_P) [12:33:54] [PASSED] 0x46B1 (ALDERLAKE_P) [12:33:54] [PASSED] 0x46B2 (ALDERLAKE_P) [12:33:54] [PASSED] 0x46B3 (ALDERLAKE_P) [12:33:54] [PASSED] 0x46C0 (ALDERLAKE_P) [12:33:54] [PASSED] 0x46C1 (ALDERLAKE_P) [12:33:54] [PASSED] 0x46C2 (ALDERLAKE_P) [12:33:54] [PASSED] 0x46C3 (ALDERLAKE_P) [12:33:54] [PASSED] 0x46D0 (ALDERLAKE_N) [12:33:54] [PASSED] 0x46D1 (ALDERLAKE_N) [12:33:54] [PASSED] 0x46D2 (ALDERLAKE_N) [12:33:54] [PASSED] 0x46D3 (ALDERLAKE_N) [12:33:54] [PASSED] 0x46D4 (ALDERLAKE_N) [12:33:54] [PASSED] 0xA721 (ALDERLAKE_P) [12:33:54] [PASSED] 0xA7A1 (ALDERLAKE_P) [12:33:54] [PASSED] 0xA7A9 (ALDERLAKE_P) [12:33:54] [PASSED] 0xA7AC (ALDERLAKE_P) [12:33:54] [PASSED] 0xA7AD (ALDERLAKE_P) [12:33:54] [PASSED] 0xA720 (ALDERLAKE_P) [12:33:54] [PASSED] 0xA7A0 (ALDERLAKE_P) [12:33:54] [PASSED] 0xA7A8 (ALDERLAKE_P) [12:33:54] [PASSED] 0xA7AA (ALDERLAKE_P) [12:33:54] [PASSED] 0xA7AB (ALDERLAKE_P) [12:33:54] [PASSED] 0xA780 (ALDERLAKE_S) [12:33:54] [PASSED] 0xA781 (ALDERLAKE_S) [12:33:54] [PASSED] 0xA782 (ALDERLAKE_S) [12:33:54] [PASSED] 0xA783 (ALDERLAKE_S) [12:33:54] [PASSED] 0xA788 (ALDERLAKE_S) [12:33:54] [PASSED] 0xA789 (ALDERLAKE_S) [12:33:54] [PASSED] 0xA78A (ALDERLAKE_S) [12:33:54] [PASSED] 0xA78B (ALDERLAKE_S) [12:33:54] [PASSED] 0x4905 (DG1) [12:33:54] [PASSED] 0x4906 (DG1) [12:33:54] [PASSED] 0x4907 (DG1) [12:33:54] [PASSED] 0x4908 (DG1) [12:33:54] [PASSED] 0x4909 (DG1) [12:33:54] [PASSED] 0x56C0 (DG2) [12:33:54] [PASSED] 0x56C2 (DG2) [12:33:54] [PASSED] 0x56C1 (DG2) [12:33:54] [PASSED] 0x7D51 (METEORLAKE) [12:33:54] [PASSED] 0x7DD1 (METEORLAKE) [12:33:54] [PASSED] 0x7D41 (METEORLAKE) [12:33:54] [PASSED] 0x7D67 (METEORLAKE) [12:33:54] [PASSED] 0xB640 (METEORLAKE) [12:33:54] [PASSED] 0x56A0 (DG2) [12:33:54] [PASSED] 0x56A1 (DG2) [12:33:54] [PASSED] 0x56A2 (DG2) [12:33:54] [PASSED] 0x56BE (DG2) [12:33:54] [PASSED] 0x56BF (DG2) [12:33:54] [PASSED] 0x5690 (DG2) [12:33:54] [PASSED] 0x5691 (DG2) [12:33:54] [PASSED] 0x5692 (DG2) [12:33:54] [PASSED] 0x56A5 (DG2) [12:33:54] [PASSED] 0x56A6 (DG2) [12:33:54] [PASSED] 0x56B0 (DG2) [12:33:54] [PASSED] 0x56B1 (DG2) [12:33:54] [PASSED] 0x56BA (DG2) [12:33:54] [PASSED] 0x56BB (DG2) [12:33:54] [PASSED] 0x56BC (DG2) [12:33:54] [PASSED] 0x56BD (DG2) [12:33:54] [PASSED] 0x5693 (DG2) [12:33:54] [PASSED] 0x5694 (DG2) [12:33:54] [PASSED] 0x5695 (DG2) [12:33:54] [PASSED] 0x56A3 (DG2) [12:33:54] [PASSED] 0x56A4 (DG2) [12:33:54] [PASSED] 0x56B2 (DG2) [12:33:54] [PASSED] 0x56B3 (DG2) [12:33:54] [PASSED] 0x5696 (DG2) [12:33:54] [PASSED] 0x5697 (DG2) [12:33:54] [PASSED] 0xB69 (PVC) [12:33:54] [PASSED] 0xB6E (PVC) [12:33:54] [PASSED] 0xBD4 (PVC) [12:33:54] [PASSED] 0xBD5 (PVC) [12:33:54] [PASSED] 0xBD6 (PVC) [12:33:54] [PASSED] 0xBD7 (PVC) [12:33:54] [PASSED] 0xBD8 (PVC) [12:33:54] [PASSED] 0xBD9 (PVC) [12:33:54] [PASSED] 0xBDA (PVC) [12:33:54] [PASSED] 0xBDB (PVC) [12:33:54] [PASSED] 0xBE0 (PVC) [12:33:54] [PASSED] 0xBE1 (PVC) [12:33:54] [PASSED] 0xBE5 (PVC) [12:33:54] [PASSED] 0x7D40 (METEORLAKE) [12:33:54] [PASSED] 0x7D45 (METEORLAKE) [12:33:54] [PASSED] 0x7D55 (METEORLAKE) [12:33:54] [PASSED] 0x7D60 (METEORLAKE) [12:33:54] [PASSED] 0x7DD5 (METEORLAKE) [12:33:54] [PASSED] 0x6420 (LUNARLAKE) [12:33:54] [PASSED] 0x64A0 (LUNARLAKE) [12:33:54] [PASSED] 0x64B0 (LUNARLAKE) [12:33:54] [PASSED] 0xE202 (BATTLEMAGE) [12:33:54] [PASSED] 0xE209 (BATTLEMAGE) [12:33:54] [PASSED] 0xE20B (BATTLEMAGE) [12:33:54] [PASSED] 0xE20C (BATTLEMAGE) [12:33:54] [PASSED] 0xE20D (BATTLEMAGE) [12:33:54] [PASSED] 0xE210 (BATTLEMAGE) [12:33:54] [PASSED] 0xE211 (BATTLEMAGE) [12:33:54] [PASSED] 0xE212 (BATTLEMAGE) [12:33:54] [PASSED] 0xE216 (BATTLEMAGE) [12:33:54] [PASSED] 0xE220 (BATTLEMAGE) [12:33:54] [PASSED] 0xE221 (BATTLEMAGE) [12:33:54] [PASSED] 0xE222 (BATTLEMAGE) [12:33:54] [PASSED] 0xE223 (BATTLEMAGE) [12:33:54] [PASSED] 0xB080 (PANTHERLAKE) [12:33:54] [PASSED] 0xB081 (PANTHERLAKE) [12:33:54] [PASSED] 0xB082 (PANTHERLAKE) [12:33:54] [PASSED] 0xB083 (PANTHERLAKE) [12:33:54] [PASSED] 0xB084 (PANTHERLAKE) [12:33:54] [PASSED] 0xB085 (PANTHERLAKE) [12:33:54] [PASSED] 0xB086 (PANTHERLAKE) [12:33:54] [PASSED] 0xB087 (PANTHERLAKE) [12:33:54] [PASSED] 0xB08F (PANTHERLAKE) [12:33:54] [PASSED] 0xB090 (PANTHERLAKE) [12:33:54] [PASSED] 0xB0A0 (PANTHERLAKE) [12:33:54] [PASSED] 0xB0B0 (PANTHERLAKE) [12:33:54] [PASSED] 0xFD80 (PANTHERLAKE) [12:33:54] [PASSED] 0xFD81 (PANTHERLAKE) [12:33:54] [PASSED] 0xD740 (NOVALAKE_S) [12:33:54] [PASSED] 0xD741 (NOVALAKE_S) [12:33:54] [PASSED] 0xD742 (NOVALAKE_S) [12:33:54] [PASSED] 0xD743 (NOVALAKE_S) [12:33:54] [PASSED] 0xD744 (NOVALAKE_S) [12:33:54] [PASSED] 0xD745 (NOVALAKE_S) [12:33:54] [PASSED] 0x674C (CRESCENTISLAND) [12:33:54] [PASSED] 0x674D (CRESCENTISLAND) [12:33:54] [PASSED] 0x674E (CRESCENTISLAND) [12:33:54] [PASSED] 0x674F (CRESCENTISLAND) [12:33:54] [PASSED] 0x6750 (CRESCENTISLAND) [12:33:54] [PASSED] 0xD750 (NOVALAKE_P) [12:33:54] [PASSED] 0xD751 (NOVALAKE_P) [12:33:54] [PASSED] 0xD752 (NOVALAKE_P) [12:33:54] [PASSED] 0xD753 (NOVALAKE_P) [12:33:54] [PASSED] 0xD754 (NOVALAKE_P) [12:33:54] [PASSED] 0xD755 (NOVALAKE_P) [12:33:54] [PASSED] 0xD756 (NOVALAKE_P) [12:33:54] [PASSED] 0xD757 (NOVALAKE_P) [12:33:54] [PASSED] 0xD75F (NOVALAKE_P) [12:33:54] =============== [PASSED] check_platform_desc =============== [12:33:54] ===================== [PASSED] xe_pci ====================== [12:33:54] =================== xe_rtp (2 subtests) ==================== [12:33:54] =============== xe_rtp_process_to_sr_tests ================ [12:33:54] [PASSED] coalesce-same-reg [12:33:54] [PASSED] no-match-no-add [12:33:54] [PASSED] match-or [12:33:54] [PASSED] match-or-xfail [12:33:54] [PASSED] no-match-no-add-multiple-rules [12:33:54] [PASSED] two-regs-two-entries [12:33:54] [PASSED] clr-one-set-other [12:33:54] [PASSED] set-field [12:33:54] [PASSED] conflict-duplicate [12:33:54] [PASSED] conflict-not-disjoint [12:33:54] [PASSED] conflict-reg-type [12:33:54] [PASSED] bad-mcr-reg-forced-to-regular [12:33:54] [PASSED] bad-regular-reg-forced-to-mcr [12:33:54] =========== [PASSED] xe_rtp_process_to_sr_tests ============ [12:33:54] ================== xe_rtp_process_tests =================== [12:33:54] [PASSED] active1 [12:33:54] [PASSED] active2 [12:33:54] [PASSED] active-inactive [12:33:54] [PASSED] inactive-active [12:33:54] [PASSED] inactive-1st_or_active-inactive [12:33:54] [PASSED] inactive-2nd_or_active-inactive [12:33:54] [PASSED] inactive-last_or_active-inactive [12:33:54] [PASSED] inactive-no_or_active-inactive [12:33:54] ============== [PASSED] xe_rtp_process_tests =============== [12:33:54] ===================== [PASSED] xe_rtp ====================== [12:33:54] ==================== xe_wa (1 subtest) ===================== [12:33:54] ======================== xe_wa_gt ========================= [12:33:54] [PASSED] TIGERLAKE B0 [12:33:54] [PASSED] DG1 A0 [12:33:54] [PASSED] DG1 B0 [12:33:54] [PASSED] ALDERLAKE_S A0 [12:33:54] [PASSED] ALDERLAKE_S B0 [12:33:54] [PASSED] ALDERLAKE_S C0 [12:33:54] [PASSED] ALDERLAKE_S D0 [12:33:54] [PASSED] ALDERLAKE_P A0 [12:33:54] [PASSED] ALDERLAKE_P B0 [12:33:54] [PASSED] ALDERLAKE_P C0 [12:33:54] [PASSED] ALDERLAKE_S RPLS D0 [12:33:54] [PASSED] ALDERLAKE_P RPLU E0 [12:33:54] [PASSED] DG2 G10 C0 [12:33:54] [PASSED] DG2 G11 B1 [12:33:54] [PASSED] DG2 G12 A1 [12:33:54] [PASSED] METEORLAKE 12.70(Xe_LPG) A0 13.00(Xe_LPM+) A0 [12:33:54] [PASSED] METEORLAKE 12.71(Xe_LPG) A0 13.00(Xe_LPM+) A0 [12:33:54] [PASSED] METEORLAKE 12.74(Xe_LPG+) A0 13.00(Xe_LPM+) A0 [12:33:54] [PASSED] LUNARLAKE 20.04(Xe2_LPG) A0 20.00(Xe2_LPM) A0 [12:33:54] [PASSED] LUNARLAKE 20.04(Xe2_LPG) B0 20.00(Xe2_LPM) A0 [12:33:54] [PASSED] BATTLEMAGE 20.01(Xe2_HPG) A0 13.01(Xe2_HPM) A1 [12:33:54] [PASSED] PANTHERLAKE 30.00(Xe3_LPG) A0 30.00(Xe3_LPM) A0 [12:33:54] ==================== [PASSED] xe_wa_gt ===================== [12:33:54] ====================== [PASSED] xe_wa ====================== [12:33:54] ============================================================ [12:33:54] Testing complete. Ran 603 tests: passed: 585, skipped: 18 [12:33:54] Elapsed time: 36.149s total, 4.282s configuring, 31.200s building, 0.621s running + /kernel/tools/testing/kunit/kunit.py run --kunitconfig /kernel/drivers/gpu/drm/tests/.kunitconfig [12:33:54] Configuring KUnit Kernel ... Regenerating .config ... Populating config with: $ make ARCH=um O=.kunit olddefconfig [12:33:56] 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:34:20] Starting KUnit Kernel (1/1)... [12:34:20] ============================================================ Running tests with: $ .kunit/linux kunit.enable=1 mem=1G console=tty kunit_shutdown=halt [12:34:20] ============ drm_test_pick_cmdline (2 subtests) ============ [12:34:20] [PASSED] drm_test_pick_cmdline_res_1920_1080_60 [12:34:20] =============== drm_test_pick_cmdline_named =============== [12:34:20] [PASSED] NTSC [12:34:20] [PASSED] NTSC-J [12:34:20] [PASSED] PAL [12:34:20] [PASSED] PAL-M [12:34:20] =========== [PASSED] drm_test_pick_cmdline_named =========== [12:34:20] ============== [PASSED] drm_test_pick_cmdline ============== [12:34:20] == drm_test_atomic_get_connector_for_encoder (1 subtest) === [12:34:20] [PASSED] drm_test_drm_atomic_get_connector_for_encoder [12:34:20] ==== [PASSED] drm_test_atomic_get_connector_for_encoder ==== [12:34:20] =========== drm_validate_clone_mode (2 subtests) =========== [12:34:20] ============== drm_test_check_in_clone_mode =============== [12:34:20] [PASSED] in_clone_mode [12:34:20] [PASSED] not_in_clone_mode [12:34:20] ========== [PASSED] drm_test_check_in_clone_mode =========== [12:34:20] =============== drm_test_check_valid_clones =============== [12:34:20] [PASSED] not_in_clone_mode [12:34:20] [PASSED] valid_clone [12:34:20] [PASSED] invalid_clone [12:34:20] =========== [PASSED] drm_test_check_valid_clones =========== [12:34:20] ============= [PASSED] drm_validate_clone_mode ============= [12:34:20] ============= drm_validate_modeset (1 subtest) ============= [12:34:20] [PASSED] drm_test_check_connector_changed_modeset [12:34:20] ============== [PASSED] drm_validate_modeset =============== [12:34:20] ====== drm_test_bridge_get_current_state (2 subtests) ====== [12:34:20] [PASSED] drm_test_drm_bridge_get_current_state_atomic [12:34:20] [PASSED] drm_test_drm_bridge_get_current_state_legacy [12:34:20] ======== [PASSED] drm_test_bridge_get_current_state ======== [12:34:20] ====== drm_test_bridge_helper_reset_crtc (3 subtests) ====== [12:34:20] [PASSED] drm_test_drm_bridge_helper_reset_crtc_atomic [12:34:20] [PASSED] drm_test_drm_bridge_helper_reset_crtc_atomic_disabled [12:34:20] [PASSED] drm_test_drm_bridge_helper_reset_crtc_legacy [12:34:20] ======== [PASSED] drm_test_bridge_helper_reset_crtc ======== [12:34:20] ============== drm_bridge_alloc (2 subtests) =============== [12:34:20] [PASSED] drm_test_drm_bridge_alloc_basic [12:34:20] [PASSED] drm_test_drm_bridge_alloc_get_put [12:34:20] ================ [PASSED] drm_bridge_alloc ================= [12:34:20] ============= drm_cmdline_parser (40 subtests) ============= [12:34:20] [PASSED] drm_test_cmdline_force_d_only [12:34:20] [PASSED] drm_test_cmdline_force_D_only_dvi [12:34:20] [PASSED] drm_test_cmdline_force_D_only_hdmi [12:34:20] [PASSED] drm_test_cmdline_force_D_only_not_digital [12:34:20] [PASSED] drm_test_cmdline_force_e_only [12:34:20] [PASSED] drm_test_cmdline_res [12:34:20] [PASSED] drm_test_cmdline_res_vesa [12:34:20] [PASSED] drm_test_cmdline_res_vesa_rblank [12:34:20] [PASSED] drm_test_cmdline_res_rblank [12:34:20] [PASSED] drm_test_cmdline_res_bpp [12:34:20] [PASSED] drm_test_cmdline_res_refresh [12:34:20] [PASSED] drm_test_cmdline_res_bpp_refresh [12:34:20] [PASSED] drm_test_cmdline_res_bpp_refresh_interlaced [12:34:20] [PASSED] drm_test_cmdline_res_bpp_refresh_margins [12:34:20] [PASSED] drm_test_cmdline_res_bpp_refresh_force_off [12:34:20] [PASSED] drm_test_cmdline_res_bpp_refresh_force_on [12:34:20] [PASSED] drm_test_cmdline_res_bpp_refresh_force_on_analog [12:34:20] [PASSED] drm_test_cmdline_res_bpp_refresh_force_on_digital [12:34:20] [PASSED] drm_test_cmdline_res_bpp_refresh_interlaced_margins_force_on [12:34:20] [PASSED] drm_test_cmdline_res_margins_force_on [12:34:20] [PASSED] drm_test_cmdline_res_vesa_margins [12:34:20] [PASSED] drm_test_cmdline_name [12:34:20] [PASSED] drm_test_cmdline_name_bpp [12:34:20] [PASSED] drm_test_cmdline_name_option [12:34:20] [PASSED] drm_test_cmdline_name_bpp_option [12:34:20] [PASSED] drm_test_cmdline_rotate_0 [12:34:20] [PASSED] drm_test_cmdline_rotate_90 [12:34:20] [PASSED] drm_test_cmdline_rotate_180 [12:34:20] [PASSED] drm_test_cmdline_rotate_270 [12:34:20] [PASSED] drm_test_cmdline_hmirror [12:34:20] [PASSED] drm_test_cmdline_vmirror [12:34:20] [PASSED] drm_test_cmdline_margin_options [12:34:20] [PASSED] drm_test_cmdline_multiple_options [12:34:20] [PASSED] drm_test_cmdline_bpp_extra_and_option [12:34:20] [PASSED] drm_test_cmdline_extra_and_option [12:34:20] [PASSED] drm_test_cmdline_freestanding_options [12:34:20] [PASSED] drm_test_cmdline_freestanding_force_e_and_options [12:34:20] [PASSED] drm_test_cmdline_panel_orientation [12:34:20] ================ drm_test_cmdline_invalid ================= [12:34:20] [PASSED] margin_only [12:34:20] [PASSED] interlace_only [12:34:20] [PASSED] res_missing_x [12:34:20] [PASSED] res_missing_y [12:34:20] [PASSED] res_bad_y [12:34:20] [PASSED] res_missing_y_bpp [12:34:20] [PASSED] res_bad_bpp [12:34:20] [PASSED] res_bad_refresh [12:34:20] [PASSED] res_bpp_refresh_force_on_off [12:34:20] [PASSED] res_invalid_mode [12:34:20] [PASSED] res_bpp_wrong_place_mode [12:34:20] [PASSED] name_bpp_refresh [12:34:20] [PASSED] name_refresh [12:34:20] [PASSED] name_refresh_wrong_mode [12:34:20] [PASSED] name_refresh_invalid_mode [12:34:20] [PASSED] rotate_multiple [12:34:20] [PASSED] rotate_invalid_val [12:34:20] [PASSED] rotate_truncated [12:34:20] [PASSED] invalid_option [12:34:20] [PASSED] invalid_tv_option [12:34:20] [PASSED] truncated_tv_option [12:34:20] ============ [PASSED] drm_test_cmdline_invalid ============= [12:34:20] =============== drm_test_cmdline_tv_options =============== [12:34:20] [PASSED] NTSC [12:34:20] [PASSED] NTSC_443 [12:34:20] [PASSED] NTSC_J [12:34:20] [PASSED] PAL [12:34:20] [PASSED] PAL_M [12:34:20] [PASSED] PAL_N [12:34:20] [PASSED] SECAM [12:34:20] [PASSED] MONO_525 [12:34:20] [PASSED] MONO_625 [12:34:20] =========== [PASSED] drm_test_cmdline_tv_options =========== [12:34:20] =============== [PASSED] drm_cmdline_parser ================ [12:34:20] ========== drmm_connector_hdmi_init (20 subtests) ========== [12:34:20] [PASSED] drm_test_connector_hdmi_init_valid [12:34:20] [PASSED] drm_test_connector_hdmi_init_bpc_8 [12:34:20] [PASSED] drm_test_connector_hdmi_init_bpc_10 [12:34:20] [PASSED] drm_test_connector_hdmi_init_bpc_12 [12:34:20] [PASSED] drm_test_connector_hdmi_init_bpc_invalid [12:34:20] [PASSED] drm_test_connector_hdmi_init_bpc_null [12:34:20] [PASSED] drm_test_connector_hdmi_init_formats_empty [12:34:20] [PASSED] drm_test_connector_hdmi_init_formats_no_rgb [12:34:20] === drm_test_connector_hdmi_init_formats_yuv420_allowed === [12:34:20] [PASSED] supported_formats=0x9 yuv420_allowed=1 [12:34:20] [PASSED] supported_formats=0x9 yuv420_allowed=0 [12:34:20] [PASSED] supported_formats=0x5 yuv420_allowed=1 [12:34:20] [PASSED] supported_formats=0x5 yuv420_allowed=0 [12:34:20] === [PASSED] drm_test_connector_hdmi_init_formats_yuv420_allowed === [12:34:20] [PASSED] drm_test_connector_hdmi_init_null_ddc [12:34:20] [PASSED] drm_test_connector_hdmi_init_null_product [12:34:20] [PASSED] drm_test_connector_hdmi_init_null_vendor [12:34:20] [PASSED] drm_test_connector_hdmi_init_product_length_exact [12:34:20] [PASSED] drm_test_connector_hdmi_init_product_length_too_long [12:34:20] [PASSED] drm_test_connector_hdmi_init_product_valid [12:34:20] [PASSED] drm_test_connector_hdmi_init_vendor_length_exact [12:34:20] [PASSED] drm_test_connector_hdmi_init_vendor_length_too_long [12:34:20] [PASSED] drm_test_connector_hdmi_init_vendor_valid [12:34:20] ========= drm_test_connector_hdmi_init_type_valid ========= [12:34:20] [PASSED] HDMI-A [12:34:20] [PASSED] HDMI-B [12:34:20] ===== [PASSED] drm_test_connector_hdmi_init_type_valid ===== [12:34:20] ======== drm_test_connector_hdmi_init_type_invalid ======== [12:34:20] [PASSED] Unknown [12:34:20] [PASSED] VGA [12:34:20] [PASSED] DVI-I [12:34:20] [PASSED] DVI-D [12:34:20] [PASSED] DVI-A [12:34:20] [PASSED] Composite [12:34:20] [PASSED] SVIDEO [12:34:20] [PASSED] LVDS [12:34:20] [PASSED] Component [12:34:20] [PASSED] DIN [12:34:20] [PASSED] DP [12:34:20] [PASSED] TV [12:34:20] [PASSED] eDP [12:34:20] [PASSED] Virtual [12:34:20] [PASSED] DSI [12:34:20] [PASSED] DPI [12:34:20] [PASSED] Writeback [12:34:20] [PASSED] SPI [12:34:20] [PASSED] USB [12:34:20] ==== [PASSED] drm_test_connector_hdmi_init_type_invalid ==== [12:34:20] ============ [PASSED] drmm_connector_hdmi_init ============= [12:34:20] ============= drmm_connector_init (3 subtests) ============= [12:34:20] [PASSED] drm_test_drmm_connector_init [12:34:20] [PASSED] drm_test_drmm_connector_init_null_ddc [12:34:20] ========= drm_test_drmm_connector_init_type_valid ========= [12:34:20] [PASSED] Unknown [12:34:20] [PASSED] VGA [12:34:20] [PASSED] DVI-I [12:34:20] [PASSED] DVI-D [12:34:20] [PASSED] DVI-A [12:34:20] [PASSED] Composite [12:34:20] [PASSED] SVIDEO [12:34:20] [PASSED] LVDS [12:34:20] [PASSED] Component [12:34:20] [PASSED] DIN [12:34:20] [PASSED] DP [12:34:20] [PASSED] HDMI-A [12:34:20] [PASSED] HDMI-B [12:34:20] [PASSED] TV [12:34:20] [PASSED] eDP [12:34:20] [PASSED] Virtual [12:34:20] [PASSED] DSI [12:34:20] [PASSED] DPI [12:34:20] [PASSED] Writeback [12:34:20] [PASSED] SPI [12:34:20] [PASSED] USB [12:34:20] ===== [PASSED] drm_test_drmm_connector_init_type_valid ===== [12:34:20] =============== [PASSED] drmm_connector_init =============== [12:34:20] ========= drm_connector_dynamic_init (6 subtests) ========== [12:34:20] [PASSED] drm_test_drm_connector_dynamic_init [12:34:20] [PASSED] drm_test_drm_connector_dynamic_init_null_ddc [12:34:20] [PASSED] drm_test_drm_connector_dynamic_init_not_added [12:34:20] [PASSED] drm_test_drm_connector_dynamic_init_properties [12:34:20] ===== drm_test_drm_connector_dynamic_init_type_valid ====== [12:34:20] [PASSED] Unknown [12:34:20] [PASSED] VGA [12:34:20] [PASSED] DVI-I [12:34:20] [PASSED] DVI-D [12:34:20] [PASSED] DVI-A [12:34:20] [PASSED] Composite [12:34:20] [PASSED] SVIDEO [12:34:20] [PASSED] LVDS [12:34:20] [PASSED] Component [12:34:20] [PASSED] DIN [12:34:20] [PASSED] DP [12:34:20] [PASSED] HDMI-A [12:34:20] [PASSED] HDMI-B [12:34:20] [PASSED] TV [12:34:20] [PASSED] eDP [12:34:20] [PASSED] Virtual [12:34:20] [PASSED] DSI [12:34:20] [PASSED] DPI [12:34:20] [PASSED] Writeback [12:34:20] [PASSED] SPI [12:34:20] [PASSED] USB [12:34:20] = [PASSED] drm_test_drm_connector_dynamic_init_type_valid == [12:34:20] ======== drm_test_drm_connector_dynamic_init_name ========= [12:34:20] [PASSED] Unknown [12:34:20] [PASSED] VGA [12:34:20] [PASSED] DVI-I [12:34:20] [PASSED] DVI-D [12:34:20] [PASSED] DVI-A [12:34:20] [PASSED] Composite [12:34:20] [PASSED] SVIDEO [12:34:20] [PASSED] LVDS [12:34:20] [PASSED] Component [12:34:20] [PASSED] DIN [12:34:20] [PASSED] DP [12:34:20] [PASSED] HDMI-A [12:34:20] [PASSED] HDMI-B [12:34:20] [PASSED] TV [12:34:20] [PASSED] eDP [12:34:20] [PASSED] Virtual [12:34:20] [PASSED] DSI [12:34:20] [PASSED] DPI [12:34:20] [PASSED] Writeback [12:34:20] [PASSED] SPI [12:34:20] [PASSED] USB [12:34:20] ==== [PASSED] drm_test_drm_connector_dynamic_init_name ===== [12:34:20] =========== [PASSED] drm_connector_dynamic_init ============ [12:34:20] ==== drm_connector_dynamic_register_early (4 subtests) ===== [12:34:20] [PASSED] drm_test_drm_connector_dynamic_register_early_on_list [12:34:20] [PASSED] drm_test_drm_connector_dynamic_register_early_defer [12:34:20] [PASSED] drm_test_drm_connector_dynamic_register_early_no_init [12:34:20] [PASSED] drm_test_drm_connector_dynamic_register_early_no_mode_object [12:34:20] ====== [PASSED] drm_connector_dynamic_register_early ======= [12:34:20] ======= drm_connector_dynamic_register (7 subtests) ======== [12:34:20] [PASSED] drm_test_drm_connector_dynamic_register_on_list [12:34:20] [PASSED] drm_test_drm_connector_dynamic_register_no_defer [12:34:20] [PASSED] drm_test_drm_connector_dynamic_register_no_init [12:34:20] [PASSED] drm_test_drm_connector_dynamic_register_mode_object [12:34:20] [PASSED] drm_test_drm_connector_dynamic_register_sysfs [12:34:20] [PASSED] drm_test_drm_connector_dynamic_register_sysfs_name [12:34:20] [PASSED] drm_test_drm_connector_dynamic_register_debugfs [12:34:20] ========= [PASSED] drm_connector_dynamic_register ========== [12:34:20] = drm_connector_attach_broadcast_rgb_property (2 subtests) = [12:34:20] [PASSED] drm_test_drm_connector_attach_broadcast_rgb_property [12:34:20] [PASSED] drm_test_drm_connector_attach_broadcast_rgb_property_hdmi_connector [12:34:20] === [PASSED] drm_connector_attach_broadcast_rgb_property === [12:34:20] ========== drm_get_tv_mode_from_name (2 subtests) ========== [12:34:20] ========== drm_test_get_tv_mode_from_name_valid =========== [12:34:20] [PASSED] NTSC [12:34:20] [PASSED] NTSC-443 [12:34:20] [PASSED] NTSC-J [12:34:20] [PASSED] PAL [12:34:20] [PASSED] PAL-M [12:34:20] [PASSED] PAL-N [12:34:20] [PASSED] SECAM [12:34:20] [PASSED] Mono [12:34:20] ====== [PASSED] drm_test_get_tv_mode_from_name_valid ======= [12:34:20] [PASSED] drm_test_get_tv_mode_from_name_truncated [12:34:20] ============ [PASSED] drm_get_tv_mode_from_name ============ [12:34:20] = drm_test_connector_hdmi_compute_mode_clock (12 subtests) = [12:34:20] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb [12:34:20] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb_10bpc [12:34:20] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb_10bpc_vic_1 [12:34:20] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb_12bpc [12:34:20] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb_12bpc_vic_1 [12:34:20] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb_double [12:34:20] = drm_test_connector_hdmi_compute_mode_clock_yuv420_valid = [12:34:20] [PASSED] VIC 96 [12:34:20] [PASSED] VIC 97 [12:34:20] [PASSED] VIC 101 [12:34:20] [PASSED] VIC 102 [12:34:20] [PASSED] VIC 106 [12:34:20] [PASSED] VIC 107 [12:34:20] === [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv420_valid === [12:34:20] [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv420_10_bpc [12:34:20] [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv420_12_bpc [12:34:20] [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv422_8_bpc [12:34:20] [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv422_10_bpc [12:34:20] [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv422_12_bpc [12:34:20] === [PASSED] drm_test_connector_hdmi_compute_mode_clock ==== [12:34:20] == drm_hdmi_connector_get_broadcast_rgb_name (2 subtests) == [12:34:20] === drm_test_drm_hdmi_connector_get_broadcast_rgb_name ==== [12:34:20] [PASSED] Automatic [12:34:20] [PASSED] Full [12:34:20] [PASSED] Limited 16:235 [12:34:20] === [PASSED] drm_test_drm_hdmi_connector_get_broadcast_rgb_name === [12:34:20] [PASSED] drm_test_drm_hdmi_connector_get_broadcast_rgb_name_invalid [12:34:20] ==== [PASSED] drm_hdmi_connector_get_broadcast_rgb_name ==== [12:34:20] == drm_hdmi_connector_get_output_format_name (2 subtests) == [12:34:20] === drm_test_drm_hdmi_connector_get_output_format_name ==== [12:34:20] [PASSED] RGB [12:34:20] [PASSED] YUV 4:2:0 [12:34:20] [PASSED] YUV 4:2:2 [12:34:20] [PASSED] YUV 4:4:4 [12:34:20] === [PASSED] drm_test_drm_hdmi_connector_get_output_format_name === [12:34:20] [PASSED] drm_test_drm_hdmi_connector_get_output_format_name_invalid [12:34:20] ==== [PASSED] drm_hdmi_connector_get_output_format_name ==== [12:34:20] ============= drm_damage_helper (21 subtests) ============== [12:34:20] [PASSED] drm_test_damage_iter_no_damage [12:34:20] [PASSED] drm_test_damage_iter_no_damage_fractional_src [12:34:20] [PASSED] drm_test_damage_iter_no_damage_src_moved [12:34:20] [PASSED] drm_test_damage_iter_no_damage_fractional_src_moved [12:34:20] [PASSED] drm_test_damage_iter_no_damage_not_visible [12:34:20] [PASSED] drm_test_damage_iter_no_damage_no_crtc [12:34:20] [PASSED] drm_test_damage_iter_no_damage_no_fb [12:34:20] [PASSED] drm_test_damage_iter_simple_damage [12:34:20] [PASSED] drm_test_damage_iter_single_damage [12:34:20] [PASSED] drm_test_damage_iter_single_damage_intersect_src [12:34:20] [PASSED] drm_test_damage_iter_single_damage_outside_src [12:34:20] [PASSED] drm_test_damage_iter_single_damage_fractional_src [12:34:20] [PASSED] drm_test_damage_iter_single_damage_intersect_fractional_src [12:34:20] [PASSED] drm_test_damage_iter_single_damage_outside_fractional_src [12:34:20] [PASSED] drm_test_damage_iter_single_damage_src_moved [12:34:20] [PASSED] drm_test_damage_iter_single_damage_fractional_src_moved [12:34:20] [PASSED] drm_test_damage_iter_damage [12:34:20] [PASSED] drm_test_damage_iter_damage_one_intersect [12:34:20] [PASSED] drm_test_damage_iter_damage_one_outside [12:34:20] [PASSED] drm_test_damage_iter_damage_src_moved [12:34:20] [PASSED] drm_test_damage_iter_damage_not_visible [12:34:20] ================ [PASSED] drm_damage_helper ================ [12:34:20] ============== drm_dp_mst_helper (3 subtests) ============== [12:34:20] ============== drm_test_dp_mst_calc_pbn_mode ============== [12:34:20] [PASSED] Clock 154000 BPP 30 DSC disabled [12:34:20] [PASSED] Clock 234000 BPP 30 DSC disabled [12:34:20] [PASSED] Clock 297000 BPP 24 DSC disabled [12:34:20] [PASSED] Clock 332880 BPP 24 DSC enabled [12:34:20] [PASSED] Clock 324540 BPP 24 DSC enabled [12:34:20] ========== [PASSED] drm_test_dp_mst_calc_pbn_mode ========== [12:34:20] ============== drm_test_dp_mst_calc_pbn_div =============== [12:34:20] [PASSED] Link rate 2000000 lane count 4 [12:34:20] [PASSED] Link rate 2000000 lane count 2 [12:34:20] [PASSED] Link rate 2000000 lane count 1 [12:34:20] [PASSED] Link rate 1350000 lane count 4 [12:34:20] [PASSED] Link rate 1350000 lane count 2 [12:34:20] [PASSED] Link rate 1350000 lane count 1 [12:34:20] [PASSED] Link rate 1000000 lane count 4 [12:34:20] [PASSED] Link rate 1000000 lane count 2 [12:34:20] [PASSED] Link rate 1000000 lane count 1 [12:34:20] [PASSED] Link rate 810000 lane count 4 [12:34:20] [PASSED] Link rate 810000 lane count 2 [12:34:20] [PASSED] Link rate 810000 lane count 1 [12:34:20] [PASSED] Link rate 540000 lane count 4 [12:34:20] [PASSED] Link rate 540000 lane count 2 [12:34:20] [PASSED] Link rate 540000 lane count 1 [12:34:20] [PASSED] Link rate 270000 lane count 4 [12:34:20] [PASSED] Link rate 270000 lane count 2 [12:34:20] [PASSED] Link rate 270000 lane count 1 [12:34:20] [PASSED] Link rate 162000 lane count 4 [12:34:20] [PASSED] Link rate 162000 lane count 2 [12:34:20] [PASSED] Link rate 162000 lane count 1 [12:34:20] ========== [PASSED] drm_test_dp_mst_calc_pbn_div =========== [12:34:20] ========= drm_test_dp_mst_sideband_msg_req_decode ========= [12:34:20] [PASSED] DP_ENUM_PATH_RESOURCES with port number [12:34:20] [PASSED] DP_POWER_UP_PHY with port number [12:34:20] [PASSED] DP_POWER_DOWN_PHY with port number [12:34:20] [PASSED] DP_ALLOCATE_PAYLOAD with SDP stream sinks [12:34:20] [PASSED] DP_ALLOCATE_PAYLOAD with port number [12:34:20] [PASSED] DP_ALLOCATE_PAYLOAD with VCPI [12:34:20] [PASSED] DP_ALLOCATE_PAYLOAD with PBN [12:34:20] [PASSED] DP_QUERY_PAYLOAD with port number [12:34:20] [PASSED] DP_QUERY_PAYLOAD with VCPI [12:34:20] [PASSED] DP_REMOTE_DPCD_READ with port number [12:34:20] [PASSED] DP_REMOTE_DPCD_READ with DPCD address [12:34:20] [PASSED] DP_REMOTE_DPCD_READ with max number of bytes [12:34:20] [PASSED] DP_REMOTE_DPCD_WRITE with port number [12:34:20] [PASSED] DP_REMOTE_DPCD_WRITE with DPCD address [12:34:20] [PASSED] DP_REMOTE_DPCD_WRITE with data array [12:34:20] [PASSED] DP_REMOTE_I2C_READ with port number [12:34:20] [PASSED] DP_REMOTE_I2C_READ with I2C device ID [12:34:20] [PASSED] DP_REMOTE_I2C_READ with transactions array [12:34:20] [PASSED] DP_REMOTE_I2C_WRITE with port number [12:34:20] [PASSED] DP_REMOTE_I2C_WRITE with I2C device ID [12:34:20] [PASSED] DP_REMOTE_I2C_WRITE with data array [12:34:20] [PASSED] DP_QUERY_STREAM_ENC_STATUS with stream ID [12:34:20] [PASSED] DP_QUERY_STREAM_ENC_STATUS with client ID [12:34:20] [PASSED] DP_QUERY_STREAM_ENC_STATUS with stream event [12:34:20] [PASSED] DP_QUERY_STREAM_ENC_STATUS with valid stream event [12:34:20] [PASSED] DP_QUERY_STREAM_ENC_STATUS with stream behavior [12:34:20] [PASSED] DP_QUERY_STREAM_ENC_STATUS with a valid stream behavior [12:34:20] ===== [PASSED] drm_test_dp_mst_sideband_msg_req_decode ===== [12:34:20] ================ [PASSED] drm_dp_mst_helper ================ [12:34:20] ================== drm_exec (7 subtests) =================== [12:34:20] [PASSED] sanitycheck [12:34:20] [PASSED] test_lock [12:34:20] [PASSED] test_lock_unlock [12:34:20] [PASSED] test_duplicates [12:34:20] [PASSED] test_prepare [12:34:20] [PASSED] test_prepare_array [12:34:20] [PASSED] test_multiple_loops [12:34:20] ==================== [PASSED] drm_exec ===================== [12:34:20] =========== drm_format_helper_test (17 subtests) =========== [12:34:20] ============== drm_test_fb_xrgb8888_to_gray8 ============== [12:34:20] [PASSED] single_pixel_source_buffer [12:34:20] [PASSED] single_pixel_clip_rectangle [12:34:20] [PASSED] well_known_colors [12:34:20] [PASSED] destination_pitch [12:34:20] ========== [PASSED] drm_test_fb_xrgb8888_to_gray8 ========== [12:34:20] ============= drm_test_fb_xrgb8888_to_rgb332 ============== [12:34:20] [PASSED] single_pixel_source_buffer [12:34:20] [PASSED] single_pixel_clip_rectangle [12:34:20] [PASSED] well_known_colors [12:34:20] [PASSED] destination_pitch [12:34:20] ========= [PASSED] drm_test_fb_xrgb8888_to_rgb332 ========== [12:34:20] ============= drm_test_fb_xrgb8888_to_rgb565 ============== [12:34:20] [PASSED] single_pixel_source_buffer [12:34:20] [PASSED] single_pixel_clip_rectangle [12:34:20] [PASSED] well_known_colors [12:34:20] [PASSED] destination_pitch [12:34:20] ========= [PASSED] drm_test_fb_xrgb8888_to_rgb565 ========== [12:34:20] ============ drm_test_fb_xrgb8888_to_xrgb1555 ============= [12:34:20] [PASSED] single_pixel_source_buffer [12:34:20] [PASSED] single_pixel_clip_rectangle [12:34:20] [PASSED] well_known_colors [12:34:20] [PASSED] destination_pitch [12:34:20] ======== [PASSED] drm_test_fb_xrgb8888_to_xrgb1555 ========= [12:34:20] ============ drm_test_fb_xrgb8888_to_argb1555 ============= [12:34:20] [PASSED] single_pixel_source_buffer [12:34:20] [PASSED] single_pixel_clip_rectangle [12:34:20] [PASSED] well_known_colors [12:34:20] [PASSED] destination_pitch [12:34:20] ======== [PASSED] drm_test_fb_xrgb8888_to_argb1555 ========= [12:34:20] ============ drm_test_fb_xrgb8888_to_rgba5551 ============= [12:34:20] [PASSED] single_pixel_source_buffer [12:34:20] [PASSED] single_pixel_clip_rectangle [12:34:20] [PASSED] well_known_colors [12:34:20] [PASSED] destination_pitch [12:34:20] ======== [PASSED] drm_test_fb_xrgb8888_to_rgba5551 ========= [12:34:20] ============= drm_test_fb_xrgb8888_to_rgb888 ============== [12:34:20] [PASSED] single_pixel_source_buffer [12:34:20] [PASSED] single_pixel_clip_rectangle [12:34:20] [PASSED] well_known_colors [12:34:20] [PASSED] destination_pitch [12:34:20] ========= [PASSED] drm_test_fb_xrgb8888_to_rgb888 ========== [12:34:20] ============= drm_test_fb_xrgb8888_to_bgr888 ============== [12:34:20] [PASSED] single_pixel_source_buffer [12:34:20] [PASSED] single_pixel_clip_rectangle [12:34:20] [PASSED] well_known_colors [12:34:20] [PASSED] destination_pitch [12:34:20] ========= [PASSED] drm_test_fb_xrgb8888_to_bgr888 ========== [12:34:20] ============ drm_test_fb_xrgb8888_to_argb8888 ============= [12:34:20] [PASSED] single_pixel_source_buffer [12:34:20] [PASSED] single_pixel_clip_rectangle [12:34:20] [PASSED] well_known_colors [12:34:20] [PASSED] destination_pitch [12:34:20] ======== [PASSED] drm_test_fb_xrgb8888_to_argb8888 ========= [12:34:20] =========== drm_test_fb_xrgb8888_to_xrgb2101010 =========== [12:34:20] [PASSED] single_pixel_source_buffer [12:34:20] [PASSED] single_pixel_clip_rectangle [12:34:20] [PASSED] well_known_colors [12:34:20] [PASSED] destination_pitch [12:34:20] ======= [PASSED] drm_test_fb_xrgb8888_to_xrgb2101010 ======= [12:34:20] =========== drm_test_fb_xrgb8888_to_argb2101010 =========== [12:34:20] [PASSED] single_pixel_source_buffer [12:34:20] [PASSED] single_pixel_clip_rectangle [12:34:20] [PASSED] well_known_colors [12:34:20] [PASSED] destination_pitch [12:34:20] ======= [PASSED] drm_test_fb_xrgb8888_to_argb2101010 ======= [12:34:20] ============== drm_test_fb_xrgb8888_to_mono =============== [12:34:20] [PASSED] single_pixel_source_buffer [12:34:20] [PASSED] single_pixel_clip_rectangle [12:34:20] [PASSED] well_known_colors [12:34:20] [PASSED] destination_pitch [12:34:20] ========== [PASSED] drm_test_fb_xrgb8888_to_mono =========== [12:34:20] ==================== drm_test_fb_swab ===================== [12:34:20] [PASSED] single_pixel_source_buffer [12:34:20] [PASSED] single_pixel_clip_rectangle [12:34:20] [PASSED] well_known_colors [12:34:20] [PASSED] destination_pitch [12:34:20] ================ [PASSED] drm_test_fb_swab ================= [12:34:20] ============ drm_test_fb_xrgb8888_to_xbgr8888 ============= [12:34:20] [PASSED] single_pixel_source_buffer [12:34:20] [PASSED] single_pixel_clip_rectangle [12:34:20] [PASSED] well_known_colors [12:34:20] [PASSED] destination_pitch [12:34:20] ======== [PASSED] drm_test_fb_xrgb8888_to_xbgr8888 ========= [12:34:20] ============ drm_test_fb_xrgb8888_to_abgr8888 ============= [12:34:20] [PASSED] single_pixel_source_buffer [12:34:20] [PASSED] single_pixel_clip_rectangle [12:34:20] [PASSED] well_known_colors [12:34:20] [PASSED] destination_pitch [12:34:20] ======== [PASSED] drm_test_fb_xrgb8888_to_abgr8888 ========= [12:34:20] ================= drm_test_fb_clip_offset ================= [12:34:20] [PASSED] pass through [12:34:20] [PASSED] horizontal offset [12:34:20] [PASSED] vertical offset [12:34:20] [PASSED] horizontal and vertical offset [12:34:20] [PASSED] horizontal offset (custom pitch) [12:34:20] [PASSED] vertical offset (custom pitch) [12:34:20] [PASSED] horizontal and vertical offset (custom pitch) [12:34:20] ============= [PASSED] drm_test_fb_clip_offset ============= [12:34:20] =================== drm_test_fb_memcpy ==================== [12:34:20] [PASSED] single_pixel_source_buffer: XR24 little-endian (0x34325258) [12:34:20] [PASSED] single_pixel_source_buffer: XRA8 little-endian (0x38415258) [12:34:20] [PASSED] single_pixel_source_buffer: YU24 little-endian (0x34325559) [12:34:20] [PASSED] single_pixel_clip_rectangle: XB24 little-endian (0x34324258) [12:34:20] [PASSED] single_pixel_clip_rectangle: XRA8 little-endian (0x38415258) [12:34:20] [PASSED] single_pixel_clip_rectangle: YU24 little-endian (0x34325559) [12:34:20] [PASSED] well_known_colors: XB24 little-endian (0x34324258) [12:34:20] [PASSED] well_known_colors: XRA8 little-endian (0x38415258) [12:34:20] [PASSED] well_known_colors: YU24 little-endian (0x34325559) [12:34:20] [PASSED] destination_pitch: XB24 little-endian (0x34324258) [12:34:20] [PASSED] destination_pitch: XRA8 little-endian (0x38415258) [12:34:20] [PASSED] destination_pitch: YU24 little-endian (0x34325559) [12:34:20] =============== [PASSED] drm_test_fb_memcpy ================ [12:34:20] ============= [PASSED] drm_format_helper_test ============== [12:34:20] ================= drm_format (18 subtests) ================= [12:34:20] [PASSED] drm_test_format_block_width_invalid [12:34:20] [PASSED] drm_test_format_block_width_one_plane [12:34:20] [PASSED] drm_test_format_block_width_two_plane [12:34:20] [PASSED] drm_test_format_block_width_three_plane [12:34:20] [PASSED] drm_test_format_block_width_tiled [12:34:20] [PASSED] drm_test_format_block_height_invalid [12:34:20] [PASSED] drm_test_format_block_height_one_plane [12:34:20] [PASSED] drm_test_format_block_height_two_plane [12:34:20] [PASSED] drm_test_format_block_height_three_plane [12:34:20] [PASSED] drm_test_format_block_height_tiled [12:34:20] [PASSED] drm_test_format_min_pitch_invalid [12:34:20] [PASSED] drm_test_format_min_pitch_one_plane_8bpp [12:34:20] [PASSED] drm_test_format_min_pitch_one_plane_16bpp [12:34:20] [PASSED] drm_test_format_min_pitch_one_plane_24bpp [12:34:20] [PASSED] drm_test_format_min_pitch_one_plane_32bpp [12:34:20] [PASSED] drm_test_format_min_pitch_two_plane [12:34:20] [PASSED] drm_test_format_min_pitch_three_plane_8bpp [12:34:20] [PASSED] drm_test_format_min_pitch_tiled [12:34:20] =================== [PASSED] drm_format ==================== [12:34:20] ============== drm_framebuffer (10 subtests) =============== [12:34:20] ========== drm_test_framebuffer_check_src_coords ========== [12:34:20] [PASSED] Success: source fits into fb [12:34:20] [PASSED] Fail: overflowing fb with x-axis coordinate [12:34:20] [PASSED] Fail: overflowing fb with y-axis coordinate [12:34:20] [PASSED] Fail: overflowing fb with source width [12:34:20] [PASSED] Fail: overflowing fb with source height [12:34:20] ====== [PASSED] drm_test_framebuffer_check_src_coords ====== [12:34:20] [PASSED] drm_test_framebuffer_cleanup [12:34:20] =============== drm_test_framebuffer_create =============== [12:34:20] [PASSED] ABGR8888 normal sizes [12:34:20] [PASSED] ABGR8888 max sizes [12:34:20] [PASSED] ABGR8888 pitch greater than min required [12:34:20] [PASSED] ABGR8888 pitch less than min required [12:34:20] [PASSED] ABGR8888 Invalid width [12:34:20] [PASSED] ABGR8888 Invalid buffer handle [12:34:20] [PASSED] No pixel format [12:34:20] [PASSED] ABGR8888 Width 0 [12:34:20] [PASSED] ABGR8888 Height 0 [12:34:20] [PASSED] ABGR8888 Out of bound height * pitch combination [12:34:20] [PASSED] ABGR8888 Large buffer offset [12:34:20] [PASSED] ABGR8888 Buffer offset for inexistent plane [12:34:20] [PASSED] ABGR8888 Invalid flag [12:34:20] [PASSED] ABGR8888 Set DRM_MODE_FB_MODIFIERS without modifiers [12:34:20] [PASSED] ABGR8888 Valid buffer modifier [12:34:20] [PASSED] ABGR8888 Invalid buffer modifier(DRM_FORMAT_MOD_SAMSUNG_64_32_TILE) [12:34:20] [PASSED] ABGR8888 Extra pitches without DRM_MODE_FB_MODIFIERS [12:34:20] [PASSED] ABGR8888 Extra pitches with DRM_MODE_FB_MODIFIERS [12:34:20] [PASSED] NV12 Normal sizes [12:34:20] [PASSED] NV12 Max sizes [12:34:20] [PASSED] NV12 Invalid pitch [12:34:20] [PASSED] NV12 Invalid modifier/missing DRM_MODE_FB_MODIFIERS flag [12:34:20] [PASSED] NV12 different modifier per-plane [12:34:20] [PASSED] NV12 with DRM_FORMAT_MOD_SAMSUNG_64_32_TILE [12:34:20] [PASSED] NV12 Valid modifiers without DRM_MODE_FB_MODIFIERS [12:34:20] [PASSED] NV12 Modifier for inexistent plane [12:34:20] [PASSED] NV12 Handle for inexistent plane [12:34:20] [PASSED] NV12 Handle for inexistent plane without DRM_MODE_FB_MODIFIERS [12:34:20] [PASSED] YVU420 DRM_MODE_FB_MODIFIERS set without modifier [12:34:20] [PASSED] YVU420 Normal sizes [12:34:20] [PASSED] YVU420 Max sizes [12:34:20] [PASSED] YVU420 Invalid pitch [12:34:20] [PASSED] YVU420 Different pitches [12:34:20] [PASSED] YVU420 Different buffer offsets/pitches [12:34:20] [PASSED] YVU420 Modifier set just for plane 0, without DRM_MODE_FB_MODIFIERS [12:34:20] [PASSED] YVU420 Modifier set just for planes 0, 1, without DRM_MODE_FB_MODIFIERS [12:34:20] [PASSED] YVU420 Modifier set just for plane 0, 1, with DRM_MODE_FB_MODIFIERS [12:34:20] [PASSED] YVU420 Valid modifier [12:34:20] [PASSED] YVU420 Different modifiers per plane [12:34:20] [PASSED] YVU420 Modifier for inexistent plane [12:34:20] [PASSED] YUV420_10BIT Invalid modifier(DRM_FORMAT_MOD_LINEAR) [12:34:20] [PASSED] X0L2 Normal sizes [12:34:20] [PASSED] X0L2 Max sizes [12:34:20] [PASSED] X0L2 Invalid pitch [12:34:20] [PASSED] X0L2 Pitch greater than minimum required [12:34:20] [PASSED] X0L2 Handle for inexistent plane [12:34:20] [PASSED] X0L2 Offset for inexistent plane, without DRM_MODE_FB_MODIFIERS set [12:34:20] [PASSED] X0L2 Modifier without DRM_MODE_FB_MODIFIERS set [12:34:20] [PASSED] X0L2 Valid modifier [12:34:20] [PASSED] X0L2 Modifier for inexistent plane [12:34:20] =========== [PASSED] drm_test_framebuffer_create =========== [12:34:20] [PASSED] drm_test_framebuffer_free [12:34:20] [PASSED] drm_test_framebuffer_init [12:34:20] [PASSED] drm_test_framebuffer_init_bad_format [12:34:20] [PASSED] drm_test_framebuffer_init_dev_mismatch [12:34:20] [PASSED] drm_test_framebuffer_lookup [12:34:20] [PASSED] drm_test_framebuffer_lookup_inexistent [12:34:20] [PASSED] drm_test_framebuffer_modifiers_not_supported [12:34:20] ================= [PASSED] drm_framebuffer ================= [12:34:20] ================ drm_gem_shmem (8 subtests) ================ [12:34:20] [PASSED] drm_gem_shmem_test_obj_create [12:34:20] [PASSED] drm_gem_shmem_test_obj_create_private [12:34:20] [PASSED] drm_gem_shmem_test_pin_pages [12:34:20] [PASSED] drm_gem_shmem_test_vmap [12:34:20] [PASSED] drm_gem_shmem_test_get_sg_table [12:34:20] [PASSED] drm_gem_shmem_test_get_pages_sgt [12:34:20] [PASSED] drm_gem_shmem_test_madvise [12:34:20] [PASSED] drm_gem_shmem_test_purge [12:34:20] ================== [PASSED] drm_gem_shmem ================== [12:34:20] === drm_atomic_helper_connector_hdmi_check (27 subtests) === [12:34:20] [PASSED] drm_test_check_broadcast_rgb_auto_cea_mode [12:34:20] [PASSED] drm_test_check_broadcast_rgb_auto_cea_mode_vic_1 [12:34:20] [PASSED] drm_test_check_broadcast_rgb_full_cea_mode [12:34:20] [PASSED] drm_test_check_broadcast_rgb_full_cea_mode_vic_1 [12:34:20] [PASSED] drm_test_check_broadcast_rgb_limited_cea_mode [12:34:20] [PASSED] drm_test_check_broadcast_rgb_limited_cea_mode_vic_1 [12:34:20] ====== drm_test_check_broadcast_rgb_cea_mode_yuv420 ======= [12:34:20] [PASSED] Automatic [12:34:20] [PASSED] Full [12:34:20] [PASSED] Limited 16:235 [12:34:20] == [PASSED] drm_test_check_broadcast_rgb_cea_mode_yuv420 === [12:34:20] [PASSED] drm_test_check_broadcast_rgb_crtc_mode_changed [12:34:20] [PASSED] drm_test_check_broadcast_rgb_crtc_mode_not_changed [12:34:20] [PASSED] drm_test_check_disable_connector [12:34:20] [PASSED] drm_test_check_hdmi_funcs_reject_rate [12:34:20] [PASSED] drm_test_check_max_tmds_rate_bpc_fallback_rgb [12:34:20] [PASSED] drm_test_check_max_tmds_rate_bpc_fallback_yuv420 [12:34:20] [PASSED] drm_test_check_max_tmds_rate_bpc_fallback_ignore_yuv422 [12:34:20] [PASSED] drm_test_check_max_tmds_rate_bpc_fallback_ignore_yuv420 [12:34:20] [PASSED] drm_test_check_driver_unsupported_fallback_yuv420 [12:34:20] [PASSED] drm_test_check_output_bpc_crtc_mode_changed [12:34:20] [PASSED] drm_test_check_output_bpc_crtc_mode_not_changed [12:34:20] [PASSED] drm_test_check_output_bpc_dvi [12:34:20] [PASSED] drm_test_check_output_bpc_format_vic_1 [12:34:20] [PASSED] drm_test_check_output_bpc_format_display_8bpc_only [12:34:20] [PASSED] drm_test_check_output_bpc_format_display_rgb_only [12:34:20] [PASSED] drm_test_check_output_bpc_format_driver_8bpc_only [12:34:20] [PASSED] drm_test_check_output_bpc_format_driver_rgb_only [12:34:20] [PASSED] drm_test_check_tmds_char_rate_rgb_8bpc [12:34:20] [PASSED] drm_test_check_tmds_char_rate_rgb_10bpc [12:34:20] [PASSED] drm_test_check_tmds_char_rate_rgb_12bpc [12:34:20] ===== [PASSED] drm_atomic_helper_connector_hdmi_check ====== [12:34:20] === drm_atomic_helper_connector_hdmi_reset (6 subtests) ==== [12:34:20] [PASSED] drm_test_check_broadcast_rgb_value [12:34:20] [PASSED] drm_test_check_bpc_8_value [12:34:20] [PASSED] drm_test_check_bpc_10_value [12:34:20] [PASSED] drm_test_check_bpc_12_value [12:34:20] [PASSED] drm_test_check_format_value [12:34:20] [PASSED] drm_test_check_tmds_char_value [12:34:20] ===== [PASSED] drm_atomic_helper_connector_hdmi_reset ====== [12:34:20] = drm_atomic_helper_connector_hdmi_mode_valid (4 subtests) = [12:34:20] [PASSED] drm_test_check_mode_valid [12:34:20] [PASSED] drm_test_check_mode_valid_reject [12:34:20] [PASSED] drm_test_check_mode_valid_reject_rate [12:34:20] [PASSED] drm_test_check_mode_valid_reject_max_clock [12:34:20] === [PASSED] drm_atomic_helper_connector_hdmi_mode_valid === [12:34:20] = drm_atomic_helper_connector_hdmi_infoframes (5 subtests) = [12:34:20] [PASSED] drm_test_check_infoframes [12:34:20] [PASSED] drm_test_check_reject_avi_infoframe [12:34:20] [PASSED] drm_test_check_reject_hdr_infoframe_bpc_8 [12:34:20] [PASSED] drm_test_check_reject_hdr_infoframe_bpc_10 [12:34:20] [PASSED] drm_test_check_reject_audio_infoframe [12:34:20] === [PASSED] drm_atomic_helper_connector_hdmi_infoframes === [12:34:20] ================= drm_managed (2 subtests) ================= [12:34:20] [PASSED] drm_test_managed_release_action [12:34:20] [PASSED] drm_test_managed_run_action [12:34:20] =================== [PASSED] drm_managed =================== [12:34:20] =================== drm_mm (6 subtests) ==================== [12:34:20] [PASSED] drm_test_mm_init [12:34:20] [PASSED] drm_test_mm_debug [12:34:20] [PASSED] drm_test_mm_align32 [12:34:20] [PASSED] drm_test_mm_align64 [12:34:20] [PASSED] drm_test_mm_lowest [12:34:20] [PASSED] drm_test_mm_highest [12:34:20] ===================== [PASSED] drm_mm ====================== [12:34:20] ============= drm_modes_analog_tv (5 subtests) ============= [12:34:20] [PASSED] drm_test_modes_analog_tv_mono_576i [12:34:20] [PASSED] drm_test_modes_analog_tv_ntsc_480i [12:34:20] [PASSED] drm_test_modes_analog_tv_ntsc_480i_inlined [12:34:20] [PASSED] drm_test_modes_analog_tv_pal_576i [12:34:20] [PASSED] drm_test_modes_analog_tv_pal_576i_inlined [12:34:20] =============== [PASSED] drm_modes_analog_tv =============== [12:34:20] ============== drm_plane_helper (2 subtests) =============== [12:34:20] =============== drm_test_check_plane_state ================ [12:34:20] [PASSED] clipping_simple [12:34:20] [PASSED] clipping_rotate_reflect [12:34:20] [PASSED] positioning_simple [12:34:20] [PASSED] upscaling [12:34:20] [PASSED] downscaling [12:34:20] [PASSED] rounding1 [12:34:20] [PASSED] rounding2 [12:34:20] [PASSED] rounding3 [12:34:20] [PASSED] rounding4 [12:34:20] =========== [PASSED] drm_test_check_plane_state ============ [12:34:20] =========== drm_test_check_invalid_plane_state ============ [12:34:20] [PASSED] positioning_invalid [12:34:20] [PASSED] upscaling_invalid [12:34:20] [PASSED] downscaling_invalid [12:34:20] ======= [PASSED] drm_test_check_invalid_plane_state ======== [12:34:20] ================ [PASSED] drm_plane_helper ================= [12:34:20] ====== drm_connector_helper_tv_get_modes (1 subtest) ======= [12:34:20] ====== drm_test_connector_helper_tv_get_modes_check ======= [12:34:20] [PASSED] None [12:34:20] [PASSED] PAL [12:34:20] [PASSED] NTSC [12:34:20] [PASSED] Both, NTSC Default [12:34:20] [PASSED] Both, PAL Default [12:34:20] [PASSED] Both, NTSC Default, with PAL on command-line [12:34:20] [PASSED] Both, PAL Default, with NTSC on command-line [12:34:20] == [PASSED] drm_test_connector_helper_tv_get_modes_check === [12:34:20] ======== [PASSED] drm_connector_helper_tv_get_modes ======== [12:34:20] ================== drm_rect (9 subtests) =================== [12:34:20] [PASSED] drm_test_rect_clip_scaled_div_by_zero [12:34:20] [PASSED] drm_test_rect_clip_scaled_not_clipped [12:34:20] [PASSED] drm_test_rect_clip_scaled_clipped [12:34:20] [PASSED] drm_test_rect_clip_scaled_signed_vs_unsigned [12:34:20] ================= drm_test_rect_intersect ================= [12:34:20] [PASSED] top-left x bottom-right: 2x2+1+1 x 2x2+0+0 [12:34:20] [PASSED] top-right x bottom-left: 2x2+0+0 x 2x2+1-1 [12:34:20] [PASSED] bottom-left x top-right: 2x2+1-1 x 2x2+0+0 [12:34:20] [PASSED] bottom-right x top-left: 2x2+0+0 x 2x2+1+1 [12:34:20] [PASSED] right x left: 2x1+0+0 x 3x1+1+0 [12:34:20] [PASSED] left x right: 3x1+1+0 x 2x1+0+0 [12:34:20] [PASSED] up x bottom: 1x2+0+0 x 1x3+0-1 [12:34:20] [PASSED] bottom x up: 1x3+0-1 x 1x2+0+0 [12:34:20] [PASSED] touching corner: 1x1+0+0 x 2x2+1+1 [12:34:20] [PASSED] touching side: 1x1+0+0 x 1x1+1+0 [12:34:20] [PASSED] equal rects: 2x2+0+0 x 2x2+0+0 [12:34:20] [PASSED] inside another: 2x2+0+0 x 1x1+1+1 [12:34:20] [PASSED] far away: 1x1+0+0 x 1x1+3+6 [12:34:20] [PASSED] points intersecting: 0x0+5+10 x 0x0+5+10 [12:34:20] [PASSED] points not intersecting: 0x0+0+0 x 0x0+5+10 [12:34:20] ============= [PASSED] drm_test_rect_intersect ============= [12:34:20] ================ drm_test_rect_calc_hscale ================ [12:34:20] [PASSED] normal use [12:34:20] [PASSED] out of max range [12:34:20] [PASSED] out of min range [12:34:20] [PASSED] zero dst [12:34:20] [PASSED] negative src [12:34:20] [PASSED] negative dst [12:34:20] ============ [PASSED] drm_test_rect_calc_hscale ============ [12:34:20] ================ drm_test_rect_calc_vscale ================ [12:34:20] [PASSED] normal use [12:34:20] [PASSED] out of max range [12:34:20] [PASSED] out of min range [12:34:20] [PASSED] zero dst [12:34:20] [PASSED] negative src [12:34:20] [PASSED] negative dst [12:34:20] ============ [PASSED] drm_test_rect_calc_vscale ============ [12:34:20] ================== drm_test_rect_rotate =================== [12:34:20] [PASSED] reflect-x [12:34:20] [PASSED] reflect-y [12:34:20] [PASSED] rotate-0 [12:34:20] [PASSED] rotate-90 [12:34:20] [PASSED] rotate-180 [12:34:20] [PASSED] rotate-270 [12:34:20] ============== [PASSED] drm_test_rect_rotate =============== [12:34:20] ================ drm_test_rect_rotate_inv ================= [12:34:20] [PASSED] reflect-x [12:34:20] [PASSED] reflect-y [12:34:20] [PASSED] rotate-0 [12:34:20] [PASSED] rotate-90 [12:34:20] [PASSED] rotate-180 [12:34:20] [PASSED] rotate-270 [12:34:20] ============ [PASSED] drm_test_rect_rotate_inv ============= [12:34:20] ==================== [PASSED] drm_rect ===================== [12:34:20] ============ drm_sysfb_modeset_test (1 subtest) ============ [12:34:20] ============ drm_test_sysfb_build_fourcc_list ============= [12:34:20] [PASSED] no native formats [12:34:20] [PASSED] XRGB8888 as native format [12:34:20] [PASSED] remove duplicates [12:34:20] [PASSED] convert alpha formats [12:34:20] [PASSED] random formats [12:34:20] ======== [PASSED] drm_test_sysfb_build_fourcc_list ========= [12:34:20] ============= [PASSED] drm_sysfb_modeset_test ============== [12:34:20] ================== drm_fixp (2 subtests) =================== [12:34:20] [PASSED] drm_test_int2fixp [12:34:20] [PASSED] drm_test_sm2fixp [12:34:20] ==================== [PASSED] drm_fixp ===================== [12:34:20] ============================================================ [12:34:20] Testing complete. Ran 621 tests: passed: 621 [12:34:20] Elapsed time: 26.169s total, 1.780s configuring, 24.260s building, 0.128s running + /kernel/tools/testing/kunit/kunit.py run --kunitconfig /kernel/drivers/gpu/drm/ttm/tests/.kunitconfig [12:34:20] Configuring KUnit Kernel ... Regenerating .config ... Populating config with: $ make ARCH=um O=.kunit olddefconfig [12:34:22] 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:34:31] Starting KUnit Kernel (1/1)... [12:34:31] ============================================================ Running tests with: $ .kunit/linux kunit.enable=1 mem=1G console=tty kunit_shutdown=halt [12:34:32] ================= ttm_device (5 subtests) ================== [12:34:32] [PASSED] ttm_device_init_basic [12:34:32] [PASSED] ttm_device_init_multiple [12:34:32] [PASSED] ttm_device_fini_basic [12:34:32] [PASSED] ttm_device_init_no_vma_man [12:34:32] ================== ttm_device_init_pools ================== [12:34:32] [PASSED] No DMA allocations, no DMA32 required [12:34:32] [PASSED] DMA allocations, DMA32 required [12:34:32] [PASSED] No DMA allocations, DMA32 required [12:34:32] [PASSED] DMA allocations, no DMA32 required [12:34:32] ============== [PASSED] ttm_device_init_pools ============== [12:34:32] =================== [PASSED] ttm_device ==================== [12:34:32] ================== ttm_pool (8 subtests) =================== [12:34:32] ================== ttm_pool_alloc_basic =================== [12:34:32] [PASSED] One page [12:34:32] [PASSED] More than one page [12:34:32] [PASSED] Above the allocation limit [12:34:32] [PASSED] One page, with coherent DMA mappings enabled [12:34:32] [PASSED] Above the allocation limit, with coherent DMA mappings enabled [12:34:32] ============== [PASSED] ttm_pool_alloc_basic =============== [12:34:32] ============== ttm_pool_alloc_basic_dma_addr ============== [12:34:32] [PASSED] One page [12:34:32] [PASSED] More than one page [12:34:32] [PASSED] Above the allocation limit [12:34:32] [PASSED] One page, with coherent DMA mappings enabled [12:34:32] [PASSED] Above the allocation limit, with coherent DMA mappings enabled [12:34:32] ========== [PASSED] ttm_pool_alloc_basic_dma_addr ========== [12:34:32] [PASSED] ttm_pool_alloc_order_caching_match [12:34:32] [PASSED] ttm_pool_alloc_caching_mismatch [12:34:32] [PASSED] ttm_pool_alloc_order_mismatch [12:34:32] [PASSED] ttm_pool_free_dma_alloc [12:34:32] [PASSED] ttm_pool_free_no_dma_alloc [12:34:32] [PASSED] ttm_pool_fini_basic [12:34:32] ==================== [PASSED] ttm_pool ===================== [12:34:32] ================ ttm_resource (8 subtests) ================= [12:34:32] ================= ttm_resource_init_basic ================= [12:34:32] [PASSED] Init resource in TTM_PL_SYSTEM [12:34:32] [PASSED] Init resource in TTM_PL_VRAM [12:34:32] [PASSED] Init resource in a private placement [12:34:32] [PASSED] Init resource in TTM_PL_SYSTEM, set placement flags [12:34:32] ============= [PASSED] ttm_resource_init_basic ============= [12:34:32] [PASSED] ttm_resource_init_pinned [12:34:32] [PASSED] ttm_resource_fini_basic [12:34:32] [PASSED] ttm_resource_manager_init_basic [12:34:32] [PASSED] ttm_resource_manager_usage_basic [12:34:32] [PASSED] ttm_resource_manager_set_used_basic [12:34:32] [PASSED] ttm_sys_man_alloc_basic [12:34:32] [PASSED] ttm_sys_man_free_basic [12:34:32] ================== [PASSED] ttm_resource =================== [12:34:32] =================== ttm_tt (15 subtests) =================== [12:34:32] ==================== ttm_tt_init_basic ==================== [12:34:32] [PASSED] Page-aligned size [12:34:32] [PASSED] Extra pages requested [12:34:32] ================ [PASSED] ttm_tt_init_basic ================ [12:34:32] [PASSED] ttm_tt_init_misaligned [12:34:32] [PASSED] ttm_tt_fini_basic [12:34:32] [PASSED] ttm_tt_fini_sg [12:34:32] [PASSED] ttm_tt_fini_shmem [12:34:32] [PASSED] ttm_tt_create_basic [12:34:32] [PASSED] ttm_tt_create_invalid_bo_type [12:34:32] [PASSED] ttm_tt_create_ttm_exists [12:34:32] [PASSED] ttm_tt_create_failed [12:34:32] [PASSED] ttm_tt_destroy_basic [12:34:32] [PASSED] ttm_tt_populate_null_ttm [12:34:32] [PASSED] ttm_tt_populate_populated_ttm [12:34:32] [PASSED] ttm_tt_unpopulate_basic [12:34:32] [PASSED] ttm_tt_unpopulate_empty_ttm [12:34:32] [PASSED] ttm_tt_swapin_basic [12:34:32] ===================== [PASSED] ttm_tt ====================== [12:34:32] =================== ttm_bo (14 subtests) =================== [12:34:32] =========== ttm_bo_reserve_optimistic_no_ticket =========== [12:34:32] [PASSED] Cannot be interrupted and sleeps [12:34:32] [PASSED] Cannot be interrupted, locks straight away [12:34:32] [PASSED] Can be interrupted, sleeps [12:34:32] ======= [PASSED] ttm_bo_reserve_optimistic_no_ticket ======= [12:34:32] [PASSED] ttm_bo_reserve_locked_no_sleep [12:34:32] [PASSED] ttm_bo_reserve_no_wait_ticket [12:34:32] [PASSED] ttm_bo_reserve_double_resv [12:34:32] [PASSED] ttm_bo_reserve_interrupted [12:34:32] [PASSED] ttm_bo_reserve_deadlock [12:34:32] [PASSED] ttm_bo_unreserve_basic [12:34:32] [PASSED] ttm_bo_unreserve_pinned [12:34:32] [PASSED] ttm_bo_unreserve_bulk [12:34:32] [PASSED] ttm_bo_fini_basic [12:34:32] [PASSED] ttm_bo_fini_shared_resv [12:34:32] [PASSED] ttm_bo_pin_basic [12:34:32] [PASSED] ttm_bo_pin_unpin_resource [12:34:32] [PASSED] ttm_bo_multiple_pin_one_unpin [12:34:32] ===================== [PASSED] ttm_bo ====================== [12:34:32] ============== ttm_bo_validate (22 subtests) =============== [12:34:32] ============== ttm_bo_init_reserved_sys_man =============== [12:34:32] [PASSED] Buffer object for userspace [12:34:32] [PASSED] Kernel buffer object [12:34:32] [PASSED] Shared buffer object [12:34:32] ========== [PASSED] ttm_bo_init_reserved_sys_man =========== [12:34:32] ============== ttm_bo_init_reserved_mock_man ============== [12:34:32] [PASSED] Buffer object for userspace [12:34:32] [PASSED] Kernel buffer object [12:34:32] [PASSED] Shared buffer object [12:34:32] ========== [PASSED] ttm_bo_init_reserved_mock_man ========== [12:34:32] [PASSED] ttm_bo_init_reserved_resv [12:34:32] ================== ttm_bo_validate_basic ================== [12:34:32] [PASSED] Buffer object for userspace [12:34:32] [PASSED] Kernel buffer object [12:34:32] [PASSED] Shared buffer object [12:34:32] ============== [PASSED] ttm_bo_validate_basic ============== [12:34:32] [PASSED] ttm_bo_validate_invalid_placement [12:34:32] ============= ttm_bo_validate_same_placement ============== [12:34:32] [PASSED] System manager [12:34:32] [PASSED] VRAM manager [12:34:32] ========= [PASSED] ttm_bo_validate_same_placement ========== [12:34:32] [PASSED] ttm_bo_validate_failed_alloc [12:34:32] [PASSED] ttm_bo_validate_pinned [12:34:32] [PASSED] ttm_bo_validate_busy_placement [12:34:32] ================ ttm_bo_validate_multihop ================= [12:34:32] [PASSED] Buffer object for userspace [12:34:32] [PASSED] Kernel buffer object [12:34:32] [PASSED] Shared buffer object [12:34:32] ============ [PASSED] ttm_bo_validate_multihop ============= [12:34:32] ========== ttm_bo_validate_no_placement_signaled ========== [12:34:32] [PASSED] Buffer object in system domain, no page vector [12:34:32] [PASSED] Buffer object in system domain with an existing page vector [12:34:32] ====== [PASSED] ttm_bo_validate_no_placement_signaled ====== [12:34:32] ======== ttm_bo_validate_no_placement_not_signaled ======== [12:34:32] [PASSED] Buffer object for userspace [12:34:32] [PASSED] Kernel buffer object [12:34:32] [PASSED] Shared buffer object [12:34:32] ==== [PASSED] ttm_bo_validate_no_placement_not_signaled ==== [12:34:32] [PASSED] ttm_bo_validate_move_fence_signaled [12:34:32] ========= ttm_bo_validate_move_fence_not_signaled ========= [12:34:32] [PASSED] Waits for GPU [12:34:32] [PASSED] Tries to lock straight away [12:34:32] ===== [PASSED] ttm_bo_validate_move_fence_not_signaled ===== [12:34:32] [PASSED] ttm_bo_validate_swapout [12:34:32] [PASSED] ttm_bo_validate_happy_evict [12:34:32] [PASSED] ttm_bo_validate_all_pinned_evict [12:34:32] [PASSED] ttm_bo_validate_allowed_only_evict [12:34:32] [PASSED] ttm_bo_validate_deleted_evict [12:34:32] [PASSED] ttm_bo_validate_busy_domain_evict [12:34:32] [PASSED] ttm_bo_validate_evict_gutting [12:34:32] [PASSED] ttm_bo_validate_recrusive_evict [12:34:32] ================= [PASSED] ttm_bo_validate ================= [12:34:32] ============================================================ [12:34:32] Testing complete. Ran 102 tests: passed: 102 [12:34:32] Elapsed time: 11.630s total, 1.767s configuring, 9.598s building, 0.237s running + cleanup ++ stat -c %u:%g /kernel + chown -R 1003:1003 /kernel ^ permalink raw reply [flat|nested] 15+ messages in thread
* ✓ Xe.CI.BAT: success for Introduce cold reset recovery method (rev5) 2026-05-20 11:33 [PATCH v6 0/5] Introduce cold reset recovery method Mallesh Koujalagi ` (6 preceding siblings ...) 2026-05-20 12:34 ` ✓ CI.KUnit: success " Patchwork @ 2026-05-20 13:14 ` Patchwork 2026-05-20 23:35 ` ✗ Xe.CI.FULL: failure " Patchwork ` (4 subsequent siblings) 12 siblings, 0 replies; 15+ messages in thread From: Patchwork @ 2026-05-20 13:14 UTC (permalink / raw) To: Mallesh Koujalagi; +Cc: intel-xe [-- Attachment #1: Type: text/plain, Size: 1004 bytes --] == Series Details == Series: Introduce cold reset recovery method (rev5) URL : https://patchwork.freedesktop.org/series/163428/ State : success == Summary == CI Bug Log - changes from xe-5101-7d39df83e93eba14a23b1fb6ffff076eb191f27b_BAT -> xe-pw-163428v5_BAT ==================================================== Summary ------- **SUCCESS** No regressions found. Participating hosts (13 -> 13) ------------------------------ No changes in participating hosts Changes ------- No changes found Build changes ------------- * IGT: IGT_8923 -> IGT_8924 * Linux: xe-5101-7d39df83e93eba14a23b1fb6ffff076eb191f27b -> xe-pw-163428v5 IGT_8923: 3cb6109b3a0596ce448305acc233064c88680eb9 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git IGT_8924: 8924 xe-5101-7d39df83e93eba14a23b1fb6ffff076eb191f27b: 7d39df83e93eba14a23b1fb6ffff076eb191f27b xe-pw-163428v5: 163428v5 == Logs == For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-163428v5/index.html [-- Attachment #2: Type: text/html, Size: 1566 bytes --] ^ permalink raw reply [flat|nested] 15+ messages in thread
* ✗ Xe.CI.FULL: failure for Introduce cold reset recovery method (rev5) 2026-05-20 11:33 [PATCH v6 0/5] Introduce cold reset recovery method Mallesh Koujalagi ` (7 preceding siblings ...) 2026-05-20 13:14 ` ✓ Xe.CI.BAT: " Patchwork @ 2026-05-20 23:35 ` Patchwork 2026-05-26 4:47 ` ✗ CI.checkpatch: warning for Introduce cold reset recovery method (rev6) Patchwork ` (3 subsequent siblings) 12 siblings, 0 replies; 15+ messages in thread From: Patchwork @ 2026-05-20 23:35 UTC (permalink / raw) To: Mallesh Koujalagi; +Cc: intel-xe [-- Attachment #1: Type: text/plain, Size: 38700 bytes --] == Series Details == Series: Introduce cold reset recovery method (rev5) URL : https://patchwork.freedesktop.org/series/163428/ State : failure == Summary == CI Bug Log - changes from xe-5101-7d39df83e93eba14a23b1fb6ffff076eb191f27b_FULL -> xe-pw-163428v5_FULL ==================================================== Summary ------- **FAILURE** Serious unknown changes coming with xe-pw-163428v5_FULL absolutely need to be verified manually. If you think the reported changes have nothing to do with the changes introduced in xe-pw-163428v5_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 (2 -> 2) ------------------------------ No changes in participating hosts Possible new issues ------------------- Here are the unknown changes that may have been introduced in xe-pw-163428v5_FULL: ### IGT changes ### #### Possible regressions #### * igt@kms_hdr@static-toggle-suspend: - shard-bmg: [PASS][1] -> [INCOMPLETE][2] [1]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5101-7d39df83e93eba14a23b1fb6ffff076eb191f27b/shard-bmg-7/igt@kms_hdr@static-toggle-suspend.html [2]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-163428v5/shard-bmg-6/igt@kms_hdr@static-toggle-suspend.html #### Warnings #### * igt@kms_hdr@static-toggle-suspend@pipe-a-hdmi-a-3-xrgb2101010: - shard-bmg: [SKIP][3] ([Intel XE#7915]) -> [INCOMPLETE][4] [3]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5101-7d39df83e93eba14a23b1fb6ffff076eb191f27b/shard-bmg-7/igt@kms_hdr@static-toggle-suspend@pipe-a-hdmi-a-3-xrgb2101010.html [4]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-163428v5/shard-bmg-6/igt@kms_hdr@static-toggle-suspend@pipe-a-hdmi-a-3-xrgb2101010.html Known issues ------------ Here are the changes found in xe-pw-163428v5_FULL that come from known issues: ### IGT changes ### #### Issues hit #### * igt@kms_big_fb@linear-16bpp-rotate-270: - shard-bmg: NOTRUN -> [SKIP][5] ([Intel XE#2327]) [5]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-163428v5/shard-bmg-8/igt@kms_big_fb@linear-16bpp-rotate-270.html * igt@kms_big_fb@y-tiled-8bpp-rotate-90: - shard-bmg: NOTRUN -> [SKIP][6] ([Intel XE#1124]) +1 other test skip [6]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-163428v5/shard-bmg-9/igt@kms_big_fb@y-tiled-8bpp-rotate-90.html * igt@kms_bw@connected-linear-tiling-4-displays-target-2160x1440p: - shard-bmg: NOTRUN -> [SKIP][7] ([Intel XE#7679]) [7]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-163428v5/shard-bmg-6/igt@kms_bw@connected-linear-tiling-4-displays-target-2160x1440p.html * igt@kms_ccs@bad-pixel-format-4-tiled-dg2-mc-ccs: - shard-bmg: NOTRUN -> [SKIP][8] ([Intel XE#2887]) +3 other tests skip [8]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-163428v5/shard-bmg-3/igt@kms_ccs@bad-pixel-format-4-tiled-dg2-mc-ccs.html * igt@kms_ccs@random-ccs-data-4-tiled-mtl-rc-ccs-cc: - shard-lnl: NOTRUN -> [SKIP][9] ([Intel XE#2887]) [9]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-163428v5/shard-lnl-8/igt@kms_ccs@random-ccs-data-4-tiled-mtl-rc-ccs-cc.html * igt@kms_cdclk@mode-transition: - shard-bmg: NOTRUN -> [SKIP][10] ([Intel XE#2724] / [Intel XE#7449]) [10]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-163428v5/shard-bmg-9/igt@kms_cdclk@mode-transition.html * igt@kms_chamelium_hpd@dp-hpd-storm-disable: - shard-bmg: NOTRUN -> [SKIP][11] ([Intel XE#2252]) +1 other test skip [11]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-163428v5/shard-bmg-6/igt@kms_chamelium_hpd@dp-hpd-storm-disable.html * igt@kms_chamelium_hpd@hdmi-hpd-fast: - shard-lnl: NOTRUN -> [SKIP][12] ([Intel XE#373]) [12]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-163428v5/shard-lnl-7/igt@kms_chamelium_hpd@hdmi-hpd-fast.html * igt@kms_cursor_crc@cursor-offscreen-32x32: - shard-bmg: NOTRUN -> [SKIP][13] ([Intel XE#2320]) +1 other test skip [13]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-163428v5/shard-bmg-5/igt@kms_cursor_crc@cursor-offscreen-32x32.html * igt@kms_cursor_crc@cursor-rapid-movement-512x170: - shard-bmg: NOTRUN -> [SKIP][14] ([Intel XE#2321] / [Intel XE#7355]) [14]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-163428v5/shard-bmg-5/igt@kms_cursor_crc@cursor-rapid-movement-512x170.html * igt@kms_cursor_legacy@cursor-vs-flip-varying-size: - shard-bmg: [PASS][15] -> [INCOMPLETE][16] ([Intel XE#7935]) [15]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5101-7d39df83e93eba14a23b1fb6ffff076eb191f27b/shard-bmg-1/igt@kms_cursor_legacy@cursor-vs-flip-varying-size.html [16]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-163428v5/shard-bmg-2/igt@kms_cursor_legacy@cursor-vs-flip-varying-size.html * igt@kms_dsc@dsc-fractional-bpp: - shard-bmg: NOTRUN -> [SKIP][17] ([Intel XE#2244]) [17]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-163428v5/shard-bmg-2/igt@kms_dsc@dsc-fractional-bpp.html - shard-lnl: NOTRUN -> [SKIP][18] ([Intel XE#2244]) [18]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-163428v5/shard-lnl-1/igt@kms_dsc@dsc-fractional-bpp.html * igt@kms_fbcon_fbt@fbc-suspend: - shard-bmg: NOTRUN -> [SKIP][19] ([Intel XE#4156] / [Intel XE#7425]) [19]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-163428v5/shard-bmg-6/igt@kms_fbcon_fbt@fbc-suspend.html * igt@kms_fbcon_fbt@psr-suspend: - shard-bmg: NOTRUN -> [SKIP][20] ([Intel XE#6126] / [Intel XE#776]) [20]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-163428v5/shard-bmg-9/igt@kms_fbcon_fbt@psr-suspend.html * igt@kms_feature_discovery@display-3x: - shard-bmg: NOTRUN -> [SKIP][21] ([Intel XE#2373] / [Intel XE#7448]) [21]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-163428v5/shard-bmg-8/igt@kms_feature_discovery@display-3x.html * igt@kms_flip@2x-flip-vs-suspend: - shard-lnl: NOTRUN -> [SKIP][22] ([Intel XE#1421]) [22]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-163428v5/shard-lnl-1/igt@kms_flip@2x-flip-vs-suspend.html * igt@kms_flip@flip-vs-expired-vblank@a-edp1: - shard-lnl: [PASS][23] -> [FAIL][24] ([Intel XE#301]) +2 other tests fail [23]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5101-7d39df83e93eba14a23b1fb6ffff076eb191f27b/shard-lnl-1/igt@kms_flip@flip-vs-expired-vblank@a-edp1.html [24]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-163428v5/shard-lnl-1/igt@kms_flip@flip-vs-expired-vblank@a-edp1.html * igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytile-upscaling: - shard-bmg: NOTRUN -> [SKIP][25] ([Intel XE#7178] / [Intel XE#7351]) [25]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-163428v5/shard-bmg-3/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytile-upscaling.html * igt@kms_frontbuffer_tracking@drrs-1p-primscrn-pri-shrfb-draw-render: - shard-lnl: NOTRUN -> [SKIP][26] ([Intel XE#6312] / [Intel XE#651]) +3 other tests skip [26]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-163428v5/shard-lnl-8/igt@kms_frontbuffer_tracking@drrs-1p-primscrn-pri-shrfb-draw-render.html * igt@kms_frontbuffer_tracking@drrs-abgr161616f-draw-mmap-wc: - shard-bmg: NOTRUN -> [SKIP][27] ([Intel XE#7061] / [Intel XE#7356]) +4 other tests skip [27]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-163428v5/shard-bmg-8/igt@kms_frontbuffer_tracking@drrs-abgr161616f-draw-mmap-wc.html * igt@kms_frontbuffer_tracking@drrshdr-2p-scndscrn-pri-shrfb-draw-render: - shard-bmg: NOTRUN -> [SKIP][28] ([Intel XE#2311]) +14 other tests skip [28]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-163428v5/shard-bmg-5/igt@kms_frontbuffer_tracking@drrshdr-2p-scndscrn-pri-shrfb-draw-render.html * igt@kms_frontbuffer_tracking@fbc-tiling-linear: - shard-bmg: NOTRUN -> [SKIP][29] ([Intel XE#4141]) +3 other tests skip [29]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-163428v5/shard-bmg-9/igt@kms_frontbuffer_tracking@fbc-tiling-linear.html * igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-indfb-draw-render: - shard-bmg: NOTRUN -> [SKIP][30] ([Intel XE#2313]) +15 other tests skip [30]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-163428v5/shard-bmg-1/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-indfb-draw-render.html * igt@kms_frontbuffer_tracking@fbcpsr-abgr161616f-draw-mmap-wc: - shard-lnl: NOTRUN -> [SKIP][31] ([Intel XE#7061] / [Intel XE#7356]) +1 other test skip [31]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-163428v5/shard-lnl-7/igt@kms_frontbuffer_tracking@fbcpsr-abgr161616f-draw-mmap-wc.html * igt@kms_frontbuffer_tracking@hdr-2p-primscrn-cur-indfb-move: - shard-lnl: NOTRUN -> [SKIP][32] ([Intel XE#7905]) +5 other tests skip [32]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-163428v5/shard-lnl-1/igt@kms_frontbuffer_tracking@hdr-2p-primscrn-cur-indfb-move.html * igt@kms_frontbuffer_tracking@psr-2p-primscrn-indfb-pgflip-blt: - shard-lnl: NOTRUN -> [SKIP][33] ([Intel XE#656] / [Intel XE#7905]) +1 other test skip [33]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-163428v5/shard-lnl-5/igt@kms_frontbuffer_tracking@psr-2p-primscrn-indfb-pgflip-blt.html * igt@kms_frontbuffer_tracking@psrhdr-argb161616f-draw-mmap-wc: - shard-bmg: NOTRUN -> [SKIP][34] ([Intel XE#7061]) +2 other tests skip [34]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-163428v5/shard-bmg-10/igt@kms_frontbuffer_tracking@psrhdr-argb161616f-draw-mmap-wc.html * igt@kms_hdr@brightness-with-hdr: - shard-bmg: NOTRUN -> [SKIP][35] ([Intel XE#3544] / [Intel XE#7915] / [Intel XE#7916]) [35]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-163428v5/shard-bmg-3/igt@kms_hdr@brightness-with-hdr.html * igt@kms_hdr@brightness-with-hdr@pipe-a-dp-2-xrgb2101010: - shard-bmg: NOTRUN -> [SKIP][36] ([Intel XE#7916]) +1 other test skip [36]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-163428v5/shard-bmg-3/igt@kms_hdr@brightness-with-hdr@pipe-a-dp-2-xrgb2101010.html * igt@kms_hdr@brightness-with-hdr@pipe-a-hdmi-a-3-xrgb16161616f: - shard-bmg: NOTRUN -> [SKIP][37] ([Intel XE#7915]) +1 other test skip [37]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-163428v5/shard-bmg-3/igt@kms_hdr@brightness-with-hdr@pipe-a-hdmi-a-3-xrgb16161616f.html * igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-5: - shard-bmg: NOTRUN -> [SKIP][38] ([Intel XE#2763] / [Intel XE#6886]) +4 other tests skip [38]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-163428v5/shard-bmg-3/igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-5.html * igt@kms_pm_dc@dc5-dpms: - shard-lnl: [PASS][39] -> [FAIL][40] ([Intel XE#7340] / [Intel XE#7504]) [39]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5101-7d39df83e93eba14a23b1fb6ffff076eb191f27b/shard-lnl-8/igt@kms_pm_dc@dc5-dpms.html [40]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-163428v5/shard-lnl-5/igt@kms_pm_dc@dc5-dpms.html * igt@kms_pm_dc@dc6-psr: - shard-bmg: NOTRUN -> [SKIP][41] ([Intel XE#7794]) [41]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-163428v5/shard-bmg-7/igt@kms_pm_dc@dc6-psr.html * igt@kms_pm_rpm@modeset-non-lpsp-stress: - shard-lnl: NOTRUN -> [SKIP][42] ([Intel XE#1439] / [Intel XE#3141] / [Intel XE#7383]) [42]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-163428v5/shard-lnl-2/igt@kms_pm_rpm@modeset-non-lpsp-stress.html * igt@kms_psr2_sf@psr2-overlay-plane-update-continuous-sf: - shard-bmg: NOTRUN -> [SKIP][43] ([Intel XE#1489]) +1 other test skip [43]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-163428v5/shard-bmg-9/igt@kms_psr2_sf@psr2-overlay-plane-update-continuous-sf.html * igt@kms_psr@fbc-pr-cursor-plane-move: - shard-lnl: NOTRUN -> [SKIP][44] ([Intel XE#1406]) [44]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-163428v5/shard-lnl-7/igt@kms_psr@fbc-pr-cursor-plane-move.html * igt@kms_psr@psr2-primary-blt: - shard-bmg: NOTRUN -> [SKIP][45] ([Intel XE#2234] / [Intel XE#2850]) +4 other tests skip [45]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-163428v5/shard-bmg-8/igt@kms_psr@psr2-primary-blt.html * igt@kms_rotation_crc@primary-x-tiled-reflect-x-0: - shard-bmg: [PASS][46] -> [ABORT][47] ([Intel XE#7814]) [46]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5101-7d39df83e93eba14a23b1fb6ffff076eb191f27b/shard-bmg-1/igt@kms_rotation_crc@primary-x-tiled-reflect-x-0.html [47]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-163428v5/shard-bmg-1/igt@kms_rotation_crc@primary-x-tiled-reflect-x-0.html * igt@kms_sharpness_filter@filter-scaler-downscale: - shard-bmg: NOTRUN -> [SKIP][48] ([Intel XE#6503]) [48]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-163428v5/shard-bmg-5/igt@kms_sharpness_filter@filter-scaler-downscale.html * igt@kms_vrr@lobf: - shard-bmg: NOTRUN -> [SKIP][49] ([Intel XE#2168] / [Intel XE#7444]) [49]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-163428v5/shard-bmg-9/igt@kms_vrr@lobf.html - shard-lnl: NOTRUN -> [SKIP][50] ([Intel XE#1499]) [50]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-163428v5/shard-lnl-4/igt@kms_vrr@lobf.html * igt@kms_vrr@lobf@pipe-a-edp-1: - shard-lnl: NOTRUN -> [SKIP][51] ([Intel XE#7638]) [51]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-163428v5/shard-lnl-4/igt@kms_vrr@lobf@pipe-a-edp-1.html * igt@xe_eudebug_online@interrupt-all-set-breakpoint: - shard-lnl: NOTRUN -> [SKIP][52] ([Intel XE#7636]) +2 other tests skip [52]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-163428v5/shard-lnl-7/igt@xe_eudebug_online@interrupt-all-set-breakpoint.html * igt@xe_eudebug_online@set-breakpoint: - shard-bmg: NOTRUN -> [SKIP][53] ([Intel XE#7636]) +3 other tests skip [53]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-163428v5/shard-bmg-3/igt@xe_eudebug_online@set-breakpoint.html * igt@xe_evict@evict-mixed-many-threads-small: - shard-bmg: [PASS][54] -> [INCOMPLETE][55] ([Intel XE#6321]) [54]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5101-7d39df83e93eba14a23b1fb6ffff076eb191f27b/shard-bmg-8/igt@xe_evict@evict-mixed-many-threads-small.html [55]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-163428v5/shard-bmg-6/igt@xe_evict@evict-mixed-many-threads-small.html * igt@xe_evict@evict-small-multi-queue: - shard-bmg: NOTRUN -> [SKIP][56] ([Intel XE#7140]) [56]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-163428v5/shard-bmg-6/igt@xe_evict@evict-small-multi-queue.html * igt@xe_exec_balancer@no-exec-virtual-userptr: - shard-lnl: NOTRUN -> [SKIP][57] ([Intel XE#7482]) [57]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-163428v5/shard-lnl-7/igt@xe_exec_balancer@no-exec-virtual-userptr.html * igt@xe_exec_basic@multigpu-many-execqueues-many-vm-basic-defer-mmap: - shard-bmg: NOTRUN -> [SKIP][58] ([Intel XE#2322] / [Intel XE#7372]) +2 other tests skip [58]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-163428v5/shard-bmg-10/igt@xe_exec_basic@multigpu-many-execqueues-many-vm-basic-defer-mmap.html * igt@xe_exec_fault_mode@many-multi-queue-userptr-invalidate-race-prefetch: - shard-bmg: NOTRUN -> [SKIP][59] ([Intel XE#7136]) +1 other test skip [59]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-163428v5/shard-bmg-10/igt@xe_exec_fault_mode@many-multi-queue-userptr-invalidate-race-prefetch.html * igt@xe_exec_multi_queue@many-queues-preempt-mode-close-fd: - shard-bmg: NOTRUN -> [SKIP][60] ([Intel XE#6874]) +10 other tests skip [60]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-163428v5/shard-bmg-9/igt@xe_exec_multi_queue@many-queues-preempt-mode-close-fd.html * igt@xe_exec_multi_queue@one-queue-preempt-mode-fault-userptr-invalidate: - shard-lnl: NOTRUN -> [SKIP][61] ([Intel XE#6874]) +3 other tests skip [61]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-163428v5/shard-lnl-2/igt@xe_exec_multi_queue@one-queue-preempt-mode-fault-userptr-invalidate.html * igt@xe_exec_threads@threads-multi-queue-cm-shared-vm-basic: - shard-lnl: NOTRUN -> [SKIP][62] ([Intel XE#7138]) [62]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-163428v5/shard-lnl-5/igt@xe_exec_threads@threads-multi-queue-cm-shared-vm-basic.html * igt@xe_exec_threads@threads-multi-queue-fd-userptr-invalidate: - shard-bmg: NOTRUN -> [SKIP][63] ([Intel XE#7138]) +3 other tests skip [63]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-163428v5/shard-bmg-4/igt@xe_exec_threads@threads-multi-queue-fd-userptr-invalidate.html * igt@xe_module_load@load: - shard-bmg: ([PASS][64], [PASS][65], [PASS][66], [PASS][67], [PASS][68], [PASS][69], [PASS][70], [PASS][71], [PASS][72], [PASS][73], [PASS][74], [PASS][75], [PASS][76], [PASS][77], [PASS][78], [PASS][79], [PASS][80], [PASS][81], [PASS][82], [PASS][83], [PASS][84], [PASS][85], [PASS][86], [PASS][87], [PASS][88]) -> ([PASS][89], [PASS][90], [PASS][91], [PASS][92], [PASS][93], [PASS][94], [PASS][95], [SKIP][96], [PASS][97], [PASS][98], [PASS][99], [PASS][100], [PASS][101], [PASS][102], [PASS][103], [PASS][104], [PASS][105], [PASS][106], [PASS][107], [PASS][108], [PASS][109], [PASS][110], [PASS][111], [PASS][112], [PASS][113], [PASS][114]) ([Intel XE#2457] / [Intel XE#7405]) [64]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5101-7d39df83e93eba14a23b1fb6ffff076eb191f27b/shard-bmg-3/igt@xe_module_load@load.html [65]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5101-7d39df83e93eba14a23b1fb6ffff076eb191f27b/shard-bmg-3/igt@xe_module_load@load.html [66]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5101-7d39df83e93eba14a23b1fb6ffff076eb191f27b/shard-bmg-6/igt@xe_module_load@load.html [67]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5101-7d39df83e93eba14a23b1fb6ffff076eb191f27b/shard-bmg-6/igt@xe_module_load@load.html [68]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5101-7d39df83e93eba14a23b1fb6ffff076eb191f27b/shard-bmg-8/igt@xe_module_load@load.html [69]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5101-7d39df83e93eba14a23b1fb6ffff076eb191f27b/shard-bmg-8/igt@xe_module_load@load.html [70]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5101-7d39df83e93eba14a23b1fb6ffff076eb191f27b/shard-bmg-9/igt@xe_module_load@load.html [71]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5101-7d39df83e93eba14a23b1fb6ffff076eb191f27b/shard-bmg-7/igt@xe_module_load@load.html [72]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5101-7d39df83e93eba14a23b1fb6ffff076eb191f27b/shard-bmg-9/igt@xe_module_load@load.html [73]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5101-7d39df83e93eba14a23b1fb6ffff076eb191f27b/shard-bmg-9/igt@xe_module_load@load.html [74]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5101-7d39df83e93eba14a23b1fb6ffff076eb191f27b/shard-bmg-1/igt@xe_module_load@load.html [75]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5101-7d39df83e93eba14a23b1fb6ffff076eb191f27b/shard-bmg-4/igt@xe_module_load@load.html [76]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5101-7d39df83e93eba14a23b1fb6ffff076eb191f27b/shard-bmg-10/igt@xe_module_load@load.html [77]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5101-7d39df83e93eba14a23b1fb6ffff076eb191f27b/shard-bmg-4/igt@xe_module_load@load.html [78]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5101-7d39df83e93eba14a23b1fb6ffff076eb191f27b/shard-bmg-4/igt@xe_module_load@load.html [79]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5101-7d39df83e93eba14a23b1fb6ffff076eb191f27b/shard-bmg-2/igt@xe_module_load@load.html [80]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5101-7d39df83e93eba14a23b1fb6ffff076eb191f27b/shard-bmg-2/igt@xe_module_load@load.html [81]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5101-7d39df83e93eba14a23b1fb6ffff076eb191f27b/shard-bmg-5/igt@xe_module_load@load.html [82]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5101-7d39df83e93eba14a23b1fb6ffff076eb191f27b/shard-bmg-5/igt@xe_module_load@load.html [83]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5101-7d39df83e93eba14a23b1fb6ffff076eb191f27b/shard-bmg-1/igt@xe_module_load@load.html [84]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5101-7d39df83e93eba14a23b1fb6ffff076eb191f27b/shard-bmg-1/igt@xe_module_load@load.html [85]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5101-7d39df83e93eba14a23b1fb6ffff076eb191f27b/shard-bmg-10/igt@xe_module_load@load.html [86]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5101-7d39df83e93eba14a23b1fb6ffff076eb191f27b/shard-bmg-10/igt@xe_module_load@load.html [87]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5101-7d39df83e93eba14a23b1fb6ffff076eb191f27b/shard-bmg-7/igt@xe_module_load@load.html [88]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5101-7d39df83e93eba14a23b1fb6ffff076eb191f27b/shard-bmg-7/igt@xe_module_load@load.html [89]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-163428v5/shard-bmg-8/igt@xe_module_load@load.html [90]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-163428v5/shard-bmg-10/igt@xe_module_load@load.html [91]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-163428v5/shard-bmg-10/igt@xe_module_load@load.html [92]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-163428v5/shard-bmg-6/igt@xe_module_load@load.html [93]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-163428v5/shard-bmg-8/igt@xe_module_load@load.html [94]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-163428v5/shard-bmg-3/igt@xe_module_load@load.html [95]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-163428v5/shard-bmg-4/igt@xe_module_load@load.html [96]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-163428v5/shard-bmg-6/igt@xe_module_load@load.html [97]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-163428v5/shard-bmg-3/igt@xe_module_load@load.html [98]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-163428v5/shard-bmg-1/igt@xe_module_load@load.html [99]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-163428v5/shard-bmg-6/igt@xe_module_load@load.html [100]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-163428v5/shard-bmg-9/igt@xe_module_load@load.html [101]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-163428v5/shard-bmg-9/igt@xe_module_load@load.html [102]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-163428v5/shard-bmg-5/igt@xe_module_load@load.html [103]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-163428v5/shard-bmg-2/igt@xe_module_load@load.html [104]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-163428v5/shard-bmg-2/igt@xe_module_load@load.html [105]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-163428v5/shard-bmg-9/igt@xe_module_load@load.html [106]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-163428v5/shard-bmg-6/igt@xe_module_load@load.html [107]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-163428v5/shard-bmg-5/igt@xe_module_load@load.html [108]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-163428v5/shard-bmg-5/igt@xe_module_load@load.html [109]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-163428v5/shard-bmg-4/igt@xe_module_load@load.html [110]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-163428v5/shard-bmg-3/igt@xe_module_load@load.html [111]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-163428v5/shard-bmg-7/igt@xe_module_load@load.html [112]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-163428v5/shard-bmg-7/igt@xe_module_load@load.html [113]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-163428v5/shard-bmg-1/igt@xe_module_load@load.html [114]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-163428v5/shard-bmg-1/igt@xe_module_load@load.html * igt@xe_page_reclaim@basic-mixed: - shard-bmg: NOTRUN -> [SKIP][115] ([Intel XE#7793]) [115]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-163428v5/shard-bmg-1/igt@xe_page_reclaim@basic-mixed.html * igt@xe_pat@pt-caching-update-pat-and-pte: - shard-bmg: [PASS][116] -> [ABORT][117] ([Intel XE#7893]) [116]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5101-7d39df83e93eba14a23b1fb6ffff076eb191f27b/shard-bmg-9/igt@xe_pat@pt-caching-update-pat-and-pte.html [117]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-163428v5/shard-bmg-6/igt@xe_pat@pt-caching-update-pat-and-pte.html * igt@xe_pm@d3cold-mmap-vram: - shard-bmg: NOTRUN -> [SKIP][118] ([Intel XE#2284] / [Intel XE#7370]) [118]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-163428v5/shard-bmg-8/igt@xe_pm@d3cold-mmap-vram.html * igt@xe_pxp@pxp-termination-key-update-post-termination-irq: - shard-bmg: NOTRUN -> [SKIP][119] ([Intel XE#4733] / [Intel XE#7417]) [119]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-163428v5/shard-bmg-7/igt@xe_pxp@pxp-termination-key-update-post-termination-irq.html * igt@xe_sriov_flr@flr-twice: - shard-bmg: [PASS][120] -> [FAIL][121] ([Intel XE#6569]) +1 other test fail [120]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5101-7d39df83e93eba14a23b1fb6ffff076eb191f27b/shard-bmg-6/igt@xe_sriov_flr@flr-twice.html [121]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-163428v5/shard-bmg-5/igt@xe_sriov_flr@flr-twice.html * igt@xe_sriov_vram@vf-access-after-resize-down: - shard-bmg: [PASS][122] -> [FAIL][123] ([Intel XE#7992]) [122]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5101-7d39df83e93eba14a23b1fb6ffff076eb191f27b/shard-bmg-6/igt@xe_sriov_vram@vf-access-after-resize-down.html [123]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-163428v5/shard-bmg-5/igt@xe_sriov_vram@vf-access-after-resize-down.html * igt@xe_survivability@i2c-functionality: - shard-lnl: NOTRUN -> [SKIP][124] ([Intel XE#6529] / [Intel XE#7331] / [Intel XE#7388]) [124]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-163428v5/shard-lnl-4/igt@xe_survivability@i2c-functionality.html * igt@xe_survivability@runtime-survivability: - shard-bmg: [PASS][125] -> [DMESG-WARN][126] ([Intel XE#6627] / [Intel XE#7419]) [125]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5101-7d39df83e93eba14a23b1fb6ffff076eb191f27b/shard-bmg-2/igt@xe_survivability@runtime-survivability.html [126]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-163428v5/shard-bmg-4/igt@xe_survivability@runtime-survivability.html * igt@xe_wedged@wedged-mode-toggle: - shard-lnl: [PASS][127] -> [ABORT][128] ([Intel XE#8007]) [127]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5101-7d39df83e93eba14a23b1fb6ffff076eb191f27b/shard-lnl-7/igt@xe_wedged@wedged-mode-toggle.html [128]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-163428v5/shard-lnl-3/igt@xe_wedged@wedged-mode-toggle.html #### Possible fixes #### * igt@kms_cursor_legacy@flip-vs-cursor-legacy: - shard-bmg: [FAIL][129] ([Intel XE#7571]) -> [PASS][130] [129]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5101-7d39df83e93eba14a23b1fb6ffff076eb191f27b/shard-bmg-7/igt@kms_cursor_legacy@flip-vs-cursor-legacy.html [130]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-163428v5/shard-bmg-9/igt@kms_cursor_legacy@flip-vs-cursor-legacy.html * igt@kms_flip@flip-vs-expired-vblank-interruptible@b-edp1: - shard-lnl: [FAIL][131] ([Intel XE#301]) -> [PASS][132] [131]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5101-7d39df83e93eba14a23b1fb6ffff076eb191f27b/shard-lnl-2/igt@kms_flip@flip-vs-expired-vblank-interruptible@b-edp1.html [132]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-163428v5/shard-lnl-2/igt@kms_flip@flip-vs-expired-vblank-interruptible@b-edp1.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-5101-7d39df83e93eba14a23b1fb6ffff076eb191f27b/shard-bmg-9/igt@kms_hdr@invalid-hdr.html [134]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-163428v5/shard-bmg-7/igt@kms_hdr@invalid-hdr.html * igt@kms_hdr@invalid-hdr@pipe-a-hdmi-a-3-xrgb2101010: - shard-bmg: [SKIP][135] ([Intel XE#7922]) -> [PASS][136] +1 other test pass [135]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5101-7d39df83e93eba14a23b1fb6ffff076eb191f27b/shard-bmg-9/igt@kms_hdr@invalid-hdr@pipe-a-hdmi-a-3-xrgb2101010.html [136]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-163428v5/shard-bmg-7/igt@kms_hdr@invalid-hdr@pipe-a-hdmi-a-3-xrgb2101010.html * igt@kms_plane_cursor@overlay@pipe-b-hdmi-a-3-size-256: - shard-bmg: [INCOMPLETE][137] -> [PASS][138] +1 other test pass [137]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5101-7d39df83e93eba14a23b1fb6ffff076eb191f27b/shard-bmg-2/igt@kms_plane_cursor@overlay@pipe-b-hdmi-a-3-size-256.html [138]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-163428v5/shard-bmg-7/igt@kms_plane_cursor@overlay@pipe-b-hdmi-a-3-size-256.html * igt@kms_pm_dc@dc6-psr: - shard-lnl: [FAIL][139] ([Intel XE#7340]) -> [PASS][140] [139]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5101-7d39df83e93eba14a23b1fb6ffff076eb191f27b/shard-lnl-1/igt@kms_pm_dc@dc6-psr.html [140]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-163428v5/shard-lnl-7/igt@kms_pm_dc@dc6-psr.html * igt@kms_vrr@seamless-rr-switch-virtual@pipe-a-edp-1: - shard-lnl: [FAIL][141] ([Intel XE#2142]) -> [PASS][142] +1 other test pass [141]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5101-7d39df83e93eba14a23b1fb6ffff076eb191f27b/shard-lnl-7/igt@kms_vrr@seamless-rr-switch-virtual@pipe-a-edp-1.html [142]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-163428v5/shard-lnl-2/igt@kms_vrr@seamless-rr-switch-virtual@pipe-a-edp-1.html #### Warnings #### * igt@kms_cursor_crc@cursor-offscreen-32x10: - shard-lnl: [ABORT][143] ([Intel XE#8007]) -> [SKIP][144] ([Intel XE#1424]) [143]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5101-7d39df83e93eba14a23b1fb6ffff076eb191f27b/shard-lnl-7/igt@kms_cursor_crc@cursor-offscreen-32x10.html [144]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-163428v5/shard-lnl-4/igt@kms_cursor_crc@cursor-offscreen-32x10.html * igt@kms_cursor_legacy@cursorb-vs-flipb-atomic-transitions: - shard-lnl: [SKIP][145] ([Intel XE#309] / [Intel XE#7343]) -> [SKIP][146] ([Intel XE#309] / [Intel XE#7343] / [Intel XE#7935]) [145]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5101-7d39df83e93eba14a23b1fb6ffff076eb191f27b/shard-lnl-5/igt@kms_cursor_legacy@cursorb-vs-flipb-atomic-transitions.html [146]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-163428v5/shard-lnl-8/igt@kms_cursor_legacy@cursorb-vs-flipb-atomic-transitions.html * igt@kms_tiled_display@basic-test-pattern: - shard-bmg: [FAIL][147] ([Intel XE#1729] / [Intel XE#7424]) -> [SKIP][148] ([Intel XE#2426] / [Intel XE#5848]) [147]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5101-7d39df83e93eba14a23b1fb6ffff076eb191f27b/shard-bmg-4/igt@kms_tiled_display@basic-test-pattern.html [148]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-163428v5/shard-bmg-3/igt@kms_tiled_display@basic-test-pattern.html [Intel XE#1124]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1124 [Intel XE#1406]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1406 [Intel XE#1421]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1421 [Intel XE#1424]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1424 [Intel XE#1439]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1439 [Intel XE#1489]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1489 [Intel XE#1499]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1499 [Intel XE#1503]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1503 [Intel XE#1729]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1729 [Intel XE#2142]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2142 [Intel XE#2168]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2168 [Intel XE#2234]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2234 [Intel XE#2244]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2244 [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#2311]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2311 [Intel XE#2313]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2313 [Intel XE#2320]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2320 [Intel XE#2321]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2321 [Intel XE#2322]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2322 [Intel XE#2327]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2327 [Intel XE#2373]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2373 [Intel XE#2426]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2426 [Intel XE#2457]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2457 [Intel XE#2724]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2724 [Intel XE#2763]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2763 [Intel XE#2850]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2850 [Intel XE#2887]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2887 [Intel XE#301]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/301 [Intel XE#309]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/309 [Intel XE#3141]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3141 [Intel XE#3544]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3544 [Intel XE#373]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/373 [Intel XE#4141]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4141 [Intel XE#4156]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4156 [Intel XE#4733]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4733 [Intel XE#5848]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5848 [Intel XE#6126]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6126 [Intel XE#6312]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6312 [Intel XE#6321]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6321 [Intel XE#6503]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6503 [Intel XE#651]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/651 [Intel XE#6529]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6529 [Intel XE#656]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/656 [Intel XE#6569]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6569 [Intel XE#6627]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6627 [Intel XE#6874]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6874 [Intel XE#6886]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6886 [Intel XE#7061]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7061 [Intel XE#7136]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7136 [Intel XE#7138]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7138 [Intel XE#7140]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7140 [Intel XE#7178]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7178 [Intel XE#7331]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7331 [Intel XE#7340]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7340 [Intel XE#7343]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7343 [Intel XE#7351]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7351 [Intel XE#7355]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7355 [Intel XE#7356]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7356 [Intel XE#7370]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7370 [Intel XE#7372]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7372 [Intel XE#7383]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7383 [Intel XE#7388]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7388 [Intel XE#7405]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7405 [Intel XE#7417]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7417 [Intel XE#7419]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7419 [Intel XE#7424]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7424 [Intel XE#7425]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7425 [Intel XE#7444]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7444 [Intel XE#7448]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7448 [Intel XE#7449]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7449 [Intel XE#7482]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7482 [Intel XE#7504]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7504 [Intel XE#7571]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7571 [Intel XE#7636]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7636 [Intel XE#7638]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7638 [Intel XE#7679]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7679 [Intel XE#776]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/776 [Intel XE#7793]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7793 [Intel XE#7794]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7794 [Intel XE#7814]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7814 [Intel XE#7893]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7893 [Intel XE#7905]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7905 [Intel XE#7915]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7915 [Intel XE#7916]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7916 [Intel XE#7922]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7922 [Intel XE#7935]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7935 [Intel XE#7992]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7992 [Intel XE#8007]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/8007 Build changes ------------- * IGT: IGT_8923 -> IGT_8924 * Linux: xe-5101-7d39df83e93eba14a23b1fb6ffff076eb191f27b -> xe-pw-163428v5 IGT_8923: 3cb6109b3a0596ce448305acc233064c88680eb9 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git IGT_8924: 8924 xe-5101-7d39df83e93eba14a23b1fb6ffff076eb191f27b: 7d39df83e93eba14a23b1fb6ffff076eb191f27b xe-pw-163428v5: 163428v5 == Logs == For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-163428v5/index.html [-- Attachment #2: Type: text/html, Size: 42417 bytes --] ^ permalink raw reply [flat|nested] 15+ messages in thread
* ✗ CI.checkpatch: warning for Introduce cold reset recovery method (rev6) 2026-05-20 11:33 [PATCH v6 0/5] Introduce cold reset recovery method Mallesh Koujalagi ` (8 preceding siblings ...) 2026-05-20 23:35 ` ✗ Xe.CI.FULL: failure " Patchwork @ 2026-05-26 4:47 ` Patchwork 2026-05-26 4:49 ` ✓ CI.KUnit: success " Patchwork ` (2 subsequent siblings) 12 siblings, 0 replies; 15+ messages in thread From: Patchwork @ 2026-05-26 4:47 UTC (permalink / raw) To: Mallesh Koujalagi; +Cc: intel-xe == Series Details == Series: Introduce cold reset recovery method (rev6) URL : https://patchwork.freedesktop.org/series/163428/ 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 061140b9bc586ae7f40abc1249c97e1cc72d1b9d + cd /kernel + git config --global --add safe.directory /kernel + git log -n1 commit 054fc887a3bbabf3a46e5807ccc295a59f892a62 Author: Mallesh Koujalagi <mallesh.koujalagi@intel.com> Date: Wed May 20 17:03:57 2026 +0530 drm/xe: Suppress Surprise Link Down on non-hotplug device A PUNIT (power management unit) error recovery on GPUs triggers a power cycle (cold reset). On platforms where the upstream port is not hotplug capable, the brief link drop caused by powering the device off and back on is reported by hardware as a Surprise Link Down (SLD), which AER then escalates as an Uncorrectable Fatal Error. That error fires before the device finishes coming back up and defeats the very recovery we are attempting. To keep the expected, recovery-induced link drop from being raised as a fatal AER event, mask the Surprise Link Down bit (PCI_ERR_UNC_SURPDN) in the upstream port's AER Uncorrectable Error Mask register before punit_error_handler() requests the cold reset. The mask is only applied when the slot is not hotplug capable. Signed-off-by: Mallesh Koujalagi <mallesh.koujalagi@intel.com> + /mt/dim checkpatch 6b6931ea69504481efd3df1cc99765141feb178c drm-intel 66a6540f6eb0 Introduce Xe Uncorrectable Error Handling -:251: WARNING:FILE_PATH_CHANGES: added, moved or deleted file(s), does MAINTAINERS need updating? #251: new file mode 100644 total: 0 errors, 1 warnings, 0 checks, 1175 lines checked 0efe7e779ca4 drm: Add DRM_WEDGE_RECOVERY_COLD_RESET recovery method 3ed33c9e19a5 drm/doc: Document DRM_WEDGE_RECOVERY_COLD_RESET recovery method 2085b3071695 drm/xe: Handle PUNIT errors by requesting cold-reset recovery 054fc887a3bb drm/xe: Suppress Surprise Link Down on non-hotplug device ^ permalink raw reply [flat|nested] 15+ messages in thread
* ✓ CI.KUnit: success for Introduce cold reset recovery method (rev6) 2026-05-20 11:33 [PATCH v6 0/5] Introduce cold reset recovery method Mallesh Koujalagi ` (9 preceding siblings ...) 2026-05-26 4:47 ` ✗ CI.checkpatch: warning for Introduce cold reset recovery method (rev6) Patchwork @ 2026-05-26 4:49 ` Patchwork 2026-05-26 5:28 ` ✓ Xe.CI.BAT: " Patchwork 2026-05-26 6:31 ` ✗ Xe.CI.FULL: failure " Patchwork 12 siblings, 0 replies; 15+ messages in thread From: Patchwork @ 2026-05-26 4:49 UTC (permalink / raw) To: Mallesh Koujalagi; +Cc: intel-xe == Series Details == Series: Introduce cold reset recovery method (rev6) URL : https://patchwork.freedesktop.org/series/163428/ State : success == Summary == + trap cleanup EXIT + /kernel/tools/testing/kunit/kunit.py run --kunitconfig /kernel/drivers/gpu/drm/xe/.kunitconfig [04:47:58] Configuring KUnit Kernel ... Generating .config ... Populating config with: $ make ARCH=um O=.kunit olddefconfig [04:48:02] 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 [04:48:34] Starting KUnit Kernel (1/1)... [04:48:34] ============================================================ Running tests with: $ .kunit/linux kunit.enable=1 mem=1G console=tty kunit_shutdown=halt [04:48:34] ================== guc_buf (11 subtests) =================== [04:48:34] [PASSED] test_smallest [04:48:34] [PASSED] test_largest [04:48:34] [PASSED] test_granular [04:48:34] [PASSED] test_unique [04:48:34] [PASSED] test_overlap [04:48:34] [PASSED] test_reusable [04:48:34] [PASSED] test_too_big [04:48:34] [PASSED] test_flush [04:48:34] [PASSED] test_lookup [04:48:34] [PASSED] test_data [04:48:34] [PASSED] test_class [04:48:34] ===================== [PASSED] guc_buf ===================== [04:48:34] =================== guc_dbm (7 subtests) =================== [04:48:34] [PASSED] test_empty [04:48:34] [PASSED] test_default [04:48:34] ======================== test_size ======================== [04:48:34] [PASSED] 4 [04:48:34] [PASSED] 8 [04:48:34] [PASSED] 32 [04:48:34] [PASSED] 256 [04:48:34] ==================== [PASSED] test_size ==================== [04:48:34] ======================= test_reuse ======================== [04:48:34] [PASSED] 4 [04:48:34] [PASSED] 8 [04:48:34] [PASSED] 32 [04:48:34] [PASSED] 256 [04:48:34] =================== [PASSED] test_reuse ==================== [04:48:34] =================== test_range_overlap ==================== [04:48:34] [PASSED] 4 [04:48:34] [PASSED] 8 [04:48:34] [PASSED] 32 [04:48:34] [PASSED] 256 [04:48:34] =============== [PASSED] test_range_overlap ================ [04:48:34] =================== test_range_compact ==================== [04:48:34] [PASSED] 4 [04:48:34] [PASSED] 8 [04:48:34] [PASSED] 32 [04:48:34] [PASSED] 256 [04:48:34] =============== [PASSED] test_range_compact ================ [04:48:34] ==================== test_range_spare ===================== [04:48:34] [PASSED] 4 [04:48:34] [PASSED] 8 [04:48:34] [PASSED] 32 [04:48:34] [PASSED] 256 [04:48:34] ================ [PASSED] test_range_spare ================= [04:48:34] ===================== [PASSED] guc_dbm ===================== [04:48:34] =================== guc_idm (6 subtests) =================== [04:48:34] [PASSED] bad_init [04:48:34] [PASSED] no_init [04:48:34] [PASSED] init_fini [04:48:34] [PASSED] check_used [04:48:34] [PASSED] check_quota [04:48:34] [PASSED] check_all [04:48:34] ===================== [PASSED] guc_idm ===================== [04:48:34] ================== no_relay (3 subtests) =================== [04:48:34] [PASSED] xe_drops_guc2pf_if_not_ready [04:48:34] [PASSED] xe_drops_guc2vf_if_not_ready [04:48:34] [PASSED] xe_rejects_send_if_not_ready [04:48:34] ==================== [PASSED] no_relay ===================== [04:48:34] ================== pf_relay (14 subtests) ================== [04:48:34] [PASSED] pf_rejects_guc2pf_too_short [04:48:34] [PASSED] pf_rejects_guc2pf_too_long [04:48:34] [PASSED] pf_rejects_guc2pf_no_payload [04:48:34] [PASSED] pf_fails_no_payload [04:48:34] [PASSED] pf_fails_bad_origin [04:48:34] [PASSED] pf_fails_bad_type [04:48:34] [PASSED] pf_txn_reports_error [04:48:34] [PASSED] pf_txn_sends_pf2guc [04:48:34] [PASSED] pf_sends_pf2guc [04:48:34] [SKIPPED] pf_loopback_nop [04:48:34] [SKIPPED] pf_loopback_echo [04:48:34] [SKIPPED] pf_loopback_fail [04:48:34] [SKIPPED] pf_loopback_busy [04:48:34] [SKIPPED] pf_loopback_retry [04:48:34] ==================== [PASSED] pf_relay ===================== [04:48:34] ================== vf_relay (3 subtests) =================== [04:48:34] [PASSED] vf_rejects_guc2vf_too_short [04:48:34] [PASSED] vf_rejects_guc2vf_too_long [04:48:34] [PASSED] vf_rejects_guc2vf_no_payload [04:48:34] ==================== [PASSED] vf_relay ===================== [04:48:34] ================ pf_gt_config (9 subtests) ================= [04:48:34] [PASSED] fair_contexts_1vf [04:48:34] [PASSED] fair_doorbells_1vf [04:48:34] [PASSED] fair_ggtt_1vf [04:48:34] ====================== fair_vram_1vf ====================== [04:48:34] [PASSED] 3.50 GiB [04:48:34] [PASSED] 11.5 GiB [04:48:34] [PASSED] 15.5 GiB [04:48:34] [PASSED] 31.5 GiB [04:48:34] [PASSED] 63.5 GiB [04:48:34] [PASSED] 1.91 GiB [04:48:34] ================== [PASSED] fair_vram_1vf ================== [04:48:34] ================ fair_vram_1vf_admin_only ================= [04:48:34] [PASSED] 3.50 GiB [04:48:34] [PASSED] 11.5 GiB [04:48:34] [PASSED] 15.5 GiB [04:48:34] [PASSED] 31.5 GiB [04:48:34] [PASSED] 63.5 GiB [04:48:34] [PASSED] 1.91 GiB [04:48:34] ============ [PASSED] fair_vram_1vf_admin_only ============= [04:48:34] ====================== fair_contexts ====================== [04:48:34] [PASSED] 1 VF [04:48:34] [PASSED] 2 VFs [04:48:34] [PASSED] 3 VFs [04:48:34] [PASSED] 4 VFs [04:48:34] [PASSED] 5 VFs [04:48:34] [PASSED] 6 VFs [04:48:34] [PASSED] 7 VFs [04:48:34] [PASSED] 8 VFs [04:48:34] [PASSED] 9 VFs [04:48:34] [PASSED] 10 VFs [04:48:34] [PASSED] 11 VFs [04:48:34] [PASSED] 12 VFs [04:48:34] [PASSED] 13 VFs [04:48:34] [PASSED] 14 VFs [04:48:34] [PASSED] 15 VFs [04:48:34] [PASSED] 16 VFs [04:48:34] [PASSED] 17 VFs [04:48:34] [PASSED] 18 VFs [04:48:34] [PASSED] 19 VFs [04:48:34] [PASSED] 20 VFs [04:48:34] [PASSED] 21 VFs [04:48:34] [PASSED] 22 VFs [04:48:34] [PASSED] 23 VFs [04:48:34] [PASSED] 24 VFs [04:48:34] [PASSED] 25 VFs [04:48:34] [PASSED] 26 VFs [04:48:34] [PASSED] 27 VFs [04:48:34] [PASSED] 28 VFs [04:48:34] [PASSED] 29 VFs [04:48:34] [PASSED] 30 VFs [04:48:34] [PASSED] 31 VFs [04:48:34] [PASSED] 32 VFs [04:48:34] [PASSED] 33 VFs [04:48:34] [PASSED] 34 VFs [04:48:34] [PASSED] 35 VFs [04:48:34] [PASSED] 36 VFs [04:48:34] [PASSED] 37 VFs [04:48:34] [PASSED] 38 VFs [04:48:34] [PASSED] 39 VFs [04:48:34] [PASSED] 40 VFs [04:48:34] [PASSED] 41 VFs [04:48:34] [PASSED] 42 VFs [04:48:34] [PASSED] 43 VFs [04:48:34] [PASSED] 44 VFs [04:48:34] [PASSED] 45 VFs [04:48:34] [PASSED] 46 VFs [04:48:34] [PASSED] 47 VFs [04:48:34] [PASSED] 48 VFs [04:48:34] [PASSED] 49 VFs [04:48:34] [PASSED] 50 VFs [04:48:34] [PASSED] 51 VFs [04:48:34] [PASSED] 52 VFs [04:48:34] [PASSED] 53 VFs [04:48:34] [PASSED] 54 VFs [04:48:34] [PASSED] 55 VFs [04:48:34] [PASSED] 56 VFs [04:48:34] [PASSED] 57 VFs [04:48:34] [PASSED] 58 VFs [04:48:34] [PASSED] 59 VFs [04:48:34] [PASSED] 60 VFs [04:48:34] [PASSED] 61 VFs [04:48:34] [PASSED] 62 VFs [04:48:34] [PASSED] 63 VFs [04:48:34] ================== [PASSED] fair_contexts ================== [04:48:34] ===================== fair_doorbells ====================== [04:48:34] [PASSED] 1 VF [04:48:34] [PASSED] 2 VFs [04:48:34] [PASSED] 3 VFs [04:48:34] [PASSED] 4 VFs [04:48:34] [PASSED] 5 VFs [04:48:34] [PASSED] 6 VFs [04:48:34] [PASSED] 7 VFs [04:48:34] [PASSED] 8 VFs [04:48:34] [PASSED] 9 VFs [04:48:34] [PASSED] 10 VFs [04:48:34] [PASSED] 11 VFs [04:48:34] [PASSED] 12 VFs [04:48:34] [PASSED] 13 VFs [04:48:34] [PASSED] 14 VFs [04:48:34] [PASSED] 15 VFs [04:48:34] [PASSED] 16 VFs [04:48:34] [PASSED] 17 VFs [04:48:34] [PASSED] 18 VFs [04:48:34] [PASSED] 19 VFs [04:48:34] [PASSED] 20 VFs [04:48:34] [PASSED] 21 VFs [04:48:34] [PASSED] 22 VFs [04:48:34] [PASSED] 23 VFs [04:48:34] [PASSED] 24 VFs [04:48:34] [PASSED] 25 VFs [04:48:34] [PASSED] 26 VFs [04:48:34] [PASSED] 27 VFs [04:48:34] [PASSED] 28 VFs [04:48:34] [PASSED] 29 VFs [04:48:34] [PASSED] 30 VFs [04:48:34] [PASSED] 31 VFs [04:48:34] [PASSED] 32 VFs [04:48:34] [PASSED] 33 VFs [04:48:34] [PASSED] 34 VFs [04:48:34] [PASSED] 35 VFs [04:48:34] [PASSED] 36 VFs [04:48:34] [PASSED] 37 VFs [04:48:34] [PASSED] 38 VFs [04:48:34] [PASSED] 39 VFs [04:48:34] [PASSED] 40 VFs [04:48:34] [PASSED] 41 VFs [04:48:34] [PASSED] 42 VFs [04:48:34] [PASSED] 43 VFs [04:48:34] [PASSED] 44 VFs [04:48:34] [PASSED] 45 VFs [04:48:34] [PASSED] 46 VFs [04:48:34] [PASSED] 47 VFs [04:48:34] [PASSED] 48 VFs [04:48:34] [PASSED] 49 VFs [04:48:34] [PASSED] 50 VFs [04:48:34] [PASSED] 51 VFs [04:48:34] [PASSED] 52 VFs [04:48:34] [PASSED] 53 VFs [04:48:34] [PASSED] 54 VFs [04:48:34] [PASSED] 55 VFs [04:48:34] [PASSED] 56 VFs [04:48:34] [PASSED] 57 VFs [04:48:34] [PASSED] 58 VFs [04:48:34] [PASSED] 59 VFs [04:48:34] [PASSED] 60 VFs [04:48:34] [PASSED] 61 VFs [04:48:34] [PASSED] 62 VFs [04:48:34] [PASSED] 63 VFs [04:48:34] ================= [PASSED] fair_doorbells ================== [04:48:34] ======================== fair_ggtt ======================== [04:48:34] [PASSED] 1 VF [04:48:34] [PASSED] 2 VFs [04:48:34] [PASSED] 3 VFs [04:48:34] [PASSED] 4 VFs [04:48:34] [PASSED] 5 VFs [04:48:34] [PASSED] 6 VFs [04:48:34] [PASSED] 7 VFs [04:48:34] [PASSED] 8 VFs [04:48:34] [PASSED] 9 VFs [04:48:34] [PASSED] 10 VFs [04:48:34] [PASSED] 11 VFs [04:48:34] [PASSED] 12 VFs [04:48:34] [PASSED] 13 VFs [04:48:34] [PASSED] 14 VFs [04:48:34] [PASSED] 15 VFs [04:48:34] [PASSED] 16 VFs [04:48:34] [PASSED] 17 VFs [04:48:34] [PASSED] 18 VFs [04:48:34] [PASSED] 19 VFs [04:48:34] [PASSED] 20 VFs [04:48:34] [PASSED] 21 VFs [04:48:34] [PASSED] 22 VFs [04:48:34] [PASSED] 23 VFs [04:48:34] [PASSED] 24 VFs [04:48:34] [PASSED] 25 VFs [04:48:34] [PASSED] 26 VFs [04:48:34] [PASSED] 27 VFs [04:48:34] [PASSED] 28 VFs [04:48:34] [PASSED] 29 VFs [04:48:34] [PASSED] 30 VFs [04:48:34] [PASSED] 31 VFs [04:48:34] [PASSED] 32 VFs [04:48:34] [PASSED] 33 VFs [04:48:34] [PASSED] 34 VFs [04:48:34] [PASSED] 35 VFs [04:48:34] [PASSED] 36 VFs [04:48:34] [PASSED] 37 VFs [04:48:34] [PASSED] 38 VFs [04:48:34] [PASSED] 39 VFs [04:48:34] [PASSED] 40 VFs [04:48:34] [PASSED] 41 VFs [04:48:34] [PASSED] 42 VFs [04:48:34] [PASSED] 43 VFs [04:48:34] [PASSED] 44 VFs [04:48:34] [PASSED] 45 VFs [04:48:34] [PASSED] 46 VFs [04:48:34] [PASSED] 47 VFs [04:48:34] [PASSED] 48 VFs [04:48:34] [PASSED] 49 VFs [04:48:34] [PASSED] 50 VFs [04:48:34] [PASSED] 51 VFs [04:48:34] [PASSED] 52 VFs [04:48:34] [PASSED] 53 VFs [04:48:34] [PASSED] 54 VFs [04:48:34] [PASSED] 55 VFs [04:48:34] [PASSED] 56 VFs [04:48:34] [PASSED] 57 VFs [04:48:34] [PASSED] 58 VFs [04:48:34] [PASSED] 59 VFs [04:48:34] [PASSED] 60 VFs [04:48:34] [PASSED] 61 VFs [04:48:34] [PASSED] 62 VFs [04:48:34] [PASSED] 63 VFs [04:48:34] ==================== [PASSED] fair_ggtt ==================== [04:48:34] ======================== fair_vram ======================== [04:48:34] [PASSED] 1 VF [04:48:34] [PASSED] 2 VFs [04:48:34] [PASSED] 3 VFs [04:48:34] [PASSED] 4 VFs [04:48:34] [PASSED] 5 VFs [04:48:34] [PASSED] 6 VFs [04:48:34] [PASSED] 7 VFs [04:48:34] [PASSED] 8 VFs [04:48:34] [PASSED] 9 VFs [04:48:34] [PASSED] 10 VFs [04:48:34] [PASSED] 11 VFs [04:48:34] [PASSED] 12 VFs [04:48:34] [PASSED] 13 VFs [04:48:34] [PASSED] 14 VFs [04:48:34] [PASSED] 15 VFs [04:48:34] [PASSED] 16 VFs [04:48:34] [PASSED] 17 VFs [04:48:34] [PASSED] 18 VFs [04:48:34] [PASSED] 19 VFs [04:48:34] [PASSED] 20 VFs [04:48:34] [PASSED] 21 VFs [04:48:34] [PASSED] 22 VFs [04:48:34] [PASSED] 23 VFs [04:48:34] [PASSED] 24 VFs [04:48:34] [PASSED] 25 VFs [04:48:34] [PASSED] 26 VFs [04:48:34] [PASSED] 27 VFs [04:48:34] [PASSED] 28 VFs [04:48:34] [PASSED] 29 VFs [04:48:34] [PASSED] 30 VFs [04:48:34] [PASSED] 31 VFs [04:48:34] [PASSED] 32 VFs [04:48:34] [PASSED] 33 VFs [04:48:34] [PASSED] 34 VFs [04:48:34] [PASSED] 35 VFs [04:48:34] [PASSED] 36 VFs [04:48:34] [PASSED] 37 VFs [04:48:34] [PASSED] 38 VFs [04:48:34] [PASSED] 39 VFs [04:48:34] [PASSED] 40 VFs [04:48:34] [PASSED] 41 VFs [04:48:34] [PASSED] 42 VFs [04:48:34] [PASSED] 43 VFs [04:48:34] [PASSED] 44 VFs [04:48:34] [PASSED] 45 VFs [04:48:34] [PASSED] 46 VFs [04:48:34] [PASSED] 47 VFs [04:48:34] [PASSED] 48 VFs [04:48:34] [PASSED] 49 VFs [04:48:34] [PASSED] 50 VFs [04:48:34] [PASSED] 51 VFs [04:48:34] [PASSED] 52 VFs [04:48:34] [PASSED] 53 VFs [04:48:34] [PASSED] 54 VFs [04:48:34] [PASSED] 55 VFs [04:48:34] [PASSED] 56 VFs [04:48:34] [PASSED] 57 VFs [04:48:34] [PASSED] 58 VFs [04:48:34] [PASSED] 59 VFs [04:48:34] [PASSED] 60 VFs [04:48:34] [PASSED] 61 VFs [04:48:34] [PASSED] 62 VFs [04:48:34] [PASSED] 63 VFs [04:48:34] ==================== [PASSED] fair_vram ==================== [04:48:34] ================== [PASSED] pf_gt_config =================== [04:48:34] ===================== lmtt (1 subtest) ===================== [04:48:34] ======================== test_ops ========================= [04:48:34] [PASSED] 2-level [04:48:34] [PASSED] multi-level [04:48:34] ==================== [PASSED] test_ops ===================== [04:48:34] ====================== [PASSED] lmtt ======================= [04:48:34] ================= pf_service (11 subtests) ================= [04:48:34] [PASSED] pf_negotiate_any [04:48:34] [PASSED] pf_negotiate_base_match [04:48:34] [PASSED] pf_negotiate_base_newer [04:48:34] [PASSED] pf_negotiate_base_next [04:48:34] [SKIPPED] pf_negotiate_base_older [04:48:34] [PASSED] pf_negotiate_base_prev [04:48:34] [PASSED] pf_negotiate_latest_match [04:48:34] [PASSED] pf_negotiate_latest_newer [04:48:34] [PASSED] pf_negotiate_latest_next [04:48:34] [SKIPPED] pf_negotiate_latest_older [04:48:34] [SKIPPED] pf_negotiate_latest_prev [04:48:34] =================== [PASSED] pf_service ==================== [04:48:34] ================= xe_guc_g2g (2 subtests) ================== [04:48:34] ============== xe_live_guc_g2g_kunit_default ============== [04:48:34] ========= [SKIPPED] xe_live_guc_g2g_kunit_default ========== [04:48:34] ============== xe_live_guc_g2g_kunit_allmem =============== [04:48:34] ========== [SKIPPED] xe_live_guc_g2g_kunit_allmem ========== [04:48:34] =================== [SKIPPED] xe_guc_g2g =================== [04:48:34] =================== xe_mocs (2 subtests) =================== [04:48:34] ================ xe_live_mocs_kernel_kunit ================ [04:48:34] =========== [SKIPPED] xe_live_mocs_kernel_kunit ============ [04:48:34] ================ xe_live_mocs_reset_kunit ================= [04:48:34] ============ [SKIPPED] xe_live_mocs_reset_kunit ============ [04:48:34] ==================== [SKIPPED] xe_mocs ===================== [04:48:34] ================= xe_migrate (2 subtests) ================== [04:48:34] ================= xe_migrate_sanity_kunit ================= [04:48:34] ============ [SKIPPED] xe_migrate_sanity_kunit ============= [04:48:34] ================== xe_validate_ccs_kunit ================== [04:48:34] ============= [SKIPPED] xe_validate_ccs_kunit ============== [04:48:34] =================== [SKIPPED] xe_migrate =================== [04:48:34] ================== xe_dma_buf (1 subtest) ================== [04:48:34] ==================== xe_dma_buf_kunit ===================== [04:48:34] ================ [SKIPPED] xe_dma_buf_kunit ================ [04:48:34] =================== [SKIPPED] xe_dma_buf =================== [04:48:34] ================= xe_bo_shrink (1 subtest) ================= [04:48:34] =================== xe_bo_shrink_kunit ==================== [04:48:34] =============== [SKIPPED] xe_bo_shrink_kunit =============== [04:48:34] ================== [SKIPPED] xe_bo_shrink ================== [04:48:34] ==================== xe_bo (2 subtests) ==================== [04:48:34] ================== xe_ccs_migrate_kunit =================== [04:48:34] ============== [SKIPPED] xe_ccs_migrate_kunit ============== [04:48:34] ==================== xe_bo_evict_kunit ==================== [04:48:34] =============== [SKIPPED] xe_bo_evict_kunit ================ [04:48:34] ===================== [SKIPPED] xe_bo ====================== [04:48:34] ==================== args (13 subtests) ==================== [04:48:34] [PASSED] count_args_test [04:48:34] [PASSED] call_args_example [04:48:34] [PASSED] call_args_test [04:48:34] [PASSED] drop_first_arg_example [04:48:34] [PASSED] drop_first_arg_test [04:48:34] [PASSED] first_arg_example [04:48:34] [PASSED] first_arg_test [04:48:34] [PASSED] last_arg_example [04:48:34] [PASSED] last_arg_test [04:48:34] [PASSED] pick_arg_example [04:48:34] [PASSED] if_args_example [04:48:34] [PASSED] if_args_test [04:48:34] [PASSED] sep_comma_example [04:48:34] ====================== [PASSED] args ======================= [04:48:34] =================== xe_pci (3 subtests) ==================== [04:48:34] ==================== check_graphics_ip ==================== [04:48:34] [PASSED] 12.00 Xe_LP [04:48:34] [PASSED] 12.10 Xe_LP+ [04:48:34] [PASSED] 12.55 Xe_HPG [04:48:34] [PASSED] 12.60 Xe_HPC [04:48:34] [PASSED] 12.70 Xe_LPG [04:48:34] [PASSED] 12.71 Xe_LPG [04:48:34] [PASSED] 12.74 Xe_LPG+ [04:48:34] [PASSED] 20.01 Xe2_HPG [04:48:34] [PASSED] 20.02 Xe2_HPG [04:48:34] [PASSED] 20.04 Xe2_LPG [04:48:34] [PASSED] 30.00 Xe3_LPG [04:48:34] [PASSED] 30.01 Xe3_LPG [04:48:34] [PASSED] 30.03 Xe3_LPG [04:48:34] [PASSED] 30.04 Xe3_LPG [04:48:34] [PASSED] 30.05 Xe3_LPG [04:48:34] [PASSED] 35.10 Xe3p_LPG [04:48:34] [PASSED] 35.11 Xe3p_XPC [04:48:34] ================ [PASSED] check_graphics_ip ================ [04:48:34] ===================== check_media_ip ====================== [04:48:34] [PASSED] 12.00 Xe_M [04:48:34] [PASSED] 12.55 Xe_HPM [04:48:34] [PASSED] 13.00 Xe_LPM+ [04:48:34] [PASSED] 13.01 Xe2_HPM [04:48:34] [PASSED] 20.00 Xe2_LPM [04:48:34] [PASSED] 30.00 Xe3_LPM [04:48:34] [PASSED] 30.02 Xe3_LPM [04:48:34] [PASSED] 35.00 Xe3p_LPM [04:48:34] [PASSED] 35.03 Xe3p_HPM [04:48:34] ================= [PASSED] check_media_ip ================== [04:48:34] =================== check_platform_desc =================== [04:48:34] [PASSED] 0x9A60 (TIGERLAKE) [04:48:34] [PASSED] 0x9A68 (TIGERLAKE) [04:48:34] [PASSED] 0x9A70 (TIGERLAKE) [04:48:34] [PASSED] 0x9A40 (TIGERLAKE) [04:48:34] [PASSED] 0x9A49 (TIGERLAKE) [04:48:34] [PASSED] 0x9A59 (TIGERLAKE) [04:48:34] [PASSED] 0x9A78 (TIGERLAKE) [04:48:34] [PASSED] 0x9AC0 (TIGERLAKE) [04:48:34] [PASSED] 0x9AC9 (TIGERLAKE) [04:48:34] [PASSED] 0x9AD9 (TIGERLAKE) [04:48:34] [PASSED] 0x9AF8 (TIGERLAKE) [04:48:34] [PASSED] 0x4C80 (ROCKETLAKE) [04:48:34] [PASSED] 0x4C8A (ROCKETLAKE) [04:48:34] [PASSED] 0x4C8B (ROCKETLAKE) [04:48:34] [PASSED] 0x4C8C (ROCKETLAKE) [04:48:34] [PASSED] 0x4C90 (ROCKETLAKE) [04:48:34] [PASSED] 0x4C9A (ROCKETLAKE) [04:48:34] [PASSED] 0x4680 (ALDERLAKE_S) [04:48:34] [PASSED] 0x4682 (ALDERLAKE_S) [04:48:34] [PASSED] 0x4688 (ALDERLAKE_S) [04:48:34] [PASSED] 0x468A (ALDERLAKE_S) [04:48:34] [PASSED] 0x468B (ALDERLAKE_S) [04:48:34] [PASSED] 0x4690 (ALDERLAKE_S) [04:48:34] [PASSED] 0x4692 (ALDERLAKE_S) [04:48:34] [PASSED] 0x4693 (ALDERLAKE_S) [04:48:34] [PASSED] 0x46A0 (ALDERLAKE_P) [04:48:34] [PASSED] 0x46A1 (ALDERLAKE_P) [04:48:34] [PASSED] 0x46A2 (ALDERLAKE_P) [04:48:34] [PASSED] 0x46A3 (ALDERLAKE_P) [04:48:34] [PASSED] 0x46A6 (ALDERLAKE_P) [04:48:34] [PASSED] 0x46A8 (ALDERLAKE_P) [04:48:34] [PASSED] 0x46AA (ALDERLAKE_P) [04:48:34] [PASSED] 0x462A (ALDERLAKE_P) [04:48:34] [PASSED] 0x4626 (ALDERLAKE_P) [04:48:34] [PASSED] 0x4628 (ALDERLAKE_P) [04:48:34] [PASSED] 0x46B0 (ALDERLAKE_P) [04:48:34] [PASSED] 0x46B1 (ALDERLAKE_P) [04:48:34] [PASSED] 0x46B2 (ALDERLAKE_P) [04:48:34] [PASSED] 0x46B3 (ALDERLAKE_P) [04:48:34] [PASSED] 0x46C0 (ALDERLAKE_P) [04:48:34] [PASSED] 0x46C1 (ALDERLAKE_P) [04:48:34] [PASSED] 0x46C2 (ALDERLAKE_P) [04:48:34] [PASSED] 0x46C3 (ALDERLAKE_P) [04:48:34] [PASSED] 0x46D0 (ALDERLAKE_N) [04:48:34] [PASSED] 0x46D1 (ALDERLAKE_N) [04:48:34] [PASSED] 0x46D2 (ALDERLAKE_N) [04:48:34] [PASSED] 0x46D3 (ALDERLAKE_N) [04:48:34] [PASSED] 0x46D4 (ALDERLAKE_N) [04:48:34] [PASSED] 0xA721 (ALDERLAKE_P) [04:48:34] [PASSED] 0xA7A1 (ALDERLAKE_P) [04:48:34] [PASSED] 0xA7A9 (ALDERLAKE_P) [04:48:34] [PASSED] 0xA7AC (ALDERLAKE_P) [04:48:34] [PASSED] 0xA7AD (ALDERLAKE_P) [04:48:34] [PASSED] 0xA720 (ALDERLAKE_P) [04:48:34] [PASSED] 0xA7A0 (ALDERLAKE_P) [04:48:34] [PASSED] 0xA7A8 (ALDERLAKE_P) [04:48:34] [PASSED] 0xA7AA (ALDERLAKE_P) [04:48:34] [PASSED] 0xA7AB (ALDERLAKE_P) [04:48:34] [PASSED] 0xA780 (ALDERLAKE_S) [04:48:34] [PASSED] 0xA781 (ALDERLAKE_S) [04:48:34] [PASSED] 0xA782 (ALDERLAKE_S) [04:48:34] [PASSED] 0xA783 (ALDERLAKE_S) [04:48:34] [PASSED] 0xA788 (ALDERLAKE_S) [04:48:34] [PASSED] 0xA789 (ALDERLAKE_S) [04:48:34] [PASSED] 0xA78A (ALDERLAKE_S) [04:48:34] [PASSED] 0xA78B (ALDERLAKE_S) [04:48:34] [PASSED] 0x4905 (DG1) [04:48:34] [PASSED] 0x4906 (DG1) [04:48:34] [PASSED] 0x4907 (DG1) [04:48:34] [PASSED] 0x4908 (DG1) [04:48:34] [PASSED] 0x4909 (DG1) [04:48:34] [PASSED] 0x56C0 (DG2) [04:48:34] [PASSED] 0x56C2 (DG2) [04:48:34] [PASSED] 0x56C1 (DG2) [04:48:34] [PASSED] 0x7D51 (METEORLAKE) [04:48:34] [PASSED] 0x7DD1 (METEORLAKE) [04:48:34] [PASSED] 0x7D41 (METEORLAKE) [04:48:34] [PASSED] 0x7D67 (METEORLAKE) [04:48:34] [PASSED] 0xB640 (METEORLAKE) [04:48:34] [PASSED] 0x56A0 (DG2) [04:48:34] [PASSED] 0x56A1 (DG2) [04:48:34] [PASSED] 0x56A2 (DG2) [04:48:34] [PASSED] 0x56BE (DG2) [04:48:34] [PASSED] 0x56BF (DG2) [04:48:34] [PASSED] 0x5690 (DG2) [04:48:34] [PASSED] 0x5691 (DG2) [04:48:34] [PASSED] 0x5692 (DG2) [04:48:34] [PASSED] 0x56A5 (DG2) [04:48:34] [PASSED] 0x56A6 (DG2) [04:48:34] [PASSED] 0x56B0 (DG2) [04:48:34] [PASSED] 0x56B1 (DG2) [04:48:34] [PASSED] 0x56BA (DG2) [04:48:34] [PASSED] 0x56BB (DG2) [04:48:34] [PASSED] 0x56BC (DG2) [04:48:34] [PASSED] 0x56BD (DG2) [04:48:34] [PASSED] 0x5693 (DG2) [04:48:34] [PASSED] 0x5694 (DG2) [04:48:34] [PASSED] 0x5695 (DG2) [04:48:34] [PASSED] 0x56A3 (DG2) [04:48:34] [PASSED] 0x56A4 (DG2) [04:48:34] [PASSED] 0x56B2 (DG2) [04:48:34] [PASSED] 0x56B3 (DG2) [04:48:34] [PASSED] 0x5696 (DG2) [04:48:34] [PASSED] 0x5697 (DG2) [04:48:34] [PASSED] 0xB69 (PVC) [04:48:34] [PASSED] 0xB6E (PVC) [04:48:34] [PASSED] 0xBD4 (PVC) [04:48:34] [PASSED] 0xBD5 (PVC) [04:48:34] [PASSED] 0xBD6 (PVC) [04:48:34] [PASSED] 0xBD7 (PVC) [04:48:34] [PASSED] 0xBD8 (PVC) [04:48:34] [PASSED] 0xBD9 (PVC) [04:48:34] [PASSED] 0xBDA (PVC) [04:48:34] [PASSED] 0xBDB (PVC) [04:48:34] [PASSED] 0xBE0 (PVC) [04:48:34] [PASSED] 0xBE1 (PVC) [04:48:34] [PASSED] 0xBE5 (PVC) [04:48:34] [PASSED] 0x7D40 (METEORLAKE) [04:48:34] [PASSED] 0x7D45 (METEORLAKE) [04:48:34] [PASSED] 0x7D55 (METEORLAKE) [04:48:34] [PASSED] 0x7D60 (METEORLAKE) [04:48:34] [PASSED] 0x7DD5 (METEORLAKE) [04:48:34] [PASSED] 0x6420 (LUNARLAKE) [04:48:34] [PASSED] 0x64A0 (LUNARLAKE) [04:48:34] [PASSED] 0x64B0 (LUNARLAKE) [04:48:34] [PASSED] 0xE202 (BATTLEMAGE) [04:48:34] [PASSED] 0xE209 (BATTLEMAGE) [04:48:34] [PASSED] 0xE20B (BATTLEMAGE) [04:48:34] [PASSED] 0xE20C (BATTLEMAGE) [04:48:34] [PASSED] 0xE20D (BATTLEMAGE) [04:48:34] [PASSED] 0xE210 (BATTLEMAGE) [04:48:34] [PASSED] 0xE211 (BATTLEMAGE) [04:48:34] [PASSED] 0xE212 (BATTLEMAGE) [04:48:34] [PASSED] 0xE216 (BATTLEMAGE) [04:48:34] [PASSED] 0xE220 (BATTLEMAGE) [04:48:34] [PASSED] 0xE221 (BATTLEMAGE) [04:48:34] [PASSED] 0xE222 (BATTLEMAGE) [04:48:34] [PASSED] 0xE223 (BATTLEMAGE) [04:48:34] [PASSED] 0xB080 (PANTHERLAKE) [04:48:34] [PASSED] 0xB081 (PANTHERLAKE) [04:48:34] [PASSED] 0xB082 (PANTHERLAKE) [04:48:34] [PASSED] 0xB083 (PANTHERLAKE) [04:48:34] [PASSED] 0xB084 (PANTHERLAKE) [04:48:34] [PASSED] 0xB085 (PANTHERLAKE) [04:48:34] [PASSED] 0xB086 (PANTHERLAKE) [04:48:34] [PASSED] 0xB087 (PANTHERLAKE) [04:48:34] [PASSED] 0xB08F (PANTHERLAKE) [04:48:34] [PASSED] 0xB090 (PANTHERLAKE) [04:48:34] [PASSED] 0xB0A0 (PANTHERLAKE) [04:48:34] [PASSED] 0xB0B0 (PANTHERLAKE) [04:48:34] [PASSED] 0xFD80 (PANTHERLAKE) [04:48:34] [PASSED] 0xFD81 (PANTHERLAKE) [04:48:34] [PASSED] 0xD740 (NOVALAKE_S) [04:48:34] [PASSED] 0xD741 (NOVALAKE_S) [04:48:34] [PASSED] 0xD742 (NOVALAKE_S) [04:48:34] [PASSED] 0xD743 (NOVALAKE_S) [04:48:34] [PASSED] 0xD744 (NOVALAKE_S) [04:48:34] [PASSED] 0xD745 (NOVALAKE_S) [04:48:34] [PASSED] 0x674C (CRESCENTISLAND) [04:48:34] [PASSED] 0x674D (CRESCENTISLAND) [04:48:34] [PASSED] 0x674E (CRESCENTISLAND) [04:48:34] [PASSED] 0x674F (CRESCENTISLAND) [04:48:34] [PASSED] 0x6750 (CRESCENTISLAND) [04:48:34] [PASSED] 0xD750 (NOVALAKE_P) [04:48:34] [PASSED] 0xD751 (NOVALAKE_P) [04:48:34] [PASSED] 0xD752 (NOVALAKE_P) [04:48:34] [PASSED] 0xD753 (NOVALAKE_P) [04:48:34] [PASSED] 0xD754 (NOVALAKE_P) [04:48:34] [PASSED] 0xD755 (NOVALAKE_P) [04:48:34] [PASSED] 0xD756 (NOVALAKE_P) [04:48:34] [PASSED] 0xD757 (NOVALAKE_P) [04:48:34] [PASSED] 0xD75F (NOVALAKE_P) [04:48:34] =============== [PASSED] check_platform_desc =============== [04:48:34] ===================== [PASSED] xe_pci ====================== [04:48:34] =================== xe_rtp (3 subtests) ==================== [04:48:34] =================== xe_rtp_rules_tests ==================== [04:48:34] [PASSED] no [04:48:34] [PASSED] yes [04:48:34] [PASSED] no-and-no [04:48:34] [PASSED] no-and-yes [04:48:34] [PASSED] yes-and-no [04:48:34] [PASSED] yes-and-yes [04:48:34] [PASSED] no-or-no [04:48:34] [PASSED] no-or-yes [04:48:34] [PASSED] yes-or-no [04:48:34] [PASSED] yes-or-yes [04:48:34] [PASSED] no-yes-or-yes-no [04:48:34] [PASSED] no-yes-or-yes-yes [04:48:34] [PASSED] yes-yes-or-no-yes [04:48:34] [PASSED] yes-yes-or-yes-yes [04:48:34] [PASSED] no-no-or-yes-or-no [04:48:34] [PASSED] or [04:48:34] [PASSED] or-yes [04:48:34] [PASSED] or-no [04:48:34] [PASSED] yes-or [04:48:34] [PASSED] no-or [04:48:34] [PASSED] no-or-or-yes [04:48:34] [PASSED] yes-or-or-no [04:48:34] [PASSED] no-or-or-no [04:48:34] [PASSED] missing-context-engine-class [04:48:34] [PASSED] missing-context-engine-class-or-yes [04:48:34] [PASSED] missing-context-engine-class-or-or-yes [04:48:34] =============== [PASSED] xe_rtp_rules_tests ================ [04:48:34] =============== xe_rtp_process_to_sr_tests ================ [04:48:34] [PASSED] coalesce-same-reg [04:48:34] [PASSED] no-match-no-add [04:48:34] [PASSED] two-regs-two-entries [04:48:34] [PASSED] clr-one-set-other [04:48:34] [PASSED] set-field [04:48:34] [PASSED] conflict-duplicate [04:48:34] [PASSED] conflict-not-disjoint [04:48:34] [PASSED] conflict-reg-type [04:48:34] [PASSED] bad-mcr-reg-forced-to-regular [04:48:34] [PASSED] bad-regular-reg-forced-to-mcr [04:48:34] =========== [PASSED] xe_rtp_process_to_sr_tests ============ [04:48:34] ================== xe_rtp_process_tests =================== [04:48:34] [PASSED] active1 [04:48:34] [PASSED] active2 [04:48:34] [PASSED] active-inactive [04:48:34] [PASSED] inactive-active [04:48:34] [PASSED] inactive-active-inactive [04:48:34] [PASSED] inactive-inactive-inactive [04:48:34] ============== [PASSED] xe_rtp_process_tests =============== [04:48:34] ===================== [PASSED] xe_rtp ====================== [04:48:34] ==================== xe_wa (1 subtest) ===================== [04:48:34] ======================== xe_wa_gt ========================= [04:48:34] [PASSED] TIGERLAKE B0 [04:48:34] [PASSED] DG1 A0 [04:48:34] [PASSED] DG1 B0 [04:48:34] [PASSED] ALDERLAKE_S A0 [04:48:34] [PASSED] ALDERLAKE_S B0 [04:48:34] [PASSED] ALDERLAKE_S C0 [04:48:34] [PASSED] ALDERLAKE_S D0 [04:48:34] [PASSED] ALDERLAKE_P A0 [04:48:34] [PASSED] ALDERLAKE_P B0 [04:48:34] [PASSED] ALDERLAKE_P C0 [04:48:34] [PASSED] ALDERLAKE_S RPLS D0 [04:48:34] [PASSED] ALDERLAKE_P RPLU E0 [04:48:34] [PASSED] DG2 G10 C0 [04:48:34] [PASSED] DG2 G11 B1 [04:48:34] [PASSED] DG2 G12 A1 [04:48:34] [PASSED] METEORLAKE 12.70(Xe_LPG) A0 13.00(Xe_LPM+) A0 [04:48:34] [PASSED] METEORLAKE 12.71(Xe_LPG) A0 13.00(Xe_LPM+) A0 [04:48:34] [PASSED] METEORLAKE 12.74(Xe_LPG+) A0 13.00(Xe_LPM+) A0 [04:48:34] [PASSED] LUNARLAKE 20.04(Xe2_LPG) A0 20.00(Xe2_LPM) A0 [04:48:34] [PASSED] LUNARLAKE 20.04(Xe2_LPG) B0 20.00(Xe2_LPM) A0 [04:48:34] [PASSED] BATTLEMAGE 20.01(Xe2_HPG) A0 13.01(Xe2_HPM) A1 [04:48:34] [PASSED] PANTHERLAKE 30.00(Xe3_LPG) A0 30.00(Xe3_LPM) A0 [04:48:34] ==================== [PASSED] xe_wa_gt ===================== [04:48:34] ====================== [PASSED] xe_wa ====================== [04:48:34] ============================================================ [04:48:34] Testing complete. Ran 624 tests: passed: 606, skipped: 18 [04:48:34] Elapsed time: 36.198s total, 4.224s configuring, 31.307s building, 0.629s running + /kernel/tools/testing/kunit/kunit.py run --kunitconfig /kernel/drivers/gpu/drm/tests/.kunitconfig [04:48:34] Configuring KUnit Kernel ... Regenerating .config ... Populating config with: $ make ARCH=um O=.kunit olddefconfig [04:48:36] 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 [04:49:00] Starting KUnit Kernel (1/1)... [04:49:00] ============================================================ Running tests with: $ .kunit/linux kunit.enable=1 mem=1G console=tty kunit_shutdown=halt [04:49:01] ============ drm_test_pick_cmdline (2 subtests) ============ [04:49:01] [PASSED] drm_test_pick_cmdline_res_1920_1080_60 [04:49:01] =============== drm_test_pick_cmdline_named =============== [04:49:01] [PASSED] NTSC [04:49:01] [PASSED] NTSC-J [04:49:01] [PASSED] PAL [04:49:01] [PASSED] PAL-M [04:49:01] =========== [PASSED] drm_test_pick_cmdline_named =========== [04:49:01] ============== [PASSED] drm_test_pick_cmdline ============== [04:49:01] == drm_test_atomic_get_connector_for_encoder (1 subtest) === [04:49:01] [PASSED] drm_test_drm_atomic_get_connector_for_encoder [04:49:01] ==== [PASSED] drm_test_atomic_get_connector_for_encoder ==== [04:49:01] =========== drm_validate_clone_mode (2 subtests) =========== [04:49:01] ============== drm_test_check_in_clone_mode =============== [04:49:01] [PASSED] in_clone_mode [04:49:01] [PASSED] not_in_clone_mode [04:49:01] ========== [PASSED] drm_test_check_in_clone_mode =========== [04:49:01] =============== drm_test_check_valid_clones =============== [04:49:01] [PASSED] not_in_clone_mode [04:49:01] [PASSED] valid_clone [04:49:01] [PASSED] invalid_clone [04:49:01] =========== [PASSED] drm_test_check_valid_clones =========== [04:49:01] ============= [PASSED] drm_validate_clone_mode ============= [04:49:01] ============= drm_validate_modeset (1 subtest) ============= [04:49:01] [PASSED] drm_test_check_connector_changed_modeset [04:49:01] ============== [PASSED] drm_validate_modeset =============== [04:49:01] ====== drm_test_bridge_get_current_state (2 subtests) ====== [04:49:01] [PASSED] drm_test_drm_bridge_get_current_state_atomic [04:49:01] [PASSED] drm_test_drm_bridge_get_current_state_legacy [04:49:01] ======== [PASSED] drm_test_bridge_get_current_state ======== [04:49:01] ====== drm_test_bridge_helper_reset_crtc (3 subtests) ====== [04:49:01] [PASSED] drm_test_drm_bridge_helper_reset_crtc_atomic [04:49:01] [PASSED] drm_test_drm_bridge_helper_reset_crtc_atomic_disabled [04:49:01] [PASSED] drm_test_drm_bridge_helper_reset_crtc_legacy [04:49:01] ======== [PASSED] drm_test_bridge_helper_reset_crtc ======== [04:49:01] ============== drm_bridge_alloc (2 subtests) =============== [04:49:01] [PASSED] drm_test_drm_bridge_alloc_basic [04:49:01] [PASSED] drm_test_drm_bridge_alloc_get_put [04:49:01] ================ [PASSED] drm_bridge_alloc ================= [04:49:01] ============= drm_cmdline_parser (40 subtests) ============= [04:49:01] [PASSED] drm_test_cmdline_force_d_only [04:49:01] [PASSED] drm_test_cmdline_force_D_only_dvi [04:49:01] [PASSED] drm_test_cmdline_force_D_only_hdmi [04:49:01] [PASSED] drm_test_cmdline_force_D_only_not_digital [04:49:01] [PASSED] drm_test_cmdline_force_e_only [04:49:01] [PASSED] drm_test_cmdline_res [04:49:01] [PASSED] drm_test_cmdline_res_vesa [04:49:01] [PASSED] drm_test_cmdline_res_vesa_rblank [04:49:01] [PASSED] drm_test_cmdline_res_rblank [04:49:01] [PASSED] drm_test_cmdline_res_bpp [04:49:01] [PASSED] drm_test_cmdline_res_refresh [04:49:01] [PASSED] drm_test_cmdline_res_bpp_refresh [04:49:01] [PASSED] drm_test_cmdline_res_bpp_refresh_interlaced [04:49:01] [PASSED] drm_test_cmdline_res_bpp_refresh_margins [04:49:01] [PASSED] drm_test_cmdline_res_bpp_refresh_force_off [04:49:01] [PASSED] drm_test_cmdline_res_bpp_refresh_force_on [04:49:01] [PASSED] drm_test_cmdline_res_bpp_refresh_force_on_analog [04:49:01] [PASSED] drm_test_cmdline_res_bpp_refresh_force_on_digital [04:49:01] [PASSED] drm_test_cmdline_res_bpp_refresh_interlaced_margins_force_on [04:49:01] [PASSED] drm_test_cmdline_res_margins_force_on [04:49:01] [PASSED] drm_test_cmdline_res_vesa_margins [04:49:01] [PASSED] drm_test_cmdline_name [04:49:01] [PASSED] drm_test_cmdline_name_bpp [04:49:01] [PASSED] drm_test_cmdline_name_option [04:49:01] [PASSED] drm_test_cmdline_name_bpp_option [04:49:01] [PASSED] drm_test_cmdline_rotate_0 [04:49:01] [PASSED] drm_test_cmdline_rotate_90 [04:49:01] [PASSED] drm_test_cmdline_rotate_180 [04:49:01] [PASSED] drm_test_cmdline_rotate_270 [04:49:01] [PASSED] drm_test_cmdline_hmirror [04:49:01] [PASSED] drm_test_cmdline_vmirror [04:49:01] [PASSED] drm_test_cmdline_margin_options [04:49:01] [PASSED] drm_test_cmdline_multiple_options [04:49:01] [PASSED] drm_test_cmdline_bpp_extra_and_option [04:49:01] [PASSED] drm_test_cmdline_extra_and_option [04:49:01] [PASSED] drm_test_cmdline_freestanding_options [04:49:01] [PASSED] drm_test_cmdline_freestanding_force_e_and_options [04:49:01] [PASSED] drm_test_cmdline_panel_orientation [04:49:01] ================ drm_test_cmdline_invalid ================= [04:49:01] [PASSED] margin_only [04:49:01] [PASSED] interlace_only [04:49:01] [PASSED] res_missing_x [04:49:01] [PASSED] res_missing_y [04:49:01] [PASSED] res_bad_y [04:49:01] [PASSED] res_missing_y_bpp [04:49:01] [PASSED] res_bad_bpp [04:49:01] [PASSED] res_bad_refresh [04:49:01] [PASSED] res_bpp_refresh_force_on_off [04:49:01] [PASSED] res_invalid_mode [04:49:01] [PASSED] res_bpp_wrong_place_mode [04:49:01] [PASSED] name_bpp_refresh [04:49:01] [PASSED] name_refresh [04:49:01] [PASSED] name_refresh_wrong_mode [04:49:01] [PASSED] name_refresh_invalid_mode [04:49:01] [PASSED] rotate_multiple [04:49:01] [PASSED] rotate_invalid_val [04:49:01] [PASSED] rotate_truncated [04:49:01] [PASSED] invalid_option [04:49:01] [PASSED] invalid_tv_option [04:49:01] [PASSED] truncated_tv_option [04:49:01] ============ [PASSED] drm_test_cmdline_invalid ============= [04:49:01] =============== drm_test_cmdline_tv_options =============== [04:49:01] [PASSED] NTSC [04:49:01] [PASSED] NTSC_443 [04:49:01] [PASSED] NTSC_J [04:49:01] [PASSED] PAL [04:49:01] [PASSED] PAL_M [04:49:01] [PASSED] PAL_N [04:49:01] [PASSED] SECAM [04:49:01] [PASSED] MONO_525 [04:49:01] [PASSED] MONO_625 [04:49:01] =========== [PASSED] drm_test_cmdline_tv_options =========== [04:49:01] =============== [PASSED] drm_cmdline_parser ================ [04:49:01] ========== drmm_connector_hdmi_init (20 subtests) ========== [04:49:01] [PASSED] drm_test_connector_hdmi_init_valid [04:49:01] [PASSED] drm_test_connector_hdmi_init_bpc_8 [04:49:01] [PASSED] drm_test_connector_hdmi_init_bpc_10 [04:49:01] [PASSED] drm_test_connector_hdmi_init_bpc_12 [04:49:01] [PASSED] drm_test_connector_hdmi_init_bpc_invalid [04:49:01] [PASSED] drm_test_connector_hdmi_init_bpc_null [04:49:01] [PASSED] drm_test_connector_hdmi_init_formats_empty [04:49:01] [PASSED] drm_test_connector_hdmi_init_formats_no_rgb [04:49:01] === drm_test_connector_hdmi_init_formats_yuv420_allowed === [04:49:01] [PASSED] supported_formats=0x9 yuv420_allowed=1 [04:49:01] [PASSED] supported_formats=0x9 yuv420_allowed=0 [04:49:01] [PASSED] supported_formats=0x5 yuv420_allowed=1 [04:49:01] [PASSED] supported_formats=0x5 yuv420_allowed=0 [04:49:01] === [PASSED] drm_test_connector_hdmi_init_formats_yuv420_allowed === [04:49:01] [PASSED] drm_test_connector_hdmi_init_null_ddc [04:49:01] [PASSED] drm_test_connector_hdmi_init_null_product [04:49:01] [PASSED] drm_test_connector_hdmi_init_null_vendor [04:49:01] [PASSED] drm_test_connector_hdmi_init_product_length_exact [04:49:01] [PASSED] drm_test_connector_hdmi_init_product_length_too_long [04:49:01] [PASSED] drm_test_connector_hdmi_init_product_valid [04:49:01] [PASSED] drm_test_connector_hdmi_init_vendor_length_exact [04:49:01] [PASSED] drm_test_connector_hdmi_init_vendor_length_too_long [04:49:01] [PASSED] drm_test_connector_hdmi_init_vendor_valid [04:49:01] ========= drm_test_connector_hdmi_init_type_valid ========= [04:49:01] [PASSED] HDMI-A [04:49:01] [PASSED] HDMI-B [04:49:01] ===== [PASSED] drm_test_connector_hdmi_init_type_valid ===== [04:49:01] ======== drm_test_connector_hdmi_init_type_invalid ======== [04:49:01] [PASSED] Unknown [04:49:01] [PASSED] VGA [04:49:01] [PASSED] DVI-I [04:49:01] [PASSED] DVI-D [04:49:01] [PASSED] DVI-A [04:49:01] [PASSED] Composite [04:49:01] [PASSED] SVIDEO [04:49:01] [PASSED] LVDS [04:49:01] [PASSED] Component [04:49:01] [PASSED] DIN [04:49:01] [PASSED] DP [04:49:01] [PASSED] TV [04:49:01] [PASSED] eDP [04:49:01] [PASSED] Virtual [04:49:01] [PASSED] DSI [04:49:01] [PASSED] DPI [04:49:01] [PASSED] Writeback [04:49:01] [PASSED] SPI [04:49:01] [PASSED] USB [04:49:01] ==== [PASSED] drm_test_connector_hdmi_init_type_invalid ==== [04:49:01] ============ [PASSED] drmm_connector_hdmi_init ============= [04:49:01] ============= drmm_connector_init (3 subtests) ============= [04:49:01] [PASSED] drm_test_drmm_connector_init [04:49:01] [PASSED] drm_test_drmm_connector_init_null_ddc [04:49:01] ========= drm_test_drmm_connector_init_type_valid ========= [04:49:01] [PASSED] Unknown [04:49:01] [PASSED] VGA [04:49:01] [PASSED] DVI-I [04:49:01] [PASSED] DVI-D [04:49:01] [PASSED] DVI-A [04:49:01] [PASSED] Composite [04:49:01] [PASSED] SVIDEO [04:49:01] [PASSED] LVDS [04:49:01] [PASSED] Component [04:49:01] [PASSED] DIN [04:49:01] [PASSED] DP [04:49:01] [PASSED] HDMI-A [04:49:01] [PASSED] HDMI-B [04:49:01] [PASSED] TV [04:49:01] [PASSED] eDP [04:49:01] [PASSED] Virtual [04:49:01] [PASSED] DSI [04:49:01] [PASSED] DPI [04:49:01] [PASSED] Writeback [04:49:01] [PASSED] SPI [04:49:01] [PASSED] USB [04:49:01] ===== [PASSED] drm_test_drmm_connector_init_type_valid ===== [04:49:01] =============== [PASSED] drmm_connector_init =============== [04:49:01] ========= drm_connector_dynamic_init (6 subtests) ========== [04:49:01] [PASSED] drm_test_drm_connector_dynamic_init [04:49:01] [PASSED] drm_test_drm_connector_dynamic_init_null_ddc [04:49:01] [PASSED] drm_test_drm_connector_dynamic_init_not_added [04:49:01] [PASSED] drm_test_drm_connector_dynamic_init_properties [04:49:01] ===== drm_test_drm_connector_dynamic_init_type_valid ====== [04:49:01] [PASSED] Unknown [04:49:01] [PASSED] VGA [04:49:01] [PASSED] DVI-I [04:49:01] [PASSED] DVI-D [04:49:01] [PASSED] DVI-A [04:49:01] [PASSED] Composite [04:49:01] [PASSED] SVIDEO [04:49:01] [PASSED] LVDS [04:49:01] [PASSED] Component [04:49:01] [PASSED] DIN [04:49:01] [PASSED] DP [04:49:01] [PASSED] HDMI-A [04:49:01] [PASSED] HDMI-B [04:49:01] [PASSED] TV [04:49:01] [PASSED] eDP [04:49:01] [PASSED] Virtual [04:49:01] [PASSED] DSI [04:49:01] [PASSED] DPI [04:49:01] [PASSED] Writeback [04:49:01] [PASSED] SPI [04:49:01] [PASSED] USB [04:49:01] = [PASSED] drm_test_drm_connector_dynamic_init_type_valid == [04:49:01] ======== drm_test_drm_connector_dynamic_init_name ========= [04:49:01] [PASSED] Unknown [04:49:01] [PASSED] VGA [04:49:01] [PASSED] DVI-I [04:49:01] [PASSED] DVI-D [04:49:01] [PASSED] DVI-A [04:49:01] [PASSED] Composite [04:49:01] [PASSED] SVIDEO [04:49:01] [PASSED] LVDS [04:49:01] [PASSED] Component [04:49:01] [PASSED] DIN [04:49:01] [PASSED] DP [04:49:01] [PASSED] HDMI-A [04:49:01] [PASSED] HDMI-B [04:49:01] [PASSED] TV [04:49:01] [PASSED] eDP [04:49:01] [PASSED] Virtual [04:49:01] [PASSED] DSI [04:49:01] [PASSED] DPI [04:49:01] [PASSED] Writeback [04:49:01] [PASSED] SPI [04:49:01] [PASSED] USB [04:49:01] ==== [PASSED] drm_test_drm_connector_dynamic_init_name ===== [04:49:01] =========== [PASSED] drm_connector_dynamic_init ============ [04:49:01] ==== drm_connector_dynamic_register_early (4 subtests) ===== [04:49:01] [PASSED] drm_test_drm_connector_dynamic_register_early_on_list [04:49:01] [PASSED] drm_test_drm_connector_dynamic_register_early_defer [04:49:01] [PASSED] drm_test_drm_connector_dynamic_register_early_no_init [04:49:01] [PASSED] drm_test_drm_connector_dynamic_register_early_no_mode_object [04:49:01] ====== [PASSED] drm_connector_dynamic_register_early ======= [04:49:01] ======= drm_connector_dynamic_register (7 subtests) ======== [04:49:01] [PASSED] drm_test_drm_connector_dynamic_register_on_list [04:49:01] [PASSED] drm_test_drm_connector_dynamic_register_no_defer [04:49:01] [PASSED] drm_test_drm_connector_dynamic_register_no_init [04:49:01] [PASSED] drm_test_drm_connector_dynamic_register_mode_object [04:49:01] [PASSED] drm_test_drm_connector_dynamic_register_sysfs [04:49:01] [PASSED] drm_test_drm_connector_dynamic_register_sysfs_name [04:49:01] [PASSED] drm_test_drm_connector_dynamic_register_debugfs [04:49:01] ========= [PASSED] drm_connector_dynamic_register ========== [04:49:01] = drm_connector_attach_broadcast_rgb_property (2 subtests) = [04:49:01] [PASSED] drm_test_drm_connector_attach_broadcast_rgb_property [04:49:01] [PASSED] drm_test_drm_connector_attach_broadcast_rgb_property_hdmi_connector [04:49:01] === [PASSED] drm_connector_attach_broadcast_rgb_property === [04:49:01] ========== drm_get_tv_mode_from_name (2 subtests) ========== [04:49:01] ========== drm_test_get_tv_mode_from_name_valid =========== [04:49:01] [PASSED] NTSC [04:49:01] [PASSED] NTSC-443 [04:49:01] [PASSED] NTSC-J [04:49:01] [PASSED] PAL [04:49:01] [PASSED] PAL-M [04:49:01] [PASSED] PAL-N [04:49:01] [PASSED] SECAM [04:49:01] [PASSED] Mono [04:49:01] ====== [PASSED] drm_test_get_tv_mode_from_name_valid ======= [04:49:01] [PASSED] drm_test_get_tv_mode_from_name_truncated [04:49:01] ============ [PASSED] drm_get_tv_mode_from_name ============ [04:49:01] = drm_test_connector_hdmi_compute_mode_clock (12 subtests) = [04:49:01] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb [04:49:01] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb_10bpc [04:49:01] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb_10bpc_vic_1 [04:49:01] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb_12bpc [04:49:01] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb_12bpc_vic_1 [04:49:01] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb_double [04:49:01] = drm_test_connector_hdmi_compute_mode_clock_yuv420_valid = [04:49:01] [PASSED] VIC 96 [04:49:01] [PASSED] VIC 97 [04:49:01] [PASSED] VIC 101 [04:49:01] [PASSED] VIC 102 [04:49:01] [PASSED] VIC 106 [04:49:01] [PASSED] VIC 107 [04:49:01] === [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv420_valid === [04:49:01] [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv420_10_bpc [04:49:01] [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv420_12_bpc [04:49:01] [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv422_8_bpc [04:49:01] [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv422_10_bpc [04:49:01] [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv422_12_bpc [04:49:01] === [PASSED] drm_test_connector_hdmi_compute_mode_clock ==== [04:49:01] == drm_hdmi_connector_get_broadcast_rgb_name (2 subtests) == [04:49:01] === drm_test_drm_hdmi_connector_get_broadcast_rgb_name ==== [04:49:01] [PASSED] Automatic [04:49:01] [PASSED] Full [04:49:01] [PASSED] Limited 16:235 [04:49:01] === [PASSED] drm_test_drm_hdmi_connector_get_broadcast_rgb_name === [04:49:01] [PASSED] drm_test_drm_hdmi_connector_get_broadcast_rgb_name_invalid [04:49:01] ==== [PASSED] drm_hdmi_connector_get_broadcast_rgb_name ==== [04:49:01] == drm_hdmi_connector_get_output_format_name (2 subtests) == [04:49:01] === drm_test_drm_hdmi_connector_get_output_format_name ==== [04:49:01] [PASSED] RGB [04:49:01] [PASSED] YUV 4:2:0 [04:49:01] [PASSED] YUV 4:2:2 [04:49:01] [PASSED] YUV 4:4:4 [04:49:01] === [PASSED] drm_test_drm_hdmi_connector_get_output_format_name === [04:49:01] [PASSED] drm_test_drm_hdmi_connector_get_output_format_name_invalid [04:49:01] ==== [PASSED] drm_hdmi_connector_get_output_format_name ==== [04:49:01] ============= drm_damage_helper (21 subtests) ============== [04:49:01] [PASSED] drm_test_damage_iter_no_damage [04:49:01] [PASSED] drm_test_damage_iter_no_damage_fractional_src [04:49:01] [PASSED] drm_test_damage_iter_no_damage_src_moved [04:49:01] [PASSED] drm_test_damage_iter_no_damage_fractional_src_moved [04:49:01] [PASSED] drm_test_damage_iter_no_damage_not_visible [04:49:01] [PASSED] drm_test_damage_iter_no_damage_no_crtc [04:49:01] [PASSED] drm_test_damage_iter_no_damage_no_fb [04:49:01] [PASSED] drm_test_damage_iter_simple_damage [04:49:01] [PASSED] drm_test_damage_iter_single_damage [04:49:01] [PASSED] drm_test_damage_iter_single_damage_intersect_src [04:49:01] [PASSED] drm_test_damage_iter_single_damage_outside_src [04:49:01] [PASSED] drm_test_damage_iter_single_damage_fractional_src [04:49:01] [PASSED] drm_test_damage_iter_single_damage_intersect_fractional_src [04:49:01] [PASSED] drm_test_damage_iter_single_damage_outside_fractional_src [04:49:01] [PASSED] drm_test_damage_iter_single_damage_src_moved [04:49:01] [PASSED] drm_test_damage_iter_single_damage_fractional_src_moved [04:49:01] [PASSED] drm_test_damage_iter_damage [04:49:01] [PASSED] drm_test_damage_iter_damage_one_intersect [04:49:01] [PASSED] drm_test_damage_iter_damage_one_outside [04:49:01] [PASSED] drm_test_damage_iter_damage_src_moved [04:49:01] [PASSED] drm_test_damage_iter_damage_not_visible [04:49:01] ================ [PASSED] drm_damage_helper ================ [04:49:01] ============== drm_dp_mst_helper (3 subtests) ============== [04:49:01] ============== drm_test_dp_mst_calc_pbn_mode ============== [04:49:01] [PASSED] Clock 154000 BPP 30 DSC disabled [04:49:01] [PASSED] Clock 234000 BPP 30 DSC disabled [04:49:01] [PASSED] Clock 297000 BPP 24 DSC disabled [04:49:01] [PASSED] Clock 332880 BPP 24 DSC enabled [04:49:01] [PASSED] Clock 324540 BPP 24 DSC enabled [04:49:01] ========== [PASSED] drm_test_dp_mst_calc_pbn_mode ========== [04:49:01] ============== drm_test_dp_mst_calc_pbn_div =============== [04:49:01] [PASSED] Link rate 2000000 lane count 4 [04:49:01] [PASSED] Link rate 2000000 lane count 2 [04:49:01] [PASSED] Link rate 2000000 lane count 1 [04:49:01] [PASSED] Link rate 1350000 lane count 4 [04:49:01] [PASSED] Link rate 1350000 lane count 2 [04:49:01] [PASSED] Link rate 1350000 lane count 1 [04:49:01] [PASSED] Link rate 1000000 lane count 4 [04:49:01] [PASSED] Link rate 1000000 lane count 2 [04:49:01] [PASSED] Link rate 1000000 lane count 1 [04:49:01] [PASSED] Link rate 810000 lane count 4 [04:49:01] [PASSED] Link rate 810000 lane count 2 [04:49:01] [PASSED] Link rate 810000 lane count 1 [04:49:01] [PASSED] Link rate 540000 lane count 4 [04:49:01] [PASSED] Link rate 540000 lane count 2 [04:49:01] [PASSED] Link rate 540000 lane count 1 [04:49:01] [PASSED] Link rate 270000 lane count 4 [04:49:01] [PASSED] Link rate 270000 lane count 2 [04:49:01] [PASSED] Link rate 270000 lane count 1 [04:49:01] [PASSED] Link rate 162000 lane count 4 [04:49:01] [PASSED] Link rate 162000 lane count 2 [04:49:01] [PASSED] Link rate 162000 lane count 1 [04:49:01] ========== [PASSED] drm_test_dp_mst_calc_pbn_div =========== [04:49:01] ========= drm_test_dp_mst_sideband_msg_req_decode ========= [04:49:01] [PASSED] DP_ENUM_PATH_RESOURCES with port number [04:49:01] [PASSED] DP_POWER_UP_PHY with port number [04:49:01] [PASSED] DP_POWER_DOWN_PHY with port number [04:49:01] [PASSED] DP_ALLOCATE_PAYLOAD with SDP stream sinks [04:49:01] [PASSED] DP_ALLOCATE_PAYLOAD with port number [04:49:01] [PASSED] DP_ALLOCATE_PAYLOAD with VCPI [04:49:01] [PASSED] DP_ALLOCATE_PAYLOAD with PBN [04:49:01] [PASSED] DP_QUERY_PAYLOAD with port number [04:49:01] [PASSED] DP_QUERY_PAYLOAD with VCPI [04:49:01] [PASSED] DP_REMOTE_DPCD_READ with port number [04:49:01] [PASSED] DP_REMOTE_DPCD_READ with DPCD address [04:49:01] [PASSED] DP_REMOTE_DPCD_READ with max number of bytes [04:49:01] [PASSED] DP_REMOTE_DPCD_WRITE with port number [04:49:01] [PASSED] DP_REMOTE_DPCD_WRITE with DPCD address [04:49:01] [PASSED] DP_REMOTE_DPCD_WRITE with data array [04:49:01] [PASSED] DP_REMOTE_I2C_READ with port number [04:49:01] [PASSED] DP_REMOTE_I2C_READ with I2C device ID [04:49:01] [PASSED] DP_REMOTE_I2C_READ with transactions array [04:49:01] [PASSED] DP_REMOTE_I2C_WRITE with port number [04:49:01] [PASSED] DP_REMOTE_I2C_WRITE with I2C device ID [04:49:01] [PASSED] DP_REMOTE_I2C_WRITE with data array [04:49:01] [PASSED] DP_QUERY_STREAM_ENC_STATUS with stream ID [04:49:01] [PASSED] DP_QUERY_STREAM_ENC_STATUS with client ID [04:49:01] [PASSED] DP_QUERY_STREAM_ENC_STATUS with stream event [04:49:01] [PASSED] DP_QUERY_STREAM_ENC_STATUS with valid stream event [04:49:01] [PASSED] DP_QUERY_STREAM_ENC_STATUS with stream behavior [04:49:01] [PASSED] DP_QUERY_STREAM_ENC_STATUS with a valid stream behavior [04:49:01] ===== [PASSED] drm_test_dp_mst_sideband_msg_req_decode ===== [04:49:01] ================ [PASSED] drm_dp_mst_helper ================ [04:49:01] ================== drm_exec (7 subtests) =================== [04:49:01] [PASSED] sanitycheck [04:49:01] [PASSED] test_lock [04:49:01] [PASSED] test_lock_unlock [04:49:01] [PASSED] test_duplicates [04:49:01] [PASSED] test_prepare [04:49:01] [PASSED] test_prepare_array [04:49:01] [PASSED] test_multiple_loops [04:49:01] ==================== [PASSED] drm_exec ===================== [04:49:01] =========== drm_format_helper_test (17 subtests) =========== [04:49:01] ============== drm_test_fb_xrgb8888_to_gray8 ============== [04:49:01] [PASSED] single_pixel_source_buffer [04:49:01] [PASSED] single_pixel_clip_rectangle [04:49:01] [PASSED] well_known_colors [04:49:01] [PASSED] destination_pitch [04:49:01] ========== [PASSED] drm_test_fb_xrgb8888_to_gray8 ========== [04:49:01] ============= drm_test_fb_xrgb8888_to_rgb332 ============== [04:49:01] [PASSED] single_pixel_source_buffer [04:49:01] [PASSED] single_pixel_clip_rectangle [04:49:01] [PASSED] well_known_colors [04:49:01] [PASSED] destination_pitch [04:49:01] ========= [PASSED] drm_test_fb_xrgb8888_to_rgb332 ========== [04:49:01] ============= drm_test_fb_xrgb8888_to_rgb565 ============== [04:49:01] [PASSED] single_pixel_source_buffer [04:49:01] [PASSED] single_pixel_clip_rectangle [04:49:01] [PASSED] well_known_colors [04:49:01] [PASSED] destination_pitch [04:49:01] ========= [PASSED] drm_test_fb_xrgb8888_to_rgb565 ========== [04:49:01] ============ drm_test_fb_xrgb8888_to_xrgb1555 ============= [04:49:01] [PASSED] single_pixel_source_buffer [04:49:01] [PASSED] single_pixel_clip_rectangle [04:49:01] [PASSED] well_known_colors [04:49:01] [PASSED] destination_pitch [04:49:01] ======== [PASSED] drm_test_fb_xrgb8888_to_xrgb1555 ========= [04:49:01] ============ drm_test_fb_xrgb8888_to_argb1555 ============= [04:49:01] [PASSED] single_pixel_source_buffer [04:49:01] [PASSED] single_pixel_clip_rectangle [04:49:01] [PASSED] well_known_colors [04:49:01] [PASSED] destination_pitch [04:49:01] ======== [PASSED] drm_test_fb_xrgb8888_to_argb1555 ========= [04:49:01] ============ drm_test_fb_xrgb8888_to_rgba5551 ============= [04:49:01] [PASSED] single_pixel_source_buffer [04:49:01] [PASSED] single_pixel_clip_rectangle [04:49:01] [PASSED] well_known_colors [04:49:01] [PASSED] destination_pitch [04:49:01] ======== [PASSED] drm_test_fb_xrgb8888_to_rgba5551 ========= [04:49:01] ============= drm_test_fb_xrgb8888_to_rgb888 ============== [04:49:01] [PASSED] single_pixel_source_buffer [04:49:01] [PASSED] single_pixel_clip_rectangle [04:49:01] [PASSED] well_known_colors [04:49:01] [PASSED] destination_pitch [04:49:01] ========= [PASSED] drm_test_fb_xrgb8888_to_rgb888 ========== [04:49:01] ============= drm_test_fb_xrgb8888_to_bgr888 ============== [04:49:01] [PASSED] single_pixel_source_buffer [04:49:01] [PASSED] single_pixel_clip_rectangle [04:49:01] [PASSED] well_known_colors [04:49:01] [PASSED] destination_pitch [04:49:01] ========= [PASSED] drm_test_fb_xrgb8888_to_bgr888 ========== [04:49:01] ============ drm_test_fb_xrgb8888_to_argb8888 ============= [04:49:01] [PASSED] single_pixel_source_buffer [04:49:01] [PASSED] single_pixel_clip_rectangle [04:49:01] [PASSED] well_known_colors [04:49:01] [PASSED] destination_pitch [04:49:01] ======== [PASSED] drm_test_fb_xrgb8888_to_argb8888 ========= [04:49:01] =========== drm_test_fb_xrgb8888_to_xrgb2101010 =========== [04:49:01] [PASSED] single_pixel_source_buffer [04:49:01] [PASSED] single_pixel_clip_rectangle [04:49:01] [PASSED] well_known_colors [04:49:01] [PASSED] destination_pitch [04:49:01] ======= [PASSED] drm_test_fb_xrgb8888_to_xrgb2101010 ======= [04:49:01] =========== drm_test_fb_xrgb8888_to_argb2101010 =========== [04:49:01] [PASSED] single_pixel_source_buffer [04:49:01] [PASSED] single_pixel_clip_rectangle [04:49:01] [PASSED] well_known_colors [04:49:01] [PASSED] destination_pitch [04:49:01] ======= [PASSED] drm_test_fb_xrgb8888_to_argb2101010 ======= [04:49:01] ============== drm_test_fb_xrgb8888_to_mono =============== [04:49:01] [PASSED] single_pixel_source_buffer [04:49:01] [PASSED] single_pixel_clip_rectangle [04:49:01] [PASSED] well_known_colors [04:49:01] [PASSED] destination_pitch [04:49:01] ========== [PASSED] drm_test_fb_xrgb8888_to_mono =========== [04:49:01] ==================== drm_test_fb_swab ===================== [04:49:01] [PASSED] single_pixel_source_buffer [04:49:01] [PASSED] single_pixel_clip_rectangle [04:49:01] [PASSED] well_known_colors [04:49:01] [PASSED] destination_pitch [04:49:01] ================ [PASSED] drm_test_fb_swab ================= [04:49:01] ============ drm_test_fb_xrgb8888_to_xbgr8888 ============= [04:49:01] [PASSED] single_pixel_source_buffer [04:49:01] [PASSED] single_pixel_clip_rectangle [04:49:01] [PASSED] well_known_colors [04:49:01] [PASSED] destination_pitch [04:49:01] ======== [PASSED] drm_test_fb_xrgb8888_to_xbgr8888 ========= [04:49:01] ============ drm_test_fb_xrgb8888_to_abgr8888 ============= [04:49:01] [PASSED] single_pixel_source_buffer [04:49:01] [PASSED] single_pixel_clip_rectangle [04:49:01] [PASSED] well_known_colors [04:49:01] [PASSED] destination_pitch [04:49:01] ======== [PASSED] drm_test_fb_xrgb8888_to_abgr8888 ========= [04:49:01] ================= drm_test_fb_clip_offset ================= [04:49:01] [PASSED] pass through [04:49:01] [PASSED] horizontal offset [04:49:01] [PASSED] vertical offset [04:49:01] [PASSED] horizontal and vertical offset [04:49:01] [PASSED] horizontal offset (custom pitch) [04:49:01] [PASSED] vertical offset (custom pitch) [04:49:01] [PASSED] horizontal and vertical offset (custom pitch) [04:49:01] ============= [PASSED] drm_test_fb_clip_offset ============= [04:49:01] =================== drm_test_fb_memcpy ==================== [04:49:01] [PASSED] single_pixel_source_buffer: XR24 little-endian (0x34325258) [04:49:01] [PASSED] single_pixel_source_buffer: XRA8 little-endian (0x38415258) [04:49:01] [PASSED] single_pixel_source_buffer: YU24 little-endian (0x34325559) [04:49:01] [PASSED] single_pixel_clip_rectangle: XB24 little-endian (0x34324258) [04:49:01] [PASSED] single_pixel_clip_rectangle: XRA8 little-endian (0x38415258) [04:49:01] [PASSED] single_pixel_clip_rectangle: YU24 little-endian (0x34325559) [04:49:01] [PASSED] well_known_colors: XB24 little-endian (0x34324258) [04:49:01] [PASSED] well_known_colors: XRA8 little-endian (0x38415258) [04:49:01] [PASSED] well_known_colors: YU24 little-endian (0x34325559) [04:49:01] [PASSED] destination_pitch: XB24 little-endian (0x34324258) [04:49:01] [PASSED] destination_pitch: XRA8 little-endian (0x38415258) [04:49:01] [PASSED] destination_pitch: YU24 little-endian (0x34325559) [04:49:01] =============== [PASSED] drm_test_fb_memcpy ================ [04:49:01] ============= [PASSED] drm_format_helper_test ============== [04:49:01] ================= drm_format (18 subtests) ================= [04:49:01] [PASSED] drm_test_format_block_width_invalid [04:49:01] [PASSED] drm_test_format_block_width_one_plane [04:49:01] [PASSED] drm_test_format_block_width_two_plane [04:49:01] [PASSED] drm_test_format_block_width_three_plane [04:49:01] [PASSED] drm_test_format_block_width_tiled [04:49:01] [PASSED] drm_test_format_block_height_invalid [04:49:01] [PASSED] drm_test_format_block_height_one_plane [04:49:01] [PASSED] drm_test_format_block_height_two_plane [04:49:01] [PASSED] drm_test_format_block_height_three_plane [04:49:01] [PASSED] drm_test_format_block_height_tiled [04:49:01] [PASSED] drm_test_format_min_pitch_invalid [04:49:01] [PASSED] drm_test_format_min_pitch_one_plane_8bpp [04:49:01] [PASSED] drm_test_format_min_pitch_one_plane_16bpp [04:49:01] [PASSED] drm_test_format_min_pitch_one_plane_24bpp [04:49:01] [PASSED] drm_test_format_min_pitch_one_plane_32bpp [04:49:01] [PASSED] drm_test_format_min_pitch_two_plane [04:49:01] [PASSED] drm_test_format_min_pitch_three_plane_8bpp [04:49:01] [PASSED] drm_test_format_min_pitch_tiled [04:49:01] =================== [PASSED] drm_format ==================== [04:49:01] ============== drm_framebuffer (10 subtests) =============== [04:49:01] ========== drm_test_framebuffer_check_src_coords ========== [04:49:01] [PASSED] Success: source fits into fb [04:49:01] [PASSED] Fail: overflowing fb with x-axis coordinate [04:49:01] [PASSED] Fail: overflowing fb with y-axis coordinate [04:49:01] [PASSED] Fail: overflowing fb with source width [04:49:01] [PASSED] Fail: overflowing fb with source height [04:49:01] ====== [PASSED] drm_test_framebuffer_check_src_coords ====== [04:49:01] [PASSED] drm_test_framebuffer_cleanup [04:49:01] =============== drm_test_framebuffer_create =============== [04:49:01] [PASSED] ABGR8888 normal sizes [04:49:01] [PASSED] ABGR8888 max sizes [04:49:01] [PASSED] ABGR8888 pitch greater than min required [04:49:01] [PASSED] ABGR8888 pitch less than min required [04:49:01] [PASSED] ABGR8888 Invalid width [04:49:01] [PASSED] ABGR8888 Invalid buffer handle [04:49:01] [PASSED] No pixel format [04:49:01] [PASSED] ABGR8888 Width 0 [04:49:01] [PASSED] ABGR8888 Height 0 [04:49:01] [PASSED] ABGR8888 Out of bound height * pitch combination [04:49:01] [PASSED] ABGR8888 Large buffer offset [04:49:01] [PASSED] ABGR8888 Buffer offset for inexistent plane [04:49:01] [PASSED] ABGR8888 Invalid flag [04:49:01] [PASSED] ABGR8888 Set DRM_MODE_FB_MODIFIERS without modifiers [04:49:01] [PASSED] ABGR8888 Valid buffer modifier [04:49:01] [PASSED] ABGR8888 Invalid buffer modifier(DRM_FORMAT_MOD_SAMSUNG_64_32_TILE) [04:49:01] [PASSED] ABGR8888 Extra pitches without DRM_MODE_FB_MODIFIERS [04:49:01] [PASSED] ABGR8888 Extra pitches with DRM_MODE_FB_MODIFIERS [04:49:01] [PASSED] NV12 Normal sizes [04:49:01] [PASSED] NV12 Max sizes [04:49:01] [PASSED] NV12 Invalid pitch [04:49:01] [PASSED] NV12 Invalid modifier/missing DRM_MODE_FB_MODIFIERS flag [04:49:01] [PASSED] NV12 different modifier per-plane [04:49:01] [PASSED] NV12 with DRM_FORMAT_MOD_SAMSUNG_64_32_TILE [04:49:01] [PASSED] NV12 Valid modifiers without DRM_MODE_FB_MODIFIERS [04:49:01] [PASSED] NV12 Modifier for inexistent plane [04:49:01] [PASSED] NV12 Handle for inexistent plane [04:49:01] [PASSED] NV12 Handle for inexistent plane without DRM_MODE_FB_MODIFIERS [04:49:01] [PASSED] YVU420 DRM_MODE_FB_MODIFIERS set without modifier [04:49:01] [PASSED] YVU420 Normal sizes [04:49:01] [PASSED] YVU420 Max sizes [04:49:01] [PASSED] YVU420 Invalid pitch [04:49:01] [PASSED] YVU420 Different pitches [04:49:01] [PASSED] YVU420 Different buffer offsets/pitches [04:49:01] [PASSED] YVU420 Modifier set just for plane 0, without DRM_MODE_FB_MODIFIERS [04:49:01] [PASSED] YVU420 Modifier set just for planes 0, 1, without DRM_MODE_FB_MODIFIERS [04:49:01] [PASSED] YVU420 Modifier set just for plane 0, 1, with DRM_MODE_FB_MODIFIERS [04:49:01] [PASSED] YVU420 Valid modifier [04:49:01] [PASSED] YVU420 Different modifiers per plane [04:49:01] [PASSED] YVU420 Modifier for inexistent plane [04:49:01] [PASSED] YUV420_10BIT Invalid modifier(DRM_FORMAT_MOD_LINEAR) [04:49:01] [PASSED] X0L2 Normal sizes [04:49:01] [PASSED] X0L2 Max sizes [04:49:01] [PASSED] X0L2 Invalid pitch [04:49:01] [PASSED] X0L2 Pitch greater than minimum required [04:49:01] [PASSED] X0L2 Handle for inexistent plane [04:49:01] [PASSED] X0L2 Offset for inexistent plane, without DRM_MODE_FB_MODIFIERS set [04:49:01] [PASSED] X0L2 Modifier without DRM_MODE_FB_MODIFIERS set [04:49:01] [PASSED] X0L2 Valid modifier [04:49:01] [PASSED] X0L2 Modifier for inexistent plane [04:49:01] =========== [PASSED] drm_test_framebuffer_create =========== [04:49:01] [PASSED] drm_test_framebuffer_free [04:49:01] [PASSED] drm_test_framebuffer_init [04:49:01] [PASSED] drm_test_framebuffer_init_bad_format [04:49:01] [PASSED] drm_test_framebuffer_init_dev_mismatch [04:49:01] [PASSED] drm_test_framebuffer_lookup [04:49:01] [PASSED] drm_test_framebuffer_lookup_inexistent [04:49:01] [PASSED] drm_test_framebuffer_modifiers_not_supported [04:49:01] ================= [PASSED] drm_framebuffer ================= [04:49:01] ================ drm_gem_shmem (8 subtests) ================ [04:49:01] [PASSED] drm_gem_shmem_test_obj_create [04:49:01] [PASSED] drm_gem_shmem_test_obj_create_private [04:49:01] [PASSED] drm_gem_shmem_test_pin_pages [04:49:01] [PASSED] drm_gem_shmem_test_vmap [04:49:01] [PASSED] drm_gem_shmem_test_get_sg_table [04:49:01] [PASSED] drm_gem_shmem_test_get_pages_sgt [04:49:01] [PASSED] drm_gem_shmem_test_madvise [04:49:01] [PASSED] drm_gem_shmem_test_purge [04:49:01] ================== [PASSED] drm_gem_shmem ================== [04:49:01] === drm_atomic_helper_connector_hdmi_check (27 subtests) === [04:49:01] [PASSED] drm_test_check_broadcast_rgb_auto_cea_mode [04:49:01] [PASSED] drm_test_check_broadcast_rgb_auto_cea_mode_vic_1 [04:49:01] [PASSED] drm_test_check_broadcast_rgb_full_cea_mode [04:49:01] [PASSED] drm_test_check_broadcast_rgb_full_cea_mode_vic_1 [04:49:01] [PASSED] drm_test_check_broadcast_rgb_limited_cea_mode [04:49:01] [PASSED] drm_test_check_broadcast_rgb_limited_cea_mode_vic_1 [04:49:01] ====== drm_test_check_broadcast_rgb_cea_mode_yuv420 ======= [04:49:01] [PASSED] Automatic [04:49:01] [PASSED] Full [04:49:01] [PASSED] Limited 16:235 [04:49:01] == [PASSED] drm_test_check_broadcast_rgb_cea_mode_yuv420 === [04:49:01] [PASSED] drm_test_check_broadcast_rgb_crtc_mode_changed [04:49:01] [PASSED] drm_test_check_broadcast_rgb_crtc_mode_not_changed [04:49:01] [PASSED] drm_test_check_disable_connector [04:49:01] [PASSED] drm_test_check_hdmi_funcs_reject_rate [04:49:01] [PASSED] drm_test_check_max_tmds_rate_bpc_fallback_rgb [04:49:01] [PASSED] drm_test_check_max_tmds_rate_bpc_fallback_yuv420 [04:49:01] [PASSED] drm_test_check_max_tmds_rate_bpc_fallback_ignore_yuv422 [04:49:01] [PASSED] drm_test_check_max_tmds_rate_bpc_fallback_ignore_yuv420 [04:49:01] [PASSED] drm_test_check_driver_unsupported_fallback_yuv420 [04:49:01] [PASSED] drm_test_check_output_bpc_crtc_mode_changed [04:49:01] [PASSED] drm_test_check_output_bpc_crtc_mode_not_changed [04:49:01] [PASSED] drm_test_check_output_bpc_dvi [04:49:01] [PASSED] drm_test_check_output_bpc_format_vic_1 [04:49:01] [PASSED] drm_test_check_output_bpc_format_display_8bpc_only [04:49:01] [PASSED] drm_test_check_output_bpc_format_display_rgb_only [04:49:01] [PASSED] drm_test_check_output_bpc_format_driver_8bpc_only [04:49:01] [PASSED] drm_test_check_output_bpc_format_driver_rgb_only [04:49:01] [PASSED] drm_test_check_tmds_char_rate_rgb_8bpc [04:49:01] [PASSED] drm_test_check_tmds_char_rate_rgb_10bpc [04:49:01] [PASSED] drm_test_check_tmds_char_rate_rgb_12bpc [04:49:01] ===== [PASSED] drm_atomic_helper_connector_hdmi_check ====== [04:49:01] === drm_atomic_helper_connector_hdmi_reset (6 subtests) ==== [04:49:01] [PASSED] drm_test_check_broadcast_rgb_value [04:49:01] [PASSED] drm_test_check_bpc_8_value [04:49:01] [PASSED] drm_test_check_bpc_10_value [04:49:01] [PASSED] drm_test_check_bpc_12_value [04:49:01] [PASSED] drm_test_check_format_value [04:49:01] [PASSED] drm_test_check_tmds_char_value [04:49:01] ===== [PASSED] drm_atomic_helper_connector_hdmi_reset ====== [04:49:01] = drm_atomic_helper_connector_hdmi_mode_valid (4 subtests) = [04:49:01] [PASSED] drm_test_check_mode_valid [04:49:01] [PASSED] drm_test_check_mode_valid_reject [04:49:01] [PASSED] drm_test_check_mode_valid_reject_rate [04:49:01] [PASSED] drm_test_check_mode_valid_reject_max_clock [04:49:01] === [PASSED] drm_atomic_helper_connector_hdmi_mode_valid === [04:49:01] = drm_atomic_helper_connector_hdmi_infoframes (5 subtests) = [04:49:01] [PASSED] drm_test_check_infoframes [04:49:01] [PASSED] drm_test_check_reject_avi_infoframe [04:49:01] [PASSED] drm_test_check_reject_hdr_infoframe_bpc_8 [04:49:01] [PASSED] drm_test_check_reject_hdr_infoframe_bpc_10 [04:49:01] [PASSED] drm_test_check_reject_audio_infoframe [04:49:01] === [PASSED] drm_atomic_helper_connector_hdmi_infoframes === [04:49:01] ================= drm_managed (2 subtests) ================= [04:49:01] [PASSED] drm_test_managed_release_action [04:49:01] [PASSED] drm_test_managed_run_action [04:49:01] =================== [PASSED] drm_managed =================== [04:49:01] =================== drm_mm (6 subtests) ==================== [04:49:01] [PASSED] drm_test_mm_init [04:49:01] [PASSED] drm_test_mm_debug [04:49:01] [PASSED] drm_test_mm_align32 [04:49:01] [PASSED] drm_test_mm_align64 [04:49:01] [PASSED] drm_test_mm_lowest [04:49:01] [PASSED] drm_test_mm_highest [04:49:01] ===================== [PASSED] drm_mm ====================== [04:49:01] ============= drm_modes_analog_tv (5 subtests) ============= [04:49:01] [PASSED] drm_test_modes_analog_tv_mono_576i [04:49:01] [PASSED] drm_test_modes_analog_tv_ntsc_480i [04:49:01] [PASSED] drm_test_modes_analog_tv_ntsc_480i_inlined [04:49:01] [PASSED] drm_test_modes_analog_tv_pal_576i [04:49:01] [PASSED] drm_test_modes_analog_tv_pal_576i_inlined [04:49:01] =============== [PASSED] drm_modes_analog_tv =============== [04:49:01] ============== drm_plane_helper (2 subtests) =============== [04:49:01] =============== drm_test_check_plane_state ================ [04:49:01] [PASSED] clipping_simple [04:49:01] [PASSED] clipping_rotate_reflect [04:49:01] [PASSED] positioning_simple [04:49:01] [PASSED] upscaling [04:49:01] [PASSED] downscaling [04:49:01] [PASSED] rounding1 [04:49:01] [PASSED] rounding2 [04:49:01] [PASSED] rounding3 [04:49:01] [PASSED] rounding4 [04:49:01] =========== [PASSED] drm_test_check_plane_state ============ [04:49:01] =========== drm_test_check_invalid_plane_state ============ [04:49:01] [PASSED] positioning_invalid [04:49:01] [PASSED] upscaling_invalid [04:49:01] [PASSED] downscaling_invalid [04:49:01] ======= [PASSED] drm_test_check_invalid_plane_state ======== [04:49:01] ================ [PASSED] drm_plane_helper ================= [04:49:01] ====== drm_connector_helper_tv_get_modes (1 subtest) ======= [04:49:01] ====== drm_test_connector_helper_tv_get_modes_check ======= [04:49:01] [PASSED] None [04:49:01] [PASSED] PAL [04:49:01] [PASSED] NTSC [04:49:01] [PASSED] Both, NTSC Default [04:49:01] [PASSED] Both, PAL Default [04:49:01] [PASSED] Both, NTSC Default, with PAL on command-line [04:49:01] [PASSED] Both, PAL Default, with NTSC on command-line [04:49:01] == [PASSED] drm_test_connector_helper_tv_get_modes_check === [04:49:01] ======== [PASSED] drm_connector_helper_tv_get_modes ======== [04:49:01] ================== drm_rect (9 subtests) =================== [04:49:01] [PASSED] drm_test_rect_clip_scaled_div_by_zero [04:49:01] [PASSED] drm_test_rect_clip_scaled_not_clipped [04:49:01] [PASSED] drm_test_rect_clip_scaled_clipped [04:49:01] [PASSED] drm_test_rect_clip_scaled_signed_vs_unsigned [04:49:01] ================= drm_test_rect_intersect ================= [04:49:01] [PASSED] top-left x bottom-right: 2x2+1+1 x 2x2+0+0 [04:49:01] [PASSED] top-right x bottom-left: 2x2+0+0 x 2x2+1-1 [04:49:01] [PASSED] bottom-left x top-right: 2x2+1-1 x 2x2+0+0 [04:49:01] [PASSED] bottom-right x top-left: 2x2+0+0 x 2x2+1+1 [04:49:01] [PASSED] right x left: 2x1+0+0 x 3x1+1+0 [04:49:01] [PASSED] left x right: 3x1+1+0 x 2x1+0+0 [04:49:01] [PASSED] up x bottom: 1x2+0+0 x 1x3+0-1 [04:49:01] [PASSED] bottom x up: 1x3+0-1 x 1x2+0+0 [04:49:01] [PASSED] touching corner: 1x1+0+0 x 2x2+1+1 [04:49:01] [PASSED] touching side: 1x1+0+0 x 1x1+1+0 [04:49:01] [PASSED] equal rects: 2x2+0+0 x 2x2+0+0 [04:49:01] [PASSED] inside another: 2x2+0+0 x 1x1+1+1 [04:49:01] [PASSED] far away: 1x1+0+0 x 1x1+3+6 [04:49:01] [PASSED] points intersecting: 0x0+5+10 x 0x0+5+10 [04:49:01] [PASSED] points not intersecting: 0x0+0+0 x 0x0+5+10 [04:49:01] ============= [PASSED] drm_test_rect_intersect ============= [04:49:01] ================ drm_test_rect_calc_hscale ================ [04:49:01] [PASSED] normal use [04:49:01] [PASSED] out of max range [04:49:01] [PASSED] out of min range [04:49:01] [PASSED] zero dst [04:49:01] [PASSED] negative src [04:49:01] [PASSED] negative dst [04:49:01] ============ [PASSED] drm_test_rect_calc_hscale ============ [04:49:01] ================ drm_test_rect_calc_vscale ================ [04:49:01] [PASSED] normal use [04:49:01] [PASSED] out of max range [04:49:01] [PASSED] out of min range [04:49:01] [PASSED] zero dst [04:49:01] [PASSED] negative src [04:49:01] [PASSED] negative dst [04:49:01] ============ [PASSED] drm_test_rect_calc_vscale ============ [04:49:01] ================== drm_test_rect_rotate =================== [04:49:01] [PASSED] reflect-x [04:49:01] [PASSED] reflect-y [04:49:01] [PASSED] rotate-0 [04:49:01] [PASSED] rotate-90 [04:49:01] [PASSED] rotate-180 [04:49:01] [PASSED] rotate-270 [04:49:01] ============== [PASSED] drm_test_rect_rotate =============== [04:49:01] ================ drm_test_rect_rotate_inv ================= [04:49:01] [PASSED] reflect-x [04:49:01] [PASSED] reflect-y [04:49:01] [PASSED] rotate-0 [04:49:01] [PASSED] rotate-90 [04:49:01] [PASSED] rotate-180 [04:49:01] [PASSED] rotate-270 [04:49:01] ============ [PASSED] drm_test_rect_rotate_inv ============= [04:49:01] ==================== [PASSED] drm_rect ===================== [04:49:01] ============ drm_sysfb_modeset_test (1 subtest) ============ [04:49:01] ============ drm_test_sysfb_build_fourcc_list ============= [04:49:01] [PASSED] no native formats [04:49:01] [PASSED] XRGB8888 as native format [04:49:01] [PASSED] remove duplicates [04:49:01] [PASSED] convert alpha formats [04:49:01] [PASSED] random formats [04:49:01] ======== [PASSED] drm_test_sysfb_build_fourcc_list ========= [04:49:01] ============= [PASSED] drm_sysfb_modeset_test ============== [04:49:01] ================== drm_fixp (2 subtests) =================== [04:49:01] [PASSED] drm_test_int2fixp [04:49:01] [PASSED] drm_test_sm2fixp [04:49:01] ==================== [PASSED] drm_fixp ===================== [04:49:01] ============================================================ [04:49:01] Testing complete. Ran 621 tests: passed: 621 [04:49:01] Elapsed time: 26.297s total, 1.722s configuring, 24.358s building, 0.191s running + /kernel/tools/testing/kunit/kunit.py run --kunitconfig /kernel/drivers/gpu/drm/ttm/tests/.kunitconfig [04:49:01] Configuring KUnit Kernel ... Regenerating .config ... Populating config with: $ make ARCH=um O=.kunit olddefconfig [04:49:02] 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 [04:49:12] Starting KUnit Kernel (1/1)... [04:49:12] ============================================================ Running tests with: $ .kunit/linux kunit.enable=1 mem=1G console=tty kunit_shutdown=halt [04:49:12] ================= ttm_device (5 subtests) ================== [04:49:12] [PASSED] ttm_device_init_basic [04:49:12] [PASSED] ttm_device_init_multiple [04:49:12] [PASSED] ttm_device_fini_basic [04:49:12] [PASSED] ttm_device_init_no_vma_man [04:49:12] ================== ttm_device_init_pools ================== [04:49:12] [PASSED] No DMA allocations, no DMA32 required [04:49:12] [PASSED] DMA allocations, DMA32 required [04:49:12] [PASSED] No DMA allocations, DMA32 required [04:49:12] [PASSED] DMA allocations, no DMA32 required [04:49:12] ============== [PASSED] ttm_device_init_pools ============== [04:49:12] =================== [PASSED] ttm_device ==================== [04:49:12] ================== ttm_pool (8 subtests) =================== [04:49:12] ================== ttm_pool_alloc_basic =================== [04:49:12] [PASSED] One page [04:49:12] [PASSED] More than one page [04:49:12] [PASSED] Above the allocation limit [04:49:12] [PASSED] One page, with coherent DMA mappings enabled [04:49:12] [PASSED] Above the allocation limit, with coherent DMA mappings enabled [04:49:12] ============== [PASSED] ttm_pool_alloc_basic =============== [04:49:12] ============== ttm_pool_alloc_basic_dma_addr ============== [04:49:12] [PASSED] One page [04:49:12] [PASSED] More than one page [04:49:12] [PASSED] Above the allocation limit [04:49:12] [PASSED] One page, with coherent DMA mappings enabled [04:49:12] [PASSED] Above the allocation limit, with coherent DMA mappings enabled [04:49:12] ========== [PASSED] ttm_pool_alloc_basic_dma_addr ========== [04:49:12] [PASSED] ttm_pool_alloc_order_caching_match [04:49:12] [PASSED] ttm_pool_alloc_caching_mismatch [04:49:12] [PASSED] ttm_pool_alloc_order_mismatch [04:49:12] [PASSED] ttm_pool_free_dma_alloc [04:49:12] [PASSED] ttm_pool_free_no_dma_alloc [04:49:12] [PASSED] ttm_pool_fini_basic [04:49:12] ==================== [PASSED] ttm_pool ===================== [04:49:12] ================ ttm_resource (8 subtests) ================= [04:49:12] ================= ttm_resource_init_basic ================= [04:49:12] [PASSED] Init resource in TTM_PL_SYSTEM [04:49:12] [PASSED] Init resource in TTM_PL_VRAM [04:49:12] [PASSED] Init resource in a private placement [04:49:12] [PASSED] Init resource in TTM_PL_SYSTEM, set placement flags [04:49:12] ============= [PASSED] ttm_resource_init_basic ============= [04:49:12] [PASSED] ttm_resource_init_pinned [04:49:12] [PASSED] ttm_resource_fini_basic [04:49:12] [PASSED] ttm_resource_manager_init_basic [04:49:12] [PASSED] ttm_resource_manager_usage_basic [04:49:12] [PASSED] ttm_resource_manager_set_used_basic [04:49:12] [PASSED] ttm_sys_man_alloc_basic [04:49:12] [PASSED] ttm_sys_man_free_basic [04:49:12] ================== [PASSED] ttm_resource =================== [04:49:12] =================== ttm_tt (15 subtests) =================== [04:49:12] ==================== ttm_tt_init_basic ==================== [04:49:12] [PASSED] Page-aligned size [04:49:12] [PASSED] Extra pages requested [04:49:12] ================ [PASSED] ttm_tt_init_basic ================ [04:49:12] [PASSED] ttm_tt_init_misaligned [04:49:12] [PASSED] ttm_tt_fini_basic [04:49:12] [PASSED] ttm_tt_fini_sg [04:49:12] [PASSED] ttm_tt_fini_shmem [04:49:12] [PASSED] ttm_tt_create_basic [04:49:12] [PASSED] ttm_tt_create_invalid_bo_type [04:49:12] [PASSED] ttm_tt_create_ttm_exists [04:49:12] [PASSED] ttm_tt_create_failed [04:49:12] [PASSED] ttm_tt_destroy_basic [04:49:12] [PASSED] ttm_tt_populate_null_ttm [04:49:12] [PASSED] ttm_tt_populate_populated_ttm [04:49:12] [PASSED] ttm_tt_unpopulate_basic [04:49:12] [PASSED] ttm_tt_unpopulate_empty_ttm [04:49:12] [PASSED] ttm_tt_swapin_basic [04:49:12] ===================== [PASSED] ttm_tt ====================== [04:49:12] =================== ttm_bo (14 subtests) =================== [04:49:12] =========== ttm_bo_reserve_optimistic_no_ticket =========== [04:49:12] [PASSED] Cannot be interrupted and sleeps [04:49:12] [PASSED] Cannot be interrupted, locks straight away [04:49:12] [PASSED] Can be interrupted, sleeps [04:49:12] ======= [PASSED] ttm_bo_reserve_optimistic_no_ticket ======= [04:49:12] [PASSED] ttm_bo_reserve_locked_no_sleep [04:49:12] [PASSED] ttm_bo_reserve_no_wait_ticket [04:49:12] [PASSED] ttm_bo_reserve_double_resv [04:49:12] [PASSED] ttm_bo_reserve_interrupted [04:49:12] [PASSED] ttm_bo_reserve_deadlock [04:49:12] [PASSED] ttm_bo_unreserve_basic [04:49:12] [PASSED] ttm_bo_unreserve_pinned [04:49:12] [PASSED] ttm_bo_unreserve_bulk [04:49:12] [PASSED] ttm_bo_fini_basic [04:49:12] [PASSED] ttm_bo_fini_shared_resv [04:49:12] [PASSED] ttm_bo_pin_basic [04:49:12] [PASSED] ttm_bo_pin_unpin_resource [04:49:12] [PASSED] ttm_bo_multiple_pin_one_unpin [04:49:12] ===================== [PASSED] ttm_bo ====================== [04:49:12] ============== ttm_bo_validate (22 subtests) =============== [04:49:12] ============== ttm_bo_init_reserved_sys_man =============== [04:49:12] [PASSED] Buffer object for userspace [04:49:12] [PASSED] Kernel buffer object [04:49:12] [PASSED] Shared buffer object [04:49:12] ========== [PASSED] ttm_bo_init_reserved_sys_man =========== [04:49:12] ============== ttm_bo_init_reserved_mock_man ============== [04:49:12] [PASSED] Buffer object for userspace [04:49:12] [PASSED] Kernel buffer object [04:49:12] [PASSED] Shared buffer object [04:49:12] ========== [PASSED] ttm_bo_init_reserved_mock_man ========== [04:49:12] [PASSED] ttm_bo_init_reserved_resv [04:49:12] ================== ttm_bo_validate_basic ================== [04:49:12] [PASSED] Buffer object for userspace [04:49:12] [PASSED] Kernel buffer object [04:49:12] [PASSED] Shared buffer object [04:49:12] ============== [PASSED] ttm_bo_validate_basic ============== [04:49:12] [PASSED] ttm_bo_validate_invalid_placement [04:49:12] ============= ttm_bo_validate_same_placement ============== [04:49:12] [PASSED] System manager [04:49:12] [PASSED] VRAM manager [04:49:12] ========= [PASSED] ttm_bo_validate_same_placement ========== [04:49:12] [PASSED] ttm_bo_validate_failed_alloc [04:49:12] [PASSED] ttm_bo_validate_pinned [04:49:12] [PASSED] ttm_bo_validate_busy_placement [04:49:12] ================ ttm_bo_validate_multihop ================= [04:49:12] [PASSED] Buffer object for userspace [04:49:12] [PASSED] Kernel buffer object [04:49:12] [PASSED] Shared buffer object [04:49:12] ============ [PASSED] ttm_bo_validate_multihop ============= [04:49:12] ========== ttm_bo_validate_no_placement_signaled ========== [04:49:12] [PASSED] Buffer object in system domain, no page vector [04:49:12] [PASSED] Buffer object in system domain with an existing page vector [04:49:12] ====== [PASSED] ttm_bo_validate_no_placement_signaled ====== [04:49:12] ======== ttm_bo_validate_no_placement_not_signaled ======== [04:49:12] [PASSED] Buffer object for userspace [04:49:12] [PASSED] Kernel buffer object [04:49:12] [PASSED] Shared buffer object [04:49:12] ==== [PASSED] ttm_bo_validate_no_placement_not_signaled ==== [04:49:12] [PASSED] ttm_bo_validate_move_fence_signaled [04:49:12] ========= ttm_bo_validate_move_fence_not_signaled ========= [04:49:12] [PASSED] Waits for GPU [04:49:12] [PASSED] Tries to lock straight away [04:49:12] ===== [PASSED] ttm_bo_validate_move_fence_not_signaled ===== [04:49:12] [PASSED] ttm_bo_validate_swapout [04:49:12] [PASSED] ttm_bo_validate_happy_evict [04:49:12] [PASSED] ttm_bo_validate_all_pinned_evict [04:49:12] [PASSED] ttm_bo_validate_allowed_only_evict [04:49:12] [PASSED] ttm_bo_validate_deleted_evict [04:49:12] [PASSED] ttm_bo_validate_busy_domain_evict [04:49:12] [PASSED] ttm_bo_validate_evict_gutting [04:49:12] [PASSED] ttm_bo_validate_recrusive_evict [04:49:12] ================= [PASSED] ttm_bo_validate ================= [04:49:12] ============================================================ [04:49:12] Testing complete. Ran 102 tests: passed: 102 [04:49:12] Elapsed time: 11.533s total, 1.711s configuring, 9.557s building, 0.224s running + cleanup ++ stat -c %u:%g /kernel + chown -R 1003:1003 /kernel ^ permalink raw reply [flat|nested] 15+ messages in thread
* ✓ Xe.CI.BAT: success for Introduce cold reset recovery method (rev6) 2026-05-20 11:33 [PATCH v6 0/5] Introduce cold reset recovery method Mallesh Koujalagi ` (10 preceding siblings ...) 2026-05-26 4:49 ` ✓ CI.KUnit: success " Patchwork @ 2026-05-26 5:28 ` Patchwork 2026-05-26 6:31 ` ✗ Xe.CI.FULL: failure " Patchwork 12 siblings, 0 replies; 15+ messages in thread From: Patchwork @ 2026-05-26 5:28 UTC (permalink / raw) To: Mallesh Koujalagi; +Cc: intel-xe [-- Attachment #1: Type: text/plain, Size: 866 bytes --] == Series Details == Series: Introduce cold reset recovery method (rev6) URL : https://patchwork.freedesktop.org/series/163428/ State : success == Summary == CI Bug Log - changes from xe-5127-6b6931ea69504481efd3df1cc99765141feb178c_BAT -> xe-pw-163428v6_BAT ==================================================== Summary ------- **SUCCESS** No regressions found. Participating hosts (13 -> 13) ------------------------------ No changes in participating hosts Changes ------- No changes found Build changes ------------- * Linux: xe-5127-6b6931ea69504481efd3df1cc99765141feb178c -> xe-pw-163428v6 IGT_8937: 8937 xe-5127-6b6931ea69504481efd3df1cc99765141feb178c: 6b6931ea69504481efd3df1cc99765141feb178c xe-pw-163428v6: 163428v6 == Logs == For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-163428v6/index.html [-- Attachment #2: Type: text/html, Size: 1414 bytes --] ^ permalink raw reply [flat|nested] 15+ messages in thread
* ✗ Xe.CI.FULL: failure for Introduce cold reset recovery method (rev6) 2026-05-20 11:33 [PATCH v6 0/5] Introduce cold reset recovery method Mallesh Koujalagi ` (11 preceding siblings ...) 2026-05-26 5:28 ` ✓ Xe.CI.BAT: " Patchwork @ 2026-05-26 6:31 ` Patchwork 12 siblings, 0 replies; 15+ messages in thread From: Patchwork @ 2026-05-26 6:31 UTC (permalink / raw) To: Mallesh Koujalagi; +Cc: intel-xe [-- Attachment #1: Type: text/plain, Size: 58541 bytes --] == Series Details == Series: Introduce cold reset recovery method (rev6) URL : https://patchwork.freedesktop.org/series/163428/ State : failure == Summary == CI Bug Log - changes from xe-5127-6b6931ea69504481efd3df1cc99765141feb178c_FULL -> xe-pw-163428v6_FULL ==================================================== Summary ------- **WARNING** Minor unknown changes coming with xe-pw-163428v6_FULL need to be verified manually. If you think the reported changes have nothing to do with the changes introduced in xe-pw-163428v6_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 (2 -> 2) ------------------------------ No changes in participating hosts Possible new issues ------------------- Here are the unknown changes that may have been introduced in xe-pw-163428v6_FULL: ### IGT changes ### #### Warnings #### * igt@xe_pat@pat-sw-hw-suspend: - shard-bmg: [FAIL][1] ([Intel XE#7695]) -> [FAIL][2] [1]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5127-6b6931ea69504481efd3df1cc99765141feb178c/shard-bmg-4/igt@xe_pat@pat-sw-hw-suspend.html [2]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-163428v6/shard-bmg-5/igt@xe_pat@pat-sw-hw-suspend.html - shard-lnl: [FAIL][3] ([Intel XE#7695]) -> [FAIL][4] [3]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5127-6b6931ea69504481efd3df1cc99765141feb178c/shard-lnl-3/igt@xe_pat@pat-sw-hw-suspend.html [4]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-163428v6/shard-lnl-4/igt@xe_pat@pat-sw-hw-suspend.html Known issues ------------ Here are the changes found in xe-pw-163428v6_FULL that come from known issues: ### IGT changes ### #### Issues hit #### * igt@kms_big_fb@4-tiled-8bpp-rotate-270: - shard-bmg: NOTRUN -> [SKIP][5] ([Intel XE#2327]) [5]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-163428v6/shard-bmg-9/igt@kms_big_fb@4-tiled-8bpp-rotate-270.html * igt@kms_big_fb@x-tiled-16bpp-rotate-270: - shard-lnl: NOTRUN -> [SKIP][6] ([Intel XE#1407]) +2 other tests skip [6]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-163428v6/shard-lnl-5/igt@kms_big_fb@x-tiled-16bpp-rotate-270.html * igt@kms_big_fb@yf-tiled-32bpp-rotate-0: - shard-bmg: NOTRUN -> [SKIP][7] ([Intel XE#1124]) +2 other tests skip [7]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-163428v6/shard-bmg-9/igt@kms_big_fb@yf-tiled-32bpp-rotate-0.html * igt@kms_big_fb@yf-tiled-32bpp-rotate-180: - shard-lnl: NOTRUN -> [SKIP][8] ([Intel XE#1124]) +3 other tests skip [8]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-163428v6/shard-lnl-5/igt@kms_big_fb@yf-tiled-32bpp-rotate-180.html * igt@kms_bw@connected-linear-tiling-3-displays-target-2160x1440p: - shard-lnl: NOTRUN -> [SKIP][9] ([Intel XE#7679]) [9]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-163428v6/shard-lnl-5/igt@kms_bw@connected-linear-tiling-3-displays-target-2160x1440p.html * igt@kms_bw@linear-tiling-1-displays-target-1920x1080p: - shard-bmg: NOTRUN -> [SKIP][10] ([Intel XE#367]) +2 other tests skip [10]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-163428v6/shard-bmg-9/igt@kms_bw@linear-tiling-1-displays-target-1920x1080p.html * igt@kms_ccs@crc-primary-rotation-180-4-tiled-mtl-rc-ccs: - shard-lnl: NOTRUN -> [SKIP][11] ([Intel XE#2887]) +5 other tests skip [11]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-163428v6/shard-lnl-5/igt@kms_ccs@crc-primary-rotation-180-4-tiled-mtl-rc-ccs.html * igt@kms_ccs@random-ccs-data-y-tiled-gen12-rc-ccs: - shard-bmg: NOTRUN -> [SKIP][12] ([Intel XE#2887]) +2 other tests skip [12]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-163428v6/shard-bmg-9/igt@kms_ccs@random-ccs-data-y-tiled-gen12-rc-ccs.html * igt@kms_chamelium_color@ctm-blue-to-red: - shard-lnl: NOTRUN -> [SKIP][13] ([Intel XE#306] / [Intel XE#7358]) [13]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-163428v6/shard-lnl-5/igt@kms_chamelium_color@ctm-blue-to-red.html * igt@kms_chamelium_frames@dp-crc-single: - shard-bmg: NOTRUN -> [SKIP][14] ([Intel XE#2252]) +2 other tests skip [14]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-163428v6/shard-bmg-4/igt@kms_chamelium_frames@dp-crc-single.html * igt@kms_chamelium_hpd@dp-hpd-after-hibernate: - shard-lnl: NOTRUN -> [SKIP][15] ([Intel XE#373]) [15]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-163428v6/shard-lnl-5/igt@kms_chamelium_hpd@dp-hpd-after-hibernate.html * igt@kms_content_protection@atomic: - shard-lnl: NOTRUN -> [SKIP][16] ([Intel XE#7642]) [16]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-163428v6/shard-lnl-5/igt@kms_content_protection@atomic.html * igt@kms_content_protection@atomic-hdcp14: - shard-bmg: NOTRUN -> [FAIL][17] ([Intel XE#1178] / [Intel XE#3304] / [Intel XE#7374]) +1 other test fail [17]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-163428v6/shard-bmg-9/igt@kms_content_protection@atomic-hdcp14.html * igt@kms_cursor_crc@cursor-offscreen-64x21: - shard-bmg: NOTRUN -> [SKIP][18] ([Intel XE#2320]) [18]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-163428v6/shard-bmg-9/igt@kms_cursor_crc@cursor-offscreen-64x21.html * igt@kms_cursor_crc@cursor-random-512x512: - shard-lnl: NOTRUN -> [SKIP][19] ([Intel XE#2321] / [Intel XE#7355]) [19]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-163428v6/shard-lnl-5/igt@kms_cursor_crc@cursor-random-512x512.html * igt@kms_cursor_crc@cursor-sliding-32x10: - shard-lnl: NOTRUN -> [SKIP][20] ([Intel XE#1424]) [20]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-163428v6/shard-lnl-1/igt@kms_cursor_crc@cursor-sliding-32x10.html * igt@kms_cursor_edge_walk@256x256-top-edge: - shard-bmg: [PASS][21] -> [FAIL][22] ([Intel XE#6841]) +1 other test fail [21]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5127-6b6931ea69504481efd3df1cc99765141feb178c/shard-bmg-3/igt@kms_cursor_edge_walk@256x256-top-edge.html [22]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-163428v6/shard-bmg-2/igt@kms_cursor_edge_walk@256x256-top-edge.html * igt@kms_cursor_legacy@cursora-vs-flipb-atomic-transitions-varying-size: - shard-lnl: NOTRUN -> [SKIP][23] ([Intel XE#309] / [Intel XE#7343]) +1 other test skip [23]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-163428v6/shard-lnl-5/igt@kms_cursor_legacy@cursora-vs-flipb-atomic-transitions-varying-size.html * igt@kms_dirtyfb@drrs-dirtyfb-ioctl: - shard-lnl: NOTRUN -> [SKIP][24] ([Intel XE#1508]) [24]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-163428v6/shard-lnl-5/igt@kms_dirtyfb@drrs-dirtyfb-ioctl.html * igt@kms_dsc@dsc-basic: - shard-bmg: NOTRUN -> [SKIP][25] ([Intel XE#2244]) [25]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-163428v6/shard-bmg-9/igt@kms_dsc@dsc-basic.html * igt@kms_dsc@dsc-fractional-bpp-with-bpc: - shard-lnl: NOTRUN -> [SKIP][26] ([Intel XE#2244]) [26]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-163428v6/shard-lnl-5/igt@kms_dsc@dsc-fractional-bpp-with-bpc.html * igt@kms_flip@2x-flip-vs-rmfb: - shard-lnl: NOTRUN -> [SKIP][27] ([Intel XE#1421]) +1 other test skip [27]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-163428v6/shard-lnl-5/igt@kms_flip@2x-flip-vs-rmfb.html * igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-32bpp-4tiledg2rcccs-downscaling: - shard-bmg: NOTRUN -> [SKIP][28] ([Intel XE#7178] / [Intel XE#7349]) [28]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-163428v6/shard-bmg-4/igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-32bpp-4tiledg2rcccs-downscaling.html * igt@kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-downscaling: - shard-bmg: NOTRUN -> [SKIP][29] ([Intel XE#7178] / [Intel XE#7351]) [29]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-163428v6/shard-bmg-9/igt@kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-downscaling.html * igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-pri-indfb-draw-mmap-wc: - shard-bmg: NOTRUN -> [SKIP][30] ([Intel XE#2311]) +18 other tests skip [30]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-163428v6/shard-bmg-9/igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-pri-indfb-draw-mmap-wc.html * igt@kms_frontbuffer_tracking@drrs-argb161616f-draw-blt: - shard-lnl: NOTRUN -> [SKIP][31] ([Intel XE#7061] / [Intel XE#7356]) +1 other test skip [31]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-163428v6/shard-lnl-5/igt@kms_frontbuffer_tracking@drrs-argb161616f-draw-blt.html * igt@kms_frontbuffer_tracking@drrshdr-argb161616f-draw-render: - shard-bmg: NOTRUN -> [SKIP][32] ([Intel XE#7061]) [32]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-163428v6/shard-bmg-9/igt@kms_frontbuffer_tracking@drrshdr-argb161616f-draw-render.html * igt@kms_frontbuffer_tracking@fbc-1p-primscrn-cur-indfb-onoff: - shard-bmg: NOTRUN -> [SKIP][33] ([Intel XE#4141]) +2 other tests skip [33]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-163428v6/shard-bmg-9/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-cur-indfb-onoff.html * igt@kms_frontbuffer_tracking@fbcdrrs-1p-offscreen-pri-shrfb-draw-render: - shard-lnl: NOTRUN -> [SKIP][34] ([Intel XE#6312]) +2 other tests skip [34]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-163428v6/shard-lnl-5/igt@kms_frontbuffer_tracking@fbcdrrs-1p-offscreen-pri-shrfb-draw-render.html * igt@kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-cur-indfb-move: - shard-lnl: NOTRUN -> [SKIP][35] ([Intel XE#6312] / [Intel XE#651]) +4 other tests skip [35]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-163428v6/shard-lnl-1/igt@kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-cur-indfb-move.html * igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-cur-indfb-draw-render: - shard-lnl: NOTRUN -> [SKIP][36] ([Intel XE#656] / [Intel XE#7905]) +11 other tests skip [36]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-163428v6/shard-lnl-5/igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-cur-indfb-draw-render.html * igt@kms_frontbuffer_tracking@fbcpsr-rgb101010-draw-render: - shard-bmg: NOTRUN -> [SKIP][37] ([Intel XE#2313]) +14 other tests skip [37]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-163428v6/shard-bmg-9/igt@kms_frontbuffer_tracking@fbcpsr-rgb101010-draw-render.html * igt@kms_frontbuffer_tracking@fbcpsrhdr-2p-primscrn-spr-indfb-draw-blt: - shard-lnl: NOTRUN -> [SKIP][38] ([Intel XE#7905]) +13 other tests skip [38]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-163428v6/shard-lnl-5/igt@kms_frontbuffer_tracking@fbcpsrhdr-2p-primscrn-spr-indfb-draw-blt.html * igt@kms_frontbuffer_tracking@hdr-abgr161616f-draw-blt: - shard-lnl: NOTRUN -> [SKIP][39] ([Intel XE#7061]) [39]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-163428v6/shard-lnl-5/igt@kms_frontbuffer_tracking@hdr-abgr161616f-draw-blt.html * igt@kms_frontbuffer_tracking@psrhdr-1p-primscrn-pri-indfb-draw-render: - shard-lnl: NOTRUN -> [SKIP][40] ([Intel XE#7865]) +5 other tests skip [40]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-163428v6/shard-lnl-5/igt@kms_frontbuffer_tracking@psrhdr-1p-primscrn-pri-indfb-draw-render.html * igt@kms_hdr@static-toggle@pipe-a-hdmi-a-3-xrgb16161616f: - shard-bmg: [PASS][41] -> [SKIP][42] ([Intel XE#7915]) +1 other test skip [41]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5127-6b6931ea69504481efd3df1cc99765141feb178c/shard-bmg-2/igt@kms_hdr@static-toggle@pipe-a-hdmi-a-3-xrgb16161616f.html [42]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-163428v6/shard-bmg-7/igt@kms_hdr@static-toggle@pipe-a-hdmi-a-3-xrgb16161616f.html * igt@kms_joiner@invalid-modeset-ultra-joiner: - shard-bmg: NOTRUN -> [SKIP][43] ([Intel XE#6911] / [Intel XE#7378]) [43]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-163428v6/shard-bmg-9/igt@kms_joiner@invalid-modeset-ultra-joiner.html * igt@kms_plane@pixel-format-4-tiled-lnl-ccs-modifier: - shard-bmg: NOTRUN -> [SKIP][44] ([Intel XE#7283]) [44]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-163428v6/shard-bmg-9/igt@kms_plane@pixel-format-4-tiled-lnl-ccs-modifier.html * igt@kms_plane@pixel-format-4-tiled-mtl-mc-ccs-modifier-source-clamping: - shard-lnl: NOTRUN -> [SKIP][45] ([Intel XE#7283]) [45]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-163428v6/shard-lnl-5/igt@kms_plane@pixel-format-4-tiled-mtl-mc-ccs-modifier-source-clamping.html * igt@kms_plane@pixel-format-x-tiled-modifier@pipe-b-plane-5: - shard-bmg: NOTRUN -> [SKIP][46] ([Intel XE#7130]) +1 other test skip [46]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-163428v6/shard-bmg-7/igt@kms_plane@pixel-format-x-tiled-modifier@pipe-b-plane-5.html * igt@kms_pm_backlight@brightness-with-dpms: - shard-bmg: NOTRUN -> [SKIP][47] ([Intel XE#2938] / [Intel XE#7376] / [Intel XE#7760]) [47]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-163428v6/shard-bmg-9/igt@kms_pm_backlight@brightness-with-dpms.html * igt@kms_psr2_sf@fbc-psr2-cursor-plane-update-sf: - shard-bmg: NOTRUN -> [SKIP][48] ([Intel XE#1489]) +1 other test skip [48]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-163428v6/shard-bmg-9/igt@kms_psr2_sf@fbc-psr2-cursor-plane-update-sf.html * igt@kms_psr2_sf@fbc-psr2-overlay-plane-move-continuous-sf: - shard-lnl: NOTRUN -> [SKIP][49] ([Intel XE#2893] / [Intel XE#4608] / [Intel XE#7304]) [49]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-163428v6/shard-lnl-5/igt@kms_psr2_sf@fbc-psr2-overlay-plane-move-continuous-sf.html * igt@kms_psr2_sf@fbc-psr2-overlay-plane-move-continuous-sf@pipe-a-edp-1: - shard-lnl: NOTRUN -> [SKIP][50] ([Intel XE#4608]) [50]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-163428v6/shard-lnl-5/igt@kms_psr2_sf@fbc-psr2-overlay-plane-move-continuous-sf@pipe-a-edp-1.html * igt@kms_psr2_sf@fbc-psr2-overlay-plane-move-continuous-sf@pipe-b-edp-1: - shard-lnl: NOTRUN -> [SKIP][51] ([Intel XE#4608] / [Intel XE#7304]) [51]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-163428v6/shard-lnl-5/igt@kms_psr2_sf@fbc-psr2-overlay-plane-move-continuous-sf@pipe-b-edp-1.html * igt@kms_psr@fbc-psr2-dpms: - shard-lnl: NOTRUN -> [SKIP][52] ([Intel XE#1406] / [Intel XE#7345]) [52]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-163428v6/shard-lnl-5/igt@kms_psr@fbc-psr2-dpms.html * igt@kms_psr@fbc-psr2-dpms@edp-1: - shard-lnl: NOTRUN -> [SKIP][53] ([Intel XE#1406] / [Intel XE#4609]) [53]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-163428v6/shard-lnl-5/igt@kms_psr@fbc-psr2-dpms@edp-1.html * igt@kms_psr@fbc-psr2-sprite-render: - shard-bmg: NOTRUN -> [SKIP][54] ([Intel XE#2234] / [Intel XE#2850]) +4 other tests skip [54]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-163428v6/shard-bmg-9/igt@kms_psr@fbc-psr2-sprite-render.html * igt@kms_rotation_crc@multiplane-rotation-cropping-bottom: - shard-bmg: [PASS][55] -> [ABORT][56] ([Intel XE#7774]) [55]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5127-6b6931ea69504481efd3df1cc99765141feb178c/shard-bmg-3/igt@kms_rotation_crc@multiplane-rotation-cropping-bottom.html [56]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-163428v6/shard-bmg-2/igt@kms_rotation_crc@multiplane-rotation-cropping-bottom.html * igt@kms_rotation_crc@primary-y-tiled-reflect-x-270: - shard-lnl: NOTRUN -> [SKIP][57] ([Intel XE#3414] / [Intel XE#3904] / [Intel XE#7342]) [57]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-163428v6/shard-lnl-5/igt@kms_rotation_crc@primary-y-tiled-reflect-x-270.html * igt@kms_rotation_crc@sprite-rotation-90: - shard-bmg: NOTRUN -> [SKIP][58] ([Intel XE#3904] / [Intel XE#7342]) [58]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-163428v6/shard-bmg-4/igt@kms_rotation_crc@sprite-rotation-90.html * igt@kms_sharpness_filter@filter-scaler-downscale: - shard-bmg: NOTRUN -> [SKIP][59] ([Intel XE#6503]) [59]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-163428v6/shard-bmg-9/igt@kms_sharpness_filter@filter-scaler-downscale.html * igt@kms_vrr@flipline: - shard-lnl: [PASS][60] -> [FAIL][61] ([Intel XE#4227] / [Intel XE#7397]) +1 other test fail [60]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5127-6b6931ea69504481efd3df1cc99765141feb178c/shard-lnl-3/igt@kms_vrr@flipline.html [61]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-163428v6/shard-lnl-4/igt@kms_vrr@flipline.html * igt@xe_eudebug@attach-debug-metadata: - shard-bmg: NOTRUN -> [SKIP][62] ([Intel XE#7636]) +3 other tests skip [62]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-163428v6/shard-bmg-9/igt@xe_eudebug@attach-debug-metadata.html * igt@xe_eudebug@basic-client: - shard-lnl: NOTRUN -> [SKIP][63] ([Intel XE#7636]) +5 other tests skip [63]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-163428v6/shard-lnl-5/igt@xe_eudebug@basic-client.html * igt@xe_evict@evict-threads-small: - shard-lnl: NOTRUN -> [SKIP][64] ([Intel XE#6540] / [Intel XE#688]) +2 other tests skip [64]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-163428v6/shard-lnl-5/igt@xe_evict@evict-threads-small.html * igt@xe_exec_balancer@many-virtual-userptr-invalidate-race: - shard-lnl: NOTRUN -> [SKIP][65] ([Intel XE#7482]) +3 other tests skip [65]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-163428v6/shard-lnl-5/igt@xe_exec_balancer@many-virtual-userptr-invalidate-race.html * igt@xe_exec_basic@multigpu-once-basic: - shard-bmg: NOTRUN -> [SKIP][66] ([Intel XE#2322] / [Intel XE#7372]) [66]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-163428v6/shard-bmg-9/igt@xe_exec_basic@multigpu-once-basic.html * igt@xe_exec_basic@multigpu-once-bindexecqueue-userptr-invalidate-race: - shard-lnl: NOTRUN -> [SKIP][67] ([Intel XE#1392]) +2 other tests skip [67]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-163428v6/shard-lnl-5/igt@xe_exec_basic@multigpu-once-bindexecqueue-userptr-invalidate-race.html * igt@xe_exec_fault_mode@many-execqueues-multi-queue-invalid-fault: - shard-bmg: NOTRUN -> [SKIP][68] ([Intel XE#7136]) +2 other tests skip [68]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-163428v6/shard-bmg-4/igt@xe_exec_fault_mode@many-execqueues-multi-queue-invalid-fault.html * igt@xe_exec_fault_mode@many-execqueues-multi-queue-userptr-invalidate-race-imm: - shard-lnl: NOTRUN -> [SKIP][69] ([Intel XE#7136]) +5 other tests skip [69]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-163428v6/shard-lnl-1/igt@xe_exec_fault_mode@many-execqueues-multi-queue-userptr-invalidate-race-imm.html * igt@xe_exec_multi_queue@many-queues-preempt-mode-fault-userptr-invalidate: - shard-bmg: NOTRUN -> [SKIP][70] ([Intel XE#6874]) +9 other tests skip [70]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-163428v6/shard-bmg-9/igt@xe_exec_multi_queue@many-queues-preempt-mode-fault-userptr-invalidate.html * igt@xe_exec_multi_queue@max-queues-preempt-mode-fault-basic-smem: - shard-lnl: NOTRUN -> [SKIP][71] ([Intel XE#6874]) +9 other tests skip [71]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-163428v6/shard-lnl-5/igt@xe_exec_multi_queue@max-queues-preempt-mode-fault-basic-smem.html * igt@xe_exec_reset@multi-queue-cancel: - shard-lnl: NOTRUN -> [SKIP][72] ([Intel XE#7866]) [72]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-163428v6/shard-lnl-5/igt@xe_exec_reset@multi-queue-cancel.html * igt@xe_exec_system_allocator@many-stride-new-prefetch: - shard-bmg: NOTRUN -> [INCOMPLETE][73] ([Intel XE#7098] / [Intel XE#8159]) [73]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-163428v6/shard-bmg-9/igt@xe_exec_system_allocator@many-stride-new-prefetch.html * igt@xe_exec_system_allocator@pat-index-madvise-pat-idx-uc-comp-single-vma: - shard-lnl: NOTRUN -> [SKIP][74] ([Intel XE#6196]) [74]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-163428v6/shard-lnl-5/igt@xe_exec_system_allocator@pat-index-madvise-pat-idx-uc-comp-single-vma.html * igt@xe_exec_system_allocator@threads-many-execqueues-mmap-shared-nomemset: - shard-lnl: NOTRUN -> [ABORT][75] ([Intel XE#8007]) [75]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-163428v6/shard-lnl-4/igt@xe_exec_system_allocator@threads-many-execqueues-mmap-shared-nomemset.html * igt@xe_exec_threads@threads-multi-queue-cm-fd-userptr: - shard-bmg: NOTRUN -> [SKIP][76] ([Intel XE#7138]) +1 other test skip [76]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-163428v6/shard-bmg-9/igt@xe_exec_threads@threads-multi-queue-cm-fd-userptr.html * igt@xe_exec_threads@threads-multi-queue-userptr-invalidate: - shard-lnl: NOTRUN -> [SKIP][77] ([Intel XE#7138]) +1 other test skip [77]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-163428v6/shard-lnl-5/igt@xe_exec_threads@threads-multi-queue-userptr-invalidate.html * igt@xe_madvise@atomic-cpu: - shard-lnl: NOTRUN -> [SKIP][78] ([Intel XE#7980]) [78]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-163428v6/shard-lnl-5/igt@xe_madvise@atomic-cpu.html * igt@xe_mmap@small-bar: - shard-bmg: NOTRUN -> [SKIP][79] ([Intel XE#586] / [Intel XE#7323] / [Intel XE#7384]) [79]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-163428v6/shard-bmg-9/igt@xe_mmap@small-bar.html * igt@xe_module_load@load: - shard-lnl: ([PASS][80], [PASS][81], [PASS][82], [PASS][83], [PASS][84], [PASS][85], [PASS][86], [PASS][87], [PASS][88], [PASS][89], [PASS][90], [PASS][91], [PASS][92], [PASS][93], [PASS][94], [PASS][95], [PASS][96], [PASS][97], [PASS][98], [PASS][99], [PASS][100], [PASS][101], [PASS][102], [PASS][103]) -> ([PASS][104], [PASS][105], [PASS][106], [PASS][107], [PASS][108], [PASS][109], [PASS][110], [PASS][111], [PASS][112], [PASS][113], [PASS][114], [PASS][115], [PASS][116], [PASS][117], [PASS][118], [PASS][119], [PASS][120], [PASS][121], [PASS][122], [PASS][123], [PASS][124], [PASS][125], [PASS][126], [PASS][127], [SKIP][128]) ([Intel XE#378] / [Intel XE#7405]) [80]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5127-6b6931ea69504481efd3df1cc99765141feb178c/shard-lnl-1/igt@xe_module_load@load.html [81]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5127-6b6931ea69504481efd3df1cc99765141feb178c/shard-lnl-8/igt@xe_module_load@load.html [82]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5127-6b6931ea69504481efd3df1cc99765141feb178c/shard-lnl-5/igt@xe_module_load@load.html [83]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5127-6b6931ea69504481efd3df1cc99765141feb178c/shard-lnl-2/igt@xe_module_load@load.html [84]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5127-6b6931ea69504481efd3df1cc99765141feb178c/shard-lnl-7/igt@xe_module_load@load.html [85]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5127-6b6931ea69504481efd3df1cc99765141feb178c/shard-lnl-7/igt@xe_module_load@load.html [86]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5127-6b6931ea69504481efd3df1cc99765141feb178c/shard-lnl-4/igt@xe_module_load@load.html [87]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5127-6b6931ea69504481efd3df1cc99765141feb178c/shard-lnl-4/igt@xe_module_load@load.html [88]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5127-6b6931ea69504481efd3df1cc99765141feb178c/shard-lnl-4/igt@xe_module_load@load.html [89]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5127-6b6931ea69504481efd3df1cc99765141feb178c/shard-lnl-2/igt@xe_module_load@load.html [90]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5127-6b6931ea69504481efd3df1cc99765141feb178c/shard-lnl-8/igt@xe_module_load@load.html [91]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5127-6b6931ea69504481efd3df1cc99765141feb178c/shard-lnl-8/igt@xe_module_load@load.html [92]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5127-6b6931ea69504481efd3df1cc99765141feb178c/shard-lnl-6/igt@xe_module_load@load.html [93]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5127-6b6931ea69504481efd3df1cc99765141feb178c/shard-lnl-8/igt@xe_module_load@load.html [94]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5127-6b6931ea69504481efd3df1cc99765141feb178c/shard-lnl-2/igt@xe_module_load@load.html [95]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5127-6b6931ea69504481efd3df1cc99765141feb178c/shard-lnl-7/igt@xe_module_load@load.html [96]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5127-6b6931ea69504481efd3df1cc99765141feb178c/shard-lnl-5/igt@xe_module_load@load.html [97]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5127-6b6931ea69504481efd3df1cc99765141feb178c/shard-lnl-5/igt@xe_module_load@load.html [98]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5127-6b6931ea69504481efd3df1cc99765141feb178c/shard-lnl-7/igt@xe_module_load@load.html [99]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5127-6b6931ea69504481efd3df1cc99765141feb178c/shard-lnl-1/igt@xe_module_load@load.html [100]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5127-6b6931ea69504481efd3df1cc99765141feb178c/shard-lnl-1/igt@xe_module_load@load.html [101]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5127-6b6931ea69504481efd3df1cc99765141feb178c/shard-lnl-3/igt@xe_module_load@load.html [102]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5127-6b6931ea69504481efd3df1cc99765141feb178c/shard-lnl-3/igt@xe_module_load@load.html [103]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5127-6b6931ea69504481efd3df1cc99765141feb178c/shard-lnl-3/igt@xe_module_load@load.html [104]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-163428v6/shard-lnl-8/igt@xe_module_load@load.html [105]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-163428v6/shard-lnl-1/igt@xe_module_load@load.html [106]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-163428v6/shard-lnl-3/igt@xe_module_load@load.html [107]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-163428v6/shard-lnl-3/igt@xe_module_load@load.html [108]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-163428v6/shard-lnl-8/igt@xe_module_load@load.html [109]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-163428v6/shard-lnl-8/igt@xe_module_load@load.html [110]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-163428v6/shard-lnl-3/igt@xe_module_load@load.html [111]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-163428v6/shard-lnl-3/igt@xe_module_load@load.html [112]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-163428v6/shard-lnl-1/igt@xe_module_load@load.html [113]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-163428v6/shard-lnl-2/igt@xe_module_load@load.html [114]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-163428v6/shard-lnl-8/igt@xe_module_load@load.html [115]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-163428v6/shard-lnl-2/igt@xe_module_load@load.html [116]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-163428v6/shard-lnl-1/igt@xe_module_load@load.html [117]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-163428v6/shard-lnl-7/igt@xe_module_load@load.html [118]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-163428v6/shard-lnl-7/igt@xe_module_load@load.html [119]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-163428v6/shard-lnl-2/igt@xe_module_load@load.html [120]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-163428v6/shard-lnl-4/igt@xe_module_load@load.html [121]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-163428v6/shard-lnl-4/igt@xe_module_load@load.html [122]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-163428v6/shard-lnl-7/igt@xe_module_load@load.html [123]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-163428v6/shard-lnl-1/igt@xe_module_load@load.html [124]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-163428v6/shard-lnl-5/igt@xe_module_load@load.html [125]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-163428v6/shard-lnl-5/igt@xe_module_load@load.html [126]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-163428v6/shard-lnl-4/igt@xe_module_load@load.html [127]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-163428v6/shard-lnl-5/igt@xe_module_load@load.html [128]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-163428v6/shard-lnl-5/igt@xe_module_load@load.html * igt@xe_multigpu_svm@mgpu-coherency-basic: - shard-bmg: NOTRUN -> [SKIP][129] ([Intel XE#6964]) [129]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-163428v6/shard-bmg-9/igt@xe_multigpu_svm@mgpu-coherency-basic.html * igt@xe_page_reclaim@invalid-1g: - shard-bmg: NOTRUN -> [SKIP][130] ([Intel XE#7793]) [130]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-163428v6/shard-bmg-9/igt@xe_page_reclaim@invalid-1g.html * igt@xe_page_reclaim@prl-invalidate-full: - shard-lnl: NOTRUN -> [SKIP][131] ([Intel XE#7793]) [131]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-163428v6/shard-lnl-5/igt@xe_page_reclaim@prl-invalidate-full.html * igt@xe_pat@xa-app-transient-media-off: - shard-bmg: NOTRUN -> [SKIP][132] ([Intel XE#7590]) [132]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-163428v6/shard-bmg-9/igt@xe_pat@xa-app-transient-media-off.html * igt@xe_pm@d3cold-basic-exec: - shard-lnl: NOTRUN -> [SKIP][133] ([Intel XE#2284] / [Intel XE#366] / [Intel XE#7370]) [133]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-163428v6/shard-lnl-5/igt@xe_pm@d3cold-basic-exec.html * igt@xe_pm@d3cold-i2c: - shard-bmg: NOTRUN -> [SKIP][134] ([Intel XE#5694] / [Intel XE#7370]) [134]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-163428v6/shard-bmg-4/igt@xe_pm@d3cold-i2c.html * igt@xe_prefetch_fault@prefetch-fault-svm: - shard-lnl: NOTRUN -> [SKIP][135] ([Intel XE#7599]) [135]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-163428v6/shard-lnl-5/igt@xe_prefetch_fault@prefetch-fault-svm.html * igt@xe_query@multigpu-query-invalid-uc-fw-version-mbz: - shard-bmg: NOTRUN -> [SKIP][136] ([Intel XE#944]) +1 other test skip [136]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-163428v6/shard-bmg-9/igt@xe_query@multigpu-query-invalid-uc-fw-version-mbz.html * igt@xe_query@multigpu-query-topology-l3-bank-mask: - shard-lnl: NOTRUN -> [SKIP][137] ([Intel XE#944]) [137]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-163428v6/shard-lnl-5/igt@xe_query@multigpu-query-topology-l3-bank-mask.html * igt@xe_sriov_vfio@open-basic: - shard-lnl: NOTRUN -> [SKIP][138] ([Intel XE#7724]) [138]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-163428v6/shard-lnl-5/igt@xe_sriov_vfio@open-basic.html * igt@xe_survivability@runtime-survivability: - shard-bmg: [PASS][139] -> [DMESG-WARN][140] ([Intel XE#6627] / [Intel XE#7419]) [139]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5127-6b6931ea69504481efd3df1cc99765141feb178c/shard-bmg-8/igt@xe_survivability@runtime-survivability.html [140]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-163428v6/shard-bmg-10/igt@xe_survivability@runtime-survivability.html * igt@xe_vm@overcommit-nonfault-vram-no-lr: - shard-lnl: NOTRUN -> [SKIP][141] ([Intel XE#7892]) [141]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-163428v6/shard-lnl-5/igt@xe_vm@overcommit-nonfault-vram-no-lr.html #### Possible fixes #### * igt@core_hotunplug@unbind-rebind: - shard-bmg: [SKIP][142] ([Intel XE#6779]) -> [PASS][143] [142]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5127-6b6931ea69504481efd3df1cc99765141feb178c/shard-bmg-2/igt@core_hotunplug@unbind-rebind.html [143]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-163428v6/shard-bmg-7/igt@core_hotunplug@unbind-rebind.html * igt@kms_addfb_basic@unused-pitches: - shard-bmg: [SKIP][144] ([Intel XE#6557] / [Intel XE#6703]) -> [PASS][145] [144]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5127-6b6931ea69504481efd3df1cc99765141feb178c/shard-bmg-2/igt@kms_addfb_basic@unused-pitches.html [145]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-163428v6/shard-bmg-7/igt@kms_addfb_basic@unused-pitches.html * igt@kms_async_flips@alternate-sync-async-flip-atomic: - shard-bmg: [FAIL][146] ([Intel XE#3718] / [Intel XE#6078]) -> [PASS][147] [146]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5127-6b6931ea69504481efd3df1cc99765141feb178c/shard-bmg-6/igt@kms_async_flips@alternate-sync-async-flip-atomic.html [147]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-163428v6/shard-bmg-3/igt@kms_async_flips@alternate-sync-async-flip-atomic.html * igt@kms_async_flips@alternate-sync-async-flip-atomic@pipe-c-hdmi-a-3: - shard-bmg: [FAIL][148] ([Intel XE#6078]) -> [PASS][149] [148]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5127-6b6931ea69504481efd3df1cc99765141feb178c/shard-bmg-6/igt@kms_async_flips@alternate-sync-async-flip-atomic@pipe-c-hdmi-a-3.html [149]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-163428v6/shard-bmg-3/igt@kms_async_flips@alternate-sync-async-flip-atomic@pipe-c-hdmi-a-3.html * igt@kms_cursor_legacy@flip-vs-cursor-legacy: - shard-bmg: [FAIL][150] ([Intel XE#7571]) -> [PASS][151] [150]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5127-6b6931ea69504481efd3df1cc99765141feb178c/shard-bmg-8/igt@kms_cursor_legacy@flip-vs-cursor-legacy.html [151]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-163428v6/shard-bmg-2/igt@kms_cursor_legacy@flip-vs-cursor-legacy.html * igt@kms_frontbuffer_tracking@fbcpsr-suspend: - shard-lnl: [ABORT][152] ([Intel XE#2625]) -> [PASS][153] [152]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5127-6b6931ea69504481efd3df1cc99765141feb178c/shard-lnl-6/igt@kms_frontbuffer_tracking@fbcpsr-suspend.html [153]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-163428v6/shard-lnl-1/igt@kms_frontbuffer_tracking@fbcpsr-suspend.html * igt@kms_frontbuffer_tracking@hdr-1p-primscrn-spr-indfb-fullscreen: - shard-bmg: [SKIP][154] ([Intel XE#6703]) -> [PASS][155] +81 other tests pass [154]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5127-6b6931ea69504481efd3df1cc99765141feb178c/shard-bmg-2/igt@kms_frontbuffer_tracking@hdr-1p-primscrn-spr-indfb-fullscreen.html [155]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-163428v6/shard-bmg-7/igt@kms_frontbuffer_tracking@hdr-1p-primscrn-spr-indfb-fullscreen.html * igt@kms_hdr@static-toggle-dpms@pipe-a-hdmi-a-3-xrgb2101010: - shard-bmg: [SKIP][156] ([Intel XE#7915]) -> [PASS][157] +1 other test pass [156]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5127-6b6931ea69504481efd3df1cc99765141feb178c/shard-bmg-7/igt@kms_hdr@static-toggle-dpms@pipe-a-hdmi-a-3-xrgb2101010.html [157]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-163428v6/shard-bmg-6/igt@kms_hdr@static-toggle-dpms@pipe-a-hdmi-a-3-xrgb2101010.html * igt@kms_plane_lowres@tiling-4: - shard-bmg: [ABORT][158] ([Intel XE#5545] / [Intel XE#7774] / [Intel XE#7814] / [Intel XE#7960]) -> [PASS][159] [158]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5127-6b6931ea69504481efd3df1cc99765141feb178c/shard-bmg-2/igt@kms_plane_lowres@tiling-4.html [159]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-163428v6/shard-bmg-9/igt@kms_plane_lowres@tiling-4.html * igt@kms_plane_lowres@tiling-4@pipe-a-dp-2: - shard-bmg: [ABORT][160] ([Intel XE#5545] / [Intel XE#7774] / [Intel XE#7814]) -> [PASS][161] [160]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5127-6b6931ea69504481efd3df1cc99765141feb178c/shard-bmg-2/igt@kms_plane_lowres@tiling-4@pipe-a-dp-2.html [161]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-163428v6/shard-bmg-9/igt@kms_plane_lowres@tiling-4@pipe-a-dp-2.html * igt@kms_plane_lowres@tiling-4@pipe-a-hdmi-a-3: - shard-bmg: [FAIL][162] -> [PASS][163] [162]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5127-6b6931ea69504481efd3df1cc99765141feb178c/shard-bmg-2/igt@kms_plane_lowres@tiling-4@pipe-a-hdmi-a-3.html [163]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-163428v6/shard-bmg-9/igt@kms_plane_lowres@tiling-4@pipe-a-hdmi-a-3.html * igt@xe_evict@evict-beng-mixed-many-threads-small: - shard-bmg: [INCOMPLETE][164] ([Intel XE#6321]) -> [PASS][165] [164]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5127-6b6931ea69504481efd3df1cc99765141feb178c/shard-bmg-3/igt@xe_evict@evict-beng-mixed-many-threads-small.html [165]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-163428v6/shard-bmg-1/igt@xe_evict@evict-beng-mixed-many-threads-small.html * igt@xe_exec_system_allocator@process-many-stride-malloc-multi-fault: - shard-bmg: [DMESG-WARN][166] ([Intel XE#7774]) -> [PASS][167] [166]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5127-6b6931ea69504481efd3df1cc99765141feb178c/shard-bmg-2/igt@xe_exec_system_allocator@process-many-stride-malloc-multi-fault.html [167]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-163428v6/shard-bmg-7/igt@xe_exec_system_allocator@process-many-stride-malloc-multi-fault.html * igt@xe_wedged@wedged-mode-toggle: - shard-lnl: [ABORT][168] ([Intel XE#8007]) -> [PASS][169] [168]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5127-6b6931ea69504481efd3df1cc99765141feb178c/shard-lnl-3/igt@xe_wedged@wedged-mode-toggle.html [169]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-163428v6/shard-lnl-4/igt@xe_wedged@wedged-mode-toggle.html #### Warnings #### * igt@kms_big_fb@4-tiled-32bpp-rotate-270: - shard-bmg: [SKIP][170] ([Intel XE#6703]) -> [SKIP][171] ([Intel XE#2327]) [170]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5127-6b6931ea69504481efd3df1cc99765141feb178c/shard-bmg-2/igt@kms_big_fb@4-tiled-32bpp-rotate-270.html [171]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-163428v6/shard-bmg-7/igt@kms_big_fb@4-tiled-32bpp-rotate-270.html * igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-0-async-flip: - shard-bmg: [SKIP][172] ([Intel XE#6703]) -> [SKIP][173] ([Intel XE#1124]) +2 other tests skip [172]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5127-6b6931ea69504481efd3df1cc99765141feb178c/shard-bmg-2/igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-0-async-flip.html [173]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-163428v6/shard-bmg-7/igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-0-async-flip.html * igt@kms_ccs@ccs-on-another-bo-4-tiled-mtl-mc-ccs: - shard-bmg: [SKIP][174] ([Intel XE#6703]) -> [SKIP][175] ([Intel XE#2887]) +1 other test skip [174]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5127-6b6931ea69504481efd3df1cc99765141feb178c/shard-bmg-2/igt@kms_ccs@ccs-on-another-bo-4-tiled-mtl-mc-ccs.html [175]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-163428v6/shard-bmg-7/igt@kms_ccs@ccs-on-another-bo-4-tiled-mtl-mc-ccs.html * igt@kms_chamelium_audio@hdmi-audio-edid: - shard-bmg: [SKIP][176] ([Intel XE#6703]) -> [SKIP][177] ([Intel XE#2252]) [176]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5127-6b6931ea69504481efd3df1cc99765141feb178c/shard-bmg-2/igt@kms_chamelium_audio@hdmi-audio-edid.html [177]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-163428v6/shard-bmg-7/igt@kms_chamelium_audio@hdmi-audio-edid.html * igt@kms_cursor_legacy@cursorb-vs-flipb-atomic-transitions: - shard-lnl: [SKIP][178] ([Intel XE#309] / [Intel XE#7343]) -> [SKIP][179] ([Intel XE#309] / [Intel XE#7343] / [Intel XE#7935]) [178]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5127-6b6931ea69504481efd3df1cc99765141feb178c/shard-lnl-4/igt@kms_cursor_legacy@cursorb-vs-flipb-atomic-transitions.html [179]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-163428v6/shard-lnl-8/igt@kms_cursor_legacy@cursorb-vs-flipb-atomic-transitions.html * igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytilegen12rcccs-downscaling: - shard-bmg: [SKIP][180] ([Intel XE#6703]) -> [SKIP][181] ([Intel XE#7178] / [Intel XE#7351]) [180]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5127-6b6931ea69504481efd3df1cc99765141feb178c/shard-bmg-2/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytilegen12rcccs-downscaling.html [181]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-163428v6/shard-bmg-7/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytilegen12rcccs-downscaling.html * igt@kms_frontbuffer_tracking@drrs-2p-pri-indfb-multidraw: - shard-bmg: [SKIP][182] ([Intel XE#6703]) -> [SKIP][183] ([Intel XE#2311]) +6 other tests skip [182]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5127-6b6931ea69504481efd3df1cc99765141feb178c/shard-bmg-2/igt@kms_frontbuffer_tracking@drrs-2p-pri-indfb-multidraw.html [183]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-163428v6/shard-bmg-7/igt@kms_frontbuffer_tracking@drrs-2p-pri-indfb-multidraw.html * igt@kms_frontbuffer_tracking@drrs-abgr161616f-draw-blt: - shard-bmg: [SKIP][184] ([Intel XE#6703]) -> [SKIP][185] ([Intel XE#7061] / [Intel XE#7356]) +1 other test skip [184]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5127-6b6931ea69504481efd3df1cc99765141feb178c/shard-bmg-2/igt@kms_frontbuffer_tracking@drrs-abgr161616f-draw-blt.html [185]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-163428v6/shard-bmg-7/igt@kms_frontbuffer_tracking@drrs-abgr161616f-draw-blt.html * igt@kms_frontbuffer_tracking@fbc-1p-primscrn-spr-indfb-draw-render: - shard-bmg: [SKIP][186] ([Intel XE#6703]) -> [SKIP][187] ([Intel XE#4141]) [186]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5127-6b6931ea69504481efd3df1cc99765141feb178c/shard-bmg-2/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-spr-indfb-draw-render.html [187]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-163428v6/shard-bmg-7/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-spr-indfb-draw-render.html * igt@kms_frontbuffer_tracking@fbcdrrshdr-argb161616f-draw-blt: - shard-bmg: [SKIP][188] ([Intel XE#6703]) -> [SKIP][189] ([Intel XE#7061]) [188]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5127-6b6931ea69504481efd3df1cc99765141feb178c/shard-bmg-2/igt@kms_frontbuffer_tracking@fbcdrrshdr-argb161616f-draw-blt.html [189]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-163428v6/shard-bmg-7/igt@kms_frontbuffer_tracking@fbcdrrshdr-argb161616f-draw-blt.html * igt@kms_frontbuffer_tracking@psrhdr-1p-primscrn-cur-indfb-draw-blt: - shard-bmg: [SKIP][190] ([Intel XE#6703]) -> [SKIP][191] ([Intel XE#2313]) +4 other tests skip [190]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5127-6b6931ea69504481efd3df1cc99765141feb178c/shard-bmg-2/igt@kms_frontbuffer_tracking@psrhdr-1p-primscrn-cur-indfb-draw-blt.html [191]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-163428v6/shard-bmg-7/igt@kms_frontbuffer_tracking@psrhdr-1p-primscrn-cur-indfb-draw-blt.html * igt@kms_hdr@brightness-with-hdr: - shard-bmg: [SKIP][192] ([Intel XE#3544] / [Intel XE#7915] / [Intel XE#7916]) -> [SKIP][193] ([Intel XE#3544] / [Intel XE#7916]) [192]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5127-6b6931ea69504481efd3df1cc99765141feb178c/shard-bmg-8/igt@kms_hdr@brightness-with-hdr.html [193]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-163428v6/shard-bmg-10/igt@kms_hdr@brightness-with-hdr.html * igt@kms_hdr@brightness-with-hdr@pipe-a-hdmi-a-3-xrgb16161616f: - shard-bmg: [SKIP][194] ([Intel XE#7915]) -> [SKIP][195] ([Intel XE#7916]) +1 other test skip [194]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5127-6b6931ea69504481efd3df1cc99765141feb178c/shard-bmg-8/igt@kms_hdr@brightness-with-hdr@pipe-a-hdmi-a-3-xrgb16161616f.html [195]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-163428v6/shard-bmg-10/igt@kms_hdr@brightness-with-hdr@pipe-a-hdmi-a-3-xrgb16161616f.html * igt@kms_plane@pixel-format-4-tiled-dg2-mc-ccs-modifier-source-clamping: - shard-bmg: [SKIP][196] ([Intel XE#6703]) -> [SKIP][197] ([Intel XE#7283]) [196]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5127-6b6931ea69504481efd3df1cc99765141feb178c/shard-bmg-2/igt@kms_plane@pixel-format-4-tiled-dg2-mc-ccs-modifier-source-clamping.html [197]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-163428v6/shard-bmg-7/igt@kms_plane@pixel-format-4-tiled-dg2-mc-ccs-modifier-source-clamping.html * igt@kms_psr@fbc-psr-sprite-plane-onoff: - shard-bmg: [SKIP][198] ([Intel XE#6703]) -> [SKIP][199] ([Intel XE#2234] / [Intel XE#2850]) [198]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5127-6b6931ea69504481efd3df1cc99765141feb178c/shard-bmg-2/igt@kms_psr@fbc-psr-sprite-plane-onoff.html [199]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-163428v6/shard-bmg-7/igt@kms_psr@fbc-psr-sprite-plane-onoff.html * igt@kms_setmode@invalid-clone-exclusive-crtc: - shard-bmg: [SKIP][200] ([Intel XE#6703]) -> [SKIP][201] ([Intel XE#1435]) [200]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5127-6b6931ea69504481efd3df1cc99765141feb178c/shard-bmg-2/igt@kms_setmode@invalid-clone-exclusive-crtc.html [201]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-163428v6/shard-bmg-7/igt@kms_setmode@invalid-clone-exclusive-crtc.html * igt@kms_tiled_display@basic-test-pattern: - shard-bmg: [SKIP][202] ([Intel XE#2426] / [Intel XE#5848]) -> [FAIL][203] ([Intel XE#1729] / [Intel XE#7424]) [202]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5127-6b6931ea69504481efd3df1cc99765141feb178c/shard-bmg-8/igt@kms_tiled_display@basic-test-pattern.html [203]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-163428v6/shard-bmg-2/igt@kms_tiled_display@basic-test-pattern.html * igt@kms_tiled_display@basic-test-pattern-with-chamelium: - shard-bmg: [SKIP][204] ([Intel XE#2509] / [Intel XE#7437]) -> [SKIP][205] ([Intel XE#2426] / [Intel XE#5848]) [204]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5127-6b6931ea69504481efd3df1cc99765141feb178c/shard-bmg-6/igt@kms_tiled_display@basic-test-pattern-with-chamelium.html [205]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-163428v6/shard-bmg-3/igt@kms_tiled_display@basic-test-pattern-with-chamelium.html * igt@kms_vrr@lobf: - shard-bmg: [SKIP][206] -> [SKIP][207] ([Intel XE#2168] / [Intel XE#7444]) [206]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5127-6b6931ea69504481efd3df1cc99765141feb178c/shard-bmg-2/igt@kms_vrr@lobf.html [207]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-163428v6/shard-bmg-7/igt@kms_vrr@lobf.html * igt@xe_evict@evict-small-multi-queue-priority-cm: - shard-bmg: [SKIP][208] ([Intel XE#6703]) -> [SKIP][209] ([Intel XE#7140]) [208]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5127-6b6931ea69504481efd3df1cc99765141feb178c/shard-bmg-2/igt@xe_evict@evict-small-multi-queue-priority-cm.html [209]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-163428v6/shard-bmg-7/igt@xe_evict@evict-small-multi-queue-priority-cm.html * igt@xe_exec_basic@multigpu-no-exec-basic: - shard-bmg: [SKIP][210] ([Intel XE#6703]) -> [SKIP][211] ([Intel XE#2322] / [Intel XE#7372]) [210]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5127-6b6931ea69504481efd3df1cc99765141feb178c/shard-bmg-2/igt@xe_exec_basic@multigpu-no-exec-basic.html [211]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-163428v6/shard-bmg-7/igt@xe_exec_basic@multigpu-no-exec-basic.html * igt@xe_exec_fault_mode@once-multi-queue-userptr-rebind: - shard-bmg: [SKIP][212] ([Intel XE#6703]) -> [SKIP][213] ([Intel XE#7136]) +1 other test skip [212]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5127-6b6931ea69504481efd3df1cc99765141feb178c/shard-bmg-2/igt@xe_exec_fault_mode@once-multi-queue-userptr-rebind.html [213]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-163428v6/shard-bmg-7/igt@xe_exec_fault_mode@once-multi-queue-userptr-rebind.html * igt@xe_exec_multi_queue@many-queues-userptr-invalidate: - shard-bmg: [SKIP][214] ([Intel XE#6703]) -> [SKIP][215] ([Intel XE#6874]) +2 other tests skip [214]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5127-6b6931ea69504481efd3df1cc99765141feb178c/shard-bmg-2/igt@xe_exec_multi_queue@many-queues-userptr-invalidate.html [215]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-163428v6/shard-bmg-7/igt@xe_exec_multi_queue@many-queues-userptr-invalidate.html * igt@xe_page_reclaim@boundary-split: - shard-bmg: [SKIP][216] ([Intel XE#6703]) -> [SKIP][217] ([Intel XE#7793]) [216]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5127-6b6931ea69504481efd3df1cc99765141feb178c/shard-bmg-2/igt@xe_page_reclaim@boundary-split.html [217]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-163428v6/shard-bmg-7/igt@xe_page_reclaim@boundary-split.html [Intel XE#1124]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1124 [Intel XE#1178]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1178 [Intel XE#1392]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1392 [Intel XE#1406]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1406 [Intel XE#1407]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1407 [Intel XE#1421]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1421 [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#1489]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1489 [Intel XE#1508]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1508 [Intel XE#1729]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1729 [Intel XE#2168]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2168 [Intel XE#2234]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2234 [Intel XE#2244]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2244 [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#2311]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2311 [Intel XE#2313]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2313 [Intel XE#2320]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2320 [Intel XE#2321]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2321 [Intel XE#2322]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2322 [Intel XE#2327]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2327 [Intel XE#2426]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2426 [Intel XE#2509]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2509 [Intel XE#2625]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2625 [Intel XE#2850]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2850 [Intel XE#2887]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2887 [Intel XE#2893]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2893 [Intel XE#2938]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2938 [Intel XE#306]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/306 [Intel XE#309]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/309 [Intel XE#3304]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3304 [Intel XE#3414]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3414 [Intel XE#3544]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3544 [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#3718]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3718 [Intel XE#373]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/373 [Intel XE#378]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/378 [Intel XE#3904]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3904 [Intel XE#4141]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4141 [Intel XE#4227]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4227 [Intel XE#4608]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4608 [Intel XE#4609]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4609 [Intel XE#5545]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5545 [Intel XE#5694]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5694 [Intel XE#5848]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5848 [Intel XE#586]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/586 [Intel XE#6078]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6078 [Intel XE#6196]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6196 [Intel XE#6312]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6312 [Intel XE#6321]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6321 [Intel XE#6503]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6503 [Intel XE#651]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/651 [Intel XE#6540]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6540 [Intel XE#6557]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6557 [Intel XE#656]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/656 [Intel XE#6627]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6627 [Intel XE#6703]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6703 [Intel XE#6779]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6779 [Intel XE#6841]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6841 [Intel XE#6874]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6874 [Intel XE#688]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/688 [Intel XE#6911]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6911 [Intel XE#6964]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6964 [Intel XE#7061]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7061 [Intel XE#7098]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7098 [Intel XE#7130]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7130 [Intel XE#7136]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7136 [Intel XE#7138]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7138 [Intel XE#7140]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7140 [Intel XE#7178]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7178 [Intel XE#7283]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7283 [Intel XE#7304]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7304 [Intel XE#7323]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7323 [Intel XE#7342]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7342 [Intel XE#7343]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7343 [Intel XE#7345]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7345 [Intel XE#7349]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7349 [Intel XE#7351]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7351 [Intel XE#7355]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7355 [Intel XE#7356]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7356 [Intel XE#7358]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7358 [Intel XE#7370]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7370 [Intel XE#7372]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7372 [Intel XE#7374]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7374 [Intel XE#7376]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7376 [Intel XE#7378]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7378 [Intel XE#7384]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7384 [Intel XE#7397]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7397 [Intel XE#7405]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7405 [Intel XE#7419]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7419 [Intel XE#7424]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7424 [Intel XE#7437]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7437 [Intel XE#7444]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7444 [Intel XE#7482]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7482 [Intel XE#7571]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7571 [Intel XE#7590]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7590 [Intel XE#7599]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7599 [Intel XE#7636]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7636 [Intel XE#7642]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7642 [Intel XE#7679]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7679 [Intel XE#7695]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7695 [Intel XE#7724]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7724 [Intel XE#7760]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7760 [Intel XE#7774]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7774 [Intel XE#7793]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7793 [Intel XE#7814]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7814 [Intel XE#7865]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7865 [Intel XE#7866]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7866 [Intel XE#7892]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7892 [Intel XE#7905]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7905 [Intel XE#7915]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7915 [Intel XE#7916]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7916 [Intel XE#7935]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7935 [Intel XE#7960]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7960 [Intel XE#7980]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7980 [Intel XE#8007]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/8007 [Intel XE#8159]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/8159 [Intel XE#944]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/944 Build changes ------------- * Linux: xe-5127-6b6931ea69504481efd3df1cc99765141feb178c -> xe-pw-163428v6 IGT_8937: 8937 xe-5127-6b6931ea69504481efd3df1cc99765141feb178c: 6b6931ea69504481efd3df1cc99765141feb178c xe-pw-163428v6: 163428v6 == Logs == For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-163428v6/index.html [-- Attachment #2: Type: text/html, Size: 67928 bytes --] ^ permalink raw reply [flat|nested] 15+ messages in thread
end of thread, other threads:[~2026-06-03 11:22 UTC | newest] Thread overview: 15+ messages (download: mbox.gz follow: Atom feed -- links below jump to the message on this page -- 2026-05-20 11:33 [PATCH v6 0/5] Introduce cold reset recovery method Mallesh Koujalagi 2026-05-20 11:33 ` [PATCH v6 1/5] Introduce Xe Uncorrectable Error Handling Mallesh Koujalagi 2026-05-20 11:33 ` [PATCH v6 2/5] drm: Add DRM_WEDGE_RECOVERY_COLD_RESET recovery method Mallesh Koujalagi 2026-05-20 11:33 ` [PATCH v6 3/5] drm/doc: Document " Mallesh Koujalagi 2026-06-03 11:21 ` Raag Jadav 2026-05-20 11:33 ` [PATCH v6 4/5] drm/xe: Handle PUNIT errors by requesting cold-reset recovery Mallesh Koujalagi 2026-05-20 11:33 ` [PATCH v6 5/5] drm/xe: Suppress Surprise Link Down on non-hotplug device Mallesh Koujalagi 2026-05-20 12:33 ` ✗ CI.checkpatch: warning for Introduce cold reset recovery method (rev5) Patchwork 2026-05-20 12:34 ` ✓ CI.KUnit: success " Patchwork 2026-05-20 13:14 ` ✓ Xe.CI.BAT: " Patchwork 2026-05-20 23:35 ` ✗ Xe.CI.FULL: failure " Patchwork 2026-05-26 4:47 ` ✗ CI.checkpatch: warning for Introduce cold reset recovery method (rev6) Patchwork 2026-05-26 4:49 ` ✓ CI.KUnit: success " Patchwork 2026-05-26 5:28 ` ✓ Xe.CI.BAT: " Patchwork 2026-05-26 6:31 ` ✗ 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