Tharaga Balachandran | a069a7e | 2020-01-08 17:22:12 -0500 | [diff] [blame] | 1 | /* |
| 2 | * Copyright (c) 2020 The Linux Foundation. All rights reserved. |
| 3 | * |
| 4 | * Redistribution and use in source and binary forms, with or without |
| 5 | * modification, are permitted provided that the following conditions are |
| 6 | * met: |
| 7 | * * Redistributions of source code must retain the above copyright |
| 8 | * notice, this list of conditions and the following disclaimer. |
| 9 | * * Redistributions in binary form must reproduce the above |
| 10 | * copyright notice, this list of conditions and the following |
| 11 | * disclaimer in the documentation and/or other materials provided |
| 12 | * with the distribution. |
| 13 | * * Neither the name of The Linux Foundation. nor the names of its |
| 14 | * contributors may be used to endorse or promote products derived |
| 15 | * from this software without specific prior written permission. |
| 16 | * |
| 17 | * THIS SOFTWARE IS PROVIDED "AS IS" AND ANY EXPRESS OR IMPLIED |
| 18 | * WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF |
| 19 | * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT |
| 20 | * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS |
| 21 | * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR |
| 22 | * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF |
| 23 | * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR |
| 24 | * BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, |
| 25 | * WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE |
| 26 | * OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN |
| 27 | * IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
| 28 | */ |
| 29 | |
| 30 | #ifndef __QTIGRALLOC_H__ |
| 31 | #define __QTIGRALLOC_H__ |
| 32 | |
| 33 | #include <android/hardware/graphics/mapper/4.0/IMapper.h> |
| 34 | #include <gralloctypes/Gralloc4.h> |
| 35 | #include <hidl/HidlSupport.h> |
| 36 | #include <stdint.h> |
| 37 | |
| 38 | #include <string> |
| 39 | |
| 40 | #include "QtiGrallocDefs.h" |
| 41 | #include "QtiGrallocMetadata.h" |
| 42 | |
| 43 | namespace qtigralloc { |
| 44 | using android::sp; |
| 45 | using android::hardware::hidl_vec; |
| 46 | using MetadataType = android::hardware::graphics::mapper::V4_0::IMapper::MetadataType; |
| 47 | using android::hardware::graphics::mapper::V4_0::Error; |
| 48 | // from gr_priv_handle.h |
| 49 | enum { |
| 50 | PRIV_FLAGS_USES_ION = 0x00000008, |
| 51 | PRIV_FLAGS_NEEDS_FLUSH = 0x00000020, |
| 52 | PRIV_FLAGS_NON_CPU_WRITER = 0x00000080, |
| 53 | PRIV_FLAGS_CACHED = 0x00000200, |
| 54 | PRIV_FLAGS_SECURE_BUFFER = 0x00000400, |
| 55 | PRIV_FLAGS_VIDEO_ENCODER = 0x00010000, |
| 56 | PRIV_FLAGS_CAMERA_WRITE = 0x00020000, |
| 57 | PRIV_FLAGS_CAMERA_READ = 0x00040000, |
| 58 | PRIV_FLAGS_HW_TEXTURE = 0x00100000, |
| 59 | PRIV_FLAGS_SECURE_DISPLAY = 0x01000000, |
| 60 | PRIV_FLAGS_UBWC_ALIGNED = 0x08000000, |
| 61 | PRIV_FLAGS_UBWC_ALIGNED_PI = 0x40000000, // PI format |
| 62 | }; |
| 63 | |
| 64 | // Metadata |
Yichi Chen | bddad07 | 2020-03-23 12:50:12 +0800 | [diff] [blame] | 65 | static const std::string VENDOR_QTI = "QTI"; |
Tharaga Balachandran | a069a7e | 2020-01-08 17:22:12 -0500 | [diff] [blame] | 66 | |
| 67 | Error get(void *buffer, uint32_t type, void *param); |
| 68 | Error set(void *buffer, uint32_t type, void *param); |
| 69 | MetadataType getMetadataType(uint32_t in); |
Tharaga Balachandran | 3981046 | 2020-06-16 09:34:34 -0400 | [diff] [blame] | 70 | int getMetadataState(void *buffer, uint32_t type); |
Tharaga Balachandran | a069a7e | 2020-01-08 17:22:12 -0500 | [diff] [blame] | 71 | |
| 72 | static const MetadataType MetadataType_VTTimestamp = {VENDOR_QTI, QTI_VT_TIMESTAMP}; |
| 73 | |
| 74 | static const MetadataType MetadataType_ColorMetadata = {VENDOR_QTI, QTI_COLOR_METADATA}; |
| 75 | |
| 76 | static const MetadataType MetadataType_PPParamInterlaced = {VENDOR_QTI, QTI_PP_PARAM_INTERLACED}; |
| 77 | |
| 78 | static const MetadataType MetadataType_VideoPerfMode = {VENDOR_QTI, QTI_VIDEO_PERF_MODE}; |
| 79 | |
| 80 | static const MetadataType MetadataType_GraphicsMetadata = {VENDOR_QTI, QTI_GRAPHICS_METADATA}; |
| 81 | |
| 82 | static const MetadataType MetadataType_UBWCCRStatsInfo = {VENDOR_QTI, QTI_UBWC_CR_STATS_INFO}; |
| 83 | |
| 84 | static const MetadataType MetadataType_RefreshRate = {VENDOR_QTI, QTI_REFRESH_RATE}; |
| 85 | static const MetadataType MetadataType_MapSecureBuffer = {VENDOR_QTI, QTI_MAP_SECURE_BUFFER}; |
| 86 | |
| 87 | static const MetadataType MetadataType_LinearFormat = {VENDOR_QTI, QTI_LINEAR_FORMAT}; |
| 88 | |
| 89 | static const MetadataType MetadataType_SingleBufferMode = {VENDOR_QTI, QTI_SINGLE_BUFFER_MODE}; |
| 90 | |
| 91 | static const MetadataType MetadataType_CVPMetadata = {VENDOR_QTI, QTI_CVP_METADATA}; |
| 92 | |
| 93 | static const MetadataType MetadataType_VideoHistogramStats = {VENDOR_QTI, |
| 94 | QTI_VIDEO_HISTOGRAM_STATS}; |
| 95 | |
| 96 | static const MetadataType MetadataType_FD = {VENDOR_QTI, QTI_FD}; |
| 97 | |
| 98 | static const MetadataType MetadataType_PrivateFlags = {VENDOR_QTI, QTI_PRIVATE_FLAGS}; |
| 99 | |
Tharaga Balachandran | aa640f7 | 2020-03-10 13:52:04 -0400 | [diff] [blame] | 100 | static const MetadataType MetadataType_AlignedWidthInPixels = {VENDOR_QTI, |
| 101 | QTI_ALIGNED_WIDTH_IN_PIXELS}; |
| 102 | |
| 103 | static const MetadataType MetadataType_AlignedHeightInPixels = {VENDOR_QTI, |
| 104 | QTI_ALIGNED_HEIGHT_IN_PIXELS}; |
| 105 | |
Tharaga Balachandran | 3981046 | 2020-06-16 09:34:34 -0400 | [diff] [blame] | 106 | static const MetadataType MetadataType_StandardMetadataStatus = {VENDOR_QTI, |
| 107 | QTI_STANDARD_METADATA_STATUS}; |
| 108 | |
| 109 | static const MetadataType MetadataType_VendorMetadataStatus = {VENDOR_QTI, |
| 110 | QTI_VENDOR_METADATA_STATUS}; |
| 111 | |
Tharaga Balachandran | bcd39b9 | 2020-04-22 16:40:30 -0400 | [diff] [blame] | 112 | static const MetadataType MetadataType_BufferType = {VENDOR_QTI, |
| 113 | QTI_BUFFER_TYPE}; |
| 114 | |
Tharaga Balachandran | a069a7e | 2020-01-08 17:22:12 -0500 | [diff] [blame] | 115 | // 0 is also used as invalid value in standard metadata |
| 116 | static const MetadataType MetadataType_Invalid = {VENDOR_QTI, 0}; |
| 117 | |
| 118 | static const aidl::android::hardware::graphics::common::ExtendableType Compression_QtiUBWC = { |
| 119 | VENDOR_QTI, COMPRESSION_QTI_UBWC}; |
| 120 | static const aidl::android::hardware::graphics::common::ExtendableType Interlaced_Qti = { |
| 121 | VENDOR_QTI, INTERLACED_QTI}; |
| 122 | |
| 123 | static const aidl::android::hardware::graphics::common::ExtendableType |
| 124 | PlaneLayoutComponentType_Raw = {VENDOR_QTI, PLANE_COMPONENT_TYPE_RAW}; |
| 125 | static const aidl::android::hardware::graphics::common::ExtendableType |
| 126 | PlaneLayoutComponentType_Meta = {VENDOR_QTI, PLANE_COMPONENT_TYPE_META}; |
| 127 | |
Tharaga Balachandran | 3981046 | 2020-06-16 09:34:34 -0400 | [diff] [blame] | 128 | Error decodeMetadataState(hidl_vec<uint8_t> &in, bool *out); |
| 129 | Error encodeMetadataState(bool *in, hidl_vec<uint8_t> *out); |
Tharaga Balachandran | a069a7e | 2020-01-08 17:22:12 -0500 | [diff] [blame] | 130 | Error decodeColorMetadata(hidl_vec<uint8_t> &in, ColorMetaData *out); |
| 131 | Error encodeColorMetadata(ColorMetaData &in, hidl_vec<uint8_t> *out); |
| 132 | Error decodeGraphicsMetadata(hidl_vec<uint8_t> &in, GraphicsMetadata *out); |
| 133 | Error encodeGraphicsMetadata(GraphicsMetadata &in, hidl_vec<uint8_t> *out); |
Ravi Ranjan | c74a80e | 2020-05-04 09:40:39 +0530 | [diff] [blame] | 134 | Error decodeGraphicsMetadataRaw(hidl_vec<uint8_t> &in, void *out); |
| 135 | Error encodeGraphicsMetadataRaw(void *in, hidl_vec<uint8_t> *out); |
Tharaga Balachandran | a069a7e | 2020-01-08 17:22:12 -0500 | [diff] [blame] | 136 | Error decodeUBWCStats(hidl_vec<uint8_t> &in, UBWCStats *out); |
| 137 | Error encodeUBWCStats(UBWCStats *in, hidl_vec<uint8_t> *out); |
| 138 | Error decodeCVPMetadata(hidl_vec<uint8_t> &in, CVPMetadata *out); |
| 139 | Error encodeCVPMetadata(CVPMetadata &in, hidl_vec<uint8_t> *out); |
| 140 | Error decodeVideoHistogramMetadata(hidl_vec<uint8_t> &in, VideoHistogramMetadata *out); |
| 141 | Error encodeVideoHistogramMetadata(VideoHistogramMetadata &in, hidl_vec<uint8_t> *out); |
Tharaga Balachandran | a069a7e | 2020-01-08 17:22:12 -0500 | [diff] [blame] | 142 | } // namespace qtigralloc |
| 143 | |
| 144 | #endif //__QTIGRALLOC_H__ |