Saurabh Shah | 66c941b | 2016-07-06 17:34:05 -0700 | [diff] [blame] | 1 | /* |
| 2 | * Copyright (c) 2017, 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 __DRM_INTERFACE_H__ |
| 31 | #define __DRM_INTERFACE_H__ |
| 32 | |
| 33 | #include <map> |
| 34 | #include <string> |
| 35 | #include <utility> |
| 36 | #include <vector> |
| 37 | |
| 38 | #include "xf86drm.h" |
| 39 | #include "xf86drmMode.h" |
Sushil Chauhan | 80e5843 | 2017-07-06 11:39:17 -0700 | [diff] [blame] | 40 | #include <drm/msm_drm.h> |
Saurabh Shah | 66c941b | 2016-07-06 17:34:05 -0700 | [diff] [blame] | 41 | |
| 42 | namespace sde_drm { |
Ramkumar Radhakrishnan | 9ed1fd8 | 2017-03-09 18:46:41 -0800 | [diff] [blame] | 43 | |
| 44 | typedef std::map<std::pair<uint32_t, uint64_t>, float> CompRatioMap; |
| 45 | |
Saurabh Shah | 66c941b | 2016-07-06 17:34:05 -0700 | [diff] [blame] | 46 | /* |
| 47 | * Drm Atomic Operation Codes |
| 48 | */ |
| 49 | enum struct DRMOps { |
| 50 | /* |
| 51 | * Op: Sets plane source crop |
| 52 | * Arg: uint32_t - Plane ID |
| 53 | * DRMRect - Source Rectangle |
| 54 | */ |
| 55 | PLANE_SET_SRC_RECT, |
| 56 | /* |
| 57 | * Op: Sets plane destination rect |
| 58 | * Arg: uint32_t - Plane ID |
| 59 | * DRMRect - Dst Rectangle |
| 60 | */ |
| 61 | PLANE_SET_DST_RECT, |
| 62 | /* |
| 63 | * Op: Sets plane zorder |
| 64 | * Arg: uint32_t - Plane ID |
| 65 | * uint32_t - zorder |
| 66 | */ |
| 67 | PLANE_SET_ZORDER, |
| 68 | /* |
| 69 | * Op: Sets plane rotation flags |
| 70 | * Arg: uint32_t - Plane ID |
| 71 | * uint32_t - bit mask of rotation flags (See drm_mode.h for enums) |
| 72 | */ |
| 73 | PLANE_SET_ROTATION, |
| 74 | /* |
| 75 | * Op: Sets plane alpha |
| 76 | * Arg: uint32_t - Plane ID |
| 77 | * uint32_t - alpha value |
| 78 | */ |
| 79 | PLANE_SET_ALPHA, |
| 80 | /* |
| 81 | * Op: Sets the blend type |
| 82 | * Arg: uint32_t - Plane ID |
| 83 | * uint32_t - blend type (see DRMBlendType) |
| 84 | */ |
| 85 | PLANE_SET_BLEND_TYPE, |
| 86 | /* |
| 87 | * Op: Sets horizontal decimation |
| 88 | * Arg: uint32_t - Plane ID |
| 89 | * uint32_t - decimation factor |
| 90 | */ |
| 91 | PLANE_SET_H_DECIMATION, |
| 92 | /* |
| 93 | * Op: Sets vertical decimation |
| 94 | * Arg: uint32_t - Plane ID |
| 95 | * uint32_t - decimation factor |
| 96 | */ |
| 97 | PLANE_SET_V_DECIMATION, |
| 98 | /* |
Prabhanjan Kandula | 585aa65 | 2017-01-26 18:39:11 -0800 | [diff] [blame] | 99 | * Op: Sets source config flags |
| 100 | * Arg: uint32_t - Plane ID |
| 101 | * uint32_t - flags to enable or disable a specific op. E.g. deinterlacing |
| 102 | */ |
| 103 | PLANE_SET_SRC_CONFIG, |
| 104 | /* |
Saurabh Shah | 66c941b | 2016-07-06 17:34:05 -0700 | [diff] [blame] | 105 | * Op: Sets frame buffer ID for plane. Set together with CRTC. |
| 106 | * Arg: uint32_t - Plane ID |
| 107 | * uint32_t - Framebuffer ID |
| 108 | */ |
| 109 | PLANE_SET_FB_ID, |
| 110 | /* |
| 111 | * Op: Sets the crtc for this plane. Set together with FB_ID. |
| 112 | * Arg: uint32_t - Plane ID |
| 113 | * uint32_t - CRTC ID |
| 114 | */ |
| 115 | PLANE_SET_CRTC, |
| 116 | /* |
| 117 | * Op: Sets acquire fence for this plane's buffer. Set together with FB_ID, CRTC. |
| 118 | * Arg: uint32_t - Plane ID |
| 119 | * uint32_t - Input fence |
| 120 | */ |
| 121 | PLANE_SET_INPUT_FENCE, |
| 122 | /* |
Saurabh Shah | 0ffee30 | 2016-11-22 10:42:11 -0800 | [diff] [blame] | 123 | * Op: Sets scaler config on this plane. |
| 124 | * Arg: uint32_t - Plane ID |
| 125 | * uint64_t - Address of the scaler config object (version based) |
| 126 | */ |
| 127 | PLANE_SET_SCALER_CONFIG, |
| 128 | /* |
Rohit Kulkarni | 8622e36 | 2017-01-30 18:14:10 -0800 | [diff] [blame] | 129 | * Op: Sets plane rotation destination rect |
| 130 | * Arg: uint32_t - Plane ID |
| 131 | * DRMRect - rotator dst Rectangle |
| 132 | */ |
| 133 | PLANE_SET_ROTATION_DST_RECT, |
| 134 | /* |
Sushil Chauhan | 1021cc0 | 2017-05-03 15:11:43 -0700 | [diff] [blame] | 135 | * Op: Sets FB Secure mode for this plane. |
| 136 | * Arg: uint32_t - Plane ID |
| 137 | * uint32_t - Value of the FB Secure mode. |
| 138 | */ |
| 139 | PLANE_SET_FB_SECURE_MODE, |
| 140 | /* |
Ping Li | 8d6dd62 | 2017-07-03 12:05:15 -0700 | [diff] [blame] | 141 | * Op: Sets csc config on this plane. |
| 142 | * Arg: uint32_t - Plane ID |
| 143 | * uint32_t* - pointer to csc type |
| 144 | */ |
| 145 | PLANE_SET_CSC_CONFIG, |
| 146 | /* |
Ramkumar Radhakrishnan | 0725430 | 2017-11-13 16:18:22 -0800 | [diff] [blame] | 147 | * Op: Sets multirect mode on this plane. |
| 148 | * Arg: uint32_t - Plane ID |
| 149 | * uint32_t - multirect mode |
| 150 | */ |
| 151 | PLANE_SET_MULTIRECT_MODE, |
| 152 | /* |
Saurabh Shah | 66c941b | 2016-07-06 17:34:05 -0700 | [diff] [blame] | 153 | * Op: Activate or deactivate a CRTC |
| 154 | * Arg: uint32_t - CRTC ID |
| 155 | * uint32_t - 1 to enable, 0 to disable |
| 156 | */ |
| 157 | CRTC_SET_ACTIVE, |
| 158 | /* |
| 159 | * Op: Sets display mode |
| 160 | * Arg: uint32_t - CRTC ID |
| 161 | * drmModeModeInfo* - Pointer to display mode |
| 162 | */ |
| 163 | CRTC_SET_MODE, |
| 164 | /* |
| 165 | * Op: Sets an offset indicating when a release fence should be signalled. |
| 166 | * Arg: uint32_t - offset |
| 167 | * 0: non-speculative, default |
| 168 | * 1: speculative |
| 169 | */ |
| 170 | CRTC_SET_OUTPUT_FENCE_OFFSET, |
| 171 | /* |
Ramkumar Radhakrishnan | 9ed1fd8 | 2017-03-09 18:46:41 -0800 | [diff] [blame] | 172 | * Op: Sets overall SDE core clock |
| 173 | * Arg: uint32_t - CRTC ID |
| 174 | * uint32_t - core_clk |
| 175 | */ |
| 176 | CRTC_SET_CORE_CLK, |
Ramkumar Radhakrishnan | 3c4de11 | 2017-05-24 22:38:30 -0700 | [diff] [blame] | 177 | /* |
| 178 | * Op: Sets MNOC bus average bandwidth |
Ramkumar Radhakrishnan | 9ed1fd8 | 2017-03-09 18:46:41 -0800 | [diff] [blame] | 179 | * Arg: uint32_t - CRTC ID |
| 180 | * uint32_t - core_ab |
| 181 | */ |
| 182 | CRTC_SET_CORE_AB, |
| 183 | /* |
Ramkumar Radhakrishnan | 3c4de11 | 2017-05-24 22:38:30 -0700 | [diff] [blame] | 184 | * Op: Sets MNOC bus instantaneous bandwidth |
Ramkumar Radhakrishnan | 9ed1fd8 | 2017-03-09 18:46:41 -0800 | [diff] [blame] | 185 | * Arg: uint32_t - CRTC ID |
| 186 | * uint32_t - core_ib |
| 187 | */ |
| 188 | CRTC_SET_CORE_IB, |
| 189 | /* |
Ramkumar Radhakrishnan | 3c4de11 | 2017-05-24 22:38:30 -0700 | [diff] [blame] | 190 | * Op: Sets LLCC Bus average bandwidth |
| 191 | * Arg: uint32_t - CRTC ID |
| 192 | * uint32_t - llcc_ab |
| 193 | */ |
| 194 | CRTC_SET_LLCC_AB, |
| 195 | /* |
| 196 | * Op: Sets LLCC Bus instantaneous bandwidth |
| 197 | * Arg: uint32_t - CRTC ID |
| 198 | * uint32_t - llcc_ib |
| 199 | */ |
| 200 | CRTC_SET_LLCC_IB, |
| 201 | /* |
| 202 | * Op: Sets DRAM bus average bandwidth |
| 203 | * Arg: uint32_t - CRTC ID |
| 204 | * uint32_t - dram_ab |
| 205 | */ |
| 206 | CRTC_SET_DRAM_AB, |
| 207 | /* |
| 208 | * Op: Sets DRAM bus instantaneous bandwidth |
| 209 | * Arg: uint32_t - CRTC ID |
| 210 | * uint32_t - dram_ib |
| 211 | */ |
| 212 | CRTC_SET_DRAM_IB, |
| 213 | /* |
Ramkumar Radhakrishnan | b791044 | 2017-12-11 13:32:47 -0800 | [diff] [blame^] | 214 | * Op: Sets Rotator BW for inline rotation |
| 215 | * Arg: uint32_t - CRTC ID |
| 216 | * uint32_t - rot_bw |
| 217 | */ |
| 218 | CRTC_SET_ROT_PREFILL_BW, |
| 219 | /* |
Ramkumar Radhakrishnan | 3c4de11 | 2017-05-24 22:38:30 -0700 | [diff] [blame] | 220 | * Op: Sets rotator clock for inline rotation |
| 221 | * Arg: uint32_t - CRTC ID |
| 222 | * uint32_t - rot_clk |
| 223 | */ |
Namit Solanki | 24921ab | 2017-05-23 20:16:25 +0530 | [diff] [blame] | 224 | CRTC_SET_ROT_CLK, |
| 225 | /* |
| 226 | * Op: Sets destination scalar data |
| 227 | * Arg: uint32_t - CRTC ID |
| 228 | * uint64_t - Pointer to destination scalar data |
| 229 | */ |
| 230 | CRTC_SET_DEST_SCALER_CONFIG, |
| 231 | /* |
Saurabh Shah | 66c941b | 2016-07-06 17:34:05 -0700 | [diff] [blame] | 232 | * Op: Returns release fence for this frame. Should be called after Commit() on |
| 233 | * DRMAtomicReqInterface. |
| 234 | * Arg: uint32_t - CRTC ID |
| 235 | * int * - Pointer to an integer that will hold the returned fence |
| 236 | */ |
| 237 | CRTC_GET_RELEASE_FENCE, |
| 238 | /* |
Ping Li | 281f48d | 2017-01-16 12:45:40 -0800 | [diff] [blame] | 239 | * Op: Sets PP feature |
| 240 | * Arg: uint32_t - CRTC ID |
| 241 | * DRMPPFeatureInfo * - PP feature data pointer |
| 242 | */ |
| 243 | CRTC_SET_POST_PROC, |
| 244 | /* |
Saurabh Shah | e9f55d7 | 2017-03-03 15:14:13 -0800 | [diff] [blame] | 245 | * Op: Sets CRTC ROIs. |
| 246 | * Arg: uint32_t - CRTC ID |
| 247 | * uint32_t - number of ROIs |
| 248 | * DRMRect * - Array of CRTC ROIs |
| 249 | */ |
| 250 | CRTC_SET_ROI, |
| 251 | /* |
Sushil Chauhan | 1021cc0 | 2017-05-03 15:11:43 -0700 | [diff] [blame] | 252 | * Op: Sets Security level for CRTC. |
| 253 | * Arg: uint32_t - CRTC ID |
| 254 | * uint32_t - Security level |
| 255 | */ |
| 256 | CRTC_SET_SECURITY_LEVEL, |
| 257 | /* |
Prabhanjan Kandula | dbc8aed | 2017-03-24 14:43:16 -0700 | [diff] [blame] | 258 | * Op: sets solid fill stages |
| 259 | * Arg: uint32_t - CRTC ID |
| 260 | * Vector of DRMSolidfillStage |
| 261 | */ |
| 262 | CRTC_SET_SOLIDFILL_STAGES, |
| 263 | /* |
Anjaneya Prasad Musunuri | e8c67f2 | 2017-07-01 16:16:13 +0530 | [diff] [blame] | 264 | * Op: Sets idle timeout. |
| 265 | * Arg: uint32_t - CRTC ID |
| 266 | * uint32_t - idle timeout in ms |
| 267 | */ |
| 268 | CRTC_SET_IDLE_TIMEOUT, |
| 269 | /* |
Saurabh Shah | 66c941b | 2016-07-06 17:34:05 -0700 | [diff] [blame] | 270 | * Op: Returns retire fence for this commit. Should be called after Commit() on |
| 271 | * DRMAtomicReqInterface. |
| 272 | * Arg: uint32_t - Connector ID |
| 273 | * int * - Pointer to an integer that will hold the returned fence |
| 274 | */ |
| 275 | CONNECTOR_GET_RETIRE_FENCE, |
| 276 | /* |
| 277 | * Op: Sets writeback connector destination rect |
| 278 | * Arg: uint32_t - Connector ID |
| 279 | * DRMRect - Dst Rectangle |
| 280 | */ |
| 281 | CONNECTOR_SET_OUTPUT_RECT, |
| 282 | /* |
| 283 | * Op: Sets frame buffer ID for writeback connector. |
| 284 | * Arg: uint32_t - Connector ID |
| 285 | * uint32_t - Framebuffer ID |
| 286 | */ |
| 287 | CONNECTOR_SET_OUTPUT_FB_ID, |
Sushil Chauhan | 3396e20 | 2017-04-14 18:34:22 -0700 | [diff] [blame] | 288 | /* |
| 289 | * Op: Sets power mode for connector. |
| 290 | * Arg: uint32_t - Connector ID |
| 291 | * uint32_t - Power Mode |
| 292 | */ |
| 293 | CONNECTOR_SET_POWER_MODE, |
Saurabh Shah | e9f55d7 | 2017-03-03 15:14:13 -0800 | [diff] [blame] | 294 | /* |
| 295 | * Op: Sets panel ROIs. |
| 296 | * Arg: uint32_t - Connector ID |
| 297 | * uint32_t - number of ROIs |
| 298 | * DRMRect * - Array of Connector ROIs |
| 299 | */ |
| 300 | CONNECTOR_SET_ROI, |
Sushil Chauhan | e2f89c9 | 2017-08-23 11:30:34 -0700 | [diff] [blame] | 301 | /* |
Saurabh Shah | f363595 | 2017-10-16 17:08:18 -0700 | [diff] [blame] | 302 | * Op: Sets the connector to autorefresh mode. |
| 303 | * Arg: uint32_t - Connector ID |
| 304 | * uint32_t - Enable-1, Disable-0 |
| 305 | */ |
| 306 | CONNECTOR_SET_AUTOREFRESH, |
| 307 | /* |
Sushil Chauhan | e2f89c9 | 2017-08-23 11:30:34 -0700 | [diff] [blame] | 308 | * Op: Set FB secure mode for Writeback connector. |
| 309 | * Arg: uint32_t - Connector ID |
| 310 | * uint32_t - FB Secure mode |
| 311 | */ |
| 312 | CONNECTOR_SET_FB_SECURE_MODE, |
Saurabh Shah | 82b06f4 | 2017-09-06 16:43:49 -0700 | [diff] [blame] | 313 | /* |
| 314 | * Op: Sets a crtc id to this connector |
| 315 | * Arg: uint32_t - Connector ID |
| 316 | * uint32_t - CRTC ID |
| 317 | */ |
| 318 | CONNECTOR_SET_CRTC, |
Srikanth Rajagopalan | 7a09b2e | 2017-06-19 18:41:03 -0700 | [diff] [blame] | 319 | /* |
| 320 | * Op: Sets connector hdr metadata |
| 321 | * Arg: uint32_t - Connector ID |
| 322 | * drm_msm_ext_hdr_metadata - hdr_metadata |
| 323 | */ |
| 324 | CONNECTOR_SET_HDR_METADATA, |
Saurabh Shah | 66c941b | 2016-07-06 17:34:05 -0700 | [diff] [blame] | 325 | }; |
| 326 | |
Saurabh Shah | f9266ee | 2017-04-19 15:25:46 -0700 | [diff] [blame] | 327 | enum struct DRMRotation { |
| 328 | FLIP_H = 0x1, |
| 329 | FLIP_V = 0x2, |
Prabhanjan Kandula | 5bc7f8b | 2017-05-23 12:24:57 -0700 | [diff] [blame] | 330 | ROT_180 = FLIP_H | FLIP_V, |
Saurabh Shah | f9266ee | 2017-04-19 15:25:46 -0700 | [diff] [blame] | 331 | ROT_90 = 0x4, |
| 332 | }; |
| 333 | |
Sushil Chauhan | 3396e20 | 2017-04-14 18:34:22 -0700 | [diff] [blame] | 334 | enum struct DRMPowerMode { |
| 335 | ON, |
| 336 | DOZE, |
| 337 | DOZE_SUSPEND, |
| 338 | OFF, |
| 339 | }; |
| 340 | |
Saurabh Shah | 66c941b | 2016-07-06 17:34:05 -0700 | [diff] [blame] | 341 | enum struct DRMBlendType { |
| 342 | UNDEFINED = 0, |
| 343 | OPAQUE = 1, |
| 344 | PREMULTIPLIED = 2, |
| 345 | COVERAGE = 3, |
| 346 | }; |
| 347 | |
Prabhanjan Kandula | 585aa65 | 2017-01-26 18:39:11 -0800 | [diff] [blame] | 348 | enum struct DRMSrcConfig { |
| 349 | DEINTERLACE = 0, |
| 350 | }; |
| 351 | |
Saurabh Shah | 66c941b | 2016-07-06 17:34:05 -0700 | [diff] [blame] | 352 | /* Display type to identify a suitable connector */ |
| 353 | enum struct DRMDisplayType { |
| 354 | PERIPHERAL, |
| 355 | TV, |
| 356 | VIRTUAL, |
| 357 | }; |
| 358 | |
| 359 | struct DRMRect { |
| 360 | uint32_t left; // Left-most pixel coordinate. |
| 361 | uint32_t top; // Top-most pixel coordinate. |
| 362 | uint32_t right; // Right-most pixel coordinate. |
| 363 | uint32_t bottom; // Bottom-most pixel coordinate. |
| 364 | }; |
| 365 | |
| 366 | //------------------------------------------------------------------------ |
| 367 | // DRM Info Query Types |
| 368 | //------------------------------------------------------------------------ |
| 369 | |
| 370 | enum struct QSEEDVersion { |
| 371 | V1, |
| 372 | V2, |
| 373 | V3, |
| 374 | }; |
| 375 | |
Rohit Kulkarni | bfa855c | 2017-06-29 17:52:10 -0700 | [diff] [blame] | 376 | /* QSEED3 Step version */ |
| 377 | enum struct QSEEDStepVersion { |
| 378 | V2, |
| 379 | V3, |
| 380 | V4, |
| 381 | }; |
| 382 | |
Prabhanjan Kandula | e6dfab9 | 2017-03-14 11:02:49 -0700 | [diff] [blame] | 383 | enum struct SmartDMARevision { |
| 384 | V1, |
| 385 | V2, |
| 386 | }; |
| 387 | |
Saurabh Shah | 66c941b | 2016-07-06 17:34:05 -0700 | [diff] [blame] | 388 | /* Per CRTC Resource Info*/ |
| 389 | struct DRMCrtcInfo { |
| 390 | bool has_src_split; |
Srikanth Rajagopalan | 4938078 | 2017-07-06 15:23:12 -0700 | [diff] [blame] | 391 | bool has_hdr; |
Saurabh Shah | 66c941b | 2016-07-06 17:34:05 -0700 | [diff] [blame] | 392 | uint32_t max_blend_stages; |
Prabhanjan Kandula | dbc8aed | 2017-03-24 14:43:16 -0700 | [diff] [blame] | 393 | uint32_t max_solidfill_stages; |
Saurabh Shah | 66c941b | 2016-07-06 17:34:05 -0700 | [diff] [blame] | 394 | QSEEDVersion qseed_version; |
Prabhanjan Kandula | e6dfab9 | 2017-03-14 11:02:49 -0700 | [diff] [blame] | 395 | SmartDMARevision smart_dma_rev; |
Ramkumar Radhakrishnan | 9ed1fd8 | 2017-03-09 18:46:41 -0800 | [diff] [blame] | 396 | float ib_fudge_factor; |
| 397 | float clk_fudge_factor; |
| 398 | uint32_t dest_scale_prefill_lines; |
| 399 | uint32_t undersized_prefill_lines; |
| 400 | uint32_t macrotile_prefill_lines; |
| 401 | uint32_t nv12_prefill_lines; |
| 402 | uint32_t linear_prefill_lines; |
| 403 | uint32_t downscale_prefill_lines; |
| 404 | uint32_t extra_prefill_lines; |
| 405 | uint32_t amortized_threshold; |
| 406 | uint64_t max_bandwidth_low; |
| 407 | uint64_t max_bandwidth_high; |
| 408 | uint32_t max_sde_clk; |
| 409 | CompRatioMap comp_ratio_rt_map; |
| 410 | CompRatioMap comp_ratio_nrt_map; |
Gopikrishnaiah Anandan | 7681552 | 2017-06-27 15:18:04 -0700 | [diff] [blame] | 411 | uint32_t hw_version; |
Namit Solanki | 24921ab | 2017-05-23 20:16:25 +0530 | [diff] [blame] | 412 | uint32_t dest_scaler_count = 0; |
| 413 | uint32_t max_dest_scaler_input_width = 0; |
| 414 | uint32_t max_dest_scaler_output_width = 0; |
| 415 | uint32_t max_dest_scale_up = 1; |
Pullakavi Srinivas | 3e2c040 | 2017-12-05 17:50:15 +0530 | [diff] [blame] | 416 | uint32_t min_prefill_lines = 0; |
Saurabh Shah | 66c941b | 2016-07-06 17:34:05 -0700 | [diff] [blame] | 417 | }; |
| 418 | |
| 419 | enum struct DRMPlaneType { |
| 420 | // Has CSC and scaling capability |
| 421 | VIG = 0, |
| 422 | // Has scaling capability but no CSC |
| 423 | RGB, |
| 424 | // No scaling support |
| 425 | DMA, |
| 426 | // Supports a small dimension and doesn't use a CRTC stage |
| 427 | CURSOR, |
| 428 | MAX, |
| 429 | }; |
| 430 | |
| 431 | struct DRMPlaneTypeInfo { |
Prabhanjan Kandula | e6dfab9 | 2017-03-14 11:02:49 -0700 | [diff] [blame] | 432 | DRMPlaneType type; |
| 433 | uint32_t master_plane_id; |
Saurabh Shah | 66c941b | 2016-07-06 17:34:05 -0700 | [diff] [blame] | 434 | // FourCC format enum and modifier |
| 435 | std::vector<std::pair<uint32_t, uint64_t>> formats_supported; |
| 436 | uint32_t max_linewidth; |
| 437 | uint32_t max_upscale; |
| 438 | uint32_t max_downscale; |
| 439 | uint32_t max_horizontal_deci; |
| 440 | uint32_t max_vertical_deci; |
Ramkumar Radhakrishnan | 9ed1fd8 | 2017-03-09 18:46:41 -0800 | [diff] [blame] | 441 | uint64_t max_pipe_bandwidth; |
Rohit Kulkarni | 8622e36 | 2017-01-30 18:14:10 -0800 | [diff] [blame] | 442 | uint32_t cache_size; // cache size in bytes for inline rotation support. |
Rohit Kulkarni | bfa855c | 2017-06-29 17:52:10 -0700 | [diff] [blame] | 443 | QSEEDStepVersion qseed3_version; |
Ramkumar Radhakrishnan | 0725430 | 2017-11-13 16:18:22 -0800 | [diff] [blame] | 444 | bool multirect_prop_present = false; |
Saurabh Shah | 66c941b | 2016-07-06 17:34:05 -0700 | [diff] [blame] | 445 | }; |
| 446 | |
Prabhanjan Kandula | e6dfab9 | 2017-03-14 11:02:49 -0700 | [diff] [blame] | 447 | // All DRM Planes as map<Plane_id , plane_type_info> listed from highest to lowest priority |
| 448 | typedef std::vector<std::pair<uint32_t, DRMPlaneTypeInfo>> DRMPlanesInfo; |
Saurabh Shah | 66c941b | 2016-07-06 17:34:05 -0700 | [diff] [blame] | 449 | |
| 450 | enum struct DRMTopology { |
Rohit Kulkarni | 2faa91c | 2017-06-05 15:43:48 -0700 | [diff] [blame] | 451 | UNKNOWN, // To be compat with driver defs in sde_rm.h |
Saurabh Shah | 66c941b | 2016-07-06 17:34:05 -0700 | [diff] [blame] | 452 | SINGLE_LM, |
Rohit Kulkarni | 2faa91c | 2017-06-05 15:43:48 -0700 | [diff] [blame] | 453 | SINGLE_LM_DSC, |
Saurabh Shah | 66c941b | 2016-07-06 17:34:05 -0700 | [diff] [blame] | 454 | DUAL_LM, |
Rohit Kulkarni | 2faa91c | 2017-06-05 15:43:48 -0700 | [diff] [blame] | 455 | DUAL_LM_DSC, |
Saurabh Shah | 66c941b | 2016-07-06 17:34:05 -0700 | [diff] [blame] | 456 | DUAL_LM_MERGE, |
Rohit Kulkarni | 2faa91c | 2017-06-05 15:43:48 -0700 | [diff] [blame] | 457 | DUAL_LM_MERGE_DSC, |
| 458 | DUAL_LM_DSCMERGE, |
| 459 | PPSPLIT, |
Saurabh Shah | 66c941b | 2016-07-06 17:34:05 -0700 | [diff] [blame] | 460 | }; |
| 461 | |
| 462 | enum struct DRMPanelMode { |
| 463 | VIDEO, |
| 464 | COMMAND, |
| 465 | }; |
| 466 | |
Saurabh Shah | 7e16c93 | 2017-11-03 17:55:36 -0700 | [diff] [blame] | 467 | /* Per mode info */ |
| 468 | struct DRMModeInfo { |
| 469 | drmModeModeInfo mode; |
Saurabh Shah | 66c941b | 2016-07-06 17:34:05 -0700 | [diff] [blame] | 470 | DRMTopology topology; |
Saurabh Shah | e9f55d7 | 2017-03-03 15:14:13 -0800 | [diff] [blame] | 471 | // Valid only if mode is command |
| 472 | int num_roi; |
| 473 | int xstart; |
| 474 | int ystart; |
| 475 | int walign; |
| 476 | int halign; |
| 477 | int wmin; |
| 478 | int hmin; |
| 479 | bool roi_merge; |
Saurabh Shah | 7e16c93 | 2017-11-03 17:55:36 -0700 | [diff] [blame] | 480 | }; |
| 481 | |
| 482 | /* Per Connector Info*/ |
| 483 | struct DRMConnectorInfo { |
| 484 | uint32_t mmWidth; |
| 485 | uint32_t mmHeight; |
| 486 | uint32_t type; |
| 487 | std::vector<DRMModeInfo> modes; |
| 488 | std::string panel_name; |
| 489 | DRMPanelMode panel_mode; |
| 490 | bool is_primary; |
| 491 | // Valid only if DRMPanelMode is VIDEO |
| 492 | bool dynamic_fps; |
| 493 | // FourCC format enum and modifier |
| 494 | std::vector<std::pair<uint32_t, uint64_t>> formats_supported; |
| 495 | // Valid only if type is DRM_MODE_CONNECTOR_VIRTUAL |
| 496 | uint32_t max_linewidth; |
Prabhanjan Kandula | 5bc7f8b | 2017-05-23 12:24:57 -0700 | [diff] [blame] | 497 | DRMRotation panel_orientation; |
Sushil Chauhan | 80e5843 | 2017-07-06 11:39:17 -0700 | [diff] [blame] | 498 | drm_panel_hdr_properties panel_hdr_prop; |
Ramkumar Radhakrishnan | 5c94f05 | 2017-07-06 11:59:14 -0700 | [diff] [blame] | 499 | uint32_t transfer_time_us; |
Srikanth Rajagopalan | ce0f7cb | 2017-06-12 15:14:26 -0700 | [diff] [blame] | 500 | drm_msm_ext_hdr_properties ext_hdr_prop; |
Saurabh Shah | 66c941b | 2016-07-06 17:34:05 -0700 | [diff] [blame] | 501 | }; |
| 502 | |
| 503 | /* Identifier token for a display */ |
| 504 | struct DRMDisplayToken { |
| 505 | uint32_t conn_id; |
| 506 | uint32_t crtc_id; |
| 507 | }; |
| 508 | |
Ping Li | 281f48d | 2017-01-16 12:45:40 -0800 | [diff] [blame] | 509 | enum DRMPPFeatureID { |
| 510 | kFeaturePcc, |
| 511 | kFeatureIgc, |
| 512 | kFeaturePgc, |
| 513 | kFeatureMixerGc, |
| 514 | kFeaturePaV2, |
| 515 | kFeatureDither, |
| 516 | kFeatureGamut, |
| 517 | kFeaturePADither, |
Rajesh Yadav | d30b0cc | 2017-09-22 00:26:54 +0530 | [diff] [blame] | 518 | kFeaturePAHsic, |
| 519 | kFeaturePASixZone, |
Rajesh Yadav | 99535ac | 2017-08-28 16:33:04 +0530 | [diff] [blame] | 520 | kFeaturePAMemColSkin, |
| 521 | kFeaturePAMemColSky, |
| 522 | kFeaturePAMemColFoliage, |
| 523 | kFeaturePAMemColProt, |
Ping Li | 281f48d | 2017-01-16 12:45:40 -0800 | [diff] [blame] | 524 | kPPFeaturesMax, |
| 525 | }; |
| 526 | |
| 527 | enum DRMPPPropType { |
| 528 | kPropEnum, |
| 529 | kPropRange, |
| 530 | kPropBlob, |
| 531 | kPropTypeMax, |
| 532 | }; |
| 533 | |
| 534 | struct DRMPPFeatureInfo { |
| 535 | DRMPPFeatureID id; |
| 536 | DRMPPPropType type; |
| 537 | uint32_t version; |
| 538 | uint32_t payload_size; |
| 539 | void *payload; |
| 540 | }; |
| 541 | |
Ping Li | 8d6dd62 | 2017-07-03 12:05:15 -0700 | [diff] [blame] | 542 | enum DRMCscType { |
| 543 | kCscYuv2Rgb601L, |
| 544 | kCscYuv2Rgb601FR, |
| 545 | kCscYuv2Rgb709L, |
| 546 | kCscYuv2Rgb2020L, |
| 547 | kCscYuv2Rgb2020FR, |
| 548 | kCscTypeMax, |
| 549 | }; |
| 550 | |
Saurabh Shah | 0ffee30 | 2016-11-22 10:42:11 -0800 | [diff] [blame] | 551 | struct DRMScalerLUTInfo { |
| 552 | uint32_t dir_lut_size = 0; |
| 553 | uint32_t cir_lut_size = 0; |
| 554 | uint32_t sep_lut_size = 0; |
| 555 | uint64_t dir_lut = 0; |
| 556 | uint64_t cir_lut = 0; |
| 557 | uint64_t sep_lut = 0; |
| 558 | }; |
| 559 | |
Sushil Chauhan | 1021cc0 | 2017-05-03 15:11:43 -0700 | [diff] [blame] | 560 | enum struct DRMSecureMode { |
| 561 | NON_SECURE, |
| 562 | SECURE, |
| 563 | NON_SECURE_DIR_TRANSLATION, |
| 564 | SECURE_DIR_TRANSLATION, |
| 565 | }; |
| 566 | |
| 567 | enum struct DRMSecurityLevel { |
| 568 | SECURE_NON_SECURE, |
| 569 | SECURE_ONLY, |
| 570 | }; |
| 571 | |
Ramkumar Radhakrishnan | 0725430 | 2017-11-13 16:18:22 -0800 | [diff] [blame] | 572 | enum struct DRMMultiRectMode { |
| 573 | NONE = 0, |
| 574 | PARALLEL = 1, |
| 575 | SERIAL = 2, |
| 576 | }; |
| 577 | |
Prabhanjan Kandula | dbc8aed | 2017-03-24 14:43:16 -0700 | [diff] [blame] | 578 | struct DRMSolidfillStage { |
| 579 | DRMRect bounding_rect {}; |
| 580 | bool is_exclusion_rect = false; |
| 581 | uint32_t color = 0xff000000; // in 8bit argb |
Gopikrishnaiah Anandan | cc12306 | 2017-07-31 17:21:03 -0700 | [diff] [blame] | 582 | uint32_t red = 0; |
| 583 | uint32_t blue = 0; |
| 584 | uint32_t green = 0; |
| 585 | uint32_t alpha = 0xff; |
| 586 | uint32_t color_bit_depth = 0; |
Prabhanjan Kandula | dbc8aed | 2017-03-24 14:43:16 -0700 | [diff] [blame] | 587 | uint32_t z_order = 0; |
| 588 | uint32_t plane_alpha = 0xff; |
| 589 | }; |
| 590 | |
Saurabh Shah | 66c941b | 2016-07-06 17:34:05 -0700 | [diff] [blame] | 591 | /* DRM Atomic Request Property Set. |
| 592 | * |
| 593 | * Helper class to create and populate atomic properties of DRM components |
| 594 | * when rendered in DRM atomic mode */ |
| 595 | class DRMAtomicReqInterface { |
| 596 | public: |
| 597 | virtual ~DRMAtomicReqInterface() {} |
| 598 | /* Perform request operation. |
| 599 | * |
| 600 | * [input]: opcode: operation code from DRMOps list. |
| 601 | * var_arg: arguments for DRMOps's can differ in number and |
| 602 | * data type. Refer above DRMOps to details. |
| 603 | * [return]: Error code if the API fails, 0 on success. |
| 604 | */ |
| 605 | virtual int Perform(DRMOps opcode, ...) = 0; |
| 606 | |
| 607 | /* |
| 608 | * Commit the params set via Perform(). Also resets the properties after commit. Needs to be |
| 609 | * called every frame. |
| 610 | * [input]: synchronous: Determines if the call should block until a h/w flip |
Saurabh Shah | a917aa7 | 2017-09-15 13:27:24 -0700 | [diff] [blame] | 611 | * [input]: retain_planes: Retains already staged planes. Useful when not explicitly programming |
| 612 | * planes but still need the previously staged ones to not be unstaged |
Saurabh Shah | 66c941b | 2016-07-06 17:34:05 -0700 | [diff] [blame] | 613 | * [return]: Error code if the API fails, 0 on success. |
| 614 | */ |
Saurabh Shah | a917aa7 | 2017-09-15 13:27:24 -0700 | [diff] [blame] | 615 | virtual int Commit(bool synchronous, bool retain_planes) = 0; |
Saurabh Shah | 66c941b | 2016-07-06 17:34:05 -0700 | [diff] [blame] | 616 | /* |
| 617 | * Validate the params set via Perform(). |
| 618 | * [return]: Error code if the API fails, 0 on success. |
| 619 | */ |
| 620 | virtual int Validate() = 0; |
| 621 | }; |
| 622 | |
| 623 | class DRMManagerInterface; |
| 624 | |
| 625 | /* Populates a singleton instance of DRMManager */ |
| 626 | typedef int (*GetDRMManager)(int fd, DRMManagerInterface **intf); |
| 627 | |
| 628 | /* Destroy DRMManager instance */ |
Saurabh Shah | ab7807c | 2017-02-08 15:41:08 -0800 | [diff] [blame] | 629 | typedef int (*DestroyDRMManager)(); |
Saurabh Shah | 66c941b | 2016-07-06 17:34:05 -0700 | [diff] [blame] | 630 | |
| 631 | /* |
| 632 | * DRM Manager Interface - Any class which plans to implement helper function for vendor |
| 633 | * specific DRM driver implementation must implement the below interface routines to work |
| 634 | * with SDM. |
| 635 | */ |
| 636 | |
| 637 | class DRMManagerInterface { |
| 638 | public: |
| 639 | virtual ~DRMManagerInterface() {} |
| 640 | |
| 641 | /* |
| 642 | * Since SDM completely manages the planes. GetPlanesInfo will provide all |
| 643 | * the plane information. |
| 644 | * [output]: DRMPlanesInfo: Resource Info for planes. |
| 645 | */ |
| 646 | virtual void GetPlanesInfo(DRMPlanesInfo *info) = 0; |
| 647 | |
| 648 | /* |
| 649 | * Will provide all the information of a selected crtc. |
| 650 | * [input]: Use crtc id 0 to obtain system wide info |
| 651 | * [output]: DRMCrtcInfo: Resource Info for the given CRTC id. |
| 652 | */ |
| 653 | virtual void GetCrtcInfo(uint32_t crtc_id, DRMCrtcInfo *info) = 0; |
| 654 | |
| 655 | /* |
| 656 | * Will provide all the information of a selected connector. |
| 657 | * [output]: DRMConnectorInfo: Resource Info for the given connector id |
| 658 | */ |
| 659 | virtual void GetConnectorInfo(uint32_t conn_id, DRMConnectorInfo *info) = 0; |
| 660 | |
| 661 | /* |
Ping Li | 281f48d | 2017-01-16 12:45:40 -0800 | [diff] [blame] | 662 | * Will query post propcessing feature info of a CRTC. |
| 663 | * [output]: DRMPPFeatureInfo: CRTC post processing feature info |
| 664 | */ |
Namit Solanki | 24921ab | 2017-05-23 20:16:25 +0530 | [diff] [blame] | 665 | virtual void GetCrtcPPInfo(uint32_t crtc_id, DRMPPFeatureInfo *info) = 0; |
Ping Li | 281f48d | 2017-01-16 12:45:40 -0800 | [diff] [blame] | 666 | /* |
Saurabh Shah | 66c941b | 2016-07-06 17:34:05 -0700 | [diff] [blame] | 667 | * Register a logical display to receive a token. |
| 668 | * Each display pipeline in DRM is identified by its CRTC and Connector(s). |
| 669 | * On display connect(bootup or hotplug), clients should invoke this interface to |
| 670 | * establish the pipeline for the display and should get a DisplayToken |
| 671 | * populated with crtc and connnector(s) id's. Here onwards, Client should |
| 672 | * use this token to represent the display for any Perform operations if |
| 673 | * needed. |
| 674 | * |
| 675 | * [input]: disp_type - Peripheral / TV / Virtual |
| 676 | * [output]: DRMDisplayToken - CRTC and Connector id's for the display |
| 677 | * [return]: 0 on success, a negative error value otherwise |
| 678 | */ |
| 679 | virtual int RegisterDisplay(DRMDisplayType disp_type, DRMDisplayToken *tok) = 0; |
| 680 | |
| 681 | /* Client should invoke this interface on display disconnect. |
| 682 | * [input]: DRMDisplayToken - identifier for the display. |
| 683 | */ |
| 684 | virtual void UnregisterDisplay(const DRMDisplayToken &token) = 0; |
| 685 | |
| 686 | /* |
| 687 | * Creates and returns an instance of DRMAtomicReqInterface corresponding to a display token |
| 688 | * returned as part of RegisterDisplay API. Needs to be called per display. |
| 689 | * [input]: DRMDisplayToken that identifies a display pipeline |
| 690 | * [output]: Pointer to an instance of DRMAtomicReqInterface. |
| 691 | * [return]: Error code if the API fails, 0 on success. |
| 692 | */ |
| 693 | virtual int CreateAtomicReq(const DRMDisplayToken &token, DRMAtomicReqInterface **intf) = 0; |
| 694 | |
| 695 | /* |
| 696 | * Destroys the instance of DRMAtomicReqInterface |
| 697 | * [input]: Pointer to a DRMAtomicReqInterface |
| 698 | * [return]: Error code if the API fails, 0 on success. |
| 699 | */ |
| 700 | virtual int DestroyAtomicReq(DRMAtomicReqInterface *intf) = 0; |
Saurabh Shah | 0ffee30 | 2016-11-22 10:42:11 -0800 | [diff] [blame] | 701 | /* |
| 702 | * Sets the global scaler LUT |
| 703 | * [input]: LUT Info |
| 704 | * [return]: Error code if the API fails, 0 on success. |
| 705 | */ |
| 706 | virtual int SetScalerLUT(const DRMScalerLUTInfo &lut_info) = 0; |
Saurabh Shah | 66c941b | 2016-07-06 17:34:05 -0700 | [diff] [blame] | 707 | }; |
Saurabh Shah | 0ffee30 | 2016-11-22 10:42:11 -0800 | [diff] [blame] | 708 | |
Saurabh Shah | 66c941b | 2016-07-06 17:34:05 -0700 | [diff] [blame] | 709 | } // namespace sde_drm |
| 710 | #endif // __DRM_INTERFACE_H__ |