From: "Dixit, Ashutosh" <ashutosh.dixit@intel.com>
To: "Cavitt, Jonathan" <jonathan.cavitt@intel.com>
Cc: "intel-xe@lists.freedesktop.org" <intel-xe@lists.freedesktop.org>,
"Gupta,\ saurabhg" <saurabhg.gupta@intel.com>,
"Zuo, Alex" <alex.zuo@intel.com>,
"Nerlige Ramappa, Umesh" <umesh.nerlige.ramappa@intel.com>,
"Harrison, John\ C" <john.c.harrison@intel.com>,
"Roper, Matthew D" <matthew.d.roper@intel.com>,
"De Marchi, Lucas" <lucas.demarchi@intel.com>
Subject: Re: [PATCH v3] drm/xe/xe_guc_ads: Add nonpriv registers to write list
Date: Tue, 03 Dec 2024 13:53:53 -0800 [thread overview]
Message-ID: <85r06o3026.wl-ashutosh.dixit@intel.com> (raw)
In-Reply-To: <CH0PR11MB544416674720232DB8B7B8ABE5352@CH0PR11MB5444.namprd11.prod.outlook.com>
On Mon, 02 Dec 2024 13:11:21 -0800, Cavitt, Jonathan wrote:
>
> -----Original Message-----
> From: Dixit, Ashutosh <ashutosh.dixit@intel.com>
> Sent: Monday, December 2, 2024 12:33 PM
> To: Cavitt, Jonathan <jonathan.cavitt@intel.com>
> Cc: intel-xe@lists.freedesktop.org; Gupta, saurabhg <saurabhg.gupta@intel.com>; Zuo, Alex <alex.zuo@intel.com>; Nerlige Ramappa, Umesh <umesh.nerlige.ramappa@intel.com>; Harrison, John C <john.c.harrison@intel.com>; Roper, Matthew D <matthew.d.roper@intel.com>; De Marchi, Lucas <lucas.demarchi@intel.com>
> Subject: Re: [PATCH v3] drm/xe/xe_guc_ads: Add nonpriv registers to write list
> >
> > On Fri, 22 Nov 2024 10:08:26 -0800, Jonathan Cavitt wrote:
> > >
> > > When performing a guc_mmio_regset_write, we add all the registers in the
> > > reg_sr list to the save/restore list, but do not do the same for the
> > > nonpriv registers. Add them in.
> > >
> > > v2:
> > > - Add all NONPRIV registers to avoid undefined behavior (Harrison)
> > > - s/whitelist/nonpriv
> > >
> > > v3:
> > > - Rebase
> > >
> > > Closes: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2249
> > > Signed-off-by: Jonathan Cavitt <jonathan.cavitt@intel.com>
> > > CC: Lucas de Marchi <lucas.demarchi@intel.com>
> > > CC: Matt Roper <matthew.d.roper@intel.com>
> > > CC: John Harrison <john.c.harrison@intel.com>
> > > CC: Umesh Nerlige Ramappa <umesh.nerlige.ramappa@intel.com>
> > > CC: Ashutosh Dixit <ashutosh.dixit@intel.com>
> > > Reviewed-by: Lucas De Marchi <lucas.demarchi@intel.com>
> > > ---
> > > drivers/gpu/drm/xe/xe_guc_ads.c | 7 +++++++
> > > 1 file changed, 7 insertions(+)
> > >
> > > diff --git a/drivers/gpu/drm/xe/xe_guc_ads.c b/drivers/gpu/drm/xe/xe_guc_ads.c
> > > index 943146e5b460..b0afb89d9d90 100644
> > > --- a/drivers/gpu/drm/xe/xe_guc_ads.c
> > > +++ b/drivers/gpu/drm/xe/xe_guc_ads.c
> > > @@ -243,6 +243,8 @@ static size_t calculate_regset_size(struct xe_gt *gt)
> > > xa_for_each(&hwe->reg_sr.xa, sr_idx, sr_entry)
> > > count++;
> > >
> > > + count += RING_MAX_NONPRIV_SLOTS * XE_NUM_HW_ENGINES;
> > > +
> > > count += ADS_REGSET_EXTRA_MAX * XE_NUM_HW_ENGINES;
> > >
> > > if (XE_WA(gt, 1607983814))
> > > @@ -727,6 +729,11 @@ static unsigned int guc_mmio_regset_write(struct xe_guc_ads *ads,
> > > xa_for_each(&hwe->reg_sr.xa, idx, entry)
> > > guc_mmio_regset_write_one(ads, regset_map, entry->reg, count++);
> > >
> > > + for (i = 0; i < RING_MAX_NONPRIV_SLOTS; i++)
> > > + guc_mmio_regset_write_one(ads, regset_map,
> > > + RING_FORCE_TO_NONPRIV(hwe->mmio_base, i),
> > > + count++);
> > > +
> >
> > What about the EU_PERF_CNTL registers which were there in the original
> > patch? Those are not needed?
>
> It turned out they weren't. At least not for this use case.
> They might be needed later for a different issue, but right now we aren't
> observing any issues caused by their absence.
Ok, let's keep this patch restricted to the nonprov registers.
>
> >
> > > for (e = extra_regs; e < extra_regs + ARRAY_SIZE(extra_regs); e++) {
> > > if (e->skip)
> > > continue;
> > > --
> > > 2.43.0
> > >
> >
next prev parent reply other threads:[~2024-12-03 21:53 UTC|newest]
Thread overview: 15+ messages / expand[flat|nested] mbox.gz Atom feed top
2024-11-22 18:08 [PATCH v3] drm/xe/xe_guc_ads: Add nonpriv registers to write list Jonathan Cavitt
2024-11-22 18:13 ` ✓ CI.Patch_applied: success for drm/xe/xe_guc_ads: Add nonpriv registers to write list (rev3) Patchwork
2024-11-22 18:13 ` ✓ CI.checkpatch: " Patchwork
2024-11-22 18:15 ` ✓ CI.KUnit: " Patchwork
2024-11-22 18:33 ` ✓ CI.Build: " Patchwork
2024-11-22 18:35 ` ✓ CI.Hooks: " Patchwork
2024-11-22 18:37 ` ✓ CI.checksparse: " Patchwork
2024-11-22 19:01 ` ✓ Xe.CI.BAT: " Patchwork
2024-11-24 1:43 ` ✗ Xe.CI.Full: failure " Patchwork
2024-12-02 20:33 ` [PATCH v3] drm/xe/xe_guc_ads: Add nonpriv registers to write list Dixit, Ashutosh
2024-12-02 21:11 ` Cavitt, Jonathan
2024-12-03 21:53 ` Dixit, Ashutosh [this message]
2024-12-03 22:11 ` Lucas De Marchi
2024-12-06 17:06 ` Dixit, Ashutosh
2024-12-06 17:22 ` Lucas De Marchi
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=85r06o3026.wl-ashutosh.dixit@intel.com \
--to=ashutosh.dixit@intel.com \
--cc=alex.zuo@intel.com \
--cc=intel-xe@lists.freedesktop.org \
--cc=john.c.harrison@intel.com \
--cc=jonathan.cavitt@intel.com \
--cc=lucas.demarchi@intel.com \
--cc=matthew.d.roper@intel.com \
--cc=saurabhg.gupta@intel.com \
--cc=umesh.nerlige.ramappa@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