From: Andrzej Hajda <andrzej.hajda@intel.com>
To: Nirmoy Das <nirmoy.das@linux.intel.com>, intel-gfx@lists.freedesktop.org
Cc: Jonathan Cavitt <jonathan.cavitt@intel.com>,
Nirmoy Das <nirmoy.das@intel.com>
Subject: Re: [Intel-gfx] [PATCH v3 4/4] drm/i915: Set copy engine arbitration for Wa_16018031267 / Wa_16018063123
Date: Mon, 23 Oct 2023 17:24:46 +0200 [thread overview]
Message-ID: <9e296a17-5a7a-473d-a213-a1e965a3dc4a@intel.com> (raw)
In-Reply-To: <7a83d52f-0bcb-6223-db6c-1bf9cb7ed39b@linux.intel.com>
On 23.10.2023 11:55, Nirmoy Das wrote:
> Hi Andrzej,
>
> On 10/23/2023 9:41 AM, Andrzej Hajda wrote:
>> From: Jonathan Cavitt <jonathan.cavitt@intel.com>
>>
>> Set copy engine arbitration into round robin mode
>> for part of Wa_16018031267 / Wa_16018063123 mitigation.
>>
>> Signed-off-by: Nirmoy Das <nirmoy.das@intel.com>
>> Signed-off-by: Jonathan Cavitt <jonathan.cavitt@intel.com>
>> Reviewed-by: Andrzej Hajda <andrzej.hajda@intel.com>
>> ---
>> drivers/gpu/drm/i915/gt/intel_engine_regs.h | 3 +++
>> drivers/gpu/drm/i915/gt/intel_workarounds.c | 5 +++++
>> 2 files changed, 8 insertions(+)
>>
>> diff --git a/drivers/gpu/drm/i915/gt/intel_engine_regs.h
>> b/drivers/gpu/drm/i915/gt/intel_engine_regs.h
>> index b8618ee3e3041a..c0c8c12edea104 100644
>> --- a/drivers/gpu/drm/i915/gt/intel_engine_regs.h
>> +++ b/drivers/gpu/drm/i915/gt/intel_engine_regs.h
>> @@ -124,6 +124,9 @@
>> #define RING_INDIRECT_CTX(base) _MMIO((base) + 0x1c4) /*
>> gen8+ */
>> #define RING_INDIRECT_CTX_OFFSET(base) _MMIO((base) + 0x1c8)
>> /* gen8+ */
>> #define ECOSKPD(base) _MMIO((base) + 0x1d0)
>> +#define XEHP_BLITTER_SCHEDULING_MODE_MASK REG_GENMASK(12, 11)
>> +#define XEHP_BLITTER_ROUND_ROBIN_MODE \
>> + REG_FIELD_PREP(XEHP_BLITTER_SCHEDULING_MODE_MASK, 1)
>> #define ECO_CONSTANT_BUFFER_SR_DISABLE REG_BIT(4)
>> #define ECO_GATING_CX_ONLY REG_BIT(3)
>> #define GEN6_BLITTER_FBC_NOTIFY REG_BIT(3)
>> diff --git a/drivers/gpu/drm/i915/gt/intel_workarounds.c
>> b/drivers/gpu/drm/i915/gt/intel_workarounds.c
>> index 192ac0e59afa13..108d9326735910 100644
>> --- a/drivers/gpu/drm/i915/gt/intel_workarounds.c
>> +++ b/drivers/gpu/drm/i915/gt/intel_workarounds.c
>> @@ -2782,6 +2782,11 @@ xcs_engine_wa_init(struct intel_engine_cs
>> *engine, struct i915_wa_list *wal)
>> RING_SEMA_WAIT_POLL(engine->mmio_base),
>> 1);
>> }
>> + /* Wa_16018031267, Wa_16018063123 */
>> + if (NEEDS_FASTCOLOR_BLT_WABB(engine))
>
>
> Not sure if I missed any previous discussion on this, the WA talked
> about applying this on main copy engine. This needs to be taken into
> account in
>
> NEEDS_FASTCOLOR_BLT_WABB()
Do you mean we need to check if instance == 0? Now above macro checks if
it is copy engine.
>
>> + wa_masked_field_set(wal, ECOSKPD(engine->mmio_base),
>> + XEHP_BLITTER_SCHEDULING_MODE_MASK,
>> + XEHP_BLITTER_ROUND_ROBIN_MODE);
>> }
>
> This function sets masked_reg = true and will not read the register back
> and I remember MattR asked internally to not use that if that is not
> required.
IIRC, wa_masked_field_set sets read_mask, so read back is performed,
anyway it is the only function (beside low level wa_add), which works on
fields(not bits). Are you sure?
Regards
Andrzej
>
>
> With those two concern handled this is Reviewed-by: Nirmoy Das
> <nirmoy.das@intel.com>
>
>
> Regards,
>
> Nirmoy
>
>> static void
>>
next prev parent reply other threads:[~2023-10-23 15:24 UTC|newest]
Thread overview: 17+ messages / expand[flat|nested] mbox.gz Atom feed top
2023-10-23 7:41 [Intel-gfx] [PATCH v3 0/4] Apply Wa_16018031267 / Wa_16018063123 Andrzej Hajda
2023-10-23 7:41 ` [Intel-gfx] [PATCH v3 1/4] drm/i915: Enable NULL PTE support for vm scratch Andrzej Hajda
2023-10-23 12:23 ` Nirmoy Das
2023-10-23 14:54 ` Andrzej Hajda
2023-10-23 7:41 ` [Intel-gfx] [PATCH v3 2/4] drm/i915: Reserve some kernel space per vm Andrzej Hajda
2023-10-23 8:49 ` Nirmoy Das
2023-10-23 11:40 ` Andrzej Hajda
2023-10-23 7:41 ` [Intel-gfx] [PATCH v3 3/4] drm/i915: Add WABB blit for Wa_16018031267 / Wa_16018063123 Andrzej Hajda
2023-10-23 9:05 ` Nirmoy Das
2023-10-23 19:08 ` Andrzej Hajda
2023-10-23 7:41 ` [Intel-gfx] [PATCH v3 4/4] drm/i915: Set copy engine arbitration " Andrzej Hajda
2023-10-23 9:55 ` Nirmoy Das
2023-10-23 15:24 ` Andrzej Hajda [this message]
2023-10-23 16:06 ` Nirmoy Das
2023-10-23 8:38 ` [Intel-gfx] [PATCH v3 0/4] Apply " Nirmoy Das
2023-10-23 11:35 ` Andrzej Hajda
2023-10-23 12:20 ` Nirmoy Das
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=9e296a17-5a7a-473d-a213-a1e965a3dc4a@intel.com \
--to=andrzej.hajda@intel.com \
--cc=intel-gfx@lists.freedesktop.org \
--cc=jonathan.cavitt@intel.com \
--cc=nirmoy.das@intel.com \
--cc=nirmoy.das@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