From: Matthew Brost <matthew.brost@intel.com>
To: Lucas De Marchi <lucas.demarchi@intel.com>
Cc: intel-gfx@lists.freedesktop.org, dri-devel@lists.freedesktop.org
Subject: Re: [Intel-gfx] [PATCH 2/2] drm/i915: Add logical mapping for video decode engines
Date: Wed, 16 Mar 2022 17:20:44 -0700 [thread overview]
Message-ID: <20220317002044.GA13917@jons-linux-dev-box> (raw)
In-Reply-To: <20220316234538.434357-2-lucas.demarchi@intel.com>
On Wed, Mar 16, 2022 at 04:45:38PM -0700, Lucas De Marchi wrote:
> From: Matthew Brost <matthew.brost@intel.com>
>
> Add logical mapping for VDBOXs. This mapping is required for
> split-frame workloads, which otherwise fail with
>
> 00000000-F8C53528: [GUC] 0441-INVALID_ENGINE_SUBMIT_MASK
>
> ... if the application is using the logical id to reorder the engines and
> then using it for the batch buffer submission. It's not a big problem on
> media version 11 and 12 as they have only 2 instances of VCS and the
> logical to physical mapping is monotonically increasing - if the
> application is not using the logical id.
>
> Changing it for the previous platforms allows the media driver
> implementation for the next ones (12.50 and above) to be the same,
> checking the logical id. It should also not introduce any bug for the
> old versions of userspace not checking the id.
>
> The mapping added here is the complete map needed by XEHPSDV. Previous
> platforms with only 2 instances will just use a partial map and should
> still work.
>
> Cc: Matt Roper <matthew.d.roper@intel.com>
> Signed-off-by: Matthew Brost <matthew.brost@intel.com>
> [ Extend the mapping to media versions 11 and 12 and give proper
> justification in the commit message why ]
> Signed-off-by: Lucas De Marchi <lucas.demarchi@intel.com>
For the changes to the patch / commit message:
Acked-by: Matthew Brost <matthew.brost@intel.com>
> ---
> drivers/gpu/drm/i915/gt/intel_engine_cs.c | 22 +++++++++++++++++-----
> 1 file changed, 17 insertions(+), 5 deletions(-)
>
> diff --git a/drivers/gpu/drm/i915/gt/intel_engine_cs.c b/drivers/gpu/drm/i915/gt/intel_engine_cs.c
> index 8080479f27aa..afa2e61cf729 100644
> --- a/drivers/gpu/drm/i915/gt/intel_engine_cs.c
> +++ b/drivers/gpu/drm/i915/gt/intel_engine_cs.c
> @@ -731,12 +731,24 @@ static void populate_logical_ids(struct intel_gt *gt, u8 *logical_ids,
>
> static void setup_logical_ids(struct intel_gt *gt, u8 *logical_ids, u8 class)
> {
> - int i;
> - u8 map[MAX_ENGINE_INSTANCE + 1];
> + /*
> + * Logical to physical mapping is needed for proper support
> + * to split-frame feature.
> + */
> + if (MEDIA_VER(gt->i915) >= 11 && class == VIDEO_DECODE_CLASS) {
> + static const u8 map[] = { 0, 2, 4, 6, 1, 3, 5, 7 };
>
> - for (i = 0; i < MAX_ENGINE_INSTANCE + 1; ++i)
> - map[i] = i;
> - populate_logical_ids(gt, logical_ids, class, map, ARRAY_SIZE(map));
> + populate_logical_ids(gt, logical_ids, class,
> + map, ARRAY_SIZE(map));
> + } else {
> + int i;
> + u8 map[MAX_ENGINE_INSTANCE + 1];
> +
> + for (i = 0; i < MAX_ENGINE_INSTANCE + 1; ++i)
> + map[i] = i;
> + populate_logical_ids(gt, logical_ids, class,
> + map, ARRAY_SIZE(map));
> + }
> }
>
> /**
> --
> 2.35.1
>
WARNING: multiple messages have this Message-ID (diff)
From: Matthew Brost <matthew.brost@intel.com>
To: Lucas De Marchi <lucas.demarchi@intel.com>
Cc: intel-gfx@lists.freedesktop.org, dri-devel@lists.freedesktop.org
Subject: Re: [PATCH 2/2] drm/i915: Add logical mapping for video decode engines
Date: Wed, 16 Mar 2022 17:20:44 -0700 [thread overview]
Message-ID: <20220317002044.GA13917@jons-linux-dev-box> (raw)
In-Reply-To: <20220316234538.434357-2-lucas.demarchi@intel.com>
On Wed, Mar 16, 2022 at 04:45:38PM -0700, Lucas De Marchi wrote:
> From: Matthew Brost <matthew.brost@intel.com>
>
> Add logical mapping for VDBOXs. This mapping is required for
> split-frame workloads, which otherwise fail with
>
> 00000000-F8C53528: [GUC] 0441-INVALID_ENGINE_SUBMIT_MASK
>
> ... if the application is using the logical id to reorder the engines and
> then using it for the batch buffer submission. It's not a big problem on
> media version 11 and 12 as they have only 2 instances of VCS and the
> logical to physical mapping is monotonically increasing - if the
> application is not using the logical id.
>
> Changing it for the previous platforms allows the media driver
> implementation for the next ones (12.50 and above) to be the same,
> checking the logical id. It should also not introduce any bug for the
> old versions of userspace not checking the id.
>
> The mapping added here is the complete map needed by XEHPSDV. Previous
> platforms with only 2 instances will just use a partial map and should
> still work.
>
> Cc: Matt Roper <matthew.d.roper@intel.com>
> Signed-off-by: Matthew Brost <matthew.brost@intel.com>
> [ Extend the mapping to media versions 11 and 12 and give proper
> justification in the commit message why ]
> Signed-off-by: Lucas De Marchi <lucas.demarchi@intel.com>
For the changes to the patch / commit message:
Acked-by: Matthew Brost <matthew.brost@intel.com>
> ---
> drivers/gpu/drm/i915/gt/intel_engine_cs.c | 22 +++++++++++++++++-----
> 1 file changed, 17 insertions(+), 5 deletions(-)
>
> diff --git a/drivers/gpu/drm/i915/gt/intel_engine_cs.c b/drivers/gpu/drm/i915/gt/intel_engine_cs.c
> index 8080479f27aa..afa2e61cf729 100644
> --- a/drivers/gpu/drm/i915/gt/intel_engine_cs.c
> +++ b/drivers/gpu/drm/i915/gt/intel_engine_cs.c
> @@ -731,12 +731,24 @@ static void populate_logical_ids(struct intel_gt *gt, u8 *logical_ids,
>
> static void setup_logical_ids(struct intel_gt *gt, u8 *logical_ids, u8 class)
> {
> - int i;
> - u8 map[MAX_ENGINE_INSTANCE + 1];
> + /*
> + * Logical to physical mapping is needed for proper support
> + * to split-frame feature.
> + */
> + if (MEDIA_VER(gt->i915) >= 11 && class == VIDEO_DECODE_CLASS) {
> + static const u8 map[] = { 0, 2, 4, 6, 1, 3, 5, 7 };
>
> - for (i = 0; i < MAX_ENGINE_INSTANCE + 1; ++i)
> - map[i] = i;
> - populate_logical_ids(gt, logical_ids, class, map, ARRAY_SIZE(map));
> + populate_logical_ids(gt, logical_ids, class,
> + map, ARRAY_SIZE(map));
> + } else {
> + int i;
> + u8 map[MAX_ENGINE_INSTANCE + 1];
> +
> + for (i = 0; i < MAX_ENGINE_INSTANCE + 1; ++i)
> + map[i] = i;
> + populate_logical_ids(gt, logical_ids, class,
> + map, ARRAY_SIZE(map));
> + }
> }
>
> /**
> --
> 2.35.1
>
next prev parent reply other threads:[~2022-03-17 0:26 UTC|newest]
Thread overview: 21+ messages / expand[flat|nested] mbox.gz Atom feed top
2022-03-16 23:45 [Intel-gfx] [PATCH 1/2] drm/i915: Fix renamed struct field Lucas De Marchi
2022-03-16 23:45 ` Lucas De Marchi
2022-03-16 23:45 ` [Intel-gfx] [PATCH 2/2] drm/i915: Add logical mapping for video decode engines Lucas De Marchi
2022-03-16 23:45 ` Lucas De Marchi
2022-03-17 0:20 ` Matthew Brost [this message]
2022-03-17 0:20 ` Matthew Brost
2022-03-17 13:42 ` [Intel-gfx] " Souza, Jose
2022-03-17 13:42 ` Souza, Jose
2022-03-17 0:05 ` [Intel-gfx] ✗ Fi.CI.CHECKPATCH: warning for series starting with [1/2] drm/i915: Fix renamed struct field Patchwork
2022-03-17 0:06 ` [Intel-gfx] ✗ Fi.CI.SPARSE: " Patchwork
2022-03-17 0:44 ` [Intel-gfx] ✓ Fi.CI.BAT: success " Patchwork
2022-03-17 4:14 ` [Intel-gfx] ✗ Fi.CI.IGT: failure " Patchwork
2022-03-18 14:52 ` Lucas De Marchi
2022-03-18 16:21 ` Vudum, Lakshminarayana
2022-03-17 13:35 ` [Intel-gfx] [PATCH 1/2] " Souza, Jose
2022-03-17 13:35 ` Souza, Jose
2022-03-18 10:04 ` [Intel-gfx] ✗ Fi.CI.CHECKPATCH: warning for series starting with [1/2] drm/i915: Fix renamed struct field (rev2) Patchwork
2022-03-18 10:06 ` [Intel-gfx] ✗ Fi.CI.SPARSE: " Patchwork
2022-03-18 10:44 ` [Intel-gfx] ✗ Fi.CI.BAT: failure " Patchwork
2022-03-18 16:17 ` [Intel-gfx] ✓ Fi.CI.BAT: success " Patchwork
2022-03-18 17:48 ` [Intel-gfx] ✓ Fi.CI.IGT: " 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=20220317002044.GA13917@jons-linux-dev-box \
--to=matthew.brost@intel.com \
--cc=dri-devel@lists.freedesktop.org \
--cc=intel-gfx@lists.freedesktop.org \
--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 an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.