OSDN Git Service

def8475cab8762a242f2c67b6ffce411fc9d9b9e
[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 <errno.h>
9 #include <stdbool.h>
10 #include <stdio.h>
11 #include <stdlib.h>
12 #include <string.h>
13 #include <sys/mman.h>
14 #include <xf86drm.h>
15 #include <xf86drmMode.h>
16
17 #include "drv_priv.h"
18 #include "helpers.h"
19 #include "util.h"
20
21 struct planar_layout {
22         size_t num_planes;
23         int horizontal_subsampling[DRV_MAX_PLANES];
24         int vertical_subsampling[DRV_MAX_PLANES];
25         int bytes_per_pixel[DRV_MAX_PLANES];
26 };
27
28 // clang-format off
29
30 static const struct planar_layout packed_1bpp_layout = {
31         .num_planes = 1,
32         .horizontal_subsampling = { 1 },
33         .vertical_subsampling = { 1 },
34         .bytes_per_pixel = { 1 }
35 };
36
37 static const struct planar_layout packed_2bpp_layout = {
38         .num_planes = 1,
39         .horizontal_subsampling = { 1 },
40         .vertical_subsampling = { 1 },
41         .bytes_per_pixel = { 2 }
42 };
43
44 static const struct planar_layout packed_3bpp_layout = {
45         .num_planes = 1,
46         .horizontal_subsampling = { 1 },
47         .vertical_subsampling = { 1 },
48         .bytes_per_pixel = { 3 }
49 };
50
51 static const struct planar_layout packed_4bpp_layout = {
52         .num_planes = 1,
53         .horizontal_subsampling = { 1 },
54         .vertical_subsampling = { 1 },
55         .bytes_per_pixel = { 4 }
56 };
57
58 static const struct planar_layout biplanar_yuv_420_layout = {
59         .num_planes = 2,
60         .horizontal_subsampling = { 1, 2 },
61         .vertical_subsampling = { 1, 2 },
62         .bytes_per_pixel = { 1, 2 }
63 };
64
65 static const struct planar_layout triplanar_yuv_420_layout = {
66         .num_planes = 3,
67         .horizontal_subsampling = { 1, 2, 2 },
68         .vertical_subsampling = { 1, 2, 2 },
69         .bytes_per_pixel = { 1, 1, 1 }
70 };
71
72 // clang-format on
73
74 static const struct planar_layout *layout_from_format(uint32_t format)
75 {
76         switch (format) {
77         case DRM_FORMAT_BGR233:
78         case DRM_FORMAT_C8:
79         case DRM_FORMAT_R8:
80         case DRM_FORMAT_RGB332:
81                 return &packed_1bpp_layout;
82
83         case DRM_FORMAT_YVU420:
84         case DRM_FORMAT_YVU420_ANDROID:
85                 return &triplanar_yuv_420_layout;
86
87         case DRM_FORMAT_NV12:
88         case DRM_FORMAT_NV21:
89                 return &biplanar_yuv_420_layout;
90
91         case DRM_FORMAT_ABGR1555:
92         case DRM_FORMAT_ABGR4444:
93         case DRM_FORMAT_ARGB1555:
94         case DRM_FORMAT_ARGB4444:
95         case DRM_FORMAT_BGR565:
96         case DRM_FORMAT_BGRA4444:
97         case DRM_FORMAT_BGRA5551:
98         case DRM_FORMAT_BGRX4444:
99         case DRM_FORMAT_BGRX5551:
100         case DRM_FORMAT_GR88:
101         case DRM_FORMAT_RG88:
102         case DRM_FORMAT_RGB565:
103         case DRM_FORMAT_RGBA4444:
104         case DRM_FORMAT_RGBA5551:
105         case DRM_FORMAT_RGBX4444:
106         case DRM_FORMAT_RGBX5551:
107         case DRM_FORMAT_UYVY:
108         case DRM_FORMAT_VYUY:
109         case DRM_FORMAT_XBGR1555:
110         case DRM_FORMAT_XBGR4444:
111         case DRM_FORMAT_XRGB1555:
112         case DRM_FORMAT_XRGB4444:
113         case DRM_FORMAT_YUYV:
114         case DRM_FORMAT_YVYU:
115                 return &packed_2bpp_layout;
116
117         case DRM_FORMAT_BGR888:
118         case DRM_FORMAT_RGB888:
119                 return &packed_3bpp_layout;
120
121         case DRM_FORMAT_ABGR2101010:
122         case DRM_FORMAT_ABGR8888:
123         case DRM_FORMAT_ARGB2101010:
124         case DRM_FORMAT_ARGB8888:
125         case DRM_FORMAT_AYUV:
126         case DRM_FORMAT_BGRA1010102:
127         case DRM_FORMAT_BGRA8888:
128         case DRM_FORMAT_BGRX1010102:
129         case DRM_FORMAT_BGRX8888:
130         case DRM_FORMAT_RGBA1010102:
131         case DRM_FORMAT_RGBA8888:
132         case DRM_FORMAT_RGBX1010102:
133         case DRM_FORMAT_RGBX8888:
134         case DRM_FORMAT_XBGR2101010:
135         case DRM_FORMAT_XBGR8888:
136         case DRM_FORMAT_XRGB2101010:
137         case DRM_FORMAT_XRGB8888:
138                 return &packed_4bpp_layout;
139
140         default:
141                 drv_log("UNKNOWN FORMAT %d\n", format);
142                 return NULL;
143         }
144 }
145
146 size_t drv_num_planes_from_format(uint32_t format)
147 {
148         const struct planar_layout *layout = layout_from_format(format);
149
150         /*
151          * drv_bo_new calls this function early to query number of planes and
152          * considers 0 planes to mean unknown format, so we have to support
153          * that.  All other layout_from_format() queries can assume that the
154          * format is supported and that the return value is non-NULL.
155          */
156
157         return layout ? layout->num_planes : 0;
158 }
159
160 uint32_t drv_height_from_format(uint32_t format, uint32_t height, size_t plane)
161 {
162         const struct planar_layout *layout = layout_from_format(format);
163
164         assert(plane < layout->num_planes);
165
166         return DIV_ROUND_UP(height, layout->vertical_subsampling[plane]);
167 }
168
169 uint32_t drv_bytes_per_pixel_from_format(uint32_t format, size_t plane)
170 {
171         const struct planar_layout *layout = layout_from_format(format);
172
173         assert(plane < layout->num_planes);
174
175         return layout->bytes_per_pixel[plane];
176 }
177
178 /*
179  * This function returns the stride for a given format, width and plane.
180  */
181 uint32_t drv_stride_from_format(uint32_t format, uint32_t width, size_t plane)
182 {
183         const struct planar_layout *layout = layout_from_format(format);
184         assert(plane < layout->num_planes);
185
186         uint32_t plane_width = DIV_ROUND_UP(width, layout->horizontal_subsampling[plane]);
187         uint32_t stride = plane_width * layout->bytes_per_pixel[plane];
188
189         /*
190          * The stride of Android YV12 buffers is required to be aligned to 16 bytes
191          * (see <system/graphics.h>).
192          */
193         if (format == DRM_FORMAT_YVU420_ANDROID)
194                 stride = (plane == 0) ? ALIGN(stride, 32) : ALIGN(stride, 16);
195
196         return stride;
197 }
198
199 uint32_t drv_size_from_format(uint32_t format, uint32_t stride, uint32_t height, size_t plane)
200 {
201         return stride * drv_height_from_format(format, height, plane);
202 }
203
204 static uint32_t subsample_stride(uint32_t stride, uint32_t format, size_t plane)
205 {
206         if (plane != 0) {
207                 switch (format) {
208                 case DRM_FORMAT_YVU420:
209                 case DRM_FORMAT_YVU420_ANDROID:
210                         stride = DIV_ROUND_UP(stride, 2);
211                         break;
212                 }
213         }
214
215         return stride;
216 }
217
218 /*
219  * This function fills in the buffer object given the driver aligned stride of
220  * the first plane, height and a format. This function assumes there is just
221  * one kernel buffer per buffer object.
222  */
223 int drv_bo_from_format(struct bo *bo, uint32_t stride, uint32_t aligned_height, uint32_t format)
224 {
225
226         size_t p, num_planes;
227         uint32_t offset = 0;
228
229         num_planes = drv_num_planes_from_format(format);
230         assert(num_planes);
231
232         /*
233          * HAL_PIXEL_FORMAT_YV12 requires that (see <system/graphics.h>):
234          *  - the aligned height is same as the buffer's height.
235          *  - the chroma stride is 16 bytes aligned, i.e., the luma's strides
236          *    is 32 bytes aligned.
237          */
238         if (format == DRM_FORMAT_YVU420_ANDROID) {
239                 assert(aligned_height == bo->height);
240                 assert(stride == ALIGN(stride, 32));
241         }
242
243         for (p = 0; p < num_planes; p++) {
244                 bo->strides[p] = subsample_stride(stride, format, p);
245                 bo->sizes[p] = drv_size_from_format(format, bo->strides[p], aligned_height, p);
246                 bo->offsets[p] = offset;
247                 offset += bo->sizes[p];
248         }
249
250         bo->total_size = offset;
251         return 0;
252 }
253
254 int drv_dumb_bo_create(struct bo *bo, uint32_t width, uint32_t height, uint32_t format,
255                        uint64_t use_flags)
256 {
257         int ret;
258         size_t plane;
259         uint32_t aligned_width, aligned_height;
260         struct drm_mode_create_dumb create_dumb;
261
262         aligned_width = width;
263         aligned_height = height;
264         if (format == DRM_FORMAT_YVU420_ANDROID) {
265                 /*
266                  * Align width to 32 pixels, so chroma strides are 16 bytes as
267                  * Android requires.
268                  */
269                 aligned_width = ALIGN(width, 32);
270         }
271
272         if (format == DRM_FORMAT_YVU420_ANDROID || format == DRM_FORMAT_YVU420) {
273                 aligned_height = 3 * DIV_ROUND_UP(height, 2);
274         }
275
276         memset(&create_dumb, 0, sizeof(create_dumb));
277         create_dumb.height = aligned_height;
278         create_dumb.width = aligned_width;
279         create_dumb.bpp = layout_from_format(format)->bytes_per_pixel[0] * 8;
280         create_dumb.flags = 0;
281
282         ret = drmIoctl(bo->drv->fd, DRM_IOCTL_MODE_CREATE_DUMB, &create_dumb);
283         if (ret) {
284                 drv_log("DRM_IOCTL_MODE_CREATE_DUMB failed (%d, %d)\n", bo->drv->fd, errno);
285                 return ret;
286         }
287
288         drv_bo_from_format(bo, create_dumb.pitch, height, format);
289
290         for (plane = 0; plane < bo->num_planes; plane++)
291                 bo->handles[plane].u32 = create_dumb.handle;
292
293         bo->total_size = create_dumb.size;
294         return 0;
295 }
296
297 int drv_dumb_bo_destroy(struct bo *bo)
298 {
299         struct drm_mode_destroy_dumb destroy_dumb;
300         int ret;
301
302         memset(&destroy_dumb, 0, sizeof(destroy_dumb));
303         destroy_dumb.handle = bo->handles[0].u32;
304
305         ret = drmIoctl(bo->drv->fd, DRM_IOCTL_MODE_DESTROY_DUMB, &destroy_dumb);
306         if (ret) {
307                 drv_log("DRM_IOCTL_MODE_DESTROY_DUMB failed (handle=%x)\n", bo->handles[0].u32);
308                 return ret;
309         }
310
311         return 0;
312 }
313
314 int drv_gem_bo_destroy(struct bo *bo)
315 {
316         struct drm_gem_close gem_close;
317         int ret, error = 0;
318         size_t plane, i;
319
320         for (plane = 0; plane < bo->num_planes; plane++) {
321                 for (i = 0; i < plane; i++)
322                         if (bo->handles[i].u32 == bo->handles[plane].u32)
323                                 break;
324                 /* Make sure close hasn't already been called on this handle */
325                 if (i != plane)
326                         continue;
327
328                 memset(&gem_close, 0, sizeof(gem_close));
329                 gem_close.handle = bo->handles[plane].u32;
330
331                 ret = drmIoctl(bo->drv->fd, DRM_IOCTL_GEM_CLOSE, &gem_close);
332                 if (ret) {
333                         drv_log("DRM_IOCTL_GEM_CLOSE failed (handle=%x) error %d\n",
334                                 bo->handles[plane].u32, ret);
335                         error = ret;
336                 }
337         }
338
339         return error;
340 }
341
342 int drv_prime_bo_import(struct bo *bo, struct drv_import_fd_data *data)
343 {
344         int ret;
345         size_t plane;
346         struct drm_prime_handle prime_handle;
347
348         for (plane = 0; plane < bo->num_planes; plane++) {
349                 memset(&prime_handle, 0, sizeof(prime_handle));
350                 prime_handle.fd = data->fds[plane];
351
352                 ret = drmIoctl(bo->drv->fd, DRM_IOCTL_PRIME_FD_TO_HANDLE, &prime_handle);
353
354                 if (ret) {
355                         drv_log("DRM_IOCTL_PRIME_FD_TO_HANDLE failed (fd=%u)\n", prime_handle.fd);
356
357                         /*
358                          * Need to call GEM close on planes that were opened,
359                          * if any. Adjust the num_planes variable to be the
360                          * plane that failed, so GEM close will be called on
361                          * planes before that plane.
362                          */
363                         bo->num_planes = plane;
364                         drv_gem_bo_destroy(bo);
365                         return ret;
366                 }
367
368                 bo->handles[plane].u32 = prime_handle.handle;
369         }
370
371         return 0;
372 }
373
374 void *drv_dumb_bo_map(struct bo *bo, struct vma *vma, size_t plane, uint32_t map_flags)
375 {
376         int ret;
377         size_t i;
378         struct drm_mode_map_dumb map_dumb;
379
380         memset(&map_dumb, 0, sizeof(map_dumb));
381         map_dumb.handle = bo->handles[plane].u32;
382
383         ret = drmIoctl(bo->drv->fd, DRM_IOCTL_MODE_MAP_DUMB, &map_dumb);
384         if (ret) {
385                 drv_log("DRM_IOCTL_MODE_MAP_DUMB failed\n");
386                 return MAP_FAILED;
387         }
388
389         for (i = 0; i < bo->num_planes; i++)
390                 if (bo->handles[i].u32 == bo->handles[plane].u32)
391                         vma->length += bo->sizes[i];
392
393         return mmap(0, vma->length, drv_get_prot(map_flags), MAP_SHARED, bo->drv->fd,
394                     map_dumb.offset);
395 }
396
397 int drv_bo_munmap(struct bo *bo, struct vma *vma)
398 {
399         return munmap(vma->addr, vma->length);
400 }
401
402 int drv_mapping_destroy(struct bo *bo)
403 {
404         int ret;
405         size_t plane;
406         struct mapping *mapping;
407         uint32_t idx;
408
409         /*
410          * This function is called right before the buffer is destroyed. It will free any mappings
411          * associated with the buffer.
412          */
413
414         idx = 0;
415         for (plane = 0; plane < bo->num_planes; plane++) {
416                 while (idx < drv_array_size(bo->drv->mappings)) {
417                         mapping = (struct mapping *)drv_array_at_idx(bo->drv->mappings, idx);
418                         if (mapping->vma->handle != bo->handles[plane].u32) {
419                                 idx++;
420                                 continue;
421                         }
422
423                         if (!--mapping->vma->refcount) {
424                                 ret = bo->drv->backend->bo_unmap(bo, mapping->vma);
425                                 if (ret) {
426                                         drv_log("munmap failed\n");
427                                         return ret;
428                                 }
429
430                                 free(mapping->vma);
431                         }
432
433                         /* This shrinks and shifts the array, so don't increment idx. */
434                         drv_array_remove(bo->drv->mappings, idx);
435                 }
436         }
437
438         return 0;
439 }
440
441 int drv_get_prot(uint32_t map_flags)
442 {
443         return (BO_MAP_WRITE & map_flags) ? PROT_WRITE | PROT_READ : PROT_READ;
444 }
445
446 uintptr_t drv_get_reference_count(struct driver *drv, struct bo *bo, size_t plane)
447 {
448         void *count;
449         uintptr_t num = 0;
450
451         if (!drmHashLookup(drv->buffer_table, bo->handles[plane].u32, &count))
452                 num = (uintptr_t)(count);
453
454         return num;
455 }
456
457 void drv_increment_reference_count(struct driver *drv, struct bo *bo, size_t plane)
458 {
459         uintptr_t num = drv_get_reference_count(drv, bo, plane);
460
461         /* If a value isn't in the table, drmHashDelete is a no-op */
462         drmHashDelete(drv->buffer_table, bo->handles[plane].u32);
463         drmHashInsert(drv->buffer_table, bo->handles[plane].u32, (void *)(num + 1));
464 }
465
466 void drv_decrement_reference_count(struct driver *drv, struct bo *bo, size_t plane)
467 {
468         uintptr_t num = drv_get_reference_count(drv, bo, plane);
469
470         drmHashDelete(drv->buffer_table, bo->handles[plane].u32);
471
472         if (num > 0)
473                 drmHashInsert(drv->buffer_table, bo->handles[plane].u32, (void *)(num - 1));
474 }
475
476 uint32_t drv_log_base2(uint32_t value)
477 {
478         int ret = 0;
479
480         while (value >>= 1)
481                 ++ret;
482
483         return ret;
484 }
485
486 void drv_add_combinations(struct driver *drv, const uint32_t *formats, uint32_t num_formats,
487                           struct format_metadata *metadata, uint64_t use_flags)
488 {
489         uint32_t i;
490
491         for (i = 0; i < num_formats; i++) {
492                 struct combination combo = { .format = formats[i],
493                                              .metadata = *metadata,
494                                              .use_flags = use_flags };
495
496                 drv_array_append(drv->combos, &combo);
497         }
498 }
499
500 void drv_modify_combination(struct driver *drv, uint32_t format, struct format_metadata *metadata,
501                             uint64_t use_flags)
502 {
503         uint32_t i;
504         struct combination *combo;
505         /* Attempts to add the specified flags to an existing combination. */
506         for (i = 0; i < drv_array_size(drv->combos); i++) {
507                 combo = (struct combination *)drv_array_at_idx(drv->combos, i);
508                 if (combo->format == format && combo->metadata.tiling == metadata->tiling &&
509                     combo->metadata.modifier == metadata->modifier)
510                         combo->use_flags |= use_flags;
511         }
512 }
513
514 struct drv_array *drv_query_kms(struct driver *drv)
515 {
516         struct drv_array *kms_items;
517         uint64_t plane_type, use_flag;
518         uint32_t i, j, k;
519
520         drmModePlanePtr plane;
521         drmModePropertyPtr prop;
522         drmModePlaneResPtr resources;
523         drmModeObjectPropertiesPtr props;
524
525         kms_items = drv_array_init(sizeof(struct kms_item));
526         if (!kms_items)
527                 goto out;
528
529         /*
530          * The ability to return universal planes is only complete on
531          * ChromeOS kernel versions >= v3.18.  The SET_CLIENT_CAP ioctl
532          * therefore might return an error code, so don't check it.  If it
533          * fails, it'll just return the plane list as overlay planes, which is
534          * fine in our case (our drivers already have cursor bits set).
535          * modetest in libdrm does the same thing.
536          */
537         drmSetClientCap(drv->fd, DRM_CLIENT_CAP_UNIVERSAL_PLANES, 1);
538
539         resources = drmModeGetPlaneResources(drv->fd);
540         if (!resources)
541                 goto out;
542
543         for (i = 0; i < resources->count_planes; i++) {
544                 plane = drmModeGetPlane(drv->fd, resources->planes[i]);
545                 if (!plane)
546                         goto out;
547
548                 props = drmModeObjectGetProperties(drv->fd, plane->plane_id, DRM_MODE_OBJECT_PLANE);
549                 if (!props)
550                         goto out;
551
552                 for (j = 0; j < props->count_props; j++) {
553                         prop = drmModeGetProperty(drv->fd, props->props[j]);
554                         if (prop) {
555                                 if (strcmp(prop->name, "type") == 0) {
556                                         plane_type = props->prop_values[j];
557                                 }
558
559                                 drmModeFreeProperty(prop);
560                         }
561                 }
562
563                 switch (plane_type) {
564                 case DRM_PLANE_TYPE_OVERLAY:
565                 case DRM_PLANE_TYPE_PRIMARY:
566                         use_flag = BO_USE_SCANOUT;
567                         break;
568                 case DRM_PLANE_TYPE_CURSOR:
569                         use_flag = BO_USE_CURSOR;
570                         break;
571                 default:
572                         assert(0);
573                 }
574
575                 for (j = 0; j < plane->count_formats; j++) {
576                         bool found = false;
577                         for (k = 0; k < drv_array_size(kms_items); k++) {
578                                 struct kms_item *item = drv_array_at_idx(kms_items, k);
579                                 if (item->format == plane->formats[j] &&
580                                     item->modifier == DRM_FORMAT_MOD_LINEAR) {
581                                         item->use_flags |= use_flag;
582                                         found = true;
583                                         break;
584                                 }
585                         }
586
587                         if (!found) {
588                                 struct kms_item item = { .format = plane->formats[j],
589                                                          .modifier = DRM_FORMAT_MOD_LINEAR,
590                                                          .use_flags = use_flag };
591
592                                 drv_array_append(kms_items, &item);
593                         }
594                 }
595
596                 drmModeFreeObjectProperties(props);
597                 drmModeFreePlane(plane);
598         }
599
600         drmModeFreePlaneResources(resources);
601 out:
602         if (kms_items && !drv_array_size(kms_items)) {
603                 drv_array_destroy(kms_items);
604                 return NULL;
605         }
606
607         return kms_items;
608 }
609
610 int drv_modify_linear_combinations(struct driver *drv)
611 {
612         uint32_t i, j;
613         struct kms_item *item;
614         struct combination *combo;
615         struct drv_array *kms_items;
616
617         /*
618          * All current drivers can scanout linear XRGB8888/ARGB8888 as a primary
619          * plane and as a cursor. Some drivers don't support
620          * drmModeGetPlaneResources, so add the combination here. Note that the
621          * kernel disregards the alpha component of ARGB unless it's an overlay
622          * plane.
623          */
624         drv_modify_combination(drv, DRM_FORMAT_XRGB8888, &LINEAR_METADATA,
625                                BO_USE_CURSOR | BO_USE_SCANOUT);
626         drv_modify_combination(drv, DRM_FORMAT_ARGB8888, &LINEAR_METADATA,
627                                BO_USE_CURSOR | BO_USE_SCANOUT);
628
629         kms_items = drv_query_kms(drv);
630         if (!kms_items)
631                 return 0;
632
633         for (i = 0; i < drv_array_size(kms_items); i++) {
634                 item = (struct kms_item *)drv_array_at_idx(kms_items, i);
635                 for (j = 0; j < drv_array_size(drv->combos); j++) {
636                         combo = drv_array_at_idx(drv->combos, j);
637                         if (item->format == combo->format)
638                                 combo->use_flags |= BO_USE_SCANOUT;
639                 }
640         }
641
642         drv_array_destroy(kms_items);
643         return 0;
644 }
645
646 /*
647  * Pick the best modifier from modifiers, according to the ordering
648  * given by modifier_order.
649  */
650 uint64_t drv_pick_modifier(const uint64_t *modifiers, uint32_t count,
651                            const uint64_t *modifier_order, uint32_t order_count)
652 {
653         uint32_t i, j;
654
655         for (i = 0; i < order_count; i++) {
656                 for (j = 0; j < count; j++) {
657                         if (modifiers[j] == modifier_order[i]) {
658                                 return modifiers[j];
659                         }
660                 }
661         }
662
663         return DRM_FORMAT_MOD_LINEAR;
664 }