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