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 __QTIGRALLOCMETADATA_H__ |
| 31 | #define __QTIGRALLOCMETADATA_H__ |
| 32 | |
| 33 | #include <color_metadata.h> |
Tharaga Balachandran | aa640f7 | 2020-03-10 13:52:04 -0400 | [diff] [blame] | 34 | |
Tharaga Balachandran | a069a7e | 2020-01-08 17:22:12 -0500 | [diff] [blame] | 35 | #define QTI_VT_TIMESTAMP 10000 |
| 36 | #define QTI_COLOR_METADATA 10001 |
| 37 | #define QTI_PP_PARAM_INTERLACED 10002 |
| 38 | #define QTI_VIDEO_PERF_MODE 10003 |
| 39 | #define QTI_GRAPHICS_METADATA 10004 |
| 40 | #define QTI_UBWC_CR_STATS_INFO 10005 |
| 41 | #define QTI_REFRESH_RATE 10006 |
| 42 | #define QTI_MAP_SECURE_BUFFER 10007 |
| 43 | #define QTI_LINEAR_FORMAT 10008 |
| 44 | #define QTI_SINGLE_BUFFER_MODE 10009 |
| 45 | #define QTI_CVP_METADATA 10010 |
| 46 | #define QTI_VIDEO_HISTOGRAM_STATS 10011 |
Tharaga Balachandran | aa640f7 | 2020-03-10 13:52:04 -0400 | [diff] [blame] | 47 | // File descriptor for allocated buffer |
Tharaga Balachandran | a069a7e | 2020-01-08 17:22:12 -0500 | [diff] [blame] | 48 | #define QTI_FD 10012 |
Tharaga Balachandran | aa640f7 | 2020-03-10 13:52:04 -0400 | [diff] [blame] | 49 | // Flags from the private handle of the allocated buffer |
Tharaga Balachandran | a069a7e | 2020-01-08 17:22:12 -0500 | [diff] [blame] | 50 | #define QTI_PRIVATE_FLAGS 10013 |
Tharaga Balachandran | aa640f7 | 2020-03-10 13:52:04 -0400 | [diff] [blame] | 51 | // Width of the allocated buffer in pixels |
| 52 | #define QTI_ALIGNED_WIDTH_IN_PIXELS 10014 |
| 53 | // Height of the allocated buffer in pixels |
| 54 | #define QTI_ALIGNED_HEIGHT_IN_PIXELS 10015 |
Tharaga Balachandran | 3981046 | 2020-06-16 09:34:34 -0400 | [diff] [blame] | 55 | // Indicates whether metadata is using default value or has been set |
| 56 | #define QTI_STANDARD_METADATA_STATUS 10016 |
| 57 | #define QTI_VENDOR_METADATA_STATUS 10017 |
Tharaga Balachandran | bcd39b9 | 2020-04-22 16:40:30 -0400 | [diff] [blame] | 58 | #define QTI_BUFFER_TYPE 10018 |
Tharaga Balachandran | a069a7e | 2020-01-08 17:22:12 -0500 | [diff] [blame] | 59 | |
| 60 | // Used to indicate to framework that internal definitions are used instead |
| 61 | #define COMPRESSION_QTI_UBWC 20001 |
| 62 | #define INTERLACED_QTI 20002 |
| 63 | |
| 64 | #define PLANE_COMPONENT_TYPE_RAW 20003 |
| 65 | #define PLANE_COMPONENT_TYPE_META 20004 |
| 66 | |
| 67 | #define MAX_NAME_LEN 256 |
| 68 | |
| 69 | // GRAPHICS_METADATA |
| 70 | #define GRAPHICS_METADATA_SIZE 4096 |
Ravi Ranjan | c74a80e | 2020-05-04 09:40:39 +0530 | [diff] [blame] | 71 | #define GRAPHICS_METADATA_SIZE_IN_BYTES (GRAPHICS_METADATA_SIZE * sizeof(uint32_t)) |
Tharaga Balachandran | a069a7e | 2020-01-08 17:22:12 -0500 | [diff] [blame] | 72 | typedef struct GraphicsMetadata { |
Ravi Ranjan | c74a80e | 2020-05-04 09:40:39 +0530 | [diff] [blame] | 73 | uint32_t size; //unused in Gralloc4, in Gralloc3 it was never returned on Get() |
| 74 | uint32_t data[GRAPHICS_METADATA_SIZE]; //Clients must set only raw data with Gralloc4 |
Tharaga Balachandran | a069a7e | 2020-01-08 17:22:12 -0500 | [diff] [blame] | 75 | } GraphicsMetadata; |
| 76 | |
| 77 | // UBWC_CR_STATS_INFO |
| 78 | #define MAX_UBWC_STATS_LENGTH 32 |
| 79 | enum UBWC_Version { |
| 80 | UBWC_UNUSED = 0, |
| 81 | UBWC_1_0 = 0x1, |
| 82 | UBWC_2_0 = 0x2, |
| 83 | UBWC_3_0 = 0x3, |
| 84 | UBWC_4_0 = 0x4, |
| 85 | UBWC_MAX_VERSION = 0xFF, |
| 86 | }; |
| 87 | |
| 88 | struct UBWC_2_0_Stats { |
| 89 | uint32_t nCRStatsTile32; /**< UBWC Stats info for 32 Byte Tile */ |
| 90 | uint32_t nCRStatsTile64; /**< UBWC Stats info for 64 Byte Tile */ |
| 91 | uint32_t nCRStatsTile96; /**< UBWC Stats info for 96 Byte Tile */ |
| 92 | uint32_t nCRStatsTile128; /**< UBWC Stats info for 128 Byte Tile */ |
| 93 | uint32_t nCRStatsTile160; /**< UBWC Stats info for 160 Byte Tile */ |
| 94 | uint32_t nCRStatsTile192; /**< UBWC Stats info for 192 Byte Tile */ |
| 95 | uint32_t nCRStatsTile256; /**< UBWC Stats info for 256 Byte Tile */ |
| 96 | }; |
| 97 | |
| 98 | struct UBWCStats { |
| 99 | enum UBWC_Version version; /* Union depends on this version. */ |
| 100 | uint8_t bDataValid; /* If [non-zero], CR Stats data is valid. |
| 101 | * Consumers may use stats data. |
| 102 | * If [zero], CR Stats data is invalid. |
| 103 | * Consumers *Shall* not use stats data */ |
| 104 | union { |
| 105 | struct UBWC_2_0_Stats ubwc_stats; |
| 106 | uint32_t reserved[MAX_UBWC_STATS_LENGTH]; /* This is for future */ |
| 107 | }; |
| 108 | }; |
| 109 | |
| 110 | #define UBWC_STATS_ARRAY_SIZE 2 |
| 111 | struct CropRectangle_t { |
| 112 | int32_t left; |
| 113 | int32_t top; |
| 114 | int32_t right; |
| 115 | int32_t bottom; |
| 116 | }; |
| 117 | |
| 118 | // CVP_METADATA |
| 119 | #define CVP_METADATA_SIZE 1024 |
| 120 | enum CVPMetadataFlags { |
| 121 | /* bit wise flags */ |
| 122 | CVP_METADATA_FLAG_NONE = 0x00000000, |
| 123 | CVP_METADATA_FLAG_REPEAT = 0x00000001, |
| 124 | }; |
| 125 | |
| 126 | typedef struct CVPMetadata { |
| 127 | uint32_t size; /* payload size in bytes */ |
| 128 | uint8_t payload[CVP_METADATA_SIZE]; |
| 129 | uint32_t capture_frame_rate; |
| 130 | /* Frame rate in Q16 format. |
| 131 | Eg: fps = 7.5, then |
| 132 | capture_frame_rate = 7 << 16 --> Upper 16 bits to represent 7 |
| 133 | capture_frame_rate |= 5 -------> Lower 16 bits to represent 5 |
| 134 | |
| 135 | If size > 0, framerate is valid |
| 136 | If size = 0, invalid data, so ignore all parameters */ |
| 137 | uint32_t cvp_frame_rate; |
| 138 | enum CVPMetadataFlags flags; |
| 139 | uint32_t reserved[8]; |
| 140 | } CVPMetadata; |
| 141 | |
| 142 | // VIDEO_HISTOGRAM_STATS |
| 143 | |
| 144 | #define VIDEO_HISTOGRAM_STATS_SIZE (4 * 1024) |
| 145 | struct VideoHistogramMetadata { |
| 146 | uint32_t stats_info[1024]; /* video stats payload */ |
| 147 | uint32_t stat_len; /* Payload size in bytes */ |
| 148 | uint32_t frame_type; /* bit mask to indicate frame type */ |
| 149 | uint32_t display_width; |
| 150 | uint32_t display_height; |
| 151 | uint32_t decode_width; |
| 152 | uint32_t decode_height; |
| 153 | uint32_t reserved[12]; |
| 154 | }; |
| 155 | |
| 156 | #define RESERVED_REGION_SIZE 4096 |
| 157 | typedef struct ReservedRegion { |
| 158 | uint32_t size; |
| 159 | uint8_t data[RESERVED_REGION_SIZE]; |
| 160 | } ReservedRegion; |
| 161 | |
Tharaga Balachandran | 3981046 | 2020-06-16 09:34:34 -0400 | [diff] [blame] | 162 | #define METADATA_SET_SIZE 512 |
| 163 | |
| 164 | #define IS_VENDOR_METADATA_TYPE(x) (x >= QTI_VT_TIMESTAMP) |
| 165 | |
| 166 | #define GET_STANDARD_METADATA_STATUS_INDEX(x) x |
| 167 | #define GET_VENDOR_METADATA_STATUS_INDEX(x) x - QTI_VT_TIMESTAMP |
| 168 | |
Tharaga Balachandran | a069a7e | 2020-01-08 17:22:12 -0500 | [diff] [blame] | 169 | #endif //__QTIGRALLOCMETADATA_H__ |