blob: e29f53912ec8908ea81284a73e3f0a6845bfdfd0 [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>
Stéphane Marchesin25a26062014-09-12 16:18:59 -070013#include <xf86drm.h>
Gurchetan Singh179687e2016-10-28 10:07:35 -070014#include <xf86drmMode.h>
Stéphane Marchesin25a26062014-09-12 16:18:59 -070015
Gurchetan Singh46faf6b2016-08-05 14:40:07 -070016#include "drv_priv.h"
Lauri Peltonen904a8792015-01-17 13:57:51 +020017#include "helpers.h"
Yuly Novikov96c7a3b2015-12-08 22:48:29 -050018#include "util.h"
19
Kristian H. Kristensen478343f2018-04-04 14:02:50 -070020struct planar_layout {
21 size_t num_planes;
22 int horizontal_subsampling[DRV_MAX_PLANES];
23 int vertical_subsampling[DRV_MAX_PLANES];
24 int bytes_per_pixel[DRV_MAX_PLANES];
25};
26
27// clang-format off
28
29static const struct planar_layout packed_1bpp_layout = {
30 .num_planes = 1,
31 .horizontal_subsampling = { 1 },
32 .vertical_subsampling = { 1 },
33 .bytes_per_pixel = { 1 }
34};
35
36static const struct planar_layout packed_2bpp_layout = {
37 .num_planes = 1,
38 .horizontal_subsampling = { 1 },
39 .vertical_subsampling = { 1 },
40 .bytes_per_pixel = { 2 }
41};
42
43static const struct planar_layout packed_3bpp_layout = {
44 .num_planes = 1,
45 .horizontal_subsampling = { 1 },
46 .vertical_subsampling = { 1 },
47 .bytes_per_pixel = { 3 }
48};
49
50static const struct planar_layout packed_4bpp_layout = {
51 .num_planes = 1,
52 .horizontal_subsampling = { 1 },
53 .vertical_subsampling = { 1 },
54 .bytes_per_pixel = { 4 }
55};
56
Nataraj Deshpande586e2d62019-08-21 15:19:46 -070057static const struct planar_layout packed_8bpp_layout = {
58 .num_planes = 1,
59 .horizontal_subsampling = { 1 },
60 .vertical_subsampling = { 1 },
61 .bytes_per_pixel = { 8 }
62};
63
Kristian H. Kristensen478343f2018-04-04 14:02:50 -070064static const struct planar_layout biplanar_yuv_420_layout = {
65 .num_planes = 2,
66 .horizontal_subsampling = { 1, 2 },
67 .vertical_subsampling = { 1, 2 },
68 .bytes_per_pixel = { 1, 2 }
69};
70
71static const struct planar_layout triplanar_yuv_420_layout = {
72 .num_planes = 3,
73 .horizontal_subsampling = { 1, 2, 2 },
74 .vertical_subsampling = { 1, 2, 2 },
75 .bytes_per_pixel = { 1, 1, 1 }
76};
77
Miguel Casas055a6aa2019-04-30 18:11:40 -040078static const struct planar_layout biplanar_yuv_p010_layout = {
79 .num_planes = 2,
80 .horizontal_subsampling = { 1, 2 },
81 .vertical_subsampling = { 1, 2 },
82 .bytes_per_pixel = { 2, 4 }
83};
84
Kristian H. Kristensen478343f2018-04-04 14:02:50 -070085// clang-format on
86
87static const struct planar_layout *layout_from_format(uint32_t format)
Gurchetan Singh1b1d56a2017-03-10 16:25:23 -080088{
Gurchetan Singhd6fb5772016-08-29 19:13:51 -070089 switch (format) {
Gurchetan Singhe8ab0a52016-11-21 11:36:31 -080090 case DRM_FORMAT_BGR233:
Gurchetan Singhf3b22da2016-11-21 10:46:38 -080091 case DRM_FORMAT_C8:
92 case DRM_FORMAT_R8:
93 case DRM_FORMAT_RGB332:
Kristian H. Kristensen478343f2018-04-04 14:02:50 -070094 return &packed_1bpp_layout;
95
Gurchetan Singhf3b22da2016-11-21 10:46:38 -080096 case DRM_FORMAT_YVU420:
Gurchetan Singh03f13562017-02-08 15:21:14 -080097 case DRM_FORMAT_YVU420_ANDROID:
Kristian H. Kristensen478343f2018-04-04 14:02:50 -070098 return &triplanar_yuv_420_layout;
Stéphane Marchesin25a26062014-09-12 16:18:59 -070099
Gurchetan Singhf3b22da2016-11-21 10:46:38 -0800100 case DRM_FORMAT_NV12:
Shirish Sdf423df2017-04-18 16:21:59 +0530101 case DRM_FORMAT_NV21:
Kristian H. Kristensen478343f2018-04-04 14:02:50 -0700102 return &biplanar_yuv_420_layout;
Yuly Novikov96c7a3b2015-12-08 22:48:29 -0500103
Miguel Casas055a6aa2019-04-30 18:11:40 -0400104 case DRM_FORMAT_P010:
105 return &biplanar_yuv_p010_layout;
106
Gurchetan Singhf3b22da2016-11-21 10:46:38 -0800107 case DRM_FORMAT_ABGR1555:
Gurchetan Singhe8ab0a52016-11-21 11:36:31 -0800108 case DRM_FORMAT_ABGR4444:
109 case DRM_FORMAT_ARGB1555:
110 case DRM_FORMAT_ARGB4444:
Gurchetan Singhf3b22da2016-11-21 10:46:38 -0800111 case DRM_FORMAT_BGR565:
Gurchetan Singhe8ab0a52016-11-21 11:36:31 -0800112 case DRM_FORMAT_BGRA4444:
113 case DRM_FORMAT_BGRA5551:
114 case DRM_FORMAT_BGRX4444:
115 case DRM_FORMAT_BGRX5551:
116 case DRM_FORMAT_GR88:
117 case DRM_FORMAT_RG88:
118 case DRM_FORMAT_RGB565:
119 case DRM_FORMAT_RGBA4444:
120 case DRM_FORMAT_RGBA5551:
121 case DRM_FORMAT_RGBX4444:
122 case DRM_FORMAT_RGBX5551:
Gurchetan Singhf3b22da2016-11-21 10:46:38 -0800123 case DRM_FORMAT_UYVY:
124 case DRM_FORMAT_VYUY:
Gurchetan Singhe8ab0a52016-11-21 11:36:31 -0800125 case DRM_FORMAT_XBGR1555:
126 case DRM_FORMAT_XBGR4444:
127 case DRM_FORMAT_XRGB1555:
128 case DRM_FORMAT_XRGB4444:
129 case DRM_FORMAT_YUYV:
130 case DRM_FORMAT_YVYU:
Jasmine Chenc7aa9742019-08-14 15:28:22 +0800131 case DRM_FORMAT_MTISP_SXYZW10:
Kristian H. Kristensen478343f2018-04-04 14:02:50 -0700132 return &packed_2bpp_layout;
Stéphane Marchesin25a26062014-09-12 16:18:59 -0700133
Gurchetan Singhf3b22da2016-11-21 10:46:38 -0800134 case DRM_FORMAT_BGR888:
Gurchetan Singhe8ab0a52016-11-21 11:36:31 -0800135 case DRM_FORMAT_RGB888:
Kristian H. Kristensen478343f2018-04-04 14:02:50 -0700136 return &packed_3bpp_layout;
Stéphane Marchesin25a26062014-09-12 16:18:59 -0700137
Gurchetan Singhf3b22da2016-11-21 10:46:38 -0800138 case DRM_FORMAT_ABGR2101010:
Gurchetan Singhe8ab0a52016-11-21 11:36:31 -0800139 case DRM_FORMAT_ABGR8888:
140 case DRM_FORMAT_ARGB2101010:
141 case DRM_FORMAT_ARGB8888:
Gurchetan Singhf3b22da2016-11-21 10:46:38 -0800142 case DRM_FORMAT_AYUV:
Gurchetan Singhe8ab0a52016-11-21 11:36:31 -0800143 case DRM_FORMAT_BGRA1010102:
144 case DRM_FORMAT_BGRA8888:
145 case DRM_FORMAT_BGRX1010102:
146 case DRM_FORMAT_BGRX8888:
147 case DRM_FORMAT_RGBA1010102:
148 case DRM_FORMAT_RGBA8888:
149 case DRM_FORMAT_RGBX1010102:
150 case DRM_FORMAT_RGBX8888:
151 case DRM_FORMAT_XBGR2101010:
152 case DRM_FORMAT_XBGR8888:
153 case DRM_FORMAT_XRGB2101010:
154 case DRM_FORMAT_XRGB8888:
Kristian H. Kristensen478343f2018-04-04 14:02:50 -0700155 return &packed_4bpp_layout;
Stéphane Marchesin25a26062014-09-12 16:18:59 -0700156
Nataraj Deshpande586e2d62019-08-21 15:19:46 -0700157 case DRM_FORMAT_ABGR16161616F:
158 return &packed_8bpp_layout;
159
Kristian H. Kristensen478343f2018-04-04 14:02:50 -0700160 default:
161 drv_log("UNKNOWN FORMAT %d\n", format);
162 return NULL;
163 }
164}
165
166size_t drv_num_planes_from_format(uint32_t format)
167{
168 const struct planar_layout *layout = layout_from_format(format);
169
170 /*
171 * drv_bo_new calls this function early to query number of planes and
172 * considers 0 planes to mean unknown format, so we have to support
173 * that. All other layout_from_format() queries can assume that the
174 * format is supported and that the return value is non-NULL.
175 */
176
177 return layout ? layout->num_planes : 0;
178}
179
180uint32_t drv_height_from_format(uint32_t format, uint32_t height, size_t plane)
181{
182 const struct planar_layout *layout = layout_from_format(format);
183
184 assert(plane < layout->num_planes);
185
186 return DIV_ROUND_UP(height, layout->vertical_subsampling[plane]);
187}
188
Hirokazu Honda2a2bfc22019-10-11 15:54:50 +0900189uint32_t drv_vertical_subsampling_from_format(uint32_t format, size_t plane)
190{
191 const struct planar_layout *layout = layout_from_format(format);
192
193 assert(plane < layout->num_planes);
194
195 return layout->vertical_subsampling[plane];
196}
197
Kristian H. Kristensen478343f2018-04-04 14:02:50 -0700198uint32_t drv_bytes_per_pixel_from_format(uint32_t format, size_t plane)
199{
200 const struct planar_layout *layout = layout_from_format(format);
201
202 assert(plane < layout->num_planes);
203
204 return layout->bytes_per_pixel[plane];
Stéphane Marchesin25a26062014-09-12 16:18:59 -0700205}
206
Gurchetan Singh83dc4fb2016-07-19 15:52:33 -0700207/*
Gurchetan Singh4f298f92017-03-23 11:29:26 -0700208 * This function returns the stride for a given format, width and plane.
209 */
210uint32_t drv_stride_from_format(uint32_t format, uint32_t width, size_t plane)
211{
Kristian H. Kristensen478343f2018-04-04 14:02:50 -0700212 const struct planar_layout *layout = layout_from_format(format);
213 assert(plane < layout->num_planes);
214
Gurchetan Singh6bd78852018-06-06 17:15:31 -0700215 uint32_t plane_width = DIV_ROUND_UP(width, layout->horizontal_subsampling[plane]);
Kristian H. Kristensen478343f2018-04-04 14:02:50 -0700216 uint32_t stride = plane_width * layout->bytes_per_pixel[plane];
Gurchetan Singh4f298f92017-03-23 11:29:26 -0700217
218 /*
Gurchetan Singh4f298f92017-03-23 11:29:26 -0700219 * The stride of Android YV12 buffers is required to be aligned to 16 bytes
220 * (see <system/graphics.h>).
221 */
222 if (format == DRM_FORMAT_YVU420_ANDROID)
Gurchetan Singh1b1d56a2017-03-10 16:25:23 -0800223 stride = (plane == 0) ? ALIGN(stride, 32) : ALIGN(stride, 16);
Gurchetan Singh4f298f92017-03-23 11:29:26 -0700224
225 return stride;
226}
227
Gurchetan Singhbc24bd72017-09-28 15:21:53 -0700228uint32_t drv_size_from_format(uint32_t format, uint32_t stride, uint32_t height, size_t plane)
229{
Kristian H. Kristensen478343f2018-04-04 14:02:50 -0700230 return stride * drv_height_from_format(format, height, plane);
231}
Gurchetan Singhbc24bd72017-09-28 15:21:53 -0700232
Kristian H. Kristensen478343f2018-04-04 14:02:50 -0700233static uint32_t subsample_stride(uint32_t stride, uint32_t format, size_t plane)
234{
235 if (plane != 0) {
236 switch (format) {
237 case DRM_FORMAT_YVU420:
238 case DRM_FORMAT_YVU420_ANDROID:
239 stride = DIV_ROUND_UP(stride, 2);
240 break;
241 }
Gurchetan Singhbc24bd72017-09-28 15:21:53 -0700242 }
243
Kristian H. Kristensen478343f2018-04-04 14:02:50 -0700244 return stride;
Gurchetan Singhbc24bd72017-09-28 15:21:53 -0700245}
246
Gurchetan Singh4f298f92017-03-23 11:29:26 -0700247/*
Gurchetan Singh6423ecb2017-03-29 08:23:40 -0700248 * This function fills in the buffer object given the driver aligned stride of
249 * the first plane, height and a format. This function assumes there is just
250 * one kernel buffer per buffer object.
Gurchetan Singh42cc6d62016-08-29 18:19:19 -0700251 */
Gurchetan Singh1b1d56a2017-03-10 16:25:23 -0800252int drv_bo_from_format(struct bo *bo, uint32_t stride, uint32_t aligned_height, uint32_t format)
Gurchetan Singh42cc6d62016-08-29 18:19:19 -0700253{
Hirokazu Honda2a2bfc22019-10-11 15:54:50 +0900254 uint32_t padding[DRV_MAX_PLANES] = { 0 };
255 return drv_bo_from_format_and_padding(bo, stride, aligned_height, format, padding);
256}
Gurchetan Singh42cc6d62016-08-29 18:19:19 -0700257
Hirokazu Honda2a2bfc22019-10-11 15:54:50 +0900258int drv_bo_from_format_and_padding(struct bo *bo, uint32_t stride, uint32_t aligned_height,
259 uint32_t format, uint32_t padding[DRV_MAX_PLANES])
260{
Gurchetan Singh2a119342016-11-02 10:40:51 -0700261 size_t p, num_planes;
262 uint32_t offset = 0;
263
264 num_planes = drv_num_planes_from_format(format);
265 assert(num_planes);
Owen Linbbb69fd2017-06-05 14:33:08 +0800266
267 /*
268 * HAL_PIXEL_FORMAT_YV12 requires that (see <system/graphics.h>):
269 * - the aligned height is same as the buffer's height.
270 * - the chroma stride is 16 bytes aligned, i.e., the luma's strides
271 * is 32 bytes aligned.
272 */
Tomasz Figad846de62017-07-29 15:47:54 +0900273 if (format == DRM_FORMAT_YVU420_ANDROID) {
Gurchetan Singh298b7572019-09-19 09:55:18 -0700274 assert(aligned_height == bo->meta.height);
Owen Linbbb69fd2017-06-05 14:33:08 +0800275 assert(stride == ALIGN(stride, 32));
276 }
Gurchetan Singh2a119342016-11-02 10:40:51 -0700277
278 for (p = 0; p < num_planes; p++) {
Gurchetan Singh298b7572019-09-19 09:55:18 -0700279 bo->meta.strides[p] = subsample_stride(stride, format, p);
280 bo->meta.sizes[p] =
Hirokazu Honda2a2bfc22019-10-11 15:54:50 +0900281 drv_size_from_format(format, bo->meta.strides[p], aligned_height, p) +
282 padding[p];
Gurchetan Singh298b7572019-09-19 09:55:18 -0700283 bo->meta.offsets[p] = offset;
284 offset += bo->meta.sizes[p];
Gurchetan Singh42cc6d62016-08-29 18:19:19 -0700285 }
286
Gurchetan Singh298b7572019-09-19 09:55:18 -0700287 bo->meta.total_size = offset;
Gurchetan Singh42cc6d62016-08-29 18:19:19 -0700288 return 0;
289}
290
Dominik Behr6e6dc492019-10-09 15:43:52 -0700291int drv_dumb_bo_create_ex(struct bo *bo, uint32_t width, uint32_t height, uint32_t format,
292 uint64_t use_flags, uint64_t quirks)
Stéphane Marchesin25a26062014-09-12 16:18:59 -0700293{
Stéphane Marchesin25a26062014-09-12 16:18:59 -0700294 int ret;
Gurchetan Singhd5f8e442017-03-16 13:05:45 -0700295 size_t plane;
Gurchetan Singh6423ecb2017-03-29 08:23:40 -0700296 uint32_t aligned_width, aligned_height;
Gurchetan Singhd5f8e442017-03-16 13:05:45 -0700297 struct drm_mode_create_dumb create_dumb;
Stéphane Marchesin25a26062014-09-12 16:18:59 -0700298
Gurchetan Singhd5f8e442017-03-16 13:05:45 -0700299 aligned_width = width;
300 aligned_height = height;
Keiichi Watanabeaf94db92018-08-06 18:37:21 +0900301 switch (format) {
302 case DRM_FORMAT_YVU420_ANDROID:
303 /* Align width to 32 pixels, so chroma strides are 16 bytes as
304 * Android requires. */
Gurchetan Singhd5f8e442017-03-16 13:05:45 -0700305 aligned_width = ALIGN(width, 32);
Keiichi Watanabed706a8c2018-08-13 16:54:56 +0900306 /* Adjust the height to include room for chroma planes.
307 *
308 * HAL_PIXEL_FORMAT_YV12 requires that the buffer's height not
309 * be aligned. */
Gurchetan Singh298b7572019-09-19 09:55:18 -0700310 aligned_height = 3 * DIV_ROUND_UP(bo->meta.height, 2);
Keiichi Watanabeaf94db92018-08-06 18:37:21 +0900311 break;
312 case DRM_FORMAT_YVU420:
313 case DRM_FORMAT_NV12:
314 /* Adjust the height to include room for chroma planes */
315 aligned_height = 3 * DIV_ROUND_UP(height, 2);
316 break;
317 default:
318 break;
Gurchetan Singhd5f8e442017-03-16 13:05:45 -0700319 }
Yuly Novikov96c7a3b2015-12-08 22:48:29 -0500320
Stéphane Marchesin25a26062014-09-12 16:18:59 -0700321 memset(&create_dumb, 0, sizeof(create_dumb));
Dominik Behr6e6dc492019-10-09 15:43:52 -0700322 if (quirks & BO_QUIRK_DUMB32BPP) {
323 aligned_width =
324 DIV_ROUND_UP(aligned_width * layout_from_format(format)->bytes_per_pixel[0], 4);
325 create_dumb.bpp = 32;
326 } else {
327 create_dumb.bpp = layout_from_format(format)->bytes_per_pixel[0] * 8;
328 }
Gurchetan Singhd5f8e442017-03-16 13:05:45 -0700329 create_dumb.width = aligned_width;
Dominik Behr6e6dc492019-10-09 15:43:52 -0700330 create_dumb.height = aligned_height;
Stéphane Marchesin25a26062014-09-12 16:18:59 -0700331 create_dumb.flags = 0;
332
Gurchetan Singh46faf6b2016-08-05 14:40:07 -0700333 ret = drmIoctl(bo->drv->fd, DRM_IOCTL_MODE_CREATE_DUMB, &create_dumb);
Ilja H. Friedelf9d2ab72015-04-09 14:08:36 -0700334 if (ret) {
Alistair Strachan0cfaaa52018-03-19 14:03:23 -0700335 drv_log("DRM_IOCTL_MODE_CREATE_DUMB failed (%d, %d)\n", bo->drv->fd, errno);
Stéphane Marchesin6ac299f2019-03-21 12:23:29 -0700336 return -errno;
Ilja H. Friedelf9d2ab72015-04-09 14:08:36 -0700337 }
Stéphane Marchesin25a26062014-09-12 16:18:59 -0700338
Gurchetan Singh6423ecb2017-03-29 08:23:40 -0700339 drv_bo_from_format(bo, create_dumb.pitch, height, format);
Stéphane Marchesin25a26062014-09-12 16:18:59 -0700340
Gurchetan Singh298b7572019-09-19 09:55:18 -0700341 for (plane = 0; plane < bo->meta.num_planes; plane++)
Gurchetan Singhd5f8e442017-03-16 13:05:45 -0700342 bo->handles[plane].u32 = create_dumb.handle;
343
Gurchetan Singh298b7572019-09-19 09:55:18 -0700344 bo->meta.total_size = create_dumb.size;
Stéphane Marchesin25a26062014-09-12 16:18:59 -0700345 return 0;
346}
347
Dominik Behr6e6dc492019-10-09 15:43:52 -0700348int drv_dumb_bo_create(struct bo *bo, uint32_t width, uint32_t height, uint32_t format,
349 uint64_t use_flags)
350{
351 return drv_dumb_bo_create_ex(bo, width, height, format, use_flags, BO_QUIRK_NONE);
352}
353
Gurchetan Singh46faf6b2016-08-05 14:40:07 -0700354int drv_dumb_bo_destroy(struct bo *bo)
Stéphane Marchesin25a26062014-09-12 16:18:59 -0700355{
356 struct drm_mode_destroy_dumb destroy_dumb;
357 int ret;
358
359 memset(&destroy_dumb, 0, sizeof(destroy_dumb));
Yuly Novikov96c7a3b2015-12-08 22:48:29 -0500360 destroy_dumb.handle = bo->handles[0].u32;
Stéphane Marchesin25a26062014-09-12 16:18:59 -0700361
Gurchetan Singh46faf6b2016-08-05 14:40:07 -0700362 ret = drmIoctl(bo->drv->fd, DRM_IOCTL_MODE_DESTROY_DUMB, &destroy_dumb);
Ilja H. Friedelf9d2ab72015-04-09 14:08:36 -0700363 if (ret) {
Alistair Strachan0cfaaa52018-03-19 14:03:23 -0700364 drv_log("DRM_IOCTL_MODE_DESTROY_DUMB failed (handle=%x)\n", bo->handles[0].u32);
Stéphane Marchesin6ac299f2019-03-21 12:23:29 -0700365 return -errno;
Ilja H. Friedelf9d2ab72015-04-09 14:08:36 -0700366 }
Stéphane Marchesin25a26062014-09-12 16:18:59 -0700367
368 return 0;
369}
370
Gurchetan Singh46faf6b2016-08-05 14:40:07 -0700371int drv_gem_bo_destroy(struct bo *bo)
Stéphane Marchesin25a26062014-09-12 16:18:59 -0700372{
373 struct drm_gem_close gem_close;
Yuly Novikov96c7a3b2015-12-08 22:48:29 -0500374 int ret, error = 0;
375 size_t plane, i;
Stéphane Marchesin25a26062014-09-12 16:18:59 -0700376
Gurchetan Singh298b7572019-09-19 09:55:18 -0700377 for (plane = 0; plane < bo->meta.num_planes; plane++) {
Gurchetan Singhf64487b2016-07-14 19:54:44 -0700378 for (i = 0; i < plane; i++)
379 if (bo->handles[i].u32 == bo->handles[plane].u32)
380 break;
381 /* Make sure close hasn't already been called on this handle */
382 if (i != plane)
Yuly Novikov96c7a3b2015-12-08 22:48:29 -0500383 continue;
Stéphane Marchesin25a26062014-09-12 16:18:59 -0700384
Yuly Novikov96c7a3b2015-12-08 22:48:29 -0500385 memset(&gem_close, 0, sizeof(gem_close));
386 gem_close.handle = bo->handles[plane].u32;
387
Gurchetan Singh46faf6b2016-08-05 14:40:07 -0700388 ret = drmIoctl(bo->drv->fd, DRM_IOCTL_GEM_CLOSE, &gem_close);
Yuly Novikov96c7a3b2015-12-08 22:48:29 -0500389 if (ret) {
Alistair Strachan0cfaaa52018-03-19 14:03:23 -0700390 drv_log("DRM_IOCTL_GEM_CLOSE failed (handle=%x) error %d\n",
Gurchetan Singh1b1d56a2017-03-10 16:25:23 -0800391 bo->handles[plane].u32, ret);
Stéphane Marchesin6ac299f2019-03-21 12:23:29 -0700392 error = -errno;
Yuly Novikov96c7a3b2015-12-08 22:48:29 -0500393 }
Ilja H. Friedelf9d2ab72015-04-09 14:08:36 -0700394 }
Stéphane Marchesin25a26062014-09-12 16:18:59 -0700395
Yuly Novikov96c7a3b2015-12-08 22:48:29 -0500396 return error;
Stéphane Marchesin25a26062014-09-12 16:18:59 -0700397}
Gurchetan Singh1647fbe2016-08-03 17:14:55 -0700398
Gurchetan Singh71611d62017-01-03 16:49:56 -0800399int drv_prime_bo_import(struct bo *bo, struct drv_import_fd_data *data)
400{
401 int ret;
402 size_t plane;
403 struct drm_prime_handle prime_handle;
404
Gurchetan Singh298b7572019-09-19 09:55:18 -0700405 for (plane = 0; plane < bo->meta.num_planes; plane++) {
Gurchetan Singh71611d62017-01-03 16:49:56 -0800406 memset(&prime_handle, 0, sizeof(prime_handle));
407 prime_handle.fd = data->fds[plane];
408
Gurchetan Singh1b1d56a2017-03-10 16:25:23 -0800409 ret = drmIoctl(bo->drv->fd, DRM_IOCTL_PRIME_FD_TO_HANDLE, &prime_handle);
Gurchetan Singh71611d62017-01-03 16:49:56 -0800410
411 if (ret) {
Alistair Strachan0cfaaa52018-03-19 14:03:23 -0700412 drv_log("DRM_IOCTL_PRIME_FD_TO_HANDLE failed (fd=%u)\n", prime_handle.fd);
Gurchetan Singh71611d62017-01-03 16:49:56 -0800413
414 /*
415 * Need to call GEM close on planes that were opened,
416 * if any. Adjust the num_planes variable to be the
417 * plane that failed, so GEM close will be called on
418 * planes before that plane.
419 */
Gurchetan Singh298b7572019-09-19 09:55:18 -0700420 bo->meta.num_planes = plane;
Gurchetan Singh71611d62017-01-03 16:49:56 -0800421 drv_gem_bo_destroy(bo);
Stéphane Marchesin6ac299f2019-03-21 12:23:29 -0700422 return -errno;
Gurchetan Singh71611d62017-01-03 16:49:56 -0800423 }
424
425 bo->handles[plane].u32 = prime_handle.handle;
426 }
427
Gurchetan Singh71611d62017-01-03 16:49:56 -0800428 return 0;
429}
430
Gurchetan Singhee43c302017-11-14 18:20:27 -0800431void *drv_dumb_bo_map(struct bo *bo, struct vma *vma, size_t plane, uint32_t map_flags)
Gurchetan Singhef920532016-08-12 16:38:25 -0700432{
433 int ret;
Gurchetan Singh1a31e602016-10-06 10:58:00 -0700434 size_t i;
Gurchetan Singhef920532016-08-12 16:38:25 -0700435 struct drm_mode_map_dumb map_dumb;
436
437 memset(&map_dumb, 0, sizeof(map_dumb));
Gurchetan Singh1a31e602016-10-06 10:58:00 -0700438 map_dumb.handle = bo->handles[plane].u32;
Gurchetan Singhef920532016-08-12 16:38:25 -0700439
440 ret = drmIoctl(bo->drv->fd, DRM_IOCTL_MODE_MAP_DUMB, &map_dumb);
441 if (ret) {
Alistair Strachan0cfaaa52018-03-19 14:03:23 -0700442 drv_log("DRM_IOCTL_MODE_MAP_DUMB failed\n");
Gurchetan Singhef920532016-08-12 16:38:25 -0700443 return MAP_FAILED;
444 }
445
Gurchetan Singh298b7572019-09-19 09:55:18 -0700446 for (i = 0; i < bo->meta.num_planes; i++)
Gurchetan Singh1a31e602016-10-06 10:58:00 -0700447 if (bo->handles[i].u32 == bo->handles[plane].u32)
Gurchetan Singh298b7572019-09-19 09:55:18 -0700448 vma->length += bo->meta.sizes[i];
Gurchetan Singh1a31e602016-10-06 10:58:00 -0700449
Gurchetan Singhee43c302017-11-14 18:20:27 -0800450 return mmap(0, vma->length, drv_get_prot(map_flags), MAP_SHARED, bo->drv->fd,
Gurchetan Singhcfb88762017-09-28 17:14:50 -0700451 map_dumb.offset);
Gurchetan Singhef920532016-08-12 16:38:25 -0700452}
453
Gurchetan Singhee43c302017-11-14 18:20:27 -0800454int drv_bo_munmap(struct bo *bo, struct vma *vma)
Gurchetan Singhba6bd502017-09-18 15:29:47 -0700455{
Gurchetan Singhee43c302017-11-14 18:20:27 -0800456 return munmap(vma->addr, vma->length);
Gurchetan Singhba6bd502017-09-18 15:29:47 -0700457}
458
Gurchetan Singh47e629b2017-11-02 14:07:18 -0700459int drv_mapping_destroy(struct bo *bo)
Gurchetan Singhde263f12017-01-24 13:30:06 -0800460{
461 int ret;
Gurchetan Singhde263f12017-01-24 13:30:06 -0800462 size_t plane;
Gurchetan Singh47e629b2017-11-02 14:07:18 -0700463 struct mapping *mapping;
Gurchetan Singhcfedbcc2017-11-02 17:32:00 -0700464 uint32_t idx;
Gurchetan Singhde263f12017-01-24 13:30:06 -0800465
466 /*
467 * This function is called right before the buffer is destroyed. It will free any mappings
468 * associated with the buffer.
469 */
470
Gurchetan Singhcfedbcc2017-11-02 17:32:00 -0700471 idx = 0;
Gurchetan Singh298b7572019-09-19 09:55:18 -0700472 for (plane = 0; plane < bo->meta.num_planes; plane++) {
Gurchetan Singhcfedbcc2017-11-02 17:32:00 -0700473 while (idx < drv_array_size(bo->drv->mappings)) {
474 mapping = (struct mapping *)drv_array_at_idx(bo->drv->mappings, idx);
475 if (mapping->vma->handle != bo->handles[plane].u32) {
476 idx++;
477 continue;
Gurchetan Singhde263f12017-01-24 13:30:06 -0800478 }
479
Gurchetan Singhcfedbcc2017-11-02 17:32:00 -0700480 if (!--mapping->vma->refcount) {
Gurchetan Singhee43c302017-11-14 18:20:27 -0800481 ret = bo->drv->backend->bo_unmap(bo, mapping->vma);
Gurchetan Singhcfedbcc2017-11-02 17:32:00 -0700482 if (ret) {
Alistair Strachan0cfaaa52018-03-19 14:03:23 -0700483 drv_log("munmap failed\n");
Gurchetan Singhcfedbcc2017-11-02 17:32:00 -0700484 return ret;
485 }
486
487 free(mapping->vma);
488 }
489
490 /* This shrinks and shifts the array, so don't increment idx. */
491 drv_array_remove(bo->drv->mappings, idx);
Gurchetan Singhde263f12017-01-24 13:30:06 -0800492 }
493 }
494
495 return 0;
496}
497
Gurchetan Singhcfb88762017-09-28 17:14:50 -0700498int drv_get_prot(uint32_t map_flags)
499{
500 return (BO_MAP_WRITE & map_flags) ? PROT_WRITE | PROT_READ : PROT_READ;
501}
502
Gurchetan Singh1b1d56a2017-03-10 16:25:23 -0800503uintptr_t drv_get_reference_count(struct driver *drv, struct bo *bo, size_t plane)
Gurchetan Singh1647fbe2016-08-03 17:14:55 -0700504{
505 void *count;
506 uintptr_t num = 0;
507
508 if (!drmHashLookup(drv->buffer_table, bo->handles[plane].u32, &count))
Gurchetan Singh1b1d56a2017-03-10 16:25:23 -0800509 num = (uintptr_t)(count);
Gurchetan Singh1647fbe2016-08-03 17:14:55 -0700510
511 return num;
512}
513
Gurchetan Singh1b1d56a2017-03-10 16:25:23 -0800514void drv_increment_reference_count(struct driver *drv, struct bo *bo, size_t plane)
Gurchetan Singh1647fbe2016-08-03 17:14:55 -0700515{
516 uintptr_t num = drv_get_reference_count(drv, bo, plane);
517
518 /* If a value isn't in the table, drmHashDelete is a no-op */
519 drmHashDelete(drv->buffer_table, bo->handles[plane].u32);
Gurchetan Singh1b1d56a2017-03-10 16:25:23 -0800520 drmHashInsert(drv->buffer_table, bo->handles[plane].u32, (void *)(num + 1));
Gurchetan Singh1647fbe2016-08-03 17:14:55 -0700521}
522
Gurchetan Singh1b1d56a2017-03-10 16:25:23 -0800523void drv_decrement_reference_count(struct driver *drv, struct bo *bo, size_t plane)
Gurchetan Singh1647fbe2016-08-03 17:14:55 -0700524{
525 uintptr_t num = drv_get_reference_count(drv, bo, plane);
526
527 drmHashDelete(drv->buffer_table, bo->handles[plane].u32);
528
529 if (num > 0)
Gurchetan Singh1b1d56a2017-03-10 16:25:23 -0800530 drmHashInsert(drv->buffer_table, bo->handles[plane].u32, (void *)(num - 1));
Gurchetan Singh1647fbe2016-08-03 17:14:55 -0700531}
Gurchetan Singhef920532016-08-12 16:38:25 -0700532
Gurchetan Singh86ddfdc2018-09-17 17:13:45 -0700533void drv_add_combination(struct driver *drv, const uint32_t format,
534 struct format_metadata *metadata, uint64_t use_flags)
535{
536 struct combination combo = { .format = format,
537 .metadata = *metadata,
538 .use_flags = use_flags };
539
540 drv_array_append(drv->combos, &combo);
541}
542
Gurchetan Singhd3001452017-11-03 17:18:36 -0700543void drv_add_combinations(struct driver *drv, const uint32_t *formats, uint32_t num_formats,
544 struct format_metadata *metadata, uint64_t use_flags)
Gurchetan Singh179687e2016-10-28 10:07:35 -0700545{
Gurchetan Singh6b41fb52017-03-01 20:14:39 -0800546 uint32_t i;
Gurchetan Singhbc9a87d2017-11-03 17:17:35 -0700547
548 for (i = 0; i < num_formats; i++) {
Gurchetan Singh2b1d6892018-09-17 16:58:16 -0700549 struct combination combo = { .format = formats[i],
550 .metadata = *metadata,
551 .use_flags = use_flags };
Gurchetan Singhbc9a87d2017-11-03 17:17:35 -0700552
553 drv_array_append(drv->combos, &combo);
554 }
Gurchetan Singh6b41fb52017-03-01 20:14:39 -0800555}
556
Gurchetan Singh1b1d56a2017-03-10 16:25:23 -0800557void drv_modify_combination(struct driver *drv, uint32_t format, struct format_metadata *metadata,
Gurchetan Singha1892b22017-09-28 16:40:52 -0700558 uint64_t use_flags)
Gurchetan Singh6b41fb52017-03-01 20:14:39 -0800559{
560 uint32_t i;
561 struct combination *combo;
Gurchetan Singha1892b22017-09-28 16:40:52 -0700562 /* Attempts to add the specified flags to an existing combination. */
Gurchetan Singhbc9a87d2017-11-03 17:17:35 -0700563 for (i = 0; i < drv_array_size(drv->combos); i++) {
564 combo = (struct combination *)drv_array_at_idx(drv->combos, i);
Gurchetan Singh1b1d56a2017-03-10 16:25:23 -0800565 if (combo->format == format && combo->metadata.tiling == metadata->tiling &&
Gurchetan Singh6b41fb52017-03-01 20:14:39 -0800566 combo->metadata.modifier == metadata->modifier)
Gurchetan Singha1892b22017-09-28 16:40:52 -0700567 combo->use_flags |= use_flags;
Gurchetan Singh6b41fb52017-03-01 20:14:39 -0800568 }
569}
570
Gurchetan Singhbc9a87d2017-11-03 17:17:35 -0700571struct drv_array *drv_query_kms(struct driver *drv)
Gurchetan Singh6b41fb52017-03-01 20:14:39 -0800572{
Gurchetan Singhbc9a87d2017-11-03 17:17:35 -0700573 struct drv_array *kms_items;
Greg Hartman4a0fecf2019-07-17 15:55:17 -0700574 uint64_t plane_type = UINT64_MAX;
Gurchetan Singhdc9b1202019-06-04 16:53:54 -0700575 uint64_t use_flag;
Gurchetan Singhbc9a87d2017-11-03 17:17:35 -0700576 uint32_t i, j, k;
Gurchetan Singh6b41fb52017-03-01 20:14:39 -0800577
Gurchetan Singh179687e2016-10-28 10:07:35 -0700578 drmModePlanePtr plane;
579 drmModePropertyPtr prop;
580 drmModePlaneResPtr resources;
581 drmModeObjectPropertiesPtr props;
582
Gurchetan Singhbc9a87d2017-11-03 17:17:35 -0700583 kms_items = drv_array_init(sizeof(struct kms_item));
584 if (!kms_items)
Gurchetan Singh6b41fb52017-03-01 20:14:39 -0800585 goto out;
Gurchetan Singh179687e2016-10-28 10:07:35 -0700586
587 /*
588 * The ability to return universal planes is only complete on
589 * ChromeOS kernel versions >= v3.18. The SET_CLIENT_CAP ioctl
590 * therefore might return an error code, so don't check it. If it
591 * fails, it'll just return the plane list as overlay planes, which is
592 * fine in our case (our drivers already have cursor bits set).
593 * modetest in libdrm does the same thing.
594 */
595 drmSetClientCap(drv->fd, DRM_CLIENT_CAP_UNIVERSAL_PLANES, 1);
596
597 resources = drmModeGetPlaneResources(drv->fd);
598 if (!resources)
Gurchetan Singh6b41fb52017-03-01 20:14:39 -0800599 goto out;
Gurchetan Singh179687e2016-10-28 10:07:35 -0700600
601 for (i = 0; i < resources->count_planes; i++) {
Ludovico de Nittis1cbcbfd2019-05-29 10:02:21 +0200602 plane_type = UINT64_MAX;
Gurchetan Singh179687e2016-10-28 10:07:35 -0700603 plane = drmModeGetPlane(drv->fd, resources->planes[i]);
Gurchetan Singh179687e2016-10-28 10:07:35 -0700604 if (!plane)
Gurchetan Singh6b41fb52017-03-01 20:14:39 -0800605 goto out;
Gurchetan Singh179687e2016-10-28 10:07:35 -0700606
Gurchetan Singh1b1d56a2017-03-10 16:25:23 -0800607 props = drmModeObjectGetProperties(drv->fd, plane->plane_id, DRM_MODE_OBJECT_PLANE);
Gurchetan Singh179687e2016-10-28 10:07:35 -0700608 if (!props)
Gurchetan Singh6b41fb52017-03-01 20:14:39 -0800609 goto out;
Gurchetan Singh179687e2016-10-28 10:07:35 -0700610
611 for (j = 0; j < props->count_props; j++) {
Gurchetan Singh179687e2016-10-28 10:07:35 -0700612 prop = drmModeGetProperty(drv->fd, props->props[j]);
613 if (prop) {
614 if (strcmp(prop->name, "type") == 0) {
Gurchetan Singha1892b22017-09-28 16:40:52 -0700615 plane_type = props->prop_values[j];
Gurchetan Singh179687e2016-10-28 10:07:35 -0700616 }
Gurchetan Singh6b41fb52017-03-01 20:14:39 -0800617
Gurchetan Singh179687e2016-10-28 10:07:35 -0700618 drmModeFreeProperty(prop);
619 }
620 }
621
Gurchetan Singha1892b22017-09-28 16:40:52 -0700622 switch (plane_type) {
Gurchetan Singh179687e2016-10-28 10:07:35 -0700623 case DRM_PLANE_TYPE_OVERLAY:
624 case DRM_PLANE_TYPE_PRIMARY:
Gurchetan Singha1892b22017-09-28 16:40:52 -0700625 use_flag = BO_USE_SCANOUT;
Gurchetan Singh179687e2016-10-28 10:07:35 -0700626 break;
627 case DRM_PLANE_TYPE_CURSOR:
Gurchetan Singha1892b22017-09-28 16:40:52 -0700628 use_flag = BO_USE_CURSOR;
Gurchetan Singh179687e2016-10-28 10:07:35 -0700629 break;
630 default:
631 assert(0);
632 }
633
Gurchetan Singh6b41fb52017-03-01 20:14:39 -0800634 for (j = 0; j < plane->count_formats; j++) {
635 bool found = false;
Gurchetan Singhbc9a87d2017-11-03 17:17:35 -0700636 for (k = 0; k < drv_array_size(kms_items); k++) {
637 struct kms_item *item = drv_array_at_idx(kms_items, k);
638 if (item->format == plane->formats[j] &&
Gurchetan Singhd118a0e2018-01-12 23:31:50 +0000639 item->modifier == DRM_FORMAT_MOD_LINEAR) {
Gurchetan Singhbc9a87d2017-11-03 17:17:35 -0700640 item->use_flags |= use_flag;
Gurchetan Singh6b41fb52017-03-01 20:14:39 -0800641 found = true;
642 break;
643 }
644 }
645
Gurchetan Singh6b41fb52017-03-01 20:14:39 -0800646 if (!found) {
Gurchetan Singh2b1d6892018-09-17 16:58:16 -0700647 struct kms_item item = { .format = plane->formats[j],
648 .modifier = DRM_FORMAT_MOD_LINEAR,
649 .use_flags = use_flag };
Gurchetan Singhbc9a87d2017-11-03 17:17:35 -0700650
651 drv_array_append(kms_items, &item);
Gurchetan Singh6b41fb52017-03-01 20:14:39 -0800652 }
653 }
Gurchetan Singh179687e2016-10-28 10:07:35 -0700654
655 drmModeFreeObjectProperties(props);
656 drmModeFreePlane(plane);
Gurchetan Singh179687e2016-10-28 10:07:35 -0700657 }
658
659 drmModeFreePlaneResources(resources);
Gurchetan Singh6b41fb52017-03-01 20:14:39 -0800660out:
Gurchetan Singhbc9a87d2017-11-03 17:17:35 -0700661 if (kms_items && !drv_array_size(kms_items)) {
662 drv_array_destroy(kms_items);
663 return NULL;
Gurchetan Singh6b41fb52017-03-01 20:14:39 -0800664 }
Gurchetan Singh179687e2016-10-28 10:07:35 -0700665
Gurchetan Singhbc9a87d2017-11-03 17:17:35 -0700666 return kms_items;
Gurchetan Singh6b41fb52017-03-01 20:14:39 -0800667}
668
Gurchetan Singh8ac0c9a2017-05-15 09:34:22 -0700669int drv_modify_linear_combinations(struct driver *drv)
Gurchetan Singh6b41fb52017-03-01 20:14:39 -0800670{
Gurchetan Singhbc9a87d2017-11-03 17:17:35 -0700671 uint32_t i, j;
672 struct kms_item *item;
Gurchetan Singh6b41fb52017-03-01 20:14:39 -0800673 struct combination *combo;
Gurchetan Singhbc9a87d2017-11-03 17:17:35 -0700674 struct drv_array *kms_items;
Gurchetan Singh6b41fb52017-03-01 20:14:39 -0800675
Gurchetan Singh6b41fb52017-03-01 20:14:39 -0800676 /*
677 * All current drivers can scanout linear XRGB8888/ARGB8888 as a primary
678 * plane and as a cursor. Some drivers don't support
679 * drmModeGetPlaneResources, so add the combination here. Note that the
680 * kernel disregards the alpha component of ARGB unless it's an overlay
681 * plane.
682 */
Gurchetan Singh8ac0c9a2017-05-15 09:34:22 -0700683 drv_modify_combination(drv, DRM_FORMAT_XRGB8888, &LINEAR_METADATA,
684 BO_USE_CURSOR | BO_USE_SCANOUT);
685 drv_modify_combination(drv, DRM_FORMAT_ARGB8888, &LINEAR_METADATA,
686 BO_USE_CURSOR | BO_USE_SCANOUT);
Gurchetan Singh6b41fb52017-03-01 20:14:39 -0800687
Gurchetan Singhbc9a87d2017-11-03 17:17:35 -0700688 kms_items = drv_query_kms(drv);
689 if (!kms_items)
Gurchetan Singh6b41fb52017-03-01 20:14:39 -0800690 return 0;
691
Gurchetan Singhbc9a87d2017-11-03 17:17:35 -0700692 for (i = 0; i < drv_array_size(kms_items); i++) {
693 item = (struct kms_item *)drv_array_at_idx(kms_items, i);
694 for (j = 0; j < drv_array_size(drv->combos); j++) {
695 combo = drv_array_at_idx(drv->combos, j);
696 if (item->format == combo->format)
Gurchetan Singha1892b22017-09-28 16:40:52 -0700697 combo->use_flags |= BO_USE_SCANOUT;
Gurchetan Singh6b41fb52017-03-01 20:14:39 -0800698 }
699 }
700
Gurchetan Singhbc9a87d2017-11-03 17:17:35 -0700701 drv_array_destroy(kms_items);
Gurchetan Singh6b41fb52017-03-01 20:14:39 -0800702 return 0;
Gurchetan Singh179687e2016-10-28 10:07:35 -0700703}
Kristian H. Kristensen6061eab2017-10-03 13:53:19 -0700704
705/*
706 * Pick the best modifier from modifiers, according to the ordering
707 * given by modifier_order.
708 */
709uint64_t drv_pick_modifier(const uint64_t *modifiers, uint32_t count,
710 const uint64_t *modifier_order, uint32_t order_count)
711{
712 uint32_t i, j;
713
714 for (i = 0; i < order_count; i++) {
715 for (j = 0; j < count; j++) {
716 if (modifiers[j] == modifier_order[i]) {
717 return modifiers[j];
718 }
719 }
720 }
721
722 return DRM_FORMAT_MOD_LINEAR;
723}
Fritz Koenig1b9b5b92019-03-19 13:25:45 -0700724
725/*
726 * Search a list of modifiers to see if a given modifier is present
727 */
728bool drv_has_modifier(const uint64_t *list, uint32_t count, uint64_t modifier)
729{
730 uint32_t i;
731 for (i = 0; i < count; i++)
732 if (list[i] == modifier)
733 return true;
734
735 return false;
736}