From: Mika Kuoppala <mika.kuoppala@linux.intel.com>
To: Chris Wilson <chris@chris-wilson.co.uk>, intel-gfx@lists.freedesktop.org
Cc: Chris Wilson <chris@chris-wilson.co.uk>
Subject: Re: [Intel-gfx] [PATCH] drm/i915/selftests: Use a single copy of the mocs table
Date: Tue, 02 Feb 2021 20:53:13 +0200 [thread overview]
Message-ID: <87czxiuwrq.fsf@gaia.fi.intel.com> (raw)
In-Reply-To: <20210201100448.9802-1-chris@chris-wilson.co.uk>
Chris Wilson <chris@chris-wilson.co.uk> writes:
> Instead of copying the whole table to each category (mocs, l3cc), use a
> single table with a pointer to it if the category is enabled.
>
> Signed-off-by: Chris Wilson <chris@chris-wilson.co.uk>
Reviewed-by: Mika Kuoppala <mika.kuoppala@linux.intel.com>
> ---
> drivers/gpu/drm/i915/gt/selftest_mocs.c | 32 +++++++++++++++++--------
> 1 file changed, 22 insertions(+), 10 deletions(-)
>
> diff --git a/drivers/gpu/drm/i915/gt/selftest_mocs.c b/drivers/gpu/drm/i915/gt/selftest_mocs.c
> index e6f6807487d4..44609d1c7780 100644
> --- a/drivers/gpu/drm/i915/gt/selftest_mocs.c
> +++ b/drivers/gpu/drm/i915/gt/selftest_mocs.c
> @@ -12,8 +12,9 @@
> #include "selftests/igt_spinner.h"
>
> struct live_mocs {
> - struct drm_i915_mocs_table mocs;
> - struct drm_i915_mocs_table l3cc;
> + struct drm_i915_mocs_table table;
> + struct drm_i915_mocs_table *mocs;
> + struct drm_i915_mocs_table *l3cc;
> struct i915_vma *scratch;
> void *vaddr;
> };
> @@ -58,21 +59,20 @@ static int request_add_spin(struct i915_request *rq, struct igt_spinner *spin)
>
> static int live_mocs_init(struct live_mocs *arg, struct intel_gt *gt)
> {
> - struct drm_i915_mocs_table table;
> unsigned int flags;
> int err;
>
> memset(arg, 0, sizeof(*arg));
>
> - flags = get_mocs_settings(gt->i915, &table);
> + flags = get_mocs_settings(gt->i915, &arg->table);
> if (!flags)
> return -EINVAL;
>
> if (flags & HAS_RENDER_L3CC)
> - arg->l3cc = table;
> + arg->l3cc = &arg->table;
>
> if (flags & (HAS_GLOBAL_MOCS | HAS_ENGINE_MOCS))
> - arg->mocs = table;
> + arg->mocs = &arg->table;
>
> arg->scratch = __vm_create_scratch_for_read(>->ggtt->vm, PAGE_SIZE);
> if (IS_ERR(arg->scratch))
> @@ -130,6 +130,9 @@ static int read_mocs_table(struct i915_request *rq,
> {
> u32 addr;
>
> + if (!table)
> + return 0;
> +
> if (HAS_GLOBAL_MOCS_REGISTERS(rq->engine->i915))
> addr = global_mocs_offset();
> else
> @@ -144,6 +147,9 @@ static int read_l3cc_table(struct i915_request *rq,
> {
> u32 addr = i915_mmio_reg_offset(GEN9_LNCFCMOCS(0));
>
> + if (!table)
> + return 0;
> +
> return read_regs(rq, addr, (table->n_entries + 1) / 2, offset);
> }
>
> @@ -154,6 +160,9 @@ static int check_mocs_table(struct intel_engine_cs *engine,
> unsigned int i;
> u32 expect;
>
> + if (!table)
> + return 0;
> +
> for_each_mocs(expect, table, i) {
> if (**vaddr != expect) {
> pr_err("%s: Invalid MOCS[%d] entry, found %08x, expected %08x\n",
> @@ -185,6 +194,9 @@ static int check_l3cc_table(struct intel_engine_cs *engine,
> unsigned int i;
> u32 expect;
>
> + if (!table)
> + return 0;
> +
> for_each_l3cc(expect, table, i) {
> if (!mcr_range(engine->i915, reg) && **vaddr != expect) {
> pr_err("%s: Invalid L3CC[%d] entry, found %08x, expected %08x\n",
> @@ -222,9 +234,9 @@ static int check_mocs_engine(struct live_mocs *arg,
> /* Read the mocs tables back using SRM */
> offset = i915_ggtt_offset(vma);
> if (!err)
> - err = read_mocs_table(rq, &arg->mocs, &offset);
> + err = read_mocs_table(rq, arg->mocs, &offset);
> if (!err && ce->engine->class == RENDER_CLASS)
> - err = read_l3cc_table(rq, &arg->l3cc, &offset);
> + err = read_l3cc_table(rq, arg->l3cc, &offset);
> offset -= i915_ggtt_offset(vma);
> GEM_BUG_ON(offset > PAGE_SIZE);
>
> @@ -235,9 +247,9 @@ static int check_mocs_engine(struct live_mocs *arg,
> /* Compare the results against the expected tables */
> vaddr = arg->vaddr;
> if (!err)
> - err = check_mocs_table(ce->engine, &arg->mocs, &vaddr);
> + err = check_mocs_table(ce->engine, arg->mocs, &vaddr);
> if (!err && ce->engine->class == RENDER_CLASS)
> - err = check_l3cc_table(ce->engine, &arg->l3cc, &vaddr);
> + err = check_l3cc_table(ce->engine, arg->l3cc, &vaddr);
> if (err)
> return err;
>
> --
> 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
prev parent reply other threads:[~2021-02-02 18:53 UTC|newest]
Thread overview: 3+ messages / expand[flat|nested] mbox.gz Atom feed top
2021-02-01 10:04 [Intel-gfx] [PATCH] drm/i915/selftests: Use a single copy of the mocs table Chris Wilson
2021-02-01 15:46 ` [Intel-gfx] ✗ Fi.CI.BAT: failure for " Patchwork
2021-02-02 18:53 ` Mika Kuoppala [this message]
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=87czxiuwrq.fsf@gaia.fi.intel.com \
--to=mika.kuoppala@linux.intel.com \
--cc=chris@chris-wilson.co.uk \
--cc=intel-gfx@lists.freedesktop.org \
/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