tests: Black list tests we don't want to run on simulation
[platform/upstream/intel-gpu-tools.git] / tests / gem_tiled_fence_blits.c
1 /*
2  * Copyright © 2009,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  *    Eric Anholt <eric@anholt.net>
25  *
26  */
27
28 /** @file gem_tiled_fence_blits.c
29  *
30  * This is a test of doing many tiled blits, with a working set
31  * larger than the aperture size.
32  *
33  * The goal is to catch a couple types of failure;
34  * - Fence management problems on pre-965.
35  * - A17 or L-shaped memory tiling workaround problems in acceleration.
36  *
37  * The model is to fill a collection of 1MB objects in a way that can't trip
38  * over A6 swizzling -- upload data to a non-tiled object, blit to the tiled
39  * object.  Then, copy the 1MB objects randomly between each other for a while.
40  * Finally, download their data through linear objects again and see what
41  * resulted.
42  */
43
44 #include <stdlib.h>
45 #include <stdio.h>
46 #include <string.h>
47 #include <assert.h>
48 #include <fcntl.h>
49 #include <inttypes.h>
50 #include <errno.h>
51 #include <sys/stat.h>
52 #include <sys/time.h>
53 #include "drm.h"
54 #include "i915_drm.h"
55 #include "drmtest.h"
56 #include "intel_bufmgr.h"
57 #include "intel_batchbuffer.h"
58 #include "intel_gpu_tools.h"
59
60 static drm_intel_bufmgr *bufmgr;
61 struct intel_batchbuffer *batch;
62 static int width = 512, height = 512;
63 static uint32_t linear[1024*1024/4];
64
65 static drm_intel_bo *
66 create_bo(int fd, uint32_t start_val)
67 {
68         drm_intel_bo *bo;
69         uint32_t tiling = I915_TILING_X;
70         int ret, i;
71
72         bo = drm_intel_bo_alloc(bufmgr, "tiled bo", 1024 * 1024, 4096);
73         ret = drm_intel_bo_set_tiling(bo, &tiling, width * 4);
74         assert(ret == 0);
75         assert(tiling == I915_TILING_X);
76
77         /* Fill the BO with dwords starting at start_val */
78         for (i = 0; i < 1024 * 1024 / 4; i++)
79                 linear[i] = start_val++;
80
81         gem_write(fd, bo->handle, 0, linear, sizeof(linear));
82
83         return bo;
84 }
85
86 static void
87 check_bo(int fd, drm_intel_bo *bo, uint32_t start_val)
88 {
89         int i;
90
91         gem_read(fd, bo->handle, 0, linear, sizeof(linear));
92
93         for (i = 0; i < 1024 * 1024 / 4; i++) {
94                 if (linear[i] != start_val) {
95                         fprintf(stderr, "Expected 0x%08x, found 0x%08x "
96                                 "at offset 0x%08x\n",
97                                 start_val, linear[i], i * 4);
98                         abort();
99                 }
100                 start_val++;
101         }
102 }
103
104 int main(int argc, char **argv)
105 {
106         drm_intel_bo *bo[4096];
107         uint32_t bo_start_val[4096];
108         uint32_t start = 0;
109         int fd, i, count;
110
111         drmtest_skip_on_simulation();
112
113         fd = drm_open_any();
114         count = 3 * gem_aperture_size(fd) / (1024*1024) / 2;
115         if (count > intel_get_total_ram_mb() * 9 / 10) {
116                 count = intel_get_total_ram_mb() * 9 / 10;
117                 printf("not enough RAM to run test, reducing buffer count\n");
118         }
119         count |= 1;
120         printf("Using %d 1MiB buffers\n", count);
121
122         bufmgr = drm_intel_bufmgr_gem_init(fd, 4096);
123         drm_intel_bufmgr_gem_enable_reuse(bufmgr);
124         batch = intel_batchbuffer_alloc(bufmgr, intel_get_drm_devid(fd));
125
126         for (i = 0; i < count; i++) {
127                 bo[i] = create_bo(fd, start);
128                 bo_start_val[i] = start;
129
130                 /*
131                 printf("Creating bo %d\n", i);
132                 check_bo(bo[i], bo_start_val[i]);
133                 */
134
135                 start += 1024 * 1024 / 4;
136         }
137
138         for (i = 0; i < count; i++) {
139                 int src = count - i - 1;
140                 intel_copy_bo(batch, bo[i], bo[src], width, height);
141                 bo_start_val[i] = bo_start_val[src];
142         }
143
144         for (i = 0; i < count * 4; i++) {
145                 int src = random() % count;
146                 int dst = random() % count;
147
148                 if (src == dst)
149                         continue;
150
151                 intel_copy_bo(batch, bo[dst], bo[src], width, height);
152                 bo_start_val[dst] = bo_start_val[src];
153
154                 /*
155                 check_bo(bo[dst], bo_start_val[dst]);
156                 printf("%d: copy bo %d to %d\n", i, src, dst);
157                 */
158         }
159
160         for (i = 0; i < count; i++) {
161                 /*
162                 printf("check %d\n", i);
163                 */
164                 check_bo(fd, bo[i], bo_start_val[i]);
165
166                 drm_intel_bo_unreference(bo[i]);
167                 bo[i] = NULL;
168         }
169
170         intel_batchbuffer_free(batch);
171         drm_intel_bufmgr_destroy(bufmgr);
172
173         close(fd);
174
175         return 0;
176 }