blob: e12c95fc81a940e1b011c386b7305a35e3af9dfd [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 Singhd7c84fd2016-08-16 18:18:24 -070020static int exynos_bo_create(struct bo *bo, uint32_t width, uint32_t height,
21 uint32_t format, uint32_t flags)
Stéphane Marchesin25a26062014-09-12 16:18:59 -070022{
Yuly Novikov96c7a3b2015-12-08 22:48:29 -050023 size_t plane;
Stéphane Marchesin25a26062014-09-12 16:18:59 -070024
Gurchetan Singh46faf6b2016-08-05 14:40:07 -070025 if (format == DRV_FORMAT_NV12) {
Yuly Novikov96c7a3b2015-12-08 22:48:29 -050026 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;
Gurchetan Singha40ca9e2016-08-29 19:51:45 -070036 bo->total_size = bo->sizes[0] + bo->sizes[1];
Gurchetan Singh46faf6b2016-08-05 14:40:07 -070037 } else if (format == DRV_FORMAT_XRGB8888 || format == DRV_FORMAT_ARGB8888) {
Gurchetan Singh83dc4fb2016-07-19 15:52:33 -070038 bo->strides[0] = drv_stride_from_format(format, width, 0);
Gurchetan Singha40ca9e2016-08-29 19:51:45 -070039 bo->total_size = bo->sizes[0] = height * bo->strides[0];
Yuly Novikov96c7a3b2015-12-08 22:48:29 -050040 bo->offsets[0] = 0;
41 } else {
Gurchetan Singh46faf6b2016-08-05 14:40:07 -070042 fprintf(stderr, "drv: unsupported format %X\n", format);
Yuly Novikov96c7a3b2015-12-08 22:48:29 -050043 assert(0);
44 return -EINVAL;
Ilja H. Friedelf9d2ab72015-04-09 14:08:36 -070045 }
Stéphane Marchesin25a26062014-09-12 16:18:59 -070046
Zach Reizner74312362016-05-03 15:45:16 -070047 int ret;
Yuly Novikov96c7a3b2015-12-08 22:48:29 -050048 for (plane = 0; plane < bo->num_planes; plane++) {
49 size_t size = bo->sizes[plane];
50 struct drm_exynos_gem_create gem_create;
Yuly Novikov96c7a3b2015-12-08 22:48:29 -050051
52 memset(&gem_create, 0, sizeof(gem_create));
53 gem_create.size = size;
54 gem_create.flags = EXYNOS_BO_NONCONTIG;
55
Gurchetan Singh46faf6b2016-08-05 14:40:07 -070056 ret = drmIoctl(bo->drv->fd, DRM_IOCTL_EXYNOS_GEM_CREATE, &gem_create);
Yuly Novikov96c7a3b2015-12-08 22:48:29 -050057 if (ret) {
Gurchetan Singh46faf6b2016-08-05 14:40:07 -070058 fprintf(stderr, "drv: DRM_IOCTL_EXYNOS_GEM_CREATE failed "
Yuly Novikov96c7a3b2015-12-08 22:48:29 -050059 "(size=%zu)\n", size);
Zach Reizner74312362016-05-03 15:45:16 -070060 goto cleanup_planes;
Yuly Novikov96c7a3b2015-12-08 22:48:29 -050061 }
62
63 bo->handles[plane].u32 = gem_create.handle;
64 }
Stéphane Marchesin25a26062014-09-12 16:18:59 -070065
66 return 0;
Zach Reizner74312362016-05-03 15:45:16 -070067
68cleanup_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;
Gurchetan Singh46faf6b2016-08-05 14:40:07 -070073 int gem_close_ret = drmIoctl(bo->drv->fd, DRM_IOCTL_GEM_CLOSE,
Zach Reizner74312362016-05-03 15:45:16 -070074 &gem_close);
75 if (gem_close_ret) {
76 fprintf(stderr,
Gurchetan Singh46faf6b2016-08-05 14:40:07 -070077 "drv: DRM_IOCTL_GEM_CLOSE failed: %d\n",
Zach Reizner74312362016-05-03 15:45:16 -070078 gem_close_ret);
79 }
80 }
81
82 return ret;
Stéphane Marchesin25a26062014-09-12 16:18:59 -070083}
84
Gurchetan Singhef920532016-08-12 16:38:25 -070085/*
86 * Use dumb mapping with exynos even though a GEM buffer is created.
87 * libdrm does the same thing in exynos_drm.c
88 */
Gurchetan Singh46faf6b2016-08-05 14:40:07 -070089const struct backend backend_exynos =
Stéphane Marchesin25a26062014-09-12 16:18:59 -070090{
91 .name = "exynos",
Gurchetan Singhd7c84fd2016-08-16 18:18:24 -070092 .bo_create = exynos_bo_create,
Gurchetan Singh46faf6b2016-08-05 14:40:07 -070093 .bo_destroy = drv_gem_bo_destroy,
Gurchetan Singhef920532016-08-12 16:38:25 -070094 .bo_map = drv_dumb_bo_map,
Stéphane Marchesin25a26062014-09-12 16:18:59 -070095 .format_list = {
Gurchetan Singh46faf6b2016-08-05 14:40:07 -070096 {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},
Stéphane Marchesin25a26062014-09-12 16:18:59 -0700101 }
102};
103
104#endif