blob: 05ca9eb489855259412b0e3e1b3309d8f3db29c9 [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
57static const struct planar_layout biplanar_yuv_420_layout = {
58 .num_planes = 2,
59 .horizontal_subsampling = { 1, 2 },
60 .vertical_subsampling = { 1, 2 },
61 .bytes_per_pixel = { 1, 2 }
62};
63
64static const struct planar_layout triplanar_yuv_420_layout = {
65 .num_planes = 3,
66 .horizontal_subsampling = { 1, 2, 2 },
67 .vertical_subsampling = { 1, 2, 2 },
68 .bytes_per_pixel = { 1, 1, 1 }
69};
70
Miguel Casas055a6aa2019-04-30 18:11:40 -040071static const struct planar_layout biplanar_yuv_p010_layout = {
72 .num_planes = 2,
73 .horizontal_subsampling = { 1, 2 },
74 .vertical_subsampling = { 1, 2 },
75 .bytes_per_pixel = { 2, 4 }
76};
77
Kristian H. Kristensen478343f2018-04-04 14:02:50 -070078// clang-format on
79
80static const struct planar_layout *layout_from_format(uint32_t format)
Gurchetan Singh1b1d56a2017-03-10 16:25:23 -080081{
Gurchetan Singhd6fb5772016-08-29 19:13:51 -070082 switch (format) {
Gurchetan Singhe8ab0a52016-11-21 11:36:31 -080083 case DRM_FORMAT_BGR233:
Gurchetan Singhf3b22da2016-11-21 10:46:38 -080084 case DRM_FORMAT_C8:
85 case DRM_FORMAT_R8:
86 case DRM_FORMAT_RGB332:
Kristian H. Kristensen478343f2018-04-04 14:02:50 -070087 return &packed_1bpp_layout;
88
Gurchetan Singhf3b22da2016-11-21 10:46:38 -080089 case DRM_FORMAT_YVU420:
Gurchetan Singh03f13562017-02-08 15:21:14 -080090 case DRM_FORMAT_YVU420_ANDROID:
Kristian H. Kristensen478343f2018-04-04 14:02:50 -070091 return &triplanar_yuv_420_layout;
Stéphane Marchesin25a26062014-09-12 16:18:59 -070092
Gurchetan Singhf3b22da2016-11-21 10:46:38 -080093 case DRM_FORMAT_NV12:
Shirish Sdf423df2017-04-18 16:21:59 +053094 case DRM_FORMAT_NV21:
Kristian H. Kristensen478343f2018-04-04 14:02:50 -070095 return &biplanar_yuv_420_layout;
Yuly Novikov96c7a3b2015-12-08 22:48:29 -050096
Miguel Casas055a6aa2019-04-30 18:11:40 -040097 case DRM_FORMAT_P010:
98 return &biplanar_yuv_p010_layout;
99
Gurchetan Singhf3b22da2016-11-21 10:46:38 -0800100 case DRM_FORMAT_ABGR1555:
Gurchetan Singhe8ab0a52016-11-21 11:36:31 -0800101 case DRM_FORMAT_ABGR4444:
102 case DRM_FORMAT_ARGB1555:
103 case DRM_FORMAT_ARGB4444:
Gurchetan Singhf3b22da2016-11-21 10:46:38 -0800104 case DRM_FORMAT_BGR565:
Gurchetan Singhe8ab0a52016-11-21 11:36:31 -0800105 case DRM_FORMAT_BGRA4444:
106 case DRM_FORMAT_BGRA5551:
107 case DRM_FORMAT_BGRX4444:
108 case DRM_FORMAT_BGRX5551:
109 case DRM_FORMAT_GR88:
110 case DRM_FORMAT_RG88:
111 case DRM_FORMAT_RGB565:
112 case DRM_FORMAT_RGBA4444:
113 case DRM_FORMAT_RGBA5551:
114 case DRM_FORMAT_RGBX4444:
115 case DRM_FORMAT_RGBX5551:
Gurchetan Singhf3b22da2016-11-21 10:46:38 -0800116 case DRM_FORMAT_UYVY:
117 case DRM_FORMAT_VYUY:
Gurchetan Singhe8ab0a52016-11-21 11:36:31 -0800118 case DRM_FORMAT_XBGR1555:
119 case DRM_FORMAT_XBGR4444:
120 case DRM_FORMAT_XRGB1555:
121 case DRM_FORMAT_XRGB4444:
122 case DRM_FORMAT_YUYV:
123 case DRM_FORMAT_YVYU:
Kristian H. Kristensen478343f2018-04-04 14:02:50 -0700124 return &packed_2bpp_layout;
Stéphane Marchesin25a26062014-09-12 16:18:59 -0700125
Gurchetan Singhf3b22da2016-11-21 10:46:38 -0800126 case DRM_FORMAT_BGR888:
Gurchetan Singhe8ab0a52016-11-21 11:36:31 -0800127 case DRM_FORMAT_RGB888:
Kristian H. Kristensen478343f2018-04-04 14:02:50 -0700128 return &packed_3bpp_layout;
Stéphane Marchesin25a26062014-09-12 16:18:59 -0700129
Gurchetan Singhf3b22da2016-11-21 10:46:38 -0800130 case DRM_FORMAT_ABGR2101010:
Gurchetan Singhe8ab0a52016-11-21 11:36:31 -0800131 case DRM_FORMAT_ABGR8888:
132 case DRM_FORMAT_ARGB2101010:
133 case DRM_FORMAT_ARGB8888:
Gurchetan Singhf3b22da2016-11-21 10:46:38 -0800134 case DRM_FORMAT_AYUV:
Gurchetan Singhe8ab0a52016-11-21 11:36:31 -0800135 case DRM_FORMAT_BGRA1010102:
136 case DRM_FORMAT_BGRA8888:
137 case DRM_FORMAT_BGRX1010102:
138 case DRM_FORMAT_BGRX8888:
139 case DRM_FORMAT_RGBA1010102:
140 case DRM_FORMAT_RGBA8888:
141 case DRM_FORMAT_RGBX1010102:
142 case DRM_FORMAT_RGBX8888:
143 case DRM_FORMAT_XBGR2101010:
144 case DRM_FORMAT_XBGR8888:
145 case DRM_FORMAT_XRGB2101010:
146 case DRM_FORMAT_XRGB8888:
Kristian H. Kristensen478343f2018-04-04 14:02:50 -0700147 return &packed_4bpp_layout;
Stéphane Marchesin25a26062014-09-12 16:18:59 -0700148
Kristian H. Kristensen478343f2018-04-04 14:02:50 -0700149 default:
150 drv_log("UNKNOWN FORMAT %d\n", format);
151 return NULL;
152 }
153}
154
155size_t drv_num_planes_from_format(uint32_t format)
156{
157 const struct planar_layout *layout = layout_from_format(format);
158
159 /*
160 * drv_bo_new calls this function early to query number of planes and
161 * considers 0 planes to mean unknown format, so we have to support
162 * that. All other layout_from_format() queries can assume that the
163 * format is supported and that the return value is non-NULL.
164 */
165
166 return layout ? layout->num_planes : 0;
167}
168
169uint32_t drv_height_from_format(uint32_t format, uint32_t height, size_t plane)
170{
171 const struct planar_layout *layout = layout_from_format(format);
172
173 assert(plane < layout->num_planes);
174
175 return DIV_ROUND_UP(height, layout->vertical_subsampling[plane]);
176}
177
178uint32_t drv_bytes_per_pixel_from_format(uint32_t format, size_t plane)
179{
180 const struct planar_layout *layout = layout_from_format(format);
181
182 assert(plane < layout->num_planes);
183
184 return layout->bytes_per_pixel[plane];
Stéphane Marchesin25a26062014-09-12 16:18:59 -0700185}
186
Gurchetan Singh83dc4fb2016-07-19 15:52:33 -0700187/*
Gurchetan Singh4f298f92017-03-23 11:29:26 -0700188 * This function returns the stride for a given format, width and plane.
189 */
190uint32_t drv_stride_from_format(uint32_t format, uint32_t width, size_t plane)
191{
Kristian H. Kristensen478343f2018-04-04 14:02:50 -0700192 const struct planar_layout *layout = layout_from_format(format);
193 assert(plane < layout->num_planes);
194
Gurchetan Singh6bd78852018-06-06 17:15:31 -0700195 uint32_t plane_width = DIV_ROUND_UP(width, layout->horizontal_subsampling[plane]);
Kristian H. Kristensen478343f2018-04-04 14:02:50 -0700196 uint32_t stride = plane_width * layout->bytes_per_pixel[plane];
Gurchetan Singh4f298f92017-03-23 11:29:26 -0700197
198 /*
Gurchetan Singh4f298f92017-03-23 11:29:26 -0700199 * The stride of Android YV12 buffers is required to be aligned to 16 bytes
200 * (see <system/graphics.h>).
201 */
202 if (format == DRM_FORMAT_YVU420_ANDROID)
Gurchetan Singh1b1d56a2017-03-10 16:25:23 -0800203 stride = (plane == 0) ? ALIGN(stride, 32) : ALIGN(stride, 16);
Gurchetan Singh4f298f92017-03-23 11:29:26 -0700204
205 return stride;
206}
207
Gurchetan Singhbc24bd72017-09-28 15:21:53 -0700208uint32_t drv_size_from_format(uint32_t format, uint32_t stride, uint32_t height, size_t plane)
209{
Kristian H. Kristensen478343f2018-04-04 14:02:50 -0700210 return stride * drv_height_from_format(format, height, plane);
211}
Gurchetan Singhbc24bd72017-09-28 15:21:53 -0700212
Kristian H. Kristensen478343f2018-04-04 14:02:50 -0700213static uint32_t subsample_stride(uint32_t stride, uint32_t format, size_t plane)
214{
215 if (plane != 0) {
216 switch (format) {
217 case DRM_FORMAT_YVU420:
218 case DRM_FORMAT_YVU420_ANDROID:
219 stride = DIV_ROUND_UP(stride, 2);
220 break;
221 }
Gurchetan Singhbc24bd72017-09-28 15:21:53 -0700222 }
223
Kristian H. Kristensen478343f2018-04-04 14:02:50 -0700224 return stride;
Gurchetan Singhbc24bd72017-09-28 15:21:53 -0700225}
226
Gurchetan Singh4f298f92017-03-23 11:29:26 -0700227/*
Gurchetan Singh6423ecb2017-03-29 08:23:40 -0700228 * This function fills in the buffer object given the driver aligned stride of
229 * the first plane, height and a format. This function assumes there is just
230 * one kernel buffer per buffer object.
Gurchetan Singh42cc6d62016-08-29 18:19:19 -0700231 */
Gurchetan Singh1b1d56a2017-03-10 16:25:23 -0800232int drv_bo_from_format(struct bo *bo, uint32_t stride, uint32_t aligned_height, uint32_t format)
Gurchetan Singh42cc6d62016-08-29 18:19:19 -0700233{
234
Gurchetan Singh2a119342016-11-02 10:40:51 -0700235 size_t p, num_planes;
236 uint32_t offset = 0;
237
238 num_planes = drv_num_planes_from_format(format);
239 assert(num_planes);
Owen Linbbb69fd2017-06-05 14:33:08 +0800240
241 /*
242 * HAL_PIXEL_FORMAT_YV12 requires that (see <system/graphics.h>):
243 * - the aligned height is same as the buffer's height.
244 * - the chroma stride is 16 bytes aligned, i.e., the luma's strides
245 * is 32 bytes aligned.
246 */
Tomasz Figad846de62017-07-29 15:47:54 +0900247 if (format == DRM_FORMAT_YVU420_ANDROID) {
Owen Linbbb69fd2017-06-05 14:33:08 +0800248 assert(aligned_height == bo->height);
249 assert(stride == ALIGN(stride, 32));
250 }
Gurchetan Singh2a119342016-11-02 10:40:51 -0700251
252 for (p = 0; p < num_planes; p++) {
Gurchetan Singh6423ecb2017-03-29 08:23:40 -0700253 bo->strides[p] = subsample_stride(stride, format, p);
Owen Linbbb69fd2017-06-05 14:33:08 +0800254 bo->sizes[p] = drv_size_from_format(format, bo->strides[p], aligned_height, p);
Gurchetan Singh2a119342016-11-02 10:40:51 -0700255 bo->offsets[p] = offset;
256 offset += bo->sizes[p];
Gurchetan Singh42cc6d62016-08-29 18:19:19 -0700257 }
258
Owen Linbbb69fd2017-06-05 14:33:08 +0800259 bo->total_size = offset;
Gurchetan Singh42cc6d62016-08-29 18:19:19 -0700260 return 0;
261}
262
Gurchetan Singh1b1d56a2017-03-10 16:25:23 -0800263int drv_dumb_bo_create(struct bo *bo, uint32_t width, uint32_t height, uint32_t format,
Gurchetan Singha1892b22017-09-28 16:40:52 -0700264 uint64_t use_flags)
Stéphane Marchesin25a26062014-09-12 16:18:59 -0700265{
Stéphane Marchesin25a26062014-09-12 16:18:59 -0700266 int ret;
Gurchetan Singhd5f8e442017-03-16 13:05:45 -0700267 size_t plane;
Gurchetan Singh6423ecb2017-03-29 08:23:40 -0700268 uint32_t aligned_width, aligned_height;
Gurchetan Singhd5f8e442017-03-16 13:05:45 -0700269 struct drm_mode_create_dumb create_dumb;
Stéphane Marchesin25a26062014-09-12 16:18:59 -0700270
Gurchetan Singhd5f8e442017-03-16 13:05:45 -0700271 aligned_width = width;
272 aligned_height = height;
Keiichi Watanabeaf94db92018-08-06 18:37:21 +0900273 switch (format) {
274 case DRM_FORMAT_YVU420_ANDROID:
275 /* Align width to 32 pixels, so chroma strides are 16 bytes as
276 * Android requires. */
Gurchetan Singhd5f8e442017-03-16 13:05:45 -0700277 aligned_width = ALIGN(width, 32);
Keiichi Watanabed706a8c2018-08-13 16:54:56 +0900278 /* Adjust the height to include room for chroma planes.
279 *
280 * HAL_PIXEL_FORMAT_YV12 requires that the buffer's height not
281 * be aligned. */
282 aligned_height = 3 * DIV_ROUND_UP(bo->height, 2);
Keiichi Watanabeaf94db92018-08-06 18:37:21 +0900283 break;
284 case DRM_FORMAT_YVU420:
285 case DRM_FORMAT_NV12:
286 /* Adjust the height to include room for chroma planes */
287 aligned_height = 3 * DIV_ROUND_UP(height, 2);
288 break;
289 default:
290 break;
Gurchetan Singhd5f8e442017-03-16 13:05:45 -0700291 }
Yuly Novikov96c7a3b2015-12-08 22:48:29 -0500292
Stéphane Marchesin25a26062014-09-12 16:18:59 -0700293 memset(&create_dumb, 0, sizeof(create_dumb));
Gurchetan Singhd5f8e442017-03-16 13:05:45 -0700294 create_dumb.height = aligned_height;
295 create_dumb.width = aligned_width;
Kristian H. Kristensen478343f2018-04-04 14:02:50 -0700296 create_dumb.bpp = layout_from_format(format)->bytes_per_pixel[0] * 8;
Stéphane Marchesin25a26062014-09-12 16:18:59 -0700297 create_dumb.flags = 0;
298
Gurchetan Singh46faf6b2016-08-05 14:40:07 -0700299 ret = drmIoctl(bo->drv->fd, DRM_IOCTL_MODE_CREATE_DUMB, &create_dumb);
Ilja H. Friedelf9d2ab72015-04-09 14:08:36 -0700300 if (ret) {
Alistair Strachan0cfaaa52018-03-19 14:03:23 -0700301 drv_log("DRM_IOCTL_MODE_CREATE_DUMB failed (%d, %d)\n", bo->drv->fd, errno);
Stéphane Marchesin6ac299f2019-03-21 12:23:29 -0700302 return -errno;
Ilja H. Friedelf9d2ab72015-04-09 14:08:36 -0700303 }
Stéphane Marchesin25a26062014-09-12 16:18:59 -0700304
Gurchetan Singh6423ecb2017-03-29 08:23:40 -0700305 drv_bo_from_format(bo, create_dumb.pitch, height, format);
Stéphane Marchesin25a26062014-09-12 16:18:59 -0700306
Gurchetan Singhd5f8e442017-03-16 13:05:45 -0700307 for (plane = 0; plane < bo->num_planes; plane++)
308 bo->handles[plane].u32 = create_dumb.handle;
309
310 bo->total_size = create_dumb.size;
Stéphane Marchesin25a26062014-09-12 16:18:59 -0700311 return 0;
312}
313
Gurchetan Singh46faf6b2016-08-05 14:40:07 -0700314int drv_dumb_bo_destroy(struct bo *bo)
Stéphane Marchesin25a26062014-09-12 16:18:59 -0700315{
316 struct drm_mode_destroy_dumb destroy_dumb;
317 int ret;
318
319 memset(&destroy_dumb, 0, sizeof(destroy_dumb));
Yuly Novikov96c7a3b2015-12-08 22:48:29 -0500320 destroy_dumb.handle = bo->handles[0].u32;
Stéphane Marchesin25a26062014-09-12 16:18:59 -0700321
Gurchetan Singh46faf6b2016-08-05 14:40:07 -0700322 ret = drmIoctl(bo->drv->fd, DRM_IOCTL_MODE_DESTROY_DUMB, &destroy_dumb);
Ilja H. Friedelf9d2ab72015-04-09 14:08:36 -0700323 if (ret) {
Alistair Strachan0cfaaa52018-03-19 14:03:23 -0700324 drv_log("DRM_IOCTL_MODE_DESTROY_DUMB failed (handle=%x)\n", bo->handles[0].u32);
Stéphane Marchesin6ac299f2019-03-21 12:23:29 -0700325 return -errno;
Ilja H. Friedelf9d2ab72015-04-09 14:08:36 -0700326 }
Stéphane Marchesin25a26062014-09-12 16:18:59 -0700327
328 return 0;
329}
330
Gurchetan Singh46faf6b2016-08-05 14:40:07 -0700331int drv_gem_bo_destroy(struct bo *bo)
Stéphane Marchesin25a26062014-09-12 16:18:59 -0700332{
333 struct drm_gem_close gem_close;
Yuly Novikov96c7a3b2015-12-08 22:48:29 -0500334 int ret, error = 0;
335 size_t plane, i;
Stéphane Marchesin25a26062014-09-12 16:18:59 -0700336
Yuly Novikov96c7a3b2015-12-08 22:48:29 -0500337 for (plane = 0; plane < bo->num_planes; plane++) {
Gurchetan Singhf64487b2016-07-14 19:54:44 -0700338 for (i = 0; i < plane; i++)
339 if (bo->handles[i].u32 == bo->handles[plane].u32)
340 break;
341 /* Make sure close hasn't already been called on this handle */
342 if (i != plane)
Yuly Novikov96c7a3b2015-12-08 22:48:29 -0500343 continue;
Stéphane Marchesin25a26062014-09-12 16:18:59 -0700344
Yuly Novikov96c7a3b2015-12-08 22:48:29 -0500345 memset(&gem_close, 0, sizeof(gem_close));
346 gem_close.handle = bo->handles[plane].u32;
347
Gurchetan Singh46faf6b2016-08-05 14:40:07 -0700348 ret = drmIoctl(bo->drv->fd, DRM_IOCTL_GEM_CLOSE, &gem_close);
Yuly Novikov96c7a3b2015-12-08 22:48:29 -0500349 if (ret) {
Alistair Strachan0cfaaa52018-03-19 14:03:23 -0700350 drv_log("DRM_IOCTL_GEM_CLOSE failed (handle=%x) error %d\n",
Gurchetan Singh1b1d56a2017-03-10 16:25:23 -0800351 bo->handles[plane].u32, ret);
Stéphane Marchesin6ac299f2019-03-21 12:23:29 -0700352 error = -errno;
Yuly Novikov96c7a3b2015-12-08 22:48:29 -0500353 }
Ilja H. Friedelf9d2ab72015-04-09 14:08:36 -0700354 }
Stéphane Marchesin25a26062014-09-12 16:18:59 -0700355
Yuly Novikov96c7a3b2015-12-08 22:48:29 -0500356 return error;
Stéphane Marchesin25a26062014-09-12 16:18:59 -0700357}
Gurchetan Singh1647fbe2016-08-03 17:14:55 -0700358
Gurchetan Singh71611d62017-01-03 16:49:56 -0800359int drv_prime_bo_import(struct bo *bo, struct drv_import_fd_data *data)
360{
361 int ret;
362 size_t plane;
363 struct drm_prime_handle prime_handle;
364
365 for (plane = 0; plane < bo->num_planes; plane++) {
366 memset(&prime_handle, 0, sizeof(prime_handle));
367 prime_handle.fd = data->fds[plane];
368
Gurchetan Singh1b1d56a2017-03-10 16:25:23 -0800369 ret = drmIoctl(bo->drv->fd, DRM_IOCTL_PRIME_FD_TO_HANDLE, &prime_handle);
Gurchetan Singh71611d62017-01-03 16:49:56 -0800370
371 if (ret) {
Alistair Strachan0cfaaa52018-03-19 14:03:23 -0700372 drv_log("DRM_IOCTL_PRIME_FD_TO_HANDLE failed (fd=%u)\n", prime_handle.fd);
Gurchetan Singh71611d62017-01-03 16:49:56 -0800373
374 /*
375 * Need to call GEM close on planes that were opened,
376 * if any. Adjust the num_planes variable to be the
377 * plane that failed, so GEM close will be called on
378 * planes before that plane.
379 */
380 bo->num_planes = plane;
381 drv_gem_bo_destroy(bo);
Stéphane Marchesin6ac299f2019-03-21 12:23:29 -0700382 return -errno;
Gurchetan Singh71611d62017-01-03 16:49:56 -0800383 }
384
385 bo->handles[plane].u32 = prime_handle.handle;
386 }
387
Gurchetan Singh71611d62017-01-03 16:49:56 -0800388 return 0;
389}
390
Gurchetan Singhee43c302017-11-14 18:20:27 -0800391void *drv_dumb_bo_map(struct bo *bo, struct vma *vma, size_t plane, uint32_t map_flags)
Gurchetan Singhef920532016-08-12 16:38:25 -0700392{
393 int ret;
Gurchetan Singh1a31e602016-10-06 10:58:00 -0700394 size_t i;
Gurchetan Singhef920532016-08-12 16:38:25 -0700395 struct drm_mode_map_dumb map_dumb;
396
397 memset(&map_dumb, 0, sizeof(map_dumb));
Gurchetan Singh1a31e602016-10-06 10:58:00 -0700398 map_dumb.handle = bo->handles[plane].u32;
Gurchetan Singhef920532016-08-12 16:38:25 -0700399
400 ret = drmIoctl(bo->drv->fd, DRM_IOCTL_MODE_MAP_DUMB, &map_dumb);
401 if (ret) {
Alistair Strachan0cfaaa52018-03-19 14:03:23 -0700402 drv_log("DRM_IOCTL_MODE_MAP_DUMB failed\n");
Gurchetan Singhef920532016-08-12 16:38:25 -0700403 return MAP_FAILED;
404 }
405
Gurchetan Singh1a31e602016-10-06 10:58:00 -0700406 for (i = 0; i < bo->num_planes; i++)
407 if (bo->handles[i].u32 == bo->handles[plane].u32)
Gurchetan Singhee43c302017-11-14 18:20:27 -0800408 vma->length += bo->sizes[i];
Gurchetan Singh1a31e602016-10-06 10:58:00 -0700409
Gurchetan Singhee43c302017-11-14 18:20:27 -0800410 return mmap(0, vma->length, drv_get_prot(map_flags), MAP_SHARED, bo->drv->fd,
Gurchetan Singhcfb88762017-09-28 17:14:50 -0700411 map_dumb.offset);
Gurchetan Singhef920532016-08-12 16:38:25 -0700412}
413
Gurchetan Singhee43c302017-11-14 18:20:27 -0800414int drv_bo_munmap(struct bo *bo, struct vma *vma)
Gurchetan Singhba6bd502017-09-18 15:29:47 -0700415{
Gurchetan Singhee43c302017-11-14 18:20:27 -0800416 return munmap(vma->addr, vma->length);
Gurchetan Singhba6bd502017-09-18 15:29:47 -0700417}
418
Gurchetan Singh47e629b2017-11-02 14:07:18 -0700419int drv_mapping_destroy(struct bo *bo)
Gurchetan Singhde263f12017-01-24 13:30:06 -0800420{
421 int ret;
Gurchetan Singhde263f12017-01-24 13:30:06 -0800422 size_t plane;
Gurchetan Singh47e629b2017-11-02 14:07:18 -0700423 struct mapping *mapping;
Gurchetan Singhcfedbcc2017-11-02 17:32:00 -0700424 uint32_t idx;
Gurchetan Singhde263f12017-01-24 13:30:06 -0800425
426 /*
427 * This function is called right before the buffer is destroyed. It will free any mappings
428 * associated with the buffer.
429 */
430
Gurchetan Singhcfedbcc2017-11-02 17:32:00 -0700431 idx = 0;
Gurchetan Singhde263f12017-01-24 13:30:06 -0800432 for (plane = 0; plane < bo->num_planes; plane++) {
Gurchetan Singhcfedbcc2017-11-02 17:32:00 -0700433 while (idx < drv_array_size(bo->drv->mappings)) {
434 mapping = (struct mapping *)drv_array_at_idx(bo->drv->mappings, idx);
435 if (mapping->vma->handle != bo->handles[plane].u32) {
436 idx++;
437 continue;
Gurchetan Singhde263f12017-01-24 13:30:06 -0800438 }
439
Gurchetan Singhcfedbcc2017-11-02 17:32:00 -0700440 if (!--mapping->vma->refcount) {
Gurchetan Singhee43c302017-11-14 18:20:27 -0800441 ret = bo->drv->backend->bo_unmap(bo, mapping->vma);
Gurchetan Singhcfedbcc2017-11-02 17:32:00 -0700442 if (ret) {
Alistair Strachan0cfaaa52018-03-19 14:03:23 -0700443 drv_log("munmap failed\n");
Gurchetan Singhcfedbcc2017-11-02 17:32:00 -0700444 return ret;
445 }
446
447 free(mapping->vma);
448 }
449
450 /* This shrinks and shifts the array, so don't increment idx. */
451 drv_array_remove(bo->drv->mappings, idx);
Gurchetan Singhde263f12017-01-24 13:30:06 -0800452 }
453 }
454
455 return 0;
456}
457
Gurchetan Singhcfb88762017-09-28 17:14:50 -0700458int drv_get_prot(uint32_t map_flags)
459{
460 return (BO_MAP_WRITE & map_flags) ? PROT_WRITE | PROT_READ : PROT_READ;
461}
462
Gurchetan Singh1b1d56a2017-03-10 16:25:23 -0800463uintptr_t drv_get_reference_count(struct driver *drv, struct bo *bo, size_t plane)
Gurchetan Singh1647fbe2016-08-03 17:14:55 -0700464{
465 void *count;
466 uintptr_t num = 0;
467
468 if (!drmHashLookup(drv->buffer_table, bo->handles[plane].u32, &count))
Gurchetan Singh1b1d56a2017-03-10 16:25:23 -0800469 num = (uintptr_t)(count);
Gurchetan Singh1647fbe2016-08-03 17:14:55 -0700470
471 return num;
472}
473
Gurchetan Singh1b1d56a2017-03-10 16:25:23 -0800474void drv_increment_reference_count(struct driver *drv, struct bo *bo, size_t plane)
Gurchetan Singh1647fbe2016-08-03 17:14:55 -0700475{
476 uintptr_t num = drv_get_reference_count(drv, bo, plane);
477
478 /* If a value isn't in the table, drmHashDelete is a no-op */
479 drmHashDelete(drv->buffer_table, bo->handles[plane].u32);
Gurchetan Singh1b1d56a2017-03-10 16:25:23 -0800480 drmHashInsert(drv->buffer_table, bo->handles[plane].u32, (void *)(num + 1));
Gurchetan Singh1647fbe2016-08-03 17:14:55 -0700481}
482
Gurchetan Singh1b1d56a2017-03-10 16:25:23 -0800483void drv_decrement_reference_count(struct driver *drv, struct bo *bo, size_t plane)
Gurchetan Singh1647fbe2016-08-03 17:14:55 -0700484{
485 uintptr_t num = drv_get_reference_count(drv, bo, plane);
486
487 drmHashDelete(drv->buffer_table, bo->handles[plane].u32);
488
489 if (num > 0)
Gurchetan Singh1b1d56a2017-03-10 16:25:23 -0800490 drmHashInsert(drv->buffer_table, bo->handles[plane].u32, (void *)(num - 1));
Gurchetan Singh1647fbe2016-08-03 17:14:55 -0700491}
Gurchetan Singhef920532016-08-12 16:38:25 -0700492
Gurchetan Singh86ddfdc2018-09-17 17:13:45 -0700493void drv_add_combination(struct driver *drv, const uint32_t format,
494 struct format_metadata *metadata, uint64_t use_flags)
495{
496 struct combination combo = { .format = format,
497 .metadata = *metadata,
498 .use_flags = use_flags };
499
500 drv_array_append(drv->combos, &combo);
501}
502
Gurchetan Singhd3001452017-11-03 17:18:36 -0700503void drv_add_combinations(struct driver *drv, const uint32_t *formats, uint32_t num_formats,
504 struct format_metadata *metadata, uint64_t use_flags)
Gurchetan Singh179687e2016-10-28 10:07:35 -0700505{
Gurchetan Singh6b41fb52017-03-01 20:14:39 -0800506 uint32_t i;
Gurchetan Singhbc9a87d2017-11-03 17:17:35 -0700507
508 for (i = 0; i < num_formats; i++) {
Gurchetan Singh2b1d6892018-09-17 16:58:16 -0700509 struct combination combo = { .format = formats[i],
510 .metadata = *metadata,
511 .use_flags = use_flags };
Gurchetan Singhbc9a87d2017-11-03 17:17:35 -0700512
513 drv_array_append(drv->combos, &combo);
514 }
Gurchetan Singh6b41fb52017-03-01 20:14:39 -0800515}
516
Gurchetan Singh1b1d56a2017-03-10 16:25:23 -0800517void drv_modify_combination(struct driver *drv, uint32_t format, struct format_metadata *metadata,
Gurchetan Singha1892b22017-09-28 16:40:52 -0700518 uint64_t use_flags)
Gurchetan Singh6b41fb52017-03-01 20:14:39 -0800519{
520 uint32_t i;
521 struct combination *combo;
Gurchetan Singha1892b22017-09-28 16:40:52 -0700522 /* Attempts to add the specified flags to an existing combination. */
Gurchetan Singhbc9a87d2017-11-03 17:17:35 -0700523 for (i = 0; i < drv_array_size(drv->combos); i++) {
524 combo = (struct combination *)drv_array_at_idx(drv->combos, i);
Gurchetan Singh1b1d56a2017-03-10 16:25:23 -0800525 if (combo->format == format && combo->metadata.tiling == metadata->tiling &&
Gurchetan Singh6b41fb52017-03-01 20:14:39 -0800526 combo->metadata.modifier == metadata->modifier)
Gurchetan Singha1892b22017-09-28 16:40:52 -0700527 combo->use_flags |= use_flags;
Gurchetan Singh6b41fb52017-03-01 20:14:39 -0800528 }
529}
530
Gurchetan Singhbc9a87d2017-11-03 17:17:35 -0700531struct drv_array *drv_query_kms(struct driver *drv)
Gurchetan Singh6b41fb52017-03-01 20:14:39 -0800532{
Gurchetan Singhbc9a87d2017-11-03 17:17:35 -0700533 struct drv_array *kms_items;
Gurchetan Singha1892b22017-09-28 16:40:52 -0700534 uint64_t plane_type, use_flag;
Gurchetan Singhbc9a87d2017-11-03 17:17:35 -0700535 uint32_t i, j, k;
Gurchetan Singh6b41fb52017-03-01 20:14:39 -0800536
Gurchetan Singh179687e2016-10-28 10:07:35 -0700537 drmModePlanePtr plane;
538 drmModePropertyPtr prop;
539 drmModePlaneResPtr resources;
540 drmModeObjectPropertiesPtr props;
541
Gurchetan Singhbc9a87d2017-11-03 17:17:35 -0700542 kms_items = drv_array_init(sizeof(struct kms_item));
543 if (!kms_items)
Gurchetan Singh6b41fb52017-03-01 20:14:39 -0800544 goto out;
Gurchetan Singh179687e2016-10-28 10:07:35 -0700545
546 /*
547 * The ability to return universal planes is only complete on
548 * ChromeOS kernel versions >= v3.18. The SET_CLIENT_CAP ioctl
549 * therefore might return an error code, so don't check it. If it
550 * fails, it'll just return the plane list as overlay planes, which is
551 * fine in our case (our drivers already have cursor bits set).
552 * modetest in libdrm does the same thing.
553 */
554 drmSetClientCap(drv->fd, DRM_CLIENT_CAP_UNIVERSAL_PLANES, 1);
555
556 resources = drmModeGetPlaneResources(drv->fd);
557 if (!resources)
Gurchetan Singh6b41fb52017-03-01 20:14:39 -0800558 goto out;
Gurchetan Singh179687e2016-10-28 10:07:35 -0700559
560 for (i = 0; i < resources->count_planes; i++) {
Gurchetan Singh179687e2016-10-28 10:07:35 -0700561 plane = drmModeGetPlane(drv->fd, resources->planes[i]);
Gurchetan Singh179687e2016-10-28 10:07:35 -0700562 if (!plane)
Gurchetan Singh6b41fb52017-03-01 20:14:39 -0800563 goto out;
Gurchetan Singh179687e2016-10-28 10:07:35 -0700564
Gurchetan Singh1b1d56a2017-03-10 16:25:23 -0800565 props = drmModeObjectGetProperties(drv->fd, plane->plane_id, DRM_MODE_OBJECT_PLANE);
Gurchetan Singh179687e2016-10-28 10:07:35 -0700566 if (!props)
Gurchetan Singh6b41fb52017-03-01 20:14:39 -0800567 goto out;
Gurchetan Singh179687e2016-10-28 10:07:35 -0700568
569 for (j = 0; j < props->count_props; j++) {
Gurchetan Singh179687e2016-10-28 10:07:35 -0700570 prop = drmModeGetProperty(drv->fd, props->props[j]);
571 if (prop) {
572 if (strcmp(prop->name, "type") == 0) {
Gurchetan Singha1892b22017-09-28 16:40:52 -0700573 plane_type = props->prop_values[j];
Gurchetan Singh179687e2016-10-28 10:07:35 -0700574 }
Gurchetan Singh6b41fb52017-03-01 20:14:39 -0800575
Gurchetan Singh179687e2016-10-28 10:07:35 -0700576 drmModeFreeProperty(prop);
577 }
578 }
579
Gurchetan Singha1892b22017-09-28 16:40:52 -0700580 switch (plane_type) {
Gurchetan Singh179687e2016-10-28 10:07:35 -0700581 case DRM_PLANE_TYPE_OVERLAY:
582 case DRM_PLANE_TYPE_PRIMARY:
Gurchetan Singha1892b22017-09-28 16:40:52 -0700583 use_flag = BO_USE_SCANOUT;
Gurchetan Singh179687e2016-10-28 10:07:35 -0700584 break;
585 case DRM_PLANE_TYPE_CURSOR:
Gurchetan Singha1892b22017-09-28 16:40:52 -0700586 use_flag = BO_USE_CURSOR;
Gurchetan Singh179687e2016-10-28 10:07:35 -0700587 break;
588 default:
589 assert(0);
590 }
591
Gurchetan Singh6b41fb52017-03-01 20:14:39 -0800592 for (j = 0; j < plane->count_formats; j++) {
593 bool found = false;
Gurchetan Singhbc9a87d2017-11-03 17:17:35 -0700594 for (k = 0; k < drv_array_size(kms_items); k++) {
595 struct kms_item *item = drv_array_at_idx(kms_items, k);
596 if (item->format == plane->formats[j] &&
Gurchetan Singhd118a0e2018-01-12 23:31:50 +0000597 item->modifier == DRM_FORMAT_MOD_LINEAR) {
Gurchetan Singhbc9a87d2017-11-03 17:17:35 -0700598 item->use_flags |= use_flag;
Gurchetan Singh6b41fb52017-03-01 20:14:39 -0800599 found = true;
600 break;
601 }
602 }
603
Gurchetan Singh6b41fb52017-03-01 20:14:39 -0800604 if (!found) {
Gurchetan Singh2b1d6892018-09-17 16:58:16 -0700605 struct kms_item item = { .format = plane->formats[j],
606 .modifier = DRM_FORMAT_MOD_LINEAR,
607 .use_flags = use_flag };
Gurchetan Singhbc9a87d2017-11-03 17:17:35 -0700608
609 drv_array_append(kms_items, &item);
Gurchetan Singh6b41fb52017-03-01 20:14:39 -0800610 }
611 }
Gurchetan Singh179687e2016-10-28 10:07:35 -0700612
613 drmModeFreeObjectProperties(props);
614 drmModeFreePlane(plane);
Gurchetan Singh179687e2016-10-28 10:07:35 -0700615 }
616
617 drmModeFreePlaneResources(resources);
Gurchetan Singh6b41fb52017-03-01 20:14:39 -0800618out:
Gurchetan Singhbc9a87d2017-11-03 17:17:35 -0700619 if (kms_items && !drv_array_size(kms_items)) {
620 drv_array_destroy(kms_items);
621 return NULL;
Gurchetan Singh6b41fb52017-03-01 20:14:39 -0800622 }
Gurchetan Singh179687e2016-10-28 10:07:35 -0700623
Gurchetan Singhbc9a87d2017-11-03 17:17:35 -0700624 return kms_items;
Gurchetan Singh6b41fb52017-03-01 20:14:39 -0800625}
626
Gurchetan Singh8ac0c9a2017-05-15 09:34:22 -0700627int drv_modify_linear_combinations(struct driver *drv)
Gurchetan Singh6b41fb52017-03-01 20:14:39 -0800628{
Gurchetan Singhbc9a87d2017-11-03 17:17:35 -0700629 uint32_t i, j;
630 struct kms_item *item;
Gurchetan Singh6b41fb52017-03-01 20:14:39 -0800631 struct combination *combo;
Gurchetan Singhbc9a87d2017-11-03 17:17:35 -0700632 struct drv_array *kms_items;
Gurchetan Singh6b41fb52017-03-01 20:14:39 -0800633
Gurchetan Singh6b41fb52017-03-01 20:14:39 -0800634 /*
635 * All current drivers can scanout linear XRGB8888/ARGB8888 as a primary
636 * plane and as a cursor. Some drivers don't support
637 * drmModeGetPlaneResources, so add the combination here. Note that the
638 * kernel disregards the alpha component of ARGB unless it's an overlay
639 * plane.
640 */
Gurchetan Singh8ac0c9a2017-05-15 09:34:22 -0700641 drv_modify_combination(drv, DRM_FORMAT_XRGB8888, &LINEAR_METADATA,
642 BO_USE_CURSOR | BO_USE_SCANOUT);
643 drv_modify_combination(drv, DRM_FORMAT_ARGB8888, &LINEAR_METADATA,
644 BO_USE_CURSOR | BO_USE_SCANOUT);
Gurchetan Singh6b41fb52017-03-01 20:14:39 -0800645
Gurchetan Singhbc9a87d2017-11-03 17:17:35 -0700646 kms_items = drv_query_kms(drv);
647 if (!kms_items)
Gurchetan Singh6b41fb52017-03-01 20:14:39 -0800648 return 0;
649
Gurchetan Singhbc9a87d2017-11-03 17:17:35 -0700650 for (i = 0; i < drv_array_size(kms_items); i++) {
651 item = (struct kms_item *)drv_array_at_idx(kms_items, i);
652 for (j = 0; j < drv_array_size(drv->combos); j++) {
653 combo = drv_array_at_idx(drv->combos, j);
654 if (item->format == combo->format)
Gurchetan Singha1892b22017-09-28 16:40:52 -0700655 combo->use_flags |= BO_USE_SCANOUT;
Gurchetan Singh6b41fb52017-03-01 20:14:39 -0800656 }
657 }
658
Gurchetan Singhbc9a87d2017-11-03 17:17:35 -0700659 drv_array_destroy(kms_items);
Gurchetan Singh6b41fb52017-03-01 20:14:39 -0800660 return 0;
Gurchetan Singh179687e2016-10-28 10:07:35 -0700661}
Kristian H. Kristensen6061eab2017-10-03 13:53:19 -0700662
663/*
664 * Pick the best modifier from modifiers, according to the ordering
665 * given by modifier_order.
666 */
667uint64_t drv_pick_modifier(const uint64_t *modifiers, uint32_t count,
668 const uint64_t *modifier_order, uint32_t order_count)
669{
670 uint32_t i, j;
671
672 for (i = 0; i < order_count; i++) {
673 for (j = 0; j < count; j++) {
674 if (modifiers[j] == modifier_order[i]) {
675 return modifiers[j];
676 }
677 }
678 }
679
680 return DRM_FORMAT_MOD_LINEAR;
681}
Fritz Koenig1b9b5b92019-03-19 13:25:45 -0700682
683/*
684 * Search a list of modifiers to see if a given modifier is present
685 */
686bool drv_has_modifier(const uint64_t *list, uint32_t count, uint64_t modifier)
687{
688 uint32_t i;
689 for (i = 0; i < count; i++)
690 if (list[i] == modifier)
691 return true;
692
693 return false;
694}