@@ -80,6 +80,7 @@ prime_nv_pcopy
prime_nv_test
prime_self_import
testdisplay
+unaligned_tiled_buf
sysfs_rc6_residency
sysfs_rps
# Please keep sorted alphabetically
@@ -13,6 +13,7 @@ NOUVEAU_TESTS = \
endif
TESTS_progs_M = \
+ unaligned_tiled_buf \
gem_basic \
gem_cacheing \
gem_cpu_concurrent_blit \
new file mode 100644
@@ -0,0 +1,111 @@
+/*
+ * Copyright © 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.
+ */
+
+#include <stdlib.h>
+#include <stdio.h>
+#include <string.h>
+#include <assert.h>
+#include <inttypes.h>
+#include <errno.h>
+#include <sys/mman.h>
+#include "drm.h"
+#include "i915_drm.h"
+#include "drmtest.h"
+#include "intel_gpu_tools.h"
+
+static void write_buf(int drm_fd, uint32_t handle, unsigned long offset,
+ void *buf, size_t size)
+{
+ uint8_t *p;
+
+ p = gem_mmap__gtt(drm_fd, handle, offset + size, PROT_WRITE);
+ assert(p);
+ memcpy(p + offset, buf, size);
+ munmap(p, offset + size);
+}
+
+static void read_buf(int drm_fd, uint32_t handle, unsigned long offset,
+ void *buf, size_t size)
+{
+ uint8_t *p;
+
+ p = gem_mmap__gtt(drm_fd, handle, offset + size, PROT_READ);
+ assert(p);
+ memcpy(buf, p + offset, size);
+ munmap(p, offset + size);
+}
+
+int main(int argc, char **argv)
+{
+ uint32_t dev_id;
+ uint32_t handle[2];
+ uint8_t *buf;
+ size_t size;
+ size_t stride;
+ int fd;
+ int gen;
+ int i;
+
+ fd = drm_open_any();
+ dev_id = intel_get_drm_devid(fd);
+
+ stride = 3 * 512;
+ gen = intel_gen(dev_id);
+ if (gen >= 4)
+ size = 3 * 4096;
+ else if (gen == 3)
+ size = 1024 * 1024;
+ else
+ size = 512 * 1024;
+
+ buf = malloc(size);
+ assert(buf);
+
+ handle[0] = gem_create(fd, size);
+ handle[1] = gem_create(fd, size);
+ assert(handle[0] && handle[1]);
+ gem_set_domain(fd, handle[0], I915_GEM_DOMAIN_GTT, I915_GEM_DOMAIN_GTT);
+ gem_set_domain(fd, handle[1], I915_GEM_DOMAIN_GTT, I915_GEM_DOMAIN_GTT);
+
+ gem_set_tiling(fd, handle[0], I915_TILING_X, stride);
+
+ memset(buf, 0x55, size);
+ /* Make sure the first buffer is pinned just before the second one. */
+ write_buf(fd, handle[0], 0, buf, size);
+ write_buf(fd, handle[1], 0, buf, size);
+
+ memset(buf, 0xAA, size);
+ write_buf(fd, handle[0], 0, buf, size);
+
+ memset(buf, 0, size);
+ read_buf(fd, handle[1], 0, buf, size);
+ for (i = 0; i < size; i++) {
+ if (buf[i] != 0x55) {
+ fprintf(stderr, "corrupted byte at offset %d (%#02x instead of x55)\n",
+ i, buf[i]);
+ exit(EXIT_FAILURE);
+ }
+ }
+
+ return 0;
+}
Signed-off-by: Imre Deak <imre.deak@intel.com> --- tests/.gitignore | 1 + tests/Makefile.am | 1 + tests/unaligned_tiled_buf.c | 111 +++++++++++++++++++++++++++++++++++++++++++ 3 files changed, 113 insertions(+) create mode 100644 tests/unaligned_tiled_buf.c