mirror of
https://github.com/tiagovignatti/intel-gpu-tools.git
synced 2025-06-08 16:36:14 +00:00
v2 (Ben): Fixed whitespace, s/HAS_BLT_RING/gem_has_vebox/ s/I915_EXEC_VEBOX/LOCAL_I915_EXEC_VEBOX Signed-off-by: Zhong Li <zhong.li@intel.com> Signed-off-by: Ben Widawsky <ben@bwidawsk.net>
185 lines
4.8 KiB
C
185 lines
4.8 KiB
C
/*
|
|
* Copyright © 2011,2012 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.
|
|
*
|
|
* Authors:
|
|
* Chris Wilson <chris@chris-wilson.co.uk>
|
|
* Daniel Vetter <daniel.vetter@ffwll.ch>
|
|
*
|
|
*/
|
|
|
|
/*
|
|
* Testcase: Check whether we correctly invalidate the cs tlb
|
|
*
|
|
* Motivated by a strange bug on launchpad where *acth != ipehr, on snb notably
|
|
* where everything should be coherent by default.
|
|
*
|
|
* https://bugs.launchpad.net/ubuntu/+source/xserver-xorg-video-intel/+bug/1063252
|
|
*/
|
|
|
|
#include <unistd.h>
|
|
#include <stdlib.h>
|
|
#include <stdint.h>
|
|
#include <stdio.h>
|
|
#include <string.h>
|
|
#include <assert.h>
|
|
#include <fcntl.h>
|
|
#include <inttypes.h>
|
|
#include <errno.h>
|
|
#include <sys/stat.h>
|
|
#include <sys/ioctl.h>
|
|
#include <sys/mman.h>
|
|
#include <sys/time.h>
|
|
#include "drm.h"
|
|
#include "i915_drm.h"
|
|
#include "drmtest.h"
|
|
#include "intel_gpu_tools.h"
|
|
|
|
#define LOCAL_I915_EXEC_VEBOX (4<<0)
|
|
#define BATCH_SIZE (1024*1024)
|
|
bool skipped_all = true;
|
|
|
|
static int exec(int fd, uint32_t handle, int split,
|
|
uint64_t *gtt_ofs, unsigned ring_id)
|
|
{
|
|
struct drm_i915_gem_execbuffer2 execbuf;
|
|
struct drm_i915_gem_exec_object2 gem_exec[1];
|
|
int ret = 0;
|
|
|
|
gem_exec[0].handle = handle;
|
|
gem_exec[0].relocation_count = 0;
|
|
gem_exec[0].relocs_ptr = 0;
|
|
gem_exec[0].alignment = 0;
|
|
gem_exec[0].offset = 0x00100000;
|
|
gem_exec[0].flags = 0;
|
|
gem_exec[0].rsvd1 = 0;
|
|
gem_exec[0].rsvd2 = 0;
|
|
|
|
execbuf.buffers_ptr = (uintptr_t)gem_exec;
|
|
execbuf.buffer_count = 1;
|
|
execbuf.batch_start_offset = 0;
|
|
execbuf.batch_len = 8*(split+1);
|
|
execbuf.cliprects_ptr = 0;
|
|
execbuf.num_cliprects = 0;
|
|
execbuf.DR1 = 0;
|
|
execbuf.DR4 = 0;
|
|
execbuf.flags = ring_id;
|
|
i915_execbuffer2_set_context_id(execbuf, 0);
|
|
execbuf.rsvd2 = 0;
|
|
|
|
ret = drmIoctl(fd,
|
|
DRM_IOCTL_I915_GEM_EXECBUFFER2,
|
|
&execbuf);
|
|
|
|
*gtt_ofs = gem_exec[0].offset;
|
|
|
|
return ret;
|
|
}
|
|
|
|
static void run_on_ring(int fd, unsigned ring_id, const char *ring_name)
|
|
{
|
|
uint32_t handle, handle_new;
|
|
uint64_t gtt_offset, gtt_offset_new;
|
|
uint32_t *batch_ptr, *batch_ptr_old;
|
|
unsigned split;
|
|
char buf[100];
|
|
int i;
|
|
|
|
sprintf(buf, "testing %s cs tlb coherency: ", ring_name);
|
|
skipped_all = false;
|
|
|
|
/* Shut up gcc, too stupid. */
|
|
batch_ptr_old = NULL;
|
|
handle = 0;
|
|
gtt_offset = 0;
|
|
|
|
for (split = 0; split < BATCH_SIZE/8 - 1; split += 2) {
|
|
drmtest_progress(buf, split, BATCH_SIZE/8 - 1);
|
|
|
|
handle_new = gem_create(fd, BATCH_SIZE);
|
|
batch_ptr = gem_mmap__cpu(fd, handle_new, BATCH_SIZE,
|
|
PROT_READ | PROT_WRITE);
|
|
batch_ptr[split*2] = MI_BATCH_BUFFER_END;
|
|
|
|
for (i = split*2 + 2; i < BATCH_SIZE/8; i++)
|
|
batch_ptr[i] = 0xffffffff;
|
|
|
|
if (split > 0) {
|
|
gem_sync(fd, handle);
|
|
gem_close(fd, handle);
|
|
}
|
|
|
|
if (exec(fd, handle_new, split, >t_offset_new, 0))
|
|
exit(1);
|
|
|
|
if (split > 0) {
|
|
/* Check that we've managed to collide in the tlb. */
|
|
assert(gtt_offset == gtt_offset_new);
|
|
|
|
/* We hang onto the storage of the old batch by keeping
|
|
* the cpu mmap around. */
|
|
munmap(batch_ptr_old, BATCH_SIZE);
|
|
}
|
|
|
|
handle = handle_new;
|
|
gtt_offset = gtt_offset_new;
|
|
batch_ptr_old = batch_ptr;
|
|
}
|
|
|
|
}
|
|
|
|
int main(int argc, char **argv)
|
|
{
|
|
int fd;
|
|
uint32_t devid;
|
|
|
|
drmtest_subtest_init(argc, argv);
|
|
|
|
fd = drm_open_any();
|
|
devid = intel_get_drm_devid(fd);
|
|
|
|
if (!drmtest_only_list_subtests()) {
|
|
/* This test is very sensitive to residual gtt_mm noise from previous
|
|
* tests. Try to quiet thing down first. */
|
|
gem_quiescent_gpu(fd);
|
|
sleep(5); /* needs more serious ducttape */
|
|
}
|
|
|
|
if (drmtest_run_subtest("render"))
|
|
run_on_ring(fd, I915_EXEC_RENDER, "render");
|
|
|
|
if (drmtest_run_subtest("bsd"))
|
|
if (HAS_BSD_RING(devid))
|
|
run_on_ring(fd, I915_EXEC_BSD, "bsd");
|
|
|
|
if (drmtest_run_subtest("blt"))
|
|
if (HAS_BLT_RING(devid))
|
|
run_on_ring(fd, I915_EXEC_BLT, "blt");
|
|
|
|
if (drmtest_run_subtest("vebox"))
|
|
if (gem_has_vebox(fd))
|
|
run_on_ring(fd, LOCAL_I915_EXEC_VEBOX, "vebox");
|
|
|
|
close(fd);
|
|
|
|
return skipped_all ? 77 : 0;
|
|
}
|