All of lore.kernel.org
 help / color / mirror / Atom feed
From: Lucas De Marchi <lucas.demarchi@intel.com>
To: Swathi Dhanavanthri <swathi.dhanavanthri@intel.com>
Cc: Daniel Vetter <daniel.vetter@ffwll.ch>,
	intel-gfx@lists.freedesktop.org, dri-devel@lists.freedesktop.org
Subject: Re: [Intel-gfx] [PATCH] drm/i915: Add Wa_14011060649
Date: Tue, 16 Mar 2021 21:13:47 -0700	[thread overview]
Message-ID: <20210317041347.fdogwipcpk2pjj4n@ldmartin-desk2> (raw)
In-Reply-To: <20210316235746.19900-1-swathi.dhanavanthri@intel.com>

+Daniel

On Tue, Mar 16, 2021 at 04:57:46PM -0700, Swathi Dhanavanthri wrote:
>This is a permanent workaround for TGL,RKL,DG1 and ADLS.
>
>Signed-off-by: Swathi Dhanavanthri <swathi.dhanavanthri@intel.com>
>---
> drivers/gpu/drm/i915/gt/intel_workarounds.c | 27 +++++++++++++++++++++
> drivers/gpu/drm/i915/i915_reg.h             |  3 +++
> 2 files changed, 30 insertions(+)
>
>diff --git a/drivers/gpu/drm/i915/gt/intel_workarounds.c b/drivers/gpu/drm/i915/gt/intel_workarounds.c
>index 3b4a7da60f0b..01f34a6bdf3e 100644
>--- a/drivers/gpu/drm/i915/gt/intel_workarounds.c
>+++ b/drivers/gpu/drm/i915/gt/intel_workarounds.c
>@@ -1117,11 +1117,38 @@ icl_gt_workarounds_init(struct drm_i915_private *i915, struct i915_wa_list *wal)
> 			    L3_CLKGATE_DIS | L3_CR2X_CLKGATE_DIS);
> }
>
>+/*
>+ * Though there are per-engine instances of these registers,
>+ * they retain their value through engine resets and should
>+ * only be provided on the GT workaround list rather than
>+ * the engine-specific workaround list.
>+ *

extra blank line here. Otherwise:

Reviewed-by: Lucas De Marchi <lucas.demarchi@intel.com>

Daniel, where/how should we land this and next pending WAs? I have 3 more
already reviewed that I need to re-submit to dri-devel.
Should we get an ack and merge intel-gt-next? Or maybe create a
topic branch to be merged somewhere later?

thanks
Lucas De Marchi

>+ */
>+static void
>+wa_14011060649(struct drm_i915_private *i915, struct i915_wa_list *wal)
>+{
>+	struct intel_engine_cs *engine;
>+	struct intel_gt *gt = &i915->gt;
>+	int id;
>+
>+	for_each_engine(engine, gt, id) {
>+		if ((engine->class != VIDEO_DECODE_CLASS) ||
>+		    (engine->instance % 2))
>+			continue;
>+
>+		wa_write_or(wal, VDBOX_CGCTL3F10(engine->mmio_base),
>+			    IECPUNIT_CLKGATE_DIS);
>+	}
>+}
>+
> static void
> gen12_gt_workarounds_init(struct drm_i915_private *i915,
> 			  struct i915_wa_list *wal)
> {
> 	wa_init_mcr(i915, wal);
>+
>+	/* Wa_14011060649:tgl,rkl,dg1,adls */
>+	wa_14011060649(i915, wal);
> }
>
> static void
>diff --git a/drivers/gpu/drm/i915/i915_reg.h b/drivers/gpu/drm/i915/i915_reg.h
>index e5dd0203991b..cc60556306e2 100644
>--- a/drivers/gpu/drm/i915/i915_reg.h
>+++ b/drivers/gpu/drm/i915/i915_reg.h
>@@ -2715,6 +2715,9 @@ static inline bool i915_mmio_reg_valid(i915_reg_t reg)
> #define RING_INDIRECT_CTX_OFFSET(base)	_MMIO((base) + 0x1c8) /* gen8+ */
> #define RING_CTX_TIMESTAMP(base)	_MMIO((base) + 0x3a8) /* gen8+ */
>
>+#define VDBOX_CGCTL3F10(base)		_MMIO((base) + 0x3f10)
>+#define   IECPUNIT_CLKGATE_DIS		REG_BIT(22)
>+
> #define ERROR_GEN6	_MMIO(0x40a0)
> #define GEN7_ERR_INT	_MMIO(0x44040)
> #define   ERR_INT_POISON		(1 << 31)
>-- 
>2.20.1
>
>_______________________________________________
>Intel-gfx mailing list
>Intel-gfx@lists.freedesktop.org
>https://lists.freedesktop.org/mailman/listinfo/intel-gfx
_______________________________________________
dri-devel mailing list
dri-devel@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/dri-devel

WARNING: multiple messages have this Message-ID (diff)
From: Lucas De Marchi <lucas.demarchi@intel.com>
To: Swathi Dhanavanthri <swathi.dhanavanthri@intel.com>
Cc: Daniel Vetter <daniel.vetter@ffwll.ch>,
	intel-gfx@lists.freedesktop.org, dri-devel@lists.freedesktop.org
Subject: Re: [Intel-gfx] [PATCH] drm/i915: Add Wa_14011060649
Date: Tue, 16 Mar 2021 21:13:47 -0700	[thread overview]
Message-ID: <20210317041347.fdogwipcpk2pjj4n@ldmartin-desk2> (raw)
In-Reply-To: <20210316235746.19900-1-swathi.dhanavanthri@intel.com>

