blob: a1d97dbf8fa221d95f227dae90baca16c3c7c127 [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>
14
Gurchetan Singh46faf6b2016-08-05 14:40:07 -070015#include "drv_priv.h"
Lauri Peltonen904a8792015-01-17 13:57:51 +020016#include "helpers.h"
Yuly Novikov96c7a3b2015-12-08 22:48:29 -050017#include "util.h"
18
Gurchetan Singh46faf6b2016-08-05 14:40:07 -070019size_t drv_num_planes_from_format(uint32_t format)
Yuly Novikov96c7a3b2015-12-08 22:48:29 -050020{
Gurchetan Singhd6fb5772016-08-29 19:13:51 -070021 switch (format) {
22 case DRV_FORMAT_C8:
23 case DRV_FORMAT_R8:
24 case DRV_FORMAT_RG88:
25 case DRV_FORMAT_GR88:
26 case DRV_FORMAT_RGB332:
27 case DRV_FORMAT_BGR233:
28 case DRV_FORMAT_XRGB4444:
29 case DRV_FORMAT_XBGR4444:
30 case DRV_FORMAT_RGBX4444:
31 case DRV_FORMAT_BGRX4444:
32 case DRV_FORMAT_ARGB4444:
33 case DRV_FORMAT_ABGR4444:
34 case DRV_FORMAT_RGBA4444:
35 case DRV_FORMAT_BGRA4444:
36 case DRV_FORMAT_XRGB1555:
37 case DRV_FORMAT_XBGR1555:
38 case DRV_FORMAT_RGBX5551:
39 case DRV_FORMAT_BGRX5551:
40 case DRV_FORMAT_ARGB1555:
41 case DRV_FORMAT_ABGR1555:
42 case DRV_FORMAT_RGBA5551:
43 case DRV_FORMAT_BGRA5551:
44 case DRV_FORMAT_RGB565:
45 case DRV_FORMAT_BGR565:
46 case DRV_FORMAT_YUYV:
47 case DRV_FORMAT_YVYU:
48 case DRV_FORMAT_UYVY:
49 case DRV_FORMAT_VYUY:
50 case DRV_FORMAT_RGB888:
51 case DRV_FORMAT_BGR888:
52 case DRV_FORMAT_XRGB8888:
53 case DRV_FORMAT_XBGR8888:
54 case DRV_FORMAT_RGBX8888:
55 case DRV_FORMAT_BGRX8888:
56 case DRV_FORMAT_ARGB8888:
57 case DRV_FORMAT_ABGR8888:
58 case DRV_FORMAT_RGBA8888:
59 case DRV_FORMAT_BGRA8888:
60 case DRV_FORMAT_XRGB2101010:
61 case DRV_FORMAT_XBGR2101010:
62 case DRV_FORMAT_RGBX1010102:
63 case DRV_FORMAT_BGRX1010102:
64 case DRV_FORMAT_ARGB2101010:
65 case DRV_FORMAT_ABGR2101010:
66 case DRV_FORMAT_RGBA1010102:
67 case DRV_FORMAT_BGRA1010102:
68 case DRV_FORMAT_AYUV:
69 return 1;
70 case DRV_FORMAT_NV12:
71 return 2;
72 case DRV_FORMAT_YVU420:
73 return 3;
Yuly Novikov96c7a3b2015-12-08 22:48:29 -050074 }
75
Gurchetan Singh46faf6b2016-08-05 14:40:07 -070076 fprintf(stderr, "drv: UNKNOWN FORMAT %d\n", format);
Yuly Novikov96c7a3b2015-12-08 22:48:29 -050077 return 0;
78}
Stéphane Marchesin25a26062014-09-12 16:18:59 -070079
Gurchetan Singh83dc4fb2016-07-19 15:52:33 -070080int drv_bpp_from_format(uint32_t format, size_t plane)
Stéphane Marchesin25a26062014-09-12 16:18:59 -070081{
Gurchetan Singh83dc4fb2016-07-19 15:52:33 -070082 assert(plane < drv_num_planes_from_format(format));
83
Gurchetan Singhd6fb5772016-08-29 19:13:51 -070084 switch (format) {
85 case DRV_FORMAT_C8:
86 case DRV_FORMAT_R8:
87 case DRV_FORMAT_RGB332:
88 case DRV_FORMAT_BGR233:
89 return 8;
Stéphane Marchesin25a26062014-09-12 16:18:59 -070090
Gurchetan Singhd6fb5772016-08-29 19:13:51 -070091 case DRV_FORMAT_NV12:
92 return (plane == 0) ? 8 : 4;
93 case DRV_FORMAT_YVU420:
94 return (plane == 0) ? 8 : 2;
Yuly Novikov96c7a3b2015-12-08 22:48:29 -050095
Gurchetan Singhd6fb5772016-08-29 19:13:51 -070096 case DRV_FORMAT_RG88:
97 case DRV_FORMAT_GR88:
98 case DRV_FORMAT_XRGB4444:
99 case DRV_FORMAT_XBGR4444:
100 case DRV_FORMAT_RGBX4444:
101 case DRV_FORMAT_BGRX4444:
102 case DRV_FORMAT_ARGB4444:
103 case DRV_FORMAT_ABGR4444:
104 case DRV_FORMAT_RGBA4444:
105 case DRV_FORMAT_BGRA4444:
106 case DRV_FORMAT_XRGB1555:
107 case DRV_FORMAT_XBGR1555:
108 case DRV_FORMAT_RGBX5551:
109 case DRV_FORMAT_BGRX5551:
110 case DRV_FORMAT_ARGB1555:
111 case DRV_FORMAT_ABGR1555:
112 case DRV_FORMAT_RGBA5551:
113 case DRV_FORMAT_BGRA5551:
114 case DRV_FORMAT_RGB565:
115 case DRV_FORMAT_BGR565:
116 case DRV_FORMAT_YUYV:
117 case DRV_FORMAT_YVYU:
118 case DRV_FORMAT_UYVY:
119 case DRV_FORMAT_VYUY:
120 return 16;
Stéphane Marchesin25a26062014-09-12 16:18:59 -0700121
Gurchetan Singhd6fb5772016-08-29 19:13:51 -0700122 case DRV_FORMAT_RGB888:
123 case DRV_FORMAT_BGR888:
124 return 24;
Stéphane Marchesin25a26062014-09-12 16:18:59 -0700125
Gurchetan Singhd6fb5772016-08-29 19:13:51 -0700126 case DRV_FORMAT_XRGB8888:
127 case DRV_FORMAT_XBGR8888:
128 case DRV_FORMAT_RGBX8888:
129 case DRV_FORMAT_BGRX8888:
130 case DRV_FORMAT_ARGB8888:
131 case DRV_FORMAT_ABGR8888:
132 case DRV_FORMAT_RGBA8888:
133 case DRV_FORMAT_BGRA8888:
134 case DRV_FORMAT_XRGB2101010:
135 case DRV_FORMAT_XBGR2101010:
136 case DRV_FORMAT_RGBX1010102:
137 case DRV_FORMAT_BGRX1010102:
138 case DRV_FORMAT_ARGB2101010:
139 case DRV_FORMAT_ABGR2101010:
140 case DRV_FORMAT_RGBA1010102:
141 case DRV_FORMAT_BGRA1010102:
142 case DRV_FORMAT_AYUV:
143 return 32;
Stéphane Marchesin25a26062014-09-12 16:18:59 -0700144 }
145
Gurchetan Singh46faf6b2016-08-05 14:40:07 -0700146 fprintf(stderr, "drv: UNKNOWN FORMAT %d\n", format);
Stéphane Marchesin25a26062014-09-12 16:18:59 -0700147 return 0;
148}
149
Gurchetan Singh83dc4fb2016-07-19 15:52:33 -0700150/*
151 * This function returns the stride for a given format, width and plane.
152 */
153int drv_stride_from_format(uint32_t format, uint32_t width, size_t plane)
Stéphane Marchesin25a26062014-09-12 16:18:59 -0700154{
Gurchetan Singh83dc4fb2016-07-19 15:52:33 -0700155 /* Get stride of the first plane */
156 int stride = width * DIV_ROUND_UP(drv_bpp_from_format(format, 0), 8);
157
158 /*
159 * Only downsample for certain multiplanar formats which are not
160 * interleaved and have horizontal subsampling. Only formats supported
161 * by our drivers are listed here -- add more as needed.
162 */
163 if (plane != 0) {
164 switch (format) {
Gurchetan Singhd6fb5772016-08-29 19:13:51 -0700165 case DRV_FORMAT_YVU420:
166 stride = stride / 2;
Gurchetan Singh83dc4fb2016-07-19 15:52:33 -0700167 }
168 }
169
170 return stride;
Stéphane Marchesin25a26062014-09-12 16:18:59 -0700171}
172
Gurchetan Singh42cc6d62016-08-29 18:19:19 -0700173/*
174 * This function fills in the buffer object given driver aligned dimensions
175 * and a format. This function assumes there is just one kernel buffer per
176 * buffer object.
177 */
178int drv_bo_from_format(struct bo *bo, uint32_t width, uint32_t height,
179 drv_format_t format)
180{
181
182 switch (format) {
183 case DRV_FORMAT_YVU420:
184 bo->strides[0] = drv_stride_from_format(format, width, 0);
185 bo->strides[1] = drv_stride_from_format(format, width, 1);
186 bo->strides[2] = drv_stride_from_format(format, width, 2);
187 bo->sizes[0] = height * bo->strides[0];
188 bo->sizes[1] = bo->sizes[2] = (height / 2) * bo->strides[1];
189 bo->offsets[0] = 0;
190 bo->offsets[1] = bo->sizes[0];
191 bo->offsets[2] = bo->offsets[1] + bo->sizes[1];
192 break;
193 case DRV_FORMAT_NV12:
194 bo->strides[0] = drv_stride_from_format(format, width, 0);
195 bo->strides[1] = drv_stride_from_format(format, width, 1);
196 bo->sizes[0] = height * bo->strides[0];
197 bo->sizes[1] = height * bo->strides[1] / 2;
198 bo->offsets[0] = 0;
199 bo->offsets[1] = height * bo->strides[0];
200 break;
201 default:
202 bo->strides[0] = drv_stride_from_format(format, width, 0);
203 bo->sizes[0] = height * bo->strides[0];
204 bo->offsets[0] = 0;
205 }
206
Gurchetan Singha40ca9e2016-08-29 19:51:45 -0700207 bo->total_size = bo->offsets[bo->num_planes - 1] +
208 bo->sizes[bo->num_planes - 1];
209
Gurchetan Singh42cc6d62016-08-29 18:19:19 -0700210 return 0;
211}
212
Gurchetan Singh46faf6b2016-08-05 14:40:07 -0700213int drv_dumb_bo_create(struct bo *bo, uint32_t width, uint32_t height,
Stéphane Marchesinec88e892015-11-03 16:14:59 -0800214 uint32_t format, uint32_t flags)
Stéphane Marchesin25a26062014-09-12 16:18:59 -0700215{
216 struct drm_mode_create_dumb create_dumb;
217 int ret;
218
Yuly Novikov96c7a3b2015-12-08 22:48:29 -0500219 /* Only single-plane formats are supported */
Gurchetan Singh46faf6b2016-08-05 14:40:07 -0700220 assert(drv_num_planes_from_format(format) == 1);
Yuly Novikov96c7a3b2015-12-08 22:48:29 -0500221
Stéphane Marchesin25a26062014-09-12 16:18:59 -0700222 memset(&create_dumb, 0, sizeof(create_dumb));
223 create_dumb.height = height;
224 create_dumb.width = width;
Gurchetan Singh83dc4fb2016-07-19 15:52:33 -0700225 create_dumb.bpp = drv_bpp_from_format(format, 0);
Stéphane Marchesin25a26062014-09-12 16:18:59 -0700226 create_dumb.flags = 0;
227
Gurchetan Singh46faf6b2016-08-05 14:40:07 -0700228 ret = drmIoctl(bo->drv->fd, DRM_IOCTL_MODE_CREATE_DUMB, &create_dumb);
Ilja H. Friedelf9d2ab72015-04-09 14:08:36 -0700229 if (ret) {
Gurchetan Singh46faf6b2016-08-05 14:40:07 -0700230 fprintf(stderr, "drv: DRM_IOCTL_MODE_CREATE_DUMB failed\n");
Stéphane Marchesin25a26062014-09-12 16:18:59 -0700231 return ret;
Ilja H. Friedelf9d2ab72015-04-09 14:08:36 -0700232 }
Stéphane Marchesin25a26062014-09-12 16:18:59 -0700233
Yuly Novikov96c7a3b2015-12-08 22:48:29 -0500234 bo->handles[0].u32 = create_dumb.handle;
235 bo->offsets[0] = 0;
Gurchetan Singha40ca9e2016-08-29 19:51:45 -0700236 bo->total_size = bo->sizes[0] = create_dumb.size;
Yuly Novikov96c7a3b2015-12-08 22:48:29 -0500237 bo->strides[0] = create_dumb.pitch;
Stéphane Marchesin25a26062014-09-12 16:18:59 -0700238
239 return 0;
240}
241
Gurchetan Singh46faf6b2016-08-05 14:40:07 -0700242int drv_dumb_bo_destroy(struct bo *bo)
Stéphane Marchesin25a26062014-09-12 16:18:59 -0700243{
244 struct drm_mode_destroy_dumb destroy_dumb;
245 int ret;
246
247 memset(&destroy_dumb, 0, sizeof(destroy_dumb));
Yuly Novikov96c7a3b2015-12-08 22:48:29 -0500248 destroy_dumb.handle = bo->handles[0].u32;
Stéphane Marchesin25a26062014-09-12 16:18:59 -0700249
Gurchetan Singh46faf6b2016-08-05 14:40:07 -0700250 ret = drmIoctl(bo->drv->fd, DRM_IOCTL_MODE_DESTROY_DUMB, &destroy_dumb);
Ilja H. Friedelf9d2ab72015-04-09 14:08:36 -0700251 if (ret) {
Gurchetan Singh46faf6b2016-08-05 14:40:07 -0700252 fprintf(stderr, "drv: DRM_IOCTL_MODE_DESTROY_DUMB failed "
Yuly Novikov96c7a3b2015-12-08 22:48:29 -0500253 "(handle=%x)\n", bo->handles[0].u32);
Stéphane Marchesin25a26062014-09-12 16:18:59 -0700254 return ret;
Ilja H. Friedelf9d2ab72015-04-09 14:08:36 -0700255 }
Stéphane Marchesin25a26062014-09-12 16:18:59 -0700256
257 return 0;
258}
259
Gurchetan Singh46faf6b2016-08-05 14:40:07 -0700260int drv_gem_bo_destroy(struct bo *bo)
Stéphane Marchesin25a26062014-09-12 16:18:59 -0700261{
262 struct drm_gem_close gem_close;
Yuly Novikov96c7a3b2015-12-08 22:48:29 -0500263 int ret, error = 0;
264 size_t plane, i;
Stéphane Marchesin25a26062014-09-12 16:18:59 -0700265
Yuly Novikov96c7a3b2015-12-08 22:48:29 -0500266 for (plane = 0; plane < bo->num_planes; plane++) {
Gurchetan Singhf64487b2016-07-14 19:54:44 -0700267 for (i = 0; i < plane; i++)
268 if (bo->handles[i].u32 == bo->handles[plane].u32)
269 break;
270 /* Make sure close hasn't already been called on this handle */
271 if (i != plane)
Yuly Novikov96c7a3b2015-12-08 22:48:29 -0500272 continue;
Stéphane Marchesin25a26062014-09-12 16:18:59 -0700273
Yuly Novikov96c7a3b2015-12-08 22:48:29 -0500274 memset(&gem_close, 0, sizeof(gem_close));
275 gem_close.handle = bo->handles[plane].u32;
276
Gurchetan Singh46faf6b2016-08-05 14:40:07 -0700277 ret = drmIoctl(bo->drv->fd, DRM_IOCTL_GEM_CLOSE, &gem_close);
Yuly Novikov96c7a3b2015-12-08 22:48:29 -0500278 if (ret) {
Gurchetan Singh46faf6b2016-08-05 14:40:07 -0700279 fprintf(stderr, "drv: DRM_IOCTL_GEM_CLOSE failed "
Yuly Novikov96c7a3b2015-12-08 22:48:29 -0500280 "(handle=%x) error %d\n",
281 bo->handles[plane].u32, ret);
282 error = ret;
283 }
Ilja H. Friedelf9d2ab72015-04-09 14:08:36 -0700284 }
Stéphane Marchesin25a26062014-09-12 16:18:59 -0700285
Yuly Novikov96c7a3b2015-12-08 22:48:29 -0500286 return error;
Stéphane Marchesin25a26062014-09-12 16:18:59 -0700287}
Gurchetan Singh1647fbe2016-08-03 17:14:55 -0700288
Gurchetan Singh1a31e602016-10-06 10:58:00 -0700289void *drv_dumb_bo_map(struct bo *bo, struct map_info *data, size_t plane)
Gurchetan Singhef920532016-08-12 16:38:25 -0700290{
291 int ret;
Gurchetan Singh1a31e602016-10-06 10:58:00 -0700292 size_t i;
Gurchetan Singhef920532016-08-12 16:38:25 -0700293 struct drm_mode_map_dumb map_dumb;
294
295 memset(&map_dumb, 0, sizeof(map_dumb));
Gurchetan Singh1a31e602016-10-06 10:58:00 -0700296 map_dumb.handle = bo->handles[plane].u32;
Gurchetan Singhef920532016-08-12 16:38:25 -0700297
298 ret = drmIoctl(bo->drv->fd, DRM_IOCTL_MODE_MAP_DUMB, &map_dumb);
299 if (ret) {
300 fprintf(stderr, "drv: DRM_IOCTL_MODE_MAP_DUMB failed \n");
301 return MAP_FAILED;
302 }
303
Gurchetan Singh1a31e602016-10-06 10:58:00 -0700304 for (i = 0; i < bo->num_planes; i++)
305 if (bo->handles[i].u32 == bo->handles[plane].u32)
306 data->length += bo->sizes[i];
307
308 return mmap(0, data->length, PROT_READ | PROT_WRITE, MAP_SHARED,
Gurchetan Singhef920532016-08-12 16:38:25 -0700309 bo->drv->fd, map_dumb.offset);
310}
311
Gurchetan Singh1647fbe2016-08-03 17:14:55 -0700312uintptr_t drv_get_reference_count(struct driver *drv, struct bo *bo,
313 size_t plane)
314{
315 void *count;
316 uintptr_t num = 0;
317
318 if (!drmHashLookup(drv->buffer_table, bo->handles[plane].u32, &count))
319 num = (uintptr_t) (count);
320
321 return num;
322}
323
324void drv_increment_reference_count(struct driver *drv, struct bo *bo,
325 size_t plane)
326{
327 uintptr_t num = drv_get_reference_count(drv, bo, plane);
328
329 /* If a value isn't in the table, drmHashDelete is a no-op */
330 drmHashDelete(drv->buffer_table, bo->handles[plane].u32);
331 drmHashInsert(drv->buffer_table, bo->handles[plane].u32,
332 (void *) (num + 1));
333}
334
335void drv_decrement_reference_count(struct driver *drv, struct bo *bo,
336 size_t plane)
337{
338 uintptr_t num = drv_get_reference_count(drv, bo, plane);
339
340 drmHashDelete(drv->buffer_table, bo->handles[plane].u32);
341
342 if (num > 0)
343 drmHashInsert(drv->buffer_table, bo->handles[plane].u32,
344 (void *) (num - 1));
345}
Gurchetan Singhef920532016-08-12 16:38:25 -0700346
347uint32_t drv_num_buffers_per_bo(struct bo *bo)
348{
349 uint32_t count = 0;
350 size_t plane, p;
351
352 for (plane = 0; plane < bo->num_planes; plane++) {
353 for (p = 0; p < plane; p++) {
354 if (bo->handles[p].u32 == bo->handles[plane].u32)
355 break;
356 }
357
358 if (p == plane)
359 count++;
360 }
361
362 return count;
363}
Akshu Agrawal0337d9b2016-07-28 15:35:45 +0530364
365uint32_t drv_log_base2(uint32_t value)
366{
367 int ret = 0;
368
369 while (value >>= 1)
370 ++ret;
371
372 return ret;
373}
374