kms_rotation_crc: Remove useless comments
[platform/upstream/intel-gpu-tools.git] / tests / gem_bad_reloc.c
1 /*
2  * Copyright © 2014 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  *    Chris Wilson <chris@chris-wilson.co.uk>
25  *
26  */
27
28 #include <unistd.h>
29 #include <stdlib.h>
30 #include <stdint.h>
31 #include <stdio.h>
32 #include <string.h>
33 #include <fcntl.h>
34 #include <inttypes.h>
35 #include <errno.h>
36 #include <sys/stat.h>
37 #include <sys/ioctl.h>
38 #include <sys/time.h>
39 #include "drm.h"
40 #include "ioctl_wrappers.h"
41 #include "drmtest.h"
42 #include "intel_io.h"
43 #include "intel_chipset.h"
44
45 #define USE_LUT (1 << 12)
46
47 /* Simulates SNA behaviour using negative self-relocations for
48  * STATE_BASE_ADDRESS command packets. If they wrap around (to values greater
49  * than the total size of the GTT), the GPU will hang.
50  * See https://bugs.freedesktop.org/show_bug.cgi?id=78533
51  */
52 static int negative_reloc(int fd, unsigned flags)
53 {
54         struct drm_i915_gem_execbuffer2 execbuf;
55         struct drm_i915_gem_exec_object2 gem_exec[2];
56         struct drm_i915_gem_relocation_entry gem_reloc[1000];
57         uint64_t gtt_max = gem_aperture_size(fd);
58         uint32_t buf[1024] = {MI_BATCH_BUFFER_END};
59         int i;
60
61 #define BIAS (256*1024)
62
63         igt_require(intel_gen(intel_get_drm_devid(fd)) >= 7);
64
65         memset(gem_exec, 0, sizeof(gem_exec));
66         gem_exec[0].handle = gem_create(fd, 4096);
67         gem_write(fd, gem_exec[0].handle, 0, buf, 8);
68
69         gem_reloc[0].offset = 1024;
70         gem_reloc[0].delta = 0;
71         gem_reloc[0].target_handle = gem_exec[0].handle;
72         gem_reloc[0].read_domains = I915_GEM_DOMAIN_COMMAND;
73
74         gem_exec[1].handle = gem_create(fd, 4096);
75         gem_write(fd, gem_exec[1].handle, 0, buf, 8);
76         gem_exec[1].relocation_count = 1;
77         gem_exec[1].relocs_ptr = (uintptr_t)gem_reloc;
78
79         memset(&execbuf, 0, sizeof(execbuf));
80         execbuf.buffers_ptr = (uintptr_t)gem_exec;
81         execbuf.buffer_count = 2;
82         execbuf.batch_len = 8;
83
84         do_or_die(drmIoctl(fd,
85                            DRM_IOCTL_I915_GEM_EXECBUFFER2,
86                            &execbuf));
87         gem_close(fd, gem_exec[1].handle);
88
89         igt_info("Found offset %ld for 4k batch\n", (long)gem_exec[0].offset);
90         igt_require(gem_exec[0].offset < BIAS);
91
92         memset(gem_reloc, 0, sizeof(gem_reloc));
93         for (i = 0; i < sizeof(gem_reloc)/sizeof(gem_reloc[0]); i++) {
94                 gem_reloc[i].offset = 8 + 4*i;
95                 gem_reloc[i].delta = -BIAS*i/1024;
96                 gem_reloc[i].target_handle = flags & USE_LUT ? 0 : gem_exec[0].handle;
97                 gem_reloc[i].read_domains = I915_GEM_DOMAIN_COMMAND;
98         }
99
100         gem_exec[0].relocation_count = sizeof(gem_reloc)/sizeof(gem_reloc[0]);
101         gem_exec[0].relocs_ptr = (uintptr_t)gem_reloc;
102
103         execbuf.buffer_count = 1;
104         execbuf.flags = flags & USE_LUT;
105         do_or_die(drmIoctl(fd,
106                            DRM_IOCTL_I915_GEM_EXECBUFFER2,
107                            &execbuf));
108
109         igt_info("Batch is now at offset %ld\n", (long)gem_exec[0].offset);
110
111         gem_read(fd, gem_exec[0].handle, 0, buf, sizeof(buf));
112         gem_close(fd, gem_exec[0].handle);
113
114         for (i = 0; i < sizeof(gem_reloc)/sizeof(gem_reloc[0]); i++)
115                 igt_assert(buf[2 + i] < gtt_max);
116
117         return 0;
118 }
119
120 int fd;
121
122 igt_main
123 {
124         igt_fixture {
125                 fd = drm_open_any();
126         }
127
128         igt_subtest("negative-reloc")
129                 negative_reloc(fd, 0);
130
131         igt_subtest("negative-reloc-lut")
132                 negative_reloc(fd, USE_LUT);
133
134         igt_fixture {
135                 close(fd);
136         }
137 }