Intel-XE Archive on lore.kernel.org
 help / color / mirror / Atom feed
From: "Welty, Brian" <brian.welty@intel.com>
To: Matthew Brost <matthew.brost@intel.com>,
	<intel-xe@lists.freedesktop.org>
Subject: Re: [PATCH] drm/xe: Map both mem.kernel_bb_pool and usm.bb_pool
Date: Fri, 2 Feb 2024 11:05:27 -0800	[thread overview]
Message-ID: <5dc4d6f1-de79-4cb4-8821-9a292d73a2b6@intel.com> (raw)
In-Reply-To: <20240202033440.2351862-1-matthew.brost@intel.com>


On 2/1/2024 7:34 PM, Matthew Brost wrote:
> For integrated devices we need to map both mem.kernel_bb_pool and
> usm.bb_pool to be able to run batches from both pools.
> 
> Fixes: a682b6a42d4d ("drm/xe: Support device page faults on integrated platforms")
> Signed-off-by: Matthew Brost <matthew.brost@intel.com>

Thanks Matt.
I applied the fix Stuart pointed out and verified this resolves issue on 
LNL with xe_exec_threads.

Reviewed-and-tested-by: Brian Welty <brian.welty@intel.com>


> ---
>   drivers/gpu/drm/xe/xe_gt.c      |  5 ++++-
>   drivers/gpu/drm/xe/xe_migrate.c | 23 ++++++++++++++++++-----
>   2 files changed, 22 insertions(+), 6 deletions(-)
> 
> diff --git a/drivers/gpu/drm/xe/xe_gt.c b/drivers/gpu/drm/xe/xe_gt.c
> index 675a2927a19e..295cba1c688f 100644
> --- a/drivers/gpu/drm/xe/xe_gt.c
> +++ b/drivers/gpu/drm/xe/xe_gt.c
> @@ -456,7 +456,10 @@ static int all_fw_domain_init(struct xe_gt *gt)
>   		 * USM has its only SA pool to non-block behind user operations
>   		 */
>   		if (gt_to_xe(gt)->info.has_usm) {
> -			gt->usm.bb_pool = xe_sa_bo_manager_init(gt_to_tile(gt), SZ_1M, 16);
> +			struct xe_device *xe = gt_to_xe(gt);
> +
> +			gt->usm.bb_pool = xe_sa_bo_manager_init(gt_to_tile(gt),
> +								IS_DGFX(xe) ? SZ_1M : SZ_512, 16);
>   			if (IS_ERR(gt->usm.bb_pool)) {
>   				err = PTR_ERR(gt->usm.bb_pool);
>   				goto err_force_wake;
> diff --git a/drivers/gpu/drm/xe/xe_migrate.c b/drivers/gpu/drm/xe/xe_migrate.c
> index 9ab004871f9a..7465f8d14028 100644
> --- a/drivers/gpu/drm/xe/xe_migrate.c
> +++ b/drivers/gpu/drm/xe/xe_migrate.c
> @@ -180,11 +180,6 @@ static int xe_migrate_prepare_vm(struct xe_tile *tile, struct xe_migrate *m,
>   	if (!IS_DGFX(xe)) {
>   		/* Write out batch too */
>   		m->batch_base_ofs = NUM_PT_SLOTS * XE_PAGE_SIZE;
> -		if (xe->info.has_usm) {
> -			batch = tile->primary_gt->usm.bb_pool->bo;
> -			m->usm_batch_base_ofs = m->batch_base_ofs;
> -		}
> -
>   		for (i = 0; i < batch->size;
>   		     i += vm->flags & XE_VM_FLAG_64K ? XE_64K_PAGE_SIZE :
>   		     XE_PAGE_SIZE) {
> @@ -195,6 +190,24 @@ static int xe_migrate_prepare_vm(struct xe_tile *tile, struct xe_migrate *m,
>   				  entry);
>   			level++;
>   		}
> +		if (xe->info.has_usm) {
> +			xe_tile_assert(tile, batch->size == SZ_1M);
> +
> +			batch = tile->primary_gt->usm.bb_pool->bo;
> +			m->usm_batch_base_ofs = m->batch_base_ofs + SZ_1M;
> +			xe_tile_assert(tile, batch->size == SZ_512);
> +
> +			for (i = 0; i < batch->size;
> +			     i += vm->flags & XE_VM_FLAG_64K ? XE_64K_PAGE_SIZE :
> +			     XE_PAGE_SIZE) {
> +				entry = vm->pt_ops->pte_encode_bo(batch, i,
> +								  pat_index, 0);
> +
> +				xe_map_wr(xe, &bo->vmap, map_ofs + level * 8, u64,
> +					  entry);
> +				level++;
> +			}
> +		}
>   	} else {
>   		u64 batch_addr = xe_bo_addr(batch, 0, XE_PAGE_SIZE);
>   

      parent reply	other threads:[~2024-02-02 19:05 UTC|newest]

Thread overview: 11+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2024-02-02  3:34 [PATCH] drm/xe: Map both mem.kernel_bb_pool and usm.bb_pool Matthew Brost
2024-02-02  3:37 ` ✓ CI.Patch_applied: success for " Patchwork
2024-02-02  3:37 ` ✗ CI.checkpatch: warning " Patchwork
2024-02-02  3:38 ` ✓ CI.KUnit: success " Patchwork
2024-02-02  3:45 ` ✓ CI.Build: " Patchwork
2024-02-02  3:45 ` ✓ CI.Hooks: " Patchwork
2024-02-02  3:47 ` ✓ CI.checksparse: " Patchwork
2024-02-02  4:09 ` ✓ CI.BAT: " Patchwork
2024-02-02 16:58 ` [PATCH] " Summers, Stuart
2024-02-02 17:53   ` Matthew Brost
2024-02-02 19:05 ` Welty, Brian [this message]

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=5dc4d6f1-de79-4cb4-8821-9a292d73a2b6@intel.com \
    --to=brian.welty@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