1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206
|
/*
* Copyright © 2014 Intel Corporation
*
* Permission is hereby granted, free of charge, to any person obtaining a
* copy of this software and associated documentation files (the "Software"),
* to deal in the Software without restriction, including without limitation
* the rights to use, copy, modify, merge, publish, distribute, sublicense,
* and/or sell copies of the Software, and to permit persons to whom the
* Software is furnished to do so, subject to the following conditions:
*
* The above copyright notice and this permission notice (including the next
* paragraph) shall be included in all copies or substantial portions of the
* Software.
*
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
* THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
* FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS
* IN THE SOFTWARE.
*/
#include <fcntl.h>
#include <signal.h>
#include <sys/ioctl.h>
#include <sys/time.h>
#include "gem.h"
#include "gem_create.h"
#include "gem_ring.h"
#include "gem_submission.h"
#include "intel_reg.h"
#include "drmtest.h"
#include "ioctl_wrappers.h"
#include "igt_dummyload.h"
#include "igt_gt.h"
static int __execbuf(int fd, struct drm_i915_gem_execbuffer2 *execbuf)
{
int err;
err = 0;
if (ioctl(fd, DRM_IOCTL_I915_GEM_EXECBUFFER2, execbuf))
err = -errno;
errno = 0;
return err;
}
static void alarm_handler(int sig)
{
}
static unsigned int
__gem_measure_ring_inflight(int fd, unsigned int engine, enum measure_ring_flags flags)
{
struct sigaction old_sa, sa = { .sa_handler = alarm_handler };
struct drm_i915_gem_exec_object2 obj[2];
struct drm_i915_gem_execbuffer2 execbuf;
const uint32_t bbe = MI_BATCH_BUFFER_END;
unsigned int last[2]= { -1, -1 }, count;
struct itimerval itv;
IGT_CORK_HANDLE(cork);
memset(obj, 0, sizeof(obj));
obj[1].handle = gem_create(fd, 4096);
gem_write(fd, obj[1].handle, 0, &bbe, sizeof(bbe));
memset(&execbuf, 0, sizeof(execbuf));
execbuf.buffers_ptr = to_user_pointer(&obj[1]);
execbuf.buffer_count = 1;
execbuf.flags = engine;
gem_execbuf(fd, &execbuf);
gem_sync(fd, obj[1].handle);
obj[0].handle = igt_cork_plug(&cork, fd);
execbuf.buffers_ptr = to_user_pointer(obj);
execbuf.buffer_count = 2;
if (flags & MEASURE_RING_NEW_CTX)
execbuf.rsvd1 = gem_context_create(fd);
sigaction(SIGALRM, &sa, &old_sa);
itv.it_interval.tv_sec = 0;
itv.it_interval.tv_usec = 1000;
itv.it_value.tv_sec = 0;
itv.it_value.tv_usec = 10000;
setitimer(ITIMER_REAL, &itv, NULL);
count = 0;
do {
int err = __execbuf(fd, &execbuf);
if (err == 0) {
count++;
continue;
}
if (err == -EWOULDBLOCK)
break;
if (last[1] == count)
break;
/* sleep until the next timer interrupt (woken on signal) */
pause();
last[1] = last[0];
last[0] = count;
} while (1);
igt_assert(count > 2);
memset(&itv, 0, sizeof(itv));
setitimer(ITIMER_REAL, &itv, NULL);
sigaction(SIGALRM, &old_sa, NULL);
igt_cork_unplug(&cork);
gem_close(fd, obj[0].handle);
gem_close(fd, obj[1].handle);
if (flags & MEASURE_RING_NEW_CTX)
gem_context_destroy(fd, execbuf.rsvd1);
gem_quiescent_gpu(fd);
/* Be conservative in case we must wrap later */
return count - 2;
}
/**
* gem_measure_ring_inflight:
* @fd: open i915 drm file descriptor
* @engine: execbuf engine flag. Use macro ALL_ENGINES to get the minimum
* size across all physical engines.
* @flags: flags to affect measurement:
* - MEASURE_RING_NEW_CTX: use a new context to account for the space
* used by the lrc init.
*
* This function calculates the maximum number of batches that can be inserted
* at the same time in the ring on the selected engine.
*
* Returns:
* Number of batches that fit in the ring
*/
unsigned int
gem_measure_ring_inflight(int fd, unsigned int engine, enum measure_ring_flags flags)
{
unsigned int min = ~0u;
fd = drm_reopen_driver(fd);
/* When available, disable execbuf throttling */
fcntl(fd, F_SETFD, fcntl(fd, F_GETFD) | O_NONBLOCK);
if (engine == ALL_ENGINES) {
for_each_physical_ring(e, fd) {
unsigned int count =
__gem_measure_ring_inflight(fd, eb_ring(e), flags);
if (count < min)
min = count;
}
} else {
min = __gem_measure_ring_inflight(fd, engine, flags);
}
close(fd);
return min;
}
bool gem_ring_is_physical_engine(int fd, unsigned ring)
{
if (ring == I915_EXEC_DEFAULT)
return false;
/* BSD uses an extra flag to chose between aliasing modes */
if ((ring & 63) == I915_EXEC_BSD) {
bool explicit_bsd = ring & (3 << 13);
bool has_bsd2 = gem_has_bsd2(fd);
return explicit_bsd ? has_bsd2 : !has_bsd2;
}
return true;
}
bool gem_ring_has_physical_engine(int fd, unsigned ring)
{
if (!gem_ring_is_physical_engine(fd, ring))
return false;
return gem_has_ring(fd, ring);
}
const struct intel_execution_ring intel_execution_rings[] = {
{ "default", NULL, 0, 0 },
{ "render", "rcs0", I915_EXEC_RENDER, 0 },
{ "bsd", "vcs0", I915_EXEC_BSD, 0 },
{ "bsd1", "vcs0", I915_EXEC_BSD, 1<<13 /*I915_EXEC_BSD_RING1*/ },
{ "bsd2", "vcs1", I915_EXEC_BSD, 2<<13 /*I915_EXEC_BSD_RING2*/ },
{ "blt", "bcs0", I915_EXEC_BLT, 0 },
{ "vebox", "vecs0", I915_EXEC_VEBOX, 0 },
{ NULL, 0, 0 }
};
|