blob: 23d17bdd5a314fb681a0bf47883c340a4af39ae9 [file] [log] [blame]
Stéphane Marchesin25a26062014-09-12 16:18:59 -07001/*
2 * Copyright (c) 2014 The Chromium OS Authors. All rights reserved.
3 * 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
Yuly Novikov96c7a3b2015-12-08 22:48:29 -0500156 bo->handles[0].u32 = create_dumb.handle;
157 bo->offsets[0] = 0;
Gurchetan Singha40ca9e2016-08-29 19:51:45 -0700158 bo->total_size = bo->sizes[0] = create_dumb.size;
Yuly Novikov96c7a3b2015-12-08 22:48:29 -0500159 bo->strides[0] = create_dumb.pitch;
Stéphane Marchesin25a26062014-09-12 16:18:59 -0700160
161 return 0;
162}
163
Gurchetan Singh46faf6b2016-08-05 14:40:07 -0700164int drv_dumb_bo_destroy(struct bo *bo)
Stéphane Marchesin25a26062014-09-12 16:18:59 -0700165{
166 struct drm_mode_destroy_dumb destroy_dumb;
167 int ret;
168
169 memset(&destroy_dumb, 0, sizeof(destroy_dumb));
Yuly Novikov96c7a3b2015-12-08 22:48:29 -0500170 destroy_dumb.handle = bo->handles[0].u32;
Stéphane Marchesin25a26062014-09-12 16:18:59 -0700171
Gurchetan Singh46faf6b2016-08-05 14:40:07 -0700172 ret = drmIoctl(bo->drv->fd, DRM_IOCTL_MODE_DESTROY_DUMB, &destroy_dumb);
Ilja H. Friedelf9d2ab72015-04-09 14:08:36 -0700173 if (ret) {
Gurchetan Singh46faf6b2016-08-05 14:40:07 -0700174 fprintf(stderr, "drv: DRM_IOCTL_MODE_DESTROY_DUMB failed "
Yuly Novikov96c7a3b2015-12-08 22:48:29 -0500175 "(handle=%x)\n", bo->handles[0].u32);
Stéphane Marchesin25a26062014-09-12 16:18:59 -0700176 return ret;
Ilja H. Friedelf9d2ab72015-04-09 14:08:36 -0700177 }
Stéphane Marchesin25a26062014-09-12 16:18:59 -0700178
179 return 0;
180}
181
Gurchetan Singh46faf6b2016-08-05 14:40:07 -0700182int drv_gem_bo_destroy(struct bo *bo)
Stéphane Marchesin25a26062014-09-12 16:18:59 -0700183{
184 struct drm_gem_close gem_close;
Yuly Novikov96c7a3b2015-12-08 22:48:29 -0500185 int ret, error = 0;
186 size_t plane, i;
Stéphane Marchesin25a26062014-09-12 16:18:59 -0700187
Yuly Novikov96c7a3b2015-12-08 22:48:29 -0500188 for (plane = 0; plane < bo->num_planes; plane++) {
Gurchetan Singhf64487b2016-07-14 19:54:44 -0700189 for (i = 0; i < plane; i++)
190 if (bo->handles[i].u32 == bo->handles[plane].u32)
191 break;
192 /* Make sure close hasn't already been called on this handle */
193 if (i != plane)
Yuly Novikov96c7a3b2015-12-08 22:48:29 -0500194 continue;
Stéphane Marchesin25a26062014-09-12 16:18:59 -0700195
Yuly Novikov96c7a3b2015-12-08 22:48:29 -0500196 memset(&gem_close, 0, sizeof(gem_close));
197 gem_close.handle = bo->handles[plane].u32;
198
Gurchetan Singh46faf6b2016-08-05 14:40:07 -0700199 ret = drmIoctl(bo->drv->fd, DRM_IOCTL_GEM_CLOSE, &gem_close);
Yuly Novikov96c7a3b2015-12-08 22:48:29 -0500200 if (ret) {
Gurchetan Singh46faf6b2016-08-05 14:40:07 -0700201 fprintf(stderr, "drv: DRM_IOCTL_GEM_CLOSE failed "
Yuly Novikov96c7a3b2015-12-08 22:48:29 -0500202 "(handle=%x) error %d\n",
203 bo->handles[plane].u32, ret);
204 error = ret;
205 }
Ilja H. Friedelf9d2ab72015-04-09 14:08:36 -0700206 }
Stéphane Marchesin25a26062014-09-12 16:18:59 -0700207
Yuly Novikov96c7a3b2015-12-08 22:48:29 -0500208 return error;
Stéphane Marchesin25a26062014-09-12 16:18:59 -0700209}
Gurchetan Singh1647fbe2016-08-03 17:14:55 -0700210
Gurchetan Singh1a31e602016-10-06 10:58:00 -0700211void *drv_dumb_bo_map(struct bo *bo, struct map_info *data, size_t plane)
Gurchetan Singhef920532016-08-12 16:38:25 -0700212{
213 int ret;
Gurchetan Singh1a31e602016-10-06 10:58:00 -0700214 size_t i;
Gurchetan Singhef920532016-08-12 16:38:25 -0700215 struct drm_mode_map_dumb map_dumb;
216
217 memset(&map_dumb, 0, sizeof(map_dumb));
Gurchetan Singh1a31e602016-10-06 10:58:00 -0700218 map_dumb.handle = bo->handles[plane].u32;
Gurchetan Singhef920532016-08-12 16:38:25 -0700219
220 ret = drmIoctl(bo->drv->fd, DRM_IOCTL_MODE_MAP_DUMB, &map_dumb);
221 if (ret) {
222 fprintf(stderr, "drv: DRM_IOCTL_MODE_MAP_DUMB failed \n");
223 return MAP_FAILED;
224 }
225
Gurchetan Singh1a31e602016-10-06 10:58:00 -0700226 for (i = 0; i < bo->num_planes; i++)
227 if (bo->handles[i].u32 == bo->handles[plane].u32)
228 data->length += bo->sizes[i];
229
230 return mmap(0, data->length, PROT_READ | PROT_WRITE, MAP_SHARED,
Gurchetan Singhef920532016-08-12 16:38:25 -0700231 bo->drv->fd, map_dumb.offset);
232}
233
Gurchetan Singh1647fbe2016-08-03 17:14:55 -0700234uintptr_t drv_get_reference_count(struct driver *drv, struct bo *bo,
235 size_t plane)
236{
237 void *count;
238 uintptr_t num = 0;
239
240 if (!drmHashLookup(drv->buffer_table, bo->handles[plane].u32, &count))
241 num = (uintptr_t) (count);
242
243 return num;
244}
245
246void drv_increment_reference_count(struct driver *drv, struct bo *bo,
247 size_t plane)
248{
249 uintptr_t num = drv_get_reference_count(drv, bo, plane);
250
251 /* If a value isn't in the table, drmHashDelete is a no-op */
252 drmHashDelete(drv->buffer_table, bo->handles[plane].u32);
253 drmHashInsert(drv->buffer_table, bo->handles[plane].u32,
254 (void *) (num + 1));
255}
256
257void drv_decrement_reference_count(struct driver *drv, struct bo *bo,
258 size_t plane)
259{
260 uintptr_t num = drv_get_reference_count(drv, bo, plane);
261
262 drmHashDelete(drv->buffer_table, bo->handles[plane].u32);
263
264 if (num > 0)
265 drmHashInsert(drv->buffer_table, bo->handles[plane].u32,
266 (void *) (num - 1));
267}
Gurchetan Singhef920532016-08-12 16:38:25 -0700268
Akshu Agrawal0337d9b2016-07-28 15:35:45 +0530269uint32_t drv_log_base2(uint32_t value)
270{
271 int ret = 0;
272
273 while (value >>= 1)
274 ++ret;
275
276 return ret;
277}
Gurchetan Singh179687e2016-10-28 10:07:35 -0700278
Gurchetan Singh0cefbe92016-12-01 13:36:04 -0800279/* Inserts a combination into list -- caller should have lock on driver. */
Gurchetan Singh179687e2016-10-28 10:07:35 -0700280void drv_insert_supported_combination(struct driver *drv, uint32_t format,
281 uint64_t usage, uint64_t modifier)
282{
Gurchetan Singh179687e2016-10-28 10:07:35 -0700283 struct combination_list_element *elem;
284
Gurchetan Singh0cefbe92016-12-01 13:36:04 -0800285 elem = calloc(1, sizeof(*elem));
286 elem->combination.format = format;
287 elem->combination.modifier = modifier;
288 elem->combination.usage = usage;
289 LIST_ADD(&elem->link, &drv->backend->combinations);
290}
291
292void drv_insert_combinations(struct driver *drv, struct supported_combination *combos,
293 uint32_t size)
294{
295 unsigned int i;
296
297 pthread_mutex_lock(&drv->driver_lock);
298
299 for (i = 0; i < size; i++)
300 drv_insert_supported_combination(drv, combos[i].format,
301 combos[i].usage,
302 combos[i].modifier);
303
304 pthread_mutex_unlock(&drv->driver_lock);
305}
306
307void drv_modify_supported_combination(struct driver *drv, uint32_t format,
308 uint64_t usage, uint64_t modifier)
309{
310 /*
311 * Attempts to add the specified usage to an existing {format, modifier}
312 * pair. If the pair is not present, a new combination is created.
313 */
314 int found = 0;
315
Gurchetan Singh27dd4702016-11-23 17:27:52 -0800316 pthread_mutex_lock(&drv->driver_lock);
Gurchetan Singh179687e2016-10-28 10:07:35 -0700317
318 list_for_each_entry(struct combination_list_element,
319 elem, &drv->backend->combinations, link) {
320 if (elem->combination.format == format &&
321 elem->combination.modifier == modifier) {
322 elem->combination.usage |= usage;
323 found = 1;
324 }
325 }
326
Gurchetan Singh179687e2016-10-28 10:07:35 -0700327
Gurchetan Singh0cefbe92016-12-01 13:36:04 -0800328 if (!found)
329 drv_insert_supported_combination(drv, format, usage, modifier);
Gurchetan Singh179687e2016-10-28 10:07:35 -0700330
Gurchetan Singh27dd4702016-11-23 17:27:52 -0800331 pthread_mutex_unlock(&drv->driver_lock);
Gurchetan Singh179687e2016-10-28 10:07:35 -0700332}
333
Gurchetan Singh179687e2016-10-28 10:07:35 -0700334int drv_add_kms_flags(struct driver *drv)
335{
336 int ret;
337 uint32_t i, j;
338 uint64_t flag, usage;
339 drmModePlanePtr plane;
340 drmModePropertyPtr prop;
341 drmModePlaneResPtr resources;
342 drmModeObjectPropertiesPtr props;
343
344 /*
345 * All current drivers can scanout XRGB8888/ARGB8888 as a primary plane.
346 * Some older kernel versions can only return overlay planes, so add the
347 * combination here. Note that the kernel disregards the alpha component
348 * of ARGB unless it's an overlay plane.
349 */
Gurchetan Singh0cefbe92016-12-01 13:36:04 -0800350 drv_modify_supported_combination(drv, DRM_FORMAT_XRGB8888,
Gurchetan Singh458976f2016-11-23 17:32:33 -0800351 BO_USE_SCANOUT, 0);
Gurchetan Singh0cefbe92016-12-01 13:36:04 -0800352 drv_modify_supported_combination(drv, DRM_FORMAT_ARGB8888,
Gurchetan Singh458976f2016-11-23 17:32:33 -0800353 BO_USE_SCANOUT, 0);
Gurchetan Singh179687e2016-10-28 10:07:35 -0700354
355 /*
356 * The ability to return universal planes is only complete on
357 * ChromeOS kernel versions >= v3.18. The SET_CLIENT_CAP ioctl
358 * therefore might return an error code, so don't check it. If it
359 * fails, it'll just return the plane list as overlay planes, which is
360 * fine in our case (our drivers already have cursor bits set).
361 * modetest in libdrm does the same thing.
362 */
363 drmSetClientCap(drv->fd, DRM_CLIENT_CAP_UNIVERSAL_PLANES, 1);
364
365 resources = drmModeGetPlaneResources(drv->fd);
366 if (!resources)
367 goto err;
368
369 for (i = 0; i < resources->count_planes; i++) {
370
371 plane = drmModeGetPlane(drv->fd, resources->planes[i]);
372
373 if (!plane)
374 goto err;
375
376 props = drmModeObjectGetProperties(drv->fd, plane->plane_id,
377 DRM_MODE_OBJECT_PLANE);
378 if (!props)
379 goto err;
380
381 for (j = 0; j < props->count_props; j++) {
382
383 prop = drmModeGetProperty(drv->fd, props->props[j]);
384 if (prop) {
385 if (strcmp(prop->name, "type") == 0) {
386 flag = props->prop_values[j];
387 }
388 drmModeFreeProperty(prop);
389 }
390 }
391
392 switch (flag) {
393 case DRM_PLANE_TYPE_OVERLAY:
394 case DRM_PLANE_TYPE_PRIMARY:
Gurchetan Singh458976f2016-11-23 17:32:33 -0800395 usage = BO_USE_SCANOUT;
Gurchetan Singh179687e2016-10-28 10:07:35 -0700396 break;
397 case DRM_PLANE_TYPE_CURSOR:
Gurchetan Singh458976f2016-11-23 17:32:33 -0800398 usage = BO_USE_CURSOR;
Gurchetan Singh179687e2016-10-28 10:07:35 -0700399 break;
400 default:
401 assert(0);
402 }
403
404 for (j = 0; j < plane->count_formats; j++)
Gurchetan Singh0cefbe92016-12-01 13:36:04 -0800405 drv_modify_supported_combination(drv, plane->formats[j],
Gurchetan Singh179687e2016-10-28 10:07:35 -0700406 usage, 0);
407
408 drmModeFreeObjectProperties(props);
409 drmModeFreePlane(plane);
410
411 }
412
413 drmModeFreePlaneResources(resources);
414 return 0;
415
416err:
417 ret = -1;
418 return ret;
419}