public inbox for igt-dev@lists.freedesktop.org
 help / color / mirror / Atom feed
From: Karolina Stolarek <karolina.stolarek@intel.com>
To: igt-dev@lists.freedesktop.org
Subject: [igt-dev] [PATCH i-g-t v7 0/9] Introduce blt_cmd_info struct
Date: Fri, 20 Jan 2023 11:14:00 +0100	[thread overview]
Message-ID: <cover.1674208534.git.karolina.stolarek@intel.com> (raw)

This patch series introduces a new way of checking if a specific
tiling format and/or blitter copy command is supported on
the current platform. Instead of using functions with hardcoded
devices, now we store information about available features in
blt_cmd_info struct, each of the instances connected to the
intel_device_info definitions.

Two patches that follow the introduction of blt_cmd_info and 
intel_device_info modification are a prep work for the fast
copy test -- extracting needed functions and updating
fill_data() to support TileYF (available only for Pre-gen12).

In addition to this, the patchset adds two fast copy tests: basic
fast-copy where two blit copies are done in separate batches, and
fast-copy-emit which uses emit_blt_fast_copy() and manually
crafts two copies in one batch.

v7:
  - Break down the first patch in the series into three separate
    changes (Zbigniew)
  - Add requirement for "gem_uses_full_ppgtt(i915)" to
    gem_exercise_blt (Zbigniew)
  - Rename supported_tiling field in blt_cmd_info to supported_cmds
    (Zbigniew)
  - Add GET_BLT_INFO in i915_blt.c to wrap calls to
    intel_get_blt_info

v6:
  - Rename the library to intel_tiling_info, and keep only struct
    definitions there
  - Move predicates to i915_blt.c, as this is going to be the main
    user of the library
  - Regenerate patch "lib/i915_blt: Add common functions for
    blt_copy_object", as i915_blt.(ch) significantly changed after
    rewriting the first patch

v5:
  - Rebase, fix conflict in gem_ccs.c

v4:
  - Move the inclusion of igt_core.h to intel_blt_info.c
    (Kamil/Petri)
  - Rename __MAX_TILING and __MAX_CMD so they are blitter-specific 
    (Kamil)
  - Use BIT() macro from intel_chipset.h (Zbigniew)
  - Check for empty blt_tiling_info in tiling_info(), and warn
    about it
  - Change blt_cmd_info declarations in intel_blt_info. Add a
    separate file for their definitions (intel_tiling_info.c).
    Update lib/mason.build to reflect that change (Zbigniew)
  - Remove definitions for ATS-M, as we can reuse dg2's (Zbigniew)
  - Add EXEC_OBJECT_WRITE flag for dest in fast-copy-emit subtest
    (Zbigniew)

Karolina Stolarek (9):
  lib/i915_blt: Rename blt_tiling to blt_tiling_type
  lib/i915_blt: Add T_YFMAJOR tiling type
  lib/i915_blt: Check for Tile-YF in fast_copy
  i915/lib: Add new library for blitter and tiling formats
  lib/intel_device_info: Update platform definitions with blitter
    information
  lib/i915_blt: Add helpers to check if command or tiling is supported
  lib/i915_blt: Add common functions for blt_copy_object
  tests/gem_exercise_blt: Add fast-copy test
  tests/gem_exercise_blt: Add fast-copy-emit test

 lib/i915/i915_blt.c            | 238 ++++++++++++++++++--
 lib/i915/i915_blt.h            |  53 +++--
 lib/i915/intel_tiling_info.c   |  88 ++++++++
 lib/i915/intel_tiling_info.h   |  47 ++++
 lib/intel_chipset.h            |   4 +
 lib/intel_device_info.c        |  47 ++++
 lib/meson.build                |   5 +-
 tests/i915/gem_ccs.c           | 209 +++++-------------
 tests/i915/gem_exercise_blt.c  | 389 +++++++++++++++++++++++++++++++++
 tests/i915/gem_lmem_swapping.c |  81 ++-----
 tests/meson.build              |   1 +
 11 files changed, 910 insertions(+), 252 deletions(-)
 create mode 100644 lib/i915/intel_tiling_info.c
 create mode 100644 lib/i915/intel_tiling_info.h
 create mode 100644 tests/i915/gem_exercise_blt.c

-- 
2.25.1

             reply	other threads:[~2023-01-20 10:14 UTC|newest]

Thread overview: 17+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2023-01-20 10:14 Karolina Stolarek [this message]
2023-01-20 10:14 ` [igt-dev] [PATCH i-g-t v7 1/9] lib/i915_blt: Rename blt_tiling to blt_tiling_type Karolina Stolarek
2023-01-20 11:03   ` Zbigniew Kempczyński
2023-01-20 10:14 ` [igt-dev] [PATCH i-g-t v7 2/9] lib/i915_blt: Add T_YFMAJOR tiling type Karolina Stolarek
2023-01-20 11:05   ` Zbigniew Kempczyński
2023-01-20 10:14 ` [igt-dev] [PATCH i-g-t v7 3/9] lib/i915_blt: Check for Tile-YF in fast_copy Karolina Stolarek
2023-01-20 10:14 ` [igt-dev] [PATCH i-g-t v7 4/9] i915/lib: Add new library for blitter and tiling formats Karolina Stolarek
2023-01-20 11:08   ` Zbigniew Kempczyński
2023-01-20 10:14 ` [igt-dev] [PATCH i-g-t v7 5/9] lib/intel_device_info: Update platform definitions with blitter information Karolina Stolarek
2023-01-20 11:10   ` Zbigniew Kempczyński
2023-01-20 10:14 ` [igt-dev] [PATCH i-g-t v7 6/9] lib/i915_blt: Add helpers to check if command or tiling is supported Karolina Stolarek
2023-01-20 11:12   ` Zbigniew Kempczyński
2023-01-20 10:14 ` [igt-dev] [PATCH i-g-t v7 7/9] lib/i915_blt: Add common functions for blt_copy_object Karolina Stolarek
2023-01-20 10:14 ` [igt-dev] [PATCH i-g-t v7 8/9] tests/gem_exercise_blt: Add fast-copy test Karolina Stolarek
2023-01-20 10:14 ` [igt-dev] [PATCH i-g-t v7 9/9] tests/gem_exercise_blt: Add fast-copy-emit test Karolina Stolarek
2023-01-20 11:56 ` [igt-dev] ✓ Fi.CI.BAT: success for Introduce blt_cmd_info struct (rev7) Patchwork
2023-01-21 17:07 ` [igt-dev] ✓ 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=cover.1674208534.git.karolina.stolarek@intel.com \
    --to=karolina.stolarek@intel.com \
    --cc=igt-dev@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