Niklas Schulze | 878fed4 | 2017-02-08 15:29:21 +0100 | [diff] [blame] | 1 | /* |
| 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 Marchesin | 6ac299f | 2019-03-21 12:23:29 -0700 | [diff] [blame] | 9 | #include <errno.h> |
Niklas Schulze | 878fed4 | 2017-02-08 15:29:21 +0100 | [diff] [blame] | 10 | #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 Singh | 8ac0c9a | 2017-05-15 09:34:22 -0700 | [diff] [blame] | 20 | static const uint32_t render_target_formats[] = { DRM_FORMAT_ARGB8888, DRM_FORMAT_RGB565, |
| 21 | DRM_FORMAT_XRGB8888 }; |
Niklas Schulze | 878fed4 | 2017-02-08 15:29:21 +0100 | [diff] [blame] | 22 | |
Gurchetan Singh | fd6f6f9 | 2020-03-23 09:46:09 -0700 | [diff] [blame] | 23 | static const uint32_t texture_only_formats[] = { DRM_FORMAT_NV12, DRM_FORMAT_YVU420 }; |
| 24 | |
Niklas Schulze | 878fed4 | 2017-02-08 15:29:21 +0100 | [diff] [blame] | 25 | static int vc4_init(struct driver *drv) |
| 26 | { |
Gurchetan Singh | d300145 | 2017-11-03 17:18:36 -0700 | [diff] [blame] | 27 | drv_add_combinations(drv, render_target_formats, ARRAY_SIZE(render_target_formats), |
| 28 | &LINEAR_METADATA, BO_USE_RENDER_MASK); |
Gurchetan Singh | 8ac0c9a | 2017-05-15 09:34:22 -0700 | [diff] [blame] | 29 | |
Gurchetan Singh | fd6f6f9 | 2020-03-23 09:46:09 -0700 | [diff] [blame] | 30 | drv_add_combinations(drv, texture_only_formats, ARRAY_SIZE(texture_only_formats), |
| 31 | &LINEAR_METADATA, BO_USE_TEXTURE_MASK); |
| 32 | /* |
| 33 | * Chrome uses DMA-buf mmap to write to YV12 buffers, which are then accessed by the |
| 34 | * Video Encoder Accelerator (VEA). It could also support NV12 potentially in the future. |
| 35 | */ |
| 36 | drv_modify_combination(drv, DRM_FORMAT_YVU420, &LINEAR_METADATA, BO_USE_HW_VIDEO_ENCODER); |
| 37 | drv_modify_combination(drv, DRM_FORMAT_NV12, &LINEAR_METADATA, |
| 38 | BO_USE_HW_VIDEO_DECODER | BO_USE_SCANOUT | BO_USE_HW_VIDEO_ENCODER); |
| 39 | |
Gurchetan Singh | 8ac0c9a | 2017-05-15 09:34:22 -0700 | [diff] [blame] | 40 | return drv_modify_linear_combinations(drv); |
Niklas Schulze | 878fed4 | 2017-02-08 15:29:21 +0100 | [diff] [blame] | 41 | } |
| 42 | |
Gurchetan Singh | c5352e6 | 2020-02-21 17:59:01 -0800 | [diff] [blame] | 43 | static int vc4_bo_create_for_modifier(struct bo *bo, uint32_t width, uint32_t height, |
| 44 | uint32_t format, uint64_t modifier) |
Niklas Schulze | 878fed4 | 2017-02-08 15:29:21 +0100 | [diff] [blame] | 45 | { |
| 46 | int ret; |
| 47 | size_t plane; |
Gurchetan Singh | 6423ecb | 2017-03-29 08:23:40 -0700 | [diff] [blame] | 48 | uint32_t stride; |
Gurchetan Singh | 9964438 | 2020-10-07 15:28:11 -0700 | [diff] [blame] | 49 | struct drm_vc4_create_bo bo_create = { 0 }; |
Niklas Schulze | 878fed4 | 2017-02-08 15:29:21 +0100 | [diff] [blame] | 50 | |
Gurchetan Singh | c5352e6 | 2020-02-21 17:59:01 -0800 | [diff] [blame] | 51 | switch (modifier) { |
| 52 | case DRM_FORMAT_MOD_LINEAR: |
| 53 | break; |
| 54 | case DRM_FORMAT_MOD_BROADCOM_VC4_T_TILED: |
| 55 | drv_log("DRM_FORMAT_MOD_BROADCOM_VC4_T_TILED not supported yet\n"); |
| 56 | return -EINVAL; |
| 57 | default: |
| 58 | return -EINVAL; |
| 59 | } |
| 60 | |
Gurchetan Singh | 6423ecb | 2017-03-29 08:23:40 -0700 | [diff] [blame] | 61 | /* |
| 62 | * Since the ARM L1 cache line size is 64 bytes, align to that as a |
| 63 | * performance optimization. |
| 64 | */ |
| 65 | stride = drv_stride_from_format(format, width, 0); |
| 66 | stride = ALIGN(stride, 64); |
| 67 | drv_bo_from_format(bo, stride, height, format); |
Niklas Schulze | 878fed4 | 2017-02-08 15:29:21 +0100 | [diff] [blame] | 68 | |
Gurchetan Singh | 298b757 | 2019-09-19 09:55:18 -0700 | [diff] [blame] | 69 | bo_create.size = bo->meta.total_size; |
Niklas Schulze | 878fed4 | 2017-02-08 15:29:21 +0100 | [diff] [blame] | 70 | |
| 71 | ret = drmIoctl(bo->drv->fd, DRM_IOCTL_VC4_CREATE_BO, &bo_create); |
| 72 | if (ret) { |
Ewan Roycroft | 65467ea | 2020-07-23 16:08:14 +0100 | [diff] [blame] | 73 | drv_log("DRM_IOCTL_VC4_CREATE_BO failed (size=%zu)\n", bo->meta.total_size); |
Stéphane Marchesin | 6ac299f | 2019-03-21 12:23:29 -0700 | [diff] [blame] | 74 | return -errno; |
Niklas Schulze | 878fed4 | 2017-02-08 15:29:21 +0100 | [diff] [blame] | 75 | } |
| 76 | |
Gurchetan Singh | 298b757 | 2019-09-19 09:55:18 -0700 | [diff] [blame] | 77 | for (plane = 0; plane < bo->meta.num_planes; plane++) |
Niklas Schulze | 878fed4 | 2017-02-08 15:29:21 +0100 | [diff] [blame] | 78 | bo->handles[plane].u32 = bo_create.handle; |
| 79 | |
| 80 | return 0; |
| 81 | } |
| 82 | |
Gurchetan Singh | c5352e6 | 2020-02-21 17:59:01 -0800 | [diff] [blame] | 83 | static int vc4_bo_create(struct bo *bo, uint32_t width, uint32_t height, uint32_t format, |
| 84 | uint64_t use_flags) |
| 85 | { |
| 86 | struct combination *combo; |
| 87 | |
| 88 | combo = drv_get_combination(bo->drv, format, use_flags); |
| 89 | if (!combo) |
| 90 | return -EINVAL; |
| 91 | |
| 92 | return vc4_bo_create_for_modifier(bo, width, height, format, combo->metadata.modifier); |
| 93 | } |
| 94 | |
| 95 | static int vc4_bo_create_with_modifiers(struct bo *bo, uint32_t width, uint32_t height, |
| 96 | uint32_t format, const uint64_t *modifiers, uint32_t count) |
| 97 | { |
| 98 | static const uint64_t modifier_order[] = { |
| 99 | DRM_FORMAT_MOD_LINEAR, |
| 100 | }; |
| 101 | uint64_t modifier; |
| 102 | |
| 103 | modifier = drv_pick_modifier(modifiers, count, modifier_order, ARRAY_SIZE(modifier_order)); |
| 104 | |
| 105 | return vc4_bo_create_for_modifier(bo, width, height, format, modifier); |
| 106 | } |
| 107 | |
Gurchetan Singh | ee43c30 | 2017-11-14 18:20:27 -0800 | [diff] [blame] | 108 | static void *vc4_bo_map(struct bo *bo, struct vma *vma, size_t plane, uint32_t map_flags) |
Niklas Schulze | 878fed4 | 2017-02-08 15:29:21 +0100 | [diff] [blame] | 109 | { |
| 110 | int ret; |
Gurchetan Singh | 9964438 | 2020-10-07 15:28:11 -0700 | [diff] [blame] | 111 | struct drm_vc4_mmap_bo bo_map = { 0 }; |
Niklas Schulze | 878fed4 | 2017-02-08 15:29:21 +0100 | [diff] [blame] | 112 | |
Niklas Schulze | 878fed4 | 2017-02-08 15:29:21 +0100 | [diff] [blame] | 113 | bo_map.handle = bo->handles[0].u32; |
Gurchetan Singh | 1b1d56a | 2017-03-10 16:25:23 -0800 | [diff] [blame] | 114 | ret = drmCommandWriteRead(bo->drv->fd, DRM_VC4_MMAP_BO, &bo_map, sizeof(bo_map)); |
Niklas Schulze | 878fed4 | 2017-02-08 15:29:21 +0100 | [diff] [blame] | 115 | if (ret) { |
Alistair Strachan | 0cfaaa5 | 2018-03-19 14:03:23 -0700 | [diff] [blame] | 116 | drv_log("DRM_VC4_MMAP_BO failed\n"); |
Niklas Schulze | 878fed4 | 2017-02-08 15:29:21 +0100 | [diff] [blame] | 117 | return MAP_FAILED; |
| 118 | } |
| 119 | |
Gurchetan Singh | 298b757 | 2019-09-19 09:55:18 -0700 | [diff] [blame] | 120 | vma->length = bo->meta.total_size; |
| 121 | return mmap(NULL, bo->meta.total_size, drv_get_prot(map_flags), MAP_SHARED, bo->drv->fd, |
Gurchetan Singh | cfb8876 | 2017-09-28 17:14:50 -0700 | [diff] [blame] | 122 | bo_map.offset); |
Niklas Schulze | 878fed4 | 2017-02-08 15:29:21 +0100 | [diff] [blame] | 123 | } |
| 124 | |
Gurchetan Singh | 3e9d383 | 2017-10-31 10:36:25 -0700 | [diff] [blame] | 125 | const struct backend backend_vc4 = { |
Niklas Schulze | 878fed4 | 2017-02-08 15:29:21 +0100 | [diff] [blame] | 126 | .name = "vc4", |
| 127 | .init = vc4_init, |
| 128 | .bo_create = vc4_bo_create, |
Gurchetan Singh | c5352e6 | 2020-02-21 17:59:01 -0800 | [diff] [blame] | 129 | .bo_create_with_modifiers = vc4_bo_create_with_modifiers, |
Niklas Schulze | 878fed4 | 2017-02-08 15:29:21 +0100 | [diff] [blame] | 130 | .bo_import = drv_prime_bo_import, |
| 131 | .bo_destroy = drv_gem_bo_destroy, |
| 132 | .bo_map = vc4_bo_map, |
Gurchetan Singh | ba6bd50 | 2017-09-18 15:29:47 -0700 | [diff] [blame] | 133 | .bo_unmap = drv_bo_munmap, |
Niklas Schulze | 878fed4 | 2017-02-08 15:29:21 +0100 | [diff] [blame] | 134 | }; |
| 135 | |
| 136 | #endif |