[Intel-gfx] [PATCH 1/2] drm/i915/selftest: Simplify Y-major tiling in blit selftest
Kalvala, Haridhar
haridhar.kalvala at intel.com
Wed Aug 16 06:40:43 UTC 2023
On 8/11/2023 5:16 AM, Matt Roper wrote:
> Rather than picking random tiling formats from a pool that contains both
> TileY and Tile4 and then trying to replace one with the other depending
> on the platform, it's simpler to just use a single enum value that
> represents whatever the platform-appropriate Y-major tiling format is
> (i.e., Tile4 on Xe_HP and beyond, legacy TileY on earlier platforms).
>
> Signed-off-by: Matt Roper <matthew.d.roper at intel.com>
> ---
> .../i915/gem/selftests/i915_gem_client_blt.c | 39 +++++++------------
> 1 file changed, 15 insertions(+), 24 deletions(-)
>
> diff --git a/drivers/gpu/drm/i915/gem/selftests/i915_gem_client_blt.c b/drivers/gpu/drm/i915/gem/selftests/i915_gem_client_blt.c
> index ff81af4c8202..10a7847f1b04 100644
> --- a/drivers/gpu/drm/i915/gem/selftests/i915_gem_client_blt.c
> +++ b/drivers/gpu/drm/i915/gem/selftests/i915_gem_client_blt.c
> @@ -83,8 +83,7 @@ static int linear_x_y_to_ftiled_pos(int x, int y, u32 stride, int bpp)
> enum client_tiling {
> CLIENT_TILING_LINEAR,
> CLIENT_TILING_X,
> - CLIENT_TILING_Y,
> - CLIENT_TILING_4,
> + CLIENT_TILING_Y, /* Y-major, either Tile4 (Xe_HP and beyond) or legacy TileY */
> CLIENT_NUM_TILING_TYPES
> };
>
> @@ -165,11 +164,10 @@ static int prepare_blit(const struct tiled_blits *t,
> BLIT_CCTL_DST_MOCS(gt->mocs.uc_index));
>
> src_pitch = t->width; /* in dwords */
> - if (src->tiling == CLIENT_TILING_4) {
> - src_tiles = XY_FAST_COPY_BLT_D0_SRC_TILE_MODE(YMAJOR);
> - src_4t = XY_FAST_COPY_BLT_D1_SRC_TILE4;
> - } else if (src->tiling == CLIENT_TILING_Y) {
> + if (src->tiling == CLIENT_TILING_Y) {
> src_tiles = XY_FAST_COPY_BLT_D0_SRC_TILE_MODE(YMAJOR);
> + if (GRAPHICS_VER_FULL(to_i915(batch->base.dev)) >= IP_VER(12, 50))
> + src_4t = XY_FAST_COPY_BLT_D1_SRC_TILE4;
> } else if (src->tiling == CLIENT_TILING_X) {
> src_tiles = XY_FAST_COPY_BLT_D0_SRC_TILE_MODE(TILE_X);
> } else {
> @@ -177,11 +175,10 @@ static int prepare_blit(const struct tiled_blits *t,
> }
>
> dst_pitch = t->width; /* in dwords */
> - if (dst->tiling == CLIENT_TILING_4) {
> - dst_tiles = XY_FAST_COPY_BLT_D0_DST_TILE_MODE(YMAJOR);
> - dst_4t = XY_FAST_COPY_BLT_D1_DST_TILE4;
> - } else if (dst->tiling == CLIENT_TILING_Y) {
> + if (dst->tiling == CLIENT_TILING_Y) {
> dst_tiles = XY_FAST_COPY_BLT_D0_DST_TILE_MODE(YMAJOR);
> + if (GRAPHICS_VER_FULL(to_i915(batch->base.dev)) >= IP_VER(12, 50))
> + dst_4t = XY_FAST_COPY_BLT_D1_DST_TILE4;
> } else if (dst->tiling == CLIENT_TILING_X) {
> dst_tiles = XY_FAST_COPY_BLT_D0_DST_TILE_MODE(TILE_X);
> } else {
> @@ -326,12 +323,6 @@ static int tiled_blits_create_buffers(struct tiled_blits *t,
> t->buffers[i].vma = vma;
> t->buffers[i].tiling =
> i915_prandom_u32_max_state(CLIENT_NUM_TILING_TYPES, prng);
> -
> - /* Platforms support either TileY or Tile4, not both */
> - if (HAS_4TILE(i915) && t->buffers[i].tiling == CLIENT_TILING_Y)
> - t->buffers[i].tiling = CLIENT_TILING_4;
> - else if (!HAS_4TILE(i915) && t->buffers[i].tiling == CLIENT_TILING_4)
> - t->buffers[i].tiling = CLIENT_TILING_Y;
> }
>
> return 0;
> @@ -367,18 +358,19 @@ static u64 tiled_offset(const struct intel_gt *gt,
>
> y = div64_u64_rem(v, stride, &x);
>
> - if (tiling == CLIENT_TILING_4) {
> - v = linear_x_y_to_ftiled_pos(x_pos, y_pos, stride, 32);
> -
> - /* no swizzling for f-tiling */
> - swizzle = I915_BIT_6_SWIZZLE_NONE;
> - } else if (tiling == CLIENT_TILING_X) {
> + if (tiling == CLIENT_TILING_X) {
> v = div64_u64_rem(y, 8, &y) * stride * 8;
> v += y * 512;
> v += div64_u64_rem(x, 512, &x) << 12;
> v += x;
>
> swizzle = gt->ggtt->bit_6_swizzle_x;
> + } else if (GRAPHICS_VER_FULL(gt->i915) >= IP_VER(12, 50)) {
> + /* Y-major tiling layout is Tile4 for Xe_HP and beyond */
> + v = linear_x_y_to_ftiled_pos(x_pos, y_pos, stride, 32);
> +
> + /* no swizzling for f-tiling */
> + swizzle = I915_BIT_6_SWIZZLE_NONE;
> } else {
> const unsigned int ytile_span = 16;
> const unsigned int ytile_height = 512;
> @@ -414,8 +406,7 @@ static const char *repr_tiling(enum client_tiling tiling)
> switch (tiling) {
> case CLIENT_TILING_LINEAR: return "linear";
> case CLIENT_TILING_X: return "X";
> - case CLIENT_TILING_Y: return "Y";
> - case CLIENT_TILING_4: return "F";
> + case CLIENT_TILING_Y: return "Y / 4";
Hi Matt,
Looks good to me.
can we return "Y" or "4" instead of "Y / 4" by checking graphics version ?
> default: return "unknown";
> }
> }
--
Regards,
Haridhar Kalvala
More information about the Intel-gfx
mailing list