OSDN Git Service

f1c0a32619eb349b403eea306f8a808a3848a4d4
[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 drv_exynos_bo_create(struct bo *bo,
21                                 uint32_t width, uint32_t height,
22                                 uint32_t format, uint32_t flags)
23 {
24         size_t plane;
25
26         if (format == DRV_FORMAT_NV12) {
27                 uint32_t chroma_height;
28                 /* V4L2 s5p-mfc requires width to be 16 byte aligned and height 32. */
29                 width = ALIGN(width, 16);
30                 height = ALIGN(height, 32);
31                 chroma_height = ALIGN(height / 2, 32);
32                 bo->strides[0] = bo->strides[1] = width;
33                 /* MFC v8+ requires 64 byte padding in the end of luma and chroma buffers. */
34                 bo->sizes[0] = bo->strides[0] * height + 64;
35                 bo->sizes[1] = bo->strides[1] * chroma_height + 64;
36                 bo->offsets[0] = bo->offsets[1] = 0;
37         } else if (format == DRV_FORMAT_XRGB8888 || format == DRV_FORMAT_ARGB8888) {
38                 bo->strides[0] = drv_stride_from_format(format, width);
39                 bo->sizes[0] = height * bo->strides[0];
40                 bo->offsets[0] = 0;
41         } else {
42                 fprintf(stderr, "drv: unsupported format %X\n", format);
43                 assert(0);
44                 return -EINVAL;
45         }
46
47         int ret;
48         for (plane = 0; plane < bo->num_planes; plane++) {
49                 size_t size = bo->sizes[plane];
50                 struct drm_exynos_gem_create gem_create;
51
52                 memset(&gem_create, 0, sizeof(gem_create));
53                 gem_create.size = size;
54                 gem_create.flags = EXYNOS_BO_NONCONTIG;
55
56                 ret = drmIoctl(bo->drv->fd, DRM_IOCTL_EXYNOS_GEM_CREATE, &gem_create);
57                 if (ret) {
58                         fprintf(stderr, "drv: DRM_IOCTL_EXYNOS_GEM_CREATE failed "
59                                         "(size=%zu)\n", size);
60                         goto cleanup_planes;
61                 }
62
63                 bo->handles[plane].u32 = gem_create.handle;
64         }
65
66         return 0;
67
68 cleanup_planes:
69         for ( ; plane != 0; plane--) {
70                 struct drm_gem_close gem_close;
71                 memset(&gem_close, 0, sizeof(gem_close));
72                 gem_close.handle = bo->handles[plane - 1].u32;
73                 int gem_close_ret = drmIoctl(bo->drv->fd, DRM_IOCTL_GEM_CLOSE,
74                                              &gem_close);
75                 if (gem_close_ret) {
76                         fprintf(stderr,
77                                 "drv: DRM_IOCTL_GEM_CLOSE failed: %d\n",
78                                 gem_close_ret);
79                 }
80         }
81
82         return ret;
83 }
84
85 /*
86  * Use dumb mapping with exynos even though a GEM buffer is created.
87  * libdrm does the same thing in exynos_drm.c
88  */
89 const struct backend backend_exynos =
90 {
91         .name = "exynos",
92         .bo_create = drv_exynos_bo_create,
93         .bo_destroy = drv_gem_bo_destroy,
94         .bo_map = drv_dumb_bo_map,
95         .format_list = {
96                 {DRV_FORMAT_XRGB8888, DRV_BO_USE_SCANOUT | DRV_BO_USE_CURSOR | DRV_BO_USE_RENDERING},
97                 {DRV_FORMAT_XRGB8888, DRV_BO_USE_SCANOUT | DRV_BO_USE_CURSOR | DRV_BO_USE_LINEAR},
98                 {DRV_FORMAT_ARGB8888, DRV_BO_USE_SCANOUT | DRV_BO_USE_CURSOR | DRV_BO_USE_RENDERING},
99                 {DRV_FORMAT_ARGB8888, DRV_BO_USE_SCANOUT | DRV_BO_USE_CURSOR | DRV_BO_USE_LINEAR},
100                 {DRV_FORMAT_NV12, DRV_BO_USE_SCANOUT | DRV_BO_USE_RENDERING},
101         }
102 };
103
104 #endif