Iliyan Malchev | 202a77d | 2012-06-11 14:41:12 -0700 | [diff] [blame] | 1 | /* |
| 2 | * Copyright (C) 2008 The Android Open Source Project |
Saurabh Shah | c5b2b70 | 2016-10-24 17:16:01 -0700 | [diff] [blame^] | 3 | * Copyright (c) 2011 - 2017, The Linux Foundation. All rights reserved. |
Iliyan Malchev | 202a77d | 2012-06-11 14:41:12 -0700 | [diff] [blame] | 4 | * |
| 5 | * Licensed under the Apache License, Version 2.0 (the "License"); |
| 6 | * you may not use this file except in compliance with the License. |
| 7 | * You may obtain a copy of the License at |
| 8 | * |
| 9 | * http://www.apache.org/licenses/LICENSE-2.0 |
| 10 | * |
| 11 | * Unless required by applicable law or agreed to in writing, software |
| 12 | * distributed under the License is distributed on an "AS IS" BASIS, |
| 13 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| 14 | * See the License for the specific language governing permissions and |
| 15 | * limitations under the License. |
| 16 | */ |
| 17 | |
| 18 | #ifndef GR_H_ |
| 19 | #define GR_H_ |
| 20 | |
| 21 | #include <stdint.h> |
Iliyan Malchev | 202a77d | 2012-06-11 14:41:12 -0700 | [diff] [blame] | 22 | #include <limits.h> |
| 23 | #include <sys/cdefs.h> |
| 24 | #include <hardware/gralloc.h> |
| 25 | #include <pthread.h> |
| 26 | #include <errno.h> |
Dileep Marchya | 5b4eaed | 2016-09-22 12:31:11 +0530 | [diff] [blame] | 27 | #include <unistd.h> |
Iliyan Malchev | 202a77d | 2012-06-11 14:41:12 -0700 | [diff] [blame] | 28 | |
| 29 | #include <cutils/native_handle.h> |
Naomi Luis | a44100c | 2013-02-08 12:42:03 -0800 | [diff] [blame] | 30 | #include <utils/Singleton.h> |
Sushil Chauhan | 082acd6 | 2015-01-14 16:49:29 -0800 | [diff] [blame] | 31 | #include "adreno_utils.h" |
Iliyan Malchev | 202a77d | 2012-06-11 14:41:12 -0700 | [diff] [blame] | 32 | |
| 33 | /*****************************************************************************/ |
| 34 | |
| 35 | struct private_module_t; |
| 36 | struct private_handle_t; |
| 37 | |
Saurabh Shah | 8f0ea6f | 2014-05-19 16:48:53 -0700 | [diff] [blame] | 38 | inline unsigned int roundUpToPageSize(unsigned int x) { |
Dileep Marchya | 5b4eaed | 2016-09-22 12:31:11 +0530 | [diff] [blame] | 39 | return (x + (getpagesize()-1)) & ~(getpagesize()-1); |
Iliyan Malchev | 202a77d | 2012-06-11 14:41:12 -0700 | [diff] [blame] | 40 | } |
| 41 | |
Arun Kumar K.R | 6c85f05 | 2014-01-21 21:47:41 -0800 | [diff] [blame] | 42 | template <class Type> |
| 43 | inline Type ALIGN(Type x, Type align) { |
Iliyan Malchev | 202a77d | 2012-06-11 14:41:12 -0700 | [diff] [blame] | 44 | return (x + align-1) & ~(align-1); |
| 45 | } |
| 46 | |
| 47 | #define FALSE 0 |
| 48 | #define TRUE 1 |
| 49 | |
| 50 | int mapFrameBufferLocked(struct private_module_t* module); |
| 51 | int terminateBuffer(gralloc_module_t const* module, private_handle_t* hnd); |
Saurabh Shah | 8f0ea6f | 2014-05-19 16:48:53 -0700 | [diff] [blame] | 52 | unsigned int getBufferSizeAndDimensions(int width, int height, int format, |
| 53 | int usage, int& alignedw, int &alignedh); |
| 54 | unsigned int getBufferSizeAndDimensions(int width, int height, int format, |
| 55 | int& alignedw, int &alignedh); |
Iliyan Malchev | 202a77d | 2012-06-11 14:41:12 -0700 | [diff] [blame] | 56 | |
| 57 | int decideBufferHandlingMechanism(int format, const char *compositionUsed, |
Naseer Ahmed | 29a2681 | 2012-06-14 00:56:20 -0700 | [diff] [blame] | 58 | int hasBlitEngine, int *needConversion, |
| 59 | int *useBufferDirectly); |
Iliyan Malchev | 202a77d | 2012-06-11 14:41:12 -0700 | [diff] [blame] | 60 | |
| 61 | // Allocate buffer from width, height, format into a private_handle_t |
| 62 | // It is the responsibility of the caller to free the buffer |
| 63 | int alloc_buffer(private_handle_t **pHnd, int w, int h, int format, int usage); |
| 64 | void free_buffer(private_handle_t *hnd); |
Naseer Ahmed | b29fdfd | 2014-04-08 20:23:47 -0400 | [diff] [blame] | 65 | int getYUVPlaneInfo(private_handle_t* pHnd, struct android_ycbcr* ycbcr); |
Sushil Chauhan | c85b65b | 2015-04-30 11:05:36 -0700 | [diff] [blame] | 66 | int getRgbDataAddress(private_handle_t* pHnd, void** rgb_data); |
Iliyan Malchev | 202a77d | 2012-06-11 14:41:12 -0700 | [diff] [blame] | 67 | |
Sushil Chauhan | 65e2630 | 2015-01-14 10:48:57 -0800 | [diff] [blame] | 68 | // To query if UBWC is enabled, based on format and usage flags |
| 69 | bool isUBwcEnabled(int format, int usage); |
| 70 | |
Ramkumar Radhakrishnan | db89d1f | 2016-03-07 20:15:52 -0800 | [diff] [blame] | 71 | // Function to check if the format is an RGB format |
Naomi Luis | cffc5bd | 2015-08-28 14:57:31 -0700 | [diff] [blame] | 72 | bool isUncompressedRgbFormat(int format); |
| 73 | |
Iliyan Malchev | 202a77d | 2012-06-11 14:41:12 -0700 | [diff] [blame] | 74 | /*****************************************************************************/ |
| 75 | |
| 76 | class Locker { |
| 77 | pthread_mutex_t mutex; |
Raj kamal | 59fea56 | 2014-04-01 16:52:19 +0530 | [diff] [blame] | 78 | pthread_cond_t cond; |
Naseer Ahmed | 29a2681 | 2012-06-14 00:56:20 -0700 | [diff] [blame] | 79 | public: |
Iliyan Malchev | 202a77d | 2012-06-11 14:41:12 -0700 | [diff] [blame] | 80 | class Autolock { |
| 81 | Locker& locker; |
Naseer Ahmed | 29a2681 | 2012-06-14 00:56:20 -0700 | [diff] [blame] | 82 | public: |
Iliyan Malchev | 202a77d | 2012-06-11 14:41:12 -0700 | [diff] [blame] | 83 | inline Autolock(Locker& locker) : locker(locker) { locker.lock(); } |
| 84 | inline ~Autolock() { locker.unlock(); } |
| 85 | }; |
Raj kamal | 59fea56 | 2014-04-01 16:52:19 +0530 | [diff] [blame] | 86 | inline Locker() { |
| 87 | pthread_mutex_init(&mutex, 0); |
| 88 | pthread_cond_init(&cond, 0); |
| 89 | } |
| 90 | inline ~Locker() { |
| 91 | pthread_mutex_destroy(&mutex); |
| 92 | pthread_cond_destroy(&cond); |
| 93 | } |
Iliyan Malchev | 202a77d | 2012-06-11 14:41:12 -0700 | [diff] [blame] | 94 | inline void lock() { pthread_mutex_lock(&mutex); } |
Raj kamal | 59fea56 | 2014-04-01 16:52:19 +0530 | [diff] [blame] | 95 | inline void wait() { pthread_cond_wait(&cond, &mutex); } |
Iliyan Malchev | 202a77d | 2012-06-11 14:41:12 -0700 | [diff] [blame] | 96 | inline void unlock() { pthread_mutex_unlock(&mutex); } |
Raj kamal | 59fea56 | 2014-04-01 16:52:19 +0530 | [diff] [blame] | 97 | inline void signal() { pthread_cond_signal(&cond); } |
Iliyan Malchev | 202a77d | 2012-06-11 14:41:12 -0700 | [diff] [blame] | 98 | }; |
| 99 | |
Naomi Luis | a44100c | 2013-02-08 12:42:03 -0800 | [diff] [blame] | 100 | |
| 101 | class AdrenoMemInfo : public android::Singleton <AdrenoMemInfo> |
| 102 | { |
| 103 | public: |
Naomi Luis | 01f5c8e | 2013-02-11 12:46:24 -0800 | [diff] [blame] | 104 | AdrenoMemInfo(); |
Naomi Luis | a44100c | 2013-02-08 12:42:03 -0800 | [diff] [blame] | 105 | |
Naomi Luis | 01f5c8e | 2013-02-11 12:46:24 -0800 | [diff] [blame] | 106 | ~AdrenoMemInfo(); |
Naomi Luis | a44100c | 2013-02-08 12:42:03 -0800 | [diff] [blame] | 107 | |
Naomi Luis | 01f5c8e | 2013-02-11 12:46:24 -0800 | [diff] [blame] | 108 | /* |
Sushil Chauhan | 65e2630 | 2015-01-14 10:48:57 -0800 | [diff] [blame] | 109 | * Function to compute aligned width and aligned height based on |
| 110 | * width, height, format and usage flags. |
| 111 | * |
| 112 | * @return aligned width, aligned height |
| 113 | */ |
| 114 | void getAlignedWidthAndHeight(int width, int height, int format, |
| 115 | int usage, int& aligned_w, int& aligned_h); |
| 116 | |
| 117 | /* |
Manoj Kumar AVM | 8e1aa18 | 2015-08-05 19:45:16 -0700 | [diff] [blame] | 118 | * Function to compute aligned width and aligned height based on |
| 119 | * private handle |
| 120 | * |
| 121 | * @return aligned width, aligned height |
| 122 | */ |
| 123 | void getAlignedWidthAndHeight(const private_handle_t *hnd, int& aligned_w, int& aligned_h); |
| 124 | |
| 125 | /* |
Ramkumar Radhakrishnan | 473f408 | 2013-11-04 14:29:18 -0800 | [diff] [blame] | 126 | * Function to compute the adreno aligned width and aligned height |
| 127 | * based on the width and format. |
Naomi Luis | 01f5c8e | 2013-02-11 12:46:24 -0800 | [diff] [blame] | 128 | * |
Ramkumar Radhakrishnan | 473f408 | 2013-11-04 14:29:18 -0800 | [diff] [blame] | 129 | * @return aligned width, aligned height |
Naomi Luis | 01f5c8e | 2013-02-11 12:46:24 -0800 | [diff] [blame] | 130 | */ |
Sushil Chauhan | 65e2630 | 2015-01-14 10:48:57 -0800 | [diff] [blame] | 131 | void getGpuAlignedWidthHeight(int width, int height, int format, |
Manoj Kumar AVM | 8a22081 | 2013-10-10 11:46:06 -0700 | [diff] [blame] | 132 | int tileEnabled, int& alignedw, int &alignedh); |
| 133 | |
| 134 | /* |
Ramkumar Radhakrishnan | ba55eac | 2016-08-26 22:33:48 -0700 | [diff] [blame] | 135 | * Function to compute unaligned width and unaligned height based on |
| 136 | * private handle |
| 137 | * |
| 138 | * @return unaligned width, unaligned height |
| 139 | */ |
| 140 | void getUnalignedWidthAndHeight(const private_handle_t *hnd, int& unaligned_w, |
| 141 | int& unaligned_h); |
Sushil Chauhan | 65e2630 | 2015-01-14 10:48:57 -0800 | [diff] [blame] | 142 | /* |
| 143 | * Function to query whether GPU supports UBWC for given HAL format |
| 144 | * @return > 0 : supported |
| 145 | * 0 : not supported |
| 146 | */ |
| 147 | int isUBWCSupportedByGPU(int format); |
| 148 | |
Sushil Chauhan | 082acd6 | 2015-01-14 16:49:29 -0800 | [diff] [blame] | 149 | /* |
| 150 | * Function to get the corresponding Adreno format for given HAL format |
| 151 | */ |
| 152 | ADRENOPIXELFORMAT getGpuPixelFormat(int hal_format); |
| 153 | |
Naomi Luis | a44100c | 2013-02-08 12:42:03 -0800 | [diff] [blame] | 154 | private: |
Mohan Maiya | cbeab9e | 2015-04-20 09:20:44 -0700 | [diff] [blame] | 155 | // Overriding flag to disable UBWC alloc for graphics stack |
| 156 | int gfx_ubwc_disable; |
Naomi Luis | 01f5c8e | 2013-02-11 12:46:24 -0800 | [diff] [blame] | 157 | // Pointer to the padding library. |
| 158 | void *libadreno_utils; |
| 159 | |
Jeykumar Sankaran | 2ba2051 | 2014-02-27 15:21:42 -0800 | [diff] [blame] | 160 | // link(s)to adreno surface padding library. |
Naomi Luis | 01f5c8e | 2013-02-11 12:46:24 -0800 | [diff] [blame] | 161 | int (*LINK_adreno_compute_padding) (int width, int bpp, |
| 162 | int surface_tile_height, |
| 163 | int screen_tile_height, |
| 164 | int padding_threshold); |
Jeykumar Sankaran | 2ba2051 | 2014-02-27 15:21:42 -0800 | [diff] [blame] | 165 | |
Ramkumar Radhakrishnan | 473f408 | 2013-11-04 14:29:18 -0800 | [diff] [blame] | 166 | void (*LINK_adreno_compute_aligned_width_and_height) (int width, |
| 167 | int height, |
| 168 | int bpp, |
| 169 | int tile_mode, |
| 170 | int raster_mode, |
| 171 | int padding_threshold, |
| 172 | int *aligned_w, |
| 173 | int *aligned_h); |
Jeykumar Sankaran | 2ba2051 | 2014-02-27 15:21:42 -0800 | [diff] [blame] | 174 | |
Jeykumar Sankaran | 2ba2051 | 2014-02-27 15:21:42 -0800 | [diff] [blame] | 175 | void(*LINK_adreno_compute_compressedfmt_aligned_width_and_height)( |
| 176 | int width, |
| 177 | int height, |
| 178 | int format, |
| 179 | int tile_mode, |
| 180 | int raster_mode, |
| 181 | int padding_threshold, |
| 182 | int *aligned_w, |
| 183 | int *aligned_h, |
| 184 | int *bpp); |
Sushil Chauhan | 082acd6 | 2015-01-14 16:49:29 -0800 | [diff] [blame] | 185 | |
| 186 | int (*LINK_adreno_isUBWCSupportedByGpu) (ADRENOPIXELFORMAT format); |
Sushil Chauhan | 521ce35 | 2015-08-28 11:33:30 -0700 | [diff] [blame] | 187 | |
| 188 | unsigned int (*LINK_adreno_get_gpu_pixel_alignment) (); |
Naomi Luis | a44100c | 2013-02-08 12:42:03 -0800 | [diff] [blame] | 189 | }; |
Ramakant Singh | c85ccee | 2016-04-01 15:25:17 +0530 | [diff] [blame] | 190 | |
| 191 | |
| 192 | class MDPCapabilityInfo : public android::Singleton <MDPCapabilityInfo> |
| 193 | { |
Sushil Chauhan | 0136141 | 2016-04-25 16:36:18 -0700 | [diff] [blame] | 194 | int isUBwcSupported = 0; |
Jeykumar Sankaran | 9bc1a78 | 2015-12-14 18:36:27 -0800 | [diff] [blame] | 195 | int isWBUBWCSupported = 0; |
Sushil Chauhan | 0136141 | 2016-04-25 16:36:18 -0700 | [diff] [blame] | 196 | |
Ramakant Singh | c85ccee | 2016-04-01 15:25:17 +0530 | [diff] [blame] | 197 | public: |
| 198 | MDPCapabilityInfo(); |
| 199 | /* |
Sushil Chauhan | 0136141 | 2016-04-25 16:36:18 -0700 | [diff] [blame] | 200 | * Function to return whether MDP supports UBWC feature |
| 201 | * |
| 202 | * @return 1 : supported |
| 203 | * 0 : not supported |
| 204 | */ |
| 205 | int isUBwcSupportedByMDP() { return isUBwcSupported; } |
Jeykumar Sankaran | 9bc1a78 | 2015-12-14 18:36:27 -0800 | [diff] [blame] | 206 | /* |
| 207 | * Function to return whether MDP WB block outputs UBWC format |
| 208 | * |
| 209 | * @return 1 : supported |
| 210 | * 0 : not supported |
| 211 | */ |
| 212 | int isWBUBWCSupportedByMDP() { return isWBUBWCSupported; } |
Ramakant Singh | c85ccee | 2016-04-01 15:25:17 +0530 | [diff] [blame] | 213 | }; |
| 214 | |
Iliyan Malchev | 202a77d | 2012-06-11 14:41:12 -0700 | [diff] [blame] | 215 | #endif /* GR_H_ */ |