intel-xe.lists.freedesktop.org archive mirror
 help / color / mirror / Atom feed
* [PATCH 0/5] drm/xe: CRI support in gt_throttle + refactors
@ 2025-10-23 16:56 Lucas De Marchi
  2025-10-23 16:56 ` [PATCH 1/5] drm/xe/cri: Add new performance limit reasons bits Lucas De Marchi
                   ` (8 more replies)
  0 siblings, 9 replies; 17+ messages in thread
From: Lucas De Marchi @ 2025-10-23 16:56 UTC (permalink / raw)
  To: intel-xe; +Cc: Lucas De Marchi, Raag Jadav, Sk Anirban

First patch was extracted from the rest of the CRI support series:
https://patch.msgid.link/20251021-cri-v1-0-bf11e61d9f49@intel.com

I did some minor tweaks for a v2 of that patch: something that could be
considered for merging since it follows the style of that file.

Patches on top are refactors to simplify the code and reduce its
verbosity/boilerplate.

Signed-off-by: Lucas De Marchi <lucas.demarchi@intel.com>
---
Lucas De Marchi (4):
      drm/xe/gt_throttle: Tidy up perf reasons reading
      drm/xe/gt_throttle: Always read and mask
      drm/xe/gt_throttle: Add throttle_to_gt()
      drm/xe/gt_throttle: Tidy up attribute definition

Sk Anirban (1):
      drm/xe/cri: Add new performance limit reasons bits

 drivers/gpu/drm/xe/regs/xe_gt_regs.h |  13 ++
 drivers/gpu/drm/xe/xe_gt_throttle.c  | 293 +++++++++++++++++++++++------------
 2 files changed, 205 insertions(+), 101 deletions(-)

base-commit: c63ccee28ae7ab4cb57a2433314f08c71da914ff
change-id: 20251023-gt-throttle-cri-06f3c9d33c44

Lucas De Marchi


^ permalink raw reply	[flat|nested] 17+ messages in thread

* [PATCH 1/5] drm/xe/cri: Add new performance limit reasons bits
  2025-10-23 16:56 [PATCH 0/5] drm/xe: CRI support in gt_throttle + refactors Lucas De Marchi
@ 2025-10-23 16:56 ` Lucas De Marchi
  2025-10-24  5:55   ` Raag Jadav
  2025-10-23 16:56 ` [PATCH 2/5] drm/xe/gt_throttle: Tidy up perf reasons reading Lucas De Marchi
                   ` (7 subsequent siblings)
  8 siblings, 1 reply; 17+ messages in thread
From: Lucas De Marchi @ 2025-10-23 16:56 UTC (permalink / raw)
  To: intel-xe; +Cc: Lucas De Marchi, Raag Jadav, Sk Anirban

From: Sk Anirban <sk.anirban@intel.com>

Add support for additional performance limit reasons in
GT0_PERF_LIMIT_REASONS register.

Signed-off-by: Sk Anirban <sk.anirban@intel.com>
Signed-off-by: Lucas De Marchi <lucas.demarchi@intel.com>
---
v2:
 - Tidy up read_status() and register definition
 - s/throttle_cri_specific_attrs/cri_throttle_attrs/
---
 drivers/gpu/drm/xe/regs/xe_gt_regs.h |  13 ++
 drivers/gpu/drm/xe/xe_gt_throttle.c  | 251 ++++++++++++++++++++++++++++++++++-
 2 files changed, 261 insertions(+), 3 deletions(-)

diff --git a/drivers/gpu/drm/xe/regs/xe_gt_regs.h b/drivers/gpu/drm/xe/regs/xe_gt_regs.h
index 3545e0be06dae..c316a4e8165b1 100644
--- a/drivers/gpu/drm/xe/regs/xe_gt_regs.h
+++ b/drivers/gpu/drm/xe/regs/xe_gt_regs.h
@@ -589,6 +589,7 @@
 #define GT_GFX_RC6				XE_REG(0x138108)
 
 #define GT0_PERF_LIMIT_REASONS			XE_REG(0x1381a8)
+/* Common performance limit reason bits - available on all platforms */
 #define   GT0_PERF_LIMIT_REASONS_MASK		0xde3
 #define   PROCHOT_MASK				REG_BIT(0)
 #define   THERMAL_LIMIT_MASK			REG_BIT(1)
@@ -598,6 +599,18 @@
 #define   POWER_LIMIT_4_MASK			REG_BIT(8)
 #define   POWER_LIMIT_1_MASK			REG_BIT(10)
 #define   POWER_LIMIT_2_MASK			REG_BIT(11)
+/* Platform-specific performance limit reason bits - for Crescent Island */
+#define   CRI_PERF_LIMIT_REASONS_MASK		0xfdff
+#define   SOC_THERMAL_LIMIT_MASK		REG_BIT(1)
+#define   MEM_THERMAL_MASK			REG_BIT(2)
+#define   VR_THERMAL_MASK			REG_BIT(3)
+#define   ICCMAX_MASK				REG_BIT(4)
+#define   SOC_AVG_THERMAL_MASK			REG_BIT(6)
+#define   FASTVMODE_MASK			REG_BIT(7)
+#define   PSYS_PL1_MASK				REG_BIT(12)
+#define   PSYS_PL2_MASK				REG_BIT(13)
+#define   P0_FREQ_MASK				REG_BIT(14)
+#define   PSYS_CRIT_MASK			REG_BIT(15)
 
 #define GT_PERF_STATUS				XE_REG(0x1381b4)
 #define   VOLTAGE_MASK				REG_GENMASK(10, 0)
diff --git a/drivers/gpu/drm/xe/xe_gt_throttle.c b/drivers/gpu/drm/xe/xe_gt_throttle.c
index aa962c783cdf7..a4fe43f4663dd 100644
--- a/drivers/gpu/drm/xe/xe_gt_throttle.c
+++ b/drivers/gpu/drm/xe/xe_gt_throttle.c
@@ -12,6 +12,7 @@
 #include "xe_gt_sysfs.h"
 #include "xe_gt_throttle.h"
 #include "xe_mmio.h"
+#include "xe_platform_types.h"
 #include "xe_pm.h"
 
 /**
@@ -28,6 +29,24 @@
  * device/gt#/freq0/throttle/reason_ratl - Frequency throttle due to RATL
  * device/gt#/freq0/throttle/reason_vr_thermalert - Frequency throttle due to VR THERMALERT
  * device/gt#/freq0/throttle/reason_vr_tdc -  Frequency throttle due to VR TDC
+ *
+ * The following attributes are available on Crescent Island platform:
+ * device/gt#/freq0/throttle/status - Overall throttle status
+ * device/gt#/freq0/throttle/reason_pl1 - Frequency throttle due to package PL1
+ * device/gt#/freq0/throttle/reason_pl2 - Frequency throttle due to package PL2
+ * device/gt#/freq0/throttle/reason_pl4 - Frequency throttle due to PL4
+ * device/gt#/freq0/throttle/reason_prochot - Frequency throttle due to prochot
+ * device/gt#/freq0/throttle/reason_soc_thermal - Frequency throttle due to SoC thermal
+ * device/gt#/freq0/throttle/reason_mem_thermal - Frequency throttle due to memory thermal
+ * device/gt#/freq0/throttle/reason_vr_thermal - Frequency throttle due to VR thermal
+ * device/gt#/freq0/throttle/reason_iccmax - Frequency throttle due to ICCMAX
+ * device/gt#/freq0/throttle/reason_ratl - Frequency throttle due to RATL thermal algorithm
+ * device/gt#/freq0/throttle/reason_soc_avg_thermal - Frequency throttle due to SoC average temp
+ * device/gt#/freq0/throttle/reason_fastvmode - Frequency throttle due to VR is hitting FastVMode
+ * device/gt#/freq0/throttle/reason_psys_pl1 - Frequency throttle due to PSYS PL1
+ * device/gt#/freq0/throttle/reason_psys_pl2 - Frequency throttle due to PSYS PL2
+ * device/gt#/freq0/throttle/reason_p0_freq - Frequency throttle due to P0 frequency
+ * device/gt#/freq0/throttle/reason_psys_crit - Frequency throttle due to PSYS critical
  */
 
 static struct xe_gt *
@@ -52,9 +71,17 @@ u32 xe_gt_throttle_get_limit_reasons(struct xe_gt *gt)
 
 static u32 read_status(struct xe_gt *gt)
 {
-	u32 status = xe_gt_throttle_get_limit_reasons(gt) & GT0_PERF_LIMIT_REASONS_MASK;
+	struct xe_device *xe = gt_to_xe(gt);
+	u32 status, mask;
+
+	if (xe->info.platform == XE_CRESCENTISLAND)
+		mask = CRI_PERF_LIMIT_REASONS_MASK;
+	else
+		mask = GT0_PERF_LIMIT_REASONS_MASK;
 
+	status = xe_gt_throttle_get_limit_reasons(gt) & mask;
 	xe_gt_dbg(gt, "throttle reasons: 0x%08x\n", status);
+
 	return status;
 }
 
@@ -86,6 +113,13 @@ static u32 read_reason_thermal(struct xe_gt *gt)
 	return thermal;
 }
 
+static u32 read_reason_soc_thermal(struct xe_gt *gt)
+{
+	u32 thermal = xe_gt_throttle_get_limit_reasons(gt) & SOC_THERMAL_LIMIT_MASK;
+
+	return thermal;
+}
+
 static u32 read_reason_prochot(struct xe_gt *gt)
 {
 	u32 prochot = xe_gt_throttle_get_limit_reasons(gt) & PROCHOT_MASK;
@@ -107,6 +141,13 @@ static u32 read_reason_vr_thermalert(struct xe_gt *gt)
 	return thermalert;
 }
 
+static u32 read_reason_soc_avg_thermal(struct xe_gt *gt)
+{
+	u32 soc_avg_thermal = xe_gt_throttle_get_limit_reasons(gt) & SOC_AVG_THERMAL_MASK;
+
+	return soc_avg_thermal;
+}
+
 static u32 read_reason_vr_tdc(struct xe_gt *gt)
 {
 	u32 tdc = xe_gt_throttle_get_limit_reasons(gt) & VR_TDC_MASK;
@@ -114,6 +155,62 @@ static u32 read_reason_vr_tdc(struct xe_gt *gt)
 	return tdc;
 }
 
