blob: d6dc7def46f05b2ac51356e926ca0acce472c7eb [file] [log] [blame]
Stéphane Marchesin25a26062014-09-12 16:18:59 -07001/*
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
Gurchetan Singh46faf6b2016-08-05 14:40:07 -07007#ifdef DRV_EXYNOS
Stéphane Marchesin25a26062014-09-12 16:18:59 -07008
Yuly Novikov96c7a3b2015-12-08 22:48:29 -05009#include <assert.h>
10#include <errno.h>
Ilja H. Friedelf9d2ab72015-04-09 14:08:36 -070011#include <stdio.h>
Stéphane Marchesin25a26062014-09-12 16:18:59 -070012#include <string.h>
13#include <xf86drm.h>
14#include <exynos_drm.h>
15
Gurchetan Singh46faf6b2016-08-05 14:40:07 -070016#include "drv_priv.h"
Stéphane Marchesin25a26062014-09-12 16:18:59 -070017#include "helpers.h"
Yuly Novikov96c7a3b2015-12-08 22:48:29 -050018#include "util.h"
Stéphane Marchesin25a26062014-09-12 16:18:59 -070019
Gurchetan Singh179687e2016-10-28 10:07:35 -070020static struct supported_combination combos[5] = {
Gurchetan Singh458976f2016-11-23 17:32:33 -080021 {DRM_FORMAT_ARGB8888, DRM_FORMAT_MOD_NONE, BO_USE_CURSOR | BO_USE_LINEAR},
22 {DRM_FORMAT_ARGB8888, DRM_FORMAT_MOD_NONE, BO_USE_RENDERING},
23 {DRM_FORMAT_NV12, DRM_FORMAT_MOD_NONE, BO_USE_RENDERING},
24 {DRM_FORMAT_XRGB8888, DRM_FORMAT_MOD_NONE, BO_USE_CURSOR | BO_USE_LINEAR},
25 {DRM_FORMAT_XRGB8888, DRM_FORMAT_MOD_NONE, BO_USE_RENDERING},
Gurchetan Singh179687e2016-10-28 10:07:35 -070026};
27
28static int exynos_init(struct driver *drv)
29{
30 drv_insert_combinations(drv, combos, ARRAY_SIZE(combos));
31 return drv_add_kms_flags(drv);
32}
33
Gurchetan Singhd7c84fd2016-08-16 18:18:24 -070034static int exynos_bo_create(struct bo *bo, uint32_t width, uint32_t height,
35 uint32_t format, uint32_t flags)
Stéphane Marchesin25a26062014-09-12 16:18:59 -070036{
Yuly Novikov96c7a3b2015-12-08 22:48:29 -050037 size_t plane;
Stéphane Marchesin25a26062014-09-12 16:18:59 -070038
Gurchetan Singhf3b22da2016-11-21 10:46:38 -080039 if (format == DRM_FORMAT_NV12) {
Yuly Novikov96c7a3b2015-12-08 22:48:29 -050040 uint32_t chroma_height;
41 /* V4L2 s5p-mfc requires width to be 16 byte aligned and height 32. */
42 width = ALIGN(width, 16);
43 height = ALIGN(height, 32);
44 chroma_height = ALIGN(height / 2, 32);
45 bo->strides[0] = bo->strides[1] = width;
46 /* MFC v8+ requires 64 byte padding in the end of luma and chroma buffers. */
47 bo->sizes[0] = bo->strides[0] * height + 64;
48 bo->sizes[1] = bo->strides[1] * chroma_height + 64;
49 bo->offsets[0] = bo->offsets[1] = 0;
Gurchetan Singha40ca9e2016-08-29 19:51:45 -070050 bo->total_size = bo->sizes[0] + bo->sizes[1];
Gurchetan Singhf3b22da2016-11-21 10:46:38 -080051 } else if (format == DRM_FORMAT_XRGB8888 || format == DRM_FORMAT_ARGB8888) {
Gurchetan Singh83dc4fb2016-07-19 15:52:33 -070052 bo->strides[0] = drv_stride_from_format(format, width, 0);
Gurchetan Singha40ca9e2016-08-29 19:51:45 -070053 bo->total_size = bo->sizes[0] = height * bo->strides[0];
Yuly Novikov96c7a3b2015-12-08 22:48:29 -050054 bo->offsets[0] = 0;
55 } else {
Gurchetan Singh46faf6b2016-08-05 14:40:07 -070056 fprintf(stderr, "drv: unsupported format %X\n", format);
Yuly Novikov96c7a3b2015-12-08 22:48:29 -050057 assert(0);
58 return -EINVAL;
Ilja H. Friedelf9d2ab72015-04-09 14:08:36 -070059 }
Stéphane Marchesin25a26062014-09-12 16:18:59 -070060
Zach Reizner74312362016-05-03 15:45:16 -070061 int ret;
Yuly Novikov96c7a3b2015-12-08 22:48:29 -050062 for (plane = 0; plane < bo->num_planes; plane++) {
63 size_t size = bo->sizes[plane];
64 struct drm_exynos_gem_create gem_create;
Yuly Novikov96c7a3b2015-12-08 22:48:29 -050065
66 memset(&gem_create, 0, sizeof(gem_create));
67 gem_create.size = size;
68 gem_create.flags = EXYNOS_BO_NONCONTIG;
69
Gurchetan Singh46faf6b2016-08-05 14:40:07 -070070 ret = drmIoctl(bo->drv->fd, DRM_IOCTL_EXYNOS_GEM_CREATE, &gem_create);
Yuly Novikov96c7a3b2015-12-08 22:48:29 -050071 if (ret) {
Gurchetan Singh46faf6b2016-08-05 14:40:07 -070072 fprintf(stderr, "drv: DRM_IOCTL_EXYNOS_GEM_CREATE failed "
Yuly Novikov96c7a3b2015-12-08 22:48:29 -050073 "(size=%zu)\n", size);
Zach Reizner74312362016-05-03 15:45:16 -070074 goto cleanup_planes;
Yuly Novikov96c7a3b2015-12-08 22:48:29 -050075 }
76
77 bo->handles[plane].u32 = gem_create.handle;
78 }
Stéphane Marchesin25a26062014-09-12 16:18:59 -070079
80 return 0;
Zach Reizner74312362016-05-03 15:45:16 -070081
82cleanup_planes:
83 for ( ; plane != 0; plane--) {
84 struct drm_gem_close gem_close;
85 memset(&gem_close, 0, sizeof(gem_close));
86 gem_close.handle = bo->handles[plane - 1].u32;
Gurchetan Singh46faf6b2016-08-05 14:40:07 -070087 int gem_close_ret = drmIoctl(bo->drv->fd, DRM_IOCTL_GEM_CLOSE,
Zach Reizner74312362016-05-03 15:45:16 -070088 &gem_close);
89 if (gem_close_ret) {
90 fprintf(stderr,
Gurchetan Singh46faf6b2016-08-05 14:40:07 -070091 "drv: DRM_IOCTL_GEM_CLOSE failed: %d\n",
Zach Reizner74312362016-05-03 15:45:16 -070092 gem_close_ret);
93 }
94 }
95
96 return ret;
Stéphane Marchesin25a26062014-09-12 16:18:59 -070097}
98
Gurchetan Singhef920532016-08-12 16:38:25 -070099/*
100 * Use dumb mapping with exynos even though a GEM buffer is created.
101 * libdrm does the same thing in exynos_drm.c
102 */
Gurchetan Singh179687e2016-10-28 10:07:35 -0700103struct backend backend_exynos =
Stéphane Marchesin25a26062014-09-12 16:18:59 -0700104{
105 .name = "exynos",
Gurchetan Singh179687e2016-10-28 10:07:35 -0700106 .init = exynos_init,
Gurchetan Singhd7c84fd2016-08-16 18:18:24 -0700107 .bo_create = exynos_bo_create,
Gurchetan Singh46faf6b2016-08-05 14:40:07 -0700108 .bo_destroy = drv_gem_bo_destroy,
Gurchetan Singhef920532016-08-12 16:38:25 -0700109 .bo_map = drv_dumb_bo_map,
Stéphane Marchesin25a26062014-09-12 16:18:59 -0700110};
111
112#endif