1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285
|
/*
* Copyright © 2012 Intel Corporation
*
* Permission is hereby granted, free of charge, to any person obtaining a
* copy of this software and associated documentation files (the "Software"),
* to deal in the Software without restriction, including without limitation
* the rights to use, copy, modify, merge, publish, distribute, sublicense,
* and/or sell copies of the Software, and to permit persons to whom the
* Software is furnished to do so, subject to the following conditions:
*
* The above copyright notice and this permission notice (including the next
* paragraph) shall be included in all copies or substantial portions of the
* Software.
*
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
* THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
* FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS
* IN THE SOFTWARE.
*
* Authors:
* Daniel Vetter <daniel.vetter@ffwll.ch>
*
*/
/** @file gem_set_tiling_vs_blt.c
*
* Testcase: Check for proper synchronization of tiling changes vs. tiled gpu
* access
*
* The blitter on gen3 and earlier needs properly set up fences. Which also
* means that for untiled blits we may not set up a fence before that blt has
* finished.
*
* Current kernels have a bug there, but it's pretty hard to hit because you
* need:
* - a blt on an untiled object which is aligned correctly for tiling.
* - a set_tiling to switch that object to tiling
* - another blt without any intervening cpu access that uses this object.
*
* Testcase has been extended to also check tiled->untiled and tiled->tiled
* transitions (i.e. changing stride).
*/
#include <stdlib.h>
#include <stdio.h>
#include <string.h>
#include <fcntl.h>
#include <inttypes.h>
#include <errno.h>
#include <sys/stat.h>
#include <sys/time.h>
#include <stdbool.h>
#include "drm.h"
#include "i915/gem.h"
#include "igt.h"
/**
* TEST: gem set tiling vs blt
* Description: Check for proper synchronization of tiling changes vs. tiled gpu access.
* Category: Core
* Mega feature: General Core features
* Sub-category: Blitter tests
* Functionality: tiling
* Feature: blitter, gtt
*
* SUBTEST: tiled-to-tiled
* Description: Check for proper synchronization of tiled->tiled transition.
*
* SUBTEST: tiled-to-untiled
* Description: Check for proper synchronization of tiled->untiled transition.
*
* SUBTEST: untiled-to-tiled
* Description: Check for proper synchronization of untiled->tiled transition.
*/
IGT_TEST_DESCRIPTION("Check for proper synchronization of tiling changes vs."
" tiled gpu access.");
#define TEST_SIZE (1024*1024)
#define TEST_STRIDE (4*1024)
#define TEST_HEIGHT(stride) (TEST_SIZE/(stride))
#define TEST_WIDTH(stride) ((stride)/4)
uint32_t data[TEST_SIZE/4];
static void __set_tiling(struct buf_ops *bops, struct intel_buf *buf,
uint32_t tiling, unsigned stride)
{
int ret;
ret = __gem_set_tiling(buf_ops_get_fd(bops), buf->handle, tiling, stride);
buf->surface[0].stride = stride;
buf->surface[0].size = buf->surface[0].stride * TEST_HEIGHT(stride);
buf->tiling = tiling;
igt_assert_eq(ret, 0);
}
static void do_test(struct buf_ops *bops, uint32_t tiling, unsigned stride,
uint32_t tiling_after, unsigned stride_after)
{
struct intel_buf *test_buf, *target_buf;
struct intel_bb *ibb;
igt_spin_t *busy;
int i, fd = buf_ops_get_fd(bops);
uint32_t *ptr;
uint32_t blt_stride, blt_bits;
uint32_t ring = I915_EXEC_DEFAULT;
bool tiling_changed = false;
ibb = intel_bb_create_with_relocs(fd, 4096);
igt_info("filling ring\n");
if (HAS_BLT_RING(ibb->devid))
ring = I915_EXEC_BLT;
busy = igt_spin_new(fd, .engine = ring);
igt_info("playing tricks .. ");
/* first allocate the target so it gets out of the way of playing funky
* tricks */
target_buf = intel_buf_create(bops, TEST_WIDTH(TEST_STRIDE),
TEST_HEIGHT(TEST_STRIDE), 32, 0,
I915_TILING_NONE, I915_COMPRESSION_NONE);
intel_bb_add_intel_buf(ibb, target_buf, true);
/* allocate buffer with parameters _after_ transition we want to check
* and touch it, so that it's properly aligned in the gtt. */
test_buf = intel_buf_create(bops, TEST_WIDTH(stride_after),
TEST_HEIGHT(stride_after), 32, 0,
tiling_after, I915_COMPRESSION_NONE);
ptr = gem_mmap__gtt(fd, test_buf->handle, TEST_SIZE,
PROT_READ | PROT_WRITE);
gem_set_domain(fd, test_buf->handle,
I915_GEM_DOMAIN_GTT, I915_GEM_DOMAIN_GTT);
*ptr = 0;
gem_munmap(ptr, TEST_SIZE);
/* Reuse previously aligned in the gtt object */
intel_buf_init_using_handle_and_size(bops, test_buf->handle, test_buf,
TEST_WIDTH(stride), TEST_HEIGHT(stride), 32,
0, tiling, I915_COMPRESSION_NONE,
test_buf->bo_size);
igt_assert_eq_u32(intel_buf_size(test_buf), TEST_SIZE);
intel_buf_set_ownership(test_buf, true);
intel_bb_add_intel_buf(ibb, test_buf, false);
if (tiling == I915_TILING_NONE) {
gem_write(fd, test_buf->handle, 0, data, TEST_SIZE);
} else {
ptr = gem_mmap__gtt(fd, test_buf->handle, TEST_SIZE,
PROT_READ | PROT_WRITE);
gem_set_domain(fd, test_buf->handle,
I915_GEM_DOMAIN_GTT, I915_GEM_DOMAIN_GTT);
memcpy(ptr, data, TEST_SIZE);
gem_munmap(ptr, TEST_SIZE);
ptr = NULL;
}
blt_stride = stride;
blt_bits = 0;
if (intel_gen(ibb->devid) >= 4 && tiling != I915_TILING_NONE) {
blt_stride /= 4;
blt_bits = XY_SRC_COPY_BLT_SRC_TILED;
}
intel_bb_blit_start(ibb, blt_bits);
intel_bb_out(ibb, (3 << 24) | /* 32 bits */
(0xcc << 16) | /* copy ROP */
stride);
intel_bb_out(ibb, 0 << 16 | 0);
intel_bb_out(ibb, (TEST_HEIGHT(stride)) << 16 | (TEST_WIDTH(stride)));
intel_bb_emit_reloc_fenced(ibb, target_buf->handle,
I915_GEM_DOMAIN_RENDER,
I915_GEM_DOMAIN_RENDER, 0, 0);
intel_bb_out(ibb, 0 << 16 | 0);
intel_bb_out(ibb, blt_stride);
intel_bb_emit_reloc_fenced(ibb, test_buf->handle,
I915_GEM_DOMAIN_RENDER, 0, 0, 0);
intel_bb_flush_blit(ibb);
__set_tiling(bops, test_buf, tiling_after, stride_after);
intel_bb_reset(ibb, true);
intel_bb_add_intel_buf(ibb, test_buf, true);
/* Note: We don't care about gen4+ here because the blitter doesn't use
* fences there. So not setting tiling flags on the tiled buffer is ok.
*/
intel_bb_blit_start(ibb, 0);
intel_bb_out(ibb, (3 << 24) | /* 32 bits */
(0xcc << 16) | /* copy ROP */
stride_after);
intel_bb_out(ibb, 0 << 16 | 0);
intel_bb_out(ibb, (1) << 16 | (1));
intel_bb_emit_reloc_fenced(ibb, test_buf->handle,
I915_GEM_DOMAIN_RENDER,
I915_GEM_DOMAIN_RENDER, 0, 0);
intel_bb_out(ibb, 0 << 16 | 0);
intel_bb_out(ibb, stride_after);
intel_bb_emit_reloc_fenced(ibb, test_buf->handle,
I915_GEM_DOMAIN_RENDER, 0, 0, 0);
intel_bb_flush_blit(ibb);
igt_spin_free(fd, busy);
/* Now try to trick the kernel the kernel into changing up the fencing
* too early. */
igt_info("checking .. ");
memset(data, 0, TEST_SIZE);
gem_read(fd, target_buf->handle, 0, data, TEST_SIZE);
for (i = 0; i < TEST_SIZE/4; i++)
igt_assert(data[i] == i);
/* check whether tiling on the test_buf actually changed. */
ptr = gem_mmap__gtt(fd, test_buf->handle, TEST_SIZE,
PROT_WRITE | PROT_READ);
gem_set_domain(fd, test_buf->handle, I915_GEM_DOMAIN_GTT, 0);
for (i = 0; i < TEST_SIZE/4; i++)
if (ptr[i] != data[i])
tiling_changed = true;
gem_munmap(ptr, TEST_SIZE);
igt_assert(tiling_changed);
intel_buf_destroy(test_buf);
intel_buf_destroy(target_buf);
igt_info("done\n");
}
igt_main
{
int fd, i;
uint32_t tiling, tiling_after;
struct buf_ops *bops;
igt_fixture {
for (i = 0; i < 1024*256; i++)
data[i] = i;
fd = drm_open_driver(DRIVER_INTEL);
igt_require_gem(fd);
gem_require_blitter(fd);
igt_require(gem_available_fences(fd) > 0);
bops = buf_ops_create(fd);
}
igt_describe("Check for proper synchronization of untiled->tiled transition.");
igt_subtest("untiled-to-tiled") {
tiling = I915_TILING_NONE;
tiling_after = I915_TILING_X;
do_test(bops, tiling, TEST_STRIDE, tiling_after, TEST_STRIDE);
igt_assert(tiling == I915_TILING_NONE);
igt_assert(tiling_after == I915_TILING_X);
}
igt_describe("Check for proper synchronization of tiled->untiled transition.");
igt_subtest("tiled-to-untiled") {
tiling = I915_TILING_X;
tiling_after = I915_TILING_NONE;
do_test(bops, tiling, TEST_STRIDE, tiling_after, TEST_STRIDE);
igt_assert(tiling == I915_TILING_X);
igt_assert(tiling_after == I915_TILING_NONE);
}
igt_describe("Check for proper synchronization of tiled->tiled transition.");
igt_subtest("tiled-to-tiled") {
tiling = I915_TILING_X;
tiling_after = I915_TILING_X;
do_test(bops, tiling, TEST_STRIDE/2, tiling_after, TEST_STRIDE);
igt_assert(tiling == I915_TILING_X);
igt_assert(tiling_after == I915_TILING_X);
}
igt_fixture{
buf_ops_destroy(bops);
drm_close_driver(fd);
}
}
|