mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-04-05 10:20:36 +02:00
Although gbm_gralloc has not been maintained for a long time, it is still used in android-x86, BlissOS and WayDroid. Let's add support so that x86 drivers no longer need to request tiling flags from the kernel. Acked-by: Chia-I Wu <olvaffe@gmail.com> Acked-by: David Heidelberg <david.heidelberg@collabora.com> Tested-by: HMTheBoy154 <buingoc67@gmail.com> # BlissOS 15 & Mesa 23.3.2 Tested-by: Mauro Rossi <issor.oruam@gmail.com> # android-x86 for mesa 24.0.0-devel on Skylake GT2 Signed-off-by: Roman Stratiienko <r.stratiienko@gmail.com> Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/25380>
62 lines
2 KiB
C
62 lines
2 KiB
C
/*
|
|
* Copyright (C) 2010-2011 Chia-I Wu <olvaffe@gmail.com>
|
|
* Copyright (C) 2010-2011 LunarG Inc.
|
|
* Copyright (C) 2016 Linaro, Ltd., Rob Herring <robh@kernel.org>
|
|
* Copyright (C) 2018 Collabora, Robert Foss <robert.foss@collabora.com>
|
|
*
|
|
* SPDX-License-Identifier: MIT
|
|
*
|
|
* Copied from:
|
|
* https://gitlab.freedesktop.org/mesa/drm/-/blob/6abc164052e4902f67213baa279d743cf46227d4/android/gralloc_handle.h
|
|
*/
|
|
|
|
#ifndef __ANDROID_GRALLOC_HANDLE_H__
|
|
#define __ANDROID_GRALLOC_HANDLE_H__
|
|
|
|
#include <cutils/native_handle.h>
|
|
#include <stdint.h>
|
|
|
|
struct gralloc_handle_t {
|
|
native_handle_t base;
|
|
|
|
/* dma-buf file descriptor
|
|
* Must be located first since, native_handle_t is allocated
|
|
* using native_handle_create(), which allocates space for
|
|
* sizeof(native_handle_t) + sizeof(int) * (numFds + numInts)
|
|
* numFds = GRALLOC_HANDLE_NUM_FDS
|
|
* numInts = GRALLOC_HANDLE_NUM_INTS
|
|
* Where numFds represents the number of FDs and
|
|
* numInts represents the space needed for the
|
|
* remainder of this struct.
|
|
* And the FDs are expected to be found first following
|
|
* native_handle_t.
|
|
*/
|
|
int prime_fd;
|
|
|
|
/* api variables */
|
|
uint32_t magic; /* differentiate between allocator impls */
|
|
uint32_t version; /* api version */
|
|
|
|
uint32_t width; /* width of buffer in pixels */
|
|
uint32_t height; /* height of buffer in pixels */
|
|
uint32_t format; /* pixel format (Android) */
|
|
uint32_t usage; /* android libhardware usage flags */
|
|
|
|
uint32_t stride; /* the stride in bytes */
|
|
int data_owner; /* owner of data (for validation) */
|
|
uint64_t modifier __attribute__((aligned(8))); /* buffer modifiers */
|
|
|
|
union {
|
|
void *data; /* pointer to struct gralloc_gbm_bo_t */
|
|
uint64_t reserved;
|
|
} __attribute__((aligned(8)));
|
|
};
|
|
|
|
#define GRALLOC_HANDLE_VERSION 4
|
|
#define GRALLOC_HANDLE_MAGIC 0x60585350
|
|
#define GRALLOC_HANDLE_NUM_FDS 1
|
|
#define GRALLOC_HANDLE_NUM_INTS ( \
|
|
((sizeof(struct gralloc_handle_t) - sizeof(native_handle_t))/sizeof(int)) \
|
|
- GRALLOC_HANDLE_NUM_FDS)
|
|
|
|
#endif /* __ANDROID_GRALLOC_HANDLE_H__ */
|