xref: /aosp_15_r20/external/minigbm/drv_helpers.c (revision d95af8df99a05bcb8679a54dc3ab8e5cd312b38e)
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 #ifdef __ANDROID__
20 #include <cutils/properties.h>
21 #endif
22 
23 #include "drv_priv.h"
24 #include "util.h"
25 
26 struct planar_layout {
27 	size_t num_planes;
28 	int horizontal_subsampling[DRV_MAX_PLANES];
29 	int vertical_subsampling[DRV_MAX_PLANES];
30 	int bytes_per_pixel[DRV_MAX_PLANES];
31 };
32 
33 // clang-format off
34 
35 static const struct planar_layout packed_1bpp_layout = {
36 	.num_planes = 1,
37 	.horizontal_subsampling = { 1 },
38 	.vertical_subsampling = { 1 },
39 	.bytes_per_pixel = { 1 }
40 };
41 
42 static const struct planar_layout packed_2bpp_layout = {
43 	.num_planes = 1,
44 	.horizontal_subsampling = { 1 },
45 	.vertical_subsampling = { 1 },
46 	.bytes_per_pixel = { 2 }
47 };
48 
49 static const struct planar_layout packed_3bpp_layout = {
50 	.num_planes = 1,
51 	.horizontal_subsampling = { 1 },
52 	.vertical_subsampling = { 1 },
53 	.bytes_per_pixel = { 3 }
54 };
55 
56 static const struct planar_layout packed_4bpp_layout = {
57 	.num_planes = 1,
58 	.horizontal_subsampling = { 1 },
59 	.vertical_subsampling = { 1 },
60 	.bytes_per_pixel = { 4 }
61 };
62 
63 static const struct planar_layout packed_8bpp_layout = {
64 	.num_planes = 1,
65 	.horizontal_subsampling = { 1 },
66 	.vertical_subsampling = { 1 },
67 	.bytes_per_pixel = { 8 }
68 };
69 
70 static const struct planar_layout biplanar_yuv_420_layout = {
71 	.num_planes = 2,
72 	.horizontal_subsampling = { 1, 2 },
73 	.vertical_subsampling = { 1, 2 },
74 	.bytes_per_pixel = { 1, 2 }
75 };
76 
77 static const struct planar_layout triplanar_yuv_420_layout = {
78 	.num_planes = 3,
79 	.horizontal_subsampling = { 1, 2, 2 },
80 	.vertical_subsampling = { 1, 2, 2 },
81 	.bytes_per_pixel = { 1, 1, 1 }
82 };
83 
84 static const struct planar_layout biplanar_yuv_p010_layout = {
85 	.num_planes = 2,
86 	.horizontal_subsampling = { 1, 2 },
87 	.vertical_subsampling = { 1, 2 },
88 	.bytes_per_pixel = { 2, 4 }
89 };
90 
91 // clang-format on
92 
layout_from_format(uint32_t format)93 static const struct planar_layout *layout_from_format(uint32_t format)
94 {
95 	switch (format) {
96 	case DRM_FORMAT_BGR233:
97 	case DRM_FORMAT_C8:
98 	case DRM_FORMAT_R8:
99 	case DRM_FORMAT_RGB332:
100 		return &packed_1bpp_layout;
101 
102 	case DRM_FORMAT_R16:
103 	case DRM_FORMAT_DEPTH16:
104 		return &packed_2bpp_layout;
105 
106 	case DRM_FORMAT_YVU420:
107 	case DRM_FORMAT_YVU420_ANDROID:
108 		return &triplanar_yuv_420_layout;
109 
110 	case DRM_FORMAT_NV12:
111 	case DRM_FORMAT_NV21:
112 		return &biplanar_yuv_420_layout;
113 
114 	case DRM_FORMAT_P010:
115 		return &biplanar_yuv_p010_layout;
116 
117 	case DRM_FORMAT_ABGR1555:
118 	case DRM_FORMAT_ABGR4444:
119 	case DRM_FORMAT_ARGB1555:
120 	case DRM_FORMAT_ARGB4444:
121 	case DRM_FORMAT_BGR565:
122 	case DRM_FORMAT_BGRA4444:
123 	case DRM_FORMAT_BGRA5551:
124 	case DRM_FORMAT_BGRX4444:
125 	case DRM_FORMAT_BGRX5551:
126 	case DRM_FORMAT_GR88:
127 	case DRM_FORMAT_RG88:
128 	case DRM_FORMAT_RGB565:
129 	case DRM_FORMAT_RGBA4444:
130 	case DRM_FORMAT_RGBA5551:
131 	case DRM_FORMAT_RGBX4444:
132 	case DRM_FORMAT_RGBX5551:
133 	case DRM_FORMAT_UYVY:
134 	case DRM_FORMAT_VYUY:
135 	case DRM_FORMAT_XBGR1555:
136 	case DRM_FORMAT_XBGR4444:
137 	case DRM_FORMAT_XRGB1555:
138 	case DRM_FORMAT_XRGB4444:
139 	case DRM_FORMAT_YUYV:
140 	case DRM_FORMAT_YVYU:
141 	case DRM_FORMAT_MTISP_SXYZW10:
142 		return &packed_2bpp_layout;
143 
144 	case DRM_FORMAT_BGR888:
145 	case DRM_FORMAT_RGB888:
146 		return &packed_3bpp_layout;
147 
148 	case DRM_FORMAT_DEPTH24:
149 	case DRM_FORMAT_DEPTH24_STENCIL8:
150 	case DRM_FORMAT_DEPTH32:
151 	case DRM_FORMAT_ABGR2101010:
152 	case DRM_FORMAT_ABGR8888:
153 	case DRM_FORMAT_ARGB2101010:
154 	case DRM_FORMAT_ARGB8888:
155 	case DRM_FORMAT_AYUV:
156 	case DRM_FORMAT_BGRA1010102:
157 	case DRM_FORMAT_BGRA8888:
158 	case DRM_FORMAT_BGRX1010102:
159 	case DRM_FORMAT_BGRX8888:
160 	case DRM_FORMAT_RGBA1010102:
161 	case DRM_FORMAT_RGBA8888:
162 	case DRM_FORMAT_RGBX1010102:
163 	case DRM_FORMAT_RGBX8888:
164 	case DRM_FORMAT_XBGR2101010:
165 	case DRM_FORMAT_XBGR8888:
166 	case DRM_FORMAT_XRGB2101010:
167 	case DRM_FORMAT_XRGB8888:
168 		return &packed_4bpp_layout;
169 
170 	case DRM_FORMAT_DEPTH32_STENCIL8:
171 	case DRM_FORMAT_ABGR16161616F:
172 		return &packed_8bpp_layout;
173 
174 	default:
175 		drv_loge("UNKNOWN FORMAT %d\n", format);
176 		return NULL;
177 	}
178 }
179 
drv_num_planes_from_format(uint32_t format)180 size_t drv_num_planes_from_format(uint32_t format)
181 {
182 	const struct planar_layout *layout = layout_from_format(format);
183 
184 	/*
185 	 * drv_bo_new calls this function early to query number of planes and
186 	 * considers 0 planes to mean unknown format, so we have to support
187 	 * that.  All other layout_from_format() queries can assume that the
188 	 * format is supported and that the return value is non-NULL.
189 	 */
190 
191 	return layout ? layout->num_planes : 0;
192 }
193 
drv_num_planes_from_modifier(struct driver * drv,uint32_t format,uint64_t modifier)194 size_t drv_num_planes_from_modifier(struct driver *drv, uint32_t format, uint64_t modifier)
195 {
196 	size_t planes = drv_num_planes_from_format(format);
197 
198 	/* Disallow unsupported formats. */
199 	if (!planes)
200 		return 0;
201 
202 	if (drv->backend->num_planes_from_modifier && modifier != DRM_FORMAT_MOD_INVALID &&
203 	    modifier != DRM_FORMAT_MOD_LINEAR)
204 		return drv->backend->num_planes_from_modifier(drv, format, modifier);
205 
206 	return planes;
207 }
208 
drv_height_from_format(uint32_t format,uint32_t height,size_t plane)209 uint32_t drv_height_from_format(uint32_t format, uint32_t height, size_t plane)
210 {
211 	const struct planar_layout *layout = layout_from_format(format);
212 
213 	assert(plane < layout->num_planes);
214 
215 	return DIV_ROUND_UP(height, layout->vertical_subsampling[plane]);
216 }
217 
drv_vertical_subsampling_from_format(uint32_t format,size_t plane)218 uint32_t drv_vertical_subsampling_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->vertical_subsampling[plane];
225 }
226 
drv_bytes_per_pixel_from_format(uint32_t format,size_t plane)227 uint32_t drv_bytes_per_pixel_from_format(uint32_t format, size_t plane)
228 {
229 	const struct planar_layout *layout = layout_from_format(format);
230 
231 	assert(plane < layout->num_planes);
232 
233 	return layout->bytes_per_pixel[plane];
234 }
235 
236 /*
237  * This function returns the stride for a given format, width and plane.
238  */
drv_stride_from_format(uint32_t format,uint32_t width,size_t plane)239 uint32_t drv_stride_from_format(uint32_t format, uint32_t width, size_t plane)
240 {
241 	const struct planar_layout *layout = layout_from_format(format);
242 	assert(plane < layout->num_planes);
243 
244 	uint32_t plane_width = DIV_ROUND_UP(width, layout->horizontal_subsampling[plane]);
245 	uint32_t stride = plane_width * layout->bytes_per_pixel[plane];
246 
247 	/*
248 	 * The stride of Android YV12 buffers is required to be aligned to 16 bytes
249 	 * (see <system/graphics.h>).
250 	 */
251 	if (format == DRM_FORMAT_YVU420_ANDROID)
252 		stride = (plane == 0) ? ALIGN(stride, 32) : ALIGN(stride, 16);
253 
254 	return stride;
255 }
256 
drv_size_from_format(uint32_t format,uint32_t stride,uint32_t height,size_t plane)257 uint32_t drv_size_from_format(uint32_t format, uint32_t stride, uint32_t height, size_t plane)
258 {
259 	return stride * drv_height_from_format(format, height, plane);
260 }
261 
subsample_stride(uint32_t stride,uint32_t stride_align,uint32_t format,size_t plane)262 static uint32_t subsample_stride(uint32_t stride, uint32_t stride_align, uint32_t format,
263 				 size_t plane)
264 {
265 	uint32_t plane_stride = stride;
266 
267 	if (plane != 0) {
268 		switch (format) {
269 		case DRM_FORMAT_YVU420:
270 		case DRM_FORMAT_YVU420_ANDROID:
271 			plane_stride = DIV_ROUND_UP(plane_stride, 2);
272 			break;
273 		}
274 	}
275 
276 	plane_stride = ALIGN(plane_stride, stride_align);
277 
278 	if (format == DRM_FORMAT_YVU420_ANDROID) {
279 		if (plane != 0)
280 			assert(plane_stride == ALIGN(stride / 2, 16));
281 		else
282 			assert(plane_stride % 16 == 0);
283 	}
284 
285 	return plane_stride;
286 }
287 
288 /*
289  * This function fills in the buffer object given the driver aligned stride of
290  * the first plane, height and a format. This function assumes there is just
291  * one kernel buffer per buffer object.
292  */
drv_bo_from_format(struct bo * bo,uint32_t stride,uint32_t stride_align,uint32_t aligned_height,uint32_t format)293 int drv_bo_from_format(struct bo *bo, uint32_t stride, uint32_t stride_align,
294 		       uint32_t aligned_height, uint32_t format)
295 {
296 	uint32_t padding[DRV_MAX_PLANES] = { 0 };
297 	return drv_bo_from_format_and_padding(bo, stride, stride_align, aligned_height, format,
298 					      padding);
299 }
300 
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])301 int drv_bo_from_format_and_padding(struct bo *bo, uint32_t stride, uint32_t stride_align,
302 				   uint32_t aligned_height, uint32_t format,
303 				   uint32_t padding[DRV_MAX_PLANES])
304 {
305 	size_t p, num_planes;
306 	uint32_t offset = 0;
307 
308 	num_planes = drv_num_planes_from_format(format);
309 	assert(num_planes);
310 
311 	/*
312 	 * HAL_PIXEL_FORMAT_YV12 requires that (see <system/graphics.h>):
313 	 *  - the aligned height is same as the buffer's height.
314 	 *  - the luma stride is 16 bytes aligned
315 	 *  - the chroma stride is ALIGN(luma_stride / 2, 16)
316 	 */
317 	if (format == DRM_FORMAT_YVU420_ANDROID) {
318 		assert(aligned_height == bo->meta.height);
319 		/* force 16 if the caller has no requirement */
320 		if (stride_align <= 1)
321 			stride_align = 16;
322 	}
323 
324 	for (p = 0; p < num_planes; p++) {
325 		bo->meta.strides[p] = subsample_stride(stride, stride_align, format, p);
326 		bo->meta.sizes[p] =
327 		    drv_size_from_format(format, bo->meta.strides[p], aligned_height, p) +
328 		    padding[p];
329 		bo->meta.offsets[p] = offset;
330 		offset += bo->meta.sizes[p];
331 	}
332 
333 	bo->meta.total_size = offset;
334 	return 0;
335 }
336 
drv_dumb_bo_create_ex(struct bo * bo,uint32_t width,uint32_t height,uint32_t format,uint64_t use_flags,uint64_t quirks)337 int drv_dumb_bo_create_ex(struct bo *bo, uint32_t width, uint32_t height, uint32_t format,
338 			  uint64_t use_flags, uint64_t quirks)
339 {
340 	int ret;
341 	uint32_t aligned_width, aligned_height;
342 	struct drm_mode_create_dumb create_dumb = { 0 };
343 
344 	aligned_width = width;
345 	aligned_height = height;
346 	switch (format) {
347 	case DRM_FORMAT_R16:
348 		/* HAL_PIXEL_FORMAT_Y16 requires that the buffer's width be 16 pixel
349 		 * aligned. See hardware/interfaces/graphics/common/1.0/types.hal. */
350 		aligned_width = ALIGN(width, 16);
351 		break;
352 	case DRM_FORMAT_YVU420_ANDROID:
353 		/* HAL_PIXEL_FORMAT_YV12 requires that the buffer's height not
354 		 * be aligned. Update 'height' so that drv_bo_from_format below
355 		 * uses the non-aligned height. */
356 		height = bo->meta.height;
357 
358 		/* Align width to 32 pixels, so chroma strides are 16 bytes as
359 		 * Android requires. */
360 		aligned_width = ALIGN(width, 32);
361 
362 		/* Adjust the height to include room for chroma planes. */
363 		aligned_height = 3 * DIV_ROUND_UP(height, 2);
364 		break;
365 	case DRM_FORMAT_YVU420:
366 	case DRM_FORMAT_NV12:
367 	case DRM_FORMAT_NV21:
368 	case DRM_FORMAT_P010:
369 		/* Adjust the height to include room for chroma planes */
370 		aligned_height = 3 * DIV_ROUND_UP(height, 2);
371 		break;
372 	default:
373 		break;
374 	}
375 
376 	if (quirks & BO_QUIRK_DUMB32BPP) {
377 		aligned_width =
378 		    DIV_ROUND_UP(aligned_width * layout_from_format(format)->bytes_per_pixel[0], 4);
379 		create_dumb.bpp = 32;
380 	} else {
381 		/* Align for llvmpipe 64-byte tile size for dumb_driver */
382 		aligned_width = ALIGN(aligned_width, MESA_LLVMPIPE_TILE_SIZE);
383 		aligned_height = ALIGN(aligned_height, MESA_LLVMPIPE_TILE_SIZE);
384 		create_dumb.bpp = layout_from_format(format)->bytes_per_pixel[0] * 8;
385 	}
386 	create_dumb.width = aligned_width;
387 	create_dumb.height = aligned_height;
388 	create_dumb.flags = 0;
389 
390 	ret = drmIoctl(bo->drv->fd, DRM_IOCTL_MODE_CREATE_DUMB, &create_dumb);
391 	if (ret) {
392 		drv_loge("DRM_IOCTL_MODE_CREATE_DUMB failed (%d, %d)\n", bo->drv->fd, errno);
393 		return -errno;
394 	}
395 
396 	drv_bo_from_format(bo, create_dumb.pitch, 1, height, format);
397 
398 	bo->handle.u32 = create_dumb.handle;
399 
400 	bo->meta.total_size = create_dumb.size;
401 	return 0;
402 }
403 
drv_dumb_bo_create(struct bo * bo,uint32_t width,uint32_t height,uint32_t format,uint64_t use_flags)404 int drv_dumb_bo_create(struct bo *bo, uint32_t width, uint32_t height, uint32_t format,
405 		       uint64_t use_flags)
406 {
407 	return drv_dumb_bo_create_ex(bo, width, height, format, use_flags, BO_QUIRK_NONE);
408 }
409 
drv_dumb_bo_destroy(struct bo * bo)410 int drv_dumb_bo_destroy(struct bo *bo)
411 {
412 	int ret;
413 	struct drm_mode_destroy_dumb destroy_dumb = { 0 };
414 
415 	destroy_dumb.handle = bo->handle.u32;
416 	ret = drmIoctl(bo->drv->fd, DRM_IOCTL_MODE_DESTROY_DUMB, &destroy_dumb);
417 	if (ret) {
418 		drv_loge("DRM_IOCTL_MODE_DESTROY_DUMB failed (handle=%x)\n", bo->handle.u32);
419 		return -errno;
420 	}
421 
422 	return 0;
423 }
424 
drv_gem_close(struct driver * drv,uint32_t gem_handle)425 int drv_gem_close(struct driver *drv, uint32_t gem_handle)
426 {
427 	struct drm_gem_close gem_close;
428 	int ret, error = 0;
429 
430 	memset(&gem_close, 0, sizeof(gem_close));
431 	gem_close.handle = gem_handle;
432 
433 	ret = drmIoctl(drv->fd, DRM_IOCTL_GEM_CLOSE, &gem_close);
434 	if (ret) {
435 		drv_loge("DRM_IOCTL_GEM_CLOSE failed (handle=%x) error %d\n", gem_handle, ret);
436 		error = -errno;
437 	}
438 
439 	return error;
440 }
441 
drv_gem_bo_destroy(struct bo * bo)442 int drv_gem_bo_destroy(struct bo *bo)
443 {
444 	return drv_gem_close(bo->drv, bo->handle.u32);
445 }
446 
drv_prime_bo_import(struct bo * bo,struct drv_import_fd_data * data)447 int drv_prime_bo_import(struct bo *bo, struct drv_import_fd_data *data)
448 {
449 	int ret;
450 	size_t plane;
451 	struct drm_prime_handle prime_handle;
452 
453 	for (plane = 0; plane < bo->meta.num_planes; plane++) {
454 		memset(&prime_handle, 0, sizeof(prime_handle));
455 		prime_handle.fd = data->fds[plane];
456 
457 		ret = drmIoctl(bo->drv->fd, DRM_IOCTL_PRIME_FD_TO_HANDLE, &prime_handle);
458 
459 		if (plane > 0 && !ret && bo->handle.u32 != prime_handle.handle) {
460 			drv_gem_close(bo->drv, prime_handle.handle);
461 			ret = -1;
462 			errno = EINVAL;
463 		}
464 
465 		if (ret) {
466 			drv_loge("DRM_IOCTL_PRIME_FD_TO_HANDLE failed (fd=%u)\n", prime_handle.fd);
467 			if (plane > 0)
468 				drv_gem_close(bo->drv, bo->handle.u32);
469 			return -errno;
470 		}
471 
472 		bo->handle.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->handle.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 
drv_get_os_option(const char * name)624 const char *drv_get_os_option(const char *name)
625 {
626 	const char *ret = getenv(name);
627 #ifdef __ANDROID__
628 	if (!ret) {
629 		static char prop[PROPERTY_VALUE_MAX];
630 		return property_get(name, prop, NULL) > 1 ? prop : NULL;
631 	}
632 #endif
633 	return ret;
634 }
635 
lru_remove_entry(struct lru_entry * entry)636 static void lru_remove_entry(struct lru_entry *entry)
637 {
638 	entry->prev->next = entry->next;
639 	entry->next->prev = entry->prev;
640 }
641 
lru_link_entry(struct lru * lru,struct lru_entry * entry)642 static void lru_link_entry(struct lru *lru, struct lru_entry *entry)
643 {
644 	struct lru_entry *head = &lru->head;
645 	entry->prev = head;
646 	entry->next = head->next;
647 
648 	head->next->prev = entry;
649 	head->next = entry;
650 }
651 
lru_find(struct lru * lru,bool (* eq)(struct lru_entry * e,void * data),void * data)652 struct lru_entry *lru_find(struct lru *lru, bool (*eq)(struct lru_entry *e, void *data), void *data)
653 {
654 	struct lru_entry *head = &lru->head;
655 	struct lru_entry *cur = head->next;
656 
657 	while (cur != head) {
658 		if (eq(cur, data)) {
659 			lru_remove_entry(cur);
660 			lru_link_entry(lru, cur);
661 			return cur;
662 		}
663 		cur = cur->next;
664 	}
665 
666 	return NULL;
667 }
668 
lru_insert(struct lru * lru,struct lru_entry * entry)669 void lru_insert(struct lru *lru, struct lru_entry *entry)
670 {
671 	if (lru->count == lru->max) {
672 		lru_remove_entry(lru->head.prev);
673 	} else {
674 		lru->count++;
675 	}
676 	lru_link_entry(lru, entry);
677 }
678 
lru_init(struct lru * lru,int max)679 void lru_init(struct lru *lru, int max)
680 {
681 	lru->head.next = &lru->head;
682 	lru->head.prev = &lru->head;
683 	lru->count = 0;
684 	lru->max = max;
685 }
686