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