+static u32 read_reason_fastvmode(struct xe_gt *gt)
+{
+	u32 fastvmode = xe_gt_throttle_get_limit_reasons(gt) & FASTVMODE_MASK;
+
+	return fastvmode;
+}
+
+static u32 read_reason_mem_thermal(struct xe_gt *gt)
+{
+	u32 mem_thermal = xe_gt_throttle_get_limit_reasons(gt) & MEM_THERMAL_MASK;
+
+	return mem_thermal;
+}
+
+static u32 read_reason_vr_thermal(struct xe_gt *gt)
+{
+	u32 vr_thermal = xe_gt_throttle_get_limit_reasons(gt) & VR_THERMAL_MASK;
+
+	return vr_thermal;
+}
+
+static u32 read_reason_iccmax(struct xe_gt *gt)
+{
+	u32 iccmax = xe_gt_throttle_get_limit_reasons(gt) & ICCMAX_MASK;
+
+	return iccmax;
+}
+
+static u32 read_reason_psys_pl1(struct xe_gt *gt)
+{
+	u32 psys_pl1 = xe_gt_throttle_get_limit_reasons(gt) & PSYS_PL1_MASK;
+
+	return psys_pl1;
+}
+
+static u32 read_reason_psys_pl2(struct xe_gt *gt)
+{
+	u32 psys_pl2 = xe_gt_throttle_get_limit_reasons(gt) & PSYS_PL2_MASK;
+
+	return psys_pl2;
+}
+
+static u32 read_reason_p0_freq(struct xe_gt *gt)
+{
+	u32 p0_freq = xe_gt_throttle_get_limit_reasons(gt) & P0_FREQ_MASK;
+
+	return p0_freq;
+}
+
+static u32 read_reason_psys_crit(struct xe_gt *gt)
+{
+	u32 psys_crit = xe_gt_throttle_get_limit_reasons(gt) & PSYS_CRIT_MASK;
+
+	return psys_crit;
+}
+
 static ssize_t status_show(struct kobject *kobj,
 			   struct kobj_attribute *attr, char *buff)
 {
@@ -169,6 +266,17 @@ static ssize_t reason_thermal_show(struct kobject *kobj,
 }
 static struct kobj_attribute attr_reason_thermal = __ATTR_RO(reason_thermal);
 
+static ssize_t reason_soc_thermal_show(struct kobject *kobj,
+				       struct kobj_attribute *attr, char *buff)
+{
+	struct device *dev = kobj_to_dev(kobj);
+	struct xe_gt *gt = dev_to_gt(dev);
+	bool thermal = !!read_reason_soc_thermal(gt);
+
+	return sysfs_emit(buff, "%u\n", thermal);
+}
+static struct kobj_attribute attr_reason_soc_thermal = __ATTR_RO(reason_soc_thermal);
+
 static ssize_t reason_prochot_show(struct kobject *kobj,
 				   struct kobj_attribute *attr, char *buff)
 {
@@ -202,6 +310,17 @@ static ssize_t reason_vr_thermalert_show(struct kobject *kobj,
 }
 static struct kobj_attribute attr_reason_vr_thermalert = __ATTR_RO(reason_vr_thermalert);
 
+static ssize_t reason_soc_avg_thermal_show(struct kobject *kobj,
+					   struct kobj_attribute *attr, char *buff)
+{
+	struct device *dev = kobj_to_dev(kobj);
+	struct xe_gt *gt = dev_to_gt(dev);
+	bool avg_thermalert = !!read_reason_soc_avg_thermal(gt);
+
+	return sysfs_emit(buff, "%u\n", avg_thermalert);
+}
+static struct kobj_attribute attr_reason_soc_avg_thermal = __ATTR_RO(reason_soc_avg_thermal);
+
 static ssize_t reason_vr_tdc_show(struct kobject *kobj,
 				  struct kobj_attribute *attr, char *buff)
 {
@@ -213,6 +332,94 @@ static ssize_t reason_vr_tdc_show(struct kobject *kobj,
 }
 static struct kobj_attribute attr_reason_vr_tdc = __ATTR_RO(reason_vr_tdc);
 
+static ssize_t reason_fastvmode_show(struct kobject *kobj,
+				     struct kobj_attribute *attr, char *buff)
+{
+	struct device *dev = kobj_to_dev(kobj);
+	struct xe_gt *gt = dev_to_gt(dev);
+	bool fastvmode = !!read_reason_fastvmode(gt);
+
+	return sysfs_emit(buff, "%u\n", fastvmode);
+}
+static struct kobj_attribute attr_reason_fastvmode = __ATTR_RO(reason_fastvmode);
+
+static ssize_t reason_mem_thermal_show(struct kobject *kobj,
+				       struct kobj_attribute *attr, char *buff)
+{
+	struct device *dev = kobj_to_dev(kobj);
+	struct xe_gt *gt = dev_to_gt(dev);
+	bool mem_thermal = !!read_reason_mem_thermal(gt);
+
+	return sysfs_emit(buff, "%u\n", mem_thermal);
+}
+static struct kobj_attribute attr_reason_mem_thermal = __ATTR_RO(reason_mem_thermal);
+
+static ssize_t reason_vr_thermal_show(struct kobject *kobj,
+				      struct kobj_attribute *attr, char *buff)
+{
+	struct device *dev = kobj_to_dev(kobj);
+	struct xe_gt *gt = dev_to_gt(dev);
+	bool vr_thermal = !!read_reason_vr_thermal(gt);
+
+	return sysfs_emit(buff, "%u\n", vr_thermal);
+}
+static struct kobj_attribute attr_reason_vr_thermal = __ATTR_RO(reason_vr_thermal);
+
+static ssize_t reason_iccmax_show(struct kobject *kobj,
+				  struct kobj_attribute *attr, char *buff)
+{
+	struct device *dev = kobj_to_dev(kobj);
+	struct xe_gt *gt = dev_to_gt(dev);
+	bool iccmax = !!read_reason_iccmax(gt);
+
+	return sysfs_emit(buff, "%u\n", iccmax);
+}
+static struct kobj_attribute attr_reason_iccmax = __ATTR_RO(reason_iccmax);
+
+static ssize_t reason_psys_pl1_show(struct kobject *kobj,
+				    struct kobj_attribute *attr, char *buff)
+{
+	struct device *dev = kobj_to_dev(kobj);
+	struct xe_gt *gt = dev_to_gt(dev);
+	bool psys_pl1 = !!read_reason_psys_pl1(gt);
+
+	return sysfs_emit(buff, "%u\n", psys_pl1);
+}
+static struct kobj_attribute attr_reason_psys_pl1 = __ATTR_RO(reason_psys_pl1);
+
+static ssize_t reason_psys_pl2_show(struct kobject *kobj,
+				    struct kobj_attribute *attr, char *buff)
+{
+	struct device *dev = kobj_to_dev(kobj);
+	struct xe_gt *gt = dev_to_gt(dev);
+	bool psys_pl2 = !!read_reason_psys_pl2(gt);
+
+	return sysfs_emit(buff, "%u\n", psys_pl2);
+}
+static struct kobj_attribute attr_reason_psys_pl2 = __ATTR_RO(reason_psys_pl2);
+
+static ssize_t reason_p0_freq_show(struct kobject *kobj,
+				   struct kobj_attribute *attr, char *buff)
+{
+	struct device *dev = kobj_to_dev(kobj);
+	struct xe_gt *gt = dev_to_gt(dev);
+	bool p0_freq = !!read_reason_p0_freq(gt);
+
+	return sysfs_emit(buff, "%u\n", p0_freq);
+}
+static struct kobj_attribute attr_reason_p0_freq = __ATTR_RO(reason_p0_freq);
+
+static ssize_t reason_psys_crit_show(struct kobject *kobj,
+				     struct kobj_attribute *attr, char *buff)
+{
+	struct device *dev = kobj_to_dev(kobj);
+	struct xe_gt *gt = dev_to_gt(dev);
+	bool psys_crit = !!read_reason_psys_crit(gt);
+
+	return sysfs_emit(buff, "%u\n", psys_crit);
+}
+static struct kobj_attribute attr_reason_psys_crit = __ATTR_RO(reason_psys_crit);
+
 static struct attribute *throttle_attrs[] = {
 	&attr_status.attr,
 	&attr_reason_pl1.attr,
@@ -226,24 +433,62 @@ static struct attribute *throttle_attrs[] = {
 	NULL
 };
 
+static struct attribute *cri_throttle_attrs[] = {
+	&attr_status.attr,
+	&attr_reason_prochot.attr,
+	&attr_reason_soc_thermal.attr,
+	&attr_reason_mem_thermal.attr,
+	&attr_reason_vr_thermal.attr,
+	&attr_reason_iccmax.attr,
+	&attr_reason_ratl.attr,
+	&attr_reason_soc_avg_thermal.attr,
+	&attr_reason_fastvmode.attr,
+	&attr_reason_pl4.attr,
+	&attr_reason_pl1.attr,
+	&attr_reason_pl2.attr,
+	&attr_reason_psys_pl1.attr,
+	&attr_reason_psys_pl2.attr,
+	&attr_reason_p0_freq.attr,
+	&attr_reason_psys_crit.attr,
+	NULL
+};
+
 static const struct attribute_group throttle_group_attrs = {
 	.name = "throttle",
 	.attrs = throttle_attrs,
 };
 
+static const struct attribute_group cri_throttle_group_attrs = {
+	.name = "throttle",
+	.attrs = cri_throttle_attrs,
+};
+
+static const struct attribute_group *get_platform_throttle_group(struct xe_device *xe)
+{
+	switch (xe->info.platform) {
+	case XE_CRESCENTISLAND:
+		return &cri_throttle_group_attrs;
+	default:
+		return &throttle_group_attrs;
+	}
+}
+
 static void gt_throttle_sysfs_fini(void *arg)
 {
 	struct xe_gt *gt = arg;
+	struct xe_device *xe = gt_to_xe(gt);
+	const struct attribute_group *group = get_platform_throttle_group(xe);
 
-	sysfs_remove_group(gt->freq, &throttle_group_attrs);
+	sysfs_remove_group(gt->freq, group);
 }
 
 int xe_gt_throttle_init(struct xe_gt *gt)
 {
 	struct xe_device *xe = gt_to_xe(gt);
+	const struct attribute_group *group = get_platform_throttle_group(xe);
 	int err;
 
-	err = sysfs_create_group(gt->freq, &throttle_group_attrs);
+	err = sysfs_create_group(gt->freq, group);
 	if (err)
 		return err;
 

-- 
2.51.0


^ permalink raw reply related	[flat|nested] 17+ messages in thread

* [PATCH 2/5] drm/xe/gt_throttle: Tidy up perf reasons reading
  2025-10-23 16:56 [PATCH 0/5] drm/xe: CRI support in gt_throttle + refactors Lucas De Marchi
  2025-10-23 16:56 ` [PATCH 1/5] drm/xe/cri: Add new performance limit reasons bits Lucas De Marchi
@ 2025-10-23 16:56 ` Lucas De Marchi
  2025-10-24  5:59   ` Raag Jadav
  2025-10-23 16:56 ` [PATCH 3/5] drm/xe/gt_throttle: Always read and mask Lucas De Marchi
                   ` (6 subsequent siblings)
  8 siblings, 1 reply; 17+ messages in thread
From: Lucas De Marchi @ 2025-10-23 16:56 UTC (permalink / raw)
  To: intel-xe; +Cc: Lucas De Marchi, Raag Jadav

There's no need to be so verbose with two functions per bit:
read_reason_xxxxx() and reason_xxxxx_show(). Drop the later and just use
a new is_throttled_by() that receives the mask as parameter.

Signed-off-by: Lucas De Marchi <lucas.demarchi@intel.com>
---
 drivers/gpu/drm/xe/xe_gt_throttle.c | 182 +++++-------------------------------
 1 file changed, 21 insertions(+), 161 deletions(-)

diff --git a/drivers/gpu/drm/xe/xe_gt_throttle.c b/drivers/gpu/drm/xe/xe_gt_throttle.c
index a4fe43f4663dd..c69710f2dbeb5 100644
--- a/drivers/gpu/drm/xe/xe_gt_throttle.c
+++ b/drivers/gpu/drm/xe/xe_gt_throttle.c
@@ -85,130 +85,9 @@ static u32 read_status(struct xe_gt *gt)
 	return status;
 }
 
-static u32 read_reason_pl1(struct xe_gt *gt)
+static bool is_throttled_by(struct xe_gt *gt, u32 mask)
 {
-	u32 pl1 = xe_gt_throttle_get_limit_reasons(gt) & POWER_LIMIT_1_MASK;
-
-	return pl1;
-}
-
-static u32 read_reason_pl2(struct xe_gt *gt)
-{
-	u32 pl2 = xe_gt_throttle_get_limit_reasons(gt) & POWER_LIMIT_2_MASK;
-
-	return pl2;
-}
-
-static u32 read_reason_pl4(struct xe_gt *gt)
-{
-	u32 pl4 = xe_gt_throttle_get_limit_reasons(gt) & POWER_LIMIT_4_MASK;
-
-	return pl4;
-}
-
-static u32 read_reason_thermal(struct xe_gt *gt)
-{
-	u32 thermal = xe_gt_throttle_get_limit_reasons(gt) & THERMAL_LIMIT_MASK;
-
-	return thermal;
-}
-
-static u32 read_reason_soc_thermal(struct xe_gt *gt)
-{
-	u32 thermal = xe_gt_throttle_get_limit_reasons(gt) & SOC_THERMAL_LIMIT_MASK;
-
-	return thermal;
-}
-
-static u32 read_reason_prochot(struct xe_gt *gt)
-{
-	u32 prochot = xe_gt_throttle_get_limit_reasons(gt) & PROCHOT_MASK;
-
-	return prochot;
-}
-
-static u32 read_reason_ratl(struct xe_gt *gt)
-{
-	u32 ratl = xe_gt_throttle_get_limit_reasons(gt) & RATL_MASK;
-
-	return ratl;
-}
-
-static u32 read_reason_vr_thermalert(struct xe_gt *gt)
-{
-	u32 thermalert = xe_gt_throttle_get_limit_reasons(gt) & VR_THERMALERT_MASK;
-
-	return thermalert;
-}
-
-static u32 read_reason_soc_avg_thermal(struct xe_gt *gt)
-{
-	u32 soc_avg_thermal = xe_gt_throttle_get_limit_reasons(gt) & SOC_AVG_THERMAL_MASK;
-
-	return soc_avg_thermal;
-}
-
-static u32 read_reason_vr_tdc(struct xe_gt *gt)
-{
-	u32 tdc = xe_gt_throttle_get_limit_reasons(gt) & VR_TDC_MASK;
-
-	return tdc;
-}
-
-static u32 read_reason_fastvmode(struct xe_gt *gt)
-{
-	u32 fastvmode = xe_gt_throttle_get_limit_reasons(gt) & FASTVMODE_MASK;
-
-	return fastvmode;
-}
-
-static u32 read_reason_mem_thermal(struct xe_gt *gt)
-{
-	u32 mem_thermal = xe_gt_throttle_get_limit_reasons(gt) & MEM_THERMAL_MASK;
-
-	return mem_thermal;
-}
-
-static u32 read_reason_vr_thermal(struct xe_gt *gt)
-{
-	u32 vr_thermal = xe_gt_throttle_get_limit_reasons(gt) & VR_THERMAL_MASK;
-
-	return vr_thermal;
-}
-
-static u32 read_reason_iccmax(struct xe_gt *gt)
-{
-	u32 iccmax = xe_gt_throttle_get_limit_reasons(gt) & ICCMAX_MASK;
-
-	return iccmax;
-}
-
-static u32 read_reason_psys_pl1(struct xe_gt *gt)
-{
-	u32 psys_pl1 = xe_gt_throttle_get_limit_reasons(gt) & PSYS_PL1_MASK;
-
-	return psys_pl1;
-}
-
-static u32 read_reason_psys_pl2(struct xe_gt *gt)
-{
-	u32 psys_pl2 = xe_gt_throttle_get_limit_reasons(gt) & PSYS_PL2_MASK;
-
-	return psys_pl2;
-}
-
-static u32 read_reason_p0_freq(struct xe_gt *gt)
-{
-	u32 p0_freq = xe_gt_throttle_get_limit_reasons(gt) & P0_FREQ_MASK;
-
-	return p0_freq;
-}
-
-static u32 read_reason_psys_crit(struct xe_gt *gt)
-{
-	u32 psys_crit = xe_gt_throttle_get_limit_reasons(gt) & PSYS_CRIT_MASK;
-
-	return psys_crit;
+	return xe_gt_throttle_get_limit_reasons(gt) & mask;
 }
 
 static ssize_t status_show(struct kobject *kobj,
@@ -216,9 +95,8 @@ static ssize_t status_show(struct kobject *kobj,
 {
 	struct device *dev = kobj_to_dev(kobj);
 	struct xe_gt *gt = dev_to_gt(dev);
-	bool status = !!read_status(gt);
 
-	return sysfs_emit(buff, "%u\n", status);
+	return sysfs_emit(buff, "%u\n", !!read_status(gt));
 }
 static struct kobj_attribute attr_status = __ATTR_RO(status);
 
@@ -227,9 +105,8 @@ static ssize_t reason_pl1_show(struct kobject *kobj,
 {
 	struct device *dev = kobj_to_dev(kobj);
 	struct xe_gt *gt = dev_to_gt(dev);
-	bool pl1 = !!read_reason_pl1(gt);
 
-	return sysfs_emit(buff, "%u\n", pl1);
+	return sysfs_emit(buff, "%u\n", is_throttled_by(gt, POWER_LIMIT_1_MASK));
 }
 static struct kobj_attribute attr_reason_pl1 = __ATTR_RO(reason_pl1);
 
@@ -238,9 +115,8 @@ static ssize_t reason_pl2_show(struct kobject *kobj,
 {
 	struct device *dev = kobj_to_dev(kobj);
 	struct xe_gt *gt = dev_to_gt(dev);
-	bool pl2 = !!read_reason_pl2(gt);
 
-	return sysfs_emit(buff, "%u\n", pl2);
+	return sysfs_emit(buff, "%u\n", is_throttled_by(gt, POWER_LIMIT_2_MASK));
 }
 static struct kobj_attribute attr_reason_pl2 = __ATTR_RO(reason_pl2);
 
@@ -249,9 +125,8 @@ static ssize_t reason_pl4_show(struct kobject *kobj,
 {
 	struct device *dev = kobj_to_dev(kobj);
 	struct xe_gt *gt = dev_to_gt(dev);
-	bool pl4 = !!read_reason_pl4(gt);
 
-	return sysfs_emit(buff, "%u\n", pl4);
+	return sysfs_emit(buff, "%u\n", is_throttled_by(gt, POWER_LIMIT_4_MASK));
 }
 static struct kobj_attribute attr_reason_pl4 = __ATTR_RO(reason_pl4);
 
@@ -260,9 +135,8 @@ static ssize_t reason_thermal_show(struct kobject *kobj,
 {
 	struct device *dev = kobj_to_dev(kobj);
 	struct xe_gt *gt = dev_to_gt(dev);
-	bool thermal = !!read_reason_thermal(gt);
 
-	return sysfs_emit(buff, "%u\n", thermal);
+	return sysfs_emit(buff, "%u\n", is_throttled_by(gt, THERMAL_LIMIT_MASK));
 }
 static struct kobj_attribute attr_reason_thermal = __ATTR_RO(reason_thermal);
 
@@ -271,9 +145,8 @@ static ssize_t reason_soc_thermal_show(struct kobject *kobj,
 {
 	struct device *dev = kobj_to_dev(kobj);
 	struct xe_gt *gt = dev_to_gt(dev);
-	bool thermal = !!read_reason_soc_thermal(gt);
 
-	return sysfs_emit(buff, "%u\n", thermal);
+	return sysfs_emit(buff, "%u\n", is_throttled_by(gt, SOC_THERMAL_LIMIT_MASK));
 }
 static struct kobj_attribute attr_reason_soc_thermal = __ATTR_RO(reason_soc_thermal);
 
@@ -282,9 +155,8 @@ static ssize_t reason_prochot_show(struct kobject *kobj,
 {
 	struct device *dev = kobj_to_dev(kobj);
 	struct xe_gt *gt = dev_to_gt(dev);
-	bool prochot = !!read_reason_prochot(gt);
 
-	return sysfs_emit(buff, "%u\n", prochot);
+	return sysfs_emit(buff, "%u\n", is_throttled_by(gt, PROCHOT_MASK));
 }
 static struct kobj_attribute attr_reason_prochot = __ATTR_RO(reason_prochot);
 
@@ -293,9 +165,8 @@ static ssize_t reason_ratl_show(struct kobject *kobj,
 {
 	struct device *dev = kobj_to_dev(kobj);
 	struct xe_gt *gt = dev_to_gt(dev);
-	bool ratl = !!read_reason_ratl(gt);
 
-	return sysfs_emit(buff, "%u\n", ratl);
+	return sysfs_emit(buff, "%u\n", is_throttled_by(gt, RATL_MASK));
 }
 static struct kobj_attribute attr_reason_ratl = __ATTR_RO(reason_ratl);
 
@@ -304,9 +175,8 @@ static ssize_t reason_vr_thermalert_show(struct kobject *kobj,
 {
 	struct device *dev = kobj_to_dev(kobj);
 	struct xe_gt *gt = dev_to_gt(dev);
-	bool thermalert = !!read_reason_vr_thermalert(gt);
 
-	return sysfs_emit(buff, "%u\n", thermalert);
+	return sysfs_emit(buff, "%u\n", is_throttled_by(gt, VR_THERMALERT_MASK));
 }
 static struct kobj_attribute attr_reason_vr_thermalert = __ATTR_RO(reason_vr_thermalert);
 
@@ -315,9 +185,8 @@ static ssize_t reason_soc_avg_thermal_show(struct kobject *kobj,
 {
 	struct device *dev = kobj_to_dev(kobj);
 	struct xe_gt *gt = dev_to_gt(dev);
-	bool avg_thermalert = !!read_reason_soc_avg_thermal(gt);
 
-	return sysfs_emit(buff, "%u\n", avg_thermalert);
+	return sysfs_emit(buff, "%u\n", is_throttled_by(gt, SOC_AVG_THERMAL_MASK));
 }
 static struct kobj_attribute attr_reason_soc_avg_thermal = __ATTR_RO(reason_soc_avg_thermal);
 
@@ -326,9 +195,8 @@ static ssize_t reason_vr_tdc_show(struct kobject *kobj,
 {
 	struct device *dev = kobj_to_dev(kobj);
 	struct xe_gt *gt = dev_to_gt(dev);
-	bool tdc = !!read_reason_vr_tdc(gt);
 
-	return sysfs_emit(buff, "%u\n", tdc);
+	return sysfs_emit(buff, "%u\n", is_throttled_by(gt, VR_TDC_MASK));
 }
 static struct kobj_attribute attr_reason_vr_tdc = __ATTR_RO(reason_vr_tdc);
 
@@ -337,9 +205,8 @@ static ssize_t reason_fastvmode_show(struct kobject *kobj,
 {
 	struct device *dev = kobj_to_dev(kobj);
 	struct xe_gt *gt = dev_to_gt(dev);
-	bool fastvmode = !!read_reason_fastvmode(gt);
 
-	return sysfs_emit(buff, "%u\n", fastvmode);
+	return sysfs_emit(buff, "%u\n", is_throttled_by(gt, FASTVMODE_MASK));
 }
 static struct kobj_attribute attr_reason_fastvmode = __ATTR_RO(reason_fastvmode);
 
@@ -348,9 +215,8 @@ static ssize_t reason_mem_thermal_show(struct kobject *kobj,
 {
 	struct device *dev = kobj_to_dev(kobj);
 	struct xe_gt *gt = dev_to_gt(dev);
-	bool mem_thermal = !!read_reason_mem_thermal(gt);
 
-	return sysfs_emit(buff, "%u\n", mem_thermal);
+	return sysfs_emit(buff, "%u\n", is_throttled_by(gt, MEM_THERMAL_MASK));
 }
 static struct kobj_attribute attr_reason_mem_thermal = __ATTR_RO(reason_mem_thermal);
 
@@ -359,9 +225,8 @@ static ssize_t reason_vr_thermal_show(struct kobject *kobj,
 {
 	struct device *dev = kobj_to_dev(kobj);
 	struct xe_gt *gt = dev_to_gt(dev);
-	bool vr_thermal = !!read_reason_vr_thermal(gt);
 
-	return sysfs_emit(buff, "%u\n", vr_thermal);
+	return sysfs_emit(buff, "%u\n", is_throttled_by(gt, VR_THERMAL_MASK));
 }
 static struct kobj_attribute attr_reason_vr_thermal = __ATTR_RO(reason_vr_thermal);
 
@@ -370,9 +235,8 @@ static ssize_t reason_iccmax_show(struct kobject *kobj,
 {
 	struct device *dev = kobj_to_dev(kobj);
 	struct xe_gt *gt = dev_to_gt(dev);
-	bool iccmax = !!read_reason_iccmax(gt);
 
-	return sysfs_emit(buff, "%u\n", iccmax);
+	return sysfs_emit(buff, "%u\n", is_throttled_by(gt, ICCMAX_MASK));
 }
 static struct kobj_attribute attr_reason_iccmax = __ATTR_RO(reason_iccmax);
 
@@ -381,9 +245,8 @@ static ssize_t reason_psys_pl1_show(struct kobject *kobj,
 {
 	struct device *dev = kobj_to_dev(kobj);
 	struct xe_gt *gt = dev_to_gt(dev);
-	bool psys_pl1 = !!read_reason_psys_pl1(gt);
 
-	return sysfs_emit(buff, "%u\n", psys_pl1);
+	return sysfs_emit(buff, "%u\n", is_throttled_by(gt, PSYS_PL1_MASK));
 }
 static struct kobj_attribute attr_reason_psys_pl1 = __ATTR_RO(reason_psys_pl1);
 
@@ -392,9 +255,8 @@ static ssize_t reason_psys_pl2_show(struct kobject *kobj,
 {
 	struct device *dev = kobj_to_dev(kobj);
 	struct xe_gt *gt = dev_to_gt(dev);
-	bool psys_pl2 = !!read_reason_psys_pl2(gt);
 
-	return sysfs_emit(buff, "%u\n", psys_pl2);
+	return sysfs_emit(buff, "%u\n", is_throttled_by(gt, PSYS_PL2_MASK));
 }
 static struct kobj_attribute attr_reason_psys_pl2 = __ATTR_RO(reason_psys_pl2);
 
@@ -403,9 +265,8 @@ static ssize_t reason_p0_freq_show(struct kobject *kobj,
 {
 	struct device *dev = kobj_to_dev(kobj);
 	struct xe_gt *gt = dev_to_gt(dev);
-	bool p0_freq = !!read_reason_p0_freq(gt);
 
-	return sysfs_emit(buff, "%u\n", p0_freq);
+	return sysfs_emit(buff, "%u\n", is_throttled_by(gt, P0_FREQ_MASK));
 }
 static struct kobj_attribute attr_reason_p0_freq = __ATTR_RO(reason_p0_freq);
 
@@ -414,9 +275,8 @@ static ssize_t reason_psys_crit_show(struct kobject *kobj,
 {
 	struct device *dev = kobj_to_dev(kobj);
 	struct xe_gt *gt = dev_to_gt(dev);
-	bool psys_crit = !!read_reason_psys_crit(gt);
 
-	return sysfs_emit(buff, "%u\n", psys_crit);
+	return sysfs_emit(buff, "%u\n", is_throttled_by(gt, PSYS_CRIT_MASK));
 }
 static struct kobj_attribute attr_reason_psys_crit = __ATTR_RO(reason_psys_crit);
 

-- 
2.51.0


^ permalink raw reply related	[flat|nested] 17+ messages in thread

* [PATCH 3/5] drm/xe/gt_throttle: Always read and mask
  2025-10-23 16:56 [PATCH 0/5] drm/xe: CRI support in gt_throttle + refactors Lucas De Marchi
  2025-10-23 16:56 ` [PATCH 1/5] drm/xe/cri: Add new performance limit reasons bits Lucas De Marchi
  2025-10-23 16:56 ` [PATCH 2/5] drm/xe/gt_throttle: Tidy up perf reasons reading Lucas De Marchi
@ 2025-10-23 16:56 ` Lucas De Marchi
  2025-10-24  6:13   ` Raag Jadav
  2025-10-23 16:56 ` [PATCH 4/5] drm/xe/gt_throttle: Add throttle_to_gt() Lucas De Marchi
                   ` (5 subsequent siblings)
  8 siblings, 1 reply; 17+ messages in thread
From: Lucas De Marchi @ 2025-10-23 16:56 UTC (permalink / raw)
  To: intel-xe; +Cc: Lucas De Marchi, Raag Jadav

Use a single function to read and mask the value the callers will be
interested in. This reduces the risk of a caller using a plain call to
xe_gt_throttle_get_limit_reasons() without applying any mask, which can
return unexpected bits for future platforms.

Select which reg and mask it's going to be used according to the
platform and gt type and always use that one function.

There was an odd xe_gt_dbg() when reading the status, which is not done
for any other throttle/* sysfs file, so just make the status be as
special as everybody else.

Signed-off-by: Lucas De Marchi <lucas.demarchi@intel.com>
---
 drivers/gpu/drm/xe/xe_gt_throttle.c | 27 ++++++++++-----------------
 1 file changed, 10 insertions(+), 17 deletions(-)

diff --git a/drivers/gpu/drm/xe/xe_gt_throttle.c b/drivers/gpu/drm/xe/xe_gt_throttle.c
index c69710f2dbeb5..21da290709fa8 100644
--- a/drivers/gpu/drm/xe/xe_gt_throttle.c
+++ b/drivers/gpu/drm/xe/xe_gt_throttle.c
@@ -57,32 +57,25 @@ dev_to_gt(struct device *dev)
 
 u32 xe_gt_throttle_get_limit_reasons(struct xe_gt *gt)
 {
-	u32 reg;
+	struct xe_device *xe = gt_to_xe(gt);
+	struct xe_reg reg;
+	u32 val, mask;
 
-	xe_pm_runtime_get(gt_to_xe(gt));
 	if (xe_gt_is_media_type(gt))
-		reg = xe_mmio_read32(&gt->mmio, MTL_MEDIA_PERF_LIMIT_REASONS);
+		reg = MTL_MEDIA_PERF_LIMIT_REASONS;
 	else
-		reg = xe_mmio_read32(&gt->mmio, GT0_PERF_LIMIT_REASONS);
-	xe_pm_runtime_put(gt_to_xe(gt));
-
-	return reg;
-}
-
-static u32 read_status(struct xe_gt *gt)
-{
-	struct xe_device *xe = gt_to_xe(gt);
-	u32 status, mask;
+		reg = GT0_PERF_LIMIT_REASONS;
 
 	if (xe->info.platform == XE_CRESCENTISLAND)
 		mask = CRI_PERF_LIMIT_REASONS_MASK;
 	else
 		mask = GT0_PERF_LIMIT_REASONS_MASK;
 
-	status = xe_gt_throttle_get_limit_reasons(gt) & mask;
-	xe_gt_dbg(gt, "throttle reasons: 0x%08x\n", status);
+	xe_pm_runtime_get(xe);
+	val = xe_mmio_read32(&gt->mmio, reg) & mask;
+	xe_pm_runtime_put(xe);
 
-	return status;
+	return val;
 }
 
 static bool is_throttled_by(struct xe_gt *gt, u32 mask)
@@ -96,7 +89,7 @@ static ssize_t status_show(struct kobject *kobj,
 	struct device *dev = kobj_to_dev(kobj);
 	struct xe_gt *gt = dev_to_gt(dev);
 
-	return sysfs_emit(buff, "%u\n", !!read_status(gt));
+	return sysfs_emit(buff, "%u\n", is_throttled_by(gt, U32_MAX));
 }
 static struct kobj_attribute attr_status = __ATTR_RO(status);
 

-- 
2.51.0


^ permalink raw reply related	[flat|nested] 17+ messages in thread

* [PATCH 4/5] drm/xe/gt_throttle: Add throttle_to_gt()
  2025-10-23 16:56 [PATCH 0/5] drm/xe: CRI support in gt_throttle + refactors Lucas De Marchi
                   ` (2 preceding siblings ...)
  2025-10-23 16:56 ` [PATCH 3/5] drm/xe/gt_throttle: Always read and mask Lucas De Marchi
@ 2025-10-23 16:56 ` Lucas De Marchi
  2025-10-24  8:15   ` Raag Jadav
  2025-10-23 16:56 ` [PATCH 5/5] drm/xe/gt_throttle: Tidy up attribute definition Lucas De Marchi
                   ` (4 subsequent siblings)
  8 siblings, 1 reply; 17+ messages in thread
From: Lucas De Marchi @ 2025-10-23 16:56 UTC (permalink / raw)
  To: intel-xe; +Cc: Lucas De Marchi, Raag Jadav

Reduce boilerplate code by adding a helper to go directly from the
throttle kobject to the gt. Note that there's already a kobj_to_gt(),
but that actually converts our kobj_gt object to gt.

Signed-off-by: Lucas De Marchi <lucas.demarchi@intel.com>
---
 drivers/gpu/drm/xe/xe_gt_throttle.c | 65 ++++++++++++++-----------------------
 1 file changed, 25 insertions(+), 40 deletions(-)

diff --git a/drivers/gpu/drm/xe/xe_gt_throttle.c b/drivers/gpu/drm/xe/xe_gt_throttle.c
index 21da290709fa8..a312e840dcf4a 100644
--- a/drivers/gpu/drm/xe/xe_gt_throttle.c
+++ b/drivers/gpu/drm/xe/xe_gt_throttle.c
@@ -49,12 +49,16 @@
  * device/gt#/freq0/throttle/reason_psys_crit - Frequency throttle due to PSYS critical
  */
 
-static struct xe_gt *
-dev_to_gt(struct device *dev)
+static struct xe_gt *dev_to_gt(struct device *dev)
 {
 	return kobj_to_gt(dev->kobj.parent);
 }
 
+static struct xe_gt *throttle_to_gt(struct kobject *kobj)
+{
+	return dev_to_gt(kobj_to_dev(kobj));
+}
+
 u32 xe_gt_throttle_get_limit_reasons(struct xe_gt *gt)
 {
 	struct xe_device *xe = gt_to_xe(gt);
@@ -86,8 +90,7 @@ static bool is_throttled_by(struct xe_gt *gt, u32 mask)
 static ssize_t status_show(struct kobject *kobj,
 			   struct kobj_attribute *attr, char *buff)
 {
-	struct device *dev = kobj_to_dev(kobj);
-	struct xe_gt *gt = dev_to_gt(dev);
+	struct xe_gt *gt = throttle_to_gt(kobj);
 
 	return sysfs_emit(buff, "%u\n", is_throttled_by(gt, U32_MAX));
 }
@@ -96,8 +99,7 @@ static struct kobj_attribute attr_status = __ATTR_RO(status);
 static ssize_t reason_pl1_show(struct kobject *kobj,
 			       struct kobj_attribute *attr, char *buff)
 {
-	struct device *dev = kobj_to_dev(kobj);
-	struct xe_gt *gt = dev_to_gt(dev);
+	struct xe_gt *gt = throttle_to_gt(kobj);
 
 	return sysfs_emit(buff, "%u\n", is_throttled_by(gt, POWER_LIMIT_1_MASK));
 }
@@ -106,8 +108,7 @@ static struct kobj_attribute attr_reason_pl1 = __ATTR_RO(reason_pl1);
 static ssize_t reason_pl2_show(struct kobject *kobj,
 			       struct kobj_attribute *attr, char *buff)
 {
-	struct device *dev = kobj_to_dev(kobj);
-	struct xe_gt *gt = dev_to_gt(dev);
+	struct xe_gt *gt = throttle_to_gt(kobj);
 
 	return sysfs_emit(buff, "%u\n", is_throttled_by(gt, POWER_LIMIT_2_MASK));
 }
@@ -116,8 +117,7 @@ static struct kobj_attribute attr_reason_pl2 = __ATTR_RO(reason_pl2);
 static ssize_t reason_pl4_show(struct kobject *kobj,
 			       struct kobj_attribute *attr, char *buff)
 {
-	struct device *dev = kobj_to_dev(kobj);
-	struct xe_gt *gt = dev_to_gt(dev);
+	struct xe_gt *gt = throttle_to_gt(kobj);
 
 	return sysfs_emit(buff, "%u\n", is_throttled_by(gt, POWER_LIMIT_4_MASK));
 }
@@ -126,8 +126,7 @@ static struct kobj_attribute attr_reason_pl4 = __ATTR_RO(reason_pl4);
 static ssize_t reason_thermal_show(struct kobject *kobj,
 				   struct kobj_attribute *attr, char *buff)
 {
-	struct device *dev = kobj_to_dev(kobj);
-	struct xe_gt *gt = dev_to_gt(dev);
+	struct xe_gt *gt = throttle_to_gt(kobj);
 
 	return sysfs_emit(buff, "%u\n", is_throttled_by(gt, THERMAL_LIMIT_MASK));
 }
@@ -136,8 +135,7 @@ static struct kobj_attribute attr_reason_thermal = __ATTR_RO(reason_thermal);
 static ssize_t reason_soc_thermal_show(struct kobject *kobj,
 				       struct kobj_attribute *attr, char *buff)
 {
-	struct device *dev = kobj_to_dev(kobj);
-	struct xe_gt *gt = dev_to_gt(dev);
+	struct xe_gt *gt = throttle_to_gt(kobj);
 
 	return sysfs_emit(buff, "%u\n", is_throttled_by(gt, SOC_THERMAL_LIMIT_MASK));
 }
@@ -146,8 +144,7 @@ static struct kobj_attribute attr_reason_soc_thermal = __ATTR_RO(reason_soc_ther
 static ssize_t reason_prochot_show(struct kobject *kobj,
 				   struct kobj_attribute *attr, char *buff)
 {
-	struct device *dev = kobj_to_dev(kobj);
-	struct xe_gt *gt = dev_to_gt(dev);
+	struct xe_gt *gt = throttle_to_gt(kobj);
 
 	return sysfs_emit(buff, "%u\n", is_throttled_by(gt, PROCHOT_MASK));
 }
@@ -156,8 +153,7 @@ static struct kobj_attribute attr_reason_prochot = __ATTR_RO(reason_prochot);
 static ssize_t reason_ratl_show(struct kobject *kobj,
 				struct kobj_attribute *attr, char *buff)
 {
-	struct device *dev = kobj_to_dev(kobj);
-	struct xe_gt *gt = dev_to_gt(dev);
+	struct xe_gt *gt = throttle_to_gt(kobj);
 
 	return sysfs_emit(buff, "%u\n", is_throttled_by(gt, RATL_MASK));
 }
@@ -166,8 +162,7 @@ static struct kobj_attribute attr_reason_ratl = __ATTR_RO(reason_ratl);
 static ssize_t reason_vr_thermalert_show(struct kobject *kobj,
 					 struct kobj_attribute *attr, char *buff)
 {
-	struct device *dev = kobj_to_dev(kobj);
-	struct xe_gt *gt = dev_to_gt(dev);
+	struct xe_gt *gt = throttle_to_gt(kobj);
 
 	return sysfs_emit(buff, "%u\n", is_throttled_by(gt, VR_THERMALERT_MASK));
 }
@@ -176,8 +171,7 @@ static struct kobj_attribute attr_reason_vr_thermalert = __ATTR_RO(reason_vr_the
 static ssize_t reason_soc_avg_thermal_show(struct kobject *kobj,
 					   struct kobj_attribute *attr, char *buff)
 {
-	struct device *dev = kobj_to_dev(kobj);
-	struct xe_gt *gt = dev_to_gt(dev);
+	struct xe_gt *gt = throttle_to_gt(kobj);
 
 	return sysfs_emit(buff, "%u\n", is_throttled_by(gt, SOC_AVG_THERMAL_MASK));
 }
@@ -186,8 +180,7 @@ static struct kobj_attribute attr_reason_soc_avg_thermal = __ATTR_RO(reason_soc_
 static ssize_t reason_vr_tdc_show(struct kobject *kobj,
 				  struct kobj_attribute *attr, char *buff)
 {
-	struct device *dev = kobj_to_dev(kobj);
-	struct xe_gt *gt = dev_to_gt(dev);
+	struct xe_gt *gt = throttle_to_gt(kobj);
 
 	return sysfs_emit(buff, "%u\n", is_throttled_by(gt, VR_TDC_MASK));
 }
@@ -196,8 +189,7 @@ static struct kobj_attribute attr_reason_vr_tdc = __ATTR_RO(reason_vr_tdc);
 static ssize_t reason_fastvmode_show(struct kobject *kobj,
 				     struct kobj_attribute *attr, char *buff)
 {
-	struct device *dev = kobj_to_dev(kobj);
-	struct xe_gt *gt = dev_to_gt(dev);
+	struct xe_gt *gt = throttle_to_gt(kobj);
 
 	return sysfs_emit(buff, "%u\n", is_throttled_by(gt, FASTVMODE_MASK));
 }
@@ -206,8 +198,7 @@ static struct kobj_attribute attr_reason_fastvmode = __ATTR_RO(reason_fastvmode)
 static ssize_t reason_mem_thermal_show(struct kobject *kobj,
 				       struct kobj_attribute *attr, char *buff)
 {
-	struct device *dev = kobj_to_dev(kobj);
-	struct xe_gt *gt = dev_to_gt(dev);
+	struct xe_gt *gt = throttle_to_gt(kobj);
 
 	return sysfs_emit(buff, "%u\n", is_throttled_by(gt, MEM_THERMAL_MASK));
 }
@@ -216,8 +207,7 @@ static struct kobj_attribute attr_reason_mem_thermal = __ATTR_RO(reason_mem_ther
 static ssize_t reason_vr_thermal_show(struct kobject *kobj,
 				      struct kobj_attribute *attr, char *buff)
 {
-	struct device *dev = kobj_to_dev(kobj);
-	struct xe_gt *gt = dev_to_gt(dev);
+	struct xe_gt *gt = throttle_to_gt(kobj);
 
 	return sysfs_emit(buff, "%u\n", is_throttled_by(gt, VR_THERMAL_MASK));
 }
@@ -226,8 +216,7 @@ static struct kobj_attribute attr_reason_vr_thermal = __ATTR_RO(reason_vr_therma
 static ssize_t reason_iccmax_show(struct kobject *kobj,
 				  struct kobj_attribute *attr, char *buff)
 {
-	struct device *dev = kobj_to_dev(kobj);
-	struct xe_gt *gt = dev_to_gt(dev);
+	struct xe_gt *gt = throttle_to_gt(kobj);
 
 	return sysfs_emit(buff, "%u\n", is_throttled_by(gt, ICCMAX_MASK));
 }
@@ -236,8 +225,7 @@ static struct kobj_attribute attr_reason_iccmax = __ATTR_RO(reason_iccmax);
 static ssize_t reason_psys_pl1_show(struct kobject *kobj,
 				    struct kobj_attribute *attr, char *buff)
 {
-	struct device *dev = kobj_to_dev(kobj);
-	struct xe_gt *gt = dev_to_gt(dev);
+	struct xe_gt *gt = throttle_to_gt(kobj);
 
 	return sysfs_emit(buff, "%u\n", is_throttled_by(gt, PSYS_PL1_MASK));
 }
@@ -246,8 +234,7 @@ static struct kobj_attribute attr_reason_psys_pl1 = __ATTR_RO(reason_psys_pl1);
 static ssize_t reason_psys_pl2_show(struct kobject *kobj,
 				    struct kobj_attribute *attr, char *buff)
 {
-	struct device *dev = kobj_to_dev(kobj);
-	struct xe_gt *gt = dev_to_gt(dev);
+	struct xe_gt *gt = throttle_to_gt(kobj);
 
 	return sysfs_emit(buff, "%u\n", is_throttled_by(gt, PSYS_PL2_MASK));
 }
@@ -256,8 +243,7 @@ static struct kobj_attribute attr_reason_psys_pl2 = __ATTR_RO(reason_psys_pl2);
 static ssize_t reason_p0_freq_show(struct kobject *kobj,
 				   struct kobj_attribute *attr, char *buff)
 {
-	struct device *dev = kobj_to_dev(kobj);
-	struct xe_gt *gt = dev_to_gt(dev);
+	struct xe_gt *gt = throttle_to_gt(kobj);
 
 	return sysfs_emit(buff, "%u\n", is_throttled_by(gt, P0_FREQ_MASK));
 }
@@ -266,8 +252,7 @@ static struct kobj_attribute attr_reason_p0_freq = __ATTR_RO(reason_p0_freq);
 static ssize_t reason_psys_crit_show(struct kobject *kobj,
 				     struct kobj_attribute *attr, char *buff)
 {
-	struct device *dev = kobj_to_dev(kobj);
-	struct xe_gt *gt = dev_to_gt(dev);
+	struct xe_gt *gt = throttle_to_gt(kobj);
 
 	return sysfs_emit(buff, "%u\n", is_throttled_by(gt, PSYS_CRIT_MASK));
 }

-- 
2.51.0


^ permalink raw reply related	[flat|nested] 17+ messages in thread

* [PATCH 5/5] drm/xe/gt_throttle: Tidy up attribute definition
  2025-10-23 16:56 [PATCH 0/5] drm/xe: CRI support in gt_throttle + refactors Lucas De Marchi
                   ` (3 preceding siblings ...)
  2025-10-23 16:56 ` [PATCH 4/5] drm/xe/gt_throttle: Add throttle_to_gt() Lucas De Marchi
@ 2025-10-23 16:56 ` Lucas De Marchi
  2025-10-24  8:34   ` Raag Jadav
  2025-10-23 19:29 ` ✗ CI.checkpatch: warning for drm/xe: CRI support in gt_throttle + refactors Patchwork
                   ` (3 subsequent siblings)
  8 siblings, 1 reply; 17+ messages in thread
From: Lucas De Marchi @ 2025-10-23 16:56 UTC (permalink / raw)
  To: intel-xe; +Cc: Lucas De Marchi, Raag Jadav

Move the attribute definitions to be grouped together rather than near
the show() function: checkpatch keeps complaining about the missing
newline when defining new attributes and it reads better to group
everything, which should match e.g. the xe_pmu.c style.

While grouping them, also define a THROTTLE_ATTR_RO(), similar to
DEVICE_ATTR_RO(), and use it to define all attributes. This makes it
shorter and with a familiar syntax.

Finally, during the cri_throttle_attrs[] array definition, also
highlight what's coming from common attributes and what is CRI-specific.

These 3 things could be done as separate commits, but they are all about
the same thing: reduce the attribute definition verbosity and are very
simple and mechanical.

Signed-off-by: Lucas De Marchi <lucas.demarchi@intel.com>
---
 drivers/gpu/drm/xe/xe_gt_throttle.c | 56 +++++++++++++++++++++----------------
 1 file changed, 32 insertions(+), 24 deletions(-)

diff --git a/drivers/gpu/drm/xe/xe_gt_throttle.c b/drivers/gpu/drm/xe/xe_gt_throttle.c
index a312e840dcf4a..c79ef7cfb8358 100644
--- a/drivers/gpu/drm/xe/xe_gt_throttle.c
+++ b/drivers/gpu/drm/xe/xe_gt_throttle.c
@@ -94,7 +94,6 @@ static ssize_t status_show(struct kobject *kobj,
 
 	return sysfs_emit(buff, "%u\n", is_throttled_by(gt, U32_MAX));
 }
-static struct kobj_attribute attr_status = __ATTR_RO(status);
 
 static ssize_t reason_pl1_show(struct kobject *kobj,
 			       struct kobj_attribute *attr, char *buff)
@@ -103,7 +102,6 @@ static ssize_t reason_pl1_show(struct kobject *kobj,
 
 	return sysfs_emit(buff, "%u\n", is_throttled_by(gt, POWER_LIMIT_1_MASK));
 }
-static struct kobj_attribute attr_reason_pl1 = __ATTR_RO(reason_pl1);
 
 static ssize_t reason_pl2_show(struct kobject *kobj,
 			       struct kobj_attribute *attr, char *buff)
@@ -112,7 +110,6 @@ static ssize_t reason_pl2_show(struct kobject *kobj,
 
 	return sysfs_emit(buff, "%u\n", is_throttled_by(gt, POWER_LIMIT_2_MASK));
 }
-static struct kobj_attribute attr_reason_pl2 = __ATTR_RO(reason_pl2);
 
 static ssize_t reason_pl4_show(struct kobject *kobj,
 			       struct kobj_attribute *attr, char *buff)
@@ -121,7 +118,6 @@ static ssize_t reason_pl4_show(struct kobject *kobj,
 
 	return sysfs_emit(buff, "%u\n", is_throttled_by(gt, POWER_LIMIT_4_MASK));
 }
-static struct kobj_attribute attr_reason_pl4 = __ATTR_RO(reason_pl4);
 
 static ssize_t reason_thermal_show(struct kobject *kobj,
 				   struct kobj_attribute *attr, char *buff)
@@ -130,7 +126,6 @@ static ssize_t reason_thermal_show(struct kobject *kobj,
 
 	return sysfs_emit(buff, "%u\n", is_throttled_by(gt, THERMAL_LIMIT_MASK));
 }
-static struct kobj_attribute attr_reason_thermal = __ATTR_RO(reason_thermal);
 
 static ssize_t reason_soc_thermal_show(struct kobject *kobj,
 				       struct kobj_attribute *attr, char *buff)
@@ -139,7 +134,6 @@ static ssize_t reason_soc_thermal_show(struct kobject *kobj,
 
 	return sysfs_emit(buff, "%u\n", is_throttled_by(gt, SOC_THERMAL_LIMIT_MASK));
 }
-static struct kobj_attribute attr_reason_soc_thermal = __ATTR_RO(reason_soc_thermal);
 
 static ssize_t reason_prochot_show(struct kobject *kobj,
 				   struct kobj_attribute *attr, char *buff)
@@ -148,7 +142,6 @@ static ssize_t reason_prochot_show(struct kobject *kobj,
 
 	return sysfs_emit(buff, "%u\n", is_throttled_by(gt, PROCHOT_MASK));
 }
-static struct kobj_attribute attr_reason_prochot = __ATTR_RO(reason_prochot);
 
 static ssize_t reason_ratl_show(struct kobject *kobj,
 				struct kobj_attribute *attr, char *buff)
@@ -157,7 +150,6 @@ static ssize_t reason_ratl_show(struct kobject *kobj,
 
 	return sysfs_emit(buff, "%u\n", is_throttled_by(gt, RATL_MASK));
 }
-static struct kobj_attribute attr_reason_ratl = __ATTR_RO(reason_ratl);
 
 static ssize_t reason_vr_thermalert_show(struct kobject *kobj,
 					 struct kobj_attribute *attr, char *buff)
@@ -166,7 +158,6 @@ static ssize_t reason_vr_thermalert_show(struct kobject *kobj,
 
 	return sysfs_emit(buff, "%u\n", is_throttled_by(gt, VR_THERMALERT_MASK));
 }
-static struct kobj_attribute attr_reason_vr_thermalert = __ATTR_RO(reason_vr_thermalert);
 
 static ssize_t reason_soc_avg_thermal_show(struct kobject *kobj,
 					   struct kobj_attribute *attr, char *buff)
@@ -175,7 +166,6 @@ static ssize_t reason_soc_avg_thermal_show(struct kobject *kobj,
 
 	return sysfs_emit(buff, "%u\n", is_throttled_by(gt, SOC_AVG_THERMAL_MASK));
 }
-static struct kobj_attribute attr_reason_soc_avg_thermal = __ATTR_RO(reason_soc_avg_thermal);
 
 static ssize_t reason_vr_tdc_show(struct kobject *kobj,
 				  struct kobj_attribute *attr, char *buff)
@@ -184,7 +174,6 @@ static ssize_t reason_vr_tdc_show(struct kobject *kobj,
 
 	return sysfs_emit(buff, "%u\n", is_throttled_by(gt, VR_TDC_MASK));
 }
-static struct kobj_attribute attr_reason_vr_tdc = __ATTR_RO(reason_vr_tdc);
 
 static ssize_t reason_fastvmode_show(struct kobject *kobj,
 				     struct kobj_attribute *attr, char *buff)
@@ -193,7 +182,6 @@ static ssize_t reason_fastvmode_show(struct kobject *kobj,
 
 	return sysfs_emit(buff, "%u\n", is_throttled_by(gt, FASTVMODE_MASK));
 }
-static struct kobj_attribute attr_reason_fastvmode = __ATTR_RO(reason_fastvmode);
 
 static ssize_t reason_mem_thermal_show(struct kobject *kobj,
 				       struct kobj_attribute *attr, char *buff)
@@ -202,7 +190,6 @@ static ssize_t reason_mem_thermal_show(struct kobject *kobj,
 
 	return sysfs_emit(buff, "%u\n", is_throttled_by(gt, MEM_THERMAL_MASK));
 }
-static struct kobj_attribute attr_reason_mem_thermal = __ATTR_RO(reason_mem_thermal);
 
 static ssize_t reason_vr_thermal_show(struct kobject *kobj,
 				      struct kobj_attribute *attr, char *buff)
@@ -211,7 +198,6 @@ static ssize_t reason_vr_thermal_show(struct kobject *kobj,
 
 	return sysfs_emit(buff, "%u\n", is_throttled_by(gt, VR_THERMAL_MASK));
 }
-static struct kobj_attribute attr_reason_vr_thermal = __ATTR_RO(reason_vr_thermal);
 
 static ssize_t reason_iccmax_show(struct kobject *kobj,
 				  struct kobj_attribute *attr, char *buff)
@@ -220,7 +206,6 @@ static ssize_t reason_iccmax_show(struct kobject *kobj,
 
 	return sysfs_emit(buff, "%u\n", is_throttled_by(gt, ICCMAX_MASK));
 }
-static struct kobj_attribute attr_reason_iccmax = __ATTR_RO(reason_iccmax);
 
 static ssize_t reason_psys_pl1_show(struct kobject *kobj,
 				    struct kobj_attribute *attr, char *buff)
@@ -229,7 +214,6 @@ static ssize_t reason_psys_pl1_show(struct kobject *kobj,
 
 	return sysfs_emit(buff, "%u\n", is_throttled_by(gt, PSYS_PL1_MASK));
 }
-static struct kobj_attribute attr_reason_psys_pl1 = __ATTR_RO(reason_psys_pl1);
 
 static ssize_t reason_psys_pl2_show(struct kobject *kobj,
 				    struct kobj_attribute *attr, char *buff)
@@ -238,7 +222,6 @@ static ssize_t reason_psys_pl2_show(struct kobject *kobj,
 
 	return sysfs_emit(buff, "%u\n", is_throttled_by(gt, PSYS_PL2_MASK));
 }
-static struct kobj_attribute attr_reason_psys_pl2 = __ATTR_RO(reason_psys_pl2);
 
 static ssize_t reason_p0_freq_show(struct kobject *kobj,
 				   struct kobj_attribute *attr, char *buff)
@@ -247,7 +230,6 @@ static ssize_t reason_p0_freq_show(struct kobject *kobj,
 
 	return sysfs_emit(buff, "%u\n", is_throttled_by(gt, P0_FREQ_MASK));
 }
-static struct kobj_attribute attr_reason_p0_freq = __ATTR_RO(reason_p0_freq);
 
 static ssize_t reason_psys_crit_show(struct kobject *kobj,
 				     struct kobj_attribute *attr, char *buff)
@@ -256,7 +238,19 @@ static ssize_t reason_psys_crit_show(struct kobject *kobj,
 
 	return sysfs_emit(buff, "%u\n", is_throttled_by(gt, PSYS_CRIT_MASK));
 }
-static struct kobj_attribute attr_reason_psys_crit = __ATTR_RO(reason_psys_crit);
+
+#define THROTTLE_ATTR_RO(name) \
+	struct kobj_attribute attr_##name = __ATTR_RO(name)
+
+static THROTTLE_ATTR_RO(status);
+static THROTTLE_ATTR_RO(reason_pl1);
+static THROTTLE_ATTR_RO(reason_pl2);
+static THROTTLE_ATTR_RO(reason_pl4);
+static THROTTLE_ATTR_RO(reason_thermal);
+static THROTTLE_ATTR_RO(reason_prochot);
+static THROTTLE_ATTR_RO(reason_ratl);
+static THROTTLE_ATTR_RO(reason_vr_thermalert);
+static THROTTLE_ATTR_RO(reason_vr_tdc);
 
 static struct attribute *throttle_attrs[] = {
 	&attr_status.attr,
@@ -271,19 +265,33 @@ static struct attribute *throttle_attrs[] = {
 	NULL
 };
 
+static THROTTLE_ATTR_RO(reason_soc_thermal);
+
+static THROTTLE_ATTR_RO(reason_soc_avg_thermal);
+static THROTTLE_ATTR_RO(reason_fastvmode);
+static THROTTLE_ATTR_RO(reason_mem_thermal);
+static THROTTLE_ATTR_RO(reason_vr_thermal);
+static THROTTLE_ATTR_RO(reason_iccmax);
+static THROTTLE_ATTR_RO(reason_psys_pl1);
+static THROTTLE_ATTR_RO(reason_psys_pl2);
+static THROTTLE_ATTR_RO(reason_p0_freq);
+static THROTTLE_ATTR_RO(reason_psys_crit);
+
 static struct attribute *cri_throttle_attrs[] = {
+	/* Common */
 	&attr_status.attr,
+	&attr_reason_pl1.attr,
+	&attr_reason_pl2.attr,
+	&attr_reason_pl4.attr,
 	&attr_reason_prochot.attr,
+	&attr_reason_ratl.attr,
+	/* CRI */
+	&attr_reason_vr_thermal.attr,
 	&attr_reason_soc_thermal.attr,
 	&attr_reason_mem_thermal.attr,
-	&attr_reason_vr_thermal.attr,
 	&attr_reason_iccmax.attr,
-	&attr_reason_ratl.attr,
 	&attr_reason_soc_avg_thermal.attr,
 	&attr_reason_fastvmode.attr,
-	&attr_reason_pl4.attr,
-	&attr_reason_pl1.attr,
-	&attr_reason_pl2.attr,
 	&attr_reason_psys_pl1.attr,
 	&attr_reason_psys_pl2.attr,
 	&attr_reason_p0_freq.attr,

-- 
2.51.0


^ permalink raw reply related	[flat|nested] 17+ messages in thread

* ✗ CI.checkpatch: warning for drm/xe: CRI support in gt_throttle + refactors
  2025-10-23 16:56 [PATCH 0/5] drm/xe: CRI support in gt_throttle + refactors Lucas De Marchi
                   ` (4 preceding siblings ...)
  2025-10-23 16:56 ` [PATCH 5/5] drm/xe/gt_throttle: Tidy up attribute definition Lucas De Marchi
@ 2025-10-23 19:29 ` Patchwork
  2025-10-23 19:31 ` ✓ CI.KUnit: success " Patchwork
                   ` (2 subsequent siblings)
  8 siblings, 0 replies; 17+ messages in thread
From: Patchwork @ 2025-10-23 19:29 UTC (permalink / raw)
  To: Lucas De Marchi; +Cc: intel-xe

== Series Details ==

Series: drm/xe: CRI support in gt_throttle + refactors
URL   : https://patchwork.freedesktop.org/series/156437/
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
8677d3b99d5fd579c143b22605d99121e2482e8a
+ cd /kernel
+ git config --global --add safe.directory /kernel
+ git log -n1
commit 1e49ab4f2edc41f5f190d24f5d92dbe9043afb17
Author: Lucas De Marchi <lucas.demarchi@intel.com>
Date:   Thu Oct 23 09:56:58 2025 -0700

    drm/xe/gt_throttle: Tidy up attribute definition
    
    Move the attribute definitions to be grouped together rather than near
    the show() function: checkpatch keeps complaining about the missing
    newline when defining new attributes and it reads better to group
    everything, which should match e.g. the xe_pmu.c style.
    
    While grouping them, also define a THROTTLE_ATTR_RO(), similar to
    DEVICE_ATTR_RO(), and use it to define all attributes. This makes it
    shorter and with a familiar syntax.
    
    Finally, during the cri_throttle_attrs[] array definition, also
    highlight what's coming from common attributes and what is CRI-specific.
    
    These 3 things could be done as separate commits, but they are all about
    the same thing: reduce the attribute definition verbosity and are very
    simple and mechanical.
    
    Signed-off-by: Lucas De Marchi <lucas.demarchi@intel.com>
+ /mt/dim checkpatch c63ccee28ae7ab4cb57a2433314f08c71da914ff drm-intel
07c7a67ffcaa drm/xe/cri: Add new performance limit reasons bits
-:203: CHECK:LINE_SPACING: Please use a blank line after function/struct/union/enum declarations
#203: FILE: drivers/gpu/drm/xe/xe_gt_throttle.c:278:
+}
+static struct kobj_attribute attr_reason_soc_thermal = __ATTR_RO(reason_soc_thermal);

-:221: CHECK:LINE_SPACING: Please use a blank line after function/struct/union/enum declarations
#221: FILE: drivers/gpu/drm/xe/xe_gt_throttle.c:322:
+}
+static struct kobj_attribute attr_reason_soc_avg_thermal = __ATTR_RO(reason_soc_avg_thermal);

-:239: CHECK:LINE_SPACING: Please use a blank line after function/struct/union/enum declarations
#239: FILE: drivers/gpu/drm/xe/xe_gt_throttle.c:344:
+}
+static struct kobj_attribute attr_reason_fastvmode = __ATTR_RO(reason_fastvmode);

-:250: CHECK:LINE_SPACING: Please use a blank line after function/struct/union/enum declarations
#250: FILE: drivers/gpu/drm/xe/xe_gt_throttle.c:355:
+}
+static struct kobj_attribute attr_reason_mem_thermal = __ATTR_RO(reason_mem_thermal);

-:261: CHECK:LINE_SPACING: Please use a blank line after function/struct/union/enum declarations
#261: FILE: drivers/gpu/drm/xe/xe_gt_throttle.c:366:
+}
+static struct kobj_attribute attr_reason_vr_thermal = __ATTR_RO(reason_vr_thermal);

