ipptest: add fimc and rotator test applications
[platform/upstream/libdrm.git] / tests / ipptest / gem.c
1 /*
2  * DRM based fimc test program
3  * Copyright 2012 Samsung Electronics
4  *   Eunchul Kim <chulspro.kim@sasmsung.com>
5  *
6  * Permission is hereby granted, free of charge, to any person obtaining a
7  * copy of this software and associated documentation files (the "Software"),
8  * to deal in the Software without restriction, including without limitation
9  * the rights to use, copy, modify, merge, publish, distribute, sublicense,
10  * and/or sell copies of the Software, and to permit persons to whom the
11  * Software is furnished to do so, subject to the following conditions:
12  *
13  * The above copyright notice and this permission notice shall be included in
14  * all copies or substantial portions of the Software.
15  *
16  * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
17  * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
18  * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
19  * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
20  * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
21  * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS
22  * IN THE SOFTWARE.
23  */
24
25 #include <assert.h>
26 #include <stdio.h>
27 #include <stdlib.h>
28 #include <stdint.h>
29 #include <unistd.h>
30 #include <string.h>
31 #include <errno.h>
32
33 #include "xf86drm.h"
34 #include "xf86drmMode.h"
35 #include "libkms.h"
36
37 #include "exynos_drm.h"
38
39 int exynos_gem_create(int fd, struct drm_exynos_gem_create *gem)
40 {
41         int ret = 0;
42
43         if (!gem) {
44                 fprintf(stderr, "gem object is null.\n");
45                 return -EFAULT;
46         }
47         ret = ioctl(fd, DRM_IOCTL_EXYNOS_GEM_CREATE, gem);
48         if (ret < 0)
49                 fprintf(stderr, "failed to create gem buffer: %s\n",
50                                                                 strerror(-ret));
51         return ret;
52 }
53
54 int exynos_gem_mmap(int fd, struct drm_exynos_gem_mmap *in_mmap)
55 {
56         int ret = 0;
57
58         ret = ioctl(fd, DRM_IOCTL_EXYNOS_GEM_MMAP, in_mmap);
59         if (ret < 0)
60                 fprintf(stderr, "failed to mmap: %s\n", strerror(-ret));
61         return ret;
62 }
63
64 int exynos_gem_close(int fd, struct drm_gem_close *gem_close)
65 {
66         int ret = 0;
67
68         ret = ioctl(fd, DRM_IOCTL_GEM_CLOSE, gem_close);
69         if (ret < 0)
70                 fprintf(stderr, "failed to close: %s\n", strerror(-ret));
71         return ret;
72 }