Prepare for 64bit relocation addresses
[platform/upstream/intel-gpu-tools.git] / tests / gem_double_irq_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 #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 #include "drm.h"
37 #include "ioctl_wrappers.h"
38 #include "drmtest.h"
39 #include "intel_bufmgr.h"
40 #include "intel_batchbuffer.h"
41 #include "intel_io.h"
42 #include "i830_reg.h"
43 #include "intel_chipset.h"
44
45 static drm_intel_bufmgr *bufmgr;
46 struct intel_batchbuffer *batch;
47 static drm_intel_bo *target_buffer, *blt_bo;
48
49 /*
50  * Testcase: Basic check for missed irqs on blt
51  *
52  * Execs one large and then immediately a tiny batch on the blt ring. Then waits
53  * on the second batch. This hopefully catches races in our irq acknowledgement.
54  */
55
56
57 #define MI_COND_BATCH_BUFFER_END        (0x36<<23 | 1)
58 #define MI_DO_COMPARE                   (1<<21)
59 static void
60 dummy_reloc_loop(void)
61 {
62         int i;
63
64         for (i = 0; i < 0x800; i++) {
65                 BLIT_COPY_BATCH_START(batch->devid, 0);
66                 OUT_BATCH((3 << 24) | /* 32 bits */
67                           (0xcc << 16) | /* copy ROP */
68                           4*4096);
69                 OUT_BATCH(2048 << 16 | 0);
70                 OUT_BATCH((4096) << 16 | (2048));
71                 OUT_RELOC_FENCED(blt_bo, I915_GEM_DOMAIN_RENDER, I915_GEM_DOMAIN_RENDER, 0);
72                 OUT_BATCH(0 << 16 | 0);
73                 OUT_BATCH(4*4096);
74                 OUT_RELOC_FENCED(blt_bo, I915_GEM_DOMAIN_RENDER, 0, 0);
75                 ADVANCE_BATCH();
76                 intel_batchbuffer_flush(batch);
77
78                 BEGIN_BATCH(4);
79                 OUT_BATCH(MI_FLUSH_DW | 1);
80                 OUT_BATCH(0); /* reserved */
81                 OUT_RELOC(target_buffer, I915_GEM_DOMAIN_RENDER,
82                                 I915_GEM_DOMAIN_RENDER, 0);
83                 OUT_BATCH(MI_NOOP | (1<<22) | (0xf));
84                 ADVANCE_BATCH();
85                 intel_batchbuffer_flush(batch);
86
87                 drm_intel_bo_map(target_buffer, 0);
88                 // map to force completion
89                 drm_intel_bo_unmap(target_buffer);
90         }
91 }
92
93 igt_simple_main
94 {
95         int fd;
96         int devid;
97
98         igt_skip_on_simulation();
99
100         fd = drm_open_any();
101         devid = intel_get_drm_devid(fd);
102         igt_require_f(HAS_BLT_RING(devid),
103                       "not (yet) implemented for pre-snb\n");
104
105         bufmgr = drm_intel_bufmgr_gem_init(fd, 4096);
106         igt_assert(bufmgr);
107         drm_intel_bufmgr_gem_enable_reuse(bufmgr);
108
109         batch = intel_batchbuffer_alloc(bufmgr, devid);
110         igt_assert(batch);
111
112         target_buffer = drm_intel_bo_alloc(bufmgr, "target bo", 4096, 4096);
113         igt_assert(target_buffer);
114
115         blt_bo = drm_intel_bo_alloc(bufmgr, "target bo", 4*4096*4096, 4096);
116         igt_assert(blt_bo);
117
118         dummy_reloc_loop();
119
120         drm_intel_bo_unreference(target_buffer);
121         intel_batchbuffer_free(batch);
122         drm_intel_bufmgr_destroy(bufmgr);
123
124         close(fd);
125 }