tests: add gem_gtt_cpu_tlb
[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         fd = drm_open_any();
81
82         handle = gem_create(fd, OBJ_SIZE);
83
84         /* touch one page */
85         ptr = gem_mmap(fd, handle, OBJ_SIZE, PROT_READ | PROT_WRITE);
86         *ptr = 0xdeadbeef;
87         munmap(ptr, OBJ_SIZE);
88
89         gem_close(fd, handle);
90
91         /* stirr up the page allocator a bit. */
92         ptr = malloc(OBJ_SIZE);
93         assert(ptr);
94         memset(ptr, 0x1, OBJ_SIZE);
95
96         handle = create_bo(fd);
97
98         /* Read a bunch of random subsets of the data and check that they come
99          * out right.
100          */
101         gem_read(fd, handle, 0, ptr, OBJ_SIZE);
102         for (i = 0; i < OBJ_SIZE/4; i++)
103                 assert(ptr[i] == i);
104
105         close(fd);
106
107         return 0;
108 }