-:272: CHECK:LINE_SPACING: Please use a blank line after function/struct/union/enum declarations
#272: FILE: drivers/gpu/drm/xe/xe_gt_throttle.c:377:
+}
+static struct kobj_attribute attr_reason_iccmax = __ATTR_RO(reason_iccmax);

-:283: CHECK:LINE_SPACING: Please use a blank line after function/struct/union/enum declarations
#283: FILE: drivers/gpu/drm/xe/xe_gt_throttle.c:388:
+}
+static struct kobj_attribute attr_reason_psys_pl1 = __ATTR_RO(reason_psys_pl1);

-:294: CHECK:LINE_SPACING: Please use a blank line after function/struct/union/enum declarations
#294: FILE: drivers/gpu/drm/xe/xe_gt_throttle.c:399:
+}
+static struct kobj_attribute attr_reason_psys_pl2 = __ATTR_RO(reason_psys_pl2);

-:305: CHECK:LINE_SPACING: Please use a blank line after function/struct/union/enum declarations
#305: FILE: drivers/gpu/drm/xe/xe_gt_throttle.c:410:
+}
+static struct kobj_attribute attr_reason_p0_freq = __ATTR_RO(reason_p0_freq);

-:316: CHECK:LINE_SPACING: Please use a blank line after function/struct/union/enum declarations
#316: FILE: drivers/gpu/drm/xe/xe_gt_throttle.c:421:
+}
+static struct kobj_attribute attr_reason_psys_crit = __ATTR_RO(reason_psys_crit);

total: 0 errors, 0 warnings, 10 checks, 354 lines checked
63a3de797c9b drm/xe/gt_throttle: Tidy up perf reasons reading
ab53c1af3962 drm/xe/gt_throttle: Always read and mask
bfb6813266f5 drm/xe/gt_throttle: Add throttle_to_gt()
1e49ab4f2edc drm/xe/gt_throttle: Tidy up attribute definition



^ permalink raw reply	[flat|nested] 17+ messages in thread

* ✓ CI.KUnit: success for drm/xe: CRI support in gt_throttle + refactors
  2025-10-23 16:56 [PATCH 0/5] drm/xe: CRI support in gt_throttle + refactors Lucas De Marchi
                   ` (5 preceding siblings ...)
  2025-10-23 19:29 ` ✗ CI.checkpatch: warning for drm/xe: CRI support in gt_throttle + refactors Patchwork
