intel-gpu-tools: add sys/wait.h to pm_rps.c
[platform/upstream/intel-gpu-tools.git] / tests / gem_pipe_control_store_loop.c
1 /*
2  * Copyright © 2011 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> (based on gem_storedw_*.c)
25  *
26  */
27
28 /*
29  * Testcase: (TLB-)Coherency of pipe_control QW writes
30  *
31  * Writes a counter-value into an always newly allocated target bo (by disabling
32  * buffer reuse). Decently trashes on tlb inconsistencies, too.
33  */
34 #include <stdlib.h>
35 #include <stdio.h>
36 #include <string.h>
37 #include <fcntl.h>
38 #include <inttypes.h>
39 #include <errno.h>
40 #include <sys/stat.h>
41 #include <sys/time.h>
42 #include "drm.h"
43 #include "ioctl_wrappers.h"
44 #include "drmtest.h"
45 #include "intel_bufmgr.h"
46 #include "intel_batchbuffer.h"
47 #include "intel_chipset.h"
48 #include "intel_io.h"
49
50 static drm_intel_bufmgr *bufmgr;
51 struct intel_batchbuffer *batch;
52 uint32_t devid;
53
54 #define GFX_OP_PIPE_CONTROL     ((0x3<<29)|(0x3<<27)|(0x2<<24)|2)
55 #define   PIPE_CONTROL_WRITE_IMMEDIATE  (1<<14)
56 #define   PIPE_CONTROL_WRITE_TIMESTAMP  (3<<14)
57 #define   PIPE_CONTROL_DEPTH_STALL (1<<13)
58 #define   PIPE_CONTROL_WC_FLUSH (1<<12)
59 #define   PIPE_CONTROL_IS_FLUSH (1<<11) /* MBZ on Ironlake */
60 #define   PIPE_CONTROL_TC_FLUSH (1<<10) /* GM45+ only */
61 #define   PIPE_CONTROL_STALL_AT_SCOREBOARD (1<<1)
62 #define   PIPE_CONTROL_CS_STALL (1<<20)
63 #define   PIPE_CONTROL_GLOBAL_GTT (1<<2) /* in addr dword */
64
65 /* Like the store dword test, but we create new command buffers each time */
66 static void
67 store_pipe_control_loop(bool preuse_buffer)
68 {
69         int i, val = 0;
70         uint32_t *buf;
71         drm_intel_bo *target_bo;
72
73         for (i = 0; i < SLOW_QUICK(0x10000, 4); i++) {
74                 /* we want to check tlb consistency of the pipe_control target,
75                  * so get a new buffer every time around */
76                 target_bo = drm_intel_bo_alloc(bufmgr, "target bo", 4096, 4096);
77                 igt_assert(target_bo);
78
79                 if (preuse_buffer) {
80                         COLOR_BLIT_COPY_BATCH_START(devid, 0);
81                         OUT_BATCH((3 << 24) | (0xf0 << 16) | 64);
82                         OUT_BATCH(0);
83                         OUT_BATCH(1 << 16 | 1);
84
85                         /*
86                          * IMPORTANT: We need to preuse the buffer in a
87                          * different domain than what the pipe control write
88                          * (and kernel wa) uses!
89                          */
90                         OUT_RELOC(target_bo,
91                              I915_GEM_DOMAIN_RENDER, I915_GEM_DOMAIN_RENDER,
92                              0);
93                         BLIT_RELOC_UDW(devid);
94                         OUT_BATCH(0xdeadbeef);
95                         ADVANCE_BATCH();
96
97                         intel_batchbuffer_flush(batch);
98                 }
99
100                 /* gem_storedw_batches_loop.c is a bit overenthusiastic with
101                  * creating new batchbuffers - with buffer reuse disabled, the
102                  * support code will do that for us. */
103                 if (intel_gen(devid) >= 8) {
104                         BEGIN_BATCH(5);
105                         OUT_BATCH(GFX_OP_PIPE_CONTROL + 1);
106                         OUT_BATCH(PIPE_CONTROL_WRITE_IMMEDIATE);
107                         OUT_RELOC(target_bo,
108                              I915_GEM_DOMAIN_INSTRUCTION, I915_GEM_DOMAIN_INSTRUCTION,
109                              PIPE_CONTROL_GLOBAL_GTT);
110                         BLIT_RELOC_UDW(devid);
111                         OUT_BATCH(val); /* write data */
112                         ADVANCE_BATCH();
113
114                 } else if (intel_gen(devid) >= 6) {
115                         /* work-around hw issue, see intel_emit_post_sync_nonzero_flush
116                          * in mesa sources. */
117                         BEGIN_BATCH(4);
118                         OUT_BATCH(GFX_OP_PIPE_CONTROL);
119                         OUT_BATCH(PIPE_CONTROL_CS_STALL |
120                              PIPE_CONTROL_STALL_AT_SCOREBOARD);
121                         OUT_BATCH(0); /* address */
122                         OUT_BATCH(0); /* write data */
123                         ADVANCE_BATCH();
124
125                         BEGIN_BATCH(4);
126                         OUT_BATCH(GFX_OP_PIPE_CONTROL);
127                         OUT_BATCH(PIPE_CONTROL_WRITE_IMMEDIATE);
128                         OUT_RELOC(target_bo,
129                              I915_GEM_DOMAIN_INSTRUCTION, I915_GEM_DOMAIN_INSTRUCTION, 
130                              PIPE_CONTROL_GLOBAL_GTT);
131                         OUT_BATCH(val); /* write data */
132                         ADVANCE_BATCH();
133                 } else if (intel_gen(devid) >= 4) {
134                         BEGIN_BATCH(4);
135                         OUT_BATCH(GFX_OP_PIPE_CONTROL | PIPE_CONTROL_WC_FLUSH |
136                                         PIPE_CONTROL_TC_FLUSH |
137                                         PIPE_CONTROL_WRITE_IMMEDIATE | 2);
138                         OUT_RELOC(target_bo,
139                                 I915_GEM_DOMAIN_INSTRUCTION, I915_GEM_DOMAIN_INSTRUCTION,
140                                 PIPE_CONTROL_GLOBAL_GTT);
141                         OUT_BATCH(val);
142                         OUT_BATCH(0xdeadbeef);
143                         ADVANCE_BATCH();
144                 }
145
146                 intel_batchbuffer_flush_on_ring(batch, 0);
147
148                 drm_intel_bo_map(target_bo, 1);
149
150                 buf = target_bo->virtual;
151                 igt_assert(buf[0] == val);
152
153                 drm_intel_bo_unmap(target_bo);
154                 /* Make doublesure that this buffer won't get reused. */
155                 drm_intel_bo_disable_reuse(target_bo);
156                 drm_intel_bo_unreference(target_bo);
157
158                 val++;
159         }
160 }
161
162 int fd;
163
164 igt_main
165 {
166         igt_fixture {
167                 fd = drm_open_any();
168                 devid = intel_get_drm_devid(fd);
169
170                 bufmgr = drm_intel_bufmgr_gem_init(fd, 4096);
171                 igt_assert(bufmgr);
172
173                 igt_skip_on(IS_GEN2(devid) || IS_GEN3(devid));
174                 igt_skip_on(devid == PCI_CHIP_I965_G); /* has totally broken pipe control */
175
176                 /* IMPORTANT: No call to
177                  * drm_intel_bufmgr_gem_enable_reuse(bufmgr);
178                  * here because we wan't to have fresh buffers (to trash the tlb)
179                  * every time! */
180
181                 batch = intel_batchbuffer_alloc(bufmgr, devid);
182                 igt_assert(batch);
183         }
184
185         igt_subtest("fresh-buffer")
186                 store_pipe_control_loop(false);
187
188         igt_subtest("reused-buffer")
189                 store_pipe_control_loop(true);
190
191         igt_fixture {
192                 intel_batchbuffer_free(batch);
193                 drm_intel_bufmgr_destroy(bufmgr);
194
195                 close(fd);
196         }
197 }