lib/igt.cocci: Add s/assert/igt_assert/
[platform/upstream/intel-gpu-tools.git] / tests / drm_vma_limiter_cpu.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 #define BO_ARRAY_SIZE 68000
56 drm_intel_bo *bos[BO_ARRAY_SIZE];
57
58 igt_simple_main
59 {
60         int fd;
61         int i;
62         char *ptr;
63
64         igt_skip_on_simulation();
65
66         fd = drm_open_any();
67
68         bufmgr = drm_intel_bufmgr_gem_init(fd, 4096);
69         drm_intel_bufmgr_gem_enable_reuse(bufmgr);
70         batch = intel_batchbuffer_alloc(bufmgr, intel_get_drm_devid(fd));
71
72         drm_intel_bufmgr_gem_set_vma_cache_size(bufmgr, 500);
73
74         for (i = 0; i < BO_ARRAY_SIZE; i++) {
75                 bos[i] = drm_intel_bo_alloc(bufmgr, "mmap bo", 4096, 4096);
76                 igt_assert(bos[i]);
77
78                 drm_intel_bo_map(bos[i], 1);
79                 ptr = bos[i]->virtual;
80                 igt_assert(ptr);
81                 *ptr = 'c';
82                 drm_intel_bo_unmap(bos[i]);
83         }
84
85         /* and recheck whether a second map of the same still works */
86         for (i = 0; i < BO_ARRAY_SIZE; i++) {
87                 bos[i] = drm_intel_bo_alloc(bufmgr, "mmap bo", 4096, 4096);
88                 igt_assert(bos[i]);
89
90                 drm_intel_bo_map(bos[i], 1);
91                 ptr = bos[i]->virtual;
92                 igt_assert(*ptr = 'c');
93                 drm_intel_bo_unmap(bos[i]);
94         }
95
96         intel_batchbuffer_free(batch);
97         drm_intel_bufmgr_destroy(bufmgr);
98
99         close(fd);
100 }