blob: 533082a0c2f2db05570486f4b714b55d12bfa04f [file] [log] [blame]
Chris Wilson07d59b32011-01-20 22:10:10 +00001/*
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 * Chris Wilson <chris@chris-wilson.co.uk>
25 *
26 */
27
Thomas Wood804e11f2015-08-17 17:57:43 +010028#include "igt.h"
Chris Wilson07d59b32011-01-20 22:10:10 +000029#include <unistd.h>
30#include <stdlib.h>
31#include <stdint.h>
32#include <stdio.h>
33#include <string.h>
Chris Wilson07d59b32011-01-20 22:10:10 +000034#include <fcntl.h>
35#include <inttypes.h>
36#include <errno.h>
37#include <sys/stat.h>
38#include <sys/ioctl.h>
Chris Wilson07d59b32011-01-20 22:10:10 +000039#include <sys/time.h>
Chris Wilsonb4307092015-07-01 13:53:07 +010040#include <time.h>
Chris Wilson07d59b32011-01-20 22:10:10 +000041#include "drm.h"
Chris Wilson07d59b32011-01-20 22:10:10 +000042
Chris Wilsoncd8d3802015-03-24 09:15:12 +000043#define LOCAL_I915_EXEC_NO_RELOC (1<<11)
44#define LOCAL_I915_EXEC_HANDLE_LUT (1<<12)
45
Chris Wilson3a7325e2016-03-08 11:43:31 +000046#define LOCAL_I915_EXEC_BSD_SHIFT (13)
47#define LOCAL_I915_EXEC_BSD_MASK (3 << LOCAL_I915_EXEC_BSD_SHIFT)
Daniel Vetter51f08302012-12-05 19:29:11 +010048
Chris Wilson3a7325e2016-03-08 11:43:31 +000049#define ENGINE_FLAGS (I915_EXEC_RING_MASK | LOCAL_I915_EXEC_BSD_MASK)
Chris Wilson2659cbb2015-03-26 12:09:57 +000050
Chris Wilson3a7325e2016-03-08 11:43:31 +000051static double elapsed(const struct timespec *start, const struct timespec *end)
52{
53 return ((end->tv_sec - start->tv_sec) +
54 (end->tv_nsec - start->tv_nsec)*1e-9);
55}
56
Chris Wilson870c7742016-03-28 15:29:46 +010057static double nop_on_ring(int fd, uint32_t handle, unsigned ring_id,
58 int timeout, unsigned long *out)
Chris Wilson07d59b32011-01-20 22:10:10 +000059{
60 struct drm_i915_gem_execbuffer2 execbuf;
Chris Wilson3a7325e2016-03-08 11:43:31 +000061 struct drm_i915_gem_exec_object2 obj;
62 struct timespec start, now;
Chris Wilson870c7742016-03-28 15:29:46 +010063 unsigned long count;
Daniel Vetter8f5387e2013-08-13 13:20:58 +020064
Chris Wilson3a7325e2016-03-08 11:43:31 +000065 memset(&obj, 0, sizeof(obj));
66 obj.handle = handle;
Chris Wilson07d59b32011-01-20 22:10:10 +000067
Chris Wilsoncd8d3802015-03-24 09:15:12 +000068 memset(&execbuf, 0, sizeof(execbuf));
Chris Wilson3a7325e2016-03-08 11:43:31 +000069 execbuf.buffers_ptr = (uintptr_t)&obj;
Chris Wilsoncd8d3802015-03-24 09:15:12 +000070 execbuf.buffer_count = 1;
71 execbuf.flags = ring_id;
72 execbuf.flags |= LOCAL_I915_EXEC_HANDLE_LUT;
73 execbuf.flags |= LOCAL_I915_EXEC_NO_RELOC;
Chris Wilson3e2443f2016-03-10 11:50:53 +000074 if (__gem_execbuf(fd, &execbuf)) {
Chris Wilsoncd8d3802015-03-24 09:15:12 +000075 execbuf.flags = ring_id;
Chris Wilson3a7325e2016-03-08 11:43:31 +000076 gem_execbuf(fd, &execbuf);
Chris Wilsoncd8d3802015-03-24 09:15:12 +000077 }
78 gem_sync(fd, handle);
79
Chris Wilson870c7742016-03-28 15:29:46 +010080 count = 0;
Chris Wilson3a7325e2016-03-08 11:43:31 +000081 clock_gettime(CLOCK_MONOTONIC, &start);
82 do {
Chris Wilson870c7742016-03-28 15:29:46 +010083 for (int loop = 0; loop < 1024; loop++)
Chris Wilson3a7325e2016-03-08 11:43:31 +000084 gem_execbuf(fd, &execbuf);
Chris Wilson870c7742016-03-28 15:29:46 +010085
86 count += 1024;
Chris Wilson3a7325e2016-03-08 11:43:31 +000087 clock_gettime(CLOCK_MONOTONIC, &now);
Chris Wilson870c7742016-03-28 15:29:46 +010088 } while (elapsed(&start, &now) < timeout);
Chris Wilson3a7325e2016-03-08 11:43:31 +000089 gem_sync(fd, handle);
90 clock_gettime(CLOCK_MONOTONIC, &now);
91
Chris Wilson870c7742016-03-28 15:29:46 +010092 *out = count;
93 return elapsed(&start, &now);
94}
95
96static void single(int fd, uint32_t handle,
97 unsigned ring_id, const char *ring_name)
98{
99 double time;
100 unsigned long count;
101
102 gem_require_ring(fd, ring_id);
103
104 time = nop_on_ring(fd, handle, ring_id, 20, &count);
105 igt_info("%s: %'lu cycles: %.3fus\n",
106 ring_name, count, time*1e6 / count);
Chris Wilson3a7325e2016-03-08 11:43:31 +0000107}
108
Chris Wilson0aacdac2016-03-09 21:06:16 +0000109static bool ignore_engine(int fd, unsigned engine)
110{
111 if (engine == 0)
112 return true;
113
114 if (gem_has_bsd2(fd) && engine == I915_EXEC_BSD)
115 return true;
116
117 return false;
118}
119
Chris Wilson772393e2016-03-14 14:31:36 +0000120static void all(int fd, uint32_t handle, int timeout)
Chris Wilson3a7325e2016-03-08 11:43:31 +0000121{
122 struct drm_i915_gem_execbuffer2 execbuf;
123 struct drm_i915_gem_exec_object2 obj;
124 struct timespec start, now;
125 unsigned engines[16];
126 unsigned nengine;
127 unsigned engine;
Chris Wilson870c7742016-03-28 15:29:46 +0100128 unsigned long count;
Chris Wilson41a26b52016-03-28 16:26:01 +0100129 double time, max = 0, min = HUGE_VAL, sum = 0;
Chris Wilson870c7742016-03-28 15:29:46 +0100130 const char *name;
Chris Wilson3a7325e2016-03-08 11:43:31 +0000131
132 nengine = 0;
Chris Wilson870c7742016-03-28 15:29:46 +0100133 for_each_engine(fd, engine) {
134 if (ignore_engine(fd, engine))
135 continue;
136
137 time = nop_on_ring(fd, handle, engine, 1, &count) / count;
138 if (time > max) {
139 name = e__->name;
140 max = time;
141 }
Chris Wilson41a26b52016-03-28 16:26:01 +0100142 if (time < min)
143 min = time;
Chris Wilson870c7742016-03-28 15:29:46 +0100144 sum += time;
145 engines[nengine++] = engine;
146 }
Chris Wilson0aacdac2016-03-09 21:06:16 +0000147 igt_require(nengine);
Chris Wilson870c7742016-03-28 15:29:46 +0100148 igt_info("Maximum execution latency on %s, %.3fus, total %.3fus per cycle\n",
149 name, max*1e6, sum*1e6);
Chris Wilson3a7325e2016-03-08 11:43:31 +0000150
151 memset(&obj, 0, sizeof(obj));
152 obj.handle = handle;
153
154 memset(&execbuf, 0, sizeof(execbuf));
155 execbuf.buffers_ptr = (uintptr_t)&obj;
156 execbuf.buffer_count = 1;
157 execbuf.flags |= LOCAL_I915_EXEC_HANDLE_LUT;
158 execbuf.flags |= LOCAL_I915_EXEC_NO_RELOC;
Chris Wilson3e2443f2016-03-10 11:50:53 +0000159 if (__gem_execbuf(fd, &execbuf)) {
Chris Wilson3a7325e2016-03-08 11:43:31 +0000160 execbuf.flags = 0;
161 gem_execbuf(fd, &execbuf);
Chris Wilson07d59b32011-01-20 22:10:10 +0000162 }
Chris Wilson3a7325e2016-03-08 11:43:31 +0000163 gem_sync(fd, handle);
164
Chris Wilson870c7742016-03-28 15:29:46 +0100165 count = 0;
Chris Wilson3a7325e2016-03-08 11:43:31 +0000166 clock_gettime(CLOCK_MONOTONIC, &start);
167 do {
168 for (int loop = 0; loop < 1024; loop++) {
169 for (int n = 0; n < nengine; n++) {
170 execbuf.flags &= ~ENGINE_FLAGS;
171 execbuf.flags |= engines[n];
172 gem_execbuf(fd, &execbuf);
173 }
174 }
175 count += nengine * 1024;
176 clock_gettime(CLOCK_MONOTONIC, &now);
Chris Wilson772393e2016-03-14 14:31:36 +0000177 } while (elapsed(&start, &now) < timeout); /* Hang detection ~120s */
Chris Wilson3a7325e2016-03-08 11:43:31 +0000178 gem_sync(fd, handle);
179 clock_gettime(CLOCK_MONOTONIC, &now);
180
Chris Wilson870c7742016-03-28 15:29:46 +0100181 time = elapsed(&start, &now) / count;
182 igt_info("All (%d engines): %'lu cycles, average %.3fus per cycle\n",
183 nengine, count, 1e6*time);
Chris Wilson41a26b52016-03-28 16:26:01 +0100184
185 /* The rate limiting step is how fast the slowest engine can
186 * its queue of requests, if we wait upon a full ring all dispatch
187 * is frozen. So in general we cannot go faster than the slowest
188 * engine, but we should equally not go any slower.
189 */
190 igt_assert(time < max + min); /* ensure parallel execution */
Daniel Vetterd9d95782012-12-04 17:13:05 +0100191}
Daniel Vetter8f5387e2013-08-13 13:20:58 +0200192
Daniel Vetter071e9ca2013-10-31 16:23:26 +0100193igt_main
Daniel Vetterd9d95782012-12-04 17:13:05 +0100194{
Chris Wilson7e0853c2016-01-27 14:17:53 +0000195 const struct intel_execution_engine *e;
Chris Wilson2659cbb2015-03-26 12:09:57 +0000196 uint32_t handle = 0;
Chris Wilson3a7325e2016-03-08 11:43:31 +0000197 int device = -1;
Daniel Vetterd9d95782012-12-04 17:13:05 +0100198
Chris Wilson2659cbb2015-03-26 12:09:57 +0000199 igt_fixture {
Chris Wilson3a7325e2016-03-08 11:43:31 +0000200 const uint32_t bbe = MI_BATCH_BUFFER_END;
201
Micah Fedkec81d2932015-07-22 21:54:02 +0000202 device = drm_open_driver(DRIVER_INTEL);
Chris Wilson2659cbb2015-03-26 12:09:57 +0000203 handle = gem_create(device, 4096);
Chris Wilson3a7325e2016-03-08 11:43:31 +0000204 gem_write(device, handle, 0, &bbe, sizeof(bbe));
Daniel Vetterb3880d32013-08-14 18:02:46 +0200205 }
Daniel Vetterd9d95782012-12-04 17:13:05 +0100206
Chris Wilson9d61a682016-03-25 18:22:54 +0000207 igt_fork_hang_detector(device);
208
Chris Wilson772393e2016-03-14 14:31:36 +0000209 igt_subtest("basic")
210 all(device, handle, 10);
211
Chris Wilson7e0853c2016-01-27 14:17:53 +0000212 for (e = intel_execution_engines; e->name; e++)
213 igt_subtest_f("%s", e->name)
Chris Wilson3a7325e2016-03-08 11:43:31 +0000214 single(device, handle, e->exec_id | e->flags, e->name);
215
Chris Wilson772393e2016-03-14 14:31:36 +0000216 igt_subtest("all")
217 all(device, handle, 150);
Daniel Vetterd9d95782012-12-04 17:13:05 +0100218
Chris Wilson9d61a682016-03-25 18:22:54 +0000219 igt_stop_hang_detector();
220
Daniel Vetterb3880d32013-08-14 18:02:46 +0200221 igt_fixture {
Chris Wilson2659cbb2015-03-26 12:09:57 +0000222 gem_close(device, handle);
Chris Wilson2659cbb2015-03-26 12:09:57 +0000223 close(device);
Daniel Vetterb3880d32013-08-14 18:02:46 +0200224 }
Chris Wilson07d59b32011-01-20 22:10:10 +0000225}