1 /* 2 * Copyright 2016 Advanced Micro Devices, Inc. 3 * 4 * Permission is hereby granted, free of charge, to any person obtaining a 5 * copy of this software and associated documentation files (the "Software"), 6 * to deal in the Software without restriction, including without limitation 7 * the rights to use, copy, modify, merge, publish, distribute, sublicense, 8 * and/or sell copies of the Software, and to permit persons to whom the 9 * Software is furnished to do so, subject to the following conditions: 10 * 11 * The above copyright notice and this permission notice shall be included in 12 * all copies or substantial portions of the Software. 13 * 14 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 15 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 16 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL 17 * THE COPYRIGHT HOLDER(S) OR AUTHOR(S) BE LIABLE FOR ANY CLAIM, DAMAGES OR 18 * OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, 19 * ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR 20 * OTHER DEALINGS IN THE SOFTWARE. 21 * 22 * Authors: AMD 23 * 24 */ 25 26 #ifndef DC_HW_TYPES_H 27 #define DC_HW_TYPES_H 28 29 #include "os_types.h" 30 #include "fixed31_32.h" 31 #include "signal_types.h" 32 33 /****************************************************************************** 34 * Data types for Virtual HW Layer of DAL3. 35 * (see DAL3 design documents for HW Layer definition) 36 * 37 * The intended uses are: 38 * 1. Generation pseudocode sequences for HW programming. 39 * 2. Implementation of real HW programming by HW Sequencer of DAL3. 40 * 41 * Note: do *not* add any types which are *not* used for HW programming - this 42 * will ensure separation of Logic layer from HW layer. 43 ******************************************************************************/ 44 45 union large_integer { 46 struct { 47 uint32_t low_part; 48 int32_t high_part; 49 }; 50 51 struct { 52 uint32_t low_part; 53 int32_t high_part; 54 } u; 55 56 int64_t quad_part; 57 }; 58 59 #define PHYSICAL_ADDRESS_LOC union large_integer 60 61 enum dc_plane_addr_type { 62 PLN_ADDR_TYPE_GRAPHICS = 0, 63 PLN_ADDR_TYPE_GRPH_STEREO, 64 PLN_ADDR_TYPE_VIDEO_PROGRESSIVE, 65 PLN_ADDR_TYPE_RGBEA 66 }; 67 68 struct dc_plane_address { 69 enum dc_plane_addr_type type; 70 bool tmz_surface; 71 union { 72 struct{ 73 PHYSICAL_ADDRESS_LOC addr; 74 PHYSICAL_ADDRESS_LOC cursor_cache_addr; 75 PHYSICAL_ADDRESS_LOC meta_addr; 76 union large_integer dcc_const_color; 77 } grph; 78 79 /*stereo*/ 80 struct { 81 PHYSICAL_ADDRESS_LOC left_addr; 82 PHYSICAL_ADDRESS_LOC left_meta_addr; 83 union large_integer left_dcc_const_color; 84 85 PHYSICAL_ADDRESS_LOC right_addr; 86 PHYSICAL_ADDRESS_LOC right_meta_addr; 87 union large_integer right_dcc_const_color; 88 89 PHYSICAL_ADDRESS_LOC left_alpha_addr; 90 PHYSICAL_ADDRESS_LOC left_alpha_meta_addr; 91 union large_integer left_alpha_dcc_const_color; 92 93 PHYSICAL_ADDRESS_LOC right_alpha_addr; 94 PHYSICAL_ADDRESS_LOC right_alpha_meta_addr; 95 union large_integer right_alpha_dcc_const_color; 96 97 } grph_stereo; 98 99 /*video progressive*/ 100 struct { 101 PHYSICAL_ADDRESS_LOC luma_addr; 102 PHYSICAL_ADDRESS_LOC luma_meta_addr; 103 union large_integer luma_dcc_const_color; 104 105 PHYSICAL_ADDRESS_LOC chroma_addr; 106 PHYSICAL_ADDRESS_LOC chroma_meta_addr; 107 union large_integer chroma_dcc_const_color; 108 } video_progressive; 109 110 struct { 111 PHYSICAL_ADDRESS_LOC addr; 112 PHYSICAL_ADDRESS_LOC meta_addr; 113 union large_integer dcc_const_color; 114 115 PHYSICAL_ADDRESS_LOC alpha_addr; 116 PHYSICAL_ADDRESS_LOC alpha_meta_addr; 117 union large_integer alpha_dcc_const_color; 118 } rgbea; 119 }; 120 121 union large_integer page_table_base; 122 123 uint8_t vmid; 124 }; 125 126 struct dc_size { 127 int width; 128 int height; 129 }; 130 131 struct rect { 132 int x; 133 int y; 134 int width; 135 int height; 136 }; 137 138 struct plane_size { 139 /* Graphic surface pitch in pixels. 140 * In LINEAR_GENERAL mode, pitch 141 * is 32 pixel aligned. 142 */ 143 int surface_pitch; 144 int chroma_pitch; 145 struct rect surface_size; 146 struct rect chroma_size; 147 }; 148 149 struct dc_plane_dcc_param { 150 bool enable; 151 152 int meta_pitch; 153 bool independent_64b_blks; 154 uint8_t dcc_ind_blk; 155 156 int meta_pitch_c; 157 bool independent_64b_blks_c; 158 uint8_t dcc_ind_blk_c; 159 }; 160 161 /*Displayable pixel format in fb*/ 162 enum surface_pixel_format { 163 SURFACE_PIXEL_FORMAT_GRPH_BEGIN = 0, 164 /*TOBE REMOVED paletta 256 colors*/ 165 SURFACE_PIXEL_FORMAT_GRPH_PALETA_256_COLORS = 166 SURFACE_PIXEL_FORMAT_GRPH_BEGIN, 167 /*16 bpp*/ 168 SURFACE_PIXEL_FORMAT_GRPH_ARGB1555, 169 /*16 bpp*/ 170 SURFACE_PIXEL_FORMAT_GRPH_RGB565, 171 /*32 bpp*/ 172 SURFACE_PIXEL_FORMAT_GRPH_ARGB8888, 173 /*32 bpp swaped*/ 174 SURFACE_PIXEL_FORMAT_GRPH_ABGR8888, 175 176 SURFACE_PIXEL_FORMAT_GRPH_ARGB2101010, 177 /*swaped*/ 178 SURFACE_PIXEL_FORMAT_GRPH_ABGR2101010, 179 /*TOBE REMOVED swaped, XR_BIAS has no differance 180 * for pixel layout than previous and we can 181 * delete this after discusion*/ 182 SURFACE_PIXEL_FORMAT_GRPH_ABGR2101010_XR_BIAS, 183 /*64 bpp */ 184 SURFACE_PIXEL_FORMAT_GRPH_ARGB16161616, 185 /*swapped*/ 186 SURFACE_PIXEL_FORMAT_GRPH_ABGR16161616, 187 /*float*/ 188 SURFACE_PIXEL_FORMAT_GRPH_ARGB16161616F, 189 /*swaped & float*/ 190 SURFACE_PIXEL_FORMAT_GRPH_ABGR16161616F, 191 /*grow graphics here if necessary */ 192 SURFACE_PIXEL_FORMAT_GRPH_RGB111110_FIX, 193 SURFACE_PIXEL_FORMAT_GRPH_BGR101111_FIX, 194 SURFACE_PIXEL_FORMAT_GRPH_RGB111110_FLOAT, 195 SURFACE_PIXEL_FORMAT_GRPH_BGR101111_FLOAT, 196 SURFACE_PIXEL_FORMAT_GRPH_RGBE, 197 SURFACE_PIXEL_FORMAT_GRPH_RGBE_ALPHA, 198 SURFACE_PIXEL_FORMAT_VIDEO_BEGIN, 199 SURFACE_PIXEL_FORMAT_VIDEO_420_YCbCr = 200 SURFACE_PIXEL_FORMAT_VIDEO_BEGIN, 201 SURFACE_PIXEL_FORMAT_VIDEO_420_YCrCb, 202 SURFACE_PIXEL_FORMAT_VIDEO_420_10bpc_YCbCr, 203 SURFACE_PIXEL_FORMAT_VIDEO_420_10bpc_YCrCb, 204 SURFACE_PIXEL_FORMAT_SUBSAMPLE_END, 205 SURFACE_PIXEL_FORMAT_VIDEO_ACrYCb2101010 = 206 SURFACE_PIXEL_FORMAT_SUBSAMPLE_END, 207 SURFACE_PIXEL_FORMAT_VIDEO_CrYCbA1010102, 208 SURFACE_PIXEL_FORMAT_VIDEO_AYCrCb8888, 209 SURFACE_PIXEL_FORMAT_INVALID 210 211 /*grow 444 video here if necessary */ 212 }; 213 214 215 216 /* Pixel format */ 217 enum pixel_format { 218 /*graph*/ 219 PIXEL_FORMAT_UNINITIALIZED, 220 PIXEL_FORMAT_INDEX8, 221 PIXEL_FORMAT_RGB565, 222 PIXEL_FORMAT_ARGB8888, 223 PIXEL_FORMAT_ARGB2101010, 224 PIXEL_FORMAT_ARGB2101010_XRBIAS, 225 PIXEL_FORMAT_FP16, 226 /*video*/ 227 PIXEL_FORMAT_420BPP8, 228 PIXEL_FORMAT_420BPP10, 229 /*end of pixel format definition*/ 230 PIXEL_FORMAT_INVALID, 231 232 PIXEL_FORMAT_GRPH_BEGIN = PIXEL_FORMAT_INDEX8, 233 PIXEL_FORMAT_GRPH_END = PIXEL_FORMAT_FP16, 234 PIXEL_FORMAT_VIDEO_BEGIN = PIXEL_FORMAT_420BPP8, 235 PIXEL_FORMAT_VIDEO_END = PIXEL_FORMAT_420BPP10, 236 PIXEL_FORMAT_UNKNOWN 237 }; 238 239 /* 240 * This structure holds a surface address. There could be multiple addresses 241 * in cases such as Stereo 3D, Planar YUV, etc. Other per-flip attributes such 242 * as frame durations and DCC format can also be set. 243 */ 244 #define DC_MAX_DIRTY_RECTS 3 245 struct dc_flip_addrs { 246 struct dc_plane_address address; 247 unsigned int flip_timestamp_in_us; 248 bool flip_immediate; 249 /* TODO: add flip duration for FreeSync */ 250 bool triplebuffer_flips; 251 unsigned int dirty_rect_count; 252 struct rect dirty_rects[DC_MAX_DIRTY_RECTS]; 253 }; 254 255 enum tile_split_values { 256 DC_DISPLAY_MICRO_TILING = 0x0, 257 DC_THIN_MICRO_TILING = 0x1, 258 DC_DEPTH_MICRO_TILING = 0x2, 259 DC_ROTATED_MICRO_TILING = 0x3, 260 }; 261 262 enum tripleBuffer_enable { 263 DC_TRIPLEBUFFER_DISABLE = 0x0, 264 DC_TRIPLEBUFFER_ENABLE = 0x1, 265 }; 266 267 /* TODO: These values come from hardware spec. We need to readdress this 268 * if they ever change. 269 */ 270 enum array_mode_values { 271 DC_ARRAY_LINEAR_GENERAL = 0, 272 DC_ARRAY_LINEAR_ALLIGNED, 273 DC_ARRAY_1D_TILED_THIN1, 274 DC_ARRAY_1D_TILED_THICK, 275 DC_ARRAY_2D_TILED_THIN1, 276 DC_ARRAY_PRT_TILED_THIN1, 277 DC_ARRAY_PRT_2D_TILED_THIN1, 278 DC_ARRAY_2D_TILED_THICK, 279 DC_ARRAY_2D_TILED_X_THICK, 280 DC_ARRAY_PRT_TILED_THICK, 281 DC_ARRAY_PRT_2D_TILED_THICK, 282 DC_ARRAY_PRT_3D_TILED_THIN1, 283 DC_ARRAY_3D_TILED_THIN1, 284 DC_ARRAY_3D_TILED_THICK, 285 DC_ARRAY_3D_TILED_X_THICK, 286 DC_ARRAY_PRT_3D_TILED_THICK, 287 }; 288 289 enum tile_mode_values { 290 DC_ADDR_SURF_MICRO_TILING_DISPLAY = 0x0, 291 DC_ADDR_SURF_MICRO_TILING_NON_DISPLAY = 0x1, 292 }; 293 294 enum swizzle_mode_values { 295 DC_SW_LINEAR = 0, 296 DC_SW_256B_S = 1, 297 DC_SW_256_D = 2, 298 DC_SW_256_R = 3, 299 DC_SW_4KB_S = 5, 300 DC_SW_4KB_D = 6, 301 DC_SW_4KB_R = 7, 302 DC_SW_64KB_S = 9, 303 DC_SW_64KB_D = 10, 304 DC_SW_64KB_R = 11, 305 DC_SW_VAR_S = 13, 306 DC_SW_VAR_D = 14, 307 DC_SW_VAR_R = 15, 308 DC_SW_64KB_S_T = 17, 309 DC_SW_64KB_D_T = 18, 310 DC_SW_4KB_S_X = 21, 311 DC_SW_4KB_D_X = 22, 312 DC_SW_4KB_R_X = 23, 313 DC_SW_64KB_S_X = 25, 314 DC_SW_64KB_D_X = 26, 315 DC_SW_64KB_R_X = 27, 316 DC_SW_VAR_S_X = 29, 317 DC_SW_VAR_D_X = 30, 318 DC_SW_VAR_R_X = 31, 319 DC_SW_MAX = 32, 320 DC_SW_UNKNOWN = DC_SW_MAX 321 }; 322 323 union dc_tiling_info { 324 325 struct { 326 /* Specifies the number of memory banks for tiling 327 * purposes. 328 * Only applies to 2D and 3D tiling modes. 329 * POSSIBLE VALUES: 2,4,8,16 330 */ 331 unsigned int num_banks; 332 /* Specifies the number of tiles in the x direction 333 * to be incorporated into the same bank. 334 * Only applies to 2D and 3D tiling modes. 335 * POSSIBLE VALUES: 1,2,4,8 336 */ 337 unsigned int bank_width; 338 unsigned int bank_width_c; 339 /* Specifies the number of tiles in the y direction to 340 * be incorporated into the same bank. 341 * Only applies to 2D and 3D tiling modes. 342 * POSSIBLE VALUES: 1,2,4,8 343 */ 344 unsigned int bank_height; 345 unsigned int bank_height_c; 346 /* Specifies the macro tile aspect ratio. Only applies 347 * to 2D and 3D tiling modes. 348 */ 349 unsigned int tile_aspect; 350 unsigned int tile_aspect_c; 351 /* Specifies the number of bytes that will be stored 352 * contiguously for each tile. 353 * If the tile data requires more storage than this 354 * amount, it is split into multiple slices. 355 * This field must not be larger than 356 * GB_ADDR_CONFIG.DRAM_ROW_SIZE. 357 * Only applies to 2D and 3D tiling modes. 358 * For color render targets, TILE_SPLIT >= 256B. 359 */ 360 enum tile_split_values tile_split; 361 enum tile_split_values tile_split_c; 362 /* Specifies the addressing within a tile. 363 * 0x0 - DISPLAY_MICRO_TILING 364 * 0x1 - THIN_MICRO_TILING 365 * 0x2 - DEPTH_MICRO_TILING 366 * 0x3 - ROTATED_MICRO_TILING 367 */ 368 enum tile_mode_values tile_mode; 369 enum tile_mode_values tile_mode_c; 370 /* Specifies the number of pipes and how they are 371 * interleaved in the surface. 372 * Refer to memory addressing document for complete 373 * details and constraints. 374 */ 375 unsigned int pipe_config; 376 /* Specifies the tiling mode of the surface. 377 * THIN tiles use an 8x8x1 tile size. 378 * THICK tiles use an 8x8x4 tile size. 379 * 2D tiling modes rotate banks for successive Z slices 380 * 3D tiling modes rotate pipes and banks for Z slices 381 * Refer to memory addressing document for complete 382 * details and constraints. 383 */ 384 enum array_mode_values array_mode; 385 } gfx8; 386 387 struct { 388 enum swizzle_mode_values swizzle; 389 unsigned int num_pipes; 390 unsigned int max_compressed_frags; 391 unsigned int pipe_interleave; 392 393 unsigned int num_banks; 394 unsigned int num_shader_engines; 395 unsigned int num_rb_per_se; 396 bool shaderEnable; 397 398 bool meta_linear; 399 bool rb_aligned; 400 bool pipe_aligned; 401 unsigned int num_pkrs; 402 } gfx9; 403 }; 404 405 /* Rotation angle */ 406 enum dc_rotation_angle { 407 ROTATION_ANGLE_0 = 0, 408 ROTATION_ANGLE_90, 409 ROTATION_ANGLE_180, 410 ROTATION_ANGLE_270, 411 ROTATION_ANGLE_COUNT 412 }; 413 414 enum dc_scan_direction { 415 SCAN_DIRECTION_UNKNOWN = 0, 416 SCAN_DIRECTION_HORIZONTAL = 1, /* 0, 180 rotation */ 417 SCAN_DIRECTION_VERTICAL = 2, /* 90, 270 rotation */ 418 }; 419 420 /** 421 * struct dc_cursor_position: Hardware cursor data. 422 * 423 * This struct keeps the action information related to the cursor that will be 424 * sent and received from our DC core. 425 */ 426 struct dc_cursor_position { 427 /** 428 * @x: It represents the top left abscissa coordinate of the cursor. 429 */ 430 uint32_t x; 431 432 /** 433 * @y: It is the top ordinate of the cursor coordinate. 434 */ 435 uint32_t y; 436 437 /** 438 * @x_hotspot: Define the abscissa point where mouse click happens. 439 */ 440 uint32_t x_hotspot; 441 442 /** 443 * @y_hotspot: Define the ordinate point where mouse click happens. 444 */ 445 uint32_t y_hotspot; 446 447 /** 448 * @enable: This parameter indicates whether hardware cursor should be 449 * enabled. 450 */ 451 bool enable; 452 453 /** 454 * @translate_by_source: Translate cursor x/y by the source rectangle 455 * for each plane. 456 */ 457 bool translate_by_source; 458 }; 459 460 struct dc_cursor_mi_param { 461 unsigned int pixel_clk_khz; 462 unsigned int ref_clk_khz; 463 struct rect viewport; 464 struct fixed31_32 h_scale_ratio; 465 struct fixed31_32 v_scale_ratio; 466 enum dc_rotation_angle rotation; 467 bool mirror; 468 }; 469 470 /* IPP related types */ 471 472 enum { 473 GAMMA_RGB_256_ENTRIES = 256, 474 GAMMA_RGB_FLOAT_1024_ENTRIES = 1024, 475 GAMMA_CS_TFM_1D_ENTRIES = 4096, 476 GAMMA_CUSTOM_ENTRIES = 4096, 477 GAMMA_MAX_ENTRIES = 4096 478 }; 479 480 enum dc_gamma_type { 481 GAMMA_RGB_256 = 1, 482 GAMMA_RGB_FLOAT_1024 = 2, 483 GAMMA_CS_TFM_1D = 3, 484 GAMMA_CUSTOM = 4, 485 }; 486 487 struct dc_csc_transform { 488 uint16_t matrix[12]; 489 bool enable_adjustment; 490 }; 491 492 struct dc_rgb_fixed { 493 struct fixed31_32 red; 494 struct fixed31_32 green; 495 struct fixed31_32 blue; 496 }; 497 498 struct dc_gamma { 499 struct kref refcount; 500 enum dc_gamma_type type; 501 unsigned int num_entries; 502 503 struct dc_gamma_entries { 504 struct fixed31_32 red[GAMMA_MAX_ENTRIES]; 505 struct fixed31_32 green[GAMMA_MAX_ENTRIES]; 506 struct fixed31_32 blue[GAMMA_MAX_ENTRIES]; 507 } entries; 508 509 /* private to DC core */ 510 struct dc_context *ctx; 511 512 /* is_identity is used for RGB256 gamma identity which can also be programmed in INPUT_LUT. 513 * is_logical_identity indicates the given gamma ramp regardless of type is identity. 514 */ 515 bool is_identity; 516 }; 517 518 /* Used by both ipp amd opp functions*/ 519 /* TODO: to be consolidated with enum color_space */ 520 521 /** 522 * enum dc_cursor_color_format - DC cursor programming mode 523 * 524 * This enum is for programming CURSOR_MODE register field. What this register 525 * should be programmed to depends on OS requested cursor shape flags and what 526 * we stored in the cursor surface. 527 */ 528 enum dc_cursor_color_format { 529 CURSOR_MODE_MONO, 530 CURSOR_MODE_COLOR_1BIT_AND, 531 CURSOR_MODE_COLOR_PRE_MULTIPLIED_ALPHA, 532 CURSOR_MODE_COLOR_UN_PRE_MULTIPLIED_ALPHA, 533 CURSOR_MODE_COLOR_64BIT_FP_PRE_MULTIPLIED, 534 CURSOR_MODE_COLOR_64BIT_FP_UN_PRE_MULTIPLIED 535 }; 536 537 /* 538 * This is all the parameters required by DAL in order to update the cursor 539 * attributes, including the new cursor image surface address, size, hotspot 540 * location, color format, etc. 541 */ 542 543 union dc_cursor_attribute_flags { 544 struct { 545 uint32_t ENABLE_MAGNIFICATION:1; 546 uint32_t INVERSE_TRANSPARENT_CLAMPING:1; 547 uint32_t HORIZONTAL_MIRROR:1; 548 uint32_t VERTICAL_MIRROR:1; 549 uint32_t INVERT_PIXEL_DATA:1; 550 uint32_t ZERO_EXPANSION:1; 551 uint32_t MIN_MAX_INVERT:1; 552 uint32_t ENABLE_CURSOR_DEGAMMA:1; 553 uint32_t RESERVED:24; 554 } bits; 555 uint32_t value; 556 }; 557 558 struct dc_cursor_attributes { 559 /** 560 * @address: This field represents the framebuffer address associated 561 * with the cursor. It is important to highlight that this address is 562 * divided into a high and low parts. 563 */ 564 PHYSICAL_ADDRESS_LOC address; 565 566 /** 567 * @pitch: Cursor line stride. 568 */ 569 uint32_t pitch; 570 571 /** 572 * @width: Width should correspond to cursor surface width. 573 */ 574 uint32_t width; 575 /** 576 * @heigh: Height should correspond to cursor surface heigh. 577 */ 578 uint32_t height; 579 580 /** 581 * @color_format: DC cursor programming mode. 582 */ 583 enum dc_cursor_color_format color_format; 584 /** 585 * @sdr_white_level: Boosting (SDR) cursor in HDR mode. 586 */ 587 uint32_t sdr_white_level; 588 589 /** 590 * @rotation_angle: In case we support HW Cursor rotation in the future 591 */ 592 enum dc_rotation_angle rotation_angle; 593 594 union dc_cursor_attribute_flags attribute_flags; 595 }; 596 597 struct dpp_cursor_attributes { 598 int bias; 599 int scale; 600 }; 601 602 /* OPP */ 603 604 enum dc_color_space { 605 COLOR_SPACE_UNKNOWN, 606 COLOR_SPACE_SRGB, 607 COLOR_SPACE_XR_RGB, 608 COLOR_SPACE_SRGB_LIMITED, 609 COLOR_SPACE_MSREF_SCRGB, 610 COLOR_SPACE_YCBCR601, 611 COLOR_SPACE_YCBCR709, 612 COLOR_SPACE_XV_YCC_709, 613 COLOR_SPACE_XV_YCC_601, 614 COLOR_SPACE_YCBCR601_LIMITED, 615 COLOR_SPACE_YCBCR709_LIMITED, 616 COLOR_SPACE_2020_RGB_FULLRANGE, 617 COLOR_SPACE_2020_RGB_LIMITEDRANGE, 618 COLOR_SPACE_2020_YCBCR, 619 COLOR_SPACE_ADOBERGB, 620 COLOR_SPACE_DCIP3, 621 COLOR_SPACE_DISPLAYNATIVE, 622 COLOR_SPACE_DOLBYVISION, 623 COLOR_SPACE_APPCTRL, 624 COLOR_SPACE_CUSTOMPOINTS, 625 COLOR_SPACE_YCBCR709_BLACK, 626 }; 627 628 enum dc_dither_option { 629 DITHER_OPTION_DEFAULT, 630 DITHER_OPTION_DISABLE, 631 DITHER_OPTION_FM6, 632 DITHER_OPTION_FM8, 633 DITHER_OPTION_FM10, 634 DITHER_OPTION_SPATIAL6_FRAME_RANDOM, 635 DITHER_OPTION_SPATIAL8_FRAME_RANDOM, 636 DITHER_OPTION_SPATIAL10_FRAME_RANDOM, 637 DITHER_OPTION_SPATIAL6, 638 DITHER_OPTION_SPATIAL8, 639 DITHER_OPTION_SPATIAL10, 640 DITHER_OPTION_TRUN6, 641 DITHER_OPTION_TRUN8, 642 DITHER_OPTION_TRUN10, 643 DITHER_OPTION_TRUN10_SPATIAL8, 644 DITHER_OPTION_TRUN10_SPATIAL6, 645 DITHER_OPTION_TRUN10_FM8, 646 DITHER_OPTION_TRUN10_FM6, 647 DITHER_OPTION_TRUN10_SPATIAL8_FM6, 648 DITHER_OPTION_SPATIAL10_FM8, 649 DITHER_OPTION_SPATIAL10_FM6, 650 DITHER_OPTION_TRUN8_SPATIAL6, 651 DITHER_OPTION_TRUN8_FM6, 652 DITHER_OPTION_SPATIAL8_FM6, 653 DITHER_OPTION_MAX = DITHER_OPTION_SPATIAL8_FM6, 654 DITHER_OPTION_INVALID 655 }; 656 657 enum dc_quantization_range { 658 QUANTIZATION_RANGE_UNKNOWN, 659 QUANTIZATION_RANGE_FULL, 660 QUANTIZATION_RANGE_LIMITED 661 }; 662 663 enum dc_dynamic_expansion { 664 DYN_EXPANSION_AUTO, 665 DYN_EXPANSION_DISABLE 666 }; 667 668 /* XFM */ 669 670 /* used in struct dc_plane_state */ 671 struct scaling_taps { 672 uint32_t v_taps; 673 uint32_t h_taps; 674 uint32_t v_taps_c; 675 uint32_t h_taps_c; 676 bool integer_scaling; 677 }; 678 679 enum dc_timing_standard { 680 DC_TIMING_STANDARD_UNDEFINED, 681 DC_TIMING_STANDARD_DMT, 682 DC_TIMING_STANDARD_GTF, 683 DC_TIMING_STANDARD_CVT, 684 DC_TIMING_STANDARD_CVT_RB, 685 DC_TIMING_STANDARD_CEA770, 686 DC_TIMING_STANDARD_CEA861, 687 DC_TIMING_STANDARD_HDMI, 688 DC_TIMING_STANDARD_TV_NTSC, 689 DC_TIMING_STANDARD_TV_NTSC_J, 690 DC_TIMING_STANDARD_TV_PAL, 691 DC_TIMING_STANDARD_TV_PAL_M, 692 DC_TIMING_STANDARD_TV_PAL_CN, 693 DC_TIMING_STANDARD_TV_SECAM, 694 DC_TIMING_STANDARD_EXPLICIT, 695 /*!< For explicit timings from EDID, VBIOS, etc.*/ 696 DC_TIMING_STANDARD_USER_OVERRIDE, 697 /*!< For mode timing override by user*/ 698 DC_TIMING_STANDARD_MAX 699 }; 700 701 enum dc_color_depth { 702 COLOR_DEPTH_UNDEFINED, 703 COLOR_DEPTH_666, 704 COLOR_DEPTH_888, 705 COLOR_DEPTH_101010, 706 COLOR_DEPTH_121212, 707 COLOR_DEPTH_141414, 708 COLOR_DEPTH_161616, 709 COLOR_DEPTH_999, 710 COLOR_DEPTH_111111, 711 COLOR_DEPTH_COUNT 712 }; 713 714 enum dc_pixel_encoding { 715 PIXEL_ENCODING_UNDEFINED, 716 PIXEL_ENCODING_RGB, 717 PIXEL_ENCODING_YCBCR422, 718 PIXEL_ENCODING_YCBCR444, 719 PIXEL_ENCODING_YCBCR420, 720 PIXEL_ENCODING_COUNT 721 }; 722 723 enum dc_aspect_ratio { 724 ASPECT_RATIO_NO_DATA, 725 ASPECT_RATIO_4_3, 726 ASPECT_RATIO_16_9, 727 ASPECT_RATIO_64_27, 728 ASPECT_RATIO_256_135, 729 ASPECT_RATIO_FUTURE 730 }; 731 732 enum scanning_type { 733 SCANNING_TYPE_NODATA = 0, 734 SCANNING_TYPE_OVERSCAN, 735 SCANNING_TYPE_UNDERSCAN, 736 SCANNING_TYPE_FUTURE, 737 SCANNING_TYPE_UNDEFINED 738 }; 739 740 struct dc_crtc_timing_flags { 741 uint32_t INTERLACE :1; 742 uint32_t HSYNC_POSITIVE_POLARITY :1; /* when set to 1, 743 it is positive polarity --reversed with dal1 or video bios define*/ 744 uint32_t VSYNC_POSITIVE_POLARITY :1; /* when set to 1, 745 it is positive polarity --reversed with dal1 or video bios define*/ 746 747 uint32_t HORZ_COUNT_BY_TWO:1; 748 749 uint32_t EXCLUSIVE_3D :1; /* if this bit set, 750 timing can be driven in 3D format only 751 and there is no corresponding 2D timing*/ 752 uint32_t RIGHT_EYE_3D_POLARITY :1; /* 1 - means right eye polarity 753 (right eye = '1', left eye = '0') */ 754 uint32_t SUB_SAMPLE_3D :1; /* 1 - means left/right images subsampled 755 when mixed into 3D image. 0 - means summation (3D timing is doubled)*/ 756 uint32_t USE_IN_3D_VIEW_ONLY :1; /* Do not use this timing in 2D View, 757 because corresponding 2D timing also present in the list*/ 758 uint32_t STEREO_3D_PREFERENCE :1; /* Means this is 2D timing 759 and we want to match priority of corresponding 3D timing*/ 760 uint32_t Y_ONLY :1; 761 762 uint32_t YCBCR420 :1; /* TODO: shouldn't need this flag, should be a separate pixel format */ 763 uint32_t DTD_COUNTER :5; /* values 1 to 16 */ 764 765 uint32_t FORCE_HDR :1; 766 767 /* HDMI 2.0 - Support scrambling for TMDS character 768 * rates less than or equal to 340Mcsc */ 769 uint32_t LTE_340MCSC_SCRAMBLE:1; 770 771 uint32_t DSC : 1; /* Use DSC with this timing */ 772 #ifndef TRIM_FSFT 773 uint32_t FAST_TRANSPORT: 1; 774 #endif 775 uint32_t VBLANK_SYNCHRONIZABLE: 1; 776 }; 777 778 enum dc_timing_3d_format { 779 TIMING_3D_FORMAT_NONE, 780 TIMING_3D_FORMAT_FRAME_ALTERNATE, /* No stereosync at all*/ 781 TIMING_3D_FORMAT_INBAND_FA, /* Inband Frame Alternate (DVI/DP)*/ 782 TIMING_3D_FORMAT_DP_HDMI_INBAND_FA, /* Inband FA to HDMI Frame Pack*/ 783 /* for active DP-HDMI dongle*/ 784 TIMING_3D_FORMAT_SIDEBAND_FA, /* Sideband Frame Alternate (eDP)*/ 785 TIMING_3D_FORMAT_HW_FRAME_PACKING, 786 TIMING_3D_FORMAT_SW_FRAME_PACKING, 787 TIMING_3D_FORMAT_ROW_INTERLEAVE, 788 TIMING_3D_FORMAT_COLUMN_INTERLEAVE, 789 TIMING_3D_FORMAT_PIXEL_INTERLEAVE, 790 TIMING_3D_FORMAT_SIDE_BY_SIDE, 791 TIMING_3D_FORMAT_TOP_AND_BOTTOM, 792 TIMING_3D_FORMAT_SBS_SW_PACKED, 793 /* Side-by-side, packed by application/driver into 2D frame*/ 794 TIMING_3D_FORMAT_TB_SW_PACKED, 795 /* Top-and-bottom, packed by application/driver into 2D frame*/ 796 797 TIMING_3D_FORMAT_MAX, 798 }; 799 800 #define DC_DSC_QP_SET_SIZE 15 801 #define DC_DSC_RC_BUF_THRESH_SIZE 14 802 struct dc_dsc_rc_params_override { 803 int32_t rc_model_size; 804 int32_t rc_buf_thresh[DC_DSC_RC_BUF_THRESH_SIZE]; 805 int32_t rc_minqp[DC_DSC_QP_SET_SIZE]; 806 int32_t rc_maxqp[DC_DSC_QP_SET_SIZE]; 807 int32_t rc_offset[DC_DSC_QP_SET_SIZE]; 808 809 int32_t rc_tgt_offset_hi; 810 int32_t rc_tgt_offset_lo; 811 int32_t rc_edge_factor; 812 int32_t rc_quant_incr_limit0; 813 int32_t rc_quant_incr_limit1; 814 815 int32_t initial_fullness_offset; 816 int32_t initial_delay; 817 818 int32_t flatness_min_qp; 819 int32_t flatness_max_qp; 820 int32_t flatness_det_thresh; 821 }; 822 823 struct dc_dsc_config { 824 uint32_t num_slices_h; /* Number of DSC slices - horizontal */ 825 uint32_t num_slices_v; /* Number of DSC slices - vertical */ 826 uint32_t bits_per_pixel; /* DSC target bitrate in 1/16 of bpp (e.g. 128 -> 8bpp) */ 827 bool block_pred_enable; /* DSC block prediction enable */ 828 uint32_t linebuf_depth; /* DSC line buffer depth */ 829 uint32_t version_minor; /* DSC minor version. Full version is formed as 1.version_minor. */ 830 bool ycbcr422_simple; /* Tell DSC engine to convert YCbCr 4:2:2 to 'YCbCr 4:2:2 simple'. */ 831 int32_t rc_buffer_size; /* DSC RC buffer block size in bytes */ 832 #if defined(CONFIG_DRM_AMD_DC_DCN) 833 bool is_frl; /* indicate if DSC is applied based on HDMI FRL sink's capability */ 834 #endif 835 bool is_dp; /* indicate if DSC is applied based on DP's capability */ 836 uint32_t mst_pbn; /* pbn of display on dsc mst hub */ 837 const struct dc_dsc_rc_params_override *rc_params_ovrd; /* DM owned memory. If not NULL, apply custom dsc rc params */ 838 }; 839 840 /** 841 * struct dc_crtc_timing - Timing parameters used to configure DCN blocks 842 * 843 * DCN provides multiple signals and parameters that can be used to adjust 844 * timing parameters, this struct aggregate multiple of these values for easy 845 * access. In this struct, fields prefixed with h_* are related to horizontal 846 * timing, and v_* to vertical timing. Keep in mind that when we talk about 847 * vertical timings, the values, in general, are described in the number of 848 * lines; on the other hand, the horizontal values are in pixels. 849 */ 850 struct dc_crtc_timing { 851 /** 852 * @h_total: The total number of pixels from the rising edge of HSync 853 * until the rising edge of the current HSync. 854 */ 855 uint32_t h_total; 856 857 /** 858 * @h_border_left: The black pixels related to the left border 859 */ 860 uint32_t h_border_left; 861 862 /** 863 * @h_addressable: It is the range of pixels displayed horizontally. 864 * For example, if the display resolution is 3840@2160, the horizontal 865 * addressable area is 3840. 866 */ 867 uint32_t h_addressable; 868 869 /** 870 * @h_border_right: The black pixels related to the right border 871 */ 872 uint32_t h_border_right; 873 874 /** 875 * @h_front_porch: Period (in pixels) between HBlank start and the 876 * rising edge of HSync. 877 */ 878 uint32_t h_front_porch; 879 880 /** 881 * @h_sync_width: HSync duration in pixels. 882 */ 883 uint32_t h_sync_width; 884 885 /** 886 * @v_total: It is the total number of lines from the rising edge of 887 * the previous VSync until the rising edge of the current VSync. 888 * 889 * |--------------------------| 890 * +-+ V_TOTAL +-+ 891 * | | | | 892 * VSync ---+ +--------- // -----------+ +--- 893 */ 894 uint32_t v_total; 895 896 /** 897 * @v_border_top: The black border on the top. 898 */ 899 uint32_t v_border_top; 900 901 /** 902 * @v_addressable: It is the range of the scanout at which the 903 * framebuffer is displayed. For example, if the display resolution is 904 * 3840@2160, the addressable area is 2160 lines, or if the resolution 905 * is 1920x1080, the addressable area is 1080 lines. 906 */ 907 uint32_t v_addressable; 908 909 /** 910 * @v_border_bottom: The black border on the bottom. 911 */ 912 uint32_t v_border_bottom; 913 914 /** 915 * @v_front_porch: Period (in lines) between VBlank start and rising 916 * edge of VSync. 917 * +-+ 918 * VSync | | 919 * ----------+ +--------... 920 * +------------------... 921 * VBlank | 922 * --+ 923 * |-------| 924 * v_front_porch 925 */ 926 uint32_t v_front_porch; 927 928 /** 929 * @v_sync_width: VSync signal width in lines. 930 */ 931 uint32_t v_sync_width; 932 933 /** 934 * @pix_clk_100hz: Pipe pixel precision 935 * 936 * This field is used to communicate pixel clocks with 100 Hz accuracy 937 * from dc_crtc_timing to BIOS command table. 938 */ 939 uint32_t pix_clk_100hz; 940 941 uint32_t min_refresh_in_uhz; 942 943 uint32_t vic; 944 uint32_t hdmi_vic; 945 uint32_t rid; 946 uint32_t fr_index; 947 enum dc_timing_3d_format timing_3d_format; 948 enum dc_color_depth display_color_depth; 949 enum dc_pixel_encoding pixel_encoding; 950 enum dc_aspect_ratio aspect_ratio; 951 enum scanning_type scan_type; 952 953 #ifndef TRIM_FSFT 954 uint32_t fast_transport_output_rate_100hz; 955 #endif 956 957 struct dc_crtc_timing_flags flags; 958 uint32_t dsc_fixed_bits_per_pixel_x16; /* DSC target bitrate in 1/16 of bpp (e.g. 128 -> 8bpp) */ 959 struct dc_dsc_config dsc_cfg; 960 }; 961 962 enum trigger_delay { 963 TRIGGER_DELAY_NEXT_PIXEL = 0, 964 TRIGGER_DELAY_NEXT_LINE, 965 }; 966 967 enum crtc_event { 968 CRTC_EVENT_VSYNC_RISING = 0, 969 CRTC_EVENT_VSYNC_FALLING 970 }; 971 972 struct crtc_trigger_info { 973 bool enabled; 974 struct dc_stream_state *event_source; 975 enum crtc_event event; 976 enum trigger_delay delay; 977 }; 978 979 struct dc_crtc_timing_adjust { 980 uint32_t v_total_min; 981 uint32_t v_total_max; 982 uint32_t v_total_mid; 983 uint32_t v_total_mid_frame_num; 984 }; 985 986 987 /* Passed on init */ 988 enum vram_type { 989 VIDEO_MEMORY_TYPE_GDDR5 = 2, 990 VIDEO_MEMORY_TYPE_DDR3 = 3, 991 VIDEO_MEMORY_TYPE_DDR4 = 4, 992 VIDEO_MEMORY_TYPE_HBM = 5, 993 VIDEO_MEMORY_TYPE_GDDR6 = 6, 994 }; 995 996 enum dwb_cnv_out_bpc { 997 DWB_CNV_OUT_BPC_8BPC = 0, 998 DWB_CNV_OUT_BPC_10BPC = 1, 999 }; 1000 1001 enum dwb_output_depth { 1002 DWB_OUTPUT_PIXEL_DEPTH_8BPC = 0, 1003 DWB_OUTPUT_PIXEL_DEPTH_10BPC = 1, 1004 }; 1005 1006 enum dwb_capture_rate { 1007 dwb_capture_rate_0 = 0, /* Every frame is captured. */ 1008 dwb_capture_rate_1 = 1, /* Every other frame is captured. */ 1009 dwb_capture_rate_2 = 2, /* Every 3rd frame is captured. */ 1010 dwb_capture_rate_3 = 3, /* Every 4th frame is captured. */ 1011 }; 1012 1013 enum dwb_scaler_mode { 1014 dwb_scaler_mode_bypass444 = 0, 1015 dwb_scaler_mode_rgb444 = 1, 1016 dwb_scaler_mode_yuv444 = 2, 1017 dwb_scaler_mode_yuv420 = 3 1018 }; 1019 1020 enum dwb_subsample_position { 1021 DWB_INTERSTITIAL_SUBSAMPLING = 0, 1022 DWB_COSITED_SUBSAMPLING = 1 1023 }; 1024 1025 enum dwb_stereo_eye_select { 1026 DWB_STEREO_EYE_LEFT = 1, /* Capture left eye only */ 1027 DWB_STEREO_EYE_RIGHT = 2, /* Capture right eye only */ 1028 }; 1029 1030 enum dwb_stereo_type { 1031 DWB_STEREO_TYPE_FRAME_PACKING = 0, /* Frame packing */ 1032 DWB_STEREO_TYPE_FRAME_SEQUENTIAL = 3, /* Frame sequential */ 1033 }; 1034 1035 enum dwb_out_format { 1036 DWB_OUT_FORMAT_32BPP_ARGB = 0, 1037 DWB_OUT_FORMAT_32BPP_RGBA = 1, 1038 DWB_OUT_FORMAT_64BPP_ARGB = 2, 1039 DWB_OUT_FORMAT_64BPP_RGBA = 3 1040 }; 1041 1042 enum dwb_out_denorm { 1043 DWB_OUT_DENORM_10BPC = 0, 1044 DWB_OUT_DENORM_8BPC = 1, 1045 DWB_OUT_DENORM_BYPASS = 2 1046 }; 1047 1048 enum cm_gamut_remap_select { 1049 CM_GAMUT_REMAP_MODE_BYPASS = 0, 1050 CM_GAMUT_REMAP_MODE_RAMA_COEFF, 1051 CM_GAMUT_REMAP_MODE_RAMB_COEFF, 1052 CM_GAMUT_REMAP_MODE_RESERVED 1053 }; 1054 1055 enum cm_gamut_coef_format { 1056 CM_GAMUT_REMAP_COEF_FORMAT_S2_13 = 0, 1057 CM_GAMUT_REMAP_COEF_FORMAT_S3_12 = 1 1058 }; 1059 1060 struct mcif_warmup_params { 1061 union large_integer start_address; 1062 unsigned int address_increment; 1063 unsigned int region_size; 1064 unsigned int p_vmid; 1065 }; 1066 1067 #define MCIF_BUF_COUNT 4 1068 1069 struct mcif_buf_params { 1070 unsigned long long luma_address[MCIF_BUF_COUNT]; 1071 unsigned long long chroma_address[MCIF_BUF_COUNT]; 1072 unsigned int luma_pitch; 1073 unsigned int chroma_pitch; 1074 unsigned int warmup_pitch; 1075 unsigned int swlock; 1076 unsigned int p_vmid; 1077 }; 1078 1079 1080 #define MAX_TG_COLOR_VALUE 0x3FF 1081 struct tg_color { 1082 /* Maximum 10 bits color value */ 1083 uint16_t color_r_cr; 1084 uint16_t color_g_y; 1085 uint16_t color_b_cb; 1086 }; 1087 1088 #endif /* DC_HW_TYPES_H */ 1089 1090