-
Notifications
You must be signed in to change notification settings - Fork 0
/
drv.c
497 lines (396 loc) · 9.84 KB
/
drv.c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
/*
* Copyright (c) 2016 The Chromium OS Authors. All rights reserved.
* Use of this source code is governed by a BSD-style license that can be
* found in the LICENSE file.
*/
#include <assert.h>
#include <fcntl.h>
#include <pthread.h>
#include <stdint.h>
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <sys/mman.h>
#include <xf86drm.h>
#include "drv_priv.h"
#include "helpers.h"
#include "util.h"
#ifdef DRV_AMDGPU
extern struct backend backend_amdgpu;
#endif
extern struct backend backend_cirrus;
extern struct backend backend_evdi;
#ifdef DRV_EXYNOS
extern struct backend backend_exynos;
#endif
extern struct backend backend_gma500;
#ifdef DRV_I915
extern struct backend backend_i915;
#endif
#ifdef DRV_MARVELL
extern struct backend backend_marvell;
#endif
#ifdef DRV_MEDIATEK
extern struct backend backend_mediatek;
#endif
#ifdef DRV_ROCKCHIP
extern struct backend backend_rockchip;
#endif
#ifdef DRV_TEGRA
extern struct backend backend_tegra;
#endif
extern struct backend backend_udl;
extern struct backend backend_vgem;
extern struct backend backend_virtio_gpu;
static struct backend *drv_get_backend(int fd)
{
drmVersionPtr drm_version;
unsigned int i;
drm_version = drmGetVersion(fd);
if (!drm_version)
return NULL;
struct backend *backend_list[] = {
#ifdef DRV_AMDGPU
&backend_amdgpu,
#endif
&backend_cirrus,
&backend_evdi,
#ifdef DRV_EXYNOS
&backend_exynos,
#endif
&backend_gma500,
#ifdef DRV_I915
&backend_i915,
#endif
#ifdef DRV_MARVELL
&backend_marvell,
#endif
#ifdef DRV_MEDIATEK
&backend_mediatek,
#endif
#ifdef DRV_ROCKCHIP
&backend_rockchip,
#endif
#ifdef DRV_TEGRA
&backend_tegra,
#endif
&backend_udl,
&backend_vgem,
&backend_virtio_gpu,
};
for(i = 0; i < ARRAY_SIZE(backend_list); i++)
if (!strcmp(drm_version->name, backend_list[i]->name)) {
drmFreeVersion(drm_version);
return backend_list[i];
}
drmFreeVersion(drm_version);
return NULL;
}
struct driver *drv_create(int fd)
{
struct driver *drv;
int ret;
drv = (struct driver *) calloc(1, sizeof(*drv));
if (!drv)
return NULL;
drv->fd = fd;
drv->backend = drv_get_backend(fd);
if (!drv->backend)
goto free_driver;
if (pthread_mutex_init(&drv->table_lock, NULL))
goto free_driver;
drv->buffer_table = drmHashCreate();
if (!drv->buffer_table)
goto free_lock;
drv->map_table = drmHashCreate();
if (!drv->map_table)
goto free_buffer_table;
if (drv->backend->init) {
ret = drv->backend->init(drv);
if (ret)
goto free_map_table;
}
return drv;
free_map_table:
drmHashDestroy(drv->map_table);
free_buffer_table:
drmHashDestroy(drv->buffer_table);
free_lock:
pthread_mutex_destroy(&drv->table_lock);
free_driver:
free(drv);
return NULL;
}
void drv_destroy(struct driver *drv)
{
if (drv->backend->close)
drv->backend->close(drv);
pthread_mutex_destroy(&drv->table_lock);
drmHashDestroy(drv->buffer_table);
drmHashDestroy(drv->map_table);
free(drv);
}
int drv_get_fd(struct driver *drv)
{
return drv->fd;
}
const char *
drv_get_name(struct driver *drv)
{
return drv->backend->name;
}
int drv_is_format_supported(struct driver *drv, drv_format_t format,
uint64_t usage)
{
unsigned int i;
if (format == DRV_FORMAT_NONE || usage == DRV_BO_USE_NONE)
return 0;
for (i = 0 ; i < ARRAY_SIZE(drv->backend->format_list); i++)
{
if (!drv->backend->format_list[i].format)
break;
if (drv->backend->format_list[i].format == format &&
(drv->backend->format_list[i].usage & usage) == usage)
return 1;
}
return 0;
}
struct bo *drv_bo_new(struct driver *drv, uint32_t width, uint32_t height,
drv_format_t format)
{
struct bo *bo;
bo = (struct bo *) calloc(1, sizeof(*bo));
if (!bo)
return NULL;
bo->drv = drv;
bo->width = width;
bo->height = height;
bo->format = format;
bo->num_planes = drv_num_planes_from_format(format);
if (!bo->num_planes) {
free(bo);
return NULL;
}
return bo;
}
struct bo *drv_bo_create(struct driver *drv, uint32_t width, uint32_t height,
drv_format_t format, uint64_t flags)
{
int ret;
size_t plane;
struct bo *bo;
bo = drv_bo_new(drv, width, height, format);
if (!bo)
return NULL;
ret = drv->backend->bo_create(bo, width, height, format, flags);
if (ret) {
free(bo);
return NULL;
}
pthread_mutex_lock(&drv->table_lock);
for (plane = 0; plane < bo->num_planes; plane++)
drv_increment_reference_count(drv, bo, plane);
pthread_mutex_unlock(&drv->table_lock);
return bo;
}
void drv_bo_destroy(struct bo *bo)
{
size_t plane;
uintptr_t total = 0;
struct driver *drv = bo->drv;
pthread_mutex_lock(&drv->table_lock);
for (plane = 0; plane < bo->num_planes; plane++)
drv_decrement_reference_count(drv, bo, plane);
for (plane = 0; plane < bo->num_planes; plane++)
total += drv_get_reference_count(drv, bo, plane);
pthread_mutex_unlock(&drv->table_lock);
if (total == 0)
bo->drv->backend->bo_destroy(bo);
free(bo);
}
struct bo *drv_bo_import(struct driver *drv, struct drv_import_fd_data *data)
{
int ret;
size_t plane;
struct bo *bo;
struct drm_prime_handle prime_handle;
bo = drv_bo_new(drv, data->width, data->height, data->format);
if (!bo)
return NULL;
for (plane = 0; plane < bo->num_planes; plane++) {
memset(&prime_handle, 0, sizeof(prime_handle));
prime_handle.fd = data->fds[plane];
ret = drmIoctl(drv->fd, DRM_IOCTL_PRIME_FD_TO_HANDLE,
&prime_handle);
if (ret) {
fprintf(stderr, "drv: DRM_IOCTL_PRIME_FD_TO_HANDLE failed "
"(fd=%u)\n", prime_handle.fd);
if (plane > 0) {
bo->num_planes = plane;
drv_bo_destroy(bo);
} else {
free(bo);
}
return NULL;
}
bo->handles[plane].u32 = prime_handle.handle;
bo->strides[plane] = data->strides[plane];
bo->offsets[plane] = data->offsets[plane];
bo->sizes[plane] = data->sizes[plane];
bo->format_modifiers[plane] = data->format_modifiers[plane];
bo->total_size += data->sizes[plane];
pthread_mutex_lock(&drv->table_lock);
drv_increment_reference_count(drv, bo, plane);
pthread_mutex_unlock(&drv->table_lock);
}
return bo;
}
void *drv_bo_map(struct bo *bo, uint32_t x, uint32_t y, uint32_t width,
uint32_t height, uint32_t flags, void **map_data, size_t plane)
{
void *ptr;
uint8_t *addr;
size_t offset;
struct map_info *data;
assert(width > 0);
assert(height > 0);
assert(x + width <= drv_bo_get_width(bo));
assert(y + height <= drv_bo_get_height(bo));
pthread_mutex_lock(&bo->drv->table_lock);
if (!drmHashLookup(bo->drv->map_table, bo->handles[plane].u32, &ptr)) {
data = (struct map_info *) ptr;
data->refcount++;
goto success;
}
data = calloc(1, sizeof(*data));
addr = bo->drv->backend->bo_map(bo, data, plane);
if (addr == MAP_FAILED) {
*map_data = NULL;
free(data);
pthread_mutex_unlock(&bo->drv->table_lock);
return MAP_FAILED;
}
data->refcount = 1;
data->addr = addr;
data->handle = bo->handles[plane].u32;
drmHashInsert(bo->drv->buffer_table, bo->handles[plane].u32,
(void *) data);
success:
*map_data = (void *) data;
offset = drv_bo_get_plane_stride(bo, plane) * y;
offset += drv_stride_from_format(bo->format, x, plane);
addr = (uint8_t *) data->addr;
addr += drv_bo_get_plane_offset(bo, plane) + offset;
pthread_mutex_unlock(&bo->drv->table_lock);
return (void *) addr;
}
int drv_bo_unmap(struct bo *bo, void *map_data)
{
struct map_info *data = map_data;
int ret = 0;
assert(data);
assert(data->refcount >= 0);
pthread_mutex_lock(&bo->drv->table_lock);
if (!--data->refcount) {
ret = munmap(data->addr, data->length);
drmHashDelete(bo->drv->map_table, data->handle);
free(data);
}
pthread_mutex_unlock(&bo->drv->table_lock);
return ret;
}
uint32_t drv_bo_get_width(struct bo *bo)
{
return bo->width;
}
uint32_t drv_bo_get_height(struct bo *bo)
{
return bo->height;
}
uint32_t drv_bo_get_stride_or_tiling(struct bo *bo)
{
return bo->tiling ? bo->tiling : drv_bo_get_plane_stride(bo, 0);
}
size_t drv_bo_get_num_planes(struct bo *bo)
{
return bo->num_planes;
}
union bo_handle drv_bo_get_plane_handle(struct bo *bo, size_t plane)
{
return bo->handles[plane];
}
#ifndef DRM_RDWR
#define DRM_RDWR O_RDWR
#endif
int drv_bo_get_plane_fd(struct bo *bo, size_t plane)
{
int ret, fd;
assert(plane < bo->num_planes);
ret = drmPrimeHandleToFD(bo->drv->fd, bo->handles[plane].u32,
DRM_CLOEXEC | DRM_RDWR, &fd);
return (ret) ? ret : fd;
}
uint32_t drv_bo_get_plane_offset(struct bo *bo, size_t plane)
{
assert(plane < bo->num_planes);
return bo->offsets[plane];
}
uint32_t drv_bo_get_plane_size(struct bo *bo, size_t plane)
{
assert(plane < bo->num_planes);
return bo->sizes[plane];
}
uint32_t drv_bo_get_plane_stride(struct bo *bo, size_t plane)
{
assert(plane < bo->num_planes);
return bo->strides[plane];
}
uint64_t drv_bo_get_plane_format_modifier(struct bo *bo, size_t plane)
{
assert(plane < bo->num_planes);
return bo->format_modifiers[plane];
}
drv_format_t drv_bo_get_format(struct bo *bo)
{
return bo->format;
}
drv_format_t drv_resolve_format(struct driver *drv, drv_format_t format)
{
if (drv->backend->resolve_format)
return drv->backend->resolve_format(format);
return format;
}
/*
* This function returns the stride for a given format, width and plane.
*/
int drv_stride_from_format(uint32_t format, uint32_t width, size_t plane)
{
/* Get stride of the first plane */
int stride = width * DIV_ROUND_UP(drv_bpp_from_format(format, 0), 8);
/*
* Only downsample for certain multiplanar formats which are not
* interleaved and have horizontal subsampling. Only formats supported
* by our drivers are listed here -- add more as needed.
*/
if (plane != 0) {
switch (format) {
case DRV_FORMAT_YVU420:
stride = stride / 2;
break;
}
}
return stride;
}
uint32_t drv_num_buffers_per_bo(struct bo *bo)
{
uint32_t count = 0;
size_t plane, p;
for (plane = 0; plane < bo->num_planes; plane++) {
for (p = 0; p < plane; p++)
if (bo->handles[p].u32 == bo->handles[plane].u32)
break;
if (p == plane)
count++;
}
return count;
}