blob: a182347126d6d535e002503ce455b27ea9d66a3b [file] [log] [blame]
Stéphane Marchesin25a26062014-09-12 16:18:59 -07001/*
Daniele Castagna7a755de2016-12-16 17:32:30 -05002 * Copyright 2014 The Chromium OS Authors. All rights reserved.
Stéphane Marchesin25a26062014-09-12 16:18:59 -07003 * Use of this source code is governed by a BSD-style license that can be
4 * found in the LICENSE file.
5 */
6
Yuly Novikov96c7a3b2015-12-08 22:48:29 -05007#include <assert.h>
Gurchetan Singh6b41fb52017-03-01 20:14:39 -08008#include <errno.h>
Stéphane Marchesin25a26062014-09-12 16:18:59 -07009#include <stdio.h>
Yuly Novikov96c7a3b2015-12-08 22:48:29 -050010#include <stdlib.h>
Stéphane Marchesin25a26062014-09-12 16:18:59 -070011#include <string.h>
Gurchetan Singhef920532016-08-12 16:38:25 -070012#include <sys/mman.h>
Jason Macnak1de7f662020-01-24 15:05:57 -080013#include <sys/types.h>
14#include <unistd.h>
Stéphane Marchesin25a26062014-09-12 16:18:59 -070015#include <xf86drm.h>
16
Gurchetan Singh46faf6b2016-08-05 14:40:07 -070017#include "drv_priv.h"
Lauri Peltonen904a8792015-01-17 13:57:51 +020018#include "helpers.h"
Yuly Novikov96c7a3b2015-12-08 22:48:29 -050019#include "util.h"
20
Kristian H. Kristensen478343f2018-04-04 14:02:50 -070021struct planar_layout {
22 size_t num_planes;
23 int horizontal_subsampling[DRV_MAX_PLANES];
24 int vertical_subsampling[DRV_MAX_PLANES];
25 int bytes_per_pixel[DRV_MAX_PLANES];
26};
27
28// clang-format off
29
30static const struct planar_layout packed_1bpp_layout = {
31 .num_planes = 1,
32 .horizontal_subsampling = { 1 },
33 .vertical_subsampling = { 1 },
34 .bytes_per_pixel = { 1 }
35};
36
37static const struct planar_layout packed_2bpp_layout = {
38 .num_planes = 1,
39 .horizontal_subsampling = { 1 },
40 .vertical_subsampling = { 1 },
41 .bytes_per_pixel = { 2 }
42};
43
44static const struct planar_layout packed_3bpp_layout = {
45 .num_planes = 1,
46 .horizontal_subsampling = { 1 },
47 .vertical_subsampling = { 1 },
48 .bytes_per_pixel = { 3 }
49};
50
51static const struct planar_layout packed_4bpp_layout = {
52 .num_planes = 1,
53 .horizontal_subsampling = { 1 },
54 .vertical_subsampling = { 1 },
55 .bytes_per_pixel = { 4 }
56};
57
Nataraj Deshpande586e2d62019-08-21 15:19:46 -070058static const struct planar_layout packed_8bpp_layout = {
59 .num_planes = 1,
60 .horizontal_subsampling = { 1 },
61 .vertical_subsampling = { 1 },
62 .bytes_per_pixel = { 8 }
63};
64
Kristian H. Kristensen478343f2018-04-04 14:02:50 -070065static const struct planar_layout biplanar_yuv_420_layout = {
66 .num_planes = 2,
67 .horizontal_subsampling = { 1, 2 },
68 .vertical_subsampling = { 1, 2 },
69 .bytes_per_pixel = { 1, 2 }
70};
71
72static const struct planar_layout triplanar_yuv_420_layout = {
73 .num_planes = 3,
74 .horizontal_subsampling = { 1, 2, 2 },
75 .vertical_subsampling = { 1, 2, 2 },
76 .bytes_per_pixel = { 1, 1, 1 }
77};
78
Miguel Casas055a6aa2019-04-30 18:11:40 -040079static const struct planar_layout biplanar_yuv_p010_layout = {
80 .num_planes = 2,
81 .horizontal_subsampling = { 1, 2 },
82 .vertical_subsampling = { 1, 2 },
83 .bytes_per_pixel = { 2, 4 }
84};
85
Kristian H. Kristensen478343f2018-04-04 14:02:50 -070086// clang-format on
87
88static const struct planar_layout *layout_from_format(uint32_t format)
Gurchetan Singh1b1d56a2017-03-10 16:25:23 -080089{
Gurchetan Singhd6fb5772016-08-29 19:13:51 -070090 switch (format) {
Gurchetan Singhe8ab0a52016-11-21 11:36:31 -080091 case DRM_FORMAT_BGR233:
Gurchetan Singhf3b22da2016-11-21 10:46:38 -080092 case DRM_FORMAT_C8:
93 case DRM_FORMAT_R8:
94 case DRM_FORMAT_RGB332:
Kristian H. Kristensen478343f2018-04-04 14:02:50 -070095 return &packed_1bpp_layout;
96
Jason Macnak1de7f662020-01-24 15:05:57 -080097 case DRM_FORMAT_R16:
98 return &packed_2bpp_layout;
99
Gurchetan Singhf3b22da2016-11-21 10:46:38 -0800100 case DRM_FORMAT_YVU420:
Gurchetan Singh03f13562017-02-08 15:21:14 -0800101 case DRM_FORMAT_YVU420_ANDROID:
Kristian H. Kristensen478343f2018-04-04 14:02:50 -0700102 return &triplanar_yuv_420_layout;
Stéphane Marchesin25a26062014-09-12 16:18:59 -0700103
Gurchetan Singhf3b22da2016-11-21 10:46:38 -0800104 case DRM_FORMAT_NV12:
Shirish Sdf423df2017-04-18 16:21:59 +0530105 case DRM_FORMAT_NV21:
Kristian H. Kristensen478343f2018-04-04 14:02:50 -0700106 return &biplanar_yuv_420_layout;
Yuly Novikov96c7a3b2015-12-08 22:48:29 -0500107
Miguel Casas055a6aa2019-04-30 18:11:40 -0400108 case DRM_FORMAT_P010:
109 return &biplanar_yuv_p010_layout;
110
Gurchetan Singhf3b22da2016-11-21 10:46:38 -0800111 case DRM_FORMAT_ABGR1555:
Gurchetan Singhe8ab0a52016-11-21 11:36:31 -0800112 case DRM_FORMAT_ABGR4444:
113 case DRM_FORMAT_ARGB1555:
114 case DRM_FORMAT_ARGB4444:
Gurchetan Singhf3b22da2016-11-21 10:46:38 -0800115 case DRM_FORMAT_BGR565:
Gurchetan Singhe8ab0a52016-11-21 11:36:31 -0800116 case DRM_FORMAT_BGRA4444:
117 case DRM_FORMAT_BGRA5551:
118 case DRM_FORMAT_BGRX4444:
119 case DRM_FORMAT_BGRX5551:
120 case DRM_FORMAT_GR88:
121 case DRM_FORMAT_RG88:
122 case DRM_FORMAT_RGB565:
123 case DRM_FORMAT_RGBA4444:
124 case DRM_FORMAT_RGBA5551:
125 case DRM_FORMAT_RGBX4444:
126 case DRM_FORMAT_RGBX5551:
Gurchetan Singhf3b22da2016-11-21 10:46:38 -0800127 case DRM_FORMAT_UYVY:
128 case DRM_FORMAT_VYUY:
Gurchetan Singhe8ab0a52016-11-21 11:36:31 -0800129 case DRM_FORMAT_XBGR1555:
130 case DRM_FORMAT_XBGR4444:
131 case DRM_FORMAT_XRGB1555:
132 case DRM_FORMAT_XRGB4444:
133 case DRM_FORMAT_YUYV:
134 case DRM_FORMAT_YVYU:
Jasmine Chenc7aa9742019-08-14 15:28:22 +0800135 case DRM_FORMAT_MTISP_SXYZW10:
Kristian H. Kristensen478343f2018-04-04 14:02:50 -0700136 return &packed_2bpp_layout;
Stéphane Marchesin25a26062014-09-12 16:18:59 -0700137
Gurchetan Singhf3b22da2016-11-21 10:46:38 -0800138 case DRM_FORMAT_BGR888:
Gurchetan Singhe8ab0a52016-11-21 11:36:31 -0800139 case DRM_FORMAT_RGB888:
Kristian H. Kristensen478343f2018-04-04 14:02:50 -0700140 return &packed_3bpp_layout;
Stéphane Marchesin25a26062014-09-12 16:18:59 -0700141
Gurchetan Singhf3b22da2016-11-21 10:46:38 -0800142 case DRM_FORMAT_ABGR2101010:
Gurchetan Singhe8ab0a52016-11-21 11:36:31 -0800143 case DRM_FORMAT_ABGR8888:
144 case DRM_FORMAT_ARGB2101010:
145 case DRM_FORMAT_ARGB8888:
Gurchetan Singhf3b22da2016-11-21 10:46:38 -0800146 case DRM_FORMAT_AYUV:
Gurchetan Singhe8ab0a52016-11-21 11:36:31 -0800147 case DRM_FORMAT_BGRA1010102:
148 case DRM_FORMAT_BGRA8888:
149 case DRM_FORMAT_BGRX1010102:
150 case DRM_FORMAT_BGRX8888:
151 case DRM_FORMAT_RGBA1010102:
152 case DRM_FORMAT_RGBA8888:
153 case DRM_FORMAT_RGBX1010102:
154 case DRM_FORMAT_RGBX8888:
155 case DRM_FORMAT_XBGR2101010:
156 case DRM_FORMAT_XBGR8888:
157 case DRM_FORMAT_XRGB2101010:
158 case DRM_FORMAT_XRGB8888:
Kristian H. Kristensen478343f2018-04-04 14:02:50 -0700159 return &packed_4bpp_layout;
Stéphane Marchesin25a26062014-09-12 16:18:59 -0700160
Nataraj Deshpande586e2d62019-08-21 15:19:46 -0700161 case DRM_FORMAT_ABGR16161616F:
162 return &packed_8bpp_layout;
163
Kristian H. Kristensen478343f2018-04-04 14:02:50 -0700164 default:
165 drv_log("UNKNOWN FORMAT %d\n", format);
166 return NULL;
167 }
168}
169
170size_t drv_num_planes_from_format(uint32_t format)
171{
172 const struct planar_layout *layout = layout_from_format(format);
173
174 /*
175 * drv_bo_new calls this function early to query number of planes and
176 * considers 0 planes to mean unknown format, so we have to support
177 * that. All other layout_from_format() queries can assume that the
178 * format is supported and that the return value is non-NULL.
179 */
180
181 return layout ? layout->num_planes : 0;
182}
183
ChromeOS Developer44588bb2020-03-02 16:32:09 +0100184size_t drv_num_planes_from_modifier(struct driver *drv, uint32_t format, uint64_t modifier)
185{
186 size_t planes = drv_num_planes_from_format(format);
187
188 /* Disallow unsupported formats. */
189 if (!planes)
190 return 0;
191
Drew Davenportb65708a2020-11-09 18:37:55 -0700192 if (drv->backend->num_planes_from_modifier && modifier != DRM_FORMAT_MOD_INVALID &&
193 modifier != DRM_FORMAT_MOD_LINEAR)
ChromeOS Developer44588bb2020-03-02 16:32:09 +0100194 return drv->backend->num_planes_from_modifier(drv, format, modifier);
195
196 return planes;
197}
198
Kristian H. Kristensen478343f2018-04-04 14:02:50 -0700199uint32_t drv_height_from_format(uint32_t format, uint32_t height, size_t plane)
200{
201 const struct planar_layout *layout = layout_from_format(format);
202
203 assert(plane < layout->num_planes);
204
205 return DIV_ROUND_UP(height, layout->vertical_subsampling[plane]);
206}
207
Hirokazu Honda2a2bfc22019-10-11 15:54:50 +0900208uint32_t drv_vertical_subsampling_from_format(uint32_t format, size_t plane)
209{
210 const struct planar_layout *layout = layout_from_format(format);
211
212 assert(plane < layout->num_planes);
213
214 return layout->vertical_subsampling[plane];
215}
216
Kristian H. Kristensen478343f2018-04-04 14:02:50 -0700217uint32_t drv_bytes_per_pixel_from_format(uint32_t format, size_t plane)
218{
219 const struct planar_layout *layout = layout_from_format(format);
220
221 assert(plane < layout->num_planes);
222
223 return layout->bytes_per_pixel[plane];
Stéphane Marchesin25a26062014-09-12 16:18:59 -0700224}
225
Gurchetan Singh83dc4fb2016-07-19 15:52:33 -0700226/*
Gurchetan Singh4f298f92017-03-23 11:29:26 -0700227 * This function returns the stride for a given format, width and plane.
228 */
229uint32_t drv_stride_from_format(uint32_t format, uint32_t width, size_t plane)
230{
Kristian H. Kristensen478343f2018-04-04 14:02:50 -0700231 const struct planar_layout *layout = layout_from_format(format);
232 assert(plane < layout->num_planes);
233
Gurchetan Singh6bd78852018-06-06 17:15:31 -0700234 uint32_t plane_width = DIV_ROUND_UP(width, layout->horizontal_subsampling[plane]);
Kristian H. Kristensen478343f2018-04-04 14:02:50 -0700235 uint32_t stride = plane_width * layout->bytes_per_pixel[plane];
Gurchetan Singh4f298f92017-03-23 11:29:26 -0700236
237 /*
Gurchetan Singh4f298f92017-03-23 11:29:26 -0700238 * The stride of Android YV12 buffers is required to be aligned to 16 bytes
239 * (see <system/graphics.h>).
240 */
241 if (format == DRM_FORMAT_YVU420_ANDROID)
Gurchetan Singh1b1d56a2017-03-10 16:25:23 -0800242 stride = (plane == 0) ? ALIGN(stride, 32) : ALIGN(stride, 16);
Gurchetan Singh4f298f92017-03-23 11:29:26 -0700243
244 return stride;
245}
246
Gurchetan Singhbc24bd72017-09-28 15:21:53 -0700247uint32_t drv_size_from_format(uint32_t format, uint32_t stride, uint32_t height, size_t plane)
248{
Kristian H. Kristensen478343f2018-04-04 14:02:50 -0700249 return stride * drv_height_from_format(format, height, plane);
250}
Gurchetan Singhbc24bd72017-09-28 15:21:53 -0700251
Kristian H. Kristensen478343f2018-04-04 14:02:50 -0700252static uint32_t subsample_stride(uint32_t stride, uint32_t format, size_t plane)
253{
254 if (plane != 0) {
255 switch (format) {
256 case DRM_FORMAT_YVU420:
257 case DRM_FORMAT_YVU420_ANDROID:
258 stride = DIV_ROUND_UP(stride, 2);
259 break;
260 }
Gurchetan Singhbc24bd72017-09-28 15:21:53 -0700261 }
262
Kristian H. Kristensen478343f2018-04-04 14:02:50 -0700263 return stride;
Gurchetan Singhbc24bd72017-09-28 15:21:53 -0700264}
265
Gurchetan Singh4f298f92017-03-23 11:29:26 -0700266/*
Gurchetan Singh6423ecb2017-03-29 08:23:40 -0700267 * This function fills in the buffer object given the driver aligned stride of
268 * the first plane, height and a format. This function assumes there is just
269 * one kernel buffer per buffer object.
Gurchetan Singh42cc6d62016-08-29 18:19:19 -0700270 */
Gurchetan Singh1b1d56a2017-03-10 16:25:23 -0800271int drv_bo_from_format(struct bo *bo, uint32_t stride, uint32_t aligned_height, uint32_t format)
Gurchetan Singh42cc6d62016-08-29 18:19:19 -0700272{
Hirokazu Honda2a2bfc22019-10-11 15:54:50 +0900273 uint32_t padding[DRV_MAX_PLANES] = { 0 };
274 return drv_bo_from_format_and_padding(bo, stride, aligned_height, format, padding);
275}
Gurchetan Singh42cc6d62016-08-29 18:19:19 -0700276
Hirokazu Honda2a2bfc22019-10-11 15:54:50 +0900277int drv_bo_from_format_and_padding(struct bo *bo, uint32_t stride, uint32_t aligned_height,
278 uint32_t format, uint32_t padding[DRV_MAX_PLANES])
279{
Gurchetan Singh2a119342016-11-02 10:40:51 -0700280 size_t p, num_planes;
281 uint32_t offset = 0;
282
283 num_planes = drv_num_planes_from_format(format);
284 assert(num_planes);
Owen Linbbb69fd2017-06-05 14:33:08 +0800285
286 /*
287 * HAL_PIXEL_FORMAT_YV12 requires that (see <system/graphics.h>):
288 * - the aligned height is same as the buffer's height.
289 * - the chroma stride is 16 bytes aligned, i.e., the luma's strides
290 * is 32 bytes aligned.
291 */
Tomasz Figad846de62017-07-29 15:47:54 +0900292 if (format == DRM_FORMAT_YVU420_ANDROID) {
Gurchetan Singh298b7572019-09-19 09:55:18 -0700293 assert(aligned_height == bo->meta.height);
Owen Linbbb69fd2017-06-05 14:33:08 +0800294 assert(stride == ALIGN(stride, 32));
295 }
Gurchetan Singh2a119342016-11-02 10:40:51 -0700296
297 for (p = 0; p < num_planes; p++) {
Gurchetan Singh298b7572019-09-19 09:55:18 -0700298 bo->meta.strides[p] = subsample_stride(stride, format, p);
299 bo->meta.sizes[p] =
Hirokazu Honda2a2bfc22019-10-11 15:54:50 +0900300 drv_size_from_format(format, bo->meta.strides[p], aligned_height, p) +
301 padding[p];
Gurchetan Singh298b7572019-09-19 09:55:18 -0700302 bo->meta.offsets[p] = offset;
303 offset += bo->meta.sizes[p];
Gurchetan Singh42cc6d62016-08-29 18:19:19 -0700304 }
305
Gurchetan Singh298b7572019-09-19 09:55:18 -0700306 bo->meta.total_size = offset;
Gurchetan Singh42cc6d62016-08-29 18:19:19 -0700307 return 0;
308}
309
Dominik Behr6e6dc492019-10-09 15:43:52 -0700310int drv_dumb_bo_create_ex(struct bo *bo, uint32_t width, uint32_t height, uint32_t format,
311 uint64_t use_flags, uint64_t quirks)
Stéphane Marchesin25a26062014-09-12 16:18:59 -0700312{
Stéphane Marchesin25a26062014-09-12 16:18:59 -0700313 int ret;
Gurchetan Singhd5f8e442017-03-16 13:05:45 -0700314 size_t plane;
Gurchetan Singh6423ecb2017-03-29 08:23:40 -0700315 uint32_t aligned_width, aligned_height;
Gurchetan Singh99644382020-10-07 15:28:11 -0700316 struct drm_mode_create_dumb create_dumb = { 0 };
Stéphane Marchesin25a26062014-09-12 16:18:59 -0700317
Gurchetan Singhd5f8e442017-03-16 13:05:45 -0700318 aligned_width = width;
319 aligned_height = height;
Keiichi Watanabeaf94db92018-08-06 18:37:21 +0900320 switch (format) {
Jason Macnak1de7f662020-01-24 15:05:57 -0800321 case DRM_FORMAT_R16:
322 /* HAL_PIXEL_FORMAT_Y16 requires that the buffer's width be 16 pixel
323 * aligned. See hardware/interfaces/graphics/common/1.0/types.hal. */
324 aligned_width = ALIGN(width, 16);
325 break;
Keiichi Watanabeaf94db92018-08-06 18:37:21 +0900326 case DRM_FORMAT_YVU420_ANDROID:
Jason Macnak778e21d2020-04-28 11:21:16 -0700327 /* HAL_PIXEL_FORMAT_YV12 requires that the buffer's height not
328 * be aligned. Update 'height' so that drv_bo_from_format below
329 * uses the non-aligned height. */
330 height = bo->meta.height;
331
Keiichi Watanabeaf94db92018-08-06 18:37:21 +0900332 /* Align width to 32 pixels, so chroma strides are 16 bytes as
333 * Android requires. */
Gurchetan Singhd5f8e442017-03-16 13:05:45 -0700334 aligned_width = ALIGN(width, 32);
Jason Macnak778e21d2020-04-28 11:21:16 -0700335
336 /* Adjust the height to include room for chroma planes. */
337 aligned_height = 3 * DIV_ROUND_UP(height, 2);
Keiichi Watanabeaf94db92018-08-06 18:37:21 +0900338 break;
339 case DRM_FORMAT_YVU420:
340 case DRM_FORMAT_NV12:
Jason Macnak1de7f662020-01-24 15:05:57 -0800341 case DRM_FORMAT_NV21:
Emilian Peeva32d9732021-01-21 11:35:27 -0800342 case DRM_FORMAT_P010:
Keiichi Watanabeaf94db92018-08-06 18:37:21 +0900343 /* Adjust the height to include room for chroma planes */
344 aligned_height = 3 * DIV_ROUND_UP(height, 2);
345 break;
346 default:
347 break;
Gurchetan Singhd5f8e442017-03-16 13:05:45 -0700348 }
Yuly Novikov96c7a3b2015-12-08 22:48:29 -0500349
Dominik Behr6e6dc492019-10-09 15:43:52 -0700350 if (quirks & BO_QUIRK_DUMB32BPP) {
351 aligned_width =
352 DIV_ROUND_UP(aligned_width * layout_from_format(format)->bytes_per_pixel[0], 4);
353 create_dumb.bpp = 32;
354 } else {
355 create_dumb.bpp = layout_from_format(format)->bytes_per_pixel[0] * 8;
356 }
Gurchetan Singhd5f8e442017-03-16 13:05:45 -0700357 create_dumb.width = aligned_width;
Dominik Behr6e6dc492019-10-09 15:43:52 -0700358 create_dumb.height = aligned_height;
Stéphane Marchesin25a26062014-09-12 16:18:59 -0700359 create_dumb.flags = 0;
360
Gurchetan Singh46faf6b2016-08-05 14:40:07 -0700361 ret = drmIoctl(bo->drv->fd, DRM_IOCTL_MODE_CREATE_DUMB, &create_dumb);
Ilja H. Friedelf9d2ab72015-04-09 14:08:36 -0700362 if (ret) {
Alistair Strachan0cfaaa52018-03-19 14:03:23 -0700363 drv_log("DRM_IOCTL_MODE_CREATE_DUMB failed (%d, %d)\n", bo->drv->fd, errno);
Stéphane Marchesin6ac299f2019-03-21 12:23:29 -0700364 return -errno;
Ilja H. Friedelf9d2ab72015-04-09 14:08:36 -0700365 }
Stéphane Marchesin25a26062014-09-12 16:18:59 -0700366
Gurchetan Singh6423ecb2017-03-29 08:23:40 -0700367 drv_bo_from_format(bo, create_dumb.pitch, height, format);
Stéphane Marchesin25a26062014-09-12 16:18:59 -0700368
Gurchetan Singh298b7572019-09-19 09:55:18 -0700369 for (plane = 0; plane < bo->meta.num_planes; plane++)
Gurchetan Singhd5f8e442017-03-16 13:05:45 -0700370 bo->handles[plane].u32 = create_dumb.handle;
371
Gurchetan Singh298b7572019-09-19 09:55:18 -0700372 bo->meta.total_size = create_dumb.size;
Stéphane Marchesin25a26062014-09-12 16:18:59 -0700373 return 0;
374}
375
Dominik Behr6e6dc492019-10-09 15:43:52 -0700376int drv_dumb_bo_create(struct bo *bo, uint32_t width, uint32_t height, uint32_t format,
377 uint64_t use_flags)
378{
379 return drv_dumb_bo_create_ex(bo, width, height, format, use_flags, BO_QUIRK_NONE);
380}
381
Gurchetan Singh46faf6b2016-08-05 14:40:07 -0700382int drv_dumb_bo_destroy(struct bo *bo)
Stéphane Marchesin25a26062014-09-12 16:18:59 -0700383{
Stéphane Marchesin25a26062014-09-12 16:18:59 -0700384 int ret;
Gurchetan Singh99644382020-10-07 15:28:11 -0700385 struct drm_mode_destroy_dumb destroy_dumb = { 0 };
Stéphane Marchesin25a26062014-09-12 16:18:59 -0700386
Yuly Novikov96c7a3b2015-12-08 22:48:29 -0500387 destroy_dumb.handle = bo->handles[0].u32;
Gurchetan Singh46faf6b2016-08-05 14:40:07 -0700388 ret = drmIoctl(bo->drv->fd, DRM_IOCTL_MODE_DESTROY_DUMB, &destroy_dumb);
Ilja H. Friedelf9d2ab72015-04-09 14:08:36 -0700389 if (ret) {
Alistair Strachan0cfaaa52018-03-19 14:03:23 -0700390 drv_log("DRM_IOCTL_MODE_DESTROY_DUMB failed (handle=%x)\n", bo->handles[0].u32);
Stéphane Marchesin6ac299f2019-03-21 12:23:29 -0700391 return -errno;
Ilja H. Friedelf9d2ab72015-04-09 14:08:36 -0700392 }
Stéphane Marchesin25a26062014-09-12 16:18:59 -0700393
394 return 0;
395}
396
Gurchetan Singh46faf6b2016-08-05 14:40:07 -0700397int drv_gem_bo_destroy(struct bo *bo)
Stéphane Marchesin25a26062014-09-12 16:18:59 -0700398{
399 struct drm_gem_close gem_close;
Yuly Novikov96c7a3b2015-12-08 22:48:29 -0500400 int ret, error = 0;
401 size_t plane, i;
Stéphane Marchesin25a26062014-09-12 16:18:59 -0700402
Gurchetan Singh298b7572019-09-19 09:55:18 -0700403 for (plane = 0; plane < bo->meta.num_planes; plane++) {
Gurchetan Singhf64487b2016-07-14 19:54:44 -0700404 for (i = 0; i < plane; i++)
405 if (bo->handles[i].u32 == bo->handles[plane].u32)
406 break;
407 /* Make sure close hasn't already been called on this handle */
408 if (i != plane)
Yuly Novikov96c7a3b2015-12-08 22:48:29 -0500409 continue;
Stéphane Marchesin25a26062014-09-12 16:18:59 -0700410
Yuly Novikov96c7a3b2015-12-08 22:48:29 -0500411 memset(&gem_close, 0, sizeof(gem_close));
412 gem_close.handle = bo->handles[plane].u32;
413
Gurchetan Singh46faf6b2016-08-05 14:40:07 -0700414 ret = drmIoctl(bo->drv->fd, DRM_IOCTL_GEM_CLOSE, &gem_close);
Yuly Novikov96c7a3b2015-12-08 22:48:29 -0500415 if (ret) {
Alistair Strachan0cfaaa52018-03-19 14:03:23 -0700416 drv_log("DRM_IOCTL_GEM_CLOSE failed (handle=%x) error %d\n",
Gurchetan Singh1b1d56a2017-03-10 16:25:23 -0800417 bo->handles[plane].u32, ret);
Stéphane Marchesin6ac299f2019-03-21 12:23:29 -0700418 error = -errno;
Yuly Novikov96c7a3b2015-12-08 22:48:29 -0500419 }
Ilja H. Friedelf9d2ab72015-04-09 14:08:36 -0700420 }
Stéphane Marchesin25a26062014-09-12 16:18:59 -0700421
Yuly Novikov96c7a3b2015-12-08 22:48:29 -0500422 return error;
Stéphane Marchesin25a26062014-09-12 16:18:59 -0700423}
Gurchetan Singh1647fbe2016-08-03 17:14:55 -0700424
Gurchetan Singh71611d62017-01-03 16:49:56 -0800425int drv_prime_bo_import(struct bo *bo, struct drv_import_fd_data *data)
426{
427 int ret;
428 size_t plane;
429 struct drm_prime_handle prime_handle;
430
Gurchetan Singh298b7572019-09-19 09:55:18 -0700431 for (plane = 0; plane < bo->meta.num_planes; plane++) {
Gurchetan Singh71611d62017-01-03 16:49:56 -0800432 memset(&prime_handle, 0, sizeof(prime_handle));
433 prime_handle.fd = data->fds[plane];
434
Gurchetan Singh1b1d56a2017-03-10 16:25:23 -0800435 ret = drmIoctl(bo->drv->fd, DRM_IOCTL_PRIME_FD_TO_HANDLE, &prime_handle);
Gurchetan Singh71611d62017-01-03 16:49:56 -0800436
437 if (ret) {
Alistair Strachan0cfaaa52018-03-19 14:03:23 -0700438 drv_log("DRM_IOCTL_PRIME_FD_TO_HANDLE failed (fd=%u)\n", prime_handle.fd);
Gurchetan Singh71611d62017-01-03 16:49:56 -0800439
440 /*
441 * Need to call GEM close on planes that were opened,
442 * if any. Adjust the num_planes variable to be the
443 * plane that failed, so GEM close will be called on
444 * planes before that plane.
445 */
Gurchetan Singh298b7572019-09-19 09:55:18 -0700446 bo->meta.num_planes = plane;
Gurchetan Singh71611d62017-01-03 16:49:56 -0800447 drv_gem_bo_destroy(bo);
Stéphane Marchesin6ac299f2019-03-21 12:23:29 -0700448 return -errno;
Gurchetan Singh71611d62017-01-03 16:49:56 -0800449 }
450
451 bo->handles[plane].u32 = prime_handle.handle;
452 }
David Stevensb42624c2020-09-10 10:50:26 +0900453 bo->meta.tiling = data->tiling;
Gurchetan Singh71611d62017-01-03 16:49:56 -0800454
Gurchetan Singh71611d62017-01-03 16:49:56 -0800455 return 0;
456}
457
Gurchetan Singhee43c302017-11-14 18:20:27 -0800458void *drv_dumb_bo_map(struct bo *bo, struct vma *vma, size_t plane, uint32_t map_flags)
Gurchetan Singhef920532016-08-12 16:38:25 -0700459{
460 int ret;
Gurchetan Singh1a31e602016-10-06 10:58:00 -0700461 size_t i;
Gurchetan Singhef920532016-08-12 16:38:25 -0700462 struct drm_mode_map_dumb map_dumb;
463
464 memset(&map_dumb, 0, sizeof(map_dumb));
Gurchetan Singh1a31e602016-10-06 10:58:00 -0700465 map_dumb.handle = bo->handles[plane].u32;
Gurchetan Singhef920532016-08-12 16:38:25 -0700466
467 ret = drmIoctl(bo->drv->fd, DRM_IOCTL_MODE_MAP_DUMB, &map_dumb);
468 if (ret) {
Alistair Strachan0cfaaa52018-03-19 14:03:23 -0700469 drv_log("DRM_IOCTL_MODE_MAP_DUMB failed\n");
Gurchetan Singhef920532016-08-12 16:38:25 -0700470 return MAP_FAILED;
471 }
472
Gurchetan Singh298b7572019-09-19 09:55:18 -0700473 for (i = 0; i < bo->meta.num_planes; i++)
Gurchetan Singh1a31e602016-10-06 10:58:00 -0700474 if (bo->handles[i].u32 == bo->handles[plane].u32)
Gurchetan Singh298b7572019-09-19 09:55:18 -0700475 vma->length += bo->meta.sizes[i];
Gurchetan Singh1a31e602016-10-06 10:58:00 -0700476
Gurchetan Singhee43c302017-11-14 18:20:27 -0800477 return mmap(0, vma->length, drv_get_prot(map_flags), MAP_SHARED, bo->drv->fd,
Gurchetan Singhcfb88762017-09-28 17:14:50 -0700478 map_dumb.offset);
Gurchetan Singhef920532016-08-12 16:38:25 -0700479}
480
Gurchetan Singhee43c302017-11-14 18:20:27 -0800481int drv_bo_munmap(struct bo *bo, struct vma *vma)
Gurchetan Singhba6bd502017-09-18 15:29:47 -0700482{
Gurchetan Singhee43c302017-11-14 18:20:27 -0800483 return munmap(vma->addr, vma->length);
Gurchetan Singhba6bd502017-09-18 15:29:47 -0700484}
485
Gurchetan Singh47e629b2017-11-02 14:07:18 -0700486int drv_mapping_destroy(struct bo *bo)
Gurchetan Singhde263f12017-01-24 13:30:06 -0800487{
488 int ret;
Gurchetan Singhde263f12017-01-24 13:30:06 -0800489 size_t plane;
Gurchetan Singh47e629b2017-11-02 14:07:18 -0700490 struct mapping *mapping;
Gurchetan Singhcfedbcc2017-11-02 17:32:00 -0700491 uint32_t idx;
Gurchetan Singhde263f12017-01-24 13:30:06 -0800492
493 /*
494 * This function is called right before the buffer is destroyed. It will free any mappings
495 * associated with the buffer.
496 */
497
Gurchetan Singhcfedbcc2017-11-02 17:32:00 -0700498 idx = 0;
Gurchetan Singh298b7572019-09-19 09:55:18 -0700499 for (plane = 0; plane < bo->meta.num_planes; plane++) {
Gurchetan Singhcfedbcc2017-11-02 17:32:00 -0700500 while (idx < drv_array_size(bo->drv->mappings)) {
501 mapping = (struct mapping *)drv_array_at_idx(bo->drv->mappings, idx);
502 if (mapping->vma->handle != bo->handles[plane].u32) {
503 idx++;
504 continue;
Gurchetan Singhde263f12017-01-24 13:30:06 -0800505 }
506
Gurchetan Singhcfedbcc2017-11-02 17:32:00 -0700507 if (!--mapping->vma->refcount) {
Gurchetan Singhee43c302017-11-14 18:20:27 -0800508 ret = bo->drv->backend->bo_unmap(bo, mapping->vma);
Gurchetan Singhcfedbcc2017-11-02 17:32:00 -0700509 if (ret) {
Alistair Strachan0cfaaa52018-03-19 14:03:23 -0700510 drv_log("munmap failed\n");
Gurchetan Singhcfedbcc2017-11-02 17:32:00 -0700511 return ret;
512 }
513
514 free(mapping->vma);
515 }
516
517 /* This shrinks and shifts the array, so don't increment idx. */
518 drv_array_remove(bo->drv->mappings, idx);
Gurchetan Singhde263f12017-01-24 13:30:06 -0800519 }
520 }
521
522 return 0;
523}
524
Gurchetan Singhcfb88762017-09-28 17:14:50 -0700525int drv_get_prot(uint32_t map_flags)
526{
527 return (BO_MAP_WRITE & map_flags) ? PROT_WRITE | PROT_READ : PROT_READ;
528}
529
Gurchetan Singh1b1d56a2017-03-10 16:25:23 -0800530uintptr_t drv_get_reference_count(struct driver *drv, struct bo *bo, size_t plane)
Gurchetan Singh1647fbe2016-08-03 17:14:55 -0700531{
532 void *count;
533 uintptr_t num = 0;
534
535 if (!drmHashLookup(drv->buffer_table, bo->handles[plane].u32, &count))
Gurchetan Singh1b1d56a2017-03-10 16:25:23 -0800536 num = (uintptr_t)(count);
Gurchetan Singh1647fbe2016-08-03 17:14:55 -0700537
538 return num;
539}
540
Gurchetan Singh1b1d56a2017-03-10 16:25:23 -0800541void drv_increment_reference_count(struct driver *drv, struct bo *bo, size_t plane)
Gurchetan Singh1647fbe2016-08-03 17:14:55 -0700542{
543 uintptr_t num = drv_get_reference_count(drv, bo, plane);
544
545 /* If a value isn't in the table, drmHashDelete is a no-op */
546 drmHashDelete(drv->buffer_table, bo->handles[plane].u32);
Gurchetan Singh1b1d56a2017-03-10 16:25:23 -0800547 drmHashInsert(drv->buffer_table, bo->handles[plane].u32, (void *)(num + 1));
Gurchetan Singh1647fbe2016-08-03 17:14:55 -0700548}
549
Gurchetan Singh1b1d56a2017-03-10 16:25:23 -0800550void drv_decrement_reference_count(struct driver *drv, struct bo *bo, size_t plane)
Gurchetan Singh1647fbe2016-08-03 17:14:55 -0700551{
552 uintptr_t num = drv_get_reference_count(drv, bo, plane);
553
554 drmHashDelete(drv->buffer_table, bo->handles[plane].u32);
555
556 if (num > 0)
Gurchetan Singh1b1d56a2017-03-10 16:25:23 -0800557 drmHashInsert(drv->buffer_table, bo->handles[plane].u32, (void *)(num - 1));
Gurchetan Singh1647fbe2016-08-03 17:14:55 -0700558}
Gurchetan Singhef920532016-08-12 16:38:25 -0700559
Gurchetan Singh86ddfdc2018-09-17 17:13:45 -0700560void drv_add_combination(struct driver *drv, const uint32_t format,
561 struct format_metadata *metadata, uint64_t use_flags)
562{
563 struct combination combo = { .format = format,
564 .metadata = *metadata,
565 .use_flags = use_flags };
566
567 drv_array_append(drv->combos, &combo);
568}
569
Gurchetan Singhd3001452017-11-03 17:18:36 -0700570void drv_add_combinations(struct driver *drv, const uint32_t *formats, uint32_t num_formats,
571 struct format_metadata *metadata, uint64_t use_flags)
Gurchetan Singh179687e2016-10-28 10:07:35 -0700572{
Gurchetan Singh6b41fb52017-03-01 20:14:39 -0800573 uint32_t i;
Gurchetan Singhbc9a87d2017-11-03 17:17:35 -0700574
575 for (i = 0; i < num_formats; i++) {
Gurchetan Singh2b1d6892018-09-17 16:58:16 -0700576 struct combination combo = { .format = formats[i],
577 .metadata = *metadata,
578 .use_flags = use_flags };
Gurchetan Singhbc9a87d2017-11-03 17:17:35 -0700579
580 drv_array_append(drv->combos, &combo);
581 }
Gurchetan Singh6b41fb52017-03-01 20:14:39 -0800582}
583
Gurchetan Singh1b1d56a2017-03-10 16:25:23 -0800584void drv_modify_combination(struct driver *drv, uint32_t format, struct format_metadata *metadata,
Gurchetan Singha1892b22017-09-28 16:40:52 -0700585 uint64_t use_flags)
Gurchetan Singh6b41fb52017-03-01 20:14:39 -0800586{
587 uint32_t i;
588 struct combination *combo;
Gurchetan Singha1892b22017-09-28 16:40:52 -0700589 /* Attempts to add the specified flags to an existing combination. */
Gurchetan Singhbc9a87d2017-11-03 17:17:35 -0700590 for (i = 0; i < drv_array_size(drv->combos); i++) {
591 combo = (struct combination *)drv_array_at_idx(drv->combos, i);
Gurchetan Singh1b1d56a2017-03-10 16:25:23 -0800592 if (combo->format == format && combo->metadata.tiling == metadata->tiling &&
Gurchetan Singh6b41fb52017-03-01 20:14:39 -0800593 combo->metadata.modifier == metadata->modifier)
Gurchetan Singha1892b22017-09-28 16:40:52 -0700594 combo->use_flags |= use_flags;
Gurchetan Singh6b41fb52017-03-01 20:14:39 -0800595 }
596}
597
Gurchetan Singh8ac0c9a2017-05-15 09:34:22 -0700598int drv_modify_linear_combinations(struct driver *drv)
Gurchetan Singh6b41fb52017-03-01 20:14:39 -0800599{
Gurchetan Singh6b41fb52017-03-01 20:14:39 -0800600 /*
601 * All current drivers can scanout linear XRGB8888/ARGB8888 as a primary
Gurchetan Singh28e5ea02019-12-19 10:56:51 -0800602 * plane and as a cursor.
Gurchetan Singh6b41fb52017-03-01 20:14:39 -0800603 */
Gurchetan Singh8ac0c9a2017-05-15 09:34:22 -0700604 drv_modify_combination(drv, DRM_FORMAT_XRGB8888, &LINEAR_METADATA,
605 BO_USE_CURSOR | BO_USE_SCANOUT);
606 drv_modify_combination(drv, DRM_FORMAT_ARGB8888, &LINEAR_METADATA,
607 BO_USE_CURSOR | BO_USE_SCANOUT);
Gurchetan Singh6b41fb52017-03-01 20:14:39 -0800608 return 0;
Gurchetan Singh179687e2016-10-28 10:07:35 -0700609}
Kristian H. Kristensen6061eab2017-10-03 13:53:19 -0700610
611/*
612 * Pick the best modifier from modifiers, according to the ordering
613 * given by modifier_order.
614 */
615uint64_t drv_pick_modifier(const uint64_t *modifiers, uint32_t count,
616 const uint64_t *modifier_order, uint32_t order_count)
617{
618 uint32_t i, j;
619
620 for (i = 0; i < order_count; i++) {
621 for (j = 0; j < count; j++) {
622 if (modifiers[j] == modifier_order[i]) {
623 return modifiers[j];
624 }
625 }
626 }
627
628 return DRM_FORMAT_MOD_LINEAR;
629}
Fritz Koenig1b9b5b92019-03-19 13:25:45 -0700630
631/*
632 * Search a list of modifiers to see if a given modifier is present
633 */
634bool drv_has_modifier(const uint64_t *list, uint32_t count, uint64_t modifier)
635{
636 uint32_t i;
637 for (i = 0; i < count; i++)
638 if (list[i] == modifier)
639 return true;
640
641 return false;
642}
Roman Stratiienko142dd9c2020-12-14 17:34:09 +0200643
644/*
645 * Map internal fourcc codes back to standard fourcc codes.
646 */
647uint32_t drv_get_standard_fourcc(uint32_t fourcc_internal)
648{
649 return (fourcc_internal == DRM_FORMAT_YVU420_ANDROID) ? DRM_FORMAT_YVU420 : fourcc_internal;
650}
Gurchetan Singh695125c2021-02-03 08:44:09 -0800651
652uint32_t drv_resolve_format_helper(struct driver *drv, uint32_t format, uint64_t use_flags)
653{
654 switch (format) {
655 case DRM_FORMAT_FLEX_IMPLEMENTATION_DEFINED:
656 /* Common camera implementation defined format. */
657 if (use_flags & (BO_USE_CAMERA_READ | BO_USE_CAMERA_WRITE))
658 return DRM_FORMAT_NV12;
659 /* A common hack: See b/28671744 */
660 return DRM_FORMAT_XBGR8888;
661 case DRM_FORMAT_FLEX_YCbCr_420_888:
662 /* Common flexible video format. */
663 return DRM_FORMAT_NV12;
664 default:
665 return format;
666 }
667}