From: Michal Wajdeczko <michal.wajdeczko@intel.com>
To: Matthew Brost <matthew.brost@intel.com>
Cc: <intel-xe@lists.freedesktop.org>
Subject: Re: [PATCH 6/6] drm/xe/pf: Synchronize VF FLR between all GTs
Date: Wed, 1 Oct 2025 10:27:29 +0200 [thread overview]
Message-ID: <0fb4c70b-036a-4df5-8e4d-883c106b4528@intel.com> (raw)
In-Reply-To: <aNzZJofhvZEdNnjn@lstrano-desk.jf.intel.com>
On 10/1/2025 9:32 AM, Matthew Brost wrote:
> On Wed, Oct 01, 2025 at 01:35:24AM +0200, Michal Wajdeczko wrote:
>> The PF part of the VF FLR processing shall be done after all GuCs
>> confirm that they finished their part VF FLR processing, otherwise
>> PF may start clearing VF's GGTT that other GuC may still accessing.
>>
>> Signed-off-by: Michal Wajdeczko <michal.wajdeczko@intel.com>
>> ---
>> drivers/gpu/drm/xe/xe_gt_sriov_pf_control.c | 56 ++++++++++++++++++-
>> drivers/gpu/drm/xe/xe_gt_sriov_pf_control.h | 1 +
>> .../gpu/drm/xe/xe_gt_sriov_pf_control_types.h | 2 +
>> drivers/gpu/drm/xe/xe_sriov_pf_control.c | 29 ++++++++++
>> drivers/gpu/drm/xe/xe_sriov_pf_control.h | 1 +
>> 5 files changed, 88 insertions(+), 1 deletion(-)
>>
>> diff --git a/drivers/gpu/drm/xe/xe_gt_sriov_pf_control.c b/drivers/gpu/drm/xe/xe_gt_sriov_pf_control.c
>> index 491918d6b93b..2e6bd3d1fe1d 100644
>> --- a/drivers/gpu/drm/xe/xe_gt_sriov_pf_control.c
>> +++ b/drivers/gpu/drm/xe/xe_gt_sriov_pf_control.c
>> @@ -18,6 +18,7 @@
>> #include "xe_gt_sriov_printk.h"
>> #include "xe_guc_ct.h"
>> #include "xe_sriov.h"
>> +#include "xe_sriov_pf_control.h"
>> #include "xe_sriov_pf_service.h"
>> #include "xe_tile.h"
>>
>> @@ -170,6 +171,7 @@ static const char *control_bit_to_string(enum xe_gt_sriov_control_bits bit)
>> CASE2STR(FLR_SEND_START);
>> CASE2STR(FLR_WAIT_GUC);
>> CASE2STR(FLR_GUC_DONE);
>> + CASE2STR(FLR_SYNC);
>> CASE2STR(FLR_RESET_CONFIG);
>> CASE2STR(FLR_RESET_DATA);
>> CASE2STR(FLR_RESET_MMIO);
>> @@ -940,6 +942,10 @@ int xe_gt_sriov_pf_control_stop_vf(struct xe_gt *gt, unsigned int vfid)
>> * : v : | |
>> * : FLR_GUC_DONE : | |
>> * : | : | |
>> + * : | o--<--sync : | |
>> + * : |/ / : | |
>> + * : FLR_SYNC--o : | |
>> + * : | : | |
>> * : FLR_RESET_CONFIG---failed--->-----------o--------+-----------o
>> * : | : | |
>> * : FLR_RESET_DATA : | |
>> @@ -1147,12 +1153,38 @@ static bool pf_exit_vf_flr_send_start(struct xe_gt *gt, unsigned int vfid)
>> return true;
>> }
>>
>> +static bool pf_exit_vf_flr_sync(struct xe_gt *gt, unsigned int vfid)
>> +{
>> + if (!pf_exit_vf_state(gt, vfid, XE_GT_SRIOV_STATE_FLR_SYNC))
>> + return false;
>> +
>> + pf_enter_vf_flr_reset_config(gt, vfid);
>> + return true;
>> +}
>> +
>> +static void pf_enter_vf_flr_sync(struct xe_gt *gt, unsigned int vfid)
>> +{
>> + int ret;
>> +
>> + if (!pf_enter_vf_state(gt, vfid, XE_GT_SRIOV_STATE_FLR_SYNC))
>> + pf_enter_vf_state_machine_bug(gt, vfid);
>> +
>> + ret = xe_sriov_pf_control_sync_flr(gt_to_xe(gt), vfid);
>> + if (ret < 0) {
>> + xe_gt_sriov_dbg_verbose(gt, "FLR checkpoint %pe\n", ERR_PTR(ret));
>> + pf_expect_vf_state(gt, vfid, XE_GT_SRIOV_STATE_FLR_SYNC);
>> + } else {
>> + xe_gt_sriov_dbg_verbose(gt, "FLR checkpoint pass\n");
>> + pf_expect_vf_not_state(gt, vfid, XE_GT_SRIOV_STATE_FLR_SYNC);
>> + }
>> +}
>> +
>> static bool pf_exit_vf_flr_guc_done(struct xe_gt *gt, unsigned int vfid)
>> {
>> if (!pf_exit_vf_state(gt, vfid, XE_GT_SRIOV_STATE_FLR_GUC_DONE))
>> return false;
>>
>> - pf_enter_vf_flr_reset_config(gt, vfid);
>> + pf_enter_vf_flr_sync(gt, vfid);
>> return true;
>> }
>>
>> @@ -1178,6 +1210,28 @@ int xe_gt_sriov_pf_control_trigger_flr(struct xe_gt *gt, unsigned int vfid)
>> return 0;
>> }
>>
>> +/**
>> + * xe_gt_sriov_pf_control_sync_flr() - Synchronize on the VF FLR checkpoint.
>> + * @gt: the &xe_gt
>> + * @vfid: the VF identifier
>> + * @sync: if true it will allow to exit the checkpoint
>> + *
>> + * Return: non-zero if FLR checkpoint has been reached, zero if the is no FLR
>> + * in progress, or a negative error code on the FLR busy or failed.
>> + */
>> +int xe_gt_sriov_pf_control_sync_flr(struct xe_gt *gt, unsigned int vfid, bool sync)
>> +{
>> + if (sync && pf_exit_vf_flr_sync(gt, vfid))
>> + return 1;
>> + if (pf_check_vf_state(gt, vfid, XE_GT_SRIOV_STATE_FLR_SYNC))
>> + return 1;
>
> This looks a funny the return 1 / 0 / -errno pattern. The caller of this
> function only checks for -errno.
true, it's because what was included in this patch is a simplified version
of the caller, I had the other one that was also trying to verify that FLR
has indeed started, but finally dropped it as not critical for this series
>
> Matt
>
>> + if (pf_check_vf_state(gt, vfid, XE_GT_SRIOV_STATE_FLR_WIP))
>> + return -EBUSY;
>> + if (pf_check_vf_state(gt, vfid, XE_GT_SRIOV_STATE_FLR_FAILED))
>> + return -EIO;
>> + return 0;
>> +}
>> +
>> /**
>> * xe_gt_sriov_pf_control_wait_flr() - Wait for a VF FLR to complete.
>> * @gt: the &xe_gt
>> diff --git a/drivers/gpu/drm/xe/xe_gt_sriov_pf_control.h b/drivers/gpu/drm/xe/xe_gt_sriov_pf_control.h
>> index fd256866f628..8a72ef3778d4 100644
>> --- a/drivers/gpu/drm/xe/xe_gt_sriov_pf_control.h
>> +++ b/drivers/gpu/drm/xe/xe_gt_sriov_pf_control.h
>> @@ -18,6 +18,7 @@ int xe_gt_sriov_pf_control_pause_vf(struct xe_gt *gt, unsigned int vfid);
>> int xe_gt_sriov_pf_control_resume_vf(struct xe_gt *gt, unsigned int vfid);
>> int xe_gt_sriov_pf_control_stop_vf(struct xe_gt *gt, unsigned int vfid);
>> int xe_gt_sriov_pf_control_trigger_flr(struct xe_gt *gt, unsigned int vfid);
>> +int xe_gt_sriov_pf_control_sync_flr(struct xe_gt *gt, unsigned int vfid, bool sync);
>> int xe_gt_sriov_pf_control_wait_flr(struct xe_gt *gt, unsigned int vfid);
>>
>> #ifdef CONFIG_PCI_IOV
>> diff --git a/drivers/gpu/drm/xe/xe_gt_sriov_pf_control_types.h b/drivers/gpu/drm/xe/xe_gt_sriov_pf_control_types.h
>> index f02f941b4ad2..c80b7e77f1ad 100644
>> --- a/drivers/gpu/drm/xe/xe_gt_sriov_pf_control_types.h
>> +++ b/drivers/gpu/drm/xe/xe_gt_sriov_pf_control_types.h
>> @@ -18,6 +18,7 @@
>> * @XE_GT_SRIOV_STATE_FLR_SEND_START: indicates that the PF wants to send a FLR START command.
>> * @XE_GT_SRIOV_STATE_FLR_WAIT_GUC: indicates that the PF awaits for a response from the GuC.
>> * @XE_GT_SRIOV_STATE_FLR_GUC_DONE: indicates that the PF has received a response from the GuC.
>> + * @XE_GT_SRIOV_STATE_FLR_SYNC: indicates that the PF awaits to synchronize with other GuCs.
>> * @XE_GT_SRIOV_STATE_FLR_RESET_CONFIG: indicates that the PF needs to clear VF's resources.
>> * @XE_GT_SRIOV_STATE_FLR_RESET_DATA: indicates that the PF needs to clear VF's data.
>> * @XE_GT_SRIOV_STATE_FLR_RESET_MMIO: indicates that the PF needs to reset VF's registers.
>> @@ -47,6 +48,7 @@ enum xe_gt_sriov_control_bits {
>> XE_GT_SRIOV_STATE_FLR_SEND_START,
>> XE_GT_SRIOV_STATE_FLR_WAIT_GUC,
>> XE_GT_SRIOV_STATE_FLR_GUC_DONE,
>> + XE_GT_SRIOV_STATE_FLR_SYNC,
>> XE_GT_SRIOV_STATE_FLR_RESET_CONFIG,
>> XE_GT_SRIOV_STATE_FLR_RESET_DATA,
>> XE_GT_SRIOV_STATE_FLR_RESET_MMIO,
>> diff --git a/drivers/gpu/drm/xe/xe_sriov_pf_control.c b/drivers/gpu/drm/xe/xe_sriov_pf_control.c
>> index e1c54a8feb07..416d00a03fbb 100644
>> --- a/drivers/gpu/drm/xe/xe_sriov_pf_control.c
>> +++ b/drivers/gpu/drm/xe/xe_sriov_pf_control.c
>> @@ -120,3 +120,32 @@ int xe_sriov_pf_control_reset_vf(struct xe_device *xe, unsigned int vfid)
>>
>> return result;
>> }
>> +
>> +/**
>> + * xe_sriov_pf_control_sync_flr() - Synchronize a VF FLR between all GTs.
>> + * @xe: the &xe_device
>> + * @vfid: the VF identifier
>> + *
>> + * This function is for PF only.
>> + *
>> + * Return: 0 on success or a negative error code on failure.
>> + */
>> +int xe_sriov_pf_control_sync_flr(struct xe_device *xe, unsigned int vfid)
>> +{
>> + struct xe_gt *gt;
>> + unsigned int id;
>> + int ret;
>> +
>> + for_each_gt(gt, xe, id) {
>> + ret = xe_gt_sriov_pf_control_sync_flr(gt, vfid, false);
>> + if (ret < 0)
>> + return ret;
>> + }
>> + for_each_gt(gt, xe, id) {
>> + ret = xe_gt_sriov_pf_control_sync_flr(gt, vfid, true);
>> + if (ret < 0)
>> + return ret;
>> + }
>> +
>> + return 0;
>> +}
>> diff --git a/drivers/gpu/drm/xe/xe_sriov_pf_control.h b/drivers/gpu/drm/xe/xe_sriov_pf_control.h
>> index 9bf059f746d4..2d52d0ac1b28 100644
>> --- a/drivers/gpu/drm/xe/xe_sriov_pf_control.h
>> +++ b/drivers/gpu/drm/xe/xe_sriov_pf_control.h
>> @@ -12,5 +12,6 @@ int xe_sriov_pf_control_pause_vf(struct xe_device *xe, unsigned int vfid);
>> int xe_sriov_pf_control_resume_vf(struct xe_device *xe, unsigned int vfid);
>> int xe_sriov_pf_control_stop_vf(struct xe_device *xe, unsigned int vfid);
>> int xe_sriov_pf_control_reset_vf(struct xe_device *xe, unsigned int vfid);
>> +int xe_sriov_pf_control_sync_flr(struct xe_device *xe, unsigned int vfid);
>>
>> #endif
>> --
>> 2.47.1
>>
next prev parent reply other threads:[~2025-10-01 8:27 UTC|newest]
Thread overview: 23+ messages / expand[flat|nested] mbox.gz Atom feed top
2025-09-30 23:35 [PATCH 0/6] More PF improvements Michal Wajdeczko
2025-09-30 23:35 ` [PATCH 1/6] drm/xe/pf: Add top level functions to control VFs Michal Wajdeczko
2025-10-01 7:34 ` Matthew Brost
2025-10-01 8:03 ` Michal Wajdeczko
2025-10-02 21:26 ` Michał Winiarski
2025-09-30 23:35 ` [PATCH 2/6] drm/xe/pf: Log only top level VF state changes Michal Wajdeczko
2025-10-02 21:33 ` Michał Winiarski
2025-09-30 23:35 ` [PATCH 3/6] drm/xe/pf: Expose VF control operations over debugfs Michal Wajdeczko
2025-10-01 7:30 ` Matthew Brost
2025-10-01 8:21 ` Michal Wajdeczko
2025-10-02 21:37 ` Michał Winiarski
2025-09-30 23:35 ` [PATCH 4/6] drm/xe/pf: Unify VF state tracking log Michal Wajdeczko
2025-10-02 21:46 ` Michał Winiarski
2025-09-30 23:35 ` [PATCH 5/6] drm/xe/pf: Split VF FLR processing function Michal Wajdeczko
2025-10-02 21:47 ` Michał Winiarski
2025-09-30 23:35 ` [PATCH 6/6] drm/xe/pf: Synchronize VF FLR between all GTs Michal Wajdeczko
2025-10-01 7:32 ` Matthew Brost
2025-10-01 8:27 ` Michal Wajdeczko [this message]
2025-10-02 21:57 ` Michał Winiarski
2025-10-01 0:59 ` ✗ CI.checkpatch: warning for More PF improvements Patchwork
2025-10-01 1:00 ` ✓ CI.KUnit: success " Patchwork
2025-10-01 1:35 ` ✓ Xe.CI.BAT: " Patchwork
2025-10-01 3:56 ` ✓ 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=0fb4c70b-036a-4df5-8e4d-883c106b4528@intel.com \
--to=michal.wajdeczko@intel.com \
--cc=intel-xe@lists.freedesktop.org \
--cc=matthew.brost@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