+Daniel

On Tue, Mar 16, 2021 at 04:57:46PM -0700, Swathi Dhanavanthri wrote:
>This is a permanent workaround for TGL,RKL,DG1 and ADLS.
>
>Signed-off-by: Swathi Dhanavanthri <swathi.dhanavanthri@intel.com>
>---
> drivers/gpu/drm/i915/gt/intel_workarounds.c | 27 +++++++++++++++++++++
> drivers/gpu/drm/i915/i915_reg.h             |  3 +++
> 2 files changed, 30 insertions(+)
>
>diff --git a/drivers/gpu/drm/i915/gt/intel_workarounds.c b/drivers/gpu/drm/i915/gt/intel_workarounds.c
>index 3b4a7da60f0b..01f34a6bdf3e 100644
>--- a/drivers/gpu/drm/i915/gt/intel_workarounds.c
>+++ b/drivers/gpu/drm/i915/gt/intel_workarounds.c
>@@ -1117,11 +1117,38 @@ icl_gt_workarounds_init(struct drm_i915_private *i915, struct i915_wa_list *wal)
> 			    L3_CLKGATE_DIS | L3_CR2X_CLKGATE_DIS);
> }
>
>+/*
>+ * Though there are per-engine instances of these registers,
>+ * they retain their value through engine resets and should
>+ * only be provided on the GT workaround list rather than
>+ * the engine-specific workaround list.
>+ *

extra blank line here. Otherwise:

Reviewed-by: Lucas De Marchi <lucas.demarchi@intel.com>

Daniel, where/how should we land this and next pending WAs? I have 3 more
already reviewed that I need to re-submit to dri-devel.
Should we get an ack and merge intel-gt-next? Or maybe create a
topic branch to be merged somewhere later?

thanks
Lucas De Marchi

>+ */
>+static void
>+wa_14011060649(struct drm_i915_private *i915, struct i915_wa_list *wal)
>+{
>+	struct intel_engine_cs *engine;
>+	struct intel_gt *gt = &i915->gt;
>+	int id;
>+
>+	for_each_engine(engine, gt, id) {
>+		if ((engine->class != VIDEO_DECODE_CLASS) ||
>+		    (engine->instance % 2))
>+			continue;
>+
>+		wa_write_or(wal, VDBOX_CGCTL3F10(engine->mmio_base),
>+			    IECPUNIT_CLKGATE_DIS);
>+	}
>+}
>+
> static void
> gen12_gt_workarounds_init(struct drm_i915_private *i915,
> 			  struct i915_wa_list *wal)
> {
> 	wa_init_mcr(i915, wal);
>+
>+	/* Wa_14011060649:tgl,rkl,dg1,adls */
>+	wa_14011060649(i915, wal);
> }
>
> static void
>diff --git a/drivers/gpu/drm/i915/i915_reg.h b/drivers/gpu/drm/i915/i915_reg.h
>index e5dd0203991b..cc60556306e2 100644
>--- a/drivers/gpu/drm/i915/i915_reg.h
>+++ b/drivers/gpu/drm/i915/i915_reg.h
>@@ -2715,6 +2715,9 @@ static inline bool i915_mmio_reg_valid(i915_reg_t reg)
> #define RING_INDIRECT_CTX_OFFSET(base)	_MMIO((base) + 0x1c8) /* gen8+ */
> #define RING_CTX_TIMESTAMP(base)	_MMIO((base) + 0x3a8) /* gen8+ */
>
>+#define VDBOX_CGCTL3F10(base)		_MMIO((base) + 0x3f10)
>+#define   IECPUNIT_CLKGATE_DIS		REG_BIT(22)
>+
> #define ERROR_GEN6	_MMIO(0x40a0)
> #define GEN7_ERR_INT	_MMIO(0x44040)
> #define   ERR_INT_POISON		(1 << 31)
>-- 
>2.20.1
>
>_______________________________________________
>Intel-gfx mailing list
>Intel-gfx@lists.freedesktop.org
>https://lists.freedesktop.org/mailman/listinfo/intel-gfx
_______________________________________________
Intel-gfx mailing list
Intel-gfx@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/intel-gfx

  parent reply	other threads:[~2021-03-17  4:13 UTC|newest]

Thread overview: 10+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2021-03-16 23:57 [PATCH] drm/i915: Add Wa_14011060649 Swathi Dhanavanthri
2021-03-16 23:57 ` [Intel-gfx] " Swathi Dhanavanthri
2021-03-17  0:42 ` [Intel-gfx] ✗ Fi.CI.CHECKPATCH: warning for drm/i915: Add Wa_14011060649 (rev3) Patchwork
2021-03-17  1:11 ` [Intel-gfx] ✓ Fi.CI.BAT: success " Patchwork
2021-03-17  2:21 ` [Intel-gfx] ✓ Fi.CI.IGT: " Patchwork
2021-03-17  4:13 ` Lucas De Marchi [this message]
2021-03-17  4:13   ` [Intel-gfx] [PATCH] drm/i915: Add Wa_14011060649 Lucas De Marchi
  -- strict thread matches above, loose matches on Subject: below --
2021-03-16 22:12 Swathi Dhanavanthri
2021-03-11 18:26 Swathi Dhanavanthri
2021-03-12 18:16 ` Matt Roper

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=20210317041347.fdogwipcpk2pjj4n@ldmartin-desk2 \
    --to=lucas.demarchi@intel.com \
    --cc=daniel.vetter@ffwll.ch \
    --cc=dri-devel@lists.freedesktop.org \
    --cc=intel-gfx@lists.freedesktop.org \
    --cc=swathi.dhanavanthri@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.