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 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400
|
/*
* Copyright © 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:
* Daniel Vetter <daniel.vetter@ffwll.ch>
*
*/
#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 <drm.h>
#include "i915/gem.h"
#include "igt.h"
/**
* TEST: gem partial pwrite pread
* Description: Test pwrite/pread consistency when touching partial cachelines.
* Category: Core
* Mega feature: General Core features
* Sub-category: CMD submission
* Functionality: pread/pwrite
* Feature: caching, mapping
*
* SUBTEST: reads
* Description:
* Verify if pread is consistent while accessing partial cachelines with
* default caching level
*
* SUBTEST: reads-display
* Description:
* Verify if pread is consistent while accessing partial cachelines with
* display caching level
*
* SUBTEST: reads-snoop
* Description:
* Verify if pread is consistent while accessing partial cachelines
* with snoop caching level
*
* SUBTEST: reads-uncached
* Description:
* Verify if pread is consistent while accessing partial cachelines with
* uncached caching level
*
* SUBTEST: write
* Description:
* Verify if pwrite is consistent while accessing partial cachelines with
* default caching level
*
* SUBTEST: write-display
* Description:
* Verify if pwrite is consistent while accessing partial cachelines with
* display caching level
*
* SUBTEST: write-snoop
* Description:
* Verify if pwrite is consistent while accessing partial
* cachelines with snoop caching level
*
* SUBTEST: write-uncached
* Description:
* Verify if pwrite is consistent while accessing partial cachelines with
* uncached caching level
*
* SUBTEST: writes-after-reads
* Description:
* Verify if both pread, pwrite are consistent while accessing partial
* cachelines with default caching level
*
* SUBTEST: writes-after-reads-display
* Description:
* Verify if both pread, pwrite are consistent while accessing partial
* cachelines with display caching level
*
* SUBTEST: writes-after-reads-snoop
* Description:
* Verify if both pread, pwrite are consistent while accessing partial
* cachelines with snoop caching level
*
* SUBTEST: writes-after-reads-uncached
* Description:
* Verify if both pread, pwrite are consistent while accessing partial
* cachelines with uncached caching level
*/
IGT_TEST_DESCRIPTION("Test pwrite/pread consistency when touching partial"
" cachelines.");
/*
* Testcase: pwrite/pread consistency when touching partial cachelines
*
* Some fancy new pwrite/pread optimizations clflush in-line while
* reading/writing. Check whether all required clflushes happen.
*
*/
#define PAGE_SIZE 4096
#define BO_SIZE (4*4096)
struct intel_buf *scratch_buf;
struct intel_buf *staging_buf;
typedef struct {
int drm_fd;
uint32_t devid;
struct buf_ops *bops;
} data_t;
static void *__try_gtt_map_first(data_t *data, struct intel_buf *buf,
int write_enable)
{
uint8_t *ptr;
unsigned prot = PROT_READ | (write_enable ? PROT_WRITE : 0);
ptr = __gem_mmap__gtt(data->drm_fd, buf->handle, buf->surface[0].size, prot);
if (!ptr) {
ptr = gem_mmap__device_coherent(data->drm_fd, buf->handle,
0, buf->surface[0].size, prot);
}
return ptr;
}
static void copy_bo(struct intel_bb *ibb,
struct intel_buf *src, struct intel_buf *dst)
{
bool has_64b_reloc;
has_64b_reloc = ibb->gen >= 8;
intel_bb_add_intel_buf(ibb, src, false);
intel_bb_add_intel_buf(ibb, dst, true);
intel_bb_out(ibb,
XY_SRC_COPY_BLT_CMD |
XY_SRC_COPY_BLT_WRITE_ALPHA |
XY_SRC_COPY_BLT_WRITE_RGB |
(6 + 2 * has_64b_reloc));
intel_bb_out(ibb, 3 << 24 | 0xcc << 16 | 4096);
intel_bb_out(ibb, 0 << 16 | 0);
intel_bb_out(ibb, (BO_SIZE/4096) << 16 | 1024);
intel_bb_emit_reloc_fenced(ibb, dst->handle,
I915_GEM_DOMAIN_RENDER,
I915_GEM_DOMAIN_RENDER,
0, 0x0);
intel_bb_out(ibb, 0 << 16 | 0);
intel_bb_out(ibb, 4096);
intel_bb_emit_reloc_fenced(ibb, src->handle,
I915_GEM_DOMAIN_RENDER,
0, 0, 0x0);
intel_bb_flush_blit(ibb);
intel_bb_sync(ibb);
}
static void
blt_bo_fill(data_t *data, struct intel_bb *ibb,
struct intel_buf *tmp_bo, struct intel_buf *bo, uint8_t val)
{
uint8_t *gtt_ptr;
int i;
gtt_ptr = __try_gtt_map_first(data, tmp_bo, 1);
for (i = 0; i < BO_SIZE; i++)
gtt_ptr[i] = val;
munmap(gtt_ptr, tmp_bo->surface[0].size);
igt_drop_caches_set(data->drm_fd, DROP_BOUND);
copy_bo(ibb, tmp_bo, bo);
}
#define MAX_BLT_SIZE 128
#define ROUNDS 1000
uint8_t tmp[BO_SIZE];
static void get_range(int *start, int *len)
{
*start = random() % (BO_SIZE - 1);
*len = random() % (BO_SIZE - *start - 1) + 1;
}
static void test_partial_reads(data_t *data)
{
struct intel_bb *ibb;
int i, j;
ibb = intel_bb_create(data->drm_fd, PAGE_SIZE);
igt_info("checking partial reads\n");
for (i = 0; i < ROUNDS; i++) {
uint8_t val = i;
int start, len;
blt_bo_fill(data, ibb, staging_buf, scratch_buf, val);
get_range(&start, &len);
gem_read(data->drm_fd, scratch_buf->handle, start, tmp, len);
for (j = 0; j < len; j++) {
igt_assert_f(tmp[j] == val,
"mismatch at %i [%i + %i], got: %i, expected: %i\n",
j, start, len, tmp[j], val);
}
igt_progress("partial reads test: ", i, ROUNDS);
}
intel_bb_destroy(ibb);
}
static void test_partial_writes(data_t *data)
{
struct intel_bb *ibb;
int i, j;
uint8_t *gtt_ptr;
ibb = intel_bb_create(data->drm_fd, PAGE_SIZE);
igt_info("checking partial writes\n");
for (i = 0; i < ROUNDS; i++) {
uint8_t val = i;
int start, len;
blt_bo_fill(data, ibb, staging_buf, scratch_buf, val);
memset(tmp, i + 63, BO_SIZE);
get_range(&start, &len);
gem_write(data->drm_fd, scratch_buf->handle, start, tmp, len);
copy_bo(ibb, scratch_buf, staging_buf);
gtt_ptr = __try_gtt_map_first(data, staging_buf, 0);
for (j = 0; j < start; j++) {
igt_assert_f(gtt_ptr[j] == val,
"mismatch at %i (start=%i), got: %i, expected: %i\n",
j, start, tmp[j], val);
}
for (; j < start + len; j++) {
igt_assert_f(gtt_ptr[j] == tmp[0],
"mismatch at %i (%i/%i), got: %i, expected: %i\n",
j, j-start, len, tmp[j], i);
}
for (; j < BO_SIZE; j++) {
igt_assert_f(gtt_ptr[j] == val,
"mismatch at %i (end=%i), got: %i, expected: %i\n",
j, start+len, tmp[j], val);
}
munmap(gtt_ptr, staging_buf->surface[0].size);
igt_progress("partial writes test: ", i, ROUNDS);
}
intel_bb_destroy(ibb);
}
static void test_partial_read_writes(data_t *data)
{
struct intel_bb *ibb;
int i, j;
uint8_t *gtt_ptr;
ibb = intel_bb_create(data->drm_fd, PAGE_SIZE);
igt_info("checking partial writes after partial reads\n");
for (i = 0; i < ROUNDS; i++) {
uint8_t val = i;
int start, len;
blt_bo_fill(data, ibb, staging_buf, scratch_buf, val);
/* partial read */
get_range(&start, &len);
gem_read(data->drm_fd, scratch_buf->handle, start, tmp, len);
for (j = 0; j < len; j++) {
igt_assert_f(tmp[j] == val,
"mismatch in read at %i [%i + %i], got: %i, expected: %i\n",
j, start, len, tmp[j], val);
}
/* Change contents through gtt to make the pread cachelines
* stale. */
val += 17;
blt_bo_fill(data, ibb, staging_buf, scratch_buf, val);
/* partial write */
memset(tmp, i + 63, BO_SIZE);
get_range(&start, &len);
gem_write(data->drm_fd, scratch_buf->handle, start, tmp, len);
copy_bo(ibb, scratch_buf, staging_buf);
gtt_ptr = __try_gtt_map_first(data, staging_buf, 0);
for (j = 0; j < start; j++) {
igt_assert_f(gtt_ptr[j] == val,
"mismatch at %i (start=%i), got: %i, expected: %i\n",
j, start, tmp[j], val);
}
for (; j < start + len; j++) {
igt_assert_f(gtt_ptr[j] == tmp[0],
"mismatch at %i (%i/%i), got: %i, expected: %i\n",
j, j - start, len, tmp[j], tmp[0]);
}
for (; j < BO_SIZE; j++) {
igt_assert_f(gtt_ptr[j] == val,
"mismatch at %i (end=%i), got: %i, expected: %i\n",
j, start + len, tmp[j], val);
}
munmap(gtt_ptr, staging_buf->surface[0].size);
igt_progress("partial read/writes test: ", i, ROUNDS);
}
intel_bb_destroy(ibb);
}
static void do_tests(data_t *data, int cache_level, const char *suffix)
{
igt_fixture {
if (cache_level != -1)
gem_set_caching(data->drm_fd, scratch_buf->handle, cache_level);
}
igt_describe_f("Verify if pread is consistent while accessing partial cachelines "
"with %s caching level", cache_level == -1 ? "default" : suffix+1);
igt_subtest_f("reads%s", suffix)
test_partial_reads(data);
igt_describe_f("Verify if pwrite is consistent while accessing partial cachelines "
"with %s caching level", cache_level == -1 ? "default" : suffix+1);
igt_subtest_f("write%s", suffix)
test_partial_writes(data);
igt_describe_f("Verify if both pread, pwrite are consistent while accessing partial "
"cachelines with %s caching level", cache_level == -1 ? "default" : suffix+1);
igt_subtest_f("writes-after-reads%s", suffix)
test_partial_read_writes(data);
}
igt_main
{
data_t data = {0, };
srandom(0xdeadbeef);
igt_fixture {
data.drm_fd = drm_open_driver(DRIVER_INTEL);
igt_require_gem(data.drm_fd);
gem_require_blitter(data.drm_fd);
gem_require_pread_pwrite(data.drm_fd);
data.devid = intel_get_drm_devid(data.drm_fd);
data.bops = buf_ops_create(data.drm_fd);
/* overallocate the buffers we're actually using because */
scratch_buf = intel_buf_create(data.bops, BO_SIZE/4, 1, 32, 0, I915_TILING_NONE, 0);
staging_buf = intel_buf_create(data.bops, BO_SIZE/4, 1, 32, 0, I915_TILING_NONE, 0);
}
do_tests(&data, -1, "");
/* Repeat the tests using different levels of snooping */
do_tests(&data, 0, "-uncached");
do_tests(&data, 1, "-snoop");
do_tests(&data, 2, "-display");
igt_fixture {
intel_buf_destroy(scratch_buf);
intel_buf_destroy(staging_buf);
buf_ops_destroy(data.bops);
drm_close_driver(data.drm_fd);
}
}
|