blob: e9d2836f431869e5ebdaaf8fcb6b32fb00515027 [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
Gurchetan Singh1b1d56a2017-03-10 16:25:23 -080021static uint32_t subsample_stride(uint32_t stride, uint32_t format, size_t plane)
22{
Gurchetan Singh6423ecb2017-03-29 08:23:40 -070023
24 if (plane != 0) {
25 switch (format) {
26 case DRM_FORMAT_YVU420:
27 case DRM_FORMAT_YVU420_ANDROID:
28 stride = DIV_ROUND_UP(stride, 2);
29 break;
30 }
31 }
32
33 return stride;
34}
35
36static uint32_t bpp_from_format(uint32_t format, size_t plane)
Stéphane Marchesin25a26062014-09-12 16:18:59 -070037{
Gurchetan Singh83dc4fb2016-07-19 15:52:33 -070038 assert(plane < drv_num_planes_from_format(format));
39
Gurchetan Singhd6fb5772016-08-29 19:13:51 -070040 switch (format) {
Gurchetan Singhe8ab0a52016-11-21 11:36:31 -080041 case DRM_FORMAT_BGR233:
Gurchetan Singhf3b22da2016-11-21 10:46:38 -080042 case DRM_FORMAT_C8:
43 case DRM_FORMAT_R8:
44 case DRM_FORMAT_RGB332:
Gurchetan Singhf3b22da2016-11-21 10:46:38 -080045 case DRM_FORMAT_YVU420:
Gurchetan Singh03f13562017-02-08 15:21:14 -080046 case DRM_FORMAT_YVU420_ANDROID:
Gurchetan Singhd6fb5772016-08-29 19:13:51 -070047 return 8;
Stéphane Marchesin25a26062014-09-12 16:18:59 -070048
Gurchetan Singhf3b22da2016-11-21 10:46:38 -080049 case DRM_FORMAT_NV12:
Gurchetan Singh6423ecb2017-03-29 08:23:40 -070050 return (plane == 0) ? 8 : 4;
Yuly Novikov96c7a3b2015-12-08 22:48:29 -050051
Gurchetan Singhf3b22da2016-11-21 10:46:38 -080052 case DRM_FORMAT_ABGR1555:
Gurchetan Singhe8ab0a52016-11-21 11:36:31 -080053 case DRM_FORMAT_ABGR4444:
54 case DRM_FORMAT_ARGB1555:
55 case DRM_FORMAT_ARGB4444:
Gurchetan Singhf3b22da2016-11-21 10:46:38 -080056 case DRM_FORMAT_BGR565:
Gurchetan Singhe8ab0a52016-11-21 11:36:31 -080057 case DRM_FORMAT_BGRA4444:
58 case DRM_FORMAT_BGRA5551:
59 case DRM_FORMAT_BGRX4444:
60 case DRM_FORMAT_BGRX5551:
61 case DRM_FORMAT_GR88:
62 case DRM_FORMAT_RG88:
63 case DRM_FORMAT_RGB565:
64 case DRM_FORMAT_RGBA4444:
65 case DRM_FORMAT_RGBA5551:
66 case DRM_FORMAT_RGBX4444:
67 case DRM_FORMAT_RGBX5551:
Gurchetan Singhf3b22da2016-11-21 10:46:38 -080068 case DRM_FORMAT_UYVY:
69 case DRM_FORMAT_VYUY:
Gurchetan Singhe8ab0a52016-11-21 11:36:31 -080070 case DRM_FORMAT_XBGR1555:
71 case DRM_FORMAT_XBGR4444:
72 case DRM_FORMAT_XRGB1555:
73 case DRM_FORMAT_XRGB4444:
74 case DRM_FORMAT_YUYV:
75 case DRM_FORMAT_YVYU:
Gurchetan Singhd6fb5772016-08-29 19:13:51 -070076 return 16;
Stéphane Marchesin25a26062014-09-12 16:18:59 -070077
Gurchetan Singhf3b22da2016-11-21 10:46:38 -080078 case DRM_FORMAT_BGR888:
Gurchetan Singhe8ab0a52016-11-21 11:36:31 -080079 case DRM_FORMAT_RGB888:
Gurchetan Singhd6fb5772016-08-29 19:13:51 -070080 return 24;
Stéphane Marchesin25a26062014-09-12 16:18:59 -070081
Gurchetan Singhf3b22da2016-11-21 10:46:38 -080082 case DRM_FORMAT_ABGR2101010:
Gurchetan Singhe8ab0a52016-11-21 11:36:31 -080083 case DRM_FORMAT_ABGR8888:
84 case DRM_FORMAT_ARGB2101010:
85 case DRM_FORMAT_ARGB8888:
Gurchetan Singhf3b22da2016-11-21 10:46:38 -080086 case DRM_FORMAT_AYUV:
Gurchetan Singhe8ab0a52016-11-21 11:36:31 -080087 case DRM_FORMAT_BGRA1010102:
88 case DRM_FORMAT_BGRA8888:
89 case DRM_FORMAT_BGRX1010102:
90 case DRM_FORMAT_BGRX8888:
91 case DRM_FORMAT_RGBA1010102:
92 case DRM_FORMAT_RGBA8888:
93 case DRM_FORMAT_RGBX1010102:
94 case DRM_FORMAT_RGBX8888:
95 case DRM_FORMAT_XBGR2101010:
96 case DRM_FORMAT_XBGR8888:
97 case DRM_FORMAT_XRGB2101010:
98 case DRM_FORMAT_XRGB8888:
Gurchetan Singhd6fb5772016-08-29 19:13:51 -070099 return 32;
Stéphane Marchesin25a26062014-09-12 16:18:59 -0700100 }
101
Gurchetan Singh46faf6b2016-08-05 14:40:07 -0700102 fprintf(stderr, "drv: UNKNOWN FORMAT %d\n", format);
Stéphane Marchesin25a26062014-09-12 16:18:59 -0700103 return 0;
104}
105
Gurchetan Singh6423ecb2017-03-29 08:23:40 -0700106uint32_t drv_bo_get_stride_in_pixels(struct bo *bo)
107{
Gurchetan Singh1b1d56a2017-03-10 16:25:23 -0800108 uint32_t bytes_per_pixel = DIV_ROUND_UP(bpp_from_format(bo->format, 0), 8);
Gurchetan Singh6423ecb2017-03-29 08:23:40 -0700109 return DIV_ROUND_UP(bo->strides[0], bytes_per_pixel);
110}
111
Gurchetan Singh83dc4fb2016-07-19 15:52:33 -0700112/*
Gurchetan Singh4f298f92017-03-23 11:29:26 -0700113 * This function returns the stride for a given format, width and plane.
114 */
115uint32_t drv_stride_from_format(uint32_t format, uint32_t width, size_t plane)
116{
Gurchetan Singh1b1d56a2017-03-10 16:25:23 -0800117 uint32_t stride = DIV_ROUND_UP(width * bpp_from_format(format, plane), 8);
Gurchetan Singh4f298f92017-03-23 11:29:26 -0700118
119 /*
Gurchetan Singh4f298f92017-03-23 11:29:26 -0700120 * The stride of Android YV12 buffers is required to be aligned to 16 bytes
121 * (see <system/graphics.h>).
122 */
123 if (format == DRM_FORMAT_YVU420_ANDROID)
Gurchetan Singh1b1d56a2017-03-10 16:25:23 -0800124 stride = (plane == 0) ? ALIGN(stride, 32) : ALIGN(stride, 16);
Gurchetan Singh4f298f92017-03-23 11:29:26 -0700125
126 return stride;
127}
128
129/*
Gurchetan Singh6423ecb2017-03-29 08:23:40 -0700130 * This function fills in the buffer object given the driver aligned stride of
131 * the first plane, height and a format. This function assumes there is just
132 * one kernel buffer per buffer object.
Gurchetan Singh42cc6d62016-08-29 18:19:19 -0700133 */
Gurchetan Singh1b1d56a2017-03-10 16:25:23 -0800134int drv_bo_from_format(struct bo *bo, uint32_t stride, uint32_t aligned_height, uint32_t format)
Gurchetan Singh42cc6d62016-08-29 18:19:19 -0700135{
136
Gurchetan Singh2a119342016-11-02 10:40:51 -0700137 size_t p, num_planes;
138 uint32_t offset = 0;
139
140 num_planes = drv_num_planes_from_format(format);
141 assert(num_planes);
Gurchetan Singh03f13562017-02-08 15:21:14 -0800142 bo->total_size = 0;
Gurchetan Singh2a119342016-11-02 10:40:51 -0700143
144 for (p = 0; p < num_planes; p++) {
Gurchetan Singh6423ecb2017-03-29 08:23:40 -0700145 bo->strides[p] = subsample_stride(stride, format, p);
Gurchetan Singh1b1d56a2017-03-10 16:25:23 -0800146 bo->sizes[p] = drv_size_from_format(format, bo->strides[p], bo->height, p);
Gurchetan Singh2a119342016-11-02 10:40:51 -0700147 bo->offsets[p] = offset;
148 offset += bo->sizes[p];
Gurchetan Singh1b1d56a2017-03-10 16:25:23 -0800149 bo->total_size += drv_size_from_format(format, bo->strides[p], aligned_height, p);
Gurchetan Singh42cc6d62016-08-29 18:19:19 -0700150 }
151
152 return 0;
153}
154
Gurchetan Singh1b1d56a2017-03-10 16:25:23 -0800155int drv_dumb_bo_create(struct bo *bo, uint32_t width, uint32_t height, uint32_t format,
156 uint32_t flags)
Stéphane Marchesin25a26062014-09-12 16:18:59 -0700157{
Stéphane Marchesin25a26062014-09-12 16:18:59 -0700158 int ret;
Gurchetan Singhd5f8e442017-03-16 13:05:45 -0700159 size_t plane;
Gurchetan Singh6423ecb2017-03-29 08:23:40 -0700160 uint32_t aligned_width, aligned_height;
Gurchetan Singhd5f8e442017-03-16 13:05:45 -0700161 struct drm_mode_create_dumb create_dumb;
Stéphane Marchesin25a26062014-09-12 16:18:59 -0700162
Gurchetan Singhd5f8e442017-03-16 13:05:45 -0700163 aligned_width = width;
164 aligned_height = height;
Gurchetan Singhd5f8e442017-03-16 13:05:45 -0700165 if (format == DRM_FORMAT_YVU420_ANDROID) {
166 /*
Gurchetan Singh6423ecb2017-03-29 08:23:40 -0700167 * Align width to 32 pixels, so chroma strides are 16 bytes as
Gurchetan Singhd5f8e442017-03-16 13:05:45 -0700168 * Android requires.
169 */
170 aligned_width = ALIGN(width, 32);
171 aligned_height = 3 * DIV_ROUND_UP(height, 2);
172 }
Yuly Novikov96c7a3b2015-12-08 22:48:29 -0500173
Stéphane Marchesin25a26062014-09-12 16:18:59 -0700174 memset(&create_dumb, 0, sizeof(create_dumb));
Gurchetan Singhd5f8e442017-03-16 13:05:45 -0700175 create_dumb.height = aligned_height;
176 create_dumb.width = aligned_width;
Gurchetan Singh6423ecb2017-03-29 08:23:40 -0700177 create_dumb.bpp = bpp_from_format(format, 0);
Stéphane Marchesin25a26062014-09-12 16:18:59 -0700178 create_dumb.flags = 0;
179
Gurchetan Singh46faf6b2016-08-05 14:40:07 -0700180 ret = drmIoctl(bo->drv->fd, DRM_IOCTL_MODE_CREATE_DUMB, &create_dumb);
Ilja H. Friedelf9d2ab72015-04-09 14:08:36 -0700181 if (ret) {
Gurchetan Singh46faf6b2016-08-05 14:40:07 -0700182 fprintf(stderr, "drv: DRM_IOCTL_MODE_CREATE_DUMB failed\n");
Stéphane Marchesin25a26062014-09-12 16:18:59 -0700183 return ret;
Ilja H. Friedelf9d2ab72015-04-09 14:08:36 -0700184 }
Stéphane Marchesin25a26062014-09-12 16:18:59 -0700185
Gurchetan Singh6423ecb2017-03-29 08:23:40 -0700186 drv_bo_from_format(bo, create_dumb.pitch, height, format);
Stéphane Marchesin25a26062014-09-12 16:18:59 -0700187
Gurchetan Singhd5f8e442017-03-16 13:05:45 -0700188 for (plane = 0; plane < bo->num_planes; plane++)
189 bo->handles[plane].u32 = create_dumb.handle;
190
191 bo->total_size = create_dumb.size;
Stéphane Marchesin25a26062014-09-12 16:18:59 -0700192 return 0;
193}
194
Gurchetan Singh46faf6b2016-08-05 14:40:07 -0700195int drv_dumb_bo_destroy(struct bo *bo)
Stéphane Marchesin25a26062014-09-12 16:18:59 -0700196{
197 struct drm_mode_destroy_dumb destroy_dumb;
198 int ret;
199
200 memset(&destroy_dumb, 0, sizeof(destroy_dumb));
Yuly Novikov96c7a3b2015-12-08 22:48:29 -0500201 destroy_dumb.handle = bo->handles[0].u32;
Stéphane Marchesin25a26062014-09-12 16:18:59 -0700202
Gurchetan Singh46faf6b2016-08-05 14:40:07 -0700203 ret = drmIoctl(bo->drv->fd, DRM_IOCTL_MODE_DESTROY_DUMB, &destroy_dumb);
Ilja H. Friedelf9d2ab72015-04-09 14:08:36 -0700204 if (ret) {
Gurchetan Singh085bff12017-03-20 13:05:49 -0700205 fprintf(stderr, "drv: DRM_IOCTL_MODE_DESTROY_DUMB failed (handle=%x)\n",
Gurchetan Singh1b1d56a2017-03-10 16:25:23 -0800206 bo->handles[0].u32);
Stéphane Marchesin25a26062014-09-12 16:18:59 -0700207 return ret;
Ilja H. Friedelf9d2ab72015-04-09 14:08:36 -0700208 }
Stéphane Marchesin25a26062014-09-12 16:18:59 -0700209
210 return 0;
211}
212
Gurchetan Singh46faf6b2016-08-05 14:40:07 -0700213int drv_gem_bo_destroy(struct bo *bo)
Stéphane Marchesin25a26062014-09-12 16:18:59 -0700214{
215 struct drm_gem_close gem_close;
Yuly Novikov96c7a3b2015-12-08 22:48:29 -0500216 int ret, error = 0;
217 size_t plane, i;
Stéphane Marchesin25a26062014-09-12 16:18:59 -0700218
Yuly Novikov96c7a3b2015-12-08 22:48:29 -0500219 for (plane = 0; plane < bo->num_planes; plane++) {
Gurchetan Singhf64487b2016-07-14 19:54:44 -0700220 for (i = 0; i < plane; i++)
221 if (bo->handles[i].u32 == bo->handles[plane].u32)
222 break;
223 /* Make sure close hasn't already been called on this handle */
224 if (i != plane)
Yuly Novikov96c7a3b2015-12-08 22:48:29 -0500225 continue;
Stéphane Marchesin25a26062014-09-12 16:18:59 -0700226
Yuly Novikov96c7a3b2015-12-08 22:48:29 -0500227 memset(&gem_close, 0, sizeof(gem_close));
228 gem_close.handle = bo->handles[plane].u32;
229
Gurchetan Singh46faf6b2016-08-05 14:40:07 -0700230 ret = drmIoctl(bo->drv->fd, DRM_IOCTL_GEM_CLOSE, &gem_close);
Yuly Novikov96c7a3b2015-12-08 22:48:29 -0500231 if (ret) {
Gurchetan Singh085bff12017-03-20 13:05:49 -0700232 fprintf(stderr, "drv: DRM_IOCTL_GEM_CLOSE failed (handle=%x) error %d\n",
Gurchetan Singh1b1d56a2017-03-10 16:25:23 -0800233 bo->handles[plane].u32, ret);
Yuly Novikov96c7a3b2015-12-08 22:48:29 -0500234 error = ret;
235 }
Ilja H. Friedelf9d2ab72015-04-09 14:08:36 -0700236 }
Stéphane Marchesin25a26062014-09-12 16:18:59 -0700237
Yuly Novikov96c7a3b2015-12-08 22:48:29 -0500238 return error;
Stéphane Marchesin25a26062014-09-12 16:18:59 -0700239}
Gurchetan Singh1647fbe2016-08-03 17:14:55 -0700240
Gurchetan Singh71611d62017-01-03 16:49:56 -0800241int drv_prime_bo_import(struct bo *bo, struct drv_import_fd_data *data)
242{
243 int ret;
244 size_t plane;
245 struct drm_prime_handle prime_handle;
246
247 for (plane = 0; plane < bo->num_planes; plane++) {
248 memset(&prime_handle, 0, sizeof(prime_handle));
249 prime_handle.fd = data->fds[plane];
250
Gurchetan Singh1b1d56a2017-03-10 16:25:23 -0800251 ret = drmIoctl(bo->drv->fd, DRM_IOCTL_PRIME_FD_TO_HANDLE, &prime_handle);
Gurchetan Singh71611d62017-01-03 16:49:56 -0800252
253 if (ret) {
Gurchetan Singh085bff12017-03-20 13:05:49 -0700254 fprintf(stderr, "drv: DRM_IOCTL_PRIME_FD_TO_HANDLE failed (fd=%u)\n",
Gurchetan Singh1b1d56a2017-03-10 16:25:23 -0800255 prime_handle.fd);
Gurchetan Singh71611d62017-01-03 16:49:56 -0800256
257 /*
258 * Need to call GEM close on planes that were opened,
259 * if any. Adjust the num_planes variable to be the
260 * plane that failed, so GEM close will be called on
261 * planes before that plane.
262 */
263 bo->num_planes = plane;
264 drv_gem_bo_destroy(bo);
265 return ret;
266 }
267
268 bo->handles[plane].u32 = prime_handle.handle;
269 }
270
271 for (plane = 0; plane < bo->num_planes; plane++) {
272 pthread_mutex_lock(&bo->drv->driver_lock);
273 drv_increment_reference_count(bo->drv, bo, plane);
274 pthread_mutex_unlock(&bo->drv->driver_lock);
275 }
276
277 return 0;
278}
279
Gurchetan Singh1a31e602016-10-06 10:58:00 -0700280void *drv_dumb_bo_map(struct bo *bo, struct map_info *data, size_t plane)
Gurchetan Singhef920532016-08-12 16:38:25 -0700281{
282 int ret;
Gurchetan Singh1a31e602016-10-06 10:58:00 -0700283 size_t i;
Gurchetan Singhef920532016-08-12 16:38:25 -0700284 struct drm_mode_map_dumb map_dumb;
285
286 memset(&map_dumb, 0, sizeof(map_dumb));
Gurchetan Singh1a31e602016-10-06 10:58:00 -0700287 map_dumb.handle = bo->handles[plane].u32;
Gurchetan Singhef920532016-08-12 16:38:25 -0700288
289 ret = drmIoctl(bo->drv->fd, DRM_IOCTL_MODE_MAP_DUMB, &map_dumb);
290 if (ret) {
291 fprintf(stderr, "drv: DRM_IOCTL_MODE_MAP_DUMB failed \n");
292 return MAP_FAILED;
293 }
294
Gurchetan Singh1a31e602016-10-06 10:58:00 -0700295 for (i = 0; i < bo->num_planes; i++)
296 if (bo->handles[i].u32 == bo->handles[plane].u32)
297 data->length += bo->sizes[i];
298
Gurchetan Singh1b1d56a2017-03-10 16:25:23 -0800299 return mmap(0, data->length, PROT_READ | PROT_WRITE, MAP_SHARED, bo->drv->fd,
300 map_dumb.offset);
Gurchetan Singhef920532016-08-12 16:38:25 -0700301}
302
Gurchetan Singh1b1d56a2017-03-10 16:25:23 -0800303uintptr_t drv_get_reference_count(struct driver *drv, struct bo *bo, size_t plane)
Gurchetan Singh1647fbe2016-08-03 17:14:55 -0700304{
305 void *count;
306 uintptr_t num = 0;
307
308 if (!drmHashLookup(drv->buffer_table, bo->handles[plane].u32, &count))
Gurchetan Singh1b1d56a2017-03-10 16:25:23 -0800309 num = (uintptr_t)(count);
Gurchetan Singh1647fbe2016-08-03 17:14:55 -0700310
311 return num;
312}
313
Gurchetan Singh1b1d56a2017-03-10 16:25:23 -0800314void drv_increment_reference_count(struct driver *drv, struct bo *bo, size_t plane)
Gurchetan Singh1647fbe2016-08-03 17:14:55 -0700315{
316 uintptr_t num = drv_get_reference_count(drv, bo, plane);
317
318 /* If a value isn't in the table, drmHashDelete is a no-op */
319 drmHashDelete(drv->buffer_table, bo->handles[plane].u32);
Gurchetan Singh1b1d56a2017-03-10 16:25:23 -0800320 drmHashInsert(drv->buffer_table, bo->handles[plane].u32, (void *)(num + 1));
Gurchetan Singh1647fbe2016-08-03 17:14:55 -0700321}
322
Gurchetan Singh1b1d56a2017-03-10 16:25:23 -0800323void drv_decrement_reference_count(struct driver *drv, struct bo *bo, size_t plane)
Gurchetan Singh1647fbe2016-08-03 17:14:55 -0700324{
325 uintptr_t num = drv_get_reference_count(drv, bo, plane);
326
327 drmHashDelete(drv->buffer_table, bo->handles[plane].u32);
328
329 if (num > 0)
Gurchetan Singh1b1d56a2017-03-10 16:25:23 -0800330 drmHashInsert(drv->buffer_table, bo->handles[plane].u32, (void *)(num - 1));
Gurchetan Singh1647fbe2016-08-03 17:14:55 -0700331}
Gurchetan Singhef920532016-08-12 16:38:25 -0700332
Akshu Agrawal0337d9b2016-07-28 15:35:45 +0530333uint32_t drv_log_base2(uint32_t value)
334{
335 int ret = 0;
336
337 while (value >>= 1)
338 ++ret;
339
340 return ret;
341}
Gurchetan Singh179687e2016-10-28 10:07:35 -0700342
Gurchetan Singh1b1d56a2017-03-10 16:25:23 -0800343int drv_add_combination(struct driver *drv, uint32_t format, struct format_metadata *metadata,
344 uint64_t usage)
Gurchetan Singh179687e2016-10-28 10:07:35 -0700345{
Gurchetan Singh6b41fb52017-03-01 20:14:39 -0800346 struct combinations *combos = &drv->backend->combos;
347 if (combos->size >= combos->allocations) {
348 struct combination *new_data;
349 combos->allocations *= 2;
Gurchetan Singh1b1d56a2017-03-10 16:25:23 -0800350 new_data = realloc(combos->data, combos->allocations * sizeof(*combos->data));
Gurchetan Singh6b41fb52017-03-01 20:14:39 -0800351 if (!new_data)
352 return -ENOMEM;
Gurchetan Singh179687e2016-10-28 10:07:35 -0700353
Gurchetan Singh6b41fb52017-03-01 20:14:39 -0800354 combos->data = new_data;
Gurchetan Singh179687e2016-10-28 10:07:35 -0700355 }
356
Gurchetan Singh6b41fb52017-03-01 20:14:39 -0800357 combos->data[combos->size].format = format;
358 combos->data[combos->size].metadata.priority = metadata->priority;
359 combos->data[combos->size].metadata.tiling = metadata->tiling;
360 combos->data[combos->size].metadata.modifier = metadata->modifier;
361 combos->data[combos->size].usage = usage;
362 combos->size++;
363 return 0;
Gurchetan Singh179687e2016-10-28 10:07:35 -0700364}
365
Gurchetan Singh1b1d56a2017-03-10 16:25:23 -0800366int drv_add_combinations(struct driver *drv, const uint32_t *formats, uint32_t num_formats,
367 struct format_metadata *metadata, uint64_t usage)
Gurchetan Singh179687e2016-10-28 10:07:35 -0700368{
369 int ret;
Gurchetan Singh6b41fb52017-03-01 20:14:39 -0800370 uint32_t i;
371 for (i = 0; i < num_formats; i++) {
372 ret = drv_add_combination(drv, formats[i], metadata, usage);
373 if (ret)
374 return ret;
375 }
376
377 return 0;
378}
379
Gurchetan Singh1b1d56a2017-03-10 16:25:23 -0800380void drv_modify_combination(struct driver *drv, uint32_t format, struct format_metadata *metadata,
381 uint64_t usage)
Gurchetan Singh6b41fb52017-03-01 20:14:39 -0800382{
383 uint32_t i;
384 struct combination *combo;
385 /* Attempts to add the specified usage to an existing combination. */
386 for (i = 0; i < drv->backend->combos.size; i++) {
387 combo = &drv->backend->combos.data[i];
Gurchetan Singh1b1d56a2017-03-10 16:25:23 -0800388 if (combo->format == format && combo->metadata.tiling == metadata->tiling &&
Gurchetan Singh6b41fb52017-03-01 20:14:39 -0800389 combo->metadata.modifier == metadata->modifier)
390 combo->usage |= usage;
391 }
392}
393
394struct kms_item *drv_query_kms(struct driver *drv, uint32_t *num_items)
395{
Gurchetan Singh179687e2016-10-28 10:07:35 -0700396 uint64_t flag, usage;
Gurchetan Singh6b41fb52017-03-01 20:14:39 -0800397 struct kms_item *items;
398 uint32_t i, j, k, allocations, item_size;
399
Gurchetan Singh179687e2016-10-28 10:07:35 -0700400 drmModePlanePtr plane;
401 drmModePropertyPtr prop;
402 drmModePlaneResPtr resources;
403 drmModeObjectPropertiesPtr props;
404
Gurchetan Singh6b41fb52017-03-01 20:14:39 -0800405 /* Start with a power of 2 number of allocations. */
406 allocations = 2;
407 item_size = 0;
408 items = calloc(allocations, sizeof(*items));
409 if (!items)
410 goto out;
Gurchetan Singh179687e2016-10-28 10:07:35 -0700411
412 /*
413 * The ability to return universal planes is only complete on
414 * ChromeOS kernel versions >= v3.18. The SET_CLIENT_CAP ioctl
415 * therefore might return an error code, so don't check it. If it
416 * fails, it'll just return the plane list as overlay planes, which is
417 * fine in our case (our drivers already have cursor bits set).
418 * modetest in libdrm does the same thing.
419 */
420 drmSetClientCap(drv->fd, DRM_CLIENT_CAP_UNIVERSAL_PLANES, 1);
421
422 resources = drmModeGetPlaneResources(drv->fd);
423 if (!resources)
Gurchetan Singh6b41fb52017-03-01 20:14:39 -0800424 goto out;
Gurchetan Singh179687e2016-10-28 10:07:35 -0700425
426 for (i = 0; i < resources->count_planes; i++) {
Gurchetan Singh179687e2016-10-28 10:07:35 -0700427 plane = drmModeGetPlane(drv->fd, resources->planes[i]);
Gurchetan Singh179687e2016-10-28 10:07:35 -0700428 if (!plane)
Gurchetan Singh6b41fb52017-03-01 20:14:39 -0800429 goto out;
Gurchetan Singh179687e2016-10-28 10:07:35 -0700430
Gurchetan Singh1b1d56a2017-03-10 16:25:23 -0800431 props = drmModeObjectGetProperties(drv->fd, plane->plane_id, DRM_MODE_OBJECT_PLANE);
Gurchetan Singh179687e2016-10-28 10:07:35 -0700432 if (!props)
Gurchetan Singh6b41fb52017-03-01 20:14:39 -0800433 goto out;
Gurchetan Singh179687e2016-10-28 10:07:35 -0700434
435 for (j = 0; j < props->count_props; j++) {
Gurchetan Singh179687e2016-10-28 10:07:35 -0700436 prop = drmModeGetProperty(drv->fd, props->props[j]);
437 if (prop) {
438 if (strcmp(prop->name, "type") == 0) {
439 flag = props->prop_values[j];
440 }
Gurchetan Singh6b41fb52017-03-01 20:14:39 -0800441
Gurchetan Singh179687e2016-10-28 10:07:35 -0700442 drmModeFreeProperty(prop);
443 }
444 }
445
446 switch (flag) {
447 case DRM_PLANE_TYPE_OVERLAY:
448 case DRM_PLANE_TYPE_PRIMARY:
Gurchetan Singh458976f2016-11-23 17:32:33 -0800449 usage = BO_USE_SCANOUT;
Gurchetan Singh179687e2016-10-28 10:07:35 -0700450 break;
451 case DRM_PLANE_TYPE_CURSOR:
Gurchetan Singh458976f2016-11-23 17:32:33 -0800452 usage = BO_USE_CURSOR;
Gurchetan Singh179687e2016-10-28 10:07:35 -0700453 break;
454 default:
455 assert(0);
456 }
457
Gurchetan Singh6b41fb52017-03-01 20:14:39 -0800458 for (j = 0; j < plane->count_formats; j++) {
459 bool found = false;
460 for (k = 0; k < item_size; k++) {
461 if (items[k].format == plane->formats[j] &&
462 items[k].modifier == DRM_FORMAT_MOD_NONE) {
463 items[k].usage |= usage;
464 found = true;
465 break;
466 }
467 }
468
469 if (!found && item_size >= allocations) {
470 struct kms_item *new_data = NULL;
471 allocations *= 2;
Gurchetan Singh1b1d56a2017-03-10 16:25:23 -0800472 new_data = realloc(items, allocations * sizeof(*items));
Gurchetan Singh6b41fb52017-03-01 20:14:39 -0800473 if (!new_data) {
474 item_size = 0;
475 goto out;
476 }
477
478 items = new_data;
479 }
480
481 if (!found) {
482 items[item_size].format = plane->formats[j];
483 items[item_size].modifier = DRM_FORMAT_MOD_NONE;
484 items[item_size].usage = usage;
485 item_size++;
486 }
487 }
Gurchetan Singh179687e2016-10-28 10:07:35 -0700488
489 drmModeFreeObjectProperties(props);
490 drmModeFreePlane(plane);
Gurchetan Singh179687e2016-10-28 10:07:35 -0700491 }
492
493 drmModeFreePlaneResources(resources);
Gurchetan Singh6b41fb52017-03-01 20:14:39 -0800494out:
495 if (items && item_size == 0) {
496 free(items);
497 items = NULL;
498 }
Gurchetan Singh179687e2016-10-28 10:07:35 -0700499
Gurchetan Singh6b41fb52017-03-01 20:14:39 -0800500 *num_items = item_size;
501 return items;
502}
503
Gurchetan Singh1b1d56a2017-03-10 16:25:23 -0800504int drv_add_linear_combinations(struct driver *drv, const uint32_t *formats, uint32_t num_formats)
Gurchetan Singh6b41fb52017-03-01 20:14:39 -0800505{
506 int ret;
507 uint32_t i, j, num_items;
508 struct kms_item *items;
509 struct combination *combo;
510 struct format_metadata metadata;
511
512 metadata.tiling = 0;
513 metadata.priority = 1;
514 metadata.modifier = DRM_FORMAT_MOD_NONE;
515
Gurchetan Singh1b1d56a2017-03-10 16:25:23 -0800516 ret = drv_add_combinations(drv, formats, num_formats, &metadata, BO_COMMON_USE_MASK);
Gurchetan Singh6b41fb52017-03-01 20:14:39 -0800517 if (ret)
518 return ret;
519 /*
520 * All current drivers can scanout linear XRGB8888/ARGB8888 as a primary
521 * plane and as a cursor. Some drivers don't support
522 * drmModeGetPlaneResources, so add the combination here. Note that the
523 * kernel disregards the alpha component of ARGB unless it's an overlay
524 * plane.
525 */
Gurchetan Singh1b1d56a2017-03-10 16:25:23 -0800526 drv_modify_combination(drv, DRM_FORMAT_XRGB8888, &metadata, BO_USE_CURSOR | BO_USE_SCANOUT);
527 drv_modify_combination(drv, DRM_FORMAT_ARGB8888, &metadata, BO_USE_CURSOR | BO_USE_SCANOUT);
Gurchetan Singh6b41fb52017-03-01 20:14:39 -0800528
529 items = drv_query_kms(drv, &num_items);
530 if (!items || !num_items)
531 return 0;
532
533 for (i = 0; i < num_items; i++) {
534 for (j = 0; j < drv->backend->combos.size; j++) {
535 combo = &drv->backend->combos.data[j];
536 if (items[i].format == combo->format)
537 combo->usage |= BO_USE_SCANOUT;
Gurchetan Singh6b41fb52017-03-01 20:14:39 -0800538 }
539 }
540
541 free(items);
542 return 0;
Gurchetan Singh179687e2016-10-28 10:07:35 -0700543}