@ 2025-10-23 19:31 ` Patchwork
  2025-10-23 20:32 ` ✓ Xe.CI.BAT: " Patchwork
  2025-10-24  8:42 ` ✗ Xe.CI.Full: failure " Patchwork
  8 siblings, 0 replies; 17+ messages in thread
From: Patchwork @ 2025-10-23 19:31 UTC (permalink / raw)
  To: Lucas De Marchi; +Cc: intel-xe

== Series Details ==

Series: drm/xe: CRI support in gt_throttle + refactors
URL   : https://patchwork.freedesktop.org/series/156437/
State : success

== Summary ==

+ trap cleanup EXIT
+ /kernel/tools/testing/kunit/kunit.py run --kunitconfig /kernel/drivers/gpu/drm/xe/.kunitconfig
[19:29:52] Configuring KUnit Kernel ...
Generating .config ...
Populating config with:
$ make ARCH=um O=.kunit olddefconfig
[19:29: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
[19:30:28] Starting KUnit Kernel (1/1)...
[19:30:28] ============================================================
Running tests with:
$ .kunit/linux kunit.enable=1 mem=1G console=tty kunit_shutdown=halt
[19:30:28] ================== guc_buf (11 subtests) ===================
[19:30:28] [PASSED] test_smallest
[19:30:28] [PASSED] test_largest
[19:30:28] [PASSED] test_granular
[19:30:28] [PASSED] test_unique
[19:30:28] [PASSED] test_overlap
[19:30:28] [PASSED] test_reusable
[19:30:28] [PASSED] test_too_big
[19:30:28] [PASSED] test_flush
[19:30:28] [PASSED] test_lookup
[19:30:28] [PASSED] test_data
[19:30:28] [PASSED] test_class
[19:30:28] ===================== [PASSED] guc_buf =====================
[19:30:28] =================== guc_dbm (7 subtests) ===================
[19:30:28] [PASSED] test_empty
[19:30:28] [PASSED] test_default
[19:30:28] ======================== test_size  ========================
[19:30:28] [PASSED] 4
[19:30:28] [PASSED] 8
[19:30:28] [PASSED] 32
[19:30:28] [PASSED] 256
[19:30:28] ==================== [PASSED] test_size ====================
[19:30:28] ======================= test_reuse  ========================
[19:30:28] [PASSED] 4
[19:30:28] [PASSED] 8
[19:30:28] [PASSED] 32
[19:30:28] [PASSED] 256
[19:30:28] =================== [PASSED] test_reuse ====================
[19:30:28] =================== test_range_overlap  ====================
[19:30:28] [PASSED] 4
[19:30:28] [PASSED] 8
[19:30:28] [PASSED] 32
[19:30:28] [PASSED] 256
[19:30:28] =============== [PASSED] test_range_overlap ================
[19:30:28] =================== test_range_compact  ====================
[19:30:28] [PASSED] 4
[19:30:28] [PASSED] 8
[19:30:28] [PASSED] 32
[19:30:28] [PASSED] 256
[19:30:28] =============== [PASSED] test_range_compact ================
[19:30:28] ==================== test_range_spare  =====================
[19:30:28] [PASSED] 4
[19:30:28] [PASSED] 8
[19:30:28] [PASSED] 32
[19:30:28] [PASSED] 256
[19:30:28] ================ [PASSED] test_range_spare =================
[19:30:28] ===================== [PASSED] guc_dbm =====================
[19:30:28] =================== guc_idm (6 subtests) ===================
[19:30:28] [PASSED] bad_init
[19:30:28] [PASSED] no_init
[19:30:28] [PASSED] init_fini
[19:30:28] [PASSED] check_used
[19:30:28] [PASSED] check_quota
[19:30:28] [PASSED] check_all
[19:30:28] ===================== [PASSED] guc_idm =====================
[19:30:28] ================== no_relay (3 subtests) ===================
[19:30:28] [PASSED] xe_drops_guc2pf_if_not_ready
[19:30:28] [PASSED] xe_drops_guc2vf_if_not_ready
[19:30:28] [PASSED] xe_rejects_send_if_not_ready
[19:30:28] ==================== [PASSED] no_relay =====================
[19:30:28] ================== pf_relay (14 subtests) ==================
[19:30:28] [PASSED] pf_rejects_guc2pf_too_short
[19:30:28] [PASSED] pf_rejects_guc2pf_too_long
[19:30:28] [PASSED] pf_rejects_guc2pf_no_payload
[19:30:28] [PASSED] pf_fails_no_payload
[19:30:28] [PASSED] pf_fails_bad_origin
[19:30:28] [PASSED] pf_fails_bad_type
[19:30:28] [PASSED] pf_txn_reports_error
[19:30:28] [PASSED] pf_txn_sends_pf2guc
[19:30:28] [PASSED] pf_sends_pf2guc
[19:30:28] [SKIPPED] pf_loopback_nop
[19:30:28] [SKIPPED] pf_loopback_echo
[19:30:28] [SKIPPED] pf_loopback_fail
[19:30:28] [SKIPPED] pf_loopback_busy
[19:30:28] [SKIPPED] pf_loopback_retry
[19:30:28] ==================== [PASSED] pf_relay =====================
[19:30:28] ================== vf_relay (3 subtests) ===================
[19:30:28] [PASSED] vf_rejects_guc2vf_too_short
[19:30:28] [PASSED] vf_rejects_guc2vf_too_long
[19:30:28] [PASSED] vf_rejects_guc2vf_no_payload
[19:30:28] ==================== [PASSED] vf_relay =====================
[19:30:28] ===================== lmtt (1 subtest) =====================
[19:30:28] ======================== test_ops  =========================
[19:30:28] [PASSED] 2-level
[19:30:28] [PASSED] multi-level
[19:30:28] ==================== [PASSED] test_ops =====================
[19:30:28] ====================== [PASSED] lmtt =======================
[19:30:28] ================= pf_service (11 subtests) =================
[19:30:28] [PASSED] pf_negotiate_any
[19:30:28] [PASSED] pf_negotiate_base_match
[19:30:28] [PASSED] pf_negotiate_base_newer
[19:30:28] [PASSED] pf_negotiate_base_next
[19:30:28] [SKIPPED] pf_negotiate_base_older
[19:30:28] [PASSED] pf_negotiate_base_prev
[19:30:28] [PASSED] pf_negotiate_latest_match
[19:30:28] [PASSED] pf_negotiate_latest_newer
[19:30:28] [PASSED] pf_negotiate_latest_next
[19:30:28] [SKIPPED] pf_negotiate_latest_older
[19:30:28] [SKIPPED] pf_negotiate_latest_prev
[19:30:28] =================== [PASSED] pf_service ====================
[19:30:28] ================= xe_guc_g2g (2 subtests) ==================
[19:30:28] ============== xe_live_guc_g2g_kunit_default  ==============
[19:30:28] ========= [SKIPPED] xe_live_guc_g2g_kunit_default ==========
[19:30:28] ============== xe_live_guc_g2g_kunit_allmem  ===============
[19:30:28] ========== [SKIPPED] xe_live_guc_g2g_kunit_allmem ==========
[19:30:28] =================== [SKIPPED] xe_guc_g2g ===================
[19:30:28] =================== xe_mocs (2 subtests) ===================
[19:30:28] ================ xe_live_mocs_kernel_kunit  ================
[19:30:28] =========== [SKIPPED] xe_live_mocs_kernel_kunit ============
[19:30:28] ================ xe_live_mocs_reset_kunit  =================
[19:30:28] ============ [SKIPPED] xe_live_mocs_reset_kunit ============
[19:30:28] ==================== [SKIPPED] xe_mocs =====================
[19:30:28] ================= xe_migrate (2 subtests) ==================
[19:30:28] ================= xe_migrate_sanity_kunit  =================
[19:30:28] ============ [SKIPPED] xe_migrate_sanity_kunit =============
[19:30:28] ================== xe_validate_ccs_kunit  ==================
[19:30:28] ============= [SKIPPED] xe_validate_ccs_kunit ==============
[19:30:28] =================== [SKIPPED] xe_migrate ===================
[19:30:28] ================== xe_dma_buf (1 subtest) ==================
[19:30:28] ==================== xe_dma_buf_kunit  =====================
[19:30:28] ================ [SKIPPED] xe_dma_buf_kunit ================
[19:30:28] =================== [SKIPPED] xe_dma_buf ===================
[19:30:28] ================= xe_bo_shrink (1 subtest) =================
[19:30:28] =================== xe_bo_shrink_kunit  ====================
[19:30:28] =============== [SKIPPED] xe_bo_shrink_kunit ===============
[19:30:28] ================== [SKIPPED] xe_bo_shrink ==================
[19:30:28] ==================== xe_bo (2 subtests) ====================
[19:30:28] ================== xe_ccs_migrate_kunit  ===================
[19:30:28] ============== [SKIPPED] xe_ccs_migrate_kunit ==============
[19:30:28] ==================== xe_bo_evict_kunit  ====================
[19:30:28] =============== [SKIPPED] xe_bo_evict_kunit ================
[19:30:28] ===================== [SKIPPED] xe_bo ======================
[19:30:28] ==================== args (11 subtests) ====================
[19:30:28] [PASSED] count_args_test
[19:30:28] [PASSED] call_args_example
[19:30:28] [PASSED] call_args_test
[19:30:28] [PASSED] drop_first_arg_example
[19:30:28] [PASSED] drop_first_arg_test
[19:30:28] [PASSED] first_arg_example
[19:30:28] [PASSED] first_arg_test
[19:30:28] [PASSED] last_arg_example
[19:30:28] [PASSED] last_arg_test
[19:30:28] [PASSED] pick_arg_example
[19:30:28] [PASSED] sep_comma_example
[19:30:28] ====================== [PASSED] args =======================
[19:30:28] =================== xe_pci (3 subtests) ====================
[19:30:28] ==================== check_graphics_ip  ====================
[19:30:28] [PASSED] 12.00 Xe_LP
[19:30:28] [PASSED] 12.10 Xe_LP+
[19:30:28] [PASSED] 12.55 Xe_HPG
[19:30:28] [PASSED] 12.60 Xe_HPC
[19:30:28] [PASSED] 12.70 Xe_LPG
[19:30:28] [PASSED] 12.71 Xe_LPG
[19:30:28] [PASSED] 12.74 Xe_LPG+
[19:30:28] [PASSED] 20.01 Xe2_HPG
[19:30:28] [PASSED] 20.02 Xe2_HPG
[19:30:28] [PASSED] 20.04 Xe2_LPG
[19:30:28] [PASSED] 30.00 Xe3_LPG
[19:30:28] [PASSED] 30.01 Xe3_LPG
[19:30:28] [PASSED] 30.03 Xe3_LPG
[19:30:28] [PASSED] 30.04 Xe3_LPG
[19:30:28] [PASSED] 30.05 Xe3_LPG
[19:30:28] [PASSED] 35.11 Xe3p_XPC
[19:30:28] ================ [PASSED] check_graphics_ip ================
[19:30:28] ===================== check_media_ip  ======================
[19:30:28] [PASSED] 12.00 Xe_M
[19:30:28] [PASSED] 12.55 Xe_HPM
[19:30:28] [PASSED] 13.00 Xe_LPM+
[19:30:28] [PASSED] 13.01 Xe2_HPM
[19:30:28] [PASSED] 20.00 Xe2_LPM
[19:30:28] [PASSED] 30.00 Xe3_LPM
[19:30:28] [PASSED] 30.02 Xe3_LPM
[19:30:28] [PASSED] 35.00 Xe3p_LPM
[19:30:28] [PASSED] 35.03 Xe3p_HPM
[19:30:28] ================= [PASSED] check_media_ip ==================
[19:30:28] =================== check_platform_desc  ===================
[19:30:28] [PASSED] 0x9A60 (TIGERLAKE)
[19:30:28] [PASSED] 0x9A68 (TIGERLAKE)
[19:30:28] [PASSED] 0x9A70 (TIGERLAKE)
[19:30:28] [PASSED] 0x9A40 (TIGERLAKE)
[19:30:28] [PASSED] 0x9A49 (TIGERLAKE)
[19:30:28] [PASSED] 0x9A59 (TIGERLAKE)
[19:30:28] [PASSED] 0x9A78 (TIGERLAKE)
[19:30:28] [PASSED] 0x9AC0 (TIGERLAKE)
[19:30:28] [PASSED] 0x9AC9 (TIGERLAKE)
[19:30:28] [PASSED] 0x9AD9 (TIGERLAKE)
[19:30:28] [PASSED] 0x9AF8 (TIGERLAKE)
[19:30:28] [PASSED] 0x4C80 (ROCKETLAKE)
[19:30:28] [PASSED] 0x4C8A (ROCKETLAKE)
[19:30:28] [PASSED] 0x4C8B (ROCKETLAKE)
[19:30:28] [PASSED] 0x4C8C (ROCKETLAKE)
[19:30:28] [PASSED] 0x4C90 (ROCKETLAKE)
[19:30:28] [PASSED] 0x4C9A (ROCKETLAKE)
[19:30:28] [PASSED] 0x4680 (ALDERLAKE_S)
[19:30:28] [PASSED] 0x4682 (ALDERLAKE_S)
[19:30:28] [PASSED] 0x4688 (ALDERLAKE_S)
[19:30:28] [PASSED] 0x468A (ALDERLAKE_S)
[19:30:28] [PASSED] 0x468B (ALDERLAKE_S)
[19:30:28] [PASSED] 0x4690 (ALDERLAKE_S)
[19:30:28] [PASSED] 0x4692 (ALDERLAKE_S)
[19:30:28] [PASSED] 0x4693 (ALDERLAKE_S)
[19:30:28] [PASSED] 0x46A0 (ALDERLAKE_P)
[19:30:28] [PASSED] 0x46A1 (ALDERLAKE_P)
[19:30:28] [PASSED] 0x46A2 (ALDERLAKE_P)
[19:30:28] [PASSED] 0x46A3 (ALDERLAKE_P)
[19:30:28] [PASSED] 0x46A6 (ALDERLAKE_P)
[19:30:28] [PASSED] 0x46A8 (ALDERLAKE_P)
[19:30:28] [PASSED] 0x46AA (ALDERLAKE_P)
[19:30:28] [PASSED] 0x462A (ALDERLAKE_P)
[19:30:28] [PASSED] 0x4626 (ALDERLAKE_P)
[19:30:28] [PASSED] 0x4628 (ALDERLAKE_P)
[19:30:28] [PASSED] 0x46B0 (ALDERLAKE_P)
[19:30:28] [PASSED] 0x46B1 (ALDERLAKE_P)
[19:30:28] [PASSED] 0x46B2 (ALDERLAKE_P)
[19:30:28] [PASSED] 0x46B3 (ALDERLAKE_P)
[19:30:28] [PASSED] 0x46C0 (ALDERLAKE_P)
[19:30:28] [PASSED] 0x46C1 (ALDERLAKE_P)
[19:30:28] [PASSED] 0x46C2 (ALDERLAKE_P)
[19:30:28] [PASSED] 0x46C3 (ALDERLAKE_P)
[19:30:28] [PASSED] 0x46D0 (ALDERLAKE_N)
[19:30:28] [PASSED] 0x46D1 (ALDERLAKE_N)
[19:30:28] [PASSED] 0x46D2 (ALDERLAKE_N)
[19:30:28] [PASSED] 0x46D3 (ALDERLAKE_N)
[19:30:28] [PASSED] 0x46D4 (ALDERLAKE_N)
[19:30:28] [PASSED] 0xA721 (ALDERLAKE_P)
[19:30:28] [PASSED] 0xA7A1 (ALDERLAKE_P)
[19:30:28] [PASSED] 0xA7A9 (ALDERLAKE_P)
[19:30:28] [PASSED] 0xA7AC (ALDERLAKE_P)
[19:30:28] [PASSED] 0xA7AD (ALDERLAKE_P)
[19:30:28] [PASSED] 0xA720 (ALDERLAKE_P)
[19:30:28] [PASSED] 0xA7A0 (ALDERLAKE_P)
[19:30:28] [PASSED] 0xA7A8 (ALDERLAKE_P)
[19:30:28] [PASSED] 0xA7AA (ALDERLAKE_P)
[19:30:28] [PASSED] 0xA7AB (ALDERLAKE_P)
[19:30:28] [PASSED] 0xA780 (ALDERLAKE_S)
[19:30:28] [PASSED] 0xA781 (ALDERLAKE_S)
[19:30:28] [PASSED] 0xA782 (ALDERLAKE_S)
[19:30:28] [PASSED] 0xA783 (ALDERLAKE_S)
[19:30:28] [PASSED] 0xA788 (ALDERLAKE_S)
[19:30:28] [PASSED] 0xA789 (ALDERLAKE_S)
[19:30:28] [PASSED] 0xA78A (ALDERLAKE_S)
[19:30:28] [PASSED] 0xA78B (ALDERLAKE_S)
[19:30:28] [PASSED] 0x4905 (DG1)
[19:30:28] [PASSED] 0x4906 (DG1)
[19:30:28] [PASSED] 0x4907 (DG1)
[19:30:28] [PASSED] 0x4908 (DG1)
[19:30:28] [PASSED] 0x4909 (DG1)
[19:30:28] [PASSED] 0x56C0 (DG2)
[19:30:28] [PASSED] 0x56C2 (DG2)
[19:30:28] [PASSED] 0x56C1 (DG2)
[19:30:28] [PASSED] 0x7D51 (METEORLAKE)
[19:30:28] [PASSED] 0x7DD1 (METEORLAKE)
[19:30:28] [PASSED] 0x7D41 (METEORLAKE)
[19:30:28] [PASSED] 0x7D67 (METEORLAKE)
[19:30:28] [PASSED] 0xB640 (METEORLAKE)
[19:30:28] [PASSED] 0x56A0 (DG2)
[19:30:28] [PASSED] 0x56A1 (DG2)
[19:30:28] [PASSED] 0x56A2 (DG2)
[19:30:28] [PASSED] 0x56BE (DG2)
[19:30:28] [PASSED] 0x56BF (DG2)
[19:30:28] [PASSED] 0x5690 (DG2)
[19:30:28] [PASSED] 0x5691 (DG2)
[19:30:28] [PASSED] 0x5692 (DG2)
[19:30:28] [PASSED] 0x56A5 (DG2)
[19:30:28] [PASSED] 0x56A6 (DG2)
[19:30:28] [PASSED] 0x56B0 (DG2)
[19:30:28] [PASSED] 0x56B1 (DG2)
[19:30:28] [PASSED] 0x56BA (DG2)
[19:30:28] [PASSED] 0x56BB (DG2)
[19:30:28] [PASSED] 0x56BC (DG2)
[19:30:28] [PASSED] 0x56BD (DG2)
[19:30:28] [PASSED] 0x5693 (DG2)
[19:30:28] [PASSED] 0x5694 (DG2)
[19:30:28] [PASSED] 0x5695 (DG2)
[19:30:28] [PASSED] 0x56A3 (DG2)
[19:30:28] [PASSED] 0x56A4 (DG2)
[19:30:28] [PASSED] 0x56B2 (DG2)
[19:30:28] [PASSED] 0x56B3 (DG2)
[19:30:28] [PASSED] 0x5696 (DG2)
[19:30:28] [PASSED] 0x5697 (DG2)
[19:30:28] [PASSED] 0xB69 (PVC)
[19:30:28] [PASSED] 0xB6E (PVC)
[19:30:28] [PASSED] 0xBD4 (PVC)
[19:30:28] [PASSED] 0xBD5 (PVC)
[19:30:28] [PASSED] 0xBD6 (PVC)
[19:30:28] [PASSED] 0xBD7 (PVC)
[19:30:28] [PASSED] 0xBD8 (PVC)
[19:30:28] [PASSED] 0xBD9 (PVC)
[19:30:28] [PASSED] 0xBDA (PVC)
[19:30:28] [PASSED] 0xBDB (PVC)
[19:30:28] [PASSED] 0xBE0 (PVC)
[19:30:28] [PASSED] 0xBE1 (PVC)
[19:30:28] [PASSED] 0xBE5 (PVC)
[19:30:28] [PASSED] 0x7D40 (METEORLAKE)
[19:30:28] [PASSED] 0x7D45 (METEORLAKE)
[19:30:28] [PASSED] 0x7D55 (METEORLAKE)
[19:30:28] [PASSED] 0x7D60 (METEORLAKE)
[19:30:28] [PASSED] 0x7DD5 (METEORLAKE)
[19:30:28] [PASSED] 0x6420 (LUNARLAKE)
[19:30:28] [PASSED] 0x64A0 (LUNARLAKE)
[19:30:28] [PASSED] 0x64B0 (LUNARLAKE)
[19:30:28] [PASSED] 0xE202 (BATTLEMAGE)
[19:30:28] [PASSED] 0xE209 (BATTLEMAGE)
[19:30:28] [PASSED] 0xE20B (BATTLEMAGE)
[19:30:28] [PASSED] 0xE20C (BATTLEMAGE)
[19:30:28] [PASSED] 0xE20D (BATTLEMAGE)
[19:30:28] [PASSED] 0xE210 (BATTLEMAGE)
[19:30:28] [PASSED] 0xE211 (BATTLEMAGE)
[19:30:28] [PASSED] 0xE212 (BATTLEMAGE)
[19:30:28] [PASSED] 0xE216 (BATTLEMAGE)
[19:30:28] [PASSED] 0xE220 (BATTLEMAGE)
[19:30:28] [PASSED] 0xE221 (BATTLEMAGE)
[19:30:28] [PASSED] 0xE222 (BATTLEMAGE)
[19:30:28] [PASSED] 0xE223 (BATTLEMAGE)
[19:30:28] [PASSED] 0xB080 (PANTHERLAKE)
[19:30:28] [PASSED] 0xB081 (PANTHERLAKE)
[19:30:28] [PASSED] 0xB082 (PANTHERLAKE)
[19:30:28] [PASSED] 0xB083 (PANTHERLAKE)
[19:30:28] [PASSED] 0xB084 (PANTHERLAKE)
[19:30:28] [PASSED] 0xB085 (PANTHERLAKE)
[19:30:28] [PASSED] 0xB086 (PANTHERLAKE)
[19:30:28] [PASSED] 0xB087 (PANTHERLAKE)
[19:30:28] [PASSED] 0xB08F (PANTHERLAKE)
[19:30:28] [PASSED] 0xB090 (PANTHERLAKE)
[19:30:28] [PASSED] 0xB0A0 (PANTHERLAKE)
[19:30:28] [PASSED] 0xB0B0 (PANTHERLAKE)
[19:30:28] [PASSED] 0xFD80 (PANTHERLAKE)
[19:30:28] [PASSED] 0xFD81 (PANTHERLAKE)
[19:30:28] [PASSED] 0xD740 (NOVALAKE_S)
[19:30:28] [PASSED] 0xD741 (NOVALAKE_S)
[19:30:28] [PASSED] 0xD742 (NOVALAKE_S)
[19:30:28] [PASSED] 0xD743 (NOVALAKE_S)
[19:30:28] [PASSED] 0xD744 (NOVALAKE_S)
[19:30:28] [PASSED] 0xD745 (NOVALAKE_S)
[19:30:28] [PASSED] 0x674C (CRESCENTISLAND)
[19:30:28] =============== [PASSED] check_platform_desc ===============
[19:30:28] ===================== [PASSED] xe_pci ======================
[19:30:28] =================== xe_rtp (2 subtests) ====================
[19:30:28] =============== xe_rtp_process_to_sr_tests  ================
[19:30:28] [PASSED] coalesce-same-reg
[19:30:28] [PASSED] no-match-no-add
[19:30:28] [PASSED] match-or
[19:30:28] [PASSED] match-or-xfail
[19:30:28] [PASSED] no-match-no-add-multiple-rules
[19:30:28] [PASSED] two-regs-two-entries
[19:30:28] [PASSED] clr-one-set-other
[19:30:28] [PASSED] set-field
[19:30:28] [PASSED] conflict-duplicate
[19:30:28] [PASSED] conflict-not-disjoint
[19:30:28] [PASSED] conflict-reg-type
[19:30:28] =========== [PASSED] xe_rtp_process_to_sr_tests ============
[19:30:28] ================== xe_rtp_process_tests  ===================
[19:30:28] [PASSED] active1
[19:30:28] [PASSED] active2
[19:30:28] [PASSED] active-inactive
[19:30:28] [PASSED] inactive-active
[19:30:28] [PASSED] inactive-1st_or_active-inactive
[19:30:28] [PASSED] inactive-2nd_or_active-inactive
[19:30:28] [PASSED] inactive-last_or_active-inactive
stty: 'standard input': Inappropriate ioctl for device
[19:30:28] [PASSED] inactive-no_or_active-inactive
[19:30:28] ============== [PASSED] xe_rtp_process_tests ===============
[19:30:28] ===================== [PASSED] xe_rtp ======================
[19:30:28] ==================== xe_wa (1 subtest) =====================
[19:30:28] ======================== xe_wa_gt  =========================
[19:30:28] [PASSED] TIGERLAKE B0
[19:30:28] [PASSED] DG1 A0
[19:30:28] [PASSED] DG1 B0
[19:30:28] [PASSED] ALDERLAKE_S A0
[19:30:28] [PASSED] ALDERLAKE_S B0
[19:30:28] [PASSED] ALDERLAKE_S C0
[19:30:28] [PASSED] ALDERLAKE_S D0
[19:30:28] [PASSED] ALDERLAKE_P A0
[19:30:28] [PASSED] ALDERLAKE_P B0
[19:30:28] [PASSED] ALDERLAKE_P C0
[19:30:28] [PASSED] ALDERLAKE_S RPLS D0
[19:30:28] [PASSED] ALDERLAKE_P RPLU E0
[19:30:28] [PASSED] DG2 G10 C0
[19:30:28] [PASSED] DG2 G11 B1
[19:30:28] [PASSED] DG2 G12 A1
[19:30:28] [PASSED] METEORLAKE 12.70(Xe_LPG) A0 13.00(Xe_LPM+) A0
[19:30:28] [PASSED] METEORLAKE 12.71(Xe_LPG) A0 13.00(Xe_LPM+) A0
[19:30:28] [PASSED] METEORLAKE 12.74(Xe_LPG+) A0 13.00(Xe_LPM+) A0
[19:30:28] [PASSED] LUNARLAKE 20.04(Xe2_LPG) A0 20.00(Xe2_LPM) A0
[19:30:28] [PASSED] LUNARLAKE 20.04(Xe2_LPG) B0 20.00(Xe2_LPM) A0
[19:30:28] [PASSED] BATTLEMAGE 20.01(Xe2_HPG) A0 13.01(Xe2_HPM) A1
[19:30:28] [PASSED] PANTHERLAKE 30.00(Xe3_LPG) A0 30.00(Xe3_LPM) A0
[19:30:28] ==================== [PASSED] xe_wa_gt =====================
[19:30:28] ====================== [PASSED] xe_wa ======================
[19:30:28] ============================================================
[19:30:28] Testing complete. Ran 318 tests: passed: 300, skipped: 18
[19:30:28] Elapsed time: 36.216s total, 4.293s configuring, 31.556s building, 0.335s running

+ /kernel/tools/testing/kunit/kunit.py run --kunitconfig /kernel/drivers/gpu/drm/tests/.kunitconfig
[19:30:28] Configuring KUnit Kernel ...
Regenerating .config ...
Populating config with:
$ make ARCH=um O=.kunit olddefconfig
[19:30:30] 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
[19:30:59] Starting KUnit Kernel (1/1)...
[19:30:59] ============================================================
Running tests with:
$ .kunit/linux kunit.enable=1 mem=1G console=tty kunit_shutdown=halt
[19:30:59] ============ drm_test_pick_cmdline (2 subtests) ============
[19:30:59] [PASSED] drm_test_pick_cmdline_res_1920_1080_60
[19:30:59] =============== drm_test_pick_cmdline_named  ===============
[19:30:59] [PASSED] NTSC
[19:30:59] [PASSED] NTSC-J
[19:30:59] [PASSED] PAL
[19:30:59] [PASSED] PAL-M
[19:30:59] =========== [PASSED] drm_test_pick_cmdline_named ===========
[19:30:59] ============== [PASSED] drm_test_pick_cmdline ==============
[19:30:59] == drm_test_atomic_get_connector_for_encoder (1 subtest) ===
[19:30:59] [PASSED] drm_test_drm_atomic_get_connector_for_encoder
[19:30:59] ==== [PASSED] drm_test_atomic_get_connector_for_encoder ====
[19:30:59] =========== drm_validate_clone_mode (2 subtests) ===========
[19:30:59] ============== drm_test_check_in_clone_mode  ===============
[19:30:59] [PASSED] in_clone_mode
[19:30:59] [PASSED] not_in_clone_mode
[19:30:59] ========== [PASSED] drm_test_check_in_clone_mode ===========
[19:30:59] =============== drm_test_check_valid_clones  ===============
[19:30:59] [PASSED] not_in_clone_mode
[19:30:59] [PASSED] valid_clone
[19:30:59] [PASSED] invalid_clone
[19:30:59] =========== [PASSED] drm_test_check_valid_clones ===========
[19:30:59] ============= [PASSED] drm_validate_clone_mode =============
[19:30:59] ============= drm_validate_modeset (1 subtest) =============
[19:30:59] [PASSED] drm_test_check_connector_changed_modeset
[19:30:59] ============== [PASSED] drm_validate_modeset ===============
[19:30:59] ====== drm_test_bridge_get_current_state (2 subtests) ======
[19:30:59] [PASSED] drm_test_drm_bridge_get_current_state_atomic
[19:30:59] [PASSED] drm_test_drm_bridge_get_current_state_legacy
[19:30:59] ======== [PASSED] drm_test_bridge_get_current_state ========
[19:30:59] ====== drm_test_bridge_helper_reset_crtc (3 subtests) ======
[19:30:59] [PASSED] drm_test_drm_bridge_helper_reset_crtc_atomic
[19:30:59] [PASSED] drm_test_drm_bridge_helper_reset_crtc_atomic_disabled
[19:30:59] [PASSED] drm_test_drm_bridge_helper_reset_crtc_legacy
[19:30:59] ======== [PASSED] drm_test_bridge_helper_reset_crtc ========
[19:30:59] ============== drm_bridge_alloc (2 subtests) ===============
[19:30:59] [PASSED] drm_test_drm_bridge_alloc_basic
[19:30:59] [PASSED] drm_test_drm_bridge_alloc_get_put
[19:30:59] ================ [PASSED] drm_bridge_alloc =================
[19:30:59] ================== drm_buddy (8 subtests) ==================
[19:30:59] [PASSED] drm_test_buddy_alloc_limit
[19:30:59] [PASSED] drm_test_buddy_alloc_optimistic
[19:30:59] [PASSED] drm_test_buddy_alloc_pessimistic
[19:30:59] [PASSED] drm_test_buddy_alloc_pathological
[19:30:59] [PASSED] drm_test_buddy_alloc_contiguous
[19:30:59] [PASSED] drm_test_buddy_alloc_clear
[19:30:59] [PASSED] drm_test_buddy_alloc_range_bias
[19:31:00] [PASSED] drm_test_buddy_fragmentation_performance
[19:31:00] ==================== [PASSED] drm_buddy ====================
[19:31:00] ============= drm_cmdline_parser (40 subtests) =============
[19:31:00] [PASSED] drm_test_cmdline_force_d_only
[19:31:00] [PASSED] drm_test_cmdline_force_D_only_dvi
[19:31:00] [PASSED] drm_test_cmdline_force_D_only_hdmi
[19:31:00] [PASSED] drm_test_cmdline_force_D_only_not_digital
[19:31:00] [PASSED] drm_test_cmdline_force_e_only
[19:31:00] [PASSED] drm_test_cmdline_res
[19:31:00] [PASSED] drm_test_cmdline_res_vesa
[19:31:00] [PASSED] drm_test_cmdline_res_vesa_rblank
[19:31:00] [PASSED] drm_test_cmdline_res_rblank
[19:31:00] [PASSED] drm_test_cmdline_res_bpp
[19:31:00] [PASSED] drm_test_cmdline_res_refresh
[19:31:00] [PASSED] drm_test_cmdline_res_bpp_refresh
[19:31:00] [PASSED] drm_test_cmdline_res_bpp_refresh_interlaced
[19:31:00] [PASSED] drm_test_cmdline_res_bpp_refresh_margins
[19:31:00] [PASSED] drm_test_cmdline_res_bpp_refresh_force_off
[19:31:00] [PASSED] drm_test_cmdline_res_bpp_refresh_force_on
[19:31:00] [PASSED] drm_test_cmdline_res_bpp_refresh_force_on_analog
[19:31:00] [PASSED] drm_test_cmdline_res_bpp_refresh_force_on_digital
[19:31:00] [PASSED] drm_test_cmdline_res_bpp_refresh_interlaced_margins_force_on
[19:31:00] [PASSED] drm_test_cmdline_res_margins_force_on
[19:31:00] [PASSED] drm_test_cmdline_res_vesa_margins
[19:31:00] [PASSED] drm_test_cmdline_name
[19:31:00] [PASSED] drm_test_cmdline_name_bpp
[19:31:00] [PASSED] drm_test_cmdline_name_option
[19:31:00] [PASSED] drm_test_cmdline_name_bpp_option
[19:31:00] [PASSED] drm_test_cmdline_rotate_0
[19:31:00] [PASSED] drm_test_cmdline_rotate_90
[19:31:00] [PASSED] drm_test_cmdline_rotate_180
[19:31:00] [PASSED] drm_test_cmdline_rotate_270
[19:31:00] [PASSED] drm_test_cmdline_hmirror
[19:31:00] [PASSED] drm_test_cmdline_vmirror
[19:31:00] [PASSED] drm_test_cmdline_margin_options
[19:31:00] [PASSED] drm_test_cmdline_multiple_options
[19:31:00] [PASSED] drm_test_cmdline_bpp_extra_and_option
[19:31:00] [PASSED] drm_test_cmdline_extra_and_option
[19:31:00] [PASSED] drm_test_cmdline_freestanding_options
[19:31:00] [PASSED] drm_test_cmdline_freestanding_force_e_and_options
[19:31:00] [PASSED] drm_test_cmdline_panel_orientation
[19:31:00] ================ drm_test_cmdline_invalid  =================
[19:31:00] [PASSED] margin_only
[19:31:00] [PASSED] interlace_only
[19:31:00] [PASSED] res_missing_x
[19:31:00] [PASSED] res_missing_y
[19:31:00] [PASSED] res_bad_y
[19:31:00] [PASSED] res_missing_y_bpp
[19:31:00] [PASSED] res_bad_bpp
[19:31:00] [PASSED] res_bad_refresh
[19:31:00] [PASSED] res_bpp_refresh_force_on_off
[19:31:00] [PASSED] res_invalid_mode
[19:31:00] [PASSED] res_bpp_wrong_place_mode
[19:31:00] [PASSED] name_bpp_refresh
[19:31:00] [PASSED] name_refresh
[19:31:00] [PASSED] name_refresh_wrong_mode
[19:31:00] [PASSED] name_refresh_invalid_mode
[19:31:00] [PASSED] rotate_multiple
[19:31:00] [PASSED] rotate_invalid_val
[19:31:00] [PASSED] rotate_truncated
[19:31:00] [PASSED] invalid_option
[19:31:00] [PASSED] invalid_tv_option
[19:31:00] [PASSED] truncated_tv_option
[19:31:00] ============ [PASSED] drm_test_cmdline_invalid =============
[19:31:00] =============== drm_test_cmdline_tv_options  ===============
[19:31:00] [PASSED] NTSC
[19:31:00] [PASSED] NTSC_443
[19:31:00] [PASSED] NTSC_J
[19:31:00] [PASSED] PAL
[19:31:00] [PASSED] PAL_M
[19:31:00] [PASSED] PAL_N
[19:31:00] [PASSED] SECAM
[19:31:00] [PASSED] MONO_525
[19:31:00] [PASSED] MONO_625
[19:31:00] =========== [PASSED] drm_test_cmdline_tv_options ===========
[19:31:00] =============== [PASSED] drm_cmdline_parser ================
[19:31:00] ========== drmm_connector_hdmi_init (20 subtests) ==========
[19:31:00] [PASSED] drm_test_connector_hdmi_init_valid
[19:31:00] [PASSED] drm_test_connector_hdmi_init_bpc_8
[19:31:00] [PASSED] drm_test_connector_hdmi_init_bpc_10
[19:31:00] [PASSED] drm_test_connector_hdmi_init_bpc_12
[19:31:00] [PASSED] drm_test_connector_hdmi_init_bpc_invalid
[19:31:00] [PASSED] drm_test_connector_hdmi_init_bpc_null
[19:31:00] [PASSED] drm_test_connector_hdmi_init_formats_empty
[19:31:00] [PASSED] drm_test_connector_hdmi_init_formats_no_rgb
[19:31:00] === drm_test_connector_hdmi_init_formats_yuv420_allowed  ===
[19:31:00] [PASSED] supported_formats=0x9 yuv420_allowed=1
[19:31:00] [PASSED] supported_formats=0x9 yuv420_allowed=0
[19:31:00] [PASSED] supported_formats=0x3 yuv420_allowed=1
[19:31:00] [PASSED] supported_formats=0x3 yuv420_allowed=0
[19:31:00] === [PASSED] drm_test_connector_hdmi_init_formats_yuv420_allowed ===
[19:31:00] [PASSED] drm_test_connector_hdmi_init_null_ddc
[19:31:00] [PASSED] drm_test_connector_hdmi_init_null_product
[19:31:00] [PASSED] drm_test_connector_hdmi_init_null_vendor
[19:31:00] [PASSED] drm_test_connector_hdmi_init_product_length_exact
[19:31:00] [PASSED] drm_test_connector_hdmi_init_product_length_too_long
[19:31:00] [PASSED] drm_test_connector_hdmi_init_product_valid
[19:31:00] [PASSED] drm_test_connector_hdmi_init_vendor_length_exact
[19:31:00] [PASSED] drm_test_connector_hdmi_init_vendor_length_too_long
[19:31:00] [PASSED] drm_test_connector_hdmi_init_vendor_valid
[19:31:00] ========= drm_test_connector_hdmi_init_type_valid  =========
[19:31:00] [PASSED] HDMI-A
[19:31:00] [PASSED] HDMI-B
[19:31:00] ===== [PASSED] drm_test_connector_hdmi_init_type_valid =====
[19:31:00] ======== drm_test_connector_hdmi_init_type_invalid  ========
[19:31:00] [PASSED] Unknown
[19:31:00] [PASSED] VGA
[19:31:00] [PASSED] DVI-I
[19:31:00] [PASSED] DVI-D
[19:31:00] [PASSED] DVI-A
[19:31:00] [PASSED] Composite
[19:31:00] [PASSED] SVIDEO
[19:31:00] [PASSED] LVDS
[19:31:00] [PASSED] Component
[19:31:00] [PASSED] DIN
[19:31:00] [PASSED] DP
[19:31:00] [PASSED] TV
[19:31:00] [PASSED] eDP
[19:31:00] [PASSED] Virtual
[19:31:00] [PASSED] DSI
[19:31:00] [PASSED] DPI
[19:31:00] [PASSED] Writeback
[19:31:00] [PASSED] SPI
[19:31:00] [PASSED] USB
[19:31:00] ==== [PASSED] drm_test_connector_hdmi_init_type_invalid ====
[19:31:00] ============ [PASSED] drmm_connector_hdmi_init =============
[19:31:00] ============= drmm_connector_init (3 subtests) =============
[19:31:00] [PASSED] drm_test_drmm_connector_init
[19:31:00] [PASSED] drm_test_drmm_connector_init_null_ddc
[19:31:00] ========= drm_test_drmm_connector_init_type_valid  =========
[19:31:00] [PASSED] Unknown
[19:31:00] [PASSED] VGA
[19:31:00] [PASSED] DVI-I
[19:31:00] [PASSED] DVI-D
[19:31:00] [PASSED] DVI-A
[19:31:00] [PASSED] Composite
[19:31:00] [PASSED] SVIDEO
[19:31:00] [PASSED] LVDS
[19:31:00] [PASSED] Component
[19:31:00] [PASSED] DIN
[19:31:00] [PASSED] DP
[19:31:00] [PASSED] HDMI-A
[19:31:00] [PASSED] HDMI-B
[19:31:00] [PASSED] TV
[19:31:00] [PASSED] eDP
[19:31:00] [PASSED] Virtual
[19:31:00] [PASSED] DSI
[19:31:00] [PASSED] DPI
[19:31:00] [PASSED] Writeback
[19:31:00] [PASSED] SPI
[19:31:00] [PASSED] USB
[19:31:00] ===== [PASSED] drm_test_drmm_connector_init_type_valid =====
[19:31:00] =============== [PASSED] drmm_connector_init ===============
[19:31:00] ========= drm_connector_dynamic_init (6 subtests) ==========
[19:31:00] [PASSED] drm_test_drm_connector_dynamic_init
[19:31:00] [PASSED] drm_test_drm_connector_dynamic_init_null_ddc
[19:31:00] [PASSED] drm_test_drm_connector_dynamic_init_not_added
[19:31:00] [PASSED] drm_test_drm_connector_dynamic_init_properties
[19:31:00] ===== drm_test_drm_connector_dynamic_init_type_valid  ======
[19:31:00] [PASSED] Unknown
[19:31:00] [PASSED] VGA
[19:31:00] [PASSED] DVI-I
[19:31:00] [PASSED] DVI-D
[19:31:00] [PASSED] DVI-A
[19:31:00] [PASSED] Composite
[19:31:00] [PASSED] SVIDEO
[19:31:00] [PASSED] LVDS
[19:31:00] [PASSED] Component
[19:31:00] [PASSED] DIN
[19:31:00] [PASSED] DP
[19:31:00] [PASSED] HDMI-A
[19:31:00] [PASSED] HDMI-B
[19:31:00] [PASSED] TV
[19:31:00] [PASSED] eDP
[19:31:00] [PASSED] Virtual
[19:31:00] [PASSED] DSI
[19:31:00] [PASSED] DPI
[19:31:00] [PASSED] Writeback
[19:31:00] [PASSED] SPI
[19:31:00] [PASSED] USB
[19:31:00] = [PASSED] drm_test_drm_connector_dynamic_init_type_valid ==
[19:31:00] ======== drm_test_drm_connector_dynamic_init_name  =========
[19:31:00] [PASSED] Unknown
[19:31:00] [PASSED] VGA
[19:31:00] [PASSED] DVI-I
[19:31:00] [PASSED] DVI-D
[19:31:00] [PASSED] DVI-A
[19:31:00] [PASSED] Composite
[19:31:00] [PASSED] SVIDEO
[19:31:00] [PASSED] LVDS
[19:31:00] [PASSED] Component
[19:31:00] [PASSED] DIN
[19:31:00] [PASSED] DP
[19:31:00] [PASSED] HDMI-A
[19:31:00] [PASSED] HDMI-B
[19:31:00] [PASSED] TV
[19:31:00] [PASSED] eDP
[19:31:00] [PASSED] Virtual
[19:31:00] [PASSED] DSI
[19:31:00] [PASSED] DPI
[19:31:00] [PASSED] Writeback
[19:31:00] [PASSED] SPI
[19:31:00] [PASSED] USB
[19:31:00] ==== [PASSED] drm_test_drm_connector_dynamic_init_name =====
[19:31:00] =========== [PASSED] drm_connector_dynamic_init ============
[19:31:00] ==== drm_connector_dynamic_register_early (4 subtests) =====
[19:31:00] [PASSED] drm_test_drm_connector_dynamic_register_early_on_list
[19:31:00] [PASSED] drm_test_drm_connector_dynamic_register_early_defer
[19:31:00] [PASSED] drm_test_drm_connector_dynamic_register_early_no_init
[19:31:00] [PASSED] drm_test_drm_connector_dynamic_register_early_no_mode_object
[19:31:00] ====== [PASSED] drm_connector_dynamic_register_early =======
[19:31:00] ======= drm_connector_dynamic_register (7 subtests) ========
[19:31:00] [PASSED] drm_test_drm_connector_dynamic_register_on_list
[19:31:00] [PASSED] drm_test_drm_connector_dynamic_register_no_defer
[19:31:00] [PASSED] drm_test_drm_connector_dynamic_register_no_init
[19:31:00] [PASSED] drm_test_drm_connector_dynamic_register_mode_object
[19:31:00] [PASSED] drm_test_drm_connector_dynamic_register_sysfs
[19:31:00] [PASSED] drm_test_drm_connector_dynamic_register_sysfs_name
[19:31:00] [PASSED] drm_test_drm_connector_dynamic_register_debugfs
[19:31:00] ========= [PASSED] drm_connector_dynamic_register ==========
[19:31:00] = drm_connector_attach_broadcast_rgb_property (2 subtests) =
[19:31:00] [PASSED] drm_test_drm_connector_attach_broadcast_rgb_property
[19:31:00] [PASSED] drm_test_drm_connector_attach_broadcast_rgb_property_hdmi_connector
[19:31:00] === [PASSED] drm_connector_attach_broadcast_rgb_property ===
[19:31:00] ========== drm_get_tv_mode_from_name (2 subtests) ==========
[19:31:00] ========== drm_test_get_tv_mode_from_name_valid  ===========
[19:31:00] [PASSED] NTSC
[19:31:00] [PASSED] NTSC-443
[19:31:00] [PASSED] NTSC-J
[19:31:00] [PASSED] PAL
[19:31:00] [PASSED] PAL-M
[19:31:00] [PASSED] PAL-N
[19:31:00] [PASSED] SECAM
[19:31:00] [PASSED] Mono
[19:31:00] ====== [PASSED] drm_test_get_tv_mode_from_name_valid =======
[19:31:00] [PASSED] drm_test_get_tv_mode_from_name_truncated
[19:31:00] ============ [PASSED] drm_get_tv_mode_from_name ============
[19:31:00] = drm_test_connector_hdmi_compute_mode_clock (12 subtests) =
[19:31:00] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb
[19:31:00] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb_10bpc
[19:31:00] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb_10bpc_vic_1
[19:31:00] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb_12bpc
[19:31:00] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb_12bpc_vic_1
[19:31:00] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb_double
[19:31:00] = drm_test_connector_hdmi_compute_mode_clock_yuv420_valid  =
[19:31:00] [PASSED] VIC 96
[19:31:00] [PASSED] VIC 97
[19:31:00] [PASSED] VIC 101
[19:31:00] [PASSED] VIC 102
[19:31:00] [PASSED] VIC 106
[19:31:00] [PASSED] VIC 107
[19:31:00] === [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv420_valid ===
[19:31:00] [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv420_10_bpc
[19:31:00] [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv420_12_bpc
[19:31:00] [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv422_8_bpc
[19:31:00] [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv422_10_bpc
[19:31:00] [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv422_12_bpc
[19:31:00] === [PASSED] drm_test_connector_hdmi_compute_mode_clock ====
[19:31:00] == drm_hdmi_connector_get_broadcast_rgb_name (2 subtests) ==
[19:31:00] === drm_test_drm_hdmi_connector_get_broadcast_rgb_name  ====
[19:31:00] [PASSED] Automatic
[19:31:00] [PASSED] Full
[19:31:00] [PASSED] Limited 16:235
[19:31:00] === [PASSED] drm_test_drm_hdmi_connector_get_broadcast_rgb_name ===
[19:31:00] [PASSED] drm_test_drm_hdmi_connector_get_broadcast_rgb_name_invalid
[19:31:00] ==== [PASSED] drm_hdmi_connector_get_broadcast_rgb_name ====
[19:31:00] == drm_hdmi_connector_get_output_format_name (2 subtests) ==
[19:31:00] === drm_test_drm_hdmi_connector_get_output_format_name  ====
[19:31:00] [PASSED] RGB
[19:31:00] [PASSED] YUV 4:2:0
[19:31:00] [PASSED] YUV 4:2:2
[19:31:00] [PASSED] YUV 4:4:4
[19:31:00] === [PASSED] drm_test_drm_hdmi_connector_get_output_format_name ===
[19:31:00] [PASSED] drm_test_drm_hdmi_connector_get_output_format_name_invalid
[19:31:00] ==== [PASSED] drm_hdmi_connector_get_output_format_name ====
[19:31:00] ============= drm_damage_helper (21 subtests) ==============
[19:31:00] [PASSED] drm_test_damage_iter_no_damage
[19:31:00] [PASSED] drm_test_damage_iter_no_damage_fractional_src
[19:31:00] [PASSED] drm_test_damage_iter_no_damage_src_moved
[19:31:00] [PASSED] drm_test_damage_iter_no_damage_fractional_src_moved
[19:31:00] [PASSED] drm_test_damage_iter_no_damage_not_visible
[19:31:00] [PASSED] drm_test_damage_iter_no_damage_no_crtc
[19:31:00] [PASSED] drm_test_damage_iter_no_damage_no_fb
[19:31:00] [PASSED] drm_test_damage_iter_simple_damage
[19:31:00] [PASSED] drm_test_damage_iter_single_damage
[19:31:00] [PASSED] drm_test_damage_iter_single_damage_intersect_src
[19:31:00] [PASSED] drm_test_damage_iter_single_damage_outside_src
[19:31:00] [PASSED] drm_test_damage_iter_single_damage_fractional_src
[19:31:00] [PASSED] drm_test_damage_iter_single_damage_intersect_fractional_src
[19:31:00] [PASSED] drm_test_damage_iter_single_damage_outside_fractional_src
[19:31:00] [PASSED] drm_test_damage_iter_single_damage_src_moved
[19:31:00] [PASSED] drm_test_damage_iter_single_damage_fractional_src_moved
[19:31:00] [PASSED] drm_test_damage_iter_damage
[19:31:00] [PASSED] drm_test_damage_iter_damage_one_intersect
[19:31:00] [PASSED] drm_test_damage_iter_damage_one_outside
[19:31:00] [PASSED] drm_test_damage_iter_damage_src_moved
[19:31:00] [PASSED] drm_test_damage_iter_damage_not_visible
[19:31:00] ================ [PASSED] drm_damage_helper ================
[19:31:00] ============== drm_dp_mst_helper (3 subtests) ==============
[19:31:00] ============== drm_test_dp_mst_calc_pbn_mode  ==============
[19:31:00] [PASSED] Clock 154000 BPP 30 DSC disabled
[19:31:00] [PASSED] Clock 234000 BPP 30 DSC disabled
[19:31:00] [PASSED] Clock 297000 BPP 24 DSC disabled
[19:31:00] [PASSED] Clock 332880 BPP 24 DSC enabled
[19:31:00] [PASSED] Clock 324540 BPP 24 DSC enabled
[19:31:00] ========== [PASSED] drm_test_dp_mst_calc_pbn_mode ==========
[19:31:00] ============== drm_test_dp_mst_calc_pbn_div  ===============
[19:31:00] [PASSED] Link rate 2000000 lane count 4
[19:31:00] [PASSED] Link rate 2000000 lane count 2
[19:31:00] [PASSED] Link rate 2000000 lane count 1
[19:31:00] [PASSED] Link rate 1350000 lane count 4
[19:31:00] [PASSED] Link rate 1350000 lane count 2
[19:31:00] [PASSED] Link rate 1350000 lane count 1
[19:31:00] [PASSED] Link rate 1000000 lane count 4
[19:31:00] [PASSED] Link rate 1000000 lane count 2
[19:31:00] [PASSED] Link rate 1000000 lane count 1
[19:31:00] [PASSED] Link rate 810000 lane count 4
[19:31:00] [PASSED] Link rate 810000 lane count 2
[19:31:00] [PASSED] Link rate 810000 lane count 1
[19:31:00] [PASSED] Link rate 540000 lane count 4
[19:31:00] [PASSED] Link rate 540000 lane count 2
[19:31:00] [PASSED] Link rate 540000 lane count 1
[19:31:00] [PASSED] Link rate 270000 lane count 4
[19:31:00] [PASSED] Link rate 270000 lane count 2
[19:31:00] [PASSED] Link rate 270000 lane count 1
[19:31:00] [PASSED] Link rate 162000 lane count 4
[19:31:00] [PASSED] Link rate 162000 lane count 2
[19:31:00] [PASSED] Link rate 162000 lane count 1
[19:31:00] ========== [PASSED] drm_test_dp_mst_calc_pbn_div ===========
[19:31:00] ========= drm_test_dp_mst_sideband_msg_req_decode  =========
[19:31:00] [PASSED] DP_ENUM_PATH_RESOURCES with port number
[19:31:00] [PASSED] DP_POWER_UP_PHY with port number
[19:31:00] [PASSED] DP_POWER_DOWN_PHY with port number
[19:31:00] [PASSED] DP_ALLOCATE_PAYLOAD with SDP stream sinks
[19:31:00] [PASSED] DP_ALLOCATE_PAYLOAD with port number
[19:31:00] [PASSED] DP_ALLOCATE_PAYLOAD with VCPI
[19:31:00] [PASSED] DP_ALLOCATE_PAYLOAD with PBN
[19:31:00] [PASSED] DP_QUERY_PAYLOAD with port number
[19:31:00] [PASSED] DP_QUERY_PAYLOAD with VCPI
[19:31:00] [PASSED] DP_REMOTE_DPCD_READ with port number
[19:31:00] [PASSED] DP_REMOTE_DPCD_READ with DPCD address
[19:31:00] [PASSED] DP_REMOTE_DPCD_READ with max number of bytes
[19:31:00] [PASSED] DP_REMOTE_DPCD_WRITE with port number
[19:31:00] [PASSED] DP_REMOTE_DPCD_WRITE with DPCD address
[19:31:00] [PASSED] DP_REMOTE_DPCD_WRITE with data array
[19:31:00] [PASSED] DP_REMOTE_I2C_READ with port number
[19:31:00] [PASSED] DP_REMOTE_I2C_READ with I2C device ID
[19:31:00] [PASSED] DP_REMOTE_I2C_READ with transactions array
[19:31:00] [PASSED] DP_REMOTE_I2C_WRITE with port number
[19:31:00] [PASSED] DP_REMOTE_I2C_WRITE with I2C device ID
[19:31:00] [PASSED] DP_REMOTE_I2C_WRITE with data array
[19:31:00] [PASSED] DP_QUERY_STREAM_ENC_STATUS with stream ID
[19:31:00] [PASSED] DP_QUERY_STREAM_ENC_STATUS with client ID
[19:31:00] [PASSED] DP_QUERY_STREAM_ENC_STATUS with stream event
[19:31:00] [PASSED] DP_QUERY_STREAM_ENC_STATUS with valid stream event
[19:31:00] [PASSED] DP_QUERY_STREAM_ENC_STATUS with stream behavior
[19:31:00] [PASSED] DP_QUERY_STREAM_ENC_STATUS with a valid stream behavior
[19:31:00] ===== [PASSED] drm_test_dp_mst_sideband_msg_req_decode =====
[19:31:00] ================ [PASSED] drm_dp_mst_helper ================
[19:31:00] ================== drm_exec (7 subtests) ===================
[19:31:00] [PASSED] sanitycheck
[19:31:00] [PASSED] test_lock
[19:31:00] [PASSED] test_lock_unlock
[19:31:00] [PASSED] test_duplicates
[19:31:00] [PASSED] test_prepare
[19:31:00] [PASSED] test_prepare_array
[19:31:00] [PASSED] test_multiple_loops
[19:31:00] ==================== [PASSED] drm_exec =====================
[19:31:00] =========== drm_format_helper_test (17 subtests) ===========
[19:31:00] ============== drm_test_fb_xrgb8888_to_gray8  ==============
[19:31:00] [PASSED] single_pixel_source_buffer
[19:31:00] [PASSED] single_pixel_clip_rectangle
[19:31:00] [PASSED] well_known_colors
[19:31:00] [PASSED] destination_pitch
[19:31:00] ========== [PASSED] drm_test_fb_xrgb8888_to_gray8 ==========
[19:31:00] ============= drm_test_fb_xrgb8888_to_rgb332  ==============
[19:31:00] [PASSED] single_pixel_source_buffer
[19:31:00] [PASSED] single_pixel_clip_rectangle
[19:31:00] [PASSED] well_known_colors
[19:31:00] [PASSED] destination_pitch
[19:31:00] ========= [PASSED] drm_test_fb_xrgb8888_to_rgb332 ==========
[19:31:00] ============= drm_test_fb_xrgb8888_to_rgb565  ==============
[19:31:00] [PASSED] single_pixel_source_buffer
[19:31:00] [PASSED] single_pixel_clip_rectangle
[19:31:00] [PASSED] well_known_colors
[19:31:00] [PASSED] destination_pitch
[19:31:00] ========= [PASSED] drm_test_fb_xrgb8888_to_rgb565 ==========
[19:31:00] ============ drm_test_fb_xrgb8888_to_xrgb1555  =============
[19:31:00] [PASSED] single_pixel_source_buffer
[19:31:00] [PASSED] single_pixel_clip_rectangle
[19:31:00] [PASSED] well_known_colors
[19:31:00] [PASSED] destination_pitch
[19:31:00] ======== [PASSED] drm_test_fb_xrgb8888_to_xrgb1555 =========
[19:31:00] ============ drm_test_fb_xrgb8888_to_argb1555  =============
[19:31:00] [PASSED] single_pixel_source_buffer
[19:31:00] [PASSED] single_pixel_clip_rectangle
[19:31:00] [PASSED] well_known_colors
[19:31:00] [PASSED] destination_pitch
[19:31:00] ======== [PASSED] drm_test_fb_xrgb8888_to_argb1555 =========
[19:31:00] ============ drm_test_fb_xrgb8888_to_rgba5551  =============
[19:31:00] [PASSED] single_pixel_source_buffer
[19:31:00] [PASSED] single_pixel_clip_rectangle
[19:31:00] [PASSED] well_known_colors
[19:31:00] [PASSED] destination_pitch
[19:31:00] ======== [PASSED] drm_test_fb_xrgb8888_to_rgba5551 =========
[19:31:00] ============= drm_test_fb_xrgb8888_to_rgb888  ==============
[19:31:00] [PASSED] single_pixel_source_buffer
[19:31:00] [PASSED] single_pixel_clip_rectangle
[19:31:00] [PASSED] well_known_colors
[19:31:00] [PASSED] destination_pitch
[19:31:00] ========= [PASSED] drm_test_fb_xrgb8888_to_rgb888 ==========
[19:31:00] ============= drm_test_fb_xrgb8888_to_bgr888  ==============
[19:31:00] [PASSED] single_pixel_source_buffer
[19:31:00] [PASSED] single_pixel_clip_rectangle
[19:31:00] [PASSED] well_known_colors
[19:31:00] [PASSED] destination_pitch
[19:31:00] ========= [PASSED] drm_test_fb_xrgb8888_to_bgr888 ==========
[19:31:00] ============ drm_test_fb_xrgb8888_to_argb8888  =============
[19:31:00] [PASSED] single_pixel_source_buffer
[19:31:00] [PASSED] single_pixel_clip_rectangle
[19:31:00] [PASSED] well_known_colors
[19:31:00] [PASSED] destination_pitch
[19:31:00] ======== [PASSED] drm_test_fb_xrgb8888_to_argb8888 =========
[19:31:00] =========== drm_test_fb_xrgb8888_to_xrgb2101010  ===========
[19:31:00] [PASSED] single_pixel_source_buffer
[19:31:00] [PASSED] single_pixel_clip_rectangle
[19:31:00] [PASSED] well_known_colors
[19:31:00] [PASSED] destination_pitch
[19:31:00] ======= [PASSED] drm_test_fb_xrgb8888_to_xrgb2101010 =======
[19:31:00] =========== drm_test_fb_xrgb8888_to_argb2101010  ===========
[19:31:00] [PASSED] single_pixel_source_buffer
[19:31:00] [PASSED] single_pixel_clip_rectangle
[19:31:00] [PASSED] well_known_colors
[19:31:00] [PASSED] destination_pitch
[19:31:00] ======= [PASSED] drm_test_fb_xrgb8888_to_argb2101010 =======
[19:31:00] ============== drm_test_fb_xrgb8888_to_mono  ===============
[19:31:00] [PASSED] single_pixel_source_buffer
[19:31:00] [PASSED] single_pixel_clip_rectangle
[19:31:00] [PASSED] well_known_colors
[19:31:00] [PASSED] destination_pitch
[19:31:00] ========== [PASSED] drm_test_fb_xrgb8888_to_mono ===========
[19:31:00] ==================== drm_test_fb_swab  =====================
[19:31:00] [PASSED] single_pixel_source_buffer
[19:31:00] [PASSED] single_pixel_clip_rectangle
[19:31:00] [PASSED] well_known_colors
[19:31:00] [PASSED] destination_pitch
[19:31:00] ================ [PASSED] drm_test_fb_swab =================
[19:31:00] ============ drm_test_fb_xrgb8888_to_xbgr8888  =============
[19:31:00] [PASSED] single_pixel_source_buffer
[19:31:00] [PASSED] single_pixel_clip_rectangle
[19:31:00] [PASSED] well_known_colors
[19:31:00] [PASSED] destination_pitch
[19:31:00] ======== [PASSED] drm_test_fb_xrgb8888_to_xbgr8888 =========
[19:31:00] ============ drm_test_fb_xrgb8888_to_abgr8888  =============
[19:31:00] [PASSED] single_pixel_source_buffer
[19:31:00] [PASSED] single_pixel_clip_rectangle
[19:31:00] [PASSED] well_known_colors
[19:31:00] [PASSED] destination_pitch
[19:31:00] ======== [PASSED] drm_test_fb_xrgb8888_to_abgr8888 =========
[19:31:00] ================= drm_test_fb_clip_offset  =================
[19:31:00] [PASSED] pass through
[19:31:00] [PASSED] horizontal offset
[19:31:00] [PASSED] vertical offset
[19:31:00] [PASSED] horizontal and vertical offset
[19:31:00] [PASSED] horizontal offset (custom pitch)
[19:31:00] [PASSED] vertical offset (custom pitch)
[19:31:00] [PASSED] horizontal and vertical offset (custom pitch)
[19:31:00] ============= [PASSED] drm_test_fb_clip_offset =============
[19:31:00] =================== drm_test_fb_memcpy  ====================
[19:31:00] [PASSED] single_pixel_source_buffer: XR24 little-endian (0x34325258)
[19:31:00] [PASSED] single_pixel_source_buffer: XRA8 little-endian (0x38415258)
[19:31:00] [PASSED] single_pixel_source_buffer: YU24 little-endian (0x34325559)
[19:31:00] [PASSED] single_pixel_clip_rectangle: XB24 little-endian (0x34324258)
[19:31:00] [PASSED] single_pixel_clip_rectangle: XRA8 little-endian (0x38415258)
[19:31:00] [PASSED] single_pixel_clip_rectangle: YU24 little-endian (0x34325559)
[19:31:00] [PASSED] well_known_colors: XB24 little-endian (0x34324258)
[19:31:00] [PASSED] well_known_colors: XRA8 little-endian (0x38415258)
[19:31:00] [PASSED] well_known_colors: YU24 little-endian (0x34325559)
[19:31:00] [PASSED] destination_pitch: XB24 little-endian (0x34324258)
[19:31:00] [PASSED] destination_pitch: XRA8 little-endian (0x38415258)
[19:31:00] [PASSED] destination_pitch: YU24 little-endian (0x34325559)
[19:31:00] =============== [PASSED] drm_test_fb_memcpy ================
[19:31:00] ============= [PASSED] drm_format_helper_test ==============
[19:31:00] ================= drm_format (18 subtests) =================
[19:31:00] [PASSED] drm_test_format_block_width_invalid
[19:31:00] [PASSED] drm_test_format_block_width_one_plane
[19:31:00] [PASSED] drm_test_format_block_width_two_plane
[19:31:00] [PASSED] drm_test_format_block_width_three_plane
[19:31:00] [PASSED] drm_test_format_block_width_tiled
[19:31:00] [PASSED] drm_test_format_block_height_invalid
[19:31:00] [PASSED] drm_test_format_block_height_one_plane
[19:31:00] [PASSED] drm_test_format_block_height_two_plane
[19:31:00] [PASSED] drm_test_format_block_height_three_plane
[19:31:00] [PASSED] drm_test_format_block_height_tiled
[19:31:00] [PASSED] drm_test_format_min_pitch_invalid
[19:31:00] [PASSED] drm_test_format_min_pitch_one_plane_8bpp
[19:31:00] [PASSED] drm_test_format_min_pitch_one_plane_16bpp
[19:31:00] [PASSED] drm_test_format_min_pitch_one_plane_24bpp
[19:31:00] [PASSED] drm_test_format_min_pitch_one_plane_32bpp
[19:31:00] [PASSED] drm_test_format_min_pitch_two_plane
[19:31:00] [PASSED] drm_test_format_min_pitch_three_plane_8bpp
[19:31:00] [PASSED] drm_test_format_min_pitch_tiled
[19:31:00] =================== [PASSED] drm_format ====================
[19:31:00] ============== drm_framebuffer (10 subtests) ===============
[19:31:00] ========== drm_test_framebuffer_check_src_coords  ==========
[19:31:00] [PASSED] Success: source fits into fb
[19:31:00] [PASSED] Fail: overflowing fb with x-axis coordinate
[19:31:00] [PASSED] Fail: overflowing fb with y-axis coordinate
[19:31:00] [PASSED] Fail: overflowing fb with source width
[19:31:00] [PASSED] Fail: overflowing fb with source height
[19:31:00] ====== [PASSED] drm_test_framebuffer_check_src_coords ======
[19:31:00] [PASSED] drm_test_framebuffer_cleanup
[19:31:00] =============== drm_test_framebuffer_create  ===============
[19:31:00] [PASSED] ABGR8888 normal sizes
[19:31:00] [PASSED] ABGR8888 max sizes
[19:31:00] [PASSED] ABGR8888 pitch greater than min required
[19:31:00] [PASSED] ABGR8888 pitch less than min required
[19:31:00] [PASSED] ABGR8888 Invalid width
[19:31:00] [PASSED] ABGR8888 Invalid buffer handle
[19:31:00] [PASSED] No pixel format
[19:31:00] [PASSED] ABGR8888 Width 0
[19:31:00] [PASSED] ABGR8888 Height 0
[19:31:00] [PASSED] ABGR8888 Out of bound height * pitch combination
[19:31:00] [PASSED] ABGR8888 Large buffer offset
[19:31:00] [PASSED] ABGR8888 Buffer offset for inexistent plane
[19:31:00] [PASSED] ABGR8888 Invalid flag
[19:31:00] [PASSED] ABGR8888 Set DRM_MODE_FB_MODIFIERS without modifiers
[19:31:00] [PASSED] ABGR8888 Valid buffer modifier
[19:31:00] [PASSED] ABGR8888 Invalid buffer modifier(DRM_FORMAT_MOD_SAMSUNG_64_32_TILE)
[19:31:00] [PASSED] ABGR8888 Extra pitches without DRM_MODE_FB_MODIFIERS
[19:31:00] [PASSED] ABGR8888 Extra pitches with DRM_MODE_FB_MODIFIERS
[19:31:00] [PASSED] NV12 Normal sizes
[19:31:00] [PASSED] NV12 Max sizes
[19:31:00] [PASSED] NV12 Invalid pitch
[19:31:00] [PASSED] NV12 Invalid modifier/missing DRM_MODE_FB_MODIFIERS flag
[19:31:00] [PASSED] NV12 different  modifier per-plane
[19:31:00] [PASSED] NV12 with DRM_FORMAT_MOD_SAMSUNG_64_32_TILE
[19:31:00] [PASSED] NV12 Valid modifiers without DRM_MODE_FB_MODIFIERS
[19:31:00] [PASSED] NV12 Modifier for inexistent plane
[19:31:00] [PASSED] NV12 Handle for inexistent plane
[19:31:00] [PASSED] NV12 Handle for inexistent plane without DRM_MODE_FB_MODIFIERS
[19:31:00] [PASSED] YVU420 DRM_MODE_FB_MODIFIERS set without modifier
[19:31:00] [PASSED] YVU420 Normal sizes
[19:31:00] [PASSED] YVU420 Max sizes
[19:31:00] [PASSED] YVU420 Invalid pitch
[19:31:00] [PASSED] YVU420 Different pitches
[19:31:00] [PASSED] YVU420 Different buffer offsets/pitches
[19:31:00] [PASSED] YVU420 Modifier set just for plane 0, without DRM_MODE_FB_MODIFIERS
[19:31:00] [PASSED] YVU420 Modifier set just for planes 0, 1, without DRM_MODE_FB_MODIFIERS
[19:31:00] [PASSED] YVU420 Modifier set just for plane 0, 1, with DRM_MODE_FB_MODIFIERS
[19:31:00] [PASSED] YVU420 Valid modifier
[19:31:00] [PASSED] YVU420 Different modifiers per plane
[19:31:00] [PASSED] YVU420 Modifier for inexistent plane
[19:31:00] [PASSED] YUV420_10BIT Invalid modifier(DRM_FORMAT_MOD_LINEAR)
[19:31:00] [PASSED] X0L2 Normal sizes
[19:31:00] [PASSED] X0L2 Max sizes
[19:31:00] [PASSED] X0L2 Invalid pitch
[19:31:00] [PASSED] X0L2 Pitch greater than minimum required
[19:31:00] [PASSED] X0L2 Handle for inexistent plane
[19:31:00] [PASSED] X0L2 Offset for inexistent plane, without DRM_MODE_FB_MODIFIERS set
[19:31:00] [PASSED] X0L2 Modifier without DRM_MODE_FB_MODIFIERS set
[19:31:00] [PASSED] X0L2 Valid modifier
[19:31:00] [PASSED] X0L2 Modifier for inexistent plane
[19:31:00] =========== [PASSED] drm_test_framebuffer_create ===========
[19:31:00] [PASSED] drm_test_framebuffer_free
[19:31:00] [PASSED] drm_test_framebuffer_init
[19:31:00] [PASSED] drm_test_framebuffer_init_bad_format
[19:31:00] [PASSED] drm_test_framebuffer_init_dev_mismatch
[19:31:00] [PASSED] drm_test_framebuffer_lookup
[19:31:00] [PASSED] drm_test_framebuffer_lookup_inexistent
[19:31:00] [PASSED] drm_test_framebuffer_modifiers_not_supported
[19:31:00] ================= [PASSED] drm_framebuffer =================
[19:31:00] ================ drm_gem_shmem (8 subtests) ================
[19:31:00] [PASSED] drm_gem_shmem_test_obj_create
[19:31:00] [PASSED] drm_gem_shmem_test_obj_create_private
[19:31:00] [PASSED] drm_gem_shmem_test_pin_pages
[19:31:00] [PASSED] drm_gem_shmem_test_vmap
[19:31:00] [PASSED] drm_gem_shmem_test_get_pages_sgt
[19:31:00] [PASSED] drm_gem_shmem_test_get_sg_table
[19:31:00] [PASSED] drm_gem_shmem_test_madvise
[19:31:00] [PASSED] drm_gem_shmem_test_purge
[19:31:00] ================== [PASSED] drm_gem_shmem ==================
[19:31:00] === drm_atomic_helper_connector_hdmi_check (27 subtests) ===
[19:31:00] [PASSED] drm_test_check_broadcast_rgb_auto_cea_mode
[19:31:00] [PASSED] drm_test_check_broadcast_rgb_auto_cea_mode_vic_1
[19:31:00] [PASSED] drm_test_check_broadcast_rgb_full_cea_mode
[19:31:00] [PASSED] drm_test_check_broadcast_rgb_full_cea_mode_vic_1
[19:31:00] [PASSED] drm_test_check_broadcast_rgb_limited_cea_mode
[19:31:00] [PASSED] drm_test_check_broadcast_rgb_limited_cea_mode_vic_1
[19:31:00] ====== drm_test_check_broadcast_rgb_cea_mode_yuv420  =======
[19:31:00] [PASSED] Automatic
[19:31:00] [PASSED] Full
[19:31:00] [PASSED] Limited 16:235
[19:31:00] == [PASSED] drm_test_check_broadcast_rgb_cea_mode_yuv420 ===
[19:31:00] [PASSED] drm_test_check_broadcast_rgb_crtc_mode_changed
[19:31:00] [PASSED] drm_test_check_broadcast_rgb_crtc_mode_not_changed
[19:31:00] [PASSED] drm_test_check_disable_connector
[19:31:00] [PASSED] drm_test_check_hdmi_funcs_reject_rate
[19:31:00] [PASSED] drm_test_check_max_tmds_rate_bpc_fallback_rgb
[19:31:00] [PASSED] drm_test_check_max_tmds_rate_bpc_fallback_yuv420
[19:31:00] [PASSED] drm_test_check_max_tmds_rate_bpc_fallback_ignore_yuv422
[19:31:00] [PASSED] drm_test_check_max_tmds_rate_bpc_fallback_ignore_yuv420
[19:31:00] [PASSED] drm_test_check_driver_unsupported_fallback_yuv420
[19:31:00] [PASSED] drm_test_check_output_bpc_crtc_mode_changed
[19:31:00] [PASSED] drm_test_check_output_bpc_crtc_mode_not_changed
[19:31:00] [PASSED] drm_test_check_output_bpc_dvi
[19:31:00] [PASSED] drm_test_check_output_bpc_format_vic_1
[19:31:00] [PASSED] drm_test_check_output_bpc_format_display_8bpc_only
[19:31:00] [PASSED] drm_test_check_output_bpc_format_display_rgb_only
[19:31:00] [PASSED] drm_test_check_output_bpc_format_driver_8bpc_only
[19:31:00] [PASSED] drm_test_check_output_bpc_format_driver_rgb_only
[19:31:00] [PASSED] drm_test_check_tmds_char_rate_rgb_8bpc
[19:31:00] [PASSED] drm_test_check_tmds_char_rate_rgb_10bpc
[19:31:00] [PASSED] drm_test_check_tmds_char_rate_rgb_12bpc
[19:31:00] ===== [PASSED] drm_atomic_helper_connector_hdmi_check ======
[19:31:00] === drm_atomic_helper_connector_hdmi_reset (6 subtests) ====
[19:31:00] [PASSED] drm_test_check_broadcast_rgb_value
[19:31:00] [PASSED] drm_test_check_bpc_8_value
[19:31:00] [PASSED] drm_test_check_bpc_10_value
[19:31:00] [PASSED] drm_test_check_bpc_12_value
[19:31:00] [PASSED] drm_test_check_format_value
[19:31:00] [PASSED] drm_test_check_tmds_char_value
[19:31:00] ===== [PASSED] drm_atomic_helper_connector_hdmi_reset ======
[19:31:00] = drm_atomic_helper_connector_hdmi_mode_valid (4 subtests) =
[19:31:00] [PASSED] drm_test_check_mode_valid
[19:31:00] [PASSED] drm_test_check_mode_valid_reject
[19:31:00] [PASSED] drm_test_check_mode_valid_reject_rate
[19:31:00] [PASSED] drm_test_check_mode_valid_reject_max_clock
[19:31:00] === [PASSED] drm_atomic_helper_connector_hdmi_mode_valid ===
[19:31:00] ================= drm_managed (2 subtests) =================
[19:31:00] [PASSED] drm_test_managed_release_action
[19:31:00] [PASSED] drm_test_managed_run_action
[19:31:00] =================== [PASSED] drm_managed ===================
[19:31:00] =================== drm_mm (6 subtests) ====================
[19:31:00] [PASSED] drm_test_mm_init
[19:31:00] [PASSED] drm_test_mm_debug
[19:31:00] [PASSED] drm_test_mm_align32
[19:31:00] [PASSED] drm_test_mm_align64
[19:31:00] [PASSED] drm_test_mm_lowest
[19:31:00] [PASSED] drm_test_mm_highest
[19:31:00] ===================== [PASSED] drm_mm ======================
[19:31:00] ============= drm_modes_analog_tv (5 subtests) =============
[19:31:00] [PASSED] drm_test_modes_analog_tv_mono_576i
[19:31:00] [PASSED] drm_test_modes_analog_tv_ntsc_480i
[19:31:00] [PASSED] drm_test_modes_analog_tv_ntsc_480i_inlined
[19:31:00] [PASSED] drm_test_modes_analog_tv_pal_576i
[19:31:00] [PASSED] drm_test_modes_analog_tv_pal_576i_inlined
[19:31:00] =============== [PASSED] drm_modes_analog_tv ===============
[19:31:00] ============== drm_plane_helper (2 subtests) ===============
[19:31:00] =============== drm_test_check_plane_state  ================
[19:31:00] [PASSED] clipping_simple
[19:31:00] [PASSED] clipping_rotate_reflect
[19:31:00] [PASSED] positioning_simple
[19:31:00] [PASSED] upscaling
[19:31:00] [PASSED] downscaling
[19:31:00] [PASSED] rounding1
[19:31:00] [PASSED] rounding2
[19:31:00] [PASSED] rounding3
[19:31:00] [PASSED] rounding4
[19:31:00] =========== [PASSED] drm_test_check_plane_state ============
[19:31:00] =========== drm_test_check_invalid_plane_state  ============
[19:31:00] [PASSED] positioning_invalid
[19:31:00] [PASSED] upscaling_invalid
[19:31:00] [PASSED] downscaling_invalid
[19:31:00] ======= [PASSED] drm_test_check_invalid_plane_state ========
[19:31:00] ================ [PASSED] drm_plane_helper =================
[19:31:00] ====== drm_connector_helper_tv_get_modes (1 subtest) =======
[19:31:00] ====== drm_test_connector_helper_tv_get_modes_check  =======
[19:31:00] [PASSED] None
[19:31:00] [PASSED] PAL
[19:31:00] [PASSED] NTSC
[19:31:00] [PASSED] Both, NTSC Default
[19:31:00] [PASSED] Both, PAL Default
[19:31:00] [PASSED] Both, NTSC Default, with PAL on command-line
[19:31:00] [PASSED] Both, PAL Default, with NTSC on command-line
[19:31:00] == [PASSED] drm_test_connector_helper_tv_get_modes_check ===
[19:31:00] ======== [PASSED] drm_connector_helper_tv_get_modes ========
[19:31:00] ================== drm_rect (9 subtests) ===================
[19:31:00] [PASSED] drm_test_rect_clip_scaled_div_by_zero
[19:31:00] [PASSED] drm_test_rect_clip_scaled_not_clipped
[19:31:00] [PASSED] drm_test_rect_clip_scaled_clipped
[19:31:00] [PASSED] drm_test_rect_clip_scaled_signed_vs_unsigned
[19:31:00] ================= drm_test_rect_intersect  =================
[19:31:00] [PASSED] top-left x bottom-right: 2x2+1+1 x 2x2+0+0
[19:31:00] [PASSED] top-right x bottom-left: 2x2+0+0 x 2x2+1-1
[19:31:00] [PASSED] bottom-left x top-right: 2x2+1-1 x 2x2+0+0
[19:31:00] [PASSED] bottom-right x top-left: 2x2+0+0 x 2x2+1+1
[19:31:00] [PASSED] right x left: 2x1+0+0 x 3x1+1+0
[19:31:00] [PASSED] left x right: 3x1+1+0 x 2x1+0+0
[19:31:00] [PASSED] up x bottom: 1x2+0+0 x 1x3+0-1
[19:31:00] [PASSED] bottom x up: 1x3+0-1 x 1x2+0+0
[19:31:00] [PASSED] touching corner: 1x1+0+0 x 2x2+1+1
[19:31:00] [PASSED] touching side: 1x1+0+0 x 1x1+1+0
[19:31:00] [PASSED] equal rects: 2x2+0+0 x 2x2+0+0
[19:31:00] [PASSED] inside another: 2x2+0+0 x 1x1+1+1
[19:31:00] [PASSED] far away: 1x1+0+0 x 1x1+3+6
[19:31:00] [PASSED] points intersecting: 0x0+5+10 x 0x0+5+10
[19:31:00] [PASSED] points not intersecting: 0x0+0+0 x 0x0+5+10
[19:31:00] ============= [PASSED] drm_test_rect_intersect =============
[19:31:00] ================ drm_test_rect_calc_hscale  ================
[19:31:00] [PASSED] normal use
[19:31:00] [PASSED] out of max range
[19:31:00] [PASSED] out of min range
[19:31:00] [PASSED] zero dst
[19:31:00] [PASSED] negative src
[19:31:00] [PASSED] negative dst
[19:31:00] ============ [PASSED] drm_test_rect_calc_hscale ============
[19:31:00] ================ drm_test_rect_calc_vscale  ================
[19:31:00] [PASSED] normal use
stty: 'standard input': Inappropriate ioctl for device
[19:31:00] [PASSED] out of max range
[19:31:00] [PASSED] out of min range
[19:31:00] [PASSED] zero dst
[19:31:00] [PASSED] negative src
[19:31:00] [PASSED] negative dst
[19:31:00] ============ [PASSED] drm_test_rect_calc_vscale ============
[19:31:00] ================== drm_test_rect_rotate  ===================
[19:31:00] [PASSED] reflect-x
[19:31:00] [PASSED] reflect-y
[19:31:00] [PASSED] rotate-0
[19:31:00] [PASSED] rotate-90
[19:31:00] [PASSED] rotate-180
[19:31:00] [PASSED] rotate-270
[19:31:00] ============== [PASSED] drm_test_rect_rotate ===============
[19:31:00] ================ drm_test_rect_rotate_inv  =================
[19:31:00] [PASSED] reflect-x
[19:31:00] [PASSED] reflect-y
[19:31:00] [PASSED] rotate-0
[19:31:00] [PASSED] rotate-90
[19:31:00] [PASSED] rotate-180
[19:31:00] [PASSED] rotate-270
[19:31:00] ============ [PASSED] drm_test_rect_rotate_inv =============
[19:31:00] ==================== [PASSED] drm_rect =====================
[19:31:00] ============ drm_sysfb_modeset_test (1 subtest) ============
[19:31:00] ============ drm_test_sysfb_build_fourcc_list  =============
[19:31:00] [PASSED] no native formats
[19:31:00] [PASSED] XRGB8888 as native format
[19:31:00] [PASSED] remove duplicates
[19:31:00] [PASSED] convert alpha formats
[19:31:00] [PASSED] random formats
[19:31:00] ======== [PASSED] drm_test_sysfb_build_fourcc_list =========
[19:31:00] ============= [PASSED] drm_sysfb_modeset_test ==============
[19:31:00] ============================================================
[19:31:00] Testing complete. Ran 622 tests: passed: 622
[19:31:00] Elapsed time: 31.202s total, 1.699s configuring, 29.035s building, 0.429s running

+ /kernel/tools/testing/kunit/kunit.py run --kunitconfig /kernel/drivers/gpu/drm/ttm/tests/.kunitconfig
[19:31:00] Configuring KUnit Kernel ...
Regenerating .config ...
Populating config with:
$ make ARCH=um O=.kunit olddefconfig
[19:31:01] 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
[19:31:12] Starting KUnit Kernel (1/1)...
[19:31:12] ============================================================
Running tests with:
$ .kunit/linux kunit.enable=1 mem=1G console=tty kunit_shutdown=halt
[19:31:12] ================= ttm_device (5 subtests) ==================
[19:31:12] [PASSED] ttm_device_init_basic
[19:31:12] [PASSED] ttm_device_init_multiple
[19:31:12] [PASSED] ttm_device_fini_basic
[19:31:12] [PASSED] ttm_device_init_no_vma_man
[19:31:12] ================== ttm_device_init_pools  ==================
[19:31:12] [PASSED] No DMA allocations, no DMA32 required
[19:31:12] [PASSED] DMA allocations, DMA32 required
[19:31:12] [PASSED] No DMA allocations, DMA32 required
[19:31:12] [PASSED] DMA allocations, no DMA32 required
[19:31:12] ============== [PASSED] ttm_device_init_pools ==============
[19:31:12] =================== [PASSED] ttm_device ====================
[19:31:12] ================== ttm_pool (8 subtests) ===================
[19:31:12] ================== ttm_pool_alloc_basic  ===================
[19:31:12] [PASSED] One page
[19:31:12] [PASSED] More than one page
[19:31:12] [PASSED] Above the allocation limit
[19:31:12] [PASSED] One page, with coherent DMA mappings enabled
[19:31:12] [PASSED] Above the allocation limit, with coherent DMA mappings enabled
[19:31:12] ============== [PASSED] ttm_pool_alloc_basic ===============
[19:31:12] ============== ttm_pool_alloc_basic_dma_addr  ==============
[19:31:12] [PASSED] One page
[19:31:12] [PASSED] More than one page
[19:31:12] [PASSED] Above the allocation limit
[19:31:12] [PASSED] One page, with coherent DMA mappings enabled
[19:31:12] [PASSED] Above the allocation limit, with coherent DMA mappings enabled
[19:31:12] ========== [PASSED] ttm_pool_alloc_basic_dma_addr ==========
[19:31:12] [PASSED] ttm_pool_alloc_order_caching_match
[19:31:12] [PASSED] ttm_pool_alloc_caching_mismatch
[19:31:12] [PASSED] ttm_pool_alloc_order_mismatch
[19:31:12] [PASSED] ttm_pool_free_dma_alloc
[19:31:12] [PASSED] ttm_pool_free_no_dma_alloc
[19:31:12] [PASSED] ttm_pool_fini_basic
[19:31:12] ==================== [PASSED] ttm_pool =====================
[19:31:12] ================ ttm_resource (8 subtests) =================
[19:31:12] ================= ttm_resource_init_basic  =================
[19:31:12] [PASSED] Init resource in TTM_PL_SYSTEM
[19:31:12] [PASSED] Init resource in TTM_PL_VRAM
[19:31:12] [PASSED] Init resource in a private placement
[19:31:12] [PASSED] Init resource in TTM_PL_SYSTEM, set placement flags
[19:31:12] ============= [PASSED] ttm_resource_init_basic =============
[19:31:12] [PASSED] ttm_resource_init_pinned
[19:31:12] [PASSED] ttm_resource_fini_basic
[19:31:12] [PASSED] ttm_resource_manager_init_basic
[19:31:12] [PASSED] ttm_resource_manager_usage_basic
[19:31:12] [PASSED] ttm_resource_manager_set_used_basic
[19:31:12] [PASSED] ttm_sys_man_alloc_basic
[19:31:12] [PASSED] ttm_sys_man_free_basic
[19:31:12] ================== [PASSED] ttm_resource ===================
[19:31:12] =================== ttm_tt (15 subtests) ===================
[19:31:12] ==================== ttm_tt_init_basic  ====================
[19:31:12] [PASSED] Page-aligned size
[19:31:12] [PASSED] Extra pages requested
[19:31:12] ================ [PASSED] ttm_tt_init_basic ================
[19:31:12] [PASSED] ttm_tt_init_misaligned
[19:31:12] [PASSED] ttm_tt_fini_basic
[19:31:12] [PASSED] ttm_tt_fini_sg
[19:31:12] [PASSED] ttm_tt_fini_shmem
[19:31:12] [PASSED] ttm_tt_create_basic
[19:31:12] [PASSED] ttm_tt_create_invalid_bo_type
[19:31:12] [PASSED] ttm_tt_create_ttm_exists
[19:31:12] [PASSED] ttm_tt_create_failed
[19:31:12] [PASSED] ttm_tt_destroy_basic
[19:31:12] [PASSED] ttm_tt_populate_null_ttm
[19:31:12] [PASSED] ttm_tt_populate_populated_ttm
[19:31:12] [PASSED] ttm_tt_unpopulate_basic
[19:31:12] [PASSED] ttm_tt_unpopulate_empty_ttm
[19:31:12] [PASSED] ttm_tt_swapin_basic
[19:31:12] ===================== [PASSED] ttm_tt ======================
[19:31:12] =================== ttm_bo (14 subtests) ===================
[19:31:12] =========== ttm_bo_reserve_optimistic_no_ticket  ===========
[19:31:12] [PASSED] Cannot be interrupted and sleeps
[19:31:12] [PASSED] Cannot be interrupted, locks straight away
[19:31:12] [PASSED] Can be interrupted, sleeps
[19:31:12] ======= [PASSED] ttm_bo_reserve_optimistic_no_ticket =======
[19:31:12] [PASSED] ttm_bo_reserve_locked_no_sleep
[19:31:12] [PASSED] ttm_bo_reserve_no_wait_ticket
[19:31:12] [PASSED] ttm_bo_reserve_double_resv
[19:31:12] [PASSED] ttm_bo_reserve_interrupted
[19:31:12] [PASSED] ttm_bo_reserve_deadlock
[19:31:12] [PASSED] ttm_bo_unreserve_basic
[19:31:12] [PASSED] ttm_bo_unreserve_pinned
[19:31:12] [PASSED] ttm_bo_unreserve_bulk
[19:31:12] [PASSED] ttm_bo_fini_basic
[19:31:12] [PASSED] ttm_bo_fini_shared_resv
[19:31:12] [PASSED] ttm_bo_pin_basic
[19:31:12] [PASSED] ttm_bo_pin_unpin_resource
[19:31:12] [PASSED] ttm_bo_multiple_pin_one_unpin
[19:31:12] ===================== [PASSED] ttm_bo ======================
[19:31:12] ============== ttm_bo_validate (21 subtests) ===============
[19:31:12] ============== ttm_bo_init_reserved_sys_man  ===============
[19:31:12] [PASSED] Buffer object for userspace
[19:31:12] [PASSED] Kernel buffer object
[19:31:12] [PASSED] Shared buffer object
[19:31:12] ========== [PASSED] ttm_bo_init_reserved_sys_man ===========
[19:31:12] ============== ttm_bo_init_reserved_mock_man  ==============
[19:31:12] [PASSED] Buffer object for userspace
[19:31:12] [PASSED] Kernel buffer object
[19:31:12] [PASSED] Shared buffer object
[19:31:12] ========== [PASSED] ttm_bo_init_reserved_mock_man ==========
[19:31:12] [PASSED] ttm_bo_init_reserved_resv
[19:31:12] ================== ttm_bo_validate_basic  ==================
[19:31:12] [PASSED] Buffer object for userspace
[19:31:12] [PASSED] Kernel buffer object
[19:31:12] [PASSED] Shared buffer object
[19:31:12] ============== [PASSED] ttm_bo_validate_basic ==============
[19:31:12] [PASSED] ttm_bo_validate_invalid_placement
[19:31:12] ============= ttm_bo_validate_same_placement  ==============
[19:31:12] [PASSED] System manager
[19:31:12] [PASSED] VRAM manager
[19:31:12] ========= [PASSED] ttm_bo_validate_same_placement ==========
[19:31:12] [PASSED] ttm_bo_validate_failed_alloc
[19:31:12] [PASSED] ttm_bo_validate_pinned
[19:31:12] [PASSED] ttm_bo_validate_busy_placement
[19:31:12] ================ ttm_bo_validate_multihop  =================
[19:31:12] [PASSED] Buffer object for userspace
[19:31:12] [PASSED] Kernel buffer object
[19:31:12] [PASSED] Shared buffer object
[19:31:12] ============ [PASSED] ttm_bo_validate_multihop =============
[19:31:12] ========== ttm_bo_validate_no_placement_signaled  ==========
[19:31:12] [PASSED] Buffer object in system domain, no page vector
[19:31:12] [PASSED] Buffer object in system domain with an existing page vector
[19:31:12] ====== [PASSED] ttm_bo_validate_no_placement_signaled ======
[19:31:12] ======== ttm_bo_validate_no_placement_not_signaled  ========
[19:31:12] [PASSED] Buffer object for userspace
[19:31:12] [PASSED] Kernel buffer object
[19:31:12] [PASSED] Shared buffer object
[19:31:12] ==== [PASSED] ttm_bo_validate_no_placement_not_signaled ====
[19:31:12] [PASSED] ttm_bo_validate_move_fence_signaled
[19:31:12] ========= ttm_bo_validate_move_fence_not_signaled  =========
[19:31:12] [PASSED] Waits for GPU
[19:31:12] [PASSED] Tries to lock straight away
[19:31:12] ===== [PASSED] ttm_bo_validate_move_fence_not_signaled =====
[19:31:12] [PASSED] ttm_bo_validate_happy_evict
[19:31:12] [PASSED] ttm_bo_validate_all_pinned_evict
[19:31:12] [PASSED] ttm_bo_validate_allowed_only_evict
[19:31:12] [PASSED] ttm_bo_validate_deleted_evict
[19:31:12] [PASSED] ttm_bo_validate_busy_domain_evict
[19:31:12] [PASSED] ttm_bo_validate_evict_gutting
[19:31:12] [PASSED] ttm_bo_validate_recrusive_evict
stty: 'standard input': Inappropriate ioctl for device
[19:31:12] ================= [PASSED] ttm_bo_validate =================
[19:31:12] ============================================================
[19:31:12] Testing complete. Ran 101 tests: passed: 101
[19:31:12] Elapsed time: 12.060s total, 1.415s configuring, 10.429s building, 0.182s running

+ cleanup
++ stat -c %u:%g /kernel
+ chown -R 1003:1003 /kernel



^ permalink raw reply	[flat|nested] 17+ messages in thread

* ✓ Xe.CI.BAT: success for drm/xe: CRI support in gt_throttle + refactors
  2025-10-23 16:56 [PATCH 0/5] drm/xe: CRI support in gt_throttle + refactors Lucas De Marchi
                   ` (6 preceding siblings ...)
  2025-10-23 19:31 ` ✓ CI.KUnit: success " Patchwork
@ 2025-10-23 20:32 ` Patchwork
  2025-10-24  8:42 ` ✗ Xe.CI.Full: failure " Patchwork
  8 siblings, 0 replies; 17+ messages in thread
From: Patchwork @ 2025-10-23 20:32 UTC (permalink / raw)
  To: Lucas De Marchi; +Cc: intel-xe

[-- Attachment #1: Type: text/plain, Size: 7246 bytes --]

== Series Details ==

Series: drm/xe: CRI support in gt_throttle + refactors
URL   : https://patchwork.freedesktop.org/series/156437/
State : success

== Summary ==

CI Bug Log - changes from xe-3974-c63ccee28ae7ab4cb57a2433314f08c71da914ff_BAT -> xe-pw-156437v1_BAT
====================================================

Summary
-------

  **SUCCESS**

  No regressions found.

  

Participating hosts (11 -> 12)
------------------------------

  Additional (1): bat-pvc-2 

Known issues
------------

  Here are the changes found in xe-pw-156437v1_BAT that come from known issues:

### IGT changes ###

#### Issues hit ####

  * igt@fbdev@eof:
    - bat-pvc-2:          NOTRUN -> [SKIP][1] ([Intel XE#2134]) +4 other tests skip
   [1]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156437v1/bat-pvc-2/igt@fbdev@eof.html

  * igt@kms_addfb_basic@addfb25-x-tiled-legacy:
    - bat-pvc-2:          NOTRUN -> [SKIP][2] ([i915#6077]) +30 other tests skip
   [2]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156437v1/bat-pvc-2/igt@kms_addfb_basic@addfb25-x-tiled-legacy.html

  * igt@kms_cursor_legacy@basic-flip-before-cursor-varying-size:
    - bat-pvc-2:          NOTRUN -> [SKIP][3] ([Intel XE#1024] / [Intel XE#782]) +5 other tests skip
   [3]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156437v1/bat-pvc-2/igt@kms_cursor_legacy@basic-flip-before-cursor-varying-size.html

  * igt@kms_dsc@dsc-basic:
    - bat-pvc-2:          NOTRUN -> [SKIP][4] ([Intel XE#1024] / [Intel XE#784])
   [4]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156437v1/bat-pvc-2/igt@kms_dsc@dsc-basic.html

  * igt@kms_flip@basic-flip-vs-wf_vblank:
    - bat-pvc-2:          NOTRUN -> [SKIP][5] ([Intel XE#1024] / [Intel XE#947]) +3 other tests skip
   [5]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156437v1/bat-pvc-2/igt@kms_flip@basic-flip-vs-wf_vblank.html

  * igt@kms_force_connector_basic@force-connector-state:
    - bat-pvc-2:          NOTRUN -> [SKIP][6] ([Intel XE#540]) +3 other tests skip
   [6]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156437v1/bat-pvc-2/igt@kms_force_connector_basic@force-connector-state.html

  * igt@kms_frontbuffer_tracking@basic:
    - bat-pvc-2:          NOTRUN -> [SKIP][7] ([Intel XE#1024] / [Intel XE#783])
   [7]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156437v1/bat-pvc-2/igt@kms_frontbuffer_tracking@basic.html

  * igt@kms_pipe_crc_basic@read-crc-frame-sequence:
    - bat-pvc-2:          NOTRUN -> [SKIP][8] ([Intel XE#829]) +6 other tests skip
   [8]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156437v1/bat-pvc-2/igt@kms_pipe_crc_basic@read-crc-frame-sequence.html

  * igt@kms_prop_blob@basic:
    - bat-pvc-2:          NOTRUN -> [SKIP][9] ([Intel XE#780])
   [9]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156437v1/bat-pvc-2/igt@kms_prop_blob@basic.html

  * igt@kms_psr@psr-sprite-plane-onoff:
    - bat-pvc-2:          NOTRUN -> [SKIP][10] ([Intel XE#1024] / [Intel XE#1406]) +2 other tests skip
   [10]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156437v1/bat-pvc-2/igt@kms_psr@psr-sprite-plane-onoff.html

  * igt@sriov_basic@enable-vfs-autoprobe-off:
    - bat-pvc-2:          NOTRUN -> [SKIP][11] ([Intel XE#2849]) +1 other test skip
   [11]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156437v1/bat-pvc-2/igt@sriov_basic@enable-vfs-autoprobe-off.html

  * igt@xe_gt_freq@freq_fixed_idle:
    - bat-pvc-2:          NOTRUN -> [SKIP][12] ([Intel XE#1021]) +1 other test skip
   [12]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156437v1/bat-pvc-2/igt@xe_gt_freq@freq_fixed_idle.html

  * igt@xe_huc_copy@huc_copy:
    - bat-pvc-2:          NOTRUN -> [SKIP][13] ([Intel XE#255])
   [13]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156437v1/bat-pvc-2/igt@xe_huc_copy@huc_copy.html

  * igt@xe_intel_bb@render:
    - bat-pvc-2:          NOTRUN -> [SKIP][14] ([Intel XE#532])
   [14]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156437v1/bat-pvc-2/igt@xe_intel_bb@render.html

  * igt@xe_live_ktest@xe_migrate@xe_validate_ccs_kunit:
    - bat-pvc-2:          NOTRUN -> [SKIP][15] ([Intel XE#2229]) +1 other test skip
   [15]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156437v1/bat-pvc-2/igt@xe_live_ktest@xe_migrate@xe_validate_ccs_kunit.html

  * igt@xe_pat@pat-index-xe2:
    - bat-pvc-2:          NOTRUN -> [SKIP][16] ([Intel XE#977]) +1 other test skip
   [16]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156437v1/bat-pvc-2/igt@xe_pat@pat-index-xe2.html

  * igt@xe_pat@pat-index-xehpc@render:
    - bat-pvc-2:          NOTRUN -> [SKIP][17] ([Intel XE#4578])
   [17]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156437v1/bat-pvc-2/igt@xe_pat@pat-index-xehpc@render.html

  * igt@xe_pat@pat-index-xelpg:
    - bat-pvc-2:          NOTRUN -> [SKIP][18] ([Intel XE#979])
   [18]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156437v1/bat-pvc-2/igt@xe_pat@pat-index-xelpg.html

  * igt@xe_pm_residency@gt-c6-on-idle:
    - bat-pvc-2:          NOTRUN -> [SKIP][19] ([Intel XE#531])
   [19]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156437v1/bat-pvc-2/igt@xe_pm_residency@gt-c6-on-idle.html

  * igt@xe_sriov_flr@flr-vf1-clear:
    - bat-pvc-2:          NOTRUN -> [SKIP][20] ([Intel XE#3342])
   [20]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156437v1/bat-pvc-2/igt@xe_sriov_flr@flr-vf1-clear.html

  
  [Intel XE#1021]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1021
  [Intel XE#1024]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1024
  [Intel XE#1406]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1406
  [Intel XE#2134]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2134
  [Intel XE#2229]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2229
  [Intel XE#255]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/255
  [Intel XE#2849]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2849
  [Intel XE#3342]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3342
  [Intel XE#4578]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4578
  [Intel XE#531]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/531
  [Intel XE#532]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/532
  [Intel XE#540]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/540
  [Intel XE#780]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/780
  [Intel XE#782]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/782
  [Intel XE#783]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/783
  [Intel XE#784]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/784
  [Intel XE#829]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/829
  [Intel XE#947]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/947
  [Intel XE#977]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/977
  [Intel XE#979]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/979
  [i915#6077]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6077


Build changes
-------------

  * Linux: xe-3974-c63ccee28ae7ab4cb57a2433314f08c71da914ff -> xe-pw-156437v1

  IGT_8596: 8596
  xe-3974-c63ccee28ae7ab4cb57a2433314f08c71da914ff: c63ccee28ae7ab4cb57a2433314f08c71da914ff
  xe-pw-156437v1: 156437v1

== Logs ==

For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156437v1/index.html

[-- Attachment #2: Type: text/html, Size: 8538 bytes --]

^ permalink raw reply	[flat|nested] 17+ messages in thread

* Re: [PATCH 1/5] drm/xe/cri: Add new performance limit reasons bits
  2025-10-23 16:56 ` [PATCH 1/5] drm/xe/cri: Add new performance limit reasons bits Lucas De Marchi
