1 /* 2 * Copyright 2019 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 27 #include "dm_services.h" 28 #include "dc.h" 29 30 #include "dcn31/dcn31_init.h" 31 32 #include "resource.h" 33 #include "include/irq_service_interface.h" 34 #include "dcn31_resource.h" 35 36 #include "dcn20/dcn20_resource.h" 37 #include "dcn30/dcn30_resource.h" 38 39 #include "dcn10/dcn10_ipp.h" 40 #include "dcn30/dcn30_hubbub.h" 41 #include "dcn31/dcn31_hubbub.h" 42 #include "dcn30/dcn30_mpc.h" 43 #include "dcn31/dcn31_hubp.h" 44 #include "irq/dcn31/irq_service_dcn31.h" 45 #include "dcn30/dcn30_dpp.h" 46 #include "dcn31/dcn31_optc.h" 47 #include "dcn20/dcn20_hwseq.h" 48 #include "dcn30/dcn30_hwseq.h" 49 #include "dce110/dce110_hw_sequencer.h" 50 #include "dcn30/dcn30_opp.h" 51 #include "dcn20/dcn20_dsc.h" 52 #include "dcn30/dcn30_vpg.h" 53 #include "dcn30/dcn30_afmt.h" 54 #include "dcn30/dcn30_dio_stream_encoder.h" 55 #include "dcn31/dcn31_hpo_dp_stream_encoder.h" 56 #include "dcn31/dcn31_hpo_dp_link_encoder.h" 57 #include "dcn31/dcn31_apg.h" 58 #include "dcn31/dcn31_dio_link_encoder.h" 59 #include "dcn31/dcn31_vpg.h" 60 #include "dcn31/dcn31_afmt.h" 61 #include "dce/dce_clock_source.h" 62 #include "dce/dce_audio.h" 63 #include "dce/dce_hwseq.h" 64 #include "clk_mgr.h" 65 #include "virtual/virtual_stream_encoder.h" 66 #include "dce110/dce110_resource.h" 67 #include "dml/display_mode_vba.h" 68 #include "dml/dcn31/dcn31_fpu.h" 69 #include "dcn31/dcn31_dccg.h" 70 #include "dcn10/dcn10_resource.h" 71 #include "dcn31_panel_cntl.h" 72 73 #include "dcn30/dcn30_dwb.h" 74 #include "dcn30/dcn30_mmhubbub.h" 75 76 // TODO: change include headers /amd/include/asic_reg after upstream 77 #include "yellow_carp_offset.h" 78 #include "dcn/dcn_3_1_2_offset.h" 79 #include "dcn/dcn_3_1_2_sh_mask.h" 80 #include "nbio/nbio_7_2_0_offset.h" 81 #include "dpcs/dpcs_4_2_0_offset.h" 82 #include "dpcs/dpcs_4_2_0_sh_mask.h" 83 #include "mmhub/mmhub_2_3_0_offset.h" 84 #include "mmhub/mmhub_2_3_0_sh_mask.h" 85 86 87 #define regDCHUBBUB_DEBUG_CTRL_0 0x04d6 88 #define regDCHUBBUB_DEBUG_CTRL_0_BASE_IDX 2 89 #define DCHUBBUB_DEBUG_CTRL_0__DET_DEPTH__SHIFT 0x10 90 #define DCHUBBUB_DEBUG_CTRL_0__DET_DEPTH_MASK 0x01FF0000L 91 92 #include "reg_helper.h" 93 #include "dce/dmub_abm.h" 94 #include "dce/dmub_psr.h" 95 #include "dce/dce_aux.h" 96 #include "dce/dce_i2c.h" 97 98 #include "dml/dcn30/display_mode_vba_30.h" 99 #include "vm_helper.h" 100 #include "dcn20/dcn20_vmid.h" 101 102 #include "link_enc_cfg.h" 103 104 #define DC_LOGGER_INIT(logger) 105 106 enum dcn31_clk_src_array_id { 107 DCN31_CLK_SRC_PLL0, 108 DCN31_CLK_SRC_PLL1, 109 DCN31_CLK_SRC_PLL2, 110 DCN31_CLK_SRC_PLL3, 111 DCN31_CLK_SRC_PLL4, 112 DCN30_CLK_SRC_TOTAL 113 }; 114 115 /* begin ********************* 116 * macros to expend register list macro defined in HW object header file 117 */ 118 119 /* DCN */ 120 /* TODO awful hack. fixup dcn20_dwb.h */ 121 #undef BASE_INNER 122 #define BASE_INNER(seg) DCN_BASE__INST0_SEG ## seg 123 124 #define BASE(seg) BASE_INNER(seg) 125 126 #define SR(reg_name)\ 127 .reg_name = BASE(reg ## reg_name ## _BASE_IDX) + \ 128 reg ## reg_name 129 130 #define SRI(reg_name, block, id)\ 131 .reg_name = BASE(reg ## block ## id ## _ ## reg_name ## _BASE_IDX) + \ 132 reg ## block ## id ## _ ## reg_name 133 134 #define SRI2(reg_name, block, id)\ 135 .reg_name = BASE(reg ## reg_name ## _BASE_IDX) + \ 136 reg ## reg_name 137 138 #define SRIR(var_name, reg_name, block, id)\ 139 .var_name = BASE(reg ## block ## id ## _ ## reg_name ## _BASE_IDX) + \ 140 reg ## block ## id ## _ ## reg_name 141 142 #define SRII(reg_name, block, id)\ 143 .reg_name[id] = BASE(reg ## block ## id ## _ ## reg_name ## _BASE_IDX) + \ 144 reg ## block ## id ## _ ## reg_name 145 146 #define SRII_MPC_RMU(reg_name, block, id)\ 147 .RMU##_##reg_name[id] = BASE(reg ## block ## id ## _ ## reg_name ## _BASE_IDX) + \ 148 reg ## block ## id ## _ ## reg_name 149 150 #define SRII_DWB(reg_name, temp_name, block, id)\ 151 .reg_name[id] = BASE(reg ## block ## id ## _ ## temp_name ## _BASE_IDX) + \ 152 reg ## block ## id ## _ ## temp_name 153 154 #define DCCG_SRII(reg_name, block, id)\ 155 .block ## _ ## reg_name[id] = BASE(reg ## block ## id ## _ ## reg_name ## _BASE_IDX) + \ 156 reg ## block ## id ## _ ## reg_name 157 158 #define VUPDATE_SRII(reg_name, block, id)\ 159 .reg_name[id] = BASE(reg ## reg_name ## _ ## block ## id ## _BASE_IDX) + \ 160 reg ## reg_name ## _ ## block ## id 161 162 /* NBIO */ 163 #define NBIO_BASE_INNER(seg) \ 164 NBIO_BASE__INST0_SEG ## seg 165 166 #define NBIO_BASE(seg) \ 167 NBIO_BASE_INNER(seg) 168 169 #define NBIO_SR(reg_name)\ 170 .reg_name = NBIO_BASE(regBIF_BX1_ ## reg_name ## _BASE_IDX) + \ 171 regBIF_BX1_ ## reg_name 172 173 /* MMHUB */ 174 #define MMHUB_BASE_INNER(seg) \ 175 MMHUB_BASE__INST0_SEG ## seg 176 177 #define MMHUB_BASE(seg) \ 178 MMHUB_BASE_INNER(seg) 179 180 #define MMHUB_SR(reg_name)\ 181 .reg_name = MMHUB_BASE(mm ## reg_name ## _BASE_IDX) + \ 182 mm ## reg_name 183 184 /* CLOCK */ 185 #define CLK_BASE_INNER(seg) \ 186 CLK_BASE__INST0_SEG ## seg 187 188 #define CLK_BASE(seg) \ 189 CLK_BASE_INNER(seg) 190 191 #define CLK_SRI(reg_name, block, inst)\ 192 .reg_name = CLK_BASE(reg ## block ## _ ## inst ## _ ## reg_name ## _BASE_IDX) + \ 193 reg ## block ## _ ## inst ## _ ## reg_name 194 195 196 static const struct bios_registers bios_regs = { 197 NBIO_SR(BIOS_SCRATCH_3), 198 NBIO_SR(BIOS_SCRATCH_6) 199 }; 200 201 #define clk_src_regs(index, pllid)\ 202 [index] = {\ 203 CS_COMMON_REG_LIST_DCN3_0(index, pllid),\ 204 } 205 206 static const struct dce110_clk_src_regs clk_src_regs[] = { 207 clk_src_regs(0, A), 208 clk_src_regs(1, B), 209 clk_src_regs(2, C), 210 clk_src_regs(3, D), 211 clk_src_regs(4, E) 212 }; 213 /*pll_id being rempped in dmub, in driver it is logical instance*/ 214 static const struct dce110_clk_src_regs clk_src_regs_b0[] = { 215 clk_src_regs(0, A), 216 clk_src_regs(1, B), 217 clk_src_regs(2, F), 218 clk_src_regs(3, G), 219 clk_src_regs(4, E) 220 }; 221 222 static const struct dce110_clk_src_shift cs_shift = { 223 CS_COMMON_MASK_SH_LIST_DCN2_0(__SHIFT) 224 }; 225 226 static const struct dce110_clk_src_mask cs_mask = { 227 CS_COMMON_MASK_SH_LIST_DCN2_0(_MASK) 228 }; 229 230 #define abm_regs(id)\ 231 [id] = {\ 232 ABM_DCN302_REG_LIST(id)\ 233 } 234 235 static const struct dce_abm_registers abm_regs[] = { 236 abm_regs(0), 237 abm_regs(1), 238 abm_regs(2), 239 abm_regs(3), 240 }; 241 242 static const struct dce_abm_shift abm_shift = { 243 ABM_MASK_SH_LIST_DCN30(__SHIFT) 244 }; 245 246 static const struct dce_abm_mask abm_mask = { 247 ABM_MASK_SH_LIST_DCN30(_MASK) 248 }; 249 250 #define audio_regs(id)\ 251 [id] = {\ 252 AUD_COMMON_REG_LIST(id)\ 253 } 254 255 static const struct dce_audio_registers audio_regs[] = { 256 audio_regs(0), 257 audio_regs(1), 258 audio_regs(2), 259 audio_regs(3), 260 audio_regs(4), 261 audio_regs(5), 262 audio_regs(6) 263 }; 264 265 #define DCE120_AUD_COMMON_MASK_SH_LIST(mask_sh)\ 266 SF(AZF0ENDPOINT0_AZALIA_F0_CODEC_ENDPOINT_INDEX, AZALIA_ENDPOINT_REG_INDEX, mask_sh),\ 267 SF(AZF0ENDPOINT0_AZALIA_F0_CODEC_ENDPOINT_DATA, AZALIA_ENDPOINT_REG_DATA, mask_sh),\ 268 AUD_COMMON_MASK_SH_LIST_BASE(mask_sh) 269 270 static const struct dce_audio_shift audio_shift = { 271 DCE120_AUD_COMMON_MASK_SH_LIST(__SHIFT) 272 }; 273 274 static const struct dce_audio_mask audio_mask = { 275 DCE120_AUD_COMMON_MASK_SH_LIST(_MASK) 276 }; 277 278 #define vpg_regs(id)\ 279 [id] = {\ 280 VPG_DCN31_REG_LIST(id)\ 281 } 282 283 static const struct dcn31_vpg_registers vpg_regs[] = { 284 vpg_regs(0), 285 vpg_regs(1), 286 vpg_regs(2), 287 vpg_regs(3), 288 vpg_regs(4), 289 vpg_regs(5), 290 vpg_regs(6), 291 vpg_regs(7), 292 vpg_regs(8), 293 vpg_regs(9), 294 }; 295 296 static const struct dcn31_vpg_shift vpg_shift = { 297 DCN31_VPG_MASK_SH_LIST(__SHIFT) 298 }; 299 300 static const struct dcn31_vpg_mask vpg_mask = { 301 DCN31_VPG_MASK_SH_LIST(_MASK) 302 }; 303 304 #define afmt_regs(id)\ 305 [id] = {\ 306 AFMT_DCN31_REG_LIST(id)\ 307 } 308 309 static const struct dcn31_afmt_registers afmt_regs[] = { 310 afmt_regs(0), 311 afmt_regs(1), 312 afmt_regs(2), 313 afmt_regs(3), 314 afmt_regs(4), 315 afmt_regs(5) 316 }; 317 318 static const struct dcn31_afmt_shift afmt_shift = { 319 DCN31_AFMT_MASK_SH_LIST(__SHIFT) 320 }; 321 322 static const struct dcn31_afmt_mask afmt_mask = { 323 DCN31_AFMT_MASK_SH_LIST(_MASK) 324 }; 325 326 #define apg_regs(id)\ 327 [id] = {\ 328 APG_DCN31_REG_LIST(id)\ 329 } 330 331 static const struct dcn31_apg_registers apg_regs[] = { 332 apg_regs(0), 333 apg_regs(1), 334 apg_regs(2), 335 apg_regs(3) 336 }; 337 338 static const struct dcn31_apg_shift apg_shift = { 339 DCN31_APG_MASK_SH_LIST(__SHIFT) 340 }; 341 342 static const struct dcn31_apg_mask apg_mask = { 343 DCN31_APG_MASK_SH_LIST(_MASK) 344 }; 345 346 #define stream_enc_regs(id)\ 347 [id] = {\ 348 SE_DCN3_REG_LIST(id)\ 349 } 350 351 /* Some encoders won't be initialized here - but they're logical, not physical. */ 352 static const struct dcn10_stream_enc_registers stream_enc_regs[ENGINE_ID_COUNT] = { 353 stream_enc_regs(0), 354 stream_enc_regs(1), 355 stream_enc_regs(2), 356 stream_enc_regs(3), 357 stream_enc_regs(4) 358 }; 359 360 static const struct dcn10_stream_encoder_shift se_shift = { 361 SE_COMMON_MASK_SH_LIST_DCN30(__SHIFT) 362 }; 363 364 static const struct dcn10_stream_encoder_mask se_mask = { 365 SE_COMMON_MASK_SH_LIST_DCN30(_MASK) 366 }; 367 368 369 #define aux_regs(id)\ 370 [id] = {\ 371 DCN2_AUX_REG_LIST(id)\ 372 } 373 374 static const struct dcn10_link_enc_aux_registers link_enc_aux_regs[] = { 375 aux_regs(0), 376 aux_regs(1), 377 aux_regs(2), 378 aux_regs(3), 379 aux_regs(4) 380 }; 381 382 #define hpd_regs(id)\ 383 [id] = {\ 384 HPD_REG_LIST(id)\ 385 } 386 387 static const struct dcn10_link_enc_hpd_registers link_enc_hpd_regs[] = { 388 hpd_regs(0), 389 hpd_regs(1), 390 hpd_regs(2), 391 hpd_regs(3), 392 hpd_regs(4) 393 }; 394 395 #define link_regs(id, phyid)\ 396 [id] = {\ 397 LE_DCN31_REG_LIST(id), \ 398 UNIPHY_DCN2_REG_LIST(phyid), \ 399 DPCS_DCN31_REG_LIST(id), \ 400 } 401 402 static const struct dce110_aux_registers_shift aux_shift = { 403 DCN_AUX_MASK_SH_LIST(__SHIFT) 404 }; 405 406 static const struct dce110_aux_registers_mask aux_mask = { 407 DCN_AUX_MASK_SH_LIST(_MASK) 408 }; 409 410 static const struct dcn10_link_enc_registers link_enc_regs[] = { 411 link_regs(0, A), 412 link_regs(1, B), 413 link_regs(2, C), 414 link_regs(3, D), 415 link_regs(4, E) 416 }; 417 418 static const struct dcn10_link_enc_shift le_shift = { 419 LINK_ENCODER_MASK_SH_LIST_DCN31(__SHIFT), \ 420 DPCS_DCN31_MASK_SH_LIST(__SHIFT) 421 }; 422 423 static const struct dcn10_link_enc_mask le_mask = { 424 LINK_ENCODER_MASK_SH_LIST_DCN31(_MASK), \ 425 DPCS_DCN31_MASK_SH_LIST(_MASK) 426 }; 427 428 #define hpo_dp_stream_encoder_reg_list(id)\ 429 [id] = {\ 430 DCN3_1_HPO_DP_STREAM_ENC_REG_LIST(id)\ 431 } 432 433 static const struct dcn31_hpo_dp_stream_encoder_registers hpo_dp_stream_enc_regs[] = { 434 hpo_dp_stream_encoder_reg_list(0), 435 hpo_dp_stream_encoder_reg_list(1), 436 hpo_dp_stream_encoder_reg_list(2), 437 hpo_dp_stream_encoder_reg_list(3), 438 }; 439 440 static const struct dcn31_hpo_dp_stream_encoder_shift hpo_dp_se_shift = { 441 DCN3_1_HPO_DP_STREAM_ENC_MASK_SH_LIST(__SHIFT) 442 }; 443 444 static const struct dcn31_hpo_dp_stream_encoder_mask hpo_dp_se_mask = { 445 DCN3_1_HPO_DP_STREAM_ENC_MASK_SH_LIST(_MASK) 446 }; 447 448 #define hpo_dp_link_encoder_reg_list(id)\ 449 [id] = {\ 450 DCN3_1_HPO_DP_LINK_ENC_REG_LIST(id),\ 451 DCN3_1_RDPCSTX_REG_LIST(0),\ 452 DCN3_1_RDPCSTX_REG_LIST(1),\ 453 DCN3_1_RDPCSTX_REG_LIST(2),\ 454 DCN3_1_RDPCSTX_REG_LIST(3),\ 455 DCN3_1_RDPCSTX_REG_LIST(4)\ 456 } 457 458 static const struct dcn31_hpo_dp_link_encoder_registers hpo_dp_link_enc_regs[] = { 459 hpo_dp_link_encoder_reg_list(0), 460 hpo_dp_link_encoder_reg_list(1), 461 }; 462 463 static const struct dcn31_hpo_dp_link_encoder_shift hpo_dp_le_shift = { 464 DCN3_1_HPO_DP_LINK_ENC_MASK_SH_LIST(__SHIFT) 465 }; 466 467 static const struct dcn31_hpo_dp_link_encoder_mask hpo_dp_le_mask = { 468 DCN3_1_HPO_DP_LINK_ENC_MASK_SH_LIST(_MASK) 469 }; 470 471 #define dpp_regs(id)\ 472 [id] = {\ 473 DPP_REG_LIST_DCN30(id),\ 474 } 475 476 static const struct dcn3_dpp_registers dpp_regs[] = { 477 dpp_regs(0), 478 dpp_regs(1), 479 dpp_regs(2), 480 dpp_regs(3) 481 }; 482 483 static const struct dcn3_dpp_shift tf_shift = { 484 DPP_REG_LIST_SH_MASK_DCN30(__SHIFT) 485 }; 486 487 static const struct dcn3_dpp_mask tf_mask = { 488 DPP_REG_LIST_SH_MASK_DCN30(_MASK) 489 }; 490 491 #define opp_regs(id)\ 492 [id] = {\ 493 OPP_REG_LIST_DCN30(id),\ 494 } 495 496 static const struct dcn20_opp_registers opp_regs[] = { 497 opp_regs(0), 498 opp_regs(1), 499 opp_regs(2), 500 opp_regs(3) 501 }; 502 503 static const struct dcn20_opp_shift opp_shift = { 504 OPP_MASK_SH_LIST_DCN20(__SHIFT) 505 }; 506 507 static const struct dcn20_opp_mask opp_mask = { 508 OPP_MASK_SH_LIST_DCN20(_MASK) 509 }; 510 511 #define aux_engine_regs(id)\ 512 [id] = {\ 513 AUX_COMMON_REG_LIST0(id), \ 514 .AUXN_IMPCAL = 0, \ 515 .AUXP_IMPCAL = 0, \ 516 .AUX_RESET_MASK = DP_AUX0_AUX_CONTROL__AUX_RESET_MASK, \ 517 } 518 519 static const struct dce110_aux_registers aux_engine_regs[] = { 520 aux_engine_regs(0), 521 aux_engine_regs(1), 522 aux_engine_regs(2), 523 aux_engine_regs(3), 524 aux_engine_regs(4) 525 }; 526 527 #define dwbc_regs_dcn3(id)\ 528 [id] = {\ 529 DWBC_COMMON_REG_LIST_DCN30(id),\ 530 } 531 532 static const struct dcn30_dwbc_registers dwbc30_regs[] = { 533 dwbc_regs_dcn3(0), 534 }; 535 536 static const struct dcn30_dwbc_shift dwbc30_shift = { 537 DWBC_COMMON_MASK_SH_LIST_DCN30(__SHIFT) 538 }; 539 540 static const struct dcn30_dwbc_mask dwbc30_mask = { 541 DWBC_COMMON_MASK_SH_LIST_DCN30(_MASK) 542 }; 543 544 #define mcif_wb_regs_dcn3(id)\ 545 [id] = {\ 546 MCIF_WB_COMMON_REG_LIST_DCN30(id),\ 547 } 548 549 static const struct dcn30_mmhubbub_registers mcif_wb30_regs[] = { 550 mcif_wb_regs_dcn3(0) 551 }; 552 553 static const struct dcn30_mmhubbub_shift mcif_wb30_shift = { 554 MCIF_WB_COMMON_MASK_SH_LIST_DCN30(__SHIFT) 555 }; 556 557 static const struct dcn30_mmhubbub_mask mcif_wb30_mask = { 558 MCIF_WB_COMMON_MASK_SH_LIST_DCN30(_MASK) 559 }; 560 561 #define dsc_regsDCN20(id)\ 562 [id] = {\ 563 DSC_REG_LIST_DCN20(id)\ 564 } 565 566 static const struct dcn20_dsc_registers dsc_regs[] = { 567 dsc_regsDCN20(0), 568 dsc_regsDCN20(1), 569 dsc_regsDCN20(2) 570 }; 571 572 static const struct dcn20_dsc_shift dsc_shift = { 573 DSC_REG_LIST_SH_MASK_DCN20(__SHIFT) 574 }; 575 576 static const struct dcn20_dsc_mask dsc_mask = { 577 DSC_REG_LIST_SH_MASK_DCN20(_MASK) 578 }; 579 580 static const struct dcn30_mpc_registers mpc_regs = { 581 MPC_REG_LIST_DCN3_0(0), 582 MPC_REG_LIST_DCN3_0(1), 583 MPC_REG_LIST_DCN3_0(2), 584 MPC_REG_LIST_DCN3_0(3), 585 MPC_OUT_MUX_REG_LIST_DCN3_0(0), 586 MPC_OUT_MUX_REG_LIST_DCN3_0(1), 587 MPC_OUT_MUX_REG_LIST_DCN3_0(2), 588 MPC_OUT_MUX_REG_LIST_DCN3_0(3), 589 MPC_RMU_GLOBAL_REG_LIST_DCN3AG, 590 MPC_RMU_REG_LIST_DCN3AG(0), 591 MPC_RMU_REG_LIST_DCN3AG(1), 592 //MPC_RMU_REG_LIST_DCN3AG(2), 593 MPC_DWB_MUX_REG_LIST_DCN3_0(0), 594 }; 595 596 static const struct dcn30_mpc_shift mpc_shift = { 597 MPC_COMMON_MASK_SH_LIST_DCN30(__SHIFT) 598 }; 599 600 static const struct dcn30_mpc_mask mpc_mask = { 601 MPC_COMMON_MASK_SH_LIST_DCN30(_MASK) 602 }; 603 604 #define optc_regs(id)\ 605 [id] = {OPTC_COMMON_REG_LIST_DCN3_1(id)} 606 607 static const struct dcn_optc_registers optc_regs[] = { 608 optc_regs(0), 609 optc_regs(1), 610 optc_regs(2), 611 optc_regs(3) 612 }; 613 614 static const struct dcn_optc_shift optc_shift = { 615 OPTC_COMMON_MASK_SH_LIST_DCN3_1(__SHIFT) 616 }; 617 618 static const struct dcn_optc_mask optc_mask = { 619 OPTC_COMMON_MASK_SH_LIST_DCN3_1(_MASK) 620 }; 621 622 #define hubp_regs(id)\ 623 [id] = {\ 624 HUBP_REG_LIST_DCN30(id)\ 625 } 626 627 static const struct dcn_hubp2_registers hubp_regs[] = { 628 hubp_regs(0), 629 hubp_regs(1), 630 hubp_regs(2), 631 hubp_regs(3) 632 }; 633 634 635 static const struct dcn_hubp2_shift hubp_shift = { 636 HUBP_MASK_SH_LIST_DCN31(__SHIFT) 637 }; 638 639 static const struct dcn_hubp2_mask hubp_mask = { 640 HUBP_MASK_SH_LIST_DCN31(_MASK) 641 }; 642 static const struct dcn_hubbub_registers hubbub_reg = { 643 HUBBUB_REG_LIST_DCN31(0) 644 }; 645 646 static const struct dcn_hubbub_shift hubbub_shift = { 647 HUBBUB_MASK_SH_LIST_DCN31(__SHIFT) 648 }; 649 650 static const struct dcn_hubbub_mask hubbub_mask = { 651 HUBBUB_MASK_SH_LIST_DCN31(_MASK) 652 }; 653 654 static const struct dccg_registers dccg_regs = { 655 DCCG_REG_LIST_DCN31() 656 }; 657 658 static const struct dccg_shift dccg_shift = { 659 DCCG_MASK_SH_LIST_DCN31(__SHIFT) 660 }; 661 662 static const struct dccg_mask dccg_mask = { 663 DCCG_MASK_SH_LIST_DCN31(_MASK) 664 }; 665 666 667 #define SRII2(reg_name_pre, reg_name_post, id)\ 668 .reg_name_pre ## _ ## reg_name_post[id] = BASE(reg ## reg_name_pre \ 669 ## id ## _ ## reg_name_post ## _BASE_IDX) + \ 670 reg ## reg_name_pre ## id ## _ ## reg_name_post 671 672 673 #define HWSEQ_DCN31_REG_LIST()\ 674 SR(DCHUBBUB_GLOBAL_TIMER_CNTL), \ 675 SR(DCHUBBUB_ARB_HOSTVM_CNTL), \ 676 SR(DIO_MEM_PWR_CTRL), \ 677 SR(ODM_MEM_PWR_CTRL3), \ 678 SR(DMU_MEM_PWR_CNTL), \ 679 SR(MMHUBBUB_MEM_PWR_CNTL), \ 680 SR(DCCG_GATE_DISABLE_CNTL), \ 681 SR(DCCG_GATE_DISABLE_CNTL2), \ 682 SR(DCFCLK_CNTL),\ 683 SR(DC_MEM_GLOBAL_PWR_REQ_CNTL), \ 684 SRII(PIXEL_RATE_CNTL, OTG, 0), \ 685 SRII(PIXEL_RATE_CNTL, OTG, 1),\ 686 SRII(PIXEL_RATE_CNTL, OTG, 2),\ 687 SRII(PIXEL_RATE_CNTL, OTG, 3),\ 688 SRII(PHYPLL_PIXEL_RATE_CNTL, OTG, 0),\ 689 SRII(PHYPLL_PIXEL_RATE_CNTL, OTG, 1),\ 690 SRII(PHYPLL_PIXEL_RATE_CNTL, OTG, 2),\ 691 SRII(PHYPLL_PIXEL_RATE_CNTL, OTG, 3),\ 692 SR(MICROSECOND_TIME_BASE_DIV), \ 693 SR(MILLISECOND_TIME_BASE_DIV), \ 694 SR(DISPCLK_FREQ_CHANGE_CNTL), \ 695 SR(RBBMIF_TIMEOUT_DIS), \ 696 SR(RBBMIF_TIMEOUT_DIS_2), \ 697 SR(DCHUBBUB_CRC_CTRL), \ 698 SR(DPP_TOP0_DPP_CRC_CTRL), \ 699 SR(DPP_TOP0_DPP_CRC_VAL_B_A), \ 700 SR(DPP_TOP0_DPP_CRC_VAL_R_G), \ 701 SR(MPC_CRC_CTRL), \ 702 SR(MPC_CRC_RESULT_GB), \ 703 SR(MPC_CRC_RESULT_C), \ 704 SR(MPC_CRC_RESULT_AR), \ 705 SR(DOMAIN0_PG_CONFIG), \ 706 SR(DOMAIN1_PG_CONFIG), \ 707 SR(DOMAIN2_PG_CONFIG), \ 708 SR(DOMAIN3_PG_CONFIG), \ 709 SR(DOMAIN16_PG_CONFIG), \ 710 SR(DOMAIN17_PG_CONFIG), \ 711 SR(DOMAIN18_PG_CONFIG), \ 712 SR(DOMAIN0_PG_STATUS), \ 713 SR(DOMAIN1_PG_STATUS), \ 714 SR(DOMAIN2_PG_STATUS), \ 715 SR(DOMAIN3_PG_STATUS), \ 716 SR(DOMAIN16_PG_STATUS), \ 717 SR(DOMAIN17_PG_STATUS), \ 718 SR(DOMAIN18_PG_STATUS), \ 719 SR(D1VGA_CONTROL), \ 720 SR(D2VGA_CONTROL), \ 721 SR(D3VGA_CONTROL), \ 722 SR(D4VGA_CONTROL), \ 723 SR(D5VGA_CONTROL), \ 724 SR(D6VGA_CONTROL), \ 725 SR(DC_IP_REQUEST_CNTL), \ 726 SR(AZALIA_AUDIO_DTO), \ 727 SR(AZALIA_CONTROLLER_CLOCK_GATING), \ 728 SR(HPO_TOP_HW_CONTROL) 729 730 static const struct dce_hwseq_registers hwseq_reg = { 731 HWSEQ_DCN31_REG_LIST() 732 }; 733 734 #define HWSEQ_DCN31_MASK_SH_LIST(mask_sh)\ 735 HWSEQ_DCN_MASK_SH_LIST(mask_sh), \ 736 HWS_SF(, DCHUBBUB_GLOBAL_TIMER_CNTL, DCHUBBUB_GLOBAL_TIMER_REFDIV, mask_sh), \ 737 HWS_SF(, DCHUBBUB_ARB_HOSTVM_CNTL, DISABLE_HOSTVM_FORCE_ALLOW_PSTATE, mask_sh), \ 738 HWS_SF(, DOMAIN0_PG_CONFIG, DOMAIN_POWER_FORCEON, mask_sh), \ 739 HWS_SF(, DOMAIN0_PG_CONFIG, DOMAIN_POWER_GATE, mask_sh), \ 740 HWS_SF(, DOMAIN1_PG_CONFIG, DOMAIN_POWER_FORCEON, mask_sh), \ 741 HWS_SF(, DOMAIN1_PG_CONFIG, DOMAIN_POWER_GATE, mask_sh), \ 742 HWS_SF(, DOMAIN2_PG_CONFIG, DOMAIN_POWER_FORCEON, mask_sh), \ 743 HWS_SF(, DOMAIN2_PG_CONFIG, DOMAIN_POWER_GATE, mask_sh), \ 744 HWS_SF(, DOMAIN3_PG_CONFIG, DOMAIN_POWER_FORCEON, mask_sh), \ 745 HWS_SF(, DOMAIN3_PG_CONFIG, DOMAIN_POWER_GATE, mask_sh), \ 746 HWS_SF(, DOMAIN16_PG_CONFIG, DOMAIN_POWER_FORCEON, mask_sh), \ 747 HWS_SF(, DOMAIN16_PG_CONFIG, DOMAIN_POWER_GATE, mask_sh), \ 748 HWS_SF(, DOMAIN17_PG_CONFIG, DOMAIN_POWER_FORCEON, mask_sh), \ 749 HWS_SF(, DOMAIN17_PG_CONFIG, DOMAIN_POWER_GATE, mask_sh), \ 750 HWS_SF(, DOMAIN18_PG_CONFIG, DOMAIN_POWER_FORCEON, mask_sh), \ 751 HWS_SF(, DOMAIN18_PG_CONFIG, DOMAIN_POWER_GATE, mask_sh), \ 752 HWS_SF(, DOMAIN0_PG_STATUS, DOMAIN_PGFSM_PWR_STATUS, mask_sh), \ 753 HWS_SF(, DOMAIN1_PG_STATUS, DOMAIN_PGFSM_PWR_STATUS, mask_sh), \ 754 HWS_SF(, DOMAIN2_PG_STATUS, DOMAIN_PGFSM_PWR_STATUS, mask_sh), \ 755 HWS_SF(, DOMAIN3_PG_STATUS, DOMAIN_PGFSM_PWR_STATUS, mask_sh), \ 756 HWS_SF(, DOMAIN16_PG_STATUS, DOMAIN_PGFSM_PWR_STATUS, mask_sh), \ 757 HWS_SF(, DOMAIN17_PG_STATUS, DOMAIN_PGFSM_PWR_STATUS, mask_sh), \ 758 HWS_SF(, DOMAIN18_PG_STATUS, DOMAIN_PGFSM_PWR_STATUS, mask_sh), \ 759 HWS_SF(, DC_IP_REQUEST_CNTL, IP_REQUEST_EN, mask_sh), \ 760 HWS_SF(, AZALIA_AUDIO_DTO, AZALIA_AUDIO_DTO_MODULE, mask_sh), \ 761 HWS_SF(, HPO_TOP_CLOCK_CONTROL, HPO_HDMISTREAMCLK_G_GATE_DIS, mask_sh), \ 762 HWS_SF(, DMU_MEM_PWR_CNTL, DMCU_ERAM_MEM_PWR_FORCE, mask_sh), \ 763 HWS_SF(, ODM_MEM_PWR_CTRL3, ODM_MEM_UNASSIGNED_PWR_MODE, mask_sh), \ 764 HWS_SF(, ODM_MEM_PWR_CTRL3, ODM_MEM_VBLANK_PWR_MODE, mask_sh), \ 765 HWS_SF(, MMHUBBUB_MEM_PWR_CNTL, VGA_MEM_PWR_FORCE, mask_sh), \ 766 HWS_SF(, DIO_MEM_PWR_CTRL, I2C_LIGHT_SLEEP_FORCE, mask_sh), \ 767 HWS_SF(, HPO_TOP_HW_CONTROL, HPO_IO_EN, mask_sh) 768 769 static const struct dce_hwseq_shift hwseq_shift = { 770 HWSEQ_DCN31_MASK_SH_LIST(__SHIFT) 771 }; 772 773 static const struct dce_hwseq_mask hwseq_mask = { 774 HWSEQ_DCN31_MASK_SH_LIST(_MASK) 775 }; 776 #define vmid_regs(id)\ 777 [id] = {\ 778 DCN20_VMID_REG_LIST(id)\ 779 } 780 781 static const struct dcn_vmid_registers vmid_regs[] = { 782 vmid_regs(0), 783 vmid_regs(1), 784 vmid_regs(2), 785 vmid_regs(3), 786 vmid_regs(4), 787 vmid_regs(5), 788 vmid_regs(6), 789 vmid_regs(7), 790 vmid_regs(8), 791 vmid_regs(9), 792 vmid_regs(10), 793 vmid_regs(11), 794 vmid_regs(12), 795 vmid_regs(13), 796 vmid_regs(14), 797 vmid_regs(15) 798 }; 799 800 static const struct dcn20_vmid_shift vmid_shifts = { 801 DCN20_VMID_MASK_SH_LIST(__SHIFT) 802 }; 803 804 static const struct dcn20_vmid_mask vmid_masks = { 805 DCN20_VMID_MASK_SH_LIST(_MASK) 806 }; 807 808 static const struct resource_caps res_cap_dcn31 = { 809 .num_timing_generator = 4, 810 .num_opp = 4, 811 .num_video_plane = 4, 812 .num_audio = 5, 813 .num_stream_encoder = 5, 814 .num_dig_link_enc = 5, 815 .num_hpo_dp_stream_encoder = 4, 816 .num_hpo_dp_link_encoder = 2, 817 .num_pll = 5, 818 .num_dwb = 1, 819 .num_ddc = 5, 820 .num_vmid = 16, 821 .num_mpc_3dlut = 2, 822 .num_dsc = 3, 823 }; 824 825 static const struct dc_plane_cap plane_cap = { 826 .type = DC_PLANE_TYPE_DCN_UNIVERSAL, 827 .blends_with_above = true, 828 .blends_with_below = true, 829 .per_pixel_alpha = true, 830 831 .pixel_format_support = { 832 .argb8888 = true, 833 .nv12 = true, 834 .fp16 = true, 835 .p010 = true, 836 .ayuv = false, 837 }, 838 839 .max_upscale_factor = { 840 .argb8888 = 16000, 841 .nv12 = 16000, 842 .fp16 = 16000 843 }, 844 845 // 6:1 downscaling ratio: 1000/6 = 166.666 846 .max_downscale_factor = { 847 .argb8888 = 167, 848 .nv12 = 167, 849 .fp16 = 167 850 }, 851 64, 852 64 853 }; 854 855 static const struct dc_debug_options debug_defaults_drv = { 856 .disable_dmcu = true, 857 .force_abm_enable = false, 858 .timing_trace = false, 859 .clock_trace = true, 860 .disable_pplib_clock_request = false, 861 .pipe_split_policy = MPC_SPLIT_DYNAMIC, 862 .force_single_disp_pipe_split = false, 863 .disable_dcc = DCC_ENABLE, 864 .vsr_support = true, 865 .performance_trace = false, 866 .max_downscale_src_width = 4096,/*upto true 4K*/ 867 .disable_pplib_wm_range = false, 868 .scl_reset_length10 = true, 869 .sanity_checks = true, 870 .underflow_assert_delay_us = 0xFFFFFFFF, 871 .dwb_fi_phase = -1, // -1 = disable, 872 .dmub_command_table = true, 873 .pstate_enabled = true, 874 .use_max_lb = true, 875 .enable_mem_low_power = { 876 .bits = { 877 .vga = true, 878 .i2c = true, 879 .dmcu = false, // This is previously known to cause hang on S3 cycles if enabled 880 .dscl = true, 881 .cm = true, 882 .mpc = true, 883 .optc = true, 884 .vpg = true, 885 .afmt = true, 886 } 887 }, 888 .disable_z10 = true, 889 .optimize_edp_link_rate = true, 890 .enable_sw_cntl_psr = true, 891 .apply_vendor_specific_lttpr_wa = true, 892 .enable_z9_disable_interface = true, /* Allow support for the PMFW interface for disable Z9*/ 893 .dml_hostvm_override = DML_HOSTVM_OVERRIDE_FALSE, 894 }; 895 896 static const struct dc_debug_options debug_defaults_diags = { 897 .disable_dmcu = true, 898 .force_abm_enable = false, 899 .timing_trace = true, 900 .clock_trace = true, 901 .disable_dpp_power_gate = true, 902 .disable_hubp_power_gate = true, 903 .disable_clock_gate = true, 904 .disable_pplib_clock_request = true, 905 .disable_pplib_wm_range = true, 906 .disable_stutter = false, 907 .scl_reset_length10 = true, 908 .dwb_fi_phase = -1, // -1 = disable 909 .dmub_command_table = true, 910 .enable_tri_buf = true, 911 .use_max_lb = true 912 }; 913 914 static void dcn31_dpp_destroy(struct dpp **dpp) 915 { 916 kfree(TO_DCN20_DPP(*dpp)); 917 *dpp = NULL; 918 } 919 920 static struct dpp *dcn31_dpp_create( 921 struct dc_context *ctx, 922 uint32_t inst) 923 { 924 struct dcn3_dpp *dpp = 925 kzalloc(sizeof(struct dcn3_dpp), GFP_KERNEL); 926 927 if (!dpp) 928 return NULL; 929 930 if (dpp3_construct(dpp, ctx, inst, 931 &dpp_regs[inst], &tf_shift, &tf_mask)) 932 return &dpp->base; 933 934 BREAK_TO_DEBUGGER(); 935 kfree(dpp); 936 return NULL; 937 } 938 939 static struct output_pixel_processor *dcn31_opp_create( 940 struct dc_context *ctx, uint32_t inst) 941 { 942 struct dcn20_opp *opp = 943 kzalloc(sizeof(struct dcn20_opp), GFP_KERNEL); 944 945 if (!opp) { 946 BREAK_TO_DEBUGGER(); 947 return NULL; 948 } 949 950 dcn20_opp_construct(opp, ctx, inst, 951 &opp_regs[inst], &opp_shift, &opp_mask); 952 return &opp->base; 953 } 954 955 static struct dce_aux *dcn31_aux_engine_create( 956 struct dc_context *ctx, 957 uint32_t inst) 958 { 959 struct aux_engine_dce110 *aux_engine = 960 kzalloc(sizeof(struct aux_engine_dce110), GFP_KERNEL); 961 962 if (!aux_engine) 963 return NULL; 964 965 dce110_aux_engine_construct(aux_engine, ctx, inst, 966 SW_AUX_TIMEOUT_PERIOD_MULTIPLIER * AUX_TIMEOUT_PERIOD, 967 &aux_engine_regs[inst], 968 &aux_mask, 969 &aux_shift, 970 ctx->dc->caps.extended_aux_timeout_support); 971 972 return &aux_engine->base; 973 } 974 #define i2c_inst_regs(id) { I2C_HW_ENGINE_COMMON_REG_LIST_DCN30(id) } 975 976 static const struct dce_i2c_registers i2c_hw_regs[] = { 977 i2c_inst_regs(1), 978 i2c_inst_regs(2), 979 i2c_inst_regs(3), 980 i2c_inst_regs(4), 981 i2c_inst_regs(5), 982 }; 983 984 static const struct dce_i2c_shift i2c_shifts = { 985 I2C_COMMON_MASK_SH_LIST_DCN30(__SHIFT) 986 }; 987 988 static const struct dce_i2c_mask i2c_masks = { 989 I2C_COMMON_MASK_SH_LIST_DCN30(_MASK) 990 }; 991 992 static struct dce_i2c_hw *dcn31_i2c_hw_create( 993 struct dc_context *ctx, 994 uint32_t inst) 995 { 996 struct dce_i2c_hw *dce_i2c_hw = 997 kzalloc(sizeof(struct dce_i2c_hw), GFP_KERNEL); 998 999 if (!dce_i2c_hw) 1000 return NULL; 1001 1002 dcn2_i2c_hw_construct(dce_i2c_hw, ctx, inst, 1003 &i2c_hw_regs[inst], &i2c_shifts, &i2c_masks); 1004 1005 return dce_i2c_hw; 1006 } 1007 static struct mpc *dcn31_mpc_create( 1008 struct dc_context *ctx, 1009 int num_mpcc, 1010 int num_rmu) 1011 { 1012 struct dcn30_mpc *mpc30 = kzalloc(sizeof(struct dcn30_mpc), 1013 GFP_KERNEL); 1014 1015 if (!mpc30) 1016 return NULL; 1017 1018 dcn30_mpc_construct(mpc30, ctx, 1019 &mpc_regs, 1020 &mpc_shift, 1021 &mpc_mask, 1022 num_mpcc, 1023 num_rmu); 1024 1025 return &mpc30->base; 1026 } 1027 1028 static struct hubbub *dcn31_hubbub_create(struct dc_context *ctx) 1029 { 1030 int i; 1031 1032 struct dcn20_hubbub *hubbub3 = kzalloc(sizeof(struct dcn20_hubbub), 1033 GFP_KERNEL); 1034 1035 if (!hubbub3) 1036 return NULL; 1037 1038 hubbub31_construct(hubbub3, ctx, 1039 &hubbub_reg, 1040 &hubbub_shift, 1041 &hubbub_mask, 1042 dcn3_1_ip.det_buffer_size_kbytes, 1043 dcn3_1_ip.pixel_chunk_size_kbytes, 1044 dcn3_1_ip.config_return_buffer_size_in_kbytes); 1045 1046 1047 for (i = 0; i < res_cap_dcn31.num_vmid; i++) { 1048 struct dcn20_vmid *vmid = &hubbub3->vmid[i]; 1049 1050 vmid->ctx = ctx; 1051 1052 vmid->regs = &vmid_regs[i]; 1053 vmid->shifts = &vmid_shifts; 1054 vmid->masks = &vmid_masks; 1055 } 1056 1057 return &hubbub3->base; 1058 } 1059 1060 static struct timing_generator *dcn31_timing_generator_create( 1061 struct dc_context *ctx, 1062 uint32_t instance) 1063 { 1064 struct optc *tgn10 = 1065 kzalloc(sizeof(struct optc), GFP_KERNEL); 1066 1067 if (!tgn10) 1068 return NULL; 1069 1070 tgn10->base.inst = instance; 1071 tgn10->base.ctx = ctx; 1072 1073 tgn10->tg_regs = &optc_regs[instance]; 1074 tgn10->tg_shift = &optc_shift; 1075 tgn10->tg_mask = &optc_mask; 1076 1077 dcn31_timing_generator_init(tgn10); 1078 1079 return &tgn10->base; 1080 } 1081 1082 static const struct encoder_feature_support link_enc_feature = { 1083 .max_hdmi_deep_color = COLOR_DEPTH_121212, 1084 .max_hdmi_pixel_clock = 600000, 1085 .hdmi_ycbcr420_supported = true, 1086 .dp_ycbcr420_supported = true, 1087 .fec_supported = true, 1088 .flags.bits.IS_HBR2_CAPABLE = true, 1089 .flags.bits.IS_HBR3_CAPABLE = true, 1090 .flags.bits.IS_TPS3_CAPABLE = true, 1091 .flags.bits.IS_TPS4_CAPABLE = true 1092 }; 1093 1094 static struct link_encoder *dcn31_link_encoder_create( 1095 const struct encoder_init_data *enc_init_data) 1096 { 1097 struct dcn20_link_encoder *enc20 = 1098 kzalloc(sizeof(struct dcn20_link_encoder), GFP_KERNEL); 1099 1100 if (!enc20) 1101 return NULL; 1102 1103 dcn31_link_encoder_construct(enc20, 1104 enc_init_data, 1105 &link_enc_feature, 1106 &link_enc_regs[enc_init_data->transmitter], 1107 &link_enc_aux_regs[enc_init_data->channel - 1], 1108 &link_enc_hpd_regs[enc_init_data->hpd_source], 1109 &le_shift, 1110 &le_mask); 1111 1112 return &enc20->enc10.base; 1113 } 1114 1115 /* Create a minimal link encoder object not associated with a particular 1116 * physical connector. 1117 * resource_funcs.link_enc_create_minimal 1118 */ 1119 static struct link_encoder *dcn31_link_enc_create_minimal( 1120 struct dc_context *ctx, enum engine_id eng_id) 1121 { 1122 struct dcn20_link_encoder *enc20; 1123 1124 if ((eng_id - ENGINE_ID_DIGA) > ctx->dc->res_pool->res_cap->num_dig_link_enc) 1125 return NULL; 1126 1127 enc20 = kzalloc(sizeof(struct dcn20_link_encoder), GFP_KERNEL); 1128 if (!enc20) 1129 return NULL; 1130 1131 dcn31_link_encoder_construct_minimal( 1132 enc20, 1133 ctx, 1134 &link_enc_feature, 1135 &link_enc_regs[eng_id - ENGINE_ID_DIGA], 1136 eng_id); 1137 1138 return &enc20->enc10.base; 1139 } 1140 1141 static struct panel_cntl *dcn31_panel_cntl_create(const struct panel_cntl_init_data *init_data) 1142 { 1143 struct dcn31_panel_cntl *panel_cntl = 1144 kzalloc(sizeof(struct dcn31_panel_cntl), GFP_KERNEL); 1145 1146 if (!panel_cntl) 1147 return NULL; 1148 1149 dcn31_panel_cntl_construct(panel_cntl, init_data); 1150 1151 return &panel_cntl->base; 1152 } 1153 1154 static void read_dce_straps( 1155 struct dc_context *ctx, 1156 struct resource_straps *straps) 1157 { 1158 generic_reg_get(ctx, regDC_PINSTRAPS + BASE(regDC_PINSTRAPS_BASE_IDX), 1159 FN(DC_PINSTRAPS, DC_PINSTRAPS_AUDIO), &straps->dc_pinstraps_audio); 1160 1161 } 1162 1163 static struct audio *dcn31_create_audio( 1164 struct dc_context *ctx, unsigned int inst) 1165 { 1166 return dce_audio_create(ctx, inst, 1167 &audio_regs[inst], &audio_shift, &audio_mask); 1168 } 1169 1170 static struct vpg *dcn31_vpg_create( 1171 struct dc_context *ctx, 1172 uint32_t inst) 1173 { 1174 struct dcn31_vpg *vpg31 = kzalloc(sizeof(struct dcn31_vpg), GFP_KERNEL); 1175 1176 if (!vpg31) 1177 return NULL; 1178 1179 vpg31_construct(vpg31, ctx, inst, 1180 &vpg_regs[inst], 1181 &vpg_shift, 1182 &vpg_mask); 1183 1184 return &vpg31->base; 1185 } 1186 1187 static struct afmt *dcn31_afmt_create( 1188 struct dc_context *ctx, 1189 uint32_t inst) 1190 { 1191 struct dcn31_afmt *afmt31 = kzalloc(sizeof(struct dcn31_afmt), GFP_KERNEL); 1192 1193 if (!afmt31) 1194 return NULL; 1195 1196 afmt31_construct(afmt31, ctx, inst, 1197 &afmt_regs[inst], 1198 &afmt_shift, 1199 &afmt_mask); 1200 1201 // Light sleep by default, no need to power down here 1202 1203 return &afmt31->base; 1204 } 1205 1206 static struct apg *dcn31_apg_create( 1207 struct dc_context *ctx, 1208 uint32_t inst) 1209 { 1210 struct dcn31_apg *apg31 = kzalloc(sizeof(struct dcn31_apg), GFP_KERNEL); 1211 1212 if (!apg31) 1213 return NULL; 1214 1215 apg31_construct(apg31, ctx, inst, 1216 &apg_regs[inst], 1217 &apg_shift, 1218 &apg_mask); 1219 1220 return &apg31->base; 1221 } 1222 1223 static struct stream_encoder *dcn31_stream_encoder_create( 1224 enum engine_id eng_id, 1225 struct dc_context *ctx) 1226 { 1227 struct dcn10_stream_encoder *enc1; 1228 struct vpg *vpg; 1229 struct afmt *afmt; 1230 int vpg_inst; 1231 int afmt_inst; 1232 1233 /* Mapping of VPG, AFMT, DME register blocks to DIO block instance */ 1234 if (eng_id <= ENGINE_ID_DIGF) { 1235 vpg_inst = eng_id; 1236 afmt_inst = eng_id; 1237 } else 1238 return NULL; 1239 1240 enc1 = kzalloc(sizeof(struct dcn10_stream_encoder), GFP_KERNEL); 1241 vpg = dcn31_vpg_create(ctx, vpg_inst); 1242 afmt = dcn31_afmt_create(ctx, afmt_inst); 1243 1244 if (!enc1 || !vpg || !afmt) { 1245 kfree(enc1); 1246 kfree(vpg); 1247 kfree(afmt); 1248 return NULL; 1249 } 1250 1251 dcn30_dio_stream_encoder_construct(enc1, ctx, ctx->dc_bios, 1252 eng_id, vpg, afmt, 1253 &stream_enc_regs[eng_id], 1254 &se_shift, &se_mask); 1255 1256 return &enc1->base; 1257 } 1258 1259 static struct hpo_dp_stream_encoder *dcn31_hpo_dp_stream_encoder_create( 1260 enum engine_id eng_id, 1261 struct dc_context *ctx) 1262 { 1263 struct dcn31_hpo_dp_stream_encoder *hpo_dp_enc31; 1264 struct vpg *vpg; 1265 struct apg *apg; 1266 uint32_t hpo_dp_inst; 1267 uint32_t vpg_inst; 1268 uint32_t apg_inst; 1269 1270 ASSERT((eng_id >= ENGINE_ID_HPO_DP_0) && (eng_id <= ENGINE_ID_HPO_DP_3)); 1271 hpo_dp_inst = eng_id - ENGINE_ID_HPO_DP_0; 1272 1273 /* Mapping of VPG register blocks to HPO DP block instance: 1274 * VPG[6] -> HPO_DP[0] 1275 * VPG[7] -> HPO_DP[1] 1276 * VPG[8] -> HPO_DP[2] 1277 * VPG[9] -> HPO_DP[3] 1278 */ 1279 vpg_inst = hpo_dp_inst + 6; 1280 1281 /* Mapping of APG register blocks to HPO DP block instance: 1282 * APG[0] -> HPO_DP[0] 1283 * APG[1] -> HPO_DP[1] 1284 * APG[2] -> HPO_DP[2] 1285 * APG[3] -> HPO_DP[3] 1286 */ 1287 apg_inst = hpo_dp_inst; 1288 1289 /* allocate HPO stream encoder and create VPG sub-block */ 1290 hpo_dp_enc31 = kzalloc(sizeof(struct dcn31_hpo_dp_stream_encoder), GFP_KERNEL); 1291 vpg = dcn31_vpg_create(ctx, vpg_inst); 1292 apg = dcn31_apg_create(ctx, apg_inst); 1293 1294 if (!hpo_dp_enc31 || !vpg || !apg) { 1295 kfree(hpo_dp_enc31); 1296 kfree(vpg); 1297 kfree(apg); 1298 return NULL; 1299 } 1300 1301 dcn31_hpo_dp_stream_encoder_construct(hpo_dp_enc31, ctx, ctx->dc_bios, 1302 hpo_dp_inst, eng_id, vpg, apg, 1303 &hpo_dp_stream_enc_regs[hpo_dp_inst], 1304 &hpo_dp_se_shift, &hpo_dp_se_mask); 1305 1306 return &hpo_dp_enc31->base; 1307 } 1308 1309 static struct hpo_dp_link_encoder *dcn31_hpo_dp_link_encoder_create( 1310 uint8_t inst, 1311 struct dc_context *ctx) 1312 { 1313 struct dcn31_hpo_dp_link_encoder *hpo_dp_enc31; 1314 1315 /* allocate HPO link encoder */ 1316 hpo_dp_enc31 = kzalloc(sizeof(struct dcn31_hpo_dp_link_encoder), GFP_KERNEL); 1317 1318 hpo_dp_link_encoder31_construct(hpo_dp_enc31, ctx, inst, 1319 &hpo_dp_link_enc_regs[inst], 1320 &hpo_dp_le_shift, &hpo_dp_le_mask); 1321 1322 return &hpo_dp_enc31->base; 1323 } 1324 1325 static struct dce_hwseq *dcn31_hwseq_create( 1326 struct dc_context *ctx) 1327 { 1328 struct dce_hwseq *hws = kzalloc(sizeof(struct dce_hwseq), GFP_KERNEL); 1329 1330 if (hws) { 1331 hws->ctx = ctx; 1332 hws->regs = &hwseq_reg; 1333 hws->shifts = &hwseq_shift; 1334 hws->masks = &hwseq_mask; 1335 /* DCN3.1 FPGA Workaround 1336 * Need to enable HPO DP Stream Encoder before setting OTG master enable. 1337 * To do so, move calling function enable_stream_timing to only be done AFTER calling 1338 * function core_link_enable_stream 1339 */ 1340 if (IS_FPGA_MAXIMUS_DC(ctx->dce_environment)) 1341 hws->wa.dp_hpo_and_otg_sequence = true; 1342 } 1343 return hws; 1344 } 1345 static const struct resource_create_funcs res_create_funcs = { 1346 .read_dce_straps = read_dce_straps, 1347 .create_audio = dcn31_create_audio, 1348 .create_stream_encoder = dcn31_stream_encoder_create, 1349 .create_hpo_dp_stream_encoder = dcn31_hpo_dp_stream_encoder_create, 1350 .create_hpo_dp_link_encoder = dcn31_hpo_dp_link_encoder_create, 1351 .create_hwseq = dcn31_hwseq_create, 1352 }; 1353 1354 static const struct resource_create_funcs res_create_maximus_funcs = { 1355 .read_dce_straps = NULL, 1356 .create_audio = NULL, 1357 .create_stream_encoder = NULL, 1358 .create_hpo_dp_stream_encoder = dcn31_hpo_dp_stream_encoder_create, 1359 .create_hpo_dp_link_encoder = dcn31_hpo_dp_link_encoder_create, 1360 .create_hwseq = dcn31_hwseq_create, 1361 }; 1362 1363 static void dcn31_resource_destruct(struct dcn31_resource_pool *pool) 1364 { 1365 unsigned int i; 1366 1367 for (i = 0; i < pool->base.stream_enc_count; i++) { 1368 if (pool->base.stream_enc[i] != NULL) { 1369 if (pool->base.stream_enc[i]->vpg != NULL) { 1370 kfree(DCN30_VPG_FROM_VPG(pool->base.stream_enc[i]->vpg)); 1371 pool->base.stream_enc[i]->vpg = NULL; 1372 } 1373 if (pool->base.stream_enc[i]->afmt != NULL) { 1374 kfree(DCN30_AFMT_FROM_AFMT(pool->base.stream_enc[i]->afmt)); 1375 pool->base.stream_enc[i]->afmt = NULL; 1376 } 1377 kfree(DCN10STRENC_FROM_STRENC(pool->base.stream_enc[i])); 1378 pool->base.stream_enc[i] = NULL; 1379 } 1380 } 1381 1382 for (i = 0; i < pool->base.hpo_dp_stream_enc_count; i++) { 1383 if (pool->base.hpo_dp_stream_enc[i] != NULL) { 1384 if (pool->base.hpo_dp_stream_enc[i]->vpg != NULL) { 1385 kfree(DCN30_VPG_FROM_VPG(pool->base.hpo_dp_stream_enc[i]->vpg)); 1386 pool->base.hpo_dp_stream_enc[i]->vpg = NULL; 1387 } 1388 if (pool->base.hpo_dp_stream_enc[i]->apg != NULL) { 1389 kfree(DCN31_APG_FROM_APG(pool->base.hpo_dp_stream_enc[i]->apg)); 1390 pool->base.hpo_dp_stream_enc[i]->apg = NULL; 1391 } 1392 kfree(DCN3_1_HPO_DP_STREAM_ENC_FROM_HPO_STREAM_ENC(pool->base.hpo_dp_stream_enc[i])); 1393 pool->base.hpo_dp_stream_enc[i] = NULL; 1394 } 1395 } 1396 1397 for (i = 0; i < pool->base.hpo_dp_link_enc_count; i++) { 1398 if (pool->base.hpo_dp_link_enc[i] != NULL) { 1399 kfree(DCN3_1_HPO_DP_LINK_ENC_FROM_HPO_LINK_ENC(pool->base.hpo_dp_link_enc[i])); 1400 pool->base.hpo_dp_link_enc[i] = NULL; 1401 } 1402 } 1403 1404 for (i = 0; i < pool->base.res_cap->num_dsc; i++) { 1405 if (pool->base.dscs[i] != NULL) 1406 dcn20_dsc_destroy(&pool->base.dscs[i]); 1407 } 1408 1409 if (pool->base.mpc != NULL) { 1410 kfree(TO_DCN20_MPC(pool->base.mpc)); 1411 pool->base.mpc = NULL; 1412 } 1413 if (pool->base.hubbub != NULL) { 1414 kfree(pool->base.hubbub); 1415 pool->base.hubbub = NULL; 1416 } 1417 for (i = 0; i < pool->base.pipe_count; i++) { 1418 if (pool->base.dpps[i] != NULL) 1419 dcn31_dpp_destroy(&pool->base.dpps[i]); 1420 1421 if (pool->base.ipps[i] != NULL) 1422 pool->base.ipps[i]->funcs->ipp_destroy(&pool->base.ipps[i]); 1423 1424 if (pool->base.hubps[i] != NULL) { 1425 kfree(TO_DCN20_HUBP(pool->base.hubps[i])); 1426 pool->base.hubps[i] = NULL; 1427 } 1428 1429 if (pool->base.irqs != NULL) { 1430 dal_irq_service_destroy(&pool->base.irqs); 1431 } 1432 } 1433 1434 for (i = 0; i < pool->base.res_cap->num_ddc; i++) { 1435 if (pool->base.engines[i] != NULL) 1436 dce110_engine_destroy(&pool->base.engines[i]); 1437 if (pool->base.hw_i2cs[i] != NULL) { 1438 kfree(pool->base.hw_i2cs[i]); 1439 pool->base.hw_i2cs[i] = NULL; 1440 } 1441 if (pool->base.sw_i2cs[i] != NULL) { 1442 kfree(pool->base.sw_i2cs[i]); 1443 pool->base.sw_i2cs[i] = NULL; 1444 } 1445 } 1446 1447 for (i = 0; i < pool->base.res_cap->num_opp; i++) { 1448 if (pool->base.opps[i] != NULL) 1449 pool->base.opps[i]->funcs->opp_destroy(&pool->base.opps[i]); 1450 } 1451 1452 for (i = 0; i < pool->base.res_cap->num_timing_generator; i++) { 1453 if (pool->base.timing_generators[i] != NULL) { 1454 kfree(DCN10TG_FROM_TG(pool->base.timing_generators[i])); 1455 pool->base.timing_generators[i] = NULL; 1456 } 1457 } 1458 1459 for (i = 0; i < pool->base.res_cap->num_dwb; i++) { 1460 if (pool->base.dwbc[i] != NULL) { 1461 kfree(TO_DCN30_DWBC(pool->base.dwbc[i])); 1462 pool->base.dwbc[i] = NULL; 1463 } 1464 if (pool->base.mcif_wb[i] != NULL) { 1465 kfree(TO_DCN30_MMHUBBUB(pool->base.mcif_wb[i])); 1466 pool->base.mcif_wb[i] = NULL; 1467 } 1468 } 1469 1470 for (i = 0; i < pool->base.audio_count; i++) { 1471 if (pool->base.audios[i]) 1472 dce_aud_destroy(&pool->base.audios[i]); 1473 } 1474 1475 for (i = 0; i < pool->base.clk_src_count; i++) { 1476 if (pool->base.clock_sources[i] != NULL) { 1477 dcn20_clock_source_destroy(&pool->base.clock_sources[i]); 1478 pool->base.clock_sources[i] = NULL; 1479 } 1480 } 1481 1482 for (i = 0; i < pool->base.res_cap->num_mpc_3dlut; i++) { 1483 if (pool->base.mpc_lut[i] != NULL) { 1484 dc_3dlut_func_release(pool->base.mpc_lut[i]); 1485 pool->base.mpc_lut[i] = NULL; 1486 } 1487 if (pool->base.mpc_shaper[i] != NULL) { 1488 dc_transfer_func_release(pool->base.mpc_shaper[i]); 1489 pool->base.mpc_shaper[i] = NULL; 1490 } 1491 } 1492 1493 if (pool->base.dp_clock_source != NULL) { 1494 dcn20_clock_source_destroy(&pool->base.dp_clock_source); 1495 pool->base.dp_clock_source = NULL; 1496 } 1497 1498 for (i = 0; i < pool->base.res_cap->num_timing_generator; i++) { 1499 if (pool->base.multiple_abms[i] != NULL) 1500 dce_abm_destroy(&pool->base.multiple_abms[i]); 1501 } 1502 1503 if (pool->base.psr != NULL) 1504 dmub_psr_destroy(&pool->base.psr); 1505 1506 if (pool->base.dccg != NULL) 1507 dcn_dccg_destroy(&pool->base.dccg); 1508 } 1509 1510 static struct hubp *dcn31_hubp_create( 1511 struct dc_context *ctx, 1512 uint32_t inst) 1513 { 1514 struct dcn20_hubp *hubp2 = 1515 kzalloc(sizeof(struct dcn20_hubp), GFP_KERNEL); 1516 1517 if (!hubp2) 1518 return NULL; 1519 1520 if (hubp31_construct(hubp2, ctx, inst, 1521 &hubp_regs[inst], &hubp_shift, &hubp_mask)) 1522 return &hubp2->base; 1523 1524 BREAK_TO_DEBUGGER(); 1525 kfree(hubp2); 1526 return NULL; 1527 } 1528 1529 static bool dcn31_dwbc_create(struct dc_context *ctx, struct resource_pool *pool) 1530 { 1531 int i; 1532 uint32_t pipe_count = pool->res_cap->num_dwb; 1533 1534 for (i = 0; i < pipe_count; i++) { 1535 struct dcn30_dwbc *dwbc30 = kzalloc(sizeof(struct dcn30_dwbc), 1536 GFP_KERNEL); 1537 1538 if (!dwbc30) { 1539 dm_error("DC: failed to create dwbc30!\n"); 1540 return false; 1541 } 1542 1543 dcn30_dwbc_construct(dwbc30, ctx, 1544 &dwbc30_regs[i], 1545 &dwbc30_shift, 1546 &dwbc30_mask, 1547 i); 1548 1549 pool->dwbc[i] = &dwbc30->base; 1550 } 1551 return true; 1552 } 1553 1554 static bool dcn31_mmhubbub_create(struct dc_context *ctx, struct resource_pool *pool) 1555 { 1556 int i; 1557 uint32_t pipe_count = pool->res_cap->num_dwb; 1558 1559 for (i = 0; i < pipe_count; i++) { 1560 struct dcn30_mmhubbub *mcif_wb30 = kzalloc(sizeof(struct dcn30_mmhubbub), 1561 GFP_KERNEL); 1562 1563 if (!mcif_wb30) { 1564 dm_error("DC: failed to create mcif_wb30!\n"); 1565 return false; 1566 } 1567 1568 dcn30_mmhubbub_construct(mcif_wb30, ctx, 1569 &mcif_wb30_regs[i], 1570 &mcif_wb30_shift, 1571 &mcif_wb30_mask, 1572 i); 1573 1574 pool->mcif_wb[i] = &mcif_wb30->base; 1575 } 1576 return true; 1577 } 1578 1579 static struct display_stream_compressor *dcn31_dsc_create( 1580 struct dc_context *ctx, uint32_t inst) 1581 { 1582 struct dcn20_dsc *dsc = 1583 kzalloc(sizeof(struct dcn20_dsc), GFP_KERNEL); 1584 1585 if (!dsc) { 1586 BREAK_TO_DEBUGGER(); 1587 return NULL; 1588 } 1589 1590 dsc2_construct(dsc, ctx, inst, &dsc_regs[inst], &dsc_shift, &dsc_mask); 1591 return &dsc->base; 1592 } 1593 1594 static void dcn31_destroy_resource_pool(struct resource_pool **pool) 1595 { 1596 struct dcn31_resource_pool *dcn31_pool = TO_DCN31_RES_POOL(*pool); 1597 1598 dcn31_resource_destruct(dcn31_pool); 1599 kfree(dcn31_pool); 1600 *pool = NULL; 1601 } 1602 1603 static struct clock_source *dcn31_clock_source_create( 1604 struct dc_context *ctx, 1605 struct dc_bios *bios, 1606 enum clock_source_id id, 1607 const struct dce110_clk_src_regs *regs, 1608 bool dp_clk_src) 1609 { 1610 struct dce110_clk_src *clk_src = 1611 kzalloc(sizeof(struct dce110_clk_src), GFP_KERNEL); 1612 1613 if (!clk_src) 1614 return NULL; 1615 1616 if (dcn3_clk_src_construct(clk_src, ctx, bios, id, 1617 regs, &cs_shift, &cs_mask)) { 1618 clk_src->base.dp_clk_src = dp_clk_src; 1619 return &clk_src->base; 1620 } 1621 1622 BREAK_TO_DEBUGGER(); 1623 return NULL; 1624 } 1625 1626 static bool is_dual_plane(enum surface_pixel_format format) 1627 { 1628 return format >= SURFACE_PIXEL_FORMAT_VIDEO_BEGIN || format == SURFACE_PIXEL_FORMAT_GRPH_RGBE_ALPHA; 1629 } 1630 1631 int dcn31_populate_dml_pipes_from_context( 1632 struct dc *dc, struct dc_state *context, 1633 display_e2e_pipe_params_st *pipes, 1634 bool fast_validate) 1635 { 1636 int i, pipe_cnt; 1637 struct resource_context *res_ctx = &context->res_ctx; 1638 struct pipe_ctx *pipe; 1639 bool upscaled = false; 1640 1641 DC_FP_START(); 1642 dcn20_populate_dml_pipes_from_context(dc, context, pipes, fast_validate); 1643 DC_FP_END(); 1644 1645 for (i = 0, pipe_cnt = 0; i < dc->res_pool->pipe_count; i++) { 1646 struct dc_crtc_timing *timing; 1647 1648 if (!res_ctx->pipe_ctx[i].stream) 1649 continue; 1650 pipe = &res_ctx->pipe_ctx[i]; 1651 timing = &pipe->stream->timing; 1652 1653 if (pipe->plane_state && 1654 (pipe->plane_state->src_rect.height < pipe->plane_state->dst_rect.height || 1655 pipe->plane_state->src_rect.width < pipe->plane_state->dst_rect.width)) 1656 upscaled = true; 1657 1658 /* 1659 * Immediate flip can be set dynamically after enabling the plane. 1660 * We need to require support for immediate flip or underflow can be 1661 * intermittently experienced depending on peak b/w requirements. 1662 */ 1663 pipes[pipe_cnt].pipe.src.immediate_flip = true; 1664 pipes[pipe_cnt].pipe.src.unbounded_req_mode = false; 1665 pipes[pipe_cnt].pipe.src.gpuvm = true; 1666 pipes[pipe_cnt].pipe.src.dcc_fraction_of_zs_req_luma = 0; 1667 pipes[pipe_cnt].pipe.src.dcc_fraction_of_zs_req_chroma = 0; 1668 pipes[pipe_cnt].pipe.dest.vfront_porch = timing->v_front_porch; 1669 pipes[pipe_cnt].pipe.src.dcc_rate = 3; 1670 pipes[pipe_cnt].dout.dsc_input_bpc = 0; 1671 1672 if (dc->debug.dml_hostvm_override == DML_HOSTVM_NO_OVERRIDE) 1673 pipes[pipe_cnt].pipe.src.hostvm = dc->res_pool->hubbub->riommu_active; 1674 else if (dc->debug.dml_hostvm_override == DML_HOSTVM_OVERRIDE_FALSE) 1675 pipes[pipe_cnt].pipe.src.hostvm = false; 1676 else if (dc->debug.dml_hostvm_override == DML_HOSTVM_OVERRIDE_TRUE) 1677 pipes[pipe_cnt].pipe.src.hostvm = true; 1678 1679 if (pipes[pipe_cnt].dout.dsc_enable) { 1680 switch (timing->display_color_depth) { 1681 case COLOR_DEPTH_888: 1682 pipes[pipe_cnt].dout.dsc_input_bpc = 8; 1683 break; 1684 case COLOR_DEPTH_101010: 1685 pipes[pipe_cnt].dout.dsc_input_bpc = 10; 1686 break; 1687 case COLOR_DEPTH_121212: 1688 pipes[pipe_cnt].dout.dsc_input_bpc = 12; 1689 break; 1690 default: 1691 ASSERT(0); 1692 break; 1693 } 1694 } 1695 1696 pipe_cnt++; 1697 } 1698 context->bw_ctx.dml.ip.det_buffer_size_kbytes = DCN3_1_DEFAULT_DET_SIZE; 1699 dc->config.enable_4to1MPC = false; 1700 if (pipe_cnt == 1 && pipe->plane_state && !dc->debug.disable_z9_mpc) { 1701 if (is_dual_plane(pipe->plane_state->format) 1702 && pipe->plane_state->src_rect.width <= 1920 && pipe->plane_state->src_rect.height <= 1080) { 1703 dc->config.enable_4to1MPC = true; 1704 } else if (!is_dual_plane(pipe->plane_state->format) && pipe->plane_state->src_rect.width <= 5120) { 1705 /* Limit to 5k max to avoid forced pipe split when there is not enough detile for swath */ 1706 context->bw_ctx.dml.ip.det_buffer_size_kbytes = 192; 1707 pipes[0].pipe.src.unbounded_req_mode = true; 1708 } 1709 } else if (context->stream_count >= dc->debug.crb_alloc_policy_min_disp_count 1710 && dc->debug.crb_alloc_policy > DET_SIZE_DEFAULT) { 1711 context->bw_ctx.dml.ip.det_buffer_size_kbytes = dc->debug.crb_alloc_policy * 64; 1712 } else if (context->stream_count >= 3 && upscaled) { 1713 context->bw_ctx.dml.ip.det_buffer_size_kbytes = 192; 1714 } 1715 1716 return pipe_cnt; 1717 } 1718 1719 void dcn31_update_soc_for_wm_a(struct dc *dc, struct dc_state *context) 1720 { 1721 if (dc->clk_mgr->bw_params->wm_table.entries[WM_A].valid) { 1722 context->bw_ctx.dml.soc.dram_clock_change_latency_us = dc->clk_mgr->bw_params->wm_table.entries[WM_A].pstate_latency_us; 1723 context->bw_ctx.dml.soc.sr_enter_plus_exit_time_us = dc->clk_mgr->bw_params->wm_table.entries[WM_A].sr_enter_plus_exit_time_us; 1724 context->bw_ctx.dml.soc.sr_exit_time_us = dc->clk_mgr->bw_params->wm_table.entries[WM_A].sr_exit_time_us; 1725 } 1726 } 1727 1728 void dcn31_calculate_wm_and_dlg( 1729 struct dc *dc, struct dc_state *context, 1730 display_e2e_pipe_params_st *pipes, 1731 int pipe_cnt, 1732 int vlevel) 1733 { 1734 DC_FP_START(); 1735 dcn31_calculate_wm_and_dlg_fp(dc, context, pipes, pipe_cnt, vlevel); 1736 DC_FP_END(); 1737 } 1738 1739 void 1740 dcn31_populate_dml_writeback_from_context(struct dc *dc, 1741 struct resource_context *res_ctx, 1742 display_e2e_pipe_params_st *pipes) 1743 { 1744 DC_FP_START(); 1745 dcn30_populate_dml_writeback_from_context(dc, res_ctx, pipes); 1746 DC_FP_END(); 1747 } 1748 1749 void 1750 dcn31_set_mcif_arb_params(struct dc *dc, 1751 struct dc_state *context, 1752 display_e2e_pipe_params_st *pipes, 1753 int pipe_cnt) 1754 { 1755 DC_FP_START(); 1756 dcn30_set_mcif_arb_params(dc, context, pipes, pipe_cnt); 1757 DC_FP_END(); 1758 } 1759 1760 bool dcn31_validate_bandwidth(struct dc *dc, 1761 struct dc_state *context, 1762 bool fast_validate) 1763 { 1764 bool out = false; 1765 1766 BW_VAL_TRACE_SETUP(); 1767 1768 int vlevel = 0; 1769 int pipe_cnt = 0; 1770 display_e2e_pipe_params_st *pipes = kzalloc(dc->res_pool->pipe_count * sizeof(display_e2e_pipe_params_st), GFP_KERNEL); 1771 DC_LOGGER_INIT(dc->ctx->logger); 1772 1773 BW_VAL_TRACE_COUNT(); 1774 1775 DC_FP_START(); 1776 out = dcn30_internal_validate_bw(dc, context, pipes, &pipe_cnt, &vlevel, fast_validate); 1777 DC_FP_END(); 1778 1779 // Disable fast_validate to set min dcfclk in alculate_wm_and_dlg 1780 if (pipe_cnt == 0) 1781 fast_validate = false; 1782 1783 if (!out) 1784 goto validate_fail; 1785 1786 BW_VAL_TRACE_END_VOLTAGE_LEVEL(); 1787 1788 if (fast_validate) { 1789 BW_VAL_TRACE_SKIP(fast); 1790 goto validate_out; 1791 } 1792 1793 dc->res_pool->funcs->calculate_wm_and_dlg(dc, context, pipes, pipe_cnt, vlevel); 1794 1795 BW_VAL_TRACE_END_WATERMARKS(); 1796 1797 goto validate_out; 1798 1799 validate_fail: 1800 DC_LOG_WARNING("Mode Validation Warning: %s failed validation.\n", 1801 dml_get_status_message(context->bw_ctx.dml.vba.ValidationStatus[context->bw_ctx.dml.vba.soc.num_states])); 1802 1803 BW_VAL_TRACE_SKIP(fail); 1804 out = false; 1805 1806 validate_out: 1807 kfree(pipes); 1808 1809 BW_VAL_TRACE_FINISH(); 1810 1811 return out; 1812 } 1813 1814 static struct dc_cap_funcs cap_funcs = { 1815 .get_dcc_compression_cap = dcn20_get_dcc_compression_cap 1816 }; 1817 1818 static struct resource_funcs dcn31_res_pool_funcs = { 1819 .destroy = dcn31_destroy_resource_pool, 1820 .link_enc_create = dcn31_link_encoder_create, 1821 .link_enc_create_minimal = dcn31_link_enc_create_minimal, 1822 .link_encs_assign = link_enc_cfg_link_encs_assign, 1823 .link_enc_unassign = link_enc_cfg_link_enc_unassign, 1824 .panel_cntl_create = dcn31_panel_cntl_create, 1825 .validate_bandwidth = dcn31_validate_bandwidth, 1826 .calculate_wm_and_dlg = dcn31_calculate_wm_and_dlg, 1827 .update_soc_for_wm_a = dcn31_update_soc_for_wm_a, 1828 .populate_dml_pipes = dcn31_populate_dml_pipes_from_context, 1829 .acquire_idle_pipe_for_layer = dcn20_acquire_idle_pipe_for_layer, 1830 .add_stream_to_ctx = dcn30_add_stream_to_ctx, 1831 .add_dsc_to_stream_resource = dcn20_add_dsc_to_stream_resource, 1832 .remove_stream_from_ctx = dcn20_remove_stream_from_ctx, 1833 .populate_dml_writeback_from_context = dcn31_populate_dml_writeback_from_context, 1834 .set_mcif_arb_params = dcn31_set_mcif_arb_params, 1835 .find_first_free_match_stream_enc_for_link = dcn10_find_first_free_match_stream_enc_for_link, 1836 .acquire_post_bldn_3dlut = dcn30_acquire_post_bldn_3dlut, 1837 .release_post_bldn_3dlut = dcn30_release_post_bldn_3dlut, 1838 .update_bw_bounding_box = dcn31_update_bw_bounding_box, 1839 .patch_unknown_plane_state = dcn20_patch_unknown_plane_state, 1840 }; 1841 1842 static struct clock_source *dcn30_clock_source_create( 1843 struct dc_context *ctx, 1844 struct dc_bios *bios, 1845 enum clock_source_id id, 1846 const struct dce110_clk_src_regs *regs, 1847 bool dp_clk_src) 1848 { 1849 struct dce110_clk_src *clk_src = 1850 kzalloc(sizeof(struct dce110_clk_src), GFP_KERNEL); 1851 1852 if (!clk_src) 1853 return NULL; 1854 1855 if (dcn31_clk_src_construct(clk_src, ctx, bios, id, 1856 regs, &cs_shift, &cs_mask)) { 1857 clk_src->base.dp_clk_src = dp_clk_src; 1858 return &clk_src->base; 1859 } 1860 1861 BREAK_TO_DEBUGGER(); 1862 return NULL; 1863 } 1864 1865 static bool dcn31_resource_construct( 1866 uint8_t num_virtual_links, 1867 struct dc *dc, 1868 struct dcn31_resource_pool *pool) 1869 { 1870 int i; 1871 struct dc_context *ctx = dc->ctx; 1872 struct irq_service_init_data init_data; 1873 1874 DC_FP_START(); 1875 1876 ctx->dc_bios->regs = &bios_regs; 1877 1878 pool->base.res_cap = &res_cap_dcn31; 1879 1880 pool->base.funcs = &dcn31_res_pool_funcs; 1881 1882 /************************************************* 1883 * Resource + asic cap harcoding * 1884 *************************************************/ 1885 pool->base.underlay_pipe_index = NO_UNDERLAY_PIPE; 1886 pool->base.pipe_count = pool->base.res_cap->num_timing_generator; 1887 pool->base.mpcc_count = pool->base.res_cap->num_timing_generator; 1888 dc->caps.max_downscale_ratio = 600; 1889 dc->caps.i2c_speed_in_khz = 100; 1890 dc->caps.i2c_speed_in_khz_hdcp = 5; /*1.4 w/a applied by default*/ 1891 dc->caps.max_cursor_size = 256; 1892 dc->caps.min_horizontal_blanking_period = 80; 1893 dc->caps.dmdata_alloc_size = 2048; 1894 1895 dc->caps.max_slave_planes = 2; 1896 dc->caps.max_slave_yuv_planes = 2; 1897 dc->caps.max_slave_rgb_planes = 2; 1898 dc->caps.post_blend_color_processing = true; 1899 dc->caps.force_dp_tps4_for_cp2520 = true; 1900 dc->caps.dp_hpo = true; 1901 dc->caps.hdmi_frl_pcon_support = true; 1902 dc->caps.edp_dsc_support = true; 1903 dc->caps.extended_aux_timeout_support = true; 1904 dc->caps.dmcub_support = true; 1905 dc->caps.is_apu = true; 1906 dc->caps.zstate_support = true; 1907 1908 /* Color pipeline capabilities */ 1909 dc->caps.color.dpp.dcn_arch = 1; 1910 dc->caps.color.dpp.input_lut_shared = 0; 1911 dc->caps.color.dpp.icsc = 1; 1912 dc->caps.color.dpp.dgam_ram = 0; // must use gamma_corr 1913 dc->caps.color.dpp.dgam_rom_caps.srgb = 1; 1914 dc->caps.color.dpp.dgam_rom_caps.bt2020 = 1; 1915 dc->caps.color.dpp.dgam_rom_caps.gamma2_2 = 1; 1916 dc->caps.color.dpp.dgam_rom_caps.pq = 1; 1917 dc->caps.color.dpp.dgam_rom_caps.hlg = 1; 1918 dc->caps.color.dpp.post_csc = 1; 1919 dc->caps.color.dpp.gamma_corr = 1; 1920 dc->caps.color.dpp.dgam_rom_for_yuv = 0; 1921 1922 dc->caps.color.dpp.hw_3d_lut = 1; 1923 dc->caps.color.dpp.ogam_ram = 1; 1924 // no OGAM ROM on DCN301 1925 dc->caps.color.dpp.ogam_rom_caps.srgb = 0; 1926 dc->caps.color.dpp.ogam_rom_caps.bt2020 = 0; 1927 dc->caps.color.dpp.ogam_rom_caps.gamma2_2 = 0; 1928 dc->caps.color.dpp.ogam_rom_caps.pq = 0; 1929 dc->caps.color.dpp.ogam_rom_caps.hlg = 0; 1930 dc->caps.color.dpp.ocsc = 0; 1931 1932 dc->caps.color.mpc.gamut_remap = 1; 1933 dc->caps.color.mpc.num_3dluts = pool->base.res_cap->num_mpc_3dlut; //2 1934 dc->caps.color.mpc.ogam_ram = 1; 1935 dc->caps.color.mpc.ogam_rom_caps.srgb = 0; 1936 dc->caps.color.mpc.ogam_rom_caps.bt2020 = 0; 1937 dc->caps.color.mpc.ogam_rom_caps.gamma2_2 = 0; 1938 dc->caps.color.mpc.ogam_rom_caps.pq = 0; 1939 dc->caps.color.mpc.ogam_rom_caps.hlg = 0; 1940 dc->caps.color.mpc.ocsc = 1; 1941 1942 /* Use pipe context based otg sync logic */ 1943 dc->config.use_pipe_ctx_sync_logic = true; 1944 1945 /* read VBIOS LTTPR caps */ 1946 { 1947 if (ctx->dc_bios->funcs->get_lttpr_caps) { 1948 enum bp_result bp_query_result; 1949 uint8_t is_vbios_lttpr_enable = 0; 1950 1951 bp_query_result = ctx->dc_bios->funcs->get_lttpr_caps(ctx->dc_bios, &is_vbios_lttpr_enable); 1952 dc->caps.vbios_lttpr_enable = (bp_query_result == BP_RESULT_OK) && !!is_vbios_lttpr_enable; 1953 } 1954 1955 /* interop bit is implicit */ 1956 { 1957 dc->caps.vbios_lttpr_aware = true; 1958 } 1959 } 1960 1961 if (dc->ctx->dce_environment == DCE_ENV_PRODUCTION_DRV) 1962 dc->debug = debug_defaults_drv; 1963 else if (dc->ctx->dce_environment == DCE_ENV_FPGA_MAXIMUS) { 1964 dc->debug = debug_defaults_diags; 1965 } else 1966 dc->debug = debug_defaults_diags; 1967 // Init the vm_helper 1968 if (dc->vm_helper) 1969 vm_helper_init(dc->vm_helper, 16); 1970 1971 /************************************************* 1972 * Create resources * 1973 *************************************************/ 1974 1975 /* Clock Sources for Pixel Clock*/ 1976 pool->base.clock_sources[DCN31_CLK_SRC_PLL0] = 1977 dcn30_clock_source_create(ctx, ctx->dc_bios, 1978 CLOCK_SOURCE_COMBO_PHY_PLL0, 1979 &clk_src_regs[0], false); 1980 pool->base.clock_sources[DCN31_CLK_SRC_PLL1] = 1981 dcn30_clock_source_create(ctx, ctx->dc_bios, 1982 CLOCK_SOURCE_COMBO_PHY_PLL1, 1983 &clk_src_regs[1], false); 1984 /*move phypllx_pixclk_resync to dmub next*/ 1985 if (dc->ctx->asic_id.hw_internal_rev == YELLOW_CARP_B0) { 1986 pool->base.clock_sources[DCN31_CLK_SRC_PLL2] = 1987 dcn30_clock_source_create(ctx, ctx->dc_bios, 1988 CLOCK_SOURCE_COMBO_PHY_PLL2, 1989 &clk_src_regs_b0[2], false); 1990 pool->base.clock_sources[DCN31_CLK_SRC_PLL3] = 1991 dcn30_clock_source_create(ctx, ctx->dc_bios, 1992 CLOCK_SOURCE_COMBO_PHY_PLL3, 1993 &clk_src_regs_b0[3], false); 1994 } else { 1995 pool->base.clock_sources[DCN31_CLK_SRC_PLL2] = 1996 dcn30_clock_source_create(ctx, ctx->dc_bios, 1997 CLOCK_SOURCE_COMBO_PHY_PLL2, 1998 &clk_src_regs[2], false); 1999 pool->base.clock_sources[DCN31_CLK_SRC_PLL3] = 2000 dcn30_clock_source_create(ctx, ctx->dc_bios, 2001 CLOCK_SOURCE_COMBO_PHY_PLL3, 2002 &clk_src_regs[3], false); 2003 } 2004 2005 pool->base.clock_sources[DCN31_CLK_SRC_PLL4] = 2006 dcn30_clock_source_create(ctx, ctx->dc_bios, 2007 CLOCK_SOURCE_COMBO_PHY_PLL4, 2008 &clk_src_regs[4], false); 2009 2010 pool->base.clk_src_count = DCN30_CLK_SRC_TOTAL; 2011 2012 /* todo: not reuse phy_pll registers */ 2013 pool->base.dp_clock_source = 2014 dcn31_clock_source_create(ctx, ctx->dc_bios, 2015 CLOCK_SOURCE_ID_DP_DTO, 2016 &clk_src_regs[0], true); 2017 2018 for (i = 0; i < pool->base.clk_src_count; i++) { 2019 if (pool->base.clock_sources[i] == NULL) { 2020 dm_error("DC: failed to create clock sources!\n"); 2021 BREAK_TO_DEBUGGER(); 2022 goto create_fail; 2023 } 2024 } 2025 2026 /* TODO: DCCG */ 2027 pool->base.dccg = dccg31_create(ctx, &dccg_regs, &dccg_shift, &dccg_mask); 2028 if (pool->base.dccg == NULL) { 2029 dm_error("DC: failed to create dccg!\n"); 2030 BREAK_TO_DEBUGGER(); 2031 goto create_fail; 2032 } 2033 2034 /* TODO: IRQ */ 2035 init_data.ctx = dc->ctx; 2036 pool->base.irqs = dal_irq_service_dcn31_create(&init_data); 2037 if (!pool->base.irqs) 2038 goto create_fail; 2039 2040 /* HUBBUB */ 2041 pool->base.hubbub = dcn31_hubbub_create(ctx); 2042 if (pool->base.hubbub == NULL) { 2043 BREAK_TO_DEBUGGER(); 2044 dm_error("DC: failed to create hubbub!\n"); 2045 goto create_fail; 2046 } 2047 2048 /* HUBPs, DPPs, OPPs and TGs */ 2049 for (i = 0; i < pool->base.pipe_count; i++) { 2050 pool->base.hubps[i] = dcn31_hubp_create(ctx, i); 2051 if (pool->base.hubps[i] == NULL) { 2052 BREAK_TO_DEBUGGER(); 2053 dm_error( 2054 "DC: failed to create hubps!\n"); 2055 goto create_fail; 2056 } 2057 2058 pool->base.dpps[i] = dcn31_dpp_create(ctx, i); 2059 if (pool->base.dpps[i] == NULL) { 2060 BREAK_TO_DEBUGGER(); 2061 dm_error( 2062 "DC: failed to create dpps!\n"); 2063 goto create_fail; 2064 } 2065 } 2066 2067 for (i = 0; i < pool->base.res_cap->num_opp; i++) { 2068 pool->base.opps[i] = dcn31_opp_create(ctx, i); 2069 if (pool->base.opps[i] == NULL) { 2070 BREAK_TO_DEBUGGER(); 2071 dm_error( 2072 "DC: failed to create output pixel processor!\n"); 2073 goto create_fail; 2074 } 2075 } 2076 2077 for (i = 0; i < pool->base.res_cap->num_timing_generator; i++) { 2078 pool->base.timing_generators[i] = dcn31_timing_generator_create( 2079 ctx, i); 2080 if (pool->base.timing_generators[i] == NULL) { 2081 BREAK_TO_DEBUGGER(); 2082 dm_error("DC: failed to create tg!\n"); 2083 goto create_fail; 2084 } 2085 } 2086 pool->base.timing_generator_count = i; 2087 2088 /* PSR */ 2089 pool->base.psr = dmub_psr_create(ctx); 2090 if (pool->base.psr == NULL) { 2091 dm_error("DC: failed to create psr obj!\n"); 2092 BREAK_TO_DEBUGGER(); 2093 goto create_fail; 2094 } 2095 2096 /* ABM */ 2097 for (i = 0; i < pool->base.res_cap->num_timing_generator; i++) { 2098 pool->base.multiple_abms[i] = dmub_abm_create(ctx, 2099 &abm_regs[i], 2100 &abm_shift, 2101 &abm_mask); 2102 if (pool->base.multiple_abms[i] == NULL) { 2103 dm_error("DC: failed to create abm for pipe %d!\n", i); 2104 BREAK_TO_DEBUGGER(); 2105 goto create_fail; 2106 } 2107 } 2108 2109 /* MPC and DSC */ 2110 pool->base.mpc = dcn31_mpc_create(ctx, pool->base.mpcc_count, pool->base.res_cap->num_mpc_3dlut); 2111 if (pool->base.mpc == NULL) { 2112 BREAK_TO_DEBUGGER(); 2113 dm_error("DC: failed to create mpc!\n"); 2114 goto create_fail; 2115 } 2116 2117 for (i = 0; i < pool->base.res_cap->num_dsc; i++) { 2118 pool->base.dscs[i] = dcn31_dsc_create(ctx, i); 2119 if (pool->base.dscs[i] == NULL) { 2120 BREAK_TO_DEBUGGER(); 2121 dm_error("DC: failed to create display stream compressor %d!\n", i); 2122 goto create_fail; 2123 } 2124 } 2125 2126 /* DWB and MMHUBBUB */ 2127 if (!dcn31_dwbc_create(ctx, &pool->base)) { 2128 BREAK_TO_DEBUGGER(); 2129 dm_error("DC: failed to create dwbc!\n"); 2130 goto create_fail; 2131 } 2132 2133 if (!dcn31_mmhubbub_create(ctx, &pool->base)) { 2134 BREAK_TO_DEBUGGER(); 2135 dm_error("DC: failed to create mcif_wb!\n"); 2136 goto create_fail; 2137 } 2138 2139 /* AUX and I2C */ 2140 for (i = 0; i < pool->base.res_cap->num_ddc; i++) { 2141 pool->base.engines[i] = dcn31_aux_engine_create(ctx, i); 2142 if (pool->base.engines[i] == NULL) { 2143 BREAK_TO_DEBUGGER(); 2144 dm_error( 2145 "DC:failed to create aux engine!!\n"); 2146 goto create_fail; 2147 } 2148 pool->base.hw_i2cs[i] = dcn31_i2c_hw_create(ctx, i); 2149 if (pool->base.hw_i2cs[i] == NULL) { 2150 BREAK_TO_DEBUGGER(); 2151 dm_error( 2152 "DC:failed to create hw i2c!!\n"); 2153 goto create_fail; 2154 } 2155 pool->base.sw_i2cs[i] = NULL; 2156 } 2157 2158 if (dc->ctx->asic_id.chip_family == FAMILY_YELLOW_CARP && 2159 dc->ctx->asic_id.hw_internal_rev == YELLOW_CARP_B0 && 2160 !dc->debug.dpia_debug.bits.disable_dpia) { 2161 /* YELLOW CARP B0 has 4 DPIA's */ 2162 pool->base.usb4_dpia_count = 4; 2163 } 2164 2165 /* Audio, Stream Encoders including HPO and virtual, MPC 3D LUTs */ 2166 if (!resource_construct(num_virtual_links, dc, &pool->base, 2167 (!IS_FPGA_MAXIMUS_DC(dc->ctx->dce_environment) ? 2168 &res_create_funcs : &res_create_maximus_funcs))) 2169 goto create_fail; 2170 2171 /* HW Sequencer and Plane caps */ 2172 dcn31_hw_sequencer_construct(dc); 2173 2174 dc->caps.max_planes = pool->base.pipe_count; 2175 2176 for (i = 0; i < dc->caps.max_planes; ++i) 2177 dc->caps.planes[i] = plane_cap; 2178 2179 dc->cap_funcs = cap_funcs; 2180 2181 dc->dcn_ip->max_num_dpp = dcn3_1_ip.max_num_dpp; 2182 2183 DC_FP_END(); 2184 2185 return true; 2186 2187 create_fail: 2188 2189 DC_FP_END(); 2190 dcn31_resource_destruct(pool); 2191 2192 return false; 2193 } 2194 2195 struct resource_pool *dcn31_create_resource_pool( 2196 const struct dc_init_data *init_data, 2197 struct dc *dc) 2198 { 2199 struct dcn31_resource_pool *pool = 2200 kzalloc(sizeof(struct dcn31_resource_pool), GFP_KERNEL); 2201 2202 if (!pool) 2203 return NULL; 2204 2205 if (dcn31_resource_construct(init_data->num_virtual_links, dc, pool)) 2206 return &pool->base; 2207 2208 BREAK_TO_DEBUGGER(); 2209 kfree(pool); 2210 return NULL; 2211 } 2212