OSDN Git Service

minigbm: add bo import callback
[android-x86/external-minigbm.git] / helpers.c
1 /*
2  * Copyright 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
7 #include <assert.h>
8 #include <stdbool.h>
9 #include <stdio.h>
10 #include <stdlib.h>
11 #include <string.h>
12 #include <sys/mman.h>
13 #include <xf86drm.h>
14 #include <xf86drmMode.h>
15
16 #include "drv_priv.h"
17 #include "helpers.h"
18 #include "util.h"
19
20 int drv_bpp_from_format(uint32_t format, size_t plane)
21 {
22         assert(plane < drv_num_planes_from_format(format));
23
24         switch (format) {
25         case DRM_FORMAT_BGR233:
26         case DRM_FORMAT_C8:
27         case DRM_FORMAT_R8:
28         case DRM_FORMAT_RGB332:
29         case DRM_FORMAT_YVU420:
30                 return 8;
31
32         /*
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          */
49         case DRM_FORMAT_NV12:
50                 return (plane == 0) ? 8 : 16;
51
52         case DRM_FORMAT_ABGR1555:
53         case DRM_FORMAT_ABGR4444:
54         case DRM_FORMAT_ARGB1555:
55         case DRM_FORMAT_ARGB4444:
56         case DRM_FORMAT_BGR565:
57         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:
68         case DRM_FORMAT_UYVY:
69         case DRM_FORMAT_VYUY:
70         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:
76                 return 16;
77
78         case DRM_FORMAT_BGR888:
79         case DRM_FORMAT_RGB888:
80                 return 24;
81
82         case DRM_FORMAT_ABGR2101010:
83         case DRM_FORMAT_ABGR8888:
84         case DRM_FORMAT_ARGB2101010:
85         case DRM_FORMAT_ARGB8888:
86         case DRM_FORMAT_AYUV:
87         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:
99                 return 32;
100         }
101
102         fprintf(stderr, "drv: UNKNOWN FORMAT %d\n", format);
103         return 0;
104 }
105
106 /*
107  * 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  */
111 int drv_bo_from_format(struct bo *bo, uint32_t width, uint32_t height,
112                        uint32_t format)
113 {
114
115         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];
127         }
128
129         bo->total_size = bo->offsets[bo->num_planes - 1] +
130                          bo->sizes[bo->num_planes - 1];
131
132         return 0;
133 }
134
135 int drv_dumb_bo_create(struct bo *bo, uint32_t width, uint32_t height,
136                        uint32_t format, uint32_t flags)
137 {
138         struct drm_mode_create_dumb create_dumb;
139         int ret;
140
141         /* Only single-plane formats are supported */
142         assert(drv_num_planes_from_format(format) == 1);
143
144         memset(&create_dumb, 0, sizeof(create_dumb));
145         create_dumb.height = height;
146         create_dumb.width = width;
147         create_dumb.bpp = drv_bpp_from_format(format, 0);
148         create_dumb.flags = 0;
149
150         ret = drmIoctl(bo->drv->fd, DRM_IOCTL_MODE_CREATE_DUMB, &create_dumb);
151         if (ret) {
152                 fprintf(stderr, "drv: DRM_IOCTL_MODE_CREATE_DUMB failed\n");
153                 return ret;
154         }
155
156         bo->width = width;
157         bo->height = height;
158         bo->handles[0].u32 = create_dumb.handle;
159         bo->offsets[0] = 0;
160         bo->total_size = bo->sizes[0] = create_dumb.size;
161         bo->strides[0] = create_dumb.pitch;
162
163         return 0;
164 }
165
166 int drv_dumb_bo_destroy(struct bo *bo)
167 {
168         struct drm_mode_destroy_dumb destroy_dumb;
169         int ret;
170
171         memset(&destroy_dumb, 0, sizeof(destroy_dumb));
172         destroy_dumb.handle = bo->handles[0].u32;
173
174         ret = drmIoctl(bo->drv->fd, DRM_IOCTL_MODE_DESTROY_DUMB, &destroy_dumb);
175         if (ret) {
176                 fprintf(stderr, "drv: DRM_IOCTL_MODE_DESTROY_DUMB failed "
177                                 "(handle=%x)\n", bo->handles[0].u32);
178                 return ret;
179         }
180
181         return 0;
182 }
183
184 int drv_gem_bo_destroy(struct bo *bo)
185 {
186         struct drm_gem_close gem_close;
187         int ret, error = 0;
188         size_t plane, i;
189
190         for (plane = 0; plane < bo->num_planes; plane++) {
191                 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)
196                         continue;
197
198                 memset(&gem_close, 0, sizeof(gem_close));
199                 gem_close.handle = bo->handles[plane].u32;
200
201                 ret = drmIoctl(bo->drv->fd, DRM_IOCTL_GEM_CLOSE, &gem_close);
202                 if (ret) {
203                         fprintf(stderr, "drv: DRM_IOCTL_GEM_CLOSE failed "
204                                         "(handle=%x) error %d\n",
205                                         bo->handles[plane].u32, ret);
206                         error = ret;
207                 }
208         }
209
210         return error;
211 }
212
213 int 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
253 void *drv_dumb_bo_map(struct bo *bo, struct map_info *data, size_t plane)
254 {
255         int ret;
256         size_t i;
257         struct drm_mode_map_dumb map_dumb;
258
259         memset(&map_dumb, 0, sizeof(map_dumb));
260         map_dumb.handle = bo->handles[plane].u32;
261
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
268         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,
273                     bo->drv->fd, map_dumb.offset);
274 }
275
276 uintptr_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
288 void 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
299 void 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 }
310
311 uint32_t drv_log_base2(uint32_t value)
312 {
313         int ret = 0;
314
315         while (value >>= 1)
316                 ++ret;
317
318         return ret;
319 }
320
321 /* Inserts a combination into list -- caller should have lock on driver. */
322 void drv_insert_supported_combination(struct driver *drv, uint32_t format,
323                                       uint64_t usage, uint64_t modifier)
324 {
325         struct combination_list_element *elem;
326
327         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
334 void 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
349 void 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
358         pthread_mutex_lock(&drv->driver_lock);
359
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
369
370         if (!found)
371                 drv_insert_supported_combination(drv, format, usage, modifier);
372
373         pthread_mutex_unlock(&drv->driver_lock);
374 }
375
376 int 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          */
392         drv_modify_supported_combination(drv, DRM_FORMAT_XRGB8888,
393                                          BO_USE_SCANOUT, 0);
394         drv_modify_supported_combination(drv, DRM_FORMAT_ARGB8888,
395                                          BO_USE_SCANOUT, 0);
396
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:
437                         usage = BO_USE_SCANOUT;
438                         break;
439                 case DRM_PLANE_TYPE_CURSOR:
440                         usage = BO_USE_CURSOR;
441                         break;
442                 default:
443                         assert(0);
444                 }
445
446                 for (j = 0; j < plane->count_formats; j++)
447                         drv_modify_supported_combination(drv, plane->formats[j],
448                                                          usage, 0);
449
450                 drmModeFreeObjectProperties(props);
451                 drmModeFreePlane(plane);
452
453         }
454
455         drmModeFreePlaneResources(resources);
456         return 0;
457
458 err:
459         ret = -1;
460         return ret;
461 }