JB Tsai | 0c16a0f | 2015-03-19 14:30:31 +0800 | [diff] [blame] | 1 | /* |
| 2 | * Copyright 2015 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 Singh | 46faf6b | 2016-08-05 14:40:07 -0700 | [diff] [blame] | 7 | #ifdef DRV_MEDIATEK |
JB Tsai | 0c16a0f | 2015-03-19 14:30:31 +0800 | [diff] [blame] | 8 | |
Gurchetan Singh | 1b1d56a | 2017-03-10 16:25:23 -0800 | [diff] [blame] | 9 | // clang-format off |
Stéphane Marchesin | 6ac299f | 2019-03-21 12:23:29 -0700 | [diff] [blame] | 10 | #include <errno.h> |
Luigi Santivetti | 500928f | 2018-08-28 10:09:20 +0100 | [diff] [blame] | 11 | #include <fcntl.h> |
Nicolas Boichat | d7c8338 | 2019-08-29 21:46:29 +0800 | [diff] [blame] | 12 | #include <inttypes.h> |
Luigi Santivetti | 500928f | 2018-08-28 10:09:20 +0100 | [diff] [blame] | 13 | #include <poll.h> |
Ilja H. Friedel | f9d2ab7 | 2015-04-09 14:08:36 -0700 | [diff] [blame] | 14 | #include <stdio.h> |
JB Tsai | 0c16a0f | 2015-03-19 14:30:31 +0800 | [diff] [blame] | 15 | #include <string.h> |
Gurchetan Singh | ef92053 | 2016-08-12 16:38:25 -0700 | [diff] [blame] | 16 | #include <sys/mman.h> |
Luigi Santivetti | 500928f | 2018-08-28 10:09:20 +0100 | [diff] [blame] | 17 | #include <unistd.h> |
JB Tsai | 0c16a0f | 2015-03-19 14:30:31 +0800 | [diff] [blame] | 18 | #include <xf86drm.h> |
| 19 | #include <mediatek_drm.h> |
Gurchetan Singh | 1b1d56a | 2017-03-10 16:25:23 -0800 | [diff] [blame] | 20 | // clang-format on |
Gurchetan Singh | ef92053 | 2016-08-12 16:38:25 -0700 | [diff] [blame] | 21 | |
Yiwei Zhang | b7a6444 | 2021-09-30 05:13:10 +0000 | [diff] [blame] | 22 | #include "drv_helpers.h" |
Gurchetan Singh | 46faf6b | 2016-08-05 14:40:07 -0700 | [diff] [blame] | 23 | #include "drv_priv.h" |
Gurchetan Singh | 179687e | 2016-10-28 10:07:35 -0700 | [diff] [blame] | 24 | #include "util.h" |
| 25 | |
Miguel Casas | dea0ccb | 2018-07-02 09:40:25 -0400 | [diff] [blame] | 26 | #define TILE_TYPE_LINEAR 0 |
| 27 | |
Fei Shao | cb63982 | 2022-11-02 16:05:58 +0800 | [diff] [blame] | 28 | // clang-format off |
| 29 | #if defined(MTK_MT8183) || \ |
| 30 | defined(MTK_MT8186) |
| 31 | // clang-format on |
Yiwei Zhang | 185a139 | 2022-09-08 19:21:19 +0000 | [diff] [blame] | 32 | #define SUPPORTS_YUV422 |
Hsin-Yi Wang | 8fe9f19 | 2022-01-18 17:51:02 +0800 | [diff] [blame] | 33 | #endif |
| 34 | |
| 35 | // All platforms except MT8173 should USE_NV12_FOR_HW_VIDEO_DECODING. |
Fei Shao | cb63982 | 2022-11-02 16:05:58 +0800 | [diff] [blame] | 36 | // clang-format off |
| 37 | #if defined(MTK_MT8183) || \ |
| 38 | defined(MTK_MT8186) || \ |
Fei Shao | a375189 | 2022-11-02 16:12:50 +0800 | [diff] [blame] | 39 | defined(MTK_MT8188G) || \ |
Fei Shao | cb63982 | 2022-11-02 16:05:58 +0800 | [diff] [blame] | 40 | defined(MTK_MT8192) || \ |
| 41 | defined(MTK_MT8195) |
| 42 | // clang-format on |
Hsin-Yi Wang | 8fe9f19 | 2022-01-18 17:51:02 +0800 | [diff] [blame] | 43 | #define USE_NV12_FOR_HW_VIDEO_DECODING |
Miguel Casas | 35fd7d2 | 2022-02-18 10:52:28 -0800 | [diff] [blame] | 44 | #else |
| 45 | #define DONT_USE_64_ALIGNMENT_FOR_VIDEO_BUFFERS |
Hsin-Yi Wang | 8fe9f19 | 2022-01-18 17:51:02 +0800 | [diff] [blame] | 46 | #endif |
| 47 | |
Yiwei Zhang | 5c93742 | 2022-08-10 18:23:30 +0000 | [diff] [blame] | 48 | // For Mali Sigurd based GPUs, the texture unit reads outside the specified texture dimensions. |
| 49 | // Therefore, certain formats require extra memory padding to its allocated surface to prevent the |
| 50 | // hardware from reading outside an allocation. For YVU420, we need additional padding for the last |
| 51 | // chroma plane. |
| 52 | #if defined(MTK_MT8186) |
| 53 | #define USE_EXTRA_PADDING_FOR_YVU420 |
| 54 | #endif |
| 55 | |
Gurchetan Singh | 469a3aa | 2017-08-03 18:17:34 -0700 | [diff] [blame] | 56 | struct mediatek_private_map_data { |
| 57 | void *cached_addr; |
| 58 | void *gem_addr; |
Luigi Santivetti | 500928f | 2018-08-28 10:09:20 +0100 | [diff] [blame] | 59 | int prime_fd; |
Gurchetan Singh | 469a3aa | 2017-08-03 18:17:34 -0700 | [diff] [blame] | 60 | }; |
| 61 | |
Gurchetan Singh | 767c538 | 2018-05-05 00:42:12 +0000 | [diff] [blame] | 62 | static const uint32_t render_target_formats[] = { DRM_FORMAT_ABGR8888, DRM_FORMAT_ARGB8888, |
Gurchetan Singh | 71bc665 | 2018-09-17 17:42:05 -0700 | [diff] [blame] | 63 | DRM_FORMAT_RGB565, DRM_FORMAT_XBGR8888, |
| 64 | DRM_FORMAT_XRGB8888 }; |
Gurchetan Singh | 8ac0c9a | 2017-05-15 09:34:22 -0700 | [diff] [blame] | 65 | |
Hsin-Yi Wang | 8fe9f19 | 2022-01-18 17:51:02 +0800 | [diff] [blame] | 66 | // clang-format off |
Yiwei Zhang | f4c1725 | 2021-10-30 08:29:48 +0000 | [diff] [blame] | 67 | static const uint32_t texture_source_formats[] = { |
Yiwei Zhang | 185a139 | 2022-09-08 19:21:19 +0000 | [diff] [blame] | 68 | #ifdef SUPPORTS_YUV422 |
Hsin-Yi Wang | 8fe9f19 | 2022-01-18 17:51:02 +0800 | [diff] [blame] | 69 | DRM_FORMAT_NV21, |
| 70 | DRM_FORMAT_YUYV, |
Yiwei Zhang | 185a139 | 2022-09-08 19:21:19 +0000 | [diff] [blame] | 71 | #endif |
Hsin-Yi Wang | 8fe9f19 | 2022-01-18 17:51:02 +0800 | [diff] [blame] | 72 | DRM_FORMAT_ABGR2101010, |
| 73 | DRM_FORMAT_ABGR16161616F, |
Hsin-Yi Wang | 8fe9f19 | 2022-01-18 17:51:02 +0800 | [diff] [blame] | 74 | DRM_FORMAT_NV12, |
| 75 | DRM_FORMAT_YVU420, |
| 76 | DRM_FORMAT_YVU420_ANDROID |
| 77 | }; |
Miguel Casas | 35fd7d2 | 2022-02-18 10:52:28 -0800 | [diff] [blame] | 78 | |
Miguel Casas | 35fd7d2 | 2022-02-18 10:52:28 -0800 | [diff] [blame] | 79 | static const uint32_t video_yuv_formats[] = { |
| 80 | DRM_FORMAT_NV21, |
| 81 | DRM_FORMAT_NV12, |
Justin Green | c9f6462 | 2022-08-22 16:46:16 -0400 | [diff] [blame] | 82 | DRM_FORMAT_YUYV, |
Miguel Casas | 35fd7d2 | 2022-02-18 10:52:28 -0800 | [diff] [blame] | 83 | DRM_FORMAT_YVU420, |
| 84 | DRM_FORMAT_YVU420_ANDROID |
| 85 | }; |
Hsin-Yi Wang | 8fe9f19 | 2022-01-18 17:51:02 +0800 | [diff] [blame] | 86 | // clang-format on |
Gurchetan Singh | 179687e | 2016-10-28 10:07:35 -0700 | [diff] [blame] | 87 | |
Miguel Casas | 35fd7d2 | 2022-02-18 10:52:28 -0800 | [diff] [blame] | 88 | static bool is_video_yuv_format(uint32_t format) |
| 89 | { |
| 90 | size_t i; |
| 91 | for (i = 0; i < ARRAY_SIZE(video_yuv_formats); ++i) { |
| 92 | if (format == video_yuv_formats[i]) |
| 93 | return true; |
| 94 | } |
| 95 | return false; |
| 96 | } |
Miguel Casas | 35fd7d2 | 2022-02-18 10:52:28 -0800 | [diff] [blame] | 97 | |
Gurchetan Singh | 179687e | 2016-10-28 10:07:35 -0700 | [diff] [blame] | 98 | static int mediatek_init(struct driver *drv) |
| 99 | { |
Miguel Casas | dea0ccb | 2018-07-02 09:40:25 -0400 | [diff] [blame] | 100 | struct format_metadata metadata; |
| 101 | |
Gurchetan Singh | d300145 | 2017-11-03 17:18:36 -0700 | [diff] [blame] | 102 | drv_add_combinations(drv, render_target_formats, ARRAY_SIZE(render_target_formats), |
Gurchetan Singh | 1914f98 | 2020-03-24 13:53:51 -0700 | [diff] [blame] | 103 | &LINEAR_METADATA, BO_USE_RENDER_MASK | BO_USE_SCANOUT); |
Gurchetan Singh | 8ac0c9a | 2017-05-15 09:34:22 -0700 | [diff] [blame] | 104 | |
Gurchetan Singh | d300145 | 2017-11-03 17:18:36 -0700 | [diff] [blame] | 105 | drv_add_combinations(drv, texture_source_formats, ARRAY_SIZE(texture_source_formats), |
| 106 | &LINEAR_METADATA, BO_USE_TEXTURE_MASK); |
Gurchetan Singh | 8ac0c9a | 2017-05-15 09:34:22 -0700 | [diff] [blame] | 107 | |
Gurchetan Singh | bbba9dd | 2020-10-12 17:31:10 -0700 | [diff] [blame] | 108 | drv_add_combination(drv, DRM_FORMAT_R8, &LINEAR_METADATA, BO_USE_SW_MASK | BO_USE_LINEAR); |
Hirokazu Honda | fd8b8ab | 2020-06-16 15:28:56 +0900 | [diff] [blame] | 109 | |
Justin Green | c9f6462 | 2022-08-22 16:46:16 -0400 | [diff] [blame] | 110 | /* YUYV format for video overlay and camera subsystem. */ |
| 111 | drv_add_combination(drv, DRM_FORMAT_YUYV, &LINEAR_METADATA, |
Justin Green | 1805193 | 2022-08-30 13:04:29 -0400 | [diff] [blame] | 112 | BO_USE_HW_VIDEO_DECODER | BO_USE_SCANOUT | BO_USE_LINEAR | |
| 113 | BO_USE_TEXTURE); |
Justin Green | c9f6462 | 2022-08-22 16:46:16 -0400 | [diff] [blame] | 114 | |
Gurchetan Singh | 71bc665 | 2018-09-17 17:42:05 -0700 | [diff] [blame] | 115 | /* Android CTS tests require this. */ |
| 116 | drv_add_combination(drv, DRM_FORMAT_BGR888, &LINEAR_METADATA, BO_USE_SW_MASK); |
| 117 | |
Miguel Casas | dea0ccb | 2018-07-02 09:40:25 -0400 | [diff] [blame] | 118 | /* Support BO_USE_HW_VIDEO_DECODER for protected content minigbm allocations. */ |
| 119 | metadata.tiling = TILE_TYPE_LINEAR; |
| 120 | metadata.priority = 1; |
| 121 | metadata.modifier = DRM_FORMAT_MOD_LINEAR; |
| 122 | drv_modify_combination(drv, DRM_FORMAT_YVU420, &metadata, BO_USE_HW_VIDEO_DECODER); |
| 123 | drv_modify_combination(drv, DRM_FORMAT_YVU420_ANDROID, &metadata, BO_USE_HW_VIDEO_DECODER); |
Hsin-Yi Wang | 8fe9f19 | 2022-01-18 17:51:02 +0800 | [diff] [blame] | 124 | #ifdef USE_NV12_FOR_HW_VIDEO_DECODING |
Wei Lee | 2f02cfb | 2020-08-05 17:24:45 +0800 | [diff] [blame] | 125 | // TODO(hiroh): Switch to use NV12 for video decoder on MT8173 as well. |
Hirokazu Honda | 0f0ce6f | 2019-07-24 19:40:20 +0900 | [diff] [blame] | 126 | drv_modify_combination(drv, DRM_FORMAT_NV12, &metadata, BO_USE_HW_VIDEO_DECODER); |
Wei Lee | 2f02cfb | 2020-08-05 17:24:45 +0800 | [diff] [blame] | 127 | #endif |
Miguel Casas | dea0ccb | 2018-07-02 09:40:25 -0400 | [diff] [blame] | 128 | |
David Stevens | 4951814 | 2020-06-15 13:48:48 +0900 | [diff] [blame] | 129 | /* |
| 130 | * R8 format is used for Android's HAL_PIXEL_FORMAT_BLOB for input/output from |
| 131 | * hardware decoder/encoder. |
| 132 | */ |
| 133 | drv_modify_combination(drv, DRM_FORMAT_R8, &metadata, |
Wei Lee | e03625b | 2020-07-21 11:27:14 +0800 | [diff] [blame] | 134 | BO_USE_HW_VIDEO_DECODER | BO_USE_HW_VIDEO_ENCODER | |
Yiwei Zhang | bbe1fd3 | 2022-07-20 20:44:22 +0000 | [diff] [blame] | 135 | BO_USE_CAMERA_READ | BO_USE_CAMERA_WRITE | |
Jason Macnak | 80f664c | 2022-07-19 16:44:22 -0700 | [diff] [blame] | 136 | BO_USE_GPU_DATA_BUFFER | BO_USE_SENSOR_DIRECT_DATA); |
David Stevens | 4951814 | 2020-06-15 13:48:48 +0900 | [diff] [blame] | 137 | |
Hirokazu Honda | 3bd681c | 2020-06-23 17:52:20 +0900 | [diff] [blame] | 138 | /* NV12 format for encoding and display. */ |
| 139 | drv_modify_combination(drv, DRM_FORMAT_NV12, &metadata, |
Wei Lee | e03625b | 2020-07-21 11:27:14 +0800 | [diff] [blame] | 140 | BO_USE_SCANOUT | BO_USE_HW_VIDEO_ENCODER | BO_USE_CAMERA_READ | |
| 141 | BO_USE_CAMERA_WRITE); |
Hirokazu Honda | 3bd681c | 2020-06-23 17:52:20 +0900 | [diff] [blame] | 142 | |
Wei Lee | e03625b | 2020-07-21 11:27:14 +0800 | [diff] [blame] | 143 | #ifdef MTK_MT8183 |
Nick Fan | 01c4014 | 2018-10-08 11:53:26 +0800 | [diff] [blame] | 144 | /* Only for MT8183 Camera subsystem */ |
Nick Fan | 01c4014 | 2018-10-08 11:53:26 +0800 | [diff] [blame] | 145 | drv_modify_combination(drv, DRM_FORMAT_NV21, &metadata, |
| 146 | BO_USE_CAMERA_READ | BO_USE_CAMERA_WRITE); |
| 147 | drv_modify_combination(drv, DRM_FORMAT_YUYV, &metadata, |
| 148 | BO_USE_CAMERA_READ | BO_USE_CAMERA_WRITE); |
| 149 | drv_modify_combination(drv, DRM_FORMAT_YVU420, &metadata, |
| 150 | BO_USE_CAMERA_READ | BO_USE_CAMERA_WRITE); |
Jasmine Chen | c7aa974 | 2019-08-14 15:28:22 +0800 | [diff] [blame] | 151 | /* Private formats for private reprocessing in camera */ |
| 152 | drv_add_combination(drv, DRM_FORMAT_MTISP_SXYZW10, &metadata, |
| 153 | BO_USE_CAMERA_READ | BO_USE_CAMERA_WRITE | BO_USE_SW_MASK); |
Nick Fan | 01c4014 | 2018-10-08 11:53:26 +0800 | [diff] [blame] | 154 | #endif |
| 155 | |
Gurchetan Singh | 8ac0c9a | 2017-05-15 09:34:22 -0700 | [diff] [blame] | 156 | return drv_modify_linear_combinations(drv); |
Gurchetan Singh | 179687e | 2016-10-28 10:07:35 -0700 | [diff] [blame] | 157 | } |
JB Tsai | 0c16a0f | 2015-03-19 14:30:31 +0800 | [diff] [blame] | 158 | |
Fritz Koenig | 1b9b5b9 | 2019-03-19 13:25:45 -0700 | [diff] [blame] | 159 | static int mediatek_bo_create_with_modifiers(struct bo *bo, uint32_t width, uint32_t height, |
| 160 | uint32_t format, const uint64_t *modifiers, |
| 161 | uint32_t count) |
JB Tsai | 0c16a0f | 2015-03-19 14:30:31 +0800 | [diff] [blame] | 162 | { |
JB Tsai | 0c16a0f | 2015-03-19 14:30:31 +0800 | [diff] [blame] | 163 | int ret; |
Gurchetan Singh | 42cc6d6 | 2016-08-29 18:19:19 -0700 | [diff] [blame] | 164 | size_t plane; |
Gurchetan Singh | 6423ecb | 2017-03-29 08:23:40 -0700 | [diff] [blame] | 165 | uint32_t stride; |
Gurchetan Singh | 9964438 | 2020-10-07 15:28:11 -0700 | [diff] [blame] | 166 | struct drm_mtk_gem_create gem_create = { 0 }; |
Hsin-Yi Wang | 2581c47 | 2022-04-06 17:34:33 +0800 | [diff] [blame] | 167 | /* |
| 168 | * We identify the ChromeOS Camera App buffers via these two USE flags. Those buffers need |
| 169 | * the same alignment as the video hardware encoding. |
| 170 | */ |
| 171 | const bool is_camera_preview = |
| 172 | (bo->meta.use_flags & BO_USE_SCANOUT) && (bo->meta.use_flags & BO_USE_CAMERA_WRITE); |
JB Tsai | 0c16a0f | 2015-03-19 14:30:31 +0800 | [diff] [blame] | 173 | |
Fritz Koenig | 1b9b5b9 | 2019-03-19 13:25:45 -0700 | [diff] [blame] | 174 | if (!drv_has_modifier(modifiers, count, DRM_FORMAT_MOD_LINEAR)) { |
| 175 | errno = EINVAL; |
Yiwei Zhang | 0495473 | 2022-07-13 23:34:33 +0000 | [diff] [blame] | 176 | drv_loge("no usable modifier found\n"); |
Fritz Koenig | 1b9b5b9 | 2019-03-19 13:25:45 -0700 | [diff] [blame] | 177 | return -EINVAL; |
| 178 | } |
| 179 | |
Yiwei Zhang | 6fb145b | 2022-10-07 16:20:38 +0000 | [diff] [blame] | 180 | /* |
| 181 | * Since the ARM L1 cache line size is 64 bytes, align to that as a |
| 182 | * performance optimization, except for video buffers on certain platforms, |
| 183 | * these should only be accessed from the GPU and VCODEC subsystems (maybe |
| 184 | * also MDP), so it's better to align to macroblocks. |
| 185 | */ |
Gurchetan Singh | 6423ecb | 2017-03-29 08:23:40 -0700 | [diff] [blame] | 186 | stride = drv_stride_from_format(format, width, 0); |
Yiwei Zhang | 6fb145b | 2022-10-07 16:20:38 +0000 | [diff] [blame] | 187 | #ifdef DONT_USE_64_ALIGNMENT_FOR_VIDEO_BUFFERS |
| 188 | const uint32_t alignment = is_video_yuv_format(format) ? 16 : 64; |
| 189 | stride = ALIGN(stride, alignment); |
| 190 | #else |
| 191 | stride = ALIGN(stride, 64); |
| 192 | #endif |
Hirokazu Honda | 2a2bfc2 | 2019-10-11 15:54:50 +0900 | [diff] [blame] | 193 | |
Hsin-Yi Wang | 2581c47 | 2022-04-06 17:34:33 +0800 | [diff] [blame] | 194 | if ((bo->meta.use_flags & BO_USE_HW_VIDEO_ENCODER) || is_camera_preview) { |
Hirokazu Honda | 2a2bfc2 | 2019-10-11 15:54:50 +0900 | [diff] [blame] | 195 | uint32_t aligned_height = ALIGN(height, 32); |
| 196 | uint32_t padding[DRV_MAX_PLANES] = { 0 }; |
| 197 | |
| 198 | for (plane = 0; plane < bo->meta.num_planes; ++plane) { |
| 199 | uint32_t plane_stride = drv_stride_from_format(format, stride, plane); |
| 200 | padding[plane] = plane_stride * |
| 201 | (32 / drv_vertical_subsampling_from_format(format, plane)); |
| 202 | } |
| 203 | |
| 204 | drv_bo_from_format_and_padding(bo, stride, aligned_height, format, padding); |
| 205 | } else { |
Yiwei Zhang | 185a139 | 2022-09-08 19:21:19 +0000 | [diff] [blame] | 206 | #ifdef SUPPORTS_YUV422 |
Moja Hsu | 059ac08 | 2019-10-02 14:47:10 +0800 | [diff] [blame] | 207 | /* |
| 208 | * JPEG Encoder Accelerator requires 16x16 alignment. We want the buffer |
| 209 | * from camera can be put in JEA directly so align the height to 16 |
| 210 | * bytes. |
| 211 | */ |
| 212 | if (format == DRM_FORMAT_NV12) |
| 213 | height = ALIGN(height, 16); |
| 214 | #endif |
Hirokazu Honda | 2a2bfc2 | 2019-10-11 15:54:50 +0900 | [diff] [blame] | 215 | drv_bo_from_format(bo, stride, height, format); |
Yiwei Zhang | 5c93742 | 2022-08-10 18:23:30 +0000 | [diff] [blame] | 216 | |
| 217 | #ifdef USE_EXTRA_PADDING_FOR_YVU420 |
Yiwei Zhang | b2dde01 | 2022-09-27 04:12:54 +0000 | [diff] [blame] | 218 | /* |
| 219 | * Apply extra padding for YV12 if the height does not meet round up requirement and |
| 220 | * the image is to be sampled by gpu. |
| 221 | */ |
| 222 | static const uint32_t required_round_up = 4; |
| 223 | const uint32_t height_mod = height % required_round_up; |
Yiwei Zhang | 5c93742 | 2022-08-10 18:23:30 +0000 | [diff] [blame] | 224 | if ((format == DRM_FORMAT_YVU420 || format == DRM_FORMAT_YVU420_ANDROID) && |
Yiwei Zhang | b2dde01 | 2022-09-27 04:12:54 +0000 | [diff] [blame] | 225 | (bo->meta.use_flags & BO_USE_TEXTURE) && height_mod) { |
| 226 | const uint32_t height_padding = required_round_up - height_mod; |
| 227 | const uint32_t u_padding = |
| 228 | drv_size_from_format(format, bo->meta.strides[2], height_padding, 2); |
| 229 | |
| 230 | bo->meta.total_size += u_padding; |
| 231 | |
| 232 | /* |
| 233 | * Since we are not aligning Y, we must make sure that its padding fits |
| 234 | * inside the rest of the space allocated for the V/U planes. |
| 235 | */ |
| 236 | const uint32_t y_padding = |
| 237 | drv_size_from_format(format, bo->meta.strides[0], height_padding, 0); |
| 238 | const uint32_t vu_size = drv_bo_get_plane_size(bo, 2) * 2; |
| 239 | if (y_padding > vu_size) { |
| 240 | /* Align with mali workaround to pad all 3 planes. */ |
| 241 | bo->meta.total_size += y_padding + u_padding; |
| 242 | } |
Yiwei Zhang | 5c93742 | 2022-08-10 18:23:30 +0000 | [diff] [blame] | 243 | } |
| 244 | #endif |
Hirokazu Honda | 2a2bfc2 | 2019-10-11 15:54:50 +0900 | [diff] [blame] | 245 | } |
Yuly Novikov | 96c7a3b | 2015-12-08 22:48:29 -0500 | [diff] [blame] | 246 | |
Gurchetan Singh | 298b757 | 2019-09-19 09:55:18 -0700 | [diff] [blame] | 247 | gem_create.size = bo->meta.total_size; |
JB Tsai | 0c16a0f | 2015-03-19 14:30:31 +0800 | [diff] [blame] | 248 | |
Gurchetan Singh | 46faf6b | 2016-08-05 14:40:07 -0700 | [diff] [blame] | 249 | ret = drmIoctl(bo->drv->fd, DRM_IOCTL_MTK_GEM_CREATE, &gem_create); |
Ilja H. Friedel | f9d2ab7 | 2015-04-09 14:08:36 -0700 | [diff] [blame] | 250 | if (ret) { |
Yiwei Zhang | 0495473 | 2022-07-13 23:34:33 +0000 | [diff] [blame] | 251 | drv_loge("DRM_IOCTL_MTK_GEM_CREATE failed (size=%" PRIu64 ")\n", gem_create.size); |
Stéphane Marchesin | 6ac299f | 2019-03-21 12:23:29 -0700 | [diff] [blame] | 252 | return -errno; |
Ilja H. Friedel | f9d2ab7 | 2015-04-09 14:08:36 -0700 | [diff] [blame] | 253 | } |
JB Tsai | 0c16a0f | 2015-03-19 14:30:31 +0800 | [diff] [blame] | 254 | |
Gurchetan Singh | 298b757 | 2019-09-19 09:55:18 -0700 | [diff] [blame] | 255 | for (plane = 0; plane < bo->meta.num_planes; plane++) |
Gurchetan Singh | 42cc6d6 | 2016-08-29 18:19:19 -0700 | [diff] [blame] | 256 | bo->handles[plane].u32 = gem_create.handle; |
JB Tsai | 0c16a0f | 2015-03-19 14:30:31 +0800 | [diff] [blame] | 257 | |
| 258 | return 0; |
| 259 | } |
| 260 | |
Fritz Koenig | 1b9b5b9 | 2019-03-19 13:25:45 -0700 | [diff] [blame] | 261 | static int mediatek_bo_create(struct bo *bo, uint32_t width, uint32_t height, uint32_t format, |
| 262 | uint64_t use_flags) |
| 263 | { |
| 264 | uint64_t modifiers[] = { DRM_FORMAT_MOD_LINEAR }; |
| 265 | return mediatek_bo_create_with_modifiers(bo, width, height, format, modifiers, |
| 266 | ARRAY_SIZE(modifiers)); |
| 267 | } |
| 268 | |
Gurchetan Singh | ee43c30 | 2017-11-14 18:20:27 -0800 | [diff] [blame] | 269 | static void *mediatek_bo_map(struct bo *bo, struct vma *vma, size_t plane, uint32_t map_flags) |
Gurchetan Singh | ef92053 | 2016-08-12 16:38:25 -0700 | [diff] [blame] | 270 | { |
Luigi Santivetti | 500928f | 2018-08-28 10:09:20 +0100 | [diff] [blame] | 271 | int ret, prime_fd; |
Gurchetan Singh | 9964438 | 2020-10-07 15:28:11 -0700 | [diff] [blame] | 272 | struct drm_mtk_gem_map_off gem_map = { 0 }; |
Gurchetan Singh | 469a3aa | 2017-08-03 18:17:34 -0700 | [diff] [blame] | 273 | struct mediatek_private_map_data *priv; |
Yiwei Zhang | afdf87d | 2021-09-28 04:06:06 +0000 | [diff] [blame] | 274 | void *addr = NULL; |
Gurchetan Singh | ef92053 | 2016-08-12 16:38:25 -0700 | [diff] [blame] | 275 | |
Gurchetan Singh | ef92053 | 2016-08-12 16:38:25 -0700 | [diff] [blame] | 276 | gem_map.handle = bo->handles[0].u32; |
| 277 | |
| 278 | ret = drmIoctl(bo->drv->fd, DRM_IOCTL_MTK_GEM_MAP_OFFSET, &gem_map); |
| 279 | if (ret) { |
Yiwei Zhang | 0495473 | 2022-07-13 23:34:33 +0000 | [diff] [blame] | 280 | drv_loge("DRM_IOCTL_MTK_GEM_MAP_OFFSET failed\n"); |
Gurchetan Singh | ef92053 | 2016-08-12 16:38:25 -0700 | [diff] [blame] | 281 | return MAP_FAILED; |
| 282 | } |
| 283 | |
David Stevens | ddb56b5 | 2020-03-13 15:24:37 +0900 | [diff] [blame] | 284 | prime_fd = drv_bo_get_plane_fd(bo, 0); |
| 285 | if (prime_fd < 0) { |
Yiwei Zhang | 0495473 | 2022-07-13 23:34:33 +0000 | [diff] [blame] | 286 | drv_loge("Failed to get a prime fd\n"); |
Luigi Santivetti | 500928f | 2018-08-28 10:09:20 +0100 | [diff] [blame] | 287 | return MAP_FAILED; |
| 288 | } |
| 289 | |
Yiwei Zhang | afdf87d | 2021-09-28 04:06:06 +0000 | [diff] [blame] | 290 | addr = mmap(0, bo->meta.total_size, drv_get_prot(map_flags), MAP_SHARED, bo->drv->fd, |
| 291 | gem_map.offset); |
| 292 | if (addr == MAP_FAILED) |
| 293 | goto out_close_prime_fd; |
Gurchetan Singh | 469a3aa | 2017-08-03 18:17:34 -0700 | [diff] [blame] | 294 | |
Gurchetan Singh | 298b757 | 2019-09-19 09:55:18 -0700 | [diff] [blame] | 295 | vma->length = bo->meta.total_size; |
Gurchetan Singh | 1a31e60 | 2016-10-06 10:58:00 -0700 | [diff] [blame] | 296 | |
Luigi Santivetti | 500928f | 2018-08-28 10:09:20 +0100 | [diff] [blame] | 297 | priv = calloc(1, sizeof(*priv)); |
Yiwei Zhang | afdf87d | 2021-09-28 04:06:06 +0000 | [diff] [blame] | 298 | if (!priv) |
| 299 | goto out_unmap_addr; |
Luigi Santivetti | 500928f | 2018-08-28 10:09:20 +0100 | [diff] [blame] | 300 | |
Gurchetan Singh | 298b757 | 2019-09-19 09:55:18 -0700 | [diff] [blame] | 301 | if (bo->meta.use_flags & BO_USE_RENDERSCRIPT) { |
| 302 | priv->cached_addr = calloc(1, bo->meta.total_size); |
Yiwei Zhang | afdf87d | 2021-09-28 04:06:06 +0000 | [diff] [blame] | 303 | if (!priv->cached_addr) |
| 304 | goto out_free_priv; |
| 305 | |
Gurchetan Singh | 469a3aa | 2017-08-03 18:17:34 -0700 | [diff] [blame] | 306 | priv->gem_addr = addr; |
Gurchetan Singh | 469a3aa | 2017-08-03 18:17:34 -0700 | [diff] [blame] | 307 | addr = priv->cached_addr; |
| 308 | } |
| 309 | |
Yiwei Zhang | afdf87d | 2021-09-28 04:06:06 +0000 | [diff] [blame] | 310 | priv->prime_fd = prime_fd; |
| 311 | vma->priv = priv; |
| 312 | |
Gurchetan Singh | 469a3aa | 2017-08-03 18:17:34 -0700 | [diff] [blame] | 313 | return addr; |
Yiwei Zhang | afdf87d | 2021-09-28 04:06:06 +0000 | [diff] [blame] | 314 | |
| 315 | out_free_priv: |
| 316 | free(priv); |
| 317 | out_unmap_addr: |
| 318 | munmap(addr, bo->meta.total_size); |
| 319 | out_close_prime_fd: |
| 320 | close(prime_fd); |
| 321 | return MAP_FAILED; |
Gurchetan Singh | 469a3aa | 2017-08-03 18:17:34 -0700 | [diff] [blame] | 322 | } |
| 323 | |
Gurchetan Singh | ee43c30 | 2017-11-14 18:20:27 -0800 | [diff] [blame] | 324 | static int mediatek_bo_unmap(struct bo *bo, struct vma *vma) |
Gurchetan Singh | 469a3aa | 2017-08-03 18:17:34 -0700 | [diff] [blame] | 325 | { |
Gurchetan Singh | ee43c30 | 2017-11-14 18:20:27 -0800 | [diff] [blame] | 326 | if (vma->priv) { |
| 327 | struct mediatek_private_map_data *priv = vma->priv; |
Luigi Santivetti | a72f442 | 2018-09-12 16:28:21 +0100 | [diff] [blame] | 328 | |
| 329 | if (priv->cached_addr) { |
| 330 | vma->addr = priv->gem_addr; |
| 331 | free(priv->cached_addr); |
| 332 | } |
| 333 | |
Luigi Santivetti | 500928f | 2018-08-28 10:09:20 +0100 | [diff] [blame] | 334 | close(priv->prime_fd); |
Gurchetan Singh | 469a3aa | 2017-08-03 18:17:34 -0700 | [diff] [blame] | 335 | free(priv); |
Gurchetan Singh | ee43c30 | 2017-11-14 18:20:27 -0800 | [diff] [blame] | 336 | vma->priv = NULL; |
Gurchetan Singh | 469a3aa | 2017-08-03 18:17:34 -0700 | [diff] [blame] | 337 | } |
| 338 | |
Gurchetan Singh | ee43c30 | 2017-11-14 18:20:27 -0800 | [diff] [blame] | 339 | return munmap(vma->addr, vma->length); |
Gurchetan Singh | ef92053 | 2016-08-12 16:38:25 -0700 | [diff] [blame] | 340 | } |
| 341 | |
Gurchetan Singh | ef262d8 | 2017-11-28 16:56:17 -0800 | [diff] [blame] | 342 | static int mediatek_bo_invalidate(struct bo *bo, struct mapping *mapping) |
| 343 | { |
Luigi Santivetti | 500928f | 2018-08-28 10:09:20 +0100 | [diff] [blame] | 344 | struct mediatek_private_map_data *priv = mapping->vma->priv; |
| 345 | |
| 346 | if (priv) { |
| 347 | struct pollfd fds = { |
| 348 | .fd = priv->prime_fd, |
| 349 | }; |
| 350 | |
| 351 | if (mapping->vma->map_flags & BO_MAP_WRITE) |
| 352 | fds.events |= POLLOUT; |
| 353 | |
| 354 | if (mapping->vma->map_flags & BO_MAP_READ) |
| 355 | fds.events |= POLLIN; |
| 356 | |
| 357 | poll(&fds, 1, -1); |
| 358 | if (fds.revents != fds.events) |
Yiwei Zhang | 0495473 | 2022-07-13 23:34:33 +0000 | [diff] [blame] | 359 | drv_loge("poll prime_fd failed\n"); |
Luigi Santivetti | 500928f | 2018-08-28 10:09:20 +0100 | [diff] [blame] | 360 | |
| 361 | if (priv->cached_addr) |
Gurchetan Singh | 298b757 | 2019-09-19 09:55:18 -0700 | [diff] [blame] | 362 | memcpy(priv->cached_addr, priv->gem_addr, bo->meta.total_size); |
Gurchetan Singh | ef262d8 | 2017-11-28 16:56:17 -0800 | [diff] [blame] | 363 | } |
| 364 | |
| 365 | return 0; |
| 366 | } |
| 367 | |
Gurchetan Singh | 47e629b | 2017-11-02 14:07:18 -0700 | [diff] [blame] | 368 | static int mediatek_bo_flush(struct bo *bo, struct mapping *mapping) |
Gurchetan Singh | 8e02e05 | 2017-09-14 14:18:43 -0700 | [diff] [blame] | 369 | { |
Gurchetan Singh | 47e629b | 2017-11-02 14:07:18 -0700 | [diff] [blame] | 370 | struct mediatek_private_map_data *priv = mapping->vma->priv; |
Luigi Santivetti | 500928f | 2018-08-28 10:09:20 +0100 | [diff] [blame] | 371 | if (priv && priv->cached_addr && (mapping->vma->map_flags & BO_MAP_WRITE)) |
Gurchetan Singh | 298b757 | 2019-09-19 09:55:18 -0700 | [diff] [blame] | 372 | memcpy(priv->gem_addr, priv->cached_addr, bo->meta.total_size); |
Gurchetan Singh | 8e02e05 | 2017-09-14 14:18:43 -0700 | [diff] [blame] | 373 | |
| 374 | return 0; |
| 375 | } |
| 376 | |
Yiwei Zhang | b8ad7b8 | 2021-10-01 17:55:14 +0000 | [diff] [blame] | 377 | static void mediatek_resolve_format_and_use_flags(struct driver *drv, uint32_t format, |
| 378 | uint64_t use_flags, uint32_t *out_format, |
| 379 | uint64_t *out_use_flags) |
Gurchetan Singh | 42cc6d6 | 2016-08-29 18:19:19 -0700 | [diff] [blame] | 380 | { |
Yiwei Zhang | b8ad7b8 | 2021-10-01 17:55:14 +0000 | [diff] [blame] | 381 | *out_format = format; |
| 382 | *out_use_flags = use_flags; |
Gurchetan Singh | 42cc6d6 | 2016-08-29 18:19:19 -0700 | [diff] [blame] | 383 | switch (format) { |
Gurchetan Singh | f3b22da | 2016-11-21 10:46:38 -0800 | [diff] [blame] | 384 | case DRM_FORMAT_FLEX_IMPLEMENTATION_DEFINED: |
Nick Fan | 01c4014 | 2018-10-08 11:53:26 +0800 | [diff] [blame] | 385 | #ifdef MTK_MT8183 |
Jasmine Chen | c7aa974 | 2019-08-14 15:28:22 +0800 | [diff] [blame] | 386 | /* Only MT8183 Camera subsystem offers private reprocessing |
| 387 | * capability. CAMERA_READ indicates the buffer is intended for |
| 388 | * reprocessing and hence given the private format for MTK. */ |
Yiwei Zhang | b8ad7b8 | 2021-10-01 17:55:14 +0000 | [diff] [blame] | 389 | if (use_flags & BO_USE_CAMERA_READ) { |
| 390 | *out_format = DRM_FORMAT_MTISP_SXYZW10; |
| 391 | break; |
| 392 | } |
Nick Fan | 01c4014 | 2018-10-08 11:53:26 +0800 | [diff] [blame] | 393 | #endif |
Yiwei Zhang | b8ad7b8 | 2021-10-01 17:55:14 +0000 | [diff] [blame] | 394 | if (use_flags & BO_USE_CAMERA_WRITE) { |
| 395 | *out_format = DRM_FORMAT_NV12; |
| 396 | break; |
| 397 | } |
Wei Lee | e03625b | 2020-07-21 11:27:14 +0800 | [diff] [blame] | 398 | |
Yiwei Zhang | b8ad7b8 | 2021-10-01 17:55:14 +0000 | [diff] [blame] | 399 | /* HACK: See b/28671744 */ |
| 400 | *out_format = DRM_FORMAT_XBGR8888; |
Yiwei Zhang | 3a171db | 2021-10-01 22:12:05 +0000 | [diff] [blame] | 401 | *out_use_flags &= ~BO_USE_HW_VIDEO_ENCODER; |
Yiwei Zhang | b8ad7b8 | 2021-10-01 17:55:14 +0000 | [diff] [blame] | 402 | break; |
Gurchetan Singh | f3b22da | 2016-11-21 10:46:38 -0800 | [diff] [blame] | 403 | case DRM_FORMAT_FLEX_YCbCr_420_888: |
Hsin-Yi Wang | 8fe9f19 | 2022-01-18 17:51:02 +0800 | [diff] [blame] | 404 | #ifdef USE_NV12_FOR_HW_VIDEO_DECODING |
Wei Lee | 2f02cfb | 2020-08-05 17:24:45 +0800 | [diff] [blame] | 405 | // TODO(hiroh): Switch to use NV12 for video decoder on MT8173 as well. |
| 406 | if (use_flags & (BO_USE_HW_VIDEO_DECODER)) { |
Yiwei Zhang | b8ad7b8 | 2021-10-01 17:55:14 +0000 | [diff] [blame] | 407 | *out_format = DRM_FORMAT_NV12; |
| 408 | break; |
Wei Lee | 2f02cfb | 2020-08-05 17:24:45 +0800 | [diff] [blame] | 409 | } |
| 410 | #endif |
| 411 | if (use_flags & |
| 412 | (BO_USE_CAMERA_READ | BO_USE_CAMERA_WRITE | BO_USE_HW_VIDEO_ENCODER)) { |
Yiwei Zhang | b8ad7b8 | 2021-10-01 17:55:14 +0000 | [diff] [blame] | 413 | *out_format = DRM_FORMAT_NV12; |
| 414 | break; |
Hirokazu Honda | 2a2bfc2 | 2019-10-11 15:54:50 +0900 | [diff] [blame] | 415 | } |
Yiwei Zhang | b3caf22 | 2021-10-01 21:55:58 +0000 | [diff] [blame] | 416 | |
| 417 | /* HACK: See b/139714614 */ |
Yiwei Zhang | b8ad7b8 | 2021-10-01 17:55:14 +0000 | [diff] [blame] | 418 | *out_format = DRM_FORMAT_YVU420; |
Yiwei Zhang | b3caf22 | 2021-10-01 21:55:58 +0000 | [diff] [blame] | 419 | *out_use_flags &= ~BO_USE_SCANOUT; |
Yiwei Zhang | b8ad7b8 | 2021-10-01 17:55:14 +0000 | [diff] [blame] | 420 | break; |
Gurchetan Singh | 42cc6d6 | 2016-08-29 18:19:19 -0700 | [diff] [blame] | 421 | default: |
Yiwei Zhang | b8ad7b8 | 2021-10-01 17:55:14 +0000 | [diff] [blame] | 422 | break; |
Gurchetan Singh | 42cc6d6 | 2016-08-29 18:19:19 -0700 | [diff] [blame] | 423 | } |
Hsin-Yi Wang | d4df3d5 | 2022-03-28 13:29:06 +0800 | [diff] [blame] | 424 | /* Mediatek doesn't support YUV overlays */ |
| 425 | if (is_video_yuv_format(format)) |
| 426 | *out_use_flags &= ~BO_USE_SCANOUT; |
Gurchetan Singh | 42cc6d6 | 2016-08-29 18:19:19 -0700 | [diff] [blame] | 427 | } |
| 428 | |
Gurchetan Singh | 3e9d383 | 2017-10-31 10:36:25 -0700 | [diff] [blame] | 429 | const struct backend backend_mediatek = { |
JB Tsai | 0c16a0f | 2015-03-19 14:30:31 +0800 | [diff] [blame] | 430 | .name = "mediatek", |
Gurchetan Singh | 179687e | 2016-10-28 10:07:35 -0700 | [diff] [blame] | 431 | .init = mediatek_init, |
Gurchetan Singh | d7c84fd | 2016-08-16 18:18:24 -0700 | [diff] [blame] | 432 | .bo_create = mediatek_bo_create, |
Fritz Koenig | 1b9b5b9 | 2019-03-19 13:25:45 -0700 | [diff] [blame] | 433 | .bo_create_with_modifiers = mediatek_bo_create_with_modifiers, |
Gurchetan Singh | 46faf6b | 2016-08-05 14:40:07 -0700 | [diff] [blame] | 434 | .bo_destroy = drv_gem_bo_destroy, |
Gurchetan Singh | 71611d6 | 2017-01-03 16:49:56 -0800 | [diff] [blame] | 435 | .bo_import = drv_prime_bo_import, |
Gurchetan Singh | d7c84fd | 2016-08-16 18:18:24 -0700 | [diff] [blame] | 436 | .bo_map = mediatek_bo_map, |
Gurchetan Singh | 469a3aa | 2017-08-03 18:17:34 -0700 | [diff] [blame] | 437 | .bo_unmap = mediatek_bo_unmap, |
Gurchetan Singh | ef262d8 | 2017-11-28 16:56:17 -0800 | [diff] [blame] | 438 | .bo_invalidate = mediatek_bo_invalidate, |
Gurchetan Singh | 8e02e05 | 2017-09-14 14:18:43 -0700 | [diff] [blame] | 439 | .bo_flush = mediatek_bo_flush, |
Yiwei Zhang | b8ad7b8 | 2021-10-01 17:55:14 +0000 | [diff] [blame] | 440 | .resolve_format_and_use_flags = mediatek_resolve_format_and_use_flags, |
JB Tsai | 0c16a0f | 2015-03-19 14:30:31 +0800 | [diff] [blame] | 441 | }; |
| 442 | |
| 443 | #endif |