mirror of
https://github.com/tiagovignatti/intel-gpu-tools.git
synced 2025-06-07 16:06:25 +00:00
gem_mmap__{cpu,gtt,wc}() already has the assert built in, so replace __gem_mmap__{cpu,gtt,wc}() + igt_assert() with it. Mostly done with coccinelle, with some manual help: @@ identifier I; expression E1, E2, E3, E4, E5, E6; @@ ( - I = __gem_mmap__gtt(E1, E2, E3, E4); + I = gem_mmap__gtt(E1, E2, E3, E4); ... - igt_assert(I); | - I = __gem_mmap__cpu(E1, E2, E3, E4, E5); + I = gem_mmap__cpu(E1, E2, E3, E4, E5); ... - igt_assert(I); | - I = __gem_mmap__wc(E1, E2, E3, E4, E5); + I = gem_mmap__wc(E1, E2, E3, E4, E5); ... - igt_assert(I); ) Signed-off-by: Ville Syrjälä <ville.syrjala@linux.intel.com> Stochastically-reviwewed-by: Chris Wilson <chris@chris-wilson.co.uk>
206 lines
4.9 KiB
C
206 lines
4.9 KiB
C
/*
|
|
* 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.
|
|
*
|
|
* Authors:
|
|
* Chris Wilson <chris@chris-wilson.co.uk>
|
|
*
|
|
*/
|
|
|
|
/*
|
|
* Testcase: Exercise a suspect workaround required for FORCEWAKE_MT
|
|
*
|
|
*/
|
|
|
|
#include "igt.h"
|
|
#include <sys/types.h>
|
|
#include <pthread.h>
|
|
#include <string.h>
|
|
|
|
#include "drm.h"
|
|
|
|
IGT_TEST_DESCRIPTION("Exercise a suspect workaround required for"
|
|
" FORCEWAKE_MT.");
|
|
|
|
#define FORCEWAKE_MT 0xa188
|
|
|
|
struct thread {
|
|
pthread_t thread;
|
|
void *mmio;
|
|
int fd;
|
|
int bit;
|
|
};
|
|
|
|
static const struct pci_id_match match[] = {
|
|
INTEL_IVB_D_IDS(NULL),
|
|
INTEL_IVB_M_IDS(NULL),
|
|
|
|
INTEL_HSW_D_IDS(NULL),
|
|
INTEL_HSW_M_IDS(NULL),
|
|
|
|
{ 0, 0, 0 },
|
|
};
|
|
|
|
static struct pci_device *__igfx_get(void)
|
|
{
|
|
struct pci_device *dev;
|
|
|
|
if (pci_system_init())
|
|
return 0;
|
|
|
|
dev = pci_device_find_by_slot(0, 0, 2, 0);
|
|
if (dev == NULL || dev->vendor_id != 0x8086) {
|
|
struct pci_device_iterator *iter;
|
|
|
|
iter = pci_id_match_iterator_create(match);
|
|
if (!iter)
|
|
return 0;
|
|
|
|
dev = pci_device_next(iter);
|
|
pci_iterator_destroy(iter);
|
|
}
|
|
|
|
return dev;
|
|
}
|
|
|
|
static void *igfx_get_mmio(void)
|
|
{
|
|
struct pci_device *pci = __igfx_get();
|
|
void *mmio = NULL;
|
|
int error;
|
|
|
|
igt_skip_on(pci == NULL);
|
|
igt_skip_on(intel_gen(pci->device_id) != 7);
|
|
|
|
error = pci_device_probe(pci);
|
|
igt_assert_eq(error, 0);
|
|
|
|
error = pci_device_map_range(pci,
|
|
pci->regions[0].base_addr,
|
|
2*1024*1024,
|
|
PCI_DEV_MAP_FLAG_WRITABLE,
|
|
&mmio);
|
|
igt_assert_eq(error, 0);
|
|
igt_assert(mmio != NULL);
|
|
|
|
return mmio;
|
|
}
|
|
|
|
static void *thread(void *arg)
|
|
{
|
|
struct thread *t = arg;
|
|
uint32_t *forcewake_mt = (uint32_t *)((char *)t->mmio + FORCEWAKE_MT);
|
|
uint32_t bit = 1 << t->bit;
|
|
|
|
while (1) {
|
|
*forcewake_mt = bit << 16 | bit;
|
|
igt_assert(*forcewake_mt & bit);
|
|
*forcewake_mt = bit << 16;
|
|
igt_assert((*forcewake_mt & bit) == 0);
|
|
}
|
|
|
|
return NULL;
|
|
}
|
|
|
|
#define MI_STORE_REGISTER_MEM (0x24<<23)
|
|
|
|
igt_simple_main
|
|
{
|
|
struct thread t[16];
|
|
int i;
|
|
|
|
t[0].fd = drm_open_driver(DRIVER_INTEL);
|
|
t[0].mmio = igfx_get_mmio();
|
|
|
|
for (i = 2; i < 16; i++) {
|
|
t[i] = t[0];
|
|
t[i].bit = i;
|
|
pthread_create(&t[i].thread, NULL, thread, &t[i]);
|
|
}
|
|
|
|
sleep(2);
|
|
|
|
for (i = 0; i < 1000; i++) {
|
|
uint32_t *p;
|
|
struct drm_i915_gem_execbuffer2 execbuf;
|
|
struct drm_i915_gem_exec_object2 exec[2];
|
|
struct drm_i915_gem_relocation_entry reloc[2];
|
|
uint32_t b[] = {
|
|
MI_LOAD_REGISTER_IMM,
|
|
FORCEWAKE_MT,
|
|
2 << 16 | 2,
|
|
MI_STORE_REGISTER_MEM | 1,
|
|
FORCEWAKE_MT,
|
|
0, // to be patched
|
|
MI_LOAD_REGISTER_IMM,
|
|
FORCEWAKE_MT,
|
|
2 << 16,
|
|
MI_STORE_REGISTER_MEM | 1,
|
|
FORCEWAKE_MT,
|
|
1 * sizeof(uint32_t), // to be patched
|
|
MI_BATCH_BUFFER_END,
|
|
0
|
|
};
|
|
|
|
memset(exec, 0, sizeof(exec));
|
|
exec[1].handle = gem_create(t[0].fd, 4096);
|
|
exec[1].relocation_count = 2;
|
|
exec[1].relocs_ptr = (uintptr_t)reloc;
|
|
gem_write(t[0].fd, exec[1].handle, 0, b, sizeof(b));
|
|
exec[0].handle = gem_create(t[0].fd, 4096);
|
|
|
|
reloc[0].offset = 5 * sizeof(uint32_t);
|
|
reloc[0].delta = 0;
|
|
reloc[0].target_handle = exec[0].handle;
|
|
reloc[0].read_domains = I915_GEM_DOMAIN_RENDER;
|
|
reloc[0].write_domain = I915_GEM_DOMAIN_RENDER;
|
|
reloc[0].presumed_offset = 0;
|
|
|
|
reloc[1].offset = 11 * sizeof(uint32_t);
|
|
reloc[1].delta = 1 * sizeof(uint32_t);
|
|
reloc[1].target_handle = exec[0].handle;
|
|
reloc[1].read_domains = I915_GEM_DOMAIN_RENDER;
|
|
reloc[1].write_domain = I915_GEM_DOMAIN_RENDER;
|
|
reloc[1].presumed_offset = 0;
|
|
|
|
memset(&execbuf, 0, sizeof(execbuf));
|
|
execbuf.buffers_ptr = (uintptr_t)&exec;
|
|
execbuf.buffer_count = 2;
|
|
execbuf.batch_len = sizeof(b);
|
|
execbuf.flags = I915_EXEC_SECURE;
|
|
|
|
gem_execbuf(t[0].fd, &execbuf);
|
|
gem_sync(t[0].fd, exec[1].handle);
|
|
|
|
p = gem_mmap__gtt(t[0].fd, exec[0].handle, 4096, PROT_READ);
|
|
|
|
igt_info("[%d]={ %08x %08x }\n", i, p[0], p[1]);
|
|
igt_assert(p[0] & 2);
|
|
igt_assert((p[1] & 2) == 0);
|
|
|
|
munmap(p, 4096);
|
|
gem_close(t[0].fd, exec[0].handle);
|
|
gem_close(t[0].fd, exec[1].handle);
|
|
|
|
usleep(1000);
|
|
}
|
|
}
|