From: "Ghimiray, Himal Prasad" <himal.prasad.ghimiray@intel.com>
To: Oak Zeng <oak.zeng@intel.com>, <intel-xe@lists.freedesktop.org>
Subject: Re: [PATCH v10 1/3] drm/xe: Introduced needs_scratch bit in device descriptor
Date: Mon, 7 Apr 2025 10:59:08 +0530 [thread overview]
Message-ID: <2ab2088c-4b4b-4b61-8967-c7cbaf275f1a@intel.com> (raw)
In-Reply-To: <20250403165328.2438690-2-oak.zeng@intel.com>
On 03-04-2025 22:23, Oak Zeng wrote:
> On some platform, scratch page is needed for out of bound prefetch
> to work. Introduce a bit in device descriptor to specify whether
> this device needs scratch page to work.
>
> v2: introduce a needs_scratch bit in device info (Thomas, Jonathan)
> v3: drop NEEDS_SCRATCH macro (Matt)
>
> Signed-off-by: Oak Zeng <oak.zeng@intel.com>
> Reviewed-by: Thomas Hellström <thomas.hellstrom@linux.intel.com>
> ---
> drivers/gpu/drm/xe/xe_device_types.h | 2 ++
> drivers/gpu/drm/xe/xe_pci.c | 5 +++++
> 2 files changed, 7 insertions(+)
>
> diff --git a/drivers/gpu/drm/xe/xe_device_types.h b/drivers/gpu/drm/xe/xe_device_types.h
> index c54adebfe518..e52221389710 100644
> --- a/drivers/gpu/drm/xe/xe_device_types.h
> +++ b/drivers/gpu/drm/xe/xe_device_types.h
> @@ -336,6 +336,8 @@ struct xe_device {
> u8 has_usm:1;
> /** @info.is_dgfx: is discrete device */
> u8 is_dgfx:1;
> + /** @info.needs_scratch: needs scratch page for oob prefetch to work */
> + u8 needs_scratch:1;
> /**
> * @info.probe_display: Probe display hardware. If set to
> * false, the driver will behave as if there is no display
> diff --git a/drivers/gpu/drm/xe/xe_pci.c b/drivers/gpu/drm/xe/xe_pci.c
> index 772b6c81672c..ae06c4c13fd7 100644
> --- a/drivers/gpu/drm/xe/xe_pci.c
> +++ b/drivers/gpu/drm/xe/xe_pci.c
> @@ -68,6 +68,7 @@ struct xe_device_desc {
> u8 has_llc:1;
> u8 has_pxp:1;
> u8 has_sriov:1;
> + u8 needs_scratch:1;
> u8 skip_guc_pc:1;
> u8 skip_mtcfg:1;
> u8 skip_pcode:1;
> @@ -335,6 +336,7 @@ static const struct xe_device_desc lnl_desc = {
> .dma_mask_size = 46,
> .has_display = true,
> .has_pxp = true,
> + .needs_scratch = true,
> };
>
> static const struct xe_device_desc bmg_desc = {
> @@ -344,6 +346,7 @@ static const struct xe_device_desc bmg_desc = {
> .has_display = true,
> .has_fan_control = true,
> .has_heci_cscfi = 1,
> + .needs_scratch = true,
> };
>
> static const struct xe_device_desc ptl_desc = {
> @@ -352,6 +355,7 @@ static const struct xe_device_desc ptl_desc = {
> .has_display = true,
> .has_sriov = true,
> .require_force_probe = true,
> + .needs_scratch = true,
> };
>
> #undef PLATFORM
> @@ -592,6 +596,7 @@ static int xe_info_init_early(struct xe_device *xe,
> xe->info.skip_guc_pc = desc->skip_guc_pc;
> xe->info.skip_mtcfg = desc->skip_mtcfg;
> xe->info.skip_pcode = desc->skip_pcode;
> + xe->info.needs_scratch = desc->needs_scratch;
Reviewed-by: Himal Prasad Ghimiray <himal.prasad.ghimiray@intel.com>
>
> xe->info.probe_display = IS_ENABLED(CONFIG_DRM_XE_DISPLAY) &&
> xe_modparam.probe_display &&
next prev parent reply other threads:[~2025-04-07 5:29 UTC|newest]
Thread overview: 15+ messages / expand[flat|nested] mbox.gz Atom feed top
2025-04-03 16:53 [PATCH v10 0/3] Allow scratch page under fault mode for certain platform Oak Zeng
2025-04-03 16:53 ` [PATCH v10 1/3] drm/xe: Introduced needs_scratch bit in device descriptor Oak Zeng
2025-04-07 5:29 ` Ghimiray, Himal Prasad [this message]
2025-04-03 16:53 ` [PATCH v10 2/3] drm/xe: Clear scratch page on vm_bind Oak Zeng
2025-04-07 5:31 ` Ghimiray, Himal Prasad
2025-04-03 16:53 ` [PATCH v10 3/3] drm/xe: Allow scratch page under fault mode for certain platform Oak Zeng
2025-04-07 5:31 ` Ghimiray, Himal Prasad
2025-04-03 20:34 ` ✓ CI.Patch_applied: success for " Patchwork
2025-04-03 20:34 ` ✗ CI.checkpatch: warning " Patchwork
2025-04-03 20:35 ` ✓ CI.KUnit: success " Patchwork
2025-04-03 20:52 ` ✓ CI.Build: " Patchwork
2025-04-03 20:54 ` ✗ CI.Hooks: failure " Patchwork
2025-04-03 20:56 ` ✓ CI.checksparse: success " Patchwork
2025-04-03 21:46 ` ✓ Xe.CI.BAT: " Patchwork
2025-04-07 5:37 ` [PATCH v10 0/3] " Ghimiray, Himal Prasad
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=2ab2088c-4b4b-4b61-8967-c7cbaf275f1a@intel.com \
--to=himal.prasad.ghimiray@intel.com \
--cc=intel-xe@lists.freedesktop.org \
--cc=oak.zeng@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