igt/gem_userptr_blits: Fix forked access test
[platform/upstream/intel-gpu-tools.git] / tests / gem_write_read_ring_switch.c
1 /*
2  * Copyright © 2013 Intel Corporation
3  *
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:
10  *
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
13  * Software.
14  *
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
21  * IN THE SOFTWARE.
22  *
23  * Authors:
24  *    Daniel Vetter <daniel.vetter@ffwll.ch>
25  *
26  */
27
28 #include <stdlib.h>
29 #include <stdio.h>
30 #include <string.h>
31 #include <fcntl.h>
32 #include <inttypes.h>
33 #include <errno.h>
34 #include <sys/stat.h>
35 #include <sys/time.h>
36
37 #include <drm.h>
38
39 #include "ioctl_wrappers.h"
40 #include "drmtest.h"
41 #include "intel_chipset.h"
42 #include "intel_io.h"
43 #include "i830_reg.h"
44 #include "igt_aux.h"
45
46 #define LOCAL_I915_EXEC_VEBOX (4<<0)
47
48 static drm_intel_bufmgr *bufmgr;
49 struct intel_batchbuffer *batch;
50 static drm_intel_bo *load_bo, *target_bo, *dummy_bo;
51 int fd;
52
53 /* Testcase: check read/write syncpoints when switching rings
54  *
55  * We've had a bug where the syncpoint for the last write was mangled after a
56  * ring switch using semaphores. This resulted in cpu reads returning before the
57  * write actually completed. This test exercises this.
58  */
59
60 #define COLOR 0xffffffff
61 static void run_test(int ring)
62 {
63         uint32_t *ptr;
64         int i;
65
66         gem_require_ring(fd, ring);
67         /* Testing render only makes sense with separate blt. */
68         if (ring == I915_EXEC_RENDER)
69                 gem_require_ring(fd, I915_EXEC_BLT);
70
71         target_bo = drm_intel_bo_alloc(bufmgr, "target bo", 4096, 4096);
72         igt_assert(target_bo);
73
74         /* Need to map first so that we can do our own domain mangement with
75          * set_domain. */
76         drm_intel_bo_map(target_bo, 0);
77         ptr = target_bo->virtual;
78         igt_assert(*ptr == 0);
79
80         /* put some load onto the gpu to keep the light buffers active for long
81          * enough */
82         for (i = 0; i < 1000; i++) {
83                 BLIT_COPY_BATCH_START(batch->devid, 0);
84                 OUT_BATCH((3 << 24) | /* 32 bits */
85                           (0xcc << 16) | /* copy ROP */
86                           4096);
87                 OUT_BATCH(0); /* dst x1,y1 */
88                 OUT_BATCH((1024 << 16) | 512);
89                 OUT_RELOC(load_bo, I915_GEM_DOMAIN_RENDER, I915_GEM_DOMAIN_RENDER, 0);
90                 BLIT_RELOC_UDW(batch->devid);
91                 OUT_BATCH((0 << 16) | 512); /* src x1, y1 */
92                 OUT_BATCH(4096);
93                 OUT_RELOC(load_bo, I915_GEM_DOMAIN_RENDER, 0, 0);
94                 BLIT_RELOC_UDW(batch->devid);
95                 ADVANCE_BATCH();
96         }
97
98         COLOR_BLIT_COPY_BATCH_START(batch->devid, 0);
99         OUT_BATCH((3 << 24) | /* 32 bits */
100                   (0xff << 16) |
101                   128);
102         OUT_BATCH(0); /* dst x1,y1 */
103         OUT_BATCH((1 << 16) | 1);
104         OUT_RELOC(target_bo, I915_GEM_DOMAIN_RENDER, I915_GEM_DOMAIN_RENDER, 0);
105         BLIT_RELOC_UDW(batch->devid);
106         OUT_BATCH(COLOR);
107         ADVANCE_BATCH();
108
109         intel_batchbuffer_flush(batch);
110
111         /* Emit an empty batch so that signalled seqno on the target ring >
112          * signalled seqnoe on the blt ring. This is required to hit the bug. */
113         BEGIN_BATCH(2);
114         OUT_BATCH(MI_NOOP);
115         OUT_BATCH(MI_NOOP);
116         ADVANCE_BATCH();
117         intel_batchbuffer_flush_on_ring(batch, ring);
118
119         /* For the ring->ring sync it's important to only emit a read reloc, for
120          * otherwise the obj->last_write_seqno will be updated. */
121         if (ring == I915_EXEC_RENDER) {
122                 BEGIN_BATCH(4);
123                 OUT_BATCH(MI_COND_BATCH_BUFFER_END | MI_DO_COMPARE);
124                 OUT_BATCH(0xffffffff); /* compare dword */
125                 OUT_RELOC(target_bo, I915_GEM_DOMAIN_RENDER, 0, 0);
126                 OUT_BATCH(MI_NOOP);
127                 ADVANCE_BATCH();
128         } else {
129                 BEGIN_BATCH(4);
130                 OUT_BATCH(MI_FLUSH_DW | 1);
131                 OUT_BATCH(0); /* reserved */
132                 OUT_RELOC(target_bo, I915_GEM_DOMAIN_RENDER, 0, 0);
133                 OUT_BATCH(MI_NOOP | (1<<22) | (0xf));
134                 ADVANCE_BATCH();
135         }
136         intel_batchbuffer_flush_on_ring(batch, ring);
137
138         gem_set_domain(fd, target_bo->handle, I915_GEM_DOMAIN_GTT, 0);
139         igt_assert(*ptr == COLOR);
140         drm_intel_bo_unmap(target_bo);
141
142         drm_intel_bo_unreference(target_bo);
143 }
144
145 igt_main
146 {
147         static const struct {
148                 const char *name;
149                 int ring;
150         } tests[] = {
151                 { "blt2render", I915_EXEC_RENDER },
152                 { "blt2bsd", I915_EXEC_BSD },
153                 { "blt2vebox", LOCAL_I915_EXEC_VEBOX },
154         };
155         int i;
156
157         igt_skip_on_simulation();
158
159         igt_fixture {
160                 fd = drm_open_any();
161
162                 /* Test requires MI_FLUSH_DW and MI_COND_BATCH_BUFFER_END */
163                 igt_require(intel_gen(intel_get_drm_devid(fd)) >= 6);
164
165                 bufmgr = drm_intel_bufmgr_gem_init(fd, 4096);
166                 igt_assert(bufmgr);
167                 /* don't enable buffer reuse!! */
168                 //drm_intel_bufmgr_gem_enable_reuse(bufmgr);
169
170                 batch = intel_batchbuffer_alloc(bufmgr, intel_get_drm_devid(fd));
171                 igt_assert(batch);
172
173                 dummy_bo = drm_intel_bo_alloc(bufmgr, "dummy bo", 4096, 4096);
174                 igt_assert(dummy_bo);
175
176                 load_bo = drm_intel_bo_alloc(bufmgr, "load bo", 1024*4096, 4096);
177                 igt_assert(load_bo);
178         }
179
180         for (i = 0; i < ARRAY_SIZE(tests); i++) {
181                 igt_subtest(tests[i].name)
182                         run_test(tests[i].ring);
183         }
184
185         igt_fork_signal_helper();
186         for (i = 0; i < ARRAY_SIZE(tests); i++) {
187                 igt_subtest_f("%s-interruptible", tests[i].name)
188                         run_test(tests[i].ring);
189         }
190         igt_stop_signal_helper();
191
192         igt_fixture {
193                 drm_intel_bufmgr_destroy(bufmgr);
194
195                 close(fd);
196         }
197 }