blob: b18cd6a9a0c0f397de1f92de6289a05eff412ceb [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
71// clang-format on
72
73static const struct planar_layout *layout_from_format(uint32_t format)
Gurchetan Singh1b1d56a2017-03-10 16:25:23 -080074{
Gurchetan Singhd6fb5772016-08-29 19:13:51 -070075 switch (format) {
Gurchetan Singhe8ab0a52016-11-21 11:36:31 -080076 case DRM_FORMAT_BGR233:
Gurchetan Singhf3b22da2016-11-21 10:46:38 -080077 case DRM_FORMAT_C8:
78 case DRM_FORMAT_R8:
79 case DRM_FORMAT_RGB332:
Kristian H. Kristensen478343f2018-04-04 14:02:50 -070080 return &packed_1bpp_layout;
81
Gurchetan Singhf3b22da2016-11-21 10:46:38 -080082 case DRM_FORMAT_YVU420:
Gurchetan Singh03f13562017-02-08 15:21:14 -080083 case DRM_FORMAT_YVU420_ANDROID:
Kristian H. Kristensen478343f2018-04-04 14:02:50 -070084 return &triplanar_yuv_420_layout;
Stéphane Marchesin25a26062014-09-12 16:18:59 -070085
Gurchetan Singhf3b22da2016-11-21 10:46:38 -080086 case DRM_FORMAT_NV12:
Shirish Sdf423df2017-04-18 16:21:59 +053087 case DRM_FORMAT_NV21:
Kristian H. Kristensen478343f2018-04-04 14:02:50 -070088 return &biplanar_yuv_420_layout;
Yuly Novikov96c7a3b2015-12-08 22:48:29 -050089
Gurchetan Singhf3b22da2016-11-21 10:46:38 -080090 case DRM_FORMAT_ABGR1555:
Gurchetan Singhe8ab0a52016-11-21 11:36:31 -080091 case DRM_FORMAT_ABGR4444:
92 case DRM_FORMAT_ARGB1555:
93 case DRM_FORMAT_ARGB4444:
Gurchetan Singhf3b22da2016-11-21 10:46:38 -080094 case DRM_FORMAT_BGR565:
Gurchetan Singhe8ab0a52016-11-21 11:36:31 -080095 case DRM_FORMAT_BGRA4444:
96 case DRM_FORMAT_BGRA5551:
97 case DRM_FORMAT_BGRX4444:
98 case DRM_FORMAT_BGRX5551:
99 case DRM_FORMAT_GR88:
100 case DRM_FORMAT_RG88:
101 case DRM_FORMAT_RGB565:
102 case DRM_FORMAT_RGBA4444:
103 case DRM_FORMAT_RGBA5551:
104 case DRM_FORMAT_RGBX4444:
105 case DRM_FORMAT_RGBX5551:
Gurchetan Singhf3b22da2016-11-21 10:46:38 -0800106 case DRM_FORMAT_UYVY:
107 case DRM_FORMAT_VYUY:
Gurchetan Singhe8ab0a52016-11-21 11:36:31 -0800108 case DRM_FORMAT_XBGR1555:
109 case DRM_FORMAT_XBGR4444:
110 case DRM_FORMAT_XRGB1555:
111 case DRM_FORMAT_XRGB4444:
112 case DRM_FORMAT_YUYV:
113 case DRM_FORMAT_YVYU:
Kristian H. Kristensen478343f2018-04-04 14:02:50 -0700114 return &packed_2bpp_layout;
Stéphane Marchesin25a26062014-09-12 16:18:59 -0700115
Gurchetan Singhf3b22da2016-11-21 10:46:38 -0800116 case DRM_FORMAT_BGR888:
Gurchetan Singhe8ab0a52016-11-21 11:36:31 -0800117 case DRM_FORMAT_RGB888:
Kristian H. Kristensen478343f2018-04-04 14:02:50 -0700118 return &packed_3bpp_layout;
Stéphane Marchesin25a26062014-09-12 16:18:59 -0700119
Gurchetan Singhf3b22da2016-11-21 10:46:38 -0800120 case DRM_FORMAT_ABGR2101010:
Gurchetan Singhe8ab0a52016-11-21 11:36:31 -0800121 case DRM_FORMAT_ABGR8888:
122 case DRM_FORMAT_ARGB2101010:
123 case DRM_FORMAT_ARGB8888:
Gurchetan Singhf3b22da2016-11-21 10:46:38 -0800124 case DRM_FORMAT_AYUV:
Gurchetan Singhe8ab0a52016-11-21 11:36:31 -0800125 case DRM_FORMAT_BGRA1010102:
126 case DRM_FORMAT_BGRA8888:
127 case DRM_FORMAT_BGRX1010102:
128 case DRM_FORMAT_BGRX8888:
129 case DRM_FORMAT_RGBA1010102:
130 case DRM_FORMAT_RGBA8888:
131 case DRM_FORMAT_RGBX1010102:
132 case DRM_FORMAT_RGBX8888:
133 case DRM_FORMAT_XBGR2101010:
134 case DRM_FORMAT_XBGR8888:
135 case DRM_FORMAT_XRGB2101010:
136 case DRM_FORMAT_XRGB8888:
Kristian H. Kristensen478343f2018-04-04 14:02:50 -0700137 return &packed_4bpp_layout;
Stéphane Marchesin25a26062014-09-12 16:18:59 -0700138
Kristian H. Kristensen478343f2018-04-04 14:02:50 -0700139 default:
140 drv_log("UNKNOWN FORMAT %d\n", format);
141 return NULL;
142 }
143}
144
145size_t drv_num_planes_from_format(uint32_t format)
146{
147 const struct planar_layout *layout = layout_from_format(format);
148
149 /*
150 * drv_bo_new calls this function early to query number of planes and
151 * considers 0 planes to mean unknown format, so we have to support
152 * that. All other layout_from_format() queries can assume that the
153 * format is supported and that the return value is non-NULL.
154 */
155
156 return layout ? layout->num_planes : 0;
157}
158
159uint32_t drv_height_from_format(uint32_t format, uint32_t height, size_t plane)
160{
161 const struct planar_layout *layout = layout_from_format(format);
162
163 assert(plane < layout->num_planes);
164
165 return DIV_ROUND_UP(height, layout->vertical_subsampling[plane]);
166}
167
168uint32_t drv_bytes_per_pixel_from_format(uint32_t format, size_t plane)
169{
170 const struct planar_layout *layout = layout_from_format(format);
171
172 assert(plane < layout->num_planes);
173
174 return layout->bytes_per_pixel[plane];
Stéphane Marchesin25a26062014-09-12 16:18:59 -0700175}
176
Gurchetan Singh83dc4fb2016-07-19 15:52:33 -0700177/*
Gurchetan Singh4f298f92017-03-23 11:29:26 -0700178 * This function returns the stride for a given format, width and plane.
179 */
180uint32_t drv_stride_from_format(uint32_t format, uint32_t width, size_t plane)
181{
Kristian H. Kristensen478343f2018-04-04 14:02:50 -0700182 const struct planar_layout *layout = layout_from_format(format);
183 assert(plane < layout->num_planes);
184
Gurchetan Singh6bd78852018-06-06 17:15:31 -0700185 uint32_t plane_width = DIV_ROUND_UP(width, layout->horizontal_subsampling[plane]);
Kristian H. Kristensen478343f2018-04-04 14:02:50 -0700186 uint32_t stride = plane_width * layout->bytes_per_pixel[plane];
Gurchetan Singh4f298f92017-03-23 11:29:26 -0700187
188 /*
Gurchetan Singh4f298f92017-03-23 11:29:26 -0700189 * The stride of Android YV12 buffers is required to be aligned to 16 bytes
190 * (see <system/graphics.h>).
191 */
192 if (format == DRM_FORMAT_YVU420_ANDROID)
Gurchetan Singh1b1d56a2017-03-10 16:25:23 -0800193 stride = (plane == 0) ? ALIGN(stride, 32) : ALIGN(stride, 16);
Gurchetan Singh4f298f92017-03-23 11:29:26 -0700194
195 return stride;
196}
197
Gurchetan Singhbc24bd72017-09-28 15:21:53 -0700198uint32_t drv_size_from_format(uint32_t format, uint32_t stride, uint32_t height, size_t plane)
199{
Kristian H. Kristensen478343f2018-04-04 14:02:50 -0700200 return stride * drv_height_from_format(format, height, plane);
201}
Gurchetan Singhbc24bd72017-09-28 15:21:53 -0700202
Kristian H. Kristensen478343f2018-04-04 14:02:50 -0700203static uint32_t subsample_stride(uint32_t stride, uint32_t format, size_t plane)
204{
205 if (plane != 0) {
206 switch (format) {
207 case DRM_FORMAT_YVU420:
208 case DRM_FORMAT_YVU420_ANDROID:
209 stride = DIV_ROUND_UP(stride, 2);
210 break;
211 }
Gurchetan Singhbc24bd72017-09-28 15:21:53 -0700212 }
213
Kristian H. Kristensen478343f2018-04-04 14:02:50 -0700214 return stride;
Gurchetan Singhbc24bd72017-09-28 15:21:53 -0700215}
216
Gurchetan Singh4f298f92017-03-23 11:29:26 -0700217/*
Gurchetan Singh6423ecb2017-03-29 08:23:40 -0700218 * This function fills in the buffer object given the driver aligned stride of
219 * the first plane, height and a format. This function assumes there is just
220 * one kernel buffer per buffer object.
Gurchetan Singh42cc6d62016-08-29 18:19:19 -0700221 */
Gurchetan Singh1b1d56a2017-03-10 16:25:23 -0800222int drv_bo_from_format(struct bo *bo, uint32_t stride, uint32_t aligned_height, uint32_t format)
Gurchetan Singh42cc6d62016-08-29 18:19:19 -0700223{
224
Gurchetan Singh2a119342016-11-02 10:40:51 -0700225 size_t p, num_planes;
226 uint32_t offset = 0;
227
228 num_planes = drv_num_planes_from_format(format);
229 assert(num_planes);
Owen Linbbb69fd2017-06-05 14:33:08 +0800230
231 /*
232 * HAL_PIXEL_FORMAT_YV12 requires that (see <system/graphics.h>):
233 * - the aligned height is same as the buffer's height.
234 * - the chroma stride is 16 bytes aligned, i.e., the luma's strides
235 * is 32 bytes aligned.
236 */
Tomasz Figad846de62017-07-29 15:47:54 +0900237 if (format == DRM_FORMAT_YVU420_ANDROID) {
Owen Linbbb69fd2017-06-05 14:33:08 +0800238 assert(aligned_height == bo->height);
239 assert(stride == ALIGN(stride, 32));
240 }
Gurchetan Singh2a119342016-11-02 10:40:51 -0700241
242 for (p = 0; p < num_planes; p++) {
Gurchetan Singh6423ecb2017-03-29 08:23:40 -0700243 bo->strides[p] = subsample_stride(stride, format, p);
Owen Linbbb69fd2017-06-05 14:33:08 +0800244 bo->sizes[p] = drv_size_from_format(format, bo->strides[p], aligned_height, p);
Gurchetan Singh2a119342016-11-02 10:40:51 -0700245 bo->offsets[p] = offset;
246 offset += bo->sizes[p];
Gurchetan Singh42cc6d62016-08-29 18:19:19 -0700247 }
248
Owen Linbbb69fd2017-06-05 14:33:08 +0800249 bo->total_size = offset;
Gurchetan Singh42cc6d62016-08-29 18:19:19 -0700250 return 0;
251}
252
Gurchetan Singh1b1d56a2017-03-10 16:25:23 -0800253int drv_dumb_bo_create(struct bo *bo, uint32_t width, uint32_t height, uint32_t format,
Gurchetan Singha1892b22017-09-28 16:40:52 -0700254 uint64_t use_flags)
Stéphane Marchesin25a26062014-09-12 16:18:59 -0700255{
Stéphane Marchesin25a26062014-09-12 16:18:59 -0700256 int ret;
Gurchetan Singhd5f8e442017-03-16 13:05:45 -0700257 size_t plane;
Gurchetan Singh6423ecb2017-03-29 08:23:40 -0700258 uint32_t aligned_width, aligned_height;
Gurchetan Singhd5f8e442017-03-16 13:05:45 -0700259 struct drm_mode_create_dumb create_dumb;
Stéphane Marchesin25a26062014-09-12 16:18:59 -0700260
Gurchetan Singhd5f8e442017-03-16 13:05:45 -0700261 aligned_width = width;
262 aligned_height = height;
Keiichi Watanabeaf94db92018-08-06 18:37:21 +0900263 switch (format) {
264 case DRM_FORMAT_YVU420_ANDROID:
265 /* Align width to 32 pixels, so chroma strides are 16 bytes as
266 * Android requires. */
Gurchetan Singhd5f8e442017-03-16 13:05:45 -0700267 aligned_width = ALIGN(width, 32);
Keiichi Watanabed706a8c2018-08-13 16:54:56 +0900268 /* Adjust the height to include room for chroma planes.
269 *
270 * HAL_PIXEL_FORMAT_YV12 requires that the buffer's height not
271 * be aligned. */
272 aligned_height = 3 * DIV_ROUND_UP(bo->height, 2);
Keiichi Watanabeaf94db92018-08-06 18:37:21 +0900273 break;
274 case DRM_FORMAT_YVU420:
275 case DRM_FORMAT_NV12:
276 /* Adjust the height to include room for chroma planes */
277 aligned_height = 3 * DIV_ROUND_UP(height, 2);
278 break;
279 default:
280 break;
Gurchetan Singhd5f8e442017-03-16 13:05:45 -0700281 }
Yuly Novikov96c7a3b2015-12-08 22:48:29 -0500282
Stéphane Marchesin25a26062014-09-12 16:18:59 -0700283 memset(&create_dumb, 0, sizeof(create_dumb));
Gurchetan Singhd5f8e442017-03-16 13:05:45 -0700284 create_dumb.height = aligned_height;
285 create_dumb.width = aligned_width;
Kristian H. Kristensen478343f2018-04-04 14:02:50 -0700286 create_dumb.bpp = layout_from_format(format)->bytes_per_pixel[0] * 8;
Stéphane Marchesin25a26062014-09-12 16:18:59 -0700287 create_dumb.flags = 0;
288
Gurchetan Singh46faf6b2016-08-05 14:40:07 -0700289 ret = drmIoctl(bo->drv->fd, DRM_IOCTL_MODE_CREATE_DUMB, &create_dumb);
Ilja H. Friedelf9d2ab72015-04-09 14:08:36 -0700290 if (ret) {
Alistair Strachan0cfaaa52018-03-19 14:03:23 -0700291 drv_log("DRM_IOCTL_MODE_CREATE_DUMB failed (%d, %d)\n", bo->drv->fd, errno);
Stéphane Marchesin6ac299f2019-03-21 12:23:29 -0700292 return -errno;
Ilja H. Friedelf9d2ab72015-04-09 14:08:36 -0700293 }
Stéphane Marchesin25a26062014-09-12 16:18:59 -0700294
Gurchetan Singh6423ecb2017-03-29 08:23:40 -0700295 drv_bo_from_format(bo, create_dumb.pitch, height, format);
Stéphane Marchesin25a26062014-09-12 16:18:59 -0700296
Gurchetan Singhd5f8e442017-03-16 13:05:45 -0700297 for (plane = 0; plane < bo->num_planes; plane++)
298 bo->handles[plane].u32 = create_dumb.handle;
299
300 bo->total_size = create_dumb.size;
Stéphane Marchesin25a26062014-09-12 16:18:59 -0700301 return 0;
302}
303
Gurchetan Singh46faf6b2016-08-05 14:40:07 -0700304int drv_dumb_bo_destroy(struct bo *bo)
Stéphane Marchesin25a26062014-09-12 16:18:59 -0700305{
306 struct drm_mode_destroy_dumb destroy_dumb;
307 int ret;
308
309 memset(&destroy_dumb, 0, sizeof(destroy_dumb));
Yuly Novikov96c7a3b2015-12-08 22:48:29 -0500310 destroy_dumb.handle = bo->handles[0].u32;
Stéphane Marchesin25a26062014-09-12 16:18:59 -0700311
Gurchetan Singh46faf6b2016-08-05 14:40:07 -0700312 ret = drmIoctl(bo->drv->fd, DRM_IOCTL_MODE_DESTROY_DUMB, &destroy_dumb);
Ilja H. Friedelf9d2ab72015-04-09 14:08:36 -0700313 if (ret) {
Alistair Strachan0cfaaa52018-03-19 14:03:23 -0700314 drv_log("DRM_IOCTL_MODE_DESTROY_DUMB failed (handle=%x)\n", bo->handles[0].u32);
Stéphane Marchesin6ac299f2019-03-21 12:23:29 -0700315 return -errno;
Ilja H. Friedelf9d2ab72015-04-09 14:08:36 -0700316 }
Stéphane Marchesin25a26062014-09-12 16:18:59 -0700317
318 return 0;
319}
320
Gurchetan Singh46faf6b2016-08-05 14:40:07 -0700321int drv_gem_bo_destroy(struct bo *bo)
Stéphane Marchesin25a26062014-09-12 16:18:59 -0700322{
323 struct drm_gem_close gem_close;
Yuly Novikov96c7a3b2015-12-08 22:48:29 -0500324 int ret, error = 0;
325 size_t plane, i;
Stéphane Marchesin25a26062014-09-12 16:18:59 -0700326
Yuly Novikov96c7a3b2015-12-08 22:48:29 -0500327 for (plane = 0; plane < bo->num_planes; plane++) {
Gurchetan Singhf64487b2016-07-14 19:54:44 -0700328 for (i = 0; i < plane; i++)
329 if (bo->handles[i].u32 == bo->handles[plane].u32)
330 break;
331 /* Make sure close hasn't already been called on this handle */
332 if (i != plane)
Yuly Novikov96c7a3b2015-12-08 22:48:29 -0500333 continue;
Stéphane Marchesin25a26062014-09-12 16:18:59 -0700334
Yuly Novikov96c7a3b2015-12-08 22:48:29 -0500335 memset(&gem_close, 0, sizeof(gem_close));
336 gem_close.handle = bo->handles[plane].u32;
337
Gurchetan Singh46faf6b2016-08-05 14:40:07 -0700338 ret = drmIoctl(bo->drv->fd, DRM_IOCTL_GEM_CLOSE, &gem_close);
Yuly Novikov96c7a3b2015-12-08 22:48:29 -0500339 if (ret) {
Alistair Strachan0cfaaa52018-03-19 14:03:23 -0700340 drv_log("DRM_IOCTL_GEM_CLOSE failed (handle=%x) error %d\n",
Gurchetan Singh1b1d56a2017-03-10 16:25:23 -0800341 bo->handles[plane].u32, ret);
Stéphane Marchesin6ac299f2019-03-21 12:23:29 -0700342 error = -errno;
Yuly Novikov96c7a3b2015-12-08 22:48:29 -0500343 }
Ilja H. Friedelf9d2ab72015-04-09 14:08:36 -0700344 }
Stéphane Marchesin25a26062014-09-12 16:18:59 -0700345
Yuly Novikov96c7a3b2015-12-08 22:48:29 -0500346 return error;
Stéphane Marchesin25a26062014-09-12 16:18:59 -0700347}
Gurchetan Singh1647fbe2016-08-03 17:14:55 -0700348
Gurchetan Singh71611d62017-01-03 16:49:56 -0800349int drv_prime_bo_import(struct bo *bo, struct drv_import_fd_data *data)
350{
351 int ret;
352 size_t plane;
353 struct drm_prime_handle prime_handle;
354
355 for (plane = 0; plane < bo->num_planes; plane++) {
356 memset(&prime_handle, 0, sizeof(prime_handle));
357 prime_handle.fd = data->fds[plane];
358
Gurchetan Singh1b1d56a2017-03-10 16:25:23 -0800359 ret = drmIoctl(bo->drv->fd, DRM_IOCTL_PRIME_FD_TO_HANDLE, &prime_handle);
Gurchetan Singh71611d62017-01-03 16:49:56 -0800360
361 if (ret) {
Alistair Strachan0cfaaa52018-03-19 14:03:23 -0700362 drv_log("DRM_IOCTL_PRIME_FD_TO_HANDLE failed (fd=%u)\n", prime_handle.fd);
Gurchetan Singh71611d62017-01-03 16:49:56 -0800363
364 /*
365 * Need to call GEM close on planes that were opened,
366 * if any. Adjust the num_planes variable to be the
367 * plane that failed, so GEM close will be called on
368 * planes before that plane.
369 */
370 bo->num_planes = plane;
371 drv_gem_bo_destroy(bo);
Stéphane Marchesin6ac299f2019-03-21 12:23:29 -0700372 return -errno;
Gurchetan Singh71611d62017-01-03 16:49:56 -0800373 }
374
375 bo->handles[plane].u32 = prime_handle.handle;
376 }
377
Gurchetan Singh71611d62017-01-03 16:49:56 -0800378 return 0;
379}
380
Gurchetan Singhee43c302017-11-14 18:20:27 -0800381void *drv_dumb_bo_map(struct bo *bo, struct vma *vma, size_t plane, uint32_t map_flags)
Gurchetan Singhef920532016-08-12 16:38:25 -0700382{
383 int ret;
Gurchetan Singh1a31e602016-10-06 10:58:00 -0700384 size_t i;
Gurchetan Singhef920532016-08-12 16:38:25 -0700385 struct drm_mode_map_dumb map_dumb;
386
387 memset(&map_dumb, 0, sizeof(map_dumb));
Gurchetan Singh1a31e602016-10-06 10:58:00 -0700388 map_dumb.handle = bo->handles[plane].u32;
Gurchetan Singhef920532016-08-12 16:38:25 -0700389
390 ret = drmIoctl(bo->drv->fd, DRM_IOCTL_MODE_MAP_DUMB, &map_dumb);
391 if (ret) {
Alistair Strachan0cfaaa52018-03-19 14:03:23 -0700392 drv_log("DRM_IOCTL_MODE_MAP_DUMB failed\n");
Gurchetan Singhef920532016-08-12 16:38:25 -0700393 return MAP_FAILED;
394 }
395
Gurchetan Singh1a31e602016-10-06 10:58:00 -0700396 for (i = 0; i < bo->num_planes; i++)
397 if (bo->handles[i].u32 == bo->handles[plane].u32)
Gurchetan Singhee43c302017-11-14 18:20:27 -0800398 vma->length += bo->sizes[i];
Gurchetan Singh1a31e602016-10-06 10:58:00 -0700399
Gurchetan Singhee43c302017-11-14 18:20:27 -0800400 return mmap(0, vma->length, drv_get_prot(map_flags), MAP_SHARED, bo->drv->fd,
Gurchetan Singhcfb88762017-09-28 17:14:50 -0700401 map_dumb.offset);
Gurchetan Singhef920532016-08-12 16:38:25 -0700402}
403
Gurchetan Singhee43c302017-11-14 18:20:27 -0800404int drv_bo_munmap(struct bo *bo, struct vma *vma)
Gurchetan Singhba6bd502017-09-18 15:29:47 -0700405{
Gurchetan Singhee43c302017-11-14 18:20:27 -0800406 return munmap(vma->addr, vma->length);
Gurchetan Singhba6bd502017-09-18 15:29:47 -0700407}
408
Gurchetan Singh47e629b2017-11-02 14:07:18 -0700409int drv_mapping_destroy(struct bo *bo)
Gurchetan Singhde263f12017-01-24 13:30:06 -0800410{
411 int ret;
Gurchetan Singhde263f12017-01-24 13:30:06 -0800412 size_t plane;
Gurchetan Singh47e629b2017-11-02 14:07:18 -0700413 struct mapping *mapping;
Gurchetan Singhcfedbcc2017-11-02 17:32:00 -0700414 uint32_t idx;
Gurchetan Singhde263f12017-01-24 13:30:06 -0800415
416 /*
417 * This function is called right before the buffer is destroyed. It will free any mappings
418 * associated with the buffer.
419 */
420
Gurchetan Singhcfedbcc2017-11-02 17:32:00 -0700421 idx = 0;
Gurchetan Singhde263f12017-01-24 13:30:06 -0800422 for (plane = 0; plane < bo->num_planes; plane++) {
Gurchetan Singhcfedbcc2017-11-02 17:32:00 -0700423 while (idx < drv_array_size(bo->drv->mappings)) {
424 mapping = (struct mapping *)drv_array_at_idx(bo->drv->mappings, idx);
425 if (mapping->vma->handle != bo->handles[plane].u32) {
426 idx++;
427 continue;
Gurchetan Singhde263f12017-01-24 13:30:06 -0800428 }
429
Gurchetan Singhcfedbcc2017-11-02 17:32:00 -0700430 if (!--mapping->vma->refcount) {
Gurchetan Singhee43c302017-11-14 18:20:27 -0800431 ret = bo->drv->backend->bo_unmap(bo, mapping->vma);
Gurchetan Singhcfedbcc2017-11-02 17:32:00 -0700432 if (ret) {
Alistair Strachan0cfaaa52018-03-19 14:03:23 -0700433 drv_log("munmap failed\n");
Gurchetan Singhcfedbcc2017-11-02 17:32:00 -0700434 return ret;
435 }
436
437 free(mapping->vma);
438 }
439
440 /* This shrinks and shifts the array, so don't increment idx. */
441 drv_array_remove(bo->drv->mappings, idx);
Gurchetan Singhde263f12017-01-24 13:30:06 -0800442 }
443 }
444
445 return 0;
446}
447
Gurchetan Singhcfb88762017-09-28 17:14:50 -0700448int drv_get_prot(uint32_t map_flags)
449{
450 return (BO_MAP_WRITE & map_flags) ? PROT_WRITE | PROT_READ : PROT_READ;
451}
452
Gurchetan Singh1b1d56a2017-03-10 16:25:23 -0800453uintptr_t drv_get_reference_count(struct driver *drv, struct bo *bo, size_t plane)
Gurchetan Singh1647fbe2016-08-03 17:14:55 -0700454{
455 void *count;
456 uintptr_t num = 0;
457
458 if (!drmHashLookup(drv->buffer_table, bo->handles[plane].u32, &count))
Gurchetan Singh1b1d56a2017-03-10 16:25:23 -0800459 num = (uintptr_t)(count);
Gurchetan Singh1647fbe2016-08-03 17:14:55 -0700460
461 return num;
462}
463
Gurchetan Singh1b1d56a2017-03-10 16:25:23 -0800464void drv_increment_reference_count(struct driver *drv, struct bo *bo, size_t plane)
Gurchetan Singh1647fbe2016-08-03 17:14:55 -0700465{
466 uintptr_t num = drv_get_reference_count(drv, bo, plane);
467
468 /* If a value isn't in the table, drmHashDelete is a no-op */
469 drmHashDelete(drv->buffer_table, bo->handles[plane].u32);
Gurchetan Singh1b1d56a2017-03-10 16:25:23 -0800470 drmHashInsert(drv->buffer_table, bo->handles[plane].u32, (void *)(num + 1));
Gurchetan Singh1647fbe2016-08-03 17:14:55 -0700471}
472
Gurchetan Singh1b1d56a2017-03-10 16:25:23 -0800473void drv_decrement_reference_count(struct driver *drv, struct bo *bo, size_t plane)
Gurchetan Singh1647fbe2016-08-03 17:14:55 -0700474{
475 uintptr_t num = drv_get_reference_count(drv, bo, plane);
476
477 drmHashDelete(drv->buffer_table, bo->handles[plane].u32);
478
479 if (num > 0)
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}
Gurchetan Singhef920532016-08-12 16:38:25 -0700482
Gurchetan Singh86ddfdc2018-09-17 17:13:45 -0700483void drv_add_combination(struct driver *drv, const uint32_t format,
484 struct format_metadata *metadata, uint64_t use_flags)
485{
486 struct combination combo = { .format = format,
487 .metadata = *metadata,
488 .use_flags = use_flags };
489
490 drv_array_append(drv->combos, &combo);
491}
492
Gurchetan Singhd3001452017-11-03 17:18:36 -0700493void drv_add_combinations(struct driver *drv, const uint32_t *formats, uint32_t num_formats,
494 struct format_metadata *metadata, uint64_t use_flags)
Gurchetan Singh179687e2016-10-28 10:07:35 -0700495{
Gurchetan Singh6b41fb52017-03-01 20:14:39 -0800496 uint32_t i;
Gurchetan Singhbc9a87d2017-11-03 17:17:35 -0700497
498 for (i = 0; i < num_formats; i++) {
Gurchetan Singh2b1d6892018-09-17 16:58:16 -0700499 struct combination combo = { .format = formats[i],
500 .metadata = *metadata,
501 .use_flags = use_flags };
Gurchetan Singhbc9a87d2017-11-03 17:17:35 -0700502
503 drv_array_append(drv->combos, &combo);
504 }
Gurchetan Singh6b41fb52017-03-01 20:14:39 -0800505}
506
Gurchetan Singh1b1d56a2017-03-10 16:25:23 -0800507void drv_modify_combination(struct driver *drv, uint32_t format, struct format_metadata *metadata,
Gurchetan Singha1892b22017-09-28 16:40:52 -0700508 uint64_t use_flags)
Gurchetan Singh6b41fb52017-03-01 20:14:39 -0800509{
510 uint32_t i;
511 struct combination *combo;
Gurchetan Singha1892b22017-09-28 16:40:52 -0700512 /* Attempts to add the specified flags to an existing combination. */
Gurchetan Singhbc9a87d2017-11-03 17:17:35 -0700513 for (i = 0; i < drv_array_size(drv->combos); i++) {
514 combo = (struct combination *)drv_array_at_idx(drv->combos, i);
Gurchetan Singh1b1d56a2017-03-10 16:25:23 -0800515 if (combo->format == format && combo->metadata.tiling == metadata->tiling &&
Gurchetan Singh6b41fb52017-03-01 20:14:39 -0800516 combo->metadata.modifier == metadata->modifier)
Gurchetan Singha1892b22017-09-28 16:40:52 -0700517 combo->use_flags |= use_flags;
Gurchetan Singh6b41fb52017-03-01 20:14:39 -0800518 }
519}
520
Gurchetan Singhbc9a87d2017-11-03 17:17:35 -0700521struct drv_array *drv_query_kms(struct driver *drv)
Gurchetan Singh6b41fb52017-03-01 20:14:39 -0800522{
Gurchetan Singhbc9a87d2017-11-03 17:17:35 -0700523 struct drv_array *kms_items;
Gurchetan Singha1892b22017-09-28 16:40:52 -0700524 uint64_t plane_type, use_flag;
Gurchetan Singhbc9a87d2017-11-03 17:17:35 -0700525 uint32_t i, j, k;
Gurchetan Singh6b41fb52017-03-01 20:14:39 -0800526
Gurchetan Singh179687e2016-10-28 10:07:35 -0700527 drmModePlanePtr plane;
528 drmModePropertyPtr prop;
529 drmModePlaneResPtr resources;
530 drmModeObjectPropertiesPtr props;
531
Gurchetan Singhbc9a87d2017-11-03 17:17:35 -0700532 kms_items = drv_array_init(sizeof(struct kms_item));
533 if (!kms_items)
Gurchetan Singh6b41fb52017-03-01 20:14:39 -0800534 goto out;
Gurchetan Singh179687e2016-10-28 10:07:35 -0700535
536 /*
537 * The ability to return universal planes is only complete on
538 * ChromeOS kernel versions >= v3.18. The SET_CLIENT_CAP ioctl
539 * therefore might return an error code, so don't check it. If it
540 * fails, it'll just return the plane list as overlay planes, which is
541 * fine in our case (our drivers already have cursor bits set).
542 * modetest in libdrm does the same thing.
543 */
544 drmSetClientCap(drv->fd, DRM_CLIENT_CAP_UNIVERSAL_PLANES, 1);
545
546 resources = drmModeGetPlaneResources(drv->fd);
547 if (!resources)
Gurchetan Singh6b41fb52017-03-01 20:14:39 -0800548 goto out;
Gurchetan Singh179687e2016-10-28 10:07:35 -0700549
550 for (i = 0; i < resources->count_planes; i++) {
Gurchetan Singh179687e2016-10-28 10:07:35 -0700551 plane = drmModeGetPlane(drv->fd, resources->planes[i]);
Gurchetan Singh179687e2016-10-28 10:07:35 -0700552 if (!plane)
Gurchetan Singh6b41fb52017-03-01 20:14:39 -0800553 goto out;
Gurchetan Singh179687e2016-10-28 10:07:35 -0700554
Gurchetan Singh1b1d56a2017-03-10 16:25:23 -0800555 props = drmModeObjectGetProperties(drv->fd, plane->plane_id, DRM_MODE_OBJECT_PLANE);
Gurchetan Singh179687e2016-10-28 10:07:35 -0700556 if (!props)
Gurchetan Singh6b41fb52017-03-01 20:14:39 -0800557 goto out;
Gurchetan Singh179687e2016-10-28 10:07:35 -0700558
559 for (j = 0; j < props->count_props; j++) {
Gurchetan Singh179687e2016-10-28 10:07:35 -0700560 prop = drmModeGetProperty(drv->fd, props->props[j]);
561 if (prop) {
562 if (strcmp(prop->name, "type") == 0) {
Gurchetan Singha1892b22017-09-28 16:40:52 -0700563 plane_type = props->prop_values[j];
Gurchetan Singh179687e2016-10-28 10:07:35 -0700564 }
Gurchetan Singh6b41fb52017-03-01 20:14:39 -0800565
Gurchetan Singh179687e2016-10-28 10:07:35 -0700566 drmModeFreeProperty(prop);
567 }
568 }
569
Gurchetan Singha1892b22017-09-28 16:40:52 -0700570 switch (plane_type) {
Gurchetan Singh179687e2016-10-28 10:07:35 -0700571 case DRM_PLANE_TYPE_OVERLAY:
572 case DRM_PLANE_TYPE_PRIMARY:
Gurchetan Singha1892b22017-09-28 16:40:52 -0700573 use_flag = BO_USE_SCANOUT;
Gurchetan Singh179687e2016-10-28 10:07:35 -0700574 break;
575 case DRM_PLANE_TYPE_CURSOR:
Gurchetan Singha1892b22017-09-28 16:40:52 -0700576 use_flag = BO_USE_CURSOR;
Gurchetan Singh179687e2016-10-28 10:07:35 -0700577 break;
578 default:
579 assert(0);
580 }
581
Gurchetan Singh6b41fb52017-03-01 20:14:39 -0800582 for (j = 0; j < plane->count_formats; j++) {
583 bool found = false;
Gurchetan Singhbc9a87d2017-11-03 17:17:35 -0700584 for (k = 0; k < drv_array_size(kms_items); k++) {
585 struct kms_item *item = drv_array_at_idx(kms_items, k);
586 if (item->format == plane->formats[j] &&
Gurchetan Singhd118a0e2018-01-12 23:31:50 +0000587 item->modifier == DRM_FORMAT_MOD_LINEAR) {
Gurchetan Singhbc9a87d2017-11-03 17:17:35 -0700588 item->use_flags |= use_flag;
Gurchetan Singh6b41fb52017-03-01 20:14:39 -0800589 found = true;
590 break;
591 }
592 }
593
Gurchetan Singh6b41fb52017-03-01 20:14:39 -0800594 if (!found) {
Gurchetan Singh2b1d6892018-09-17 16:58:16 -0700595 struct kms_item item = { .format = plane->formats[j],
596 .modifier = DRM_FORMAT_MOD_LINEAR,
597 .use_flags = use_flag };
Gurchetan Singhbc9a87d2017-11-03 17:17:35 -0700598
599 drv_array_append(kms_items, &item);
Gurchetan Singh6b41fb52017-03-01 20:14:39 -0800600 }
601 }
Gurchetan Singh179687e2016-10-28 10:07:35 -0700602
603 drmModeFreeObjectProperties(props);
604 drmModeFreePlane(plane);
Gurchetan Singh179687e2016-10-28 10:07:35 -0700605 }
606
607 drmModeFreePlaneResources(resources);
Gurchetan Singh6b41fb52017-03-01 20:14:39 -0800608out:
Gurchetan Singhbc9a87d2017-11-03 17:17:35 -0700609 if (kms_items && !drv_array_size(kms_items)) {
610 drv_array_destroy(kms_items);
611 return NULL;
Gurchetan Singh6b41fb52017-03-01 20:14:39 -0800612 }
Gurchetan Singh179687e2016-10-28 10:07:35 -0700613
Gurchetan Singhbc9a87d2017-11-03 17:17:35 -0700614 return kms_items;
Gurchetan Singh6b41fb52017-03-01 20:14:39 -0800615}
616
Gurchetan Singh8ac0c9a2017-05-15 09:34:22 -0700617int drv_modify_linear_combinations(struct driver *drv)
Gurchetan Singh6b41fb52017-03-01 20:14:39 -0800618{
Gurchetan Singhbc9a87d2017-11-03 17:17:35 -0700619 uint32_t i, j;
620 struct kms_item *item;
Gurchetan Singh6b41fb52017-03-01 20:14:39 -0800621 struct combination *combo;
Gurchetan Singhbc9a87d2017-11-03 17:17:35 -0700622 struct drv_array *kms_items;
Gurchetan Singh6b41fb52017-03-01 20:14:39 -0800623
Gurchetan Singh6b41fb52017-03-01 20:14:39 -0800624 /*
625 * All current drivers can scanout linear XRGB8888/ARGB8888 as a primary
626 * plane and as a cursor. Some drivers don't support
627 * drmModeGetPlaneResources, so add the combination here. Note that the
628 * kernel disregards the alpha component of ARGB unless it's an overlay
629 * plane.
630 */
Gurchetan Singh8ac0c9a2017-05-15 09:34:22 -0700631 drv_modify_combination(drv, DRM_FORMAT_XRGB8888, &LINEAR_METADATA,
632 BO_USE_CURSOR | BO_USE_SCANOUT);
633 drv_modify_combination(drv, DRM_FORMAT_ARGB8888, &LINEAR_METADATA,
634 BO_USE_CURSOR | BO_USE_SCANOUT);
Gurchetan Singh6b41fb52017-03-01 20:14:39 -0800635
Gurchetan Singhbc9a87d2017-11-03 17:17:35 -0700636 kms_items = drv_query_kms(drv);
637 if (!kms_items)
Gurchetan Singh6b41fb52017-03-01 20:14:39 -0800638 return 0;
639
Gurchetan Singhbc9a87d2017-11-03 17:17:35 -0700640 for (i = 0; i < drv_array_size(kms_items); i++) {
641 item = (struct kms_item *)drv_array_at_idx(kms_items, i);
642 for (j = 0; j < drv_array_size(drv->combos); j++) {
643 combo = drv_array_at_idx(drv->combos, j);
644 if (item->format == combo->format)
Gurchetan Singha1892b22017-09-28 16:40:52 -0700645 combo->use_flags |= BO_USE_SCANOUT;
Gurchetan Singh6b41fb52017-03-01 20:14:39 -0800646 }
647 }
648
Gurchetan Singhbc9a87d2017-11-03 17:17:35 -0700649 drv_array_destroy(kms_items);
Gurchetan Singh6b41fb52017-03-01 20:14:39 -0800650 return 0;
Gurchetan Singh179687e2016-10-28 10:07:35 -0700651}
Kristian H. Kristensen6061eab2017-10-03 13:53:19 -0700652
653/*
654 * Pick the best modifier from modifiers, according to the ordering
655 * given by modifier_order.
656 */
657uint64_t drv_pick_modifier(const uint64_t *modifiers, uint32_t count,
658 const uint64_t *modifier_order, uint32_t order_count)
659{
660 uint32_t i, j;
661
662 for (i = 0; i < order_count; i++) {
663 for (j = 0; j < count; j++) {
664 if (modifiers[j] == modifier_order[i]) {
665 return modifiers[j];
666 }
667 }
668 }
669
670 return DRM_FORMAT_MOD_LINEAR;
671}
Fritz Koenig1b9b5b92019-03-19 13:25:45 -0700672
673/*
674 * Search a list of modifiers to see if a given modifier is present
675 */
676bool drv_has_modifier(const uint64_t *list, uint32_t count, uint64_t modifier)
677{
678 uint32_t i;
679 for (i = 0; i < count; i++)
680 if (list[i] == modifier)
681 return true;
682
683 return false;
684}