blob: 87aad9df17bbaf816fd058110dd3a71a06c6d5be [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>
8#include <stdbool.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
Gurchetan Singh83dc4fb2016-07-19 15:52:33 -070020int drv_bpp_from_format(uint32_t format, size_t plane)
Stéphane Marchesin25a26062014-09-12 16:18:59 -070021{
Gurchetan Singh83dc4fb2016-07-19 15:52:33 -070022 assert(plane < drv_num_planes_from_format(format));
23
Gurchetan Singhd6fb5772016-08-29 19:13:51 -070024 switch (format) {
Gurchetan Singhe8ab0a52016-11-21 11:36:31 -080025 case DRM_FORMAT_BGR233:
Gurchetan Singhf3b22da2016-11-21 10:46:38 -080026 case DRM_FORMAT_C8:
27 case DRM_FORMAT_R8:
28 case DRM_FORMAT_RGB332:
Gurchetan Singhf3b22da2016-11-21 10:46:38 -080029 case DRM_FORMAT_YVU420:
Gurchetan Singhd6fb5772016-08-29 19:13:51 -070030 return 8;
Stéphane Marchesin25a26062014-09-12 16:18:59 -070031
Gurchetan Singh2a119342016-11-02 10:40:51 -070032 /*
33 * NV12 is laid out as follows. Each letter represents a byte.
34 * Y plane:
35 * Y0_0, Y0_1, Y0_2, Y0_3, ..., Y0_N
36 * Y1_0, Y1_1, Y1_2, Y1_3, ..., Y1_N
37 * ...
38 * YM_0, YM_1, YM_2, YM_3, ..., YM_N
39 * CbCr plane:
40 * Cb01_01, Cr01_01, Cb01_23, Cr01_23, ..., Cb01_(N-1)N, Cr01_(N-1)N
41 * Cb23_01, Cr23_01, Cb23_23, Cr23_23, ..., Cb23_(N-1)N, Cr23_(N-1)N
42 * ...
43 * Cb(M-1)M_01, Cr(M-1)M_01, ..., Cb(M-1)M_(N-1)N, Cr(M-1)M_(N-1)N
44 *
45 * Pixel (0, 0) requires Y0_0, Cb01_01 and Cr01_01. Pixel (0, 1) requires
46 * Y0_1, Cb01_01 and Cr01_01. So for a single pixel, 2 bytes of luma data
47 * are required.
48 */
Gurchetan Singhf3b22da2016-11-21 10:46:38 -080049 case DRM_FORMAT_NV12:
Gurchetan Singh2a119342016-11-02 10:40:51 -070050 return (plane == 0) ? 8 : 16;
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 Singh83dc4fb2016-07-19 15:52:33 -0700106/*
Gurchetan Singh42cc6d62016-08-29 18:19:19 -0700107 * This function fills in the buffer object given driver aligned dimensions
108 * and a format. This function assumes there is just one kernel buffer per
109 * buffer object.
110 */
111int drv_bo_from_format(struct bo *bo, uint32_t width, uint32_t height,
Gurchetan Singhf3b22da2016-11-21 10:46:38 -0800112 uint32_t format)
Gurchetan Singh42cc6d62016-08-29 18:19:19 -0700113{
114
Gurchetan Singh2a119342016-11-02 10:40:51 -0700115 size_t p, num_planes;
116 uint32_t offset = 0;
117
118 num_planes = drv_num_planes_from_format(format);
119 assert(num_planes);
120
121 for (p = 0; p < num_planes; p++) {
122 bo->strides[p] = drv_stride_from_format(format, width, p);
123 bo->sizes[p] = drv_size_from_format(format, bo->strides[p],
124 height, p);
125 bo->offsets[p] = offset;
126 offset += bo->sizes[p];
Gurchetan Singh42cc6d62016-08-29 18:19:19 -0700127 }
128
Gurchetan Singha40ca9e2016-08-29 19:51:45 -0700129 bo->total_size = bo->offsets[bo->num_planes - 1] +
130 bo->sizes[bo->num_planes - 1];
131
Gurchetan Singh42cc6d62016-08-29 18:19:19 -0700132 return 0;
133}
134
Gurchetan Singh46faf6b2016-08-05 14:40:07 -0700135int drv_dumb_bo_create(struct bo *bo, uint32_t width, uint32_t height,
Stéphane Marchesinec88e892015-11-03 16:14:59 -0800136 uint32_t format, uint32_t flags)
Stéphane Marchesin25a26062014-09-12 16:18:59 -0700137{
138 struct drm_mode_create_dumb create_dumb;
139 int ret;
140
Yuly Novikov96c7a3b2015-12-08 22:48:29 -0500141 /* Only single-plane formats are supported */
Gurchetan Singh46faf6b2016-08-05 14:40:07 -0700142 assert(drv_num_planes_from_format(format) == 1);
Yuly Novikov96c7a3b2015-12-08 22:48:29 -0500143
Stéphane Marchesin25a26062014-09-12 16:18:59 -0700144 memset(&create_dumb, 0, sizeof(create_dumb));
145 create_dumb.height = height;
146 create_dumb.width = width;
Gurchetan Singh83dc4fb2016-07-19 15:52:33 -0700147 create_dumb.bpp = drv_bpp_from_format(format, 0);
Stéphane Marchesin25a26062014-09-12 16:18:59 -0700148 create_dumb.flags = 0;
149
Gurchetan Singh46faf6b2016-08-05 14:40:07 -0700150 ret = drmIoctl(bo->drv->fd, DRM_IOCTL_MODE_CREATE_DUMB, &create_dumb);
Ilja H. Friedelf9d2ab72015-04-09 14:08:36 -0700151 if (ret) {
Gurchetan Singh46faf6b2016-08-05 14:40:07 -0700152 fprintf(stderr, "drv: DRM_IOCTL_MODE_CREATE_DUMB failed\n");
Stéphane Marchesin25a26062014-09-12 16:18:59 -0700153 return ret;
Ilja H. Friedelf9d2ab72015-04-09 14:08:36 -0700154 }
Stéphane Marchesin25a26062014-09-12 16:18:59 -0700155
Gurchetan Singhbc17b1d2016-12-06 15:43:17 -0800156 bo->width = width;
157 bo->height = height;
Yuly Novikov96c7a3b2015-12-08 22:48:29 -0500158 bo->handles[0].u32 = create_dumb.handle;
159 bo->offsets[0] = 0;
Gurchetan Singha40ca9e2016-08-29 19:51:45 -0700160 bo->total_size = bo->sizes[0] = create_dumb.size;
Yuly Novikov96c7a3b2015-12-08 22:48:29 -0500161 bo->strides[0] = create_dumb.pitch;
Stéphane Marchesin25a26062014-09-12 16:18:59 -0700162
163 return 0;
164}
165
Gurchetan Singh46faf6b2016-08-05 14:40:07 -0700166int drv_dumb_bo_destroy(struct bo *bo)
Stéphane Marchesin25a26062014-09-12 16:18:59 -0700167{
168 struct drm_mode_destroy_dumb destroy_dumb;
169 int ret;
170
171 memset(&destroy_dumb, 0, sizeof(destroy_dumb));
Yuly Novikov96c7a3b2015-12-08 22:48:29 -0500172 destroy_dumb.handle = bo->handles[0].u32;
Stéphane Marchesin25a26062014-09-12 16:18:59 -0700173
Gurchetan Singh46faf6b2016-08-05 14:40:07 -0700174 ret = drmIoctl(bo->drv->fd, DRM_IOCTL_MODE_DESTROY_DUMB, &destroy_dumb);
Ilja H. Friedelf9d2ab72015-04-09 14:08:36 -0700175 if (ret) {
Gurchetan Singh46faf6b2016-08-05 14:40:07 -0700176 fprintf(stderr, "drv: DRM_IOCTL_MODE_DESTROY_DUMB failed "
Yuly Novikov96c7a3b2015-12-08 22:48:29 -0500177 "(handle=%x)\n", bo->handles[0].u32);
Stéphane Marchesin25a26062014-09-12 16:18:59 -0700178 return ret;
Ilja H. Friedelf9d2ab72015-04-09 14:08:36 -0700179 }
Stéphane Marchesin25a26062014-09-12 16:18:59 -0700180
181 return 0;
182}
183
Gurchetan Singh46faf6b2016-08-05 14:40:07 -0700184int drv_gem_bo_destroy(struct bo *bo)
Stéphane Marchesin25a26062014-09-12 16:18:59 -0700185{
186 struct drm_gem_close gem_close;
Yuly Novikov96c7a3b2015-12-08 22:48:29 -0500187 int ret, error = 0;
188 size_t plane, i;
Stéphane Marchesin25a26062014-09-12 16:18:59 -0700189
Yuly Novikov96c7a3b2015-12-08 22:48:29 -0500190 for (plane = 0; plane < bo->num_planes; plane++) {
Gurchetan Singhf64487b2016-07-14 19:54:44 -0700191 for (i = 0; i < plane; i++)
192 if (bo->handles[i].u32 == bo->handles[plane].u32)
193 break;
194 /* Make sure close hasn't already been called on this handle */
195 if (i != plane)
Yuly Novikov96c7a3b2015-12-08 22:48:29 -0500196 continue;
Stéphane Marchesin25a26062014-09-12 16:18:59 -0700197
Yuly Novikov96c7a3b2015-12-08 22:48:29 -0500198 memset(&gem_close, 0, sizeof(gem_close));
199 gem_close.handle = bo->handles[plane].u32;
200
Gurchetan Singh46faf6b2016-08-05 14:40:07 -0700201 ret = drmIoctl(bo->drv->fd, DRM_IOCTL_GEM_CLOSE, &gem_close);
Yuly Novikov96c7a3b2015-12-08 22:48:29 -0500202 if (ret) {
Gurchetan Singh46faf6b2016-08-05 14:40:07 -0700203 fprintf(stderr, "drv: DRM_IOCTL_GEM_CLOSE failed "
Yuly Novikov96c7a3b2015-12-08 22:48:29 -0500204 "(handle=%x) error %d\n",
205 bo->handles[plane].u32, ret);
206 error = ret;
207 }
Ilja H. Friedelf9d2ab72015-04-09 14:08:36 -0700208 }
Stéphane Marchesin25a26062014-09-12 16:18:59 -0700209
Yuly Novikov96c7a3b2015-12-08 22:48:29 -0500210 return error;
Stéphane Marchesin25a26062014-09-12 16:18:59 -0700211}
Gurchetan Singh1647fbe2016-08-03 17:14:55 -0700212
Gurchetan Singh71611d62017-01-03 16:49:56 -0800213int drv_prime_bo_import(struct bo *bo, struct drv_import_fd_data *data)
214{
215 int ret;
216 size_t plane;
217 struct drm_prime_handle prime_handle;
218
219 for (plane = 0; plane < bo->num_planes; plane++) {
220 memset(&prime_handle, 0, sizeof(prime_handle));
221 prime_handle.fd = data->fds[plane];
222
223 ret = drmIoctl(bo->drv->fd, DRM_IOCTL_PRIME_FD_TO_HANDLE,
224 &prime_handle);
225
226 if (ret) {
227 fprintf(stderr, "drv: DRM_IOCTL_PRIME_FD_TO_HANDLE "
228 "failed (fd=%u)\n", prime_handle.fd);
229
230 /*
231 * Need to call GEM close on planes that were opened,
232 * if any. Adjust the num_planes variable to be the
233 * plane that failed, so GEM close will be called on
234 * planes before that plane.
235 */
236 bo->num_planes = plane;
237 drv_gem_bo_destroy(bo);
238 return ret;
239 }
240
241 bo->handles[plane].u32 = prime_handle.handle;
242 }
243
244 for (plane = 0; plane < bo->num_planes; plane++) {
245 pthread_mutex_lock(&bo->drv->driver_lock);
246 drv_increment_reference_count(bo->drv, bo, plane);
247 pthread_mutex_unlock(&bo->drv->driver_lock);
248 }
249
250 return 0;
251}
252
Gurchetan Singh1a31e602016-10-06 10:58:00 -0700253void *drv_dumb_bo_map(struct bo *bo, struct map_info *data, size_t plane)
Gurchetan Singhef920532016-08-12 16:38:25 -0700254{
255 int ret;
Gurchetan Singh1a31e602016-10-06 10:58:00 -0700256 size_t i;
Gurchetan Singhef920532016-08-12 16:38:25 -0700257 struct drm_mode_map_dumb map_dumb;
258
259 memset(&map_dumb, 0, sizeof(map_dumb));
Gurchetan Singh1a31e602016-10-06 10:58:00 -0700260 map_dumb.handle = bo->handles[plane].u32;
Gurchetan Singhef920532016-08-12 16:38:25 -0700261
262 ret = drmIoctl(bo->drv->fd, DRM_IOCTL_MODE_MAP_DUMB, &map_dumb);
263 if (ret) {
264 fprintf(stderr, "drv: DRM_IOCTL_MODE_MAP_DUMB failed \n");
265 return MAP_FAILED;
266 }
267
Gurchetan Singh1a31e602016-10-06 10:58:00 -0700268 for (i = 0; i < bo->num_planes; i++)
269 if (bo->handles[i].u32 == bo->handles[plane].u32)
270 data->length += bo->sizes[i];
271
272 return mmap(0, data->length, PROT_READ | PROT_WRITE, MAP_SHARED,
Gurchetan Singhef920532016-08-12 16:38:25 -0700273 bo->drv->fd, map_dumb.offset);
274}
275
Gurchetan Singh1647fbe2016-08-03 17:14:55 -0700276uintptr_t drv_get_reference_count(struct driver *drv, struct bo *bo,
277 size_t plane)
278{
279 void *count;
280 uintptr_t num = 0;
281
282 if (!drmHashLookup(drv->buffer_table, bo->handles[plane].u32, &count))
283 num = (uintptr_t) (count);
284
285 return num;
286}
287
288void drv_increment_reference_count(struct driver *drv, struct bo *bo,
289 size_t plane)
290{
291 uintptr_t num = drv_get_reference_count(drv, bo, plane);
292
293 /* If a value isn't in the table, drmHashDelete is a no-op */
294 drmHashDelete(drv->buffer_table, bo->handles[plane].u32);
295 drmHashInsert(drv->buffer_table, bo->handles[plane].u32,
296 (void *) (num + 1));
297}
298
299void drv_decrement_reference_count(struct driver *drv, struct bo *bo,
300 size_t plane)
301{
302 uintptr_t num = drv_get_reference_count(drv, bo, plane);
303
304 drmHashDelete(drv->buffer_table, bo->handles[plane].u32);
305
306 if (num > 0)
307 drmHashInsert(drv->buffer_table, bo->handles[plane].u32,
308 (void *) (num - 1));
309}
Gurchetan Singhef920532016-08-12 16:38:25 -0700310
Akshu Agrawal0337d9b2016-07-28 15:35:45 +0530311uint32_t drv_log_base2(uint32_t value)
312{
313 int ret = 0;
314
315 while (value >>= 1)
316 ++ret;
317
318 return ret;
319}
Gurchetan Singh179687e2016-10-28 10:07:35 -0700320
Gurchetan Singh0cefbe92016-12-01 13:36:04 -0800321/* Inserts a combination into list -- caller should have lock on driver. */
Gurchetan Singh179687e2016-10-28 10:07:35 -0700322void drv_insert_supported_combination(struct driver *drv, uint32_t format,
323 uint64_t usage, uint64_t modifier)
324{
Gurchetan Singh179687e2016-10-28 10:07:35 -0700325 struct combination_list_element *elem;
326
Gurchetan Singh0cefbe92016-12-01 13:36:04 -0800327 elem = calloc(1, sizeof(*elem));
328 elem->combination.format = format;
329 elem->combination.modifier = modifier;
330 elem->combination.usage = usage;
331 LIST_ADD(&elem->link, &drv->backend->combinations);
332}
333
334void drv_insert_combinations(struct driver *drv, struct supported_combination *combos,
335 uint32_t size)
336{
337 unsigned int i;
338
339 pthread_mutex_lock(&drv->driver_lock);
340
341 for (i = 0; i < size; i++)
342 drv_insert_supported_combination(drv, combos[i].format,
343 combos[i].usage,
344 combos[i].modifier);
345
346 pthread_mutex_unlock(&drv->driver_lock);
347}
348
349void drv_modify_supported_combination(struct driver *drv, uint32_t format,
350 uint64_t usage, uint64_t modifier)
351{
352 /*
353 * Attempts to add the specified usage to an existing {format, modifier}
354 * pair. If the pair is not present, a new combination is created.
355 */
356 int found = 0;
357
Gurchetan Singh27dd4702016-11-23 17:27:52 -0800358 pthread_mutex_lock(&drv->driver_lock);
Gurchetan Singh179687e2016-10-28 10:07:35 -0700359
360 list_for_each_entry(struct combination_list_element,
361 elem, &drv->backend->combinations, link) {
362 if (elem->combination.format == format &&
363 elem->combination.modifier == modifier) {
364 elem->combination.usage |= usage;
365 found = 1;
366 }
367 }
368
Gurchetan Singh179687e2016-10-28 10:07:35 -0700369
Gurchetan Singh0cefbe92016-12-01 13:36:04 -0800370 if (!found)
371 drv_insert_supported_combination(drv, format, usage, modifier);
Gurchetan Singh179687e2016-10-28 10:07:35 -0700372
Gurchetan Singh27dd4702016-11-23 17:27:52 -0800373 pthread_mutex_unlock(&drv->driver_lock);
Gurchetan Singh179687e2016-10-28 10:07:35 -0700374}
375
Gurchetan Singh179687e2016-10-28 10:07:35 -0700376int drv_add_kms_flags(struct driver *drv)
377{
378 int ret;
379 uint32_t i, j;
380 uint64_t flag, usage;
381 drmModePlanePtr plane;
382 drmModePropertyPtr prop;
383 drmModePlaneResPtr resources;
384 drmModeObjectPropertiesPtr props;
385
386 /*
387 * All current drivers can scanout XRGB8888/ARGB8888 as a primary plane.
388 * Some older kernel versions can only return overlay planes, so add the
389 * combination here. Note that the kernel disregards the alpha component
390 * of ARGB unless it's an overlay plane.
391 */
Gurchetan Singh0cefbe92016-12-01 13:36:04 -0800392 drv_modify_supported_combination(drv, DRM_FORMAT_XRGB8888,
Gurchetan Singh458976f2016-11-23 17:32:33 -0800393 BO_USE_SCANOUT, 0);
Gurchetan Singh0cefbe92016-12-01 13:36:04 -0800394 drv_modify_supported_combination(drv, DRM_FORMAT_ARGB8888,
Gurchetan Singh458976f2016-11-23 17:32:33 -0800395 BO_USE_SCANOUT, 0);
Gurchetan Singh179687e2016-10-28 10:07:35 -0700396
397 /*
398 * The ability to return universal planes is only complete on
399 * ChromeOS kernel versions >= v3.18. The SET_CLIENT_CAP ioctl
400 * therefore might return an error code, so don't check it. If it
401 * fails, it'll just return the plane list as overlay planes, which is
402 * fine in our case (our drivers already have cursor bits set).
403 * modetest in libdrm does the same thing.
404 */
405 drmSetClientCap(drv->fd, DRM_CLIENT_CAP_UNIVERSAL_PLANES, 1);
406
407 resources = drmModeGetPlaneResources(drv->fd);
408 if (!resources)
409 goto err;
410
411 for (i = 0; i < resources->count_planes; i++) {
412
413 plane = drmModeGetPlane(drv->fd, resources->planes[i]);
414
415 if (!plane)
416 goto err;
417
418 props = drmModeObjectGetProperties(drv->fd, plane->plane_id,
419 DRM_MODE_OBJECT_PLANE);
420 if (!props)
421 goto err;
422
423 for (j = 0; j < props->count_props; j++) {
424
425 prop = drmModeGetProperty(drv->fd, props->props[j]);
426 if (prop) {
427 if (strcmp(prop->name, "type") == 0) {
428 flag = props->prop_values[j];
429 }
430 drmModeFreeProperty(prop);
431 }
432 }
433
434 switch (flag) {
435 case DRM_PLANE_TYPE_OVERLAY:
436 case DRM_PLANE_TYPE_PRIMARY:
Gurchetan Singh458976f2016-11-23 17:32:33 -0800437 usage = BO_USE_SCANOUT;
Gurchetan Singh179687e2016-10-28 10:07:35 -0700438 break;
439 case DRM_PLANE_TYPE_CURSOR:
Gurchetan Singh458976f2016-11-23 17:32:33 -0800440 usage = BO_USE_CURSOR;
Gurchetan Singh179687e2016-10-28 10:07:35 -0700441 break;
442 default:
443 assert(0);
444 }
445
446 for (j = 0; j < plane->count_formats; j++)
Gurchetan Singh0cefbe92016-12-01 13:36:04 -0800447 drv_modify_supported_combination(drv, plane->formats[j],
Gurchetan Singh179687e2016-10-28 10:07:35 -0700448 usage, 0);
449
450 drmModeFreeObjectProperties(props);
451 drmModeFreePlane(plane);
452
453 }
454
455 drmModeFreePlaneResources(resources);
456 return 0;
457
458err:
459 ret = -1;
460 return ret;
461}