s/drmtest_/igt_/
[platform/upstream/intel-gpu-tools.git] / tests / gem_gtt_cpu_tlb.c
1 /*
2  * Copyright © 2009 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
28 /** @file gem_gtt_cpu_tlb.c
29  *
30  * This test checks whether gtt tlbs for cpu access are correctly invalidated.
31  */
32
33 #include <stdlib.h>
34 #include <stdio.h>
35 #include <string.h>
36 #include <assert.h>
37 #include <fcntl.h>
38 #include <inttypes.h>
39 #include <errno.h>
40 #include <sys/stat.h>
41 #include <sys/time.h>
42 #include <sys/ioctl.h>
43 #include <sys/mman.h>
44 #include "drm.h"
45 #include "i915_drm.h"
46 #include "drmtest.h"
47 #include "intel_gpu_tools.h"
48
49 #define OBJ_SIZE (1024*1024)
50
51 #define PAGE_SIZE 4096
52
53 static uint32_t
54 create_bo(int fd)
55 {
56         uint32_t handle;
57         uint32_t *data;
58         int i;
59
60         handle = gem_create(fd, OBJ_SIZE);
61
62         /* Fill the BO with dwords starting at start_val */
63         data = gem_mmap(fd, handle, OBJ_SIZE, PROT_READ | PROT_WRITE);
64         for (i = 0; i < OBJ_SIZE/4; i++)
65                 data[i] = i;
66         munmap(data, OBJ_SIZE);
67
68         return handle;
69 }
70
71 int
72 main(int argc, char **argv)
73 {
74         int fd;
75         int i;
76         uint32_t handle;
77
78         uint32_t *ptr;
79
80         igt_skip_on_simulation();
81
82         fd = drm_open_any();
83
84         handle = gem_create(fd, OBJ_SIZE);
85
86         /* touch one page */
87         ptr = gem_mmap(fd, handle, OBJ_SIZE, PROT_READ | PROT_WRITE);
88         *ptr = 0xdeadbeef;
89         munmap(ptr, OBJ_SIZE);
90
91         gem_close(fd, handle);
92
93         /* stirr up the page allocator a bit. */
94         ptr = malloc(OBJ_SIZE);
95         assert(ptr);
96         memset(ptr, 0x1, OBJ_SIZE);
97
98         handle = create_bo(fd);
99
100         /* Read a bunch of random subsets of the data and check that they come
101          * out right.
102          */
103         gem_read(fd, handle, 0, ptr, OBJ_SIZE);
104         for (i = 0; i < OBJ_SIZE/4; i++)
105                 assert(ptr[i] == i);
106
107         close(fd);
108
109         return 0;
110 }