@ 2025-10-24  5:55   ` Raag Jadav
  0 siblings, 0 replies; 17+ messages in thread
From: Raag Jadav @ 2025-10-24  5:55 UTC (permalink / raw)
  To: Lucas De Marchi; +Cc: intel-xe, Sk Anirban

On Thu, Oct 23, 2025 at 09:56:54AM -0700, Lucas De Marchi wrote:
> From: Sk Anirban <sk.anirban@intel.com>
> 
> Add support for additional performance limit reasons in
> GT0_PERF_LIMIT_REASONS register.

This gives the impression that we're adding new bits for the common set.
Let's spell out Crescent Island and how it deviates from the common set.

> Signed-off-by: Sk Anirban <sk.anirban@intel.com>
> Signed-off-by: Lucas De Marchi <lucas.demarchi@intel.com>

Reviewed-by: Raag Jadav <raag.jadav@intel.com>

^ permalink raw reply	[flat|nested] 17+ messages in thread

* Re: [PATCH 2/5] drm/xe/gt_throttle: Tidy up perf reasons reading
  2025-10-23 16:56 ` [PATCH 2/5] drm/xe/gt_throttle: Tidy up perf reasons reading Lucas De Marchi
@ 2025-10-24  5:59   ` Raag Jadav
  0 siblings, 0 replies; 17+ messages in thread
From: Raag Jadav @ 2025-10-24  5:59 UTC (permalink / raw)
  To: Lucas De Marchi; +Cc: intel-xe

On Thu, Oct 23, 2025 at 09:56:55AM -0700, Lucas De Marchi wrote:
> There's no need to be so verbose with two functions per bit:
> read_reason_xxxxx() and reason_xxxxx_show(). Drop the later and just use

former

> a new is_throttled_by() that receives the mask as parameter.
> 
> Signed-off-by: Lucas De Marchi <lucas.demarchi@intel.com>

Reviewed-by: Raag Jadav <raag.jadav@intel.com>

^ permalink raw reply	[flat|nested] 17+ messages in thread

* Re: [PATCH 3/5] drm/xe/gt_throttle: Always read and mask
  2025-10-23 16:56 ` [PATCH 3/5] drm/xe/gt_throttle: Always read and mask Lucas De Marchi
