From: "Tauro, Riana" <riana.tauro@intel.com>
To: Raag Jadav <raag.jadav@intel.com>
Cc: <intel-xe@lists.freedesktop.org>, <anshuman.gupta@intel.com>,
<rodrigo.vivi@intel.com>, <aravind.iddamsetty@linux.intel.com>,
<badal.nilawar@intel.com>, <ravi.kishore.koppuravuri@intel.com>,
<mallesh.koujalagi@intel.com>, <soham.purkait@intel.com>
Subject: Re: [PATCH v2 3/5] drm/xe/xe_ras: Add support to query error counter for CRI
Date: Mon, 20 Apr 2026 12:03:06 +0530 [thread overview]
Message-ID: <00921c44-5120-4d77-841c-efd199f37f49@intel.com> (raw)
In-Reply-To: <ady1PyArv2MFbwz3@black.igk.intel.com>
On 4/13/2026 2:49 PM, Raag Jadav wrote:
> On Mon, Apr 06, 2026 at 08:24:42PM +0530, Riana Tauro wrote:
>> Add support to get error counter value for CRI.
>>
>> When userspace queries a drm_ras error counter, fetch the
>> latest counter value from system controller.
>>
>> Integrate this with XE drm_ras.
>>
>> Usage :
>>
>> Query all error counter value using ynl
>>
>> $ sudo ynl --family drm_ras --dump get-error-counter --json \
>> '{"node-id":0}'
>> [{'error-id': 1, 'error-name': 'core-compute', 'error-value': 0},
>> {'error-id': 2, 'error-name': 'soc-internal', 'error-value': 0},
>> {'error-id': 3, 'error-name': 'device-memory', 'error-value': 0},
>> {'error-id': 4, 'error-name': 'pcie', 'error-value': 0},
>> {'error-id': 5, 'error-name': 'fabric', 'error-value': 0}]
>>
>> Query single error counter value using ynl
>>
>> $ sudo ynl --family drm_ras --do get-error-counter --json \
>> '{"node-id":1, "error-id":1}'
>> {'error-id': 1, 'error-name': 'core-compute', 'error-value': 2}
>>
>> Signed-off-by: Riana Tauro <riana.tauro@intel.com>
>> ---
>> v2: split functions
>> fix commit message (Raag)
>> ---
>> drivers/gpu/drm/xe/Makefile | 1 +
>> drivers/gpu/drm/xe/xe_drm_ras.c | 22 +++---
>> drivers/gpu/drm/xe/xe_ras.c | 123 ++++++++++++++++++++++++++++++++
>> drivers/gpu/drm/xe/xe_ras.h | 16 +++++
>> 4 files changed, 154 insertions(+), 8 deletions(-)
>> create mode 100644 drivers/gpu/drm/xe/xe_ras.c
>> create mode 100644 drivers/gpu/drm/xe/xe_ras.h
>>
>> diff --git a/drivers/gpu/drm/xe/Makefile b/drivers/gpu/drm/xe/Makefile
>> index 110fef511fe2..8fcd676ab41c 100644
>> --- a/drivers/gpu/drm/xe/Makefile
>> +++ b/drivers/gpu/drm/xe/Makefile
>> @@ -111,6 +111,7 @@ xe-y += xe_bb.o \
>> xe_pxp_debugfs.o \
>> xe_pxp_submit.o \
>> xe_query.o \
>> + xe_ras.o \
>> xe_range_fence.o \
>> xe_reg_sr.o \
>> xe_reg_whitelist.o \
>> diff --git a/drivers/gpu/drm/xe/xe_drm_ras.c b/drivers/gpu/drm/xe/xe_drm_ras.c
>> index e07dc23a155e..b334881e034a 100644
>> --- a/drivers/gpu/drm/xe/xe_drm_ras.c
>> +++ b/drivers/gpu/drm/xe/xe_drm_ras.c
>> @@ -11,17 +11,27 @@
>>
>> #include "xe_device_types.h"
>> #include "xe_drm_ras.h"
>> +#include "xe_ras.h"
>>
>> static const char * const error_components[] = DRM_XE_RAS_ERROR_COMPONENT_NAMES;
>> static const char * const error_severity[] = DRM_XE_RAS_ERROR_SEVERITY_NAMES;
>>
>> -static int hw_query_error_counter(struct xe_drm_ras_counter *info,
>> - u32 error_id, const char **name, u32 *val)
>> +static int hw_query_error_counter(struct xe_device *xe,
>> + const enum drm_xe_ras_error_severity severity, u32 error_id,
>> + const char **name, u32 *val)
>> {
>> + struct xe_drm_ras *ras = &xe->ras;
>> + struct xe_drm_ras_counter *info = ras->info[severity];
>> +
>> if (!info || !info[error_id].name)
>> return -ENOENT;
>>
>> *name = info[error_id].name;
>> +
>> + /* Fetch counter from system controller if supported */
>> + if (xe->info.has_sysctrl)
>> + return xe_ras_get_error_counter(xe, severity, error_id, val);
> Hm, this looks like should be a separate patch which hooks CRI pieces
> to DRM RAS.
>
Sure
>> +
>> *val = atomic_read(&info[error_id].counter);
>>
>> return 0;
>> @@ -31,20 +41,16 @@ static int query_uncorrectable_error_counter(struct drm_ras_node *ep, u32 error_
>> const char **name, u32 *val)
>> {
>> struct xe_device *xe = ep->priv;
>> - struct xe_drm_ras *ras = &xe->ras;
>> - struct xe_drm_ras_counter *info = ras->info[DRM_XE_RAS_ERR_SEV_UNCORRECTABLE];
>>
>> - return hw_query_error_counter(info, error_id, name, val);
>> + return hw_query_error_counter(xe, DRM_XE_RAS_ERR_SEV_UNCORRECTABLE, error_id, name, val);
>> }
>>
>> static int query_correctable_error_counter(struct drm_ras_node *ep, u32 error_id,
>> const char **name, u32 *val)
>> {
>> struct xe_device *xe = ep->priv;
>> - struct xe_drm_ras *ras = &xe->ras;
>> - struct xe_drm_ras_counter *info = ras->info[DRM_XE_RAS_ERR_SEV_CORRECTABLE];
>>
>> - return hw_query_error_counter(info, error_id, name, val);
>> + return hw_query_error_counter(xe, DRM_XE_RAS_ERR_SEV_CORRECTABLE, error_id, name, val);
>> }
>>
>> static struct xe_drm_ras_counter *allocate_and_copy_counters(struct xe_device *xe)
>> diff --git a/drivers/gpu/drm/xe/xe_ras.c b/drivers/gpu/drm/xe/xe_ras.c
>> new file mode 100644
>> index 000000000000..b5fdad2c801d
>> --- /dev/null
>> +++ b/drivers/gpu/drm/xe/xe_ras.c
>> @@ -0,0 +1,123 @@
>> +// SPDX-License-Identifier: MIT
>> +/*
>> + * Copyright © 2026 Intel Corporation
>> + */
>> +
>> +#include "xe_device_types.h"
>> +#include "xe_pm.h"
>> +#include "xe_printk.h"
>> +#include "xe_ras.h"
>> +#include "xe_ras_types.h"
>> +#include "xe_sysctrl_mailbox.h"
>> +#include "xe_sysctrl_mailbox_types.h"
>> +
>> +/* Severity classification of detected errors */
>> +enum xe_ras_severity {
>> + XE_RAS_SEVERITY_NOT_SUPPORTED = 0,
>> + XE_RAS_SEVERITY_CORRECTABLE,
>> + XE_RAS_SEVERITY_UNCORRECTABLE,
>> + XE_RAS_SEVERITY_INFORMATIONAL,
>> + XE_RAS_SEVERITY_MAX
>> +};
>> +
>> +/* major IP blocks where errors can originate */
>> +enum xe_ras_component {
>> + XE_RAS_COMPONENT_NOT_SUPPORTED = 0,
>> + XE_RAS_COMPONENT_DEVICE_MEMORY,
>> + XE_RAS_COMPONENT_CORE_COMPUTE,
>> + XE_RAS_COMPONENT_RESERVED,
>> + XE_RAS_COMPONENT_PCIE,
>> + XE_RAS_COMPONENT_FABRIC,
>> + XE_RAS_COMPONENT_SOC_INTERNAL,
>> + XE_RAS_COMPONENT_MAX
>> +};
>> +
>> +/* Mapping from drm_xe_ras_error_component to xe_ras_component */
>> +static const int drm_to_xe_ras_component[] = {
>> + [DRM_XE_RAS_ERR_COMP_CORE_COMPUTE] = XE_RAS_COMPONENT_CORE_COMPUTE,
>> + [DRM_XE_RAS_ERR_COMP_SOC_INTERNAL] = XE_RAS_COMPONENT_SOC_INTERNAL,
>> + [DRM_XE_RAS_ERR_COMP_DEVICE_MEMORY] = XE_RAS_COMPONENT_DEVICE_MEMORY,
>> + [DRM_XE_RAS_ERR_COMP_PCIE] = XE_RAS_COMPONENT_PCIE,
>> + [DRM_XE_RAS_ERR_COMP_FABRIC] = XE_RAS_COMPONENT_FABRIC
>> +};
>> +static_assert(ARRAY_SIZE(drm_to_xe_ras_component) == DRM_XE_RAS_ERR_COMP_MAX);
> Curious, should we also reuse uapi names for logging?
This is not for logging. This is conversion from input from user (ie
uapi) to the enums to be sent
to firmware.
>
>> +/* Mapping from drm_xe_ras_error_severity to xe_ras_severity */
>> +static const int drm_to_xe_ras_severity[] = {
>> + [DRM_XE_RAS_ERR_SEV_CORRECTABLE] = XE_RAS_SEVERITY_CORRECTABLE,
>> + [DRM_XE_RAS_ERR_SEV_UNCORRECTABLE] = XE_RAS_SEVERITY_UNCORRECTABLE
>> +};
>> +static_assert(ARRAY_SIZE(drm_to_xe_ras_severity) == DRM_XE_RAS_ERR_SEV_MAX);
> Ditto.
>
>> +static void prepare_sysctrl_command(struct xe_sysctrl_mailbox_command *command,
>> + u32 cmd_mask, void *request, size_t request_len,
>> + void *response, size_t response_len)
>> +{
>> + struct xe_sysctrl_app_msg_hdr hdr = {0};
>> + u32 req_hdr;
>> +
>> + req_hdr = FIELD_PREP(APP_HDR_GROUP_ID_MASK, XE_SYSCTRL_GROUP_GFSP) |
>> + FIELD_PREP(APP_HDR_COMMAND_MASK, cmd_mask);
> Same comments as earlier patch[1].
>
> [1] https://lore.kernel.org/intel-xe/adY4x7iYSfs04ufg@black.igk.intel.com/
yeah will fix all review comments from uncorrectable series in next rev
>
>> + hdr.data = req_hdr;
>> + command->header = hdr;
>> + command->data_in = request;
>> + command->data_in_len = request_len;
>> + command->data_out = response;
>> + command->data_out_len = response_len;
>> +}
>> +
>> +static int get_error_counter(struct xe_device *xe, struct xe_ras_error_class *error_class,
>> + u32 *value)
>> +{
>> + struct xe_ras_get_counter_response response = {0};
>> + struct xe_ras_get_counter_request request = {0};
>> + struct xe_sysctrl_mailbox_command command = {0};
>> + size_t rlen;
>> + int ret;
>> +
>> + request.error_class = *error_class;
>> +
>> + prepare_sysctrl_command(&command, XE_SYSCTRL_CMD_GET_COUNTER, &request, sizeof(request),
>> + &response, sizeof(response));
>> +
>> + ret = xe_sysctrl_send_command(&xe->sc, &command, &rlen);
>> + if (ret) {
>> + xe_err(xe, "[RAS]: Sysctrl error ret %d\n", ret);
> This gives the impression of RAS error, but is it really?
This command can be used from different components. This will help
differentiate
the file.
>
>> + return ret;
>> + }
>> +
>> + if (rlen != sizeof(response)) {
>> + xe_err(xe, "[RAS]: Sysctrl response size mismatch. Expected %zu, got %zu\n",
> Ditto.
>
>> + sizeof(response), rlen);
>> + return -EINVAL;
> Is this propagated back to the user? If yes, is this the correct error
> code for the scenario?
Yes the error code will be propagated back to the user. Any suggestions?
EIO for system controller errors?
Riana
>
> Raag
>
>> + }
>> +
>> + *value = response.counter_value;
>> +
>> + return 0;
>> +}
>> +
>> +/**
>> + * xe_ras_get_error_counter() - Get error counter value
>> + * @xe: xe device instance
>> + * @severity: Error severity level to be queried
>> + * @error_id: Error component to be queried
>> + * @value: Counter value
>> + *
>> + * This function retrieves the value of a specific RAS error counter based on
>> + * the provided severity and component.
>> + *
>> + * Return: 0 on success, negative error code on failure.
>> + */
>> +int xe_ras_get_error_counter(struct xe_device *xe, const enum drm_xe_ras_error_severity severity,
>> + u32 error_id, u32 *value)
>> +{
>> + struct xe_ras_error_class error_class = {0};
>> +
>> + error_class.common.severity = drm_to_xe_ras_severity[severity];
>> + error_class.common.component = drm_to_xe_ras_component[error_id];
>> +
>> + guard(xe_pm_runtime)(xe);
>> + return get_error_counter(xe, &error_class, value);
>> +}
>> diff --git a/drivers/gpu/drm/xe/xe_ras.h b/drivers/gpu/drm/xe/xe_ras.h
>> new file mode 100644
>> index 000000000000..e468c414148e
>> --- /dev/null
>> +++ b/drivers/gpu/drm/xe/xe_ras.h
>> @@ -0,0 +1,16 @@
>> +/* SPDX-License-Identifier: MIT */
>> +/*
>> + * Copyright © 2026 Intel Corporation
>> + */
>> +
>> +#ifndef _XE_RAS_H_
>> +#define _XE_RAS_H_
>> +
>> +#include <uapi/drm/xe_drm.h>
>> +
>> +struct xe_device;
>> +
>> +int xe_ras_get_error_counter(struct xe_device *xe, const enum drm_xe_ras_error_severity severity,
>> + u32 error_id, u32 *value);
>> +
>> +#endif
>> --
>> 2.47.1
>>
next prev parent reply other threads:[~2026-04-20 6:33 UTC|newest]
Thread overview: 17+ messages / expand[flat|nested] mbox.gz Atom feed top
2026-04-06 14:54 [PATCH v2 0/5] Add get-error-counter and clear-error-counter support for CRI Riana Tauro
2026-04-06 14:54 ` [PATCH v2 1/5] drm/xe/uapi: Add additional error components to XE drm_ras Riana Tauro
2026-04-06 14:54 ` [PATCH v2 2/5] drm/xe/xe_ras: Add structures and commands for get and clear counter Riana Tauro
2026-04-13 9:03 ` Raag Jadav
2026-04-20 7:50 ` Tauro, Riana
2026-04-06 14:54 ` [PATCH v2 3/5] drm/xe/xe_ras: Add support to query error counter for CRI Riana Tauro
2026-04-13 9:19 ` Raag Jadav
2026-04-20 6:33 ` Tauro, Riana [this message]
2026-04-20 8:21 ` Raag Jadav
2026-04-06 14:54 ` [PATCH v2 4/5] drm/xe/xe_ras: Add helper to clear error counter Riana Tauro
2026-04-13 9:25 ` Raag Jadav
2026-04-20 7:48 ` Tauro, Riana
2026-04-06 14:54 ` [PATCH v2 5/5] drm/xe/ras: Add flag for Xe RAS Riana Tauro
2026-04-06 14:54 ` ✗ CI.checkpatch: warning for Add get-error-counter and clear-error-counter support for CRI Patchwork
2026-04-06 14:56 ` ✓ CI.KUnit: success " Patchwork
2026-04-06 15:32 ` ✓ Xe.CI.BAT: " Patchwork
2026-04-06 18:50 ` ✗ 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=00921c44-5120-4d77-841c-efd199f37f49@intel.com \
--to=riana.tauro@intel.com \
--cc=anshuman.gupta@intel.com \
--cc=aravind.iddamsetty@linux.intel.com \
--cc=badal.nilawar@intel.com \
--cc=intel-xe@lists.freedesktop.org \
--cc=mallesh.koujalagi@intel.com \
--cc=raag.jadav@intel.com \
--cc=ravi.kishore.koppuravuri@intel.com \
--cc=rodrigo.vivi@intel.com \
--cc=soham.purkait@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