blob: 739016bc7b7c48b0c765bc78df8683ce0e8eb4b0 [file] [log] [blame]
Niklas Schulze878fed42017-02-08 15:29:21 +01001/*
2 * Copyright 2017 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_VC4
8
Stéphane Marchesin6ac299f2019-03-21 12:23:29 -07009#include <errno.h>
Niklas Schulze878fed42017-02-08 15:29:21 +010010#include <stdio.h>
11#include <string.h>
12#include <sys/mman.h>
13#include <vc4_drm.h>
14#include <xf86drm.h>
15
16#include "drv_priv.h"
17#include "helpers.h"
18#include "util.h"
19
Gurchetan Singh8ac0c9a2017-05-15 09:34:22 -070020static const uint32_t render_target_formats[] = { DRM_FORMAT_ARGB8888, DRM_FORMAT_RGB565,
21 DRM_FORMAT_XRGB8888 };
Niklas Schulze878fed42017-02-08 15:29:21 +010022
23static int vc4_init(struct driver *drv)
24{
Gurchetan Singhd3001452017-11-03 17:18:36 -070025 drv_add_combinations(drv, render_target_formats, ARRAY_SIZE(render_target_formats),
26 &LINEAR_METADATA, BO_USE_RENDER_MASK);
Gurchetan Singh8ac0c9a2017-05-15 09:34:22 -070027
28 return drv_modify_linear_combinations(drv);
Niklas Schulze878fed42017-02-08 15:29:21 +010029}
30
Gurchetan Singhc5352e62020-02-21 17:59:01 -080031static int vc4_bo_create_for_modifier(struct bo *bo, uint32_t width, uint32_t height,
32 uint32_t format, uint64_t modifier)
Niklas Schulze878fed42017-02-08 15:29:21 +010033{
34 int ret;
35 size_t plane;
Gurchetan Singh6423ecb2017-03-29 08:23:40 -070036 uint32_t stride;
Gurchetan Singh99644382020-10-07 15:28:11 -070037 struct drm_vc4_create_bo bo_create = { 0 };
Niklas Schulze878fed42017-02-08 15:29:21 +010038
Gurchetan Singhc5352e62020-02-21 17:59:01 -080039 switch (modifier) {
40 case DRM_FORMAT_MOD_LINEAR:
41 break;
42 case DRM_FORMAT_MOD_BROADCOM_VC4_T_TILED:
43 drv_log("DRM_FORMAT_MOD_BROADCOM_VC4_T_TILED not supported yet\n");
44 return -EINVAL;
45 default:
46 return -EINVAL;
47 }
48
Gurchetan Singh6423ecb2017-03-29 08:23:40 -070049 /*
50 * Since the ARM L1 cache line size is 64 bytes, align to that as a
51 * performance optimization.
52 */
53 stride = drv_stride_from_format(format, width, 0);
54 stride = ALIGN(stride, 64);
55 drv_bo_from_format(bo, stride, height, format);
Niklas Schulze878fed42017-02-08 15:29:21 +010056
Gurchetan Singh298b7572019-09-19 09:55:18 -070057 bo_create.size = bo->meta.total_size;
Niklas Schulze878fed42017-02-08 15:29:21 +010058
59 ret = drmIoctl(bo->drv->fd, DRM_IOCTL_VC4_CREATE_BO, &bo_create);
60 if (ret) {
Ewan Roycroft65467ea2020-07-23 16:08:14 +010061 drv_log("DRM_IOCTL_VC4_CREATE_BO failed (size=%zu)\n", bo->meta.total_size);
Stéphane Marchesin6ac299f2019-03-21 12:23:29 -070062 return -errno;
Niklas Schulze878fed42017-02-08 15:29:21 +010063 }
64
Gurchetan Singh298b7572019-09-19 09:55:18 -070065 for (plane = 0; plane < bo->meta.num_planes; plane++)
Niklas Schulze878fed42017-02-08 15:29:21 +010066 bo->handles[plane].u32 = bo_create.handle;
67
68 return 0;
69}
70
Gurchetan Singhc5352e62020-02-21 17:59:01 -080071static int vc4_bo_create(struct bo *bo, uint32_t width, uint32_t height, uint32_t format,
72 uint64_t use_flags)
73{
74 struct combination *combo;
75
76 combo = drv_get_combination(bo->drv, format, use_flags);
77 if (!combo)
78 return -EINVAL;
79
80 return vc4_bo_create_for_modifier(bo, width, height, format, combo->metadata.modifier);
81}
82
83static int vc4_bo_create_with_modifiers(struct bo *bo, uint32_t width, uint32_t height,
84 uint32_t format, const uint64_t *modifiers, uint32_t count)
85{
86 static const uint64_t modifier_order[] = {
87 DRM_FORMAT_MOD_LINEAR,
88 };
89 uint64_t modifier;
90
91 modifier = drv_pick_modifier(modifiers, count, modifier_order, ARRAY_SIZE(modifier_order));
92
93 return vc4_bo_create_for_modifier(bo, width, height, format, modifier);
94}
95
Gurchetan Singhee43c302017-11-14 18:20:27 -080096static void *vc4_bo_map(struct bo *bo, struct vma *vma, size_t plane, uint32_t map_flags)
Niklas Schulze878fed42017-02-08 15:29:21 +010097{
98 int ret;
Gurchetan Singh99644382020-10-07 15:28:11 -070099 struct drm_vc4_mmap_bo bo_map = { 0 };
Niklas Schulze878fed42017-02-08 15:29:21 +0100100
Niklas Schulze878fed42017-02-08 15:29:21 +0100101 bo_map.handle = bo->handles[0].u32;
Gurchetan Singh1b1d56a2017-03-10 16:25:23 -0800102 ret = drmCommandWriteRead(bo->drv->fd, DRM_VC4_MMAP_BO, &bo_map, sizeof(bo_map));
Niklas Schulze878fed42017-02-08 15:29:21 +0100103 if (ret) {
Alistair Strachan0cfaaa52018-03-19 14:03:23 -0700104 drv_log("DRM_VC4_MMAP_BO failed\n");
Niklas Schulze878fed42017-02-08 15:29:21 +0100105 return MAP_FAILED;
106 }
107
Gurchetan Singh298b7572019-09-19 09:55:18 -0700108 vma->length = bo->meta.total_size;
109 return mmap(NULL, bo->meta.total_size, drv_get_prot(map_flags), MAP_SHARED, bo->drv->fd,
Gurchetan Singhcfb88762017-09-28 17:14:50 -0700110 bo_map.offset);
Niklas Schulze878fed42017-02-08 15:29:21 +0100111}
112
Gurchetan Singh3e9d3832017-10-31 10:36:25 -0700113const struct backend backend_vc4 = {
Niklas Schulze878fed42017-02-08 15:29:21 +0100114 .name = "vc4",
115 .init = vc4_init,
116 .bo_create = vc4_bo_create,
Gurchetan Singhc5352e62020-02-21 17:59:01 -0800117 .bo_create_with_modifiers = vc4_bo_create_with_modifiers,
Niklas Schulze878fed42017-02-08 15:29:21 +0100118 .bo_import = drv_prime_bo_import,
119 .bo_destroy = drv_gem_bo_destroy,
120 .bo_map = vc4_bo_map,
Gurchetan Singhba6bd502017-09-18 15:29:47 -0700121 .bo_unmap = drv_bo_munmap,
Niklas Schulze878fed42017-02-08 15:29:21 +0100122};
123
124#endif