From: Matthew Brost <matthew.brost@intel.com>
To: intel-xe@lists.freedesktop.org
Subject: [PATCH 1/2] drm/xe: Pack fault type and level into a u8
Date: Thu, 12 Feb 2026 12:42:26 -0800 [thread overview]
Message-ID: <20260212204227.2764054-2-matthew.brost@intel.com> (raw)
In-Reply-To: <20260212204227.2764054-1-matthew.brost@intel.com>
Pack the fault type and level fields into a single u8 to save space in
struct xe_pagefault. This also makes future extensions easier.
Signed-off-by: Matthew Brost <matthew.brost@intel.com>
---
drivers/gpu/drm/xe/xe_guc_pagefault.c | 9 ++++++---
drivers/gpu/drm/xe/xe_pagefault.c | 12 +++++++-----
drivers/gpu/drm/xe/xe_pagefault_types.h | 14 +++++++-------
3 files changed, 20 insertions(+), 15 deletions(-)
diff --git a/drivers/gpu/drm/xe/xe_guc_pagefault.c b/drivers/gpu/drm/xe/xe_guc_pagefault.c
index 719a18187a31..1166b0a5fa21 100644
--- a/drivers/gpu/drm/xe/xe_guc_pagefault.c
+++ b/drivers/gpu/drm/xe/xe_guc_pagefault.c
@@ -76,11 +76,14 @@ int xe_guc_pagefault_handler(struct xe_guc *guc, u32 *msg, u32 len)
PFD_VIRTUAL_ADDR_LO_SHIFT);
pf.consumer.asid = FIELD_GET(PFD_ASID, msg[1]);
pf.consumer.access_type = FIELD_GET(PFD_ACCESS_TYPE, msg[2]);
- pf.consumer.fault_type = FIELD_GET(PFD_FAULT_TYPE, msg[2]);
if (FIELD_GET(XE2_PFD_TRVA_FAULT, msg[0]))
- pf.consumer.fault_level = XE_PAGEFAULT_LEVEL_NACK;
+ pf.consumer.fault_type_level = XE_PAGEFAULT_TYPE_LEVEL_NACK;
else
- pf.consumer.fault_level = FIELD_GET(PFD_FAULT_LEVEL, msg[0]);
+ pf.consumer.fault_type_level =
+ FIELD_PREP(XE_PAGEFAULT_LEVEL_MASK,
+ FIELD_GET(PFD_FAULT_LEVEL, msg[0])) |
+ FIELD_PREP(XE_PAGEFAULT_TYPE_MASK,
+ FIELD_GET(PFD_FAULT_TYPE, msg[2]));
pf.consumer.engine_class = FIELD_GET(PFD_ENG_CLASS, msg[0]);
pf.consumer.engine_instance = FIELD_GET(PFD_ENG_INSTANCE, msg[0]);
diff --git a/drivers/gpu/drm/xe/xe_pagefault.c b/drivers/gpu/drm/xe/xe_pagefault.c
index 6bee53d6ffc3..72f589fd2b64 100644
--- a/drivers/gpu/drm/xe/xe_pagefault.c
+++ b/drivers/gpu/drm/xe/xe_pagefault.c
@@ -164,7 +164,7 @@ static int xe_pagefault_service(struct xe_pagefault *pf)
bool atomic;
/* Producer flagged this fault to be nacked */
- if (pf->consumer.fault_level == XE_PAGEFAULT_LEVEL_NACK)
+ if (pf->consumer.fault_type_level == XE_PAGEFAULT_TYPE_LEVEL_NACK)
return -EFAULT;
vm = xe_pagefault_asid_to_vm(xe, pf->consumer.asid);
@@ -225,17 +225,19 @@ static void xe_pagefault_print(struct xe_pagefault *pf)
{
xe_gt_info(pf->gt, "\n\tASID: %d\n"
"\tFaulted Address: 0x%08x%08x\n"
- "\tFaultType: %d\n"
+ "\tFaultType: %lu\n"
"\tAccessType: %d\n"
- "\tFaultLevel: %d\n"
+ "\tFaultLevel: %lu\n"
"\tEngineClass: %d %s\n"
"\tEngineInstance: %d\n",
pf->consumer.asid,
upper_32_bits(pf->consumer.page_addr),
lower_32_bits(pf->consumer.page_addr),
- pf->consumer.fault_type,
+ FIELD_GET(XE_PAGEFAULT_TYPE_MASK,
+ pf->consumer.fault_type_level),
pf->consumer.access_type,
- pf->consumer.fault_level,
+ FIELD_GET(XE_PAGEFAULT_LEVEL_MASK,
+ pf->consumer.fault_type_level),
pf->consumer.engine_class,
xe_hw_engine_class_to_str(pf->consumer.engine_class),
pf->consumer.engine_instance);
diff --git a/drivers/gpu/drm/xe/xe_pagefault_types.h b/drivers/gpu/drm/xe/xe_pagefault_types.h
index d3b516407d60..0e378f41ede6 100644
--- a/drivers/gpu/drm/xe/xe_pagefault_types.h
+++ b/drivers/gpu/drm/xe/xe_pagefault_types.h
@@ -73,19 +73,19 @@ struct xe_pagefault {
*/
u8 access_type;
/**
- * @consumer.fault_type: fault type, u8 rather than enum to
- * keep size compact
+ * @consumer.fault_type_level: fault type and level, u8 rather
+ * than enum to keep size compact
*/
- u8 fault_type;
-#define XE_PAGEFAULT_LEVEL_NACK 0xff /* Producer indicates nack fault */
- /** @consumer.fault_level: fault level */
- u8 fault_level;
+ u8 fault_type_level;
+#define XE_PAGEFAULT_TYPE_LEVEL_NACK 0xff /* Producer indicates nack fault */
+#define XE_PAGEFAULT_LEVEL_MASK GENMASK(3, 0)
+#define XE_PAGEFAULT_TYPE_MASK GENMASK(7, 4)
/** @consumer.engine_class: engine class */
u8 engine_class;
/** @consumer.engine_instance: engine instance */
u8 engine_instance;
/** consumer.reserved: reserved bits for future expansion */
- u8 reserved[7];
+ u64 reserved;
} consumer;
/**
* @producer: State for the producer (i.e., HW/FW interface). Populated
--
2.34.1
next prev parent reply other threads:[~2026-02-12 20:42 UTC|newest]
Thread overview: 9+ messages / expand[flat|nested] mbox.gz Atom feed top
2026-02-12 20:42 [PATCH 0/2] Low hanging pagefault refactors Matthew Brost
2026-02-12 20:42 ` Matthew Brost [this message]
2026-02-13 13:30 ` [PATCH 1/2] drm/xe: Pack fault type and level into a u8 Francois Dugast
2026-02-12 20:42 ` [PATCH 2/2] drm/xe: Avoid touching consumer fields in GuC pagefault ack Matthew Brost
2026-02-13 13:57 ` Francois Dugast
2026-02-12 20:47 ` ✗ CI.checkpatch: warning for Low hanging pagefault refactors Patchwork
2026-02-12 20:48 ` ✓ CI.KUnit: success " Patchwork
2026-02-12 21:34 ` ✓ Xe.CI.BAT: " Patchwork
2026-02-14 0:20 ` ✗ Xe.CI.FULL: failure " Patchwork
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=20260212204227.2764054-2-matthew.brost@intel.com \
--to=matthew.brost@intel.com \
--cc=intel-xe@lists.freedesktop.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox