OSDN Git Service

2aef3e3e7584e867ad57325fc474f6ea6df27b31
[android-x86/external-minigbm.git] / exynos.c
1 /*
2  * Copyright (c) 2014 The Chromium OS Authors. All rights reserved.
3  * Use of this source code is governed by a BSD-style license that can be
4  * found in the LICENSE file.
5  */
6
7 #ifdef DRV_EXYNOS
8
9 #include <assert.h>
10 #include <errno.h>
11 #include <stdio.h>
12 #include <string.h>
13 #include <xf86drm.h>
14 #include <exynos_drm.h>
15
16 #include "drv_priv.h"
17 #include "helpers.h"
18 #include "util.h"
19
20 static int exynos_bo_create(struct bo *bo, uint32_t width, uint32_t height,
21                             uint32_t format, uint32_t flags)
22 {
23         size_t plane;
24
25         if (format == DRV_FORMAT_NV12) {
26                 uint32_t chroma_height;
27                 /* V4L2 s5p-mfc requires width to be 16 byte aligned and height 32. */
28                 width = ALIGN(width, 16);
29                 height = ALIGN(height, 32);
30                 chroma_height = ALIGN(height / 2, 32);
31                 bo->strides[0] = bo->strides[1] = width;
32                 /* MFC v8+ requires 64 byte padding in the end of luma and chroma buffers. */
33                 bo->sizes[0] = bo->strides[0] * height + 64;
34                 bo->sizes[1] = bo->strides[1] * chroma_height + 64;
35                 bo->offsets[0] = bo->offsets[1] = 0;
36         } else if (format == DRV_FORMAT_XRGB8888 || format == DRV_FORMAT_ARGB8888) {
37                 bo->strides[0] = drv_stride_from_format(format, width, 0);
38                 bo->sizes[0] = height * bo->strides[0];
39                 bo->offsets[0] = 0;
40         } else {
41                 fprintf(stderr, "drv: unsupported format %X\n", format);
42                 assert(0);
43                 return -EINVAL;
44         }
45
46         int ret;
47         for (plane = 0; plane < bo->num_planes; plane++) {
48                 size_t size = bo->sizes[plane];
49                 struct drm_exynos_gem_create gem_create;
50
51                 memset(&gem_create, 0, sizeof(gem_create));
52                 gem_create.size = size;
53                 gem_create.flags = EXYNOS_BO_NONCONTIG;
54
55                 ret = drmIoctl(bo->drv->fd, DRM_IOCTL_EXYNOS_GEM_CREATE, &gem_create);
56                 if (ret) {
57                         fprintf(stderr, "drv: DRM_IOCTL_EXYNOS_GEM_CREATE failed "
58                                         "(size=%zu)\n", size);
59                         goto cleanup_planes;
60                 }
61
62                 bo->handles[plane].u32 = gem_create.handle;
63         }
64
65         return 0;
66
67 cleanup_planes:
68         for ( ; plane != 0; plane--) {
69                 struct drm_gem_close gem_close;
70                 memset(&gem_close, 0, sizeof(gem_close));
71                 gem_close.handle = bo->handles[plane - 1].u32;
72                 int gem_close_ret = drmIoctl(bo->drv->fd, DRM_IOCTL_GEM_CLOSE,
73                                              &gem_close);
74                 if (gem_close_ret) {
75                         fprintf(stderr,
76                                 "drv: DRM_IOCTL_GEM_CLOSE failed: %d\n",
77                                 gem_close_ret);
78                 }
79         }
80
81         return ret;
82 }
83
84 /*
85  * Use dumb mapping with exynos even though a GEM buffer is created.
86  * libdrm does the same thing in exynos_drm.c
87  */
88 const struct backend backend_exynos =
89 {
90         .name = "exynos",
91         .bo_create = exynos_bo_create,
92         .bo_destroy = drv_gem_bo_destroy,
93         .bo_map = drv_dumb_bo_map,
94         .format_list = {
95                 {DRV_FORMAT_XRGB8888, DRV_BO_USE_SCANOUT | DRV_BO_USE_CURSOR | DRV_BO_USE_RENDERING},
96                 {DRV_FORMAT_XRGB8888, DRV_BO_USE_SCANOUT | DRV_BO_USE_CURSOR | DRV_BO_USE_LINEAR},
97                 {DRV_FORMAT_ARGB8888, DRV_BO_USE_SCANOUT | DRV_BO_USE_CURSOR | DRV_BO_USE_RENDERING},
98                 {DRV_FORMAT_ARGB8888, DRV_BO_USE_SCANOUT | DRV_BO_USE_CURSOR | DRV_BO_USE_LINEAR},
99                 {DRV_FORMAT_NV12, DRV_BO_USE_SCANOUT | DRV_BO_USE_RENDERING},
100         }
101 };
102
103 #endif