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 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347
|
/*
* Copyright © 2009,2011 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:
* Eric Anholt <eric@anholt.net>
*
*/
/** @file gem_tiled_fence_blits.c
*
* This is a test of doing many tiled blits, with a working set
* larger than the aperture size.
*
* The goal is to catch a couple types of failure;
* - Fence management problems on pre-965.
* - A17 or L-shaped memory tiling workaround problems in acceleration.
*
* The model is to fill a collection of 1MB objects in a way that can't trip
* over A6 swizzling -- upload data to a non-tiled object, blit to the tiled
* object. Then, copy the 1MB objects randomly between each other for a while.
* Finally, download their data through linear objects again and see what
* resulted.
*/
#include "i915/gem.h"
#include "i915/gem_create.h"
#include "igt.h"
#include "igt_x86.h"
/**
* TEST: gem tiled fence blits
* Description:
* Tests fence management problems related to tiled blits by performing many blits on tiled
* buffer objects with fences enabled and with working set larger than the aperture size.
* Category: Core
* Mega feature: General Core features
* Sub-category: Memory management tests
* Functionality: tiled blits
* Feature: gtt, mapping
*
* SUBTEST: basic
* Description: Check basic functionality.
*
* SUBTEST: normal
* Description: Check with parallel execution.
*/
IGT_TEST_DESCRIPTION("Tests fence management problems related to tiled blits by performing "
"many blits on tiled buffer objects with fences enabled and with working "
"set larger than the aperture size.");
enum { width = 512, height = 512 };
static uint32_t linear[width * height];
static const int bo_size = sizeof(linear);
static uint32_t create_bo(int fd, uint32_t start_val)
{
uint32_t handle;
uint32_t *ptr;
handle = gem_create(fd, bo_size);
gem_set_tiling(fd, handle, I915_TILING_X, width * 4);
/* Fill the BO with dwords starting at start_val */
ptr = gem_mmap__gtt(fd, handle, bo_size, PROT_WRITE);
gem_set_domain(fd, handle, I915_GEM_DOMAIN_GTT, I915_GEM_DOMAIN_GTT);
for (int i = 0; i < width * height; i++)
ptr[i] = start_val++;
munmap(ptr, bo_size);
return handle;
}
static void check_bo(int fd, uint32_t handle, uint32_t start_val)
{
uint32_t *ptr;
ptr = gem_mmap__gtt(fd, handle, bo_size, PROT_READ);
gem_set_domain(fd, handle, I915_GEM_DOMAIN_GTT, 0);
igt_memcpy_from_wc(linear, ptr, bo_size);
munmap(ptr, bo_size);
for (int i = 0; i < width * height; i++) {
igt_assert_f(linear[i] == start_val,
"Expected 0x%08x, found 0x%08x "
"at offset 0x%08x\n",
start_val, linear[i], i * 4);
start_val++;
}
}
static void
update_batch(int fd, uint32_t bb_handle,
struct drm_i915_gem_relocation_entry *reloc,
uint64_t dst_offset, uint64_t src_offset)
{
const unsigned int gen = intel_gen(intel_get_drm_devid(fd));
const bool has_64b_reloc = gen >= 8;
uint32_t *batch;
uint32_t pitch;
int i = 0;
batch = gem_mmap__cpu(fd, bb_handle, 0, 4096, PROT_WRITE);
batch[i] = (XY_SRC_COPY_BLT_CMD |
XY_SRC_COPY_BLT_WRITE_ALPHA |
XY_SRC_COPY_BLT_WRITE_RGB);
if (gen >= 4) {
batch[i] |= (XY_SRC_COPY_BLT_SRC_TILED |
XY_SRC_COPY_BLT_DST_TILED);
pitch = width;
} else {
pitch = 4 * width;
}
batch[i++] |= 6 + 2 * has_64b_reloc;
batch[i++] = 3 << 24 | 0xcc << 16 | pitch;
batch[i++] = 0; /* dst (x1, y1) */
batch[i++] = height << 16 | width; /* dst (x2 y2) */
reloc[0].offset = sizeof(*batch) * i;
reloc[0].read_domains = I915_GEM_DOMAIN_RENDER;
reloc[0].write_domain = I915_GEM_DOMAIN_RENDER;
batch[i++] = dst_offset;
if (has_64b_reloc)
batch[i++] = dst_offset >> 32;
batch[i++] = 0; /* src (x1, y1) */
batch[i++] = pitch;
reloc[1].offset = sizeof(*batch) * i;
reloc[1].read_domains = I915_GEM_DOMAIN_RENDER;
batch[i++] = src_offset;
if (has_64b_reloc)
batch[i++] = src_offset >> 32;
batch[i++] = MI_BATCH_BUFFER_END;
munmap(batch, 4096);
}
static void xchg_u32(void *array, unsigned i, unsigned j)
{
uint32_t *base = array;
igt_swap(base[i], base[j]);
}
static void run_test(int fd, int count, uint64_t end)
{
struct drm_i915_gem_relocation_entry reloc[2];
struct drm_i915_gem_exec_object2 obj[3];
struct drm_i915_gem_execbuffer2 eb;
uint32_t *src_order, *dst_order;
uint32_t *bo, *bo_start_val;
uint32_t start = 0;
uint64_t ahnd = 0, ahndbb = 0;
unsigned int repeat = 0;
if (!gem_has_relocations(fd)) {
ahnd = intel_allocator_open_full(fd, 0, 0, end,
INTEL_ALLOCATOR_RELOC,
ALLOC_STRATEGY_LOW_TO_HIGH, 0);
/* Use separated vm range for bb */
ahndbb = intel_allocator_open_full(fd, 1, end, 0,
INTEL_ALLOCATOR_RELOC,
ALLOC_STRATEGY_LOW_TO_HIGH, 0);
}
memset(reloc, 0, sizeof(reloc));
memset(obj, 0, sizeof(obj));
obj[0].flags = EXEC_OBJECT_NEEDS_FENCE;
obj[1].flags = EXEC_OBJECT_NEEDS_FENCE;
obj[2].handle = gem_create(fd, 4096);
obj[2].offset = get_offset(ahndbb, obj[2].handle, 4096, 0);
if (ahnd) {
obj[0].flags |= EXEC_OBJECT_PINNED | EXEC_OBJECT_WRITE;
obj[1].flags |= EXEC_OBJECT_PINNED;
obj[2].flags |= EXEC_OBJECT_PINNED | EXEC_OBJECT_SUPPORTS_48B_ADDRESS;
}
obj[2].relocs_ptr = to_user_pointer(reloc);
obj[2].relocation_count = !ahnd ? ARRAY_SIZE(reloc) : 0;
update_batch(fd, obj[2].handle, reloc,
obj[0].offset, obj[1].offset);
memset(&eb, 0, sizeof(eb));
eb.buffers_ptr = to_user_pointer(obj);
eb.buffer_count = ARRAY_SIZE(obj);
if (intel_gen(intel_get_drm_devid(fd)) >= 6)
eb.flags = I915_EXEC_BLT;
bo = calloc(count,
sizeof(*bo) + sizeof(*bo_start_val) +
sizeof(*src_order) + sizeof(*dst_order));
igt_assert(bo);
bo_start_val = bo + count;
src_order = bo_start_val + count;
dst_order = src_order + count;
for (int i = 0; i < count; i++) {
bo[i] = create_bo(fd, start);
bo_start_val[i] = start;
start += width * height;
src_order[i] = i;
dst_order[i] = i;
}
/* Twice should be enough to thrash (cause eviction and reload)... */
for (int pass = 0; pass < 3; pass++) {
igt_permute_array(src_order, count, xchg_u32);
igt_permute_array(dst_order, count, xchg_u32);
for (int i = 0; i < count; i++) {
int src = src_order[i];
int dst = dst_order[i];
int ret;
if (src == dst)
continue;
reloc[0].target_handle = obj[0].handle = bo[dst];
reloc[1].target_handle = obj[1].handle = bo[src];
if (ahnd) {
obj[0].offset = get_offset(ahnd, obj[0].handle,
sizeof(linear), 0);
obj[1].offset = get_offset(ahnd, obj[1].handle,
sizeof(linear), 0);
obj[2].offset = get_offset(ahndbb, obj[2].handle,
4096, 0);
update_batch(fd, obj[2].handle, reloc,
obj[0].offset, obj[1].offset);
}
ret = __gem_execbuf(fd, &eb);
/*
* 1. For relocations execbuf must succeed.
* 2. For softpinning we might hit situation two buffers
* would overlap (buffers picked to blit are randomized
* and we use more buffers aperture can hold).
* For such situation (ENOSPC) we just repeat pick
* and execute.
*/
if (!ahnd) {
igt_assert_eq(ret, 0);
} else {
igt_assert(ret == 0 || ret == -ENOSPC);
gem_close(fd, obj[2].handle);
put_offset(ahndbb, obj[2].handle);
obj[2].handle = gem_create(fd, 4096);
if (ret == -ENOSPC)
repeat++;
}
if (!ret)
bo_start_val[dst] = bo_start_val[src];
}
}
if (repeat)
igt_debug("Number of overlapping blits (repeated): %u, pid: %d\n",
repeat, getpid());
for (int i = 0; i < count; i++) {
check_bo(fd, bo[i], bo_start_val[i]);
gem_close(fd, bo[i]);
}
free(bo);
gem_close(fd, obj[2].handle);
put_ahnd(ahnd);
put_ahnd(ahndbb);
}
#define MAX_32b ((1ull << 32) - 4096)
igt_main
{
/*
* For machines with many cpu cores buffer verification can take
* almost minute, limitation to 4 cores keeps this time in seconds.
*/
const int ncpus = min_t(int, sysconf(_SC_NPROCESSORS_ONLN), 4);
uint64_t count = 0, end;
int fd;
igt_fixture {
fd = drm_open_driver(DRIVER_INTEL);
igt_require_gem(fd);
gem_require_blitter(fd);
gem_require_mappable_ggtt(fd);
count = gem_mappable_aperture_size(fd); /* thrash fences! */
if (count >> 32)
count = MAX_32b;
end = count;
count = 3 + count / (1024 * 1024);
igt_require(count > 1);
igt_require_memory(count, 1024 * 1024 , CHECK_RAM);
igt_debug("Using %'"PRIu64" 1MiB buffers on ncpus: %d\n",
count, ncpus);
count = (count + ncpus - 1) / ncpus;
}
igt_describe("Check basic functionality.");
igt_subtest("basic")
run_test(fd, 2, end);
igt_subtest_group {
igt_fixture {
intel_allocator_multiprocess_start();
}
igt_describe("Check with parallel execution.");
igt_subtest("normal") {
igt_fork(child, ncpus)
run_test(fd, count, end);
igt_waitchildren();
}
igt_fixture {
intel_allocator_multiprocess_stop();
}
}
igt_fixture
drm_close_driver(fd);
}
|