kms_rotation_crc: Remove useless comments
[platform/upstream/intel-gpu-tools.git] / tests / drm_vma_limiter_gtt.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 #include <stdlib.h>
28 #include <stdio.h>
29 #include <string.h>
30 #include <fcntl.h>
31 #include <inttypes.h>
32 #include <errno.h>
33 #include <sys/stat.h>
34 #include <sys/time.h>
35 #include "drm.h"
36 #include "ioctl_wrappers.h"
37 #include "drmtest.h"
38 #include "intel_bufmgr.h"
39 #include "intel_batchbuffer.h"
40 #include "intel_io.h"
41 #include "intel_chipset.h"
42
43 static drm_intel_bufmgr *bufmgr;
44 struct intel_batchbuffer *batch;
45
46 /* Testcase: check whether the libdrm vma limiter works
47  *
48  * We've had reports of the X server exhausting the default rlimit of 64k vma's
49  * in the kernel. libdrm has grown facilities to limit the vma caching since,
50  * this checks whether they actually work.
51  *
52  * This one checks cpu mmaps only.
53  */
54
55 /* we do both cpu and gtt maps, so only need half of 64k to exhaust */
56 #define BO_ARRAY_SIZE 68000
57 drm_intel_bo *bos[BO_ARRAY_SIZE];
58
59 igt_simple_main
60 {
61         int fd;
62         int i;
63         char *ptr;
64
65         igt_skip_on_simulation();
66
67         fd = drm_open_any();
68
69         bufmgr = drm_intel_bufmgr_gem_init(fd, 4096);
70         drm_intel_bufmgr_gem_enable_reuse(bufmgr);
71         batch = intel_batchbuffer_alloc(bufmgr, intel_get_drm_devid(fd));
72
73         drm_intel_bufmgr_gem_set_vma_cache_size(bufmgr, 500);
74
75         for (i = 0; i < BO_ARRAY_SIZE; i++) {
76                 bos[i] = drm_intel_bo_alloc(bufmgr, "mmap bo", 4096, 4096);
77                 igt_assert(bos[i]);
78
79                 drm_intel_gem_bo_map_gtt(bos[i]);
80                 ptr = bos[i]->virtual;
81                 igt_assert(ptr);
82                 *ptr = 'c';
83                 drm_intel_gem_bo_unmap_gtt(bos[i]);
84         }
85
86         /* and recheck whether a second map of the same still works */
87         for (i = 0; i < BO_ARRAY_SIZE; i++) {
88                 bos[i] = drm_intel_bo_alloc(bufmgr, "mmap bo", 4096, 4096);
89                 igt_assert(bos[i]);
90
91                 drm_intel_gem_bo_map_gtt(bos[i]);
92                 ptr = bos[i]->virtual;
93                 igt_assert(*ptr = 'c');
94                 drm_intel_gem_bo_unmap_gtt(bos[i]);
95         }
96
97         intel_batchbuffer_free(batch);
98         drm_intel_bufmgr_destroy(bufmgr);
99
100         close(fd);
101 }