2 * Copyright © 2011 Intel Corporation
4 * Permission is hereby granted, free of charge, to any person obtaining a
5 * copy of this software and associated documentation files (the "Software"),
6 * to deal in the Software without restriction, including without limitation
7 * the rights to use, copy, modify, merge, publish, distribute, sublicense,
8 * and/or sell copies of the Software, and to permit persons to whom the
9 * Software is furnished to do so, subject to the following conditions:
11 * The above copyright notice and this permission notice (including the next
12 * paragraph) shall be included in all copies or substantial portions of the
15 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
18 * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
20 * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS
24 * Daniel Vetter <daniel.vetter@ffwll.ch>
39 #include "ioctl_wrappers.h"
41 #include "intel_chipset.h"
46 * Testcase: pwrite/pread consistency when touching partial cachelines
48 * Some fancy new pwrite/pread optimizations clflush in-line while
49 * reading/writing. Check whether all required clflushes happen.
53 static drm_intel_bufmgr *bufmgr;
54 struct intel_batchbuffer *batch;
56 drm_intel_bo *scratch_bo;
57 drm_intel_bo *staging_bo;
58 #define BO_SIZE (4*4096)
60 uint64_t mappable_gtt_limit;
64 copy_bo(drm_intel_bo *src, drm_intel_bo *dst)
66 BLIT_COPY_BATCH_START(devid, 0);
67 OUT_BATCH((3 << 24) | /* 32 bits */
68 (0xcc << 16) | /* copy ROP */
70 OUT_BATCH(0 << 16 | 0);
71 OUT_BATCH((BO_SIZE/4096) << 16 | 1024);
72 OUT_RELOC_FENCED(dst, I915_GEM_DOMAIN_RENDER, I915_GEM_DOMAIN_RENDER, 0);
73 BLIT_RELOC_UDW(devid);
74 OUT_BATCH(0 << 16 | 0);
76 OUT_RELOC_FENCED(src, I915_GEM_DOMAIN_RENDER, 0, 0);
77 BLIT_RELOC_UDW(devid);
80 intel_batchbuffer_flush(batch);
84 blt_bo_fill(drm_intel_bo *tmp_bo, drm_intel_bo *bo, int val)
89 drm_intel_gem_bo_map_gtt(tmp_bo);
90 gtt_ptr = tmp_bo->virtual;
92 for (i = 0; i < BO_SIZE; i++)
95 drm_intel_gem_bo_unmap_gtt(tmp_bo);
97 if (bo->offset < mappable_gtt_limit &&
98 (IS_G33(devid) || intel_gen(devid) >= 4))
104 #define MAX_BLT_SIZE 128
106 uint8_t tmp[BO_SIZE];
108 static void test_partial_reads(void)
112 igt_info("checking partial reads\n");
113 for (i = 0; i < ROUNDS; i++) {
117 blt_bo_fill(staging_bo, scratch_bo, i);
119 start = random() % BO_SIZE;
120 len = random() % (BO_SIZE-start) + 1;
122 drm_intel_bo_get_subdata(scratch_bo, start, len, tmp);
123 for (j = 0; j < len; j++) {
124 igt_assert_f(tmp[j] == val,
125 "mismatch at %i, got: %i, expected: %i\n",
129 igt_progress("partial reads test: ", i, ROUNDS);
134 static void test_partial_writes(void)
139 igt_info("checking partial writes\n");
140 for (i = 0; i < ROUNDS; i++) {
144 blt_bo_fill(staging_bo, scratch_bo, i);
146 start = random() % BO_SIZE;
147 len = random() % (BO_SIZE-start) + 1;
149 memset(tmp, i + 63, BO_SIZE);
151 drm_intel_bo_subdata(scratch_bo, start, len, tmp);
153 copy_bo(scratch_bo, staging_bo);
154 drm_intel_gem_bo_map_gtt(staging_bo);
155 gtt_ptr = staging_bo->virtual;
157 for (j = 0; j < start; j++) {
158 igt_assert_f(gtt_ptr[j] == val,
159 "mismatch at %i, got: %i, expected: %i\n",
162 for (; j < start + len; j++) {
163 igt_assert_f(gtt_ptr[j] == tmp[0],
164 "mismatch at %i, got: %i, expected: %i\n",
167 for (; j < BO_SIZE; j++) {
168 igt_assert_f(gtt_ptr[j] == val,
169 "mismatch at %i, got: %i, expected: %i\n",
172 drm_intel_gem_bo_unmap_gtt(staging_bo);
174 igt_progress("partial writes test: ", i, ROUNDS);
179 static void test_partial_read_writes(void)
184 igt_info("checking partial writes after partial reads\n");
185 for (i = 0; i < ROUNDS; i++) {
189 blt_bo_fill(staging_bo, scratch_bo, i);
192 start = random() % BO_SIZE;
193 len = random() % (BO_SIZE-start) + 1;
195 drm_intel_bo_get_subdata(scratch_bo, start, len, tmp);
196 for (j = 0; j < len; j++) {
197 igt_assert_f(tmp[j] == val,
198 "mismatch in read at %i, got: %i, expected: %i\n",
202 /* Change contents through gtt to make the pread cachelines
204 val = (i + 17) % 256;
205 blt_bo_fill(staging_bo, scratch_bo, val);
208 start = random() % BO_SIZE;
209 len = random() % (BO_SIZE-start) + 1;
211 memset(tmp, i + 63, BO_SIZE);
213 drm_intel_bo_subdata(scratch_bo, start, len, tmp);
215 copy_bo(scratch_bo, staging_bo);
216 drm_intel_gem_bo_map_gtt(staging_bo);
217 gtt_ptr = staging_bo->virtual;
219 for (j = 0; j < start; j++) {
220 igt_assert_f(gtt_ptr[j] == val,
221 "mismatch at %i, got: %i, expected: %i\n",
224 for (; j < start + len; j++) {
225 igt_assert_f(gtt_ptr[j] == tmp[0],
226 "mismatch at %i, got: %i, expected: %i\n",
229 for (; j < BO_SIZE; j++) {
230 igt_assert_f(gtt_ptr[j] == val,
231 "mismatch at %i, got: %i, expected: %i\n",
234 drm_intel_gem_bo_unmap_gtt(staging_bo);
236 igt_progress("partial read/writes test: ", i, ROUNDS);
240 static void do_tests(int cache_level, const char *suffix)
243 if (cache_level != -1)
244 gem_set_caching(fd, scratch_bo->handle, cache_level);
247 igt_subtest_f("reads%s", suffix)
248 test_partial_reads();
250 igt_subtest_f("write%s", suffix)
251 test_partial_writes();
253 igt_subtest_f("writes-after-reads%s", suffix)
254 test_partial_read_writes();
261 igt_skip_on_simulation();
266 bufmgr = drm_intel_bufmgr_gem_init(fd, 4096);
267 //drm_intel_bufmgr_gem_enable_reuse(bufmgr);
268 devid = intel_get_drm_devid(fd);
269 batch = intel_batchbuffer_alloc(bufmgr, devid);
271 /* overallocate the buffers we're actually using because */
272 scratch_bo = drm_intel_bo_alloc(bufmgr, "scratch bo", BO_SIZE, 4096);
273 staging_bo = drm_intel_bo_alloc(bufmgr, "staging bo", BO_SIZE, 4096);
275 igt_init_aperture_trashers(bufmgr);
276 mappable_gtt_limit = gem_mappable_aperture_size();
281 /* Repeat the tests using different levels of snooping */
282 do_tests(0, "-uncached");
283 do_tests(1, "-snoop");
284 do_tests(2, "-display");
287 igt_cleanup_aperture_trashers();
288 drm_intel_bufmgr_destroy(bufmgr);