@ 2025-10-24  6:13   ` Raag Jadav
  2025-10-24 16:13     ` Lucas De Marchi
  0 siblings, 1 reply; 17+ messages in thread
From: Raag Jadav @ 2025-10-24  6:13 UTC (permalink / raw)
  To: Lucas De Marchi; +Cc: intel-xe

On Thu, Oct 23, 2025 at 09:56:56AM -0700, Lucas De Marchi wrote:
> Use a single function to read and mask the value the callers will be
> interested in. This reduces the risk of a caller using a plain call to
> xe_gt_throttle_get_limit_reasons() without applying any mask, which can
> return unexpected bits for future platforms.
> 
> Select which reg and mask it's going to be used according to the
> platform and gt type and always use that one function.
> 
> There was an odd xe_gt_dbg() when reading the status, which is not done
> for any other throttle/* sysfs file, so just make the status be as
> special as everybody else.

This was to debug the rather controvercial design choice[1], but discussion
seems have died down and this is no longer needed.

[1] https://lore.kernel.org/intel-xe/20241025092238.167042-1-raag.jadav@intel.com/

> Signed-off-by: Lucas De Marchi <lucas.demarchi@intel.com>

Reviewed-by: Raag Jadav <raag.jadav@intel.com>

^ permalink raw reply	[flat|nested] 17+ messages in thread

* Re: [PATCH 4/5] drm/xe/gt_throttle: Add throttle_to_gt()
  2025-10-23 16:56 ` [PATCH 4/5] drm/xe/gt_throttle: Add throttle_to_gt() Lucas De Marchi
@ 2025-10-24  8:15   ` Raag Jadav
  0 siblings, 0 replies; 17+ messages in thread
From: Raag Jadav @ 2025-10-24  8:15 UTC (permalink / raw)
  To: Lucas De Marchi; +Cc: intel-xe

On Thu, Oct 23, 2025 at 09:56:57AM -0700, Lucas De Marchi wrote:
> Reduce boilerplate code by adding a helper to go directly from the
> throttle kobject to the gt. Note that there's already a kobj_to_gt(),
> but that actually converts our kobj_gt object to gt.

Nice. These usually get me confused about where we are.

> Signed-off-by: Lucas De Marchi <lucas.demarchi@intel.com>

Reviewed-by: Raag Jadav <raag.jadav@intel.com>

^ permalink raw reply	[flat|nested] 17+ messages in thread

* Re: [PATCH 5/5] drm/xe/gt_throttle: Tidy up attribute definition
  2025-10-23 16:56 ` [PATCH 5/5] drm/xe/gt_throttle: Tidy up attribute definition Lucas De Marchi
@ 2025-10-24  8:34   ` Raag Jadav
  0 siblings, 0 replies; 17+ messages in thread
From: Raag Jadav @ 2025-10-24  8:34 UTC (permalink / raw)
  To: Lucas De Marchi; +Cc: intel-xe

On Thu, Oct 23, 2025 at 09:56:58AM -0700, Lucas De Marchi wrote:
> Move the attribute definitions to be grouped together rather than near
> the show() function: checkpatch keeps complaining about the missing
> newline when defining new attributes and it reads better to group
> everything, which should match e.g. the xe_pmu.c style.
> 
> While grouping them, also define a THROTTLE_ATTR_RO(), similar to
> DEVICE_ATTR_RO(), and use it to define all attributes. This makes it
> shorter and with a familiar syntax.
> 
> Finally, during the cri_throttle_attrs[] array definition, also
> highlight what's coming from common attributes and what is CRI-specific.
> 
> These 3 things could be done as separate commits, but they are all about
> the same thing: reduce the attribute definition verbosity and are very
> simple and mechanical.

...

> @@ -271,19 +265,33 @@ static struct attribute *throttle_attrs[] = {
>  	NULL
>  };
>  
> +static THROTTLE_ATTR_RO(reason_soc_thermal);
> +
> +static THROTTLE_ATTR_RO(reason_soc_avg_thermal);
> +static THROTTLE_ATTR_RO(reason_fastvmode);
> +static THROTTLE_ATTR_RO(reason_mem_thermal);
> +static THROTTLE_ATTR_RO(reason_vr_thermal);
> +static THROTTLE_ATTR_RO(reason_iccmax);
> +static THROTTLE_ATTR_RO(reason_psys_pl1);
> +static THROTTLE_ATTR_RO(reason_psys_pl2);
> +static THROTTLE_ATTR_RO(reason_p0_freq);
> +static THROTTLE_ATTR_RO(reason_psys_crit);

I'd make the ordering consistent with cri_throttle_attrs[] or the other way
around, whichever makes more sense.
With that perhaps you won't even need the blank line above.

Raag

>  static struct attribute *cri_throttle_attrs[] = {
> +	/* Common */
>  	&attr_status.attr,
> +	&attr_reason_pl1.attr,
> +	&attr_reason_pl2.attr,
> +	&attr_reason_pl4.attr,
>  	&attr_reason_prochot.attr,
> +	&attr_reason_ratl.attr,
> +	/* CRI */
> +	&attr_reason_vr_thermal.attr,
>  	&attr_reason_soc_thermal.attr,
>  	&attr_reason_mem_thermal.attr,
> -	&attr_reason_vr_thermal.attr,
>  	&attr_reason_iccmax.attr,
> -	&attr_reason_ratl.attr,
>  	&attr_reason_soc_avg_thermal.attr,
>  	&attr_reason_fastvmode.attr,
> -	&attr_reason_pl4.attr,
> -	&attr_reason_pl1.attr,
> -	&attr_reason_pl2.attr,
>  	&attr_reason_psys_pl1.attr,
>  	&attr_reason_psys_pl2.attr,
>  	&attr_reason_p0_freq.attr,
> 
> -- 
> 2.51.0
> 

