blob: c7206dca45c9221d08a3c70656dd4d58ecb2fc28 [file] [log] [blame]
Chris Wilsonf62abaf2014-01-10 13:42:55 +00001/*
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 <sys/wait.h>
40
41#include "drm.h"
42#include "i915_drm.h"
43#include "drmtest.h"
44
Chris Wilsonf62abaf2014-01-10 13:42:55 +000045static const uint32_t canary = 0xdeadbeef;
46
Rodrigo Vivicde058a2014-03-18 11:18:56 -030047typedef struct data {
48 int fd;
49 int devid;
50 int intel_gen;
51} data_t;
52
Chris Wilsonf62abaf2014-01-10 13:42:55 +000053static double elapsed(const struct timeval *start,
54 const struct timeval *end)
55{
56 return 1e6*(end->tv_sec - start->tv_sec) + (end->tv_usec - start->tv_usec);
57}
58
Rodrigo Vivicde058a2014-03-18 11:18:56 -030059static void busy(data_t *data, uint32_t handle, int size, int loops)
Chris Wilsonf62abaf2014-01-10 13:42:55 +000060{
61 struct drm_i915_gem_relocation_entry reloc[20];
62 struct drm_i915_gem_exec_object2 gem_exec[2];
63 struct drm_i915_gem_execbuffer2 execbuf;
64 struct drm_i915_gem_pwrite gem_pwrite;
65 struct drm_i915_gem_create create;
Rodrigo Vivicde058a2014-03-18 11:18:56 -030066 uint32_t buf[170], *b;
Chris Wilsonf62abaf2014-01-10 13:42:55 +000067 int i;
68
69 memset(reloc, 0, sizeof(reloc));
70 memset(gem_exec, 0, sizeof(gem_exec));
71 memset(&execbuf, 0, sizeof(execbuf));
72
73 b = buf;
74 for (i = 0; i < 20; i++) {
Rodrigo Vivicde058a2014-03-18 11:18:56 -030075 *b++ = XY_COLOR_BLT_CMD_NOLEN |
76 ((data->intel_gen >= 8) ? 5 : 4) |
Rodrigo Vivid8164352014-03-18 11:18:55 -030077 COLOR_BLT_WRITE_ALPHA | XY_COLOR_BLT_WRITE_RGB;
Chris Wilsonf62abaf2014-01-10 13:42:55 +000078 *b++ = 0xf0 << 16 | 1 << 25 | 1 << 24 | 4096;
Rodrigo Vivid8164352014-03-18 11:18:55 -030079 *b++ = 0;
80 *b++ = size >> 12 << 16 | 1024;
Chris Wilsonf62abaf2014-01-10 13:42:55 +000081 reloc[i].offset = (b - buf) * sizeof(uint32_t);
82 reloc[i].target_handle = handle;
83 reloc[i].read_domains = I915_GEM_DOMAIN_RENDER;
84 reloc[i].write_domain = I915_GEM_DOMAIN_RENDER;
85 *b++ = 0;
Rodrigo Vivicde058a2014-03-18 11:18:56 -030086 if (data->intel_gen >= 8)
87 *b++ = 0;
Chris Wilsonf62abaf2014-01-10 13:42:55 +000088 *b++ = canary;
89 }
90 *b++ = MI_BATCH_BUFFER_END;
Rodrigo Vivicde058a2014-03-18 11:18:56 -030091 if ((b - buf) & 1)
92 *b++ = 0;
Chris Wilsonf62abaf2014-01-10 13:42:55 +000093
94 gem_exec[0].handle = handle;
95 gem_exec[0].flags = EXEC_OBJECT_NEEDS_FENCE;
96
97 create.handle = 0;
98 create.size = 4096;
Rodrigo Vivicde058a2014-03-18 11:18:56 -030099 drmIoctl(data->fd, DRM_IOCTL_I915_GEM_CREATE, &create);
Chris Wilsonf62abaf2014-01-10 13:42:55 +0000100 gem_exec[1].handle = create.handle;
101 gem_exec[1].relocation_count = 20;
102 gem_exec[1].relocs_ptr = (uintptr_t)reloc;
103
104 execbuf.buffers_ptr = (uintptr_t)gem_exec;
105 execbuf.buffer_count = 2;
Rodrigo Vivicde058a2014-03-18 11:18:56 -0300106 execbuf.batch_len = (b - buf) * sizeof(buf[0]);
Chris Wilsonf62abaf2014-01-10 13:42:55 +0000107 execbuf.flags = 1 << 11;
Rodrigo Vivicde058a2014-03-18 11:18:56 -0300108 if (HAS_BLT_RING(data->devid))
Chris Wilsonf62abaf2014-01-10 13:42:55 +0000109 execbuf.flags |= I915_EXEC_BLT;
110
111 gem_pwrite.handle = gem_exec[1].handle;
112 gem_pwrite.offset = 0;
Rodrigo Vivicde058a2014-03-18 11:18:56 -0300113 gem_pwrite.size = execbuf.batch_len;
Chris Wilsonf62abaf2014-01-10 13:42:55 +0000114 gem_pwrite.data_ptr = (uintptr_t)buf;
Rodrigo Vivicde058a2014-03-18 11:18:56 -0300115 if (drmIoctl(data->fd, DRM_IOCTL_I915_GEM_PWRITE, &gem_pwrite) == 0) {
Chris Wilsonf62abaf2014-01-10 13:42:55 +0000116 while (loops--)
Rodrigo Vivicde058a2014-03-18 11:18:56 -0300117 drmIoctl(data->fd, DRM_IOCTL_I915_GEM_EXECBUFFER2, &execbuf);
Chris Wilsonf62abaf2014-01-10 13:42:55 +0000118 }
119
Rodrigo Vivicde058a2014-03-18 11:18:56 -0300120 drmIoctl(data->fd, DRM_IOCTL_GEM_CLOSE, &create.handle);
Chris Wilsonf62abaf2014-01-10 13:42:55 +0000121}
122
Rodrigo Vivicde058a2014-03-18 11:18:56 -0300123static void run(data_t *data, int child)
Chris Wilsonf62abaf2014-01-10 13:42:55 +0000124{
125 const int size = 4096 * (256 + child * child);
126 const int tiling = child % 2;
127 const int write = child % 2;
Rodrigo Vivicde058a2014-03-18 11:18:56 -0300128 uint32_t handle = gem_create(data->fd, size);
Chris Wilsonf62abaf2014-01-10 13:42:55 +0000129 uint32_t *ptr;
130 uint32_t x;
131
132 igt_assert(handle);
133
134 if (tiling != I915_TILING_NONE)
Rodrigo Vivicde058a2014-03-18 11:18:56 -0300135 gem_set_tiling(data->fd, handle, tiling, 4096);
Chris Wilsonf62abaf2014-01-10 13:42:55 +0000136
137 /* load up the unfaulted bo */
Rodrigo Vivicde058a2014-03-18 11:18:56 -0300138 busy(data, handle, size, 100);
Chris Wilsonf62abaf2014-01-10 13:42:55 +0000139
140 /* Note that we ignore the API and rely on the implict
141 * set-to-gtt-domain within the fault handler.
142 */
143 if (write) {
Rodrigo Vivicde058a2014-03-18 11:18:56 -0300144 ptr = gem_mmap(data->fd, handle, size, PROT_READ | PROT_WRITE);
Chris Wilsonf62abaf2014-01-10 13:42:55 +0000145 ptr[rand() % (size / 4)] = canary;
146 } else
Rodrigo Vivicde058a2014-03-18 11:18:56 -0300147 ptr = gem_mmap(data->fd, handle, size, PROT_READ);
Chris Wilsonf62abaf2014-01-10 13:42:55 +0000148 x = ptr[rand() % (size / 4)];
149 munmap(ptr, size);
150
151 igt_assert(x == canary);
Chris Wilson5e278c82014-01-15 10:40:40 +0000152 exit(0);
Chris Wilsonf62abaf2014-01-10 13:42:55 +0000153}
154
Daniel Vetter8fa20662014-01-15 23:59:52 +0100155igt_simple_main
Chris Wilsonf62abaf2014-01-10 13:42:55 +0000156{
157 struct timeval start, end;
158 pid_t children[64];
Rodrigo Vivicde058a2014-03-18 11:18:56 -0300159 data_t data = {};
Chris Wilsonf62abaf2014-01-10 13:42:55 +0000160 int n;
161
Daniel Vetter58633cf2014-02-12 00:05:57 +0100162 /* check for an intel gpu before goint nuts. */
163 int fd = drm_open_any();
164 close(fd);
165
Chris Wilsonf62abaf2014-01-10 13:42:55 +0000166 igt_skip_on_simulation();
167
Rodrigo Vivicde058a2014-03-18 11:18:56 -0300168 data.fd = drm_open_any();
169 data.devid = intel_get_drm_devid(data.fd);
170 data.intel_gen = intel_gen(data.devid);
171
Chris Wilsonf62abaf2014-01-10 13:42:55 +0000172 gettimeofday(&start, NULL);
173 for (n = 0; n < ARRAY_SIZE(children); n++) {
174 switch ((children[n] = fork())) {
175 case -1: igt_assert(0);
Rodrigo Vivicde058a2014-03-18 11:18:56 -0300176 case 0: run(&data, n); break;
Chris Wilsonf62abaf2014-01-10 13:42:55 +0000177 default: break;
178 }
179 }
180
181 for (n = 0; n < ARRAY_SIZE(children); n++) {
182 int status = -1;
183 while (waitpid(children[n], &status, 0) == -1 &&
184 errno == -EINTR)
185 ;
186 igt_assert(status == 0);
187 }
188 gettimeofday(&end, NULL);
Chris Wilson84af2b92014-01-10 16:09:57 +0000189 printf("Time to execute %lu children: %7.3fms\n",
190 ARRAY_SIZE(children), elapsed(&start, &end) / 1000);
Chris Wilsonf62abaf2014-01-10 13:42:55 +0000191}