From: "Laguna, Lukasz" <lukasz.laguna@intel.com>
To: Rodrigo Vivi <rodrigo.vivi@intel.com>
Cc: <intel-xe@lists.freedesktop.org>, <michal.wajdeczko@intel.com>
Subject: Re: [PATCH v10 2/4] drm/xe: Don't update wedged mode in case of an error
Date: Wed, 26 Nov 2025 15:42:05 +0100 [thread overview]
Message-ID: <6af47ed6-5c0b-49f2-8bb2-902ff2162745@intel.com> (raw)
In-Reply-To: <aSXx1lYwgvSWjvqc@intel.com>
On 11/25/2025 19:13, Rodrigo Vivi wrote:
> On Tue, Nov 25, 2025 at 02:54:20PM +0100, Lukasz Laguna wrote:
>> Change driver's internal wedged.mode state only in case of a success and
>> update GuC's reset policy only when it's necessary.
> I'm afraid the description here is not enough or the patch itself is making
> the wedge_mode and reset even more confusing...
>
> After reading this I have no idea more when the reset is attempt or not,
> how to actually select it, when we expect that to not reset but reset
> is still atemptted...
>
> Something seems off here. Please clarify.
OK, I will update the description.
>
>> Fixes: 6b8ef44cc0a9 ("drm/xe: Introduce the wedged_mode debugfs")
>> Signed-off-by: Lukasz Laguna <lukasz.laguna@intel.com>
>> ---
>> drivers/gpu/drm/xe/xe_debugfs.c | 68 ++++++++++++++++++++++------
>> drivers/gpu/drm/xe/xe_device_types.h | 2 +
>> drivers/gpu/drm/xe/xe_guc_ads.c | 12 ++---
>> drivers/gpu/drm/xe/xe_guc_ads.h | 4 +-
>> 4 files changed, 66 insertions(+), 20 deletions(-)
>>
>> diff --git a/drivers/gpu/drm/xe/xe_debugfs.c b/drivers/gpu/drm/xe/xe_debugfs.c
>> index e7cdfb1cda8c..71d53099187c 100644
>> --- a/drivers/gpu/drm/xe/xe_debugfs.c
>> +++ b/drivers/gpu/drm/xe/xe_debugfs.c
>> @@ -252,14 +252,62 @@ static ssize_t wedged_mode_show(struct file *f, char __user *ubuf,
>> return simple_read_from_buffer(ubuf, size, pos, buf, len);
>> }
>>
>> +static int __set_reset_policy(struct xe_gt *gt, enum xe_wedged_mode mode)
>> +{
>> + int ret;
>> +
>> + ret = xe_guc_ads_scheduler_policy_toggle_reset(>->uc.guc.ads,
>> + mode != XE_WEDGED_MODE_UPON_ANY_HANG);
>> + if (ret)
>> + xe_gt_err(gt, "Failed to update GuC ADS scheduler policy (%pe)\n", ERR_PTR(ret));
>> +
>> + return ret;
>> +}
>> +
>> +static int set_reset_policy(struct xe_device *xe, enum xe_wedged_mode mode)
>> +{
>> + struct xe_gt *gt;
>> + int ret;
>> + u8 id;
>> +
>> + guard(xe_pm_runtime)(xe);
>> + for_each_gt(gt, xe, id) {
>> + ret = __set_reset_policy(gt, mode);
>> + if (ret) {
>> + if (id > 0) {
>> + xe->wedged.inconsistent_reset = true;
>> + drm_err(&xe->drm, "Inconsistent reset policy state between GTs\n");
>> + }
>> + return ret;
>> + }
>> + }
>> +
>> + xe->wedged.inconsistent_reset = false;
>> +
>> + return 0;
>> +}
>> +
>> +static bool needs_policy_update(struct xe_device *xe, enum xe_wedged_mode mode)
>> +{
>> + if (xe->wedged.inconsistent_reset)
>> + return true;
>> +
>> + if (xe->wedged.mode == mode)
>> + return false;
>> +
>> + if (xe->wedged.mode == XE_WEDGED_MODE_UPON_ANY_HANG ||
>> + mode == XE_WEDGED_MODE_UPON_ANY_HANG)
>> + return true;
>> +
>> + return false;
>> +}
>> +
>> static ssize_t wedged_mode_set(struct file *f, const char __user *ubuf,
>> size_t size, loff_t *pos)
>> {
>> struct xe_device *xe = file_inode(f)->i_private;
>> - struct xe_gt *gt;
>> u32 wedged_mode;
>> ssize_t ret;
>> - u8 id;
>>
>> ret = kstrtouint_from_user(ubuf, size, 0, &wedged_mode);
>> if (ret)
>> @@ -269,20 +317,14 @@ static ssize_t wedged_mode_set(struct file *f, const char __user *ubuf,
>> if (ret)
>> return ret;
>>
>> - if (xe->wedged.mode == wedged_mode)
>> - return size;
>> + if (needs_policy_update(xe, wedged_mode)) {
>> + ret = set_reset_policy(xe, wedged_mode);
>> + if (ret)
>> + return ret;
>> + }
>>
>> xe->wedged.mode = wedged_mode;
>>
>> - guard(xe_pm_runtime)(xe);
>> - for_each_gt(gt, xe, id) {
>> - ret = xe_guc_ads_scheduler_policy_toggle_reset(>->uc.guc.ads);
>> - if (ret) {
>> - xe_gt_err(gt, "Failed to update GuC ADS scheduler policy. GuC may still cause engine reset even with wedged_mode=2\n");
>> - return -EIO;
>> - }
>> - }
>> -
>> return size;
>> }
>>
>> diff --git a/drivers/gpu/drm/xe/xe_device_types.h b/drivers/gpu/drm/xe/xe_device_types.h
>> index 81bf4a70b888..4aa99bcfbcc7 100644
>> --- a/drivers/gpu/drm/xe/xe_device_types.h
>> +++ b/drivers/gpu/drm/xe/xe_device_types.h
>> @@ -603,6 +603,8 @@ struct xe_device {
>> enum xe_wedged_mode mode;
>> /** @wedged.method: Recovery method to be sent in the drm device wedged uevent */
>> unsigned long method;
>> + /** @wedged.inconsistent_reset: Inconsistent reset policy state between GTs */
>> + bool inconsistent_reset;
>> } wedged;
>>
>> /** @bo_device: Struct to control async free of BOs */
>> diff --git a/drivers/gpu/drm/xe/xe_guc_ads.c b/drivers/gpu/drm/xe/xe_guc_ads.c
>> index 466f192b6054..e5ca25b865a7 100644
>> --- a/drivers/gpu/drm/xe/xe_guc_ads.c
>> +++ b/drivers/gpu/drm/xe/xe_guc_ads.c
>> @@ -983,16 +983,16 @@ static int guc_ads_action_update_policies(struct xe_guc_ads *ads, u32 policy_off
>> /**
>> * xe_guc_ads_scheduler_policy_toggle_reset - Toggle reset policy
>> * @ads: Additional data structures object
>> + * @enable: true to enable engine resets, false otherwise
> please use a meaningful name here... enable is way too generic for this case.
OK
Thanks,
Lukasz
>> *
>> - * This function update the GuC's engine reset policy based on wedged.mode.
>> + * This function update the GuC's engine reset policy.
>> *
>> * Return: 0 on success, and negative error code otherwise.
>> */
>> -int xe_guc_ads_scheduler_policy_toggle_reset(struct xe_guc_ads *ads)
>> +int xe_guc_ads_scheduler_policy_toggle_reset(struct xe_guc_ads *ads, bool enable)
>> {
>> struct guc_policies *policies;
>> struct xe_guc *guc = ads_to_guc(ads);
>> - struct xe_device *xe = ads_to_xe(ads);
>> CLASS(xe_guc_buf, buf)(&guc->buf, sizeof(*policies));
>>
>> if (!xe_guc_buf_is_valid(buf))
>> @@ -1004,10 +1004,10 @@ int xe_guc_ads_scheduler_policy_toggle_reset(struct xe_guc_ads *ads)
>> policies->dpc_promote_time = ads_blob_read(ads, policies.dpc_promote_time);
>> policies->max_num_work_items = ads_blob_read(ads, policies.max_num_work_items);
>> policies->is_valid = 1;
>> - if (xe->wedged.mode == XE_WEDGED_MODE_UPON_ANY_HANG)
>> - policies->global_flags |= GLOBAL_POLICY_DISABLE_ENGINE_RESET;
>> - else
>> + if (enable)
>> policies->global_flags &= ~GLOBAL_POLICY_DISABLE_ENGINE_RESET;
>> + else
>> + policies->global_flags |= GLOBAL_POLICY_DISABLE_ENGINE_RESET;
>>
>> return guc_ads_action_update_policies(ads, xe_guc_buf_flush(buf));
>> }
>> diff --git a/drivers/gpu/drm/xe/xe_guc_ads.h b/drivers/gpu/drm/xe/xe_guc_ads.h
>> index 2e6674c760ff..9879aadd22d6 100644
>> --- a/drivers/gpu/drm/xe/xe_guc_ads.h
>> +++ b/drivers/gpu/drm/xe/xe_guc_ads.h
>> @@ -6,6 +6,8 @@
>> #ifndef _XE_GUC_ADS_H_
>> #define _XE_GUC_ADS_H_
>>
>> +#include <linux/types.h>
>> +
>> struct xe_guc_ads;
>>
>> int xe_guc_ads_init(struct xe_guc_ads *ads);
>> @@ -13,6 +15,6 @@ int xe_guc_ads_init_post_hwconfig(struct xe_guc_ads *ads);
>> void xe_guc_ads_populate(struct xe_guc_ads *ads);
>> void xe_guc_ads_populate_minimal(struct xe_guc_ads *ads);
>> void xe_guc_ads_populate_post_load(struct xe_guc_ads *ads);
>> -int xe_guc_ads_scheduler_policy_toggle_reset(struct xe_guc_ads *ads);
>> +int xe_guc_ads_scheduler_policy_toggle_reset(struct xe_guc_ads *ads, bool enable);
>>
>> #endif
>> --
>> 2.40.0
>>
next prev parent reply other threads:[~2025-11-26 14:42 UTC|newest]
Thread overview: 12+ messages / expand[flat|nested] mbox.gz Atom feed top
2025-11-25 13:54 [PATCH v10 0/4] drm/xe: Improve wedged mode handling Lukasz Laguna
2025-11-25 13:54 ` [PATCH v10 1/4] drm/xe: Validate wedged_mode parameter and define enum for modes Lukasz Laguna
2025-11-25 18:08 ` Rodrigo Vivi
2025-11-26 14:37 ` Laguna, Lukasz
2025-11-25 13:54 ` [PATCH v10 2/4] drm/xe: Don't update wedged mode in case of an error Lukasz Laguna
2025-11-25 18:13 ` Rodrigo Vivi
2025-11-26 14:42 ` Laguna, Lukasz [this message]
2025-11-25 13:54 ` [PATCH v10 3/4] drm/xe/vf: Disallow setting wedged mode to upon-any-hang Lukasz Laguna
2025-11-25 13:54 ` [PATCH v10 4/4] drm/xe/pf: Allow upon-any-hang wedged mode only in debug config Lukasz Laguna
2025-11-25 21:28 ` ✓ CI.KUnit: success for drm/xe: Improve wedged mode handling (rev10) Patchwork
2025-11-25 22:29 ` ✓ Xe.CI.BAT: " Patchwork
2025-11-26 1:32 ` ✗ 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=6af47ed6-5c0b-49f2-8bb2-902ff2162745@intel.com \
--to=lukasz.laguna@intel.com \
--cc=intel-xe@lists.freedesktop.org \
--cc=michal.wajdeczko@intel.com \
--cc=rodrigo.vivi@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