blob: 006edfe4e34e7a6ddcdff7d89c3c8485352b58e5 [file] [log] [blame]
Daniel Vetter16bc6192012-04-17 22:02:33 +02001/*
2 * Copyright © 2012 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 * Daniel Vetter <daniel.vetter@ffwll.ch>
25 *
26 */
27
Thomas Wood804e11f2015-08-17 17:57:43 +010028#include "igt.h"
Daniel Vetter16bc6192012-04-17 22:02:33 +020029#include <unistd.h>
30#include <stdlib.h>
31#include <stdio.h>
32#include <string.h>
Daniel Vetter16bc6192012-04-17 22:02:33 +020033#include <fcntl.h>
34#include <inttypes.h>
35#include <errno.h>
36#include <sys/stat.h>
37#include <sys/ioctl.h>
Daniel Vetter16bc6192012-04-17 22:02:33 +020038#include "drm.h"
Daniel Vetter16bc6192012-04-17 22:02:33 +020039
Thomas Woodb2ac2642014-11-28 11:02:44 +000040IGT_TEST_DESCRIPTION("Check set_tiling vs pwrite coherency.");
41
Daniel Vetter16bc6192012-04-17 22:02:33 +020042#define OBJECT_SIZE (1024*1024)
43#define TEST_STRIDE (1024*4)
44
45/**
46 * Testcase: Check set_tiling vs pwrite coherency
47 */
48
Daniel Vetterdda85fb2013-12-10 10:18:32 +010049igt_simple_main
Daniel Vetter16bc6192012-04-17 22:02:33 +020050{
51 int fd;
52 uint32_t *ptr;
53 uint32_t data[OBJECT_SIZE/4];
54 int i;
55 uint32_t handle;
56
Daniel Vetter1caaf0a2013-08-12 12:17:35 +020057 igt_skip_on_simulation();
Damien Lespiau5fa15f72013-04-29 18:40:39 +010058
Micah Fedkec81d2932015-07-22 21:54:02 +000059 fd = drm_open_driver(DRIVER_INTEL);
Daniel Vetter16bc6192012-04-17 22:02:33 +020060
61 for (i = 0; i < OBJECT_SIZE/4; i++)
62 data[i] = i;
63
64 handle = gem_create(fd, OBJECT_SIZE);
Ville Syrjäläf52e7ec2015-10-09 19:11:39 +030065 ptr = gem_mmap__gtt(fd, handle, OBJECT_SIZE, PROT_READ | PROT_WRITE);
Daniel Vetter16bc6192012-04-17 22:02:33 +020066
67 gem_set_tiling(fd, handle, I915_TILING_X, TEST_STRIDE);
68
Daniel Vetter16bc6192012-04-17 22:02:33 +020069 /* touch it */
70 gem_set_domain(fd, handle, I915_GEM_DOMAIN_GTT, I915_GEM_DOMAIN_GTT);
71 *ptr = 0xdeadbeef;
72
Daniel Vettere624fa82014-05-14 00:36:04 +020073 igt_info("testing pwrite on tiled buffer\n");
Daniel Vetter16bc6192012-04-17 22:02:33 +020074 gem_write(fd, handle, 0, data, OBJECT_SIZE);
75 memset(data, 0, OBJECT_SIZE);
76 gem_read(fd, handle, 0, data, OBJECT_SIZE);
77 for (i = 0; i < OBJECT_SIZE/4; i++)
Daniel Vetter83440952013-08-13 12:35:58 +020078 igt_assert(i == data[i]);
Daniel Vetter16bc6192012-04-17 22:02:33 +020079
80 /* touch it before changing the tiling, so that the fence sticks around */
81 gem_set_domain(fd, handle, I915_GEM_DOMAIN_GTT, I915_GEM_DOMAIN_GTT);
82 *ptr = 0xdeadbeef;
83
84 gem_set_tiling(fd, handle, I915_TILING_NONE, 0);
85
Daniel Vettere624fa82014-05-14 00:36:04 +020086 igt_info("testing pwrite on untiled, but still fenced buffer\n");
Daniel Vetter16bc6192012-04-17 22:02:33 +020087 gem_write(fd, handle, 0, data, OBJECT_SIZE);
88 memset(data, 0, OBJECT_SIZE);
89 gem_read(fd, handle, 0, data, OBJECT_SIZE);
90 for (i = 0; i < OBJECT_SIZE/4; i++)
Daniel Vetter83440952013-08-13 12:35:58 +020091 igt_assert(i == data[i]);
Daniel Vetter16bc6192012-04-17 22:02:33 +020092
93 munmap(ptr, OBJECT_SIZE);
94
95 close(fd);
Daniel Vetter16bc6192012-04-17 22:02:33 +020096}