* [RFC v3 1/8] drm/xe/uapi: Add UAPI support for purgeable buffer objects
2025-12-10 4:30 [RFC v3 0/8] drm/xe/madvise: Add support for purgeable buffer objects Arvind Yadav
@ 2025-12-10 4:30 ` Arvind Yadav
2025-12-10 5:33 ` Matthew Brost
2025-12-10 4:30 ` [RFC v3 2/8] drm/xe/bo: Add purgeable bo state tracking and field madv to xe_bo Arvind Yadav
` (10 subsequent siblings)
11 siblings, 1 reply; 18+ messages in thread
From: Arvind Yadav @ 2025-12-10 4:30 UTC (permalink / raw)
To: intel-xe
Cc: matthew.brost, himal.prasad.ghimiray, thomas.hellstrom,
pallavi.mishra
From: Himal Prasad Ghimiray <himal.prasad.ghimiray@intel.com>
Extend the DRM_XE_MADVISE ioctl to support purgeable buffer object
management by adding DRM_XE_VMA_ATTR_PURGEABLE_STATE attribute type.
This allows userspace applications to provide memory usage hints to
the kernel for better memory management under pressure:
This allows userspace applications to provide memory usage hints to
the kernel for better memory management under pressure:
- WILLNEED: Buffer is needed and should not be purged. If the BO was
previously purged, retained field returns 0 indicating backing store
was lost (once purged, always purged semantics matching i915).
- DONTNEED: Buffer is not currently needed and may be purged by the
kernel under memory pressure to free resources. Only applies to
non-shared BOs.
The implementation includes a 'retained' output field (matching i915's
drm_i915_gem_madvise.retained) that indicates whether the BO's backing
store still exists (1) or has been purged (0).
v2:
- Add PURGED state for read-only status, change ioctl to DRM_IOWR,
add retained field for i915 compatibility
v3:
- UAPI rule should not be changed (Matthew Brost)
- Make 'retained' a userptr (Matthew Brost)
Cc: Matthew Brost <matthew.brost@intel.com>
Cc: Thomas Hellström <thomas.hellstrom@linux.intel.com>
Signed-off-by: Himal Prasad Ghimiray <himal.prasad.ghimiray@intel.com>
Signed-off-by: Arvind Yadav <arvind.yadav@intel.com>
---
include/uapi/drm/xe_drm.h | 39 +++++++++++++++++++++++++++++++++++++++
1 file changed, 39 insertions(+)
diff --git a/include/uapi/drm/xe_drm.h b/include/uapi/drm/xe_drm.h
index 876a076fa6c0..fc0dada62dd0 100644
--- a/include/uapi/drm/xe_drm.h
+++ b/include/uapi/drm/xe_drm.h
@@ -2079,6 +2079,7 @@ struct drm_xe_madvise {
#define DRM_XE_MEM_RANGE_ATTR_PREFERRED_LOC 0
#define DRM_XE_MEM_RANGE_ATTR_ATOMIC 1
#define DRM_XE_MEM_RANGE_ATTR_PAT 2
+#define DRM_XE_VMA_ATTR_PURGEABLE_STATE 3
/** @type: type of attribute */
__u32 type;
@@ -2157,6 +2158,44 @@ struct drm_xe_madvise {
/** @pat_index.reserved: Reserved */
__u64 reserved;
} pat_index;
+
+ /**
+ * @purge_state_val: Purgeable state configuration
+ *
+ * Used when @type == DRM_XE_VMA_ATTR_PURGEABLE_STATE.
+ *
+ * Configures the purgeable state of buffer objects in the specified
+ * virtual address range. This allows applications to hint to the kernel
+ * about bo's usage patterns for better memory management.
+ *
+ * Supported values for @purge_state_val.val:
+ * - DRM_XE_VMA_PURGEABLE_STATE_WILLNEED (0): Marks BO as needed.
+ * If BO was purged, returns retained=0 (backing store lost).
+ *
+ * - DRM_XE_VMA_PURGEABLE_STATE_DONTNEED (1): Hints that BO is not
+ * currently needed. Kernel may purge it under memory pressure.
+ * Only applies to non-shared BOs. Returns retained=1 if not purged.
+ */
+ struct {
+#define DRM_XE_VMA_PURGEABLE_STATE_WILLNEED 0
+#define DRM_XE_VMA_PURGEABLE_STATE_DONTNEED 1
+ /** @purge_state_val.val: value for DRM_XE_VMA_ATTR_PURGEABLE_STATE */
+ __u32 val;
+
+ /* @purge_state_val.pad */
+ __u32 pad;
+ /**
+ * @purge_state_val.retained: Pointer to output field for backing
+ * store status.
+ *
+ * Userspace provides a pointer to u32. Kernel writes to it:
+ * 1 if backing store exists, 0 if purged.
+ * Similar to i915's drm_i915_gem_madvise.retained field.
+ */
+ __u64 retained;
+ /** @purge_state_val.reserved: Reserved */
+ __u64 reserved;
+ } purge_state_val;
};
/** @reserved: Reserved */
--
2.43.0
^ permalink raw reply related [flat|nested] 18+ messages in thread* Re: [RFC v3 1/8] drm/xe/uapi: Add UAPI support for purgeable buffer objects
2025-12-10 4:30 ` [RFC v3 1/8] drm/xe/uapi: Add UAPI " Arvind Yadav
@ 2025-12-10 5:33 ` Matthew Brost
2025-12-10 7:16 ` Yadav, Arvind
0 siblings, 1 reply; 18+ messages in thread
From: Matthew Brost @ 2025-12-10 5:33 UTC (permalink / raw)
To: Arvind Yadav
Cc: intel-xe, himal.prasad.ghimiray, thomas.hellstrom, pallavi.mishra
On Wed, Dec 10, 2025 at 10:00:45AM +0530, Arvind Yadav wrote:
> From: Himal Prasad Ghimiray <himal.prasad.ghimiray@intel.com>
>
> Extend the DRM_XE_MADVISE ioctl to support purgeable buffer object
> management by adding DRM_XE_VMA_ATTR_PURGEABLE_STATE attribute type.
>
> This allows userspace applications to provide memory usage hints to
> the kernel for better memory management under pressure:
>
> This allows userspace applications to provide memory usage hints to
> the kernel for better memory management under pressure:
>
> - WILLNEED: Buffer is needed and should not be purged. If the BO was
> previously purged, retained field returns 0 indicating backing store
> was lost (once purged, always purged semantics matching i915).
>
> - DONTNEED: Buffer is not currently needed and may be purged by the
> kernel under memory pressure to free resources. Only applies to
> non-shared BOs.
>
> The implementation includes a 'retained' output field (matching i915's
> drm_i915_gem_madvise.retained) that indicates whether the BO's backing
> store still exists (1) or has been purged (0).
>
> v2:
> - Add PURGED state for read-only status, change ioctl to DRM_IOWR,
> add retained field for i915 compatibility
>
> v3:
> - UAPI rule should not be changed (Matthew Brost)
> - Make 'retained' a userptr (Matthew Brost)
>
> Cc: Matthew Brost <matthew.brost@intel.com>
> Cc: Thomas Hellström <thomas.hellstrom@linux.intel.com>
> Signed-off-by: Himal Prasad Ghimiray <himal.prasad.ghimiray@intel.com>
> Signed-off-by: Arvind Yadav <arvind.yadav@intel.com>
> ---
> include/uapi/drm/xe_drm.h | 39 +++++++++++++++++++++++++++++++++++++++
> 1 file changed, 39 insertions(+)
>
> diff --git a/include/uapi/drm/xe_drm.h b/include/uapi/drm/xe_drm.h
> index 876a076fa6c0..fc0dada62dd0 100644
> --- a/include/uapi/drm/xe_drm.h
> +++ b/include/uapi/drm/xe_drm.h
> @@ -2079,6 +2079,7 @@ struct drm_xe_madvise {
> #define DRM_XE_MEM_RANGE_ATTR_PREFERRED_LOC 0
> #define DRM_XE_MEM_RANGE_ATTR_ATOMIC 1
> #define DRM_XE_MEM_RANGE_ATTR_PAT 2
> +#define DRM_XE_VMA_ATTR_PURGEABLE_STATE 3
> /** @type: type of attribute */
> __u32 type;
>
> @@ -2157,6 +2158,44 @@ struct drm_xe_madvise {
> /** @pat_index.reserved: Reserved */
> __u64 reserved;
> } pat_index;
> +
> + /**
> + * @purge_state_val: Purgeable state configuration
> + *
> + * Used when @type == DRM_XE_VMA_ATTR_PURGEABLE_STATE.
> + *
> + * Configures the purgeable state of buffer objects in the specified
> + * virtual address range. This allows applications to hint to the kernel
> + * about bo's usage patterns for better memory management.
> + *
> + * Supported values for @purge_state_val.val:
> + * - DRM_XE_VMA_PURGEABLE_STATE_WILLNEED (0): Marks BO as needed.
> + * If BO was purged, returns retained=0 (backing store lost).
> + *
> + * - DRM_XE_VMA_PURGEABLE_STATE_DONTNEED (1): Hints that BO is not
> + * currently needed. Kernel may purge it under memory pressure.
> + * Only applies to non-shared BOs. Returns retained=1 if not purged.
> + */
> + struct {
> +#define DRM_XE_VMA_PURGEABLE_STATE_WILLNEED 0
> +#define DRM_XE_VMA_PURGEABLE_STATE_DONTNEED 1
> + /** @purge_state_val.val: value for DRM_XE_VMA_ATTR_PURGEABLE_STATE */
> + __u32 val;
> +
> + /* @purge_state_val.pad */
> + __u32 pad;
> + /**
> + * @purge_state_val.retained: Pointer to output field for backing
> + * store status.
> + *
> + * Userspace provides a pointer to u32. Kernel writes to it:
> + * 1 if backing store exists, 0 if purged.
> + * Similar to i915's drm_i915_gem_madvise.retained field.
> + */
> + __u64 retained;
> + /** @purge_state_val.reserved: Reserved */
> + __u64 reserved;
You cannot make this part of the union (purge_state_val) larger than the
existing union (16 bytes) or the bit layout of the IOCTL changes and the
uAPI breaks.
So just drop the '__u64 reserved' field.
I'll also follow up if we can change an IOCTL from DRM_IOW to DRM_IOWR
too. I honestly don't know if that is allowed or not.
Matt
> + } purge_state_val;
> };
>
> /** @reserved: Reserved */
> --
> 2.43.0
>
^ permalink raw reply [flat|nested] 18+ messages in thread* Re: [RFC v3 1/8] drm/xe/uapi: Add UAPI support for purgeable buffer objects
2025-12-10 5:33 ` Matthew Brost
@ 2025-12-10 7:16 ` Yadav, Arvind
2026-01-22 13:32 ` Thomas Hellström
0 siblings, 1 reply; 18+ messages in thread
From: Yadav, Arvind @ 2025-12-10 7:16 UTC (permalink / raw)
To: Matthew Brost
Cc: intel-xe, himal.prasad.ghimiray, thomas.hellstrom, pallavi.mishra
On 10-12-2025 11:03, Matthew Brost wrote:
> On Wed, Dec 10, 2025 at 10:00:45AM +0530, Arvind Yadav wrote:
>> From: Himal Prasad Ghimiray <himal.prasad.ghimiray@intel.com>
>>
>> Extend the DRM_XE_MADVISE ioctl to support purgeable buffer object
>> management by adding DRM_XE_VMA_ATTR_PURGEABLE_STATE attribute type.
>>
>> This allows userspace applications to provide memory usage hints to
>> the kernel for better memory management under pressure:
>>
>> This allows userspace applications to provide memory usage hints to
>> the kernel for better memory management under pressure:
>>
>> - WILLNEED: Buffer is needed and should not be purged. If the BO was
>> previously purged, retained field returns 0 indicating backing store
>> was lost (once purged, always purged semantics matching i915).
>>
>> - DONTNEED: Buffer is not currently needed and may be purged by the
>> kernel under memory pressure to free resources. Only applies to
>> non-shared BOs.
>>
>> The implementation includes a 'retained' output field (matching i915's
>> drm_i915_gem_madvise.retained) that indicates whether the BO's backing
>> store still exists (1) or has been purged (0).
>>
>> v2:
>> - Add PURGED state for read-only status, change ioctl to DRM_IOWR,
>> add retained field for i915 compatibility
>>
>> v3:
>> - UAPI rule should not be changed (Matthew Brost)
>> - Make 'retained' a userptr (Matthew Brost)
>>
>> Cc: Matthew Brost <matthew.brost@intel.com>
>> Cc: Thomas Hellström <thomas.hellstrom@linux.intel.com>
>> Signed-off-by: Himal Prasad Ghimiray <himal.prasad.ghimiray@intel.com>
>> Signed-off-by: Arvind Yadav <arvind.yadav@intel.com>
>> ---
>> include/uapi/drm/xe_drm.h | 39 +++++++++++++++++++++++++++++++++++++++
>> 1 file changed, 39 insertions(+)
>>
>> diff --git a/include/uapi/drm/xe_drm.h b/include/uapi/drm/xe_drm.h
>> index 876a076fa6c0..fc0dada62dd0 100644
>> --- a/include/uapi/drm/xe_drm.h
>> +++ b/include/uapi/drm/xe_drm.h
>> @@ -2079,6 +2079,7 @@ struct drm_xe_madvise {
>> #define DRM_XE_MEM_RANGE_ATTR_PREFERRED_LOC 0
>> #define DRM_XE_MEM_RANGE_ATTR_ATOMIC 1
>> #define DRM_XE_MEM_RANGE_ATTR_PAT 2
>> +#define DRM_XE_VMA_ATTR_PURGEABLE_STATE 3
>> /** @type: type of attribute */
>> __u32 type;
>>
>> @@ -2157,6 +2158,44 @@ struct drm_xe_madvise {
>> /** @pat_index.reserved: Reserved */
>> __u64 reserved;
>> } pat_index;
>> +
>> + /**
>> + * @purge_state_val: Purgeable state configuration
>> + *
>> + * Used when @type == DRM_XE_VMA_ATTR_PURGEABLE_STATE.
>> + *
>> + * Configures the purgeable state of buffer objects in the specified
>> + * virtual address range. This allows applications to hint to the kernel
>> + * about bo's usage patterns for better memory management.
>> + *
>> + * Supported values for @purge_state_val.val:
>> + * - DRM_XE_VMA_PURGEABLE_STATE_WILLNEED (0): Marks BO as needed.
>> + * If BO was purged, returns retained=0 (backing store lost).
>> + *
>> + * - DRM_XE_VMA_PURGEABLE_STATE_DONTNEED (1): Hints that BO is not
>> + * currently needed. Kernel may purge it under memory pressure.
>> + * Only applies to non-shared BOs. Returns retained=1 if not purged.
>> + */
>> + struct {
>> +#define DRM_XE_VMA_PURGEABLE_STATE_WILLNEED 0
>> +#define DRM_XE_VMA_PURGEABLE_STATE_DONTNEED 1
>> + /** @purge_state_val.val: value for DRM_XE_VMA_ATTR_PURGEABLE_STATE */
>> + __u32 val;
>> +
>> + /* @purge_state_val.pad */
>> + __u32 pad;
>> + /**
>> + * @purge_state_val.retained: Pointer to output field for backing
>> + * store status.
>> + *
>> + * Userspace provides a pointer to u32. Kernel writes to it:
>> + * 1 if backing store exists, 0 if purged.
>> + * Similar to i915's drm_i915_gem_madvise.retained field.
>> + */
>> + __u64 retained;
>> + /** @purge_state_val.reserved: Reserved */
>> + __u64 reserved;
> You cannot make this part of the union (purge_state_val) larger than the
> existing union (16 bytes) or the bit layout of the IOCTL changes and the
> uAPI breaks.
>
> So just drop the '__u64 reserved' field.
Noted.
>
> I'll also follow up if we can change an IOCTL from DRM_IOW to DRM_IOWR
> too. I honestly don't know if that is allowed or not.
Noted. Please update us once you have clarity on whether changing from
DRM_IOW to DRM_IOWR is allowed, for future reference.
~Arvind
>
> Matt
>
>> + } purge_state_val;
>> };
>>
>> /** @reserved: Reserved */
>> --
>> 2.43.0
>>
^ permalink raw reply [flat|nested] 18+ messages in thread* Re: [RFC v3 1/8] drm/xe/uapi: Add UAPI support for purgeable buffer objects
2025-12-10 7:16 ` Yadav, Arvind
@ 2026-01-22 13:32 ` Thomas Hellström
0 siblings, 0 replies; 18+ messages in thread
From: Thomas Hellström @ 2026-01-22 13:32 UTC (permalink / raw)
To: Yadav, Arvind, Matthew Brost
Cc: intel-xe, himal.prasad.ghimiray, pallavi.mishra
On Wed, 2025-12-10 at 12:46 +0530, Yadav, Arvind wrote:
>
> On 10-12-2025 11:03, Matthew Brost wrote:
> > On Wed, Dec 10, 2025 at 10:00:45AM +0530, Arvind Yadav wrote:
> > > From: Himal Prasad Ghimiray <himal.prasad.ghimiray@intel.com>
> > >
> > > Extend the DRM_XE_MADVISE ioctl to support purgeable buffer
> > > object
> > > management by adding DRM_XE_VMA_ATTR_PURGEABLE_STATE attribute
> > > type.
> > >
> > > This allows userspace applications to provide memory usage hints
> > > to
> > > the kernel for better memory management under pressure:
> > >
> > > This allows userspace applications to provide memory usage hints
> > > to
> > > the kernel for better memory management under pressure:
> > >
> > > - WILLNEED: Buffer is needed and should not be purged. If the BO
> > > was
> > > previously purged, retained field returns 0 indicating backing
> > > store
> > > was lost (once purged, always purged semantics matching i915).
> > >
> > > - DONTNEED: Buffer is not currently needed and may be purged by
> > > the
> > > kernel under memory pressure to free resources. Only applies
> > > to
> > > non-shared BOs.
> > >
> > > The implementation includes a 'retained' output field (matching
> > > i915's
> > > drm_i915_gem_madvise.retained) that indicates whether the BO's
> > > backing
> > > store still exists (1) or has been purged (0).
> > >
> > > v2:
> > > - Add PURGED state for read-only status, change ioctl to
> > > DRM_IOWR,
> > > add retained field for i915 compatibility
> > >
> > > v3:
> > > - UAPI rule should not be changed (Matthew Brost)
> > > - Make 'retained' a userptr (Matthew Brost)
> > >
> > > Cc: Matthew Brost <matthew.brost@intel.com>
> > > Cc: Thomas Hellström <thomas.hellstrom@linux.intel.com>
> > > Signed-off-by: Himal Prasad Ghimiray
> > > <himal.prasad.ghimiray@intel.com>
> > > Signed-off-by: Arvind Yadav <arvind.yadav@intel.com>
> > > ---
> > > include/uapi/drm/xe_drm.h | 39
> > > +++++++++++++++++++++++++++++++++++++++
> > > 1 file changed, 39 insertions(+)
> > >
> > > diff --git a/include/uapi/drm/xe_drm.h
> > > b/include/uapi/drm/xe_drm.h
> > > index 876a076fa6c0..fc0dada62dd0 100644
> > > --- a/include/uapi/drm/xe_drm.h
> > > +++ b/include/uapi/drm/xe_drm.h
> > > @@ -2079,6 +2079,7 @@ struct drm_xe_madvise {
> > > #define DRM_XE_MEM_RANGE_ATTR_PREFERRED_LOC 0
> > > #define DRM_XE_MEM_RANGE_ATTR_ATOMIC 1
> > > #define DRM_XE_MEM_RANGE_ATTR_PAT 2
> > > +#define DRM_XE_VMA_ATTR_PURGEABLE_STATE 3
> > > /** @type: type of attribute */
> > > __u32 type;
> > >
> > > @@ -2157,6 +2158,44 @@ struct drm_xe_madvise {
> > > /** @pat_index.reserved: Reserved */
> > > __u64 reserved;
> > > } pat_index;
> > > +
> > > + /**
> > > + * @purge_state_val: Purgeable state
> > > configuration
> > > + *
> > > + * Used when @type ==
> > > DRM_XE_VMA_ATTR_PURGEABLE_STATE.
> > > + *
> > > + * Configures the purgeable state of buffer
> > > objects in the specified
> > > + * virtual address range. This allows
> > > applications to hint to the kernel
> > > + * about bo's usage patterns for better memory
> > > management.
> > > + *
> > > + * Supported values for @purge_state_val.val:
> > > + * - DRM_XE_VMA_PURGEABLE_STATE_WILLNEED (0):
> > > Marks BO as needed.
> > > + * If BO was purged, returns retained=0
> > > (backing store lost).
> > > + *
> > > + * - DRM_XE_VMA_PURGEABLE_STATE_DONTNEED (1):
> > > Hints that BO is not
> > > + * currently needed. Kernel may purge it
> > > under memory pressure.
> > > + * Only applies to non-shared BOs. Returns
> > > retained=1 if not purged.
> > > + */
> > > + struct {
> > > +#define DRM_XE_VMA_PURGEABLE_STATE_WILLNEED 0
> > > +#define DRM_XE_VMA_PURGEABLE_STATE_DONTNEED 1
> > > + /** @purge_state_val.val: value for
> > > DRM_XE_VMA_ATTR_PURGEABLE_STATE */
> > > + __u32 val;
> > > +
> > > + /* @purge_state_val.pad */
> > > + __u32 pad;
> > > + /**
> > > + * @purge_state_val.retained: Pointer to
> > > output field for backing
> > > + * store status.
> > > + *
> > > + * Userspace provides a pointer to u32.
> > > Kernel writes to it:
> > > + * 1 if backing store exists, 0 if
> > > purged.
> > > + * Similar to i915's
> > > drm_i915_gem_madvise.retained field.
> > > + */
> > > + __u64 retained;
> > > + /** @purge_state_val.reserved: Reserved
> > > */
> > > + __u64 reserved;
> > You cannot make this part of the union (purge_state_val) larger
> > than the
> > existing union (16 bytes) or the bit layout of the IOCTL changes
> > and the
> > uAPI breaks.
> >
> > So just drop the '__u64 reserved' field.
> Noted.
> >
> > I'll also follow up if we can change an IOCTL from DRM_IOW to
> > DRM_IOWR
> > too. I honestly don't know if that is allowed or not.
>
>
> Noted. Please update us once you have clarity on whether changing
> from
> DRM_IOW to DRM_IOWR is allowed, for future reference.
I think it is allowed, since AFAICT changing DRM_IOW to DRM_IOWR does
not change KMD code, only UMD code. So problem might occur only if a
UMD assumes one or the other.
/Thomas
>
> ~Arvind
>
> >
> > Matt
> >
> > > + } purge_state_val;
> > > };
> > >
> > > /** @reserved: Reserved */
> > > --
> > > 2.43.0
> > >
^ permalink raw reply [flat|nested] 18+ messages in thread
* [RFC v3 2/8] drm/xe/bo: Add purgeable bo state tracking and field madv to xe_bo
2025-12-10 4:30 [RFC v3 0/8] drm/xe/madvise: Add support for purgeable buffer objects Arvind Yadav
2025-12-10 4:30 ` [RFC v3 1/8] drm/xe/uapi: Add UAPI " Arvind Yadav
@ 2025-12-10 4:30 ` Arvind Yadav
2025-12-10 5:46 ` Matthew Brost
2025-12-10 4:30 ` [RFC v3 3/8] drm/xe/madvise: Implement purgeable buffer object support Arvind Yadav
` (9 subsequent siblings)
11 siblings, 1 reply; 18+ messages in thread
From: Arvind Yadav @ 2025-12-10 4:30 UTC (permalink / raw)
To: intel-xe
Cc: matthew.brost, himal.prasad.ghimiray, thomas.hellstrom,
pallavi.mishra
Add infrastructure for tracking purgeable state of buffer objects.
This includes:
Introduce enum xe_madv_purgeable_state with three states:
- XE_MADV_PURGEABLE_WILLNEED (0): BO is needed and should not be
purged. This is the default state for all BOs.
- XE_MADV_PURGEABLE_DONTNEED (1): BO is not currently needed and
can be purged by the kernel under memory pressure to reclaim
resources. Only non-shared BOs can be marked as DONTNEED.
- XE_MADV_PURGEABLE_PURGED (2): BO has been purged by the kernel.
Accessing a purged BO results in error. Follows i915 semantics
where once purged, the BO remains permanently invalid ("once
purged, always purged").
Add atomic_t madv field to struct xe_bo for state tracking
of purgeable state across concurrent access paths
v2:
- Add xe_bo_is_purged() helper, improve state documentation
V3:
- Add the kernel doc(Matthew Brost)
- Add the new helpers xe_bo_madv_is_dontneed(Matthew Brost)
Cc: Matthew Brost <matthew.brost@intel.com>
Cc: Thomas Hellström <thomas.hellstrom@linux.intel.com>
Cc: Himal Prasad Ghimiray <himal.prasad.ghimiray@intel.com>
Signed-off-by: Arvind Yadav <arvind.yadav@intel.com>
---
drivers/gpu/drm/xe/xe_bo.h | 56 ++++++++++++++++++++++++++++++++
drivers/gpu/drm/xe/xe_bo_types.h | 3 ++
2 files changed, 59 insertions(+)
diff --git a/drivers/gpu/drm/xe/xe_bo.h b/drivers/gpu/drm/xe/xe_bo.h
index 8ab4474129c3..1090a60f6ef6 100644
--- a/drivers/gpu/drm/xe/xe_bo.h
+++ b/drivers/gpu/drm/xe/xe_bo.h
@@ -86,6 +86,28 @@
#define XE_PCI_BARRIER_MMAP_OFFSET (0x50 << XE_PTE_SHIFT)
+/**
+ * enum xe_madv_purgeable_state - Buffer object purgeable state enumeration
+ *
+ * This enum defines the possible purgeable states for a buffer object,
+ * allowing userspace to provide memory usage hints to the kernel for
+ * better memory management under pressure.
+ *
+ * @XE_MADV_PURGEABLE_WILLNEED: The buffer object is needed and should not be purged.
+ * This is the default state.
+ * @XE_MADV_PURGEABLE_DONTNEED: The buffer object is not currently needed and can be
+ * purged by the kernel under memory pressure.
+ * @XE_MADV_PURGEABLE_PURGED: The buffer object has been purged by the kernel.
+ *
+ * Accessing a purged buffer will result in an error. Per i915 semantics,
+ * once purged, a BO remains permanently invalid and must be destroyed and recreated.
+ */
+enum xe_madv_purgeable_state {
+ XE_MADV_PURGEABLE_WILLNEED,
+ XE_MADV_PURGEABLE_DONTNEED,
+ XE_MADV_PURGEABLE_PURGED,
+};
+
struct sg_table;
struct xe_bo *xe_bo_alloc(void);
@@ -214,6 +236,40 @@ static inline bool xe_bo_is_protected(const struct xe_bo *bo)
return bo->pxp_key_instance;
}
+/**
+ * xe_bo_is_purged() - Check if buffer object has been purged
+ * @bo: The buffer object to check
+ *
+ * Checks if the buffer object's backing store has been discarded by the
+ * kernel due to memory pressure after being marked as purgeable (DONTNEED).
+ * Once purged, the BO cannot be restored and any attempt to use it will fail.
+ *
+ * Context: Caller must hold the BO's dma-resv lock
+ * Return: true if the BO has been purged, false otherwise
+ */
+static inline bool xe_bo_is_purged(struct xe_bo *bo)
+{
+ xe_bo_assert_held(bo);
+ return atomic_read(&bo->madv_purgeable) == XE_MADV_PURGEABLE_PURGED;
+}
+
+/**
+ * xe_bo_madv_is_dontneed() - Check if BO is marked as DONTNEED
+ * @bo: The buffer object to check
+ *
+ * Checks if userspace has marked this BO as DONTNEED (i.e., its contents
+ * are not currently needed and can be discarded under memory pressure).
+ * This is used internally to decide whether a BO is eligible for purging.
+ *
+ * Context: Caller must hold the BO's dma-resv lock
+ * Return: true if the BO is marked DONTNEED, false otherwise
+ */
+static inline bool xe_bo_madv_is_dontneed(struct xe_bo *bo)
+{
+ xe_bo_assert_held(bo);
+ return atomic_read(&bo->madv_purgeable) == XE_MADV_PURGEABLE_DONTNEED;
+}
+
static inline void xe_bo_unpin_map_no_vm(struct xe_bo *bo)
{
if (likely(bo)) {
diff --git a/drivers/gpu/drm/xe/xe_bo_types.h b/drivers/gpu/drm/xe/xe_bo_types.h
index d4fe3c8dca5b..57b4dc7012e2 100644
--- a/drivers/gpu/drm/xe/xe_bo_types.h
+++ b/drivers/gpu/drm/xe/xe_bo_types.h
@@ -108,6 +108,9 @@ struct xe_bo {
* from default
*/
u64 min_align;
+
+ /** @madv_purgeable: user space advise on BO purgeability */
+ atomic_t madv_purgeable;
};
#endif
--
2.43.0
^ permalink raw reply related [flat|nested] 18+ messages in thread* Re: [RFC v3 2/8] drm/xe/bo: Add purgeable bo state tracking and field madv to xe_bo
2025-12-10 4:30 ` [RFC v3 2/8] drm/xe/bo: Add purgeable bo state tracking and field madv to xe_bo Arvind Yadav
@ 2025-12-10 5:46 ` Matthew Brost
2025-12-10 7:18 ` Yadav, Arvind
0 siblings, 1 reply; 18+ messages in thread
From: Matthew Brost @ 2025-12-10 5:46 UTC (permalink / raw)
To: Arvind Yadav
Cc: intel-xe, himal.prasad.ghimiray, thomas.hellstrom, pallavi.mishra
On Wed, Dec 10, 2025 at 10:00:46AM +0530, Arvind Yadav wrote:
> Add infrastructure for tracking purgeable state of buffer objects.
> This includes:
>
> Introduce enum xe_madv_purgeable_state with three states:
> - XE_MADV_PURGEABLE_WILLNEED (0): BO is needed and should not be
> purged. This is the default state for all BOs.
>
> - XE_MADV_PURGEABLE_DONTNEED (1): BO is not currently needed and
> can be purged by the kernel under memory pressure to reclaim
> resources. Only non-shared BOs can be marked as DONTNEED.
>
> - XE_MADV_PURGEABLE_PURGED (2): BO has been purged by the kernel.
> Accessing a purged BO results in error. Follows i915 semantics
> where once purged, the BO remains permanently invalid ("once
> purged, always purged").
>
> Add atomic_t madv field to struct xe_bo for state tracking
> of purgeable state across concurrent access paths
>
> v2:
> - Add xe_bo_is_purged() helper, improve state documentation
>
> V3:
> - Add the kernel doc(Matthew Brost)
> - Add the new helpers xe_bo_madv_is_dontneed(Matthew Brost)
>
> Cc: Matthew Brost <matthew.brost@intel.com>
> Cc: Thomas Hellström <thomas.hellstrom@linux.intel.com>
> Cc: Himal Prasad Ghimiray <himal.prasad.ghimiray@intel.com>
> Signed-off-by: Arvind Yadav <arvind.yadav@intel.com>
> ---
> drivers/gpu/drm/xe/xe_bo.h | 56 ++++++++++++++++++++++++++++++++
> drivers/gpu/drm/xe/xe_bo_types.h | 3 ++
> 2 files changed, 59 insertions(+)
>
> diff --git a/drivers/gpu/drm/xe/xe_bo.h b/drivers/gpu/drm/xe/xe_bo.h
> index 8ab4474129c3..1090a60f6ef6 100644
> --- a/drivers/gpu/drm/xe/xe_bo.h
> +++ b/drivers/gpu/drm/xe/xe_bo.h
> @@ -86,6 +86,28 @@
>
> #define XE_PCI_BARRIER_MMAP_OFFSET (0x50 << XE_PTE_SHIFT)
>
> +/**
> + * enum xe_madv_purgeable_state - Buffer object purgeable state enumeration
> + *
> + * This enum defines the possible purgeable states for a buffer object,
> + * allowing userspace to provide memory usage hints to the kernel for
> + * better memory management under pressure.
> + *
> + * @XE_MADV_PURGEABLE_WILLNEED: The buffer object is needed and should not be purged.
> + * This is the default state.
> + * @XE_MADV_PURGEABLE_DONTNEED: The buffer object is not currently needed and can be
> + * purged by the kernel under memory pressure.
> + * @XE_MADV_PURGEABLE_PURGED: The buffer object has been purged by the kernel.
> + *
> + * Accessing a purged buffer will result in an error. Per i915 semantics,
> + * once purged, a BO remains permanently invalid and must be destroyed and recreated.
> + */
> +enum xe_madv_purgeable_state {
> + XE_MADV_PURGEABLE_WILLNEED,
> + XE_MADV_PURGEABLE_DONTNEED,
> + XE_MADV_PURGEABLE_PURGED,
> +};
> +
> struct sg_table;
>
> struct xe_bo *xe_bo_alloc(void);
> @@ -214,6 +236,40 @@ static inline bool xe_bo_is_protected(const struct xe_bo *bo)
> return bo->pxp_key_instance;
> }
>
> +/**
> + * xe_bo_is_purged() - Check if buffer object has been purged
> + * @bo: The buffer object to check
> + *
> + * Checks if the buffer object's backing store has been discarded by the
> + * kernel due to memory pressure after being marked as purgeable (DONTNEED).
> + * Once purged, the BO cannot be restored and any attempt to use it will fail.
> + *
> + * Context: Caller must hold the BO's dma-resv lock
> + * Return: true if the BO has been purged, false otherwise
> + */
> +static inline bool xe_bo_is_purged(struct xe_bo *bo)
> +{
> + xe_bo_assert_held(bo);
> + return atomic_read(&bo->madv_purgeable) == XE_MADV_PURGEABLE_PURGED;
> +}
> +
> +/**
> + * xe_bo_madv_is_dontneed() - Check if BO is marked as DONTNEED
> + * @bo: The buffer object to check
> + *
> + * Checks if userspace has marked this BO as DONTNEED (i.e., its contents
> + * are not currently needed and can be discarded under memory pressure).
> + * This is used internally to decide whether a BO is eligible for purging.
> + *
> + * Context: Caller must hold the BO's dma-resv lock
> + * Return: true if the BO is marked DONTNEED, false otherwise
> + */
> +static inline bool xe_bo_madv_is_dontneed(struct xe_bo *bo)
> +{
> + xe_bo_assert_held(bo);
> + return atomic_read(&bo->madv_purgeable) == XE_MADV_PURGEABLE_DONTNEED;
> +}
> +
> static inline void xe_bo_unpin_map_no_vm(struct xe_bo *bo)
> {
> if (likely(bo)) {
> diff --git a/drivers/gpu/drm/xe/xe_bo_types.h b/drivers/gpu/drm/xe/xe_bo_types.h
> index d4fe3c8dca5b..57b4dc7012e2 100644
> --- a/drivers/gpu/drm/xe/xe_bo_types.h
> +++ b/drivers/gpu/drm/xe/xe_bo_types.h
> @@ -108,6 +108,9 @@ struct xe_bo {
> * from default
> */
> u64 min_align;
> +
> + /** @madv_purgeable: user space advise on BO purgeability */
> + atomic_t madv_purgeable;
If this variable is only accessed under the BO's dma-resv lock, this
doesn't need to be an atomic.
So also...
'@madv_purgeable: user space advise on BO purgeability, protected by
BO's dma-resv lock'
Matt
> };
>
> #endif
> --
> 2.43.0
>
^ permalink raw reply [flat|nested] 18+ messages in thread* Re: [RFC v3 2/8] drm/xe/bo: Add purgeable bo state tracking and field madv to xe_bo
2025-12-10 5:46 ` Matthew Brost
@ 2025-12-10 7:18 ` Yadav, Arvind
0 siblings, 0 replies; 18+ messages in thread
From: Yadav, Arvind @ 2025-12-10 7:18 UTC (permalink / raw)
To: Matthew Brost
Cc: intel-xe, himal.prasad.ghimiray, thomas.hellstrom, pallavi.mishra
On 10-12-2025 11:16, Matthew Brost wrote:
> On Wed, Dec 10, 2025 at 10:00:46AM +0530, Arvind Yadav wrote:
>> Add infrastructure for tracking purgeable state of buffer objects.
>> This includes:
>>
>> Introduce enum xe_madv_purgeable_state with three states:
>> - XE_MADV_PURGEABLE_WILLNEED (0): BO is needed and should not be
>> purged. This is the default state for all BOs.
>>
>> - XE_MADV_PURGEABLE_DONTNEED (1): BO is not currently needed and
>> can be purged by the kernel under memory pressure to reclaim
>> resources. Only non-shared BOs can be marked as DONTNEED.
>>
>> - XE_MADV_PURGEABLE_PURGED (2): BO has been purged by the kernel.
>> Accessing a purged BO results in error. Follows i915 semantics
>> where once purged, the BO remains permanently invalid ("once
>> purged, always purged").
>>
>> Add atomic_t madv field to struct xe_bo for state tracking
>> of purgeable state across concurrent access paths
>>
>> v2:
>> - Add xe_bo_is_purged() helper, improve state documentation
>>
>> V3:
>> - Add the kernel doc(Matthew Brost)
>> - Add the new helpers xe_bo_madv_is_dontneed(Matthew Brost)
>>
>> Cc: Matthew Brost <matthew.brost@intel.com>
>> Cc: Thomas Hellström <thomas.hellstrom@linux.intel.com>
>> Cc: Himal Prasad Ghimiray <himal.prasad.ghimiray@intel.com>
>> Signed-off-by: Arvind Yadav <arvind.yadav@intel.com>
>> ---
>> drivers/gpu/drm/xe/xe_bo.h | 56 ++++++++++++++++++++++++++++++++
>> drivers/gpu/drm/xe/xe_bo_types.h | 3 ++
>> 2 files changed, 59 insertions(+)
>>
>> diff --git a/drivers/gpu/drm/xe/xe_bo.h b/drivers/gpu/drm/xe/xe_bo.h
>> index 8ab4474129c3..1090a60f6ef6 100644
>> --- a/drivers/gpu/drm/xe/xe_bo.h
>> +++ b/drivers/gpu/drm/xe/xe_bo.h
>> @@ -86,6 +86,28 @@
>>
>> #define XE_PCI_BARRIER_MMAP_OFFSET (0x50 << XE_PTE_SHIFT)
>>
>> +/**
>> + * enum xe_madv_purgeable_state - Buffer object purgeable state enumeration
>> + *
>> + * This enum defines the possible purgeable states for a buffer object,
>> + * allowing userspace to provide memory usage hints to the kernel for
>> + * better memory management under pressure.
>> + *
>> + * @XE_MADV_PURGEABLE_WILLNEED: The buffer object is needed and should not be purged.
>> + * This is the default state.
>> + * @XE_MADV_PURGEABLE_DONTNEED: The buffer object is not currently needed and can be
>> + * purged by the kernel under memory pressure.
>> + * @XE_MADV_PURGEABLE_PURGED: The buffer object has been purged by the kernel.
>> + *
>> + * Accessing a purged buffer will result in an error. Per i915 semantics,
>> + * once purged, a BO remains permanently invalid and must be destroyed and recreated.
>> + */
>> +enum xe_madv_purgeable_state {
>> + XE_MADV_PURGEABLE_WILLNEED,
>> + XE_MADV_PURGEABLE_DONTNEED,
>> + XE_MADV_PURGEABLE_PURGED,
>> +};
>> +
>> struct sg_table;
>>
>> struct xe_bo *xe_bo_alloc(void);
>> @@ -214,6 +236,40 @@ static inline bool xe_bo_is_protected(const struct xe_bo *bo)
>> return bo->pxp_key_instance;
>> }
>>
>> +/**
>> + * xe_bo_is_purged() - Check if buffer object has been purged
>> + * @bo: The buffer object to check
>> + *
>> + * Checks if the buffer object's backing store has been discarded by the
>> + * kernel due to memory pressure after being marked as purgeable (DONTNEED).
>> + * Once purged, the BO cannot be restored and any attempt to use it will fail.
>> + *
>> + * Context: Caller must hold the BO's dma-resv lock
>> + * Return: true if the BO has been purged, false otherwise
>> + */
>> +static inline bool xe_bo_is_purged(struct xe_bo *bo)
>> +{
>> + xe_bo_assert_held(bo);
>> + return atomic_read(&bo->madv_purgeable) == XE_MADV_PURGEABLE_PURGED;
>> +}
>> +
>> +/**
>> + * xe_bo_madv_is_dontneed() - Check if BO is marked as DONTNEED
>> + * @bo: The buffer object to check
>> + *
>> + * Checks if userspace has marked this BO as DONTNEED (i.e., its contents
>> + * are not currently needed and can be discarded under memory pressure).
>> + * This is used internally to decide whether a BO is eligible for purging.
>> + *
>> + * Context: Caller must hold the BO's dma-resv lock
>> + * Return: true if the BO is marked DONTNEED, false otherwise
>> + */
>> +static inline bool xe_bo_madv_is_dontneed(struct xe_bo *bo)
>> +{
>> + xe_bo_assert_held(bo);
>> + return atomic_read(&bo->madv_purgeable) == XE_MADV_PURGEABLE_DONTNEED;
>> +}
>> +
>> static inline void xe_bo_unpin_map_no_vm(struct xe_bo *bo)
>> {
>> if (likely(bo)) {
>> diff --git a/drivers/gpu/drm/xe/xe_bo_types.h b/drivers/gpu/drm/xe/xe_bo_types.h
>> index d4fe3c8dca5b..57b4dc7012e2 100644
>> --- a/drivers/gpu/drm/xe/xe_bo_types.h
>> +++ b/drivers/gpu/drm/xe/xe_bo_types.h
>> @@ -108,6 +108,9 @@ struct xe_bo {
>> * from default
>> */
>> u64 min_align;
>> +
>> + /** @madv_purgeable: user space advise on BO purgeability */
>> + atomic_t madv_purgeable;
> If this variable is only accessed under the BO's dma-resv lock, this
> doesn't need to be an atomic.
>
> So also...
>
> '@madv_purgeable: user space advise on BO purgeability, protected by
> BO's dma-resv lock'
Noted. Will do this changes.
~Arvind
> Matt
>
>> };
>>
>> #endif
>> --
>> 2.43.0
>>
^ permalink raw reply [flat|nested] 18+ messages in thread
* [RFC v3 3/8] drm/xe/madvise: Implement purgeable buffer object support
2025-12-10 4:30 [RFC v3 0/8] drm/xe/madvise: Add support for purgeable buffer objects Arvind Yadav
2025-12-10 4:30 ` [RFC v3 1/8] drm/xe/uapi: Add UAPI " Arvind Yadav
2025-12-10 4:30 ` [RFC v3 2/8] drm/xe/bo: Add purgeable bo state tracking and field madv to xe_bo Arvind Yadav
@ 2025-12-10 4:30 ` Arvind Yadav
2025-12-10 4:30 ` [RFC v3 4/8] drm/xe/bo: Handle CPU faults on purged buffer objects Arvind Yadav
` (8 subsequent siblings)
11 siblings, 0 replies; 18+ messages in thread
From: Arvind Yadav @ 2025-12-10 4:30 UTC (permalink / raw)
To: intel-xe
Cc: matthew.brost, himal.prasad.ghimiray, thomas.hellstrom,
pallavi.mishra
This allows userspace applications to provide memory usage hints to
the kernel for better memory management under pressure:
Add the core implementation for purgeable buffer objects, enabling memory
reclamation of user-designated DONTNEED buffers during eviction.
This patch implements the purge operation and state machine transitions:
Purgeable States (from xe_madv_purgeable_state):
- WILLNEED (0): BO should be retained, actively used
- DONTNEED (1): BO eligible for purging, not currently needed
- PURGED (2): BO backing store reclaimed, permanently invalid
Design Rationale:
- Async TLB invalidation via trigger_rebind (no blocking xe_vm_invalidate_vma)
- i915 compatibility: retained field, "once purged always purged" semantics
- Shared BO protection prevents multi-process memory corruption
- Scratch PTE reuse avoids new infrastructure, safe for fault mode
v2:
- Use xe_bo_trigger_rebind() for async TLB invalidation (Thomas Hellström)
- Add NULL rebind with scratch PTEs for fault mode (Thomas Hellström)
- Implement i915-compatible retained field logic (Thomas Hellström)
- Skip BO validation for purged BOs in page fault handler (crash fix)
- Add scratch VM check in page fault path (non-scratch VMs fail fault)
- Force clear_pt for non-scratch VMs to avoid phys addr 0 mapping (review fix)
- Add !is_purged check to resource cursor setup to prevent stale access
v3:
- Rebase as xe_gt_pagefault.c is gone upstream and replaced
with xe_pagefault.c (Matthew Brost)
- Xe specific warn on (Matthew Brost)
- Call helpers for madv_purgeable access(Matthew Brost)
- Remove bo NULL check(Matthew Brost)
- Use xe_bo_assert_held instead of dma assert(Matthew Brost)
- Move the xe_bo_is_purged check under the dma-resv lock( by Matt)
- Drop is_purged from xe_pt_stage_bind_entry and just set is_null to true
for purged BO rename s/is_null/is_null_or_purged (by Matt)
- UAPI rule should not be changed.(Matthew Brost)
- Make 'retained' a userptr (Matthew Brost)
Cc: Matthew Brost <matthew.brost@intel.com>
Cc: Thomas Hellström <thomas.hellstrom@linux.intel.com>
Cc: Himal Prasad Ghimiray <himal.prasad.ghimiray@intel.com>
Signed-off-by: Arvind Yadav <arvind.yadav@intel.com>
---
drivers/gpu/drm/xe/xe_bo.c | 69 ++++++++++++++++++----
drivers/gpu/drm/xe/xe_pagefault.c | 12 ++++
drivers/gpu/drm/xe/xe_pt.c | 38 +++++++++++--
drivers/gpu/drm/xe/xe_vm.c | 11 +++-
drivers/gpu/drm/xe/xe_vm_madvise.c | 91 ++++++++++++++++++++++++++++++
5 files changed, 202 insertions(+), 19 deletions(-)
diff --git a/drivers/gpu/drm/xe/xe_bo.c b/drivers/gpu/drm/xe/xe_bo.c
index 6280e6a013ff..c161ac6420db 100644
--- a/drivers/gpu/drm/xe/xe_bo.c
+++ b/drivers/gpu/drm/xe/xe_bo.c
@@ -835,6 +835,51 @@ static int xe_bo_move_notify(struct xe_bo *bo,
return 0;
}
+static void xe_bo_set_purged(struct xe_bo *bo)
+{
+ /* BO must be locked before modifying madv state */
+ xe_bo_assert_held(bo);
+
+ atomic_set(&bo->madv_purgeable, XE_MADV_PURGEABLE_PURGED);
+}
+
+/**
+ * xe_ttm_bo_purge() - Purge buffer object backing store
+ * @ttm_bo: The TTM buffer object to purge
+ * @ctx: TTM operation context
+ *
+ * This function purges the backing store of a BO marked as DONTNEED and
+ * triggers rebind to invalidate stale GPU mappings. For fault-mode VMs,
+ * this zaps the PTEs. The next GPU access will trigger a page fault and
+ * perform NULL rebind (scratch pages or clear PTEs based on VM config).
+ */
+static void xe_ttm_bo_purge(struct ttm_buffer_object *ttm_bo, struct ttm_operation_ctx *ctx)
+{
+ struct xe_device *xe = ttm_to_xe_device(ttm_bo->bdev);
+ struct xe_bo *bo = ttm_to_xe_bo(ttm_bo);
+
+ if (ttm_bo->ttm) {
+ struct ttm_placement place = {};
+ int ret = ttm_bo_validate(ttm_bo, &place, ctx);
+
+ drm_WARN_ON(&xe->drm, ret);
+ if (!ret) {
+ if (xe_bo_madv_is_dontneed(bo)) {
+ xe_bo_set_purged(bo);
+
+ /*
+ * Trigger rebind to invalidate stale GPU mappings.
+ * - Non-fault mode: Marks VMAs for rebind
+ * - Fault mode: Zaps PTEs (sets to 0), next access triggers fault
+ * and NULL rebind with scratch/clear PTEs per VM config
+ */
+ ret = xe_bo_trigger_rebind(xe, bo, ctx);
+ XE_WARN_ON(ret);
+ }
+ }
+ }
+}
+
static int xe_bo_move(struct ttm_buffer_object *ttm_bo, bool evict,
struct ttm_operation_ctx *ctx,
struct ttm_resource *new_mem,
@@ -854,6 +899,15 @@ static int xe_bo_move(struct ttm_buffer_object *ttm_bo, bool evict,
ttm && ttm_tt_is_populated(ttm)) ? true : false;
int ret = 0;
+ /*
+ * Purge only non-shared BOs explicitly marked DONTNEED by userspace.
+ * The move_notify callback will handle invalidation asynchronously.
+ */
+ if (evict && xe_bo_madv_is_dontneed(bo)) {
+ xe_ttm_bo_purge(ttm_bo, ctx);
+ return 0;
+ }
+
/* Bo creation path, moving to system or TT. */
if ((!old_mem && ttm) && !handle_system_ccs) {
if (new_mem->mem_type == XE_PL_TT)
@@ -1605,18 +1659,6 @@ static void xe_ttm_bo_delete_mem_notify(struct ttm_buffer_object *ttm_bo)
}
}
-static void xe_ttm_bo_purge(struct ttm_buffer_object *ttm_bo, struct ttm_operation_ctx *ctx)
-{
- struct xe_device *xe = ttm_to_xe_device(ttm_bo->bdev);
-
- if (ttm_bo->ttm) {
- struct ttm_placement place = {};
- int ret = ttm_bo_validate(ttm_bo, &place, ctx);
-
- drm_WARN_ON(&xe->drm, ret);
- }
-}
-
static void xe_ttm_bo_swap_notify(struct ttm_buffer_object *ttm_bo)
{
struct ttm_operation_ctx ctx = {
@@ -2197,6 +2239,9 @@ struct xe_bo *xe_bo_init_locked(struct xe_device *xe, struct xe_bo *bo,
#endif
INIT_LIST_HEAD(&bo->vram_userfault_link);
+ /* Initialize purge advisory state */
+ atomic_set(&bo->madv_purgeable, XE_MADV_PURGEABLE_WILLNEED);
+
drm_gem_private_object_init(&xe->drm, &bo->ttm.base, size);
if (resv) {
diff --git a/drivers/gpu/drm/xe/xe_pagefault.c b/drivers/gpu/drm/xe/xe_pagefault.c
index afb06598b6e1..78ee51df1d4a 100644
--- a/drivers/gpu/drm/xe/xe_pagefault.c
+++ b/drivers/gpu/drm/xe/xe_pagefault.c
@@ -59,6 +59,18 @@ static int xe_pagefault_begin(struct drm_exec *exec, struct xe_vma *vma,
if (!bo)
return 0;
+ /*
+ * Check if BO is purged (under dma-resv lock).
+ * For purged BOs:
+ * - Scratch VMs: Skip validation, rebind will use scratch PTEs
+ * - Non-scratch VMs: FAIL the page fault (no scratch page available)
+ */
+ if (unlikely(xe_bo_is_purged(bo))) {
+ if (!xe_vm_has_scratch(vm))
+ return -EACCES;
+ return 0;
+ }
+
return need_vram_move ? xe_bo_migrate(bo, vram->placement, NULL, exec) :
xe_bo_validate(bo, vm, true, exec);
}
diff --git a/drivers/gpu/drm/xe/xe_pt.c b/drivers/gpu/drm/xe/xe_pt.c
index 884127b4d97d..7f83d68c3198 100644
--- a/drivers/gpu/drm/xe/xe_pt.c
+++ b/drivers/gpu/drm/xe/xe_pt.c
@@ -531,20 +531,26 @@ xe_pt_stage_bind_entry(struct xe_ptw *parent, pgoff_t offset,
/* Is this a leaf entry ?*/
if (level == 0 || xe_pt_hugepte_possible(addr, next, level, xe_walk)) {
struct xe_res_cursor *curs = xe_walk->curs;
- bool is_null = xe_vma_is_null(xe_walk->vma);
- bool is_vram = is_null ? false : xe_res_is_vram(curs);
+ struct xe_bo *bo = xe_vma_bo(xe_walk->vma);
+ bool is_null_or_purged = xe_vma_is_null(xe_walk->vma) ||
+ (bo && xe_bo_is_purged(bo));
+ bool is_vram = is_null_or_purged ? false : xe_res_is_vram(curs);
XE_WARN_ON(xe_walk->va_curs_start != addr);
if (xe_walk->clear_pt) {
pte = 0;
} else {
- pte = vm->pt_ops->pte_encode_vma(is_null ? 0 :
+ /*
+ * For purged BOs, treat like null VMAs - pass address 0.
+ * The pte_encode_vma will set XE_PTE_NULL flag for scratch mapping.
+ */
+ pte = vm->pt_ops->pte_encode_vma(is_null_or_purged ? 0 :
xe_res_dma(curs) +
xe_walk->dma_offset,
xe_walk->vma,
pat_index, level);
- if (!is_null)
+ if (!is_null_or_purged)
pte |= is_vram ? xe_walk->default_vram_pte :
xe_walk->default_system_pte;
@@ -568,7 +574,7 @@ xe_pt_stage_bind_entry(struct xe_ptw *parent, pgoff_t offset,
if (unlikely(ret))
return ret;
- if (!is_null && !xe_walk->clear_pt)
+ if (!is_null_or_purged && !xe_walk->clear_pt)
xe_res_next(curs, next - addr);
xe_walk->va_curs_start = next;
xe_walk->vma->gpuva.flags |= (XE_VMA_PTE_4K << level);
@@ -721,6 +727,26 @@ xe_pt_stage_bind(struct xe_tile *tile, struct xe_vma *vma,
};
struct xe_pt *pt = vm->pt_root[tile->id];
int ret;
+ bool is_purged = false;
+
+ /*
+ * Check if BO is purged:
+ * - Scratch VMs: Use scratch PTEs (XE_PTE_NULL) for safe zero reads
+ * - Non-scratch VMs: Clear PTEs to zero (non-present) to avoid mapping to phys addr 0
+ *
+ * For non-scratch VMs, we force clear_pt=true so leaf PTEs become completely
+ * zero instead of creating a PRESENT mapping to physical address 0.
+ */
+ if (bo && xe_bo_is_purged(bo)) {
+ is_purged = true;
+
+ /*
+ * For non-scratch VMs, a NULL rebind should use zero PTEs
+ * (non-present), not a present PTE to phys 0.
+ */
+ if (!xe_vm_has_scratch(vm))
+ xe_walk.clear_pt = true;
+ }
if (range) {
/* Move this entire thing to xe_svm.c? */
@@ -760,7 +786,7 @@ xe_pt_stage_bind(struct xe_tile *tile, struct xe_vma *vma,
if (!range)
xe_bo_assert_held(bo);
- if (!xe_vma_is_null(vma) && !range) {
+ if (!xe_vma_is_null(vma) && !range && !is_purged) {
if (xe_vma_is_userptr(vma))
xe_res_first_dma(to_userptr_vma(vma)->userptr.pages.dma_addr, 0,
xe_vma_size(vma), &curs);
diff --git a/drivers/gpu/drm/xe/xe_vm.c b/drivers/gpu/drm/xe/xe_vm.c
index c2012d20faa6..762098d368a6 100644
--- a/drivers/gpu/drm/xe/xe_vm.c
+++ b/drivers/gpu/drm/xe/xe_vm.c
@@ -1337,6 +1337,9 @@ static u64 xelp_pte_encode_bo(struct xe_bo *bo, u64 bo_offset,
static u64 xelp_pte_encode_vma(u64 pte, struct xe_vma *vma,
u16 pat_index, u32 pt_level)
{
+ struct xe_bo *bo = xe_vma_bo(vma);
+ struct xe_vm *vm = xe_vma_vm(vma);
+
pte |= XE_PAGE_PRESENT;
if (likely(!xe_vma_read_only(vma)))
@@ -1345,7 +1348,13 @@ static u64 xelp_pte_encode_vma(u64 pte, struct xe_vma *vma,
pte |= pte_encode_pat_index(pat_index, pt_level);
pte |= pte_encode_ps(pt_level);
- if (unlikely(xe_vma_is_null(vma)))
+ /*
+ * NULL PTEs redirect to scratch page (return zeros on read).
+ * Set for: 1) explicit null VMAs, 2) purged BOs on scratch VMs.
+ * Never set NULL flag without scratch page - causes undefined behavior.
+ */
+ if (unlikely(xe_vma_is_null(vma) ||
+ (bo && xe_bo_is_purged(bo) && xe_vm_has_scratch(vm))))
pte |= XE_PTE_NULL;
return pte;
diff --git a/drivers/gpu/drm/xe/xe_vm_madvise.c b/drivers/gpu/drm/xe/xe_vm_madvise.c
index cad3cf627c3f..3e6f77dc1dcb 100644
--- a/drivers/gpu/drm/xe/xe_vm_madvise.c
+++ b/drivers/gpu/drm/xe/xe_vm_madvise.c
@@ -158,6 +158,56 @@ static void madvise_pat_index(struct xe_device *xe, struct xe_vm *vm,
}
}
+/*
+ * Handle purgeable buffer object advice for DONTNEED/WILLNEED/PURGED.
+ * Returns true if any BO was purged, false otherwise.
+ * Caller must copy retained value to userspace after releasing locks.
+ */
+static bool xe_vm_madvise_purgeable_bo(struct xe_device *xe, struct xe_vm *vm,
+ struct xe_vma **vmas, int num_vmas,
+ struct drm_xe_madvise *op)
+{
+ bool has_purged_bo = false;
+ int i;
+
+ xe_assert(vm->xe, op->type == DRM_XE_VMA_ATTR_PURGEABLE_STATE);
+
+ for (i = 0; i < num_vmas; i++) {
+ struct xe_bo *bo = xe_vma_bo(vmas[i]);
+
+ if (!bo)
+ continue;
+
+ /* BO must be locked before modifying madv state */
+ xe_bo_assert_held(bo);
+
+ /*
+ * Once purged, always purged. Cannot transition back to WILLNEED.
+ * This matches i915 semantics where purged BOs are permanently invalid.
+ */
+ if (xe_bo_is_purged(bo)) {
+ has_purged_bo = true;
+ continue;
+ }
+
+ switch (op->purge_state_val.val) {
+ case DRM_XE_VMA_PURGEABLE_STATE_WILLNEED:
+ atomic_set(&bo->madv_purgeable, XE_MADV_PURGEABLE_WILLNEED);
+ break;
+ case DRM_XE_VMA_PURGEABLE_STATE_DONTNEED:
+ atomic_set(&bo->madv_purgeable, XE_MADV_PURGEABLE_DONTNEED);
+ break;
+ default:
+ drm_warn(&vm->xe->drm, "Invalid madvice value = %d\n",
+ op->purge_state_val.val);
+ return false;
+ }
+ }
+
+ /* Return whether any BO was purged; caller will copy to user after unlocking */
+ return has_purged_bo;
+}
+
typedef void (*madvise_func)(struct xe_device *xe, struct xe_vm *vm,
struct xe_vma **vmas, int num_vmas,
struct drm_xe_madvise *op);
@@ -283,6 +333,19 @@ static bool madvise_args_are_sane(struct xe_device *xe, const struct drm_xe_madv
return false;
break;
}
+ case DRM_XE_VMA_ATTR_PURGEABLE_STATE:
+ {
+ u32 val = args->purge_state_val.val;
+
+ if (XE_IOCTL_DBG(xe, !((val == DRM_XE_VMA_PURGEABLE_STATE_WILLNEED) ||
+ (val == DRM_XE_VMA_PURGEABLE_STATE_DONTNEED))))
+ return false;
+
+ if (XE_IOCTL_DBG(xe, args->purge_state_val.reserved))
+ return false;
+
+ break;
+ }
default:
if (XE_IOCTL_DBG(xe, 1))
return false;
@@ -402,6 +465,34 @@ int xe_vm_madvise_ioctl(struct drm_device *dev, void *data, struct drm_file *fil
goto err_fini;
}
}
+ if (args->type == DRM_XE_VMA_ATTR_PURGEABLE_STATE) {
+ bool has_purged_bo;
+
+ has_purged_bo = xe_vm_madvise_purgeable_bo(xe, vm, madvise_range.vmas,
+ madvise_range.num_vmas, args);
+
+ /* Release BO locks */
+ drm_exec_fini(&exec);
+ kfree(madvise_range.vmas);
+ up_write(&vm->lock);
+
+ /*
+ * Set retained flag to indicate if backing store still exists.
+ * Matches i915: retained = 1 if not purged, 0 if purged.
+ * Must copy_to_user AFTER releasing ALL locks to avoid circular dependency.
+ */
+ if (args->purge_state_val.retained) {
+ u32 retained = !has_purged_bo;
+
+ if (copy_to_user(u64_to_user_ptr(args->purge_state_val.retained),
+ &retained, sizeof(retained)))
+ drm_warn(&vm->xe->drm, "Failed to copy retained value to user\n");
+ }
+
+ /* Final cleanup for early return */
+ xe_vm_put(vm);
+ return 0;
+ }
}
if (madvise_range.has_svm_userptr_vmas) {
--
2.43.0
^ permalink raw reply related [flat|nested] 18+ messages in thread* [RFC v3 4/8] drm/xe/bo: Handle CPU faults on purged buffer objects
2025-12-10 4:30 [RFC v3 0/8] drm/xe/madvise: Add support for purgeable buffer objects Arvind Yadav
` (2 preceding siblings ...)
2025-12-10 4:30 ` [RFC v3 3/8] drm/xe/madvise: Implement purgeable buffer object support Arvind Yadav
@ 2025-12-10 4:30 ` Arvind Yadav
2025-12-10 4:30 ` [RFC v3 5/8] drm/xe/vm: Prevent binding of " Arvind Yadav
` (7 subsequent siblings)
11 siblings, 0 replies; 18+ messages in thread
From: Arvind Yadav @ 2025-12-10 4:30 UTC (permalink / raw)
To: intel-xe
Cc: matthew.brost, himal.prasad.ghimiray, thomas.hellstrom,
pallavi.mishra
Return -EFAULT when CPU attempts to access a purged buffer object.
Purged BOs have their backing store reclaimed by the kernel, making
CPU access invalid. For mmap() users, this is reported as SIGBUS via
the usual VM_FAULT_SIGBUS conversion, matching i915 semantics.
Check xe_bo_is_purged() under dma-resv lock in the page fault
handler to prevent races. The fault handler returns VM_FAULT_SIGBUS
to signal the error to userspace.
v2:
- Added xe_bo_is_purged(bo) instead of atomic_read.
- Avoids leaks and keeps drm_dev_exit() while returning.
v3:
- Move xe_bo_is_purged check under a dma-resv lock (Matthew Brost)
Cc: Matthew Brost <matthew.brost@intel.com>
Cc: Thomas Hellström <thomas.hellstrom@linux.intel.com>
Cc: Himal Prasad Ghimiray <himal.prasad.ghimiray@intel.com>
Signed-off-by: Arvind Yadav <arvind.yadav@intel.com>
---
drivers/gpu/drm/xe/xe_bo.c | 6 ++++++
1 file changed, 6 insertions(+)
diff --git a/drivers/gpu/drm/xe/xe_bo.c b/drivers/gpu/drm/xe/xe_bo.c
index c161ac6420db..31b2fa490440 100644
--- a/drivers/gpu/drm/xe/xe_bo.c
+++ b/drivers/gpu/drm/xe/xe_bo.c
@@ -2033,6 +2033,12 @@ static vm_fault_t xe_bo_cpu_fault(struct vm_fault *vmf)
if (err)
break;
+ /* Purged BOs have no backing store - fault to userspace */
+ if (xe_bo_is_purged(bo)) {
+ err = -EFAULT;
+ break;
+ }
+
if (xe_ttm_bo_is_imported(tbo)) {
err = -EFAULT;
drm_dbg(&xe->drm, "CPU trying to access an imported buffer object.\n");
--
2.43.0
^ permalink raw reply related [flat|nested] 18+ messages in thread* [RFC v3 5/8] drm/xe/vm: Prevent binding of purged buffer objects
2025-12-10 4:30 [RFC v3 0/8] drm/xe/madvise: Add support for purgeable buffer objects Arvind Yadav
` (3 preceding siblings ...)
2025-12-10 4:30 ` [RFC v3 4/8] drm/xe/bo: Handle CPU faults on purged buffer objects Arvind Yadav
@ 2025-12-10 4:30 ` Arvind Yadav
2025-12-10 4:30 ` [RFC v3 6/8] drm/xe/madvise: Implement per-VMA purgeable state tracking Arvind Yadav
` (6 subsequent siblings)
11 siblings, 0 replies; 18+ messages in thread
From: Arvind Yadav @ 2025-12-10 4:30 UTC (permalink / raw)
To: intel-xe
Cc: matthew.brost, himal.prasad.ghimiray, thomas.hellstrom,
pallavi.mishra
Add check_purged parameter to vma_lock_and_validate() to block
new mapping operations on purged BOs while allowing cleanup
operations to proceed.
Purged BOs have their backing pages freed by the kernel. New
mapping operations (MAP, PREFETCH, REMAP) must be rejected with
-EINVAL to prevent GPU access to invalid memory. Cleanup
operations (UNMAP) must be allowed so applications can release
resources after detecting purge via the retained field.
REMAP operations require mixed handling - reject new prev/next
VMAs if the BO is purged, but allow the unmap portion to proceed
for cleanup.
The check_purged parameter distinguishes between these cases:
true for new mappings (must reject), false for cleanup (allow).
v2:
- Clarify that purged BOs are permanently invalid (i915 semantics)
- Remove incorrect claim about madvise(WILLNEED) restoring purged BOs
v3:
- Move xe_bo_is_purged check under vma_lock_and_validate (Matthew Brost)
- Add check_purged parameter to distinguish new mappings from cleanup
- Allow UNMAP operations to prevent resource leaks
- Handle REMAP operation's dual nature (cleanup + new mappings)
Cc: Matthew Brost <matthew.brost@intel.com>
Cc: Thomas Hellström <thomas.hellstrom@linux.intel.com>
Cc: Himal Prasad Ghimiray <himal.prasad.ghimiray@intel.com>
Signed-off-by: Arvind Yadav <arvind.yadav@intel.com>
---
drivers/gpu/drm/xe/xe_vm.c | 20 +++++++++++++-------
1 file changed, 13 insertions(+), 7 deletions(-)
diff --git a/drivers/gpu/drm/xe/xe_vm.c b/drivers/gpu/drm/xe/xe_vm.c
index 762098d368a6..9a6c9a26c6da 100644
--- a/drivers/gpu/drm/xe/xe_vm.c
+++ b/drivers/gpu/drm/xe/xe_vm.c
@@ -2864,7 +2864,7 @@ static void vm_bind_ioctl_ops_unwind(struct xe_vm *vm,
}
static int vma_lock_and_validate(struct drm_exec *exec, struct xe_vma *vma,
- bool res_evict, bool validate)
+ bool res_evict, bool validate, bool check_purged)
{
struct xe_bo *bo = xe_vma_bo(vma);
struct xe_vm *vm = xe_vma_vm(vma);
@@ -2873,6 +2873,11 @@ static int vma_lock_and_validate(struct drm_exec *exec, struct xe_vma *vma,
if (bo) {
if (!bo->vm)
err = drm_exec_lock_obj(exec, &bo->ttm.base);
+
+ /* Reject new mappings to purged BOs; allow cleanup operations */
+ if (!err && check_purged && xe_bo_is_purged(bo))
+ err = -EINVAL;
+
if (!err && validate)
err = xe_bo_validate(bo, vm,
!xe_vm_in_preempt_fence_mode(vm) &&
@@ -2964,7 +2969,8 @@ static int op_lock_and_prep(struct drm_exec *exec, struct xe_vm *vm,
err = vma_lock_and_validate(exec, op->map.vma,
res_evict,
!xe_vm_in_fault_mode(vm) ||
- op->map.immediate);
+ op->map.immediate,
+ true);
break;
case DRM_GPUVA_OP_REMAP:
err = check_ufence(gpuva_to_vma(op->base.remap.unmap->va));
@@ -2973,13 +2979,13 @@ static int op_lock_and_prep(struct drm_exec *exec, struct xe_vm *vm,
err = vma_lock_and_validate(exec,
gpuva_to_vma(op->base.remap.unmap->va),
- res_evict, false);
+ res_evict, false, false);
if (!err && op->remap.prev)
err = vma_lock_and_validate(exec, op->remap.prev,
- res_evict, true);
+ res_evict, true, true);
if (!err && op->remap.next)
err = vma_lock_and_validate(exec, op->remap.next,
- res_evict, true);
+ res_evict, true, true);
break;
case DRM_GPUVA_OP_UNMAP:
err = check_ufence(gpuva_to_vma(op->base.unmap.va));
@@ -2988,7 +2994,7 @@ static int op_lock_and_prep(struct drm_exec *exec, struct xe_vm *vm,
err = vma_lock_and_validate(exec,
gpuva_to_vma(op->base.unmap.va),
- res_evict, false);
+ res_evict, false, false);
break;
case DRM_GPUVA_OP_PREFETCH:
{
@@ -3003,7 +3009,7 @@ static int op_lock_and_prep(struct drm_exec *exec, struct xe_vm *vm,
err = vma_lock_and_validate(exec,
gpuva_to_vma(op->base.prefetch.va),
- res_evict, false);
+ res_evict, false, true);
if (!err && !xe_vma_has_no_bo(vma))
err = xe_bo_migrate(xe_vma_bo(vma),
region_to_mem_type[region],
--
2.43.0
^ permalink raw reply related [flat|nested] 18+ messages in thread* [RFC v3 6/8] drm/xe/madvise: Implement per-VMA purgeable state tracking
2025-12-10 4:30 [RFC v3 0/8] drm/xe/madvise: Add support for purgeable buffer objects Arvind Yadav
` (4 preceding siblings ...)
2025-12-10 4:30 ` [RFC v3 5/8] drm/xe/vm: Prevent binding of " Arvind Yadav
@ 2025-12-10 4:30 ` Arvind Yadav
2025-12-10 4:30 ` [RFC v3 7/8] drm/xe/madvise: Block imported and exported dma-bufs Arvind Yadav
` (5 subsequent siblings)
11 siblings, 0 replies; 18+ messages in thread
From: Arvind Yadav @ 2025-12-10 4:30 UTC (permalink / raw)
To: intel-xe
Cc: matthew.brost, himal.prasad.ghimiray, thomas.hellstrom,
pallavi.mishra
Track purgeable state per-VMA instead of using a coarse shared
BO check. This prevents purging shared BOs until all VMAs across
all VMs are marked DONTNEED.
Add xe_bo_all_vmas_dontneed() to check all VMAs before marking
a BO purgeable. Add xe_bo_recheck_purgeable_on_vma_unbind() to
handle state transitions when VMAs are destroyed - if all
remaining VMAs are DONTNEED the BO can become purgeable, or if
no VMAs remain it transitions to WILLNEED.
The per-VMA purgeable_state field stores the madvise hint for
each mapping. Shared BOs can only be purged when all VMAs
unanimously indicate DONTNEED.
v3:
- This addresses Thomas Hellström's feedback: "loop over all vmas
attached to the bo and check that they all say WONTNEED. This will
also need a check at VMA unbinding"
Cc: Matthew Brost <matthew.brost@intel.com>
Cc: Thomas Hellström <thomas.hellstrom@linux.intel.com>
Cc: Himal Prasad Ghimiray <himal.prasad.ghimiray@intel.com>
Signed-off-by: Arvind Yadav <arvind.yadav@intel.com>
---
drivers/gpu/drm/xe/xe_vm.c | 15 ++++-
drivers/gpu/drm/xe/xe_vm_madvise.c | 91 +++++++++++++++++++++++++++++-
drivers/gpu/drm/xe/xe_vm_madvise.h | 3 +
drivers/gpu/drm/xe/xe_vm_types.h | 11 ++++
4 files changed, 118 insertions(+), 2 deletions(-)
diff --git a/drivers/gpu/drm/xe/xe_vm.c b/drivers/gpu/drm/xe/xe_vm.c
index 9a6c9a26c6da..604306684082 100644
--- a/drivers/gpu/drm/xe/xe_vm.c
+++ b/drivers/gpu/drm/xe/xe_vm.c
@@ -40,6 +40,7 @@
#include "xe_tile.h"
#include "xe_tlb_inval.h"
#include "xe_trace_bo.h"
+#include "xe_vm_madvise.h"
#include "xe_wa.h"
static struct drm_gem_object *xe_vm_obj(struct xe_vm *vm)
@@ -1057,12 +1058,18 @@ static struct xe_vma *xe_vma_create(struct xe_vm *vm,
static void xe_vma_destroy_late(struct xe_vma *vma)
{
struct xe_vm *vm = xe_vma_vm(vma);
+ struct xe_bo *bo = NULL;
if (vma->ufence) {
xe_sync_ufence_put(vma->ufence);
vma->ufence = NULL;
}
+ /* Get BO reference for purgeable state re-check */
+ if (!xe_vma_is_userptr(vma) && !xe_vma_is_null(vma) &&
+ !xe_vma_is_cpu_addr_mirror(vma))
+ bo = xe_vma_bo(vma);
+
if (xe_vma_is_userptr(vma)) {
struct xe_userptr_vma *uvma = to_userptr_vma(vma);
@@ -1071,7 +1078,13 @@ static void xe_vma_destroy_late(struct xe_vma *vma)
} else if (xe_vma_is_null(vma) || xe_vma_is_cpu_addr_mirror(vma)) {
xe_vm_put(vm);
} else {
- xe_bo_put(xe_vma_bo(vma));
+ /* Trylock safe for async context; madvise corrects failures */
+ if (bo && dma_resv_trylock(bo->ttm.base.resv)) {
+ xe_bo_recheck_purgeable_on_vma_unbind(bo);
+ dma_resv_unlock(bo->ttm.base.resv);
+ }
+
+ xe_bo_put(bo);
}
xe_vma_free(vma);
diff --git a/drivers/gpu/drm/xe/xe_vm_madvise.c b/drivers/gpu/drm/xe/xe_vm_madvise.c
index 3e6f77dc1dcb..9f2d6c1d3062 100644
--- a/drivers/gpu/drm/xe/xe_vm_madvise.c
+++ b/drivers/gpu/drm/xe/xe_vm_madvise.c
@@ -12,6 +12,7 @@
#include "xe_pat.h"
#include "xe_pt.h"
#include "xe_svm.h"
+#include "xe_vm.h"
struct xe_vmas_in_madvise_range {
u64 addr;
@@ -158,6 +159,84 @@ static void madvise_pat_index(struct xe_device *xe, struct xe_vm *vm,
}
}
+/**
+ * xe_bo_all_vmas_dontneed() - Check if all VMAs of a BO are marked DONTNEED
+ * @bo: Buffer object
+ *
+ * Check all VMAs across all VMs to determine if BO can be purged.
+ * Shared BOs require unanimous DONTNEED state from all mappings.
+ *
+ * Caller must hold BO dma-resv lock.
+ *
+ * Return: true if all VMAs are DONTNEED, false otherwise
+ */
+static bool xe_bo_all_vmas_dontneed(struct xe_bo *bo)
+{
+ struct drm_gpuvm_bo *vm_bo;
+ struct drm_gpuva *gpuva;
+ struct drm_gem_object *obj = &bo->ttm.base;
+ bool has_vmas = false;
+
+ dma_resv_assert_held(bo->ttm.base.resv);
+
+ drm_gem_for_each_gpuvm_bo(vm_bo, obj) {
+ drm_gpuvm_bo_for_each_va(gpuva, vm_bo) {
+ struct xe_vma *vma = gpuva_to_vma(gpuva);
+
+ has_vmas = true;
+
+ /* Any non-DONTNEED VMA prevents purging */
+ if (READ_ONCE(vma->purgeable_state) != XE_MADV_PURGEABLE_DONTNEED)
+ return false;
+ }
+ }
+
+ /* No VMAs means not purgeable */
+ if (!has_vmas)
+ return false;
+
+ return true;
+}
+
+/**
+ * xe_bo_recheck_purgeable_on_vma_unbind() - Re-evaluate BO purgeable state after VMA unbind
+ * @bo: Buffer object
+ *
+ * When a VMA is unbound, re-check if the BO's purgeable state should change.
+ * Destroyed VMAs may allow the BO to become purgeable if all remaining VMAs
+ * are DONTNEED, or require transition to WILLNEED if no VMAs remain.
+ *
+ * Called from VMA destruction path with BO dma-resv lock held.
+ */
+void xe_bo_recheck_purgeable_on_vma_unbind(struct xe_bo *bo)
+{
+ int current_state;
+
+ if (!bo)
+ return;
+
+ dma_resv_assert_held(bo->ttm.base.resv);
+
+ current_state = atomic_read(&bo->madv_purgeable);
+
+ /*
+ * Once purged, always purged. Cannot transition back to WILLNEED.
+ * This matches i915 semantics where purged BOs are permanently invalid.
+ */
+ if (current_state == XE_MADV_PURGEABLE_PURGED)
+ return;
+
+ if (xe_bo_all_vmas_dontneed(bo)) {
+ /* All VMAs are DONTNEED - mark BO purgeable */
+ if (current_state != XE_MADV_PURGEABLE_DONTNEED)
+ atomic_set(&bo->madv_purgeable, XE_MADV_PURGEABLE_DONTNEED);
+ } else {
+ /* At least one VMA is WILLNEED - BO must not be purgeable */
+ if (current_state != XE_MADV_PURGEABLE_WILLNEED)
+ atomic_set(&bo->madv_purgeable, XE_MADV_PURGEABLE_WILLNEED);
+ }
+}
+
/*
* Handle purgeable buffer object advice for DONTNEED/WILLNEED/PURGED.
* Returns true if any BO was purged, false otherwise.
@@ -181,6 +260,10 @@ static bool xe_vm_madvise_purgeable_bo(struct xe_device *xe, struct xe_vm *vm,
/* BO must be locked before modifying madv state */
xe_bo_assert_held(bo);
+ /* Skip external dma-bufs */
+ if (xe_bo_is_external_dmabuf(bo))
+ continue;
+
/*
* Once purged, always purged. Cannot transition back to WILLNEED.
* This matches i915 semantics where purged BOs are permanently invalid.
@@ -192,10 +275,16 @@ static bool xe_vm_madvise_purgeable_bo(struct xe_device *xe, struct xe_vm *vm,
switch (op->purge_state_val.val) {
case DRM_XE_VMA_PURGEABLE_STATE_WILLNEED:
+ vmas[i]->purgeable_state = XE_MADV_PURGEABLE_WILLNEED;
+ /* Mark VMA WILLNEED - BO becomes non-purgeable immediately */
atomic_set(&bo->madv_purgeable, XE_MADV_PURGEABLE_WILLNEED);
break;
case DRM_XE_VMA_PURGEABLE_STATE_DONTNEED:
- atomic_set(&bo->madv_purgeable, XE_MADV_PURGEABLE_DONTNEED);
+ vmas[i]->purgeable_state = XE_MADV_PURGEABLE_DONTNEED;
+
+ /* Mark BO purgeable only if all VMAs are DONTNEED */
+ if (xe_bo_all_vmas_dontneed(bo))
+ atomic_set(&bo->madv_purgeable, XE_MADV_PURGEABLE_DONTNEED);
break;
default:
drm_warn(&vm->xe->drm, "Invalid madvice value = %d\n",
diff --git a/drivers/gpu/drm/xe/xe_vm_madvise.h b/drivers/gpu/drm/xe/xe_vm_madvise.h
index b0e1fc445f23..61868f851949 100644
--- a/drivers/gpu/drm/xe/xe_vm_madvise.h
+++ b/drivers/gpu/drm/xe/xe_vm_madvise.h
@@ -8,8 +8,11 @@
struct drm_device;
struct drm_file;
+struct xe_bo;
int xe_vm_madvise_ioctl(struct drm_device *dev, void *data,
struct drm_file *file);
+void xe_bo_recheck_purgeable_on_vma_unbind(struct xe_bo *bo);
+
#endif
diff --git a/drivers/gpu/drm/xe/xe_vm_types.h b/drivers/gpu/drm/xe/xe_vm_types.h
index 3bf912bfbdcc..ad16fb147da6 100644
--- a/drivers/gpu/drm/xe/xe_vm_types.h
+++ b/drivers/gpu/drm/xe/xe_vm_types.h
@@ -140,6 +140,17 @@ struct xe_vma {
*/
bool skip_invalidation;
+ /**
+ * @purgeable_state: Purgeable hint for this VMA mapping
+ *
+ * Per-VMA purgeable state from madvise. Valid states are WILLNEED (0)
+ * or DONTNEED (1). Shared BOs require all VMAs to be DONTNEED before
+ * the BO can be purged. PURGED state exists only at BO level.
+ *
+ * Protected by BO dma-resv lock. Set via DRM_IOCTL_XE_MADVISE.
+ */
+ u32 purgeable_state;
+
/**
* @ufence: The user fence that was provided with MAP.
* Needs to be signalled before UNMAP can be processed.
--
2.43.0
^ permalink raw reply related [flat|nested] 18+ messages in thread* [RFC v3 7/8] drm/xe/madvise: Block imported and exported dma-bufs
2025-12-10 4:30 [RFC v3 0/8] drm/xe/madvise: Add support for purgeable buffer objects Arvind Yadav
` (5 preceding siblings ...)
2025-12-10 4:30 ` [RFC v3 6/8] drm/xe/madvise: Implement per-VMA purgeable state tracking Arvind Yadav
@ 2025-12-10 4:30 ` Arvind Yadav
2025-12-10 4:30 ` [RFC v3 8/8] drm/xe/bo: Add purgeable shrinker state helpers Arvind Yadav
` (4 subsequent siblings)
11 siblings, 0 replies; 18+ messages in thread
From: Arvind Yadav @ 2025-12-10 4:30 UTC (permalink / raw)
To: intel-xe
Cc: matthew.brost, himal.prasad.ghimiray, thomas.hellstrom,
pallavi.mishra
Prevent marking imported or exported dma-bufs as purgeable.
External devices may be accessing these buffers without our
knowledge, making purging unsafe.
Check drm_gem_is_imported() for buffers created by other
drivers and obj->dma_buf for buffers exported to other
drivers. Silently skip these BOs during madvise processing.
This follows drm_gem_shmem's purgeable implementation and
prevents data corruption from purging actively-used shared
buffers.
v3:
- Addresses review feedback from Matt Roper about handling
imported/exported BOs correctly in the purgeable BO
implementation.
Cc: Matthew Brost <matthew.brost@intel.com>
Cc: Thomas Hellström <thomas.hellstrom@linux.intel.com>
Cc: Himal Prasad Ghimiray <himal.prasad.ghimiray@intel.com>
Signed-off-by: Arvind Yadav <arvind.yadav@intel.com>
---
drivers/gpu/drm/xe/xe_vm_madvise.c | 29 +++++++++++++++++++++++++++++
1 file changed, 29 insertions(+)
diff --git a/drivers/gpu/drm/xe/xe_vm_madvise.c b/drivers/gpu/drm/xe/xe_vm_madvise.c
index 9f2d6c1d3062..868be570664d 100644
--- a/drivers/gpu/drm/xe/xe_vm_madvise.c
+++ b/drivers/gpu/drm/xe/xe_vm_madvise.c
@@ -159,6 +159,31 @@ static void madvise_pat_index(struct xe_device *xe, struct xe_vm *vm,
}
}
+/**
+ * xe_bo_is_external_dmabuf() - Check if BO is imported or exported dma-buf
+ * @bo: Buffer object
+ *
+ * Prevent marking imported or exported dma-bufs as purgeable.
+ * External devices may be accessing these buffers without our
+ * knowledge, making purging unsafe.
+ *
+ * Return: true if BO is imported or exported, false otherwise
+ */
+static bool xe_bo_is_external_dmabuf(struct xe_bo *bo)
+{
+ struct drm_gem_object *obj = &bo->ttm.base;
+
+ /* Imported from another driver */
+ if (drm_gem_is_imported(obj))
+ return true;
+
+ /* Exported to another driver */
+ if (obj->dma_buf)
+ return true;
+
+ return false;
+}
+
/**
* xe_bo_all_vmas_dontneed() - Check if all VMAs of a BO are marked DONTNEED
* @bo: Buffer object
@@ -179,6 +204,10 @@ static bool xe_bo_all_vmas_dontneed(struct xe_bo *bo)
dma_resv_assert_held(bo->ttm.base.resv);
+ /* External dma-bufs cannot be purgeable */
+ if (xe_bo_is_external_dmabuf(bo))
+ return false;
+
drm_gem_for_each_gpuvm_bo(vm_bo, obj) {
drm_gpuvm_bo_for_each_va(gpuva, vm_bo) {
struct xe_vma *vma = gpuva_to_vma(gpuva);
--
2.43.0
^ permalink raw reply related [flat|nested] 18+ messages in thread* [RFC v3 8/8] drm/xe/bo: Add purgeable shrinker state helpers
2025-12-10 4:30 [RFC v3 0/8] drm/xe/madvise: Add support for purgeable buffer objects Arvind Yadav
` (6 preceding siblings ...)
2025-12-10 4:30 ` [RFC v3 7/8] drm/xe/madvise: Block imported and exported dma-bufs Arvind Yadav
@ 2025-12-10 4:30 ` Arvind Yadav
2025-12-11 7:22 ` ✗ CI.checkpatch: warning for drm/xe/madvise: Add support for purgeable buffer objects (rev4) Patchwork
` (3 subsequent siblings)
11 siblings, 0 replies; 18+ messages in thread
From: Arvind Yadav @ 2025-12-10 4:30 UTC (permalink / raw)
To: intel-xe
Cc: matthew.brost, himal.prasad.ghimiray, thomas.hellstrom,
pallavi.mishra
Encapsulate TTM purgeable flag updates and shrinker page accounting
into helper functions. This prevents desynchronization between the
TTM tt->purgeable flag and the shrinker's page bucket counters.
Without these helpers, direct manipulation of xe_ttm_tt->purgeable
risks forgetting to update the corresponding shrinker counters,
leading to incorrect memory pressure calculations.
Add xe_bo_set_purgeable_shrinker() and xe_bo_clear_purgeable_shrinker()
which atomically update both the TTM flag and transfer pages between
the shrinkable and purgeable buckets.
Cc: Matthew Brost <matthew.brost@intel.com>
Cc: Thomas Hellström <thomas.hellstrom@linux.intel.com>
Cc: Himal Prasad Ghimiray <himal.prasad.ghimiray@intel.com>
Signed-off-by: Arvind Yadav <arvind.yadav@intel.com>
---
drivers/gpu/drm/xe/xe_bo.c | 60 ++++++++++++++++++++++++++++++
drivers/gpu/drm/xe/xe_bo.h | 3 ++
drivers/gpu/drm/xe/xe_vm_madvise.c | 13 +++++--
3 files changed, 73 insertions(+), 3 deletions(-)
diff --git a/drivers/gpu/drm/xe/xe_bo.c b/drivers/gpu/drm/xe/xe_bo.c
index 31b2fa490440..fa29e4951af5 100644
--- a/drivers/gpu/drm/xe/xe_bo.c
+++ b/drivers/gpu/drm/xe/xe_bo.c
@@ -843,6 +843,66 @@ static void xe_bo_set_purged(struct xe_bo *bo)
atomic_set(&bo->madv_purgeable, XE_MADV_PURGEABLE_PURGED);
}
+/**
+ * xe_bo_set_purgeable_shrinker() - Mark BO purgeable and update shrinker
+ * @bo: Buffer object
+ *
+ * Transfers pages from shrinkable to purgeable bucket. Shrinker can now
+ * discard pages immediately without swapping. Caller holds BO lock.
+ */
+void xe_bo_set_purgeable_shrinker(struct xe_bo *bo)
+{
+ struct ttm_buffer_object *ttm_bo = &bo->ttm;
+ struct ttm_tt *tt = ttm_bo->ttm;
+ struct xe_device *xe = ttm_to_xe_device(ttm_bo->bdev);
+ struct xe_ttm_tt *xe_tt;
+
+ xe_bo_assert_held(bo);
+
+ if (!tt || !ttm_tt_is_populated(tt))
+ return;
+
+ xe_tt = container_of(tt, struct xe_ttm_tt, ttm);
+
+ if (!xe_tt->purgeable) {
+ xe_tt->purgeable = true;
+ /* Transfer pages from shrinkable to purgeable count */
+ xe_shrinker_mod_pages(xe->mem.shrinker,
+ -(long)tt->num_pages,
+ tt->num_pages);
+ }
+}
+
+/**
+ * xe_bo_clear_purgeable_shrinker() - Mark BO non-purgeable and update shrinker
+ * @bo: Buffer object
+ *
+ * Transfers pages from purgeable to shrinkable bucket. Shrinker must now
+ * swap pages instead of discarding. Caller holds BO lock.
+ */
+void xe_bo_clear_purgeable_shrinker(struct xe_bo *bo)
+{
+ struct ttm_buffer_object *ttm_bo = &bo->ttm;
+ struct ttm_tt *tt = ttm_bo->ttm;
+ struct xe_device *xe = ttm_to_xe_device(ttm_bo->bdev);
+ struct xe_ttm_tt *xe_tt;
+
+ xe_bo_assert_held(bo);
+
+ if (!tt || !ttm_tt_is_populated(tt))
+ return;
+
+ xe_tt = container_of(tt, struct xe_ttm_tt, ttm);
+
+ if (xe_tt->purgeable) {
+ xe_tt->purgeable = false;
+ /* Transfer pages from purgeable to shrinkable count */
+ xe_shrinker_mod_pages(xe->mem.shrinker,
+ tt->num_pages,
+ -(long)tt->num_pages);
+ }
+}
+
/**
* xe_ttm_bo_purge() - Purge buffer object backing store
* @ttm_bo: The TTM buffer object to purge
diff --git a/drivers/gpu/drm/xe/xe_bo.h b/drivers/gpu/drm/xe/xe_bo.h
index 1090a60f6ef6..9c5ccd03af7b 100644
--- a/drivers/gpu/drm/xe/xe_bo.h
+++ b/drivers/gpu/drm/xe/xe_bo.h
@@ -270,6 +270,9 @@ static inline bool xe_bo_madv_is_dontneed(struct xe_bo *bo)
return atomic_read(&bo->madv_purgeable) == XE_MADV_PURGEABLE_DONTNEED;
}
+void xe_bo_set_purgeable_shrinker(struct xe_bo *bo);
+void xe_bo_clear_purgeable_shrinker(struct xe_bo *bo);
+
static inline void xe_bo_unpin_map_no_vm(struct xe_bo *bo)
{
if (likely(bo)) {
diff --git a/drivers/gpu/drm/xe/xe_vm_madvise.c b/drivers/gpu/drm/xe/xe_vm_madvise.c
index 868be570664d..cdbbdfda5928 100644
--- a/drivers/gpu/drm/xe/xe_vm_madvise.c
+++ b/drivers/gpu/drm/xe/xe_vm_madvise.c
@@ -257,12 +257,16 @@ void xe_bo_recheck_purgeable_on_vma_unbind(struct xe_bo *bo)
if (xe_bo_all_vmas_dontneed(bo)) {
/* All VMAs are DONTNEED - mark BO purgeable */
- if (current_state != XE_MADV_PURGEABLE_DONTNEED)
+ if (current_state != XE_MADV_PURGEABLE_DONTNEED) {
atomic_set(&bo->madv_purgeable, XE_MADV_PURGEABLE_DONTNEED);
+ xe_bo_set_purgeable_shrinker(bo);
+ }
} else {
/* At least one VMA is WILLNEED - BO must not be purgeable */
- if (current_state != XE_MADV_PURGEABLE_WILLNEED)
+ if (current_state != XE_MADV_PURGEABLE_WILLNEED) {
atomic_set(&bo->madv_purgeable, XE_MADV_PURGEABLE_WILLNEED);
+ xe_bo_clear_purgeable_shrinker(bo);
+ }
}
}
@@ -307,13 +311,16 @@ static bool xe_vm_madvise_purgeable_bo(struct xe_device *xe, struct xe_vm *vm,
vmas[i]->purgeable_state = XE_MADV_PURGEABLE_WILLNEED;
/* Mark VMA WILLNEED - BO becomes non-purgeable immediately */
atomic_set(&bo->madv_purgeable, XE_MADV_PURGEABLE_WILLNEED);
+ xe_bo_clear_purgeable_shrinker(bo);
break;
case DRM_XE_VMA_PURGEABLE_STATE_DONTNEED:
vmas[i]->purgeable_state = XE_MADV_PURGEABLE_DONTNEED;
/* Mark BO purgeable only if all VMAs are DONTNEED */
- if (xe_bo_all_vmas_dontneed(bo))
+ if (xe_bo_all_vmas_dontneed(bo)) {
atomic_set(&bo->madv_purgeable, XE_MADV_PURGEABLE_DONTNEED);
+ xe_bo_set_purgeable_shrinker(bo);
+ }
break;
default:
drm_warn(&vm->xe->drm, "Invalid madvice value = %d\n",
--
2.43.0
^ permalink raw reply related [flat|nested] 18+ messages in thread* ✗ CI.checkpatch: warning for drm/xe/madvise: Add support for purgeable buffer objects (rev4)
2025-12-10 4:30 [RFC v3 0/8] drm/xe/madvise: Add support for purgeable buffer objects Arvind Yadav
` (7 preceding siblings ...)
2025-12-10 4:30 ` [RFC v3 8/8] drm/xe/bo: Add purgeable shrinker state helpers Arvind Yadav
@ 2025-12-11 7:22 ` Patchwork
2025-12-11 7:24 ` ✓ CI.KUnit: success " Patchwork
` (2 subsequent siblings)
11 siblings, 0 replies; 18+ messages in thread
From: Patchwork @ 2025-12-11 7:22 UTC (permalink / raw)
To: Yadav, Arvind; +Cc: intel-xe
== Series Details ==
Series: drm/xe/madvise: Add support for purgeable buffer objects (rev4)
URL : https://patchwork.freedesktop.org/series/156651/
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
8f50e69d0ce3656564bbdf8b3e213d61470d463f
+ cd /kernel
+ git config --global --add safe.directory /kernel
+ git log -n1
commit 4ba26a8e203683832061dd7bd9bc38c4593a7870
Author: Arvind Yadav <arvind.yadav@intel.com>
Date: Wed Dec 10 10:00:52 2025 +0530
drm/xe/bo: Add purgeable shrinker state helpers
Encapsulate TTM purgeable flag updates and shrinker page accounting
into helper functions. This prevents desynchronization between the
TTM tt->purgeable flag and the shrinker's page bucket counters.
Without these helpers, direct manipulation of xe_ttm_tt->purgeable
risks forgetting to update the corresponding shrinker counters,
leading to incorrect memory pressure calculations.
Add xe_bo_set_purgeable_shrinker() and xe_bo_clear_purgeable_shrinker()
which atomically update both the TTM flag and transfer pages between
the shrinkable and purgeable buckets.
Cc: Matthew Brost <matthew.brost@intel.com>
Cc: Thomas Hellström <thomas.hellstrom@linux.intel.com>
Cc: Himal Prasad Ghimiray <himal.prasad.ghimiray@intel.com>
Signed-off-by: Arvind Yadav <arvind.yadav@intel.com>
+ /mt/dim checkpatch 3adb3f4aa5a8563ee9c1f6e137827b740e3ab40b drm-intel
ef59c3b12022 drm/xe/uapi: Add UAPI support for purgeable buffer objects
8710cd9c15bc drm/xe/bo: Add purgeable bo state tracking and field madv to xe_bo
7decbda5c7e5 drm/xe/madvise: Implement purgeable buffer object support
-:23: WARNING:COMMIT_LOG_LONG_LINE: Prefer a maximum 75 chars per line (possible unwrapped commit description?)
#23:
- Async TLB invalidation via trigger_rebind (no blocking xe_vm_invalidate_vma)
-:357: CHECK:UNNECESSARY_PARENTHESES: Unnecessary parentheses around 'val == DRM_XE_VMA_PURGEABLE_STATE_WILLNEED'
#357: FILE: drivers/gpu/drm/xe/xe_vm_madvise.c:340:
+ if (XE_IOCTL_DBG(xe, !((val == DRM_XE_VMA_PURGEABLE_STATE_WILLNEED) ||
+ (val == DRM_XE_VMA_PURGEABLE_STATE_DONTNEED))))
-:357: CHECK:UNNECESSARY_PARENTHESES: Unnecessary parentheses around 'val == DRM_XE_VMA_PURGEABLE_STATE_DONTNEED'
#357: FILE: drivers/gpu/drm/xe/xe_vm_madvise.c:340:
+ if (XE_IOCTL_DBG(xe, !((val == DRM_XE_VMA_PURGEABLE_STATE_WILLNEED) ||
+ (val == DRM_XE_VMA_PURGEABLE_STATE_DONTNEED))))
total: 0 errors, 1 warnings, 2 checks, 315 lines checked
080a00ece6b3 drm/xe/bo: Handle CPU faults on purged buffer objects
e7e44cbd9d8b drm/xe/vm: Prevent binding of purged buffer objects
53b6df4572c0 drm/xe/madvise: Implement per-VMA purgeable state tracking
f7d70b95ee78 drm/xe/madvise: Block imported and exported dma-bufs
4ba26a8e2036 drm/xe/bo: Add purgeable shrinker state helpers
^ permalink raw reply [flat|nested] 18+ messages in thread* ✓ CI.KUnit: success for drm/xe/madvise: Add support for purgeable buffer objects (rev4)
2025-12-10 4:30 [RFC v3 0/8] drm/xe/madvise: Add support for purgeable buffer objects Arvind Yadav
` (8 preceding siblings ...)
2025-12-11 7:22 ` ✗ CI.checkpatch: warning for drm/xe/madvise: Add support for purgeable buffer objects (rev4) Patchwork
@ 2025-12-11 7:24 ` Patchwork
2025-12-11 7:57 ` ✓ Xe.CI.BAT: " Patchwork
2025-12-11 14:56 ` ✗ Xe.CI.Full: failure " Patchwork
11 siblings, 0 replies; 18+ messages in thread
From: Patchwork @ 2025-12-11 7:24 UTC (permalink / raw)
To: Yadav, Arvind; +Cc: intel-xe
== Series Details ==
Series: drm/xe/madvise: Add support for purgeable buffer objects (rev4)
URL : https://patchwork.freedesktop.org/series/156651/
State : success
== Summary ==
+ trap cleanup EXIT
+ /kernel/tools/testing/kunit/kunit.py run --kunitconfig /kernel/drivers/gpu/drm/xe/.kunitconfig
[07:22:51] Configuring KUnit Kernel ...
Generating .config ...
Populating config with:
$ make ARCH=um O=.kunit olddefconfig
[07:22: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
[07:23:26] Starting KUnit Kernel (1/1)...
[07:23:26] ============================================================
Running tests with:
$ .kunit/linux kunit.enable=1 mem=1G console=tty kunit_shutdown=halt
[07:23:26] ================== guc_buf (11 subtests) ===================
[07:23:26] [PASSED] test_smallest
[07:23:26] [PASSED] test_largest
[07:23:26] [PASSED] test_granular
[07:23:26] [PASSED] test_unique
[07:23:26] [PASSED] test_overlap
[07:23:26] [PASSED] test_reusable
[07:23:26] [PASSED] test_too_big
[07:23:26] [PASSED] test_flush
[07:23:26] [PASSED] test_lookup
[07:23:26] [PASSED] test_data
[07:23:26] [PASSED] test_class
[07:23:26] ===================== [PASSED] guc_buf =====================
[07:23:26] =================== guc_dbm (7 subtests) ===================
[07:23:26] [PASSED] test_empty
[07:23:26] [PASSED] test_default
[07:23:26] ======================== test_size ========================
[07:23:26] [PASSED] 4
[07:23:26] [PASSED] 8
[07:23:26] [PASSED] 32
[07:23:26] [PASSED] 256
[07:23:26] ==================== [PASSED] test_size ====================
[07:23:26] ======================= test_reuse ========================
[07:23:26] [PASSED] 4
[07:23:26] [PASSED] 8
[07:23:26] [PASSED] 32
[07:23:26] [PASSED] 256
[07:23:26] =================== [PASSED] test_reuse ====================
[07:23:26] =================== test_range_overlap ====================
[07:23:26] [PASSED] 4
[07:23:26] [PASSED] 8
[07:23:26] [PASSED] 32
[07:23:26] [PASSED] 256
[07:23:26] =============== [PASSED] test_range_overlap ================
[07:23:26] =================== test_range_compact ====================
[07:23:26] [PASSED] 4
[07:23:26] [PASSED] 8
[07:23:26] [PASSED] 32
[07:23:26] [PASSED] 256
[07:23:26] =============== [PASSED] test_range_compact ================
[07:23:26] ==================== test_range_spare =====================
[07:23:26] [PASSED] 4
[07:23:26] [PASSED] 8
[07:23:26] [PASSED] 32
[07:23:26] [PASSED] 256
[07:23:26] ================ [PASSED] test_range_spare =================
[07:23:26] ===================== [PASSED] guc_dbm =====================
[07:23:26] =================== guc_idm (6 subtests) ===================
[07:23:26] [PASSED] bad_init
[07:23:26] [PASSED] no_init
[07:23:26] [PASSED] init_fini
[07:23:26] [PASSED] check_used
[07:23:26] [PASSED] check_quota
[07:23:26] [PASSED] check_all
[07:23:26] ===================== [PASSED] guc_idm =====================
[07:23:26] ================== no_relay (3 subtests) ===================
[07:23:26] [PASSED] xe_drops_guc2pf_if_not_ready
[07:23:26] [PASSED] xe_drops_guc2vf_if_not_ready
[07:23:26] [PASSED] xe_rejects_send_if_not_ready
[07:23:26] ==================== [PASSED] no_relay =====================
[07:23:26] ================== pf_relay (14 subtests) ==================
[07:23:26] [PASSED] pf_rejects_guc2pf_too_short
[07:23:26] [PASSED] pf_rejects_guc2pf_too_long
[07:23:26] [PASSED] pf_rejects_guc2pf_no_payload
[07:23:26] [PASSED] pf_fails_no_payload
[07:23:26] [PASSED] pf_fails_bad_origin
[07:23:26] [PASSED] pf_fails_bad_type
[07:23:26] [PASSED] pf_txn_reports_error
[07:23:26] [PASSED] pf_txn_sends_pf2guc
[07:23:26] [PASSED] pf_sends_pf2guc
[07:23:26] [SKIPPED] pf_loopback_nop
[07:23:26] [SKIPPED] pf_loopback_echo
[07:23:26] [SKIPPED] pf_loopback_fail
[07:23:26] [SKIPPED] pf_loopback_busy
[07:23:26] [SKIPPED] pf_loopback_retry
[07:23:26] ==================== [PASSED] pf_relay =====================
[07:23:26] ================== vf_relay (3 subtests) ===================
[07:23:26] [PASSED] vf_rejects_guc2vf_too_short
[07:23:26] [PASSED] vf_rejects_guc2vf_too_long
[07:23:26] [PASSED] vf_rejects_guc2vf_no_payload
[07:23:26] ==================== [PASSED] vf_relay =====================
[07:23:26] ================ pf_gt_config (6 subtests) =================
[07:23:26] [PASSED] fair_contexts_1vf
[07:23:26] [PASSED] fair_doorbells_1vf
[07:23:26] [PASSED] fair_ggtt_1vf
[07:23:26] ====================== fair_contexts ======================
[07:23:26] [PASSED] 1 VF
[07:23:26] [PASSED] 2 VFs
[07:23:26] [PASSED] 3 VFs
[07:23:26] [PASSED] 4 VFs
[07:23:26] [PASSED] 5 VFs
[07:23:26] [PASSED] 6 VFs
[07:23:26] [PASSED] 7 VFs
[07:23:26] [PASSED] 8 VFs
[07:23:26] [PASSED] 9 VFs
[07:23:26] [PASSED] 10 VFs
[07:23:26] [PASSED] 11 VFs
[07:23:26] [PASSED] 12 VFs
[07:23:26] [PASSED] 13 VFs
[07:23:26] [PASSED] 14 VFs
[07:23:26] [PASSED] 15 VFs
[07:23:26] [PASSED] 16 VFs
[07:23:26] [PASSED] 17 VFs
[07:23:26] [PASSED] 18 VFs
[07:23:26] [PASSED] 19 VFs
[07:23:26] [PASSED] 20 VFs
[07:23:26] [PASSED] 21 VFs
[07:23:26] [PASSED] 22 VFs
[07:23:26] [PASSED] 23 VFs
[07:23:26] [PASSED] 24 VFs
[07:23:26] [PASSED] 25 VFs
[07:23:26] [PASSED] 26 VFs
[07:23:26] [PASSED] 27 VFs
[07:23:26] [PASSED] 28 VFs
[07:23:26] [PASSED] 29 VFs
[07:23:26] [PASSED] 30 VFs
[07:23:26] [PASSED] 31 VFs
[07:23:26] [PASSED] 32 VFs
[07:23:26] [PASSED] 33 VFs
[07:23:26] [PASSED] 34 VFs
[07:23:26] [PASSED] 35 VFs
[07:23:26] [PASSED] 36 VFs
[07:23:26] [PASSED] 37 VFs
[07:23:26] [PASSED] 38 VFs
[07:23:26] [PASSED] 39 VFs
[07:23:26] [PASSED] 40 VFs
[07:23:26] [PASSED] 41 VFs
[07:23:26] [PASSED] 42 VFs
[07:23:26] [PASSED] 43 VFs
[07:23:26] [PASSED] 44 VFs
[07:23:26] [PASSED] 45 VFs
[07:23:26] [PASSED] 46 VFs
[07:23:26] [PASSED] 47 VFs
[07:23:26] [PASSED] 48 VFs
[07:23:26] [PASSED] 49 VFs
[07:23:26] [PASSED] 50 VFs
[07:23:26] [PASSED] 51 VFs
[07:23:26] [PASSED] 52 VFs
[07:23:26] [PASSED] 53 VFs
[07:23:26] [PASSED] 54 VFs
[07:23:26] [PASSED] 55 VFs
[07:23:26] [PASSED] 56 VFs
[07:23:26] [PASSED] 57 VFs
[07:23:26] [PASSED] 58 VFs
[07:23:26] [PASSED] 59 VFs
[07:23:26] [PASSED] 60 VFs
[07:23:26] [PASSED] 61 VFs
[07:23:26] [PASSED] 62 VFs
[07:23:26] [PASSED] 63 VFs
[07:23:26] ================== [PASSED] fair_contexts ==================
[07:23:26] ===================== fair_doorbells ======================
[07:23:26] [PASSED] 1 VF
[07:23:26] [PASSED] 2 VFs
[07:23:26] [PASSED] 3 VFs
[07:23:26] [PASSED] 4 VFs
[07:23:26] [PASSED] 5 VFs
[07:23:26] [PASSED] 6 VFs
[07:23:26] [PASSED] 7 VFs
[07:23:26] [PASSED] 8 VFs
[07:23:26] [PASSED] 9 VFs
[07:23:26] [PASSED] 10 VFs
[07:23:26] [PASSED] 11 VFs
[07:23:26] [PASSED] 12 VFs
[07:23:26] [PASSED] 13 VFs
[07:23:26] [PASSED] 14 VFs
[07:23:26] [PASSED] 15 VFs
[07:23:26] [PASSED] 16 VFs
[07:23:26] [PASSED] 17 VFs
[07:23:26] [PASSED] 18 VFs
[07:23:26] [PASSED] 19 VFs
[07:23:26] [PASSED] 20 VFs
[07:23:26] [PASSED] 21 VFs
[07:23:26] [PASSED] 22 VFs
[07:23:26] [PASSED] 23 VFs
[07:23:26] [PASSED] 24 VFs
[07:23:26] [PASSED] 25 VFs
[07:23:26] [PASSED] 26 VFs
[07:23:26] [PASSED] 27 VFs
[07:23:26] [PASSED] 28 VFs
[07:23:26] [PASSED] 29 VFs
[07:23:26] [PASSED] 30 VFs
[07:23:26] [PASSED] 31 VFs
[07:23:26] [PASSED] 32 VFs
[07:23:26] [PASSED] 33 VFs
[07:23:26] [PASSED] 34 VFs
[07:23:26] [PASSED] 35 VFs
[07:23:26] [PASSED] 36 VFs
[07:23:26] [PASSED] 37 VFs
[07:23:26] [PASSED] 38 VFs
[07:23:26] [PASSED] 39 VFs
[07:23:26] [PASSED] 40 VFs
[07:23:26] [PASSED] 41 VFs
[07:23:26] [PASSED] 42 VFs
[07:23:26] [PASSED] 43 VFs
[07:23:26] [PASSED] 44 VFs
[07:23:26] [PASSED] 45 VFs
[07:23:26] [PASSED] 46 VFs
[07:23:26] [PASSED] 47 VFs
[07:23:26] [PASSED] 48 VFs
[07:23:26] [PASSED] 49 VFs
[07:23:26] [PASSED] 50 VFs
[07:23:26] [PASSED] 51 VFs
[07:23:26] [PASSED] 52 VFs
[07:23:26] [PASSED] 53 VFs
[07:23:26] [PASSED] 54 VFs
[07:23:26] [PASSED] 55 VFs
[07:23:26] [PASSED] 56 VFs
[07:23:26] [PASSED] 57 VFs
[07:23:26] [PASSED] 58 VFs
[07:23:26] [PASSED] 59 VFs
[07:23:26] [PASSED] 60 VFs
[07:23:26] [PASSED] 61 VFs
[07:23:26] [PASSED] 62 VFs
[07:23:26] [PASSED] 63 VFs
[07:23:26] ================= [PASSED] fair_doorbells ==================
[07:23:26] ======================== fair_ggtt ========================
[07:23:26] [PASSED] 1 VF
[07:23:26] [PASSED] 2 VFs
[07:23:26] [PASSED] 3 VFs
[07:23:26] [PASSED] 4 VFs
[07:23:26] [PASSED] 5 VFs
[07:23:26] [PASSED] 6 VFs
[07:23:26] [PASSED] 7 VFs
[07:23:26] [PASSED] 8 VFs
[07:23:26] [PASSED] 9 VFs
[07:23:26] [PASSED] 10 VFs
[07:23:26] [PASSED] 11 VFs
[07:23:26] [PASSED] 12 VFs
[07:23:26] [PASSED] 13 VFs
[07:23:26] [PASSED] 14 VFs
[07:23:26] [PASSED] 15 VFs
[07:23:26] [PASSED] 16 VFs
[07:23:26] [PASSED] 17 VFs
[07:23:26] [PASSED] 18 VFs
[07:23:26] [PASSED] 19 VFs
[07:23:26] [PASSED] 20 VFs
[07:23:26] [PASSED] 21 VFs
[07:23:26] [PASSED] 22 VFs
[07:23:26] [PASSED] 23 VFs
[07:23:26] [PASSED] 24 VFs
[07:23:26] [PASSED] 25 VFs
[07:23:26] [PASSED] 26 VFs
[07:23:26] [PASSED] 27 VFs
[07:23:26] [PASSED] 28 VFs
[07:23:26] [PASSED] 29 VFs
[07:23:26] [PASSED] 30 VFs
[07:23:26] [PASSED] 31 VFs
[07:23:26] [PASSED] 32 VFs
[07:23:26] [PASSED] 33 VFs
[07:23:26] [PASSED] 34 VFs
[07:23:26] [PASSED] 35 VFs
[07:23:26] [PASSED] 36 VFs
[07:23:26] [PASSED] 37 VFs
[07:23:26] [PASSED] 38 VFs
[07:23:26] [PASSED] 39 VFs
[07:23:26] [PASSED] 40 VFs
[07:23:26] [PASSED] 41 VFs
[07:23:26] [PASSED] 42 VFs
[07:23:26] [PASSED] 43 VFs
[07:23:26] [PASSED] 44 VFs
[07:23:26] [PASSED] 45 VFs
[07:23:26] [PASSED] 46 VFs
[07:23:26] [PASSED] 47 VFs
[07:23:26] [PASSED] 48 VFs
[07:23:26] [PASSED] 49 VFs
[07:23:26] [PASSED] 50 VFs
[07:23:26] [PASSED] 51 VFs
[07:23:26] [PASSED] 52 VFs
[07:23:26] [PASSED] 53 VFs
[07:23:26] [PASSED] 54 VFs
[07:23:26] [PASSED] 55 VFs
[07:23:26] [PASSED] 56 VFs
[07:23:26] [PASSED] 57 VFs
[07:23:26] [PASSED] 58 VFs
[07:23:26] [PASSED] 59 VFs
[07:23:26] [PASSED] 60 VFs
[07:23:26] [PASSED] 61 VFs
[07:23:26] [PASSED] 62 VFs
[07:23:26] [PASSED] 63 VFs
[07:23:26] ==================== [PASSED] fair_ggtt ====================
[07:23:26] ================== [PASSED] pf_gt_config ===================
[07:23:26] ===================== lmtt (1 subtest) =====================
[07:23:26] ======================== test_ops =========================
[07:23:26] [PASSED] 2-level
[07:23:26] [PASSED] multi-level
[07:23:26] ==================== [PASSED] test_ops =====================
[07:23:26] ====================== [PASSED] lmtt =======================
[07:23:26] ================= pf_service (11 subtests) =================
[07:23:26] [PASSED] pf_negotiate_any
[07:23:26] [PASSED] pf_negotiate_base_match
[07:23:26] [PASSED] pf_negotiate_base_newer
[07:23:26] [PASSED] pf_negotiate_base_next
[07:23:26] [SKIPPED] pf_negotiate_base_older
[07:23:26] [PASSED] pf_negotiate_base_prev
[07:23:26] [PASSED] pf_negotiate_latest_match
[07:23:26] [PASSED] pf_negotiate_latest_newer
[07:23:26] [PASSED] pf_negotiate_latest_next
[07:23:26] [SKIPPED] pf_negotiate_latest_older
[07:23:26] [SKIPPED] pf_negotiate_latest_prev
[07:23:26] =================== [PASSED] pf_service ====================
[07:23:26] ================= xe_guc_g2g (2 subtests) ==================
[07:23:26] ============== xe_live_guc_g2g_kunit_default ==============
[07:23:26] ========= [SKIPPED] xe_live_guc_g2g_kunit_default ==========
[07:23:26] ============== xe_live_guc_g2g_kunit_allmem ===============
[07:23:26] ========== [SKIPPED] xe_live_guc_g2g_kunit_allmem ==========
[07:23:26] =================== [SKIPPED] xe_guc_g2g ===================
[07:23:26] =================== xe_mocs (2 subtests) ===================
[07:23:26] ================ xe_live_mocs_kernel_kunit ================
[07:23:26] =========== [SKIPPED] xe_live_mocs_kernel_kunit ============
[07:23:26] ================ xe_live_mocs_reset_kunit =================
[07:23:26] ============ [SKIPPED] xe_live_mocs_reset_kunit ============
[07:23:26] ==================== [SKIPPED] xe_mocs =====================
[07:23:26] ================= xe_migrate (2 subtests) ==================
[07:23:26] ================= xe_migrate_sanity_kunit =================
[07:23:26] ============ [SKIPPED] xe_migrate_sanity_kunit =============
[07:23:26] ================== xe_validate_ccs_kunit ==================
[07:23:26] ============= [SKIPPED] xe_validate_ccs_kunit ==============
[07:23:26] =================== [SKIPPED] xe_migrate ===================
[07:23:26] ================== xe_dma_buf (1 subtest) ==================
[07:23:26] ==================== xe_dma_buf_kunit =====================
[07:23:26] ================ [SKIPPED] xe_dma_buf_kunit ================
[07:23:26] =================== [SKIPPED] xe_dma_buf ===================
[07:23:26] ================= xe_bo_shrink (1 subtest) =================
[07:23:26] =================== xe_bo_shrink_kunit ====================
[07:23:26] =============== [SKIPPED] xe_bo_shrink_kunit ===============
[07:23:26] ================== [SKIPPED] xe_bo_shrink ==================
[07:23:26] ==================== xe_bo (2 subtests) ====================
[07:23:26] ================== xe_ccs_migrate_kunit ===================
[07:23:26] ============== [SKIPPED] xe_ccs_migrate_kunit ==============
[07:23:26] ==================== xe_bo_evict_kunit ====================
[07:23:26] =============== [SKIPPED] xe_bo_evict_kunit ================
[07:23:26] ===================== [SKIPPED] xe_bo ======================
[07:23:26] ==================== args (11 subtests) ====================
[07:23:26] [PASSED] count_args_test
[07:23:26] [PASSED] call_args_example
[07:23:26] [PASSED] call_args_test
[07:23:26] [PASSED] drop_first_arg_example
[07:23:26] [PASSED] drop_first_arg_test
[07:23:26] [PASSED] first_arg_example
[07:23:26] [PASSED] first_arg_test
[07:23:26] [PASSED] last_arg_example
[07:23:26] [PASSED] last_arg_test
[07:23:26] [PASSED] pick_arg_example
[07:23:26] [PASSED] sep_comma_example
[07:23:26] ====================== [PASSED] args =======================
[07:23:26] =================== xe_pci (3 subtests) ====================
[07:23:26] ==================== check_graphics_ip ====================
[07:23:26] [PASSED] 12.00 Xe_LP
[07:23:26] [PASSED] 12.10 Xe_LP+
[07:23:26] [PASSED] 12.55 Xe_HPG
[07:23:26] [PASSED] 12.60 Xe_HPC
[07:23:26] [PASSED] 12.70 Xe_LPG
[07:23:26] [PASSED] 12.71 Xe_LPG
[07:23:26] [PASSED] 12.74 Xe_LPG+
[07:23:26] [PASSED] 20.01 Xe2_HPG
[07:23:26] [PASSED] 20.02 Xe2_HPG
[07:23:26] [PASSED] 20.04 Xe2_LPG
[07:23:26] [PASSED] 30.00 Xe3_LPG
[07:23:26] [PASSED] 30.01 Xe3_LPG
[07:23:26] [PASSED] 30.03 Xe3_LPG
[07:23:26] [PASSED] 30.04 Xe3_LPG
[07:23:26] [PASSED] 30.05 Xe3_LPG
[07:23:26] [PASSED] 35.11 Xe3p_XPC
[07:23:26] ================ [PASSED] check_graphics_ip ================
[07:23:26] ===================== check_media_ip ======================
[07:23:26] [PASSED] 12.00 Xe_M
[07:23:26] [PASSED] 12.55 Xe_HPM
[07:23:26] [PASSED] 13.00 Xe_LPM+
[07:23:26] [PASSED] 13.01 Xe2_HPM
[07:23:26] [PASSED] 20.00 Xe2_LPM
[07:23:26] [PASSED] 30.00 Xe3_LPM
[07:23:26] [PASSED] 30.02 Xe3_LPM
[07:23:26] [PASSED] 35.00 Xe3p_LPM
[07:23:26] [PASSED] 35.03 Xe3p_HPM
[07:23:26] ================= [PASSED] check_media_ip ==================
[07:23:26] =================== check_platform_desc ===================
[07:23:26] [PASSED] 0x9A60 (TIGERLAKE)
[07:23:26] [PASSED] 0x9A68 (TIGERLAKE)
[07:23:26] [PASSED] 0x9A70 (TIGERLAKE)
[07:23:26] [PASSED] 0x9A40 (TIGERLAKE)
[07:23:26] [PASSED] 0x9A49 (TIGERLAKE)
[07:23:26] [PASSED] 0x9A59 (TIGERLAKE)
[07:23:26] [PASSED] 0x9A78 (TIGERLAKE)
[07:23:26] [PASSED] 0x9AC0 (TIGERLAKE)
[07:23:26] [PASSED] 0x9AC9 (TIGERLAKE)
[07:23:26] [PASSED] 0x9AD9 (TIGERLAKE)
[07:23:26] [PASSED] 0x9AF8 (TIGERLAKE)
[07:23:26] [PASSED] 0x4C80 (ROCKETLAKE)
[07:23:26] [PASSED] 0x4C8A (ROCKETLAKE)
[07:23:26] [PASSED] 0x4C8B (ROCKETLAKE)
[07:23:26] [PASSED] 0x4C8C (ROCKETLAKE)
[07:23:26] [PASSED] 0x4C90 (ROCKETLAKE)
[07:23:26] [PASSED] 0x4C9A (ROCKETLAKE)
[07:23:26] [PASSED] 0x4680 (ALDERLAKE_S)
[07:23:26] [PASSED] 0x4682 (ALDERLAKE_S)
[07:23:26] [PASSED] 0x4688 (ALDERLAKE_S)
[07:23:26] [PASSED] 0x468A (ALDERLAKE_S)
[07:23:26] [PASSED] 0x468B (ALDERLAKE_S)
[07:23:26] [PASSED] 0x4690 (ALDERLAKE_S)
[07:23:26] [PASSED] 0x4692 (ALDERLAKE_S)
[07:23:26] [PASSED] 0x4693 (ALDERLAKE_S)
[07:23:26] [PASSED] 0x46A0 (ALDERLAKE_P)
[07:23:26] [PASSED] 0x46A1 (ALDERLAKE_P)
[07:23:26] [PASSED] 0x46A2 (ALDERLAKE_P)
[07:23:26] [PASSED] 0x46A3 (ALDERLAKE_P)
[07:23:26] [PASSED] 0x46A6 (ALDERLAKE_P)
[07:23:26] [PASSED] 0x46A8 (ALDERLAKE_P)
[07:23:26] [PASSED] 0x46AA (ALDERLAKE_P)
[07:23:26] [PASSED] 0x462A (ALDERLAKE_P)
[07:23:26] [PASSED] 0x4626 (ALDERLAKE_P)
[07:23:26] [PASSED] 0x4628 (ALDERLAKE_P)
[07:23:26] [PASSED] 0x46B0 (ALDERLAKE_P)
stty: 'standard input': Inappropriate ioctl for device
[07:23:26] [PASSED] 0x46B1 (ALDERLAKE_P)
[07:23:26] [PASSED] 0x46B2 (ALDERLAKE_P)
[07:23:26] [PASSED] 0x46B3 (ALDERLAKE_P)
[07:23:26] [PASSED] 0x46C0 (ALDERLAKE_P)
[07:23:26] [PASSED] 0x46C1 (ALDERLAKE_P)
[07:23:26] [PASSED] 0x46C2 (ALDERLAKE_P)
[07:23:26] [PASSED] 0x46C3 (ALDERLAKE_P)
[07:23:26] [PASSED] 0x46D0 (ALDERLAKE_N)
[07:23:26] [PASSED] 0x46D1 (ALDERLAKE_N)
[07:23:26] [PASSED] 0x46D2 (ALDERLAKE_N)
[07:23:26] [PASSED] 0x46D3 (ALDERLAKE_N)
[07:23:26] [PASSED] 0x46D4 (ALDERLAKE_N)
[07:23:26] [PASSED] 0xA721 (ALDERLAKE_P)
[07:23:26] [PASSED] 0xA7A1 (ALDERLAKE_P)
[07:23:26] [PASSED] 0xA7A9 (ALDERLAKE_P)
[07:23:26] [PASSED] 0xA7AC (ALDERLAKE_P)
[07:23:26] [PASSED] 0xA7AD (ALDERLAKE_P)
[07:23:26] [PASSED] 0xA720 (ALDERLAKE_P)
[07:23:26] [PASSED] 0xA7A0 (ALDERLAKE_P)
[07:23:26] [PASSED] 0xA7A8 (ALDERLAKE_P)
[07:23:26] [PASSED] 0xA7AA (ALDERLAKE_P)
[07:23:26] [PASSED] 0xA7AB (ALDERLAKE_P)
[07:23:26] [PASSED] 0xA780 (ALDERLAKE_S)
[07:23:26] [PASSED] 0xA781 (ALDERLAKE_S)
[07:23:26] [PASSED] 0xA782 (ALDERLAKE_S)
[07:23:26] [PASSED] 0xA783 (ALDERLAKE_S)
[07:23:26] [PASSED] 0xA788 (ALDERLAKE_S)
[07:23:26] [PASSED] 0xA789 (ALDERLAKE_S)
[07:23:26] [PASSED] 0xA78A (ALDERLAKE_S)
[07:23:26] [PASSED] 0xA78B (ALDERLAKE_S)
[07:23:26] [PASSED] 0x4905 (DG1)
[07:23:26] [PASSED] 0x4906 (DG1)
[07:23:26] [PASSED] 0x4907 (DG1)
[07:23:26] [PASSED] 0x4908 (DG1)
[07:23:26] [PASSED] 0x4909 (DG1)
[07:23:26] [PASSED] 0x56C0 (DG2)
[07:23:26] [PASSED] 0x56C2 (DG2)
[07:23:26] [PASSED] 0x56C1 (DG2)
[07:23:26] [PASSED] 0x7D51 (METEORLAKE)
[07:23:26] [PASSED] 0x7DD1 (METEORLAKE)
[07:23:26] [PASSED] 0x7D41 (METEORLAKE)
[07:23:26] [PASSED] 0x7D67 (METEORLAKE)
[07:23:26] [PASSED] 0xB640 (METEORLAKE)
[07:23:26] [PASSED] 0x56A0 (DG2)
[07:23:26] [PASSED] 0x56A1 (DG2)
[07:23:26] [PASSED] 0x56A2 (DG2)
[07:23:26] [PASSED] 0x56BE (DG2)
[07:23:26] [PASSED] 0x56BF (DG2)
[07:23:26] [PASSED] 0x5690 (DG2)
[07:23:26] [PASSED] 0x5691 (DG2)
[07:23:26] [PASSED] 0x5692 (DG2)
[07:23:26] [PASSED] 0x56A5 (DG2)
[07:23:26] [PASSED] 0x56A6 (DG2)
[07:23:26] [PASSED] 0x56B0 (DG2)
[07:23:26] [PASSED] 0x56B1 (DG2)
[07:23:26] [PASSED] 0x56BA (DG2)
[07:23:26] [PASSED] 0x56BB (DG2)
[07:23:26] [PASSED] 0x56BC (DG2)
[07:23:26] [PASSED] 0x56BD (DG2)
[07:23:26] [PASSED] 0x5693 (DG2)
[07:23:26] [PASSED] 0x5694 (DG2)
[07:23:26] [PASSED] 0x5695 (DG2)
[07:23:26] [PASSED] 0x56A3 (DG2)
[07:23:26] [PASSED] 0x56A4 (DG2)
[07:23:26] [PASSED] 0x56B2 (DG2)
[07:23:26] [PASSED] 0x56B3 (DG2)
[07:23:26] [PASSED] 0x5696 (DG2)
[07:23:26] [PASSED] 0x5697 (DG2)
[07:23:26] [PASSED] 0xB69 (PVC)
[07:23:26] [PASSED] 0xB6E (PVC)
[07:23:26] [PASSED] 0xBD4 (PVC)
[07:23:26] [PASSED] 0xBD5 (PVC)
[07:23:26] [PASSED] 0xBD6 (PVC)
[07:23:26] [PASSED] 0xBD7 (PVC)
[07:23:26] [PASSED] 0xBD8 (PVC)
[07:23:26] [PASSED] 0xBD9 (PVC)
[07:23:26] [PASSED] 0xBDA (PVC)
[07:23:26] [PASSED] 0xBDB (PVC)
[07:23:26] [PASSED] 0xBE0 (PVC)
[07:23:26] [PASSED] 0xBE1 (PVC)
[07:23:26] [PASSED] 0xBE5 (PVC)
[07:23:26] [PASSED] 0x7D40 (METEORLAKE)
[07:23:26] [PASSED] 0x7D45 (METEORLAKE)
[07:23:26] [PASSED] 0x7D55 (METEORLAKE)
[07:23:26] [PASSED] 0x7D60 (METEORLAKE)
[07:23:26] [PASSED] 0x7DD5 (METEORLAKE)
[07:23:26] [PASSED] 0x6420 (LUNARLAKE)
[07:23:26] [PASSED] 0x64A0 (LUNARLAKE)
[07:23:26] [PASSED] 0x64B0 (LUNARLAKE)
[07:23:26] [PASSED] 0xE202 (BATTLEMAGE)
[07:23:26] [PASSED] 0xE209 (BATTLEMAGE)
[07:23:26] [PASSED] 0xE20B (BATTLEMAGE)
[07:23:26] [PASSED] 0xE20C (BATTLEMAGE)
[07:23:26] [PASSED] 0xE20D (BATTLEMAGE)
[07:23:26] [PASSED] 0xE210 (BATTLEMAGE)
[07:23:26] [PASSED] 0xE211 (BATTLEMAGE)
[07:23:26] [PASSED] 0xE212 (BATTLEMAGE)
[07:23:26] [PASSED] 0xE216 (BATTLEMAGE)
[07:23:26] [PASSED] 0xE220 (BATTLEMAGE)
[07:23:26] [PASSED] 0xE221 (BATTLEMAGE)
[07:23:26] [PASSED] 0xE222 (BATTLEMAGE)
[07:23:26] [PASSED] 0xE223 (BATTLEMAGE)
[07:23:26] [PASSED] 0xB080 (PANTHERLAKE)
[07:23:26] [PASSED] 0xB081 (PANTHERLAKE)
[07:23:26] [PASSED] 0xB082 (PANTHERLAKE)
[07:23:26] [PASSED] 0xB083 (PANTHERLAKE)
[07:23:26] [PASSED] 0xB084 (PANTHERLAKE)
[07:23:26] [PASSED] 0xB085 (PANTHERLAKE)
[07:23:26] [PASSED] 0xB086 (PANTHERLAKE)
[07:23:26] [PASSED] 0xB087 (PANTHERLAKE)
[07:23:26] [PASSED] 0xB08F (PANTHERLAKE)
[07:23:26] [PASSED] 0xB090 (PANTHERLAKE)
[07:23:26] [PASSED] 0xB0A0 (PANTHERLAKE)
[07:23:26] [PASSED] 0xB0B0 (PANTHERLAKE)
[07:23:26] [PASSED] 0xD740 (NOVALAKE_S)
[07:23:26] [PASSED] 0xD741 (NOVALAKE_S)
[07:23:26] [PASSED] 0xD742 (NOVALAKE_S)
[07:23:26] [PASSED] 0xD743 (NOVALAKE_S)
[07:23:26] [PASSED] 0xD744 (NOVALAKE_S)
[07:23:26] [PASSED] 0xD745 (NOVALAKE_S)
[07:23:26] [PASSED] 0x674C (CRESCENTISLAND)
[07:23:26] [PASSED] 0xFD80 (PANTHERLAKE)
[07:23:26] [PASSED] 0xFD81 (PANTHERLAKE)
[07:23:26] =============== [PASSED] check_platform_desc ===============
[07:23:26] ===================== [PASSED] xe_pci ======================
[07:23:26] =================== xe_rtp (2 subtests) ====================
[07:23:26] =============== xe_rtp_process_to_sr_tests ================
[07:23:26] [PASSED] coalesce-same-reg
[07:23:26] [PASSED] no-match-no-add
[07:23:26] [PASSED] match-or
[07:23:26] [PASSED] match-or-xfail
[07:23:26] [PASSED] no-match-no-add-multiple-rules
[07:23:26] [PASSED] two-regs-two-entries
[07:23:26] [PASSED] clr-one-set-other
[07:23:26] [PASSED] set-field
[07:23:26] [PASSED] conflict-duplicate
[07:23:26] [PASSED] conflict-not-disjoint
[07:23:26] [PASSED] conflict-reg-type
[07:23:26] =========== [PASSED] xe_rtp_process_to_sr_tests ============
[07:23:26] ================== xe_rtp_process_tests ===================
[07:23:26] [PASSED] active1
[07:23:26] [PASSED] active2
[07:23:26] [PASSED] active-inactive
[07:23:26] [PASSED] inactive-active
[07:23:26] [PASSED] inactive-1st_or_active-inactive
[07:23:26] [PASSED] inactive-2nd_or_active-inactive
[07:23:26] [PASSED] inactive-last_or_active-inactive
[07:23:26] [PASSED] inactive-no_or_active-inactive
[07:23:26] ============== [PASSED] xe_rtp_process_tests ===============
[07:23:26] ===================== [PASSED] xe_rtp ======================
[07:23:26] ==================== xe_wa (1 subtest) =====================
[07:23:26] ======================== xe_wa_gt =========================
[07:23:26] [PASSED] TIGERLAKE B0
[07:23:26] [PASSED] DG1 A0
[07:23:26] [PASSED] DG1 B0
[07:23:26] [PASSED] ALDERLAKE_S A0
[07:23:26] [PASSED] ALDERLAKE_S B0
[07:23:26] [PASSED] ALDERLAKE_S C0
[07:23:26] [PASSED] ALDERLAKE_S D0
[07:23:26] [PASSED] ALDERLAKE_P A0
[07:23:26] [PASSED] ALDERLAKE_P B0
[07:23:26] [PASSED] ALDERLAKE_P C0
[07:23:26] [PASSED] ALDERLAKE_S RPLS D0
[07:23:26] [PASSED] ALDERLAKE_P RPLU E0
[07:23:26] [PASSED] DG2 G10 C0
[07:23:26] [PASSED] DG2 G11 B1
[07:23:26] [PASSED] DG2 G12 A1
[07:23:26] [PASSED] METEORLAKE 12.70(Xe_LPG) A0 13.00(Xe_LPM+) A0
[07:23:26] [PASSED] METEORLAKE 12.71(Xe_LPG) A0 13.00(Xe_LPM+) A0
[07:23:26] [PASSED] METEORLAKE 12.74(Xe_LPG+) A0 13.00(Xe_LPM+) A0
[07:23:26] [PASSED] LUNARLAKE 20.04(Xe2_LPG) A0 20.00(Xe2_LPM) A0
[07:23:26] [PASSED] LUNARLAKE 20.04(Xe2_LPG) B0 20.00(Xe2_LPM) A0
[07:23:26] [PASSED] BATTLEMAGE 20.01(Xe2_HPG) A0 13.01(Xe2_HPM) A1
[07:23:26] [PASSED] PANTHERLAKE 30.00(Xe3_LPG) A0 30.00(Xe3_LPM) A0
[07:23:26] ==================== [PASSED] xe_wa_gt =====================
[07:23:26] ====================== [PASSED] xe_wa ======================
[07:23:26] ============================================================
[07:23:26] Testing complete. Ran 510 tests: passed: 492, skipped: 18
[07:23:26] Elapsed time: 35.050s total, 4.222s configuring, 30.311s building, 0.480s running
+ /kernel/tools/testing/kunit/kunit.py run --kunitconfig /kernel/drivers/gpu/drm/tests/.kunitconfig
[07:23:27] Configuring KUnit Kernel ...
Regenerating .config ...
Populating config with:
$ make ARCH=um O=.kunit olddefconfig
[07:23:28] 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
[07:23:53] Starting KUnit Kernel (1/1)...
[07:23:53] ============================================================
Running tests with:
$ .kunit/linux kunit.enable=1 mem=1G console=tty kunit_shutdown=halt
[07:23:53] ============ drm_test_pick_cmdline (2 subtests) ============
[07:23:53] [PASSED] drm_test_pick_cmdline_res_1920_1080_60
[07:23:53] =============== drm_test_pick_cmdline_named ===============
[07:23:53] [PASSED] NTSC
[07:23:53] [PASSED] NTSC-J
[07:23:53] [PASSED] PAL
[07:23:53] [PASSED] PAL-M
[07:23:53] =========== [PASSED] drm_test_pick_cmdline_named ===========
[07:23:53] ============== [PASSED] drm_test_pick_cmdline ==============
[07:23:53] == drm_test_atomic_get_connector_for_encoder (1 subtest) ===
[07:23:53] [PASSED] drm_test_drm_atomic_get_connector_for_encoder
[07:23:53] ==== [PASSED] drm_test_atomic_get_connector_for_encoder ====
[07:23:53] =========== drm_validate_clone_mode (2 subtests) ===========
[07:23:53] ============== drm_test_check_in_clone_mode ===============
[07:23:53] [PASSED] in_clone_mode
[07:23:53] [PASSED] not_in_clone_mode
[07:23:53] ========== [PASSED] drm_test_check_in_clone_mode ===========
[07:23:53] =============== drm_test_check_valid_clones ===============
[07:23:53] [PASSED] not_in_clone_mode
[07:23:53] [PASSED] valid_clone
[07:23:53] [PASSED] invalid_clone
[07:23:53] =========== [PASSED] drm_test_check_valid_clones ===========
[07:23:53] ============= [PASSED] drm_validate_clone_mode =============
[07:23:53] ============= drm_validate_modeset (1 subtest) =============
[07:23:53] [PASSED] drm_test_check_connector_changed_modeset
[07:23:53] ============== [PASSED] drm_validate_modeset ===============
[07:23:53] ====== drm_test_bridge_get_current_state (2 subtests) ======
[07:23:53] [PASSED] drm_test_drm_bridge_get_current_state_atomic
[07:23:53] [PASSED] drm_test_drm_bridge_get_current_state_legacy
[07:23:53] ======== [PASSED] drm_test_bridge_get_current_state ========
[07:23:53] ====== drm_test_bridge_helper_reset_crtc (3 subtests) ======
[07:23:53] [PASSED] drm_test_drm_bridge_helper_reset_crtc_atomic
[07:23:53] [PASSED] drm_test_drm_bridge_helper_reset_crtc_atomic_disabled
[07:23:53] [PASSED] drm_test_drm_bridge_helper_reset_crtc_legacy
[07:23:53] ======== [PASSED] drm_test_bridge_helper_reset_crtc ========
[07:23:53] ============== drm_bridge_alloc (2 subtests) ===============
[07:23:53] [PASSED] drm_test_drm_bridge_alloc_basic
[07:23:53] [PASSED] drm_test_drm_bridge_alloc_get_put
[07:23:53] ================ [PASSED] drm_bridge_alloc =================
[07:23:53] ================== drm_buddy (8 subtests) ==================
[07:23:53] [PASSED] drm_test_buddy_alloc_limit
[07:23:53] [PASSED] drm_test_buddy_alloc_optimistic
[07:23:53] [PASSED] drm_test_buddy_alloc_pessimistic
[07:23:53] [PASSED] drm_test_buddy_alloc_pathological
[07:23:53] [PASSED] drm_test_buddy_alloc_contiguous
[07:23:53] [PASSED] drm_test_buddy_alloc_clear
[07:23:53] [PASSED] drm_test_buddy_alloc_range_bias
[07:23:53] [PASSED] drm_test_buddy_fragmentation_performance
[07:23:53] ==================== [PASSED] drm_buddy ====================
[07:23:53] ============= drm_cmdline_parser (40 subtests) =============
[07:23:53] [PASSED] drm_test_cmdline_force_d_only
[07:23:53] [PASSED] drm_test_cmdline_force_D_only_dvi
[07:23:53] [PASSED] drm_test_cmdline_force_D_only_hdmi
[07:23:53] [PASSED] drm_test_cmdline_force_D_only_not_digital
[07:23:53] [PASSED] drm_test_cmdline_force_e_only
[07:23:53] [PASSED] drm_test_cmdline_res
[07:23:53] [PASSED] drm_test_cmdline_res_vesa
[07:23:53] [PASSED] drm_test_cmdline_res_vesa_rblank
[07:23:53] [PASSED] drm_test_cmdline_res_rblank
[07:23:53] [PASSED] drm_test_cmdline_res_bpp
[07:23:53] [PASSED] drm_test_cmdline_res_refresh
[07:23:53] [PASSED] drm_test_cmdline_res_bpp_refresh
[07:23:53] [PASSED] drm_test_cmdline_res_bpp_refresh_interlaced
[07:23:53] [PASSED] drm_test_cmdline_res_bpp_refresh_margins
[07:23:53] [PASSED] drm_test_cmdline_res_bpp_refresh_force_off
[07:23:53] [PASSED] drm_test_cmdline_res_bpp_refresh_force_on
[07:23:53] [PASSED] drm_test_cmdline_res_bpp_refresh_force_on_analog
[07:23:53] [PASSED] drm_test_cmdline_res_bpp_refresh_force_on_digital
[07:23:53] [PASSED] drm_test_cmdline_res_bpp_refresh_interlaced_margins_force_on
[07:23:53] [PASSED] drm_test_cmdline_res_margins_force_on
[07:23:53] [PASSED] drm_test_cmdline_res_vesa_margins
[07:23:53] [PASSED] drm_test_cmdline_name
[07:23:53] [PASSED] drm_test_cmdline_name_bpp
[07:23:53] [PASSED] drm_test_cmdline_name_option
[07:23:53] [PASSED] drm_test_cmdline_name_bpp_option
[07:23:53] [PASSED] drm_test_cmdline_rotate_0
[07:23:53] [PASSED] drm_test_cmdline_rotate_90
[07:23:53] [PASSED] drm_test_cmdline_rotate_180
[07:23:53] [PASSED] drm_test_cmdline_rotate_270
[07:23:53] [PASSED] drm_test_cmdline_hmirror
[07:23:53] [PASSED] drm_test_cmdline_vmirror
[07:23:53] [PASSED] drm_test_cmdline_margin_options
[07:23:53] [PASSED] drm_test_cmdline_multiple_options
[07:23:53] [PASSED] drm_test_cmdline_bpp_extra_and_option
[07:23:53] [PASSED] drm_test_cmdline_extra_and_option
[07:23:53] [PASSED] drm_test_cmdline_freestanding_options
[07:23:53] [PASSED] drm_test_cmdline_freestanding_force_e_and_options
[07:23:53] [PASSED] drm_test_cmdline_panel_orientation
[07:23:53] ================ drm_test_cmdline_invalid =================
[07:23:53] [PASSED] margin_only
[07:23:53] [PASSED] interlace_only
[07:23:53] [PASSED] res_missing_x
[07:23:53] [PASSED] res_missing_y
[07:23:53] [PASSED] res_bad_y
[07:23:53] [PASSED] res_missing_y_bpp
[07:23:53] [PASSED] res_bad_bpp
[07:23:53] [PASSED] res_bad_refresh
[07:23:53] [PASSED] res_bpp_refresh_force_on_off
[07:23:53] [PASSED] res_invalid_mode
[07:23:53] [PASSED] res_bpp_wrong_place_mode
[07:23:53] [PASSED] name_bpp_refresh
[07:23:53] [PASSED] name_refresh
[07:23:53] [PASSED] name_refresh_wrong_mode
[07:23:53] [PASSED] name_refresh_invalid_mode
[07:23:53] [PASSED] rotate_multiple
[07:23:53] [PASSED] rotate_invalid_val
[07:23:53] [PASSED] rotate_truncated
[07:23:53] [PASSED] invalid_option
[07:23:53] [PASSED] invalid_tv_option
[07:23:53] [PASSED] truncated_tv_option
[07:23:53] ============ [PASSED] drm_test_cmdline_invalid =============
[07:23:53] =============== drm_test_cmdline_tv_options ===============
[07:23:53] [PASSED] NTSC
[07:23:53] [PASSED] NTSC_443
[07:23:53] [PASSED] NTSC_J
[07:23:53] [PASSED] PAL
[07:23:53] [PASSED] PAL_M
[07:23:53] [PASSED] PAL_N
[07:23:53] [PASSED] SECAM
[07:23:53] [PASSED] MONO_525
[07:23:53] [PASSED] MONO_625
[07:23:53] =========== [PASSED] drm_test_cmdline_tv_options ===========
[07:23:53] =============== [PASSED] drm_cmdline_parser ================
[07:23:53] ========== drmm_connector_hdmi_init (20 subtests) ==========
[07:23:53] [PASSED] drm_test_connector_hdmi_init_valid
[07:23:53] [PASSED] drm_test_connector_hdmi_init_bpc_8
[07:23:53] [PASSED] drm_test_connector_hdmi_init_bpc_10
[07:23:53] [PASSED] drm_test_connector_hdmi_init_bpc_12
[07:23:53] [PASSED] drm_test_connector_hdmi_init_bpc_invalid
[07:23:53] [PASSED] drm_test_connector_hdmi_init_bpc_null
[07:23:53] [PASSED] drm_test_connector_hdmi_init_formats_empty
[07:23:53] [PASSED] drm_test_connector_hdmi_init_formats_no_rgb
[07:23:53] === drm_test_connector_hdmi_init_formats_yuv420_allowed ===
[07:23:53] [PASSED] supported_formats=0x9 yuv420_allowed=1
[07:23:53] [PASSED] supported_formats=0x9 yuv420_allowed=0
[07:23:53] [PASSED] supported_formats=0x3 yuv420_allowed=1
[07:23:53] [PASSED] supported_formats=0x3 yuv420_allowed=0
[07:23:53] === [PASSED] drm_test_connector_hdmi_init_formats_yuv420_allowed ===
[07:23:53] [PASSED] drm_test_connector_hdmi_init_null_ddc
[07:23:53] [PASSED] drm_test_connector_hdmi_init_null_product
[07:23:53] [PASSED] drm_test_connector_hdmi_init_null_vendor
[07:23:53] [PASSED] drm_test_connector_hdmi_init_product_length_exact
[07:23:53] [PASSED] drm_test_connector_hdmi_init_product_length_too_long
[07:23:53] [PASSED] drm_test_connector_hdmi_init_product_valid
[07:23:53] [PASSED] drm_test_connector_hdmi_init_vendor_length_exact
[07:23:53] [PASSED] drm_test_connector_hdmi_init_vendor_length_too_long
[07:23:53] [PASSED] drm_test_connector_hdmi_init_vendor_valid
[07:23:53] ========= drm_test_connector_hdmi_init_type_valid =========
[07:23:53] [PASSED] HDMI-A
[07:23:53] [PASSED] HDMI-B
[07:23:53] ===== [PASSED] drm_test_connector_hdmi_init_type_valid =====
[07:23:53] ======== drm_test_connector_hdmi_init_type_invalid ========
[07:23:53] [PASSED] Unknown
[07:23:53] [PASSED] VGA
[07:23:53] [PASSED] DVI-I
[07:23:53] [PASSED] DVI-D
[07:23:53] [PASSED] DVI-A
[07:23:53] [PASSED] Composite
[07:23:53] [PASSED] SVIDEO
[07:23:53] [PASSED] LVDS
[07:23:53] [PASSED] Component
[07:23:53] [PASSED] DIN
[07:23:53] [PASSED] DP
[07:23:53] [PASSED] TV
[07:23:53] [PASSED] eDP
[07:23:53] [PASSED] Virtual
[07:23:53] [PASSED] DSI
[07:23:53] [PASSED] DPI
[07:23:53] [PASSED] Writeback
[07:23:53] [PASSED] SPI
[07:23:53] [PASSED] USB
[07:23:53] ==== [PASSED] drm_test_connector_hdmi_init_type_invalid ====
[07:23:53] ============ [PASSED] drmm_connector_hdmi_init =============
[07:23:53] ============= drmm_connector_init (3 subtests) =============
[07:23:53] [PASSED] drm_test_drmm_connector_init
[07:23:53] [PASSED] drm_test_drmm_connector_init_null_ddc
[07:23:53] ========= drm_test_drmm_connector_init_type_valid =========
[07:23:53] [PASSED] Unknown
[07:23:53] [PASSED] VGA
[07:23:53] [PASSED] DVI-I
[07:23:53] [PASSED] DVI-D
[07:23:53] [PASSED] DVI-A
[07:23:53] [PASSED] Composite
[07:23:53] [PASSED] SVIDEO
[07:23:53] [PASSED] LVDS
[07:23:53] [PASSED] Component
[07:23:53] [PASSED] DIN
[07:23:53] [PASSED] DP
[07:23:53] [PASSED] HDMI-A
[07:23:53] [PASSED] HDMI-B
[07:23:53] [PASSED] TV
[07:23:53] [PASSED] eDP
[07:23:53] [PASSED] Virtual
[07:23:53] [PASSED] DSI
[07:23:53] [PASSED] DPI
[07:23:53] [PASSED] Writeback
[07:23:53] [PASSED] SPI
[07:23:53] [PASSED] USB
[07:23:53] ===== [PASSED] drm_test_drmm_connector_init_type_valid =====
[07:23:53] =============== [PASSED] drmm_connector_init ===============
[07:23:53] ========= drm_connector_dynamic_init (6 subtests) ==========
[07:23:53] [PASSED] drm_test_drm_connector_dynamic_init
[07:23:53] [PASSED] drm_test_drm_connector_dynamic_init_null_ddc
[07:23:53] [PASSED] drm_test_drm_connector_dynamic_init_not_added
[07:23:53] [PASSED] drm_test_drm_connector_dynamic_init_properties
[07:23:53] ===== drm_test_drm_connector_dynamic_init_type_valid ======
[07:23:53] [PASSED] Unknown
[07:23:53] [PASSED] VGA
[07:23:53] [PASSED] DVI-I
[07:23:53] [PASSED] DVI-D
[07:23:53] [PASSED] DVI-A
[07:23:53] [PASSED] Composite
[07:23:53] [PASSED] SVIDEO
[07:23:53] [PASSED] LVDS
[07:23:53] [PASSED] Component
[07:23:53] [PASSED] DIN
[07:23:53] [PASSED] DP
[07:23:53] [PASSED] HDMI-A
[07:23:53] [PASSED] HDMI-B
[07:23:53] [PASSED] TV
[07:23:53] [PASSED] eDP
[07:23:53] [PASSED] Virtual
[07:23:53] [PASSED] DSI
[07:23:53] [PASSED] DPI
[07:23:53] [PASSED] Writeback
[07:23:53] [PASSED] SPI
[07:23:53] [PASSED] USB
[07:23:53] = [PASSED] drm_test_drm_connector_dynamic_init_type_valid ==
[07:23:53] ======== drm_test_drm_connector_dynamic_init_name =========
[07:23:53] [PASSED] Unknown
[07:23:53] [PASSED] VGA
[07:23:53] [PASSED] DVI-I
[07:23:53] [PASSED] DVI-D
[07:23:53] [PASSED] DVI-A
[07:23:53] [PASSED] Composite
[07:23:53] [PASSED] SVIDEO
[07:23:53] [PASSED] LVDS
[07:23:53] [PASSED] Component
[07:23:53] [PASSED] DIN
[07:23:53] [PASSED] DP
[07:23:53] [PASSED] HDMI-A
[07:23:53] [PASSED] HDMI-B
[07:23:53] [PASSED] TV
[07:23:53] [PASSED] eDP
[07:23:53] [PASSED] Virtual
[07:23:53] [PASSED] DSI
[07:23:53] [PASSED] DPI
[07:23:53] [PASSED] Writeback
[07:23:53] [PASSED] SPI
[07:23:53] [PASSED] USB
[07:23:53] ==== [PASSED] drm_test_drm_connector_dynamic_init_name =====
[07:23:53] =========== [PASSED] drm_connector_dynamic_init ============
[07:23:53] ==== drm_connector_dynamic_register_early (4 subtests) =====
[07:23:53] [PASSED] drm_test_drm_connector_dynamic_register_early_on_list
[07:23:53] [PASSED] drm_test_drm_connector_dynamic_register_early_defer
[07:23:53] [PASSED] drm_test_drm_connector_dynamic_register_early_no_init
[07:23:53] [PASSED] drm_test_drm_connector_dynamic_register_early_no_mode_object
[07:23:53] ====== [PASSED] drm_connector_dynamic_register_early =======
[07:23:53] ======= drm_connector_dynamic_register (7 subtests) ========
[07:23:53] [PASSED] drm_test_drm_connector_dynamic_register_on_list
[07:23:53] [PASSED] drm_test_drm_connector_dynamic_register_no_defer
[07:23:53] [PASSED] drm_test_drm_connector_dynamic_register_no_init
[07:23:53] [PASSED] drm_test_drm_connector_dynamic_register_mode_object
[07:23:53] [PASSED] drm_test_drm_connector_dynamic_register_sysfs
[07:23:53] [PASSED] drm_test_drm_connector_dynamic_register_sysfs_name
[07:23:53] [PASSED] drm_test_drm_connector_dynamic_register_debugfs
[07:23:53] ========= [PASSED] drm_connector_dynamic_register ==========
[07:23:53] = drm_connector_attach_broadcast_rgb_property (2 subtests) =
[07:23:53] [PASSED] drm_test_drm_connector_attach_broadcast_rgb_property
[07:23:53] [PASSED] drm_test_drm_connector_attach_broadcast_rgb_property_hdmi_connector
[07:23:53] === [PASSED] drm_connector_attach_broadcast_rgb_property ===
[07:23:53] ========== drm_get_tv_mode_from_name (2 subtests) ==========
[07:23:53] ========== drm_test_get_tv_mode_from_name_valid ===========
[07:23:53] [PASSED] NTSC
[07:23:53] [PASSED] NTSC-443
[07:23:53] [PASSED] NTSC-J
[07:23:53] [PASSED] PAL
[07:23:53] [PASSED] PAL-M
[07:23:53] [PASSED] PAL-N
[07:23:53] [PASSED] SECAM
[07:23:53] [PASSED] Mono
[07:23:53] ====== [PASSED] drm_test_get_tv_mode_from_name_valid =======
[07:23:53] [PASSED] drm_test_get_tv_mode_from_name_truncated
[07:23:53] ============ [PASSED] drm_get_tv_mode_from_name ============
[07:23:53] = drm_test_connector_hdmi_compute_mode_clock (12 subtests) =
[07:23:53] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb
[07:23:53] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb_10bpc
[07:23:53] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb_10bpc_vic_1
[07:23:53] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb_12bpc
[07:23:53] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb_12bpc_vic_1
[07:23:53] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb_double
[07:23:53] = drm_test_connector_hdmi_compute_mode_clock_yuv420_valid =
[07:23:53] [PASSED] VIC 96
[07:23:53] [PASSED] VIC 97
[07:23:53] [PASSED] VIC 101
[07:23:53] [PASSED] VIC 102
[07:23:53] [PASSED] VIC 106
[07:23:53] [PASSED] VIC 107
[07:23:53] === [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv420_valid ===
[07:23:53] [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv420_10_bpc
[07:23:53] [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv420_12_bpc
[07:23:53] [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv422_8_bpc
[07:23:53] [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv422_10_bpc
[07:23:53] [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv422_12_bpc
[07:23:53] === [PASSED] drm_test_connector_hdmi_compute_mode_clock ====
[07:23:53] == drm_hdmi_connector_get_broadcast_rgb_name (2 subtests) ==
[07:23:53] === drm_test_drm_hdmi_connector_get_broadcast_rgb_name ====
[07:23:53] [PASSED] Automatic
[07:23:53] [PASSED] Full
[07:23:53] [PASSED] Limited 16:235
[07:23:53] === [PASSED] drm_test_drm_hdmi_connector_get_broadcast_rgb_name ===
[07:23:53] [PASSED] drm_test_drm_hdmi_connector_get_broadcast_rgb_name_invalid
[07:23:53] ==== [PASSED] drm_hdmi_connector_get_broadcast_rgb_name ====
[07:23:53] == drm_hdmi_connector_get_output_format_name (2 subtests) ==
[07:23:53] === drm_test_drm_hdmi_connector_get_output_format_name ====
[07:23:53] [PASSED] RGB
[07:23:53] [PASSED] YUV 4:2:0
[07:23:53] [PASSED] YUV 4:2:2
[07:23:53] [PASSED] YUV 4:4:4
[07:23:53] === [PASSED] drm_test_drm_hdmi_connector_get_output_format_name ===
[07:23:53] [PASSED] drm_test_drm_hdmi_connector_get_output_format_name_invalid
[07:23:53] ==== [PASSED] drm_hdmi_connector_get_output_format_name ====
[07:23:53] ============= drm_damage_helper (21 subtests) ==============
[07:23:53] [PASSED] drm_test_damage_iter_no_damage
[07:23:53] [PASSED] drm_test_damage_iter_no_damage_fractional_src
[07:23:53] [PASSED] drm_test_damage_iter_no_damage_src_moved
[07:23:53] [PASSED] drm_test_damage_iter_no_damage_fractional_src_moved
[07:23:53] [PASSED] drm_test_damage_iter_no_damage_not_visible
[07:23:53] [PASSED] drm_test_damage_iter_no_damage_no_crtc
[07:23:53] [PASSED] drm_test_damage_iter_no_damage_no_fb
[07:23:53] [PASSED] drm_test_damage_iter_simple_damage
[07:23:53] [PASSED] drm_test_damage_iter_single_damage
[07:23:53] [PASSED] drm_test_damage_iter_single_damage_intersect_src
[07:23:53] [PASSED] drm_test_damage_iter_single_damage_outside_src
[07:23:53] [PASSED] drm_test_damage_iter_single_damage_fractional_src
[07:23:53] [PASSED] drm_test_damage_iter_single_damage_intersect_fractional_src
[07:23:53] [PASSED] drm_test_damage_iter_single_damage_outside_fractional_src
[07:23:53] [PASSED] drm_test_damage_iter_single_damage_src_moved
[07:23:53] [PASSED] drm_test_damage_iter_single_damage_fractional_src_moved
[07:23:53] [PASSED] drm_test_damage_iter_damage
[07:23:53] [PASSED] drm_test_damage_iter_damage_one_intersect
[07:23:53] [PASSED] drm_test_damage_iter_damage_one_outside
[07:23:53] [PASSED] drm_test_damage_iter_damage_src_moved
[07:23:53] [PASSED] drm_test_damage_iter_damage_not_visible
[07:23:53] ================ [PASSED] drm_damage_helper ================
[07:23:53] ============== drm_dp_mst_helper (3 subtests) ==============
[07:23:53] ============== drm_test_dp_mst_calc_pbn_mode ==============
[07:23:53] [PASSED] Clock 154000 BPP 30 DSC disabled
[07:23:53] [PASSED] Clock 234000 BPP 30 DSC disabled
[07:23:53] [PASSED] Clock 297000 BPP 24 DSC disabled
[07:23:53] [PASSED] Clock 332880 BPP 24 DSC enabled
[07:23:53] [PASSED] Clock 324540 BPP 24 DSC enabled
[07:23:53] ========== [PASSED] drm_test_dp_mst_calc_pbn_mode ==========
[07:23:53] ============== drm_test_dp_mst_calc_pbn_div ===============
[07:23:53] [PASSED] Link rate 2000000 lane count 4
[07:23:53] [PASSED] Link rate 2000000 lane count 2
[07:23:53] [PASSED] Link rate 2000000 lane count 1
[07:23:53] [PASSED] Link rate 1350000 lane count 4
[07:23:53] [PASSED] Link rate 1350000 lane count 2
[07:23:53] [PASSED] Link rate 1350000 lane count 1
[07:23:53] [PASSED] Link rate 1000000 lane count 4
[07:23:53] [PASSED] Link rate 1000000 lane count 2
[07:23:53] [PASSED] Link rate 1000000 lane count 1
[07:23:53] [PASSED] Link rate 810000 lane count 4
[07:23:53] [PASSED] Link rate 810000 lane count 2
[07:23:53] [PASSED] Link rate 810000 lane count 1
[07:23:53] [PASSED] Link rate 540000 lane count 4
[07:23:53] [PASSED] Link rate 540000 lane count 2
[07:23:53] [PASSED] Link rate 540000 lane count 1
[07:23:53] [PASSED] Link rate 270000 lane count 4
[07:23:53] [PASSED] Link rate 270000 lane count 2
[07:23:53] [PASSED] Link rate 270000 lane count 1
[07:23:53] [PASSED] Link rate 162000 lane count 4
[07:23:53] [PASSED] Link rate 162000 lane count 2
[07:23:53] [PASSED] Link rate 162000 lane count 1
[07:23:53] ========== [PASSED] drm_test_dp_mst_calc_pbn_div ===========
[07:23:53] ========= drm_test_dp_mst_sideband_msg_req_decode =========
[07:23:53] [PASSED] DP_ENUM_PATH_RESOURCES with port number
[07:23:53] [PASSED] DP_POWER_UP_PHY with port number
[07:23:53] [PASSED] DP_POWER_DOWN_PHY with port number
[07:23:53] [PASSED] DP_ALLOCATE_PAYLOAD with SDP stream sinks
[07:23:53] [PASSED] DP_ALLOCATE_PAYLOAD with port number
[07:23:53] [PASSED] DP_ALLOCATE_PAYLOAD with VCPI
[07:23:53] [PASSED] DP_ALLOCATE_PAYLOAD with PBN
[07:23:53] [PASSED] DP_QUERY_PAYLOAD with port number
[07:23:53] [PASSED] DP_QUERY_PAYLOAD with VCPI
[07:23:53] [PASSED] DP_REMOTE_DPCD_READ with port number
[07:23:53] [PASSED] DP_REMOTE_DPCD_READ with DPCD address
[07:23:53] [PASSED] DP_REMOTE_DPCD_READ with max number of bytes
[07:23:53] [PASSED] DP_REMOTE_DPCD_WRITE with port number
[07:23:53] [PASSED] DP_REMOTE_DPCD_WRITE with DPCD address
[07:23:53] [PASSED] DP_REMOTE_DPCD_WRITE with data array
[07:23:53] [PASSED] DP_REMOTE_I2C_READ with port number
[07:23:53] [PASSED] DP_REMOTE_I2C_READ with I2C device ID
[07:23:53] [PASSED] DP_REMOTE_I2C_READ with transactions array
[07:23:53] [PASSED] DP_REMOTE_I2C_WRITE with port number
[07:23:53] [PASSED] DP_REMOTE_I2C_WRITE with I2C device ID
[07:23:53] [PASSED] DP_REMOTE_I2C_WRITE with data array
[07:23:53] [PASSED] DP_QUERY_STREAM_ENC_STATUS with stream ID
[07:23:53] [PASSED] DP_QUERY_STREAM_ENC_STATUS with client ID
[07:23:53] [PASSED] DP_QUERY_STREAM_ENC_STATUS with stream event
[07:23:53] [PASSED] DP_QUERY_STREAM_ENC_STATUS with valid stream event
[07:23:53] [PASSED] DP_QUERY_STREAM_ENC_STATUS with stream behavior
[07:23:53] [PASSED] DP_QUERY_STREAM_ENC_STATUS with a valid stream behavior
[07:23:53] ===== [PASSED] drm_test_dp_mst_sideband_msg_req_decode =====
[07:23:53] ================ [PASSED] drm_dp_mst_helper ================
[07:23:53] ================== drm_exec (7 subtests) ===================
[07:23:53] [PASSED] sanitycheck
[07:23:53] [PASSED] test_lock
[07:23:53] [PASSED] test_lock_unlock
[07:23:53] [PASSED] test_duplicates
[07:23:53] [PASSED] test_prepare
[07:23:53] [PASSED] test_prepare_array
[07:23:53] [PASSED] test_multiple_loops
[07:23:53] ==================== [PASSED] drm_exec =====================
[07:23:53] =========== drm_format_helper_test (17 subtests) ===========
[07:23:53] ============== drm_test_fb_xrgb8888_to_gray8 ==============
[07:23:53] [PASSED] single_pixel_source_buffer
[07:23:53] [PASSED] single_pixel_clip_rectangle
[07:23:53] [PASSED] well_known_colors
[07:23:53] [PASSED] destination_pitch
[07:23:53] ========== [PASSED] drm_test_fb_xrgb8888_to_gray8 ==========
[07:23:53] ============= drm_test_fb_xrgb8888_to_rgb332 ==============
[07:23:53] [PASSED] single_pixel_source_buffer
[07:23:53] [PASSED] single_pixel_clip_rectangle
[07:23:53] [PASSED] well_known_colors
[07:23:53] [PASSED] destination_pitch
[07:23:53] ========= [PASSED] drm_test_fb_xrgb8888_to_rgb332 ==========
[07:23:53] ============= drm_test_fb_xrgb8888_to_rgb565 ==============
[07:23:53] [PASSED] single_pixel_source_buffer
[07:23:53] [PASSED] single_pixel_clip_rectangle
[07:23:53] [PASSED] well_known_colors
[07:23:53] [PASSED] destination_pitch
[07:23:53] ========= [PASSED] drm_test_fb_xrgb8888_to_rgb565 ==========
[07:23:53] ============ drm_test_fb_xrgb8888_to_xrgb1555 =============
[07:23:53] [PASSED] single_pixel_source_buffer
[07:23:53] [PASSED] single_pixel_clip_rectangle
[07:23:53] [PASSED] well_known_colors
[07:23:53] [PASSED] destination_pitch
[07:23:53] ======== [PASSED] drm_test_fb_xrgb8888_to_xrgb1555 =========
[07:23:53] ============ drm_test_fb_xrgb8888_to_argb1555 =============
[07:23:53] [PASSED] single_pixel_source_buffer
[07:23:53] [PASSED] single_pixel_clip_rectangle
[07:23:53] [PASSED] well_known_colors
[07:23:53] [PASSED] destination_pitch
[07:23:53] ======== [PASSED] drm_test_fb_xrgb8888_to_argb1555 =========
[07:23:53] ============ drm_test_fb_xrgb8888_to_rgba5551 =============
[07:23:53] [PASSED] single_pixel_source_buffer
[07:23:53] [PASSED] single_pixel_clip_rectangle
[07:23:53] [PASSED] well_known_colors
[07:23:53] [PASSED] destination_pitch
[07:23:53] ======== [PASSED] drm_test_fb_xrgb8888_to_rgba5551 =========
[07:23:53] ============= drm_test_fb_xrgb8888_to_rgb888 ==============
[07:23:53] [PASSED] single_pixel_source_buffer
[07:23:53] [PASSED] single_pixel_clip_rectangle
[07:23:53] [PASSED] well_known_colors
[07:23:53] [PASSED] destination_pitch
[07:23:53] ========= [PASSED] drm_test_fb_xrgb8888_to_rgb888 ==========
[07:23:53] ============= drm_test_fb_xrgb8888_to_bgr888 ==============
[07:23:53] [PASSED] single_pixel_source_buffer
[07:23:53] [PASSED] single_pixel_clip_rectangle
[07:23:53] [PASSED] well_known_colors
[07:23:53] [PASSED] destination_pitch
[07:23:53] ========= [PASSED] drm_test_fb_xrgb8888_to_bgr888 ==========
[07:23:53] ============ drm_test_fb_xrgb8888_to_argb8888 =============
[07:23:53] [PASSED] single_pixel_source_buffer
[07:23:53] [PASSED] single_pixel_clip_rectangle
[07:23:53] [PASSED] well_known_colors
[07:23:53] [PASSED] destination_pitch
[07:23:53] ======== [PASSED] drm_test_fb_xrgb8888_to_argb8888 =========
[07:23:53] =========== drm_test_fb_xrgb8888_to_xrgb2101010 ===========
[07:23:53] [PASSED] single_pixel_source_buffer
[07:23:53] [PASSED] single_pixel_clip_rectangle
[07:23:53] [PASSED] well_known_colors
[07:23:53] [PASSED] destination_pitch
[07:23:53] ======= [PASSED] drm_test_fb_xrgb8888_to_xrgb2101010 =======
[07:23:53] =========== drm_test_fb_xrgb8888_to_argb2101010 ===========
[07:23:53] [PASSED] single_pixel_source_buffer
[07:23:53] [PASSED] single_pixel_clip_rectangle
[07:23:53] [PASSED] well_known_colors
[07:23:53] [PASSED] destination_pitch
[07:23:53] ======= [PASSED] drm_test_fb_xrgb8888_to_argb2101010 =======
[07:23:53] ============== drm_test_fb_xrgb8888_to_mono ===============
[07:23:53] [PASSED] single_pixel_source_buffer
[07:23:53] [PASSED] single_pixel_clip_rectangle
[07:23:53] [PASSED] well_known_colors
[07:23:53] [PASSED] destination_pitch
[07:23:53] ========== [PASSED] drm_test_fb_xrgb8888_to_mono ===========
[07:23:53] ==================== drm_test_fb_swab =====================
[07:23:53] [PASSED] single_pixel_source_buffer
[07:23:53] [PASSED] single_pixel_clip_rectangle
[07:23:53] [PASSED] well_known_colors
[07:23:53] [PASSED] destination_pitch
[07:23:53] ================ [PASSED] drm_test_fb_swab =================
[07:23:53] ============ drm_test_fb_xrgb8888_to_xbgr8888 =============
[07:23:53] [PASSED] single_pixel_source_buffer
[07:23:53] [PASSED] single_pixel_clip_rectangle
[07:23:53] [PASSED] well_known_colors
[07:23:53] [PASSED] destination_pitch
[07:23:53] ======== [PASSED] drm_test_fb_xrgb8888_to_xbgr8888 =========
[07:23:53] ============ drm_test_fb_xrgb8888_to_abgr8888 =============
[07:23:53] [PASSED] single_pixel_source_buffer
[07:23:53] [PASSED] single_pixel_clip_rectangle
[07:23:53] [PASSED] well_known_colors
[07:23:53] [PASSED] destination_pitch
[07:23:53] ======== [PASSED] drm_test_fb_xrgb8888_to_abgr8888 =========
[07:23:53] ================= drm_test_fb_clip_offset =================
[07:23:53] [PASSED] pass through
[07:23:53] [PASSED] horizontal offset
[07:23:53] [PASSED] vertical offset
[07:23:53] [PASSED] horizontal and vertical offset
[07:23:53] [PASSED] horizontal offset (custom pitch)
[07:23:53] [PASSED] vertical offset (custom pitch)
[07:23:53] [PASSED] horizontal and vertical offset (custom pitch)
[07:23:53] ============= [PASSED] drm_test_fb_clip_offset =============
[07:23:53] =================== drm_test_fb_memcpy ====================
[07:23:53] [PASSED] single_pixel_source_buffer: XR24 little-endian (0x34325258)
[07:23:53] [PASSED] single_pixel_source_buffer: XRA8 little-endian (0x38415258)
[07:23:53] [PASSED] single_pixel_source_buffer: YU24 little-endian (0x34325559)
[07:23:53] [PASSED] single_pixel_clip_rectangle: XB24 little-endian (0x34324258)
[07:23:53] [PASSED] single_pixel_clip_rectangle: XRA8 little-endian (0x38415258)
[07:23:53] [PASSED] single_pixel_clip_rectangle: YU24 little-endian (0x34325559)
[07:23:53] [PASSED] well_known_colors: XB24 little-endian (0x34324258)
[07:23:53] [PASSED] well_known_colors: XRA8 little-endian (0x38415258)
[07:23:53] [PASSED] well_known_colors: YU24 little-endian (0x34325559)
[07:23:53] [PASSED] destination_pitch: XB24 little-endian (0x34324258)
[07:23:53] [PASSED] destination_pitch: XRA8 little-endian (0x38415258)
[07:23:53] [PASSED] destination_pitch: YU24 little-endian (0x34325559)
[07:23:53] =============== [PASSED] drm_test_fb_memcpy ================
[07:23:53] ============= [PASSED] drm_format_helper_test ==============
[07:23:53] ================= drm_format (18 subtests) =================
[07:23:53] [PASSED] drm_test_format_block_width_invalid
[07:23:53] [PASSED] drm_test_format_block_width_one_plane
[07:23:53] [PASSED] drm_test_format_block_width_two_plane
[07:23:53] [PASSED] drm_test_format_block_width_three_plane
[07:23:53] [PASSED] drm_test_format_block_width_tiled
[07:23:53] [PASSED] drm_test_format_block_height_invalid
[07:23:53] [PASSED] drm_test_format_block_height_one_plane
[07:23:53] [PASSED] drm_test_format_block_height_two_plane
[07:23:53] [PASSED] drm_test_format_block_height_three_plane
[07:23:53] [PASSED] drm_test_format_block_height_tiled
[07:23:53] [PASSED] drm_test_format_min_pitch_invalid
[07:23:53] [PASSED] drm_test_format_min_pitch_one_plane_8bpp
[07:23:53] [PASSED] drm_test_format_min_pitch_one_plane_16bpp
[07:23:53] [PASSED] drm_test_format_min_pitch_one_plane_24bpp
[07:23:53] [PASSED] drm_test_format_min_pitch_one_plane_32bpp
[07:23:53] [PASSED] drm_test_format_min_pitch_two_plane
[07:23:53] [PASSED] drm_test_format_min_pitch_three_plane_8bpp
[07:23:53] [PASSED] drm_test_format_min_pitch_tiled
[07:23:53] =================== [PASSED] drm_format ====================
[07:23:53] ============== drm_framebuffer (10 subtests) ===============
[07:23:53] ========== drm_test_framebuffer_check_src_coords ==========
[07:23:53] [PASSED] Success: source fits into fb
[07:23:53] [PASSED] Fail: overflowing fb with x-axis coordinate
[07:23:53] [PASSED] Fail: overflowing fb with y-axis coordinate
[07:23:53] [PASSED] Fail: overflowing fb with source width
[07:23:53] [PASSED] Fail: overflowing fb with source height
[07:23:53] ====== [PASSED] drm_test_framebuffer_check_src_coords ======
[07:23:53] [PASSED] drm_test_framebuffer_cleanup
[07:23:53] =============== drm_test_framebuffer_create ===============
[07:23:53] [PASSED] ABGR8888 normal sizes
[07:23:53] [PASSED] ABGR8888 max sizes
[07:23:53] [PASSED] ABGR8888 pitch greater than min required
[07:23:53] [PASSED] ABGR8888 pitch less than min required
[07:23:53] [PASSED] ABGR8888 Invalid width
[07:23:53] [PASSED] ABGR8888 Invalid buffer handle
[07:23:53] [PASSED] No pixel format
[07:23:53] [PASSED] ABGR8888 Width 0
[07:23:53] [PASSED] ABGR8888 Height 0
[07:23:53] [PASSED] ABGR8888 Out of bound height * pitch combination
[07:23:53] [PASSED] ABGR8888 Large buffer offset
[07:23:53] [PASSED] ABGR8888 Buffer offset for inexistent plane
[07:23:53] [PASSED] ABGR8888 Invalid flag
[07:23:53] [PASSED] ABGR8888 Set DRM_MODE_FB_MODIFIERS without modifiers
[07:23:53] [PASSED] ABGR8888 Valid buffer modifier
[07:23:53] [PASSED] ABGR8888 Invalid buffer modifier(DRM_FORMAT_MOD_SAMSUNG_64_32_TILE)
[07:23:53] [PASSED] ABGR8888 Extra pitches without DRM_MODE_FB_MODIFIERS
[07:23:53] [PASSED] ABGR8888 Extra pitches with DRM_MODE_FB_MODIFIERS
[07:23:53] [PASSED] NV12 Normal sizes
[07:23:53] [PASSED] NV12 Max sizes
[07:23:53] [PASSED] NV12 Invalid pitch
[07:23:53] [PASSED] NV12 Invalid modifier/missing DRM_MODE_FB_MODIFIERS flag
[07:23:53] [PASSED] NV12 different modifier per-plane
[07:23:53] [PASSED] NV12 with DRM_FORMAT_MOD_SAMSUNG_64_32_TILE
[07:23:53] [PASSED] NV12 Valid modifiers without DRM_MODE_FB_MODIFIERS
[07:23:53] [PASSED] NV12 Modifier for inexistent plane
[07:23:53] [PASSED] NV12 Handle for inexistent plane
[07:23:53] [PASSED] NV12 Handle for inexistent plane without DRM_MODE_FB_MODIFIERS
[07:23:53] [PASSED] YVU420 DRM_MODE_FB_MODIFIERS set without modifier
[07:23:53] [PASSED] YVU420 Normal sizes
[07:23:53] [PASSED] YVU420 Max sizes
[07:23:53] [PASSED] YVU420 Invalid pitch
[07:23:53] [PASSED] YVU420 Different pitches
[07:23:53] [PASSED] YVU420 Different buffer offsets/pitches
[07:23:53] [PASSED] YVU420 Modifier set just for plane 0, without DRM_MODE_FB_MODIFIERS
[07:23:53] [PASSED] YVU420 Modifier set just for planes 0, 1, without DRM_MODE_FB_MODIFIERS
[07:23:53] [PASSED] YVU420 Modifier set just for plane 0, 1, with DRM_MODE_FB_MODIFIERS
[07:23:53] [PASSED] YVU420 Valid modifier
[07:23:53] [PASSED] YVU420 Different modifiers per plane
[07:23:53] [PASSED] YVU420 Modifier for inexistent plane
[07:23:53] [PASSED] YUV420_10BIT Invalid modifier(DRM_FORMAT_MOD_LINEAR)
[07:23:53] [PASSED] X0L2 Normal sizes
[07:23:53] [PASSED] X0L2 Max sizes
[07:23:53] [PASSED] X0L2 Invalid pitch
[07:23:53] [PASSED] X0L2 Pitch greater than minimum required
[07:23:53] [PASSED] X0L2 Handle for inexistent plane
[07:23:53] [PASSED] X0L2 Offset for inexistent plane, without DRM_MODE_FB_MODIFIERS set
[07:23:53] [PASSED] X0L2 Modifier without DRM_MODE_FB_MODIFIERS set
[07:23:53] [PASSED] X0L2 Valid modifier
[07:23:53] [PASSED] X0L2 Modifier for inexistent plane
[07:23:53] =========== [PASSED] drm_test_framebuffer_create ===========
[07:23:53] [PASSED] drm_test_framebuffer_free
[07:23:53] [PASSED] drm_test_framebuffer_init
[07:23:53] [PASSED] drm_test_framebuffer_init_bad_format
[07:23:53] [PASSED] drm_test_framebuffer_init_dev_mismatch
[07:23:53] [PASSED] drm_test_framebuffer_lookup
[07:23:53] [PASSED] drm_test_framebuffer_lookup_inexistent
[07:23:53] [PASSED] drm_test_framebuffer_modifiers_not_supported
[07:23:53] ================= [PASSED] drm_framebuffer =================
[07:23:53] ================ drm_gem_shmem (8 subtests) ================
[07:23:53] [PASSED] drm_gem_shmem_test_obj_create
[07:23:53] [PASSED] drm_gem_shmem_test_obj_create_private
[07:23:53] [PASSED] drm_gem_shmem_test_pin_pages
[07:23:53] [PASSED] drm_gem_shmem_test_vmap
[07:23:53] [PASSED] drm_gem_shmem_test_get_pages_sgt
[07:23:53] [PASSED] drm_gem_shmem_test_get_sg_table
[07:23:53] [PASSED] drm_gem_shmem_test_madvise
[07:23:53] [PASSED] drm_gem_shmem_test_purge
[07:23:53] ================== [PASSED] drm_gem_shmem ==================
[07:23:53] === drm_atomic_helper_connector_hdmi_check (27 subtests) ===
[07:23:53] [PASSED] drm_test_check_broadcast_rgb_auto_cea_mode
[07:23:53] [PASSED] drm_test_check_broadcast_rgb_auto_cea_mode_vic_1
[07:23:53] [PASSED] drm_test_check_broadcast_rgb_full_cea_mode
[07:23:53] [PASSED] drm_test_check_broadcast_rgb_full_cea_mode_vic_1
[07:23:53] [PASSED] drm_test_check_broadcast_rgb_limited_cea_mode
[07:23:53] [PASSED] drm_test_check_broadcast_rgb_limited_cea_mode_vic_1
[07:23:53] ====== drm_test_check_broadcast_rgb_cea_mode_yuv420 =======
[07:23:53] [PASSED] Automatic
[07:23:53] [PASSED] Full
[07:23:53] [PASSED] Limited 16:235
[07:23:53] == [PASSED] drm_test_check_broadcast_rgb_cea_mode_yuv420 ===
[07:23:53] [PASSED] drm_test_check_broadcast_rgb_crtc_mode_changed
[07:23:53] [PASSED] drm_test_check_broadcast_rgb_crtc_mode_not_changed
[07:23:53] [PASSED] drm_test_check_disable_connector
[07:23:53] [PASSED] drm_test_check_hdmi_funcs_reject_rate
[07:23:53] [PASSED] drm_test_check_max_tmds_rate_bpc_fallback_rgb
[07:23:53] [PASSED] drm_test_check_max_tmds_rate_bpc_fallback_yuv420
[07:23:53] [PASSED] drm_test_check_max_tmds_rate_bpc_fallback_ignore_yuv422
[07:23:53] [PASSED] drm_test_check_max_tmds_rate_bpc_fallback_ignore_yuv420
[07:23:53] [PASSED] drm_test_check_driver_unsupported_fallback_yuv420
[07:23:53] [PASSED] drm_test_check_output_bpc_crtc_mode_changed
[07:23:53] [PASSED] drm_test_check_output_bpc_crtc_mode_not_changed
[07:23:53] [PASSED] drm_test_check_output_bpc_dvi
[07:23:53] [PASSED] drm_test_check_output_bpc_format_vic_1
[07:23:53] [PASSED] drm_test_check_output_bpc_format_display_8bpc_only
[07:23:53] [PASSED] drm_test_check_output_bpc_format_display_rgb_only
[07:23:53] [PASSED] drm_test_check_output_bpc_format_driver_8bpc_only
[07:23:53] [PASSED] drm_test_check_output_bpc_format_driver_rgb_only
[07:23:53] [PASSED] drm_test_check_tmds_char_rate_rgb_8bpc
[07:23:53] [PASSED] drm_test_check_tmds_char_rate_rgb_10bpc
[07:23:53] [PASSED] drm_test_check_tmds_char_rate_rgb_12bpc
[07:23:53] ===== [PASSED] drm_atomic_helper_connector_hdmi_check ======
[07:23:53] === drm_atomic_helper_connector_hdmi_reset (6 subtests) ====
[07:23:53] [PASSED] drm_test_check_broadcast_rgb_value
[07:23:53] [PASSED] drm_test_check_bpc_8_value
[07:23:53] [PASSED] drm_test_check_bpc_10_value
[07:23:53] [PASSED] drm_test_check_bpc_12_value
[07:23:53] [PASSED] drm_test_check_format_value
[07:23:53] [PASSED] drm_test_check_tmds_char_value
[07:23:53] ===== [PASSED] drm_atomic_helper_connector_hdmi_reset ======
[07:23:53] = drm_atomic_helper_connector_hdmi_mode_valid (4 subtests) =
[07:23:53] [PASSED] drm_test_check_mode_valid
[07:23:53] [PASSED] drm_test_check_mode_valid_reject
[07:23:53] [PASSED] drm_test_check_mode_valid_reject_rate
[07:23:53] [PASSED] drm_test_check_mode_valid_reject_max_clock
[07:23:53] === [PASSED] drm_atomic_helper_connector_hdmi_mode_valid ===
[07:23:53] ================= drm_managed (2 subtests) =================
[07:23:53] [PASSED] drm_test_managed_release_action
[07:23:53] [PASSED] drm_test_managed_run_action
[07:23:53] =================== [PASSED] drm_managed ===================
[07:23:53] =================== drm_mm (6 subtests) ====================
[07:23:53] [PASSED] drm_test_mm_init
[07:23:53] [PASSED] drm_test_mm_debug
[07:23:53] [PASSED] drm_test_mm_align32
[07:23:53] [PASSED] drm_test_mm_align64
[07:23:53] [PASSED] drm_test_mm_lowest
[07:23:53] [PASSED] drm_test_mm_highest
[07:23:53] ===================== [PASSED] drm_mm ======================
[07:23:53] ============= drm_modes_analog_tv (5 subtests) =============
[07:23:53] [PASSED] drm_test_modes_analog_tv_mono_576i
[07:23:53] [PASSED] drm_test_modes_analog_tv_ntsc_480i
[07:23:53] [PASSED] drm_test_modes_analog_tv_ntsc_480i_inlined
[07:23:53] [PASSED] drm_test_modes_analog_tv_pal_576i
[07:23:53] [PASSED] drm_test_modes_analog_tv_pal_576i_inlined
[07:23:53] =============== [PASSED] drm_modes_analog_tv ===============
[07:23:53] ============== drm_plane_helper (2 subtests) ===============
[07:23:53] =============== drm_test_check_plane_state ================
[07:23:53] [PASSED] clipping_simple
[07:23:53] [PASSED] clipping_rotate_reflect
[07:23:53] [PASSED] positioning_simple
[07:23:53] [PASSED] upscaling
[07:23:53] [PASSED] downscaling
[07:23:53] [PASSED] rounding1
[07:23:53] [PASSED] rounding2
[07:23:53] [PASSED] rounding3
[07:23:53] [PASSED] rounding4
[07:23:53] =========== [PASSED] drm_test_check_plane_state ============
[07:23:53] =========== drm_test_check_invalid_plane_state ============
[07:23:53] [PASSED] positioning_invalid
[07:23:53] [PASSED] upscaling_invalid
[07:23:53] [PASSED] downscaling_invalid
[07:23:53] ======= [PASSED] drm_test_check_invalid_plane_state ========
[07:23:53] ================ [PASSED] drm_plane_helper =================
[07:23:53] ====== drm_connector_helper_tv_get_modes (1 subtest) =======
[07:23:53] ====== drm_test_connector_helper_tv_get_modes_check =======
[07:23:53] [PASSED] None
[07:23:53] [PASSED] PAL
[07:23:53] [PASSED] NTSC
[07:23:53] [PASSED] Both, NTSC Default
[07:23:53] [PASSED] Both, PAL Default
[07:23:53] [PASSED] Both, NTSC Default, with PAL on command-line
[07:23:53] [PASSED] Both, PAL Default, with NTSC on command-line
[07:23:53] == [PASSED] drm_test_connector_helper_tv_get_modes_check ===
[07:23:53] ======== [PASSED] drm_connector_helper_tv_get_modes ========
[07:23:53] ================== drm_rect (9 subtests) ===================
[07:23:53] [PASSED] drm_test_rect_clip_scaled_div_by_zero
[07:23:53] [PASSED] drm_test_rect_clip_scaled_not_clipped
[07:23:53] [PASSED] drm_test_rect_clip_scaled_clipped
[07:23:53] [PASSED] drm_test_rect_clip_scaled_signed_vs_unsigned
[07:23:53] ================= drm_test_rect_intersect =================
[07:23:53] [PASSED] top-left x bottom-right: 2x2+1+1 x 2x2+0+0
[07:23:53] [PASSED] top-right x bottom-left: 2x2+0+0 x 2x2+1-1
[07:23:53] [PASSED] bottom-left x top-right: 2x2+1-1 x 2x2+0+0
[07:23:53] [PASSED] bottom-right x top-left: 2x2+0+0 x 2x2+1+1
[07:23:53] [PASSED] right x left: 2x1+0+0 x 3x1+1+0
[07:23:53] [PASSED] left x right: 3x1+1+0 x 2x1+0+0
[07:23:53] [PASSED] up x bottom: 1x2+0+0 x 1x3+0-1
[07:23:53] [PASSED] bottom x up: 1x3+0-1 x 1x2+0+0
[07:23:53] [PASSED] touching corner: 1x1+0+0 x 2x2+1+1
[07:23:53] [PASSED] touching side: 1x1+0+0 x 1x1+1+0
[07:23:53] [PASSED] equal rects: 2x2+0+0 x 2x2+0+0
[07:23:53] [PASSED] inside another: 2x2+0+0 x 1x1+1+1
[07:23:53] [PASSED] far away: 1x1+0+0 x 1x1+3+6
[07:23:53] [PASSED] points intersecting: 0x0+5+10 x 0x0+5+10
[07:23:53] [PASSED] points not intersecting: 0x0+0+0 x 0x0+5+10
[07:23:53] ============= [PASSED] drm_test_rect_intersect =============
[07:23:53] ================ drm_test_rect_calc_hscale ================
[07:23:53] [PASSED] normal use
[07:23:53] [PASSED] out of max range
[07:23:53] [PASSED] out of min range
[07:23:53] [PASSED] zero dst
[07:23:53] [PASSED] negative src
[07:23:53] [PASSED] negative dst
[07:23:53] ============ [PASSED] drm_test_rect_calc_hscale ============
[07:23:53] ================ drm_test_rect_calc_vscale ================
[07:23:53] [PASSED] normal use
stty: 'standard input': Inappropriate ioctl for device
[07:23:53] [PASSED] out of max range
[07:23:53] [PASSED] out of min range
[07:23:53] [PASSED] zero dst
[07:23:53] [PASSED] negative src
[07:23:53] [PASSED] negative dst
[07:23:53] ============ [PASSED] drm_test_rect_calc_vscale ============
[07:23:53] ================== drm_test_rect_rotate ===================
[07:23:53] [PASSED] reflect-x
[07:23:53] [PASSED] reflect-y
[07:23:53] [PASSED] rotate-0
[07:23:53] [PASSED] rotate-90
[07:23:53] [PASSED] rotate-180
[07:23:53] [PASSED] rotate-270
[07:23:53] ============== [PASSED] drm_test_rect_rotate ===============
[07:23:53] ================ drm_test_rect_rotate_inv =================
[07:23:53] [PASSED] reflect-x
[07:23:53] [PASSED] reflect-y
[07:23:53] [PASSED] rotate-0
[07:23:53] [PASSED] rotate-90
[07:23:53] [PASSED] rotate-180
[07:23:53] [PASSED] rotate-270
[07:23:53] ============ [PASSED] drm_test_rect_rotate_inv =============
[07:23:53] ==================== [PASSED] drm_rect =====================
[07:23:53] ============ drm_sysfb_modeset_test (1 subtest) ============
[07:23:53] ============ drm_test_sysfb_build_fourcc_list =============
[07:23:53] [PASSED] no native formats
[07:23:53] [PASSED] XRGB8888 as native format
[07:23:53] [PASSED] remove duplicates
[07:23:53] [PASSED] convert alpha formats
[07:23:53] [PASSED] random formats
[07:23:53] ======== [PASSED] drm_test_sysfb_build_fourcc_list =========
[07:23:53] ============= [PASSED] drm_sysfb_modeset_test ==============
[07:23:53] ================== drm_fixp (2 subtests) ===================
[07:23:53] [PASSED] drm_test_int2fixp
[07:23:53] [PASSED] drm_test_sm2fixp
[07:23:53] ==================== [PASSED] drm_fixp =====================
[07:23:53] ============================================================
[07:23:53] Testing complete. Ran 624 tests: passed: 624
[07:23:53] Elapsed time: 26.598s total, 1.640s configuring, 24.540s building, 0.396s running
+ /kernel/tools/testing/kunit/kunit.py run --kunitconfig /kernel/drivers/gpu/drm/ttm/tests/.kunitconfig
[07:23:53] Configuring KUnit Kernel ...
Regenerating .config ...
Populating config with:
$ make ARCH=um O=.kunit olddefconfig
[07:23:55] 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
[07:24:04] Starting KUnit Kernel (1/1)...
[07:24:04] ============================================================
Running tests with:
$ .kunit/linux kunit.enable=1 mem=1G console=tty kunit_shutdown=halt
[07:24:04] ================= ttm_device (5 subtests) ==================
[07:24:04] [PASSED] ttm_device_init_basic
[07:24:04] [PASSED] ttm_device_init_multiple
[07:24:04] [PASSED] ttm_device_fini_basic
[07:24:04] [PASSED] ttm_device_init_no_vma_man
[07:24:04] ================== ttm_device_init_pools ==================
[07:24:04] [PASSED] No DMA allocations, no DMA32 required
[07:24:04] [PASSED] DMA allocations, DMA32 required
[07:24:04] [PASSED] No DMA allocations, DMA32 required
[07:24:04] [PASSED] DMA allocations, no DMA32 required
[07:24:04] ============== [PASSED] ttm_device_init_pools ==============
[07:24:04] =================== [PASSED] ttm_device ====================
[07:24:04] ================== ttm_pool (8 subtests) ===================
[07:24:04] ================== ttm_pool_alloc_basic ===================
[07:24:04] [PASSED] One page
[07:24:04] [PASSED] More than one page
[07:24:04] [PASSED] Above the allocation limit
[07:24:04] [PASSED] One page, with coherent DMA mappings enabled
[07:24:04] [PASSED] Above the allocation limit, with coherent DMA mappings enabled
[07:24:04] ============== [PASSED] ttm_pool_alloc_basic ===============
[07:24:04] ============== ttm_pool_alloc_basic_dma_addr ==============
[07:24:04] [PASSED] One page
[07:24:04] [PASSED] More than one page
[07:24:04] [PASSED] Above the allocation limit
[07:24:04] [PASSED] One page, with coherent DMA mappings enabled
[07:24:04] [PASSED] Above the allocation limit, with coherent DMA mappings enabled
[07:24:04] ========== [PASSED] ttm_pool_alloc_basic_dma_addr ==========
[07:24:04] [PASSED] ttm_pool_alloc_order_caching_match
[07:24:04] [PASSED] ttm_pool_alloc_caching_mismatch
[07:24:04] [PASSED] ttm_pool_alloc_order_mismatch
[07:24:04] [PASSED] ttm_pool_free_dma_alloc
[07:24:04] [PASSED] ttm_pool_free_no_dma_alloc
[07:24:04] [PASSED] ttm_pool_fini_basic
[07:24:04] ==================== [PASSED] ttm_pool =====================
[07:24:04] ================ ttm_resource (8 subtests) =================
[07:24:04] ================= ttm_resource_init_basic =================
[07:24:04] [PASSED] Init resource in TTM_PL_SYSTEM
[07:24:04] [PASSED] Init resource in TTM_PL_VRAM
[07:24:04] [PASSED] Init resource in a private placement
[07:24:04] [PASSED] Init resource in TTM_PL_SYSTEM, set placement flags
[07:24:04] ============= [PASSED] ttm_resource_init_basic =============
[07:24:04] [PASSED] ttm_resource_init_pinned
[07:24:04] [PASSED] ttm_resource_fini_basic
[07:24:04] [PASSED] ttm_resource_manager_init_basic
[07:24:04] [PASSED] ttm_resource_manager_usage_basic
[07:24:04] [PASSED] ttm_resource_manager_set_used_basic
[07:24:04] [PASSED] ttm_sys_man_alloc_basic
[07:24:04] [PASSED] ttm_sys_man_free_basic
[07:24:04] ================== [PASSED] ttm_resource ===================
[07:24:04] =================== ttm_tt (15 subtests) ===================
[07:24:04] ==================== ttm_tt_init_basic ====================
[07:24:04] [PASSED] Page-aligned size
[07:24:04] [PASSED] Extra pages requested
[07:24:04] ================ [PASSED] ttm_tt_init_basic ================
[07:24:04] [PASSED] ttm_tt_init_misaligned
[07:24:04] [PASSED] ttm_tt_fini_basic
[07:24:04] [PASSED] ttm_tt_fini_sg
[07:24:04] [PASSED] ttm_tt_fini_shmem
[07:24:04] [PASSED] ttm_tt_create_basic
[07:24:04] [PASSED] ttm_tt_create_invalid_bo_type
[07:24:04] [PASSED] ttm_tt_create_ttm_exists
[07:24:04] [PASSED] ttm_tt_create_failed
[07:24:04] [PASSED] ttm_tt_destroy_basic
[07:24:04] [PASSED] ttm_tt_populate_null_ttm
[07:24:04] [PASSED] ttm_tt_populate_populated_ttm
[07:24:04] [PASSED] ttm_tt_unpopulate_basic
[07:24:04] [PASSED] ttm_tt_unpopulate_empty_ttm
[07:24:04] [PASSED] ttm_tt_swapin_basic
[07:24:04] ===================== [PASSED] ttm_tt ======================
[07:24:04] =================== ttm_bo (14 subtests) ===================
[07:24:04] =========== ttm_bo_reserve_optimistic_no_ticket ===========
[07:24:04] [PASSED] Cannot be interrupted and sleeps
[07:24:04] [PASSED] Cannot be interrupted, locks straight away
[07:24:04] [PASSED] Can be interrupted, sleeps
[07:24:04] ======= [PASSED] ttm_bo_reserve_optimistic_no_ticket =======
[07:24:04] [PASSED] ttm_bo_reserve_locked_no_sleep
[07:24:04] [PASSED] ttm_bo_reserve_no_wait_ticket
[07:24:04] [PASSED] ttm_bo_reserve_double_resv
[07:24:04] [PASSED] ttm_bo_reserve_interrupted
[07:24:04] [PASSED] ttm_bo_reserve_deadlock
[07:24:04] [PASSED] ttm_bo_unreserve_basic
[07:24:04] [PASSED] ttm_bo_unreserve_pinned
[07:24:04] [PASSED] ttm_bo_unreserve_bulk
[07:24:04] [PASSED] ttm_bo_fini_basic
[07:24:04] [PASSED] ttm_bo_fini_shared_resv
[07:24:04] [PASSED] ttm_bo_pin_basic
[07:24:04] [PASSED] ttm_bo_pin_unpin_resource
[07:24:04] [PASSED] ttm_bo_multiple_pin_one_unpin
[07:24:04] ===================== [PASSED] ttm_bo ======================
[07:24:04] ============== ttm_bo_validate (21 subtests) ===============
[07:24:04] ============== ttm_bo_init_reserved_sys_man ===============
[07:24:04] [PASSED] Buffer object for userspace
[07:24:04] [PASSED] Kernel buffer object
[07:24:04] [PASSED] Shared buffer object
[07:24:04] ========== [PASSED] ttm_bo_init_reserved_sys_man ===========
[07:24:04] ============== ttm_bo_init_reserved_mock_man ==============
[07:24:04] [PASSED] Buffer object for userspace
[07:24:04] [PASSED] Kernel buffer object
[07:24:04] [PASSED] Shared buffer object
[07:24:04] ========== [PASSED] ttm_bo_init_reserved_mock_man ==========
[07:24:04] [PASSED] ttm_bo_init_reserved_resv
[07:24:04] ================== ttm_bo_validate_basic ==================
[07:24:04] [PASSED] Buffer object for userspace
[07:24:04] [PASSED] Kernel buffer object
[07:24:04] [PASSED] Shared buffer object
[07:24:04] ============== [PASSED] ttm_bo_validate_basic ==============
[07:24:04] [PASSED] ttm_bo_validate_invalid_placement
[07:24:04] ============= ttm_bo_validate_same_placement ==============
[07:24:04] [PASSED] System manager
[07:24:04] [PASSED] VRAM manager
[07:24:04] ========= [PASSED] ttm_bo_validate_same_placement ==========
[07:24:04] [PASSED] ttm_bo_validate_failed_alloc
[07:24:04] [PASSED] ttm_bo_validate_pinned
[07:24:04] [PASSED] ttm_bo_validate_busy_placement
[07:24:04] ================ ttm_bo_validate_multihop =================
[07:24:04] [PASSED] Buffer object for userspace
[07:24:04] [PASSED] Kernel buffer object
[07:24:04] [PASSED] Shared buffer object
[07:24:04] ============ [PASSED] ttm_bo_validate_multihop =============
[07:24:04] ========== ttm_bo_validate_no_placement_signaled ==========
[07:24:04] [PASSED] Buffer object in system domain, no page vector
[07:24:04] [PASSED] Buffer object in system domain with an existing page vector
[07:24:04] ====== [PASSED] ttm_bo_validate_no_placement_signaled ======
[07:24:04] ======== ttm_bo_validate_no_placement_not_signaled ========
[07:24:04] [PASSED] Buffer object for userspace
[07:24:04] [PASSED] Kernel buffer object
[07:24:04] [PASSED] Shared buffer object
[07:24:04] ==== [PASSED] ttm_bo_validate_no_placement_not_signaled ====
[07:24:04] [PASSED] ttm_bo_validate_move_fence_signaled
[07:24:04] ========= ttm_bo_validate_move_fence_not_signaled =========
[07:24:04] [PASSED] Waits for GPU
[07:24:04] [PASSED] Tries to lock straight away
[07:24:04] ===== [PASSED] ttm_bo_validate_move_fence_not_signaled =====
[07:24:04] [PASSED] ttm_bo_validate_happy_evict
[07:24:04] [PASSED] ttm_bo_validate_all_pinned_evict
[07:24:04] [PASSED] ttm_bo_validate_allowed_only_evict
[07:24:04] [PASSED] ttm_bo_validate_deleted_evict
[07:24:04] [PASSED] ttm_bo_validate_busy_domain_evict
[07:24:04] [PASSED] ttm_bo_validate_evict_gutting
[07:24:04] [PASSED] ttm_bo_validate_recrusive_evict
stty: 'standard input': Inappropriate ioctl for device
[07:24:04] ================= [PASSED] ttm_bo_validate =================
[07:24:04] ============================================================
[07:24:04] Testing complete. Ran 101 tests: passed: 101
[07:24:05] Elapsed time: 11.291s total, 1.740s configuring, 9.335s building, 0.179s running
+ cleanup
++ stat -c %u:%g /kernel
+ chown -R 1003:1003 /kernel
^ permalink raw reply [flat|nested] 18+ messages in thread* ✓ Xe.CI.BAT: success for drm/xe/madvise: Add support for purgeable buffer objects (rev4)
2025-12-10 4:30 [RFC v3 0/8] drm/xe/madvise: Add support for purgeable buffer objects Arvind Yadav
` (9 preceding siblings ...)
2025-12-11 7:24 ` ✓ CI.KUnit: success " Patchwork
@ 2025-12-11 7:57 ` Patchwork
2025-12-11 14:56 ` ✗ Xe.CI.Full: failure " Patchwork
11 siblings, 0 replies; 18+ messages in thread
From: Patchwork @ 2025-12-11 7:57 UTC (permalink / raw)
To: Yadav, Arvind; +Cc: intel-xe
[-- Attachment #1: Type: text/plain, Size: 1653 bytes --]
== Series Details ==
Series: drm/xe/madvise: Add support for purgeable buffer objects (rev4)
URL : https://patchwork.freedesktop.org/series/156651/
State : success
== Summary ==
CI Bug Log - changes from xe-4220-3adb3f4aa5a8563ee9c1f6e137827b740e3ab40b_BAT -> xe-pw-156651v4_BAT
====================================================
Summary
-------
**SUCCESS**
No regressions found.
Participating hosts (12 -> 12)
------------------------------
No changes in participating hosts
Known issues
------------
Here are the changes found in xe-pw-156651v4_BAT that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@xe_waitfence@engine:
- bat-dg2-oem2: [PASS][1] -> [FAIL][2] ([Intel XE#6519])
[1]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4220-3adb3f4aa5a8563ee9c1f6e137827b740e3ab40b/bat-dg2-oem2/igt@xe_waitfence@engine.html
[2]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156651v4/bat-dg2-oem2/igt@xe_waitfence@engine.html
[Intel XE#6519]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6519
Build changes
-------------
* IGT: IGT_8663 -> IGT_8664
* Linux: xe-4220-3adb3f4aa5a8563ee9c1f6e137827b740e3ab40b -> xe-pw-156651v4
IGT_8663: aca02d1cc9804e5f1868b0ebfba6426e2d1244fc @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
IGT_8664: 28cc709ad89c0ef569569f19f4772d4cca354963 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
xe-4220-3adb3f4aa5a8563ee9c1f6e137827b740e3ab40b: 3adb3f4aa5a8563ee9c1f6e137827b740e3ab40b
xe-pw-156651v4: 156651v4
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156651v4/index.html
[-- Attachment #2: Type: text/html, Size: 2232 bytes --]
^ permalink raw reply [flat|nested] 18+ messages in thread* ✗ Xe.CI.Full: failure for drm/xe/madvise: Add support for purgeable buffer objects (rev4)
2025-12-10 4:30 [RFC v3 0/8] drm/xe/madvise: Add support for purgeable buffer objects Arvind Yadav
` (10 preceding siblings ...)
2025-12-11 7:57 ` ✓ Xe.CI.BAT: " Patchwork
@ 2025-12-11 14:56 ` Patchwork
11 siblings, 0 replies; 18+ messages in thread
From: Patchwork @ 2025-12-11 14:56 UTC (permalink / raw)
To: Yadav, Arvind; +Cc: intel-xe
[-- Attachment #1: Type: text/plain, Size: 39858 bytes --]
== Series Details ==
Series: drm/xe/madvise: Add support for purgeable buffer objects (rev4)
URL : https://patchwork.freedesktop.org/series/156651/
State : failure
== Summary ==
CI Bug Log - changes from xe-4220-3adb3f4aa5a8563ee9c1f6e137827b740e3ab40b_FULL -> xe-pw-156651v4_FULL
====================================================
Summary
-------
**FAILURE**
Serious unknown changes coming with xe-pw-156651v4_FULL absolutely need to be
verified manually.
If you think the reported changes have nothing to do with the changes
introduced in xe-pw-156651v4_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-156651v4_FULL:
### IGT changes ###
#### Possible regressions ####
* igt@kms_plane_lowres@tiling-none:
- shard-bmg: [PASS][1] -> [INCOMPLETE][2]
[1]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4220-3adb3f4aa5a8563ee9c1f6e137827b740e3ab40b/shard-bmg-2/igt@kms_plane_lowres@tiling-none.html
[2]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156651v4/shard-bmg-2/igt@kms_plane_lowres@tiling-none.html
Known issues
------------
Here are the changes found in xe-pw-156651v4_FULL that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@kms_big_fb@linear-8bpp-rotate-270:
- shard-bmg: NOTRUN -> [SKIP][3] ([Intel XE#2327]) +1 other test skip
[3]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156651v4/shard-bmg-2/igt@kms_big_fb@linear-8bpp-rotate-270.html
* igt@kms_big_fb@yf-tiled-64bpp-rotate-90:
- shard-lnl: NOTRUN -> [SKIP][4] ([Intel XE#1124]) +1 other test skip
[4]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156651v4/shard-lnl-3/igt@kms_big_fb@yf-tiled-64bpp-rotate-90.html
* igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-0-hflip:
- shard-bmg: NOTRUN -> [SKIP][5] ([Intel XE#1124]) +8 other tests skip
[5]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156651v4/shard-bmg-4/igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-0-hflip.html
* igt@kms_bw@connected-linear-tiling-1-displays-3840x2160p:
- shard-bmg: [PASS][6] -> [SKIP][7] ([Intel XE#367])
[6]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4220-3adb3f4aa5a8563ee9c1f6e137827b740e3ab40b/shard-bmg-3/igt@kms_bw@connected-linear-tiling-1-displays-3840x2160p.html
[7]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156651v4/shard-bmg-6/igt@kms_bw@connected-linear-tiling-1-displays-3840x2160p.html
* igt@kms_bw@connected-linear-tiling-2-displays-2160x1440p:
- shard-lnl: NOTRUN -> [SKIP][8] ([Intel XE#2191])
[8]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156651v4/shard-lnl-8/igt@kms_bw@connected-linear-tiling-2-displays-2160x1440p.html
* igt@kms_bw@connected-linear-tiling-3-displays-2560x1440p:
- shard-bmg: NOTRUN -> [SKIP][9] ([Intel XE#2314] / [Intel XE#2894])
[9]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156651v4/shard-bmg-8/igt@kms_bw@connected-linear-tiling-3-displays-2560x1440p.html
* igt@kms_bw@linear-tiling-2-displays-2160x1440p:
- shard-bmg: NOTRUN -> [SKIP][10] ([Intel XE#367])
[10]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156651v4/shard-bmg-5/igt@kms_bw@linear-tiling-2-displays-2160x1440p.html
* igt@kms_ccs@ccs-on-another-bo-4-tiled-mtl-mc-ccs:
- shard-lnl: NOTRUN -> [SKIP][11] ([Intel XE#2887]) +1 other test skip
[11]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156651v4/shard-lnl-3/igt@kms_ccs@ccs-on-another-bo-4-tiled-mtl-mc-ccs.html
* igt@kms_ccs@crc-primary-rotation-180-4-tiled-lnl-ccs@pipe-c-dp-2:
- shard-bmg: NOTRUN -> [SKIP][12] ([Intel XE#2652] / [Intel XE#787]) +17 other tests skip
[12]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156651v4/shard-bmg-1/igt@kms_ccs@crc-primary-rotation-180-4-tiled-lnl-ccs@pipe-c-dp-2.html
* igt@kms_ccs@crc-primary-suspend-4-tiled-mtl-rc-ccs-cc:
- shard-lnl: NOTRUN -> [SKIP][13] ([Intel XE#3432])
[13]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156651v4/shard-lnl-3/igt@kms_ccs@crc-primary-suspend-4-tiled-mtl-rc-ccs-cc.html
* igt@kms_ccs@crc-sprite-planes-basic-4-tiled-dg2-rc-ccs-cc:
- shard-bmg: NOTRUN -> [SKIP][14] ([Intel XE#2887]) +8 other tests skip
[14]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156651v4/shard-bmg-3/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-dg2-rc-ccs-cc.html
* igt@kms_cdclk@mode-transition-all-outputs:
- shard-bmg: NOTRUN -> [SKIP][15] ([Intel XE#2724])
[15]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156651v4/shard-bmg-8/igt@kms_cdclk@mode-transition-all-outputs.html
* igt@kms_chamelium_color@ctm-negative:
- shard-lnl: NOTRUN -> [SKIP][16] ([Intel XE#306])
[16]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156651v4/shard-lnl-1/igt@kms_chamelium_color@ctm-negative.html
* igt@kms_chamelium_color@ctm-red-to-blue:
- shard-bmg: NOTRUN -> [SKIP][17] ([Intel XE#2325])
[17]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156651v4/shard-bmg-5/igt@kms_chamelium_color@ctm-red-to-blue.html
* igt@kms_chamelium_frames@hdmi-crc-single:
- shard-bmg: NOTRUN -> [SKIP][18] ([Intel XE#2252]) +4 other tests skip
[18]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156651v4/shard-bmg-1/igt@kms_chamelium_frames@hdmi-crc-single.html
* igt@kms_chamelium_hpd@dp-hpd-enable-disable-mode:
- shard-lnl: NOTRUN -> [SKIP][19] ([Intel XE#373]) +1 other test skip
[19]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156651v4/shard-lnl-1/igt@kms_chamelium_hpd@dp-hpd-enable-disable-mode.html
* igt@kms_content_protection@uevent:
- shard-bmg: NOTRUN -> [FAIL][20] ([Intel XE#6707]) +1 other test fail
[20]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156651v4/shard-bmg-1/igt@kms_content_protection@uevent.html
* igt@kms_cursor_crc@cursor-offscreen-32x32:
- shard-bmg: NOTRUN -> [SKIP][21] ([Intel XE#2320]) +4 other tests skip
[21]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156651v4/shard-bmg-6/igt@kms_cursor_crc@cursor-offscreen-32x32.html
* igt@kms_cursor_crc@cursor-random-256x85:
- shard-lnl: NOTRUN -> [SKIP][22] ([Intel XE#1424]) +2 other tests skip
[22]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156651v4/shard-lnl-5/igt@kms_cursor_crc@cursor-random-256x85.html
* igt@kms_cursor_crc@cursor-rapid-movement-512x512:
- shard-lnl: NOTRUN -> [SKIP][23] ([Intel XE#2321])
[23]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156651v4/shard-lnl-2/igt@kms_cursor_crc@cursor-rapid-movement-512x512.html
* igt@kms_cursor_legacy@cursorb-vs-flipb-toggle:
- shard-lnl: NOTRUN -> [SKIP][24] ([Intel XE#309])
[24]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156651v4/shard-lnl-5/igt@kms_cursor_legacy@cursorb-vs-flipb-toggle.html
* igt@kms_dither@fb-8bpc-vs-panel-6bpc@pipe-a-hdmi-a-3:
- shard-bmg: NOTRUN -> [SKIP][25] ([Intel XE#1340])
[25]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156651v4/shard-bmg-5/igt@kms_dither@fb-8bpc-vs-panel-6bpc@pipe-a-hdmi-a-3.html
* igt@kms_dp_linktrain_fallback@dp-fallback:
- shard-bmg: NOTRUN -> [FAIL][26] ([Intel XE#4367])
[26]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156651v4/shard-bmg-6/igt@kms_dp_linktrain_fallback@dp-fallback.html
* igt@kms_dsc@dsc-with-output-formats:
- shard-bmg: NOTRUN -> [SKIP][27] ([Intel XE#2244]) +1 other test skip
[27]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156651v4/shard-bmg-1/igt@kms_dsc@dsc-with-output-formats.html
* igt@kms_flip@blocking-wf_vblank@b-dp2:
- shard-bmg: NOTRUN -> [FAIL][28] ([Intel XE#3650]) +3 other tests fail
[28]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156651v4/shard-bmg-6/igt@kms_flip@blocking-wf_vblank@b-dp2.html
* igt@kms_flip@flip-vs-expired-vblank-interruptible@b-edp1:
- shard-lnl: [PASS][29] -> [FAIL][30] ([Intel XE#301]) +1 other test fail
[29]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4220-3adb3f4aa5a8563ee9c1f6e137827b740e3ab40b/shard-lnl-5/igt@kms_flip@flip-vs-expired-vblank-interruptible@b-edp1.html
[30]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156651v4/shard-lnl-1/igt@kms_flip@flip-vs-expired-vblank-interruptible@b-edp1.html
* igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-64bpp-ytile-downscaling:
- shard-lnl: NOTRUN -> [SKIP][31] ([Intel XE#1401] / [Intel XE#1745])
[31]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156651v4/shard-lnl-8/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-64bpp-ytile-downscaling.html
* igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-64bpp-ytile-downscaling@pipe-a-default-mode:
- shard-lnl: NOTRUN -> [SKIP][32] ([Intel XE#1401])
[32]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156651v4/shard-lnl-8/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-64bpp-ytile-downscaling@pipe-a-default-mode.html
* igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-64bpp-ytile-upscaling:
- shard-bmg: NOTRUN -> [SKIP][33] ([Intel XE#2293] / [Intel XE#2380]) +2 other tests skip
[33]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156651v4/shard-bmg-8/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-64bpp-ytile-upscaling.html
* igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling@pipe-a-valid-mode:
- shard-bmg: NOTRUN -> [SKIP][34] ([Intel XE#2293]) +2 other tests skip
[34]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156651v4/shard-bmg-5/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling@pipe-a-valid-mode.html
* igt@kms_force_connector_basic@force-connector-state:
- shard-lnl: NOTRUN -> [SKIP][35] ([Intel XE#352])
[35]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156651v4/shard-lnl-8/igt@kms_force_connector_basic@force-connector-state.html
* igt@kms_frontbuffer_tracking@drrs-1p-primscrn-cur-indfb-draw-mmap-wc:
- shard-lnl: NOTRUN -> [SKIP][36] ([Intel XE#651]) +1 other test skip
[36]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156651v4/shard-lnl-2/igt@kms_frontbuffer_tracking@drrs-1p-primscrn-cur-indfb-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@drrs-2p-primscrn-cur-indfb-move:
- shard-bmg: NOTRUN -> [SKIP][37] ([Intel XE#2311]) +16 other tests skip
[37]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156651v4/shard-bmg-1/igt@kms_frontbuffer_tracking@drrs-2p-primscrn-cur-indfb-move.html
* igt@kms_frontbuffer_tracking@fbc-1p-offscreen-pri-indfb-draw-blt:
- shard-bmg: NOTRUN -> [SKIP][38] ([Intel XE#4141]) +10 other tests skip
[38]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156651v4/shard-bmg-8/igt@kms_frontbuffer_tracking@fbc-1p-offscreen-pri-indfb-draw-blt.html
* igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-shrfb-draw-mmap-wc:
- shard-lnl: NOTRUN -> [SKIP][39] ([Intel XE#656]) +9 other tests skip
[39]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156651v4/shard-lnl-1/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-shrfb-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@fbcdrrs-1p-offscreen-pri-shrfb-draw-render:
- shard-lnl: NOTRUN -> [SKIP][40] ([Intel XE#6312])
[40]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156651v4/shard-lnl-5/igt@kms_frontbuffer_tracking@fbcdrrs-1p-offscreen-pri-shrfb-draw-render.html
* igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-shrfb-pgflip-blt:
- shard-bmg: NOTRUN -> [SKIP][41] ([Intel XE#2313]) +21 other tests skip
[41]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156651v4/shard-bmg-5/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-shrfb-pgflip-blt.html
* igt@kms_hdr@bpc-switch@pipe-a-dp-2:
- shard-bmg: [PASS][42] -> [ABORT][43] ([Intel XE#6740]) +3 other tests abort
[42]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4220-3adb3f4aa5a8563ee9c1f6e137827b740e3ab40b/shard-bmg-2/igt@kms_hdr@bpc-switch@pipe-a-dp-2.html
[43]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156651v4/shard-bmg-8/igt@kms_hdr@bpc-switch@pipe-a-dp-2.html
* igt@kms_hdr@static-toggle:
- shard-lnl: NOTRUN -> [SKIP][44] ([Intel XE#1503])
[44]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156651v4/shard-lnl-8/igt@kms_hdr@static-toggle.html
* igt@kms_multipipe_modeset@basic-max-pipe-crc-check:
- shard-lnl: NOTRUN -> [SKIP][45] ([Intel XE#356])
[45]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156651v4/shard-lnl-5/igt@kms_multipipe_modeset@basic-max-pipe-crc-check.html
* igt@kms_plane@pixel-format-source-clamping@pipe-b-plane-0:
- shard-lnl: NOTRUN -> [FAIL][46] ([Intel XE#5195]) +2 other tests fail
[46]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156651v4/shard-lnl-2/igt@kms_plane@pixel-format-source-clamping@pipe-b-plane-0.html
* igt@kms_plane_lowres@tiling-none@pipe-c-hdmi-a-3:
- shard-bmg: [PASS][47] -> [DMESG-FAIL][48] ([Intel XE#1727] / [Intel XE#6740])
[47]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4220-3adb3f4aa5a8563ee9c1f6e137827b740e3ab40b/shard-bmg-2/igt@kms_plane_lowres@tiling-none@pipe-c-hdmi-a-3.html
[48]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156651v4/shard-bmg-2/igt@kms_plane_lowres@tiling-none@pipe-c-hdmi-a-3.html
* igt@kms_plane_multiple@2x-tiling-yf:
- shard-bmg: NOTRUN -> [SKIP][49] ([Intel XE#5021]) +1 other test skip
[49]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156651v4/shard-bmg-1/igt@kms_plane_multiple@2x-tiling-yf.html
* igt@kms_pm_backlight@bad-brightness:
- shard-bmg: NOTRUN -> [SKIP][50] ([Intel XE#870])
[50]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156651v4/shard-bmg-1/igt@kms_pm_backlight@bad-brightness.html
* igt@kms_pm_dc@dc3co-vpb-simulation:
- shard-bmg: NOTRUN -> [SKIP][51] ([Intel XE#2391])
[51]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156651v4/shard-bmg-2/igt@kms_pm_dc@dc3co-vpb-simulation.html
* igt@kms_pm_dc@dc6-psr:
- shard-bmg: NOTRUN -> [SKIP][52] ([Intel XE#2392])
[52]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156651v4/shard-bmg-2/igt@kms_pm_dc@dc6-psr.html
* igt@kms_psr2_sf@fbc-pr-plane-move-sf-dmg-area:
- shard-bmg: NOTRUN -> [SKIP][53] ([Intel XE#1406] / [Intel XE#1489]) +3 other tests skip
[53]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156651v4/shard-bmg-2/igt@kms_psr2_sf@fbc-pr-plane-move-sf-dmg-area.html
* igt@kms_psr2_sf@fbc-psr2-cursor-plane-move-continuous-sf@pipe-a-edp-1:
- shard-lnl: NOTRUN -> [SKIP][54] ([Intel XE#1406] / [Intel XE#4608]) +3 other tests skip
[54]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156651v4/shard-lnl-4/igt@kms_psr2_sf@fbc-psr2-cursor-plane-move-continuous-sf@pipe-a-edp-1.html
* igt@kms_psr2_sf@fbc-psr2-overlay-plane-move-continuous-exceed-sf:
- shard-lnl: NOTRUN -> [SKIP][55] ([Intel XE#1406] / [Intel XE#2893] / [Intel XE#4608]) +1 other test skip
[55]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156651v4/shard-lnl-8/igt@kms_psr2_sf@fbc-psr2-overlay-plane-move-continuous-exceed-sf.html
* igt@kms_psr@pr-dpms:
- shard-lnl: NOTRUN -> [SKIP][56] ([Intel XE#1406])
[56]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156651v4/shard-lnl-8/igt@kms_psr@pr-dpms.html
* igt@kms_psr@psr2-no-drrs:
- shard-bmg: NOTRUN -> [SKIP][57] ([Intel XE#1406] / [Intel XE#2234] / [Intel XE#2850]) +6 other tests skip
[57]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156651v4/shard-bmg-5/igt@kms_psr@psr2-no-drrs.html
* igt@kms_psr@psr2-primary-render:
- shard-bmg: NOTRUN -> [SKIP][58] ([Intel XE#1406] / [Intel XE#2234])
[58]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156651v4/shard-bmg-2/igt@kms_psr@psr2-primary-render.html
* igt@kms_rotation_crc@primary-yf-tiled-reflect-x-270:
- shard-lnl: NOTRUN -> [SKIP][59] ([Intel XE#3414] / [Intel XE#3904])
[59]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156651v4/shard-lnl-2/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-270.html
* igt@kms_rotation_crc@sprite-rotation-90:
- shard-bmg: NOTRUN -> [SKIP][60] ([Intel XE#3414] / [Intel XE#3904]) +2 other tests skip
[60]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156651v4/shard-bmg-8/igt@kms_rotation_crc@sprite-rotation-90.html
* igt@kms_sharpness_filter@invalid-filter-with-scaler:
- shard-bmg: NOTRUN -> [SKIP][61] ([Intel XE#6503]) +1 other test skip
[61]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156651v4/shard-bmg-4/igt@kms_sharpness_filter@invalid-filter-with-scaler.html
* igt@xe_compute_preempt@compute-preempt-many-vram:
- shard-lnl: NOTRUN -> [SKIP][62] ([Intel XE#5191])
[62]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156651v4/shard-lnl-4/igt@xe_compute_preempt@compute-preempt-many-vram.html
* igt@xe_eudebug@discovery-empty-clients:
- shard-lnl: NOTRUN -> [SKIP][63] ([Intel XE#4837])
[63]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156651v4/shard-lnl-4/igt@xe_eudebug@discovery-empty-clients.html
* igt@xe_eudebug@vma-ufence:
- shard-bmg: NOTRUN -> [SKIP][64] ([Intel XE#4837]) +5 other tests skip
[64]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156651v4/shard-bmg-3/igt@xe_eudebug@vma-ufence.html
* igt@xe_eudebug_online@pagefault-one-of-many:
- shard-bmg: NOTRUN -> [SKIP][65] ([Intel XE#6665])
[65]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156651v4/shard-bmg-4/igt@xe_eudebug_online@pagefault-one-of-many.html
* igt@xe_eudebug_online@resume-dss:
- shard-lnl: NOTRUN -> [SKIP][66] ([Intel XE#4837] / [Intel XE#6665]) +1 other test skip
[66]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156651v4/shard-lnl-1/igt@xe_eudebug_online@resume-dss.html
* igt@xe_eudebug_online@single-step-one:
- shard-bmg: NOTRUN -> [SKIP][67] ([Intel XE#4837] / [Intel XE#6665]) +2 other tests skip
[67]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156651v4/shard-bmg-5/igt@xe_eudebug_online@single-step-one.html
* igt@xe_evict@evict-beng-cm-threads-large-multi-vm:
- shard-lnl: NOTRUN -> [SKIP][68] ([Intel XE#688]) +1 other test skip
[68]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156651v4/shard-lnl-3/igt@xe_evict@evict-beng-cm-threads-large-multi-vm.html
* igt@xe_evict@evict-beng-mixed-many-threads-small:
- shard-bmg: [PASS][69] -> [INCOMPLETE][70] ([Intel XE#6321])
[69]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4220-3adb3f4aa5a8563ee9c1f6e137827b740e3ab40b/shard-bmg-6/igt@xe_evict@evict-beng-mixed-many-threads-small.html
[70]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156651v4/shard-bmg-8/igt@xe_evict@evict-beng-mixed-many-threads-small.html
* igt@xe_exec_basic@multigpu-many-execqueues-many-vm-bindexecqueue-userptr-invalidate-race:
- shard-lnl: NOTRUN -> [SKIP][71] ([Intel XE#1392]) +1 other test skip
[71]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156651v4/shard-lnl-8/igt@xe_exec_basic@multigpu-many-execqueues-many-vm-bindexecqueue-userptr-invalidate-race.html
* igt@xe_exec_basic@multigpu-no-exec-bindexecqueue:
- shard-bmg: NOTRUN -> [SKIP][72] ([Intel XE#2322]) +5 other tests skip
[72]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156651v4/shard-bmg-8/igt@xe_exec_basic@multigpu-no-exec-bindexecqueue.html
* igt@xe_exec_system_allocator@many-64k-mmap-free-huge:
- shard-bmg: NOTRUN -> [SKIP][73] ([Intel XE#5007])
[73]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156651v4/shard-bmg-3/igt@xe_exec_system_allocator@many-64k-mmap-free-huge.html
* igt@xe_exec_system_allocator@process-many-large-execqueues-mmap-new-huge:
- shard-bmg: NOTRUN -> [SKIP][74] ([Intel XE#4943]) +12 other tests skip
[74]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156651v4/shard-bmg-1/igt@xe_exec_system_allocator@process-many-large-execqueues-mmap-new-huge.html
* igt@xe_exec_system_allocator@threads-shared-vm-many-large-mmap-new-huge-nomemset:
- shard-lnl: NOTRUN -> [SKIP][75] ([Intel XE#4943]) +3 other tests skip
[75]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156651v4/shard-lnl-8/igt@xe_exec_system_allocator@threads-shared-vm-many-large-mmap-new-huge-nomemset.html
* igt@xe_fault_injection@probe-fail-guc-xe_guc_ct_send_recv:
- shard-bmg: NOTRUN -> [ABORT][76] ([Intel XE#5466] / [Intel XE#5530])
[76]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156651v4/shard-bmg-6/igt@xe_fault_injection@probe-fail-guc-xe_guc_ct_send_recv.html
* igt@xe_module_load@load:
- shard-bmg: ([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], [PASS][96], [PASS][97], [PASS][98], [PASS][99], [PASS][100], [PASS][101]) -> ([PASS][102], [SKIP][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]) ([Intel XE#2457])
[77]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4220-3adb3f4aa5a8563ee9c1f6e137827b740e3ab40b/shard-bmg-6/igt@xe_module_load@load.html
[78]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4220-3adb3f4aa5a8563ee9c1f6e137827b740e3ab40b/shard-bmg-1/igt@xe_module_load@load.html
[79]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4220-3adb3f4aa5a8563ee9c1f6e137827b740e3ab40b/shard-bmg-3/igt@xe_module_load@load.html
[80]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4220-3adb3f4aa5a8563ee9c1f6e137827b740e3ab40b/shard-bmg-4/igt@xe_module_load@load.html
[81]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4220-3adb3f4aa5a8563ee9c1f6e137827b740e3ab40b/shard-bmg-5/igt@xe_module_load@load.html
[82]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4220-3adb3f4aa5a8563ee9c1f6e137827b740e3ab40b/shard-bmg-5/igt@xe_module_load@load.html
[83]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4220-3adb3f4aa5a8563ee9c1f6e137827b740e3ab40b/shard-bmg-5/igt@xe_module_load@load.html
[84]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4220-3adb3f4aa5a8563ee9c1f6e137827b740e3ab40b/shard-bmg-3/igt@xe_module_load@load.html
[85]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4220-3adb3f4aa5a8563ee9c1f6e137827b740e3ab40b/shard-bmg-3/igt@xe_module_load@load.html
[86]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4220-3adb3f4aa5a8563ee9c1f6e137827b740e3ab40b/shard-bmg-3/igt@xe_module_load@load.html
[87]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4220-3adb3f4aa5a8563ee9c1f6e137827b740e3ab40b/shard-bmg-4/igt@xe_module_load@load.html
[88]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4220-3adb3f4aa5a8563ee9c1f6e137827b740e3ab40b/shard-bmg-2/igt@xe_module_load@load.html
[89]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4220-3adb3f4aa5a8563ee9c1f6e137827b740e3ab40b/shard-bmg-8/igt@xe_module_load@load.html
[90]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4220-3adb3f4aa5a8563ee9c1f6e137827b740e3ab40b/shard-bmg-8/igt@xe_module_load@load.html
[91]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4220-3adb3f4aa5a8563ee9c1f6e137827b740e3ab40b/shard-bmg-2/igt@xe_module_load@load.html
[92]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4220-3adb3f4aa5a8563ee9c1f6e137827b740e3ab40b/shard-bmg-4/igt@xe_module_load@load.html
[93]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4220-3adb3f4aa5a8563ee9c1f6e137827b740e3ab40b/shard-bmg-8/igt@xe_module_load@load.html
[94]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4220-3adb3f4aa5a8563ee9c1f6e137827b740e3ab40b/shard-bmg-8/igt@xe_module_load@load.html
[95]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4220-3adb3f4aa5a8563ee9c1f6e137827b740e3ab40b/shard-bmg-1/igt@xe_module_load@load.html
[96]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4220-3adb3f4aa5a8563ee9c1f6e137827b740e3ab40b/shard-bmg-1/igt@xe_module_load@load.html
[97]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4220-3adb3f4aa5a8563ee9c1f6e137827b740e3ab40b/shard-bmg-2/igt@xe_module_load@load.html
[98]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4220-3adb3f4aa5a8563ee9c1f6e137827b740e3ab40b/shard-bmg-5/igt@xe_module_load@load.html
[99]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4220-3adb3f4aa5a8563ee9c1f6e137827b740e3ab40b/shard-bmg-6/igt@xe_module_load@load.html
[100]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4220-3adb3f4aa5a8563ee9c1f6e137827b740e3ab40b/shard-bmg-6/igt@xe_module_load@load.html
[101]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4220-3adb3f4aa5a8563ee9c1f6e137827b740e3ab40b/shard-bmg-6/igt@xe_module_load@load.html
[102]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156651v4/shard-bmg-5/igt@xe_module_load@load.html
[103]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156651v4/shard-bmg-2/igt@xe_module_load@load.html
[104]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156651v4/shard-bmg-2/igt@xe_module_load@load.html
[105]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156651v4/shard-bmg-2/igt@xe_module_load@load.html
[106]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156651v4/shard-bmg-2/igt@xe_module_load@load.html
[107]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156651v4/shard-bmg-1/igt@xe_module_load@load.html
[108]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156651v4/shard-bmg-1/igt@xe_module_load@load.html
[109]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156651v4/shard-bmg-1/igt@xe_module_load@load.html
[110]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156651v4/shard-bmg-1/igt@xe_module_load@load.html
[111]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156651v4/shard-bmg-8/igt@xe_module_load@load.html
[112]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156651v4/shard-bmg-8/igt@xe_module_load@load.html
[113]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156651v4/shard-bmg-6/igt@xe_module_load@load.html
[114]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156651v4/shard-bmg-6/igt@xe_module_load@load.html
[115]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156651v4/shard-bmg-8/igt@xe_module_load@load.html
[116]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156651v4/shard-bmg-8/igt@xe_module_load@load.html
[117]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156651v4/shard-bmg-6/igt@xe_module_load@load.html
[118]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156651v4/shard-bmg-3/igt@xe_module_load@load.html
[119]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156651v4/shard-bmg-3/igt@xe_module_load@load.html
[120]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156651v4/shard-bmg-3/igt@xe_module_load@load.html
[121]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156651v4/shard-bmg-5/igt@xe_module_load@load.html
[122]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156651v4/shard-bmg-4/igt@xe_module_load@load.html
[123]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156651v4/shard-bmg-5/igt@xe_module_load@load.html
[124]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156651v4/shard-bmg-5/igt@xe_module_load@load.html
[125]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156651v4/shard-bmg-4/igt@xe_module_load@load.html
[126]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156651v4/shard-bmg-4/igt@xe_module_load@load.html
[127]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156651v4/shard-bmg-4/igt@xe_module_load@load.html
* igt@xe_pat@pat-index-xelp:
- shard-lnl: NOTRUN -> [SKIP][128] ([Intel XE#977])
[128]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156651v4/shard-lnl-1/igt@xe_pat@pat-index-xelp.html
* igt@xe_pm@s2idle-d3cold-basic-exec:
- shard-bmg: NOTRUN -> [SKIP][129] ([Intel XE#2284]) +1 other test skip
[129]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156651v4/shard-bmg-5/igt@xe_pm@s2idle-d3cold-basic-exec.html
* igt@xe_pmu@engine-activity-accuracy-90@engine-drm_xe_engine_class_compute0:
- shard-lnl: [PASS][130] -> [FAIL][131] ([Intel XE#6251])
[130]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4220-3adb3f4aa5a8563ee9c1f6e137827b740e3ab40b/shard-lnl-2/igt@xe_pmu@engine-activity-accuracy-90@engine-drm_xe_engine_class_compute0.html
[131]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156651v4/shard-lnl-3/igt@xe_pmu@engine-activity-accuracy-90@engine-drm_xe_engine_class_compute0.html
* igt@xe_pxp@display-pxp-fb:
- shard-bmg: NOTRUN -> [SKIP][132] ([Intel XE#4733]) +3 other tests skip
[132]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156651v4/shard-bmg-4/igt@xe_pxp@display-pxp-fb.html
* igt@xe_query@multigpu-query-gt-list:
- shard-lnl: NOTRUN -> [SKIP][133] ([Intel XE#944]) +1 other test skip
[133]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156651v4/shard-lnl-3/igt@xe_query@multigpu-query-gt-list.html
* igt@xe_query@multigpu-query-invalid-uc-fw-version-mbz:
- shard-bmg: NOTRUN -> [SKIP][134] ([Intel XE#944]) +2 other tests skip
[134]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156651v4/shard-bmg-8/igt@xe_query@multigpu-query-invalid-uc-fw-version-mbz.html
#### Possible fixes ####
* igt@kms_async_flips@async-flip-with-page-flip-events-linear-atomic@pipe-c-edp-1:
- shard-lnl: [FAIL][135] ([Intel XE#6054]) -> [PASS][136]
[135]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4220-3adb3f4aa5a8563ee9c1f6e137827b740e3ab40b/shard-lnl-1/igt@kms_async_flips@async-flip-with-page-flip-events-linear-atomic@pipe-c-edp-1.html
[136]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156651v4/shard-lnl-2/igt@kms_async_flips@async-flip-with-page-flip-events-linear-atomic@pipe-c-edp-1.html
* igt@kms_cursor_edge_walk@256x256-top-edge@pipe-d-dp-2:
- shard-bmg: [FAIL][137] -> [PASS][138] +2 other tests pass
[137]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4220-3adb3f4aa5a8563ee9c1f6e137827b740e3ab40b/shard-bmg-2/igt@kms_cursor_edge_walk@256x256-top-edge@pipe-d-dp-2.html
[138]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156651v4/shard-bmg-5/igt@kms_cursor_edge_walk@256x256-top-edge@pipe-d-dp-2.html
* igt@kms_cursor_legacy@flip-vs-cursor-legacy:
- shard-bmg: [FAIL][139] ([Intel XE#4633]) -> [PASS][140]
[139]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4220-3adb3f4aa5a8563ee9c1f6e137827b740e3ab40b/shard-bmg-8/igt@kms_cursor_legacy@flip-vs-cursor-legacy.html
[140]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156651v4/shard-bmg-8/igt@kms_cursor_legacy@flip-vs-cursor-legacy.html
* igt@kms_flip@flip-vs-suspend@c-hdmi-a3:
- shard-bmg: [INCOMPLETE][141] ([Intel XE#2049] / [Intel XE#2597]) -> [PASS][142] +1 other test pass
[141]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4220-3adb3f4aa5a8563ee9c1f6e137827b740e3ab40b/shard-bmg-2/igt@kms_flip@flip-vs-suspend@c-hdmi-a3.html
[142]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156651v4/shard-bmg-3/igt@kms_flip@flip-vs-suspend@c-hdmi-a3.html
* igt@kms_flip@modeset-vs-vblank-race@d-dp2:
- shard-bmg: [FAIL][143] ([Intel XE#3650]) -> [PASS][144] +3 other tests pass
[143]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4220-3adb3f4aa5a8563ee9c1f6e137827b740e3ab40b/shard-bmg-6/igt@kms_flip@modeset-vs-vblank-race@d-dp2.html
[144]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156651v4/shard-bmg-4/igt@kms_flip@modeset-vs-vblank-race@d-dp2.html
#### Warnings ####
* igt@kms_async_flips@async-flip-with-page-flip-events-linear-atomic:
- shard-lnl: [FAIL][145] ([Intel XE#6054] / [Intel XE#6676]) -> [FAIL][146] ([Intel XE#6676])
[145]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4220-3adb3f4aa5a8563ee9c1f6e137827b740e3ab40b/shard-lnl-1/igt@kms_async_flips@async-flip-with-page-flip-events-linear-atomic.html
[146]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156651v4/shard-lnl-2/igt@kms_async_flips@async-flip-with-page-flip-events-linear-atomic.html
* igt@kms_hdr@invalid-hdr:
- shard-bmg: [ABORT][147] ([Intel XE#6740]) -> [SKIP][148] ([Intel XE#1503])
[147]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4220-3adb3f4aa5a8563ee9c1f6e137827b740e3ab40b/shard-bmg-5/igt@kms_hdr@invalid-hdr.html
[148]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156651v4/shard-bmg-4/igt@kms_hdr@invalid-hdr.html
* igt@kms_tiled_display@basic-test-pattern:
- shard-bmg: [FAIL][149] ([Intel XE#1729]) -> [SKIP][150] ([Intel XE#2426])
[149]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4220-3adb3f4aa5a8563ee9c1f6e137827b740e3ab40b/shard-bmg-6/igt@kms_tiled_display@basic-test-pattern.html
[150]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156651v4/shard-bmg-8/igt@kms_tiled_display@basic-test-pattern.html
[Intel XE#1124]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1124
[Intel XE#1340]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1340
[Intel XE#1392]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1392
[Intel XE#1401]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1401
[Intel XE#1406]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1406
[Intel XE#1424]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1424
[Intel XE#1489]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1489
[Intel XE#1503]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1503
[Intel XE#1727]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1727
[Intel XE#1729]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1729
[Intel XE#1745]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1745
[Intel XE#2049]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2049
[Intel XE#2191]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2191
[Intel XE#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#2293]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2293
[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#2314]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2314
[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#2325]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2325
[Intel XE#2327]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2327
[Intel XE#2380]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2380
[Intel XE#2391]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2391
[Intel XE#2392]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2392
[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#2597]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2597
[Intel XE#2652]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2652
[Intel XE#2724]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2724
[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#2894]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2894
[Intel XE#301]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/301
[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#3414]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3414
[Intel XE#3432]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3432
[Intel XE#352]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/352
[Intel XE#356]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/356
[Intel XE#3650]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3650
[Intel XE#367]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/367
[Intel XE#373]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/373
[Intel XE#3904]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3904
[Intel XE#4141]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4141
[Intel XE#4367]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4367
[Intel XE#4608]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4608
[Intel XE#4633]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4633
[Intel XE#4733]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4733
[Intel XE#4837]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4837
[Intel XE#4943]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4943
[Intel XE#5007]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5007
[Intel XE#5021]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5021
[Intel XE#5191]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5191
[Intel XE#5195]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5195
[Intel XE#5466]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5466
[Intel XE#5530]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5530
[Intel XE#6054]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6054
[Intel XE#6251]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6251
[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#656]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/656
[Intel XE#6665]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6665
[Intel XE#6676]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6676
[Intel XE#6707]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6707
[Intel XE#6740]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6740
[Intel XE#688]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/688
[Intel XE#787]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/787
[Intel XE#870]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/870
[Intel XE#944]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/944
[Intel XE#977]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/977
Build changes
-------------
* IGT: IGT_8663 -> IGT_8664
* Linux: xe-4220-3adb3f4aa5a8563ee9c1f6e137827b740e3ab40b -> xe-pw-156651v4
IGT_8663: aca02d1cc9804e5f1868b0ebfba6426e2d1244fc @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
IGT_8664: 28cc709ad89c0ef569569f19f4772d4cca354963 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
xe-4220-3adb3f4aa5a8563ee9c1f6e137827b740e3ab40b: 3adb3f4aa5a8563ee9c1f6e137827b740e3ab40b
xe-pw-156651v4: 156651v4
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156651v4/index.html
[-- Attachment #2: Type: text/html, Size: 44659 bytes --]
^ permalink raw reply [flat|nested] 18+ messages in thread