From: Matt Atwood <matthew.s.atwood@intel.com>
To: Lucas De Marchi <lucas.demarchi@intel.com>;,
intel-gfx@lists.freedesktop.org
Subject: Re: [Intel-gfx] [PATCH v2 06/18] drm/i915/guc: Convert golden context init to iosys_map
Date: Thu, 10 Feb 2022 15:07:05 -0800 [thread overview]
Message-ID: <20220210230705.GC4707@msatwood-mobl> (raw)
In-Reply-To: <20220208104524.2516209-7-lucas.demarchi@intel.com>
On Tue, Feb 08, 2022 at 02:45:12AM -0800, Lucas De Marchi wrote:
> 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.
>
> v2: Do not use a map iterator: add an offset to keep track of
> destination
>
> 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>
Reviewed-by: Matt Atwood <matthew.s.atwood@intel.com>
> Signed-off-by: Lucas De Marchi <lucas.demarchi@intel.com>
> ---
> drivers/gpu/drm/i915/gt/uc/intel_guc_ads.c | 26 ++++++++++------------
> 1 file changed, 12 insertions(+), 14 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 9bf9096b8337..b5b3a39f0c28 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,16 @@ 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);
> - u32 addr_ggtt, offset;
> - u32 total_size = 0, alloc_size, real_size;
> + unsigned long offset;
> + u32 addr_ggtt, 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 +490,13 @@ 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;
>
> 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 +507,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, &guc->ads_map,
> + offset, real_size);
> + offset += alloc_size;
> }
>
> GEM_BUG_ON(guc->ads_golden_ctxt_size != total_size);
> --
> 2.35.1
>
next prev parent reply other threads:[~2022-02-10 23:07 UTC|newest]
Thread overview: 33+ messages / expand[flat|nested] mbox.gz Atom feed top
2022-02-08 10:45 [Intel-gfx] [PATCH v2 00/18] drm/i915/guc: Refactor ADS access to use iosys_map Lucas De Marchi
2022-02-08 10:45 ` [Intel-gfx] [PATCH v2 01/18] iosys-map: Add offset to iosys_map_memcpy_to() Lucas De Marchi
2022-02-08 10:45 ` [Intel-gfx] [PATCH v2 02/18] iosys-map: Add a few more helpers Lucas De Marchi
2022-02-08 22:53 ` Matt Atwood
2022-02-09 6:14 ` Mauro Carvalho Chehab
2022-02-09 6:23 ` Thomas Zimmermann
2022-02-09 6:43 ` Lucas De Marchi
2022-02-08 10:45 ` [Intel-gfx] [PATCH v2 03/18] drm/i915/gt: Add helper for shmem copy to iosys_map Lucas De Marchi
2022-02-08 23:08 ` Matt Atwood
2022-02-08 10:45 ` [Intel-gfx] [PATCH v2 04/18] drm/i915/guc: Keep iosys_map of ads_blob around Lucas De Marchi
2022-02-10 22:56 ` Matt Atwood
2022-02-08 10:45 ` [Intel-gfx] [PATCH v2 05/18] drm/i915/guc: Add read/write helpers for ADS blob Lucas De Marchi
2022-02-10 23:00 ` Matt Atwood
2022-02-08 10:45 ` [Intel-gfx] [PATCH v2 06/18] drm/i915/guc: Convert golden context init to iosys_map Lucas De Marchi
2022-02-10 23:07 ` Matt Atwood [this message]
2022-02-08 10:45 ` [Intel-gfx] [PATCH v2 07/18] drm/i915/guc: Convert policies update " Lucas De Marchi
2022-02-10 23:56 ` Matt Atwood
2022-02-08 10:45 ` [Intel-gfx] [PATCH v2 08/18] drm/i915/guc: Convert engine record " Lucas De Marchi
2022-02-15 23:28 ` Matt Atwood
2022-02-08 10:45 ` [Intel-gfx] [PATCH v2 09/18] drm/i915/guc: Convert guc_ads_private_data_reset " Lucas De Marchi
2022-02-08 10:45 ` [Intel-gfx] [PATCH v2 10/18] drm/i915/guc: Convert golden context prep " Lucas De Marchi
2022-02-08 10:45 ` [Intel-gfx] [PATCH v2 11/18] drm/i915/guc: Replace check for golden context size Lucas De Marchi
2022-02-08 10:45 ` [Intel-gfx] [PATCH v2 12/18] drm/i915/guc: Convert mapping table to iosys_map Lucas De Marchi
2022-02-08 10:45 ` [Intel-gfx] [PATCH v2 13/18] drm/i915/guc: Convert capture list " Lucas De Marchi
2022-02-08 10:45 ` [Intel-gfx] [PATCH v2 14/18] drm/i915/guc: Prepare for error propagation Lucas De Marchi
2022-02-08 10:45 ` [Intel-gfx] [PATCH v2 15/18] drm/i915/guc: Use a single pass to calculate regset Lucas De Marchi
2022-02-08 10:45 ` [Intel-gfx] [PATCH v2 16/18] drm/i915/guc: Convert guc_mmio_reg_state_init to iosys_map Lucas De Marchi
2022-02-08 10:45 ` [Intel-gfx] [PATCH v2 17/18] drm/i915/guc: Convert __guc_ads_init " Lucas De Marchi
2022-02-08 10:45 ` [Intel-gfx] [PATCH v2 18/18] drm/i915/guc: Remove plain ads_blob pointer Lucas De Marchi
2022-02-08 11:18 ` [Intel-gfx] ✗ Fi.CI.CHECKPATCH: warning for drm/i915/guc: Refactor ADS access to use iosys_map (rev2) Patchwork
2022-02-08 11:20 ` [Intel-gfx] ✗ Fi.CI.SPARSE: " Patchwork
2022-02-08 11:50 ` [Intel-gfx] ✓ Fi.CI.BAT: success " Patchwork
2022-02-08 13:07 ` [Intel-gfx] ✗ Fi.CI.IGT: 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=20220210230705.GC4707@msatwood-mobl \
--to=matthew.s.atwood@intel.com \
--cc=lucas.demarchi@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