* [PATCH v6 0/4] drm/xe/hwmon: Expose new temperature attributes
@ 2026-01-12 12:17 Karthik Poosa
2026-01-12 12:17 ` [PATCH v6 1/4] drm/xe/hwmon: Expose temperature limits Karthik Poosa
` (6 more replies)
0 siblings, 7 replies; 10+ messages in thread
From: Karthik Poosa @ 2026-01-12 12:17 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.
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] 10+ messages in thread
* [PATCH v6 1/4] drm/xe/hwmon: Expose temperature limits
2026-01-12 12:17 [PATCH v6 0/4] drm/xe/hwmon: Expose new temperature attributes Karthik Poosa
@ 2026-01-12 12:17 ` Karthik Poosa
2026-01-12 12:17 ` [PATCH v6 2/4] drm/xe/hwmon: Expose memory controller temperature Karthik Poosa
` (5 subsequent siblings)
6 siblings, 0 replies; 10+ messages in thread
From: Karthik Poosa @ 2026-01-12 12:17 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 a1fdca451ce0..776ed4bd538b 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,
@@ -421,6 +422,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,
@@ -686,6 +688,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] 10+ messages in thread
* [PATCH v6 2/4] drm/xe/hwmon: Expose memory controller temperature
2026-01-12 12:17 [PATCH v6 0/4] drm/xe/hwmon: Expose new temperature attributes Karthik Poosa
2026-01-12 12:17 ` [PATCH v6 1/4] drm/xe/hwmon: Expose temperature limits Karthik Poosa
@ 2026-01-12 12:17 ` Karthik Poosa
2026-01-12 12:17 ` [PATCH v6 3/4] drm/xe/hwmon: Expose GPU PCIe temperature Karthik Poosa
` (4 subsequent siblings)
6 siblings, 0 replies; 10+ messages in thread
From: Karthik Poosa @ 2026-01-12 12:17 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] 10+ messages in thread
* [PATCH v6 3/4] drm/xe/hwmon: Expose GPU PCIe temperature
2026-01-12 12:17 [PATCH v6 0/4] drm/xe/hwmon: Expose new temperature attributes Karthik Poosa
2026-01-12 12:17 ` [PATCH v6 1/4] drm/xe/hwmon: Expose temperature limits Karthik Poosa
2026-01-12 12:17 ` [PATCH v6 2/4] drm/xe/hwmon: Expose memory controller temperature Karthik Poosa
@ 2026-01-12 12:17 ` Karthik Poosa
2026-01-12 12:17 ` [PATCH v6 4/4] drm/xe/hwmon: Expose individual VRAM channel temperature Karthik Poosa
` (3 subsequent siblings)
6 siblings, 0 replies; 10+ messages in thread
From: Karthik Poosa @ 2026-01-12 12:17 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] 10+ messages in thread
* [PATCH v6 4/4] drm/xe/hwmon: Expose individual VRAM channel temperature
2026-01-12 12:17 [PATCH v6 0/4] drm/xe/hwmon: Expose new temperature attributes Karthik Poosa
` (2 preceding siblings ...)
2026-01-12 12:17 ` [PATCH v6 3/4] drm/xe/hwmon: Expose GPU PCIe temperature Karthik Poosa
@ 2026-01-12 12:17 ` Karthik Poosa
2026-01-12 18:08 ` Raag Jadav
2026-01-12 12:29 ` ✓ CI.KUnit: success for drm/xe/hwmon: Expose new temperature attributes (rev8) Patchwork
` (2 subsequent siblings)
6 siblings, 1 reply; 10+ messages in thread
From: Karthik Poosa @ 2026-01-12 12:17 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.
Signed-off-by: Karthik Poosa <karthik.poosa@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..45f09f39df96 100644
--- a/drivers/gpu/drm/xe/regs/xe_pcode_regs.h
+++ b/drivers/gpu/drm/xe/regs/xe_pcode_regs.h
@@ -22,6 +22,9 @@
#define BMG_FAN_2_SPEED XE_REG(0x138170)
#define BMG_FAN_3_SPEED XE_REG(0x1381a0)
#define BMG_VRAM_TEMPERATURE XE_REG(0x1382c0)
+#define BMG_VRAM_TEMPERATURE_N(n) XE_REG(0x138260 + ((n) * (sizeof(u32))))
+#define TEMP_MASK_VRAM_N REG_GENMASK(30, 8)
+#define TEMP_SIGN_MASK 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..b1737403a38b 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 (channel >= CHANNEL_VRAM_N && channel <= 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 bits
+ * [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 (channel >= CHANNEL_VRAM_N && channel <= 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] 10+ messages in thread
* ✓ CI.KUnit: success for drm/xe/hwmon: Expose new temperature attributes (rev8)
2026-01-12 12:17 [PATCH v6 0/4] drm/xe/hwmon: Expose new temperature attributes Karthik Poosa
` (3 preceding siblings ...)
2026-01-12 12:17 ` [PATCH v6 4/4] drm/xe/hwmon: Expose individual VRAM channel temperature Karthik Poosa
@ 2026-01-12 12:29 ` Patchwork
2026-01-12 13:03 ` ✓ Xe.CI.BAT: " Patchwork
2026-01-12 14:10 ` ✗ Xe.CI.Full: failure " Patchwork
6 siblings, 0 replies; 10+ messages in thread
From: Patchwork @ 2026-01-12 12:29 UTC (permalink / raw)
To: Karthik Poosa; +Cc: intel-xe
== Series Details ==
Series: drm/xe/hwmon: Expose new temperature attributes (rev8)
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
[12:27:42] Configuring KUnit Kernel ...
Generating .config ...
Populating config with:
$ make ARCH=um O=.kunit olddefconfig
[12:27:46] Building KUnit Kernel ...
Populating config with:
$ make ARCH=um O=.kunit olddefconfig
Building with:
$ make all compile_commands.json scripts_gdb ARCH=um O=.kunit --jobs=48
[12:28:18] Starting KUnit Kernel (1/1)...
[12:28:18] ============================================================
Running tests with:
$ .kunit/linux kunit.enable=1 mem=1G console=tty kunit_shutdown=halt
[12:28:18] ================== guc_buf (11 subtests) ===================
[12:28:18] [PASSED] test_smallest
[12:28:18] [PASSED] test_largest
[12:28:18] [PASSED] test_granular
[12:28:18] [PASSED] test_unique
[12:28:18] [PASSED] test_overlap
[12:28:18] [PASSED] test_reusable
[12:28:18] [PASSED] test_too_big
[12:28:18] [PASSED] test_flush
[12:28:18] [PASSED] test_lookup
[12:28:18] [PASSED] test_data
[12:28:18] [PASSED] test_class
[12:28:18] ===================== [PASSED] guc_buf =====================
[12:28:18] =================== guc_dbm (7 subtests) ===================
[12:28:18] [PASSED] test_empty
[12:28:18] [PASSED] test_default
[12:28:18] ======================== test_size ========================
[12:28:18] [PASSED] 4
[12:28:18] [PASSED] 8
[12:28:18] [PASSED] 32
[12:28:18] [PASSED] 256
[12:28:18] ==================== [PASSED] test_size ====================
[12:28:18] ======================= test_reuse ========================
[12:28:18] [PASSED] 4
[12:28:18] [PASSED] 8
[12:28:18] [PASSED] 32
[12:28:18] [PASSED] 256
[12:28:18] =================== [PASSED] test_reuse ====================
[12:28:18] =================== test_range_overlap ====================
[12:28:18] [PASSED] 4
[12:28:18] [PASSED] 8
[12:28:18] [PASSED] 32
[12:28:18] [PASSED] 256
[12:28:18] =============== [PASSED] test_range_overlap ================
[12:28:18] =================== test_range_compact ====================
[12:28:18] [PASSED] 4
[12:28:18] [PASSED] 8
[12:28:18] [PASSED] 32
[12:28:18] [PASSED] 256
[12:28:18] =============== [PASSED] test_range_compact ================
[12:28:18] ==================== test_range_spare =====================
[12:28:18] [PASSED] 4
[12:28:18] [PASSED] 8
[12:28:18] [PASSED] 32
[12:28:18] [PASSED] 256
[12:28:18] ================ [PASSED] test_range_spare =================
[12:28:18] ===================== [PASSED] guc_dbm =====================
[12:28:18] =================== guc_idm (6 subtests) ===================
[12:28:18] [PASSED] bad_init
[12:28:18] [PASSED] no_init
[12:28:18] [PASSED] init_fini
[12:28:18] [PASSED] check_used
[12:28:18] [PASSED] check_quota
[12:28:18] [PASSED] check_all
[12:28:18] ===================== [PASSED] guc_idm =====================
[12:28:18] ================== no_relay (3 subtests) ===================
[12:28:18] [PASSED] xe_drops_guc2pf_if_not_ready
[12:28:18] [PASSED] xe_drops_guc2vf_if_not_ready
[12:28:18] [PASSED] xe_rejects_send_if_not_ready
[12:28:18] ==================== [PASSED] no_relay =====================
[12:28:18] ================== pf_relay (14 subtests) ==================
[12:28:18] [PASSED] pf_rejects_guc2pf_too_short
[12:28:18] [PASSED] pf_rejects_guc2pf_too_long
[12:28:18] [PASSED] pf_rejects_guc2pf_no_payload
[12:28:18] [PASSED] pf_fails_no_payload
[12:28:18] [PASSED] pf_fails_bad_origin
[12:28:18] [PASSED] pf_fails_bad_type
[12:28:18] [PASSED] pf_txn_reports_error
[12:28:18] [PASSED] pf_txn_sends_pf2guc
[12:28:18] [PASSED] pf_sends_pf2guc
[12:28:18] [SKIPPED] pf_loopback_nop
[12:28:18] [SKIPPED] pf_loopback_echo
[12:28:18] [SKIPPED] pf_loopback_fail
[12:28:18] [SKIPPED] pf_loopback_busy
[12:28:18] [SKIPPED] pf_loopback_retry
[12:28:18] ==================== [PASSED] pf_relay =====================
[12:28:18] ================== vf_relay (3 subtests) ===================
[12:28:18] [PASSED] vf_rejects_guc2vf_too_short
[12:28:18] [PASSED] vf_rejects_guc2vf_too_long
[12:28:18] [PASSED] vf_rejects_guc2vf_no_payload
[12:28:18] ==================== [PASSED] vf_relay =====================
[12:28:18] ================ pf_gt_config (6 subtests) =================
[12:28:18] [PASSED] fair_contexts_1vf
[12:28:18] [PASSED] fair_doorbells_1vf
[12:28:18] [PASSED] fair_ggtt_1vf
[12:28:18] ====================== fair_contexts ======================
[12:28:18] [PASSED] 1 VF
[12:28:18] [PASSED] 2 VFs
[12:28:18] [PASSED] 3 VFs
[12:28:18] [PASSED] 4 VFs
[12:28:18] [PASSED] 5 VFs
[12:28:18] [PASSED] 6 VFs
[12:28:18] [PASSED] 7 VFs
[12:28:18] [PASSED] 8 VFs
[12:28:18] [PASSED] 9 VFs
[12:28:18] [PASSED] 10 VFs
[12:28:18] [PASSED] 11 VFs
[12:28:18] [PASSED] 12 VFs
[12:28:18] [PASSED] 13 VFs
[12:28:18] [PASSED] 14 VFs
[12:28:18] [PASSED] 15 VFs
[12:28:18] [PASSED] 16 VFs
[12:28:18] [PASSED] 17 VFs
[12:28:18] [PASSED] 18 VFs
[12:28:18] [PASSED] 19 VFs
[12:28:18] [PASSED] 20 VFs
[12:28:18] [PASSED] 21 VFs
[12:28:18] [PASSED] 22 VFs
[12:28:18] [PASSED] 23 VFs
[12:28:18] [PASSED] 24 VFs
[12:28:18] [PASSED] 25 VFs
[12:28:18] [PASSED] 26 VFs
[12:28:18] [PASSED] 27 VFs
[12:28:18] [PASSED] 28 VFs
[12:28:18] [PASSED] 29 VFs
[12:28:18] [PASSED] 30 VFs
[12:28:18] [PASSED] 31 VFs
[12:28:18] [PASSED] 32 VFs
[12:28:18] [PASSED] 33 VFs
[12:28:18] [PASSED] 34 VFs
[12:28:18] [PASSED] 35 VFs
[12:28:18] [PASSED] 36 VFs
[12:28:18] [PASSED] 37 VFs
[12:28:18] [PASSED] 38 VFs
[12:28:18] [PASSED] 39 VFs
[12:28:18] [PASSED] 40 VFs
[12:28:18] [PASSED] 41 VFs
[12:28:18] [PASSED] 42 VFs
[12:28:18] [PASSED] 43 VFs
[12:28:18] [PASSED] 44 VFs
[12:28:18] [PASSED] 45 VFs
[12:28:18] [PASSED] 46 VFs
[12:28:18] [PASSED] 47 VFs
[12:28:18] [PASSED] 48 VFs
[12:28:18] [PASSED] 49 VFs
[12:28:18] [PASSED] 50 VFs
[12:28:18] [PASSED] 51 VFs
[12:28:18] [PASSED] 52 VFs
[12:28:18] [PASSED] 53 VFs
[12:28:18] [PASSED] 54 VFs
[12:28:18] [PASSED] 55 VFs
[12:28:18] [PASSED] 56 VFs
[12:28:18] [PASSED] 57 VFs
[12:28:18] [PASSED] 58 VFs
[12:28:18] [PASSED] 59 VFs
[12:28:18] [PASSED] 60 VFs
[12:28:18] [PASSED] 61 VFs
[12:28:18] [PASSED] 62 VFs
[12:28:18] [PASSED] 63 VFs
[12:28:18] ================== [PASSED] fair_contexts ==================
[12:28:18] ===================== fair_doorbells ======================
[12:28:18] [PASSED] 1 VF
[12:28:18] [PASSED] 2 VFs
[12:28:18] [PASSED] 3 VFs
[12:28:18] [PASSED] 4 VFs
[12:28:18] [PASSED] 5 VFs
[12:28:18] [PASSED] 6 VFs
[12:28:18] [PASSED] 7 VFs
[12:28:18] [PASSED] 8 VFs
[12:28:18] [PASSED] 9 VFs
[12:28:18] [PASSED] 10 VFs
[12:28:18] [PASSED] 11 VFs
[12:28:18] [PASSED] 12 VFs
[12:28:18] [PASSED] 13 VFs
[12:28:18] [PASSED] 14 VFs
[12:28:18] [PASSED] 15 VFs
[12:28:18] [PASSED] 16 VFs
[12:28:18] [PASSED] 17 VFs
[12:28:18] [PASSED] 18 VFs
[12:28:18] [PASSED] 19 VFs
[12:28:18] [PASSED] 20 VFs
[12:28:18] [PASSED] 21 VFs
[12:28:18] [PASSED] 22 VFs
[12:28:18] [PASSED] 23 VFs
[12:28:18] [PASSED] 24 VFs
[12:28:18] [PASSED] 25 VFs
[12:28:18] [PASSED] 26 VFs
[12:28:18] [PASSED] 27 VFs
[12:28:18] [PASSED] 28 VFs
[12:28:18] [PASSED] 29 VFs
[12:28:18] [PASSED] 30 VFs
[12:28:18] [PASSED] 31 VFs
[12:28:18] [PASSED] 32 VFs
[12:28:18] [PASSED] 33 VFs
[12:28:18] [PASSED] 34 VFs
[12:28:18] [PASSED] 35 VFs
[12:28:18] [PASSED] 36 VFs
[12:28:18] [PASSED] 37 VFs
[12:28:18] [PASSED] 38 VFs
[12:28:18] [PASSED] 39 VFs
[12:28:18] [PASSED] 40 VFs
[12:28:18] [PASSED] 41 VFs
[12:28:18] [PASSED] 42 VFs
[12:28:18] [PASSED] 43 VFs
[12:28:18] [PASSED] 44 VFs
[12:28:18] [PASSED] 45 VFs
[12:28:18] [PASSED] 46 VFs
[12:28:18] [PASSED] 47 VFs
[12:28:18] [PASSED] 48 VFs
[12:28:18] [PASSED] 49 VFs
[12:28:18] [PASSED] 50 VFs
[12:28:18] [PASSED] 51 VFs
[12:28:18] [PASSED] 52 VFs
[12:28:18] [PASSED] 53 VFs
[12:28:18] [PASSED] 54 VFs
[12:28:18] [PASSED] 55 VFs
[12:28:18] [PASSED] 56 VFs
[12:28:18] [PASSED] 57 VFs
[12:28:18] [PASSED] 58 VFs
[12:28:18] [PASSED] 59 VFs
[12:28:18] [PASSED] 60 VFs
[12:28:18] [PASSED] 61 VFs
[12:28:18] [PASSED] 62 VFs
[12:28:18] [PASSED] 63 VFs
[12:28:18] ================= [PASSED] fair_doorbells ==================
[12:28:18] ======================== fair_ggtt ========================
[12:28:18] [PASSED] 1 VF
[12:28:18] [PASSED] 2 VFs
[12:28:18] [PASSED] 3 VFs
[12:28:18] [PASSED] 4 VFs
[12:28:18] [PASSED] 5 VFs
[12:28:18] [PASSED] 6 VFs
[12:28:18] [PASSED] 7 VFs
[12:28:18] [PASSED] 8 VFs
[12:28:18] [PASSED] 9 VFs
[12:28:18] [PASSED] 10 VFs
[12:28:18] [PASSED] 11 VFs
[12:28:18] [PASSED] 12 VFs
[12:28:18] [PASSED] 13 VFs
[12:28:18] [PASSED] 14 VFs
[12:28:18] [PASSED] 15 VFs
[12:28:18] [PASSED] 16 VFs
[12:28:18] [PASSED] 17 VFs
[12:28:18] [PASSED] 18 VFs
[12:28:18] [PASSED] 19 VFs
[12:28:18] [PASSED] 20 VFs
[12:28:18] [PASSED] 21 VFs
[12:28:18] [PASSED] 22 VFs
[12:28:18] [PASSED] 23 VFs
[12:28:18] [PASSED] 24 VFs
[12:28:18] [PASSED] 25 VFs
[12:28:18] [PASSED] 26 VFs
[12:28:18] [PASSED] 27 VFs
[12:28:18] [PASSED] 28 VFs
[12:28:18] [PASSED] 29 VFs
[12:28:18] [PASSED] 30 VFs
[12:28:18] [PASSED] 31 VFs
[12:28:18] [PASSED] 32 VFs
[12:28:18] [PASSED] 33 VFs
[12:28:18] [PASSED] 34 VFs
[12:28:18] [PASSED] 35 VFs
[12:28:18] [PASSED] 36 VFs
[12:28:18] [PASSED] 37 VFs
[12:28:18] [PASSED] 38 VFs
[12:28:18] [PASSED] 39 VFs
[12:28:18] [PASSED] 40 VFs
[12:28:18] [PASSED] 41 VFs
[12:28:18] [PASSED] 42 VFs
[12:28:18] [PASSED] 43 VFs
[12:28:18] [PASSED] 44 VFs
[12:28:18] [PASSED] 45 VFs
[12:28:18] [PASSED] 46 VFs
[12:28:18] [PASSED] 47 VFs
[12:28:18] [PASSED] 48 VFs
[12:28:18] [PASSED] 49 VFs
[12:28:18] [PASSED] 50 VFs
[12:28:18] [PASSED] 51 VFs
[12:28:18] [PASSED] 52 VFs
[12:28:18] [PASSED] 53 VFs
[12:28:18] [PASSED] 54 VFs
[12:28:18] [PASSED] 55 VFs
[12:28:18] [PASSED] 56 VFs
[12:28:18] [PASSED] 57 VFs
[12:28:18] [PASSED] 58 VFs
[12:28:18] [PASSED] 59 VFs
[12:28:18] [PASSED] 60 VFs
[12:28:18] [PASSED] 61 VFs
[12:28:18] [PASSED] 62 VFs
[12:28:18] [PASSED] 63 VFs
[12:28:18] ==================== [PASSED] fair_ggtt ====================
[12:28:18] ================== [PASSED] pf_gt_config ===================
[12:28:18] ===================== lmtt (1 subtest) =====================
[12:28:18] ======================== test_ops =========================
[12:28:18] [PASSED] 2-level
[12:28:18] [PASSED] multi-level
[12:28:18] ==================== [PASSED] test_ops =====================
[12:28:18] ====================== [PASSED] lmtt =======================
[12:28:18] ================= pf_service (11 subtests) =================
[12:28:18] [PASSED] pf_negotiate_any
[12:28:18] [PASSED] pf_negotiate_base_match
[12:28:18] [PASSED] pf_negotiate_base_newer
[12:28:18] [PASSED] pf_negotiate_base_next
[12:28:18] [SKIPPED] pf_negotiate_base_older
[12:28:18] [PASSED] pf_negotiate_base_prev
[12:28:18] [PASSED] pf_negotiate_latest_match
[12:28:18] [PASSED] pf_negotiate_latest_newer
[12:28:18] [PASSED] pf_negotiate_latest_next
[12:28:18] [SKIPPED] pf_negotiate_latest_older
[12:28:18] [SKIPPED] pf_negotiate_latest_prev
[12:28:18] =================== [PASSED] pf_service ====================
[12:28:18] ================= xe_guc_g2g (2 subtests) ==================
[12:28:18] ============== xe_live_guc_g2g_kunit_default ==============
[12:28:18] ========= [SKIPPED] xe_live_guc_g2g_kunit_default ==========
[12:28:18] ============== xe_live_guc_g2g_kunit_allmem ===============
[12:28:18] ========== [SKIPPED] xe_live_guc_g2g_kunit_allmem ==========
[12:28:18] =================== [SKIPPED] xe_guc_g2g ===================
[12:28:18] =================== xe_mocs (2 subtests) ===================
[12:28:18] ================ xe_live_mocs_kernel_kunit ================
[12:28:18] =========== [SKIPPED] xe_live_mocs_kernel_kunit ============
[12:28:18] ================ xe_live_mocs_reset_kunit =================
[12:28:18] ============ [SKIPPED] xe_live_mocs_reset_kunit ============
[12:28:18] ==================== [SKIPPED] xe_mocs =====================
[12:28:18] ================= xe_migrate (2 subtests) ==================
[12:28:18] ================= xe_migrate_sanity_kunit =================
[12:28:18] ============ [SKIPPED] xe_migrate_sanity_kunit =============
[12:28:18] ================== xe_validate_ccs_kunit ==================
[12:28:18] ============= [SKIPPED] xe_validate_ccs_kunit ==============
[12:28:18] =================== [SKIPPED] xe_migrate ===================
[12:28:18] ================== xe_dma_buf (1 subtest) ==================
[12:28:18] ==================== xe_dma_buf_kunit =====================
[12:28:18] ================ [SKIPPED] xe_dma_buf_kunit ================
[12:28:18] =================== [SKIPPED] xe_dma_buf ===================
[12:28:18] ================= xe_bo_shrink (1 subtest) =================
[12:28:18] =================== xe_bo_shrink_kunit ====================
[12:28:18] =============== [SKIPPED] xe_bo_shrink_kunit ===============
[12:28:18] ================== [SKIPPED] xe_bo_shrink ==================
[12:28:18] ==================== xe_bo (2 subtests) ====================
[12:28:18] ================== xe_ccs_migrate_kunit ===================
[12:28:18] ============== [SKIPPED] xe_ccs_migrate_kunit ==============
[12:28:18] ==================== xe_bo_evict_kunit ====================
[12:28:18] =============== [SKIPPED] xe_bo_evict_kunit ================
[12:28:18] ===================== [SKIPPED] xe_bo ======================
[12:28:18] ==================== args (13 subtests) ====================
[12:28:18] [PASSED] count_args_test
[12:28:18] [PASSED] call_args_example
[12:28:18] [PASSED] call_args_test
[12:28:18] [PASSED] drop_first_arg_example
[12:28:18] [PASSED] drop_first_arg_test
[12:28:18] [PASSED] first_arg_example
[12:28:18] [PASSED] first_arg_test
[12:28:18] [PASSED] last_arg_example
[12:28:18] [PASSED] last_arg_test
[12:28:18] [PASSED] pick_arg_example
[12:28:18] [PASSED] if_args_example
[12:28:18] [PASSED] if_args_test
[12:28:18] [PASSED] sep_comma_example
[12:28:18] ====================== [PASSED] args =======================
[12:28:18] =================== xe_pci (3 subtests) ====================
[12:28:18] ==================== check_graphics_ip ====================
[12:28:18] [PASSED] 12.00 Xe_LP
[12:28:18] [PASSED] 12.10 Xe_LP+
[12:28:18] [PASSED] 12.55 Xe_HPG
[12:28:18] [PASSED] 12.60 Xe_HPC
[12:28:18] [PASSED] 12.70 Xe_LPG
[12:28:18] [PASSED] 12.71 Xe_LPG
[12:28:18] [PASSED] 12.74 Xe_LPG+
[12:28:18] [PASSED] 20.01 Xe2_HPG
[12:28:18] [PASSED] 20.02 Xe2_HPG
[12:28:18] [PASSED] 20.04 Xe2_LPG
[12:28:18] [PASSED] 30.00 Xe3_LPG
[12:28:18] [PASSED] 30.01 Xe3_LPG
[12:28:18] [PASSED] 30.03 Xe3_LPG
[12:28:18] [PASSED] 30.04 Xe3_LPG
[12:28:18] [PASSED] 30.05 Xe3_LPG
[12:28:18] [PASSED] 35.11 Xe3p_XPC
[12:28:18] ================ [PASSED] check_graphics_ip ================
[12:28:18] ===================== check_media_ip ======================
[12:28:18] [PASSED] 12.00 Xe_M
[12:28:18] [PASSED] 12.55 Xe_HPM
[12:28:18] [PASSED] 13.00 Xe_LPM+
[12:28:18] [PASSED] 13.01 Xe2_HPM
[12:28:18] [PASSED] 20.00 Xe2_LPM
[12:28:18] [PASSED] 30.00 Xe3_LPM
[12:28:18] [PASSED] 30.02 Xe3_LPM
[12:28:18] [PASSED] 35.00 Xe3p_LPM
[12:28:18] [PASSED] 35.03 Xe3p_HPM
[12:28:18] ================= [PASSED] check_media_ip ==================
[12:28:18] =================== check_platform_desc ===================
[12:28:18] [PASSED] 0x9A60 (TIGERLAKE)
[12:28:18] [PASSED] 0x9A68 (TIGERLAKE)
[12:28:18] [PASSED] 0x9A70 (TIGERLAKE)
[12:28:18] [PASSED] 0x9A40 (TIGERLAKE)
[12:28:18] [PASSED] 0x9A49 (TIGERLAKE)
[12:28:18] [PASSED] 0x9A59 (TIGERLAKE)
[12:28:18] [PASSED] 0x9A78 (TIGERLAKE)
[12:28:18] [PASSED] 0x9AC0 (TIGERLAKE)
[12:28:18] [PASSED] 0x9AC9 (TIGERLAKE)
[12:28:18] [PASSED] 0x9AD9 (TIGERLAKE)
[12:28:18] [PASSED] 0x9AF8 (TIGERLAKE)
[12:28:18] [PASSED] 0x4C80 (ROCKETLAKE)
[12:28:18] [PASSED] 0x4C8A (ROCKETLAKE)
[12:28:18] [PASSED] 0x4C8B (ROCKETLAKE)
[12:28:18] [PASSED] 0x4C8C (ROCKETLAKE)
[12:28:18] [PASSED] 0x4C90 (ROCKETLAKE)
[12:28:18] [PASSED] 0x4C9A (ROCKETLAKE)
[12:28:18] [PASSED] 0x4680 (ALDERLAKE_S)
[12:28:18] [PASSED] 0x4682 (ALDERLAKE_S)
[12:28:18] [PASSED] 0x4688 (ALDERLAKE_S)
[12:28:18] [PASSED] 0x468A (ALDERLAKE_S)
[12:28:18] [PASSED] 0x468B (ALDERLAKE_S)
[12:28:18] [PASSED] 0x4690 (ALDERLAKE_S)
[12:28:18] [PASSED] 0x4692 (ALDERLAKE_S)
[12:28:18] [PASSED] 0x4693 (ALDERLAKE_S)
[12:28:18] [PASSED] 0x46A0 (ALDERLAKE_P)
[12:28:18] [PASSED] 0x46A1 (ALDERLAKE_P)
[12:28:18] [PASSED] 0x46A2 (ALDERLAKE_P)
[12:28:18] [PASSED] 0x46A3 (ALDERLAKE_P)
[12:28:18] [PASSED] 0x46A6 (ALDERLAKE_P)
[12:28:18] [PASSED] 0x46A8 (ALDERLAKE_P)
[12:28:18] [PASSED] 0x46AA (ALDERLAKE_P)
[12:28:18] [PASSED] 0x462A (ALDERLAKE_P)
[12:28:18] [PASSED] 0x4626 (ALDERLAKE_P)
[12:28:18] [PASSED] 0x4628 (ALDERLAKE_P)
stty: 'standard input': Inappropriate ioctl for device
[12:28:18] [PASSED] 0x46B0 (ALDERLAKE_P)
[12:28:18] [PASSED] 0x46B1 (ALDERLAKE_P)
[12:28:18] [PASSED] 0x46B2 (ALDERLAKE_P)
[12:28:18] [PASSED] 0x46B3 (ALDERLAKE_P)
[12:28:18] [PASSED] 0x46C0 (ALDERLAKE_P)
[12:28:18] [PASSED] 0x46C1 (ALDERLAKE_P)
[12:28:18] [PASSED] 0x46C2 (ALDERLAKE_P)
[12:28:18] [PASSED] 0x46C3 (ALDERLAKE_P)
[12:28:18] [PASSED] 0x46D0 (ALDERLAKE_N)
[12:28:18] [PASSED] 0x46D1 (ALDERLAKE_N)
[12:28:18] [PASSED] 0x46D2 (ALDERLAKE_N)
[12:28:18] [PASSED] 0x46D3 (ALDERLAKE_N)
[12:28:18] [PASSED] 0x46D4 (ALDERLAKE_N)
[12:28:18] [PASSED] 0xA721 (ALDERLAKE_P)
[12:28:18] [PASSED] 0xA7A1 (ALDERLAKE_P)
[12:28:18] [PASSED] 0xA7A9 (ALDERLAKE_P)
[12:28:18] [PASSED] 0xA7AC (ALDERLAKE_P)
[12:28:18] [PASSED] 0xA7AD (ALDERLAKE_P)
[12:28:18] [PASSED] 0xA720 (ALDERLAKE_P)
[12:28:18] [PASSED] 0xA7A0 (ALDERLAKE_P)
[12:28:18] [PASSED] 0xA7A8 (ALDERLAKE_P)
[12:28:18] [PASSED] 0xA7AA (ALDERLAKE_P)
[12:28:18] [PASSED] 0xA7AB (ALDERLAKE_P)
[12:28:18] [PASSED] 0xA780 (ALDERLAKE_S)
[12:28:18] [PASSED] 0xA781 (ALDERLAKE_S)
[12:28:18] [PASSED] 0xA782 (ALDERLAKE_S)
[12:28:18] [PASSED] 0xA783 (ALDERLAKE_S)
[12:28:18] [PASSED] 0xA788 (ALDERLAKE_S)
[12:28:18] [PASSED] 0xA789 (ALDERLAKE_S)
[12:28:18] [PASSED] 0xA78A (ALDERLAKE_S)
[12:28:18] [PASSED] 0xA78B (ALDERLAKE_S)
[12:28:18] [PASSED] 0x4905 (DG1)
[12:28:18] [PASSED] 0x4906 (DG1)
[12:28:18] [PASSED] 0x4907 (DG1)
[12:28:18] [PASSED] 0x4908 (DG1)
[12:28:18] [PASSED] 0x4909 (DG1)
[12:28:18] [PASSED] 0x56C0 (DG2)
[12:28:18] [PASSED] 0x56C2 (DG2)
[12:28:18] [PASSED] 0x56C1 (DG2)
[12:28:18] [PASSED] 0x7D51 (METEORLAKE)
[12:28:18] [PASSED] 0x7DD1 (METEORLAKE)
[12:28:18] [PASSED] 0x7D41 (METEORLAKE)
[12:28:18] [PASSED] 0x7D67 (METEORLAKE)
[12:28:18] [PASSED] 0xB640 (METEORLAKE)
[12:28:18] [PASSED] 0x56A0 (DG2)
[12:28:18] [PASSED] 0x56A1 (DG2)
[12:28:18] [PASSED] 0x56A2 (DG2)
[12:28:18] [PASSED] 0x56BE (DG2)
[12:28:18] [PASSED] 0x56BF (DG2)
[12:28:18] [PASSED] 0x5690 (DG2)
[12:28:18] [PASSED] 0x5691 (DG2)
[12:28:18] [PASSED] 0x5692 (DG2)
[12:28:18] [PASSED] 0x56A5 (DG2)
[12:28:18] [PASSED] 0x56A6 (DG2)
[12:28:18] [PASSED] 0x56B0 (DG2)
[12:28:18] [PASSED] 0x56B1 (DG2)
[12:28:18] [PASSED] 0x56BA (DG2)
[12:28:18] [PASSED] 0x56BB (DG2)
[12:28:18] [PASSED] 0x56BC (DG2)
[12:28:18] [PASSED] 0x56BD (DG2)
[12:28:18] [PASSED] 0x5693 (DG2)
[12:28:18] [PASSED] 0x5694 (DG2)
[12:28:18] [PASSED] 0x5695 (DG2)
[12:28:18] [PASSED] 0x56A3 (DG2)
[12:28:18] [PASSED] 0x56A4 (DG2)
[12:28:18] [PASSED] 0x56B2 (DG2)
[12:28:18] [PASSED] 0x56B3 (DG2)
[12:28:18] [PASSED] 0x5696 (DG2)
[12:28:18] [PASSED] 0x5697 (DG2)
[12:28:18] [PASSED] 0xB69 (PVC)
[12:28:18] [PASSED] 0xB6E (PVC)
[12:28:18] [PASSED] 0xBD4 (PVC)
[12:28:18] [PASSED] 0xBD5 (PVC)
[12:28:18] [PASSED] 0xBD6 (PVC)
[12:28:18] [PASSED] 0xBD7 (PVC)
[12:28:18] [PASSED] 0xBD8 (PVC)
[12:28:18] [PASSED] 0xBD9 (PVC)
[12:28:18] [PASSED] 0xBDA (PVC)
[12:28:18] [PASSED] 0xBDB (PVC)
[12:28:18] [PASSED] 0xBE0 (PVC)
[12:28:18] [PASSED] 0xBE1 (PVC)
[12:28:18] [PASSED] 0xBE5 (PVC)
[12:28:18] [PASSED] 0x7D40 (METEORLAKE)
[12:28:18] [PASSED] 0x7D45 (METEORLAKE)
[12:28:18] [PASSED] 0x7D55 (METEORLAKE)
[12:28:18] [PASSED] 0x7D60 (METEORLAKE)
[12:28:18] [PASSED] 0x7DD5 (METEORLAKE)
[12:28:18] [PASSED] 0x6420 (LUNARLAKE)
[12:28:18] [PASSED] 0x64A0 (LUNARLAKE)
[12:28:18] [PASSED] 0x64B0 (LUNARLAKE)
[12:28:18] [PASSED] 0xE202 (BATTLEMAGE)
[12:28:18] [PASSED] 0xE209 (BATTLEMAGE)
[12:28:18] [PASSED] 0xE20B (BATTLEMAGE)
[12:28:18] [PASSED] 0xE20C (BATTLEMAGE)
[12:28:18] [PASSED] 0xE20D (BATTLEMAGE)
[12:28:18] [PASSED] 0xE210 (BATTLEMAGE)
[12:28:18] [PASSED] 0xE211 (BATTLEMAGE)
[12:28:18] [PASSED] 0xE212 (BATTLEMAGE)
[12:28:18] [PASSED] 0xE216 (BATTLEMAGE)
[12:28:18] [PASSED] 0xE220 (BATTLEMAGE)
[12:28:18] [PASSED] 0xE221 (BATTLEMAGE)
[12:28:18] [PASSED] 0xE222 (BATTLEMAGE)
[12:28:18] [PASSED] 0xE223 (BATTLEMAGE)
[12:28:18] [PASSED] 0xB080 (PANTHERLAKE)
[12:28:18] [PASSED] 0xB081 (PANTHERLAKE)
[12:28:18] [PASSED] 0xB082 (PANTHERLAKE)
[12:28:18] [PASSED] 0xB083 (PANTHERLAKE)
[12:28:18] [PASSED] 0xB084 (PANTHERLAKE)
[12:28:18] [PASSED] 0xB085 (PANTHERLAKE)
[12:28:18] [PASSED] 0xB086 (PANTHERLAKE)
[12:28:18] [PASSED] 0xB087 (PANTHERLAKE)
[12:28:18] [PASSED] 0xB08F (PANTHERLAKE)
[12:28:18] [PASSED] 0xB090 (PANTHERLAKE)
[12:28:18] [PASSED] 0xB0A0 (PANTHERLAKE)
[12:28:18] [PASSED] 0xB0B0 (PANTHERLAKE)
[12:28:18] [PASSED] 0xFD80 (PANTHERLAKE)
[12:28:18] [PASSED] 0xFD81 (PANTHERLAKE)
[12:28:18] [PASSED] 0xD740 (NOVALAKE_S)
[12:28:18] [PASSED] 0xD741 (NOVALAKE_S)
[12:28:18] [PASSED] 0xD742 (NOVALAKE_S)
[12:28:18] [PASSED] 0xD743 (NOVALAKE_S)
[12:28:18] [PASSED] 0xD744 (NOVALAKE_S)
[12:28:18] [PASSED] 0xD745 (NOVALAKE_S)
[12:28:18] [PASSED] 0x674C (CRESCENTISLAND)
[12:28:18] =============== [PASSED] check_platform_desc ===============
[12:28:18] ===================== [PASSED] xe_pci ======================
[12:28:18] =================== xe_rtp (2 subtests) ====================
[12:28:18] =============== xe_rtp_process_to_sr_tests ================
[12:28:18] [PASSED] coalesce-same-reg
[12:28:18] [PASSED] no-match-no-add
[12:28:18] [PASSED] match-or
[12:28:18] [PASSED] match-or-xfail
[12:28:18] [PASSED] no-match-no-add-multiple-rules
[12:28:18] [PASSED] two-regs-two-entries
[12:28:18] [PASSED] clr-one-set-other
[12:28:18] [PASSED] set-field
[12:28:18] [PASSED] conflict-duplicate
[12:28:18] [PASSED] conflict-not-disjoint
[12:28:18] [PASSED] conflict-reg-type
[12:28:18] =========== [PASSED] xe_rtp_process_to_sr_tests ============
[12:28:18] ================== xe_rtp_process_tests ===================
[12:28:18] [PASSED] active1
[12:28:18] [PASSED] active2
[12:28:18] [PASSED] active-inactive
[12:28:18] [PASSED] inactive-active
[12:28:18] [PASSED] inactive-1st_or_active-inactive
[12:28:18] [PASSED] inactive-2nd_or_active-inactive
[12:28:18] [PASSED] inactive-last_or_active-inactive
[12:28:18] [PASSED] inactive-no_or_active-inactive
[12:28:18] ============== [PASSED] xe_rtp_process_tests ===============
[12:28:18] ===================== [PASSED] xe_rtp ======================
[12:28:18] ==================== xe_wa (1 subtest) =====================
[12:28:18] ======================== xe_wa_gt =========================
[12:28:18] [PASSED] TIGERLAKE B0
[12:28:18] [PASSED] DG1 A0
[12:28:18] [PASSED] DG1 B0
[12:28:18] [PASSED] ALDERLAKE_S A0
[12:28:18] [PASSED] ALDERLAKE_S B0
[12:28:18] [PASSED] ALDERLAKE_S C0
[12:28:18] [PASSED] ALDERLAKE_S D0
[12:28:18] [PASSED] ALDERLAKE_P A0
[12:28:18] [PASSED] ALDERLAKE_P B0
[12:28:18] [PASSED] ALDERLAKE_P C0
[12:28:18] [PASSED] ALDERLAKE_S RPLS D0
[12:28:18] [PASSED] ALDERLAKE_P RPLU E0
[12:28:18] [PASSED] DG2 G10 C0
[12:28:18] [PASSED] DG2 G11 B1
[12:28:18] [PASSED] DG2 G12 A1
[12:28:18] [PASSED] METEORLAKE 12.70(Xe_LPG) A0 13.00(Xe_LPM+) A0
[12:28:18] [PASSED] METEORLAKE 12.71(Xe_LPG) A0 13.00(Xe_LPM+) A0
[12:28:18] [PASSED] METEORLAKE 12.74(Xe_LPG+) A0 13.00(Xe_LPM+) A0
[12:28:18] [PASSED] LUNARLAKE 20.04(Xe2_LPG) A0 20.00(Xe2_LPM) A0
[12:28:18] [PASSED] LUNARLAKE 20.04(Xe2_LPG) B0 20.00(Xe2_LPM) A0
[12:28:18] [PASSED] BATTLEMAGE 20.01(Xe2_HPG) A0 13.01(Xe2_HPM) A1
[12:28:18] [PASSED] PANTHERLAKE 30.00(Xe3_LPG) A0 30.00(Xe3_LPM) A0
[12:28:18] ==================== [PASSED] xe_wa_gt =====================
[12:28:18] ====================== [PASSED] xe_wa ======================
[12:28:18] ============================================================
[12:28:18] Testing complete. Ran 512 tests: passed: 494, skipped: 18
[12:28:18] Elapsed time: 36.232s total, 4.168s configuring, 31.546s building, 0.467s running
+ /kernel/tools/testing/kunit/kunit.py run --kunitconfig /kernel/drivers/gpu/drm/tests/.kunitconfig
[12:28:19] Configuring KUnit Kernel ...
Regenerating .config ...
Populating config with:
$ make ARCH=um O=.kunit olddefconfig
[12:28:20] Building KUnit Kernel ...
Populating config with:
$ make ARCH=um O=.kunit olddefconfig
Building with:
$ make all compile_commands.json scripts_gdb ARCH=um O=.kunit --jobs=48
[12:28:46] Starting KUnit Kernel (1/1)...
[12:28:46] ============================================================
Running tests with:
$ .kunit/linux kunit.enable=1 mem=1G console=tty kunit_shutdown=halt
[12:28:46] ============ drm_test_pick_cmdline (2 subtests) ============
[12:28:46] [PASSED] drm_test_pick_cmdline_res_1920_1080_60
[12:28:46] =============== drm_test_pick_cmdline_named ===============
[12:28:46] [PASSED] NTSC
[12:28:46] [PASSED] NTSC-J
[12:28:46] [PASSED] PAL
[12:28:46] [PASSED] PAL-M
[12:28:46] =========== [PASSED] drm_test_pick_cmdline_named ===========
[12:28:46] ============== [PASSED] drm_test_pick_cmdline ==============
[12:28:46] == drm_test_atomic_get_connector_for_encoder (1 subtest) ===
[12:28:46] [PASSED] drm_test_drm_atomic_get_connector_for_encoder
[12:28:46] ==== [PASSED] drm_test_atomic_get_connector_for_encoder ====
[12:28:46] =========== drm_validate_clone_mode (2 subtests) ===========
[12:28:46] ============== drm_test_check_in_clone_mode ===============
[12:28:46] [PASSED] in_clone_mode
[12:28:46] [PASSED] not_in_clone_mode
[12:28:46] ========== [PASSED] drm_test_check_in_clone_mode ===========
[12:28:46] =============== drm_test_check_valid_clones ===============
[12:28:46] [PASSED] not_in_clone_mode
[12:28:46] [PASSED] valid_clone
[12:28:46] [PASSED] invalid_clone
[12:28:46] =========== [PASSED] drm_test_check_valid_clones ===========
[12:28:46] ============= [PASSED] drm_validate_clone_mode =============
[12:28:46] ============= drm_validate_modeset (1 subtest) =============
[12:28:46] [PASSED] drm_test_check_connector_changed_modeset
[12:28:46] ============== [PASSED] drm_validate_modeset ===============
[12:28:46] ====== drm_test_bridge_get_current_state (2 subtests) ======
[12:28:46] [PASSED] drm_test_drm_bridge_get_current_state_atomic
[12:28:46] [PASSED] drm_test_drm_bridge_get_current_state_legacy
[12:28:46] ======== [PASSED] drm_test_bridge_get_current_state ========
[12:28:46] ====== drm_test_bridge_helper_reset_crtc (3 subtests) ======
[12:28:46] [PASSED] drm_test_drm_bridge_helper_reset_crtc_atomic
[12:28:46] [PASSED] drm_test_drm_bridge_helper_reset_crtc_atomic_disabled
[12:28:46] [PASSED] drm_test_drm_bridge_helper_reset_crtc_legacy
[12:28:46] ======== [PASSED] drm_test_bridge_helper_reset_crtc ========
[12:28:46] ============== drm_bridge_alloc (2 subtests) ===============
[12:28:46] [PASSED] drm_test_drm_bridge_alloc_basic
[12:28:46] [PASSED] drm_test_drm_bridge_alloc_get_put
[12:28:46] ================ [PASSED] drm_bridge_alloc =================
[12:28:46] ================== drm_buddy (8 subtests) ==================
[12:28:46] [PASSED] drm_test_buddy_alloc_limit
[12:28:46] [PASSED] drm_test_buddy_alloc_optimistic
[12:28:46] [PASSED] drm_test_buddy_alloc_pessimistic
[12:28:46] [PASSED] drm_test_buddy_alloc_pathological
[12:28:46] [PASSED] drm_test_buddy_alloc_contiguous
[12:28:46] [PASSED] drm_test_buddy_alloc_clear
[12:28:46] [PASSED] drm_test_buddy_alloc_range_bias
[12:28:46] [PASSED] drm_test_buddy_fragmentation_performance
[12:28:46] ==================== [PASSED] drm_buddy ====================
[12:28:46] ============= drm_cmdline_parser (40 subtests) =============
[12:28:46] [PASSED] drm_test_cmdline_force_d_only
[12:28:46] [PASSED] drm_test_cmdline_force_D_only_dvi
[12:28:46] [PASSED] drm_test_cmdline_force_D_only_hdmi
[12:28:46] [PASSED] drm_test_cmdline_force_D_only_not_digital
[12:28:46] [PASSED] drm_test_cmdline_force_e_only
[12:28:46] [PASSED] drm_test_cmdline_res
[12:28:46] [PASSED] drm_test_cmdline_res_vesa
[12:28:46] [PASSED] drm_test_cmdline_res_vesa_rblank
[12:28:46] [PASSED] drm_test_cmdline_res_rblank
[12:28:46] [PASSED] drm_test_cmdline_res_bpp
[12:28:46] [PASSED] drm_test_cmdline_res_refresh
[12:28:46] [PASSED] drm_test_cmdline_res_bpp_refresh
[12:28:46] [PASSED] drm_test_cmdline_res_bpp_refresh_interlaced
[12:28:46] [PASSED] drm_test_cmdline_res_bpp_refresh_margins
[12:28:46] [PASSED] drm_test_cmdline_res_bpp_refresh_force_off
[12:28:46] [PASSED] drm_test_cmdline_res_bpp_refresh_force_on
[12:28:46] [PASSED] drm_test_cmdline_res_bpp_refresh_force_on_analog
[12:28:46] [PASSED] drm_test_cmdline_res_bpp_refresh_force_on_digital
[12:28:46] [PASSED] drm_test_cmdline_res_bpp_refresh_interlaced_margins_force_on
[12:28:46] [PASSED] drm_test_cmdline_res_margins_force_on
[12:28:46] [PASSED] drm_test_cmdline_res_vesa_margins
[12:28:46] [PASSED] drm_test_cmdline_name
[12:28:46] [PASSED] drm_test_cmdline_name_bpp
[12:28:46] [PASSED] drm_test_cmdline_name_option
[12:28:46] [PASSED] drm_test_cmdline_name_bpp_option
[12:28:46] [PASSED] drm_test_cmdline_rotate_0
[12:28:46] [PASSED] drm_test_cmdline_rotate_90
[12:28:46] [PASSED] drm_test_cmdline_rotate_180
[12:28:46] [PASSED] drm_test_cmdline_rotate_270
[12:28:46] [PASSED] drm_test_cmdline_hmirror
[12:28:46] [PASSED] drm_test_cmdline_vmirror
[12:28:46] [PASSED] drm_test_cmdline_margin_options
[12:28:46] [PASSED] drm_test_cmdline_multiple_options
[12:28:46] [PASSED] drm_test_cmdline_bpp_extra_and_option
[12:28:46] [PASSED] drm_test_cmdline_extra_and_option
[12:28:46] [PASSED] drm_test_cmdline_freestanding_options
[12:28:46] [PASSED] drm_test_cmdline_freestanding_force_e_and_options
[12:28:46] [PASSED] drm_test_cmdline_panel_orientation
[12:28:46] ================ drm_test_cmdline_invalid =================
[12:28:46] [PASSED] margin_only
[12:28:46] [PASSED] interlace_only
[12:28:46] [PASSED] res_missing_x
[12:28:46] [PASSED] res_missing_y
[12:28:46] [PASSED] res_bad_y
[12:28:46] [PASSED] res_missing_y_bpp
[12:28:46] [PASSED] res_bad_bpp
[12:28:46] [PASSED] res_bad_refresh
[12:28:46] [PASSED] res_bpp_refresh_force_on_off
[12:28:46] [PASSED] res_invalid_mode
[12:28:46] [PASSED] res_bpp_wrong_place_mode
[12:28:46] [PASSED] name_bpp_refresh
[12:28:46] [PASSED] name_refresh
[12:28:46] [PASSED] name_refresh_wrong_mode
[12:28:46] [PASSED] name_refresh_invalid_mode
[12:28:46] [PASSED] rotate_multiple
[12:28:46] [PASSED] rotate_invalid_val
[12:28:46] [PASSED] rotate_truncated
[12:28:46] [PASSED] invalid_option
[12:28:46] [PASSED] invalid_tv_option
[12:28:46] [PASSED] truncated_tv_option
[12:28:46] ============ [PASSED] drm_test_cmdline_invalid =============
[12:28:46] =============== drm_test_cmdline_tv_options ===============
[12:28:46] [PASSED] NTSC
[12:28:46] [PASSED] NTSC_443
[12:28:46] [PASSED] NTSC_J
[12:28:46] [PASSED] PAL
[12:28:46] [PASSED] PAL_M
[12:28:46] [PASSED] PAL_N
[12:28:46] [PASSED] SECAM
[12:28:46] [PASSED] MONO_525
[12:28:46] [PASSED] MONO_625
[12:28:46] =========== [PASSED] drm_test_cmdline_tv_options ===========
[12:28:46] =============== [PASSED] drm_cmdline_parser ================
[12:28:46] ========== drmm_connector_hdmi_init (20 subtests) ==========
[12:28:46] [PASSED] drm_test_connector_hdmi_init_valid
[12:28:46] [PASSED] drm_test_connector_hdmi_init_bpc_8
[12:28:46] [PASSED] drm_test_connector_hdmi_init_bpc_10
[12:28:46] [PASSED] drm_test_connector_hdmi_init_bpc_12
[12:28:46] [PASSED] drm_test_connector_hdmi_init_bpc_invalid
[12:28:46] [PASSED] drm_test_connector_hdmi_init_bpc_null
[12:28:46] [PASSED] drm_test_connector_hdmi_init_formats_empty
[12:28:46] [PASSED] drm_test_connector_hdmi_init_formats_no_rgb
[12:28:46] === drm_test_connector_hdmi_init_formats_yuv420_allowed ===
[12:28:46] [PASSED] supported_formats=0x9 yuv420_allowed=1
[12:28:46] [PASSED] supported_formats=0x9 yuv420_allowed=0
[12:28:46] [PASSED] supported_formats=0x3 yuv420_allowed=1
[12:28:46] [PASSED] supported_formats=0x3 yuv420_allowed=0
[12:28:46] === [PASSED] drm_test_connector_hdmi_init_formats_yuv420_allowed ===
[12:28:46] [PASSED] drm_test_connector_hdmi_init_null_ddc
[12:28:46] [PASSED] drm_test_connector_hdmi_init_null_product
[12:28:46] [PASSED] drm_test_connector_hdmi_init_null_vendor
[12:28:46] [PASSED] drm_test_connector_hdmi_init_product_length_exact
[12:28:46] [PASSED] drm_test_connector_hdmi_init_product_length_too_long
[12:28:46] [PASSED] drm_test_connector_hdmi_init_product_valid
[12:28:46] [PASSED] drm_test_connector_hdmi_init_vendor_length_exact
[12:28:46] [PASSED] drm_test_connector_hdmi_init_vendor_length_too_long
[12:28:46] [PASSED] drm_test_connector_hdmi_init_vendor_valid
[12:28:46] ========= drm_test_connector_hdmi_init_type_valid =========
[12:28:46] [PASSED] HDMI-A
[12:28:46] [PASSED] HDMI-B
[12:28:46] ===== [PASSED] drm_test_connector_hdmi_init_type_valid =====
[12:28:46] ======== drm_test_connector_hdmi_init_type_invalid ========
[12:28:46] [PASSED] Unknown
[12:28:46] [PASSED] VGA
[12:28:46] [PASSED] DVI-I
[12:28:46] [PASSED] DVI-D
[12:28:46] [PASSED] DVI-A
[12:28:46] [PASSED] Composite
[12:28:46] [PASSED] SVIDEO
[12:28:46] [PASSED] LVDS
[12:28:46] [PASSED] Component
[12:28:46] [PASSED] DIN
[12:28:46] [PASSED] DP
[12:28:46] [PASSED] TV
[12:28:46] [PASSED] eDP
[12:28:46] [PASSED] Virtual
[12:28:46] [PASSED] DSI
[12:28:46] [PASSED] DPI
[12:28:46] [PASSED] Writeback
[12:28:46] [PASSED] SPI
[12:28:46] [PASSED] USB
[12:28:46] ==== [PASSED] drm_test_connector_hdmi_init_type_invalid ====
[12:28:46] ============ [PASSED] drmm_connector_hdmi_init =============
[12:28:46] ============= drmm_connector_init (3 subtests) =============
[12:28:46] [PASSED] drm_test_drmm_connector_init
[12:28:46] [PASSED] drm_test_drmm_connector_init_null_ddc
[12:28:46] ========= drm_test_drmm_connector_init_type_valid =========
[12:28:46] [PASSED] Unknown
[12:28:46] [PASSED] VGA
[12:28:46] [PASSED] DVI-I
[12:28:46] [PASSED] DVI-D
[12:28:46] [PASSED] DVI-A
[12:28:46] [PASSED] Composite
[12:28:46] [PASSED] SVIDEO
[12:28:46] [PASSED] LVDS
[12:28:46] [PASSED] Component
[12:28:46] [PASSED] DIN
[12:28:46] [PASSED] DP
[12:28:46] [PASSED] HDMI-A
[12:28:46] [PASSED] HDMI-B
[12:28:46] [PASSED] TV
[12:28:46] [PASSED] eDP
[12:28:46] [PASSED] Virtual
[12:28:46] [PASSED] DSI
[12:28:46] [PASSED] DPI
[12:28:46] [PASSED] Writeback
[12:28:46] [PASSED] SPI
[12:28:46] [PASSED] USB
[12:28:46] ===== [PASSED] drm_test_drmm_connector_init_type_valid =====
[12:28:46] =============== [PASSED] drmm_connector_init ===============
[12:28:46] ========= drm_connector_dynamic_init (6 subtests) ==========
[12:28:46] [PASSED] drm_test_drm_connector_dynamic_init
[12:28:46] [PASSED] drm_test_drm_connector_dynamic_init_null_ddc
[12:28:46] [PASSED] drm_test_drm_connector_dynamic_init_not_added
[12:28:46] [PASSED] drm_test_drm_connector_dynamic_init_properties
[12:28:46] ===== drm_test_drm_connector_dynamic_init_type_valid ======
[12:28:46] [PASSED] Unknown
[12:28:46] [PASSED] VGA
[12:28:46] [PASSED] DVI-I
[12:28:46] [PASSED] DVI-D
[12:28:46] [PASSED] DVI-A
[12:28:46] [PASSED] Composite
[12:28:46] [PASSED] SVIDEO
[12:28:46] [PASSED] LVDS
[12:28:46] [PASSED] Component
[12:28:46] [PASSED] DIN
[12:28:46] [PASSED] DP
[12:28:46] [PASSED] HDMI-A
[12:28:46] [PASSED] HDMI-B
[12:28:46] [PASSED] TV
[12:28:46] [PASSED] eDP
[12:28:46] [PASSED] Virtual
[12:28:46] [PASSED] DSI
[12:28:46] [PASSED] DPI
[12:28:46] [PASSED] Writeback
[12:28:46] [PASSED] SPI
[12:28:46] [PASSED] USB
[12:28:46] = [PASSED] drm_test_drm_connector_dynamic_init_type_valid ==
[12:28:46] ======== drm_test_drm_connector_dynamic_init_name =========
[12:28:46] [PASSED] Unknown
[12:28:46] [PASSED] VGA
[12:28:46] [PASSED] DVI-I
[12:28:46] [PASSED] DVI-D
[12:28:46] [PASSED] DVI-A
[12:28:46] [PASSED] Composite
[12:28:46] [PASSED] SVIDEO
[12:28:46] [PASSED] LVDS
[12:28:46] [PASSED] Component
[12:28:46] [PASSED] DIN
[12:28:46] [PASSED] DP
[12:28:46] [PASSED] HDMI-A
[12:28:46] [PASSED] HDMI-B
[12:28:46] [PASSED] TV
[12:28:46] [PASSED] eDP
[12:28:46] [PASSED] Virtual
[12:28:46] [PASSED] DSI
[12:28:46] [PASSED] DPI
[12:28:46] [PASSED] Writeback
[12:28:46] [PASSED] SPI
[12:28:46] [PASSED] USB
[12:28:46] ==== [PASSED] drm_test_drm_connector_dynamic_init_name =====
[12:28:46] =========== [PASSED] drm_connector_dynamic_init ============
[12:28:46] ==== drm_connector_dynamic_register_early (4 subtests) =====
[12:28:46] [PASSED] drm_test_drm_connector_dynamic_register_early_on_list
[12:28:46] [PASSED] drm_test_drm_connector_dynamic_register_early_defer
[12:28:46] [PASSED] drm_test_drm_connector_dynamic_register_early_no_init
[12:28:46] [PASSED] drm_test_drm_connector_dynamic_register_early_no_mode_object
[12:28:46] ====== [PASSED] drm_connector_dynamic_register_early =======
[12:28:46] ======= drm_connector_dynamic_register (7 subtests) ========
[12:28:46] [PASSED] drm_test_drm_connector_dynamic_register_on_list
[12:28:46] [PASSED] drm_test_drm_connector_dynamic_register_no_defer
[12:28:46] [PASSED] drm_test_drm_connector_dynamic_register_no_init
[12:28:46] [PASSED] drm_test_drm_connector_dynamic_register_mode_object
[12:28:46] [PASSED] drm_test_drm_connector_dynamic_register_sysfs
[12:28:46] [PASSED] drm_test_drm_connector_dynamic_register_sysfs_name
[12:28:46] [PASSED] drm_test_drm_connector_dynamic_register_debugfs
[12:28:46] ========= [PASSED] drm_connector_dynamic_register ==========
[12:28:46] = drm_connector_attach_broadcast_rgb_property (2 subtests) =
[12:28:46] [PASSED] drm_test_drm_connector_attach_broadcast_rgb_property
[12:28:46] [PASSED] drm_test_drm_connector_attach_broadcast_rgb_property_hdmi_connector
[12:28:46] === [PASSED] drm_connector_attach_broadcast_rgb_property ===
[12:28:46] ========== drm_get_tv_mode_from_name (2 subtests) ==========
[12:28:46] ========== drm_test_get_tv_mode_from_name_valid ===========
[12:28:46] [PASSED] NTSC
[12:28:46] [PASSED] NTSC-443
[12:28:46] [PASSED] NTSC-J
[12:28:46] [PASSED] PAL
[12:28:46] [PASSED] PAL-M
[12:28:46] [PASSED] PAL-N
[12:28:46] [PASSED] SECAM
[12:28:46] [PASSED] Mono
[12:28:46] ====== [PASSED] drm_test_get_tv_mode_from_name_valid =======
[12:28:46] [PASSED] drm_test_get_tv_mode_from_name_truncated
[12:28:46] ============ [PASSED] drm_get_tv_mode_from_name ============
[12:28:46] = drm_test_connector_hdmi_compute_mode_clock (12 subtests) =
[12:28:46] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb
[12:28:46] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb_10bpc
[12:28:46] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb_10bpc_vic_1
[12:28:46] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb_12bpc
[12:28:46] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb_12bpc_vic_1
[12:28:46] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb_double
[12:28:46] = drm_test_connector_hdmi_compute_mode_clock_yuv420_valid =
[12:28:46] [PASSED] VIC 96
[12:28:46] [PASSED] VIC 97
[12:28:46] [PASSED] VIC 101
[12:28:46] [PASSED] VIC 102
[12:28:46] [PASSED] VIC 106
[12:28:46] [PASSED] VIC 107
[12:28:46] === [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv420_valid ===
[12:28:46] [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv420_10_bpc
[12:28:46] [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv420_12_bpc
[12:28:46] [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv422_8_bpc
[12:28:46] [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv422_10_bpc
[12:28:46] [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv422_12_bpc
[12:28:46] === [PASSED] drm_test_connector_hdmi_compute_mode_clock ====
[12:28:46] == drm_hdmi_connector_get_broadcast_rgb_name (2 subtests) ==
[12:28:46] === drm_test_drm_hdmi_connector_get_broadcast_rgb_name ====
[12:28:46] [PASSED] Automatic
[12:28:46] [PASSED] Full
[12:28:46] [PASSED] Limited 16:235
[12:28:46] === [PASSED] drm_test_drm_hdmi_connector_get_broadcast_rgb_name ===
[12:28:46] [PASSED] drm_test_drm_hdmi_connector_get_broadcast_rgb_name_invalid
[12:28:46] ==== [PASSED] drm_hdmi_connector_get_broadcast_rgb_name ====
[12:28:46] == drm_hdmi_connector_get_output_format_name (2 subtests) ==
[12:28:46] === drm_test_drm_hdmi_connector_get_output_format_name ====
[12:28:46] [PASSED] RGB
[12:28:46] [PASSED] YUV 4:2:0
[12:28:46] [PASSED] YUV 4:2:2
[12:28:46] [PASSED] YUV 4:4:4
[12:28:46] === [PASSED] drm_test_drm_hdmi_connector_get_output_format_name ===
[12:28:46] [PASSED] drm_test_drm_hdmi_connector_get_output_format_name_invalid
[12:28:46] ==== [PASSED] drm_hdmi_connector_get_output_format_name ====
[12:28:46] ============= drm_damage_helper (21 subtests) ==============
[12:28:46] [PASSED] drm_test_damage_iter_no_damage
[12:28:46] [PASSED] drm_test_damage_iter_no_damage_fractional_src
[12:28:46] [PASSED] drm_test_damage_iter_no_damage_src_moved
[12:28:46] [PASSED] drm_test_damage_iter_no_damage_fractional_src_moved
[12:28:46] [PASSED] drm_test_damage_iter_no_damage_not_visible
[12:28:46] [PASSED] drm_test_damage_iter_no_damage_no_crtc
[12:28:46] [PASSED] drm_test_damage_iter_no_damage_no_fb
[12:28:46] [PASSED] drm_test_damage_iter_simple_damage
[12:28:46] [PASSED] drm_test_damage_iter_single_damage
[12:28:46] [PASSED] drm_test_damage_iter_single_damage_intersect_src
[12:28:46] [PASSED] drm_test_damage_iter_single_damage_outside_src
[12:28:46] [PASSED] drm_test_damage_iter_single_damage_fractional_src
[12:28:46] [PASSED] drm_test_damage_iter_single_damage_intersect_fractional_src
[12:28:46] [PASSED] drm_test_damage_iter_single_damage_outside_fractional_src
[12:28:46] [PASSED] drm_test_damage_iter_single_damage_src_moved
[12:28:46] [PASSED] drm_test_damage_iter_single_damage_fractional_src_moved
[12:28:46] [PASSED] drm_test_damage_iter_damage
[12:28:46] [PASSED] drm_test_damage_iter_damage_one_intersect
[12:28:46] [PASSED] drm_test_damage_iter_damage_one_outside
[12:28:46] [PASSED] drm_test_damage_iter_damage_src_moved
[12:28:46] [PASSED] drm_test_damage_iter_damage_not_visible
[12:28:46] ================ [PASSED] drm_damage_helper ================
[12:28:46] ============== drm_dp_mst_helper (3 subtests) ==============
[12:28:46] ============== drm_test_dp_mst_calc_pbn_mode ==============
[12:28:46] [PASSED] Clock 154000 BPP 30 DSC disabled
[12:28:46] [PASSED] Clock 234000 BPP 30 DSC disabled
[12:28:46] [PASSED] Clock 297000 BPP 24 DSC disabled
[12:28:46] [PASSED] Clock 332880 BPP 24 DSC enabled
[12:28:46] [PASSED] Clock 324540 BPP 24 DSC enabled
[12:28:46] ========== [PASSED] drm_test_dp_mst_calc_pbn_mode ==========
[12:28:46] ============== drm_test_dp_mst_calc_pbn_div ===============
[12:28:46] [PASSED] Link rate 2000000 lane count 4
[12:28:46] [PASSED] Link rate 2000000 lane count 2
[12:28:46] [PASSED] Link rate 2000000 lane count 1
[12:28:46] [PASSED] Link rate 1350000 lane count 4
[12:28:46] [PASSED] Link rate 1350000 lane count 2
[12:28:46] [PASSED] Link rate 1350000 lane count 1
[12:28:46] [PASSED] Link rate 1000000 lane count 4
[12:28:46] [PASSED] Link rate 1000000 lane count 2
[12:28:46] [PASSED] Link rate 1000000 lane count 1
[12:28:46] [PASSED] Link rate 810000 lane count 4
[12:28:46] [PASSED] Link rate 810000 lane count 2
[12:28:46] [PASSED] Link rate 810000 lane count 1
[12:28:46] [PASSED] Link rate 540000 lane count 4
[12:28:46] [PASSED] Link rate 540000 lane count 2
[12:28:46] [PASSED] Link rate 540000 lane count 1
[12:28:46] [PASSED] Link rate 270000 lane count 4
[12:28:46] [PASSED] Link rate 270000 lane count 2
[12:28:46] [PASSED] Link rate 270000 lane count 1
[12:28:46] [PASSED] Link rate 162000 lane count 4
[12:28:46] [PASSED] Link rate 162000 lane count 2
[12:28:46] [PASSED] Link rate 162000 lane count 1
[12:28:46] ========== [PASSED] drm_test_dp_mst_calc_pbn_div ===========
[12:28:46] ========= drm_test_dp_mst_sideband_msg_req_decode =========
[12:28:46] [PASSED] DP_ENUM_PATH_RESOURCES with port number
[12:28:46] [PASSED] DP_POWER_UP_PHY with port number
[12:28:46] [PASSED] DP_POWER_DOWN_PHY with port number
[12:28:46] [PASSED] DP_ALLOCATE_PAYLOAD with SDP stream sinks
[12:28:46] [PASSED] DP_ALLOCATE_PAYLOAD with port number
[12:28:46] [PASSED] DP_ALLOCATE_PAYLOAD with VCPI
[12:28:46] [PASSED] DP_ALLOCATE_PAYLOAD with PBN
[12:28:46] [PASSED] DP_QUERY_PAYLOAD with port number
[12:28:46] [PASSED] DP_QUERY_PAYLOAD with VCPI
[12:28:46] [PASSED] DP_REMOTE_DPCD_READ with port number
[12:28:46] [PASSED] DP_REMOTE_DPCD_READ with DPCD address
[12:28:46] [PASSED] DP_REMOTE_DPCD_READ with max number of bytes
[12:28:46] [PASSED] DP_REMOTE_DPCD_WRITE with port number
[12:28:46] [PASSED] DP_REMOTE_DPCD_WRITE with DPCD address
[12:28:46] [PASSED] DP_REMOTE_DPCD_WRITE with data array
[12:28:46] [PASSED] DP_REMOTE_I2C_READ with port number
[12:28:46] [PASSED] DP_REMOTE_I2C_READ with I2C device ID
[12:28:46] [PASSED] DP_REMOTE_I2C_READ with transactions array
[12:28:46] [PASSED] DP_REMOTE_I2C_WRITE with port number
[12:28:46] [PASSED] DP_REMOTE_I2C_WRITE with I2C device ID
[12:28:46] [PASSED] DP_REMOTE_I2C_WRITE with data array
[12:28:46] [PASSED] DP_QUERY_STREAM_ENC_STATUS with stream ID
[12:28:46] [PASSED] DP_QUERY_STREAM_ENC_STATUS with client ID
[12:28:46] [PASSED] DP_QUERY_STREAM_ENC_STATUS with stream event
[12:28:46] [PASSED] DP_QUERY_STREAM_ENC_STATUS with valid stream event
[12:28:46] [PASSED] DP_QUERY_STREAM_ENC_STATUS with stream behavior
[12:28:46] [PASSED] DP_QUERY_STREAM_ENC_STATUS with a valid stream behavior
[12:28:46] ===== [PASSED] drm_test_dp_mst_sideband_msg_req_decode =====
[12:28:46] ================ [PASSED] drm_dp_mst_helper ================
[12:28:46] ================== drm_exec (7 subtests) ===================
[12:28:46] [PASSED] sanitycheck
[12:28:46] [PASSED] test_lock
[12:28:46] [PASSED] test_lock_unlock
[12:28:46] [PASSED] test_duplicates
[12:28:46] [PASSED] test_prepare
[12:28:46] [PASSED] test_prepare_array
[12:28:46] [PASSED] test_multiple_loops
[12:28:46] ==================== [PASSED] drm_exec =====================
[12:28:46] =========== drm_format_helper_test (17 subtests) ===========
[12:28:46] ============== drm_test_fb_xrgb8888_to_gray8 ==============
[12:28:46] [PASSED] single_pixel_source_buffer
[12:28:46] [PASSED] single_pixel_clip_rectangle
[12:28:46] [PASSED] well_known_colors
[12:28:46] [PASSED] destination_pitch
[12:28:46] ========== [PASSED] drm_test_fb_xrgb8888_to_gray8 ==========
[12:28:46] ============= drm_test_fb_xrgb8888_to_rgb332 ==============
[12:28:46] [PASSED] single_pixel_source_buffer
[12:28:46] [PASSED] single_pixel_clip_rectangle
[12:28:46] [PASSED] well_known_colors
[12:28:46] [PASSED] destination_pitch
[12:28:46] ========= [PASSED] drm_test_fb_xrgb8888_to_rgb332 ==========
[12:28:46] ============= drm_test_fb_xrgb8888_to_rgb565 ==============
[12:28:46] [PASSED] single_pixel_source_buffer
[12:28:46] [PASSED] single_pixel_clip_rectangle
[12:28:46] [PASSED] well_known_colors
[12:28:46] [PASSED] destination_pitch
[12:28:46] ========= [PASSED] drm_test_fb_xrgb8888_to_rgb565 ==========
[12:28:46] ============ drm_test_fb_xrgb8888_to_xrgb1555 =============
[12:28:46] [PASSED] single_pixel_source_buffer
[12:28:46] [PASSED] single_pixel_clip_rectangle
[12:28:46] [PASSED] well_known_colors
[12:28:46] [PASSED] destination_pitch
[12:28:46] ======== [PASSED] drm_test_fb_xrgb8888_to_xrgb1555 =========
[12:28:46] ============ drm_test_fb_xrgb8888_to_argb1555 =============
[12:28:46] [PASSED] single_pixel_source_buffer
[12:28:46] [PASSED] single_pixel_clip_rectangle
[12:28:46] [PASSED] well_known_colors
[12:28:46] [PASSED] destination_pitch
[12:28:46] ======== [PASSED] drm_test_fb_xrgb8888_to_argb1555 =========
[12:28:46] ============ drm_test_fb_xrgb8888_to_rgba5551 =============
[12:28:46] [PASSED] single_pixel_source_buffer
[12:28:46] [PASSED] single_pixel_clip_rectangle
[12:28:46] [PASSED] well_known_colors
[12:28:46] [PASSED] destination_pitch
[12:28:46] ======== [PASSED] drm_test_fb_xrgb8888_to_rgba5551 =========
[12:28:46] ============= drm_test_fb_xrgb8888_to_rgb888 ==============
[12:28:46] [PASSED] single_pixel_source_buffer
[12:28:46] [PASSED] single_pixel_clip_rectangle
[12:28:46] [PASSED] well_known_colors
[12:28:46] [PASSED] destination_pitch
[12:28:46] ========= [PASSED] drm_test_fb_xrgb8888_to_rgb888 ==========
[12:28:46] ============= drm_test_fb_xrgb8888_to_bgr888 ==============
[12:28:46] [PASSED] single_pixel_source_buffer
[12:28:46] [PASSED] single_pixel_clip_rectangle
[12:28:46] [PASSED] well_known_colors
[12:28:46] [PASSED] destination_pitch
[12:28:46] ========= [PASSED] drm_test_fb_xrgb8888_to_bgr888 ==========
[12:28:46] ============ drm_test_fb_xrgb8888_to_argb8888 =============
[12:28:46] [PASSED] single_pixel_source_buffer
[12:28:46] [PASSED] single_pixel_clip_rectangle
[12:28:46] [PASSED] well_known_colors
[12:28:46] [PASSED] destination_pitch
[12:28:46] ======== [PASSED] drm_test_fb_xrgb8888_to_argb8888 =========
[12:28:46] =========== drm_test_fb_xrgb8888_to_xrgb2101010 ===========
[12:28:46] [PASSED] single_pixel_source_buffer
[12:28:46] [PASSED] single_pixel_clip_rectangle
[12:28:46] [PASSED] well_known_colors
[12:28:46] [PASSED] destination_pitch
[12:28:46] ======= [PASSED] drm_test_fb_xrgb8888_to_xrgb2101010 =======
[12:28:46] =========== drm_test_fb_xrgb8888_to_argb2101010 ===========
[12:28:46] [PASSED] single_pixel_source_buffer
[12:28:46] [PASSED] single_pixel_clip_rectangle
[12:28:46] [PASSED] well_known_colors
[12:28:46] [PASSED] destination_pitch
[12:28:46] ======= [PASSED] drm_test_fb_xrgb8888_to_argb2101010 =======
[12:28:46] ============== drm_test_fb_xrgb8888_to_mono ===============
[12:28:46] [PASSED] single_pixel_source_buffer
[12:28:46] [PASSED] single_pixel_clip_rectangle
[12:28:46] [PASSED] well_known_colors
[12:28:46] [PASSED] destination_pitch
[12:28:46] ========== [PASSED] drm_test_fb_xrgb8888_to_mono ===========
[12:28:46] ==================== drm_test_fb_swab =====================
[12:28:46] [PASSED] single_pixel_source_buffer
[12:28:46] [PASSED] single_pixel_clip_rectangle
[12:28:46] [PASSED] well_known_colors
[12:28:46] [PASSED] destination_pitch
[12:28:46] ================ [PASSED] drm_test_fb_swab =================
[12:28:46] ============ drm_test_fb_xrgb8888_to_xbgr8888 =============
[12:28:46] [PASSED] single_pixel_source_buffer
[12:28:46] [PASSED] single_pixel_clip_rectangle
[12:28:46] [PASSED] well_known_colors
[12:28:46] [PASSED] destination_pitch
[12:28:46] ======== [PASSED] drm_test_fb_xrgb8888_to_xbgr8888 =========
[12:28:46] ============ drm_test_fb_xrgb8888_to_abgr8888 =============
[12:28:46] [PASSED] single_pixel_source_buffer
[12:28:46] [PASSED] single_pixel_clip_rectangle
[12:28:46] [PASSED] well_known_colors
[12:28:46] [PASSED] destination_pitch
[12:28:46] ======== [PASSED] drm_test_fb_xrgb8888_to_abgr8888 =========
[12:28:46] ================= drm_test_fb_clip_offset =================
[12:28:46] [PASSED] pass through
[12:28:46] [PASSED] horizontal offset
[12:28:46] [PASSED] vertical offset
[12:28:46] [PASSED] horizontal and vertical offset
[12:28:46] [PASSED] horizontal offset (custom pitch)
[12:28:46] [PASSED] vertical offset (custom pitch)
[12:28:46] [PASSED] horizontal and vertical offset (custom pitch)
[12:28:46] ============= [PASSED] drm_test_fb_clip_offset =============
[12:28:46] =================== drm_test_fb_memcpy ====================
[12:28:46] [PASSED] single_pixel_source_buffer: XR24 little-endian (0x34325258)
[12:28:46] [PASSED] single_pixel_source_buffer: XRA8 little-endian (0x38415258)
[12:28:46] [PASSED] single_pixel_source_buffer: YU24 little-endian (0x34325559)
[12:28:46] [PASSED] single_pixel_clip_rectangle: XB24 little-endian (0x34324258)
[12:28:46] [PASSED] single_pixel_clip_rectangle: XRA8 little-endian (0x38415258)
[12:28:46] [PASSED] single_pixel_clip_rectangle: YU24 little-endian (0x34325559)
[12:28:46] [PASSED] well_known_colors: XB24 little-endian (0x34324258)
[12:28:46] [PASSED] well_known_colors: XRA8 little-endian (0x38415258)
[12:28:46] [PASSED] well_known_colors: YU24 little-endian (0x34325559)
[12:28:46] [PASSED] destination_pitch: XB24 little-endian (0x34324258)
[12:28:46] [PASSED] destination_pitch: XRA8 little-endian (0x38415258)
[12:28:46] [PASSED] destination_pitch: YU24 little-endian (0x34325559)
[12:28:46] =============== [PASSED] drm_test_fb_memcpy ================
[12:28:46] ============= [PASSED] drm_format_helper_test ==============
[12:28:46] ================= drm_format (18 subtests) =================
[12:28:46] [PASSED] drm_test_format_block_width_invalid
[12:28:46] [PASSED] drm_test_format_block_width_one_plane
[12:28:46] [PASSED] drm_test_format_block_width_two_plane
[12:28:46] [PASSED] drm_test_format_block_width_three_plane
[12:28:46] [PASSED] drm_test_format_block_width_tiled
[12:28:46] [PASSED] drm_test_format_block_height_invalid
[12:28:46] [PASSED] drm_test_format_block_height_one_plane
[12:28:46] [PASSED] drm_test_format_block_height_two_plane
[12:28:46] [PASSED] drm_test_format_block_height_three_plane
[12:28:46] [PASSED] drm_test_format_block_height_tiled
[12:28:46] [PASSED] drm_test_format_min_pitch_invalid
[12:28:46] [PASSED] drm_test_format_min_pitch_one_plane_8bpp
[12:28:46] [PASSED] drm_test_format_min_pitch_one_plane_16bpp
[12:28:46] [PASSED] drm_test_format_min_pitch_one_plane_24bpp
[12:28:46] [PASSED] drm_test_format_min_pitch_one_plane_32bpp
[12:28:46] [PASSED] drm_test_format_min_pitch_two_plane
[12:28:46] [PASSED] drm_test_format_min_pitch_three_plane_8bpp
[12:28:46] [PASSED] drm_test_format_min_pitch_tiled
[12:28:46] =================== [PASSED] drm_format ====================
[12:28:46] ============== drm_framebuffer (10 subtests) ===============
[12:28:46] ========== drm_test_framebuffer_check_src_coords ==========
[12:28:46] [PASSED] Success: source fits into fb
[12:28:46] [PASSED] Fail: overflowing fb with x-axis coordinate
[12:28:46] [PASSED] Fail: overflowing fb with y-axis coordinate
[12:28:46] [PASSED] Fail: overflowing fb with source width
[12:28:46] [PASSED] Fail: overflowing fb with source height
[12:28:46] ====== [PASSED] drm_test_framebuffer_check_src_coords ======
[12:28:46] [PASSED] drm_test_framebuffer_cleanup
[12:28:46] =============== drm_test_framebuffer_create ===============
[12:28:46] [PASSED] ABGR8888 normal sizes
[12:28:46] [PASSED] ABGR8888 max sizes
[12:28:46] [PASSED] ABGR8888 pitch greater than min required
[12:28:46] [PASSED] ABGR8888 pitch less than min required
[12:28:46] [PASSED] ABGR8888 Invalid width
[12:28:46] [PASSED] ABGR8888 Invalid buffer handle
[12:28:46] [PASSED] No pixel format
[12:28:46] [PASSED] ABGR8888 Width 0
[12:28:46] [PASSED] ABGR8888 Height 0
[12:28:46] [PASSED] ABGR8888 Out of bound height * pitch combination
[12:28:46] [PASSED] ABGR8888 Large buffer offset
[12:28:46] [PASSED] ABGR8888 Buffer offset for inexistent plane
[12:28:46] [PASSED] ABGR8888 Invalid flag
[12:28:46] [PASSED] ABGR8888 Set DRM_MODE_FB_MODIFIERS without modifiers
[12:28:46] [PASSED] ABGR8888 Valid buffer modifier
[12:28:46] [PASSED] ABGR8888 Invalid buffer modifier(DRM_FORMAT_MOD_SAMSUNG_64_32_TILE)
[12:28:46] [PASSED] ABGR8888 Extra pitches without DRM_MODE_FB_MODIFIERS
[12:28:46] [PASSED] ABGR8888 Extra pitches with DRM_MODE_FB_MODIFIERS
[12:28:46] [PASSED] NV12 Normal sizes
[12:28:46] [PASSED] NV12 Max sizes
[12:28:46] [PASSED] NV12 Invalid pitch
[12:28:46] [PASSED] NV12 Invalid modifier/missing DRM_MODE_FB_MODIFIERS flag
[12:28:46] [PASSED] NV12 different modifier per-plane
[12:28:46] [PASSED] NV12 with DRM_FORMAT_MOD_SAMSUNG_64_32_TILE
[12:28:46] [PASSED] NV12 Valid modifiers without DRM_MODE_FB_MODIFIERS
[12:28:46] [PASSED] NV12 Modifier for inexistent plane
[12:28:46] [PASSED] NV12 Handle for inexistent plane
[12:28:46] [PASSED] NV12 Handle for inexistent plane without DRM_MODE_FB_MODIFIERS
[12:28:46] [PASSED] YVU420 DRM_MODE_FB_MODIFIERS set without modifier
[12:28:46] [PASSED] YVU420 Normal sizes
[12:28:46] [PASSED] YVU420 Max sizes
[12:28:46] [PASSED] YVU420 Invalid pitch
[12:28:46] [PASSED] YVU420 Different pitches
[12:28:46] [PASSED] YVU420 Different buffer offsets/pitches
[12:28:46] [PASSED] YVU420 Modifier set just for plane 0, without DRM_MODE_FB_MODIFIERS
[12:28:46] [PASSED] YVU420 Modifier set just for planes 0, 1, without DRM_MODE_FB_MODIFIERS
[12:28:46] [PASSED] YVU420 Modifier set just for plane 0, 1, with DRM_MODE_FB_MODIFIERS
[12:28:46] [PASSED] YVU420 Valid modifier
[12:28:46] [PASSED] YVU420 Different modifiers per plane
[12:28:46] [PASSED] YVU420 Modifier for inexistent plane
[12:28:46] [PASSED] YUV420_10BIT Invalid modifier(DRM_FORMAT_MOD_LINEAR)
[12:28:46] [PASSED] X0L2 Normal sizes
[12:28:46] [PASSED] X0L2 Max sizes
[12:28:46] [PASSED] X0L2 Invalid pitch
[12:28:46] [PASSED] X0L2 Pitch greater than minimum required
[12:28:46] [PASSED] X0L2 Handle for inexistent plane
[12:28:46] [PASSED] X0L2 Offset for inexistent plane, without DRM_MODE_FB_MODIFIERS set
[12:28:46] [PASSED] X0L2 Modifier without DRM_MODE_FB_MODIFIERS set
[12:28:46] [PASSED] X0L2 Valid modifier
[12:28:46] [PASSED] X0L2 Modifier for inexistent plane
[12:28:46] =========== [PASSED] drm_test_framebuffer_create ===========
[12:28:46] [PASSED] drm_test_framebuffer_free
[12:28:46] [PASSED] drm_test_framebuffer_init
[12:28:46] [PASSED] drm_test_framebuffer_init_bad_format
[12:28:46] [PASSED] drm_test_framebuffer_init_dev_mismatch
[12:28:46] [PASSED] drm_test_framebuffer_lookup
[12:28:46] [PASSED] drm_test_framebuffer_lookup_inexistent
[12:28:46] [PASSED] drm_test_framebuffer_modifiers_not_supported
[12:28:46] ================= [PASSED] drm_framebuffer =================
[12:28:46] ================ drm_gem_shmem (8 subtests) ================
[12:28:46] [PASSED] drm_gem_shmem_test_obj_create
[12:28:46] [PASSED] drm_gem_shmem_test_obj_create_private
[12:28:46] [PASSED] drm_gem_shmem_test_pin_pages
[12:28:46] [PASSED] drm_gem_shmem_test_vmap
[12:28:46] [PASSED] drm_gem_shmem_test_get_sg_table
[12:28:46] [PASSED] drm_gem_shmem_test_get_pages_sgt
[12:28:46] [PASSED] drm_gem_shmem_test_madvise
[12:28:46] [PASSED] drm_gem_shmem_test_purge
[12:28:46] ================== [PASSED] drm_gem_shmem ==================
[12:28:46] === drm_atomic_helper_connector_hdmi_check (27 subtests) ===
[12:28:46] [PASSED] drm_test_check_broadcast_rgb_auto_cea_mode
[12:28:46] [PASSED] drm_test_check_broadcast_rgb_auto_cea_mode_vic_1
[12:28:46] [PASSED] drm_test_check_broadcast_rgb_full_cea_mode
[12:28:46] [PASSED] drm_test_check_broadcast_rgb_full_cea_mode_vic_1
[12:28:46] [PASSED] drm_test_check_broadcast_rgb_limited_cea_mode
[12:28:46] [PASSED] drm_test_check_broadcast_rgb_limited_cea_mode_vic_1
[12:28:46] ====== drm_test_check_broadcast_rgb_cea_mode_yuv420 =======
[12:28:46] [PASSED] Automatic
[12:28:46] [PASSED] Full
[12:28:46] [PASSED] Limited 16:235
[12:28:46] == [PASSED] drm_test_check_broadcast_rgb_cea_mode_yuv420 ===
[12:28:46] [PASSED] drm_test_check_broadcast_rgb_crtc_mode_changed
[12:28:46] [PASSED] drm_test_check_broadcast_rgb_crtc_mode_not_changed
[12:28:46] [PASSED] drm_test_check_disable_connector
[12:28:46] [PASSED] drm_test_check_hdmi_funcs_reject_rate
[12:28:46] [PASSED] drm_test_check_max_tmds_rate_bpc_fallback_rgb
[12:28:46] [PASSED] drm_test_check_max_tmds_rate_bpc_fallback_yuv420
[12:28:46] [PASSED] drm_test_check_max_tmds_rate_bpc_fallback_ignore_yuv422
[12:28:46] [PASSED] drm_test_check_max_tmds_rate_bpc_fallback_ignore_yuv420
[12:28:46] [PASSED] drm_test_check_driver_unsupported_fallback_yuv420
[12:28:46] [PASSED] drm_test_check_output_bpc_crtc_mode_changed
[12:28:46] [PASSED] drm_test_check_output_bpc_crtc_mode_not_changed
[12:28:46] [PASSED] drm_test_check_output_bpc_dvi
[12:28:46] [PASSED] drm_test_check_output_bpc_format_vic_1
[12:28:46] [PASSED] drm_test_check_output_bpc_format_display_8bpc_only
[12:28:46] [PASSED] drm_test_check_output_bpc_format_display_rgb_only
[12:28:46] [PASSED] drm_test_check_output_bpc_format_driver_8bpc_only
[12:28:46] [PASSED] drm_test_check_output_bpc_format_driver_rgb_only
[12:28:46] [PASSED] drm_test_check_tmds_char_rate_rgb_8bpc
[12:28:46] [PASSED] drm_test_check_tmds_char_rate_rgb_10bpc
[12:28:46] [PASSED] drm_test_check_tmds_char_rate_rgb_12bpc
[12:28:46] ===== [PASSED] drm_atomic_helper_connector_hdmi_check ======
[12:28:46] === drm_atomic_helper_connector_hdmi_reset (6 subtests) ====
[12:28:46] [PASSED] drm_test_check_broadcast_rgb_value
[12:28:46] [PASSED] drm_test_check_bpc_8_value
[12:28:46] [PASSED] drm_test_check_bpc_10_value
[12:28:46] [PASSED] drm_test_check_bpc_12_value
[12:28:46] [PASSED] drm_test_check_format_value
[12:28:46] [PASSED] drm_test_check_tmds_char_value
[12:28:46] ===== [PASSED] drm_atomic_helper_connector_hdmi_reset ======
[12:28:46] = drm_atomic_helper_connector_hdmi_mode_valid (4 subtests) =
[12:28:46] [PASSED] drm_test_check_mode_valid
[12:28:46] [PASSED] drm_test_check_mode_valid_reject
[12:28:46] [PASSED] drm_test_check_mode_valid_reject_rate
[12:28:46] [PASSED] drm_test_check_mode_valid_reject_max_clock
[12:28:46] === [PASSED] drm_atomic_helper_connector_hdmi_mode_valid ===
[12:28:46] ================= drm_managed (2 subtests) =================
[12:28:46] [PASSED] drm_test_managed_release_action
[12:28:46] [PASSED] drm_test_managed_run_action
[12:28:46] =================== [PASSED] drm_managed ===================
[12:28:46] =================== drm_mm (6 subtests) ====================
[12:28:46] [PASSED] drm_test_mm_init
[12:28:46] [PASSED] drm_test_mm_debug
[12:28:46] [PASSED] drm_test_mm_align32
[12:28:46] [PASSED] drm_test_mm_align64
[12:28:46] [PASSED] drm_test_mm_lowest
[12:28:46] [PASSED] drm_test_mm_highest
[12:28:46] ===================== [PASSED] drm_mm ======================
[12:28:46] ============= drm_modes_analog_tv (5 subtests) =============
[12:28:46] [PASSED] drm_test_modes_analog_tv_mono_576i
[12:28:46] [PASSED] drm_test_modes_analog_tv_ntsc_480i
[12:28:46] [PASSED] drm_test_modes_analog_tv_ntsc_480i_inlined
[12:28:46] [PASSED] drm_test_modes_analog_tv_pal_576i
[12:28:46] [PASSED] drm_test_modes_analog_tv_pal_576i_inlined
[12:28:46] =============== [PASSED] drm_modes_analog_tv ===============
[12:28:46] ============== drm_plane_helper (2 subtests) ===============
[12:28:46] =============== drm_test_check_plane_state ================
[12:28:46] [PASSED] clipping_simple
[12:28:46] [PASSED] clipping_rotate_reflect
[12:28:46] [PASSED] positioning_simple
[12:28:46] [PASSED] upscaling
[12:28:46] [PASSED] downscaling
[12:28:46] [PASSED] rounding1
[12:28:46] [PASSED] rounding2
[12:28:46] [PASSED] rounding3
[12:28:46] [PASSED] rounding4
[12:28:46] =========== [PASSED] drm_test_check_plane_state ============
[12:28:46] =========== drm_test_check_invalid_plane_state ============
[12:28:46] [PASSED] positioning_invalid
[12:28:46] [PASSED] upscaling_invalid
[12:28:46] [PASSED] downscaling_invalid
[12:28:46] ======= [PASSED] drm_test_check_invalid_plane_state ========
[12:28:46] ================ [PASSED] drm_plane_helper =================
[12:28:46] ====== drm_connector_helper_tv_get_modes (1 subtest) =======
[12:28:46] ====== drm_test_connector_helper_tv_get_modes_check =======
[12:28:46] [PASSED] None
[12:28:46] [PASSED] PAL
[12:28:46] [PASSED] NTSC
[12:28:46] [PASSED] Both, NTSC Default
[12:28:46] [PASSED] Both, PAL Default
[12:28:46] [PASSED] Both, NTSC Default, with PAL on command-line
[12:28:46] [PASSED] Both, PAL Default, with NTSC on command-line
[12:28:46] == [PASSED] drm_test_connector_helper_tv_get_modes_check ===
[12:28:46] ======== [PASSED] drm_connector_helper_tv_get_modes ========
[12:28:46] ================== drm_rect (9 subtests) ===================
[12:28:46] [PASSED] drm_test_rect_clip_scaled_div_by_zero
[12:28:46] [PASSED] drm_test_rect_clip_scaled_not_clipped
[12:28:46] [PASSED] drm_test_rect_clip_scaled_clipped
[12:28:46] [PASSED] drm_test_rect_clip_scaled_signed_vs_unsigned
[12:28:46] ================= drm_test_rect_intersect =================
[12:28:46] [PASSED] top-left x bottom-right: 2x2+1+1 x 2x2+0+0
[12:28:46] [PASSED] top-right x bottom-left: 2x2+0+0 x 2x2+1-1
[12:28:46] [PASSED] bottom-left x top-right: 2x2+1-1 x 2x2+0+0
[12:28:46] [PASSED] bottom-right x top-left: 2x2+0+0 x 2x2+1+1
[12:28:46] [PASSED] right x left: 2x1+0+0 x 3x1+1+0
[12:28:46] [PASSED] left x right: 3x1+1+0 x 2x1+0+0
[12:28:46] [PASSED] up x bottom: 1x2+0+0 x 1x3+0-1
[12:28:46] [PASSED] bottom x up: 1x3+0-1 x 1x2+0+0
[12:28:46] [PASSED] touching corner: 1x1+0+0 x 2x2+1+1
[12:28:46] [PASSED] touching side: 1x1+0+0 x 1x1+1+0
[12:28:46] [PASSED] equal rects: 2x2+0+0 x 2x2+0+0
[12:28:46] [PASSED] inside another: 2x2+0+0 x 1x1+1+1
[12:28:46] [PASSED] far away: 1x1+0+0 x 1x1+3+6
[12:28:46] [PASSED] points intersecting: 0x0+5+10 x 0x0+5+10
[12:28:46] [PASSED] points not intersecting: 0x0+0+0 x 0x0+5+10
[12:28:46] ============= [PASSED] drm_test_rect_intersect =============
[12:28:46] ================ drm_test_rect_calc_hscale ================
[12:28:46] [PASSED] normal use
[12:28:46] [PASSED] out of max range
[12:28:46] [PASSED] out of min range
[12:28:46] [PASSED] zero dst
[12:28:46] [PASSED] negative src
[12:28:46] [PASSED] negative dst
[12:28:46] ============ [PASSED] drm_test_rect_calc_hscale ============
[12:28:46] ================ drm_test_rect_calc_vscale ================
[12:28:46] [PASSED] normal use
stty: 'standard input': Inappropriate ioctl for device
[12:28:46] [PASSED] out of max range
[12:28:46] [PASSED] out of min range
[12:28:46] [PASSED] zero dst
[12:28:46] [PASSED] negative src
[12:28:46] [PASSED] negative dst
[12:28:46] ============ [PASSED] drm_test_rect_calc_vscale ============
[12:28:46] ================== drm_test_rect_rotate ===================
[12:28:46] [PASSED] reflect-x
[12:28:46] [PASSED] reflect-y
[12:28:46] [PASSED] rotate-0
[12:28:46] [PASSED] rotate-90
[12:28:46] [PASSED] rotate-180
[12:28:46] [PASSED] rotate-270
[12:28:46] ============== [PASSED] drm_test_rect_rotate ===============
[12:28:46] ================ drm_test_rect_rotate_inv =================
[12:28:46] [PASSED] reflect-x
[12:28:46] [PASSED] reflect-y
[12:28:46] [PASSED] rotate-0
[12:28:46] [PASSED] rotate-90
[12:28:46] [PASSED] rotate-180
[12:28:46] [PASSED] rotate-270
[12:28:46] ============ [PASSED] drm_test_rect_rotate_inv =============
[12:28:46] ==================== [PASSED] drm_rect =====================
[12:28:46] ============ drm_sysfb_modeset_test (1 subtest) ============
[12:28:46] ============ drm_test_sysfb_build_fourcc_list =============
[12:28:46] [PASSED] no native formats
[12:28:46] [PASSED] XRGB8888 as native format
[12:28:46] [PASSED] remove duplicates
[12:28:46] [PASSED] convert alpha formats
[12:28:46] [PASSED] random formats
[12:28:46] ======== [PASSED] drm_test_sysfb_build_fourcc_list =========
[12:28:46] ============= [PASSED] drm_sysfb_modeset_test ==============
[12:28:46] ================== drm_fixp (2 subtests) ===================
[12:28:46] [PASSED] drm_test_int2fixp
[12:28:46] [PASSED] drm_test_sm2fixp
[12:28:46] ==================== [PASSED] drm_fixp =====================
[12:28:46] ============================================================
[12:28:46] Testing complete. Ran 624 tests: passed: 624
[12:28:46] Elapsed time: 27.606s total, 1.622s configuring, 25.516s building, 0.423s running
+ /kernel/tools/testing/kunit/kunit.py run --kunitconfig /kernel/drivers/gpu/drm/ttm/tests/.kunitconfig
[12:28:46] Configuring KUnit Kernel ...
Regenerating .config ...
Populating config with:
$ make ARCH=um O=.kunit olddefconfig
[12:28:48] Building KUnit Kernel ...
Populating config with:
$ make ARCH=um O=.kunit olddefconfig
Building with:
$ make all compile_commands.json scripts_gdb ARCH=um O=.kunit --jobs=48
[12:28:57] Starting KUnit Kernel (1/1)...
[12:28:57] ============================================================
Running tests with:
$ .kunit/linux kunit.enable=1 mem=1G console=tty kunit_shutdown=halt
[12:28:57] ================= ttm_device (5 subtests) ==================
[12:28:57] [PASSED] ttm_device_init_basic
[12:28:57] [PASSED] ttm_device_init_multiple
[12:28:57] [PASSED] ttm_device_fini_basic
[12:28:57] [PASSED] ttm_device_init_no_vma_man
[12:28:57] ================== ttm_device_init_pools ==================
[12:28:57] [PASSED] No DMA allocations, no DMA32 required
[12:28:57] [PASSED] DMA allocations, DMA32 required
[12:28:57] [PASSED] No DMA allocations, DMA32 required
[12:28:57] [PASSED] DMA allocations, no DMA32 required
[12:28:57] ============== [PASSED] ttm_device_init_pools ==============
[12:28:57] =================== [PASSED] ttm_device ====================
[12:28:57] ================== ttm_pool (8 subtests) ===================
[12:28:57] ================== ttm_pool_alloc_basic ===================
[12:28:57] [PASSED] One page
[12:28:57] [PASSED] More than one page
[12:28:57] [PASSED] Above the allocation limit
[12:28:57] [PASSED] One page, with coherent DMA mappings enabled
[12:28:57] [PASSED] Above the allocation limit, with coherent DMA mappings enabled
[12:28:57] ============== [PASSED] ttm_pool_alloc_basic ===============
[12:28:57] ============== ttm_pool_alloc_basic_dma_addr ==============
[12:28:57] [PASSED] One page
[12:28:57] [PASSED] More than one page
[12:28:57] [PASSED] Above the allocation limit
[12:28:57] [PASSED] One page, with coherent DMA mappings enabled
[12:28:57] [PASSED] Above the allocation limit, with coherent DMA mappings enabled
[12:28:57] ========== [PASSED] ttm_pool_alloc_basic_dma_addr ==========
[12:28:57] [PASSED] ttm_pool_alloc_order_caching_match
[12:28:57] [PASSED] ttm_pool_alloc_caching_mismatch
[12:28:57] [PASSED] ttm_pool_alloc_order_mismatch
[12:28:57] [PASSED] ttm_pool_free_dma_alloc
[12:28:57] [PASSED] ttm_pool_free_no_dma_alloc
[12:28:57] [PASSED] ttm_pool_fini_basic
[12:28:57] ==================== [PASSED] ttm_pool =====================
[12:28:57] ================ ttm_resource (8 subtests) =================
[12:28:57] ================= ttm_resource_init_basic =================
[12:28:57] [PASSED] Init resource in TTM_PL_SYSTEM
[12:28:57] [PASSED] Init resource in TTM_PL_VRAM
[12:28:57] [PASSED] Init resource in a private placement
[12:28:57] [PASSED] Init resource in TTM_PL_SYSTEM, set placement flags
[12:28:57] ============= [PASSED] ttm_resource_init_basic =============
[12:28:57] [PASSED] ttm_resource_init_pinned
[12:28:57] [PASSED] ttm_resource_fini_basic
[12:28:57] [PASSED] ttm_resource_manager_init_basic
[12:28:57] [PASSED] ttm_resource_manager_usage_basic
[12:28:57] [PASSED] ttm_resource_manager_set_used_basic
[12:28:57] [PASSED] ttm_sys_man_alloc_basic
[12:28:57] [PASSED] ttm_sys_man_free_basic
[12:28:57] ================== [PASSED] ttm_resource ===================
[12:28:57] =================== ttm_tt (15 subtests) ===================
[12:28:57] ==================== ttm_tt_init_basic ====================
[12:28:57] [PASSED] Page-aligned size
[12:28:57] [PASSED] Extra pages requested
[12:28:57] ================ [PASSED] ttm_tt_init_basic ================
[12:28:57] [PASSED] ttm_tt_init_misaligned
[12:28:57] [PASSED] ttm_tt_fini_basic
[12:28:57] [PASSED] ttm_tt_fini_sg
[12:28:57] [PASSED] ttm_tt_fini_shmem
[12:28:57] [PASSED] ttm_tt_create_basic
[12:28:57] [PASSED] ttm_tt_create_invalid_bo_type
[12:28:57] [PASSED] ttm_tt_create_ttm_exists
[12:28:57] [PASSED] ttm_tt_create_failed
[12:28:57] [PASSED] ttm_tt_destroy_basic
[12:28:57] [PASSED] ttm_tt_populate_null_ttm
[12:28:57] [PASSED] ttm_tt_populate_populated_ttm
[12:28:57] [PASSED] ttm_tt_unpopulate_basic
[12:28:57] [PASSED] ttm_tt_unpopulate_empty_ttm
[12:28:57] [PASSED] ttm_tt_swapin_basic
[12:28:57] ===================== [PASSED] ttm_tt ======================
[12:28:57] =================== ttm_bo (14 subtests) ===================
[12:28:57] =========== ttm_bo_reserve_optimistic_no_ticket ===========
[12:28:57] [PASSED] Cannot be interrupted and sleeps
[12:28:57] [PASSED] Cannot be interrupted, locks straight away
[12:28:57] [PASSED] Can be interrupted, sleeps
[12:28:57] ======= [PASSED] ttm_bo_reserve_optimistic_no_ticket =======
[12:28:57] [PASSED] ttm_bo_reserve_locked_no_sleep
[12:28:57] [PASSED] ttm_bo_reserve_no_wait_ticket
[12:28:57] [PASSED] ttm_bo_reserve_double_resv
[12:28:57] [PASSED] ttm_bo_reserve_interrupted
[12:28:57] [PASSED] ttm_bo_reserve_deadlock
[12:28:57] [PASSED] ttm_bo_unreserve_basic
[12:28:57] [PASSED] ttm_bo_unreserve_pinned
[12:28:57] [PASSED] ttm_bo_unreserve_bulk
[12:28:57] [PASSED] ttm_bo_fini_basic
[12:28:57] [PASSED] ttm_bo_fini_shared_resv
[12:28:57] [PASSED] ttm_bo_pin_basic
[12:28:57] [PASSED] ttm_bo_pin_unpin_resource
[12:28:57] [PASSED] ttm_bo_multiple_pin_one_unpin
[12:28:57] ===================== [PASSED] ttm_bo ======================
[12:28:57] ============== ttm_bo_validate (21 subtests) ===============
[12:28:57] ============== ttm_bo_init_reserved_sys_man ===============
[12:28:57] [PASSED] Buffer object for userspace
[12:28:57] [PASSED] Kernel buffer object
[12:28:57] [PASSED] Shared buffer object
[12:28:57] ========== [PASSED] ttm_bo_init_reserved_sys_man ===========
[12:28:57] ============== ttm_bo_init_reserved_mock_man ==============
[12:28:57] [PASSED] Buffer object for userspace
[12:28:57] [PASSED] Kernel buffer object
[12:28:57] [PASSED] Shared buffer object
[12:28:57] ========== [PASSED] ttm_bo_init_reserved_mock_man ==========
[12:28:57] [PASSED] ttm_bo_init_reserved_resv
[12:28:57] ================== ttm_bo_validate_basic ==================
[12:28:57] [PASSED] Buffer object for userspace
[12:28:57] [PASSED] Kernel buffer object
[12:28:57] [PASSED] Shared buffer object
[12:28:57] ============== [PASSED] ttm_bo_validate_basic ==============
[12:28:57] [PASSED] ttm_bo_validate_invalid_placement
[12:28:57] ============= ttm_bo_validate_same_placement ==============
[12:28:57] [PASSED] System manager
[12:28:57] [PASSED] VRAM manager
[12:28:57] ========= [PASSED] ttm_bo_validate_same_placement ==========
[12:28:57] [PASSED] ttm_bo_validate_failed_alloc
[12:28:57] [PASSED] ttm_bo_validate_pinned
[12:28:57] [PASSED] ttm_bo_validate_busy_placement
[12:28:57] ================ ttm_bo_validate_multihop =================
[12:28:57] [PASSED] Buffer object for userspace
[12:28:57] [PASSED] Kernel buffer object
[12:28:57] [PASSED] Shared buffer object
[12:28:57] ============ [PASSED] ttm_bo_validate_multihop =============
[12:28:57] ========== ttm_bo_validate_no_placement_signaled ==========
[12:28:57] [PASSED] Buffer object in system domain, no page vector
[12:28:57] [PASSED] Buffer object in system domain with an existing page vector
[12:28:57] ====== [PASSED] ttm_bo_validate_no_placement_signaled ======
[12:28:57] ======== ttm_bo_validate_no_placement_not_signaled ========
[12:28:57] [PASSED] Buffer object for userspace
[12:28:57] [PASSED] Kernel buffer object
[12:28:57] [PASSED] Shared buffer object
[12:28:57] ==== [PASSED] ttm_bo_validate_no_placement_not_signaled ====
[12:28:57] [PASSED] ttm_bo_validate_move_fence_signaled
[12:28:57] ========= ttm_bo_validate_move_fence_not_signaled =========
[12:28:57] [PASSED] Waits for GPU
[12:28:57] [PASSED] Tries to lock straight away
[12:28:57] ===== [PASSED] ttm_bo_validate_move_fence_not_signaled =====
[12:28:57] [PASSED] ttm_bo_validate_happy_evict
[12:28:57] [PASSED] ttm_bo_validate_all_pinned_evict
[12:28:57] [PASSED] ttm_bo_validate_allowed_only_evict
[12:28:57] [PASSED] ttm_bo_validate_deleted_evict
[12:28:57] [PASSED] ttm_bo_validate_busy_domain_evict
[12:28:57] [PASSED] ttm_bo_validate_evict_gutting
[12:28:57] [PASSED] ttm_bo_validate_recrusive_evict
stty: 'standard input': Inappropriate ioctl for device
[12:28:57] ================= [PASSED] ttm_bo_validate =================
[12:28:57] ============================================================
[12:28:57] Testing complete. Ran 101 tests: passed: 101
[12:28:57] Elapsed time: 11.124s total, 1.591s configuring, 9.316s building, 0.180s running
+ cleanup
++ stat -c %u:%g /kernel
+ chown -R 1003:1003 /kernel
^ permalink raw reply [flat|nested] 10+ messages in thread
* ✓ Xe.CI.BAT: success for drm/xe/hwmon: Expose new temperature attributes (rev8)
2026-01-12 12:17 [PATCH v6 0/4] drm/xe/hwmon: Expose new temperature attributes Karthik Poosa
` (4 preceding siblings ...)
2026-01-12 12:29 ` ✓ CI.KUnit: success for drm/xe/hwmon: Expose new temperature attributes (rev8) Patchwork
@ 2026-01-12 13:03 ` Patchwork
2026-01-12 14:10 ` ✗ Xe.CI.Full: failure " Patchwork
6 siblings, 0 replies; 10+ messages in thread
From: Patchwork @ 2026-01-12 13:03 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 (rev8)
URL : https://patchwork.freedesktop.org/series/158384/
State : success
== Summary ==
CI Bug Log - changes from xe-4365-f339d0352f5f7e023e8ff89bb18291df8dfdad6e_BAT -> xe-pw-158384v8_BAT
====================================================
Summary
-------
**SUCCESS**
No regressions found.
Participating hosts (12 -> 12)
------------------------------
No changes in participating hosts
Changes
-------
No changes found
Build changes
-------------
* Linux: xe-4365-f339d0352f5f7e023e8ff89bb18291df8dfdad6e -> xe-pw-158384v8
IGT_8696: 8696
xe-4365-f339d0352f5f7e023e8ff89bb18291df8dfdad6e: f339d0352f5f7e023e8ff89bb18291df8dfdad6e
xe-pw-158384v8: 158384v8
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158384v8/index.html
[-- Attachment #2: Type: text/html, Size: 1425 bytes --]
^ permalink raw reply [flat|nested] 10+ messages in thread
* ✗ Xe.CI.Full: failure for drm/xe/hwmon: Expose new temperature attributes (rev8)
2026-01-12 12:17 [PATCH v6 0/4] drm/xe/hwmon: Expose new temperature attributes Karthik Poosa
` (5 preceding siblings ...)
2026-01-12 13:03 ` ✓ Xe.CI.BAT: " Patchwork
@ 2026-01-12 14:10 ` Patchwork
6 siblings, 0 replies; 10+ messages in thread
From: Patchwork @ 2026-01-12 14:10 UTC (permalink / raw)
To: Karthik Poosa; +Cc: intel-xe
[-- Attachment #1: Type: text/plain, Size: 59753 bytes --]
== Series Details ==
Series: drm/xe/hwmon: Expose new temperature attributes (rev8)
URL : https://patchwork.freedesktop.org/series/158384/
State : failure
== Summary ==
CI Bug Log - changes from xe-4365-f339d0352f5f7e023e8ff89bb18291df8dfdad6e_FULL -> xe-pw-158384v8_FULL
====================================================
Summary
-------
**FAILURE**
Serious unknown changes coming with xe-pw-158384v8_FULL absolutely need to be
verified manually.
If you think the reported changes have nothing to do with the changes
introduced in xe-pw-158384v8_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-158384v8_FULL:
### IGT changes ###
#### Possible regressions ####
* igt@kms_vblank@wait-busy:
- shard-bmg: NOTRUN -> [FAIL][1] +2 other tests fail
[1]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158384v8/shard-bmg-6/igt@kms_vblank@wait-busy.html
* igt@xe_exec_reset@gt-reset-stress:
- shard-bmg: NOTRUN -> [DMESG-WARN][2]
[2]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158384v8/shard-bmg-3/igt@xe_exec_reset@gt-reset-stress.html
Known issues
------------
Here are the changes found in xe-pw-158384v8_FULL that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@core_hotunplug@hotunplug-rescan:
- shard-bmg: NOTRUN -> [SKIP][3] ([Intel XE#6779]) +2 other tests skip
[3]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158384v8/shard-bmg-5/igt@core_hotunplug@hotunplug-rescan.html
* igt@fbdev@unaligned-write:
- shard-bmg: NOTRUN -> [SKIP][4] ([Intel XE#2134]) +1 other test skip
[4]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158384v8/shard-bmg-5/igt@fbdev@unaligned-write.html
* igt@intel_hwmon@hwmon-write:
- shard-bmg: [PASS][5] -> [SKIP][6] ([Intel XE#5177] / [Intel XE#6703])
[5]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4365-f339d0352f5f7e023e8ff89bb18291df8dfdad6e/shard-bmg-10/igt@intel_hwmon@hwmon-write.html
[6]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158384v8/shard-bmg-5/igt@intel_hwmon@hwmon-write.html
* igt@kms_big_fb@x-tiled-32bpp-rotate-90:
- shard-bmg: NOTRUN -> [SKIP][7] ([Intel XE#2327]) +10 other tests skip
[7]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158384v8/shard-bmg-3/igt@kms_big_fb@x-tiled-32bpp-rotate-90.html
* igt@kms_big_fb@y-tiled-addfb:
- shard-bmg: NOTRUN -> [SKIP][8] ([Intel XE#2328]) +1 other test skip
[8]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158384v8/shard-bmg-2/igt@kms_big_fb@y-tiled-addfb.html
* igt@kms_big_fb@y-tiled-addfb-size-offset-overflow:
- shard-bmg: NOTRUN -> [SKIP][9] ([Intel XE#607])
[9]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158384v8/shard-bmg-3/igt@kms_big_fb@y-tiled-addfb-size-offset-overflow.html
* igt@kms_big_fb@y-tiled-addfb-size-overflow:
- shard-bmg: NOTRUN -> [SKIP][10] ([Intel XE#610])
[10]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158384v8/shard-bmg-10/igt@kms_big_fb@y-tiled-addfb-size-overflow.html
* igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-180:
- shard-bmg: NOTRUN -> [SKIP][11] ([Intel XE#1124]) +18 other tests skip
[11]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158384v8/shard-bmg-1/igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-180.html
* igt@kms_bw@connected-linear-tiling-3-displays-2560x1440p:
- shard-bmg: NOTRUN -> [SKIP][12] ([Intel XE#2314] / [Intel XE#2894]) +4 other tests skip
[12]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158384v8/shard-bmg-1/igt@kms_bw@connected-linear-tiling-3-displays-2560x1440p.html
* igt@kms_bw@linear-tiling-4-displays-2160x1440p:
- shard-bmg: NOTRUN -> [SKIP][13] ([Intel XE#367]) +2 other tests skip
[13]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158384v8/shard-bmg-2/igt@kms_bw@linear-tiling-4-displays-2160x1440p.html
* igt@kms_ccs@crc-primary-rotation-180-4-tiled-lnl-ccs@pipe-c-dp-2:
- shard-bmg: NOTRUN -> [SKIP][14] ([Intel XE#2652] / [Intel XE#787]) +17 other tests skip
[14]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158384v8/shard-bmg-2/igt@kms_ccs@crc-primary-rotation-180-4-tiled-lnl-ccs@pipe-c-dp-2.html
* igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-mc-ccs:
- shard-bmg: NOTRUN -> [SKIP][15] ([Intel XE#3432]) +3 other tests skip
[15]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158384v8/shard-bmg-2/igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-mc-ccs.html
* igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs:
- shard-bmg: NOTRUN -> [SKIP][16] ([Intel XE#2887]) +28 other tests skip
[16]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158384v8/shard-bmg-10/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs.html
* igt@kms_chamelium_color@ctm-0-50:
- shard-bmg: NOTRUN -> [SKIP][17] ([Intel XE#2325]) +2 other tests skip
[17]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158384v8/shard-bmg-2/igt@kms_chamelium_color@ctm-0-50.html
* igt@kms_chamelium_frames@hdmi-aspect-ratio:
- shard-bmg: NOTRUN -> [SKIP][18] ([Intel XE#2252]) +21 other tests skip
[18]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158384v8/shard-bmg-1/igt@kms_chamelium_frames@hdmi-aspect-ratio.html
* igt@kms_content_protection@dp-mst-lic-type-0-hdcp14:
- shard-bmg: NOTRUN -> [SKIP][19] ([Intel XE#6974])
[19]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158384v8/shard-bmg-3/igt@kms_content_protection@dp-mst-lic-type-0-hdcp14.html
* igt@kms_content_protection@dp-mst-type-0:
- shard-bmg: NOTRUN -> [SKIP][20] ([Intel XE#2390] / [Intel XE#6974])
[20]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158384v8/shard-bmg-2/igt@kms_content_protection@dp-mst-type-0.html
* igt@kms_content_protection@lic-type-0@pipe-a-dp-2:
- shard-bmg: NOTRUN -> [FAIL][21] ([Intel XE#1178] / [Intel XE#3304]) +1 other test fail
[21]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158384v8/shard-bmg-3/igt@kms_content_protection@lic-type-0@pipe-a-dp-2.html
* igt@kms_content_protection@lic-type-1:
- shard-bmg: NOTRUN -> [SKIP][22] ([Intel XE#2341])
[22]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158384v8/shard-bmg-10/igt@kms_content_protection@lic-type-1.html
* igt@kms_cursor_crc@cursor-onscreen-max-size:
- shard-bmg: NOTRUN -> [SKIP][23] ([Intel XE#2320]) +6 other tests skip
[23]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158384v8/shard-bmg-10/igt@kms_cursor_crc@cursor-onscreen-max-size.html
* igt@kms_cursor_crc@cursor-sliding-512x512:
- shard-bmg: NOTRUN -> [SKIP][24] ([Intel XE#2321]) +3 other tests skip
[24]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158384v8/shard-bmg-2/igt@kms_cursor_crc@cursor-sliding-512x512.html
* igt@kms_dp_link_training@uhbr-mst:
- shard-bmg: NOTRUN -> [SKIP][25] ([Intel XE#4354]) +1 other test skip
[25]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158384v8/shard-bmg-2/igt@kms_dp_link_training@uhbr-mst.html
* igt@kms_dp_linktrain_fallback@dsc-fallback:
- shard-bmg: NOTRUN -> [SKIP][26] ([Intel XE#4331])
[26]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158384v8/shard-bmg-10/igt@kms_dp_linktrain_fallback@dsc-fallback.html
* igt@kms_dsc@dsc-with-output-formats-with-bpc:
- shard-bmg: NOTRUN -> [SKIP][27] ([Intel XE#2244]) +1 other test skip
[27]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158384v8/shard-bmg-3/igt@kms_dsc@dsc-with-output-formats-with-bpc.html
* igt@kms_fbc_dirty_rect@fbc-dirty-rectangle-out-visible-area:
- shard-bmg: NOTRUN -> [SKIP][28] ([Intel XE#4422]) +1 other test skip
[28]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158384v8/shard-bmg-3/igt@kms_fbc_dirty_rect@fbc-dirty-rectangle-out-visible-area.html
* igt@kms_fbcon_fbt@fbc-suspend:
- shard-bmg: NOTRUN -> [SKIP][29] ([Intel XE#4156]) +1 other test skip
[29]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158384v8/shard-bmg-10/igt@kms_fbcon_fbt@fbc-suspend.html
* igt@kms_fbcon_fbt@psr:
- shard-bmg: NOTRUN -> [SKIP][30] ([Intel XE#776])
[30]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158384v8/shard-bmg-3/igt@kms_fbcon_fbt@psr.html
* igt@kms_feature_discovery@chamelium:
- shard-bmg: NOTRUN -> [SKIP][31] ([Intel XE#2372])
[31]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158384v8/shard-bmg-10/igt@kms_feature_discovery@chamelium.html
* igt@kms_feature_discovery@display-3x:
- shard-bmg: NOTRUN -> [SKIP][32] ([Intel XE#2373])
[32]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158384v8/shard-bmg-2/igt@kms_feature_discovery@display-3x.html
* igt@kms_flip@2x-flip-vs-wf_vblank:
- shard-bmg: [PASS][33] -> [SKIP][34] ([Intel XE#6557] / [Intel XE#6703]) +7 other tests skip
[33]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4365-f339d0352f5f7e023e8ff89bb18291df8dfdad6e/shard-bmg-1/igt@kms_flip@2x-flip-vs-wf_vblank.html
[34]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158384v8/shard-bmg-5/igt@kms_flip@2x-flip-vs-wf_vblank.html
* igt@kms_flip@basic-flip-vs-wf_vblank@a-dp2:
- shard-bmg: NOTRUN -> [FAIL][35] ([Intel XE#6266])
[35]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158384v8/shard-bmg-6/igt@kms_flip@basic-flip-vs-wf_vblank@a-dp2.html
* igt@kms_flip@basic-flip-vs-wf_vblank@b-dp2:
- shard-bmg: NOTRUN -> [FAIL][36] ([Intel XE#3650] / [Intel XE#6266]) +2 other tests fail
[36]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158384v8/shard-bmg-6/igt@kms_flip@basic-flip-vs-wf_vblank@b-dp2.html
* igt@kms_flip@flip-vs-suspend-interruptible:
- shard-bmg: NOTRUN -> [INCOMPLETE][37] ([Intel XE#2049] / [Intel XE#2597]) +1 other test incomplete
[37]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158384v8/shard-bmg-3/igt@kms_flip@flip-vs-suspend-interruptible.html
* igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-16bpp-ytile-upscaling:
- shard-bmg: NOTRUN -> [SKIP][38] ([Intel XE#2293] / [Intel XE#2380]) +7 other tests skip
[38]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158384v8/shard-bmg-10/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-16bpp-ytile-upscaling.html
* igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling@pipe-a-valid-mode:
- shard-bmg: NOTRUN -> [SKIP][39] ([Intel XE#2293]) +7 other tests skip
[39]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158384v8/shard-bmg-3/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling@pipe-a-valid-mode.html
* igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-pri-indfb-draw-mmap-wc:
- shard-bmg: NOTRUN -> [SKIP][40] ([Intel XE#2312]) +2 other tests skip
[40]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158384v8/shard-bmg-6/igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-pri-indfb-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-onoff:
- shard-bmg: NOTRUN -> [SKIP][41] ([Intel XE#4141]) +34 other tests skip
[41]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158384v8/shard-bmg-3/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-onoff.html
* igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-cur-indfb-draw-mmap-wc:
- shard-bmg: NOTRUN -> [SKIP][42] ([Intel XE#2311]) +60 other tests skip
[42]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158384v8/shard-bmg-1/igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-cur-indfb-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-pri-shrfb-draw-render:
- shard-bmg: NOTRUN -> [SKIP][43] ([Intel XE#6703]) +1033 other tests skip
[43]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158384v8/shard-bmg-5/igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-pri-shrfb-draw-render.html
* igt@kms_frontbuffer_tracking@fbcdrrs-suspend:
- shard-bmg: NOTRUN -> [SKIP][44] ([Intel XE#6557] / [Intel XE#6703]) +6 other tests skip
[44]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158384v8/shard-bmg-5/igt@kms_frontbuffer_tracking@fbcdrrs-suspend.html
* igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-shrfb-pgflip-blt:
- shard-bmg: NOTRUN -> [SKIP][45] ([Intel XE#2313]) +57 other tests skip
[45]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158384v8/shard-bmg-3/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-shrfb-pgflip-blt.html
* igt@kms_hdr@invalid-hdr:
- shard-bmg: NOTRUN -> [SKIP][46] ([Intel XE#1503])
[46]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158384v8/shard-bmg-2/igt@kms_hdr@invalid-hdr.html
* igt@kms_joiner@basic-ultra-joiner:
- shard-bmg: NOTRUN -> [SKIP][47] ([Intel XE#6911])
[47]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158384v8/shard-bmg-1/igt@kms_joiner@basic-ultra-joiner.html
* igt@kms_joiner@switch-modeset-ultra-joiner-big-joiner:
- shard-bmg: NOTRUN -> [SKIP][48] ([Intel XE#2925])
[48]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158384v8/shard-bmg-3/igt@kms_joiner@switch-modeset-ultra-joiner-big-joiner.html
* igt@kms_panel_fitting@atomic-fastset:
- shard-bmg: NOTRUN -> [SKIP][49] ([Intel XE#2486])
[49]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158384v8/shard-bmg-3/igt@kms_panel_fitting@atomic-fastset.html
* igt@kms_plane_lowres@tiling-yf:
- shard-bmg: NOTRUN -> [SKIP][50] ([Intel XE#2393])
[50]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158384v8/shard-bmg-2/igt@kms_plane_lowres@tiling-yf.html
* igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-5@pipe-b:
- shard-bmg: NOTRUN -> [SKIP][51] ([Intel XE#6886]) +19 other tests skip
[51]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158384v8/shard-bmg-2/igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-5@pipe-b.html
* igt@kms_pm_backlight@brightness-with-dpms:
- shard-bmg: NOTRUN -> [SKIP][52] ([Intel XE#2938])
[52]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158384v8/shard-bmg-3/igt@kms_pm_backlight@brightness-with-dpms.html
* igt@kms_pm_backlight@fade:
- shard-bmg: NOTRUN -> [SKIP][53] ([Intel XE#870]) +1 other test skip
[53]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158384v8/shard-bmg-10/igt@kms_pm_backlight@fade.html
* igt@kms_pm_dc@dc3co-vpb-simulation:
- shard-bmg: NOTRUN -> [SKIP][54] ([Intel XE#2391])
[54]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158384v8/shard-bmg-2/igt@kms_pm_dc@dc3co-vpb-simulation.html
* igt@kms_pm_dc@dc5-psr:
- shard-bmg: NOTRUN -> [SKIP][55] ([Intel XE#2392])
[55]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158384v8/shard-bmg-10/igt@kms_pm_dc@dc5-psr.html
* igt@kms_pm_rpm@dpms-mode-unset-lpsp:
- shard-bmg: NOTRUN -> [SKIP][56] ([Intel XE#6693]) +4 other tests skip
[56]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158384v8/shard-bmg-5/igt@kms_pm_rpm@dpms-mode-unset-lpsp.html
* igt@kms_pm_rpm@package-g7:
- shard-bmg: NOTRUN -> [SKIP][57] ([Intel XE#6814])
[57]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158384v8/shard-bmg-1/igt@kms_pm_rpm@package-g7.html
* igt@kms_pm_rpm@universal-planes-dpms:
- shard-bmg: [PASS][58] -> [SKIP][59] ([Intel XE#6693])
[58]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4365-f339d0352f5f7e023e8ff89bb18291df8dfdad6e/shard-bmg-10/igt@kms_pm_rpm@universal-planes-dpms.html
[59]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158384v8/shard-bmg-5/igt@kms_pm_rpm@universal-planes-dpms.html
* igt@kms_psr2_sf@fbc-psr2-cursor-plane-move-continuous-sf:
- shard-bmg: NOTRUN -> [SKIP][60] ([Intel XE#1406] / [Intel XE#1489]) +17 other tests skip
[60]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158384v8/shard-bmg-2/igt@kms_psr2_sf@fbc-psr2-cursor-plane-move-continuous-sf.html
* igt@kms_psr2_su@page_flip-xrgb8888:
- shard-bmg: NOTRUN -> [SKIP][61] ([Intel XE#1406] / [Intel XE#2387]) +2 other tests skip
[61]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158384v8/shard-bmg-2/igt@kms_psr2_su@page_flip-xrgb8888.html
* igt@kms_psr@fbc-psr-suspend:
- shard-bmg: NOTRUN -> [SKIP][62] ([Intel XE#1406] / [Intel XE#2234] / [Intel XE#2850]) +23 other tests skip
[62]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158384v8/shard-bmg-1/igt@kms_psr@fbc-psr-suspend.html
* igt@kms_psr@psr-primary-page-flip:
- shard-bmg: NOTRUN -> [SKIP][63] ([Intel XE#1406] / [Intel XE#6703]) +26 other tests skip
[63]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158384v8/shard-bmg-5/igt@kms_psr@psr-primary-page-flip.html
* igt@kms_psr_stress_test@invalidate-primary-flip-overlay:
- shard-bmg: NOTRUN -> [SKIP][64] ([Intel XE#1406] / [Intel XE#2414])
[64]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158384v8/shard-bmg-10/igt@kms_psr_stress_test@invalidate-primary-flip-overlay.html
* igt@kms_rotation_crc@bad-pixel-format:
- shard-bmg: NOTRUN -> [SKIP][65] ([Intel XE#3414] / [Intel XE#3904]) +1 other test skip
[65]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158384v8/shard-bmg-3/igt@kms_rotation_crc@bad-pixel-format.html
* igt@kms_rotation_crc@primary-y-tiled-reflect-x-0:
- shard-bmg: NOTRUN -> [SKIP][66] ([Intel XE#2330])
[66]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158384v8/shard-bmg-10/igt@kms_rotation_crc@primary-y-tiled-reflect-x-0.html
* igt@kms_scaling_modes@scaling-mode-full-aspect:
- shard-bmg: NOTRUN -> [SKIP][67] ([Intel XE#2413])
[67]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158384v8/shard-bmg-3/igt@kms_scaling_modes@scaling-mode-full-aspect.html
* igt@kms_setmode@basic-clone-single-crtc:
- shard-bmg: NOTRUN -> [SKIP][68] ([Intel XE#1435])
[68]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158384v8/shard-bmg-6/igt@kms_setmode@basic-clone-single-crtc.html
* igt@kms_sharpness_filter@filter-formats:
- shard-bmg: NOTRUN -> [SKIP][69] ([Intel XE#6503]) +5 other tests skip
[69]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158384v8/shard-bmg-2/igt@kms_sharpness_filter@filter-formats.html
* igt@kms_tiled_display@basic-test-pattern-with-chamelium:
- shard-bmg: NOTRUN -> [SKIP][70] ([Intel XE#2509])
[70]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158384v8/shard-bmg-2/igt@kms_tiled_display@basic-test-pattern-with-chamelium.html
* igt@kms_tv_load_detect@load-detect:
- shard-bmg: NOTRUN -> [SKIP][71] ([Intel XE#2450])
[71]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158384v8/shard-bmg-3/igt@kms_tv_load_detect@load-detect.html
* igt@kms_vrr@max-min:
- shard-bmg: NOTRUN -> [SKIP][72] ([Intel XE#1499]) +3 other tests skip
[72]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158384v8/shard-bmg-2/igt@kms_vrr@max-min.html
* igt@xe_compute@ccs-mode-compute-kernel:
- shard-bmg: NOTRUN -> [SKIP][73] ([Intel XE#6599])
[73]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158384v8/shard-bmg-2/igt@xe_compute@ccs-mode-compute-kernel.html
* igt@xe_eudebug@basic-vm-bind-metadata-discovery:
- shard-bmg: NOTRUN -> [SKIP][74] ([Intel XE#4837]) +16 other tests skip
[74]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158384v8/shard-bmg-10/igt@xe_eudebug@basic-vm-bind-metadata-discovery.html
* igt@xe_eudebug_online@pagefault-write:
- shard-bmg: NOTRUN -> [SKIP][75] ([Intel XE#4837] / [Intel XE#6665]) +8 other tests skip
[75]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158384v8/shard-bmg-3/igt@xe_eudebug_online@pagefault-write.html
* igt@xe_eudebug_online@pagefault-write-stress:
- shard-bmg: NOTRUN -> [SKIP][76] ([Intel XE#6665] / [Intel XE#6681])
[76]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158384v8/shard-bmg-3/igt@xe_eudebug_online@pagefault-write-stress.html
* igt@xe_eudebug_sriov@deny-eudebug:
- shard-bmg: NOTRUN -> [SKIP][77] ([Intel XE#5793])
[77]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158384v8/shard-bmg-10/igt@xe_eudebug_sriov@deny-eudebug.html
* igt@xe_exec_basic@multigpu-once-null-rebind:
- shard-bmg: NOTRUN -> [SKIP][78] ([Intel XE#2322]) +17 other tests skip
[78]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158384v8/shard-bmg-10/igt@xe_exec_basic@multigpu-once-null-rebind.html
* igt@xe_exec_multi_queue@two-queues-priority:
- shard-bmg: NOTRUN -> [SKIP][79] ([Intel XE#6874]) +63 other tests skip
[79]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158384v8/shard-bmg-2/igt@xe_exec_multi_queue@two-queues-priority.html
* igt@xe_exec_system_allocator@many-64k-mmap-free-huge:
- shard-bmg: NOTRUN -> [SKIP][80] ([Intel XE#5007]) +1 other test skip
[80]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158384v8/shard-bmg-10/igt@xe_exec_system_allocator@many-64k-mmap-free-huge.html
* igt@xe_exec_system_allocator@many-execqueues-mmap-huge-nomemset:
- shard-bmg: NOTRUN -> [SKIP][81] ([Intel XE#4943]) +50 other tests skip
[81]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158384v8/shard-bmg-1/igt@xe_exec_system_allocator@many-execqueues-mmap-huge-nomemset.html
* igt@xe_exec_system_allocator@many-stride-new-prefetch:
- shard-bmg: NOTRUN -> [INCOMPLETE][82] ([Intel XE#6480])
[82]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158384v8/shard-bmg-2/igt@xe_exec_system_allocator@many-stride-new-prefetch.html
* igt@xe_exec_system_allocator@process-many-large-mmap-nomemset:
- shard-bmg: [PASS][83] -> [SKIP][84] ([Intel XE#6703]) +285 other tests skip
[83]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4365-f339d0352f5f7e023e8ff89bb18291df8dfdad6e/shard-bmg-1/igt@xe_exec_system_allocator@process-many-large-mmap-nomemset.html
[84]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158384v8/shard-bmg-5/igt@xe_exec_system_allocator@process-many-large-mmap-nomemset.html
* igt@xe_fault_injection@probe-fail-guc-xe_guc_ct_send_recv:
- shard-bmg: NOTRUN -> [ABORT][85] ([Intel XE#5466])
[85]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158384v8/shard-bmg-10/igt@xe_fault_injection@probe-fail-guc-xe_guc_ct_send_recv.html
* igt@xe_live_ktest@xe_bo@xe_ccs_migrate_kunit:
- shard-bmg: NOTRUN -> [SKIP][86] ([Intel XE#2229]) +2 other tests skip
[86]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158384v8/shard-bmg-5/igt@xe_live_ktest@xe_bo@xe_ccs_migrate_kunit.html
* igt@xe_media_fill@media-fill:
- shard-bmg: NOTRUN -> [SKIP][87] ([Intel XE#2459] / [Intel XE#2596])
[87]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158384v8/shard-bmg-1/igt@xe_media_fill@media-fill.html
* igt@xe_module_load@force-load:
- shard-bmg: NOTRUN -> [SKIP][88] ([Intel XE#2457])
[88]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158384v8/shard-bmg-5/igt@xe_module_load@force-load.html
* igt@xe_module_load@load:
- shard-bmg: ([PASS][89], [PASS][90], [PASS][91], [PASS][92], [PASS][93], [PASS][94], [PASS][95], [PASS][96], [PASS][97], [PASS][98], [PASS][99], [PASS][100], [PASS][101]) -> ([PASS][102], [PASS][103], [PASS][104], [PASS][105], [PASS][106], [DMESG-WARN][107], [PASS][108], [PASS][109], [PASS][110], [PASS][111], [PASS][112], [PASS][113], [PASS][114], [PASS][115], [PASS][116], [PASS][117], [PASS][118], [PASS][119], [PASS][120], [SKIP][121], [DMESG-WARN][122], [PASS][123], [PASS][124], [PASS][125], [DMESG-WARN][126], [PASS][127]) ([Intel XE#2457] / [Intel XE#3428])
[89]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4365-f339d0352f5f7e023e8ff89bb18291df8dfdad6e/shard-bmg-9/igt@xe_module_load@load.html
[90]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4365-f339d0352f5f7e023e8ff89bb18291df8dfdad6e/shard-bmg-3/igt@xe_module_load@load.html
[91]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4365-f339d0352f5f7e023e8ff89bb18291df8dfdad6e/shard-bmg-1/igt@xe_module_load@load.html
[92]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4365-f339d0352f5f7e023e8ff89bb18291df8dfdad6e/shard-bmg-1/igt@xe_module_load@load.html
[93]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4365-f339d0352f5f7e023e8ff89bb18291df8dfdad6e/shard-bmg-10/igt@xe_module_load@load.html
[94]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4365-f339d0352f5f7e023e8ff89bb18291df8dfdad6e/shard-bmg-3/igt@xe_module_load@load.html
[95]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4365-f339d0352f5f7e023e8ff89bb18291df8dfdad6e/shard-bmg-9/igt@xe_module_load@load.html
[96]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4365-f339d0352f5f7e023e8ff89bb18291df8dfdad6e/shard-bmg-9/igt@xe_module_load@load.html
[97]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4365-f339d0352f5f7e023e8ff89bb18291df8dfdad6e/shard-bmg-2/igt@xe_module_load@load.html
[98]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4365-f339d0352f5f7e023e8ff89bb18291df8dfdad6e/shard-bmg-1/igt@xe_module_load@load.html
[99]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4365-f339d0352f5f7e023e8ff89bb18291df8dfdad6e/shard-bmg-10/igt@xe_module_load@load.html
[100]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4365-f339d0352f5f7e023e8ff89bb18291df8dfdad6e/shard-bmg-2/igt@xe_module_load@load.html
[101]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4365-f339d0352f5f7e023e8ff89bb18291df8dfdad6e/shard-bmg-9/igt@xe_module_load@load.html
[102]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158384v8/shard-bmg-1/igt@xe_module_load@load.html
[103]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158384v8/shard-bmg-3/igt@xe_module_load@load.html
[104]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158384v8/shard-bmg-3/igt@xe_module_load@load.html
[105]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158384v8/shard-bmg-5/igt@xe_module_load@load.html
[106]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158384v8/shard-bmg-5/igt@xe_module_load@load.html
[107]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158384v8/shard-bmg-6/igt@xe_module_load@load.html
[108]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158384v8/shard-bmg-3/igt@xe_module_load@load.html
[109]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158384v8/shard-bmg-5/igt@xe_module_load@load.html
[110]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158384v8/shard-bmg-5/igt@xe_module_load@load.html
[111]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158384v8/shard-bmg-5/igt@xe_module_load@load.html
[112]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158384v8/shard-bmg-9/igt@xe_module_load@load.html
[113]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158384v8/shard-bmg-9/igt@xe_module_load@load.html
[114]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158384v8/shard-bmg-2/igt@xe_module_load@load.html
[115]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158384v8/shard-bmg-9/igt@xe_module_load@load.html
[116]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158384v8/shard-bmg-5/igt@xe_module_load@load.html
[117]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158384v8/shard-bmg-10/igt@xe_module_load@load.html
[118]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158384v8/shard-bmg-2/igt@xe_module_load@load.html
[119]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158384v8/shard-bmg-10/igt@xe_module_load@load.html
[120]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158384v8/shard-bmg-10/igt@xe_module_load@load.html
[121]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158384v8/shard-bmg-2/igt@xe_module_load@load.html
[122]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158384v8/shard-bmg-6/igt@xe_module_load@load.html
[123]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158384v8/shard-bmg-2/igt@xe_module_load@load.html
[124]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158384v8/shard-bmg-5/igt@xe_module_load@load.html
[125]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158384v8/shard-bmg-6/igt@xe_module_load@load.html
[126]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158384v8/shard-bmg-6/igt@xe_module_load@load.html
[127]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158384v8/shard-bmg-1/igt@xe_module_load@load.html
* igt@xe_multigpu_svm@mgpu-concurrent-access-prefetch:
- shard-bmg: NOTRUN -> [SKIP][128] ([Intel XE#6964]) +13 other tests skip
[128]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158384v8/shard-bmg-5/igt@xe_multigpu_svm@mgpu-concurrent-access-prefetch.html
* igt@xe_pat@pat-index-xehpc:
- shard-bmg: NOTRUN -> [SKIP][129] ([Intel XE#1420])
[129]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158384v8/shard-bmg-3/igt@xe_pat@pat-index-xehpc.html
* igt@xe_pat@pat-index-xelpg:
- shard-bmg: NOTRUN -> [SKIP][130] ([Intel XE#2236])
[130]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158384v8/shard-bmg-2/igt@xe_pat@pat-index-xelpg.html
* igt@xe_peer2peer@read:
- shard-bmg: NOTRUN -> [SKIP][131] ([Intel XE#2427] / [Intel XE#6953])
[131]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158384v8/shard-bmg-1/igt@xe_peer2peer@read.html
* igt@xe_pm@s2idle-d3cold-basic-exec:
- shard-bmg: NOTRUN -> [SKIP][132] ([Intel XE#2284]) +1 other test skip
[132]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158384v8/shard-bmg-2/igt@xe_pm@s2idle-d3cold-basic-exec.html
* igt@xe_pxp@pxp-termination-key-update-post-suspend:
- shard-bmg: NOTRUN -> [SKIP][133] ([Intel XE#4733]) +4 other tests skip
[133]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158384v8/shard-bmg-2/igt@xe_pxp@pxp-termination-key-update-post-suspend.html
* igt@xe_query@multigpu-query-invalid-cs-cycles:
- shard-bmg: NOTRUN -> [SKIP][134] ([Intel XE#944]) +7 other tests skip
[134]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158384v8/shard-bmg-3/igt@xe_query@multigpu-query-invalid-cs-cycles.html
#### Possible fixes ####
* igt@kms_hdr@static-toggle-suspend:
- shard-bmg: [ABORT][135] ([Intel XE#6740]) -> [PASS][136] +1 other test pass
[135]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4365-f339d0352f5f7e023e8ff89bb18291df8dfdad6e/shard-bmg-9/igt@kms_hdr@static-toggle-suspend.html
[136]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158384v8/shard-bmg-1/igt@kms_hdr@static-toggle-suspend.html
* igt@testdisplay:
- shard-bmg: [ABORT][137] ([Intel XE#6740] / [Intel XE#6976]) -> [PASS][138]
[137]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4365-f339d0352f5f7e023e8ff89bb18291df8dfdad6e/shard-bmg-1/igt@testdisplay.html
[138]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158384v8/shard-bmg-2/igt@testdisplay.html
* igt@xe_pm@s4-exec-after:
- shard-lnl: [DMESG-WARN][139] ([Intel XE#7024]) -> [PASS][140]
[139]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4365-f339d0352f5f7e023e8ff89bb18291df8dfdad6e/shard-lnl-1/igt@xe_pm@s4-exec-after.html
[140]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158384v8/shard-lnl-3/igt@xe_pm@s4-exec-after.html
#### Warnings ####
* igt@kms_addfb_basic@addfb25-y-tiled-small-legacy:
- shard-bmg: [SKIP][141] ([Intel XE#2233]) -> [SKIP][142] ([Intel XE#6703])
[141]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4365-f339d0352f5f7e023e8ff89bb18291df8dfdad6e/shard-bmg-1/igt@kms_addfb_basic@addfb25-y-tiled-small-legacy.html
[142]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158384v8/shard-bmg-5/igt@kms_addfb_basic@addfb25-y-tiled-small-legacy.html
* igt@kms_big_fb@x-tiled-8bpp-rotate-270:
- shard-bmg: [SKIP][143] ([Intel XE#2327]) -> [SKIP][144] ([Intel XE#6703]) +1 other test skip
[143]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4365-f339d0352f5f7e023e8ff89bb18291df8dfdad6e/shard-bmg-1/igt@kms_big_fb@x-tiled-8bpp-rotate-270.html
[144]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158384v8/shard-bmg-5/igt@kms_big_fb@x-tiled-8bpp-rotate-270.html
* igt@kms_big_fb@yf-tiled-32bpp-rotate-0:
- shard-bmg: [SKIP][145] ([Intel XE#1124]) -> [SKIP][146] ([Intel XE#6703]) +5 other tests skip
[145]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4365-f339d0352f5f7e023e8ff89bb18291df8dfdad6e/shard-bmg-1/igt@kms_big_fb@yf-tiled-32bpp-rotate-0.html
[146]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158384v8/shard-bmg-5/igt@kms_big_fb@yf-tiled-32bpp-rotate-0.html
* igt@kms_bw@connected-linear-tiling-3-displays-3840x2160p:
- shard-bmg: [SKIP][147] ([Intel XE#2314] / [Intel XE#2894]) -> [SKIP][148] ([Intel XE#6703])
[147]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4365-f339d0352f5f7e023e8ff89bb18291df8dfdad6e/shard-bmg-10/igt@kms_bw@connected-linear-tiling-3-displays-3840x2160p.html
[148]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158384v8/shard-bmg-5/igt@kms_bw@connected-linear-tiling-3-displays-3840x2160p.html
* igt@kms_ccs@crc-primary-rotation-180-y-tiled-gen12-rc-ccs-cc:
- shard-bmg: [SKIP][149] ([Intel XE#2887]) -> [SKIP][150] ([Intel XE#6703]) +4 other tests skip
[149]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4365-f339d0352f5f7e023e8ff89bb18291df8dfdad6e/shard-bmg-10/igt@kms_ccs@crc-primary-rotation-180-y-tiled-gen12-rc-ccs-cc.html
[150]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158384v8/shard-bmg-5/igt@kms_ccs@crc-primary-rotation-180-y-tiled-gen12-rc-ccs-cc.html
* igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-rc-ccs-cc:
- shard-bmg: [SKIP][151] ([Intel XE#3432]) -> [SKIP][152] ([Intel XE#6703]) +1 other test skip
[151]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4365-f339d0352f5f7e023e8ff89bb18291df8dfdad6e/shard-bmg-9/igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-rc-ccs-cc.html
[152]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158384v8/shard-bmg-5/igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-rc-ccs-cc.html
* igt@kms_cdclk@mode-transition-all-outputs:
- shard-bmg: [SKIP][153] ([Intel XE#2724]) -> [SKIP][154] ([Intel XE#6703]) +1 other test skip
[153]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4365-f339d0352f5f7e023e8ff89bb18291df8dfdad6e/shard-bmg-1/igt@kms_cdclk@mode-transition-all-outputs.html
[154]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158384v8/shard-bmg-5/igt@kms_cdclk@mode-transition-all-outputs.html
* igt@kms_chamelium_edid@dp-edid-change-during-hibernate:
- shard-bmg: [SKIP][155] ([Intel XE#2252]) -> [SKIP][156] ([Intel XE#6703]) +4 other tests skip
[155]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4365-f339d0352f5f7e023e8ff89bb18291df8dfdad6e/shard-bmg-9/igt@kms_chamelium_edid@dp-edid-change-during-hibernate.html
[156]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158384v8/shard-bmg-5/igt@kms_chamelium_edid@dp-edid-change-during-hibernate.html
* igt@kms_chamelium_sharpness_filter@filter-basic:
- shard-bmg: [SKIP][157] ([Intel XE#6507]) -> [SKIP][158] ([Intel XE#6703])
[157]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4365-f339d0352f5f7e023e8ff89bb18291df8dfdad6e/shard-bmg-1/igt@kms_chamelium_sharpness_filter@filter-basic.html
[158]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158384v8/shard-bmg-5/igt@kms_chamelium_sharpness_filter@filter-basic.html
* igt@kms_color_pipeline@plane-lut3d-green-only:
- shard-lnl: [SKIP][159] ([Intel XE#6969]) -> [SKIP][160] ([Intel XE#6969] / [Intel XE#7006])
[159]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4365-f339d0352f5f7e023e8ff89bb18291df8dfdad6e/shard-lnl-1/igt@kms_color_pipeline@plane-lut3d-green-only.html
[160]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158384v8/shard-lnl-3/igt@kms_color_pipeline@plane-lut3d-green-only.html
* igt@kms_content_protection@atomic-dpms:
- shard-bmg: [FAIL][161] ([Intel XE#1178] / [Intel XE#3304]) -> [SKIP][162] ([Intel XE#6703])
[161]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4365-f339d0352f5f7e023e8ff89bb18291df8dfdad6e/shard-bmg-10/igt@kms_content_protection@atomic-dpms.html
[162]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158384v8/shard-bmg-5/igt@kms_content_protection@atomic-dpms.html
* igt@kms_content_protection@dp-mst-type-1:
- shard-lnl: [SKIP][163] ([Intel XE#307]) -> [SKIP][164] ([Intel XE#307] / [Intel XE#6974]) +3 other tests skip
[163]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4365-f339d0352f5f7e023e8ff89bb18291df8dfdad6e/shard-lnl-7/igt@kms_content_protection@dp-mst-type-1.html
[164]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158384v8/shard-lnl-3/igt@kms_content_protection@dp-mst-type-1.html
* igt@kms_content_protection@uevent-hdcp14:
- shard-bmg: [FAIL][165] ([Intel XE#6707]) -> [SKIP][166] ([Intel XE#6703])
[165]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4365-f339d0352f5f7e023e8ff89bb18291df8dfdad6e/shard-bmg-10/igt@kms_content_protection@uevent-hdcp14.html
[166]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158384v8/shard-bmg-5/igt@kms_content_protection@uevent-hdcp14.html
* igt@kms_cursor_crc@cursor-onscreen-512x512:
- shard-bmg: [SKIP][167] ([Intel XE#2321]) -> [SKIP][168] ([Intel XE#6703])
[167]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4365-f339d0352f5f7e023e8ff89bb18291df8dfdad6e/shard-bmg-1/igt@kms_cursor_crc@cursor-onscreen-512x512.html
[168]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158384v8/shard-bmg-5/igt@kms_cursor_crc@cursor-onscreen-512x512.html
* igt@kms_cursor_crc@cursor-random-32x32:
- shard-bmg: [SKIP][169] ([Intel XE#2320]) -> [SKIP][170] ([Intel XE#6703]) +2 other tests skip
[169]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4365-f339d0352f5f7e023e8ff89bb18291df8dfdad6e/shard-bmg-10/igt@kms_cursor_crc@cursor-random-32x32.html
[170]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158384v8/shard-bmg-5/igt@kms_cursor_crc@cursor-random-32x32.html
* igt@kms_cursor_legacy@flip-vs-cursor-legacy:
- shard-bmg: [FAIL][171] ([Intel XE#4633]) -> [SKIP][172] ([Intel XE#6703])
[171]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4365-f339d0352f5f7e023e8ff89bb18291df8dfdad6e/shard-bmg-10/igt@kms_cursor_legacy@flip-vs-cursor-legacy.html
[172]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158384v8/shard-bmg-5/igt@kms_cursor_legacy@flip-vs-cursor-legacy.html
* igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions-varying-size:
- shard-bmg: [SKIP][173] ([Intel XE#2286]) -> [SKIP][174] ([Intel XE#6703])
[173]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4365-f339d0352f5f7e023e8ff89bb18291df8dfdad6e/shard-bmg-10/igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions-varying-size.html
[174]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158384v8/shard-bmg-5/igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions-varying-size.html
* igt@kms_dsc@dsc-with-bpc-formats:
- shard-bmg: [SKIP][175] ([Intel XE#2244]) -> [SKIP][176] ([Intel XE#6703])
[175]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4365-f339d0352f5f7e023e8ff89bb18291df8dfdad6e/shard-bmg-10/igt@kms_dsc@dsc-with-bpc-formats.html
[176]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158384v8/shard-bmg-5/igt@kms_dsc@dsc-with-bpc-formats.html
* igt@kms_fbc_dirty_rect@fbc-dirty-rectangle-dirtyfb-tests:
- shard-bmg: [SKIP][177] ([Intel XE#4422]) -> [SKIP][178] ([Intel XE#6703])
[177]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4365-f339d0352f5f7e023e8ff89bb18291df8dfdad6e/shard-bmg-1/igt@kms_fbc_dirty_rect@fbc-dirty-rectangle-dirtyfb-tests.html
[178]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158384v8/shard-bmg-5/igt@kms_fbc_dirty_rect@fbc-dirty-rectangle-dirtyfb-tests.html
* igt@kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-downscaling:
- shard-bmg: [SKIP][179] ([Intel XE#2293] / [Intel XE#2380]) -> [SKIP][180] ([Intel XE#6703]) +2 other tests skip
[179]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4365-f339d0352f5f7e023e8ff89bb18291df8dfdad6e/shard-bmg-1/igt@kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-downscaling.html
[180]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158384v8/shard-bmg-5/igt@kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-downscaling.html
* igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-downscaling:
- shard-bmg: [SKIP][181] ([Intel XE#2293] / [Intel XE#2380]) -> [SKIP][182] ([Intel XE#6557] / [Intel XE#6703])
[181]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4365-f339d0352f5f7e023e8ff89bb18291df8dfdad6e/shard-bmg-1/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-downscaling.html
[182]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158384v8/shard-bmg-5/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-downscaling.html
* igt@kms_frontbuffer_tracking@drrs-rgb565-draw-mmap-wc:
- shard-bmg: [SKIP][183] ([Intel XE#2311]) -> [SKIP][184] ([Intel XE#6703]) +12 other tests skip
[183]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4365-f339d0352f5f7e023e8ff89bb18291df8dfdad6e/shard-bmg-1/igt@kms_frontbuffer_tracking@drrs-rgb565-draw-mmap-wc.html
[184]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158384v8/shard-bmg-5/igt@kms_frontbuffer_tracking@drrs-rgb565-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-onoff:
- shard-bmg: [SKIP][185] ([Intel XE#4141]) -> [SKIP][186] ([Intel XE#6703]) +5 other tests skip
[185]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4365-f339d0352f5f7e023e8ff89bb18291df8dfdad6e/shard-bmg-10/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-onoff.html
[186]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158384v8/shard-bmg-5/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-onoff.html
* igt@kms_frontbuffer_tracking@fbcpsr-rgb565-draw-blt:
- shard-bmg: [SKIP][187] ([Intel XE#2313]) -> [SKIP][188] ([Intel XE#6703]) +14 other tests skip
[187]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4365-f339d0352f5f7e023e8ff89bb18291df8dfdad6e/shard-bmg-1/igt@kms_frontbuffer_tracking@fbcpsr-rgb565-draw-blt.html
[188]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158384v8/shard-bmg-5/igt@kms_frontbuffer_tracking@fbcpsr-rgb565-draw-blt.html
* igt@kms_hdr@bpc-switch-dpms:
- shard-bmg: [ABORT][189] ([Intel XE#6740]) -> [SKIP][190] ([Intel XE#6703]) +2 other tests skip
[189]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4365-f339d0352f5f7e023e8ff89bb18291df8dfdad6e/shard-bmg-1/igt@kms_hdr@bpc-switch-dpms.html
[190]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158384v8/shard-bmg-5/igt@kms_hdr@bpc-switch-dpms.html
* igt@kms_pipe_stress@stress-xrgb8888-yftiled:
- shard-bmg: [SKIP][191] ([Intel XE#6912]) -> [SKIP][192] ([Intel XE#6703])
[191]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4365-f339d0352f5f7e023e8ff89bb18291df8dfdad6e/shard-bmg-1/igt@kms_pipe_stress@stress-xrgb8888-yftiled.html
[192]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158384v8/shard-bmg-5/igt@kms_pipe_stress@stress-xrgb8888-yftiled.html
* igt@kms_pipe_stress@stress-xrgb8888-ytiled:
- shard-bmg: [SKIP][193] ([Intel XE#4329] / [Intel XE#6912]) -> [SKIP][194] ([Intel XE#6703])
[193]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4365-f339d0352f5f7e023e8ff89bb18291df8dfdad6e/shard-bmg-10/igt@kms_pipe_stress@stress-xrgb8888-ytiled.html
[194]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158384v8/shard-bmg-5/igt@kms_pipe_stress@stress-xrgb8888-ytiled.html
* igt@kms_plane_multiple@2x-tiling-y:
- shard-bmg: [SKIP][195] ([Intel XE#5021]) -> [SKIP][196] ([Intel XE#6703])
[195]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4365-f339d0352f5f7e023e8ff89bb18291df8dfdad6e/shard-bmg-9/igt@kms_plane_multiple@2x-tiling-y.html
[196]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158384v8/shard-bmg-5/igt@kms_plane_multiple@2x-tiling-y.html
* igt@kms_pm_backlight@fade-with-suspend:
- shard-bmg: [SKIP][197] ([Intel XE#870]) -> [SKIP][198] ([Intel XE#6703])
[197]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4365-f339d0352f5f7e023e8ff89bb18291df8dfdad6e/shard-bmg-10/igt@kms_pm_backlight@fade-with-suspend.html
[198]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158384v8/shard-bmg-5/igt@kms_pm_backlight@fade-with-suspend.html
* igt@kms_psr2_sf@pr-cursor-plane-move-continuous-exceed-fully-sf:
- shard-bmg: [SKIP][199] ([Intel XE#1406] / [Intel XE#1489]) -> [SKIP][200] ([Intel XE#1406] / [Intel XE#6703]) +2 other tests skip
[199]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4365-f339d0352f5f7e023e8ff89bb18291df8dfdad6e/shard-bmg-10/igt@kms_psr2_sf@pr-cursor-plane-move-continuous-exceed-fully-sf.html
[200]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158384v8/shard-bmg-5/igt@kms_psr2_sf@pr-cursor-plane-move-continuous-exceed-fully-sf.html
* igt@kms_psr2_su@page_flip-p010:
- shard-bmg: [SKIP][201] ([Intel XE#1406] / [Intel XE#2387]) -> [SKIP][202] ([Intel XE#1406] / [Intel XE#6703])
[201]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4365-f339d0352f5f7e023e8ff89bb18291df8dfdad6e/shard-bmg-1/igt@kms_psr2_su@page_flip-p010.html
[202]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158384v8/shard-bmg-5/igt@kms_psr2_su@page_flip-p010.html
* igt@kms_psr@fbc-psr-primary-render:
- shard-bmg: [SKIP][203] ([Intel XE#1406] / [Intel XE#2234] / [Intel XE#2850]) -> [SKIP][204] ([Intel XE#1406] / [Intel XE#6703]) +5 other tests skip
[203]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4365-f339d0352f5f7e023e8ff89bb18291df8dfdad6e/shard-bmg-1/igt@kms_psr@fbc-psr-primary-render.html
[204]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158384v8/shard-bmg-5/igt@kms_psr@fbc-psr-primary-render.html
* igt@kms_psr_stress_test@flip-primary-invalidate-overlay:
- shard-bmg: [SKIP][205] ([Intel XE#1406] / [Intel XE#2414]) -> [SKIP][206] ([Intel XE#1406] / [Intel XE#6703])
[205]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4365-f339d0352f5f7e023e8ff89bb18291df8dfdad6e/shard-bmg-1/igt@kms_psr_stress_test@flip-primary-invalidate-overlay.html
[206]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158384v8/shard-bmg-5/igt@kms_psr_stress_test@flip-primary-invalidate-overlay.html
* igt@kms_rotation_crc@primary-yf-tiled-reflect-x-0:
- shard-bmg: [SKIP][207] ([Intel XE#2330]) -> [SKIP][208] ([Intel XE#6703])
[207]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4365-f339d0352f5f7e023e8ff89bb18291df8dfdad6e/shard-bmg-1/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-0.html
[208]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158384v8/shard-bmg-5/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-0.html
* igt@kms_sharpness_filter@filter-scaler-downscale:
- shard-bmg: [SKIP][209] ([Intel XE#6503]) -> [SKIP][210] ([Intel XE#6703])
[209]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4365-f339d0352f5f7e023e8ff89bb18291df8dfdad6e/shard-bmg-10/igt@kms_sharpness_filter@filter-scaler-downscale.html
[210]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158384v8/shard-bmg-5/igt@kms_sharpness_filter@filter-scaler-downscale.html
* igt@xe_eudebug@multigpu-basic-client:
- shard-bmg: [SKIP][211] ([Intel XE#4837]) -> [SKIP][212] ([Intel XE#6703]) +4 other tests skip
[211]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4365-f339d0352f5f7e023e8ff89bb18291df8dfdad6e/shard-bmg-10/igt@xe_eudebug@multigpu-basic-client.html
[212]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158384v8/shard-bmg-5/igt@xe_eudebug@multigpu-basic-client.html
* igt@xe_eudebug_online@set-breakpoint-faultable:
- shard-bmg: [SKIP][213] ([Intel XE#4837] / [Intel XE#6665]) -> [SKIP][214] ([Intel XE#6703]) +1 other test skip
[213]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4365-f339d0352f5f7e023e8ff89bb18291df8dfdad6e/shard-bmg-1/igt@xe_eudebug_online@set-breakpoint-faultable.html
[214]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158384v8/shard-bmg-5/igt@xe_eudebug_online@set-breakpoint-faultable.html
* igt@xe_exec_basic@multigpu-many-execqueues-many-vm-userptr-rebind:
- shard-bmg: [SKIP][215] ([Intel XE#2322]) -> [SKIP][216] ([Intel XE#6703]) +2 other tests skip
[215]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4365-f339d0352f5f7e023e8ff89bb18291df8dfdad6e/shard-bmg-10/igt@xe_exec_basic@multigpu-many-execqueues-many-vm-userptr-rebind.html
[216]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158384v8/shard-bmg-5/igt@xe_exec_basic@multigpu-many-execqueues-many-vm-userptr-rebind.html
* igt@xe_exec_multi_queue@max-queues-preempt-mode-basic-smem:
- shard-bmg: [SKIP][217] ([Intel XE#6874]) -> [SKIP][218] ([Intel XE#6703]) +11 other tests skip
[217]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4365-f339d0352f5f7e023e8ff89bb18291df8dfdad6e/shard-bmg-10/igt@xe_exec_multi_queue@max-queues-preempt-mode-basic-smem.html
[218]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158384v8/shard-bmg-5/igt@xe_exec_multi_queue@max-queues-preempt-mode-basic-smem.html
* igt@xe_exec_system_allocator@twice-mmap-free-huge:
- shard-bmg: [SKIP][219] ([Intel XE#4943]) -> [SKIP][220] ([Intel XE#6703]) +11 other tests skip
[219]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4365-f339d0352f5f7e023e8ff89bb18291df8dfdad6e/shard-bmg-10/igt@xe_exec_system_allocator@twice-mmap-free-huge.html
[220]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158384v8/shard-bmg-5/igt@xe_exec_system_allocator@twice-mmap-free-huge.html
* igt@xe_pm@d3cold-basic:
- shard-bmg: [SKIP][221] ([Intel XE#2284]) -> [SKIP][222] ([Intel XE#6703])
[221]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4365-f339d0352f5f7e023e8ff89bb18291df8dfdad6e/shard-bmg-10/igt@xe_pm@d3cold-basic.html
[222]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158384v8/shard-bmg-5/igt@xe_pm@d3cold-basic.html
* igt@xe_query@multigpu-query-invalid-uc-fw-version-mbz:
- shard-bmg: [SKIP][223] ([Intel XE#944]) -> [SKIP][224] ([Intel XE#6703]) +2 other tests skip
[223]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4365-f339d0352f5f7e023e8ff89bb18291df8dfdad6e/shard-bmg-10/igt@xe_query@multigpu-query-invalid-uc-fw-version-mbz.html
[224]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158384v8/shard-bmg-5/igt@xe_query@multigpu-query-invalid-uc-fw-version-mbz.html
{name}: This element is suppressed. This means it is ignored when computing
the status of the difference (SUCCESS, WARNING, or FAILURE).
[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#1420]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1420
[Intel XE#1435]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1435
[Intel XE#1489]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1489
[Intel XE#1499]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1499
[Intel XE#1503]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1503
[Intel XE#2049]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2049
[Intel XE#2134]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2134
[Intel XE#2229]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2229
[Intel XE#2233]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2233
[Intel XE#2234]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2234
[Intel XE#2236]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2236
[Intel XE#2244]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2244
[Intel XE#2252]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2252
[Intel XE#2284]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2284
[Intel XE#2286]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2286
[Intel XE#2293]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2293
[Intel XE#2311]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2311
[Intel XE#2312]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2312
[Intel XE#2313]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2313
[Intel XE#2314]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2314
[Intel XE#2320]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2320
[Intel XE#2321]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2321
[Intel XE#2322]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2322
[Intel XE#2325]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2325
[Intel XE#2327]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2327
[Intel XE#2328]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2328
[Intel XE#2330]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2330
[Intel XE#2341]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2341
[Intel XE#2372]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2372
[Intel XE#2373]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2373
[Intel XE#2380]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2380
[Intel XE#2387]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2387
[Intel XE#2390]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2390
[Intel XE#2391]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2391
[Intel XE#2392]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2392
[Intel XE#2393]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2393
[Intel XE#2413]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2413
[Intel XE#2414]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2414
[Intel XE#2427]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2427
[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#2459]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2459
[Intel XE#2486]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2486
[Intel XE#2509]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2509
[Intel XE#2596]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2596
[Intel XE#2597]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2597
[Intel XE#2652]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2652
[Intel XE#2724]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2724
[Intel XE#2850]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2850
[Intel XE#2887]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2887
[Intel XE#2894]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2894
[Intel XE#2925]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2925
[Intel XE#2938]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2938
[Intel XE#307]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/307
[Intel XE#3304]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3304
[Intel XE#3414]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3414
[Intel XE#3428]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3428
[Intel XE#3432]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3432
[Intel XE#3650]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3650
[Intel XE#367]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/367
[Intel XE#3904]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3904
[Intel XE#4141]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4141
[Intel XE#4156]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4156
[Intel XE#4329]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4329
[Intel XE#4331]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4331
[Intel XE#4354]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4354
[Intel XE#4422]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4422
[Intel XE#4633]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4633
[Intel XE#4733]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4733
[Intel XE#4837]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4837
[Intel XE#4943]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4943
[Intel XE#5007]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5007
[Intel XE#5021]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5021
[Intel XE#5177]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5177
[Intel XE#5466]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5466
[Intel XE#5793]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5793
[Intel XE#607]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/607
[Intel XE#610]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/610
[Intel XE#6266]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6266
[Intel XE#6480]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6480
[Intel XE#6503]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6503
[Intel XE#6507]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6507
[Intel XE#6557]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6557
[Intel XE#6599]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6599
[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#6693]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6693
[Intel XE#6703]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6703
[Intel XE#6707]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6707
[Intel XE#6740]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6740
[Intel XE#6779]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6779
[Intel XE#6814]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6814
[Intel XE#6874]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6874
[Intel XE#6886]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6886
[Intel XE#6911]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6911
[Intel XE#6912]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6912
[Intel XE#6953]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6953
[Intel XE#6964]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6964
[Intel XE#6969]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6969
[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#7006]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7006
[Intel XE#7024]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7024
[Intel XE#776]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/776
[Intel XE#787]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/787
[Intel XE#870]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/870
[Intel XE#944]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/944
Build changes
-------------
* Linux: xe-4365-f339d0352f5f7e023e8ff89bb18291df8dfdad6e -> xe-pw-158384v8
IGT_8696: 8696
xe-4365-f339d0352f5f7e023e8ff89bb18291df8dfdad6e: f339d0352f5f7e023e8ff89bb18291df8dfdad6e
xe-pw-158384v8: 158384v8
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158384v8/index.html
[-- Attachment #2: Type: text/html, Size: 71569 bytes --]
^ permalink raw reply [flat|nested] 10+ messages in thread
* Re: [PATCH v6 4/4] drm/xe/hwmon: Expose individual VRAM channel temperature
2026-01-12 12:17 ` [PATCH v6 4/4] drm/xe/hwmon: Expose individual VRAM channel temperature Karthik Poosa
@ 2026-01-12 18:08 ` Raag Jadav
2026-01-12 18:32 ` Poosa, Karthik
0 siblings, 1 reply; 10+ messages in thread
From: Raag Jadav @ 2026-01-12 18:08 UTC (permalink / raw)
To: Karthik Poosa; +Cc: intel-xe, anshuman.gupta, badal.nilawar, rodrigo.vivi
On Mon, Jan 12, 2026 at 05:47:24PM +0530, Karthik Poosa wrote:
> 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.
>
> Signed-off-by: Karthik Poosa <karthik.poosa@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..45f09f39df96 100644
> --- a/drivers/gpu/drm/xe/regs/xe_pcode_regs.h
> +++ b/drivers/gpu/drm/xe/regs/xe_pcode_regs.h
> @@ -22,6 +22,9 @@
> #define BMG_FAN_2_SPEED XE_REG(0x138170)
> #define BMG_FAN_3_SPEED XE_REG(0x1381a0)
> #define BMG_VRAM_TEMPERATURE XE_REG(0x1382c0)
> +#define BMG_VRAM_TEMPERATURE_N(n) XE_REG(0x138260 + ((n) * (sizeof(u32))))
Ascending order please!
> +#define TEMP_MASK_VRAM_N REG_GENMASK(30, 8)
> +#define TEMP_SIGN_MASK BIT(31)
Use REG_BIT() for consistency.
> #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..b1737403a38b 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 (channel >= CHANNEL_VRAM_N && channel <= CHANNEL_VRAM_N_MAX)
This looks like it can be in_range() but please double check.
> + 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 bits
Nit: Either use bits with 's' or don't, but let's be consistent.
> + * [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 (channel >= CHANNEL_VRAM_N && channel <= CHANNEL_VRAM_N_MAX)
Ditto for in_range().
Reviewed-by: Raag Jadav <raag.jadav@intel.com>
> + *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] 10+ messages in thread
* Re: [PATCH v6 4/4] drm/xe/hwmon: Expose individual VRAM channel temperature
2026-01-12 18:08 ` Raag Jadav
@ 2026-01-12 18:32 ` Poosa, Karthik
0 siblings, 0 replies; 10+ messages in thread
From: Poosa, Karthik @ 2026-01-12 18:32 UTC (permalink / raw)
To: Raag Jadav; +Cc: intel-xe, anshuman.gupta, badal.nilawar, rodrigo.vivi
On 12-01-2026 23:38, Raag Jadav wrote:
> On Mon, Jan 12, 2026 at 05:47:24PM +0530, Karthik Poosa wrote:
>> 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.
>>
>> Signed-off-by: Karthik Poosa <karthik.poosa@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..45f09f39df96 100644
>> --- a/drivers/gpu/drm/xe/regs/xe_pcode_regs.h
>> +++ b/drivers/gpu/drm/xe/regs/xe_pcode_regs.h
>> @@ -22,6 +22,9 @@
>> #define BMG_FAN_2_SPEED XE_REG(0x138170)
>> #define BMG_FAN_3_SPEED XE_REG(0x1381a0)
>> #define BMG_VRAM_TEMPERATURE XE_REG(0x1382c0)
>> +#define BMG_VRAM_TEMPERATURE_N(n) XE_REG(0x138260 + ((n) * (sizeof(u32))))
> Ascending order please!
>
>> +#define TEMP_MASK_VRAM_N REG_GENMASK(30, 8)
>> +#define TEMP_SIGN_MASK BIT(31)
> Use REG_BIT() for consistency.
>
>> #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..b1737403a38b 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 (channel >= CHANNEL_VRAM_N && channel <= CHANNEL_VRAM_N_MAX)
> This looks like it can be in_range() but please double check.
Current check should be sufficient, in_range not required here.
>
>> + 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 bits
> Nit: Either use bits with 's' or don't, but let's be consistent.
>
>> + * [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 (channel >= CHANNEL_VRAM_N && channel <= CHANNEL_VRAM_N_MAX)
> Ditto for in_range().
same as above
>
> Reviewed-by: Raag Jadav <raag.jadav@intel.com>
>
>> + *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] 10+ messages in thread
end of thread, other threads:[~2026-01-12 18:32 UTC | newest]
Thread overview: 10+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2026-01-12 12:17 [PATCH v6 0/4] drm/xe/hwmon: Expose new temperature attributes Karthik Poosa
2026-01-12 12:17 ` [PATCH v6 1/4] drm/xe/hwmon: Expose temperature limits Karthik Poosa
2026-01-12 12:17 ` [PATCH v6 2/4] drm/xe/hwmon: Expose memory controller temperature Karthik Poosa
2026-01-12 12:17 ` [PATCH v6 3/4] drm/xe/hwmon: Expose GPU PCIe temperature Karthik Poosa
2026-01-12 12:17 ` [PATCH v6 4/4] drm/xe/hwmon: Expose individual VRAM channel temperature Karthik Poosa
2026-01-12 18:08 ` Raag Jadav
2026-01-12 18:32 ` Poosa, Karthik
2026-01-12 12:29 ` ✓ CI.KUnit: success for drm/xe/hwmon: Expose new temperature attributes (rev8) Patchwork
2026-01-12 13:03 ` ✓ Xe.CI.BAT: " Patchwork
2026-01-12 14:10 ` ✗ 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