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