| /* |
| * Copyright (C) 2017-2019 ARM Limited. All rights reserved. |
| * |
| * Copyright (C) 2008 The Android Open Source Project |
| * |
| * Licensed under the Apache License, Version 2.0 (the "License"); |
| * you may not use this file except in compliance with the License. |
| * You may obtain a copy of the License at |
| * |
| * http://www.apache.org/licenses/LICENSE-2.0 |
| * |
| * Unless required by applicable law or agreed to in writing, software |
| * distributed under the License is distributed on an "AS IS" BASIS, |
| * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| * See the License for the specific language governing permissions and |
| * limitations under the License. |
| */ |
| #ifndef MALI_GRALLOC_BUFFER_H_ |
| #define MALI_GRALLOC_BUFFER_H_ |
| |
| #include <inttypes.h> |
| #include <stdint.h> |
| #include <unistd.h> |
| #include <errno.h> |
| #include <string.h> |
| #include <sys/mman.h> |
| #include <cutils/native_handle.h> |
| #include <string.h> |
| //#include <linux/ion.h> |
| |
| #include "gralloc_helper.h" |
| #include "mali_gralloc_private_interface_types.h" |
| |
| typedef int ion_user_handle_t; |
| |
| /* NOTE: |
| * If your framebuffer device driver is integrated with dma_buf, you will have to |
| * change this IOCTL definition to reflect your integration with the framebuffer |
| * device. |
| * Expected return value is a structure filled with a file descriptor |
| * backing your framebuffer device memory. |
| */ |
| struct fb_dmabuf_export |
| { |
| __u32 fd; |
| __u32 flags; |
| }; |
| #define FBIOGET_DMABUF _IOR('F', 0x21, struct fb_dmabuf_export) |
| |
| /* the max string size of GRALLOC_HARDWARE_GPU0 & GRALLOC_HARDWARE_FB0 |
| * 8 is big enough for "gpu0" & "fb0" currently |
| */ |
| #define MALI_GRALLOC_HARDWARE_MAX_STR_LEN 8 |
| #define NUM_FB_BUFFERS 2 |
| |
| /* Define number of shared file descriptors */ |
| #define GRALLOC_ARM_NUM_FDS 2 |
| |
| #define NUM_INTS_IN_PRIVATE_HANDLE ((sizeof(struct private_handle_t) - sizeof(native_handle)) / sizeof(int) - GRALLOC_ARM_NUM_FDS) |
| |
| #define SZ_4K 0x00001000 |
| #define SZ_2M 0x00200000 |
| |
| /* |
| * Maximum number of pixel format planes. |
| * Plane [0]: Single plane formats (inc. RGB, YUV) and Y |
| * Plane [1]: U/V, UV |
| * Plane [2]: V/U |
| */ |
| #define MAX_PLANES 3 |
| |
| typedef struct plane_info { |
| |
| /* |
| * Offset to plane (in bytes), |
| * from the start of the allocation. |
| */ |
| uint32_t offset; |
| |
| /* |
| * Byte Stride: number of bytes between two vertically adjacent |
| * pixels in given plane. This can be mathematically described by: |
| * |
| * byte_stride = ALIGN((alloc_width * bpp)/8, alignment) |
| * |
| * where, |
| * |
| * alloc_width: width of plane in pixels (c.f. pixel_stride) |
| * bpp: average bits per pixel |
| * alignment (in bytes): dependent upon pixel format and usage |
| * |
| * For uncompressed allocations, byte_stride might contain additional |
| * padding beyond the alloc_width. For AFBC, alignment is zero. |
| */ |
| uint32_t byte_stride; |
| |
| /* |
| * Dimensions of plane (in pixels). |
| * |
| * For single plane formats, pixels equates to luma samples. |
| * For multi-plane formats, pixels equates to the number of sample sites |
| * for the corresponding plane, even if subsampled. |
| * |
| * AFBC compressed formats: requested width/height are rounded-up |
| * to a whole AFBC superblock/tile (next superblock at minimum). |
| * Uncompressed formats: dimensions typically match width and height |
| * but might require pixel stride alignment. |
| * |
| * See 'byte_stride' for relationship between byte_stride and alloc_width. |
| * |
| * Any crop rectangle defined by GRALLOC_ARM_BUFFER_ATTR_CROP_RECT must |
| * be wholly within the allocation dimensions. The crop region top-left |
| * will be relative to the start of allocation. |
| */ |
| uint32_t alloc_width; |
| uint32_t alloc_height; |
| } plane_info_t; |
| |
| struct private_handle_t; |
| |
| #ifndef __cplusplus |
| /* C99 with pedantic don't allow anonymous unions which is used in below struct |
| * Disable pedantic for C for this struct only. |
| */ |
| #pragma GCC diagnostic push |
| #pragma GCC diagnostic ignored "-Wpedantic" |
| #endif |
| |
| #ifdef __cplusplus |
| struct private_handle_t : public native_handle |
| { |
| #else |
| struct private_handle_t |
| { |
| struct native_handle nativeHandle; |
| #endif |
| |
| #ifdef __cplusplus |
| /* Never intended to be used from C code */ |
| enum |
| { |
| PRIV_FLAGS_FRAMEBUFFER = 1U << 0, |
| PRIV_FLAGS_USES_ION_COMPOUND_HEAP = 1U << 1, |
| PRIV_FLAGS_USES_ION = 1U << 2, |
| PRIV_FLAGS_USES_ION_DMA_HEAP = 1U << 3, |
| PRIV_FLAGS_USES_2PRIVATE_DATA = 1U << 4, |
| PRIV_FLAGS_USES_3PRIVATE_DATA = 1U << 5, |
| PRIV_FLAGS_USES_HFR_MODE = 1U << 6, |
| }; |
| |
| enum |
| { |
| LOCK_STATE_WRITE = 1 << 31, |
| LOCK_STATE_MAPPED = 1 << 30, |
| LOCK_STATE_READ_MASK = 0x3FFFFFFF |
| }; |
| #endif |
| |
| /* |
| * Shared file descriptor for dma_buf sharing. This must be the first element in the |
| * structure so that binder knows where it is and can properly share it between |
| * processes. |
| * DO NOT MOVE THIS ELEMENT! |
| */ |
| union |
| { |
| int share_fd; |
| int fds[4]; |
| }; |
| |
| short pad_w; |
| short pad_h; |
| |
| // ints |
| int magic; |
| int flags; |
| |
| /* |
| * Input properties. |
| * |
| * req_format: Pixel format, base + private modifiers. |
| * width/height: Buffer dimensions. |
| * producer/consumer_usage: Buffer usage (indicates IP) |
| */ |
| int width; |
| int height; |
| int req_format; |
| uint64_t producer_usage; |
| uint64_t consumer_usage; |
| |
| /* |
| * DEPRECATED members. |
| * Equivalent information can be obtained from other fields: |
| * |
| * - 'internal_format' --> alloc_format |
| * - 'stride' (pixel stride) ~= plane_info[0].alloc_width |
| * - 'byte_stride' ~= plane_info[0].byte_stride |
| * - 'internalWidth' ~= plane_info[0].alloc_width |
| * - 'internalHeight' ~= plane_info[0].alloc_height |
| * |
| * '~=' (approximately equal) is used because the fields were either previously |
| * incorrectly populated by gralloc or the meaning has slightly changed. |
| * |
| * NOTE: 'stride' values sometimes vary significantly from plane_info[0].alloc_width. |
| */ |
| union |
| { |
| uint32_t format; |
| uint64_t internal_format; |
| }; |
| |
| /* |
| * Allocation properties. |
| * |
| * alloc_format: Pixel format (base + modifiers). NOTE: base might differ from requested |
| * format (req_format) where fallback to single-plane format was required. |
| * plane_info: Per plane allocation information. |
| * size: Total bytes allocated for buffer (inc. all planes, layers. etc.). |
| * layer_count: Number of layers allocated to buffer. |
| * All layers are the same size (in bytes). |
| * Multi-layers supported in v1.0, where GRALLOC1_CAPABILITY_LAYERED_BUFFERS is enabled. |
| * Layer size: 'size' / 'layer_count'. |
| * Layer (n) offset: n * ('size' / 'layer_count'), n=0 for the first layer. |
| * |
| */ |
| uint64_t alloc_format; |
| plane_info_t plane_info[MAX_PLANES]; |
| union |
| { |
| int size; |
| int sizes[3]; |
| }; |
| uint32_t stride; |
| uint32_t layer_count; |
| |
| union |
| { |
| void *base; |
| uint64_t bases[3]; |
| }; |
| |
| uint64_t backing_store_id; |
| short alignment_w; |
| short alignment_h; |
| int cpu_read; /**< Buffer is locked for CPU read when non-zero. */ |
| int cpu_write; /**< Buffer is locked for CPU write when non-zero. */ |
| int allocating_pid; |
| int remote_pid; |
| int ref_count; |
| // locally mapped shared attribute area |
| union |
| { |
| void *attr_base; |
| uint64_t padding3; |
| }; |
| |
| /* |
| * Deprecated. |
| * Use GRALLOC_ARM_BUFFER_ATTR_DATASPACE |
| * instead. |
| */ |
| mali_gralloc_yuv_info yuv_info; |
| |
| // Following members is for framebuffer only |
| int fb_fd; |
| union |
| { |
| off_t offset; |
| uint64_t padding4; |
| }; |
| |
| union |
| { |
| void *video_metadata_addr_UNUSED; |
| uint64_t padding5; |
| }; |
| |
| ion_user_handle_t ion_handles[3] = {0, 0, 0}; |
| |
| /* |
| * min_pgsz denotes minimum phys_page size used by this buffer. |
| * if buffer memory is physical contiguous set min_pgsz to buff->size |
| * if not sure buff's real phys_page size, you can use SZ_4K for safe. |
| */ |
| int min_pgsz = SZ_4K; |
| int is_compressible = 0; |
| int plane_count = 1; |
| |
| #ifdef __cplusplus |
| /* |
| * We track the number of integers in the structure. There are 16 unconditional |
| * integers (magic - pid, yuv_info, fd and offset). Note that the fd element is |
| * considered an int not an fd because it is not intended to be used outside the |
| * surface flinger process. The GRALLOC_ARM_NUM_INTS variable is used to track the |
| * number of integers that are conditionally included. Similar considerations apply |
| * to the number of fds. |
| */ |
| static const int sNumFds = GRALLOC_ARM_NUM_FDS; |
| static const int sMagic = 0x3141592; |
| |
| private_handle_t(int _flags, int _size, void *_base, uint64_t _consumer_usage, uint64_t _producer_usage, |
| int fb_file, off_t fb_offset, int _byte_stride, int _width, int _height, uint64_t _alloc_format) |
| : share_fd(-1) |
| , pad_w(0) |
| , pad_h(0) |
| , magic(sMagic) |
| , flags(_flags) |
| , width(0) |
| , height(0) |
| , req_format(0) |
| , producer_usage(_producer_usage) |
| , consumer_usage(_consumer_usage) |
| , alloc_format(_alloc_format) |
| , size(_size) |
| , stride(0) |
| , layer_count(0) |
| , base(_base) |
| , backing_store_id(0x0) |
| , alignment_w(0) |
| , alignment_h(0) |
| , cpu_read(0) |
| , cpu_write(0) |
| , allocating_pid(getpid()) |
| , remote_pid(-1) |
| , ref_count(1) |
| , attr_base(MAP_FAILED) |
| , yuv_info(MALI_YUV_NO_INFO) |
| , fb_fd(fb_file) |
| , offset(fb_offset) |
| , video_metadata_addr_UNUSED(0) |
| , plane_count(1) |
| { |
| version = sizeof(native_handle); |
| |
| fds[1] = fds[2] = fds[3] = -1; |
| sizes[1] = sizes[2] = 0; |
| |
| numFds = sNumFds; |
| numInts = NUM_INTS_IN_PRIVATE_HANDLE; |
| memset(plane_info, 0, sizeof(plane_info_t) * MAX_PLANES); |
| |
| bases[1] = 0; |
| bases[2] = 0; |
| |
| plane_info[0].offset = fb_offset; |
| plane_info[0].byte_stride = _byte_stride; |
| plane_info[0].alloc_width = _width; |
| plane_info[0].alloc_height = _height; |
| } |
| |
| private_handle_t(int _flags, int _size, int _size1, int _size2, int _min_pgsz, |
| uint64_t _consumer_usage, uint64_t _producer_usage, |
| int _shared_fd, int _fd_yuv1, int _fd_yuv2, |
| int _req_format, uint64_t _internal_format, uint64_t _alloc_format, |
| int _width, int _height, int _backing_store_size, uint32_t _stride, |
| uint64_t _layer_count, plane_info_t _plane_info[MAX_PLANES], int _is_compressible, int _plane_count) |
| : share_fd(_shared_fd) |
| , pad_w(0) |
| , pad_h(0) |
| , magic(sMagic) |
| , flags(_flags) |
| , width(_width) |
| , height(_height) |
| , req_format(_req_format) |
| , producer_usage(_producer_usage) |
| , consumer_usage(_consumer_usage) |
| , internal_format(_internal_format) |
| , alloc_format(_alloc_format) |
| , stride(_stride) |
| , layer_count(_layer_count) |
| , base(NULL) |
| , backing_store_id(0x0) |
| , alignment_w(0) |
| , alignment_h(0) |
| , cpu_read(0) |
| , cpu_write(0) |
| , allocating_pid(getpid()) |
| , remote_pid(-1) |
| , ref_count(1) |
| , attr_base(MAP_FAILED) |
| , yuv_info(MALI_YUV_NO_INFO) |
| , fb_fd(-1) |
| , offset(0) |
| , video_metadata_addr_UNUSED(0) |
| , min_pgsz(_min_pgsz) |
| , is_compressible(_is_compressible) |
| , plane_count(_plane_count) |
| { |
| version = sizeof(native_handle); |
| |
| GRALLOC_UNUSED(_backing_store_size); |
| |
| fds[1] = fds[2] = fds[3] = -1; |
| sizes[0] = _size; |
| sizes[1] = _size1; |
| sizes[2] = _size2; |
| |
| numFds = sNumFds; |
| numInts = NUM_INTS_IN_PRIVATE_HANDLE; |
| memcpy(plane_info, _plane_info, sizeof(plane_info_t) * MAX_PLANES); |
| |
| if (_fd_yuv1 != -1) |
| { |
| fds[1] = _fd_yuv1; |
| numFds++; |
| numInts--; |
| } |
| if (_fd_yuv2 != -1) |
| { |
| fds[2] = _fd_yuv2; |
| numFds++; |
| numInts--; |
| } |
| |
| bases[1] = 0; |
| bases[2] = 0; |
| } |
| |
| ~private_handle_t() |
| { |
| magic = 0; |
| } |
| |
| void dump(const char *str) const |
| { |
| AINF("[%s] " |
| "unique_id(%" PRIu64 ") " |
| "fd(%d %d %d %d) " |
| "flags(%d) " |
| "wh(%d %d) " |
| "req_format(0x%x) " |
| "usage_pc(0x%" PRIx64 " 0x%" PRIx64 ") " |
| "interal_format(0x%" PRIx64 ") " |
| "width height (%d %d) " |
| "stride(%d) byte_stride(%d) internal_wh(%d %d) " |
| "alloc_format(0x%" PRIx64 ") " |
| "size(%d %d %d) " |
| "layer_count(%d) plane_count(%d)" |
| "bases(0x%" PRIx64 " 0x%" PRIx64 " 0x%" PRIx64 ") " |
| "align(%d %d %d %d) " |
| "\n", |
| str, |
| backing_store_id, |
| fds[0], fds[1], fds[2], fds[3], |
| flags, |
| width, height, |
| req_format, |
| producer_usage, consumer_usage, |
| internal_format, |
| width, height, |
| stride, plane_info[0].byte_stride, plane_info[0].alloc_width, plane_info[0].alloc_height, |
| alloc_format, |
| sizes[0], sizes[1], sizes[2], |
| layer_count, plane_count, |
| bases[0], bases[1], bases[2], |
| pad_w, pad_h, alignment_w, alignment_h |
| ); |
| } |
| |
| bool usesPhysicallyContiguousMemory() |
| { |
| return (flags & PRIV_FLAGS_FRAMEBUFFER) ? true : false; |
| } |
| |
| static int validate(const native_handle *h) |
| { |
| const private_handle_t *hnd = (const private_handle_t *)h; |
| |
| if (!h || h->version != sizeof(native_handle) || |
| hnd->numInts + hnd->numFds != NUM_INTS_IN_PRIVATE_HANDLE + sNumFds || |
| hnd->magic != sMagic) |
| { |
| return -EINVAL; |
| } |
| |
| return 0; |
| } |
| |
| bool is_multi_plane() const |
| { |
| /* For multi-plane, the byte stride for the second plane will always be non-zero. */ |
| return plane_count > 1; |
| } |
| |
| static private_handle_t *dynamicCast(const native_handle *in) |
| { |
| if (validate(in) == 0) |
| { |
| return (private_handle_t *)in; |
| } |
| |
| return NULL; |
| } |
| |
| int get_share_attr_fd() const |
| { |
| if (numFds <= 1) |
| { |
| return -1; |
| } |
| |
| return fds[numFds - 1]; |
| } |
| |
| void set_share_attr_fd(int _share_attr_fd) |
| { |
| fds[numFds - 1] = _share_attr_fd; |
| } |
| |
| int get_num_ion_fds() const |
| { |
| return numFds - 1; |
| } |
| #endif |
| }; |
| #ifndef __cplusplus |
| /* Restore previous diagnostic for pedantic */ |
| #pragma GCC diagnostic pop |
| #endif |
| |
| #endif /* MALI_GRALLOC_BUFFER_H_ */ |