^ permalink raw reply	[flat|nested] 17+ messages in thread

* ✗ Xe.CI.Full: failure for drm/xe: CRI support in gt_throttle + refactors
  2025-10-23 16:56 [PATCH 0/5] drm/xe: CRI support in gt_throttle + refactors Lucas De Marchi
                   ` (7 preceding siblings ...)
  2025-10-23 20:32 ` ✓ Xe.CI.BAT: " Patchwork
@ 2025-10-24  8:42 ` Patchwork
  8 siblings, 0 replies; 17+ messages in thread
From: Patchwork @ 2025-10-24  8:42 UTC (permalink / raw)
  To: Lucas De Marchi; +Cc: intel-xe

[-- Attachment #1: Type: text/plain, Size: 38889 bytes --]

== Series Details ==

Series: drm/xe: CRI support in gt_throttle + refactors
URL   : https://patchwork.freedesktop.org/series/156437/
State : failure

== Summary ==

CI Bug Log - changes from xe-3974-c63ccee28ae7ab4cb57a2433314f08c71da914ff_FULL -> xe-pw-156437v1_FULL
====================================================

Summary
-------

  **FAILURE**

  Serious unknown changes coming with xe-pw-156437v1_FULL absolutely need to be
  verified manually.
  
  If you think the reported changes have nothing to do with the changes
  introduced in xe-pw-156437v1_FULL, please notify your bug team (I915-ci-infra@lists.freedesktop.org) to allow them
  to document this new failure mode, which will reduce false positives in CI.

  

Participating hosts (4 -> 4)
------------------------------

  No changes in participating hosts

Possible new issues
-------------------

  Here are the unknown changes that may have been introduced in xe-pw-156437v1_FULL:

### IGT changes ###

#### Possible regressions ####

  * igt@kms_cursor_edge_walk@256x256-right-edge:
    - shard-bmg:          [PASS][1] -> [SKIP][2]
   [1]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3974-c63ccee28ae7ab4cb57a2433314f08c71da914ff/shard-bmg-8/igt@kms_cursor_edge_walk@256x256-right-edge.html
   [2]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156437v1/shard-bmg-6/igt@kms_cursor_edge_walk@256x256-right-edge.html

  * igt@kms_plane@pixel-format-source-clamping:
    - shard-dg2-set2:     [PASS][3] -> [ABORT][4] +1 other test abort
   [3]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3974-c63ccee28ae7ab4cb57a2433314f08c71da914ff/shard-dg2-433/igt@kms_plane@pixel-format-source-clamping.html
   [4]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156437v1/shard-dg2-463/igt@kms_plane@pixel-format-source-clamping.html

  * igt@kms_vblank@accuracy-idle@pipe-d-dp-2:
    - shard-bmg:          [PASS][5] -> [FAIL][6] +2 other tests fail
   [5]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3974-c63ccee28ae7ab4cb57a2433314f08c71da914ff/shard-bmg-8/igt@kms_vblank@accuracy-idle@pipe-d-dp-2.html
   [6]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156437v1/shard-bmg-6/igt@kms_vblank@accuracy-idle@pipe-d-dp-2.html

  
#### Warnings ####

  * igt@xe_exec_basic@multigpu-once-basic:
    - shard-dg2-set2:     [INCOMPLETE][7] ([Intel XE#4842]) -> [INCOMPLETE][8]
   [7]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3974-c63ccee28ae7ab4cb57a2433314f08c71da914ff/shard-dg2-466/igt@xe_exec_basic@multigpu-once-basic.html
   [8]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156437v1/shard-dg2-434/igt@xe_exec_basic@multigpu-once-basic.html

  * igt@xe_exec_system_allocator@threads-many-large-mmap-huge-nomemset:
    - shard-bmg:          [SKIP][9] ([Intel XE#4943]) -> [ABORT][10]
   [9]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3974-c63ccee28ae7ab4cb57a2433314f08c71da914ff/shard-bmg-8/igt@xe_exec_system_allocator@threads-many-large-mmap-huge-nomemset.html
   [10]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156437v1/shard-bmg-6/igt@xe_exec_system_allocator@threads-many-large-mmap-huge-nomemset.html

  
Known issues
------------

  Here are the changes found in xe-pw-156437v1_FULL that come from known issues:

### IGT changes ###

#### Issues hit ####

  * igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels:
    - shard-bmg:          NOTRUN -> [SKIP][11] ([Intel XE#2370])
   [11]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156437v1/shard-bmg-7/igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels.html

  * igt@kms_big_fb@4-tiled-16bpp-rotate-270:
    - shard-bmg:          NOTRUN -> [SKIP][12] ([Intel XE#2327]) +1 other test skip
   [12]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156437v1/shard-bmg-7/igt@kms_big_fb@4-tiled-16bpp-rotate-270.html

  * igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-180-hflip:
    - shard-bmg:          NOTRUN -> [SKIP][13] ([Intel XE#1124]) +2 other tests skip
   [13]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156437v1/shard-bmg-7/igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-180-hflip.html

  * igt@kms_bw@connected-linear-tiling-3-displays-3840x2160p:
    - shard-bmg:          NOTRUN -> [SKIP][14] ([Intel XE#2314] / [Intel XE#2894])
   [14]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156437v1/shard-bmg-7/igt@kms_bw@connected-linear-tiling-3-displays-3840x2160p.html

  * igt@kms_ccs@ccs-on-another-bo-y-tiled-gen12-rc-ccs:
    - shard-bmg:          NOTRUN -> [SKIP][15] ([Intel XE#2887]) +2 other tests skip
   [15]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156437v1/shard-bmg-7/igt@kms_ccs@ccs-on-another-bo-y-tiled-gen12-rc-ccs.html

  * igt@kms_ccs@crc-primary-rotation-180-4-tiled-lnl-ccs@pipe-b-dp-2:
    - shard-bmg:          NOTRUN -> [SKIP][16] ([Intel XE#2652] / [Intel XE#787]) +3 other tests skip
   [16]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156437v1/shard-bmg-3/igt@kms_ccs@crc-primary-rotation-180-4-tiled-lnl-ccs@pipe-b-dp-2.html

  * igt@kms_ccs@random-ccs-data-4-tiled-dg2-mc-ccs@pipe-a-dp-4:
    - shard-dg2-set2:     NOTRUN -> [INCOMPLETE][17] ([Intel XE#1727] / [Intel XE#2705] / [Intel XE#3113] / [Intel XE#4212] / [Intel XE#4522] / [Intel XE#6014])
   [17]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156437v1/shard-dg2-466/igt@kms_ccs@random-ccs-data-4-tiled-dg2-mc-ccs@pipe-a-dp-4.html

  * igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc@pipe-b-hdmi-a-6:
    - shard-dg2-set2:     [PASS][18] -> [DMESG-WARN][19] ([Intel XE#1727] / [Intel XE#3113])
   [18]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3974-c63ccee28ae7ab4cb57a2433314f08c71da914ff/shard-dg2-463/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc@pipe-b-hdmi-a-6.html
   [19]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156437v1/shard-dg2-433/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc@pipe-b-hdmi-a-6.html

  * igt@kms_chamelium_color@ctm-0-50:
    - shard-bmg:          NOTRUN -> [SKIP][20] ([Intel XE#2325]) +1 other test skip
   [20]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156437v1/shard-bmg-7/igt@kms_chamelium_color@ctm-0-50.html

  * igt@kms_chamelium_hpd@hdmi-hpd-enable-disable-mode:
    - shard-bmg:          NOTRUN -> [SKIP][21] ([Intel XE#2252])
   [21]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156437v1/shard-bmg-7/igt@kms_chamelium_hpd@hdmi-hpd-enable-disable-mode.html

  * igt@kms_cursor_crc@cursor-offscreen-64x64:
    - shard-bmg:          [PASS][22] -> [SKIP][23] ([Intel XE#2320]) +1 other test skip
   [22]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3974-c63ccee28ae7ab4cb57a2433314f08c71da914ff/shard-bmg-5/igt@kms_cursor_crc@cursor-offscreen-64x64.html
   [23]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156437v1/shard-bmg-6/igt@kms_cursor_crc@cursor-offscreen-64x64.html

  * igt@kms_cursor_legacy@cursor-vs-flip-atomic-transitions-varying-size:
    - shard-bmg:          [PASS][24] -> [DMESG-WARN][25] ([Intel XE#5354])
   [24]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3974-c63ccee28ae7ab4cb57a2433314f08c71da914ff/shard-bmg-2/igt@kms_cursor_legacy@cursor-vs-flip-atomic-transitions-varying-size.html
   [25]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156437v1/shard-bmg-4/igt@kms_cursor_legacy@cursor-vs-flip-atomic-transitions-varying-size.html

  * igt@kms_cursor_legacy@cursorb-vs-flipa-atomic-transitions-varying-size:
    - shard-bmg:          [PASS][26] -> [SKIP][27] ([Intel XE#2291]) +2 other tests skip
   [26]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3974-c63ccee28ae7ab4cb57a2433314f08c71da914ff/shard-bmg-5/igt@kms_cursor_legacy@cursorb-vs-flipa-atomic-transitions-varying-size.html
   [27]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156437v1/shard-bmg-6/igt@kms_cursor_legacy@cursorb-vs-flipa-atomic-transitions-varying-size.html

  * igt@kms_feature_discovery@dp-mst:
    - shard-bmg:          NOTRUN -> [SKIP][28] ([Intel XE#2375])
   [28]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156437v1/shard-bmg-7/igt@kms_feature_discovery@dp-mst.html

  * igt@kms_flip@2x-flip-vs-dpms-on-nop:
    - shard-bmg:          [PASS][29] -> [SKIP][30] ([Intel XE#2316]) +4 other tests skip
   [29]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3974-c63ccee28ae7ab4cb57a2433314f08c71da914ff/shard-bmg-7/igt@kms_flip@2x-flip-vs-dpms-on-nop.html
   [30]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156437v1/shard-bmg-6/igt@kms_flip@2x-flip-vs-dpms-on-nop.html

  * igt@kms_flip@dpms-off-confusion-interruptible@c-hdmi-a1:
    - shard-adlp:         [PASS][31] -> [DMESG-WARN][32] ([Intel XE#4543]) +6 other tests dmesg-warn
   [31]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3974-c63ccee28ae7ab4cb57a2433314f08c71da914ff/shard-adlp-6/igt@kms_flip@dpms-off-confusion-interruptible@c-hdmi-a1.html
   [32]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156437v1/shard-adlp-4/igt@kms_flip@dpms-off-confusion-interruptible@c-hdmi-a1.html

  * igt@kms_flip@flip-vs-suspend:
    - shard-adlp:         [PASS][33] -> [DMESG-WARN][34] ([Intel XE#2953] / [Intel XE#4173] / [Intel XE#4543])
   [33]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3974-c63ccee28ae7ab4cb57a2433314f08c71da914ff/shard-adlp-6/igt@kms_flip@flip-vs-suspend.html
   [34]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156437v1/shard-adlp-9/igt@kms_flip@flip-vs-suspend.html

  * igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-16bpp-ytile-downscaling:
    - shard-bmg:          NOTRUN -> [SKIP][35] ([Intel XE#2293] / [Intel XE#2380])
   [35]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156437v1/shard-bmg-7/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-16bpp-ytile-downscaling.html

  * igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-16bpp-ytile-downscaling@pipe-a-valid-mode:
    - shard-bmg:          NOTRUN -> [SKIP][36] ([Intel XE#2293])
   [36]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156437v1/shard-bmg-7/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-16bpp-ytile-downscaling@pipe-a-valid-mode.html

  * igt@kms_flip_tiling@flip-change-tiling@pipe-d-hdmi-a-1-y-to-y:
    - shard-adlp:         [PASS][37] -> [DMESG-FAIL][38] ([Intel XE#4543])
   [37]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3974-c63ccee28ae7ab4cb57a2433314f08c71da914ff/shard-adlp-3/igt@kms_flip_tiling@flip-change-tiling@pipe-d-hdmi-a-1-y-to-y.html
   [38]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156437v1/shard-adlp-6/igt@kms_flip_tiling@flip-change-tiling@pipe-d-hdmi-a-1-y-to-y.html

  * igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-shrfb-plflip-blt:
    - shard-dg2-set2:     NOTRUN -> [SKIP][39] ([Intel XE#651])
   [39]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156437v1/shard-dg2-435/igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-shrfb-plflip-blt.html

  * igt@kms_frontbuffer_tracking@fbc-2p-primscrn-shrfb-msflip-blt:
    - shard-bmg:          NOTRUN -> [SKIP][40] ([Intel XE#5390]) +2 other tests skip
   [40]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156437v1/shard-bmg-7/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-shrfb-msflip-blt.html

  * igt@kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-indfb-pgflip-blt:
    - shard-bmg:          NOTRUN -> [SKIP][41] ([Intel XE#2311]) +6 other tests skip
   [41]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156437v1/shard-bmg-7/igt@kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-indfb-pgflip-blt.html

  * igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-cur-indfb-draw-mmap-wc:
    - shard-dg2-set2:     NOTRUN -> [SKIP][42] ([Intel XE#653]) +1 other test skip
   [42]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156437v1/shard-dg2-435/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-cur-indfb-draw-mmap-wc.html

  * igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-indfb-draw-render:
    - shard-bmg:          NOTRUN -> [SKIP][43] ([Intel XE#2313]) +8 other tests skip
   [43]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156437v1/shard-bmg-7/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-indfb-draw-render.html

  * igt@kms_hdr@invalid-hdr:
    - shard-bmg:          [PASS][44] -> [SKIP][45] ([Intel XE#1503])
   [44]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3974-c63ccee28ae7ab4cb57a2433314f08c71da914ff/shard-bmg-4/igt@kms_hdr@invalid-hdr.html
   [45]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156437v1/shard-bmg-5/igt@kms_hdr@invalid-hdr.html

  * igt@kms_plane_alpha_blend@alpha-basic:
    - shard-bmg:          [PASS][46] -> [SKIP][47] ([Intel XE#4848])
   [46]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3974-c63ccee28ae7ab4cb57a2433314f08c71da914ff/shard-bmg-8/igt@kms_plane_alpha_blend@alpha-basic.html
   [47]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156437v1/shard-bmg-6/igt@kms_plane_alpha_blend@alpha-basic.html

  * igt@kms_plane_multiple@tiling-y:
    - shard-bmg:          NOTRUN -> [SKIP][48] ([Intel XE#5020])
   [48]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156437v1/shard-bmg-7/igt@kms_plane_multiple@tiling-y.html

  * igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-75@pipe-a:
    - shard-bmg:          NOTRUN -> [SKIP][49] ([Intel XE#2763]) +4 other tests skip
   [49]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156437v1/shard-bmg-7/igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-75@pipe-a.html

  * igt@kms_pm_rpm@modeset-lpsp-stress:
    - shard-adlp:         [PASS][50] -> [DMESG-WARN][51] ([Intel XE#2953] / [Intel XE#4173]) +3 other tests dmesg-warn
   [50]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3974-c63ccee28ae7ab4cb57a2433314f08c71da914ff/shard-adlp-6/igt@kms_pm_rpm@modeset-lpsp-stress.html
   [51]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156437v1/shard-adlp-9/igt@kms_pm_rpm@modeset-lpsp-stress.html

  * igt@kms_psr2_sf@pr-primary-plane-update-sf-dmg-area-big-fb:
    - shard-bmg:          NOTRUN -> [SKIP][52] ([Intel XE#1406] / [Intel XE#1489]) +1 other test skip
   [52]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156437v1/shard-bmg-7/igt@kms_psr2_sf@pr-primary-plane-update-sf-dmg-area-big-fb.html

  * igt@kms_psr2_su@page_flip-nv12:
    - shard-bmg:          NOTRUN -> [SKIP][53] ([Intel XE#1406] / [Intel XE#2387])
   [53]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156437v1/shard-bmg-3/igt@kms_psr2_su@page_flip-nv12.html

  * igt@kms_psr@pr-primary-blt:
    - shard-bmg:          NOTRUN -> [SKIP][54] ([Intel XE#1406] / [Intel XE#2234] / [Intel XE#2850]) +1 other test skip
   [54]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156437v1/shard-bmg-7/igt@kms_psr@pr-primary-blt.html

  * igt@kms_rotation_crc@sprite-rotation-90:
    - shard-bmg:          NOTRUN -> [SKIP][55] ([Intel XE#3414] / [Intel XE#3904]) +1 other test skip
   [55]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156437v1/shard-bmg-8/igt@kms_rotation_crc@sprite-rotation-90.html

  * igt@xe_eudebug_online@stopped-thread:
    - shard-bmg:          NOTRUN -> [SKIP][56] ([Intel XE#4837]) +3 other tests skip
   [56]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156437v1/shard-bmg-7/igt@xe_eudebug_online@stopped-thread.html

  * igt@xe_exec_basic@multigpu-no-exec-null-rebind:
    - shard-bmg:          NOTRUN -> [SKIP][57] ([Intel XE#2322]) +1 other test skip
   [57]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156437v1/shard-bmg-7/igt@xe_exec_basic@multigpu-no-exec-null-rebind.html

  * igt@xe_exec_fault_mode@many-execqueues-bindexecqueue-userptr-invalidate-race-imm:
    - shard-dg2-set2:     NOTRUN -> [SKIP][58] ([Intel XE#288])
   [58]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156437v1/shard-dg2-435/igt@xe_exec_fault_mode@many-execqueues-bindexecqueue-userptr-invalidate-race-imm.html

  * igt@xe_exec_system_allocator@pat-index-madvise-pat-idx-uc-single-vma:
    - shard-lnl:          [PASS][59] -> [FAIL][60] ([Intel XE#5625])
   [59]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3974-c63ccee28ae7ab4cb57a2433314f08c71da914ff/shard-lnl-4/igt@xe_exec_system_allocator@pat-index-madvise-pat-idx-uc-single-vma.html
   [60]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156437v1/shard-lnl-7/igt@xe_exec_system_allocator@pat-index-madvise-pat-idx-uc-single-vma.html

  * igt@xe_exec_system_allocator@threads-many-malloc-multi-fault:
    - shard-dg2-set2:     NOTRUN -> [SKIP][61] ([Intel XE#4915]) +7 other tests skip
   [61]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156437v1/shard-dg2-435/igt@xe_exec_system_allocator@threads-many-malloc-multi-fault.html

  * igt@xe_exec_system_allocator@twice-mmap-new-huge:
    - shard-bmg:          NOTRUN -> [SKIP][62] ([Intel XE#4943]) +2 other tests skip
   [62]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156437v1/shard-bmg-7/igt@xe_exec_system_allocator@twice-mmap-new-huge.html

  * igt@xe_oa@oa-tlb-invalidate:
    - shard-bmg:          NOTRUN -> [SKIP][63] ([Intel XE#2248])
   [63]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156437v1/shard-bmg-7/igt@xe_oa@oa-tlb-invalidate.html

  * igt@xe_oa@whitelisted-registers-userspace-config:
    - shard-dg2-set2:     NOTRUN -> [SKIP][64] ([Intel XE#3573])
   [64]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156437v1/shard-dg2-435/igt@xe_oa@whitelisted-registers-userspace-config.html

  * igt@xe_pmu@fn-engine-activity-sched-if-idle@engine-drm_xe_engine_class_video_enhance1:
    - shard-bmg:          [PASS][65] -> [DMESG-WARN][66] ([Intel XE#3876] / [Intel XE#3970]) +1 other test dmesg-warn
   [65]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3974-c63ccee28ae7ab4cb57a2433314f08c71da914ff/shard-bmg-4/igt@xe_pmu@fn-engine-activity-sched-if-idle@engine-drm_xe_engine_class_video_enhance1.html
   [66]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156437v1/shard-bmg-7/igt@xe_pmu@fn-engine-activity-sched-if-idle@engine-drm_xe_engine_class_video_enhance1.html

  * igt@xe_pxp@pxp-optout:
    - shard-bmg:          NOTRUN -> [SKIP][67] ([Intel XE#4733])
   [67]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156437v1/shard-bmg-7/igt@xe_pxp@pxp-optout.html

  * igt@xe_render_copy@render-stress-1-copies:
    - shard-dg2-set2:     NOTRUN -> [SKIP][68] ([Intel XE#4814])
   [68]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156437v1/shard-dg2-435/igt@xe_render_copy@render-stress-1-copies.html

  
#### Possible fixes ####

  * igt@kms_ccs@random-ccs-data-4-tiled-dg2-mc-ccs@pipe-a-hdmi-a-6:
    - shard-dg2-set2:     [INCOMPLETE][69] ([Intel XE#1727] / [Intel XE#3113] / [Intel XE#6168]) -> [PASS][70]
   [69]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3974-c63ccee28ae7ab4cb57a2433314f08c71da914ff/shard-dg2-466/igt@kms_ccs@random-ccs-data-4-tiled-dg2-mc-ccs@pipe-a-hdmi-a-6.html
   [70]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156437v1/shard-dg2-466/igt@kms_ccs@random-ccs-data-4-tiled-dg2-mc-ccs@pipe-a-hdmi-a-6.html

  * igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs:
    - shard-dg2-set2:     [INCOMPLETE][71] ([Intel XE#2705] / [Intel XE#4212] / [Intel XE#4345]) -> [PASS][72]
   [71]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3974-c63ccee28ae7ab4cb57a2433314f08c71da914ff/shard-dg2-436/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs.html
   [72]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156437v1/shard-dg2-435/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs.html

  * igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs@pipe-c-dp-4:
    - shard-dg2-set2:     [INCOMPLETE][73] ([Intel XE#2705] / [Intel XE#4212]) -> [PASS][74]
   [73]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3974-c63ccee28ae7ab4cb57a2433314f08c71da914ff/shard-dg2-436/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs@pipe-c-dp-4.html
   [74]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156437v1/shard-dg2-435/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs@pipe-c-dp-4.html

  * igt@kms_cursor_crc@cursor-onscreen-256x256:
    - shard-bmg:          [SKIP][75] ([Intel XE#2320]) -> [PASS][76] +1 other test pass
   [75]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3974-c63ccee28ae7ab4cb57a2433314f08c71da914ff/shard-bmg-6/igt@kms_cursor_crc@cursor-onscreen-256x256.html
   [76]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156437v1/shard-bmg-1/igt@kms_cursor_crc@cursor-onscreen-256x256.html

  * igt@kms_cursor_legacy@cursora-vs-flipb-varying-size:
    - shard-bmg:          [SKIP][77] ([Intel XE#2291]) -> [PASS][78] +1 other test pass
   [77]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3974-c63ccee28ae7ab4cb57a2433314f08c71da914ff/shard-bmg-6/igt@kms_cursor_legacy@cursora-vs-flipb-varying-size.html
   [78]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156437v1/shard-bmg-1/igt@kms_cursor_legacy@cursora-vs-flipb-varying-size.html

  * igt@kms_flip@2x-flip-vs-modeset-vs-hang:
    - shard-bmg:          [SKIP][79] ([Intel XE#2316]) -> [PASS][80] +3 other tests pass
   [79]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3974-c63ccee28ae7ab4cb57a2433314f08c71da914ff/shard-bmg-6/igt@kms_flip@2x-flip-vs-modeset-vs-hang.html
   [80]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156437v1/shard-bmg-2/igt@kms_flip@2x-flip-vs-modeset-vs-hang.html

  * igt@kms_flip@basic-flip-vs-modeset@c-hdmi-a1:
    - shard-adlp:         [DMESG-WARN][81] ([Intel XE#4543]) -> [PASS][82] +9 other tests pass
   [81]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3974-c63ccee28ae7ab4cb57a2433314f08c71da914ff/shard-adlp-8/igt@kms_flip@basic-flip-vs-modeset@c-hdmi-a1.html
   [82]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156437v1/shard-adlp-8/igt@kms_flip@basic-flip-vs-modeset@c-hdmi-a1.html

  * igt@kms_flip@flip-vs-absolute-wf_vblank-interruptible@a-dp2:
    - shard-bmg:          [FAIL][83] ([Intel XE#5338] / [Intel XE#5416]) -> [PASS][84] +1 other test pass
   [83]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3974-c63ccee28ae7ab4cb57a2433314f08c71da914ff/shard-bmg-6/igt@kms_flip@flip-vs-absolute-wf_vblank-interruptible@a-dp2.html
   [84]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156437v1/shard-bmg-3/igt@kms_flip@flip-vs-absolute-wf_vblank-interruptible@a-dp2.html

  * igt@kms_flip@flip-vs-absolute-wf_vblank-interruptible@c-dp2:
    - shard-bmg:          [FAIL][85] ([Intel XE#5416]) -> [PASS][86]
   [85]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3974-c63ccee28ae7ab4cb57a2433314f08c71da914ff/shard-bmg-6/igt@kms_flip@flip-vs-absolute-wf_vblank-interruptible@c-dp2.html
   [86]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156437v1/shard-bmg-3/igt@kms_flip@flip-vs-absolute-wf_vblank-interruptible@c-dp2.html

  * igt@kms_flip_tiling@flip-change-tiling@pipe-b-hdmi-a-1-y-to-x:
    - shard-adlp:         [DMESG-FAIL][87] ([Intel XE#4543]) -> [PASS][88]
   [87]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3974-c63ccee28ae7ab4cb57a2433314f08c71da914ff/shard-adlp-3/igt@kms_flip_tiling@flip-change-tiling@pipe-b-hdmi-a-1-y-to-x.html
   [88]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156437v1/shard-adlp-6/igt@kms_flip_tiling@flip-change-tiling@pipe-b-hdmi-a-1-y-to-x.html

  * igt@kms_hdr@static-toggle-dpms:
    - shard-bmg:          [SKIP][89] ([Intel XE#1503]) -> [PASS][90]
   [89]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3974-c63ccee28ae7ab4cb57a2433314f08c71da914ff/shard-bmg-6/igt@kms_hdr@static-toggle-dpms.html
   [90]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156437v1/shard-bmg-2/igt@kms_hdr@static-toggle-dpms.html

  * igt@kms_joiner@basic-force-big-joiner:
    - shard-bmg:          [SKIP][91] ([Intel XE#3012]) -> [PASS][92]
   [91]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3974-c63ccee28ae7ab4cb57a2433314f08c71da914ff/shard-bmg-6/igt@kms_joiner@basic-force-big-joiner.html
   [92]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156437v1/shard-bmg-2/igt@kms_joiner@basic-force-big-joiner.html

  * igt@kms_plane_multiple@2x-tiling-none:
    - shard-bmg:          [SKIP][93] ([Intel XE#4596]) -> [PASS][94]
   [93]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3974-c63ccee28ae7ab4cb57a2433314f08c71da914ff/shard-bmg-6/igt@kms_plane_multiple@2x-tiling-none.html
   [94]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156437v1/shard-bmg-3/igt@kms_plane_multiple@2x-tiling-none.html

  * igt@xe_compute_preempt@compute-preempt-many-vram-evict@engine-drm_xe_engine_class_compute:
    - shard-bmg:          [ABORT][95] ([Intel XE#3970]) -> [PASS][96] +1 other test pass
   [95]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3974-c63ccee28ae7ab4cb57a2433314f08c71da914ff/shard-bmg-8/igt@xe_compute_preempt@compute-preempt-many-vram-evict@engine-drm_xe_engine_class_compute.html
   [96]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156437v1/shard-bmg-8/igt@xe_compute_preempt@compute-preempt-many-vram-evict@engine-drm_xe_engine_class_compute.html

  * igt@xe_exec_system_allocator@threads-shared-vm-many-large-mmap-new-madvise:
    - shard-bmg:          [DMESG-WARN][97] ([Intel XE#3428]) -> [PASS][98] +7 other tests pass
   [97]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3974-c63ccee28ae7ab4cb57a2433314f08c71da914ff/shard-bmg-6/igt@xe_exec_system_allocator@threads-shared-vm-many-large-mmap-new-madvise.html
   [98]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156437v1/shard-bmg-3/igt@xe_exec_system_allocator@threads-shared-vm-many-large-mmap-new-madvise.html

  * igt@xe_gt_freq@freq_suspend:
    - shard-adlp:         [DMESG-WARN][99] ([Intel XE#2953] / [Intel XE#4173]) -> [PASS][100] +1 other test pass
   [99]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3974-c63ccee28ae7ab4cb57a2433314f08c71da914ff/shard-adlp-4/igt@xe_gt_freq@freq_suspend.html
   [100]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156437v1/shard-adlp-3/igt@xe_gt_freq@freq_suspend.html

  * igt@xe_sriov_scheduling@nonpreempt-engine-resets@numvfs-random:
    - shard-adlp:         [DMESG-FAIL][101] ([Intel XE#3868] / [Intel XE#5213]) -> [PASS][102] +1 other test pass
   [101]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3974-c63ccee28ae7ab4cb57a2433314f08c71da914ff/shard-adlp-9/igt@xe_sriov_scheduling@nonpreempt-engine-resets@numvfs-random.html
   [102]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156437v1/shard-adlp-3/igt@xe_sriov_scheduling@nonpreempt-engine-resets@numvfs-random.html

  
#### Warnings ####

  * igt@kms_ccs@random-ccs-data-4-tiled-dg2-mc-ccs:
    - shard-dg2-set2:     [INCOMPLETE][103] ([Intel XE#1727] / [Intel XE#3113] / [Intel XE#4345] / [Intel XE#6168]) -> [INCOMPLETE][104] ([Intel XE#1727] / [Intel XE#2705] / [Intel XE#3113] / [Intel XE#4212] / [Intel XE#4345] / [Intel XE#4522])
   [103]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3974-c63ccee28ae7ab4cb57a2433314f08c71da914ff/shard-dg2-466/igt@kms_ccs@random-ccs-data-4-tiled-dg2-mc-ccs.html
   [104]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156437v1/shard-dg2-466/igt@kms_ccs@random-ccs-data-4-tiled-dg2-mc-ccs.html

  * igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc:
    - shard-dg2-set2:     [INCOMPLETE][105] ([Intel XE#1727] / [Intel XE#3113] / [Intel XE#4212] / [Intel XE#4345] / [Intel XE#4522]) -> [INCOMPLETE][106] ([Intel XE#1727] / [Intel XE#3113] / [Intel XE#4345] / [Intel XE#6168])
   [105]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3974-c63ccee28ae7ab4cb57a2433314f08c71da914ff/shard-dg2-463/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc.html
   [106]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156437v1/shard-dg2-433/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc.html

  * igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc@pipe-b-dp-4:
    - shard-dg2-set2:     [INCOMPLETE][107] ([Intel XE#1727] / [Intel XE#3113] / [Intel XE#4212] / [Intel XE#4522]) -> [INCOMPLETE][108] ([Intel XE#6168])
   [107]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3974-c63ccee28ae7ab4cb57a2433314f08c71da914ff/shard-dg2-463/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc@pipe-b-dp-4.html
   [108]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156437v1/shard-dg2-433/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc@pipe-b-dp-4.html

  * igt@kms_content_protection@legacy:
    - shard-bmg:          [FAIL][109] ([Intel XE#1178]) -> [SKIP][110] ([Intel XE#2341])
   [109]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3974-c63ccee28ae7ab4cb57a2433314f08c71da914ff/shard-bmg-6/igt@kms_content_protection@legacy.html
   [110]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156437v1/shard-bmg-1/igt@kms_content_protection@legacy.html

  * igt@kms_cursor_crc@cursor-rapid-movement-512x512:
    - shard-bmg:          [SKIP][111] ([Intel XE#2321]) -> [SKIP][112] ([Intel XE#2320])
   [111]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3974-c63ccee28ae7ab4cb57a2433314f08c71da914ff/shard-bmg-5/igt@kms_cursor_crc@cursor-rapid-movement-512x512.html
   [112]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156437v1/shard-bmg-6/igt@kms_cursor_crc@cursor-rapid-movement-512x512.html

  * igt@kms_frontbuffer_tracking@drrs-2p-primscrn-cur-indfb-draw-blt:
    - shard-bmg:          [SKIP][113] ([Intel XE#2311]) -> [SKIP][114] ([Intel XE#2312]) +9 other tests skip
   [113]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3974-c63ccee28ae7ab4cb57a2433314f08c71da914ff/shard-bmg-7/igt@kms_frontbuffer_tracking@drrs-2p-primscrn-cur-indfb-draw-blt.html
   [114]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156437v1/shard-bmg-6/igt@kms_frontbuffer_tracking@drrs-2p-primscrn-cur-indfb-draw-blt.html

  * igt@kms_frontbuffer_tracking@drrs-2p-primscrn-pri-indfb-draw-mmap-wc:
    - shard-bmg:          [SKIP][115] ([Intel XE#2312]) -> [SKIP][116] ([Intel XE#2311]) +8 other tests skip
   [115]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3974-c63ccee28ae7ab4cb57a2433314f08c71da914ff/shard-bmg-6/igt@kms_frontbuffer_tracking@drrs-2p-primscrn-pri-indfb-draw-mmap-wc.html
   [116]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156437v1/shard-bmg-2/igt@kms_frontbuffer_tracking@drrs-2p-primscrn-pri-indfb-draw-mmap-wc.html

  * igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-draw-render:
    - shard-bmg:          [SKIP][117] ([Intel XE#2312]) -> [SKIP][118] ([Intel XE#5390]) +5 other tests skip
   [117]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3974-c63ccee28ae7ab4cb57a2433314f08c71da914ff/shard-bmg-6/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-draw-render.html
   [118]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156437v1/shard-bmg-2/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-draw-render.html

  * igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-draw-render:
    - shard-bmg:          [SKIP][119] ([Intel XE#5390]) -> [SKIP][120] ([Intel XE#2312]) +5 other tests skip
   [119]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3974-c63ccee28ae7ab4cb57a2433314f08c71da914ff/shard-bmg-7/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-draw-render.html
   [120]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156437v1/shard-bmg-6/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-draw-render.html

  * igt@kms_frontbuffer_tracking@psr-2p-primscrn-cur-indfb-onoff:
    - shard-bmg:          [SKIP][121] ([Intel XE#2312]) -> [SKIP][122] ([Intel XE#2313]) +7 other tests skip
   [121]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3974-c63ccee28ae7ab4cb57a2433314f08c71da914ff/shard-bmg-6/igt@kms_frontbuffer_tracking@psr-2p-primscrn-cur-indfb-onoff.html
   [122]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156437v1/shard-bmg-3/igt@kms_frontbuffer_tracking@psr-2p-primscrn-cur-indfb-onoff.html

  * igt@kms_frontbuffer_tracking@psr-2p-scndscrn-indfb-msflip-blt:
    - shard-bmg:          [SKIP][123] ([Intel XE#2313]) -> [SKIP][124] ([Intel XE#2312]) +7 other tests skip
   [123]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3974-c63ccee28ae7ab4cb57a2433314f08c71da914ff/shard-bmg-5/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-indfb-msflip-blt.html
   [124]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156437v1/shard-bmg-6/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-indfb-msflip-blt.html

  * igt@kms_tiled_display@basic-test-pattern:
    - shard-bmg:          [FAIL][125] ([Intel XE#1729]) -> [SKIP][126] ([Intel XE#2426])
   [125]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3974-c63ccee28ae7ab4cb57a2433314f08c71da914ff/shard-bmg-5/igt@kms_tiled_display@basic-test-pattern.html
   [126]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156437v1/shard-bmg-6/igt@kms_tiled_display@basic-test-pattern.html

  * igt@kms_tiled_display@basic-test-pattern-with-chamelium:
    - shard-bmg:          [SKIP][127] ([Intel XE#2426]) -> [SKIP][128] ([Intel XE#2509])
   [127]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3974-c63ccee28ae7ab4cb57a2433314f08c71da914ff/shard-bmg-6/igt@kms_tiled_display@basic-test-pattern-with-chamelium.html
   [128]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156437v1/shard-bmg-1/igt@kms_tiled_display@basic-test-pattern-with-chamelium.html

  * igt@xe_fault_injection@probe-fail-guc-xe_guc_ct_send_recv:
    - shard-bmg:          [ABORT][129] ([Intel XE#4917] / [Intel XE#5466] / [Intel XE#5530]) -> [ABORT][130] ([Intel XE#5466] / [Intel XE#5530])
   [129]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3974-c63ccee28ae7ab4cb57a2433314f08c71da914ff/shard-bmg-4/igt@xe_fault_injection@probe-fail-guc-xe_guc_ct_send_recv.html
   [130]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156437v1/shard-bmg-5/igt@xe_fault_injection@probe-fail-guc-xe_guc_ct_send_recv.html

  
  [Intel XE#1124]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1124
  [Intel XE#1178]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1178
  [Intel XE#1406]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1406
  [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#2234]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2234
  [Intel XE#2248]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2248
  [Intel XE#2252]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2252
  [Intel XE#2291]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2291
  [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#2312]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2312
  [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#2316]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2316
  [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#2341]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2341
  [Intel XE#2370]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2370
  [Intel XE#2375]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2375
  [Intel XE#2380]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2380
  [Intel XE#2387]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2387
  [Intel XE#2426]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2426
  [Intel XE#2509]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2509
  [Intel XE#2652]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2652
  [Intel XE#2705]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2705
  [Intel XE#2763]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2763
  [Intel XE#2850]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2850
  [Intel XE#288]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/288
  [Intel XE#2887]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2887
  [Intel XE#2894]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2894
  [Intel XE#2953]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2953
  [Intel XE#3012]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3012
  [Intel XE#3113]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3113
  [Intel XE#3414]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3414
  [Intel XE#3428]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3428
  [Intel XE#3573]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3573
  [Intel XE#3868]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3868
  [Intel XE#3876]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3876
  [Intel XE#3904]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3904
  [Intel XE#3970]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3970
  [Intel XE#4173]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4173
  [Intel XE#4212]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4212
  [Intel XE#4345]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4345
  [Intel XE#4522]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4522
  [Intel XE#4543]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4543
  [Intel XE#4596]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4596
  [Intel XE#4733]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4733
  [Intel XE#4814]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4814
  [Intel XE#4837]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4837
  [Intel XE#4842]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4842
  [Intel XE#4848]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4848
  [Intel XE#4915]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4915
  [Intel XE#4917]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4917
  [Intel XE#4943]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4943
  [Intel XE#5020]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5020
  [Intel XE#5213]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5213
  [Intel XE#5338]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5338
  [Intel XE#5354]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5354
  [Intel XE#5390]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5390
  [Intel XE#5416]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5416
  [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#5625]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5625
  [Intel XE#6014]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6014
  [Intel XE#6168]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6168
  [Intel XE#651]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/651
  [Intel XE#653]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/653
  [Intel XE#787]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/787


Build changes
-------------

  * Linux: xe-3974-c63ccee28ae7ab4cb57a2433314f08c71da914ff -> xe-pw-156437v1

  IGT_8596: 8596
  xe-3974-c63ccee28ae7ab4cb57a2433314f08c71da914ff: c63ccee28ae7ab4cb57a2433314f08c71da914ff
  xe-pw-156437v1: 156437v1

== Logs ==

For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156437v1/index.html

[-- Attachment #2: Type: text/html, Size: 46252 bytes --]

^ permalink raw reply	[flat|nested] 17+ messages in thread

* Re: [PATCH 3/5] drm/xe/gt_throttle: Always read and mask
  2025-10-24  6:13   ` Raag Jadav
