blob: 833a2d85e89df411f0430524bbd20c2d5a95464c [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>
14
Gurchetan Singh46faf6b2016-08-05 14:40:07 -070015#include "drv_priv.h"
Lauri Peltonen904a8792015-01-17 13:57:51 +020016#include "helpers.h"
Yuly Novikov96c7a3b2015-12-08 22:48:29 -050017#include "util.h"
18
Kristian H. Kristensen478343f2018-04-04 14:02:50 -070019struct planar_layout {
20 size_t num_planes;
21 int horizontal_subsampling[DRV_MAX_PLANES];
22 int vertical_subsampling[DRV_MAX_PLANES];
23 int bytes_per_pixel[DRV_MAX_PLANES];
24};
25
26// clang-format off
27
28static const struct planar_layout packed_1bpp_layout = {
29 .num_planes = 1,
30 .horizontal_subsampling = { 1 },
31 .vertical_subsampling = { 1 },
32 .bytes_per_pixel = { 1 }
33};
34
35static const struct planar_layout packed_2bpp_layout = {
36 .num_planes = 1,
37 .horizontal_subsampling = { 1 },
38 .vertical_subsampling = { 1 },
39 .bytes_per_pixel = { 2 }
40};
41
42static const struct planar_layout packed_3bpp_layout = {
43 .num_planes = 1,
44 .horizontal_subsampling = { 1 },
45 .vertical_subsampling = { 1 },
46 .bytes_per_pixel = { 3 }
47};
48
49static const struct planar_layout packed_4bpp_layout = {
50 .num_planes = 1,
51 .horizontal_subsampling = { 1 },
52 .vertical_subsampling = { 1 },
53 .bytes_per_pixel = { 4 }
54};
55
Nataraj Deshpande586e2d62019-08-21 15:19:46 -070056static const struct planar_layout packed_8bpp_layout = {
57 .num_planes = 1,
58 .horizontal_subsampling = { 1 },
59 .vertical_subsampling = { 1 },
60 .bytes_per_pixel = { 8 }
61};
62
Kristian H. Kristensen478343f2018-04-04 14:02:50 -070063static const struct planar_layout biplanar_yuv_420_layout = {
64 .num_planes = 2,
65 .horizontal_subsampling = { 1, 2 },
66 .vertical_subsampling = { 1, 2 },
67 .bytes_per_pixel = { 1, 2 }
68};
69
70static const struct planar_layout triplanar_yuv_420_layout = {
71 .num_planes = 3,
72 .horizontal_subsampling = { 1, 2, 2 },
73 .vertical_subsampling = { 1, 2, 2 },
74 .bytes_per_pixel = { 1, 1, 1 }
75};
76
Miguel Casas055a6aa2019-04-30 18:11:40 -040077static const struct planar_layout biplanar_yuv_p010_layout = {
78 .num_planes = 2,
79 .horizontal_subsampling = { 1, 2 },
80 .vertical_subsampling = { 1, 2 },
81 .bytes_per_pixel = { 2, 4 }
82};
83
Kristian H. Kristensen478343f2018-04-04 14:02:50 -070084// clang-format on
85
86static const struct planar_layout *layout_from_format(uint32_t format)
Gurchetan Singh1b1d56a2017-03-10 16:25:23 -080087{
Gurchetan Singhd6fb5772016-08-29 19:13:51 -070088 switch (format) {
Gurchetan Singhe8ab0a52016-11-21 11:36:31 -080089 case DRM_FORMAT_BGR233:
Gurchetan Singhf3b22da2016-11-21 10:46:38 -080090 case DRM_FORMAT_C8:
91 case DRM_FORMAT_R8:
92 case DRM_FORMAT_RGB332:
Kristian H. Kristensen478343f2018-04-04 14:02:50 -070093 return &packed_1bpp_layout;
94
Gurchetan Singhf3b22da2016-11-21 10:46:38 -080095 case DRM_FORMAT_YVU420:
Gurchetan Singh03f13562017-02-08 15:21:14 -080096 case DRM_FORMAT_YVU420_ANDROID:
Kristian H. Kristensen478343f2018-04-04 14:02:50 -070097 return &triplanar_yuv_420_layout;
Stéphane Marchesin25a26062014-09-12 16:18:59 -070098
Gurchetan Singhf3b22da2016-11-21 10:46:38 -080099 case DRM_FORMAT_NV12:
Shirish Sdf423df2017-04-18 16:21:59 +0530100 case DRM_FORMAT_NV21:
Kristian H. Kristensen478343f2018-04-04 14:02:50 -0700101 return &biplanar_yuv_420_layout;
Yuly Novikov96c7a3b2015-12-08 22:48:29 -0500102
Miguel Casas055a6aa2019-04-30 18:11:40 -0400103 case DRM_FORMAT_P010:
104 return &biplanar_yuv_p010_layout;
105
Gurchetan Singhf3b22da2016-11-21 10:46:38 -0800106 case DRM_FORMAT_ABGR1555:
Gurchetan Singhe8ab0a52016-11-21 11:36:31 -0800107 case DRM_FORMAT_ABGR4444:
108 case DRM_FORMAT_ARGB1555:
109 case DRM_FORMAT_ARGB4444:
Gurchetan Singhf3b22da2016-11-21 10:46:38 -0800110 case DRM_FORMAT_BGR565:
Gurchetan Singhe8ab0a52016-11-21 11:36:31 -0800111 case DRM_FORMAT_BGRA4444:
112 case DRM_FORMAT_BGRA5551:
113 case DRM_FORMAT_BGRX4444:
114 case DRM_FORMAT_BGRX5551:
115 case DRM_FORMAT_GR88:
116 case DRM_FORMAT_RG88:
117 case DRM_FORMAT_RGB565:
118 case DRM_FORMAT_RGBA4444:
119 case DRM_FORMAT_RGBA5551:
120 case DRM_FORMAT_RGBX4444:
121 case DRM_FORMAT_RGBX5551:
Gurchetan Singhf3b22da2016-11-21 10:46:38 -0800122 case DRM_FORMAT_UYVY:
123 case DRM_FORMAT_VYUY:
Gurchetan Singhe8ab0a52016-11-21 11:36:31 -0800124 case DRM_FORMAT_XBGR1555:
125 case DRM_FORMAT_XBGR4444:
126 case DRM_FORMAT_XRGB1555:
127 case DRM_FORMAT_XRGB4444:
128 case DRM_FORMAT_YUYV:
129 case DRM_FORMAT_YVYU:
Jasmine Chenc7aa9742019-08-14 15:28:22 +0800130 case DRM_FORMAT_MTISP_SXYZW10:
Kristian H. Kristensen478343f2018-04-04 14:02:50 -0700131 return &packed_2bpp_layout;
Stéphane Marchesin25a26062014-09-12 16:18:59 -0700132
Gurchetan Singhf3b22da2016-11-21 10:46:38 -0800133 case DRM_FORMAT_BGR888:
Gurchetan Singhe8ab0a52016-11-21 11:36:31 -0800134 case DRM_FORMAT_RGB888:
Kristian H. Kristensen478343f2018-04-04 14:02:50 -0700135 return &packed_3bpp_layout;
Stéphane Marchesin25a26062014-09-12 16:18:59 -0700136
Gurchetan Singhf3b22da2016-11-21 10:46:38 -0800137 case DRM_FORMAT_ABGR2101010:
Gurchetan Singhe8ab0a52016-11-21 11:36:31 -0800138 case DRM_FORMAT_ABGR8888:
139 case DRM_FORMAT_ARGB2101010:
140 case DRM_FORMAT_ARGB8888:
Gurchetan Singhf3b22da2016-11-21 10:46:38 -0800141 case DRM_FORMAT_AYUV:
Gurchetan Singhe8ab0a52016-11-21 11:36:31 -0800142 case DRM_FORMAT_BGRA1010102:
143 case DRM_FORMAT_BGRA8888:
144 case DRM_FORMAT_BGRX1010102:
145 case DRM_FORMAT_BGRX8888:
146 case DRM_FORMAT_RGBA1010102:
147 case DRM_FORMAT_RGBA8888:
148 case DRM_FORMAT_RGBX1010102:
149 case DRM_FORMAT_RGBX8888:
150 case DRM_FORMAT_XBGR2101010:
151 case DRM_FORMAT_XBGR8888:
152 case DRM_FORMAT_XRGB2101010:
153 case DRM_FORMAT_XRGB8888:
Kristian H. Kristensen478343f2018-04-04 14:02:50 -0700154 return &packed_4bpp_layout;
Stéphane Marchesin25a26062014-09-12 16:18:59 -0700155
Nataraj Deshpande586e2d62019-08-21 15:19:46 -0700156 case DRM_FORMAT_ABGR16161616F:
157 return &packed_8bpp_layout;
158
Kristian H. Kristensen478343f2018-04-04 14:02:50 -0700159 default:
160 drv_log("UNKNOWN FORMAT %d\n", format);
161 return NULL;
162 }
163}
164
165size_t drv_num_planes_from_format(uint32_t format)
166{
167 const struct planar_layout *layout = layout_from_format(format);
168
169 /*
170 * drv_bo_new calls this function early to query number of planes and
171 * considers 0 planes to mean unknown format, so we have to support
172 * that. All other layout_from_format() queries can assume that the
173 * format is supported and that the return value is non-NULL.
174 */
175
176 return layout ? layout->num_planes : 0;
177}
178
179uint32_t drv_height_from_format(uint32_t format, uint32_t height, size_t plane)
180{
181 const struct planar_layout *layout = layout_from_format(format);
182
183 assert(plane < layout->num_planes);
184
185 return DIV_ROUND_UP(height, layout->vertical_subsampling[plane]);
186}
187
Hirokazu Honda2a2bfc22019-10-11 15:54:50 +0900188uint32_t drv_vertical_subsampling_from_format(uint32_t format, size_t plane)
189{
190 const struct planar_layout *layout = layout_from_format(format);
191
192 assert(plane < layout->num_planes);
193
194 return layout->vertical_subsampling[plane];
195}
196
Kristian H. Kristensen478343f2018-04-04 14:02:50 -0700197uint32_t drv_bytes_per_pixel_from_format(uint32_t format, size_t plane)
198{
199 const struct planar_layout *layout = layout_from_format(format);
200
201 assert(plane < layout->num_planes);
202
203 return layout->bytes_per_pixel[plane];
Stéphane Marchesin25a26062014-09-12 16:18:59 -0700204}
205
Gurchetan Singh83dc4fb2016-07-19 15:52:33 -0700206/*
Gurchetan Singh4f298f92017-03-23 11:29:26 -0700207 * This function returns the stride for a given format, width and plane.
208 */
209uint32_t drv_stride_from_format(uint32_t format, uint32_t width, size_t plane)
210{
Kristian H. Kristensen478343f2018-04-04 14:02:50 -0700211 const struct planar_layout *layout = layout_from_format(format);
212 assert(plane < layout->num_planes);
213
Gurchetan Singh6bd78852018-06-06 17:15:31 -0700214 uint32_t plane_width = DIV_ROUND_UP(width, layout->horizontal_subsampling[plane]);
Kristian H. Kristensen478343f2018-04-04 14:02:50 -0700215 uint32_t stride = plane_width * layout->bytes_per_pixel[plane];
Gurchetan Singh4f298f92017-03-23 11:29:26 -0700216
217 /*
Gurchetan Singh4f298f92017-03-23 11:29:26 -0700218 * The stride of Android YV12 buffers is required to be aligned to 16 bytes
219 * (see <system/graphics.h>).
220 */
221 if (format == DRM_FORMAT_YVU420_ANDROID)
Gurchetan Singh1b1d56a2017-03-10 16:25:23 -0800222 stride = (plane == 0) ? ALIGN(stride, 32) : ALIGN(stride, 16);
Gurchetan Singh4f298f92017-03-23 11:29:26 -0700223
224 return stride;
225}
226
Gurchetan Singhbc24bd72017-09-28 15:21:53 -0700227uint32_t drv_size_from_format(uint32_t format, uint32_t stride, uint32_t height, size_t plane)
228{
Kristian H. Kristensen478343f2018-04-04 14:02:50 -0700229 return stride * drv_height_from_format(format, height, plane);
230}
Gurchetan Singhbc24bd72017-09-28 15:21:53 -0700231
Kristian H. Kristensen478343f2018-04-04 14:02:50 -0700232static uint32_t subsample_stride(uint32_t stride, uint32_t format, size_t plane)
233{
234 if (plane != 0) {
235 switch (format) {
236 case DRM_FORMAT_YVU420:
237 case DRM_FORMAT_YVU420_ANDROID:
238 stride = DIV_ROUND_UP(stride, 2);
239 break;
240 }
Gurchetan Singhbc24bd72017-09-28 15:21:53 -0700241 }
242
Kristian H. Kristensen478343f2018-04-04 14:02:50 -0700243 return stride;
Gurchetan Singhbc24bd72017-09-28 15:21:53 -0700244}
245
Gurchetan Singh4f298f92017-03-23 11:29:26 -0700246/*
Gurchetan Singh6423ecb2017-03-29 08:23:40 -0700247 * This function fills in the buffer object given the driver aligned stride of
248 * the first plane, height and a format. This function assumes there is just
249 * one kernel buffer per buffer object.
Gurchetan Singh42cc6d62016-08-29 18:19:19 -0700250 */
Gurchetan Singh1b1d56a2017-03-10 16:25:23 -0800251int drv_bo_from_format(struct bo *bo, uint32_t stride, uint32_t aligned_height, uint32_t format)
Gurchetan Singh42cc6d62016-08-29 18:19:19 -0700252{
Hirokazu Honda2a2bfc22019-10-11 15:54:50 +0900253 uint32_t padding[DRV_MAX_PLANES] = { 0 };
254 return drv_bo_from_format_and_padding(bo, stride, aligned_height, format, padding);
255}
Gurchetan Singh42cc6d62016-08-29 18:19:19 -0700256
Hirokazu Honda2a2bfc22019-10-11 15:54:50 +0900257int drv_bo_from_format_and_padding(struct bo *bo, uint32_t stride, uint32_t aligned_height,
258 uint32_t format, uint32_t padding[DRV_MAX_PLANES])
259{
Gurchetan Singh2a119342016-11-02 10:40:51 -0700260 size_t p, num_planes;
261 uint32_t offset = 0;
262
263 num_planes = drv_num_planes_from_format(format);
264 assert(num_planes);
Owen Linbbb69fd2017-06-05 14:33:08 +0800265
266 /*
267 * HAL_PIXEL_FORMAT_YV12 requires that (see <system/graphics.h>):
268 * - the aligned height is same as the buffer's height.
269 * - the chroma stride is 16 bytes aligned, i.e., the luma's strides
270 * is 32 bytes aligned.
271 */
Tomasz Figad846de62017-07-29 15:47:54 +0900272 if (format == DRM_FORMAT_YVU420_ANDROID) {
Gurchetan Singh298b7572019-09-19 09:55:18 -0700273 assert(aligned_height == bo->meta.height);
Owen Linbbb69fd2017-06-05 14:33:08 +0800274 assert(stride == ALIGN(stride, 32));
275 }
Gurchetan Singh2a119342016-11-02 10:40:51 -0700276
277 for (p = 0; p < num_planes; p++) {
Gurchetan Singh298b7572019-09-19 09:55:18 -0700278 bo->meta.strides[p] = subsample_stride(stride, format, p);
279 bo->meta.sizes[p] =
Hirokazu Honda2a2bfc22019-10-11 15:54:50 +0900280 drv_size_from_format(format, bo->meta.strides[p], aligned_height, p) +
281 padding[p];
Gurchetan Singh298b7572019-09-19 09:55:18 -0700282 bo->meta.offsets[p] = offset;
283 offset += bo->meta.sizes[p];
Gurchetan Singh42cc6d62016-08-29 18:19:19 -0700284 }
285
Gurchetan Singh298b7572019-09-19 09:55:18 -0700286 bo->meta.total_size = offset;
Gurchetan Singh42cc6d62016-08-29 18:19:19 -0700287 return 0;
288}
289
Dominik Behr6e6dc492019-10-09 15:43:52 -0700290int drv_dumb_bo_create_ex(struct bo *bo, uint32_t width, uint32_t height, uint32_t format,
291 uint64_t use_flags, uint64_t quirks)
Stéphane Marchesin25a26062014-09-12 16:18:59 -0700292{
Stéphane Marchesin25a26062014-09-12 16:18:59 -0700293 int ret;
Gurchetan Singhd5f8e442017-03-16 13:05:45 -0700294 size_t plane;
Gurchetan Singh6423ecb2017-03-29 08:23:40 -0700295 uint32_t aligned_width, aligned_height;
Gurchetan Singhd5f8e442017-03-16 13:05:45 -0700296 struct drm_mode_create_dumb create_dumb;
Stéphane Marchesin25a26062014-09-12 16:18:59 -0700297
Gurchetan Singhd5f8e442017-03-16 13:05:45 -0700298 aligned_width = width;
299 aligned_height = height;
Keiichi Watanabeaf94db92018-08-06 18:37:21 +0900300 switch (format) {
301 case DRM_FORMAT_YVU420_ANDROID:
302 /* Align width to 32 pixels, so chroma strides are 16 bytes as
303 * Android requires. */
Gurchetan Singhd5f8e442017-03-16 13:05:45 -0700304 aligned_width = ALIGN(width, 32);
Keiichi Watanabed706a8c2018-08-13 16:54:56 +0900305 /* Adjust the height to include room for chroma planes.
306 *
307 * HAL_PIXEL_FORMAT_YV12 requires that the buffer's height not
308 * be aligned. */
Gurchetan Singh298b7572019-09-19 09:55:18 -0700309 aligned_height = 3 * DIV_ROUND_UP(bo->meta.height, 2);
Keiichi Watanabeaf94db92018-08-06 18:37:21 +0900310 break;
311 case DRM_FORMAT_YVU420:
312 case DRM_FORMAT_NV12:
313 /* Adjust the height to include room for chroma planes */
314 aligned_height = 3 * DIV_ROUND_UP(height, 2);
315 break;
316 default:
317 break;
Gurchetan Singhd5f8e442017-03-16 13:05:45 -0700318 }
Yuly Novikov96c7a3b2015-12-08 22:48:29 -0500319
Stéphane Marchesin25a26062014-09-12 16:18:59 -0700320 memset(&create_dumb, 0, sizeof(create_dumb));
Dominik Behr6e6dc492019-10-09 15:43:52 -0700321 if (quirks & BO_QUIRK_DUMB32BPP) {
322 aligned_width =
323 DIV_ROUND_UP(aligned_width * layout_from_format(format)->bytes_per_pixel[0], 4);
324 create_dumb.bpp = 32;
325 } else {
326 create_dumb.bpp = layout_from_format(format)->bytes_per_pixel[0] * 8;
327 }
Gurchetan Singhd5f8e442017-03-16 13:05:45 -0700328 create_dumb.width = aligned_width;
Dominik Behr6e6dc492019-10-09 15:43:52 -0700329 create_dumb.height = aligned_height;
Stéphane Marchesin25a26062014-09-12 16:18:59 -0700330 create_dumb.flags = 0;
331
Gurchetan Singh46faf6b2016-08-05 14:40:07 -0700332 ret = drmIoctl(bo->drv->fd, DRM_IOCTL_MODE_CREATE_DUMB, &create_dumb);
Ilja H. Friedelf9d2ab72015-04-09 14:08:36 -0700333 if (ret) {
Alistair Strachan0cfaaa52018-03-19 14:03:23 -0700334 drv_log("DRM_IOCTL_MODE_CREATE_DUMB failed (%d, %d)\n", bo->drv->fd, errno);
Stéphane Marchesin6ac299f2019-03-21 12:23:29 -0700335 return -errno;
Ilja H. Friedelf9d2ab72015-04-09 14:08:36 -0700336 }
Stéphane Marchesin25a26062014-09-12 16:18:59 -0700337
Gurchetan Singh6423ecb2017-03-29 08:23:40 -0700338 drv_bo_from_format(bo, create_dumb.pitch, height, format);
Stéphane Marchesin25a26062014-09-12 16:18:59 -0700339
Gurchetan Singh298b7572019-09-19 09:55:18 -0700340 for (plane = 0; plane < bo->meta.num_planes; plane++)
Gurchetan Singhd5f8e442017-03-16 13:05:45 -0700341 bo->handles[plane].u32 = create_dumb.handle;
342
Gurchetan Singh298b7572019-09-19 09:55:18 -0700343 bo->meta.total_size = create_dumb.size;
Stéphane Marchesin25a26062014-09-12 16:18:59 -0700344 return 0;
345}
346
Dominik Behr6e6dc492019-10-09 15:43:52 -0700347int drv_dumb_bo_create(struct bo *bo, uint32_t width, uint32_t height, uint32_t format,
348 uint64_t use_flags)
349{
350 return drv_dumb_bo_create_ex(bo, width, height, format, use_flags, BO_QUIRK_NONE);
351}
352
Gurchetan Singh46faf6b2016-08-05 14:40:07 -0700353int drv_dumb_bo_destroy(struct bo *bo)
Stéphane Marchesin25a26062014-09-12 16:18:59 -0700354{
355 struct drm_mode_destroy_dumb destroy_dumb;
356 int ret;
357
358 memset(&destroy_dumb, 0, sizeof(destroy_dumb));
Yuly Novikov96c7a3b2015-12-08 22:48:29 -0500359 destroy_dumb.handle = bo->handles[0].u32;
Stéphane Marchesin25a26062014-09-12 16:18:59 -0700360
Gurchetan Singh46faf6b2016-08-05 14:40:07 -0700361 ret = drmIoctl(bo->drv->fd, DRM_IOCTL_MODE_DESTROY_DUMB, &destroy_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_DESTROY_DUMB failed (handle=%x)\n", bo->handles[0].u32);
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
367 return 0;
368}
369
Gurchetan Singh46faf6b2016-08-05 14:40:07 -0700370int drv_gem_bo_destroy(struct bo *bo)
Stéphane Marchesin25a26062014-09-12 16:18:59 -0700371{
372 struct drm_gem_close gem_close;
Yuly Novikov96c7a3b2015-12-08 22:48:29 -0500373 int ret, error = 0;
374 size_t plane, i;
Stéphane Marchesin25a26062014-09-12 16:18:59 -0700375
Gurchetan Singh298b7572019-09-19 09:55:18 -0700376 for (plane = 0; plane < bo->meta.num_planes; plane++) {
Gurchetan Singhf64487b2016-07-14 19:54:44 -0700377 for (i = 0; i < plane; i++)
378 if (bo->handles[i].u32 == bo->handles[plane].u32)
379 break;
380 /* Make sure close hasn't already been called on this handle */
381 if (i != plane)
Yuly Novikov96c7a3b2015-12-08 22:48:29 -0500382 continue;
Stéphane Marchesin25a26062014-09-12 16:18:59 -0700383
Yuly Novikov96c7a3b2015-12-08 22:48:29 -0500384 memset(&gem_close, 0, sizeof(gem_close));
385 gem_close.handle = bo->handles[plane].u32;
386
Gurchetan Singh46faf6b2016-08-05 14:40:07 -0700387 ret = drmIoctl(bo->drv->fd, DRM_IOCTL_GEM_CLOSE, &gem_close);
Yuly Novikov96c7a3b2015-12-08 22:48:29 -0500388 if (ret) {
Alistair Strachan0cfaaa52018-03-19 14:03:23 -0700389 drv_log("DRM_IOCTL_GEM_CLOSE failed (handle=%x) error %d\n",
Gurchetan Singh1b1d56a2017-03-10 16:25:23 -0800390 bo->handles[plane].u32, ret);
Stéphane Marchesin6ac299f2019-03-21 12:23:29 -0700391 error = -errno;
Yuly Novikov96c7a3b2015-12-08 22:48:29 -0500392 }
Ilja H. Friedelf9d2ab72015-04-09 14:08:36 -0700393 }
Stéphane Marchesin25a26062014-09-12 16:18:59 -0700394
Yuly Novikov96c7a3b2015-12-08 22:48:29 -0500395 return error;
Stéphane Marchesin25a26062014-09-12 16:18:59 -0700396}
Gurchetan Singh1647fbe2016-08-03 17:14:55 -0700397
Gurchetan Singh71611d62017-01-03 16:49:56 -0800398int drv_prime_bo_import(struct bo *bo, struct drv_import_fd_data *data)
399{
400 int ret;
401 size_t plane;
402 struct drm_prime_handle prime_handle;
403
Gurchetan Singh298b7572019-09-19 09:55:18 -0700404 for (plane = 0; plane < bo->meta.num_planes; plane++) {
Gurchetan Singh71611d62017-01-03 16:49:56 -0800405 memset(&prime_handle, 0, sizeof(prime_handle));
406 prime_handle.fd = data->fds[plane];
407
Gurchetan Singh1b1d56a2017-03-10 16:25:23 -0800408 ret = drmIoctl(bo->drv->fd, DRM_IOCTL_PRIME_FD_TO_HANDLE, &prime_handle);
Gurchetan Singh71611d62017-01-03 16:49:56 -0800409
410 if (ret) {
Alistair Strachan0cfaaa52018-03-19 14:03:23 -0700411 drv_log("DRM_IOCTL_PRIME_FD_TO_HANDLE failed (fd=%u)\n", prime_handle.fd);
Gurchetan Singh71611d62017-01-03 16:49:56 -0800412
413 /*
414 * Need to call GEM close on planes that were opened,
415 * if any. Adjust the num_planes variable to be the
416 * plane that failed, so GEM close will be called on
417 * planes before that plane.
418 */
Gurchetan Singh298b7572019-09-19 09:55:18 -0700419 bo->meta.num_planes = plane;
Gurchetan Singh71611d62017-01-03 16:49:56 -0800420 drv_gem_bo_destroy(bo);
Stéphane Marchesin6ac299f2019-03-21 12:23:29 -0700421 return -errno;
Gurchetan Singh71611d62017-01-03 16:49:56 -0800422 }
423
424 bo->handles[plane].u32 = prime_handle.handle;
425 }
426
Gurchetan Singh71611d62017-01-03 16:49:56 -0800427 return 0;
428}
429
Gurchetan Singhee43c302017-11-14 18:20:27 -0800430void *drv_dumb_bo_map(struct bo *bo, struct vma *vma, size_t plane, uint32_t map_flags)
Gurchetan Singhef920532016-08-12 16:38:25 -0700431{
432 int ret;
Gurchetan Singh1a31e602016-10-06 10:58:00 -0700433 size_t i;
Gurchetan Singhef920532016-08-12 16:38:25 -0700434 struct drm_mode_map_dumb map_dumb;
435
436 memset(&map_dumb, 0, sizeof(map_dumb));
Gurchetan Singh1a31e602016-10-06 10:58:00 -0700437 map_dumb.handle = bo->handles[plane].u32;
Gurchetan Singhef920532016-08-12 16:38:25 -0700438
439 ret = drmIoctl(bo->drv->fd, DRM_IOCTL_MODE_MAP_DUMB, &map_dumb);
440 if (ret) {
Alistair Strachan0cfaaa52018-03-19 14:03:23 -0700441 drv_log("DRM_IOCTL_MODE_MAP_DUMB failed\n");
Gurchetan Singhef920532016-08-12 16:38:25 -0700442 return MAP_FAILED;
443 }
444
Gurchetan Singh298b7572019-09-19 09:55:18 -0700445 for (i = 0; i < bo->meta.num_planes; i++)
Gurchetan Singh1a31e602016-10-06 10:58:00 -0700446 if (bo->handles[i].u32 == bo->handles[plane].u32)
Gurchetan Singh298b7572019-09-19 09:55:18 -0700447 vma->length += bo->meta.sizes[i];
Gurchetan Singh1a31e602016-10-06 10:58:00 -0700448
Gurchetan Singhee43c302017-11-14 18:20:27 -0800449 return mmap(0, vma->length, drv_get_prot(map_flags), MAP_SHARED, bo->drv->fd,
Gurchetan Singhcfb88762017-09-28 17:14:50 -0700450 map_dumb.offset);
Gurchetan Singhef920532016-08-12 16:38:25 -0700451}
452
Gurchetan Singhee43c302017-11-14 18:20:27 -0800453int drv_bo_munmap(struct bo *bo, struct vma *vma)
Gurchetan Singhba6bd502017-09-18 15:29:47 -0700454{
Gurchetan Singhee43c302017-11-14 18:20:27 -0800455 return munmap(vma->addr, vma->length);
Gurchetan Singhba6bd502017-09-18 15:29:47 -0700456}
457
Gurchetan Singh47e629b2017-11-02 14:07:18 -0700458int drv_mapping_destroy(struct bo *bo)
Gurchetan Singhde263f12017-01-24 13:30:06 -0800459{
460 int ret;
Gurchetan Singhde263f12017-01-24 13:30:06 -0800461 size_t plane;
Gurchetan Singh47e629b2017-11-02 14:07:18 -0700462 struct mapping *mapping;
Gurchetan Singhcfedbcc2017-11-02 17:32:00 -0700463 uint32_t idx;
Gurchetan Singhde263f12017-01-24 13:30:06 -0800464
465 /*
466 * This function is called right before the buffer is destroyed. It will free any mappings
467 * associated with the buffer.
468 */
469
Gurchetan Singhcfedbcc2017-11-02 17:32:00 -0700470 idx = 0;
Gurchetan Singh298b7572019-09-19 09:55:18 -0700471 for (plane = 0; plane < bo->meta.num_planes; plane++) {
Gurchetan Singhcfedbcc2017-11-02 17:32:00 -0700472 while (idx < drv_array_size(bo->drv->mappings)) {
473 mapping = (struct mapping *)drv_array_at_idx(bo->drv->mappings, idx);
474 if (mapping->vma->handle != bo->handles[plane].u32) {
475 idx++;
476 continue;
Gurchetan Singhde263f12017-01-24 13:30:06 -0800477 }
478
Gurchetan Singhcfedbcc2017-11-02 17:32:00 -0700479 if (!--mapping->vma->refcount) {
Gurchetan Singhee43c302017-11-14 18:20:27 -0800480 ret = bo->drv->backend->bo_unmap(bo, mapping->vma);
Gurchetan Singhcfedbcc2017-11-02 17:32:00 -0700481 if (ret) {
Alistair Strachan0cfaaa52018-03-19 14:03:23 -0700482 drv_log("munmap failed\n");
Gurchetan Singhcfedbcc2017-11-02 17:32:00 -0700483 return ret;
484 }
485
486 free(mapping->vma);
487 }
488
489 /* This shrinks and shifts the array, so don't increment idx. */
490 drv_array_remove(bo->drv->mappings, idx);
Gurchetan Singhde263f12017-01-24 13:30:06 -0800491 }
492 }
493
494 return 0;
495}
496
Gurchetan Singhcfb88762017-09-28 17:14:50 -0700497int drv_get_prot(uint32_t map_flags)
498{
499 return (BO_MAP_WRITE & map_flags) ? PROT_WRITE | PROT_READ : PROT_READ;
500}
501
Gurchetan Singh1b1d56a2017-03-10 16:25:23 -0800502uintptr_t drv_get_reference_count(struct driver *drv, struct bo *bo, size_t plane)
Gurchetan Singh1647fbe2016-08-03 17:14:55 -0700503{
504 void *count;
505 uintptr_t num = 0;
506
507 if (!drmHashLookup(drv->buffer_table, bo->handles[plane].u32, &count))
Gurchetan Singh1b1d56a2017-03-10 16:25:23 -0800508 num = (uintptr_t)(count);
Gurchetan Singh1647fbe2016-08-03 17:14:55 -0700509
510 return num;
511}
512
Gurchetan Singh1b1d56a2017-03-10 16:25:23 -0800513void drv_increment_reference_count(struct driver *drv, struct bo *bo, size_t plane)
Gurchetan Singh1647fbe2016-08-03 17:14:55 -0700514{
515 uintptr_t num = drv_get_reference_count(drv, bo, plane);
516
517 /* If a value isn't in the table, drmHashDelete is a no-op */
518 drmHashDelete(drv->buffer_table, bo->handles[plane].u32);
Gurchetan Singh1b1d56a2017-03-10 16:25:23 -0800519 drmHashInsert(drv->buffer_table, bo->handles[plane].u32, (void *)(num + 1));
Gurchetan Singh1647fbe2016-08-03 17:14:55 -0700520}
521
Gurchetan Singh1b1d56a2017-03-10 16:25:23 -0800522void drv_decrement_reference_count(struct driver *drv, struct bo *bo, size_t plane)
Gurchetan Singh1647fbe2016-08-03 17:14:55 -0700523{
524 uintptr_t num = drv_get_reference_count(drv, bo, plane);
525
526 drmHashDelete(drv->buffer_table, bo->handles[plane].u32);
527
528 if (num > 0)
Gurchetan Singh1b1d56a2017-03-10 16:25:23 -0800529 drmHashInsert(drv->buffer_table, bo->handles[plane].u32, (void *)(num - 1));
Gurchetan Singh1647fbe2016-08-03 17:14:55 -0700530}
Gurchetan Singhef920532016-08-12 16:38:25 -0700531
Gurchetan Singh86ddfdc2018-09-17 17:13:45 -0700532void drv_add_combination(struct driver *drv, const uint32_t format,
533 struct format_metadata *metadata, uint64_t use_flags)
534{
535 struct combination combo = { .format = format,
536 .metadata = *metadata,
537 .use_flags = use_flags };
538
539 drv_array_append(drv->combos, &combo);
540}
541
Gurchetan Singhd3001452017-11-03 17:18:36 -0700542void drv_add_combinations(struct driver *drv, const uint32_t *formats, uint32_t num_formats,
543 struct format_metadata *metadata, uint64_t use_flags)
Gurchetan Singh179687e2016-10-28 10:07:35 -0700544{
Gurchetan Singh6b41fb52017-03-01 20:14:39 -0800545 uint32_t i;
Gurchetan Singhbc9a87d2017-11-03 17:17:35 -0700546
547 for (i = 0; i < num_formats; i++) {
Gurchetan Singh2b1d6892018-09-17 16:58:16 -0700548 struct combination combo = { .format = formats[i],
549 .metadata = *metadata,
550 .use_flags = use_flags };
Gurchetan Singhbc9a87d2017-11-03 17:17:35 -0700551
552 drv_array_append(drv->combos, &combo);
553 }
Gurchetan Singh6b41fb52017-03-01 20:14:39 -0800554}
555
Gurchetan Singh1b1d56a2017-03-10 16:25:23 -0800556void drv_modify_combination(struct driver *drv, uint32_t format, struct format_metadata *metadata,
Gurchetan Singha1892b22017-09-28 16:40:52 -0700557 uint64_t use_flags)
Gurchetan Singh6b41fb52017-03-01 20:14:39 -0800558{
559 uint32_t i;
560 struct combination *combo;
Gurchetan Singha1892b22017-09-28 16:40:52 -0700561 /* Attempts to add the specified flags to an existing combination. */
Gurchetan Singhbc9a87d2017-11-03 17:17:35 -0700562 for (i = 0; i < drv_array_size(drv->combos); i++) {
563 combo = (struct combination *)drv_array_at_idx(drv->combos, i);
Gurchetan Singh1b1d56a2017-03-10 16:25:23 -0800564 if (combo->format == format && combo->metadata.tiling == metadata->tiling &&
Gurchetan Singh6b41fb52017-03-01 20:14:39 -0800565 combo->metadata.modifier == metadata->modifier)
Gurchetan Singha1892b22017-09-28 16:40:52 -0700566 combo->use_flags |= use_flags;
Gurchetan Singh6b41fb52017-03-01 20:14:39 -0800567 }
568}
569
Gurchetan Singh8ac0c9a2017-05-15 09:34:22 -0700570int drv_modify_linear_combinations(struct driver *drv)
Gurchetan Singh6b41fb52017-03-01 20:14:39 -0800571{
Gurchetan Singh6b41fb52017-03-01 20:14:39 -0800572 /*
573 * All current drivers can scanout linear XRGB8888/ARGB8888 as a primary
Gurchetan Singh28e5ea02019-12-19 10:56:51 -0800574 * plane and as a cursor.
Gurchetan Singh6b41fb52017-03-01 20:14:39 -0800575 */
Gurchetan Singh8ac0c9a2017-05-15 09:34:22 -0700576 drv_modify_combination(drv, DRM_FORMAT_XRGB8888, &LINEAR_METADATA,
577 BO_USE_CURSOR | BO_USE_SCANOUT);
578 drv_modify_combination(drv, DRM_FORMAT_ARGB8888, &LINEAR_METADATA,
579 BO_USE_CURSOR | BO_USE_SCANOUT);
Gurchetan Singh6b41fb52017-03-01 20:14:39 -0800580 return 0;
Gurchetan Singh179687e2016-10-28 10:07:35 -0700581}
Kristian H. Kristensen6061eab2017-10-03 13:53:19 -0700582
583/*
584 * Pick the best modifier from modifiers, according to the ordering
585 * given by modifier_order.
586 */
587uint64_t drv_pick_modifier(const uint64_t *modifiers, uint32_t count,
588 const uint64_t *modifier_order, uint32_t order_count)
589{
590 uint32_t i, j;
591
592 for (i = 0; i < order_count; i++) {
593 for (j = 0; j < count; j++) {
594 if (modifiers[j] == modifier_order[i]) {
595 return modifiers[j];
596 }
597 }
598 }
599
600 return DRM_FORMAT_MOD_LINEAR;
601}
Fritz Koenig1b9b5b92019-03-19 13:25:45 -0700602
603/*
604 * Search a list of modifiers to see if a given modifier is present
605 */
606bool drv_has_modifier(const uint64_t *list, uint32_t count, uint64_t modifier)
607{
608 uint32_t i;
609 for (i = 0; i < count; i++)
610 if (list[i] == modifier)
611 return true;
612
613 return false;
614}