* [PATCH v7 0/4] drm/xe/hwmon: Expose new temperature attributes
@ 2026-01-12 20:35 Karthik Poosa
2026-01-12 20:35 ` [PATCH v7 1/4] drm/xe/hwmon: Expose temperature limits Karthik Poosa
` (6 more replies)
0 siblings, 7 replies; 13+ messages in thread
From: Karthik Poosa @ 2026-01-12 20:35 UTC (permalink / raw)
To: intel-xe
Cc: anshuman.gupta, badal.nilawar, rodrigo.vivi, raag.jadav,
Karthik Poosa
Expose tempX_emergency and tempX_crit for package and vram,
representing shutdown and critical temperature thresholds.
These values are read via pcode thermal mailbox commands.
These are read using pcode thermal mailbox commands
v2:
- Expose memory controller, pcie and individual vram
temperatures also.
- Addressed some of review comments of v1 from KVP.
v3:
- Combine patches 1,2,3 into patch 1.
- Combine patches 4,5 to patch 2.
- Addressed review comments from v2.
- Update kernel version in Xe hwmon documentation.
v4:
- Address review comments of v3.
- Update kernel version to 7.0 in Xe hwmon documentation.
v5:
- Address review comments in v4 from Raag.
- Group new temperature attributes with existing temperature attributes as
per channel index in Xe hwmon documentation.
- Minor aesthetic refinements.
- Minor code improvements.
- Use DIV_ROUND_UP to calculate dwords needed for temperature limits.
- Use TEMP_MASK instead of TEMP_MASK_MAILBOX.
- Add PCIE_SENSOR_MASK which uses REG_FIELD_GET as replacement of
PCIE_SENSOR_SHIFT.
- Improve VRAM label handling to eliminate temp variable by introducing a
dedicated array vram_label in xe_hwmon_thermal_info.
- Change the label from vram_X to vram_ch_X.
- Remove a magic numbers.
v6:
- Address minor aesthetic and refactoring review comments from Raag
in patch 1,2,3
- Refactor is_vram_ch_available()
- Check individual VRAM temperature limits in addition to VRAM
availability in xe_hwmon_temp_is_visible. (Raag)
- Move VRAM label change out of this patch.
- Update drm_dbg to drm_warn to inform user of unavailability for thermal
mailbox on expected to be supported platforms.
v7:
- Address aesthetic review comments in patch 4.
- Use in_range() for VRAM_N index check instead of if check. (Raag)
Karthik Poosa (4):
drm/xe/hwmon: Expose temperature limits
drm/xe/hwmon: Expose memory controller temperature
drm/xe/hwmon: Expose GPU PCIe temperature
drm/xe/hwmon: Expose individual VRAM channel temperature
.../ABI/testing/sysfs-driver-intel-xe-hwmon | 110 +++++++
drivers/gpu/drm/xe/regs/xe_pcode_regs.h | 3 +
drivers/gpu/drm/xe/xe_device_types.h | 2 +
drivers/gpu/drm/xe/xe_hwmon.c | 279 +++++++++++++++++-
drivers/gpu/drm/xe/xe_pci.c | 3 +
drivers/gpu/drm/xe/xe_pci_types.h | 1 +
drivers/gpu/drm/xe/xe_pcode_api.h | 7 +
7 files changed, 397 insertions(+), 8 deletions(-)
--
2.25.1
^ permalink raw reply [flat|nested] 13+ messages in thread
* [PATCH v7 1/4] drm/xe/hwmon: Expose temperature limits
2026-01-12 20:35 [PATCH v7 0/4] drm/xe/hwmon: Expose new temperature attributes Karthik Poosa
@ 2026-01-12 20:35 ` Karthik Poosa
2026-01-12 20:35 ` [PATCH v7 2/4] drm/xe/hwmon: Expose memory controller temperature Karthik Poosa
` (5 subsequent siblings)
6 siblings, 0 replies; 13+ messages in thread
From: Karthik Poosa @ 2026-01-12 20:35 UTC (permalink / raw)
To: intel-xe
Cc: anshuman.gupta, badal.nilawar, rodrigo.vivi, raag.jadav,
Karthik Poosa
Read temperature limits using pcode mailbox and expose shutdown
temperature limit as tempX_emergency, critical temperature limit as
tempX_crit and GPU max temperature limit as temp2_max.
Update Xe hwmon documentation with above entries.
v2:
- Resolve a documentation warning.
- Address below review comments from Raag.
- Update date and kernel version in Xe hwmon documentation.
- Remove explicit disable of has_mbx_thermal_info for unsupported
platforms.
- Remove unnecessary default case in switches.
- Remove obvious comments.
- Use TEMP_LIMIT_MAX to compute number of dwords needed in
xe_hwmon_thermal_info.
- Remove THERMAL_LIMITS_DWORDS macro.
- Use has_mbx_thermal_info for checking thermal mailbox support.
v3:
- Address below minor comments. (Raag)
- Group new temperature attributes with existing temperature attributes
as per channel index in Xe hwmon documentation.
- Rename enums of xe_temp_limit to improve clarity.
- Use DIV_ROUND_UP to calculate dwords needed for temperature limits.
- Use return instead of breaks in xe_hwmon_temp_read.
- Minor aesthetic refinements.
v4:
- Remove a redundant break. (Raag)
- Update drm_dbg to drm_warn to inform user of unavailability for
thermal mailbox on expected platforms.
Signed-off-by: Karthik Poosa <karthik.poosa@intel.com>
Reviewed-by: Raag Jadav <raag.jadav@intel.com>
---
.../ABI/testing/sysfs-driver-intel-xe-hwmon | 40 +++++++
drivers/gpu/drm/xe/xe_device_types.h | 2 +
drivers/gpu/drm/xe/xe_hwmon.c | 102 +++++++++++++++++-
drivers/gpu/drm/xe/xe_pci.c | 3 +
drivers/gpu/drm/xe/xe_pci_types.h | 1 +
drivers/gpu/drm/xe/xe_pcode_api.h | 3 +
6 files changed, 148 insertions(+), 3 deletions(-)
diff --git a/Documentation/ABI/testing/sysfs-driver-intel-xe-hwmon b/Documentation/ABI/testing/sysfs-driver-intel-xe-hwmon
index d9e2b17c6872..2b00ef13b6ad 100644
--- a/Documentation/ABI/testing/sysfs-driver-intel-xe-hwmon
+++ b/Documentation/ABI/testing/sysfs-driver-intel-xe-hwmon
@@ -109,6 +109,22 @@ Description: RO. Package current voltage in millivolt.
Only supported for particular Intel Xe graphics platforms.
+What: /sys/bus/pci/drivers/xe/.../hwmon/hwmon<i>/temp2_crit
+Date: January 2026
+KernelVersion: 7.0
+Contact: intel-xe@lists.freedesktop.org
+Description: RO. Package critical temperature in millidegree Celsius.
+
+ Only supported for particular Intel Xe graphics platforms.
+
+What: /sys/bus/pci/drivers/xe/.../hwmon/hwmon<i>/temp2_emergency
+Date: January 2026
+KernelVersion: 7.0
+Contact: intel-xe@lists.freedesktop.org
+Description: RO. Package shutdown temperature in millidegree Celsius.
+
+ Only supported for particular Intel Xe graphics platforms.
+
What: /sys/bus/pci/drivers/xe/.../hwmon/hwmon<i>/temp2_input
Date: March 2025
KernelVersion: 6.15
@@ -117,6 +133,30 @@ Description: RO. Package temperature in millidegree Celsius.
Only supported for particular Intel Xe graphics platforms.
+What: /sys/bus/pci/drivers/xe/.../hwmon/hwmon<i>/temp2_max
+Date: January 2026
+KernelVersion: 7.0
+Contact: intel-xe@lists.freedesktop.org
+Description: RO. Package maximum temperature limit in millidegree Celsius.
+
+ Only supported for particular Intel Xe graphics platforms.
+
+What: /sys/bus/pci/drivers/xe/.../hwmon/hwmon<i>/temp3_crit
+Date: January 2026
+KernelVersion: 7.0
+Contact: intel-xe@lists.freedesktop.org
+Description: RO. VRAM critical temperature in millidegree Celsius.
+
+ Only supported for particular Intel Xe graphics platforms.
+
+What: /sys/bus/pci/drivers/xe/.../hwmon/hwmon<i>/temp3_emergency
+Date: January 2026
+KernelVersion: 7.0
+Contact: intel-xe@lists.freedesktop.org
+Description: RO. VRAM shutdown temperature in millidegree Celsius.
+
+ Only supported for particular Intel Xe graphics platforms.
+
What: /sys/bus/pci/drivers/xe/.../hwmon/hwmon<i>/temp3_input
Date: March 2025
KernelVersion: 6.15
diff --git a/drivers/gpu/drm/xe/xe_device_types.h b/drivers/gpu/drm/xe/xe_device_types.h
index 4dab3057f58d..f689766adcb1 100644
--- a/drivers/gpu/drm/xe/xe_device_types.h
+++ b/drivers/gpu/drm/xe/xe_device_types.h
@@ -341,6 +341,8 @@ struct xe_device {
* pcode mailbox commands.
*/
u8 has_mbx_power_limits:1;
+ /** @info.has_mbx_thermal_info: Device supports thermal mailbox commands */
+ u8 has_mbx_thermal_info:1;
/** @info.has_mem_copy_instr: Device supports MEM_COPY instruction */
u8 has_mem_copy_instr:1;
/** @info.has_mert: Device has standalone MERT */
diff --git a/drivers/gpu/drm/xe/xe_hwmon.c b/drivers/gpu/drm/xe/xe_hwmon.c
index ff2aea52ef75..7eb6a76fa217 100644
--- a/drivers/gpu/drm/xe/xe_hwmon.c
+++ b/drivers/gpu/drm/xe/xe_hwmon.c
@@ -53,6 +53,15 @@ enum xe_fan_channel {
FAN_MAX,
};
+enum xe_temp_limit {
+ TEMP_LIMIT_PKG_SHUTDOWN,
+ TEMP_LIMIT_PKG_CRIT,
+ TEMP_LIMIT_MEM_SHUTDOWN,
+ TEMP_LIMIT_PKG_MAX,
+ TEMP_LIMIT_MEM_CRIT,
+ TEMP_LIMIT_MAX
+};
+
/* Attribute index for powerX_xxx_interval sysfs entries */
enum sensor_attr_power {
SENSOR_INDEX_PSYS_PL1,
@@ -111,6 +120,18 @@ struct xe_hwmon_fan_info {
u64 time_prev;
};
+/**
+ * struct xe_hwmon_thermal_info - to store temperature data
+ */
+struct xe_hwmon_thermal_info {
+ union {
+ /** @limit: temperatures limits */
+ u8 limit[TEMP_LIMIT_MAX];
+ /** @data: temperature limits in dwords */
+ u32 data[DIV_ROUND_UP(TEMP_LIMIT_MAX, sizeof(u32))];
+ };
+};
+
/**
* struct xe_hwmon - xe hwmon data structure
*/
@@ -137,7 +158,8 @@ struct xe_hwmon {
u32 pl1_on_boot[CHANNEL_MAX];
/** @pl2_on_boot: power limit PL2 on boot */
u32 pl2_on_boot[CHANNEL_MAX];
-
+ /** @temp: Temperature info */
+ struct xe_hwmon_thermal_info temp;
};
static int xe_hwmon_pcode_read_power_limit(const struct xe_hwmon *hwmon, u32 attr, int channel,
@@ -677,8 +699,11 @@ static const struct attribute_group *hwmon_groups[] = {
};
static const struct hwmon_channel_info * const hwmon_info[] = {
- HWMON_CHANNEL_INFO(temp, HWMON_T_LABEL, HWMON_T_INPUT | HWMON_T_LABEL,
- HWMON_T_INPUT | HWMON_T_LABEL),
+ HWMON_CHANNEL_INFO(temp,
+ HWMON_T_LABEL,
+ HWMON_T_CRIT | HWMON_T_EMERGENCY | HWMON_T_INPUT | HWMON_T_LABEL |
+ HWMON_T_MAX,
+ HWMON_T_CRIT | HWMON_T_EMERGENCY | HWMON_T_INPUT | HWMON_T_LABEL),
HWMON_CHANNEL_INFO(power, HWMON_P_MAX | HWMON_P_RATED_MAX | HWMON_P_LABEL | HWMON_P_CRIT |
HWMON_P_CAP,
HWMON_P_MAX | HWMON_P_RATED_MAX | HWMON_P_LABEL | HWMON_P_CAP),
@@ -689,6 +714,19 @@ static const struct hwmon_channel_info * const hwmon_info[] = {
NULL
};
+static int xe_hwmon_pcode_read_thermal_info(struct xe_hwmon *hwmon)
+{
+ struct xe_tile *root_tile = xe_device_get_root_tile(hwmon->xe);
+ int ret;
+
+ ret = xe_pcode_read(root_tile, PCODE_MBOX(PCODE_THERMAL_INFO, READ_THERMAL_LIMITS, 0),
+ &hwmon->temp.data[0], &hwmon->temp.data[1]);
+ drm_dbg(&hwmon->xe->drm, "thermal info read val 0x%x val1 0x%x\n",
+ hwmon->temp.data[0], hwmon->temp.data[1]);
+
+ return ret;
+}
+
/* I1 is exposed as power_crit or as curr_crit depending on bit 31 */
static int xe_hwmon_pcode_read_i1(const struct xe_hwmon *hwmon, u32 *uval)
{
@@ -787,6 +825,31 @@ static umode_t
xe_hwmon_temp_is_visible(struct xe_hwmon *hwmon, u32 attr, int channel)
{
switch (attr) {
+ case hwmon_temp_emergency:
+ switch (channel) {
+ case CHANNEL_PKG:
+ return hwmon->temp.limit[TEMP_LIMIT_PKG_SHUTDOWN] ? 0444 : 0;
+ case CHANNEL_VRAM:
+ return hwmon->temp.limit[TEMP_LIMIT_MEM_SHUTDOWN] ? 0444 : 0;
+ default:
+ return 0;
+ }
+ case hwmon_temp_crit:
+ switch (channel) {
+ case CHANNEL_PKG:
+ return hwmon->temp.limit[TEMP_LIMIT_PKG_CRIT] ? 0444 : 0;
+ case CHANNEL_VRAM:
+ return hwmon->temp.limit[TEMP_LIMIT_MEM_CRIT] ? 0444 : 0;
+ default:
+ return 0;
+ }
+ case hwmon_temp_max:
+ switch (channel) {
+ case CHANNEL_PKG:
+ return hwmon->temp.limit[TEMP_LIMIT_PKG_MAX] ? 0444 : 0;
+ default:
+ return 0;
+ }
case hwmon_temp_input:
case hwmon_temp_label:
return xe_reg_is_valid(xe_hwmon_get_reg(hwmon, REG_TEMP, channel)) ? 0444 : 0;
@@ -808,6 +871,36 @@ xe_hwmon_temp_read(struct xe_hwmon *hwmon, u32 attr, int channel, long *val)
/* HW register value is in degrees Celsius, convert to millidegrees. */
*val = REG_FIELD_GET(TEMP_MASK, reg_val) * MILLIDEGREE_PER_DEGREE;
return 0;
+ case hwmon_temp_emergency:
+ switch (channel) {
+ case CHANNEL_PKG:
+ *val = hwmon->temp.limit[TEMP_LIMIT_PKG_SHUTDOWN] * MILLIDEGREE_PER_DEGREE;
+ return 0;
+ case CHANNEL_VRAM:
+ *val = hwmon->temp.limit[TEMP_LIMIT_MEM_SHUTDOWN] * MILLIDEGREE_PER_DEGREE;
+ return 0;
+ default:
+ return -EOPNOTSUPP;
+ }
+ case hwmon_temp_crit:
+ switch (channel) {
+ case CHANNEL_PKG:
+ *val = hwmon->temp.limit[TEMP_LIMIT_PKG_CRIT] * MILLIDEGREE_PER_DEGREE;
+ return 0;
+ case CHANNEL_VRAM:
+ *val = hwmon->temp.limit[TEMP_LIMIT_MEM_CRIT] * MILLIDEGREE_PER_DEGREE;
+ return 0;
+ default:
+ return -EOPNOTSUPP;
+ }
+ case hwmon_temp_max:
+ switch (channel) {
+ case CHANNEL_PKG:
+ *val = hwmon->temp.limit[TEMP_LIMIT_PKG_MAX] * MILLIDEGREE_PER_DEGREE;
+ return 0;
+ default:
+ return -EOPNOTSUPP;
+ }
default:
return -EOPNOTSUPP;
}
@@ -1263,6 +1356,9 @@ xe_hwmon_get_preregistration_info(struct xe_hwmon *hwmon)
for (channel = 0; channel < FAN_MAX; channel++)
if (xe_hwmon_is_visible(hwmon, hwmon_fan, hwmon_fan_input, channel))
xe_hwmon_fan_input_read(hwmon, channel, &fan_speed);
+
+ if (hwmon->xe->info.has_mbx_thermal_info && xe_hwmon_pcode_read_thermal_info(hwmon))
+ drm_warn(&hwmon->xe->drm, "Thermal mailbox not supported by card firmware\n");
}
int xe_hwmon_register(struct xe_device *xe)
diff --git a/drivers/gpu/drm/xe/xe_pci.c b/drivers/gpu/drm/xe/xe_pci.c
index 673db1e82ec3..fa0a374d88f8 100644
--- a/drivers/gpu/drm/xe/xe_pci.c
+++ b/drivers/gpu/drm/xe/xe_pci.c
@@ -366,6 +366,7 @@ static const struct xe_device_desc bmg_desc = {
.has_fan_control = true,
.has_flat_ccs = 1,
.has_mbx_power_limits = true,
+ .has_mbx_thermal_info = true,
.has_gsc_nvm = 1,
.has_heci_cscfi = 1,
.has_i2c = true,
@@ -422,6 +423,7 @@ static const struct xe_device_desc cri_desc = {
.has_gsc_nvm = 1,
.has_i2c = true,
.has_mbx_power_limits = true,
+ .has_mbx_thermal_info = true,
.has_mert = true,
.has_pre_prod_wa = 1,
.has_soc_remapper_sysctrl = true,
@@ -687,6 +689,7 @@ static int xe_info_init_early(struct xe_device *xe,
/* runtime fusing may force flat_ccs to disabled later */
xe->info.has_flat_ccs = desc->has_flat_ccs;
xe->info.has_mbx_power_limits = desc->has_mbx_power_limits;
+ xe->info.has_mbx_thermal_info = desc->has_mbx_thermal_info;
xe->info.has_gsc_nvm = desc->has_gsc_nvm;
xe->info.has_heci_gscfi = desc->has_heci_gscfi;
xe->info.has_heci_cscfi = desc->has_heci_cscfi;
diff --git a/drivers/gpu/drm/xe/xe_pci_types.h b/drivers/gpu/drm/xe/xe_pci_types.h
index 5f20f56571d1..20acc5349ee6 100644
--- a/drivers/gpu/drm/xe/xe_pci_types.h
+++ b/drivers/gpu/drm/xe/xe_pci_types.h
@@ -48,6 +48,7 @@ struct xe_device_desc {
u8 has_late_bind:1;
u8 has_llc:1;
u8 has_mbx_power_limits:1;
+ u8 has_mbx_thermal_info:1;
u8 has_mem_copy_instr:1;
u8 has_mert:1;
u8 has_pre_prod_wa:1;
diff --git a/drivers/gpu/drm/xe/xe_pcode_api.h b/drivers/gpu/drm/xe/xe_pcode_api.h
index 975892d6b230..dc8f241e5b9e 100644
--- a/drivers/gpu/drm/xe/xe_pcode_api.h
+++ b/drivers/gpu/drm/xe/xe_pcode_api.h
@@ -50,6 +50,9 @@
#define READ_PL_FROM_FW 0x1
#define READ_PL_FROM_PCODE 0x0
+#define PCODE_THERMAL_INFO 0x25
+#define READ_THERMAL_LIMITS 0x0
+
#define PCODE_LATE_BINDING 0x5C
#define GET_CAPABILITY_STATUS 0x0
#define V1_FAN_SUPPORTED REG_BIT(0)
--
2.25.1
^ permalink raw reply related [flat|nested] 13+ messages in thread
* [PATCH v7 2/4] drm/xe/hwmon: Expose memory controller temperature
2026-01-12 20:35 [PATCH v7 0/4] drm/xe/hwmon: Expose new temperature attributes Karthik Poosa
2026-01-12 20:35 ` [PATCH v7 1/4] drm/xe/hwmon: Expose temperature limits Karthik Poosa
@ 2026-01-12 20:35 ` Karthik Poosa
2026-01-12 20:35 ` [PATCH v7 3/4] drm/xe/hwmon: Expose GPU PCIe temperature Karthik Poosa
` (4 subsequent siblings)
6 siblings, 0 replies; 13+ messages in thread
From: Karthik Poosa @ 2026-01-12 20:35 UTC (permalink / raw)
To: intel-xe
Cc: anshuman.gupta, badal.nilawar, rodrigo.vivi, raag.jadav,
Karthik Poosa
Expose GPU memory controller average temperature and its limits under
temp4_xxx.
Update Xe hwmon documentation for this.
v2:
- Rephrase commit message. (Badal)
- Update kernel version in Xe hwmon documentation. (Raag)
v3:
- Update kernel version in Xe hwmon documentation.
- Address review comments from Raag.
- Remove obvious comments.
- Remove redundant debug logs.
- Remove unnecessary checks.
- Avoid magic numbers.
- Add new comments.
- Use temperature sensors count to make memory controller visible.
- Use temperature limits of package for memory controller.
v4:
- Address review comments from Raag.
- Group new temperature attributes with existing temperature attributes
as per channel index in Xe hwmon documentation.
- Use DIV_ROUND_UP to calculate dwords needed for temperature limits.
- Minor aesthetic refinements.
- Remove unused TEMP_MASK_MAILBOX.
v5:
- Use REG_FIELD_GET to get count from READ_THERMAL_DATA output. (Raag)
- Change count print from decimal to hexadecimal.
- Cosmetic changes.
Signed-off-by: Karthik Poosa <karthik.poosa@intel.com>
Reviewed-by: Raag Jadav <raag.jadav@intel.com>
---
.../ABI/testing/sysfs-driver-intel-xe-hwmon | 24 ++++++
drivers/gpu/drm/xe/xe_hwmon.c | 79 +++++++++++++++++--
drivers/gpu/drm/xe/xe_pcode_api.h | 2 +
3 files changed, 100 insertions(+), 5 deletions(-)
diff --git a/Documentation/ABI/testing/sysfs-driver-intel-xe-hwmon b/Documentation/ABI/testing/sysfs-driver-intel-xe-hwmon
index 2b00ef13b6ad..550206885624 100644
--- a/Documentation/ABI/testing/sysfs-driver-intel-xe-hwmon
+++ b/Documentation/ABI/testing/sysfs-driver-intel-xe-hwmon
@@ -165,6 +165,30 @@ Description: RO. VRAM temperature in millidegree Celsius.
Only supported for particular Intel Xe graphics platforms.
+What: /sys/bus/pci/drivers/xe/.../hwmon/hwmon<i>/temp4_crit
+Date: January 2026
+KernelVersion: 7.0
+Contact: intel-xe@lists.freedesktop.org
+Description: RO. Memory controller critical temperature in millidegree Celsius.
+
+ Only supported for particular Intel Xe graphics platforms.
+
+What: /sys/bus/pci/drivers/xe/.../hwmon/hwmon<i>/temp4_emergency
+Date: January 2026
+KernelVersion: 7.0
+Contact: intel-xe@lists.freedesktop.org
+Description: RO. Memory controller shutdown temperature in millidegree Celsius.
+
+ Only supported for particular Intel Xe graphics platforms.
+
+What: /sys/bus/pci/drivers/xe/.../hwmon/hwmon<i>/temp4_input
+Date: January 2026
+KernelVersion: 7.0
+Contact: intel-xe@lists.freedesktop.org
+Description: RO. Memory controller average temperature in millidegree Celsius.
+
+ Only supported for particular Intel Xe graphics platforms.
+
What: /sys/bus/pci/drivers/xe/.../hwmon/hwmon<i>/fan1_input
Date: March 2025
KernelVersion: 6.16
diff --git a/drivers/gpu/drm/xe/xe_hwmon.c b/drivers/gpu/drm/xe/xe_hwmon.c
index 7eb6a76fa217..51a2c23be99e 100644
--- a/drivers/gpu/drm/xe/xe_hwmon.c
+++ b/drivers/gpu/drm/xe/xe_hwmon.c
@@ -43,6 +43,7 @@ enum xe_hwmon_channel {
CHANNEL_CARD,
CHANNEL_PKG,
CHANNEL_VRAM,
+ CHANNEL_MCTRL,
CHANNEL_MAX,
};
@@ -100,6 +101,9 @@ enum sensor_attr_power {
*/
#define PL_WRITE_MBX_TIMEOUT_MS (1)
+/* Index of memory controller in READ_THERMAL_DATA output */
+#define TEMP_INDEX_MCTRL 2
+
/**
* struct xe_hwmon_energy_info - to accumulate energy
*/
@@ -130,6 +134,10 @@ struct xe_hwmon_thermal_info {
/** @data: temperature limits in dwords */
u32 data[DIV_ROUND_UP(TEMP_LIMIT_MAX, sizeof(u32))];
};
+ /** @count: no of temperature sensors available for the platform */
+ u8 count;
+ /** @value: signed value from each sensor */
+ s8 value[U8_MAX];
};
/**
@@ -703,6 +711,7 @@ static const struct hwmon_channel_info * const hwmon_info[] = {
HWMON_T_LABEL,
HWMON_T_CRIT | HWMON_T_EMERGENCY | HWMON_T_INPUT | HWMON_T_LABEL |
HWMON_T_MAX,
+ HWMON_T_CRIT | HWMON_T_EMERGENCY | HWMON_T_INPUT | HWMON_T_LABEL,
HWMON_T_CRIT | HWMON_T_EMERGENCY | HWMON_T_INPUT | HWMON_T_LABEL),
HWMON_CHANNEL_INFO(power, HWMON_P_MAX | HWMON_P_RATED_MAX | HWMON_P_LABEL | HWMON_P_CRIT |
HWMON_P_CAP,
@@ -717,16 +726,51 @@ static const struct hwmon_channel_info * const hwmon_info[] = {
static int xe_hwmon_pcode_read_thermal_info(struct xe_hwmon *hwmon)
{
struct xe_tile *root_tile = xe_device_get_root_tile(hwmon->xe);
+ u32 config = 0;
int ret;
ret = xe_pcode_read(root_tile, PCODE_MBOX(PCODE_THERMAL_INFO, READ_THERMAL_LIMITS, 0),
&hwmon->temp.data[0], &hwmon->temp.data[1]);
+ if (ret)
+ return ret;
+
drm_dbg(&hwmon->xe->drm, "thermal info read val 0x%x val1 0x%x\n",
hwmon->temp.data[0], hwmon->temp.data[1]);
+ ret = xe_pcode_read(root_tile, PCODE_MBOX(PCODE_THERMAL_INFO, READ_THERMAL_CONFIG, 0),
+ &config, NULL);
+ if (ret)
+ return ret;
+
+ drm_dbg(&hwmon->xe->drm, "thermal config count 0x%x\n", config);
+ hwmon->temp.count = REG_FIELD_GET(TEMP_MASK, config);
+
return ret;
}
+static int get_mc_temp(struct xe_hwmon *hwmon, long *val)
+{
+ struct xe_tile *root_tile = xe_device_get_root_tile(hwmon->xe);
+ u32 *dword = (u32 *)hwmon->temp.value;
+ s32 average = 0;
+ int ret, i;
+
+ for (i = 0; i < DIV_ROUND_UP(TEMP_LIMIT_MAX, sizeof(u32)); i++) {
+ ret = xe_pcode_read(root_tile, PCODE_MBOX(PCODE_THERMAL_INFO, READ_THERMAL_DATA, i),
+ (dword + i), NULL);
+ if (ret)
+ return ret;
+ drm_dbg(&hwmon->xe->drm, "thermal data for group %d val 0x%x\n", i, dword[i]);
+ }
+
+ for (i = TEMP_INDEX_MCTRL; i < hwmon->temp.count - 1; i++)
+ average += hwmon->temp.value[i];
+
+ average /= (hwmon->temp.count - TEMP_INDEX_MCTRL - 1);
+ *val = average * MILLIDEGREE_PER_DEGREE;
+ return 0;
+}
+
/* I1 is exposed as power_crit or as curr_crit depending on bit 31 */
static int xe_hwmon_pcode_read_i1(const struct xe_hwmon *hwmon, u32 *uval)
{
@@ -831,6 +875,8 @@ xe_hwmon_temp_is_visible(struct xe_hwmon *hwmon, u32 attr, int channel)
return hwmon->temp.limit[TEMP_LIMIT_PKG_SHUTDOWN] ? 0444 : 0;
case CHANNEL_VRAM:
return hwmon->temp.limit[TEMP_LIMIT_MEM_SHUTDOWN] ? 0444 : 0;
+ case CHANNEL_MCTRL:
+ return hwmon->temp.count ? 0444 : 0;
default:
return 0;
}
@@ -840,6 +886,8 @@ xe_hwmon_temp_is_visible(struct xe_hwmon *hwmon, u32 attr, int channel)
return hwmon->temp.limit[TEMP_LIMIT_PKG_CRIT] ? 0444 : 0;
case CHANNEL_VRAM:
return hwmon->temp.limit[TEMP_LIMIT_MEM_CRIT] ? 0444 : 0;
+ case CHANNEL_MCTRL:
+ return hwmon->temp.count ? 0444 : 0;
default:
return 0;
}
@@ -852,7 +900,16 @@ xe_hwmon_temp_is_visible(struct xe_hwmon *hwmon, u32 attr, int channel)
}
case hwmon_temp_input:
case hwmon_temp_label:
- return xe_reg_is_valid(xe_hwmon_get_reg(hwmon, REG_TEMP, channel)) ? 0444 : 0;
+ switch (channel) {
+ case CHANNEL_PKG:
+ case CHANNEL_VRAM:
+ return xe_reg_is_valid(xe_hwmon_get_reg(hwmon, REG_TEMP,
+ channel)) ? 0444 : 0;
+ case CHANNEL_MCTRL:
+ return hwmon->temp.count ? 0444 : 0;
+ default:
+ return 0;
+ }
default:
return 0;
}
@@ -866,14 +923,23 @@ xe_hwmon_temp_read(struct xe_hwmon *hwmon, u32 attr, int channel, long *val)
switch (attr) {
case hwmon_temp_input:
- reg_val = xe_mmio_read32(mmio, xe_hwmon_get_reg(hwmon, REG_TEMP, channel));
+ switch (channel) {
+ case CHANNEL_PKG:
+ case CHANNEL_VRAM:
+ reg_val = xe_mmio_read32(mmio, xe_hwmon_get_reg(hwmon, REG_TEMP, channel));
- /* HW register value is in degrees Celsius, convert to millidegrees. */
- *val = REG_FIELD_GET(TEMP_MASK, reg_val) * MILLIDEGREE_PER_DEGREE;
- return 0;
+ /* HW register value is in degrees Celsius, convert to millidegrees. */
+ *val = REG_FIELD_GET(TEMP_MASK, reg_val) * MILLIDEGREE_PER_DEGREE;
+ return 0;
+ case CHANNEL_MCTRL:
+ return get_mc_temp(hwmon, val);
+ default:
+ return -EOPNOTSUPP;
+ }
case hwmon_temp_emergency:
switch (channel) {
case CHANNEL_PKG:
+ case CHANNEL_MCTRL:
*val = hwmon->temp.limit[TEMP_LIMIT_PKG_SHUTDOWN] * MILLIDEGREE_PER_DEGREE;
return 0;
case CHANNEL_VRAM:
@@ -885,6 +951,7 @@ xe_hwmon_temp_read(struct xe_hwmon *hwmon, u32 attr, int channel, long *val)
case hwmon_temp_crit:
switch (channel) {
case CHANNEL_PKG:
+ case CHANNEL_MCTRL:
*val = hwmon->temp.limit[TEMP_LIMIT_PKG_CRIT] * MILLIDEGREE_PER_DEGREE;
return 0;
case CHANNEL_VRAM:
@@ -1262,6 +1329,8 @@ static int xe_hwmon_read_label(struct device *dev,
*str = "pkg";
else if (channel == CHANNEL_VRAM)
*str = "vram";
+ else if (channel == CHANNEL_MCTRL)
+ *str = "mctrl";
return 0;
case hwmon_power:
case hwmon_energy:
diff --git a/drivers/gpu/drm/xe/xe_pcode_api.h b/drivers/gpu/drm/xe/xe_pcode_api.h
index dc8f241e5b9e..ad713a3e34e5 100644
--- a/drivers/gpu/drm/xe/xe_pcode_api.h
+++ b/drivers/gpu/drm/xe/xe_pcode_api.h
@@ -52,6 +52,8 @@
#define PCODE_THERMAL_INFO 0x25
#define READ_THERMAL_LIMITS 0x0
+#define READ_THERMAL_CONFIG 0x1
+#define READ_THERMAL_DATA 0x2
#define PCODE_LATE_BINDING 0x5C
#define GET_CAPABILITY_STATUS 0x0
--
2.25.1
^ permalink raw reply related [flat|nested] 13+ messages in thread
* [PATCH v7 3/4] drm/xe/hwmon: Expose GPU PCIe temperature
2026-01-12 20:35 [PATCH v7 0/4] drm/xe/hwmon: Expose new temperature attributes Karthik Poosa
2026-01-12 20:35 ` [PATCH v7 1/4] drm/xe/hwmon: Expose temperature limits Karthik Poosa
2026-01-12 20:35 ` [PATCH v7 2/4] drm/xe/hwmon: Expose memory controller temperature Karthik Poosa
@ 2026-01-12 20:35 ` Karthik Poosa
2026-01-12 20:35 ` [PATCH v7 4/4] drm/xe/hwmon: Expose individual VRAM channel temperature Karthik Poosa
` (3 subsequent siblings)
6 siblings, 0 replies; 13+ messages in thread
From: Karthik Poosa @ 2026-01-12 20:35 UTC (permalink / raw)
To: intel-xe
Cc: anshuman.gupta, badal.nilawar, rodrigo.vivi, raag.jadav,
Karthik Poosa
Expose GPU PCIe average temperature and its limits via hwmon sysfs entry
temp5_xxx.
Update Xe hwmon sysfs documentation for this.
v2: Update kernel version in Xe hwmon documentation. (Raag)
v3:
- Address review comments from Raag.
- Remove redundant debug log.
- Update kernel version in Xe hwmon documentation. (Raag)
v4:
- Address review comments from Raag.
- Group new temperature attributes with existing temperature attributes
as per channel index in Xe hwmon documentation.
- Use TEMP_MASK instead of TEMP_MASK_MAILBOX.
- Add PCIE_SENSOR_MASK which uses REG_FIELD_GET as replacement of
PCIE_SENSOR_SHIFT.
v5:
- Address review comments from Raag.
- Use REG_FIELD_GET to get PCIe temperature.
- Move PCIE_SENSOR_GROUP_ID and PCIE_SENSOR_MASK to xe_pcode_api.h
- Cosmetic change.
Signed-off-by: Karthik Poosa <karthik.poosa@intel.com>
Reviewed-by: Raag Jadav <raag.jadav@intel.com>
---
.../ABI/testing/sysfs-driver-intel-xe-hwmon | 24 ++++++++++++++
drivers/gpu/drm/xe/xe_hwmon.c | 32 +++++++++++++++++++
drivers/gpu/drm/xe/xe_pcode_api.h | 2 ++
3 files changed, 58 insertions(+)
diff --git a/Documentation/ABI/testing/sysfs-driver-intel-xe-hwmon b/Documentation/ABI/testing/sysfs-driver-intel-xe-hwmon
index 550206885624..6e21bebf0e0d 100644
--- a/Documentation/ABI/testing/sysfs-driver-intel-xe-hwmon
+++ b/Documentation/ABI/testing/sysfs-driver-intel-xe-hwmon
@@ -189,6 +189,30 @@ Description: RO. Memory controller average temperature in millidegree Celsius.
Only supported for particular Intel Xe graphics platforms.
+What: /sys/bus/pci/drivers/xe/.../hwmon/hwmon<i>/temp5_crit
+Date: January 2026
+KernelVersion: 7.0
+Contact: intel-xe@lists.freedesktop.org
+Description: RO. GPU PCIe critical temperature in millidegree Celsius.
+
+ Only supported for particular Intel Xe graphics platforms.
+
+What: /sys/bus/pci/drivers/xe/.../hwmon/hwmon<i>/temp5_emergency
+Date: January 2026
+KernelVersion: 7.0
+Contact: intel-xe@lists.freedesktop.org
+Description: RO. GPU PCIe shutdown temperature in millidegree Celsius.
+
+ Only supported for particular Intel Xe graphics platforms.
+
+What: /sys/bus/pci/drivers/xe/.../hwmon/hwmon<i>/temp5_input
+Date: January 2026
+KernelVersion: 7.0
+Contact: intel-xe@lists.freedesktop.org
+Description: RO. GPU PCIe temperature in millidegree Celsius.
+
+ Only supported for particular Intel Xe graphics platforms.
+
What: /sys/bus/pci/drivers/xe/.../hwmon/hwmon<i>/fan1_input
Date: March 2025
KernelVersion: 6.16
diff --git a/drivers/gpu/drm/xe/xe_hwmon.c b/drivers/gpu/drm/xe/xe_hwmon.c
index 51a2c23be99e..e8604e6300ac 100644
--- a/drivers/gpu/drm/xe/xe_hwmon.c
+++ b/drivers/gpu/drm/xe/xe_hwmon.c
@@ -44,6 +44,7 @@ enum xe_hwmon_channel {
CHANNEL_PKG,
CHANNEL_VRAM,
CHANNEL_MCTRL,
+ CHANNEL_PCIE,
CHANNEL_MAX,
};
@@ -712,6 +713,7 @@ static const struct hwmon_channel_info * const hwmon_info[] = {
HWMON_T_CRIT | HWMON_T_EMERGENCY | HWMON_T_INPUT | HWMON_T_LABEL |
HWMON_T_MAX,
HWMON_T_CRIT | HWMON_T_EMERGENCY | HWMON_T_INPUT | HWMON_T_LABEL,
+ HWMON_T_CRIT | HWMON_T_EMERGENCY | HWMON_T_INPUT | HWMON_T_LABEL,
HWMON_T_CRIT | HWMON_T_EMERGENCY | HWMON_T_INPUT | HWMON_T_LABEL),
HWMON_CHANNEL_INFO(power, HWMON_P_MAX | HWMON_P_RATED_MAX | HWMON_P_LABEL | HWMON_P_CRIT |
HWMON_P_CAP,
@@ -771,6 +773,27 @@ static int get_mc_temp(struct xe_hwmon *hwmon, long *val)
return 0;
}
+static int get_pcie_temp(struct xe_hwmon *hwmon, long *val)
+{
+ struct xe_tile *root_tile = xe_device_get_root_tile(hwmon->xe);
+ u32 data = 0;
+ int ret;
+
+ ret = xe_pcode_read(root_tile, PCODE_MBOX(PCODE_THERMAL_INFO, READ_THERMAL_DATA,
+ PCIE_SENSOR_GROUP_ID), &data, NULL);
+ if (ret)
+ return ret;
+
+ /* Sensor offset is different for G21 */
+ if (hwmon->xe->info.subplatform != XE_SUBPLATFORM_BATTLEMAGE_G21)
+ data = REG_FIELD_GET(PCIE_SENSOR_MASK, data);
+
+ data = REG_FIELD_GET(TEMP_MASK, data);
+ *val = (s8)data * MILLIDEGREE_PER_DEGREE;
+
+ return 0;
+}
+
/* I1 is exposed as power_crit or as curr_crit depending on bit 31 */
static int xe_hwmon_pcode_read_i1(const struct xe_hwmon *hwmon, u32 *uval)
{
@@ -876,6 +899,7 @@ xe_hwmon_temp_is_visible(struct xe_hwmon *hwmon, u32 attr, int channel)
case CHANNEL_VRAM:
return hwmon->temp.limit[TEMP_LIMIT_MEM_SHUTDOWN] ? 0444 : 0;
case CHANNEL_MCTRL:
+ case CHANNEL_PCIE:
return hwmon->temp.count ? 0444 : 0;
default:
return 0;
@@ -887,6 +911,7 @@ xe_hwmon_temp_is_visible(struct xe_hwmon *hwmon, u32 attr, int channel)
case CHANNEL_VRAM:
return hwmon->temp.limit[TEMP_LIMIT_MEM_CRIT] ? 0444 : 0;
case CHANNEL_MCTRL:
+ case CHANNEL_PCIE:
return hwmon->temp.count ? 0444 : 0;
default:
return 0;
@@ -906,6 +931,7 @@ xe_hwmon_temp_is_visible(struct xe_hwmon *hwmon, u32 attr, int channel)
return xe_reg_is_valid(xe_hwmon_get_reg(hwmon, REG_TEMP,
channel)) ? 0444 : 0;
case CHANNEL_MCTRL:
+ case CHANNEL_PCIE:
return hwmon->temp.count ? 0444 : 0;
default:
return 0;
@@ -933,6 +959,8 @@ xe_hwmon_temp_read(struct xe_hwmon *hwmon, u32 attr, int channel, long *val)
return 0;
case CHANNEL_MCTRL:
return get_mc_temp(hwmon, val);
+ case CHANNEL_PCIE:
+ return get_pcie_temp(hwmon, val);
default:
return -EOPNOTSUPP;
}
@@ -940,6 +968,7 @@ xe_hwmon_temp_read(struct xe_hwmon *hwmon, u32 attr, int channel, long *val)
switch (channel) {
case CHANNEL_PKG:
case CHANNEL_MCTRL:
+ case CHANNEL_PCIE:
*val = hwmon->temp.limit[TEMP_LIMIT_PKG_SHUTDOWN] * MILLIDEGREE_PER_DEGREE;
return 0;
case CHANNEL_VRAM:
@@ -952,6 +981,7 @@ xe_hwmon_temp_read(struct xe_hwmon *hwmon, u32 attr, int channel, long *val)
switch (channel) {
case CHANNEL_PKG:
case CHANNEL_MCTRL:
+ case CHANNEL_PCIE:
*val = hwmon->temp.limit[TEMP_LIMIT_PKG_CRIT] * MILLIDEGREE_PER_DEGREE;
return 0;
case CHANNEL_VRAM:
@@ -1331,6 +1361,8 @@ static int xe_hwmon_read_label(struct device *dev,
*str = "vram";
else if (channel == CHANNEL_MCTRL)
*str = "mctrl";
+ else if (channel == CHANNEL_PCIE)
+ *str = "pcie";
return 0;
case hwmon_power:
case hwmon_energy:
diff --git a/drivers/gpu/drm/xe/xe_pcode_api.h b/drivers/gpu/drm/xe/xe_pcode_api.h
index ad713a3e34e5..85cc7478b787 100644
--- a/drivers/gpu/drm/xe/xe_pcode_api.h
+++ b/drivers/gpu/drm/xe/xe_pcode_api.h
@@ -54,6 +54,8 @@
#define READ_THERMAL_LIMITS 0x0
#define READ_THERMAL_CONFIG 0x1
#define READ_THERMAL_DATA 0x2
+#define PCIE_SENSOR_GROUP_ID 0x2
+#define PCIE_SENSOR_MASK REG_GENMASK(31, 16)
#define PCODE_LATE_BINDING 0x5C
#define GET_CAPABILITY_STATUS 0x0
--
2.25.1
^ permalink raw reply related [flat|nested] 13+ messages in thread
* [PATCH v7 4/4] drm/xe/hwmon: Expose individual VRAM channel temperature
2026-01-12 20:35 [PATCH v7 0/4] drm/xe/hwmon: Expose new temperature attributes Karthik Poosa
` (2 preceding siblings ...)
2026-01-12 20:35 ` [PATCH v7 3/4] drm/xe/hwmon: Expose GPU PCIe temperature Karthik Poosa
@ 2026-01-12 20:35 ` Karthik Poosa
2026-01-13 8:21 ` Raag Jadav
2026-01-12 20:36 ` ✓ CI.KUnit: success for drm/xe/hwmon: Expose new temperature attributes (rev9) Patchwork
` (2 subsequent siblings)
6 siblings, 1 reply; 13+ messages in thread
From: Karthik Poosa @ 2026-01-12 20:35 UTC (permalink / raw)
To: intel-xe
Cc: anshuman.gupta, badal.nilawar, rodrigo.vivi, raag.jadav,
Karthik Poosa
Expose individual VRAM temperature attributes.
Update Xe hwmon documentation for this entry.
v2:
- Avoid using default switch case for VRAM individual temperatures.
- Append labels with VRAM channel number.
- Update kernel version in Xe hwmon documentation.
v3:
- Add missing brackets in Xe hwmon documentation from VRAM channel sysfs.
- Reorder BMG_VRAM_TEMPERATURE_N macro in xe_pcode_regs.h.
- Add api to check if VRAM is available on the channel.
v4:
- Improve VRAM label handling to eliminate temp variable by
introducing a dedicated array vram_label in xe_hwmon_thermal_info.
- Remove a magic number.
- Change the label from vram_X to vram_ch_X.
v5:
- Address review comments from Raag.
- Change vram to VRAM in commit title and subject.
- Refactor BMG_VRAM_TEMPERATURE_N macro.
- Refactor is_vram_ch_available().
- Rephrase a comment.
- Check individual VRAM temperature limits in addition to VRAM
availability in xe_hwmon_temp_is_visible. (Raag)
- Move VRAM label change out of this patch.
v6:
- Use in_range() for VRAM_N index check instead of if check. (Raag)
- Minor aesthetic changes.
Signed-off-by: Karthik Poosa <karthik.poosa@intel.com>
Reviewed-by: Raag Jadav <raag.jadav@intel.com>
---
.../ABI/testing/sysfs-driver-intel-xe-hwmon | 22 +++++++
drivers/gpu/drm/xe/regs/xe_pcode_regs.h | 3 +
drivers/gpu/drm/xe/xe_hwmon.c | 66 +++++++++++++++++++
3 files changed, 91 insertions(+)
diff --git a/Documentation/ABI/testing/sysfs-driver-intel-xe-hwmon b/Documentation/ABI/testing/sysfs-driver-intel-xe-hwmon
index 6e21bebf0e0d..55ab45f669ac 100644
--- a/Documentation/ABI/testing/sysfs-driver-intel-xe-hwmon
+++ b/Documentation/ABI/testing/sysfs-driver-intel-xe-hwmon
@@ -211,6 +211,28 @@ KernelVersion: 7.0
Contact: intel-xe@lists.freedesktop.org
Description: RO. GPU PCIe temperature in millidegree Celsius.
+What: /sys/bus/pci/drivers/xe/.../hwmon/hwmon<i>/temp[6-21]_crit
+Date: January 2026
+KernelVersion: 7.0
+Contact: intel-xe@lists.freedesktop.org
+Description: RO. VRAM channel critical temperature in millidegree Celsius.
+
+ Only supported for particular Intel Xe graphics platforms.
+
+What: /sys/bus/pci/drivers/xe/.../hwmon/hwmon<i>/temp[6-21]_emergency
+Date: January 2026
+KernelVersion: 7.0
+Contact: intel-xe@lists.freedesktop.org
+Description: RO. VRAM channel shutdown temperature in millidegree Celsius.
+
+ Only supported for particular Intel Xe graphics platforms.
+
+What: /sys/bus/pci/drivers/xe/.../hwmon/hwmon<i>/temp[6-21]_input
+Date: January 2026
+KernelVersion: 7.0
+Contact: intel-xe@lists.freedesktop.org
+Description: RO. VRAM channel temperature in millidegree Celsius.
+
Only supported for particular Intel Xe graphics platforms.
What: /sys/bus/pci/drivers/xe/.../hwmon/hwmon<i>/fan1_input
diff --git a/drivers/gpu/drm/xe/regs/xe_pcode_regs.h b/drivers/gpu/drm/xe/regs/xe_pcode_regs.h
index fb097607b86c..4b3c46eb858f 100644
--- a/drivers/gpu/drm/xe/regs/xe_pcode_regs.h
+++ b/drivers/gpu/drm/xe/regs/xe_pcode_regs.h
@@ -21,7 +21,10 @@
#define BMG_FAN_1_SPEED XE_REG(0x138140)
#define BMG_FAN_2_SPEED XE_REG(0x138170)
#define BMG_FAN_3_SPEED XE_REG(0x1381a0)
+#define BMG_VRAM_TEMPERATURE_N(n) XE_REG(0x138260 + ((n) * (sizeof(u32))))
#define BMG_VRAM_TEMPERATURE XE_REG(0x1382c0)
+#define TEMP_MASK_VRAM_N REG_GENMASK(30, 8)
+#define TEMP_SIGN_MASK REG_BIT(31)
#define BMG_PACKAGE_TEMPERATURE XE_REG(0x138434)
#endif /* _XE_PCODE_REGS_H_ */
diff --git a/drivers/gpu/drm/xe/xe_hwmon.c b/drivers/gpu/drm/xe/xe_hwmon.c
index e8604e6300ac..baf277955b33 100644
--- a/drivers/gpu/drm/xe/xe_hwmon.c
+++ b/drivers/gpu/drm/xe/xe_hwmon.c
@@ -39,12 +39,16 @@ enum xe_hwmon_reg_operation {
REG_READ64,
};
+#define MAX_VRAM_CHANNELS (16)
+
enum xe_hwmon_channel {
CHANNEL_CARD,
CHANNEL_PKG,
CHANNEL_VRAM,
CHANNEL_MCTRL,
CHANNEL_PCIE,
+ CHANNEL_VRAM_N,
+ CHANNEL_VRAM_N_MAX = CHANNEL_VRAM_N + MAX_VRAM_CHANNELS,
CHANNEL_MAX,
};
@@ -105,6 +109,9 @@ enum sensor_attr_power {
/* Index of memory controller in READ_THERMAL_DATA output */
#define TEMP_INDEX_MCTRL 2
+/* Maximum characters in hwmon label name */
+#define MAX_LABEL_SIZE 16
+
/**
* struct xe_hwmon_energy_info - to accumulate energy
*/
@@ -139,6 +146,8 @@ struct xe_hwmon_thermal_info {
u8 count;
/** @value: signed value from each sensor */
s8 value[U8_MAX];
+ /** @vram_label: vram label names */
+ char vram_label[MAX_VRAM_CHANNELS][MAX_LABEL_SIZE];
};
/**
@@ -255,6 +264,8 @@ static struct xe_reg xe_hwmon_get_reg(struct xe_hwmon *hwmon, enum xe_hwmon_reg
return BMG_PACKAGE_TEMPERATURE;
else if (channel == CHANNEL_VRAM)
return BMG_VRAM_TEMPERATURE;
+ else if (in_range(channel, CHANNEL_VRAM_N, CHANNEL_VRAM_N_MAX))
+ return BMG_VRAM_TEMPERATURE_N(channel - CHANNEL_VRAM_N);
} else if (xe->info.platform == XE_DG2) {
if (channel == CHANNEL_PKG)
return PCU_CR_PACKAGE_TEMPERATURE;
@@ -714,6 +725,22 @@ static const struct hwmon_channel_info * const hwmon_info[] = {
HWMON_T_MAX,
HWMON_T_CRIT | HWMON_T_EMERGENCY | HWMON_T_INPUT | HWMON_T_LABEL,
HWMON_T_CRIT | HWMON_T_EMERGENCY | HWMON_T_INPUT | HWMON_T_LABEL,
+ HWMON_T_CRIT | HWMON_T_EMERGENCY | HWMON_T_INPUT | HWMON_T_LABEL,
+ HWMON_T_CRIT | HWMON_T_EMERGENCY | HWMON_T_INPUT | HWMON_T_LABEL,
+ HWMON_T_CRIT | HWMON_T_EMERGENCY | HWMON_T_INPUT | HWMON_T_LABEL,
+ HWMON_T_CRIT | HWMON_T_EMERGENCY | HWMON_T_INPUT | HWMON_T_LABEL,
+ HWMON_T_CRIT | HWMON_T_EMERGENCY | HWMON_T_INPUT | HWMON_T_LABEL,
+ HWMON_T_CRIT | HWMON_T_EMERGENCY | HWMON_T_INPUT | HWMON_T_LABEL,
+ HWMON_T_CRIT | HWMON_T_EMERGENCY | HWMON_T_INPUT | HWMON_T_LABEL,
+ HWMON_T_CRIT | HWMON_T_EMERGENCY | HWMON_T_INPUT | HWMON_T_LABEL,
+ HWMON_T_CRIT | HWMON_T_EMERGENCY | HWMON_T_INPUT | HWMON_T_LABEL,
+ HWMON_T_CRIT | HWMON_T_EMERGENCY | HWMON_T_INPUT | HWMON_T_LABEL,
+ HWMON_T_CRIT | HWMON_T_EMERGENCY | HWMON_T_INPUT | HWMON_T_LABEL,
+ HWMON_T_CRIT | HWMON_T_EMERGENCY | HWMON_T_INPUT | HWMON_T_LABEL,
+ HWMON_T_CRIT | HWMON_T_EMERGENCY | HWMON_T_INPUT | HWMON_T_LABEL,
+ HWMON_T_CRIT | HWMON_T_EMERGENCY | HWMON_T_INPUT | HWMON_T_LABEL,
+ HWMON_T_CRIT | HWMON_T_EMERGENCY | HWMON_T_INPUT | HWMON_T_LABEL,
+ HWMON_T_CRIT | HWMON_T_EMERGENCY | HWMON_T_INPUT | HWMON_T_LABEL,
HWMON_T_CRIT | HWMON_T_EMERGENCY | HWMON_T_INPUT | HWMON_T_LABEL),
HWMON_CHANNEL_INFO(power, HWMON_P_MAX | HWMON_P_RATED_MAX | HWMON_P_LABEL | HWMON_P_CRIT |
HWMON_P_CAP,
@@ -888,6 +915,21 @@ static void xe_hwmon_get_voltage(struct xe_hwmon *hwmon, int channel, long *valu
*value = DIV_ROUND_CLOSEST(REG_FIELD_GET(VOLTAGE_MASK, reg_val) * 2500, SF_VOLTAGE);
}
+static inline bool is_vram_ch_available(struct xe_hwmon *hwmon, int channel)
+{
+ struct xe_mmio *mmio = xe_root_tile_mmio(hwmon->xe);
+ int vram_id = channel - CHANNEL_VRAM_N;
+ struct xe_reg vram_reg;
+
+ vram_reg = xe_hwmon_get_reg(hwmon, REG_TEMP, channel);
+ if (!xe_reg_is_valid(vram_reg) || !xe_mmio_read32(mmio, vram_reg))
+ return false;
+
+ /* Create label only for available vram channel */
+ sprintf(hwmon->temp.vram_label[vram_id], "vram_ch_%d", vram_id);
+ return true;
+}
+
static umode_t
xe_hwmon_temp_is_visible(struct xe_hwmon *hwmon, u32 attr, int channel)
{
@@ -901,6 +943,9 @@ xe_hwmon_temp_is_visible(struct xe_hwmon *hwmon, u32 attr, int channel)
case CHANNEL_MCTRL:
case CHANNEL_PCIE:
return hwmon->temp.count ? 0444 : 0;
+ case CHANNEL_VRAM_N...CHANNEL_VRAM_N_MAX:
+ return (is_vram_ch_available(hwmon, channel) &&
+ hwmon->temp.limit[TEMP_LIMIT_MEM_SHUTDOWN]) ? 0444 : 0;
default:
return 0;
}
@@ -913,6 +958,9 @@ xe_hwmon_temp_is_visible(struct xe_hwmon *hwmon, u32 attr, int channel)
case CHANNEL_MCTRL:
case CHANNEL_PCIE:
return hwmon->temp.count ? 0444 : 0;
+ case CHANNEL_VRAM_N...CHANNEL_VRAM_N_MAX:
+ return (is_vram_ch_available(hwmon, channel) &&
+ hwmon->temp.limit[TEMP_LIMIT_MEM_CRIT]) ? 0444 : 0;
default:
return 0;
}
@@ -933,6 +981,8 @@ xe_hwmon_temp_is_visible(struct xe_hwmon *hwmon, u32 attr, int channel)
case CHANNEL_MCTRL:
case CHANNEL_PCIE:
return hwmon->temp.count ? 0444 : 0;
+ case CHANNEL_VRAM_N...CHANNEL_VRAM_N_MAX:
+ return is_vram_ch_available(hwmon, channel) ? 0444 : 0;
default:
return 0;
}
@@ -961,6 +1011,16 @@ xe_hwmon_temp_read(struct xe_hwmon *hwmon, u32 attr, int channel, long *val)
return get_mc_temp(hwmon, val);
case CHANNEL_PCIE:
return get_pcie_temp(hwmon, val);
+ case CHANNEL_VRAM_N...CHANNEL_VRAM_N_MAX:
+ reg_val = xe_mmio_read32(mmio, xe_hwmon_get_reg(hwmon, REG_TEMP, channel));
+ /*
+ * This temperature format is 24 bit [31:8] signed integer and 8 bit
+ * [7:0] fraction.
+ */
+ *val = (s32)(REG_FIELD_GET(TEMP_MASK_VRAM_N, reg_val)) *
+ (REG_FIELD_GET(TEMP_SIGN_MASK, reg_val) ? -1 : 1) *
+ MILLIDEGREE_PER_DEGREE;
+ return 0;
default:
return -EOPNOTSUPP;
}
@@ -972,6 +1032,7 @@ xe_hwmon_temp_read(struct xe_hwmon *hwmon, u32 attr, int channel, long *val)
*val = hwmon->temp.limit[TEMP_LIMIT_PKG_SHUTDOWN] * MILLIDEGREE_PER_DEGREE;
return 0;
case CHANNEL_VRAM:
+ case CHANNEL_VRAM_N...CHANNEL_VRAM_N_MAX:
*val = hwmon->temp.limit[TEMP_LIMIT_MEM_SHUTDOWN] * MILLIDEGREE_PER_DEGREE;
return 0;
default:
@@ -985,6 +1046,7 @@ xe_hwmon_temp_read(struct xe_hwmon *hwmon, u32 attr, int channel, long *val)
*val = hwmon->temp.limit[TEMP_LIMIT_PKG_CRIT] * MILLIDEGREE_PER_DEGREE;
return 0;
case CHANNEL_VRAM:
+ case CHANNEL_VRAM_N...CHANNEL_VRAM_N_MAX:
*val = hwmon->temp.limit[TEMP_LIMIT_MEM_CRIT] * MILLIDEGREE_PER_DEGREE;
return 0;
default:
@@ -1353,6 +1415,8 @@ static int xe_hwmon_read_label(struct device *dev,
enum hwmon_sensor_types type,
u32 attr, int channel, const char **str)
{
+ struct xe_hwmon *hwmon = dev_get_drvdata(dev);
+
switch (type) {
case hwmon_temp:
if (channel == CHANNEL_PKG)
@@ -1363,6 +1427,8 @@ static int xe_hwmon_read_label(struct device *dev,
*str = "mctrl";
else if (channel == CHANNEL_PCIE)
*str = "pcie";
+ else if (in_range(channel, CHANNEL_VRAM_N, CHANNEL_VRAM_N_MAX))
+ *str = hwmon->temp.vram_label[channel - CHANNEL_VRAM_N];
return 0;
case hwmon_power:
case hwmon_energy:
--
2.25.1
^ permalink raw reply related [flat|nested] 13+ messages in thread
* ✓ CI.KUnit: success for drm/xe/hwmon: Expose new temperature attributes (rev9)
2026-01-12 20:35 [PATCH v7 0/4] drm/xe/hwmon: Expose new temperature attributes Karthik Poosa
` (3 preceding siblings ...)
2026-01-12 20:35 ` [PATCH v7 4/4] drm/xe/hwmon: Expose individual VRAM channel temperature Karthik Poosa
@ 2026-01-12 20:36 ` Patchwork
2026-01-12 21:12 ` ✓ Xe.CI.BAT: " Patchwork
2026-01-13 4:01 ` ✗ Xe.CI.Full: failure " Patchwork
6 siblings, 0 replies; 13+ messages in thread
From: Patchwork @ 2026-01-12 20:36 UTC (permalink / raw)
To: Karthik Poosa; +Cc: intel-xe
== Series Details ==
Series: drm/xe/hwmon: Expose new temperature attributes (rev9)
URL : https://patchwork.freedesktop.org/series/158384/
State : success
== Summary ==
+ trap cleanup EXIT
+ /kernel/tools/testing/kunit/kunit.py run --kunitconfig /kernel/drivers/gpu/drm/xe/.kunitconfig
[20:35:24] Configuring KUnit Kernel ...
Generating .config ...
Populating config with:
$ make ARCH=um O=.kunit olddefconfig
[20:35:28] Building KUnit Kernel ...
Populating config with:
$ make ARCH=um O=.kunit olddefconfig
Building with:
$ make all compile_commands.json scripts_gdb ARCH=um O=.kunit --jobs=48
[20:36:00] Starting KUnit Kernel (1/1)...
[20:36:00] ============================================================
Running tests with:
$ .kunit/linux kunit.enable=1 mem=1G console=tty kunit_shutdown=halt
[20:36:00] ================== guc_buf (11 subtests) ===================
[20:36:00] [PASSED] test_smallest
[20:36:00] [PASSED] test_largest
[20:36:00] [PASSED] test_granular
[20:36:00] [PASSED] test_unique
[20:36:00] [PASSED] test_overlap
[20:36:00] [PASSED] test_reusable
[20:36:00] [PASSED] test_too_big
[20:36:00] [PASSED] test_flush
[20:36:00] [PASSED] test_lookup
[20:36:00] [PASSED] test_data
[20:36:00] [PASSED] test_class
[20:36:00] ===================== [PASSED] guc_buf =====================
[20:36:00] =================== guc_dbm (7 subtests) ===================
[20:36:00] [PASSED] test_empty
[20:36:00] [PASSED] test_default
[20:36:00] ======================== test_size ========================
[20:36:00] [PASSED] 4
[20:36:00] [PASSED] 8
[20:36:00] [PASSED] 32
[20:36:00] [PASSED] 256
[20:36:00] ==================== [PASSED] test_size ====================
[20:36:00] ======================= test_reuse ========================
[20:36:00] [PASSED] 4
[20:36:00] [PASSED] 8
[20:36:00] [PASSED] 32
[20:36:00] [PASSED] 256
[20:36:00] =================== [PASSED] test_reuse ====================
[20:36:00] =================== test_range_overlap ====================
[20:36:00] [PASSED] 4
[20:36:00] [PASSED] 8
[20:36:00] [PASSED] 32
[20:36:00] [PASSED] 256
[20:36:00] =============== [PASSED] test_range_overlap ================
[20:36:00] =================== test_range_compact ====================
[20:36:00] [PASSED] 4
[20:36:00] [PASSED] 8
[20:36:00] [PASSED] 32
[20:36:00] [PASSED] 256
[20:36:00] =============== [PASSED] test_range_compact ================
[20:36:00] ==================== test_range_spare =====================
[20:36:00] [PASSED] 4
[20:36:00] [PASSED] 8
[20:36:00] [PASSED] 32
[20:36:00] [PASSED] 256
[20:36:00] ================ [PASSED] test_range_spare =================
[20:36:00] ===================== [PASSED] guc_dbm =====================
[20:36:00] =================== guc_idm (6 subtests) ===================
[20:36:00] [PASSED] bad_init
[20:36:00] [PASSED] no_init
[20:36:00] [PASSED] init_fini
[20:36:00] [PASSED] check_used
[20:36:00] [PASSED] check_quota
[20:36:00] [PASSED] check_all
[20:36:00] ===================== [PASSED] guc_idm =====================
[20:36:00] ================== no_relay (3 subtests) ===================
[20:36:00] [PASSED] xe_drops_guc2pf_if_not_ready
[20:36:00] [PASSED] xe_drops_guc2vf_if_not_ready
[20:36:00] [PASSED] xe_rejects_send_if_not_ready
[20:36:00] ==================== [PASSED] no_relay =====================
[20:36:00] ================== pf_relay (14 subtests) ==================
[20:36:00] [PASSED] pf_rejects_guc2pf_too_short
[20:36:00] [PASSED] pf_rejects_guc2pf_too_long
[20:36:00] [PASSED] pf_rejects_guc2pf_no_payload
[20:36:00] [PASSED] pf_fails_no_payload
[20:36:00] [PASSED] pf_fails_bad_origin
[20:36:00] [PASSED] pf_fails_bad_type
[20:36:00] [PASSED] pf_txn_reports_error
[20:36:00] [PASSED] pf_txn_sends_pf2guc
[20:36:00] [PASSED] pf_sends_pf2guc
[20:36:00] [SKIPPED] pf_loopback_nop
[20:36:00] [SKIPPED] pf_loopback_echo
[20:36:00] [SKIPPED] pf_loopback_fail
[20:36:00] [SKIPPED] pf_loopback_busy
[20:36:00] [SKIPPED] pf_loopback_retry
[20:36:00] ==================== [PASSED] pf_relay =====================
[20:36:00] ================== vf_relay (3 subtests) ===================
[20:36:00] [PASSED] vf_rejects_guc2vf_too_short
[20:36:00] [PASSED] vf_rejects_guc2vf_too_long
[20:36:00] [PASSED] vf_rejects_guc2vf_no_payload
[20:36:00] ==================== [PASSED] vf_relay =====================
[20:36:00] ================ pf_gt_config (6 subtests) =================
[20:36:00] [PASSED] fair_contexts_1vf
[20:36:00] [PASSED] fair_doorbells_1vf
[20:36:00] [PASSED] fair_ggtt_1vf
[20:36:00] ====================== fair_contexts ======================
[20:36:00] [PASSED] 1 VF
[20:36:00] [PASSED] 2 VFs
[20:36:00] [PASSED] 3 VFs
[20:36:00] [PASSED] 4 VFs
[20:36:00] [PASSED] 5 VFs
[20:36:00] [PASSED] 6 VFs
[20:36:00] [PASSED] 7 VFs
[20:36:00] [PASSED] 8 VFs
[20:36:00] [PASSED] 9 VFs
[20:36:00] [PASSED] 10 VFs
[20:36:00] [PASSED] 11 VFs
[20:36:00] [PASSED] 12 VFs
[20:36:00] [PASSED] 13 VFs
[20:36:00] [PASSED] 14 VFs
[20:36:00] [PASSED] 15 VFs
[20:36:00] [PASSED] 16 VFs
[20:36:00] [PASSED] 17 VFs
[20:36:00] [PASSED] 18 VFs
[20:36:00] [PASSED] 19 VFs
[20:36:00] [PASSED] 20 VFs
[20:36:00] [PASSED] 21 VFs
[20:36:00] [PASSED] 22 VFs
[20:36:00] [PASSED] 23 VFs
[20:36:00] [PASSED] 24 VFs
[20:36:00] [PASSED] 25 VFs
[20:36:00] [PASSED] 26 VFs
[20:36:00] [PASSED] 27 VFs
[20:36:00] [PASSED] 28 VFs
[20:36:00] [PASSED] 29 VFs
[20:36:00] [PASSED] 30 VFs
[20:36:00] [PASSED] 31 VFs
[20:36:00] [PASSED] 32 VFs
[20:36:00] [PASSED] 33 VFs
[20:36:00] [PASSED] 34 VFs
[20:36:00] [PASSED] 35 VFs
[20:36:00] [PASSED] 36 VFs
[20:36:00] [PASSED] 37 VFs
[20:36:00] [PASSED] 38 VFs
[20:36:00] [PASSED] 39 VFs
[20:36:00] [PASSED] 40 VFs
[20:36:00] [PASSED] 41 VFs
[20:36:00] [PASSED] 42 VFs
[20:36:00] [PASSED] 43 VFs
[20:36:00] [PASSED] 44 VFs
[20:36:00] [PASSED] 45 VFs
[20:36:00] [PASSED] 46 VFs
[20:36:00] [PASSED] 47 VFs
[20:36:00] [PASSED] 48 VFs
[20:36:00] [PASSED] 49 VFs
[20:36:00] [PASSED] 50 VFs
[20:36:00] [PASSED] 51 VFs
[20:36:00] [PASSED] 52 VFs
[20:36:00] [PASSED] 53 VFs
[20:36:00] [PASSED] 54 VFs
[20:36:00] [PASSED] 55 VFs
[20:36:00] [PASSED] 56 VFs
[20:36:00] [PASSED] 57 VFs
[20:36:00] [PASSED] 58 VFs
[20:36:00] [PASSED] 59 VFs
[20:36:00] [PASSED] 60 VFs
[20:36:00] [PASSED] 61 VFs
[20:36:00] [PASSED] 62 VFs
[20:36:00] [PASSED] 63 VFs
[20:36:00] ================== [PASSED] fair_contexts ==================
[20:36:00] ===================== fair_doorbells ======================
[20:36:00] [PASSED] 1 VF
[20:36:00] [PASSED] 2 VFs
[20:36:00] [PASSED] 3 VFs
[20:36:00] [PASSED] 4 VFs
[20:36:00] [PASSED] 5 VFs
[20:36:00] [PASSED] 6 VFs
[20:36:00] [PASSED] 7 VFs
[20:36:00] [PASSED] 8 VFs
[20:36:00] [PASSED] 9 VFs
[20:36:00] [PASSED] 10 VFs
[20:36:00] [PASSED] 11 VFs
[20:36:00] [PASSED] 12 VFs
[20:36:00] [PASSED] 13 VFs
[20:36:00] [PASSED] 14 VFs
[20:36:00] [PASSED] 15 VFs
[20:36:00] [PASSED] 16 VFs
[20:36:00] [PASSED] 17 VFs
[20:36:00] [PASSED] 18 VFs
[20:36:00] [PASSED] 19 VFs
[20:36:00] [PASSED] 20 VFs
[20:36:00] [PASSED] 21 VFs
[20:36:00] [PASSED] 22 VFs
[20:36:00] [PASSED] 23 VFs
[20:36:00] [PASSED] 24 VFs
[20:36:00] [PASSED] 25 VFs
[20:36:00] [PASSED] 26 VFs
[20:36:00] [PASSED] 27 VFs
[20:36:00] [PASSED] 28 VFs
[20:36:00] [PASSED] 29 VFs
[20:36:00] [PASSED] 30 VFs
[20:36:00] [PASSED] 31 VFs
[20:36:00] [PASSED] 32 VFs
[20:36:00] [PASSED] 33 VFs
[20:36:00] [PASSED] 34 VFs
[20:36:00] [PASSED] 35 VFs
[20:36:00] [PASSED] 36 VFs
[20:36:00] [PASSED] 37 VFs
[20:36:00] [PASSED] 38 VFs
[20:36:00] [PASSED] 39 VFs
[20:36:00] [PASSED] 40 VFs
[20:36:00] [PASSED] 41 VFs
[20:36:00] [PASSED] 42 VFs
[20:36:00] [PASSED] 43 VFs
[20:36:00] [PASSED] 44 VFs
[20:36:00] [PASSED] 45 VFs
[20:36:00] [PASSED] 46 VFs
[20:36:00] [PASSED] 47 VFs
[20:36:00] [PASSED] 48 VFs
[20:36:00] [PASSED] 49 VFs
[20:36:00] [PASSED] 50 VFs
[20:36:00] [PASSED] 51 VFs
[20:36:00] [PASSED] 52 VFs
[20:36:00] [PASSED] 53 VFs
[20:36:00] [PASSED] 54 VFs
[20:36:00] [PASSED] 55 VFs
[20:36:00] [PASSED] 56 VFs
[20:36:00] [PASSED] 57 VFs
[20:36:00] [PASSED] 58 VFs
[20:36:00] [PASSED] 59 VFs
[20:36:00] [PASSED] 60 VFs
[20:36:00] [PASSED] 61 VFs
[20:36:00] [PASSED] 62 VFs
[20:36:00] [PASSED] 63 VFs
[20:36:00] ================= [PASSED] fair_doorbells ==================
[20:36:00] ======================== fair_ggtt ========================
[20:36:00] [PASSED] 1 VF
[20:36:00] [PASSED] 2 VFs
[20:36:00] [PASSED] 3 VFs
[20:36:00] [PASSED] 4 VFs
[20:36:00] [PASSED] 5 VFs
[20:36:00] [PASSED] 6 VFs
[20:36:00] [PASSED] 7 VFs
[20:36:00] [PASSED] 8 VFs
[20:36:00] [PASSED] 9 VFs
[20:36:00] [PASSED] 10 VFs
[20:36:00] [PASSED] 11 VFs
[20:36:00] [PASSED] 12 VFs
[20:36:00] [PASSED] 13 VFs
[20:36:00] [PASSED] 14 VFs
[20:36:00] [PASSED] 15 VFs
[20:36:00] [PASSED] 16 VFs
[20:36:00] [PASSED] 17 VFs
[20:36:00] [PASSED] 18 VFs
[20:36:00] [PASSED] 19 VFs
[20:36:00] [PASSED] 20 VFs
[20:36:00] [PASSED] 21 VFs
[20:36:00] [PASSED] 22 VFs
[20:36:00] [PASSED] 23 VFs
[20:36:00] [PASSED] 24 VFs
[20:36:00] [PASSED] 25 VFs
[20:36:00] [PASSED] 26 VFs
[20:36:00] [PASSED] 27 VFs
[20:36:00] [PASSED] 28 VFs
[20:36:00] [PASSED] 29 VFs
[20:36:00] [PASSED] 30 VFs
[20:36:00] [PASSED] 31 VFs
[20:36:00] [PASSED] 32 VFs
[20:36:00] [PASSED] 33 VFs
[20:36:00] [PASSED] 34 VFs
[20:36:00] [PASSED] 35 VFs
[20:36:00] [PASSED] 36 VFs
[20:36:00] [PASSED] 37 VFs
[20:36:00] [PASSED] 38 VFs
[20:36:00] [PASSED] 39 VFs
[20:36:00] [PASSED] 40 VFs
[20:36:00] [PASSED] 41 VFs
[20:36:00] [PASSED] 42 VFs
[20:36:00] [PASSED] 43 VFs
[20:36:00] [PASSED] 44 VFs
[20:36:00] [PASSED] 45 VFs
[20:36:00] [PASSED] 46 VFs
[20:36:00] [PASSED] 47 VFs
[20:36:00] [PASSED] 48 VFs
[20:36:00] [PASSED] 49 VFs
[20:36:00] [PASSED] 50 VFs
[20:36:00] [PASSED] 51 VFs
[20:36:00] [PASSED] 52 VFs
[20:36:00] [PASSED] 53 VFs
[20:36:00] [PASSED] 54 VFs
[20:36:00] [PASSED] 55 VFs
[20:36:00] [PASSED] 56 VFs
[20:36:00] [PASSED] 57 VFs
[20:36:00] [PASSED] 58 VFs
[20:36:00] [PASSED] 59 VFs
[20:36:00] [PASSED] 60 VFs
[20:36:00] [PASSED] 61 VFs
[20:36:00] [PASSED] 62 VFs
[20:36:00] [PASSED] 63 VFs
[20:36:00] ==================== [PASSED] fair_ggtt ====================
[20:36:00] ================== [PASSED] pf_gt_config ===================
[20:36:00] ===================== lmtt (1 subtest) =====================
[20:36:00] ======================== test_ops =========================
[20:36:00] [PASSED] 2-level
[20:36:00] [PASSED] multi-level
[20:36:00] ==================== [PASSED] test_ops =====================
[20:36:00] ====================== [PASSED] lmtt =======================
[20:36:00] ================= pf_service (11 subtests) =================
[20:36:00] [PASSED] pf_negotiate_any
[20:36:00] [PASSED] pf_negotiate_base_match
[20:36:00] [PASSED] pf_negotiate_base_newer
[20:36:00] [PASSED] pf_negotiate_base_next
[20:36:00] [SKIPPED] pf_negotiate_base_older
[20:36:00] [PASSED] pf_negotiate_base_prev
[20:36:00] [PASSED] pf_negotiate_latest_match
[20:36:00] [PASSED] pf_negotiate_latest_newer
[20:36:00] [PASSED] pf_negotiate_latest_next
[20:36:00] [SKIPPED] pf_negotiate_latest_older
[20:36:00] [SKIPPED] pf_negotiate_latest_prev
[20:36:00] =================== [PASSED] pf_service ====================
[20:36:00] ================= xe_guc_g2g (2 subtests) ==================
[20:36:00] ============== xe_live_guc_g2g_kunit_default ==============
[20:36:00] ========= [SKIPPED] xe_live_guc_g2g_kunit_default ==========
[20:36:00] ============== xe_live_guc_g2g_kunit_allmem ===============
[20:36:00] ========== [SKIPPED] xe_live_guc_g2g_kunit_allmem ==========
[20:36:00] =================== [SKIPPED] xe_guc_g2g ===================
[20:36:00] =================== xe_mocs (2 subtests) ===================
[20:36:00] ================ xe_live_mocs_kernel_kunit ================
[20:36:00] =========== [SKIPPED] xe_live_mocs_kernel_kunit ============
[20:36:00] ================ xe_live_mocs_reset_kunit =================
[20:36:00] ============ [SKIPPED] xe_live_mocs_reset_kunit ============
[20:36:00] ==================== [SKIPPED] xe_mocs =====================
[20:36:00] ================= xe_migrate (2 subtests) ==================
[20:36:00] ================= xe_migrate_sanity_kunit =================
[20:36:00] ============ [SKIPPED] xe_migrate_sanity_kunit =============
[20:36:00] ================== xe_validate_ccs_kunit ==================
[20:36:00] ============= [SKIPPED] xe_validate_ccs_kunit ==============
[20:36:00] =================== [SKIPPED] xe_migrate ===================
[20:36:00] ================== xe_dma_buf (1 subtest) ==================
[20:36:00] ==================== xe_dma_buf_kunit =====================
[20:36:00] ================ [SKIPPED] xe_dma_buf_kunit ================
[20:36:00] =================== [SKIPPED] xe_dma_buf ===================
[20:36:00] ================= xe_bo_shrink (1 subtest) =================
[20:36:00] =================== xe_bo_shrink_kunit ====================
[20:36:00] =============== [SKIPPED] xe_bo_shrink_kunit ===============
[20:36:00] ================== [SKIPPED] xe_bo_shrink ==================
[20:36:00] ==================== xe_bo (2 subtests) ====================
[20:36:00] ================== xe_ccs_migrate_kunit ===================
[20:36:00] ============== [SKIPPED] xe_ccs_migrate_kunit ==============
[20:36:00] ==================== xe_bo_evict_kunit ====================
[20:36:00] =============== [SKIPPED] xe_bo_evict_kunit ================
[20:36:00] ===================== [SKIPPED] xe_bo ======================
[20:36:00] ==================== args (13 subtests) ====================
[20:36:00] [PASSED] count_args_test
[20:36:00] [PASSED] call_args_example
[20:36:00] [PASSED] call_args_test
[20:36:00] [PASSED] drop_first_arg_example
[20:36:00] [PASSED] drop_first_arg_test
[20:36:00] [PASSED] first_arg_example
[20:36:00] [PASSED] first_arg_test
[20:36:00] [PASSED] last_arg_example
[20:36:00] [PASSED] last_arg_test
[20:36:00] [PASSED] pick_arg_example
[20:36:00] [PASSED] if_args_example
[20:36:00] [PASSED] if_args_test
[20:36:00] [PASSED] sep_comma_example
[20:36:00] ====================== [PASSED] args =======================
[20:36:00] =================== xe_pci (3 subtests) ====================
[20:36:00] ==================== check_graphics_ip ====================
[20:36:00] [PASSED] 12.00 Xe_LP
[20:36:00] [PASSED] 12.10 Xe_LP+
[20:36:00] [PASSED] 12.55 Xe_HPG
[20:36:00] [PASSED] 12.60 Xe_HPC
[20:36:00] [PASSED] 12.70 Xe_LPG
[20:36:00] [PASSED] 12.71 Xe_LPG
[20:36:00] [PASSED] 12.74 Xe_LPG+
[20:36:00] [PASSED] 20.01 Xe2_HPG
[20:36:00] [PASSED] 20.02 Xe2_HPG
[20:36:00] [PASSED] 20.04 Xe2_LPG
[20:36:00] [PASSED] 30.00 Xe3_LPG
[20:36:00] [PASSED] 30.01 Xe3_LPG
[20:36:00] [PASSED] 30.03 Xe3_LPG
[20:36:00] [PASSED] 30.04 Xe3_LPG
[20:36:00] [PASSED] 30.05 Xe3_LPG
[20:36:00] [PASSED] 35.11 Xe3p_XPC
[20:36:00] ================ [PASSED] check_graphics_ip ================
[20:36:00] ===================== check_media_ip ======================
[20:36:00] [PASSED] 12.00 Xe_M
[20:36:00] [PASSED] 12.55 Xe_HPM
[20:36:00] [PASSED] 13.00 Xe_LPM+
[20:36:00] [PASSED] 13.01 Xe2_HPM
[20:36:00] [PASSED] 20.00 Xe2_LPM
[20:36:00] [PASSED] 30.00 Xe3_LPM
[20:36:00] [PASSED] 30.02 Xe3_LPM
[20:36:00] [PASSED] 35.00 Xe3p_LPM
[20:36:00] [PASSED] 35.03 Xe3p_HPM
[20:36:00] ================= [PASSED] check_media_ip ==================
[20:36:00] =================== check_platform_desc ===================
[20:36:00] [PASSED] 0x9A60 (TIGERLAKE)
[20:36:00] [PASSED] 0x9A68 (TIGERLAKE)
[20:36:00] [PASSED] 0x9A70 (TIGERLAKE)
[20:36:00] [PASSED] 0x9A40 (TIGERLAKE)
[20:36:00] [PASSED] 0x9A49 (TIGERLAKE)
[20:36:00] [PASSED] 0x9A59 (TIGERLAKE)
[20:36:00] [PASSED] 0x9A78 (TIGERLAKE)
[20:36:00] [PASSED] 0x9AC0 (TIGERLAKE)
[20:36:00] [PASSED] 0x9AC9 (TIGERLAKE)
[20:36:00] [PASSED] 0x9AD9 (TIGERLAKE)
[20:36:00] [PASSED] 0x9AF8 (TIGERLAKE)
[20:36:00] [PASSED] 0x4C80 (ROCKETLAKE)
[20:36:00] [PASSED] 0x4C8A (ROCKETLAKE)
[20:36:00] [PASSED] 0x4C8B (ROCKETLAKE)
[20:36:00] [PASSED] 0x4C8C (ROCKETLAKE)
[20:36:00] [PASSED] 0x4C90 (ROCKETLAKE)
[20:36:00] [PASSED] 0x4C9A (ROCKETLAKE)
[20:36:00] [PASSED] 0x4680 (ALDERLAKE_S)
[20:36:00] [PASSED] 0x4682 (ALDERLAKE_S)
[20:36:00] [PASSED] 0x4688 (ALDERLAKE_S)
[20:36:00] [PASSED] 0x468A (ALDERLAKE_S)
[20:36:00] [PASSED] 0x468B (ALDERLAKE_S)
[20:36:00] [PASSED] 0x4690 (ALDERLAKE_S)
[20:36:00] [PASSED] 0x4692 (ALDERLAKE_S)
[20:36:00] [PASSED] 0x4693 (ALDERLAKE_S)
[20:36:00] [PASSED] 0x46A0 (ALDERLAKE_P)
[20:36:00] [PASSED] 0x46A1 (ALDERLAKE_P)
[20:36:00] [PASSED] 0x46A2 (ALDERLAKE_P)
[20:36:00] [PASSED] 0x46A3 (ALDERLAKE_P)
[20:36:00] [PASSED] 0x46A6 (ALDERLAKE_P)
[20:36:00] [PASSED] 0x46A8 (ALDERLAKE_P)
[20:36:00] [PASSED] 0x46AA (ALDERLAKE_P)
[20:36:00] [PASSED] 0x462A (ALDERLAKE_P)
[20:36:00] [PASSED] 0x4626 (ALDERLAKE_P)
[20:36:00] [PASSED] 0x4628 (ALDERLAKE_P)
stty: 'standard input': Inappropriate ioctl for device
[20:36:00] [PASSED] 0x46B0 (ALDERLAKE_P)
[20:36:00] [PASSED] 0x46B1 (ALDERLAKE_P)
[20:36:00] [PASSED] 0x46B2 (ALDERLAKE_P)
[20:36:00] [PASSED] 0x46B3 (ALDERLAKE_P)
[20:36:00] [PASSED] 0x46C0 (ALDERLAKE_P)
[20:36:00] [PASSED] 0x46C1 (ALDERLAKE_P)
[20:36:00] [PASSED] 0x46C2 (ALDERLAKE_P)
[20:36:00] [PASSED] 0x46C3 (ALDERLAKE_P)
[20:36:00] [PASSED] 0x46D0 (ALDERLAKE_N)
[20:36:00] [PASSED] 0x46D1 (ALDERLAKE_N)
[20:36:00] [PASSED] 0x46D2 (ALDERLAKE_N)
[20:36:00] [PASSED] 0x46D3 (ALDERLAKE_N)
[20:36:00] [PASSED] 0x46D4 (ALDERLAKE_N)
[20:36:00] [PASSED] 0xA721 (ALDERLAKE_P)
[20:36:00] [PASSED] 0xA7A1 (ALDERLAKE_P)
[20:36:00] [PASSED] 0xA7A9 (ALDERLAKE_P)
[20:36:00] [PASSED] 0xA7AC (ALDERLAKE_P)
[20:36:00] [PASSED] 0xA7AD (ALDERLAKE_P)
[20:36:00] [PASSED] 0xA720 (ALDERLAKE_P)
[20:36:00] [PASSED] 0xA7A0 (ALDERLAKE_P)
[20:36:00] [PASSED] 0xA7A8 (ALDERLAKE_P)
[20:36:00] [PASSED] 0xA7AA (ALDERLAKE_P)
[20:36:00] [PASSED] 0xA7AB (ALDERLAKE_P)
[20:36:00] [PASSED] 0xA780 (ALDERLAKE_S)
[20:36:00] [PASSED] 0xA781 (ALDERLAKE_S)
[20:36:00] [PASSED] 0xA782 (ALDERLAKE_S)
[20:36:00] [PASSED] 0xA783 (ALDERLAKE_S)
[20:36:00] [PASSED] 0xA788 (ALDERLAKE_S)
[20:36:00] [PASSED] 0xA789 (ALDERLAKE_S)
[20:36:00] [PASSED] 0xA78A (ALDERLAKE_S)
[20:36:00] [PASSED] 0xA78B (ALDERLAKE_S)
[20:36:00] [PASSED] 0x4905 (DG1)
[20:36:00] [PASSED] 0x4906 (DG1)
[20:36:00] [PASSED] 0x4907 (DG1)
[20:36:00] [PASSED] 0x4908 (DG1)
[20:36:00] [PASSED] 0x4909 (DG1)
[20:36:00] [PASSED] 0x56C0 (DG2)
[20:36:00] [PASSED] 0x56C2 (DG2)
[20:36:00] [PASSED] 0x56C1 (DG2)
[20:36:00] [PASSED] 0x7D51 (METEORLAKE)
[20:36:00] [PASSED] 0x7DD1 (METEORLAKE)
[20:36:00] [PASSED] 0x7D41 (METEORLAKE)
[20:36:00] [PASSED] 0x7D67 (METEORLAKE)
[20:36:00] [PASSED] 0xB640 (METEORLAKE)
[20:36:00] [PASSED] 0x56A0 (DG2)
[20:36:00] [PASSED] 0x56A1 (DG2)
[20:36:00] [PASSED] 0x56A2 (DG2)
[20:36:00] [PASSED] 0x56BE (DG2)
[20:36:00] [PASSED] 0x56BF (DG2)
[20:36:00] [PASSED] 0x5690 (DG2)
[20:36:00] [PASSED] 0x5691 (DG2)
[20:36:00] [PASSED] 0x5692 (DG2)
[20:36:00] [PASSED] 0x56A5 (DG2)
[20:36:00] [PASSED] 0x56A6 (DG2)
[20:36:00] [PASSED] 0x56B0 (DG2)
[20:36:00] [PASSED] 0x56B1 (DG2)
[20:36:00] [PASSED] 0x56BA (DG2)
[20:36:00] [PASSED] 0x56BB (DG2)
[20:36:00] [PASSED] 0x56BC (DG2)
[20:36:00] [PASSED] 0x56BD (DG2)
[20:36:00] [PASSED] 0x5693 (DG2)
[20:36:00] [PASSED] 0x5694 (DG2)
[20:36:00] [PASSED] 0x5695 (DG2)
[20:36:00] [PASSED] 0x56A3 (DG2)
[20:36:00] [PASSED] 0x56A4 (DG2)
[20:36:00] [PASSED] 0x56B2 (DG2)
[20:36:00] [PASSED] 0x56B3 (DG2)
[20:36:00] [PASSED] 0x5696 (DG2)
[20:36:00] [PASSED] 0x5697 (DG2)
[20:36:00] [PASSED] 0xB69 (PVC)
[20:36:00] [PASSED] 0xB6E (PVC)
[20:36:00] [PASSED] 0xBD4 (PVC)
[20:36:00] [PASSED] 0xBD5 (PVC)
[20:36:00] [PASSED] 0xBD6 (PVC)
[20:36:00] [PASSED] 0xBD7 (PVC)
[20:36:00] [PASSED] 0xBD8 (PVC)
[20:36:00] [PASSED] 0xBD9 (PVC)
[20:36:00] [PASSED] 0xBDA (PVC)
[20:36:00] [PASSED] 0xBDB (PVC)
[20:36:00] [PASSED] 0xBE0 (PVC)
[20:36:00] [PASSED] 0xBE1 (PVC)
[20:36:00] [PASSED] 0xBE5 (PVC)
[20:36:00] [PASSED] 0x7D40 (METEORLAKE)
[20:36:00] [PASSED] 0x7D45 (METEORLAKE)
[20:36:00] [PASSED] 0x7D55 (METEORLAKE)
[20:36:00] [PASSED] 0x7D60 (METEORLAKE)
[20:36:00] [PASSED] 0x7DD5 (METEORLAKE)
[20:36:00] [PASSED] 0x6420 (LUNARLAKE)
[20:36:00] [PASSED] 0x64A0 (LUNARLAKE)
[20:36:00] [PASSED] 0x64B0 (LUNARLAKE)
[20:36:00] [PASSED] 0xE202 (BATTLEMAGE)
[20:36:00] [PASSED] 0xE209 (BATTLEMAGE)
[20:36:00] [PASSED] 0xE20B (BATTLEMAGE)
[20:36:00] [PASSED] 0xE20C (BATTLEMAGE)
[20:36:00] [PASSED] 0xE20D (BATTLEMAGE)
[20:36:00] [PASSED] 0xE210 (BATTLEMAGE)
[20:36:00] [PASSED] 0xE211 (BATTLEMAGE)
[20:36:00] [PASSED] 0xE212 (BATTLEMAGE)
[20:36:00] [PASSED] 0xE216 (BATTLEMAGE)
[20:36:00] [PASSED] 0xE220 (BATTLEMAGE)
[20:36:00] [PASSED] 0xE221 (BATTLEMAGE)
[20:36:00] [PASSED] 0xE222 (BATTLEMAGE)
[20:36:00] [PASSED] 0xE223 (BATTLEMAGE)
[20:36:00] [PASSED] 0xB080 (PANTHERLAKE)
[20:36:00] [PASSED] 0xB081 (PANTHERLAKE)
[20:36:00] [PASSED] 0xB082 (PANTHERLAKE)
[20:36:00] [PASSED] 0xB083 (PANTHERLAKE)
[20:36:00] [PASSED] 0xB084 (PANTHERLAKE)
[20:36:00] [PASSED] 0xB085 (PANTHERLAKE)
[20:36:00] [PASSED] 0xB086 (PANTHERLAKE)
[20:36:00] [PASSED] 0xB087 (PANTHERLAKE)
[20:36:00] [PASSED] 0xB08F (PANTHERLAKE)
[20:36:00] [PASSED] 0xB090 (PANTHERLAKE)
[20:36:00] [PASSED] 0xB0A0 (PANTHERLAKE)
[20:36:00] [PASSED] 0xB0B0 (PANTHERLAKE)
[20:36:00] [PASSED] 0xFD80 (PANTHERLAKE)
[20:36:00] [PASSED] 0xFD81 (PANTHERLAKE)
[20:36:00] [PASSED] 0xD740 (NOVALAKE_S)
[20:36:00] [PASSED] 0xD741 (NOVALAKE_S)
[20:36:00] [PASSED] 0xD742 (NOVALAKE_S)
[20:36:00] [PASSED] 0xD743 (NOVALAKE_S)
[20:36:00] [PASSED] 0xD744 (NOVALAKE_S)
[20:36:00] [PASSED] 0xD745 (NOVALAKE_S)
[20:36:00] [PASSED] 0x674C (CRESCENTISLAND)
[20:36:00] =============== [PASSED] check_platform_desc ===============
[20:36:00] ===================== [PASSED] xe_pci ======================
[20:36:00] =================== xe_rtp (2 subtests) ====================
[20:36:00] =============== xe_rtp_process_to_sr_tests ================
[20:36:00] [PASSED] coalesce-same-reg
[20:36:00] [PASSED] no-match-no-add
[20:36:00] [PASSED] match-or
[20:36:00] [PASSED] match-or-xfail
[20:36:00] [PASSED] no-match-no-add-multiple-rules
[20:36:00] [PASSED] two-regs-two-entries
[20:36:00] [PASSED] clr-one-set-other
[20:36:00] [PASSED] set-field
[20:36:00] [PASSED] conflict-duplicate
[20:36:00] [PASSED] conflict-not-disjoint
[20:36:00] [PASSED] conflict-reg-type
[20:36:00] =========== [PASSED] xe_rtp_process_to_sr_tests ============
[20:36:00] ================== xe_rtp_process_tests ===================
[20:36:00] [PASSED] active1
[20:36:00] [PASSED] active2
[20:36:00] [PASSED] active-inactive
[20:36:00] [PASSED] inactive-active
[20:36:00] [PASSED] inactive-1st_or_active-inactive
[20:36:00] [PASSED] inactive-2nd_or_active-inactive
[20:36:00] [PASSED] inactive-last_or_active-inactive
[20:36:00] [PASSED] inactive-no_or_active-inactive
[20:36:00] ============== [PASSED] xe_rtp_process_tests ===============
[20:36:00] ===================== [PASSED] xe_rtp ======================
[20:36:00] ==================== xe_wa (1 subtest) =====================
[20:36:00] ======================== xe_wa_gt =========================
[20:36:00] [PASSED] TIGERLAKE B0
[20:36:00] [PASSED] DG1 A0
[20:36:00] [PASSED] DG1 B0
[20:36:00] [PASSED] ALDERLAKE_S A0
[20:36:00] [PASSED] ALDERLAKE_S B0
[20:36:00] [PASSED] ALDERLAKE_S C0
[20:36:00] [PASSED] ALDERLAKE_S D0
[20:36:00] [PASSED] ALDERLAKE_P A0
[20:36:00] [PASSED] ALDERLAKE_P B0
[20:36:00] [PASSED] ALDERLAKE_P C0
[20:36:00] [PASSED] ALDERLAKE_S RPLS D0
[20:36:00] [PASSED] ALDERLAKE_P RPLU E0
[20:36:00] [PASSED] DG2 G10 C0
[20:36:00] [PASSED] DG2 G11 B1
[20:36:00] [PASSED] DG2 G12 A1
[20:36:00] [PASSED] METEORLAKE 12.70(Xe_LPG) A0 13.00(Xe_LPM+) A0
[20:36:00] [PASSED] METEORLAKE 12.71(Xe_LPG) A0 13.00(Xe_LPM+) A0
[20:36:00] [PASSED] METEORLAKE 12.74(Xe_LPG+) A0 13.00(Xe_LPM+) A0
[20:36:00] [PASSED] LUNARLAKE 20.04(Xe2_LPG) A0 20.00(Xe2_LPM) A0
[20:36:00] [PASSED] LUNARLAKE 20.04(Xe2_LPG) B0 20.00(Xe2_LPM) A0
[20:36:00] [PASSED] BATTLEMAGE 20.01(Xe2_HPG) A0 13.01(Xe2_HPM) A1
[20:36:00] [PASSED] PANTHERLAKE 30.00(Xe3_LPG) A0 30.00(Xe3_LPM) A0
[20:36:00] ==================== [PASSED] xe_wa_gt =====================
[20:36:00] ====================== [PASSED] xe_wa ======================
[20:36:00] ============================================================
[20:36:00] Testing complete. Ran 512 tests: passed: 494, skipped: 18
[20:36:00] Elapsed time: 36.329s total, 4.227s configuring, 31.585s building, 0.472s running
+ /kernel/tools/testing/kunit/kunit.py run --kunitconfig /kernel/drivers/gpu/drm/tests/.kunitconfig
[20:36:00] Configuring KUnit Kernel ...
Regenerating .config ...
Populating config with:
$ make ARCH=um O=.kunit olddefconfig
[20:36:02] Building KUnit Kernel ...
Populating config with:
$ make ARCH=um O=.kunit olddefconfig
Building with:
$ make all compile_commands.json scripts_gdb ARCH=um O=.kunit --jobs=48
[20:36:27] Starting KUnit Kernel (1/1)...
[20:36:27] ============================================================
Running tests with:
$ .kunit/linux kunit.enable=1 mem=1G console=tty kunit_shutdown=halt
[20:36:27] ============ drm_test_pick_cmdline (2 subtests) ============
[20:36:27] [PASSED] drm_test_pick_cmdline_res_1920_1080_60
[20:36:27] =============== drm_test_pick_cmdline_named ===============
[20:36:27] [PASSED] NTSC
[20:36:27] [PASSED] NTSC-J
[20:36:27] [PASSED] PAL
[20:36:27] [PASSED] PAL-M
[20:36:27] =========== [PASSED] drm_test_pick_cmdline_named ===========
[20:36:27] ============== [PASSED] drm_test_pick_cmdline ==============
[20:36:27] == drm_test_atomic_get_connector_for_encoder (1 subtest) ===
[20:36:27] [PASSED] drm_test_drm_atomic_get_connector_for_encoder
[20:36:27] ==== [PASSED] drm_test_atomic_get_connector_for_encoder ====
[20:36:27] =========== drm_validate_clone_mode (2 subtests) ===========
[20:36:27] ============== drm_test_check_in_clone_mode ===============
[20:36:27] [PASSED] in_clone_mode
[20:36:27] [PASSED] not_in_clone_mode
[20:36:27] ========== [PASSED] drm_test_check_in_clone_mode ===========
[20:36:27] =============== drm_test_check_valid_clones ===============
[20:36:27] [PASSED] not_in_clone_mode
[20:36:27] [PASSED] valid_clone
[20:36:27] [PASSED] invalid_clone
[20:36:27] =========== [PASSED] drm_test_check_valid_clones ===========
[20:36:27] ============= [PASSED] drm_validate_clone_mode =============
[20:36:27] ============= drm_validate_modeset (1 subtest) =============
[20:36:27] [PASSED] drm_test_check_connector_changed_modeset
[20:36:27] ============== [PASSED] drm_validate_modeset ===============
[20:36:27] ====== drm_test_bridge_get_current_state (2 subtests) ======
[20:36:27] [PASSED] drm_test_drm_bridge_get_current_state_atomic
[20:36:27] [PASSED] drm_test_drm_bridge_get_current_state_legacy
[20:36:27] ======== [PASSED] drm_test_bridge_get_current_state ========
[20:36:27] ====== drm_test_bridge_helper_reset_crtc (3 subtests) ======
[20:36:27] [PASSED] drm_test_drm_bridge_helper_reset_crtc_atomic
[20:36:27] [PASSED] drm_test_drm_bridge_helper_reset_crtc_atomic_disabled
[20:36:27] [PASSED] drm_test_drm_bridge_helper_reset_crtc_legacy
[20:36:27] ======== [PASSED] drm_test_bridge_helper_reset_crtc ========
[20:36:27] ============== drm_bridge_alloc (2 subtests) ===============
[20:36:27] [PASSED] drm_test_drm_bridge_alloc_basic
[20:36:27] [PASSED] drm_test_drm_bridge_alloc_get_put
[20:36:27] ================ [PASSED] drm_bridge_alloc =================
[20:36:27] ================== drm_buddy (8 subtests) ==================
[20:36:27] [PASSED] drm_test_buddy_alloc_limit
[20:36:27] [PASSED] drm_test_buddy_alloc_optimistic
[20:36:27] [PASSED] drm_test_buddy_alloc_pessimistic
[20:36:27] [PASSED] drm_test_buddy_alloc_pathological
[20:36:27] [PASSED] drm_test_buddy_alloc_contiguous
[20:36:27] [PASSED] drm_test_buddy_alloc_clear
[20:36:28] [PASSED] drm_test_buddy_alloc_range_bias
[20:36:28] [PASSED] drm_test_buddy_fragmentation_performance
[20:36:28] ==================== [PASSED] drm_buddy ====================
[20:36:28] ============= drm_cmdline_parser (40 subtests) =============
[20:36:28] [PASSED] drm_test_cmdline_force_d_only
[20:36:28] [PASSED] drm_test_cmdline_force_D_only_dvi
[20:36:28] [PASSED] drm_test_cmdline_force_D_only_hdmi
[20:36:28] [PASSED] drm_test_cmdline_force_D_only_not_digital
[20:36:28] [PASSED] drm_test_cmdline_force_e_only
[20:36:28] [PASSED] drm_test_cmdline_res
[20:36:28] [PASSED] drm_test_cmdline_res_vesa
[20:36:28] [PASSED] drm_test_cmdline_res_vesa_rblank
[20:36:28] [PASSED] drm_test_cmdline_res_rblank
[20:36:28] [PASSED] drm_test_cmdline_res_bpp
[20:36:28] [PASSED] drm_test_cmdline_res_refresh
[20:36:28] [PASSED] drm_test_cmdline_res_bpp_refresh
[20:36:28] [PASSED] drm_test_cmdline_res_bpp_refresh_interlaced
[20:36:28] [PASSED] drm_test_cmdline_res_bpp_refresh_margins
[20:36:28] [PASSED] drm_test_cmdline_res_bpp_refresh_force_off
[20:36:28] [PASSED] drm_test_cmdline_res_bpp_refresh_force_on
[20:36:28] [PASSED] drm_test_cmdline_res_bpp_refresh_force_on_analog
[20:36:28] [PASSED] drm_test_cmdline_res_bpp_refresh_force_on_digital
[20:36:28] [PASSED] drm_test_cmdline_res_bpp_refresh_interlaced_margins_force_on
[20:36:28] [PASSED] drm_test_cmdline_res_margins_force_on
[20:36:28] [PASSED] drm_test_cmdline_res_vesa_margins
[20:36:28] [PASSED] drm_test_cmdline_name
[20:36:28] [PASSED] drm_test_cmdline_name_bpp
[20:36:28] [PASSED] drm_test_cmdline_name_option
[20:36:28] [PASSED] drm_test_cmdline_name_bpp_option
[20:36:28] [PASSED] drm_test_cmdline_rotate_0
[20:36:28] [PASSED] drm_test_cmdline_rotate_90
[20:36:28] [PASSED] drm_test_cmdline_rotate_180
[20:36:28] [PASSED] drm_test_cmdline_rotate_270
[20:36:28] [PASSED] drm_test_cmdline_hmirror
[20:36:28] [PASSED] drm_test_cmdline_vmirror
[20:36:28] [PASSED] drm_test_cmdline_margin_options
[20:36:28] [PASSED] drm_test_cmdline_multiple_options
[20:36:28] [PASSED] drm_test_cmdline_bpp_extra_and_option
[20:36:28] [PASSED] drm_test_cmdline_extra_and_option
[20:36:28] [PASSED] drm_test_cmdline_freestanding_options
[20:36:28] [PASSED] drm_test_cmdline_freestanding_force_e_and_options
[20:36:28] [PASSED] drm_test_cmdline_panel_orientation
[20:36:28] ================ drm_test_cmdline_invalid =================
[20:36:28] [PASSED] margin_only
[20:36:28] [PASSED] interlace_only
[20:36:28] [PASSED] res_missing_x
[20:36:28] [PASSED] res_missing_y
[20:36:28] [PASSED] res_bad_y
[20:36:28] [PASSED] res_missing_y_bpp
[20:36:28] [PASSED] res_bad_bpp
[20:36:28] [PASSED] res_bad_refresh
[20:36:28] [PASSED] res_bpp_refresh_force_on_off
[20:36:28] [PASSED] res_invalid_mode
[20:36:28] [PASSED] res_bpp_wrong_place_mode
[20:36:28] [PASSED] name_bpp_refresh
[20:36:28] [PASSED] name_refresh
[20:36:28] [PASSED] name_refresh_wrong_mode
[20:36:28] [PASSED] name_refresh_invalid_mode
[20:36:28] [PASSED] rotate_multiple
[20:36:28] [PASSED] rotate_invalid_val
[20:36:28] [PASSED] rotate_truncated
[20:36:28] [PASSED] invalid_option
[20:36:28] [PASSED] invalid_tv_option
[20:36:28] [PASSED] truncated_tv_option
[20:36:28] ============ [PASSED] drm_test_cmdline_invalid =============
[20:36:28] =============== drm_test_cmdline_tv_options ===============
[20:36:28] [PASSED] NTSC
[20:36:28] [PASSED] NTSC_443
[20:36:28] [PASSED] NTSC_J
[20:36:28] [PASSED] PAL
[20:36:28] [PASSED] PAL_M
[20:36:28] [PASSED] PAL_N
[20:36:28] [PASSED] SECAM
[20:36:28] [PASSED] MONO_525
[20:36:28] [PASSED] MONO_625
[20:36:28] =========== [PASSED] drm_test_cmdline_tv_options ===========
[20:36:28] =============== [PASSED] drm_cmdline_parser ================
[20:36:28] ========== drmm_connector_hdmi_init (20 subtests) ==========
[20:36:28] [PASSED] drm_test_connector_hdmi_init_valid
[20:36:28] [PASSED] drm_test_connector_hdmi_init_bpc_8
[20:36:28] [PASSED] drm_test_connector_hdmi_init_bpc_10
[20:36:28] [PASSED] drm_test_connector_hdmi_init_bpc_12
[20:36:28] [PASSED] drm_test_connector_hdmi_init_bpc_invalid
[20:36:28] [PASSED] drm_test_connector_hdmi_init_bpc_null
[20:36:28] [PASSED] drm_test_connector_hdmi_init_formats_empty
[20:36:28] [PASSED] drm_test_connector_hdmi_init_formats_no_rgb
[20:36:28] === drm_test_connector_hdmi_init_formats_yuv420_allowed ===
[20:36:28] [PASSED] supported_formats=0x9 yuv420_allowed=1
[20:36:28] [PASSED] supported_formats=0x9 yuv420_allowed=0
[20:36:28] [PASSED] supported_formats=0x3 yuv420_allowed=1
[20:36:28] [PASSED] supported_formats=0x3 yuv420_allowed=0
[20:36:28] === [PASSED] drm_test_connector_hdmi_init_formats_yuv420_allowed ===
[20:36:28] [PASSED] drm_test_connector_hdmi_init_null_ddc
[20:36:28] [PASSED] drm_test_connector_hdmi_init_null_product
[20:36:28] [PASSED] drm_test_connector_hdmi_init_null_vendor
[20:36:28] [PASSED] drm_test_connector_hdmi_init_product_length_exact
[20:36:28] [PASSED] drm_test_connector_hdmi_init_product_length_too_long
[20:36:28] [PASSED] drm_test_connector_hdmi_init_product_valid
[20:36:28] [PASSED] drm_test_connector_hdmi_init_vendor_length_exact
[20:36:28] [PASSED] drm_test_connector_hdmi_init_vendor_length_too_long
[20:36:28] [PASSED] drm_test_connector_hdmi_init_vendor_valid
[20:36:28] ========= drm_test_connector_hdmi_init_type_valid =========
[20:36:28] [PASSED] HDMI-A
[20:36:28] [PASSED] HDMI-B
[20:36:28] ===== [PASSED] drm_test_connector_hdmi_init_type_valid =====
[20:36:28] ======== drm_test_connector_hdmi_init_type_invalid ========
[20:36:28] [PASSED] Unknown
[20:36:28] [PASSED] VGA
[20:36:28] [PASSED] DVI-I
[20:36:28] [PASSED] DVI-D
[20:36:28] [PASSED] DVI-A
[20:36:28] [PASSED] Composite
[20:36:28] [PASSED] SVIDEO
[20:36:28] [PASSED] LVDS
[20:36:28] [PASSED] Component
[20:36:28] [PASSED] DIN
[20:36:28] [PASSED] DP
[20:36:28] [PASSED] TV
[20:36:28] [PASSED] eDP
[20:36:28] [PASSED] Virtual
[20:36:28] [PASSED] DSI
[20:36:28] [PASSED] DPI
[20:36:28] [PASSED] Writeback
[20:36:28] [PASSED] SPI
[20:36:28] [PASSED] USB
[20:36:28] ==== [PASSED] drm_test_connector_hdmi_init_type_invalid ====
[20:36:28] ============ [PASSED] drmm_connector_hdmi_init =============
[20:36:28] ============= drmm_connector_init (3 subtests) =============
[20:36:28] [PASSED] drm_test_drmm_connector_init
[20:36:28] [PASSED] drm_test_drmm_connector_init_null_ddc
[20:36:28] ========= drm_test_drmm_connector_init_type_valid =========
[20:36:28] [PASSED] Unknown
[20:36:28] [PASSED] VGA
[20:36:28] [PASSED] DVI-I
[20:36:28] [PASSED] DVI-D
[20:36:28] [PASSED] DVI-A
[20:36:28] [PASSED] Composite
[20:36:28] [PASSED] SVIDEO
[20:36:28] [PASSED] LVDS
[20:36:28] [PASSED] Component
[20:36:28] [PASSED] DIN
[20:36:28] [PASSED] DP
[20:36:28] [PASSED] HDMI-A
[20:36:28] [PASSED] HDMI-B
[20:36:28] [PASSED] TV
[20:36:28] [PASSED] eDP
[20:36:28] [PASSED] Virtual
[20:36:28] [PASSED] DSI
[20:36:28] [PASSED] DPI
[20:36:28] [PASSED] Writeback
[20:36:28] [PASSED] SPI
[20:36:28] [PASSED] USB
[20:36:28] ===== [PASSED] drm_test_drmm_connector_init_type_valid =====
[20:36:28] =============== [PASSED] drmm_connector_init ===============
[20:36:28] ========= drm_connector_dynamic_init (6 subtests) ==========
[20:36:28] [PASSED] drm_test_drm_connector_dynamic_init
[20:36:28] [PASSED] drm_test_drm_connector_dynamic_init_null_ddc
[20:36:28] [PASSED] drm_test_drm_connector_dynamic_init_not_added
[20:36:28] [PASSED] drm_test_drm_connector_dynamic_init_properties
[20:36:28] ===== drm_test_drm_connector_dynamic_init_type_valid ======
[20:36:28] [PASSED] Unknown
[20:36:28] [PASSED] VGA
[20:36:28] [PASSED] DVI-I
[20:36:28] [PASSED] DVI-D
[20:36:28] [PASSED] DVI-A
[20:36:28] [PASSED] Composite
[20:36:28] [PASSED] SVIDEO
[20:36:28] [PASSED] LVDS
[20:36:28] [PASSED] Component
[20:36:28] [PASSED] DIN
[20:36:28] [PASSED] DP
[20:36:28] [PASSED] HDMI-A
[20:36:28] [PASSED] HDMI-B
[20:36:28] [PASSED] TV
[20:36:28] [PASSED] eDP
[20:36:28] [PASSED] Virtual
[20:36:28] [PASSED] DSI
[20:36:28] [PASSED] DPI
[20:36:28] [PASSED] Writeback
[20:36:28] [PASSED] SPI
[20:36:28] [PASSED] USB
[20:36:28] = [PASSED] drm_test_drm_connector_dynamic_init_type_valid ==
[20:36:28] ======== drm_test_drm_connector_dynamic_init_name =========
[20:36:28] [PASSED] Unknown
[20:36:28] [PASSED] VGA
[20:36:28] [PASSED] DVI-I
[20:36:28] [PASSED] DVI-D
[20:36:28] [PASSED] DVI-A
[20:36:28] [PASSED] Composite
[20:36:28] [PASSED] SVIDEO
[20:36:28] [PASSED] LVDS
[20:36:28] [PASSED] Component
[20:36:28] [PASSED] DIN
[20:36:28] [PASSED] DP
[20:36:28] [PASSED] HDMI-A
[20:36:28] [PASSED] HDMI-B
[20:36:28] [PASSED] TV
[20:36:28] [PASSED] eDP
[20:36:28] [PASSED] Virtual
[20:36:28] [PASSED] DSI
[20:36:28] [PASSED] DPI
[20:36:28] [PASSED] Writeback
[20:36:28] [PASSED] SPI
[20:36:28] [PASSED] USB
[20:36:28] ==== [PASSED] drm_test_drm_connector_dynamic_init_name =====
[20:36:28] =========== [PASSED] drm_connector_dynamic_init ============
[20:36:28] ==== drm_connector_dynamic_register_early (4 subtests) =====
[20:36:28] [PASSED] drm_test_drm_connector_dynamic_register_early_on_list
[20:36:28] [PASSED] drm_test_drm_connector_dynamic_register_early_defer
[20:36:28] [PASSED] drm_test_drm_connector_dynamic_register_early_no_init
[20:36:28] [PASSED] drm_test_drm_connector_dynamic_register_early_no_mode_object
[20:36:28] ====== [PASSED] drm_connector_dynamic_register_early =======
[20:36:28] ======= drm_connector_dynamic_register (7 subtests) ========
[20:36:28] [PASSED] drm_test_drm_connector_dynamic_register_on_list
[20:36:28] [PASSED] drm_test_drm_connector_dynamic_register_no_defer
[20:36:28] [PASSED] drm_test_drm_connector_dynamic_register_no_init
[20:36:28] [PASSED] drm_test_drm_connector_dynamic_register_mode_object
[20:36:28] [PASSED] drm_test_drm_connector_dynamic_register_sysfs
[20:36:28] [PASSED] drm_test_drm_connector_dynamic_register_sysfs_name
[20:36:28] [PASSED] drm_test_drm_connector_dynamic_register_debugfs
[20:36:28] ========= [PASSED] drm_connector_dynamic_register ==========
[20:36:28] = drm_connector_attach_broadcast_rgb_property (2 subtests) =
[20:36:28] [PASSED] drm_test_drm_connector_attach_broadcast_rgb_property
[20:36:28] [PASSED] drm_test_drm_connector_attach_broadcast_rgb_property_hdmi_connector
[20:36:28] === [PASSED] drm_connector_attach_broadcast_rgb_property ===
[20:36:28] ========== drm_get_tv_mode_from_name (2 subtests) ==========
[20:36:28] ========== drm_test_get_tv_mode_from_name_valid ===========
[20:36:28] [PASSED] NTSC
[20:36:28] [PASSED] NTSC-443
[20:36:28] [PASSED] NTSC-J
[20:36:28] [PASSED] PAL
[20:36:28] [PASSED] PAL-M
[20:36:28] [PASSED] PAL-N
[20:36:28] [PASSED] SECAM
[20:36:28] [PASSED] Mono
[20:36:28] ====== [PASSED] drm_test_get_tv_mode_from_name_valid =======
[20:36:28] [PASSED] drm_test_get_tv_mode_from_name_truncated
[20:36:28] ============ [PASSED] drm_get_tv_mode_from_name ============
[20:36:28] = drm_test_connector_hdmi_compute_mode_clock (12 subtests) =
[20:36:28] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb
[20:36:28] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb_10bpc
[20:36:28] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb_10bpc_vic_1
[20:36:28] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb_12bpc
[20:36:28] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb_12bpc_vic_1
[20:36:28] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb_double
[20:36:28] = drm_test_connector_hdmi_compute_mode_clock_yuv420_valid =
[20:36:28] [PASSED] VIC 96
[20:36:28] [PASSED] VIC 97
[20:36:28] [PASSED] VIC 101
[20:36:28] [PASSED] VIC 102
[20:36:28] [PASSED] VIC 106
[20:36:28] [PASSED] VIC 107
[20:36:28] === [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv420_valid ===
[20:36:28] [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv420_10_bpc
[20:36:28] [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv420_12_bpc
[20:36:28] [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv422_8_bpc
[20:36:28] [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv422_10_bpc
[20:36:28] [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv422_12_bpc
[20:36:28] === [PASSED] drm_test_connector_hdmi_compute_mode_clock ====
[20:36:28] == drm_hdmi_connector_get_broadcast_rgb_name (2 subtests) ==
[20:36:28] === drm_test_drm_hdmi_connector_get_broadcast_rgb_name ====
[20:36:28] [PASSED] Automatic
[20:36:28] [PASSED] Full
[20:36:28] [PASSED] Limited 16:235
[20:36:28] === [PASSED] drm_test_drm_hdmi_connector_get_broadcast_rgb_name ===
[20:36:28] [PASSED] drm_test_drm_hdmi_connector_get_broadcast_rgb_name_invalid
[20:36:28] ==== [PASSED] drm_hdmi_connector_get_broadcast_rgb_name ====
[20:36:28] == drm_hdmi_connector_get_output_format_name (2 subtests) ==
[20:36:28] === drm_test_drm_hdmi_connector_get_output_format_name ====
[20:36:28] [PASSED] RGB
[20:36:28] [PASSED] YUV 4:2:0
[20:36:28] [PASSED] YUV 4:2:2
[20:36:28] [PASSED] YUV 4:4:4
[20:36:28] === [PASSED] drm_test_drm_hdmi_connector_get_output_format_name ===
[20:36:28] [PASSED] drm_test_drm_hdmi_connector_get_output_format_name_invalid
[20:36:28] ==== [PASSED] drm_hdmi_connector_get_output_format_name ====
[20:36:28] ============= drm_damage_helper (21 subtests) ==============
[20:36:28] [PASSED] drm_test_damage_iter_no_damage
[20:36:28] [PASSED] drm_test_damage_iter_no_damage_fractional_src
[20:36:28] [PASSED] drm_test_damage_iter_no_damage_src_moved
[20:36:28] [PASSED] drm_test_damage_iter_no_damage_fractional_src_moved
[20:36:28] [PASSED] drm_test_damage_iter_no_damage_not_visible
[20:36:28] [PASSED] drm_test_damage_iter_no_damage_no_crtc
[20:36:28] [PASSED] drm_test_damage_iter_no_damage_no_fb
[20:36:28] [PASSED] drm_test_damage_iter_simple_damage
[20:36:28] [PASSED] drm_test_damage_iter_single_damage
[20:36:28] [PASSED] drm_test_damage_iter_single_damage_intersect_src
[20:36:28] [PASSED] drm_test_damage_iter_single_damage_outside_src
[20:36:28] [PASSED] drm_test_damage_iter_single_damage_fractional_src
[20:36:28] [PASSED] drm_test_damage_iter_single_damage_intersect_fractional_src
[20:36:28] [PASSED] drm_test_damage_iter_single_damage_outside_fractional_src
[20:36:28] [PASSED] drm_test_damage_iter_single_damage_src_moved
[20:36:28] [PASSED] drm_test_damage_iter_single_damage_fractional_src_moved
[20:36:28] [PASSED] drm_test_damage_iter_damage
[20:36:28] [PASSED] drm_test_damage_iter_damage_one_intersect
[20:36:28] [PASSED] drm_test_damage_iter_damage_one_outside
[20:36:28] [PASSED] drm_test_damage_iter_damage_src_moved
[20:36:28] [PASSED] drm_test_damage_iter_damage_not_visible
[20:36:28] ================ [PASSED] drm_damage_helper ================
[20:36:28] ============== drm_dp_mst_helper (3 subtests) ==============
[20:36:28] ============== drm_test_dp_mst_calc_pbn_mode ==============
[20:36:28] [PASSED] Clock 154000 BPP 30 DSC disabled
[20:36:28] [PASSED] Clock 234000 BPP 30 DSC disabled
[20:36:28] [PASSED] Clock 297000 BPP 24 DSC disabled
[20:36:28] [PASSED] Clock 332880 BPP 24 DSC enabled
[20:36:28] [PASSED] Clock 324540 BPP 24 DSC enabled
[20:36:28] ========== [PASSED] drm_test_dp_mst_calc_pbn_mode ==========
[20:36:28] ============== drm_test_dp_mst_calc_pbn_div ===============
[20:36:28] [PASSED] Link rate 2000000 lane count 4
[20:36:28] [PASSED] Link rate 2000000 lane count 2
[20:36:28] [PASSED] Link rate 2000000 lane count 1
[20:36:28] [PASSED] Link rate 1350000 lane count 4
[20:36:28] [PASSED] Link rate 1350000 lane count 2
[20:36:28] [PASSED] Link rate 1350000 lane count 1
[20:36:28] [PASSED] Link rate 1000000 lane count 4
[20:36:28] [PASSED] Link rate 1000000 lane count 2
[20:36:28] [PASSED] Link rate 1000000 lane count 1
[20:36:28] [PASSED] Link rate 810000 lane count 4
[20:36:28] [PASSED] Link rate 810000 lane count 2
[20:36:28] [PASSED] Link rate 810000 lane count 1
[20:36:28] [PASSED] Link rate 540000 lane count 4
[20:36:28] [PASSED] Link rate 540000 lane count 2
[20:36:28] [PASSED] Link rate 540000 lane count 1
[20:36:28] [PASSED] Link rate 270000 lane count 4
[20:36:28] [PASSED] Link rate 270000 lane count 2
[20:36:28] [PASSED] Link rate 270000 lane count 1
[20:36:28] [PASSED] Link rate 162000 lane count 4
[20:36:28] [PASSED] Link rate 162000 lane count 2
[20:36:28] [PASSED] Link rate 162000 lane count 1
[20:36:28] ========== [PASSED] drm_test_dp_mst_calc_pbn_div ===========
[20:36:28] ========= drm_test_dp_mst_sideband_msg_req_decode =========
[20:36:28] [PASSED] DP_ENUM_PATH_RESOURCES with port number
[20:36:28] [PASSED] DP_POWER_UP_PHY with port number
[20:36:28] [PASSED] DP_POWER_DOWN_PHY with port number
[20:36:28] [PASSED] DP_ALLOCATE_PAYLOAD with SDP stream sinks
[20:36:28] [PASSED] DP_ALLOCATE_PAYLOAD with port number
[20:36:28] [PASSED] DP_ALLOCATE_PAYLOAD with VCPI
[20:36:28] [PASSED] DP_ALLOCATE_PAYLOAD with PBN
[20:36:28] [PASSED] DP_QUERY_PAYLOAD with port number
[20:36:28] [PASSED] DP_QUERY_PAYLOAD with VCPI
[20:36:28] [PASSED] DP_REMOTE_DPCD_READ with port number
[20:36:28] [PASSED] DP_REMOTE_DPCD_READ with DPCD address
[20:36:28] [PASSED] DP_REMOTE_DPCD_READ with max number of bytes
[20:36:28] [PASSED] DP_REMOTE_DPCD_WRITE with port number
[20:36:28] [PASSED] DP_REMOTE_DPCD_WRITE with DPCD address
[20:36:28] [PASSED] DP_REMOTE_DPCD_WRITE with data array
[20:36:28] [PASSED] DP_REMOTE_I2C_READ with port number
[20:36:28] [PASSED] DP_REMOTE_I2C_READ with I2C device ID
[20:36:28] [PASSED] DP_REMOTE_I2C_READ with transactions array
[20:36:28] [PASSED] DP_REMOTE_I2C_WRITE with port number
[20:36:28] [PASSED] DP_REMOTE_I2C_WRITE with I2C device ID
[20:36:28] [PASSED] DP_REMOTE_I2C_WRITE with data array
[20:36:28] [PASSED] DP_QUERY_STREAM_ENC_STATUS with stream ID
[20:36:28] [PASSED] DP_QUERY_STREAM_ENC_STATUS with client ID
[20:36:28] [PASSED] DP_QUERY_STREAM_ENC_STATUS with stream event
[20:36:28] [PASSED] DP_QUERY_STREAM_ENC_STATUS with valid stream event
[20:36:28] [PASSED] DP_QUERY_STREAM_ENC_STATUS with stream behavior
[20:36:28] [PASSED] DP_QUERY_STREAM_ENC_STATUS with a valid stream behavior
[20:36:28] ===== [PASSED] drm_test_dp_mst_sideband_msg_req_decode =====
[20:36:28] ================ [PASSED] drm_dp_mst_helper ================
[20:36:28] ================== drm_exec (7 subtests) ===================
[20:36:28] [PASSED] sanitycheck
[20:36:28] [PASSED] test_lock
[20:36:28] [PASSED] test_lock_unlock
[20:36:28] [PASSED] test_duplicates
[20:36:28] [PASSED] test_prepare
[20:36:28] [PASSED] test_prepare_array
[20:36:28] [PASSED] test_multiple_loops
[20:36:28] ==================== [PASSED] drm_exec =====================
[20:36:28] =========== drm_format_helper_test (17 subtests) ===========
[20:36:28] ============== drm_test_fb_xrgb8888_to_gray8 ==============
[20:36:28] [PASSED] single_pixel_source_buffer
[20:36:28] [PASSED] single_pixel_clip_rectangle
[20:36:28] [PASSED] well_known_colors
[20:36:28] [PASSED] destination_pitch
[20:36:28] ========== [PASSED] drm_test_fb_xrgb8888_to_gray8 ==========
[20:36:28] ============= drm_test_fb_xrgb8888_to_rgb332 ==============
[20:36:28] [PASSED] single_pixel_source_buffer
[20:36:28] [PASSED] single_pixel_clip_rectangle
[20:36:28] [PASSED] well_known_colors
[20:36:28] [PASSED] destination_pitch
[20:36:28] ========= [PASSED] drm_test_fb_xrgb8888_to_rgb332 ==========
[20:36:28] ============= drm_test_fb_xrgb8888_to_rgb565 ==============
[20:36:28] [PASSED] single_pixel_source_buffer
[20:36:28] [PASSED] single_pixel_clip_rectangle
[20:36:28] [PASSED] well_known_colors
[20:36:28] [PASSED] destination_pitch
[20:36:28] ========= [PASSED] drm_test_fb_xrgb8888_to_rgb565 ==========
[20:36:28] ============ drm_test_fb_xrgb8888_to_xrgb1555 =============
[20:36:28] [PASSED] single_pixel_source_buffer
[20:36:28] [PASSED] single_pixel_clip_rectangle
[20:36:28] [PASSED] well_known_colors
[20:36:28] [PASSED] destination_pitch
[20:36:28] ======== [PASSED] drm_test_fb_xrgb8888_to_xrgb1555 =========
[20:36:28] ============ drm_test_fb_xrgb8888_to_argb1555 =============
[20:36:28] [PASSED] single_pixel_source_buffer
[20:36:28] [PASSED] single_pixel_clip_rectangle
[20:36:28] [PASSED] well_known_colors
[20:36:28] [PASSED] destination_pitch
[20:36:28] ======== [PASSED] drm_test_fb_xrgb8888_to_argb1555 =========
[20:36:28] ============ drm_test_fb_xrgb8888_to_rgba5551 =============
[20:36:28] [PASSED] single_pixel_source_buffer
[20:36:28] [PASSED] single_pixel_clip_rectangle
[20:36:28] [PASSED] well_known_colors
[20:36:28] [PASSED] destination_pitch
[20:36:28] ======== [PASSED] drm_test_fb_xrgb8888_to_rgba5551 =========
[20:36:28] ============= drm_test_fb_xrgb8888_to_rgb888 ==============
[20:36:28] [PASSED] single_pixel_source_buffer
[20:36:28] [PASSED] single_pixel_clip_rectangle
[20:36:28] [PASSED] well_known_colors
[20:36:28] [PASSED] destination_pitch
[20:36:28] ========= [PASSED] drm_test_fb_xrgb8888_to_rgb888 ==========
[20:36:28] ============= drm_test_fb_xrgb8888_to_bgr888 ==============
[20:36:28] [PASSED] single_pixel_source_buffer
[20:36:28] [PASSED] single_pixel_clip_rectangle
[20:36:28] [PASSED] well_known_colors
[20:36:28] [PASSED] destination_pitch
[20:36:28] ========= [PASSED] drm_test_fb_xrgb8888_to_bgr888 ==========
[20:36:28] ============ drm_test_fb_xrgb8888_to_argb8888 =============
[20:36:28] [PASSED] single_pixel_source_buffer
[20:36:28] [PASSED] single_pixel_clip_rectangle
[20:36:28] [PASSED] well_known_colors
[20:36:28] [PASSED] destination_pitch
[20:36:28] ======== [PASSED] drm_test_fb_xrgb8888_to_argb8888 =========
[20:36:28] =========== drm_test_fb_xrgb8888_to_xrgb2101010 ===========
[20:36:28] [PASSED] single_pixel_source_buffer
[20:36:28] [PASSED] single_pixel_clip_rectangle
[20:36:28] [PASSED] well_known_colors
[20:36:28] [PASSED] destination_pitch
[20:36:28] ======= [PASSED] drm_test_fb_xrgb8888_to_xrgb2101010 =======
[20:36:28] =========== drm_test_fb_xrgb8888_to_argb2101010 ===========
[20:36:28] [PASSED] single_pixel_source_buffer
[20:36:28] [PASSED] single_pixel_clip_rectangle
[20:36:28] [PASSED] well_known_colors
[20:36:28] [PASSED] destination_pitch
[20:36:28] ======= [PASSED] drm_test_fb_xrgb8888_to_argb2101010 =======
[20:36:28] ============== drm_test_fb_xrgb8888_to_mono ===============
[20:36:28] [PASSED] single_pixel_source_buffer
[20:36:28] [PASSED] single_pixel_clip_rectangle
[20:36:28] [PASSED] well_known_colors
[20:36:28] [PASSED] destination_pitch
[20:36:28] ========== [PASSED] drm_test_fb_xrgb8888_to_mono ===========
[20:36:28] ==================== drm_test_fb_swab =====================
[20:36:28] [PASSED] single_pixel_source_buffer
[20:36:28] [PASSED] single_pixel_clip_rectangle
[20:36:28] [PASSED] well_known_colors
[20:36:28] [PASSED] destination_pitch
[20:36:28] ================ [PASSED] drm_test_fb_swab =================
[20:36:28] ============ drm_test_fb_xrgb8888_to_xbgr8888 =============
[20:36:28] [PASSED] single_pixel_source_buffer
[20:36:28] [PASSED] single_pixel_clip_rectangle
[20:36:28] [PASSED] well_known_colors
[20:36:28] [PASSED] destination_pitch
[20:36:28] ======== [PASSED] drm_test_fb_xrgb8888_to_xbgr8888 =========
[20:36:28] ============ drm_test_fb_xrgb8888_to_abgr8888 =============
[20:36:28] [PASSED] single_pixel_source_buffer
[20:36:28] [PASSED] single_pixel_clip_rectangle
[20:36:28] [PASSED] well_known_colors
[20:36:28] [PASSED] destination_pitch
[20:36:28] ======== [PASSED] drm_test_fb_xrgb8888_to_abgr8888 =========
[20:36:28] ================= drm_test_fb_clip_offset =================
[20:36:28] [PASSED] pass through
[20:36:28] [PASSED] horizontal offset
[20:36:28] [PASSED] vertical offset
[20:36:28] [PASSED] horizontal and vertical offset
[20:36:28] [PASSED] horizontal offset (custom pitch)
[20:36:28] [PASSED] vertical offset (custom pitch)
[20:36:28] [PASSED] horizontal and vertical offset (custom pitch)
[20:36:28] ============= [PASSED] drm_test_fb_clip_offset =============
[20:36:28] =================== drm_test_fb_memcpy ====================
[20:36:28] [PASSED] single_pixel_source_buffer: XR24 little-endian (0x34325258)
[20:36:28] [PASSED] single_pixel_source_buffer: XRA8 little-endian (0x38415258)
[20:36:28] [PASSED] single_pixel_source_buffer: YU24 little-endian (0x34325559)
[20:36:28] [PASSED] single_pixel_clip_rectangle: XB24 little-endian (0x34324258)
[20:36:28] [PASSED] single_pixel_clip_rectangle: XRA8 little-endian (0x38415258)
[20:36:28] [PASSED] single_pixel_clip_rectangle: YU24 little-endian (0x34325559)
[20:36:28] [PASSED] well_known_colors: XB24 little-endian (0x34324258)
[20:36:28] [PASSED] well_known_colors: XRA8 little-endian (0x38415258)
[20:36:28] [PASSED] well_known_colors: YU24 little-endian (0x34325559)
[20:36:28] [PASSED] destination_pitch: XB24 little-endian (0x34324258)
[20:36:28] [PASSED] destination_pitch: XRA8 little-endian (0x38415258)
[20:36:28] [PASSED] destination_pitch: YU24 little-endian (0x34325559)
[20:36:28] =============== [PASSED] drm_test_fb_memcpy ================
[20:36:28] ============= [PASSED] drm_format_helper_test ==============
[20:36:28] ================= drm_format (18 subtests) =================
[20:36:28] [PASSED] drm_test_format_block_width_invalid
[20:36:28] [PASSED] drm_test_format_block_width_one_plane
[20:36:28] [PASSED] drm_test_format_block_width_two_plane
[20:36:28] [PASSED] drm_test_format_block_width_three_plane
[20:36:28] [PASSED] drm_test_format_block_width_tiled
[20:36:28] [PASSED] drm_test_format_block_height_invalid
[20:36:28] [PASSED] drm_test_format_block_height_one_plane
[20:36:28] [PASSED] drm_test_format_block_height_two_plane
[20:36:28] [PASSED] drm_test_format_block_height_three_plane
[20:36:28] [PASSED] drm_test_format_block_height_tiled
[20:36:28] [PASSED] drm_test_format_min_pitch_invalid
[20:36:28] [PASSED] drm_test_format_min_pitch_one_plane_8bpp
[20:36:28] [PASSED] drm_test_format_min_pitch_one_plane_16bpp
[20:36:28] [PASSED] drm_test_format_min_pitch_one_plane_24bpp
[20:36:28] [PASSED] drm_test_format_min_pitch_one_plane_32bpp
[20:36:28] [PASSED] drm_test_format_min_pitch_two_plane
[20:36:28] [PASSED] drm_test_format_min_pitch_three_plane_8bpp
[20:36:28] [PASSED] drm_test_format_min_pitch_tiled
[20:36:28] =================== [PASSED] drm_format ====================
[20:36:28] ============== drm_framebuffer (10 subtests) ===============
[20:36:28] ========== drm_test_framebuffer_check_src_coords ==========
[20:36:28] [PASSED] Success: source fits into fb
[20:36:28] [PASSED] Fail: overflowing fb with x-axis coordinate
[20:36:28] [PASSED] Fail: overflowing fb with y-axis coordinate
[20:36:28] [PASSED] Fail: overflowing fb with source width
[20:36:28] [PASSED] Fail: overflowing fb with source height
[20:36:28] ====== [PASSED] drm_test_framebuffer_check_src_coords ======
[20:36:28] [PASSED] drm_test_framebuffer_cleanup
[20:36:28] =============== drm_test_framebuffer_create ===============
[20:36:28] [PASSED] ABGR8888 normal sizes
[20:36:28] [PASSED] ABGR8888 max sizes
[20:36:28] [PASSED] ABGR8888 pitch greater than min required
[20:36:28] [PASSED] ABGR8888 pitch less than min required
[20:36:28] [PASSED] ABGR8888 Invalid width
[20:36:28] [PASSED] ABGR8888 Invalid buffer handle
[20:36:28] [PASSED] No pixel format
[20:36:28] [PASSED] ABGR8888 Width 0
[20:36:28] [PASSED] ABGR8888 Height 0
[20:36:28] [PASSED] ABGR8888 Out of bound height * pitch combination
[20:36:28] [PASSED] ABGR8888 Large buffer offset
[20:36:28] [PASSED] ABGR8888 Buffer offset for inexistent plane
[20:36:28] [PASSED] ABGR8888 Invalid flag
[20:36:28] [PASSED] ABGR8888 Set DRM_MODE_FB_MODIFIERS without modifiers
[20:36:28] [PASSED] ABGR8888 Valid buffer modifier
[20:36:28] [PASSED] ABGR8888 Invalid buffer modifier(DRM_FORMAT_MOD_SAMSUNG_64_32_TILE)
[20:36:28] [PASSED] ABGR8888 Extra pitches without DRM_MODE_FB_MODIFIERS
[20:36:28] [PASSED] ABGR8888 Extra pitches with DRM_MODE_FB_MODIFIERS
[20:36:28] [PASSED] NV12 Normal sizes
[20:36:28] [PASSED] NV12 Max sizes
[20:36:28] [PASSED] NV12 Invalid pitch
[20:36:28] [PASSED] NV12 Invalid modifier/missing DRM_MODE_FB_MODIFIERS flag
[20:36:28] [PASSED] NV12 different modifier per-plane
[20:36:28] [PASSED] NV12 with DRM_FORMAT_MOD_SAMSUNG_64_32_TILE
[20:36:28] [PASSED] NV12 Valid modifiers without DRM_MODE_FB_MODIFIERS
[20:36:28] [PASSED] NV12 Modifier for inexistent plane
[20:36:28] [PASSED] NV12 Handle for inexistent plane
[20:36:28] [PASSED] NV12 Handle for inexistent plane without DRM_MODE_FB_MODIFIERS
[20:36:28] [PASSED] YVU420 DRM_MODE_FB_MODIFIERS set without modifier
[20:36:28] [PASSED] YVU420 Normal sizes
[20:36:28] [PASSED] YVU420 Max sizes
[20:36:28] [PASSED] YVU420 Invalid pitch
[20:36:28] [PASSED] YVU420 Different pitches
[20:36:28] [PASSED] YVU420 Different buffer offsets/pitches
[20:36:28] [PASSED] YVU420 Modifier set just for plane 0, without DRM_MODE_FB_MODIFIERS
[20:36:28] [PASSED] YVU420 Modifier set just for planes 0, 1, without DRM_MODE_FB_MODIFIERS
[20:36:28] [PASSED] YVU420 Modifier set just for plane 0, 1, with DRM_MODE_FB_MODIFIERS
[20:36:28] [PASSED] YVU420 Valid modifier
[20:36:28] [PASSED] YVU420 Different modifiers per plane
[20:36:28] [PASSED] YVU420 Modifier for inexistent plane
[20:36:28] [PASSED] YUV420_10BIT Invalid modifier(DRM_FORMAT_MOD_LINEAR)
[20:36:28] [PASSED] X0L2 Normal sizes
[20:36:28] [PASSED] X0L2 Max sizes
[20:36:28] [PASSED] X0L2 Invalid pitch
[20:36:28] [PASSED] X0L2 Pitch greater than minimum required
[20:36:28] [PASSED] X0L2 Handle for inexistent plane
[20:36:28] [PASSED] X0L2 Offset for inexistent plane, without DRM_MODE_FB_MODIFIERS set
[20:36:28] [PASSED] X0L2 Modifier without DRM_MODE_FB_MODIFIERS set
[20:36:28] [PASSED] X0L2 Valid modifier
[20:36:28] [PASSED] X0L2 Modifier for inexistent plane
[20:36:28] =========== [PASSED] drm_test_framebuffer_create ===========
[20:36:28] [PASSED] drm_test_framebuffer_free
[20:36:28] [PASSED] drm_test_framebuffer_init
[20:36:28] [PASSED] drm_test_framebuffer_init_bad_format
[20:36:28] [PASSED] drm_test_framebuffer_init_dev_mismatch
[20:36:28] [PASSED] drm_test_framebuffer_lookup
[20:36:28] [PASSED] drm_test_framebuffer_lookup_inexistent
[20:36:28] [PASSED] drm_test_framebuffer_modifiers_not_supported
[20:36:28] ================= [PASSED] drm_framebuffer =================
[20:36:28] ================ drm_gem_shmem (8 subtests) ================
[20:36:28] [PASSED] drm_gem_shmem_test_obj_create
[20:36:28] [PASSED] drm_gem_shmem_test_obj_create_private
[20:36:28] [PASSED] drm_gem_shmem_test_pin_pages
[20:36:28] [PASSED] drm_gem_shmem_test_vmap
[20:36:28] [PASSED] drm_gem_shmem_test_get_sg_table
[20:36:28] [PASSED] drm_gem_shmem_test_get_pages_sgt
[20:36:28] [PASSED] drm_gem_shmem_test_madvise
[20:36:28] [PASSED] drm_gem_shmem_test_purge
[20:36:28] ================== [PASSED] drm_gem_shmem ==================
[20:36:28] === drm_atomic_helper_connector_hdmi_check (27 subtests) ===
[20:36:28] [PASSED] drm_test_check_broadcast_rgb_auto_cea_mode
[20:36:28] [PASSED] drm_test_check_broadcast_rgb_auto_cea_mode_vic_1
[20:36:28] [PASSED] drm_test_check_broadcast_rgb_full_cea_mode
[20:36:28] [PASSED] drm_test_check_broadcast_rgb_full_cea_mode_vic_1
[20:36:28] [PASSED] drm_test_check_broadcast_rgb_limited_cea_mode
[20:36:28] [PASSED] drm_test_check_broadcast_rgb_limited_cea_mode_vic_1
[20:36:28] ====== drm_test_check_broadcast_rgb_cea_mode_yuv420 =======
[20:36:28] [PASSED] Automatic
[20:36:28] [PASSED] Full
[20:36:28] [PASSED] Limited 16:235
[20:36:28] == [PASSED] drm_test_check_broadcast_rgb_cea_mode_yuv420 ===
[20:36:28] [PASSED] drm_test_check_broadcast_rgb_crtc_mode_changed
[20:36:28] [PASSED] drm_test_check_broadcast_rgb_crtc_mode_not_changed
[20:36:28] [PASSED] drm_test_check_disable_connector
[20:36:28] [PASSED] drm_test_check_hdmi_funcs_reject_rate
[20:36:28] [PASSED] drm_test_check_max_tmds_rate_bpc_fallback_rgb
[20:36:28] [PASSED] drm_test_check_max_tmds_rate_bpc_fallback_yuv420
[20:36:28] [PASSED] drm_test_check_max_tmds_rate_bpc_fallback_ignore_yuv422
[20:36:28] [PASSED] drm_test_check_max_tmds_rate_bpc_fallback_ignore_yuv420
[20:36:28] [PASSED] drm_test_check_driver_unsupported_fallback_yuv420
[20:36:28] [PASSED] drm_test_check_output_bpc_crtc_mode_changed
[20:36:28] [PASSED] drm_test_check_output_bpc_crtc_mode_not_changed
[20:36:28] [PASSED] drm_test_check_output_bpc_dvi
[20:36:28] [PASSED] drm_test_check_output_bpc_format_vic_1
[20:36:28] [PASSED] drm_test_check_output_bpc_format_display_8bpc_only
[20:36:28] [PASSED] drm_test_check_output_bpc_format_display_rgb_only
[20:36:28] [PASSED] drm_test_check_output_bpc_format_driver_8bpc_only
[20:36:28] [PASSED] drm_test_check_output_bpc_format_driver_rgb_only
[20:36:28] [PASSED] drm_test_check_tmds_char_rate_rgb_8bpc
[20:36:28] [PASSED] drm_test_check_tmds_char_rate_rgb_10bpc
[20:36:28] [PASSED] drm_test_check_tmds_char_rate_rgb_12bpc
[20:36:28] ===== [PASSED] drm_atomic_helper_connector_hdmi_check ======
[20:36:28] === drm_atomic_helper_connector_hdmi_reset (6 subtests) ====
[20:36:28] [PASSED] drm_test_check_broadcast_rgb_value
[20:36:28] [PASSED] drm_test_check_bpc_8_value
[20:36:28] [PASSED] drm_test_check_bpc_10_value
[20:36:28] [PASSED] drm_test_check_bpc_12_value
[20:36:28] [PASSED] drm_test_check_format_value
[20:36:28] [PASSED] drm_test_check_tmds_char_value
[20:36:28] ===== [PASSED] drm_atomic_helper_connector_hdmi_reset ======
[20:36:28] = drm_atomic_helper_connector_hdmi_mode_valid (4 subtests) =
[20:36:28] [PASSED] drm_test_check_mode_valid
[20:36:28] [PASSED] drm_test_check_mode_valid_reject
[20:36:28] [PASSED] drm_test_check_mode_valid_reject_rate
[20:36:28] [PASSED] drm_test_check_mode_valid_reject_max_clock
[20:36:28] === [PASSED] drm_atomic_helper_connector_hdmi_mode_valid ===
[20:36:28] ================= drm_managed (2 subtests) =================
[20:36:28] [PASSED] drm_test_managed_release_action
[20:36:28] [PASSED] drm_test_managed_run_action
[20:36:28] =================== [PASSED] drm_managed ===================
[20:36:28] =================== drm_mm (6 subtests) ====================
[20:36:28] [PASSED] drm_test_mm_init
[20:36:28] [PASSED] drm_test_mm_debug
[20:36:28] [PASSED] drm_test_mm_align32
[20:36:28] [PASSED] drm_test_mm_align64
[20:36:28] [PASSED] drm_test_mm_lowest
[20:36:28] [PASSED] drm_test_mm_highest
[20:36:28] ===================== [PASSED] drm_mm ======================
[20:36:28] ============= drm_modes_analog_tv (5 subtests) =============
[20:36:28] [PASSED] drm_test_modes_analog_tv_mono_576i
[20:36:28] [PASSED] drm_test_modes_analog_tv_ntsc_480i
[20:36:28] [PASSED] drm_test_modes_analog_tv_ntsc_480i_inlined
[20:36:28] [PASSED] drm_test_modes_analog_tv_pal_576i
[20:36:28] [PASSED] drm_test_modes_analog_tv_pal_576i_inlined
[20:36:28] =============== [PASSED] drm_modes_analog_tv ===============
[20:36:28] ============== drm_plane_helper (2 subtests) ===============
[20:36:28] =============== drm_test_check_plane_state ================
[20:36:28] [PASSED] clipping_simple
[20:36:28] [PASSED] clipping_rotate_reflect
[20:36:28] [PASSED] positioning_simple
[20:36:28] [PASSED] upscaling
[20:36:28] [PASSED] downscaling
[20:36:28] [PASSED] rounding1
[20:36:28] [PASSED] rounding2
[20:36:28] [PASSED] rounding3
[20:36:28] [PASSED] rounding4
[20:36:28] =========== [PASSED] drm_test_check_plane_state ============
[20:36:28] =========== drm_test_check_invalid_plane_state ============
[20:36:28] [PASSED] positioning_invalid
[20:36:28] [PASSED] upscaling_invalid
[20:36:28] [PASSED] downscaling_invalid
[20:36:28] ======= [PASSED] drm_test_check_invalid_plane_state ========
[20:36:28] ================ [PASSED] drm_plane_helper =================
[20:36:28] ====== drm_connector_helper_tv_get_modes (1 subtest) =======
[20:36:28] ====== drm_test_connector_helper_tv_get_modes_check =======
[20:36:28] [PASSED] None
[20:36:28] [PASSED] PAL
[20:36:28] [PASSED] NTSC
[20:36:28] [PASSED] Both, NTSC Default
[20:36:28] [PASSED] Both, PAL Default
[20:36:28] [PASSED] Both, NTSC Default, with PAL on command-line
[20:36:28] [PASSED] Both, PAL Default, with NTSC on command-line
[20:36:28] == [PASSED] drm_test_connector_helper_tv_get_modes_check ===
[20:36:28] ======== [PASSED] drm_connector_helper_tv_get_modes ========
[20:36:28] ================== drm_rect (9 subtests) ===================
[20:36:28] [PASSED] drm_test_rect_clip_scaled_div_by_zero
[20:36:28] [PASSED] drm_test_rect_clip_scaled_not_clipped
[20:36:28] [PASSED] drm_test_rect_clip_scaled_clipped
[20:36:28] [PASSED] drm_test_rect_clip_scaled_signed_vs_unsigned
[20:36:28] ================= drm_test_rect_intersect =================
[20:36:28] [PASSED] top-left x bottom-right: 2x2+1+1 x 2x2+0+0
[20:36:28] [PASSED] top-right x bottom-left: 2x2+0+0 x 2x2+1-1
[20:36:28] [PASSED] bottom-left x top-right: 2x2+1-1 x 2x2+0+0
[20:36:28] [PASSED] bottom-right x top-left: 2x2+0+0 x 2x2+1+1
[20:36:28] [PASSED] right x left: 2x1+0+0 x 3x1+1+0
[20:36:28] [PASSED] left x right: 3x1+1+0 x 2x1+0+0
[20:36:28] [PASSED] up x bottom: 1x2+0+0 x 1x3+0-1
[20:36:28] [PASSED] bottom x up: 1x3+0-1 x 1x2+0+0
[20:36:28] [PASSED] touching corner: 1x1+0+0 x 2x2+1+1
[20:36:28] [PASSED] touching side: 1x1+0+0 x 1x1+1+0
[20:36:28] [PASSED] equal rects: 2x2+0+0 x 2x2+0+0
[20:36:28] [PASSED] inside another: 2x2+0+0 x 1x1+1+1
[20:36:28] [PASSED] far away: 1x1+0+0 x 1x1+3+6
[20:36:28] [PASSED] points intersecting: 0x0+5+10 x 0x0+5+10
[20:36:28] [PASSED] points not intersecting: 0x0+0+0 x 0x0+5+10
[20:36:28] ============= [PASSED] drm_test_rect_intersect =============
[20:36:28] ================ drm_test_rect_calc_hscale ================
[20:36:28] [PASSED] normal use
[20:36:28] [PASSED] out of max range
[20:36:28] [PASSED] out of min range
[20:36:28] [PASSED] zero dst
[20:36:28] [PASSED] negative src
[20:36:28] [PASSED] negative dst
[20:36:28] ============ [PASSED] drm_test_rect_calc_hscale ============
[20:36:28] ================ drm_test_rect_calc_vscale ================
[20:36:28] [PASSED] normal use
stty: 'standard input': Inappropriate ioctl for device
[20:36:28] [PASSED] out of max range
[20:36:28] [PASSED] out of min range
[20:36:28] [PASSED] zero dst
[20:36:28] [PASSED] negative src
[20:36:28] [PASSED] negative dst
[20:36:28] ============ [PASSED] drm_test_rect_calc_vscale ============
[20:36:28] ================== drm_test_rect_rotate ===================
[20:36:28] [PASSED] reflect-x
[20:36:28] [PASSED] reflect-y
[20:36:28] [PASSED] rotate-0
[20:36:28] [PASSED] rotate-90
[20:36:28] [PASSED] rotate-180
[20:36:28] [PASSED] rotate-270
[20:36:28] ============== [PASSED] drm_test_rect_rotate ===============
[20:36:28] ================ drm_test_rect_rotate_inv =================
[20:36:28] [PASSED] reflect-x
[20:36:28] [PASSED] reflect-y
[20:36:28] [PASSED] rotate-0
[20:36:28] [PASSED] rotate-90
[20:36:28] [PASSED] rotate-180
[20:36:28] [PASSED] rotate-270
[20:36:28] ============ [PASSED] drm_test_rect_rotate_inv =============
[20:36:28] ==================== [PASSED] drm_rect =====================
[20:36:28] ============ drm_sysfb_modeset_test (1 subtest) ============
[20:36:28] ============ drm_test_sysfb_build_fourcc_list =============
[20:36:28] [PASSED] no native formats
[20:36:28] [PASSED] XRGB8888 as native format
[20:36:28] [PASSED] remove duplicates
[20:36:28] [PASSED] convert alpha formats
[20:36:28] [PASSED] random formats
[20:36:28] ======== [PASSED] drm_test_sysfb_build_fourcc_list =========
[20:36:28] ============= [PASSED] drm_sysfb_modeset_test ==============
[20:36:28] ================== drm_fixp (2 subtests) ===================
[20:36:28] [PASSED] drm_test_int2fixp
[20:36:28] [PASSED] drm_test_sm2fixp
[20:36:28] ==================== [PASSED] drm_fixp =====================
[20:36:28] ============================================================
[20:36:28] Testing complete. Ran 624 tests: passed: 624
[20:36:28] Elapsed time: 27.521s total, 1.687s configuring, 25.363s building, 0.423s running
+ /kernel/tools/testing/kunit/kunit.py run --kunitconfig /kernel/drivers/gpu/drm/ttm/tests/.kunitconfig
[20:36:28] Configuring KUnit Kernel ...
Regenerating .config ...
Populating config with:
$ make ARCH=um O=.kunit olddefconfig
[20:36: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
[20:36:39] Starting KUnit Kernel (1/1)...
[20:36:39] ============================================================
Running tests with:
$ .kunit/linux kunit.enable=1 mem=1G console=tty kunit_shutdown=halt
[20:36:39] ================= ttm_device (5 subtests) ==================
[20:36:39] [PASSED] ttm_device_init_basic
[20:36:39] [PASSED] ttm_device_init_multiple
[20:36:39] [PASSED] ttm_device_fini_basic
[20:36:39] [PASSED] ttm_device_init_no_vma_man
[20:36:39] ================== ttm_device_init_pools ==================
[20:36:39] [PASSED] No DMA allocations, no DMA32 required
[20:36:39] [PASSED] DMA allocations, DMA32 required
[20:36:39] [PASSED] No DMA allocations, DMA32 required
[20:36:39] [PASSED] DMA allocations, no DMA32 required
[20:36:39] ============== [PASSED] ttm_device_init_pools ==============
[20:36:39] =================== [PASSED] ttm_device ====================
[20:36:39] ================== ttm_pool (8 subtests) ===================
[20:36:39] ================== ttm_pool_alloc_basic ===================
[20:36:39] [PASSED] One page
[20:36:39] [PASSED] More than one page
[20:36:39] [PASSED] Above the allocation limit
[20:36:39] [PASSED] One page, with coherent DMA mappings enabled
[20:36:39] [PASSED] Above the allocation limit, with coherent DMA mappings enabled
[20:36:39] ============== [PASSED] ttm_pool_alloc_basic ===============
[20:36:39] ============== ttm_pool_alloc_basic_dma_addr ==============
[20:36:39] [PASSED] One page
[20:36:39] [PASSED] More than one page
[20:36:39] [PASSED] Above the allocation limit
[20:36:39] [PASSED] One page, with coherent DMA mappings enabled
[20:36:39] [PASSED] Above the allocation limit, with coherent DMA mappings enabled
[20:36:39] ========== [PASSED] ttm_pool_alloc_basic_dma_addr ==========
[20:36:39] [PASSED] ttm_pool_alloc_order_caching_match
[20:36:39] [PASSED] ttm_pool_alloc_caching_mismatch
[20:36:39] [PASSED] ttm_pool_alloc_order_mismatch
[20:36:39] [PASSED] ttm_pool_free_dma_alloc
[20:36:39] [PASSED] ttm_pool_free_no_dma_alloc
[20:36:39] [PASSED] ttm_pool_fini_basic
[20:36:39] ==================== [PASSED] ttm_pool =====================
[20:36:39] ================ ttm_resource (8 subtests) =================
[20:36:39] ================= ttm_resource_init_basic =================
[20:36:39] [PASSED] Init resource in TTM_PL_SYSTEM
[20:36:39] [PASSED] Init resource in TTM_PL_VRAM
[20:36:39] [PASSED] Init resource in a private placement
[20:36:39] [PASSED] Init resource in TTM_PL_SYSTEM, set placement flags
[20:36:39] ============= [PASSED] ttm_resource_init_basic =============
[20:36:39] [PASSED] ttm_resource_init_pinned
[20:36:39] [PASSED] ttm_resource_fini_basic
[20:36:39] [PASSED] ttm_resource_manager_init_basic
[20:36:39] [PASSED] ttm_resource_manager_usage_basic
[20:36:39] [PASSED] ttm_resource_manager_set_used_basic
[20:36:39] [PASSED] ttm_sys_man_alloc_basic
[20:36:39] [PASSED] ttm_sys_man_free_basic
[20:36:39] ================== [PASSED] ttm_resource ===================
[20:36:39] =================== ttm_tt (15 subtests) ===================
[20:36:39] ==================== ttm_tt_init_basic ====================
[20:36:39] [PASSED] Page-aligned size
[20:36:39] [PASSED] Extra pages requested
[20:36:39] ================ [PASSED] ttm_tt_init_basic ================
[20:36:39] [PASSED] ttm_tt_init_misaligned
[20:36:39] [PASSED] ttm_tt_fini_basic
[20:36:39] [PASSED] ttm_tt_fini_sg
[20:36:39] [PASSED] ttm_tt_fini_shmem
[20:36:39] [PASSED] ttm_tt_create_basic
[20:36:39] [PASSED] ttm_tt_create_invalid_bo_type
[20:36:39] [PASSED] ttm_tt_create_ttm_exists
[20:36:39] [PASSED] ttm_tt_create_failed
[20:36:39] [PASSED] ttm_tt_destroy_basic
[20:36:39] [PASSED] ttm_tt_populate_null_ttm
[20:36:39] [PASSED] ttm_tt_populate_populated_ttm
[20:36:39] [PASSED] ttm_tt_unpopulate_basic
[20:36:39] [PASSED] ttm_tt_unpopulate_empty_ttm
[20:36:39] [PASSED] ttm_tt_swapin_basic
[20:36:39] ===================== [PASSED] ttm_tt ======================
[20:36:39] =================== ttm_bo (14 subtests) ===================
[20:36:39] =========== ttm_bo_reserve_optimistic_no_ticket ===========
[20:36:39] [PASSED] Cannot be interrupted and sleeps
[20:36:39] [PASSED] Cannot be interrupted, locks straight away
[20:36:39] [PASSED] Can be interrupted, sleeps
[20:36:39] ======= [PASSED] ttm_bo_reserve_optimistic_no_ticket =======
[20:36:39] [PASSED] ttm_bo_reserve_locked_no_sleep
[20:36:39] [PASSED] ttm_bo_reserve_no_wait_ticket
[20:36:39] [PASSED] ttm_bo_reserve_double_resv
[20:36:39] [PASSED] ttm_bo_reserve_interrupted
[20:36:39] [PASSED] ttm_bo_reserve_deadlock
[20:36:39] [PASSED] ttm_bo_unreserve_basic
[20:36:39] [PASSED] ttm_bo_unreserve_pinned
[20:36:39] [PASSED] ttm_bo_unreserve_bulk
[20:36:39] [PASSED] ttm_bo_fini_basic
[20:36:39] [PASSED] ttm_bo_fini_shared_resv
[20:36:39] [PASSED] ttm_bo_pin_basic
[20:36:39] [PASSED] ttm_bo_pin_unpin_resource
[20:36:39] [PASSED] ttm_bo_multiple_pin_one_unpin
[20:36:39] ===================== [PASSED] ttm_bo ======================
[20:36:39] ============== ttm_bo_validate (21 subtests) ===============
[20:36:39] ============== ttm_bo_init_reserved_sys_man ===============
[20:36:39] [PASSED] Buffer object for userspace
[20:36:39] [PASSED] Kernel buffer object
[20:36:39] [PASSED] Shared buffer object
[20:36:39] ========== [PASSED] ttm_bo_init_reserved_sys_man ===========
[20:36:39] ============== ttm_bo_init_reserved_mock_man ==============
[20:36:39] [PASSED] Buffer object for userspace
[20:36:39] [PASSED] Kernel buffer object
[20:36:39] [PASSED] Shared buffer object
[20:36:39] ========== [PASSED] ttm_bo_init_reserved_mock_man ==========
[20:36:39] [PASSED] ttm_bo_init_reserved_resv
[20:36:39] ================== ttm_bo_validate_basic ==================
[20:36:39] [PASSED] Buffer object for userspace
[20:36:39] [PASSED] Kernel buffer object
[20:36:39] [PASSED] Shared buffer object
[20:36:39] ============== [PASSED] ttm_bo_validate_basic ==============
[20:36:39] [PASSED] ttm_bo_validate_invalid_placement
[20:36:39] ============= ttm_bo_validate_same_placement ==============
[20:36:39] [PASSED] System manager
[20:36:39] [PASSED] VRAM manager
[20:36:39] ========= [PASSED] ttm_bo_validate_same_placement ==========
[20:36:39] [PASSED] ttm_bo_validate_failed_alloc
[20:36:39] [PASSED] ttm_bo_validate_pinned
[20:36:39] [PASSED] ttm_bo_validate_busy_placement
[20:36:39] ================ ttm_bo_validate_multihop =================
[20:36:39] [PASSED] Buffer object for userspace
[20:36:39] [PASSED] Kernel buffer object
[20:36:39] [PASSED] Shared buffer object
[20:36:39] ============ [PASSED] ttm_bo_validate_multihop =============
[20:36:39] ========== ttm_bo_validate_no_placement_signaled ==========
[20:36:39] [PASSED] Buffer object in system domain, no page vector
[20:36:39] [PASSED] Buffer object in system domain with an existing page vector
[20:36:39] ====== [PASSED] ttm_bo_validate_no_placement_signaled ======
[20:36:39] ======== ttm_bo_validate_no_placement_not_signaled ========
[20:36:39] [PASSED] Buffer object for userspace
[20:36:39] [PASSED] Kernel buffer object
[20:36:39] [PASSED] Shared buffer object
[20:36:39] ==== [PASSED] ttm_bo_validate_no_placement_not_signaled ====
[20:36:39] [PASSED] ttm_bo_validate_move_fence_signaled
[20:36:39] ========= ttm_bo_validate_move_fence_not_signaled =========
[20:36:39] [PASSED] Waits for GPU
[20:36:39] [PASSED] Tries to lock straight away
[20:36:39] ===== [PASSED] ttm_bo_validate_move_fence_not_signaled =====
[20:36:39] [PASSED] ttm_bo_validate_happy_evict
[20:36:39] [PASSED] ttm_bo_validate_all_pinned_evict
[20:36:39] [PASSED] ttm_bo_validate_allowed_only_evict
[20:36:39] [PASSED] ttm_bo_validate_deleted_evict
[20:36:39] [PASSED] ttm_bo_validate_busy_domain_evict
[20:36:39] [PASSED] ttm_bo_validate_evict_gutting
[20:36:39] [PASSED] ttm_bo_validate_recrusive_evict
stty: 'standard input': Inappropriate ioctl for device
[20:36:39] ================= [PASSED] ttm_bo_validate =================
[20:36:39] ============================================================
[20:36:39] Testing complete. Ran 101 tests: passed: 101
[20:36:39] Elapsed time: 11.183s total, 1.620s configuring, 9.347s building, 0.182s running
+ cleanup
++ stat -c %u:%g /kernel
+ chown -R 1003:1003 /kernel
^ permalink raw reply [flat|nested] 13+ messages in thread
* ✓ Xe.CI.BAT: success for drm/xe/hwmon: Expose new temperature attributes (rev9)
2026-01-12 20:35 [PATCH v7 0/4] drm/xe/hwmon: Expose new temperature attributes Karthik Poosa
` (4 preceding siblings ...)
2026-01-12 20:36 ` ✓ CI.KUnit: success for drm/xe/hwmon: Expose new temperature attributes (rev9) Patchwork
@ 2026-01-12 21:12 ` Patchwork
2026-01-13 4:01 ` ✗ Xe.CI.Full: failure " Patchwork
6 siblings, 0 replies; 13+ messages in thread
From: Patchwork @ 2026-01-12 21:12 UTC (permalink / raw)
To: Karthik Poosa; +Cc: intel-xe
[-- Attachment #1: Type: text/plain, Size: 877 bytes --]
== Series Details ==
Series: drm/xe/hwmon: Expose new temperature attributes (rev9)
URL : https://patchwork.freedesktop.org/series/158384/
State : success
== Summary ==
CI Bug Log - changes from xe-4370-fb2e525015f1b65b83809995601ea7827ee08ab9_BAT -> xe-pw-158384v9_BAT
====================================================
Summary
-------
**SUCCESS**
No regressions found.
Participating hosts (12 -> 12)
------------------------------
No changes in participating hosts
Changes
-------
No changes found
Build changes
-------------
* Linux: xe-4370-fb2e525015f1b65b83809995601ea7827ee08ab9 -> xe-pw-158384v9
IGT_8697: 8697
xe-4370-fb2e525015f1b65b83809995601ea7827ee08ab9: fb2e525015f1b65b83809995601ea7827ee08ab9
xe-pw-158384v9: 158384v9
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158384v9/index.html
[-- Attachment #2: Type: text/html, Size: 1425 bytes --]
^ permalink raw reply [flat|nested] 13+ messages in thread
* ✗ Xe.CI.Full: failure for drm/xe/hwmon: Expose new temperature attributes (rev9)
2026-01-12 20:35 [PATCH v7 0/4] drm/xe/hwmon: Expose new temperature attributes Karthik Poosa
` (5 preceding siblings ...)
2026-01-12 21:12 ` ✓ Xe.CI.BAT: " Patchwork
@ 2026-01-13 4:01 ` Patchwork
6 siblings, 0 replies; 13+ messages in thread
From: Patchwork @ 2026-01-13 4:01 UTC (permalink / raw)
To: Karthik Poosa; +Cc: intel-xe
[-- Attachment #1: Type: text/plain, Size: 27209 bytes --]
== Series Details ==
Series: drm/xe/hwmon: Expose new temperature attributes (rev9)
URL : https://patchwork.freedesktop.org/series/158384/
State : failure
== Summary ==
CI Bug Log - changes from xe-4370-fb2e525015f1b65b83809995601ea7827ee08ab9_FULL -> xe-pw-158384v9_FULL
====================================================
Summary
-------
**WARNING**
Minor unknown changes coming with xe-pw-158384v9_FULL need to be verified
manually.
If you think the reported changes have nothing to do with the changes
introduced in xe-pw-158384v9_FULL, please notify your bug team (I915-ci-infra@lists.freedesktop.org) to allow them
to document this new failure mode, which will reduce false positives in CI.
Participating hosts (2 -> 2)
------------------------------
No changes in participating hosts
Possible new issues
-------------------
Here are the unknown changes that may have been introduced in xe-pw-158384v9_FULL:
### IGT changes ###
#### Warnings ####
* igt@kms_plane@plane-panning-bottom-right-suspend@pipe-a:
- shard-bmg: [DMESG-FAIL][1] ([Intel XE#1727]) -> [SKIP][2]
[1]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4370-fb2e525015f1b65b83809995601ea7827ee08ab9/shard-bmg-2/igt@kms_plane@plane-panning-bottom-right-suspend@pipe-a.html
[2]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158384v9/shard-bmg-7/igt@kms_plane@plane-panning-bottom-right-suspend@pipe-a.html
Known issues
------------
Here are the changes found in xe-pw-158384v9_FULL that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-180:
- shard-bmg: NOTRUN -> [SKIP][3] ([Intel XE#1124]) +2 other tests skip
[3]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158384v9/shard-bmg-8/igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-180.html
* igt@kms_bw@connected-linear-tiling-3-displays-3840x2160p:
- shard-bmg: NOTRUN -> [SKIP][4] ([Intel XE#2314] / [Intel XE#2894])
[4]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158384v9/shard-bmg-8/igt@kms_bw@connected-linear-tiling-3-displays-3840x2160p.html
* igt@kms_ccs@crc-primary-rotation-180-4-tiled-lnl-ccs@pipe-c-dp-2:
- shard-bmg: NOTRUN -> [SKIP][5] ([Intel XE#2652] / [Intel XE#787]) +8 other tests skip
[5]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158384v9/shard-bmg-8/igt@kms_ccs@crc-primary-rotation-180-4-tiled-lnl-ccs@pipe-c-dp-2.html
* igt@kms_ccs@crc-primary-suspend-y-tiled-gen12-rc-ccs-cc:
- shard-bmg: NOTRUN -> [SKIP][6] ([Intel XE#3432])
[6]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158384v9/shard-bmg-8/igt@kms_ccs@crc-primary-suspend-y-tiled-gen12-rc-ccs-cc.html
* igt@kms_ccs@missing-ccs-buffer-4-tiled-mtl-rc-ccs:
- shard-bmg: NOTRUN -> [SKIP][7] ([Intel XE#2887]) +3 other tests skip
[7]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158384v9/shard-bmg-10/igt@kms_ccs@missing-ccs-buffer-4-tiled-mtl-rc-ccs.html
* igt@kms_chamelium_color@gamma:
- shard-bmg: NOTRUN -> [SKIP][8] ([Intel XE#2325])
[8]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158384v9/shard-bmg-8/igt@kms_chamelium_color@gamma.html
* igt@kms_chamelium_hpd@hdmi-hpd-with-enabled-mode:
- shard-bmg: NOTRUN -> [SKIP][9] ([Intel XE#2252]) +1 other test skip
[9]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158384v9/shard-bmg-8/igt@kms_chamelium_hpd@hdmi-hpd-with-enabled-mode.html
* igt@kms_content_protection@dp-mst-type-0:
- shard-bmg: NOTRUN -> [SKIP][10] ([Intel XE#2390] / [Intel XE#6974])
[10]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158384v9/shard-bmg-8/igt@kms_content_protection@dp-mst-type-0.html
* igt@kms_content_protection@srm@pipe-a-dp-2:
- shard-bmg: NOTRUN -> [FAIL][11] ([Intel XE#1178] / [Intel XE#3304]) +1 other test fail
[11]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158384v9/shard-bmg-8/igt@kms_content_protection@srm@pipe-a-dp-2.html
* igt@kms_cursor_crc@cursor-random-256x85:
- shard-bmg: NOTRUN -> [SKIP][12] ([Intel XE#2320])
[12]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158384v9/shard-bmg-8/igt@kms_cursor_crc@cursor-random-256x85.html
* igt@kms_cursor_legacy@flip-vs-cursor-legacy:
- shard-bmg: NOTRUN -> [FAIL][13] ([Intel XE#4633])
[13]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158384v9/shard-bmg-8/igt@kms_cursor_legacy@flip-vs-cursor-legacy.html
* igt@kms_dirtyfb@fbc-dirtyfb-ioctl:
- shard-bmg: NOTRUN -> [SKIP][14] ([Intel XE#4210])
[14]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158384v9/shard-bmg-4/igt@kms_dirtyfb@fbc-dirtyfb-ioctl.html
* igt@kms_fbc_dirty_rect@fbc-dirty-rectangle-different-formats:
- shard-bmg: NOTRUN -> [SKIP][15] ([Intel XE#4422])
[15]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158384v9/shard-bmg-10/igt@kms_fbc_dirty_rect@fbc-dirty-rectangle-different-formats.html
* igt@kms_frontbuffer_tracking@fbc-rgb565-draw-blt:
- shard-bmg: NOTRUN -> [SKIP][16] ([Intel XE#4141]) +2 other tests skip
[16]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158384v9/shard-bmg-8/igt@kms_frontbuffer_tracking@fbc-rgb565-draw-blt.html
* igt@kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-indfb-msflip-blt:
- shard-bmg: NOTRUN -> [SKIP][17] ([Intel XE#2311]) +7 other tests skip
[17]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158384v9/shard-bmg-8/igt@kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-indfb-msflip-blt.html
* igt@kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-draw-render:
- shard-bmg: NOTRUN -> [SKIP][18] ([Intel XE#2313]) +8 other tests skip
[18]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158384v9/shard-bmg-4/igt@kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-draw-render.html
* igt@kms_hdr@bpc-switch-dpms@pipe-a-dp-2:
- shard-bmg: [PASS][19] -> [ABORT][20] ([Intel XE#6740]) +1 other test abort
[19]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4370-fb2e525015f1b65b83809995601ea7827ee08ab9/shard-bmg-10/igt@kms_hdr@bpc-switch-dpms@pipe-a-dp-2.html
[20]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158384v9/shard-bmg-9/igt@kms_hdr@bpc-switch-dpms@pipe-a-dp-2.html
* igt@kms_pm_dc@deep-pkgc:
- shard-bmg: NOTRUN -> [SKIP][21] ([Intel XE#2505])
[21]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158384v9/shard-bmg-8/igt@kms_pm_dc@deep-pkgc.html
* igt@kms_pm_rpm@modeset-lpsp-stress-no-wait:
- shard-bmg: NOTRUN -> [SKIP][22] ([Intel XE#1439] / [Intel XE#3141] / [Intel XE#836])
[22]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158384v9/shard-bmg-4/igt@kms_pm_rpm@modeset-lpsp-stress-no-wait.html
* igt@kms_psr2_su@page_flip-p010:
- shard-bmg: NOTRUN -> [SKIP][23] ([Intel XE#1406] / [Intel XE#2387])
[23]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158384v9/shard-bmg-8/igt@kms_psr2_su@page_flip-p010.html
* igt@kms_psr@psr-primary-render:
- shard-bmg: NOTRUN -> [SKIP][24] ([Intel XE#1406] / [Intel XE#2234] / [Intel XE#2850]) +2 other tests skip
[24]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158384v9/shard-bmg-10/igt@kms_psr@psr-primary-render.html
* igt@kms_rotation_crc@sprite-rotation-90-pos-100-0:
- shard-bmg: NOTRUN -> [SKIP][25] ([Intel XE#3414] / [Intel XE#3904])
[25]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158384v9/shard-bmg-8/igt@kms_rotation_crc@sprite-rotation-90-pos-100-0.html
* igt@kms_scaling_modes@scaling-mode-full-aspect:
- shard-bmg: NOTRUN -> [SKIP][26] ([Intel XE#2413])
[26]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158384v9/shard-bmg-4/igt@kms_scaling_modes@scaling-mode-full-aspect.html
* igt@kms_sharpness_filter@filter-rotations:
- shard-bmg: NOTRUN -> [SKIP][27] ([Intel XE#6503])
[27]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158384v9/shard-bmg-8/igt@kms_sharpness_filter@filter-rotations.html
* igt@kms_tv_load_detect@load-detect:
- shard-bmg: NOTRUN -> [SKIP][28] ([Intel XE#2450])
[28]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158384v9/shard-bmg-8/igt@kms_tv_load_detect@load-detect.html
* igt@testdisplay:
- shard-bmg: [PASS][29] -> [ABORT][30] ([Intel XE#6740] / [Intel XE#6976])
[29]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4370-fb2e525015f1b65b83809995601ea7827ee08ab9/shard-bmg-10/igt@testdisplay.html
[30]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158384v9/shard-bmg-8/igt@testdisplay.html
* igt@xe_eudebug@connect-user:
- shard-bmg: NOTRUN -> [SKIP][31] ([Intel XE#4837]) +2 other tests skip
[31]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158384v9/shard-bmg-8/igt@xe_eudebug@connect-user.html
* igt@xe_eudebug_online@pagefault-write-stress:
- shard-bmg: NOTRUN -> [SKIP][32] ([Intel XE#6665] / [Intel XE#6681])
[32]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158384v9/shard-bmg-8/igt@xe_eudebug_online@pagefault-write-stress.html
* igt@xe_exec_basic@multigpu-many-execqueues-many-vm-rebind:
- shard-bmg: NOTRUN -> [SKIP][33] ([Intel XE#2322]) +1 other test skip
[33]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158384v9/shard-bmg-8/igt@xe_exec_basic@multigpu-many-execqueues-many-vm-rebind.html
* igt@xe_exec_multi_queue@one-queue-preempt-mode-close-fd-smem:
- shard-bmg: NOTRUN -> [SKIP][34] ([Intel XE#6874]) +5 other tests skip
[34]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158384v9/shard-bmg-8/igt@xe_exec_multi_queue@one-queue-preempt-mode-close-fd-smem.html
* igt@xe_exec_system_allocator@threads-many-mmap-free-huge-nomemset:
- shard-bmg: NOTRUN -> [SKIP][35] ([Intel XE#4943]) +4 other tests skip
[35]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158384v9/shard-bmg-8/igt@xe_exec_system_allocator@threads-many-mmap-free-huge-nomemset.html
* igt@xe_module_load@load:
- shard-bmg: ([PASS][36], [PASS][37], [PASS][38], [PASS][39], [PASS][40], [PASS][41], [PASS][42], [PASS][43], [PASS][44], [PASS][45], [PASS][46], [PASS][47], [PASS][48], [PASS][49], [PASS][50], [PASS][51], [PASS][52], [PASS][53], [PASS][54], [PASS][55], [PASS][56], [PASS][57], [PASS][58], [PASS][59], [PASS][60]) -> ([PASS][61], [PASS][62], [PASS][63], [PASS][64], [PASS][65], [PASS][66], [PASS][67], [PASS][68], [PASS][69], [PASS][70], [PASS][71], [PASS][72], [PASS][73], [PASS][74], [PASS][75], [PASS][76], [PASS][77], [PASS][78], [PASS][79], [PASS][80], [SKIP][81], [PASS][82], [PASS][83], [PASS][84], [PASS][85], [PASS][86]) ([Intel XE#2457])
[36]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4370-fb2e525015f1b65b83809995601ea7827ee08ab9/shard-bmg-1/igt@xe_module_load@load.html
[37]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4370-fb2e525015f1b65b83809995601ea7827ee08ab9/shard-bmg-1/igt@xe_module_load@load.html
[38]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4370-fb2e525015f1b65b83809995601ea7827ee08ab9/shard-bmg-1/igt@xe_module_load@load.html
[39]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4370-fb2e525015f1b65b83809995601ea7827ee08ab9/shard-bmg-7/igt@xe_module_load@load.html
[40]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4370-fb2e525015f1b65b83809995601ea7827ee08ab9/shard-bmg-7/igt@xe_module_load@load.html
[41]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4370-fb2e525015f1b65b83809995601ea7827ee08ab9/shard-bmg-3/igt@xe_module_load@load.html
[42]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4370-fb2e525015f1b65b83809995601ea7827ee08ab9/shard-bmg-3/igt@xe_module_load@load.html
[43]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4370-fb2e525015f1b65b83809995601ea7827ee08ab9/shard-bmg-6/igt@xe_module_load@load.html
[44]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4370-fb2e525015f1b65b83809995601ea7827ee08ab9/shard-bmg-6/igt@xe_module_load@load.html
[45]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4370-fb2e525015f1b65b83809995601ea7827ee08ab9/shard-bmg-6/igt@xe_module_load@load.html
[46]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4370-fb2e525015f1b65b83809995601ea7827ee08ab9/shard-bmg-10/igt@xe_module_load@load.html
[47]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4370-fb2e525015f1b65b83809995601ea7827ee08ab9/shard-bmg-10/igt@xe_module_load@load.html
[48]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4370-fb2e525015f1b65b83809995601ea7827ee08ab9/shard-bmg-10/igt@xe_module_load@load.html
[49]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4370-fb2e525015f1b65b83809995601ea7827ee08ab9/shard-bmg-7/igt@xe_module_load@load.html
[50]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4370-fb2e525015f1b65b83809995601ea7827ee08ab9/shard-bmg-4/igt@xe_module_load@load.html
[51]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4370-fb2e525015f1b65b83809995601ea7827ee08ab9/shard-bmg-4/igt@xe_module_load@load.html
[52]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4370-fb2e525015f1b65b83809995601ea7827ee08ab9/shard-bmg-8/igt@xe_module_load@load.html
[53]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4370-fb2e525015f1b65b83809995601ea7827ee08ab9/shard-bmg-9/igt@xe_module_load@load.html
[54]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4370-fb2e525015f1b65b83809995601ea7827ee08ab9/shard-bmg-4/igt@xe_module_load@load.html
[55]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4370-fb2e525015f1b65b83809995601ea7827ee08ab9/shard-bmg-8/igt@xe_module_load@load.html
[56]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4370-fb2e525015f1b65b83809995601ea7827ee08ab9/shard-bmg-8/igt@xe_module_load@load.html
[57]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4370-fb2e525015f1b65b83809995601ea7827ee08ab9/shard-bmg-9/igt@xe_module_load@load.html
[58]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4370-fb2e525015f1b65b83809995601ea7827ee08ab9/shard-bmg-2/igt@xe_module_load@load.html
[59]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4370-fb2e525015f1b65b83809995601ea7827ee08ab9/shard-bmg-2/igt@xe_module_load@load.html
[60]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4370-fb2e525015f1b65b83809995601ea7827ee08ab9/shard-bmg-2/igt@xe_module_load@load.html
[61]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158384v9/shard-bmg-4/igt@xe_module_load@load.html
[62]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158384v9/shard-bmg-8/igt@xe_module_load@load.html
[63]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158384v9/shard-bmg-8/igt@xe_module_load@load.html
[64]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158384v9/shard-bmg-1/igt@xe_module_load@load.html
[65]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158384v9/shard-bmg-2/igt@xe_module_load@load.html
[66]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158384v9/shard-bmg-3/igt@xe_module_load@load.html
[67]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158384v9/shard-bmg-3/igt@xe_module_load@load.html
[68]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158384v9/shard-bmg-9/igt@xe_module_load@load.html
[69]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158384v9/shard-bmg-10/igt@xe_module_load@load.html
[70]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158384v9/shard-bmg-9/igt@xe_module_load@load.html
[71]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158384v9/shard-bmg-8/igt@xe_module_load@load.html
[72]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158384v9/shard-bmg-9/igt@xe_module_load@load.html
[73]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158384v9/shard-bmg-4/igt@xe_module_load@load.html
[74]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158384v9/shard-bmg-3/igt@xe_module_load@load.html
[75]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158384v9/shard-bmg-6/igt@xe_module_load@load.html
[76]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158384v9/shard-bmg-2/igt@xe_module_load@load.html
[77]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158384v9/shard-bmg-7/igt@xe_module_load@load.html
[78]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158384v9/shard-bmg-6/igt@xe_module_load@load.html
[79]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158384v9/shard-bmg-10/igt@xe_module_load@load.html
[80]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158384v9/shard-bmg-10/igt@xe_module_load@load.html
[81]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158384v9/shard-bmg-10/igt@xe_module_load@load.html
[82]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158384v9/shard-bmg-2/igt@xe_module_load@load.html
[83]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158384v9/shard-bmg-1/igt@xe_module_load@load.html
[84]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158384v9/shard-bmg-7/igt@xe_module_load@load.html
[85]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158384v9/shard-bmg-1/igt@xe_module_load@load.html
[86]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158384v9/shard-bmg-4/igt@xe_module_load@load.html
* igt@xe_multigpu_svm@mgpu-coherency-conflict:
- shard-bmg: NOTRUN -> [SKIP][87] ([Intel XE#6964])
[87]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158384v9/shard-bmg-8/igt@xe_multigpu_svm@mgpu-coherency-conflict.html
* igt@xe_pxp@pxp-stale-bo-exec-post-rpm:
- shard-bmg: NOTRUN -> [SKIP][88] ([Intel XE#4733])
[88]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158384v9/shard-bmg-10/igt@xe_pxp@pxp-stale-bo-exec-post-rpm.html
* igt@xe_query@multigpu-query-cs-cycles:
- shard-bmg: NOTRUN -> [SKIP][89] ([Intel XE#944])
[89]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158384v9/shard-bmg-8/igt@xe_query@multigpu-query-cs-cycles.html
#### Possible fixes ####
* igt@kms_atomic_transition@modeset-transition-nonblocking:
- shard-bmg: [ABORT][90] ([Intel XE#5545]) -> [PASS][91] +1 other test pass
[90]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4370-fb2e525015f1b65b83809995601ea7827ee08ab9/shard-bmg-2/igt@kms_atomic_transition@modeset-transition-nonblocking.html
[91]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158384v9/shard-bmg-8/igt@kms_atomic_transition@modeset-transition-nonblocking.html
* igt@kms_cursor_crc@cursor-sliding-256x256:
- shard-bmg: [FAIL][92] ([Intel XE#6747]) -> [PASS][93] +1 other test pass
[92]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4370-fb2e525015f1b65b83809995601ea7827ee08ab9/shard-bmg-2/igt@kms_cursor_crc@cursor-sliding-256x256.html
[93]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158384v9/shard-bmg-8/igt@kms_cursor_crc@cursor-sliding-256x256.html
* igt@kms_dp_link_training@non-uhbr-sst:
- shard-bmg: [DMESG-WARN][94] ([Intel XE#5254]) -> [PASS][95]
[94]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4370-fb2e525015f1b65b83809995601ea7827ee08ab9/shard-bmg-6/igt@kms_dp_link_training@non-uhbr-sst.html
[95]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158384v9/shard-bmg-10/igt@kms_dp_link_training@non-uhbr-sst.html
* igt@kms_flip@flip-vs-expired-vblank-interruptible:
- shard-lnl: [FAIL][96] ([Intel XE#301]) -> [PASS][97] +1 other test pass
[96]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4370-fb2e525015f1b65b83809995601ea7827ee08ab9/shard-lnl-7/igt@kms_flip@flip-vs-expired-vblank-interruptible.html
[97]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158384v9/shard-lnl-8/igt@kms_flip@flip-vs-expired-vblank-interruptible.html
* igt@kms_hdr@bpc-switch@pipe-a-dp-2:
- shard-bmg: [ABORT][98] ([Intel XE#6740]) -> [PASS][99] +1 other test pass
[98]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4370-fb2e525015f1b65b83809995601ea7827ee08ab9/shard-bmg-7/igt@kms_hdr@bpc-switch@pipe-a-dp-2.html
[99]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158384v9/shard-bmg-4/igt@kms_hdr@bpc-switch@pipe-a-dp-2.html
* igt@kms_vrr@cmrr@pipe-a-edp-1:
- shard-lnl: [FAIL][100] ([Intel XE#4459]) -> [PASS][101] +1 other test pass
[100]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4370-fb2e525015f1b65b83809995601ea7827ee08ab9/shard-lnl-2/igt@kms_vrr@cmrr@pipe-a-edp-1.html
[101]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158384v9/shard-lnl-3/igt@kms_vrr@cmrr@pipe-a-edp-1.html
* igt@xe_evict@evict-mixed-many-threads-small:
- shard-bmg: [INCOMPLETE][102] ([Intel XE#6321]) -> [PASS][103]
[102]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4370-fb2e525015f1b65b83809995601ea7827ee08ab9/shard-bmg-8/igt@xe_evict@evict-mixed-many-threads-small.html
[103]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158384v9/shard-bmg-1/igt@xe_evict@evict-mixed-many-threads-small.html
* igt@xe_exec_system_allocator@pat-index-madvise-pat-idx-uc-single-vma:
- shard-lnl: [FAIL][104] ([Intel XE#5625]) -> [PASS][105]
[104]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4370-fb2e525015f1b65b83809995601ea7827ee08ab9/shard-lnl-5/igt@xe_exec_system_allocator@pat-index-madvise-pat-idx-uc-single-vma.html
[105]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158384v9/shard-lnl-7/igt@xe_exec_system_allocator@pat-index-madvise-pat-idx-uc-single-vma.html
#### Warnings ####
* igt@kms_hdr@brightness-with-hdr:
- shard-bmg: [SKIP][106] ([Intel XE#3544]) -> [SKIP][107] ([Intel XE#3374] / [Intel XE#3544])
[106]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4370-fb2e525015f1b65b83809995601ea7827ee08ab9/shard-bmg-4/igt@kms_hdr@brightness-with-hdr.html
[107]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158384v9/shard-bmg-3/igt@kms_hdr@brightness-with-hdr.html
* igt@kms_plane@plane-panning-bottom-right-suspend:
- shard-bmg: [DMESG-FAIL][108] ([Intel XE#1727]) -> [INCOMPLETE][109] ([Intel XE#1035])
[108]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4370-fb2e525015f1b65b83809995601ea7827ee08ab9/shard-bmg-2/igt@kms_plane@plane-panning-bottom-right-suspend.html
[109]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158384v9/shard-bmg-7/igt@kms_plane@plane-panning-bottom-right-suspend.html
* igt@kms_tiled_display@basic-test-pattern:
- shard-bmg: [SKIP][110] ([Intel XE#2426]) -> [FAIL][111] ([Intel XE#1729])
[110]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4370-fb2e525015f1b65b83809995601ea7827ee08ab9/shard-bmg-7/igt@kms_tiled_display@basic-test-pattern.html
[111]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158384v9/shard-bmg-4/igt@kms_tiled_display@basic-test-pattern.html
[Intel XE#1035]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1035
[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#1439]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1439
[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#2252]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2252
[Intel XE#2311]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2311
[Intel XE#2313]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2313
[Intel XE#2314]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2314
[Intel XE#2320]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2320
[Intel XE#2322]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2322
[Intel XE#2325]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2325
[Intel XE#2387]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2387
[Intel XE#2390]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2390
[Intel XE#2413]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2413
[Intel XE#2426]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2426
[Intel XE#2450]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2450
[Intel XE#2457]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2457
[Intel XE#2505]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2505
[Intel XE#2652]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2652
[Intel XE#2850]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2850
[Intel XE#2887]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2887
[Intel XE#2894]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2894
[Intel XE#301]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/301
[Intel XE#3141]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3141
[Intel XE#3304]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3304
[Intel XE#3374]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3374
[Intel XE#3414]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3414
[Intel XE#3432]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3432
[Intel XE#3544]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3544
[Intel XE#3904]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3904
[Intel XE#4141]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4141
[Intel XE#4210]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4210
[Intel XE#4422]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4422
[Intel XE#4459]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4459
[Intel XE#4633]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4633
[Intel XE#4733]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4733
[Intel XE#4837]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4837
[Intel XE#4943]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4943
[Intel XE#5254]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5254
[Intel XE#5545]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5545
[Intel XE#5625]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5625
[Intel XE#6321]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6321
[Intel XE#6503]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6503
[Intel XE#6665]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6665
[Intel XE#6681]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6681
[Intel XE#6740]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6740
[Intel XE#6747]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6747
[Intel XE#6874]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6874
[Intel XE#6964]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6964
[Intel XE#6974]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6974
[Intel XE#6976]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6976
[Intel XE#787]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/787
[Intel XE#836]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/836
[Intel XE#944]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/944
Build changes
-------------
* Linux: xe-4370-fb2e525015f1b65b83809995601ea7827ee08ab9 -> xe-pw-158384v9
IGT_8697: 8697
xe-4370-fb2e525015f1b65b83809995601ea7827ee08ab9: fb2e525015f1b65b83809995601ea7827ee08ab9
xe-pw-158384v9: 158384v9
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158384v9/index.html
[-- Attachment #2: Type: text/html, Size: 29357 bytes --]
^ permalink raw reply [flat|nested] 13+ messages in thread
* Re: [PATCH v7 4/4] drm/xe/hwmon: Expose individual VRAM channel temperature
2026-01-12 20:35 ` [PATCH v7 4/4] drm/xe/hwmon: Expose individual VRAM channel temperature Karthik Poosa
@ 2026-01-13 8:21 ` Raag Jadav
2026-01-13 9:58 ` Poosa, Karthik
0 siblings, 1 reply; 13+ messages in thread
From: Raag Jadav @ 2026-01-13 8:21 UTC (permalink / raw)
To: Karthik Poosa; +Cc: intel-xe, anshuman.gupta, badal.nilawar, rodrigo.vivi
On Tue, Jan 13, 2026 at 02:05:21AM +0530, Karthik Poosa wrote:
> Expose individual VRAM temperature attributes.
> Update Xe hwmon documentation for this entry.
...
> @@ -255,6 +264,8 @@ static struct xe_reg xe_hwmon_get_reg(struct xe_hwmon *hwmon, enum xe_hwmon_reg
> return BMG_PACKAGE_TEMPERATURE;
> else if (channel == CHANNEL_VRAM)
> return BMG_VRAM_TEMPERATURE;
> + else if (in_range(channel, CHANNEL_VRAM_N, CHANNEL_VRAM_N_MAX))
I think this should be
if (in_range(channel, CHANNEL_VRAM_N, MAX_VRAM_CHANNELS))
or did I miss something?
> + return BMG_VRAM_TEMPERATURE_N(channel - CHANNEL_VRAM_N);
> } else if (xe->info.platform == XE_DG2) {
> if (channel == CHANNEL_PKG)
> return PCU_CR_PACKAGE_TEMPERATURE;
...
> @@ -1353,6 +1415,8 @@ static int xe_hwmon_read_label(struct device *dev,
> enum hwmon_sensor_types type,
> u32 attr, int channel, const char **str)
> {
> + struct xe_hwmon *hwmon = dev_get_drvdata(dev);
> +
> switch (type) {
> case hwmon_temp:
> if (channel == CHANNEL_PKG)
> @@ -1363,6 +1427,8 @@ static int xe_hwmon_read_label(struct device *dev,
> *str = "mctrl";
> else if (channel == CHANNEL_PCIE)
> *str = "pcie";
> + else if (in_range(channel, CHANNEL_VRAM_N, CHANNEL_VRAM_N_MAX))
Ditto.
Raag
> + *str = hwmon->temp.vram_label[channel - CHANNEL_VRAM_N];
> return 0;
> case hwmon_power:
> case hwmon_energy:
> --
> 2.25.1
>
^ permalink raw reply [flat|nested] 13+ messages in thread
* Re: [PATCH v7 4/4] drm/xe/hwmon: Expose individual VRAM channel temperature
2026-01-13 8:21 ` Raag Jadav
@ 2026-01-13 9:58 ` Poosa, Karthik
2026-01-14 7:30 ` Raag Jadav
0 siblings, 1 reply; 13+ messages in thread
From: Poosa, Karthik @ 2026-01-13 9:58 UTC (permalink / raw)
To: Raag Jadav; +Cc: intel-xe, anshuman.gupta, badal.nilawar, rodrigo.vivi
[-- Attachment #1: Type: text/plain, Size: 1668 bytes --]
On 13-01-2026 13:51, Raag Jadav wrote:
> On Tue, Jan 13, 2026 at 02:05:21AM +0530, Karthik Poosa wrote:
>> Expose individual VRAM temperature attributes.
>> Update Xe hwmon documentation for this entry.
> ...
>
>> @@ -255,6 +264,8 @@ static struct xe_reg xe_hwmon_get_reg(struct xe_hwmon *hwmon, enum xe_hwmon_reg
>> return BMG_PACKAGE_TEMPERATURE;
>> else if (channel == CHANNEL_VRAM)
>> return BMG_VRAM_TEMPERATURE;
>> + else if (in_range(channel, CHANNEL_VRAM_N, CHANNEL_VRAM_N_MAX))
> I think this should be
>
> if (in_range(channel, CHANNEL_VRAM_N, MAX_VRAM_CHANNELS))
>
> or did I miss something?
I’ve ran IGT hwmon test and lm-sensors and didn't see any discrepancies
there, all available channels are seen.
>
>> + return BMG_VRAM_TEMPERATURE_N(channel - CHANNEL_VRAM_N);
>> } else if (xe->info.platform == XE_DG2) {
>> if (channel == CHANNEL_PKG)
>> return PCU_CR_PACKAGE_TEMPERATURE;
> ...
>
>> @@ -1353,6 +1415,8 @@ static int xe_hwmon_read_label(struct device *dev,
>> enum hwmon_sensor_types type,
>> u32 attr, int channel, const char **str)
>> {
>> + struct xe_hwmon *hwmon = dev_get_drvdata(dev);
>> +
>> switch (type) {
>> case hwmon_temp:
>> if (channel == CHANNEL_PKG)
>> @@ -1363,6 +1427,8 @@ static int xe_hwmon_read_label(struct device *dev,
>> *str = "mctrl";
>> else if (channel == CHANNEL_PCIE)
>> *str = "pcie";
>> + else if (in_range(channel, CHANNEL_VRAM_N, CHANNEL_VRAM_N_MAX))
> Ditto.
>
> Raag
>
>> + *str = hwmon->temp.vram_label[channel - CHANNEL_VRAM_N];
>> return 0;
>> case hwmon_power:
>> case hwmon_energy:
>> --
>> 2.25.1
>>
[-- Attachment #2: Type: text/html, Size: 3042 bytes --]
^ permalink raw reply [flat|nested] 13+ messages in thread
* Re: [PATCH v7 4/4] drm/xe/hwmon: Expose individual VRAM channel temperature
2026-01-13 9:58 ` Poosa, Karthik
@ 2026-01-14 7:30 ` Raag Jadav
2026-01-15 9:27 ` Poosa, Karthik
0 siblings, 1 reply; 13+ messages in thread
From: Raag Jadav @ 2026-01-14 7:30 UTC (permalink / raw)
To: Poosa, Karthik; +Cc: intel-xe, anshuman.gupta, badal.nilawar, rodrigo.vivi
On Tue, Jan 13, 2026 at 03:28:51PM +0530, Poosa, Karthik wrote:
> On 13-01-2026 13:51, Raag Jadav wrote:
> > On Tue, Jan 13, 2026 at 02:05:21AM +0530, Karthik Poosa wrote:
> > > Expose individual VRAM temperature attributes.
> > > Update Xe hwmon documentation for this entry.
> > ...
> >
> > > @@ -255,6 +264,8 @@ static struct xe_reg xe_hwmon_get_reg(struct xe_hwmon *hwmon, enum xe_hwmon_reg
> > > return BMG_PACKAGE_TEMPERATURE;
> > > else if (channel == CHANNEL_VRAM)
> > > return BMG_VRAM_TEMPERATURE;
> > > + else if (in_range(channel, CHANNEL_VRAM_N, CHANNEL_VRAM_N_MAX))
> > I think this should be
> >
> > if (in_range(channel, CHANNEL_VRAM_N, MAX_VRAM_CHANNELS))
> >
> > or did I miss something?
> I’ve ran IGT hwmon test and lm-sensors and didn't see any discrepancies
> there, all available channels are seen.
Sure, but shouldn't we fix the buggy logic?
Raag
> > > + return BMG_VRAM_TEMPERATURE_N(channel - CHANNEL_VRAM_N);
> > > } else if (xe->info.platform == XE_DG2) {
> > > if (channel == CHANNEL_PKG)
> > > return PCU_CR_PACKAGE_TEMPERATURE;
> > ...
> >
> > > @@ -1353,6 +1415,8 @@ static int xe_hwmon_read_label(struct device *dev,
> > > enum hwmon_sensor_types type,
> > > u32 attr, int channel, const char **str)
> > > {
> > > + struct xe_hwmon *hwmon = dev_get_drvdata(dev);
> > > +
> > > switch (type) {
> > > case hwmon_temp:
> > > if (channel == CHANNEL_PKG)
> > > @@ -1363,6 +1427,8 @@ static int xe_hwmon_read_label(struct device *dev,
> > > *str = "mctrl";
> > > else if (channel == CHANNEL_PCIE)
> > > *str = "pcie";
> > > + else if (in_range(channel, CHANNEL_VRAM_N, CHANNEL_VRAM_N_MAX))
> > Ditto.
> >
> > Raag
> >
> > > + *str = hwmon->temp.vram_label[channel - CHANNEL_VRAM_N];
> > > return 0;
> > > case hwmon_power:
> > > case hwmon_energy:
> > > --
> > > 2.25.1
> > >
^ permalink raw reply [flat|nested] 13+ messages in thread
* Re: [PATCH v7 4/4] drm/xe/hwmon: Expose individual VRAM channel temperature
2026-01-14 7:30 ` Raag Jadav
@ 2026-01-15 9:27 ` Poosa, Karthik
2026-01-19 14:30 ` Poosa, Karthik
0 siblings, 1 reply; 13+ messages in thread
From: Poosa, Karthik @ 2026-01-15 9:27 UTC (permalink / raw)
To: Raag Jadav; +Cc: intel-xe, anshuman.gupta, badal.nilawar, rodrigo.vivi
[-- Attachment #1: Type: text/plain, Size: 2098 bytes --]
On 14-01-2026 13:00, Raag Jadav wrote:
> On Tue, Jan 13, 2026 at 03:28:51PM +0530, Poosa, Karthik wrote:
>> On 13-01-2026 13:51, Raag Jadav wrote:
>>> On Tue, Jan 13, 2026 at 02:05:21AM +0530, Karthik Poosa wrote:
>>>> Expose individual VRAM temperature attributes.
>>>> Update Xe hwmon documentation for this entry.
>>> ...
>>>
>>>> @@ -255,6 +264,8 @@ static struct xe_reg xe_hwmon_get_reg(struct xe_hwmon *hwmon, enum xe_hwmon_reg
>>>> return BMG_PACKAGE_TEMPERATURE;
>>>> else if (channel == CHANNEL_VRAM)
>>>> return BMG_VRAM_TEMPERATURE;
>>>> + else if (in_range(channel, CHANNEL_VRAM_N, CHANNEL_VRAM_N_MAX))
>>> I think this should be
>>>
>>> if (in_range(channel, CHANNEL_VRAM_N, MAX_VRAM_CHANNELS))
>>>
>>> or did I miss something?
>> I’ve ran IGT hwmon test and lm-sensors and didn't see any discrepancies
>> there, all available channels are seen.
> Sure, but shouldn't we fix the buggy logic?
>
> Raag
I shall address this. We didn’t observe any issue during verification
because there are no new channels beyond VRAM_N.
I’ll raise a patch for this.
>
>>>> + return BMG_VRAM_TEMPERATURE_N(channel - CHANNEL_VRAM_N);
>>>> } else if (xe->info.platform == XE_DG2) {
>>>> if (channel == CHANNEL_PKG)
>>>> return PCU_CR_PACKAGE_TEMPERATURE;
>>> ...
>>>
>>>> @@ -1353,6 +1415,8 @@ static int xe_hwmon_read_label(struct device *dev,
>>>> enum hwmon_sensor_types type,
>>>> u32 attr, int channel, const char **str)
>>>> {
>>>> + struct xe_hwmon *hwmon = dev_get_drvdata(dev);
>>>> +
>>>> switch (type) {
>>>> case hwmon_temp:
>>>> if (channel == CHANNEL_PKG)
>>>> @@ -1363,6 +1427,8 @@ static int xe_hwmon_read_label(struct device *dev,
>>>> *str = "mctrl";
>>>> else if (channel == CHANNEL_PCIE)
>>>> *str = "pcie";
>>>> + else if (in_range(channel, CHANNEL_VRAM_N, CHANNEL_VRAM_N_MAX))
>>> Ditto.
>>>
>>> Raag
>>>
>>>> + *str = hwmon->temp.vram_label[channel - CHANNEL_VRAM_N];
>>>> return 0;
>>>> case hwmon_power:
>>>> case hwmon_energy:
>>>> --
>>>> 2.25.1
>>>>
[-- Attachment #2: Type: text/html, Size: 3801 bytes --]
^ permalink raw reply [flat|nested] 13+ messages in thread
* Re: [PATCH v7 4/4] drm/xe/hwmon: Expose individual VRAM channel temperature
2026-01-15 9:27 ` Poosa, Karthik
@ 2026-01-19 14:30 ` Poosa, Karthik
0 siblings, 0 replies; 13+ messages in thread
From: Poosa, Karthik @ 2026-01-19 14:30 UTC (permalink / raw)
To: Raag Jadav; +Cc: intel-xe, anshuman.gupta, badal.nilawar, rodrigo.vivi
[-- Attachment #1: Type: text/plain, Size: 2318 bytes --]
On 15-01-2026 14:57, Poosa, Karthik wrote:
>
>
> On 14-01-2026 13:00, Raag Jadav wrote:
>> On Tue, Jan 13, 2026 at 03:28:51PM +0530, Poosa, Karthik wrote:
>>> On 13-01-2026 13:51, Raag Jadav wrote:
>>>> On Tue, Jan 13, 2026 at 02:05:21AM +0530, Karthik Poosa wrote:
>>>>> Expose individual VRAM temperature attributes.
>>>>> Update Xe hwmon documentation for this entry.
>>>> ...
>>>>
>>>>> @@ -255,6 +264,8 @@ static struct xe_reg xe_hwmon_get_reg(struct xe_hwmon *hwmon, enum xe_hwmon_reg
>>>>> return BMG_PACKAGE_TEMPERATURE;
>>>>> else if (channel == CHANNEL_VRAM)
>>>>> return BMG_VRAM_TEMPERATURE;
>>>>> + else if (in_range(channel, CHANNEL_VRAM_N, CHANNEL_VRAM_N_MAX))
>>>> I think this should be
>>>>
>>>> if (in_range(channel, CHANNEL_VRAM_N, MAX_VRAM_CHANNELS))
>>>>
>>>> or did I miss something?
>>> I’ve ran IGT hwmon test and lm-sensors and didn't see any discrepancies
>>> there, all available channels are seen.
>> Sure, but shouldn't we fix the buggy logic?
>>
>> Raag
> I shall address this. We didn’t observe any issue during verification
> because there are no new channels beyond VRAM_N.
> I’ll raise a patch for this.
Actually CHANNEL_VRAM_N_MAX needs correction,
Raised https://patchwork.freedesktop.org/series/160302/ for this
>>>>> + return BMG_VRAM_TEMPERATURE_N(channel - CHANNEL_VRAM_N);
>>>>> } else if (xe->info.platform == XE_DG2) {
>>>>> if (channel == CHANNEL_PKG)
>>>>> return PCU_CR_PACKAGE_TEMPERATURE;
>>>> ...
>>>>
>>>>> @@ -1353,6 +1415,8 @@ static int xe_hwmon_read_label(struct device *dev,
>>>>> enum hwmon_sensor_types type,
>>>>> u32 attr, int channel, const char **str)
>>>>> {
>>>>> + struct xe_hwmon *hwmon = dev_get_drvdata(dev);
>>>>> +
>>>>> switch (type) {
>>>>> case hwmon_temp:
>>>>> if (channel == CHANNEL_PKG)
>>>>> @@ -1363,6 +1427,8 @@ static int xe_hwmon_read_label(struct device *dev,
>>>>> *str = "mctrl";
>>>>> else if (channel == CHANNEL_PCIE)
>>>>> *str = "pcie";
>>>>> + else if (in_range(channel, CHANNEL_VRAM_N, CHANNEL_VRAM_N_MAX))
>>>> Ditto.
>>>>
>>>> Raag
>>>>
>>>>> + *str = hwmon->temp.vram_label[channel - CHANNEL_VRAM_N];
>>>>> return 0;
>>>>> case hwmon_power:
>>>>> case hwmon_energy:
>>>>> --
>>>>> 2.25.1
>>>>>
[-- Attachment #2: Type: text/html, Size: 4457 bytes --]
^ permalink raw reply [flat|nested] 13+ messages in thread
end of thread, other threads:[~2026-01-19 14:31 UTC | newest]
Thread overview: 13+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2026-01-12 20:35 [PATCH v7 0/4] drm/xe/hwmon: Expose new temperature attributes Karthik Poosa
2026-01-12 20:35 ` [PATCH v7 1/4] drm/xe/hwmon: Expose temperature limits Karthik Poosa
2026-01-12 20:35 ` [PATCH v7 2/4] drm/xe/hwmon: Expose memory controller temperature Karthik Poosa
2026-01-12 20:35 ` [PATCH v7 3/4] drm/xe/hwmon: Expose GPU PCIe temperature Karthik Poosa
2026-01-12 20:35 ` [PATCH v7 4/4] drm/xe/hwmon: Expose individual VRAM channel temperature Karthik Poosa
2026-01-13 8:21 ` Raag Jadav
2026-01-13 9:58 ` Poosa, Karthik
2026-01-14 7:30 ` Raag Jadav
2026-01-15 9:27 ` Poosa, Karthik
2026-01-19 14:30 ` Poosa, Karthik
2026-01-12 20:36 ` ✓ CI.KUnit: success for drm/xe/hwmon: Expose new temperature attributes (rev9) Patchwork
2026-01-12 21:12 ` ✓ Xe.CI.BAT: " Patchwork
2026-01-13 4:01 ` ✗ 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