blob: de4541f16a325958683e7b6948176ae86eafc57e [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>
Yuly Novikov96c7a3b2015-12-08 22:48:29 -05009#include <stdbool.h>
Stéphane Marchesin25a26062014-09-12 16:18:59 -070010#include <stdio.h>
Yuly Novikov96c7a3b2015-12-08 22:48:29 -050011#include <stdlib.h>
Stéphane Marchesin25a26062014-09-12 16:18:59 -070012#include <string.h>
Gurchetan Singhef920532016-08-12 16:38:25 -070013#include <sys/mman.h>
Stéphane Marchesin25a26062014-09-12 16:18:59 -070014#include <xf86drm.h>
Gurchetan Singh179687e2016-10-28 10:07:35 -070015#include <xf86drmMode.h>
Stéphane Marchesin25a26062014-09-12 16:18:59 -070016
Gurchetan Singh46faf6b2016-08-05 14:40:07 -070017#include "drv_priv.h"
Lauri Peltonen904a8792015-01-17 13:57:51 +020018#include "helpers.h"
Yuly Novikov96c7a3b2015-12-08 22:48:29 -050019#include "util.h"
20
Kristian H. Kristensen478343f2018-04-04 14:02:50 -070021struct planar_layout {
22 size_t num_planes;
23 int horizontal_subsampling[DRV_MAX_PLANES];
24 int vertical_subsampling[DRV_MAX_PLANES];
25 int bytes_per_pixel[DRV_MAX_PLANES];
26};
27
28// clang-format off
29
30static const struct planar_layout packed_1bpp_layout = {
31 .num_planes = 1,
32 .horizontal_subsampling = { 1 },
33 .vertical_subsampling = { 1 },
34 .bytes_per_pixel = { 1 }
35};
36
37static const struct planar_layout packed_2bpp_layout = {
38 .num_planes = 1,
39 .horizontal_subsampling = { 1 },
40 .vertical_subsampling = { 1 },
41 .bytes_per_pixel = { 2 }
42};
43
44static const struct planar_layout packed_3bpp_layout = {
45 .num_planes = 1,
46 .horizontal_subsampling = { 1 },
47 .vertical_subsampling = { 1 },
48 .bytes_per_pixel = { 3 }
49};
50
51static const struct planar_layout packed_4bpp_layout = {
52 .num_planes = 1,
53 .horizontal_subsampling = { 1 },
54 .vertical_subsampling = { 1 },
55 .bytes_per_pixel = { 4 }
56};
57
58static const struct planar_layout biplanar_yuv_420_layout = {
59 .num_planes = 2,
60 .horizontal_subsampling = { 1, 2 },
61 .vertical_subsampling = { 1, 2 },
62 .bytes_per_pixel = { 1, 2 }
63};
64
65static const struct planar_layout triplanar_yuv_420_layout = {
66 .num_planes = 3,
67 .horizontal_subsampling = { 1, 2, 2 },
68 .vertical_subsampling = { 1, 2, 2 },
69 .bytes_per_pixel = { 1, 1, 1 }
70};
71
72// clang-format on
73
74static const struct planar_layout *layout_from_format(uint32_t format)
Gurchetan Singh1b1d56a2017-03-10 16:25:23 -080075{
Gurchetan Singhd6fb5772016-08-29 19:13:51 -070076 switch (format) {
Gurchetan Singhe8ab0a52016-11-21 11:36:31 -080077 case DRM_FORMAT_BGR233:
Gurchetan Singhf3b22da2016-11-21 10:46:38 -080078 case DRM_FORMAT_C8:
79 case DRM_FORMAT_R8:
80 case DRM_FORMAT_RGB332:
Kristian H. Kristensen478343f2018-04-04 14:02:50 -070081 return &packed_1bpp_layout;
82
Gurchetan Singhf3b22da2016-11-21 10:46:38 -080083 case DRM_FORMAT_YVU420:
Gurchetan Singh03f13562017-02-08 15:21:14 -080084 case DRM_FORMAT_YVU420_ANDROID:
Kristian H. Kristensen478343f2018-04-04 14:02:50 -070085 return &triplanar_yuv_420_layout;
Stéphane Marchesin25a26062014-09-12 16:18:59 -070086
Gurchetan Singhf3b22da2016-11-21 10:46:38 -080087 case DRM_FORMAT_NV12:
Shirish Sdf423df2017-04-18 16:21:59 +053088 case DRM_FORMAT_NV21:
Kristian H. Kristensen478343f2018-04-04 14:02:50 -070089 return &biplanar_yuv_420_layout;
Yuly Novikov96c7a3b2015-12-08 22:48:29 -050090
Gurchetan Singhf3b22da2016-11-21 10:46:38 -080091 case DRM_FORMAT_ABGR1555:
Gurchetan Singhe8ab0a52016-11-21 11:36:31 -080092 case DRM_FORMAT_ABGR4444:
93 case DRM_FORMAT_ARGB1555:
94 case DRM_FORMAT_ARGB4444:
Gurchetan Singhf3b22da2016-11-21 10:46:38 -080095 case DRM_FORMAT_BGR565:
Gurchetan Singhe8ab0a52016-11-21 11:36:31 -080096 case DRM_FORMAT_BGRA4444:
97 case DRM_FORMAT_BGRA5551:
98 case DRM_FORMAT_BGRX4444:
99 case DRM_FORMAT_BGRX5551:
100 case DRM_FORMAT_GR88:
101 case DRM_FORMAT_RG88:
102 case DRM_FORMAT_RGB565:
103 case DRM_FORMAT_RGBA4444:
104 case DRM_FORMAT_RGBA5551:
105 case DRM_FORMAT_RGBX4444:
106 case DRM_FORMAT_RGBX5551:
Gurchetan Singhf3b22da2016-11-21 10:46:38 -0800107 case DRM_FORMAT_UYVY:
108 case DRM_FORMAT_VYUY:
Gurchetan Singhe8ab0a52016-11-21 11:36:31 -0800109 case DRM_FORMAT_XBGR1555:
110 case DRM_FORMAT_XBGR4444:
111 case DRM_FORMAT_XRGB1555:
112 case DRM_FORMAT_XRGB4444:
113 case DRM_FORMAT_YUYV:
114 case DRM_FORMAT_YVYU:
Kristian H. Kristensen478343f2018-04-04 14:02:50 -0700115 return &packed_2bpp_layout;
Stéphane Marchesin25a26062014-09-12 16:18:59 -0700116
Gurchetan Singhf3b22da2016-11-21 10:46:38 -0800117 case DRM_FORMAT_BGR888:
Gurchetan Singhe8ab0a52016-11-21 11:36:31 -0800118 case DRM_FORMAT_RGB888:
Kristian H. Kristensen478343f2018-04-04 14:02:50 -0700119 return &packed_3bpp_layout;
Stéphane Marchesin25a26062014-09-12 16:18:59 -0700120
Gurchetan Singhf3b22da2016-11-21 10:46:38 -0800121 case DRM_FORMAT_ABGR2101010:
Gurchetan Singhe8ab0a52016-11-21 11:36:31 -0800122 case DRM_FORMAT_ABGR8888:
123 case DRM_FORMAT_ARGB2101010:
124 case DRM_FORMAT_ARGB8888:
Gurchetan Singhf3b22da2016-11-21 10:46:38 -0800125 case DRM_FORMAT_AYUV:
Gurchetan Singhe8ab0a52016-11-21 11:36:31 -0800126 case DRM_FORMAT_BGRA1010102:
127 case DRM_FORMAT_BGRA8888:
128 case DRM_FORMAT_BGRX1010102:
129 case DRM_FORMAT_BGRX8888:
130 case DRM_FORMAT_RGBA1010102:
131 case DRM_FORMAT_RGBA8888:
132 case DRM_FORMAT_RGBX1010102:
133 case DRM_FORMAT_RGBX8888:
134 case DRM_FORMAT_XBGR2101010:
135 case DRM_FORMAT_XBGR8888:
136 case DRM_FORMAT_XRGB2101010:
137 case DRM_FORMAT_XRGB8888:
Kristian H. Kristensen478343f2018-04-04 14:02:50 -0700138 return &packed_4bpp_layout;
Stéphane Marchesin25a26062014-09-12 16:18:59 -0700139
Kristian H. Kristensen478343f2018-04-04 14:02:50 -0700140 default:
141 drv_log("UNKNOWN FORMAT %d\n", format);
142 return NULL;
143 }
144}
145
146size_t drv_num_planes_from_format(uint32_t format)
147{
148 const struct planar_layout *layout = layout_from_format(format);
149
150 /*
151 * drv_bo_new calls this function early to query number of planes and
152 * considers 0 planes to mean unknown format, so we have to support
153 * that. All other layout_from_format() queries can assume that the
154 * format is supported and that the return value is non-NULL.
155 */
156
157 return layout ? layout->num_planes : 0;
158}
159
160uint32_t drv_height_from_format(uint32_t format, uint32_t height, size_t plane)
161{
162 const struct planar_layout *layout = layout_from_format(format);
163
164 assert(plane < layout->num_planes);
165
166 return DIV_ROUND_UP(height, layout->vertical_subsampling[plane]);
167}
168
169uint32_t drv_bytes_per_pixel_from_format(uint32_t format, size_t plane)
170{
171 const struct planar_layout *layout = layout_from_format(format);
172
173 assert(plane < layout->num_planes);
174
175 return layout->bytes_per_pixel[plane];
Stéphane Marchesin25a26062014-09-12 16:18:59 -0700176}
177
Gurchetan Singh83dc4fb2016-07-19 15:52:33 -0700178/*
Gurchetan Singh4f298f92017-03-23 11:29:26 -0700179 * This function returns the stride for a given format, width and plane.
180 */
181uint32_t drv_stride_from_format(uint32_t format, uint32_t width, size_t plane)
182{
Kristian H. Kristensen478343f2018-04-04 14:02:50 -0700183 const struct planar_layout *layout = layout_from_format(format);
184 assert(plane < layout->num_planes);
185
Gurchetan Singh6bd78852018-06-06 17:15:31 -0700186 uint32_t plane_width = DIV_ROUND_UP(width, layout->horizontal_subsampling[plane]);
Kristian H. Kristensen478343f2018-04-04 14:02:50 -0700187 uint32_t stride = plane_width * layout->bytes_per_pixel[plane];
Gurchetan Singh4f298f92017-03-23 11:29:26 -0700188
189 /*
Gurchetan Singh4f298f92017-03-23 11:29:26 -0700190 * The stride of Android YV12 buffers is required to be aligned to 16 bytes
191 * (see <system/graphics.h>).
192 */
193 if (format == DRM_FORMAT_YVU420_ANDROID)
Gurchetan Singh1b1d56a2017-03-10 16:25:23 -0800194 stride = (plane == 0) ? ALIGN(stride, 32) : ALIGN(stride, 16);
Gurchetan Singh4f298f92017-03-23 11:29:26 -0700195
196 return stride;
197}
198
Gurchetan Singhbc24bd72017-09-28 15:21:53 -0700199uint32_t drv_size_from_format(uint32_t format, uint32_t stride, uint32_t height, size_t plane)
200{
Kristian H. Kristensen478343f2018-04-04 14:02:50 -0700201 return stride * drv_height_from_format(format, height, plane);
202}
Gurchetan Singhbc24bd72017-09-28 15:21:53 -0700203
Kristian H. Kristensen478343f2018-04-04 14:02:50 -0700204static uint32_t subsample_stride(uint32_t stride, uint32_t format, size_t plane)
205{
206 if (plane != 0) {
207 switch (format) {
208 case DRM_FORMAT_YVU420:
209 case DRM_FORMAT_YVU420_ANDROID:
210 stride = DIV_ROUND_UP(stride, 2);
211 break;
212 }
Gurchetan Singhbc24bd72017-09-28 15:21:53 -0700213 }
214
Kristian H. Kristensen478343f2018-04-04 14:02:50 -0700215 return stride;
Gurchetan Singhbc24bd72017-09-28 15:21:53 -0700216}
217
Gurchetan Singh4f298f92017-03-23 11:29:26 -0700218/*
Gurchetan Singh6423ecb2017-03-29 08:23:40 -0700219 * This function fills in the buffer object given the driver aligned stride of
220 * the first plane, height and a format. This function assumes there is just
221 * one kernel buffer per buffer object.
Gurchetan Singh42cc6d62016-08-29 18:19:19 -0700222 */
Gurchetan Singh1b1d56a2017-03-10 16:25:23 -0800223int drv_bo_from_format(struct bo *bo, uint32_t stride, uint32_t aligned_height, uint32_t format)
Gurchetan Singh42cc6d62016-08-29 18:19:19 -0700224{
225
Gurchetan Singh2a119342016-11-02 10:40:51 -0700226 size_t p, num_planes;
227 uint32_t offset = 0;
228
229 num_planes = drv_num_planes_from_format(format);
230 assert(num_planes);
Owen Linbbb69fd2017-06-05 14:33:08 +0800231
232 /*
233 * HAL_PIXEL_FORMAT_YV12 requires that (see <system/graphics.h>):
234 * - the aligned height is same as the buffer's height.
235 * - the chroma stride is 16 bytes aligned, i.e., the luma's strides
236 * is 32 bytes aligned.
237 */
Tomasz Figad846de62017-07-29 15:47:54 +0900238 if (format == DRM_FORMAT_YVU420_ANDROID) {
Owen Linbbb69fd2017-06-05 14:33:08 +0800239 assert(aligned_height == bo->height);
240 assert(stride == ALIGN(stride, 32));
241 }
Gurchetan Singh2a119342016-11-02 10:40:51 -0700242
243 for (p = 0; p < num_planes; p++) {
Gurchetan Singh6423ecb2017-03-29 08:23:40 -0700244 bo->strides[p] = subsample_stride(stride, format, p);
Owen Linbbb69fd2017-06-05 14:33:08 +0800245 bo->sizes[p] = drv_size_from_format(format, bo->strides[p], aligned_height, p);
Gurchetan Singh2a119342016-11-02 10:40:51 -0700246 bo->offsets[p] = offset;
247 offset += bo->sizes[p];
Gurchetan Singh42cc6d62016-08-29 18:19:19 -0700248 }
249
Owen Linbbb69fd2017-06-05 14:33:08 +0800250 bo->total_size = offset;
Gurchetan Singh42cc6d62016-08-29 18:19:19 -0700251 return 0;
252}
253
Gurchetan Singh1b1d56a2017-03-10 16:25:23 -0800254int drv_dumb_bo_create(struct bo *bo, uint32_t width, uint32_t height, uint32_t format,
Gurchetan Singha1892b22017-09-28 16:40:52 -0700255 uint64_t use_flags)
Stéphane Marchesin25a26062014-09-12 16:18:59 -0700256{
Stéphane Marchesin25a26062014-09-12 16:18:59 -0700257 int ret;
Gurchetan Singhd5f8e442017-03-16 13:05:45 -0700258 size_t plane;
Gurchetan Singh6423ecb2017-03-29 08:23:40 -0700259 uint32_t aligned_width, aligned_height;
Gurchetan Singhd5f8e442017-03-16 13:05:45 -0700260 struct drm_mode_create_dumb create_dumb;
Stéphane Marchesin25a26062014-09-12 16:18:59 -0700261
Gurchetan Singhd5f8e442017-03-16 13:05:45 -0700262 aligned_width = width;
263 aligned_height = height;
Keiichi Watanabeaf94db92018-08-06 18:37:21 +0900264 switch (format) {
265 case DRM_FORMAT_YVU420_ANDROID:
266 /* Align width to 32 pixels, so chroma strides are 16 bytes as
267 * Android requires. */
Gurchetan Singhd5f8e442017-03-16 13:05:45 -0700268 aligned_width = ALIGN(width, 32);
Keiichi Watanabed706a8c2018-08-13 16:54:56 +0900269 /* Adjust the height to include room for chroma planes.
270 *
271 * HAL_PIXEL_FORMAT_YV12 requires that the buffer's height not
272 * be aligned. */
273 aligned_height = 3 * DIV_ROUND_UP(bo->height, 2);
Keiichi Watanabeaf94db92018-08-06 18:37:21 +0900274 break;
275 case DRM_FORMAT_YVU420:
276 case DRM_FORMAT_NV12:
277 /* Adjust the height to include room for chroma planes */
278 aligned_height = 3 * DIV_ROUND_UP(height, 2);
279 break;
280 default:
281 break;
Gurchetan Singhd5f8e442017-03-16 13:05:45 -0700282 }
Yuly Novikov96c7a3b2015-12-08 22:48:29 -0500283
Stéphane Marchesin25a26062014-09-12 16:18:59 -0700284 memset(&create_dumb, 0, sizeof(create_dumb));
Gurchetan Singhd5f8e442017-03-16 13:05:45 -0700285 create_dumb.height = aligned_height;
286 create_dumb.width = aligned_width;
Kristian H. Kristensen478343f2018-04-04 14:02:50 -0700287 create_dumb.bpp = layout_from_format(format)->bytes_per_pixel[0] * 8;
Stéphane Marchesin25a26062014-09-12 16:18:59 -0700288 create_dumb.flags = 0;
289
Gurchetan Singh46faf6b2016-08-05 14:40:07 -0700290 ret = drmIoctl(bo->drv->fd, DRM_IOCTL_MODE_CREATE_DUMB, &create_dumb);
Ilja H. Friedelf9d2ab72015-04-09 14:08:36 -0700291 if (ret) {
Alistair Strachan0cfaaa52018-03-19 14:03:23 -0700292 drv_log("DRM_IOCTL_MODE_CREATE_DUMB failed (%d, %d)\n", bo->drv->fd, errno);
Stéphane Marchesin25a26062014-09-12 16:18:59 -0700293 return ret;
Ilja H. Friedelf9d2ab72015-04-09 14:08:36 -0700294 }
Stéphane Marchesin25a26062014-09-12 16:18:59 -0700295
Gurchetan Singh6423ecb2017-03-29 08:23:40 -0700296 drv_bo_from_format(bo, create_dumb.pitch, height, format);
Stéphane Marchesin25a26062014-09-12 16:18:59 -0700297
Gurchetan Singhd5f8e442017-03-16 13:05:45 -0700298 for (plane = 0; plane < bo->num_planes; plane++)
299 bo->handles[plane].u32 = create_dumb.handle;
300
301 bo->total_size = create_dumb.size;
Stéphane Marchesin25a26062014-09-12 16:18:59 -0700302 return 0;
303}
304
Gurchetan Singh46faf6b2016-08-05 14:40:07 -0700305int drv_dumb_bo_destroy(struct bo *bo)
Stéphane Marchesin25a26062014-09-12 16:18:59 -0700306{
307 struct drm_mode_destroy_dumb destroy_dumb;
308 int ret;
309
310 memset(&destroy_dumb, 0, sizeof(destroy_dumb));
Yuly Novikov96c7a3b2015-12-08 22:48:29 -0500311 destroy_dumb.handle = bo->handles[0].u32;
Stéphane Marchesin25a26062014-09-12 16:18:59 -0700312
Gurchetan Singh46faf6b2016-08-05 14:40:07 -0700313 ret = drmIoctl(bo->drv->fd, DRM_IOCTL_MODE_DESTROY_DUMB, &destroy_dumb);
Ilja H. Friedelf9d2ab72015-04-09 14:08:36 -0700314 if (ret) {
Alistair Strachan0cfaaa52018-03-19 14:03:23 -0700315 drv_log("DRM_IOCTL_MODE_DESTROY_DUMB failed (handle=%x)\n", bo->handles[0].u32);
Stéphane Marchesin25a26062014-09-12 16:18:59 -0700316 return ret;
Ilja H. Friedelf9d2ab72015-04-09 14:08:36 -0700317 }
Stéphane Marchesin25a26062014-09-12 16:18:59 -0700318
319 return 0;
320}
321
Gurchetan Singh46faf6b2016-08-05 14:40:07 -0700322int drv_gem_bo_destroy(struct bo *bo)
Stéphane Marchesin25a26062014-09-12 16:18:59 -0700323{
324 struct drm_gem_close gem_close;
Yuly Novikov96c7a3b2015-12-08 22:48:29 -0500325 int ret, error = 0;
326 size_t plane, i;
Stéphane Marchesin25a26062014-09-12 16:18:59 -0700327
Yuly Novikov96c7a3b2015-12-08 22:48:29 -0500328 for (plane = 0; plane < bo->num_planes; plane++) {
Gurchetan Singhf64487b2016-07-14 19:54:44 -0700329 for (i = 0; i < plane; i++)
330 if (bo->handles[i].u32 == bo->handles[plane].u32)
331 break;
332 /* Make sure close hasn't already been called on this handle */
333 if (i != plane)
Yuly Novikov96c7a3b2015-12-08 22:48:29 -0500334 continue;
Stéphane Marchesin25a26062014-09-12 16:18:59 -0700335
Yuly Novikov96c7a3b2015-12-08 22:48:29 -0500336 memset(&gem_close, 0, sizeof(gem_close));
337 gem_close.handle = bo->handles[plane].u32;
338
Gurchetan Singh46faf6b2016-08-05 14:40:07 -0700339 ret = drmIoctl(bo->drv->fd, DRM_IOCTL_GEM_CLOSE, &gem_close);
Yuly Novikov96c7a3b2015-12-08 22:48:29 -0500340 if (ret) {
Alistair Strachan0cfaaa52018-03-19 14:03:23 -0700341 drv_log("DRM_IOCTL_GEM_CLOSE failed (handle=%x) error %d\n",
Gurchetan Singh1b1d56a2017-03-10 16:25:23 -0800342 bo->handles[plane].u32, ret);
Yuly Novikov96c7a3b2015-12-08 22:48:29 -0500343 error = ret;
344 }
Ilja H. Friedelf9d2ab72015-04-09 14:08:36 -0700345 }
Stéphane Marchesin25a26062014-09-12 16:18:59 -0700346
Yuly Novikov96c7a3b2015-12-08 22:48:29 -0500347 return error;
Stéphane Marchesin25a26062014-09-12 16:18:59 -0700348}
Gurchetan Singh1647fbe2016-08-03 17:14:55 -0700349
Gurchetan Singh71611d62017-01-03 16:49:56 -0800350int drv_prime_bo_import(struct bo *bo, struct drv_import_fd_data *data)
351{
352 int ret;
353 size_t plane;
354 struct drm_prime_handle prime_handle;
355
356 for (plane = 0; plane < bo->num_planes; plane++) {
357 memset(&prime_handle, 0, sizeof(prime_handle));
358 prime_handle.fd = data->fds[plane];
359
Gurchetan Singh1b1d56a2017-03-10 16:25:23 -0800360 ret = drmIoctl(bo->drv->fd, DRM_IOCTL_PRIME_FD_TO_HANDLE, &prime_handle);
Gurchetan Singh71611d62017-01-03 16:49:56 -0800361
362 if (ret) {
Alistair Strachan0cfaaa52018-03-19 14:03:23 -0700363 drv_log("DRM_IOCTL_PRIME_FD_TO_HANDLE failed (fd=%u)\n", prime_handle.fd);
Gurchetan Singh71611d62017-01-03 16:49:56 -0800364
365 /*
366 * Need to call GEM close on planes that were opened,
367 * if any. Adjust the num_planes variable to be the
368 * plane that failed, so GEM close will be called on
369 * planes before that plane.
370 */
371 bo->num_planes = plane;
372 drv_gem_bo_destroy(bo);
373 return ret;
374 }
375
376 bo->handles[plane].u32 = prime_handle.handle;
377 }
378
Gurchetan Singh71611d62017-01-03 16:49:56 -0800379 return 0;
380}
381
Gurchetan Singhee43c302017-11-14 18:20:27 -0800382void *drv_dumb_bo_map(struct bo *bo, struct vma *vma, size_t plane, uint32_t map_flags)
Gurchetan Singhef920532016-08-12 16:38:25 -0700383{
384 int ret;
Gurchetan Singh1a31e602016-10-06 10:58:00 -0700385 size_t i;
Gurchetan Singhef920532016-08-12 16:38:25 -0700386 struct drm_mode_map_dumb map_dumb;
387
388 memset(&map_dumb, 0, sizeof(map_dumb));
Gurchetan Singh1a31e602016-10-06 10:58:00 -0700389 map_dumb.handle = bo->handles[plane].u32;
Gurchetan Singhef920532016-08-12 16:38:25 -0700390
391 ret = drmIoctl(bo->drv->fd, DRM_IOCTL_MODE_MAP_DUMB, &map_dumb);
392 if (ret) {
Alistair Strachan0cfaaa52018-03-19 14:03:23 -0700393 drv_log("DRM_IOCTL_MODE_MAP_DUMB failed\n");
Gurchetan Singhef920532016-08-12 16:38:25 -0700394 return MAP_FAILED;
395 }
396
Gurchetan Singh1a31e602016-10-06 10:58:00 -0700397 for (i = 0; i < bo->num_planes; i++)
398 if (bo->handles[i].u32 == bo->handles[plane].u32)
Gurchetan Singhee43c302017-11-14 18:20:27 -0800399 vma->length += bo->sizes[i];
Gurchetan Singh1a31e602016-10-06 10:58:00 -0700400
Gurchetan Singhee43c302017-11-14 18:20:27 -0800401 return mmap(0, vma->length, drv_get_prot(map_flags), MAP_SHARED, bo->drv->fd,
Gurchetan Singhcfb88762017-09-28 17:14:50 -0700402 map_dumb.offset);
Gurchetan Singhef920532016-08-12 16:38:25 -0700403}
404
Gurchetan Singhee43c302017-11-14 18:20:27 -0800405int drv_bo_munmap(struct bo *bo, struct vma *vma)
Gurchetan Singhba6bd502017-09-18 15:29:47 -0700406{
Gurchetan Singhee43c302017-11-14 18:20:27 -0800407 return munmap(vma->addr, vma->length);
Gurchetan Singhba6bd502017-09-18 15:29:47 -0700408}
409
Gurchetan Singh47e629b2017-11-02 14:07:18 -0700410int drv_mapping_destroy(struct bo *bo)
Gurchetan Singhde263f12017-01-24 13:30:06 -0800411{
412 int ret;
Gurchetan Singhde263f12017-01-24 13:30:06 -0800413 size_t plane;
Gurchetan Singh47e629b2017-11-02 14:07:18 -0700414 struct mapping *mapping;
Gurchetan Singhcfedbcc2017-11-02 17:32:00 -0700415 uint32_t idx;
Gurchetan Singhde263f12017-01-24 13:30:06 -0800416
417 /*
418 * This function is called right before the buffer is destroyed. It will free any mappings
419 * associated with the buffer.
420 */
421
Gurchetan Singhcfedbcc2017-11-02 17:32:00 -0700422 idx = 0;
Gurchetan Singhde263f12017-01-24 13:30:06 -0800423 for (plane = 0; plane < bo->num_planes; plane++) {
Gurchetan Singhcfedbcc2017-11-02 17:32:00 -0700424 while (idx < drv_array_size(bo->drv->mappings)) {
425 mapping = (struct mapping *)drv_array_at_idx(bo->drv->mappings, idx);
426 if (mapping->vma->handle != bo->handles[plane].u32) {
427 idx++;
428 continue;
Gurchetan Singhde263f12017-01-24 13:30:06 -0800429 }
430
Gurchetan Singhcfedbcc2017-11-02 17:32:00 -0700431 if (!--mapping->vma->refcount) {
Gurchetan Singhee43c302017-11-14 18:20:27 -0800432 ret = bo->drv->backend->bo_unmap(bo, mapping->vma);
Gurchetan Singhcfedbcc2017-11-02 17:32:00 -0700433 if (ret) {
Alistair Strachan0cfaaa52018-03-19 14:03:23 -0700434 drv_log("munmap failed\n");
Gurchetan Singhcfedbcc2017-11-02 17:32:00 -0700435 return ret;
436 }
437
438 free(mapping->vma);
439 }
440
441 /* This shrinks and shifts the array, so don't increment idx. */
442 drv_array_remove(bo->drv->mappings, idx);
Gurchetan Singhde263f12017-01-24 13:30:06 -0800443 }
444 }
445
446 return 0;
447}
448
Gurchetan Singhcfb88762017-09-28 17:14:50 -0700449int drv_get_prot(uint32_t map_flags)
450{
451 return (BO_MAP_WRITE & map_flags) ? PROT_WRITE | PROT_READ : PROT_READ;
452}
453
Gurchetan Singh1b1d56a2017-03-10 16:25:23 -0800454uintptr_t drv_get_reference_count(struct driver *drv, struct bo *bo, size_t plane)
Gurchetan Singh1647fbe2016-08-03 17:14:55 -0700455{
456 void *count;
457 uintptr_t num = 0;
458
459 if (!drmHashLookup(drv->buffer_table, bo->handles[plane].u32, &count))
Gurchetan Singh1b1d56a2017-03-10 16:25:23 -0800460 num = (uintptr_t)(count);
Gurchetan Singh1647fbe2016-08-03 17:14:55 -0700461
462 return num;
463}
464
Gurchetan Singh1b1d56a2017-03-10 16:25:23 -0800465void drv_increment_reference_count(struct driver *drv, struct bo *bo, size_t plane)
Gurchetan Singh1647fbe2016-08-03 17:14:55 -0700466{
467 uintptr_t num = drv_get_reference_count(drv, bo, plane);
468
469 /* If a value isn't in the table, drmHashDelete is a no-op */
470 drmHashDelete(drv->buffer_table, bo->handles[plane].u32);
Gurchetan Singh1b1d56a2017-03-10 16:25:23 -0800471 drmHashInsert(drv->buffer_table, bo->handles[plane].u32, (void *)(num + 1));
Gurchetan Singh1647fbe2016-08-03 17:14:55 -0700472}
473
Gurchetan Singh1b1d56a2017-03-10 16:25:23 -0800474void drv_decrement_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 drmHashDelete(drv->buffer_table, bo->handles[plane].u32);
479
480 if (num > 0)
Gurchetan Singh1b1d56a2017-03-10 16:25:23 -0800481 drmHashInsert(drv->buffer_table, bo->handles[plane].u32, (void *)(num - 1));
Gurchetan Singh1647fbe2016-08-03 17:14:55 -0700482}
Gurchetan Singhef920532016-08-12 16:38:25 -0700483
Akshu Agrawal0337d9b2016-07-28 15:35:45 +0530484uint32_t drv_log_base2(uint32_t value)
485{
486 int ret = 0;
487
488 while (value >>= 1)
489 ++ret;
490
491 return ret;
492}
Gurchetan Singh179687e2016-10-28 10:07:35 -0700493
Gurchetan Singhd3001452017-11-03 17:18:36 -0700494void drv_add_combinations(struct driver *drv, const uint32_t *formats, uint32_t num_formats,
495 struct format_metadata *metadata, uint64_t use_flags)
Gurchetan Singh179687e2016-10-28 10:07:35 -0700496{
Gurchetan Singh6b41fb52017-03-01 20:14:39 -0800497 uint32_t i;
Gurchetan Singhbc9a87d2017-11-03 17:17:35 -0700498
499 for (i = 0; i < num_formats; i++) {
Gurchetan Singh2b1d6892018-09-17 16:58:16 -0700500 struct combination combo = { .format = formats[i],
501 .metadata = *metadata,
502 .use_flags = use_flags };
Gurchetan Singhbc9a87d2017-11-03 17:17:35 -0700503
504 drv_array_append(drv->combos, &combo);
505 }
Gurchetan Singh6b41fb52017-03-01 20:14:39 -0800506}
507
Gurchetan Singh1b1d56a2017-03-10 16:25:23 -0800508void drv_modify_combination(struct driver *drv, uint32_t format, struct format_metadata *metadata,
Gurchetan Singha1892b22017-09-28 16:40:52 -0700509 uint64_t use_flags)
Gurchetan Singh6b41fb52017-03-01 20:14:39 -0800510{
511 uint32_t i;
512 struct combination *combo;
Gurchetan Singha1892b22017-09-28 16:40:52 -0700513 /* Attempts to add the specified flags to an existing combination. */
Gurchetan Singhbc9a87d2017-11-03 17:17:35 -0700514 for (i = 0; i < drv_array_size(drv->combos); i++) {
515 combo = (struct combination *)drv_array_at_idx(drv->combos, i);
Gurchetan Singh1b1d56a2017-03-10 16:25:23 -0800516 if (combo->format == format && combo->metadata.tiling == metadata->tiling &&
Gurchetan Singh6b41fb52017-03-01 20:14:39 -0800517 combo->metadata.modifier == metadata->modifier)
Gurchetan Singha1892b22017-09-28 16:40:52 -0700518 combo->use_flags |= use_flags;
Gurchetan Singh6b41fb52017-03-01 20:14:39 -0800519 }
520}
521
Gurchetan Singhbc9a87d2017-11-03 17:17:35 -0700522struct drv_array *drv_query_kms(struct driver *drv)
Gurchetan Singh6b41fb52017-03-01 20:14:39 -0800523{
Gurchetan Singhbc9a87d2017-11-03 17:17:35 -0700524 struct drv_array *kms_items;
Gurchetan Singha1892b22017-09-28 16:40:52 -0700525 uint64_t plane_type, use_flag;
Gurchetan Singhbc9a87d2017-11-03 17:17:35 -0700526 uint32_t i, j, k;
Gurchetan Singh6b41fb52017-03-01 20:14:39 -0800527
Gurchetan Singh179687e2016-10-28 10:07:35 -0700528 drmModePlanePtr plane;
529 drmModePropertyPtr prop;
530 drmModePlaneResPtr resources;
531 drmModeObjectPropertiesPtr props;
532
Gurchetan Singhbc9a87d2017-11-03 17:17:35 -0700533 kms_items = drv_array_init(sizeof(struct kms_item));
534 if (!kms_items)
Gurchetan Singh6b41fb52017-03-01 20:14:39 -0800535 goto out;
Gurchetan Singh179687e2016-10-28 10:07:35 -0700536
537 /*
538 * The ability to return universal planes is only complete on
539 * ChromeOS kernel versions >= v3.18. The SET_CLIENT_CAP ioctl
540 * therefore might return an error code, so don't check it. If it
541 * fails, it'll just return the plane list as overlay planes, which is
542 * fine in our case (our drivers already have cursor bits set).
543 * modetest in libdrm does the same thing.
544 */
545 drmSetClientCap(drv->fd, DRM_CLIENT_CAP_UNIVERSAL_PLANES, 1);
546
547 resources = drmModeGetPlaneResources(drv->fd);
548 if (!resources)
Gurchetan Singh6b41fb52017-03-01 20:14:39 -0800549 goto out;
Gurchetan Singh179687e2016-10-28 10:07:35 -0700550
551 for (i = 0; i < resources->count_planes; i++) {
Gurchetan Singh179687e2016-10-28 10:07:35 -0700552 plane = drmModeGetPlane(drv->fd, resources->planes[i]);
Gurchetan Singh179687e2016-10-28 10:07:35 -0700553 if (!plane)
Gurchetan Singh6b41fb52017-03-01 20:14:39 -0800554 goto out;
Gurchetan Singh179687e2016-10-28 10:07:35 -0700555
Gurchetan Singh1b1d56a2017-03-10 16:25:23 -0800556 props = drmModeObjectGetProperties(drv->fd, plane->plane_id, DRM_MODE_OBJECT_PLANE);
Gurchetan Singh179687e2016-10-28 10:07:35 -0700557 if (!props)
Gurchetan Singh6b41fb52017-03-01 20:14:39 -0800558 goto out;
Gurchetan Singh179687e2016-10-28 10:07:35 -0700559
560 for (j = 0; j < props->count_props; j++) {
Gurchetan Singh179687e2016-10-28 10:07:35 -0700561 prop = drmModeGetProperty(drv->fd, props->props[j]);
562 if (prop) {
563 if (strcmp(prop->name, "type") == 0) {
Gurchetan Singha1892b22017-09-28 16:40:52 -0700564 plane_type = props->prop_values[j];
Gurchetan Singh179687e2016-10-28 10:07:35 -0700565 }
Gurchetan Singh6b41fb52017-03-01 20:14:39 -0800566
Gurchetan Singh179687e2016-10-28 10:07:35 -0700567 drmModeFreeProperty(prop);
568 }
569 }
570
Gurchetan Singha1892b22017-09-28 16:40:52 -0700571 switch (plane_type) {
Gurchetan Singh179687e2016-10-28 10:07:35 -0700572 case DRM_PLANE_TYPE_OVERLAY:
573 case DRM_PLANE_TYPE_PRIMARY:
Gurchetan Singha1892b22017-09-28 16:40:52 -0700574 use_flag = BO_USE_SCANOUT;
Gurchetan Singh179687e2016-10-28 10:07:35 -0700575 break;
576 case DRM_PLANE_TYPE_CURSOR:
Gurchetan Singha1892b22017-09-28 16:40:52 -0700577 use_flag = BO_USE_CURSOR;
Gurchetan Singh179687e2016-10-28 10:07:35 -0700578 break;
579 default:
580 assert(0);
581 }
582
Gurchetan Singh6b41fb52017-03-01 20:14:39 -0800583 for (j = 0; j < plane->count_formats; j++) {
584 bool found = false;
Gurchetan Singhbc9a87d2017-11-03 17:17:35 -0700585 for (k = 0; k < drv_array_size(kms_items); k++) {
586 struct kms_item *item = drv_array_at_idx(kms_items, k);
587 if (item->format == plane->formats[j] &&
Gurchetan Singhd118a0e2018-01-12 23:31:50 +0000588 item->modifier == DRM_FORMAT_MOD_LINEAR) {
Gurchetan Singhbc9a87d2017-11-03 17:17:35 -0700589 item->use_flags |= use_flag;
Gurchetan Singh6b41fb52017-03-01 20:14:39 -0800590 found = true;
591 break;
592 }
593 }
594
Gurchetan Singh6b41fb52017-03-01 20:14:39 -0800595 if (!found) {
Gurchetan Singh2b1d6892018-09-17 16:58:16 -0700596 struct kms_item item = { .format = plane->formats[j],
597 .modifier = DRM_FORMAT_MOD_LINEAR,
598 .use_flags = use_flag };
Gurchetan Singhbc9a87d2017-11-03 17:17:35 -0700599
600 drv_array_append(kms_items, &item);
Gurchetan Singh6b41fb52017-03-01 20:14:39 -0800601 }
602 }
Gurchetan Singh179687e2016-10-28 10:07:35 -0700603
604 drmModeFreeObjectProperties(props);
605 drmModeFreePlane(plane);
Gurchetan Singh179687e2016-10-28 10:07:35 -0700606 }
607
608 drmModeFreePlaneResources(resources);
Gurchetan Singh6b41fb52017-03-01 20:14:39 -0800609out:
Gurchetan Singhbc9a87d2017-11-03 17:17:35 -0700610 if (kms_items && !drv_array_size(kms_items)) {
611 drv_array_destroy(kms_items);
612 return NULL;
Gurchetan Singh6b41fb52017-03-01 20:14:39 -0800613 }
Gurchetan Singh179687e2016-10-28 10:07:35 -0700614
Gurchetan Singhbc9a87d2017-11-03 17:17:35 -0700615 return kms_items;
Gurchetan Singh6b41fb52017-03-01 20:14:39 -0800616}
617
Gurchetan Singh8ac0c9a2017-05-15 09:34:22 -0700618int drv_modify_linear_combinations(struct driver *drv)
Gurchetan Singh6b41fb52017-03-01 20:14:39 -0800619{
Gurchetan Singhbc9a87d2017-11-03 17:17:35 -0700620 uint32_t i, j;
621 struct kms_item *item;
Gurchetan Singh6b41fb52017-03-01 20:14:39 -0800622 struct combination *combo;
Gurchetan Singhbc9a87d2017-11-03 17:17:35 -0700623 struct drv_array *kms_items;
Gurchetan Singh6b41fb52017-03-01 20:14:39 -0800624
Gurchetan Singh6b41fb52017-03-01 20:14:39 -0800625 /*
626 * All current drivers can scanout linear XRGB8888/ARGB8888 as a primary
627 * plane and as a cursor. Some drivers don't support
628 * drmModeGetPlaneResources, so add the combination here. Note that the
629 * kernel disregards the alpha component of ARGB unless it's an overlay
630 * plane.
631 */
Gurchetan Singh8ac0c9a2017-05-15 09:34:22 -0700632 drv_modify_combination(drv, DRM_FORMAT_XRGB8888, &LINEAR_METADATA,
633 BO_USE_CURSOR | BO_USE_SCANOUT);
634 drv_modify_combination(drv, DRM_FORMAT_ARGB8888, &LINEAR_METADATA,
635 BO_USE_CURSOR | BO_USE_SCANOUT);
Gurchetan Singh6b41fb52017-03-01 20:14:39 -0800636
Gurchetan Singhbc9a87d2017-11-03 17:17:35 -0700637 kms_items = drv_query_kms(drv);
638 if (!kms_items)
Gurchetan Singh6b41fb52017-03-01 20:14:39 -0800639 return 0;
640
Gurchetan Singhbc9a87d2017-11-03 17:17:35 -0700641 for (i = 0; i < drv_array_size(kms_items); i++) {
642 item = (struct kms_item *)drv_array_at_idx(kms_items, i);
643 for (j = 0; j < drv_array_size(drv->combos); j++) {
644 combo = drv_array_at_idx(drv->combos, j);
645 if (item->format == combo->format)
Gurchetan Singha1892b22017-09-28 16:40:52 -0700646 combo->use_flags |= BO_USE_SCANOUT;
Gurchetan Singh6b41fb52017-03-01 20:14:39 -0800647 }
648 }
649
Gurchetan Singhbc9a87d2017-11-03 17:17:35 -0700650 drv_array_destroy(kms_items);
Gurchetan Singh6b41fb52017-03-01 20:14:39 -0800651 return 0;
Gurchetan Singh179687e2016-10-28 10:07:35 -0700652}
Kristian H. Kristensen6061eab2017-10-03 13:53:19 -0700653
654/*
655 * Pick the best modifier from modifiers, according to the ordering
656 * given by modifier_order.
657 */
658uint64_t drv_pick_modifier(const uint64_t *modifiers, uint32_t count,
659 const uint64_t *modifier_order, uint32_t order_count)
660{
661 uint32_t i, j;
662
663 for (i = 0; i < order_count; i++) {
664 for (j = 0; j < count; j++) {
665 if (modifiers[j] == modifier_order[i]) {
666 return modifiers[j];
667 }
668 }
669 }
670
671 return DRM_FORMAT_MOD_LINEAR;
672}