@ 2025-10-24 16:13     ` Lucas De Marchi
  2025-10-25 15:46       ` Raag Jadav
  0 siblings, 1 reply; 17+ messages in thread
From: Lucas De Marchi @ 2025-10-24 16:13 UTC (permalink / raw)
  To: Raag Jadav; +Cc: intel-xe

On Fri, Oct 24, 2025 at 08:13:11AM +0200, Raag Jadav wrote:
>On Thu, Oct 23, 2025 at 09:56:56AM -0700, Lucas De Marchi wrote:
>> Use a single function to read and mask the value the callers will be
>> interested in. This reduces the risk of a caller using a plain call to
>> xe_gt_throttle_get_limit_reasons() without applying any mask, which can
>> return unexpected bits for future platforms.
>>
>> Select which reg and mask it's going to be used according to the
>> platform and gt type and always use that one function.
>>
>> There was an odd xe_gt_dbg() when reading the status, which is not done
>> for any other throttle/* sysfs file, so just make the status be as
>> special as everybody else.
>
>This was to debug the rather controvercial design choice[1], but discussion
>seems have died down and this is no longer needed.
>
>[1] https://lore.kernel.org/intel-xe/20241025092238.167042-1-raag.jadav@intel.com/

I read the thread again and will think about it.


>
>> Signed-off-by: Lucas De Marchi <lucas.demarchi@intel.com>
>
>Reviewed-by: Raag Jadav <raag.jadav@intel.com>

thanks
Lucas De Marchi

^ permalink raw reply	[flat|nested] 17+ messages in thread

* Re: [PATCH 3/5] drm/xe/gt_throttle: Always read and mask
  2025-10-24 16:13     ` Lucas De Marchi
@ 2025-10-25 15:46       ` Raag Jadav
  0 siblings, 0 replies; 17+ messages in thread
From: Raag Jadav @ 2025-10-25 15:46 UTC (permalink / raw)
  To: Lucas De Marchi; +Cc: intel-xe

On Fri, Oct 24, 2025 at 11:13:38AM -0500, Lucas De Marchi wrote:
> On Fri, Oct 24, 2025 at 08:13:11AM +0200, Raag Jadav wrote:
> > On Thu, Oct 23, 2025 at 09:56:56AM -0700, Lucas De Marchi wrote:
> > > Use a single function to read and mask the value the callers will be
> > > interested in. This reduces the risk of a caller using a plain call to
> > > xe_gt_throttle_get_limit_reasons() without applying any mask, which can
> > > return unexpected bits for future platforms.
> > > 
> > > Select which reg and mask it's going to be used according to the
> > > platform and gt type and always use that one function.
> > > 
> > > There was an odd xe_gt_dbg() when reading the status, which is not done
> > > for any other throttle/* sysfs file, so just make the status be as
> > > special as everybody else.
> > 
> > This was to debug the rather controvercial design choice[1], but discussion
> > seems have died down and this is no longer needed.
> > 
> > [1] https://lore.kernel.org/intel-xe/20241025092238.167042-1-raag.jadav@intel.com/
> 
> I read the thread again and will think about it.

Forgot to add. If you're removing xe_gt_dbg(), you no longer need the
xe_gt_printk.h include here.

Raag

> > > Signed-off-by: Lucas De Marchi <lucas.demarchi@intel.com>
> > 
> > Reviewed-by: Raag Jadav <raag.jadav@intel.com>

^ permalink raw reply	[flat|nested] 17+ messages in thread

end of thread, other threads:[~2025-10-25 15:46 UTC | newest]

Thread overview: 17+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2025-10-23 16:56 [PATCH 0/5] drm/xe: CRI support in gt_throttle + refactors Lucas De Marchi
2025-10-23 16:56 ` [PATCH 1/5] drm/xe/cri: Add new performance limit reasons bits Lucas De Marchi
2025-10-24  5:55   ` Raag Jadav
2025-10-23 16:56 ` [PATCH 2/5] drm/xe/gt_throttle: Tidy up perf reasons reading Lucas De Marchi
2025-10-24  5:59   ` Raag Jadav
2025-10-23 16:56 ` [PATCH 3/5] drm/xe/gt_throttle: Always read and mask Lucas De Marchi
2025-10-24  6:13   ` Raag Jadav
2025-10-24 16:13     ` Lucas De Marchi
2025-10-25 15:46       ` Raag Jadav
2025-10-23 16:56 ` [PATCH 4/5] drm/xe/gt_throttle: Add throttle_to_gt() Lucas De Marchi
2025-10-24  8:15   ` Raag Jadav
2025-10-23 16:56 ` [PATCH 5/5] drm/xe/gt_throttle: Tidy up attribute definition Lucas De Marchi
2025-10-24  8:34   ` Raag Jadav
2025-10-23 19:29 ` ✗ CI.checkpatch: warning for drm/xe: CRI support in gt_throttle + refactors Patchwork
2025-10-23 19:31 ` ✓ CI.KUnit: success " Patchwork
2025-10-23 20:32 ` ✓ Xe.CI.BAT: " Patchwork
2025-10-24  8:42 ` ✗ Xe.CI.Full: failure " Patchwork

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).