From: Nareshkumar Gollakoti <naresh.kumar.g@intel.com>
To: intel-xe@lists.freedesktop.org
Cc: himal.prasad.ghimiray@intel.com, arvind.yadav@intel.com,
tejas.upadhyay@intel.com,
Nareshkumar Gollakoti <naresh.kumar.g@intel.com>
Subject: [PATCH v3 6/7] drm/xe: capture L3 node status registers in devcoredump
Date: Thu, 3 Sep 2026 19:48:33 +0530 [thread overview]
Message-ID: <20260903141834.1315675-7-naresh.kumar.g@intel.com> (raw)
In-Reply-To: <20260903141834.1315675-1-naresh.kumar.g@intel.com>
Add L3_NODE_IDLE and L3STAT_LBCF_GFX register definitions and include
them in the devcoredump snapshot as a node status section.
Extend the register descriptor to mark MCR registers so the snapshot
code can read them through xe_gt_mcr_unicast_read_any(), then print and
free the captured node status registers alongside the existing dump
sections.
v2:(Sashiko)
- change L3 node registers as XE_REG_MCR type
- identify mcr register type from reg.mcr
- As generic capture function ensure VF check this will not execute
on VF Mode.
Signed-off-by: Nareshkumar Gollakoti <naresh.kumar.g@intel.com>
---
drivers/gpu/drm/xe/regs/xe_gt_regs.h | 3 ++
drivers/gpu/drm/xe/xe_devcoredump.c | 46 +++++++++++++++++++++--
drivers/gpu/drm/xe/xe_devcoredump_types.h | 2 +
3 files changed, 48 insertions(+), 3 deletions(-)
diff --git a/drivers/gpu/drm/xe/regs/xe_gt_regs.h b/drivers/gpu/drm/xe/regs/xe_gt_regs.h
index b3ce7074f7d7..213422063de3 100644
--- a/drivers/gpu/drm/xe/regs/xe_gt_regs.h
+++ b/drivers/gpu/drm/xe/regs/xe_gt_regs.h
@@ -426,6 +426,9 @@
#define L3_ESC_MASK REG_BIT(0)
#define L3_ESC(value) REG_FIELD_PREP(L3_ESC_MASK, value)
+#define L3_NODE_IDLE XE_REG_MCR(0xb0b0)
+#define L3STAT_LBCF_GFX XE_REG_MCR(0xb128)
+
#define XEHP_L3NODEARBCFG XE_REG_MCR(0xb0b4)
#define XEHP_LNESPARE REG_BIT(19)
diff --git a/drivers/gpu/drm/xe/xe_devcoredump.c b/drivers/gpu/drm/xe/xe_devcoredump.c
index 09e571e27660..f10be2ae54db 100644
--- a/drivers/gpu/drm/xe/xe_devcoredump.c
+++ b/drivers/gpu/drm/xe/xe_devcoredump.c
@@ -28,6 +28,7 @@
#include "xe_mmio.h"
#include "regs/xe_gt_regs.h"
#include "regs/xe_guc_regs.h"
+#include "xe_gt_mcr.h"
/**
* DOC: Xe device coredump
@@ -79,13 +80,18 @@
* of the register to dump its value during coredump for debug purpose.
*/
struct xe_reg_desc {
- /** @reg: The register */
- struct xe_reg reg;
+ union {
+ /** @reg: The register */
+ struct xe_reg reg;
+ /** @mcr_reg: The mcr register */
+ struct xe_reg_mcr mcr_reg;
+ };
/** @name: Name of the register */
const char *name;
};
#define XE_REG_DESC(_reg, _name) { .reg = (_reg), .name = (_name) }
+#define XE_REG_DESC_MCR(_reg, _name) { .mcr_reg = (_reg), .name = (_name) }
static const struct xe_reg_desc xe3p_gt_guc_reglist[] = {
XE_REG_DESC(GUC_STATUS, "GUC_STATUS"),
@@ -132,6 +138,11 @@ static const struct xe_reg_desc xe3p_gam_pf_reglist[] = {
XE_REG_DESC(PAGE_FLTRPTQ_TAIL_GAMCTRL, "PAGE_FLTRPTQ_TAIL_GAMCTRL"),
};
+static const struct xe_reg_desc xe3p_l3_node_reglist[] = {
+ XE_REG_DESC_MCR(L3_NODE_IDLE, "L3_NODE_IDLE"),
+ XE_REG_DESC_MCR(L3STAT_LBCF_GFX, "L3STAT_LBCF_GFX"),
+};
+
/**
* struct xe_reg_desc_list - Struct for register descriptor list
*
@@ -195,6 +206,13 @@ static const struct xe_gt_regset xe_gam_pf_regset = {
},
};
+static const struct xe_gt_regset xe_l3_node_regset = {
+ .gt[XE_GT_TYPE_MAIN] = {
+ .regs = xe3p_l3_node_reglist,
+ .num_regs = ARRAY_SIZE(xe3p_l3_node_reglist),
+ },
+};
+
#define XE_GT_REG_LIST(_type, _gt_type) \
(&xe_##_type##_regset.gt[XE_GT_TYPE_##_gt_type])
@@ -208,7 +226,10 @@ xe_capture_reg_desc_list(struct xe_gt *gt,
for (i = 0; i < count; i++) {
dst[i].reg = src[i].reg;
- dst[i].value = xe_mmio_read32(>->mmio, src[i].reg);
+ if (src[i].reg.mcr)
+ dst[i].value = xe_gt_mcr_unicast_read_any(gt, src[i].mcr_reg);
+ else
+ dst[i].value = xe_mmio_read32(>->mmio, src[i].reg);
dst[i].name = src[i].name;
}
}
@@ -374,6 +395,16 @@ static struct xe_dbg_reg_snapshot *xe_gam_pf_report_capture(struct xe_gt *gt)
XE_GT_REG_LIST(gam_pf, MAIN));
}
+static struct xe_dbg_reg_snapshot *xe_node_status_capture(struct xe_gt *gt)
+{
+ if (!gt || !gt->tile || !gt->tile->primary_gt)
+ return NULL;
+
+ return xe_dbg_reg_snapshot_capture_target(gt,
+ gt->tile->primary_gt,
+ XE_GT_REG_LIST(l3_node, MAIN));
+}
+
static struct xe_device *coredump_to_xe(const struct xe_devcoredump *coredump)
{
return container_of(coredump, struct xe_device, devcoredump);
@@ -441,6 +472,9 @@ static ssize_t __xe_devcoredump_read(char *buffer, ssize_t count,
drm_printf(&p, "\n**** GAM PF Report ****\n");
xe_gam_pf_snapshot_print(&p, ss->gam_pf_report);
+ drm_printf(&p, "\n**** Node Status ****\n");
+ xe_dbg_reg_snapshot_print(&p, ss->ns);
+
drm_puts(&p, "\n**** Contexts ****\n");
xe_guc_exec_queue_snapshot_print(ss->ge, &p);
@@ -496,6 +530,9 @@ static void xe_devcoredump_snapshot_free(struct xe_devcoredump_snapshot *ss)
xe_dbg_reg_snapshot_free(ss->gam_pf_report);
ss->gam_pf_report = NULL;
+ xe_dbg_reg_snapshot_free(ss->ns);
+ ss->ns = NULL;
+
xe_guc_exec_queue_snapshot_free(ss->ge);
ss->ge = NULL;
@@ -703,6 +740,9 @@ static void devcoredump_snapshot(struct xe_devcoredump *coredump,
ss->guc.log = xe_guc_log_snapshot_capture(&guc->log, true);
ss->guc.ct = xe_guc_ct_snapshot_capture(&guc->ct);
ss->gam_pf_report = xe_gam_pf_report_capture(q->gt);
+
+ ss->ns = xe_node_status_capture(q->gt);
+
ss->ge = xe_guc_exec_queue_snapshot_capture(q);
if (job)
ss->job = xe_sched_job_snapshot_capture(job);
diff --git a/drivers/gpu/drm/xe/xe_devcoredump_types.h b/drivers/gpu/drm/xe/xe_devcoredump_types.h
index ea7638d0a7a2..6f6d1a80dbb6 100644
--- a/drivers/gpu/drm/xe/xe_devcoredump_types.h
+++ b/drivers/gpu/drm/xe/xe_devcoredump_types.h
@@ -92,6 +92,8 @@ struct xe_devcoredump_snapshot {
/** @gam_pf_report: GAM PF report snapshot */
struct xe_dbg_reg_snapshot *gam_pf_report;
+ /** @ns: Node status snapshot */
+ struct xe_dbg_reg_snapshot *ns;
/** @ge: GuC Submission Engine snapshot */
struct xe_guc_submit_exec_queue_snapshot *ge;
--
2.43.0
next prev parent reply other threads:[~2026-09-03 14:19 UTC|newest]
Thread overview: 14+ messages / expand[flat|nested] mbox.gz Atom feed top
2026-09-03 14:18 [PATCH v3 0/7] drm/xe: Capture additional HW register state in devcoredump Nareshkumar Gollakoti
2026-09-03 14:18 ` [PATCH v3 1/7] drm/xe/devcoredump: Capture GT fuse registers " Nareshkumar Gollakoti
2026-09-03 14:32 ` sashiko-bot
2026-09-03 14:18 ` [PATCH v3 2/7] drm/xe/devcoredump: Add GuC register snapshot to devcoredump Nareshkumar Gollakoti
2026-09-03 14:18 ` [PATCH v3 3/7] drm/xe/guc: Print register addresses in capture snapshot output Nareshkumar Gollakoti
2026-09-03 14:18 ` [PATCH v3 4/7] drm/xe: dump GAM page fault report registers in devcoredump Nareshkumar Gollakoti
2026-09-03 14:18 ` [PATCH v3 5/7] drm/xe/guc: add TDL, SLICE gfx registers to capture list Nareshkumar Gollakoti
2026-09-03 14:18 ` Nareshkumar Gollakoti [this message]
2026-09-03 14:18 ` [PATCH v3 7/7] drm/xe/guc: capture additional engine state registers Nareshkumar Gollakoti
2026-09-03 14:33 ` sashiko-bot
2026-09-03 14:54 ` ✗ CI.checkpatch: warning for drm/xe: Capture additional HW register state in devcoredump (rev3) Patchwork
2026-09-03 14:56 ` ✓ CI.KUnit: success " Patchwork
2026-09-03 15:39 ` ✓ Xe.CI.BAT: " Patchwork
2026-09-04 2:01 ` ✗ 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=20260903141834.1315675-7-naresh.kumar.g@intel.com \
--to=naresh.kumar.g@intel.com \
--cc=arvind.yadav@intel.com \
--cc=himal.prasad.ghimiray@intel.com \
--cc=intel-xe@lists.freedesktop.org \
--cc=tejas.upadhyay@intel.com \
/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