From: Thomas Zimmermann <tzimmermann@suse.de>
To: Lucas De Marchi <lucas.demarchi@intel.com>,
intel-gfx@lists.freedesktop.org, dri-devel@lists.freedesktop.org
Cc: "Thomas Hellström" <thomas.hellstrom@linux.intel.com>,
"Sumit Semwal" <sumit.semwal@linaro.org>,
"Christian König" <christian.koenig@amd.com>
Subject: Re: [Intel-gfx] [PATCH 07/19] drm/i915/guc: Convert golden context init to iosys_map
Date: Fri, 4 Feb 2022 20:19:36 +0100 [thread overview]
Message-ID: <2c91c0fa-bad6-2c57-5728-2c059404412f@suse.de> (raw)
In-Reply-To: <20220204174436.830121-8-lucas.demarchi@intel.com>
[-- Attachment #1.1: Type: text/plain, Size: 3999 bytes --]
Hi
Am 04.02.22 um 18:44 schrieb Lucas De Marchi:
> Now the map is saved during creation, so use it to initialize the
> golden context, reading from shmem and writing to either system or IO
> memory.
>
> Cc: Matt Roper <matthew.d.roper@intel.com>
> Cc: Thomas Hellström <thomas.hellstrom@linux.intel.com>
> Cc: Daniel Vetter <daniel@ffwll.ch>
> Cc: John Harrison <John.C.Harrison@Intel.com>
> Cc: Matthew Brost <matthew.brost@intel.com>
> Cc: Daniele Ceraolo Spurio <daniele.ceraolospurio@intel.com>
> Signed-off-by: Lucas De Marchi <lucas.demarchi@intel.com>
> ---
> drivers/gpu/drm/i915/gt/uc/intel_guc_ads.c | 25 +++++++++++-----------
> 1 file changed, 13 insertions(+), 12 deletions(-)
>
> diff --git a/drivers/gpu/drm/i915/gt/uc/intel_guc_ads.c b/drivers/gpu/drm/i915/gt/uc/intel_guc_ads.c
> index 3a0afce7564e..d32b407a2d25 100644
> --- a/drivers/gpu/drm/i915/gt/uc/intel_guc_ads.c
> +++ b/drivers/gpu/drm/i915/gt/uc/intel_guc_ads.c
> @@ -473,18 +473,17 @@ static struct intel_engine_cs *find_engine_state(struct intel_gt *gt, u8 engine_
>
> static void guc_init_golden_context(struct intel_guc *guc)
> {
> - struct __guc_ads_blob *blob = guc->ads_blob;
> struct intel_engine_cs *engine;
> struct intel_gt *gt = guc_to_gt(guc);
> + struct iosys_map golden_context_map;
> u32 addr_ggtt, offset;
> u32 total_size = 0, alloc_size, real_size;
> u8 engine_class, guc_class;
> - u8 *ptr;
>
> if (!intel_uc_uses_guc_submission(>->uc))
> return;
>
> - GEM_BUG_ON(!blob);
> + GEM_BUG_ON(iosys_map_is_null(&guc->ads_map));
>
> /*
> * Go back and fill in the golden context data now that it is
> @@ -492,15 +491,15 @@ static void guc_init_golden_context(struct intel_guc *guc)
> */
> offset = guc_ads_golden_ctxt_offset(guc);
> addr_ggtt = intel_guc_ggtt_offset(guc, guc->ads_vma) + offset;
> - ptr = ((u8 *)blob) + offset;
> +
> + golden_context_map = IOSYS_MAP_INIT_OFFSET(&guc->ads_map, offset);
>
> for (engine_class = 0; engine_class <= MAX_ENGINE_CLASS; ++engine_class) {
> if (engine_class == OTHER_CLASS)
> continue;
>
> guc_class = engine_class_to_guc_class(engine_class);
> -
> - if (!blob->system_info.engine_enabled_masks[guc_class])
> + if (!ads_blob_read(guc, system_info.engine_enabled_masks[guc_class]))
> continue;
>
> real_size = intel_engine_context_size(gt, engine_class);
> @@ -511,18 +510,20 @@ static void guc_init_golden_context(struct intel_guc *guc)
> if (!engine) {
> drm_err(>->i915->drm, "No engine state recorded for class %d!\n",
> engine_class);
> - blob->ads.eng_state_size[guc_class] = 0;
> - blob->ads.golden_context_lrca[guc_class] = 0;
> + ads_blob_write(guc, ads.eng_state_size[guc_class], 0);
> + ads_blob_write(guc, ads.golden_context_lrca[guc_class], 0);
> continue;
> }
>
> - GEM_BUG_ON(blob->ads.eng_state_size[guc_class] !=
> + GEM_BUG_ON(ads_blob_read(guc, ads.eng_state_size[guc_class]) !=
> real_size - LRC_SKIP_SIZE);
> - GEM_BUG_ON(blob->ads.golden_context_lrca[guc_class] != addr_ggtt);
> + GEM_BUG_ON(ads_blob_read(guc, ads.golden_context_lrca[guc_class]) != addr_ggtt);
> +
> addr_ggtt += alloc_size;
>
> - shmem_read(engine->default_state, 0, ptr, real_size);
> - ptr += alloc_size;
> + shmem_read_to_iosys_map(engine->default_state, 0,
> + &golden_context_map, real_size);
> + iosys_map_incr(&golden_context_map, alloc_size);
Use an offset to index into iosys_map. Even if that means to add another
parameter to shmem_read_to_iosys_map(). This will save you
IOSYS_MAP_INIT_OFFSET() and iosys_map_incr().
Best regards
Thomas
> }
>
> GEM_BUG_ON(guc->ads_golden_ctxt_size != total_size);
--
Thomas Zimmermann
Graphics Driver Developer
SUSE Software Solutions Germany GmbH
Maxfeldstr. 5, 90409 Nürnberg, Germany
(HRB 36809, AG Nürnberg)
Geschäftsführer: Ivo Totev
[-- Attachment #2: OpenPGP digital signature --]
[-- Type: application/pgp-signature, Size: 840 bytes --]
next prev parent reply other threads:[~2022-02-04 19:19 UTC|newest]
Thread overview: 33+ messages / expand[flat|nested] mbox.gz Atom feed top
2022-02-04 17:44 [Intel-gfx] [PATCH 00/19] drm/i915/guc: Refactor ADS access to use iosys_map Lucas De Marchi
2022-02-04 17:44 ` [Intel-gfx] [PATCH 01/19] dma-buf-map: Rename to iosys-map Lucas De Marchi
2022-02-04 17:44 ` [Intel-gfx] [PATCH 02/19] iosys-map: Add offset to iosys_map_memcpy_to() Lucas De Marchi
2022-02-04 18:35 ` Christian König
2022-02-04 18:48 ` Thomas Zimmermann
2022-02-04 19:28 ` Lucas De Marchi
2022-02-04 17:44 ` [Intel-gfx] [PATCH 03/19] iosys-map: Add a few more helpers Lucas De Marchi
2022-02-04 19:05 ` Thomas Zimmermann
2022-02-04 19:44 ` Lucas De Marchi
2022-02-07 8:36 ` Thomas Zimmermann
2022-02-04 17:44 ` [Intel-gfx] [PATCH 04/19] drm/i915/gt: Add helper for shmem copy to iosys_map Lucas De Marchi
2022-02-04 19:15 ` Thomas Zimmermann
2022-02-07 20:35 ` Lucas De Marchi
2022-02-04 17:44 ` [Intel-gfx] [PATCH 05/19] drm/i915/guc: Keep iosys_map of ads_blob around Lucas De Marchi
2022-02-04 17:44 ` [Intel-gfx] [PATCH 06/19] drm/i915/guc: Add read/write helpers for ADS blob Lucas De Marchi
2022-02-04 17:44 ` [Intel-gfx] [PATCH 07/19] drm/i915/guc: Convert golden context init to iosys_map Lucas De Marchi
2022-02-04 19:19 ` Thomas Zimmermann [this message]
2022-02-04 17:44 ` [Intel-gfx] [PATCH 08/19] drm/i915/guc: Convert policies update " Lucas De Marchi
2022-02-04 17:44 ` [Intel-gfx] [PATCH 09/19] drm/i915/guc: Convert engine record " Lucas De Marchi
2022-02-04 19:23 ` Thomas Zimmermann
2022-02-04 17:44 ` [Intel-gfx] [PATCH 10/19] drm/i915/guc: Convert guc_ads_private_data_reset " Lucas De Marchi
2022-02-04 17:44 ` [Intel-gfx] [PATCH 11/19] drm/i915/guc: Convert golden context prep " Lucas De Marchi
2022-02-04 17:44 ` [Intel-gfx] [PATCH 12/19] drm/i915/guc: Replace check for golden context size Lucas De Marchi
2022-02-04 17:44 ` [Intel-gfx] [PATCH 13/19] drm/i915/guc: Convert mapping table to iosys_map Lucas De Marchi
2022-02-04 17:44 ` [Intel-gfx] [PATCH 14/19] drm/i915/guc: Convert capture list " Lucas De Marchi
2022-02-04 17:44 ` [Intel-gfx] [PATCH 15/19] drm/i915/guc: Prepare for error propagation Lucas De Marchi
2022-02-04 17:44 ` [Intel-gfx] [PATCH 16/19] drm/i915/guc: Use a single pass to calculate regset Lucas De Marchi
2022-02-04 17:44 ` [Intel-gfx] [PATCH 17/19] drm/i915/guc: Convert guc_mmio_reg_state_init to iosys_map Lucas De Marchi
2022-02-04 17:44 ` [Intel-gfx] [PATCH 18/19] drm/i915/guc: Convert __guc_ads_init " Lucas De Marchi
2022-02-04 17:44 ` [Intel-gfx] [PATCH 19/19] drm/i915/guc: Remove plain ads_blob pointer Lucas De Marchi
2022-02-04 18:38 ` [Intel-gfx] ✗ Fi.CI.CHECKPATCH: warning for drm/i915/guc: Refactor ADS access to use iosys_map Patchwork
2022-02-04 18:40 ` [Intel-gfx] ✗ Fi.CI.SPARSE: " Patchwork
2022-02-04 19:12 ` [Intel-gfx] ✗ Fi.CI.BAT: 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=2c91c0fa-bad6-2c57-5728-2c059404412f@suse.de \
--to=tzimmermann@suse.de \
--cc=christian.koenig@amd.com \
--cc=dri-devel@lists.freedesktop.org \
--cc=intel-gfx@lists.freedesktop.org \
--cc=lucas.demarchi@intel.com \
--cc=sumit.semwal@linaro.org \
--cc=thomas.hellstrom@linux.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