gem_tiled_swapping: Purge all page/swap caches first
[platform/upstream/intel-gpu-tools.git] / tests / gem_tiled_swapping.c
1 /*
2  * Copyright © 2011 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_tiled_pread_pwrite.c
29  *
30  * This is a test of pread's behavior on tiled objects with respect to the
31  * reported swizzling value.
32  *
33  * The goal is to exercise the slow_bit17_copy path for reading on bit17
34  * machines, but will also be useful for catching swizzling value bugs on
35  * other systems.
36  */
37
38 /*
39  * Testcase: Exercise swizzle code for swapping
40  *
41  * The swizzle checks in the swapin path are at a different place than the ones
42  * for pread/pwrite, so we need to check them separately.
43  *
44  * This test obviously needs swap present (and exits if none is detected).
45  */
46
47 #include <stdlib.h>
48 #include <stdio.h>
49 #include <string.h>
50 #include <fcntl.h>
51 #include <inttypes.h>
52 #include <errno.h>
53 #include <sys/stat.h>
54 #include <sys/time.h>
55 #include <sys/ioctl.h>
56
57 #include <drm.h>
58
59 #include "ioctl_wrappers.h"
60 #include "drmtest.h"
61 #include "intel_io.h"
62 #include "igt_aux.h"
63
64 #define WIDTH 512
65 #define HEIGHT 512
66 #define LINEAR_DWORDS (4 * WIDTH * HEIGHT)
67 static uint32_t current_tiling_mode;
68
69 #define PAGE_SIZE 4096
70
71 static uint32_t
72 create_bo_and_fill(int fd)
73 {
74         uint32_t handle;
75         uint32_t *data;
76         int i;
77
78         handle = gem_create(fd, LINEAR_DWORDS);
79         gem_set_tiling(fd, handle, current_tiling_mode, WIDTH * sizeof(uint32_t));
80
81         /* Fill the BO with dwords starting at start_val */
82         data = gem_mmap(fd, handle, LINEAR_DWORDS, PROT_READ | PROT_WRITE);
83         if (data == NULL && errno == ENOSPC)
84                 return 0;
85
86         for (i = 0; i < WIDTH*HEIGHT; i++)
87                 data[i] = i;
88         munmap(data, LINEAR_DWORDS);
89
90         return handle;
91 }
92
93 uint32_t *bo_handles;
94 int *idx_arr;
95
96 igt_simple_main
97 {
98         int fd;
99         uint32_t *data;
100         int i, j;
101         int count;
102         current_tiling_mode = I915_TILING_X;
103
104         igt_skip_on_simulation();
105         intel_purge_vm_caches();
106
107         fd = drm_open_any();
108         /* need slightly more than available memory */
109         count = intel_get_total_ram_mb() + intel_get_total_swap_mb() / 4;
110         bo_handles = calloc(count, sizeof(uint32_t));
111         igt_assert(bo_handles);
112
113         idx_arr = calloc(count, sizeof(int));
114         igt_assert(idx_arr);
115
116         igt_log(IGT_LOG_INFO,
117                 "Using %d 1MiB objects (available RAM: %ld/%ld, swap: %ld)\n",
118                 count,
119                 (long)intel_get_avail_ram_mb(),
120                 (long)intel_get_total_ram_mb(),
121                 (long)intel_get_total_swap_mb());
122
123         igt_require(count < intel_get_avail_ram_mb() + intel_get_total_swap_mb());
124
125         for (i = 0; i < count; i++) {
126                 bo_handles[i] = create_bo_and_fill(fd);
127                 /* Not enough mmap address space possible. */
128                 igt_require(bo_handles[i]);
129         }
130
131         for (i = 0; i < count; i++)
132                 idx_arr[i] = i;
133
134         igt_permute_array(idx_arr, count,
135                               igt_exchange_int);
136
137         for (i = 0; i < count/2; i++) {
138                 /* Check the target bo's contents. */
139                 data = gem_mmap(fd, bo_handles[idx_arr[i]],
140                                 LINEAR_DWORDS, PROT_READ | PROT_WRITE);
141                 for (j = 0; j < WIDTH*HEIGHT; j++)
142                         igt_assert_f(data[j] == j,
143                                      "mismatch at %i: %i\n",
144                                      j, data[j]);
145                 munmap(data, LINEAR_DWORDS);
146         }
147
148         close(fd);
149 }