From: "Tauro, Riana" <riana.tauro@intel.com>
To: Raag Jadav <raag.jadav@intel.com>
Cc: <intel-xe@lists.freedesktop.org>,
<dri-devel@lists.freedesktop.org>, <netdev@vger.kernel.org>,
<aravind.iddamsetty@linux.intel.com>, <anshuman.gupta@intel.com>,
<rodrigo.vivi@intel.com>, <joonas.lahtinen@linux.intel.com>,
<kuba@kernel.org>, <simona.vetter@ffwll.ch>, <airlied@gmail.com>,
<pratik.bari@intel.com>, <joshua.santosh.ranjan@intel.com>,
<ashwin.kumar.kulkarni@intel.com>, <shubham.kumar@intel.com>,
<ravi.kishore.koppuravuri@intel.com>,
<maarten.lankhorst@linux.intel.com>,
<mallesh.koujalagi@intel.com>, <soham.purkait@intel.com>,
Michal Wajdeczko <michal.wajdeczko@intel.com>
Subject: Re: [PATCH v4 3/3] drm/xe/xe_ras: Add error-event support for CRI
Date: Thu, 16 Jul 2026 15:27:59 +0530 [thread overview]
Message-ID: <918f2fc4-2aec-43a4-b52a-028011aa91b4@intel.com> (raw)
In-Reply-To: <ak9yEyDF_tlJe-Rx@black.igk.intel.com>
On 09-07-2026 15:34, Raag Jadav wrote:
> On Wed, Jul 01, 2026 at 03:14:13PM +0530, Riana Tauro wrote:
>> Add error-event support for Correctable errors in CRI. Report an error
>> event to userspace for every component that has crossed the threshold on
>> receiving an interrupt.
> ...
>
>> +static void ras_send_error_event(struct xe_device *xe, u8 severity, u8 component)
>> +{
>> + u8 drm_severity, drm_component;
>> + u32 value;
>> + int ret;
>> +
>> + drm_severity = xe_to_drm_ras_severity(severity);
>> + if (drm_severity == DRM_XE_RAS_ERR_SEV_MAX) {
>> + xe_warn(xe, "sysctrl: unexpected severity %u\n", severity);
> This is uapi and not coming from sysctrl, so the message is a bit
> misleading. But if at all it needs validation, it should be done in
> drm_ras layer.
You mean in the ras_event function? The parameters to this function are
coming from sysctrl.
So added sysctrl flag
>
>> + return;
>> + }
>> +
>> + drm_component = xe_to_drm_ras_component(component);
>> + if (drm_component == DRM_XE_RAS_ERR_COMP_MAX) {
>> + xe_warn(xe, "sysctrl: unexpected component %u\n", component);
> Ditto.
>
>> + return;
>> + }
>> +
>> + ret = xe_ras_get_counter(xe, drm_severity, drm_component, &value);
> No, instead of converting back and forth just do get_counter() using
> sysctrl values and send_event() afterwards.
The reason for using this is to avoid unnecessary churn of moving the
get counter above or use forward declaration.
Yeah i can use that too directly.
>> + if (ret)
>> + return;
>> +
>> + xe_drm_ras_event(xe, drm_component, drm_severity, value, GFP_KERNEL);
>> +}
>> +
>> void xe_ras_counter_threshold_crossed(struct xe_device *xe,
>> struct xe_sysctrl_event_response *response)
>> {
>> struct xe_ras_threshold_crossed *pending = (void *)&response->data;
>> struct xe_ras_error_class *errors = pending->counters;
>> u32 id, ncounters = pending->ncounters;
>> + u8 sent = 0;
>>
>> BUILD_BUG_ON(sizeof(response->data) < sizeof(*pending));
>> + BUILD_BUG_ON(XE_RAS_COMP_MAX > (BITS_PER_BYTE * sizeof(sent)));
> I prefer it the other way around. Also, have you tried using BITS_PER_TYPE()?
>
> BUILD_BUG_ON(BITS_PER_TYPE(sent) < XE_RAS_COMP_MAX));
Will try this
>
>> xe_device_assert_mem_access(xe);
>>
>> if (!ncounters || ncounters > XE_RAS_NUM_COUNTERS)
>> @@ -154,6 +211,24 @@ void xe_ras_counter_threshold_crossed(struct xe_device *xe,
>>
>> xe_warn(xe, "[RAS]: %s %s detected\n",
>> comp_to_str(component), sev_to_str(severity));
>> +
>> + if (severity != XE_RAS_SEV_CORRECTABLE) {
>> + xe_warn(xe, "sysctrl: unexpected severity %s (%u)\n", sev_to_str(severity),
>> + severity);
> This should be before "detected" log above.
okay
>
>> + continue;
>> + }
>> +
>> + if (component >= XE_RAS_COMP_MAX) {
>> + xe_warn(xe, "sysctrl: unexpected component %u\n", component);
> Ditto. Also, use xx_to_str() in both cases or don't but be consistent.
>
It will only display not supported. Will remove the string in both.
Thanks
Riana
>
> Raag
>
>> + continue;
>> + }
>> +
>> + /* Send event once per component */
>> + if (sent & BIT(component))
>> + continue;
>> + sent |= BIT(component);
>> +
>> + ras_send_error_event(xe, severity, component);
>> }
>> }
>>
>> --
>> 2.47.1
>>
next prev parent reply other threads:[~2026-07-16 9:58 UTC|newest]
Thread overview: 14+ messages / expand[flat|nested] mbox.gz Atom feed top
2026-07-01 9:44 [PATCH v4 0/3] Add drm_ras netlink error event support Riana Tauro
2026-07-01 9:44 ` [PATCH v4 1/3] drm/drm_ras: Add drm_ras netlink error event Riana Tauro
2026-07-07 6:32 ` Tauro, Riana
2026-07-08 20:21 ` Rodrigo Vivi
2026-07-09 5:15 ` Tauro, Riana
2026-07-09 9:22 ` Raag Jadav
2026-07-16 6:07 ` Tauro, Riana
2026-07-01 9:44 ` [PATCH v4 2/3] drm/xe/xe_drm_ras: Add error-event support for PVC Riana Tauro
2026-07-01 9:44 ` [PATCH v4 3/3] drm/xe/xe_ras: Add error-event support for CRI Riana Tauro
2026-07-09 10:04 ` Raag Jadav
2026-07-16 9:57 ` Tauro, Riana [this message]
2026-07-01 10:52 ` ✓ CI.KUnit: success for Add drm_ras netlink error event support (rev4) Patchwork
2026-07-01 11:32 ` ✓ Xe.CI.BAT: " Patchwork
2026-07-02 3:52 ` ✓ Xe.CI.FULL: " 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=918f2fc4-2aec-43a4-b52a-028011aa91b4@intel.com \
--to=riana.tauro@intel.com \
--cc=airlied@gmail.com \
--cc=anshuman.gupta@intel.com \
--cc=aravind.iddamsetty@linux.intel.com \
--cc=ashwin.kumar.kulkarni@intel.com \
--cc=dri-devel@lists.freedesktop.org \
--cc=intel-xe@lists.freedesktop.org \
--cc=joonas.lahtinen@linux.intel.com \
--cc=joshua.santosh.ranjan@intel.com \
--cc=kuba@kernel.org \
--cc=maarten.lankhorst@linux.intel.com \
--cc=mallesh.koujalagi@intel.com \
--cc=michal.wajdeczko@intel.com \
--cc=netdev@vger.kernel.org \
--cc=pratik.bari@intel.com \
--cc=raag.jadav@intel.com \
--cc=ravi.kishore.koppuravuri@intel.com \
--cc=rodrigo.vivi@intel.com \
--cc=shubham.kumar@intel.com \
--cc=simona.vetter@ffwll.ch \
--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