1 /* 2 * Copyright 2012-15 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 #include "reg_helper.h" 27 28 #include "core_types.h" 29 #include "link_encoder.h" 30 #include "dcn10_link_encoder.h" 31 #include "stream_encoder.h" 32 #include "dc_bios_types.h" 33 34 #include "gpio_service_interface.h" 35 36 #define CTX \ 37 enc10->base.ctx 38 #define DC_LOGGER \ 39 enc10->base.ctx->logger 40 41 #define REG(reg)\ 42 (enc10->link_regs->reg) 43 44 #undef FN 45 #define FN(reg_name, field_name) \ 46 enc10->link_shift->field_name, enc10->link_mask->field_name 47 48 49 /* 50 * @brief 51 * Trigger Source Select 52 * ASIC-dependent, actual values for register programming 53 */ 54 #define DCN10_DIG_FE_SOURCE_SELECT_INVALID 0x0 55 #define DCN10_DIG_FE_SOURCE_SELECT_DIGA 0x1 56 #define DCN10_DIG_FE_SOURCE_SELECT_DIGB 0x2 57 #define DCN10_DIG_FE_SOURCE_SELECT_DIGC 0x4 58 #define DCN10_DIG_FE_SOURCE_SELECT_DIGD 0x08 59 #define DCN10_DIG_FE_SOURCE_SELECT_DIGE 0x10 60 #define DCN10_DIG_FE_SOURCE_SELECT_DIGF 0x20 61 #define DCN10_DIG_FE_SOURCE_SELECT_DIGG 0x40 62 63 enum { 64 DP_MST_UPDATE_MAX_RETRY = 50 65 }; 66 67 static const struct link_encoder_funcs dcn10_lnk_enc_funcs = { 68 .validate_output_with_stream = 69 dcn10_link_encoder_validate_output_with_stream, 70 .hw_init = dcn10_link_encoder_hw_init, 71 .setup = dcn10_link_encoder_setup, 72 .enable_tmds_output = dcn10_link_encoder_enable_tmds_output, 73 .enable_dp_output = dcn10_link_encoder_enable_dp_output, 74 .enable_dp_mst_output = dcn10_link_encoder_enable_dp_mst_output, 75 .disable_output = dcn10_link_encoder_disable_output, 76 .dp_set_lane_settings = dcn10_link_encoder_dp_set_lane_settings, 77 .dp_set_phy_pattern = dcn10_link_encoder_dp_set_phy_pattern, 78 .update_mst_stream_allocation_table = 79 dcn10_link_encoder_update_mst_stream_allocation_table, 80 .psr_program_dp_dphy_fast_training = 81 dcn10_psr_program_dp_dphy_fast_training, 82 .psr_program_secondary_packet = dcn10_psr_program_secondary_packet, 83 .connect_dig_be_to_fe = dcn10_link_encoder_connect_dig_be_to_fe, 84 .enable_hpd = dcn10_link_encoder_enable_hpd, 85 .disable_hpd = dcn10_link_encoder_disable_hpd, 86 .is_dig_enabled = dcn10_is_dig_enabled, 87 .get_dig_frontend = dcn10_get_dig_frontend, 88 .get_dig_mode = dcn10_get_dig_mode, 89 .destroy = dcn10_link_encoder_destroy, 90 .get_max_link_cap = dcn10_link_encoder_get_max_link_cap, 91 }; 92 link_transmitter_control(struct dcn10_link_encoder * enc10,struct bp_transmitter_control * cntl)93 static enum bp_result link_transmitter_control( 94 struct dcn10_link_encoder *enc10, 95 struct bp_transmitter_control *cntl) 96 { 97 enum bp_result result; 98 struct dc_bios *bp = enc10->base.ctx->dc_bios; 99 100 result = bp->funcs->transmitter_control(bp, cntl); 101 102 return result; 103 } 104 enable_phy_bypass_mode(struct dcn10_link_encoder * enc10,bool enable)105 static void enable_phy_bypass_mode( 106 struct dcn10_link_encoder *enc10, 107 bool enable) 108 { 109 /* This register resides in DP back end block; 110 * transmitter is used for the offset 111 */ 112 REG_UPDATE(DP_DPHY_CNTL, DPHY_BYPASS, enable); 113 114 } 115 disable_prbs_symbols(struct dcn10_link_encoder * enc10,bool disable)116 static void disable_prbs_symbols( 117 struct dcn10_link_encoder *enc10, 118 bool disable) 119 { 120 /* This register resides in DP back end block; 121 * transmitter is used for the offset 122 */ 123 REG_UPDATE_4(DP_DPHY_CNTL, 124 DPHY_ATEST_SEL_LANE0, disable, 125 DPHY_ATEST_SEL_LANE1, disable, 126 DPHY_ATEST_SEL_LANE2, disable, 127 DPHY_ATEST_SEL_LANE3, disable); 128 } 129 disable_prbs_mode(struct dcn10_link_encoder * enc10)130 static void disable_prbs_mode( 131 struct dcn10_link_encoder *enc10) 132 { 133 REG_UPDATE(DP_DPHY_PRBS_CNTL, DPHY_PRBS_EN, 0); 134 } 135 program_pattern_symbols(struct dcn10_link_encoder * enc10,uint16_t pattern_symbols[8])136 static void program_pattern_symbols( 137 struct dcn10_link_encoder *enc10, 138 uint16_t pattern_symbols[8]) 139 { 140 /* This register resides in DP back end block; 141 * transmitter is used for the offset 142 */ 143 REG_SET_3(DP_DPHY_SYM0, 0, 144 DPHY_SYM1, pattern_symbols[0], 145 DPHY_SYM2, pattern_symbols[1], 146 DPHY_SYM3, pattern_symbols[2]); 147 148 /* This register resides in DP back end block; 149 * transmitter is used for the offset 150 */ 151 REG_SET_3(DP_DPHY_SYM1, 0, 152 DPHY_SYM4, pattern_symbols[3], 153 DPHY_SYM5, pattern_symbols[4], 154 DPHY_SYM6, pattern_symbols[5]); 155 156 /* This register resides in DP back end block; 157 * transmitter is used for the offset 158 */ 159 REG_SET_2(DP_DPHY_SYM2, 0, 160 DPHY_SYM7, pattern_symbols[6], 161 DPHY_SYM8, pattern_symbols[7]); 162 } 163 set_dp_phy_pattern_d102(struct dcn10_link_encoder * enc10)164 static void set_dp_phy_pattern_d102( 165 struct dcn10_link_encoder *enc10) 166 { 167 /* Disable PHY Bypass mode to setup the test pattern */ 168 enable_phy_bypass_mode(enc10, false); 169 170 /* For 10-bit PRBS or debug symbols 171 * please use the following sequence: 172 * 173 * Enable debug symbols on the lanes 174 */ 175 disable_prbs_symbols(enc10, true); 176 177 /* Disable PRBS mode */ 178 disable_prbs_mode(enc10); 179 180 /* Program debug symbols to be output */ 181 { 182 uint16_t pattern_symbols[8] = { 183 0x2AA, 0x2AA, 0x2AA, 0x2AA, 184 0x2AA, 0x2AA, 0x2AA, 0x2AA 185 }; 186 187 program_pattern_symbols(enc10, pattern_symbols); 188 } 189 190 /* Enable phy bypass mode to enable the test pattern */ 191 192 enable_phy_bypass_mode(enc10, true); 193 } 194 set_link_training_complete(struct dcn10_link_encoder * enc10,bool complete)195 static void set_link_training_complete( 196 struct dcn10_link_encoder *enc10, 197 bool complete) 198 { 199 /* This register resides in DP back end block; 200 * transmitter is used for the offset 201 */ 202 REG_UPDATE(DP_LINK_CNTL, DP_LINK_TRAINING_COMPLETE, complete); 203 204 } 205 dcn10_link_encoder_set_dp_phy_pattern_training_pattern(struct link_encoder * enc,uint32_t index)206 void dcn10_link_encoder_set_dp_phy_pattern_training_pattern( 207 struct link_encoder *enc, 208 uint32_t index) 209 { 210 struct dcn10_link_encoder *enc10 = TO_DCN10_LINK_ENC(enc); 211 /* Write Training Pattern */ 212 213 REG_WRITE(DP_DPHY_TRAINING_PATTERN_SEL, index); 214 215 /* Set HW Register Training Complete to false */ 216 217 set_link_training_complete(enc10, false); 218 219 /* Disable PHY Bypass mode to output Training Pattern */ 220 221 enable_phy_bypass_mode(enc10, false); 222 223 /* Disable PRBS mode */ 224 disable_prbs_mode(enc10); 225 } 226 setup_panel_mode(struct dcn10_link_encoder * enc10,enum dp_panel_mode panel_mode)227 static void setup_panel_mode( 228 struct dcn10_link_encoder *enc10, 229 enum dp_panel_mode panel_mode) 230 { 231 uint32_t value; 232 233 if (!REG(DP_DPHY_INTERNAL_CTRL)) 234 return; 235 236 value = REG_READ(DP_DPHY_INTERNAL_CTRL); 237 238 switch (panel_mode) { 239 case DP_PANEL_MODE_EDP: 240 value = 0x1; 241 break; 242 case DP_PANEL_MODE_SPECIAL: 243 value = 0x11; 244 break; 245 default: 246 value = 0x0; 247 break; 248 } 249 250 REG_WRITE(DP_DPHY_INTERNAL_CTRL, value); 251 } 252 set_dp_phy_pattern_symbol_error(struct dcn10_link_encoder * enc10)253 static void set_dp_phy_pattern_symbol_error( 254 struct dcn10_link_encoder *enc10) 255 { 256 /* Disable PHY Bypass mode to setup the test pattern */ 257 enable_phy_bypass_mode(enc10, false); 258 259 /* program correct panel mode*/ 260 setup_panel_mode(enc10, DP_PANEL_MODE_DEFAULT); 261 262 /* A PRBS23 pattern is used for most DP electrical measurements. */ 263 264 /* Enable PRBS symbols on the lanes */ 265 disable_prbs_symbols(enc10, false); 266 267 /* For PRBS23 Set bit DPHY_PRBS_SEL=1 and Set bit DPHY_PRBS_EN=1 */ 268 REG_UPDATE_2(DP_DPHY_PRBS_CNTL, 269 DPHY_PRBS_SEL, 1, 270 DPHY_PRBS_EN, 1); 271 272 /* Enable phy bypass mode to enable the test pattern */ 273 enable_phy_bypass_mode(enc10, true); 274 } 275 set_dp_phy_pattern_prbs7(struct dcn10_link_encoder * enc10)276 static void set_dp_phy_pattern_prbs7( 277 struct dcn10_link_encoder *enc10) 278 { 279 /* Disable PHY Bypass mode to setup the test pattern */ 280 enable_phy_bypass_mode(enc10, false); 281 282 /* A PRBS7 pattern is used for most DP electrical measurements. */ 283 284 /* Enable PRBS symbols on the lanes */ 285 disable_prbs_symbols(enc10, false); 286 287 /* For PRBS7 Set bit DPHY_PRBS_SEL=0 and Set bit DPHY_PRBS_EN=1 */ 288 REG_UPDATE_2(DP_DPHY_PRBS_CNTL, 289 DPHY_PRBS_SEL, 0, 290 DPHY_PRBS_EN, 1); 291 292 /* Enable phy bypass mode to enable the test pattern */ 293 enable_phy_bypass_mode(enc10, true); 294 } 295 set_dp_phy_pattern_80bit_custom(struct dcn10_link_encoder * enc10,const uint8_t * pattern)296 static void set_dp_phy_pattern_80bit_custom( 297 struct dcn10_link_encoder *enc10, 298 const uint8_t *pattern) 299 { 300 /* Disable PHY Bypass mode to setup the test pattern */ 301 enable_phy_bypass_mode(enc10, false); 302 303 /* Enable debug symbols on the lanes */ 304 305 disable_prbs_symbols(enc10, true); 306 307 /* Enable PHY bypass mode to enable the test pattern */ 308 /* TODO is it really needed ? */ 309 310 enable_phy_bypass_mode(enc10, true); 311 312 /* Program 80 bit custom pattern */ 313 { 314 uint16_t pattern_symbols[8]; 315 316 pattern_symbols[0] = 317 ((pattern[1] & 0x03) << 8) | pattern[0]; 318 pattern_symbols[1] = 319 ((pattern[2] & 0x0f) << 6) | ((pattern[1] >> 2) & 0x3f); 320 pattern_symbols[2] = 321 ((pattern[3] & 0x3f) << 4) | ((pattern[2] >> 4) & 0x0f); 322 pattern_symbols[3] = 323 (pattern[4] << 2) | ((pattern[3] >> 6) & 0x03); 324 pattern_symbols[4] = 325 ((pattern[6] & 0x03) << 8) | pattern[5]; 326 pattern_symbols[5] = 327 ((pattern[7] & 0x0f) << 6) | ((pattern[6] >> 2) & 0x3f); 328 pattern_symbols[6] = 329 ((pattern[8] & 0x3f) << 4) | ((pattern[7] >> 4) & 0x0f); 330 pattern_symbols[7] = 331 (pattern[9] << 2) | ((pattern[8] >> 6) & 0x03); 332 333 program_pattern_symbols(enc10, pattern_symbols); 334 } 335 336 /* Enable phy bypass mode to enable the test pattern */ 337 338 enable_phy_bypass_mode(enc10, true); 339 } 340 set_dp_phy_pattern_hbr2_compliance_cp2520_2(struct dcn10_link_encoder * enc10,unsigned int cp2520_pattern)341 static void set_dp_phy_pattern_hbr2_compliance_cp2520_2( 342 struct dcn10_link_encoder *enc10, 343 unsigned int cp2520_pattern) 344 { 345 346 /* previously there is a register DP_HBR2_EYE_PATTERN 347 * that is enabled to get the pattern. 348 * But it does not work with the latest spec change, 349 * so we are programming the following registers manually. 350 * 351 * The following settings have been confirmed 352 * by Nick Chorney and Sandra Liu 353 */ 354 355 /* Disable PHY Bypass mode to setup the test pattern */ 356 357 enable_phy_bypass_mode(enc10, false); 358 359 /* Setup DIG encoder in DP SST mode */ 360 enc10->base.funcs->setup(&enc10->base, SIGNAL_TYPE_DISPLAY_PORT); 361 362 /* ensure normal panel mode. */ 363 setup_panel_mode(enc10, DP_PANEL_MODE_DEFAULT); 364 365 /* no vbid after BS (SR) 366 * DP_LINK_FRAMING_CNTL changed history Sandra Liu 367 * 11000260 / 11000104 / 110000FC 368 */ 369 REG_UPDATE_3(DP_LINK_FRAMING_CNTL, 370 DP_IDLE_BS_INTERVAL, 0xFC, 371 DP_VBID_DISABLE, 1, 372 DP_VID_ENHANCED_FRAME_MODE, 1); 373 374 /* swap every BS with SR */ 375 REG_UPDATE(DP_DPHY_SCRAM_CNTL, DPHY_SCRAMBLER_BS_COUNT, 0); 376 377 /* select cp2520 patterns */ 378 if (REG(DP_DPHY_HBR2_PATTERN_CONTROL)) 379 REG_UPDATE(DP_DPHY_HBR2_PATTERN_CONTROL, 380 DP_DPHY_HBR2_PATTERN_CONTROL, cp2520_pattern); 381 else 382 /* pre-DCE11 can only generate CP2520 pattern 2 */ 383 ASSERT(cp2520_pattern == 2); 384 385 /* set link training complete */ 386 set_link_training_complete(enc10, true); 387 388 /* disable video stream */ 389 REG_UPDATE(DP_VID_STREAM_CNTL, DP_VID_STREAM_ENABLE, 0); 390 391 /* Disable PHY Bypass mode to setup the test pattern */ 392 enable_phy_bypass_mode(enc10, false); 393 } 394 set_dp_phy_pattern_passthrough_mode(struct dcn10_link_encoder * enc10,enum dp_panel_mode panel_mode)395 static void set_dp_phy_pattern_passthrough_mode( 396 struct dcn10_link_encoder *enc10, 397 enum dp_panel_mode panel_mode) 398 { 399 /* program correct panel mode */ 400 setup_panel_mode(enc10, panel_mode); 401 402 /* restore LINK_FRAMING_CNTL and DPHY_SCRAMBLER_BS_COUNT 403 * in case we were doing HBR2 compliance pattern before 404 */ 405 REG_UPDATE_3(DP_LINK_FRAMING_CNTL, 406 DP_IDLE_BS_INTERVAL, 0x2000, 407 DP_VBID_DISABLE, 0, 408 DP_VID_ENHANCED_FRAME_MODE, 1); 409 410 REG_UPDATE(DP_DPHY_SCRAM_CNTL, DPHY_SCRAMBLER_BS_COUNT, 0x1FF); 411 412 /* set link training complete */ 413 set_link_training_complete(enc10, true); 414 415 /* Disable PHY Bypass mode to setup the test pattern */ 416 enable_phy_bypass_mode(enc10, false); 417 418 /* Disable PRBS mode */ 419 disable_prbs_mode(enc10); 420 } 421 422 /* return value is bit-vector */ get_frontend_source(enum engine_id engine)423 static uint8_t get_frontend_source( 424 enum engine_id engine) 425 { 426 switch (engine) { 427 case ENGINE_ID_DIGA: 428 return DCN10_DIG_FE_SOURCE_SELECT_DIGA; 429 case ENGINE_ID_DIGB: 430 return DCN10_DIG_FE_SOURCE_SELECT_DIGB; 431 case ENGINE_ID_DIGC: 432 return DCN10_DIG_FE_SOURCE_SELECT_DIGC; 433 case ENGINE_ID_DIGD: 434 return DCN10_DIG_FE_SOURCE_SELECT_DIGD; 435 case ENGINE_ID_DIGE: 436 return DCN10_DIG_FE_SOURCE_SELECT_DIGE; 437 case ENGINE_ID_DIGF: 438 return DCN10_DIG_FE_SOURCE_SELECT_DIGF; 439 case ENGINE_ID_DIGG: 440 return DCN10_DIG_FE_SOURCE_SELECT_DIGG; 441 default: 442 ASSERT_CRITICAL(false); 443 return DCN10_DIG_FE_SOURCE_SELECT_INVALID; 444 } 445 } 446 dcn10_get_dig_frontend(struct link_encoder * enc)447 unsigned int dcn10_get_dig_frontend(struct link_encoder *enc) 448 { 449 struct dcn10_link_encoder *enc10 = TO_DCN10_LINK_ENC(enc); 450 int32_t value; 451 enum engine_id result; 452 453 REG_GET(DIG_BE_CNTL, DIG_FE_SOURCE_SELECT, &value); 454 455 switch (value) { 456 case DCN10_DIG_FE_SOURCE_SELECT_DIGA: 457 result = ENGINE_ID_DIGA; 458 break; 459 case DCN10_DIG_FE_SOURCE_SELECT_DIGB: 460 result = ENGINE_ID_DIGB; 461 break; 462 case DCN10_DIG_FE_SOURCE_SELECT_DIGC: 463 result = ENGINE_ID_DIGC; 464 break; 465 case DCN10_DIG_FE_SOURCE_SELECT_DIGD: 466 result = ENGINE_ID_DIGD; 467 break; 468 case DCN10_DIG_FE_SOURCE_SELECT_DIGE: 469 result = ENGINE_ID_DIGE; 470 break; 471 case DCN10_DIG_FE_SOURCE_SELECT_DIGF: 472 result = ENGINE_ID_DIGF; 473 break; 474 case DCN10_DIG_FE_SOURCE_SELECT_DIGG: 475 result = ENGINE_ID_DIGG; 476 break; 477 default: 478 // invalid source select DIG 479 result = ENGINE_ID_UNKNOWN; 480 } 481 482 return result; 483 484 } 485 enc1_configure_encoder(struct dcn10_link_encoder * enc10,const struct dc_link_settings * link_settings)486 void enc1_configure_encoder( 487 struct dcn10_link_encoder *enc10, 488 const struct dc_link_settings *link_settings) 489 { 490 /* set number of lanes */ 491 REG_SET(DP_CONFIG, 0, 492 DP_UDI_LANES, link_settings->lane_count - LANE_COUNT_ONE); 493 494 /* setup scrambler */ 495 REG_UPDATE(DP_DPHY_SCRAM_CNTL, DPHY_SCRAMBLER_ADVANCE, 1); 496 } 497 dcn10_psr_program_dp_dphy_fast_training(struct link_encoder * enc,bool exit_link_training_required)498 void dcn10_psr_program_dp_dphy_fast_training(struct link_encoder *enc, 499 bool exit_link_training_required) 500 { 501 struct dcn10_link_encoder *enc10 = TO_DCN10_LINK_ENC(enc); 502 503 if (exit_link_training_required) 504 REG_UPDATE(DP_DPHY_FAST_TRAINING, 505 DPHY_RX_FAST_TRAINING_CAPABLE, 1); 506 else { 507 REG_UPDATE(DP_DPHY_FAST_TRAINING, 508 DPHY_RX_FAST_TRAINING_CAPABLE, 0); 509 /*In DCE 11, we are able to pre-program a Force SR register 510 * to be able to trigger SR symbol after 5 idle patterns 511 * transmitted. Upon PSR Exit, DMCU can trigger 512 * DPHY_LOAD_BS_COUNT_START = 1. Upon writing 1 to 513 * DPHY_LOAD_BS_COUNT_START and the internal counter 514 * reaches DPHY_LOAD_BS_COUNT, the next BS symbol will be 515 * replaced by SR symbol once. 516 */ 517 518 REG_UPDATE(DP_DPHY_BS_SR_SWAP_CNTL, DPHY_LOAD_BS_COUNT, 0x5); 519 } 520 } 521 dcn10_psr_program_secondary_packet(struct link_encoder * enc,unsigned int sdp_transmit_line_num_deadline)522 void dcn10_psr_program_secondary_packet(struct link_encoder *enc, 523 unsigned int sdp_transmit_line_num_deadline) 524 { 525 struct dcn10_link_encoder *enc10 = TO_DCN10_LINK_ENC(enc); 526 527 REG_UPDATE_2(DP_SEC_CNTL1, 528 DP_SEC_GSP0_LINE_NUM, sdp_transmit_line_num_deadline, 529 DP_SEC_GSP0_PRIORITY, 1); 530 } 531 dcn10_is_dig_enabled(struct link_encoder * enc)532 bool dcn10_is_dig_enabled(struct link_encoder *enc) 533 { 534 struct dcn10_link_encoder *enc10 = TO_DCN10_LINK_ENC(enc); 535 uint32_t value; 536 537 REG_GET(DIG_BE_EN_CNTL, DIG_ENABLE, &value); 538 return value; 539 } 540 link_encoder_disable(struct dcn10_link_encoder * enc10)541 static void link_encoder_disable(struct dcn10_link_encoder *enc10) 542 { 543 /* reset training pattern */ 544 REG_SET(DP_DPHY_TRAINING_PATTERN_SEL, 0, 545 DPHY_TRAINING_PATTERN_SEL, 0); 546 547 /* reset training complete */ 548 REG_UPDATE(DP_LINK_CNTL, DP_LINK_TRAINING_COMPLETE, 0); 549 550 /* reset panel mode */ 551 setup_panel_mode(enc10, DP_PANEL_MODE_DEFAULT); 552 } 553 hpd_initialize(struct dcn10_link_encoder * enc10)554 static void hpd_initialize( 555 struct dcn10_link_encoder *enc10) 556 { 557 /* Associate HPD with DIG_BE */ 558 enum hpd_source_id hpd_source = enc10->base.hpd_source; 559 560 REG_UPDATE(DIG_BE_CNTL, DIG_HPD_SELECT, hpd_source); 561 } 562 dcn10_link_encoder_validate_dvi_output(const struct dcn10_link_encoder * enc10,enum signal_type connector_signal,enum signal_type signal,const struct dc_crtc_timing * crtc_timing)563 bool dcn10_link_encoder_validate_dvi_output( 564 const struct dcn10_link_encoder *enc10, 565 enum signal_type connector_signal, 566 enum signal_type signal, 567 const struct dc_crtc_timing *crtc_timing) 568 { 569 uint32_t max_pixel_clock = TMDS_MAX_PIXEL_CLOCK; 570 571 if (signal == SIGNAL_TYPE_DVI_DUAL_LINK) 572 max_pixel_clock *= 2; 573 574 /* This handles the case of HDMI downgrade to DVI we don't want to 575 * we don't want to cap the pixel clock if the DDI is not DVI. 576 */ 577 if (connector_signal != SIGNAL_TYPE_DVI_DUAL_LINK && 578 connector_signal != SIGNAL_TYPE_DVI_SINGLE_LINK) 579 max_pixel_clock = enc10->base.features.max_hdmi_pixel_clock; 580 581 /* DVI only support RGB pixel encoding */ 582 if (crtc_timing->pixel_encoding != PIXEL_ENCODING_RGB) 583 return false; 584 585 /*connect DVI via adpater's HDMI connector*/ 586 if ((connector_signal == SIGNAL_TYPE_DVI_SINGLE_LINK || 587 connector_signal == SIGNAL_TYPE_HDMI_TYPE_A) && 588 signal != SIGNAL_TYPE_HDMI_TYPE_A && 589 crtc_timing->pix_clk_100hz > (TMDS_MAX_PIXEL_CLOCK * 10)) 590 return false; 591 if (crtc_timing->pix_clk_100hz < (TMDS_MIN_PIXEL_CLOCK * 10)) 592 return false; 593 594 if (crtc_timing->pix_clk_100hz > (max_pixel_clock * 10)) 595 return false; 596 597 /* DVI supports 6/8bpp single-link and 10/16bpp dual-link */ 598 switch (crtc_timing->display_color_depth) { 599 case COLOR_DEPTH_666: 600 case COLOR_DEPTH_888: 601 break; 602 case COLOR_DEPTH_101010: 603 case COLOR_DEPTH_161616: 604 if (signal != SIGNAL_TYPE_DVI_DUAL_LINK) 605 return false; 606 break; 607 default: 608 return false; 609 } 610 611 return true; 612 } 613 dcn10_link_encoder_validate_hdmi_output(const struct dcn10_link_encoder * enc10,const struct dc_crtc_timing * crtc_timing,const struct dc_edid_caps * edid_caps,int adjusted_pix_clk_100hz)614 static bool dcn10_link_encoder_validate_hdmi_output( 615 const struct dcn10_link_encoder *enc10, 616 const struct dc_crtc_timing *crtc_timing, 617 const struct dc_edid_caps *edid_caps, 618 int adjusted_pix_clk_100hz) 619 { 620 enum dc_color_depth max_deep_color = 621 enc10->base.features.max_hdmi_deep_color; 622 623 // check pixel clock against edid specified max TMDS clk 624 if (edid_caps->max_tmds_clk_mhz != 0 && 625 adjusted_pix_clk_100hz > edid_caps->max_tmds_clk_mhz * 10000) 626 return false; 627 628 if (max_deep_color < crtc_timing->display_color_depth) 629 return false; 630 631 if (crtc_timing->display_color_depth < COLOR_DEPTH_888) 632 return false; 633 if (adjusted_pix_clk_100hz < (TMDS_MIN_PIXEL_CLOCK * 10)) 634 return false; 635 636 if ((adjusted_pix_clk_100hz == 0) || 637 (adjusted_pix_clk_100hz > (enc10->base.features.max_hdmi_pixel_clock * 10))) 638 return false; 639 640 /* DCE11 HW does not support 420 */ 641 if (!enc10->base.features.hdmi_ycbcr420_supported && 642 crtc_timing->pixel_encoding == PIXEL_ENCODING_YCBCR420) 643 return false; 644 645 if ((!enc10->base.features.flags.bits.HDMI_6GB_EN || 646 enc10->base.ctx->dc->debug.hdmi20_disable) && 647 adjusted_pix_clk_100hz >= 3000000) 648 return false; 649 if (enc10->base.ctx->dc->debug.hdmi20_disable && 650 crtc_timing->pixel_encoding == PIXEL_ENCODING_YCBCR420) 651 return false; 652 return true; 653 } 654 dcn10_link_encoder_validate_dp_output(const struct dcn10_link_encoder * enc10,const struct dc_crtc_timing * crtc_timing)655 bool dcn10_link_encoder_validate_dp_output( 656 const struct dcn10_link_encoder *enc10, 657 const struct dc_crtc_timing *crtc_timing) 658 { 659 if (crtc_timing->pixel_encoding == PIXEL_ENCODING_YCBCR420) { 660 if (!enc10->base.features.dp_ycbcr420_supported) 661 return false; 662 } 663 664 return true; 665 } 666 dcn10_link_encoder_construct(struct dcn10_link_encoder * enc10,const struct encoder_init_data * init_data,const struct encoder_feature_support * enc_features,const struct dcn10_link_enc_registers * link_regs,const struct dcn10_link_enc_aux_registers * aux_regs,const struct dcn10_link_enc_hpd_registers * hpd_regs,const struct dcn10_link_enc_shift * link_shift,const struct dcn10_link_enc_mask * link_mask)667 void dcn10_link_encoder_construct( 668 struct dcn10_link_encoder *enc10, 669 const struct encoder_init_data *init_data, 670 const struct encoder_feature_support *enc_features, 671 const struct dcn10_link_enc_registers *link_regs, 672 const struct dcn10_link_enc_aux_registers *aux_regs, 673 const struct dcn10_link_enc_hpd_registers *hpd_regs, 674 const struct dcn10_link_enc_shift *link_shift, 675 const struct dcn10_link_enc_mask *link_mask) 676 { 677 struct bp_encoder_cap_info bp_cap_info = {0}; 678 const struct dc_vbios_funcs *bp_funcs = init_data->ctx->dc_bios->funcs; 679 enum bp_result result = BP_RESULT_OK; 680 681 enc10->base.funcs = &dcn10_lnk_enc_funcs; 682 enc10->base.ctx = init_data->ctx; 683 enc10->base.id = init_data->encoder; 684 685 enc10->base.hpd_source = init_data->hpd_source; 686 enc10->base.connector = init_data->connector; 687 688 enc10->base.preferred_engine = ENGINE_ID_UNKNOWN; 689 690 enc10->base.features = *enc_features; 691 692 enc10->base.transmitter = init_data->transmitter; 693 694 /* set the flag to indicate whether driver poll the I2C data pin 695 * while doing the DP sink detect 696 */ 697 698 /* if (dal_adapter_service_is_feature_supported(as, 699 FEATURE_DP_SINK_DETECT_POLL_DATA_PIN)) 700 enc10->base.features.flags.bits. 701 DP_SINK_DETECT_POLL_DATA_PIN = true;*/ 702 703 enc10->base.output_signals = 704 SIGNAL_TYPE_DVI_SINGLE_LINK | 705 SIGNAL_TYPE_DVI_DUAL_LINK | 706 SIGNAL_TYPE_LVDS | 707 SIGNAL_TYPE_DISPLAY_PORT | 708 SIGNAL_TYPE_DISPLAY_PORT_MST | 709 SIGNAL_TYPE_EDP | 710 SIGNAL_TYPE_HDMI_TYPE_A; 711 712 /* For DCE 8.0 and 8.1, by design, UNIPHY is hardwired to DIG_BE. 713 * SW always assign DIG_FE 1:1 mapped to DIG_FE for non-MST UNIPHY. 714 * SW assign DIG_FE to non-MST UNIPHY first and MST last. So prefer 715 * DIG is per UNIPHY and used by SST DP, eDP, HDMI, DVI and LVDS. 716 * Prefer DIG assignment is decided by board design. 717 * For DCE 8.0, there are only max 6 UNIPHYs, we assume board design 718 * and VBIOS will filter out 7 UNIPHY for DCE 8.0. 719 * By this, adding DIGG should not hurt DCE 8.0. 720 * This will let DCE 8.1 share DCE 8.0 as much as possible 721 */ 722 723 enc10->link_regs = link_regs; 724 enc10->aux_regs = aux_regs; 725 enc10->hpd_regs = hpd_regs; 726 enc10->link_shift = link_shift; 727 enc10->link_mask = link_mask; 728 729 switch (enc10->base.transmitter) { 730 case TRANSMITTER_UNIPHY_A: 731 enc10->base.preferred_engine = ENGINE_ID_DIGA; 732 break; 733 case TRANSMITTER_UNIPHY_B: 734 enc10->base.preferred_engine = ENGINE_ID_DIGB; 735 break; 736 case TRANSMITTER_UNIPHY_C: 737 enc10->base.preferred_engine = ENGINE_ID_DIGC; 738 break; 739 case TRANSMITTER_UNIPHY_D: 740 enc10->base.preferred_engine = ENGINE_ID_DIGD; 741 break; 742 case TRANSMITTER_UNIPHY_E: 743 enc10->base.preferred_engine = ENGINE_ID_DIGE; 744 break; 745 case TRANSMITTER_UNIPHY_F: 746 enc10->base.preferred_engine = ENGINE_ID_DIGF; 747 break; 748 case TRANSMITTER_UNIPHY_G: 749 enc10->base.preferred_engine = ENGINE_ID_DIGG; 750 break; 751 default: 752 ASSERT_CRITICAL(false); 753 enc10->base.preferred_engine = ENGINE_ID_UNKNOWN; 754 } 755 756 /* default to one to mirror Windows behavior */ 757 enc10->base.features.flags.bits.HDMI_6GB_EN = 1; 758 759 result = bp_funcs->get_encoder_cap_info(enc10->base.ctx->dc_bios, 760 enc10->base.id, &bp_cap_info); 761 762 /* Override features with DCE-specific values */ 763 if (result == BP_RESULT_OK) { 764 enc10->base.features.flags.bits.IS_HBR2_CAPABLE = 765 bp_cap_info.DP_HBR2_EN; 766 enc10->base.features.flags.bits.IS_HBR3_CAPABLE = 767 bp_cap_info.DP_HBR3_EN; 768 enc10->base.features.flags.bits.HDMI_6GB_EN = bp_cap_info.HDMI_6GB_EN; 769 enc10->base.features.flags.bits.DP_IS_USB_C = 770 bp_cap_info.DP_IS_USB_C; 771 } else { 772 DC_LOG_WARNING("%s: Failed to get encoder_cap_info from VBIOS with error code %d!\n", 773 __func__, 774 result); 775 } 776 if (enc10->base.ctx->dc->debug.hdmi20_disable) { 777 enc10->base.features.flags.bits.HDMI_6GB_EN = 0; 778 } 779 } 780 dcn10_link_encoder_validate_output_with_stream(struct link_encoder * enc,const struct dc_stream_state * stream)781 bool dcn10_link_encoder_validate_output_with_stream( 782 struct link_encoder *enc, 783 const struct dc_stream_state *stream) 784 { 785 struct dcn10_link_encoder *enc10 = TO_DCN10_LINK_ENC(enc); 786 bool is_valid; 787 788 //if SCDC (340-600MHz) is disabled, set to HDMI 1.4 timing limit 789 if (stream->sink->edid_caps.panel_patch.skip_scdc_overwrite && 790 enc10->base.features.max_hdmi_pixel_clock > 300000) 791 enc10->base.features.max_hdmi_pixel_clock = 300000; 792 793 switch (stream->signal) { 794 case SIGNAL_TYPE_DVI_SINGLE_LINK: 795 case SIGNAL_TYPE_DVI_DUAL_LINK: 796 is_valid = dcn10_link_encoder_validate_dvi_output( 797 enc10, 798 stream->link->connector_signal, 799 stream->signal, 800 &stream->timing); 801 break; 802 case SIGNAL_TYPE_HDMI_TYPE_A: 803 is_valid = dcn10_link_encoder_validate_hdmi_output( 804 enc10, 805 &stream->timing, 806 &stream->sink->edid_caps, 807 stream->phy_pix_clk * 10); 808 break; 809 case SIGNAL_TYPE_DISPLAY_PORT: 810 case SIGNAL_TYPE_DISPLAY_PORT_MST: 811 is_valid = dcn10_link_encoder_validate_dp_output( 812 enc10, &stream->timing); 813 break; 814 case SIGNAL_TYPE_EDP: 815 is_valid = (stream->timing.pixel_encoding == PIXEL_ENCODING_RGB) ? true : false; 816 break; 817 case SIGNAL_TYPE_VIRTUAL: 818 is_valid = true; 819 break; 820 default: 821 is_valid = false; 822 break; 823 } 824 825 return is_valid; 826 } 827 dcn10_link_encoder_hw_init(struct link_encoder * enc)828 void dcn10_link_encoder_hw_init( 829 struct link_encoder *enc) 830 { 831 struct dcn10_link_encoder *enc10 = TO_DCN10_LINK_ENC(enc); 832 struct bp_transmitter_control cntl = { 0 }; 833 enum bp_result result; 834 835 cntl.action = TRANSMITTER_CONTROL_INIT; 836 cntl.engine_id = ENGINE_ID_UNKNOWN; 837 cntl.transmitter = enc10->base.transmitter; 838 cntl.connector_obj_id = enc10->base.connector; 839 cntl.lanes_number = LANE_COUNT_FOUR; 840 cntl.coherent = false; 841 cntl.hpd_sel = enc10->base.hpd_source; 842 843 if (enc10->base.connector.id == CONNECTOR_ID_EDP) 844 cntl.signal = SIGNAL_TYPE_EDP; 845 846 result = link_transmitter_control(enc10, &cntl); 847 848 if (result != BP_RESULT_OK) { 849 DC_LOG_ERROR("%s: Failed to execute VBIOS command table!\n", 850 __func__); 851 BREAK_TO_DEBUGGER(); 852 return; 853 } 854 855 if (enc10->base.connector.id == CONNECTOR_ID_LVDS) { 856 cntl.action = TRANSMITTER_CONTROL_BACKLIGHT_BRIGHTNESS; 857 858 result = link_transmitter_control(enc10, &cntl); 859 860 ASSERT(result == BP_RESULT_OK); 861 862 } 863 dcn10_aux_initialize(enc10); 864 865 /* reinitialize HPD. 866 * hpd_initialize() will pass DIG_FE id to HW context. 867 * All other routine within HW context will use fe_engine_offset 868 * as DIG_FE id even caller pass DIG_FE id. 869 * So this routine must be called first. 870 */ 871 hpd_initialize(enc10); 872 } 873 dcn10_link_encoder_destroy(struct link_encoder ** enc)874 void dcn10_link_encoder_destroy(struct link_encoder **enc) 875 { 876 kfree(TO_DCN10_LINK_ENC(*enc)); 877 *enc = NULL; 878 } 879 dcn10_link_encoder_setup(struct link_encoder * enc,enum signal_type signal)880 void dcn10_link_encoder_setup( 881 struct link_encoder *enc, 882 enum signal_type signal) 883 { 884 struct dcn10_link_encoder *enc10 = TO_DCN10_LINK_ENC(enc); 885 886 switch (signal) { 887 case SIGNAL_TYPE_EDP: 888 case SIGNAL_TYPE_DISPLAY_PORT: 889 /* DP SST */ 890 REG_UPDATE(DIG_BE_CNTL, DIG_MODE, 0); 891 break; 892 case SIGNAL_TYPE_LVDS: 893 /* LVDS */ 894 REG_UPDATE(DIG_BE_CNTL, DIG_MODE, 1); 895 break; 896 case SIGNAL_TYPE_DVI_SINGLE_LINK: 897 case SIGNAL_TYPE_DVI_DUAL_LINK: 898 /* TMDS-DVI */ 899 REG_UPDATE(DIG_BE_CNTL, DIG_MODE, 2); 900 break; 901 case SIGNAL_TYPE_HDMI_TYPE_A: 902 /* TMDS-HDMI */ 903 REG_UPDATE(DIG_BE_CNTL, DIG_MODE, 3); 904 break; 905 case SIGNAL_TYPE_DISPLAY_PORT_MST: 906 /* DP MST */ 907 REG_UPDATE(DIG_BE_CNTL, DIG_MODE, 5); 908 break; 909 default: 910 ASSERT_CRITICAL(false); 911 /* invalid mode ! */ 912 break; 913 } 914 915 } 916 917 /* TODO: still need depth or just pass in adjusted pixel clock? */ dcn10_link_encoder_enable_tmds_output(struct link_encoder * enc,enum clock_source_id clock_source,enum dc_color_depth color_depth,enum signal_type signal,uint32_t pixel_clock)918 void dcn10_link_encoder_enable_tmds_output( 919 struct link_encoder *enc, 920 enum clock_source_id clock_source, 921 enum dc_color_depth color_depth, 922 enum signal_type signal, 923 uint32_t pixel_clock) 924 { 925 struct dcn10_link_encoder *enc10 = TO_DCN10_LINK_ENC(enc); 926 struct bp_transmitter_control cntl = { 0 }; 927 enum bp_result result; 928 929 /* Enable the PHY */ 930 931 cntl.action = TRANSMITTER_CONTROL_ENABLE; 932 cntl.engine_id = enc->preferred_engine; 933 cntl.transmitter = enc10->base.transmitter; 934 cntl.pll_id = clock_source; 935 cntl.signal = signal; 936 if (cntl.signal == SIGNAL_TYPE_DVI_DUAL_LINK) 937 cntl.lanes_number = 8; 938 else 939 cntl.lanes_number = 4; 940 941 cntl.hpd_sel = enc10->base.hpd_source; 942 943 cntl.pixel_clock = pixel_clock; 944 cntl.color_depth = color_depth; 945 946 result = link_transmitter_control(enc10, &cntl); 947 948 if (result != BP_RESULT_OK) { 949 DC_LOG_ERROR("%s: Failed to execute VBIOS command table!\n", 950 __func__); 951 BREAK_TO_DEBUGGER(); 952 } 953 } 954 dcn10_link_encoder_enable_tmds_output_with_clk_pattern_wa(struct link_encoder * enc,enum clock_source_id clock_source,enum dc_color_depth color_depth,enum signal_type signal,uint32_t pixel_clock)955 void dcn10_link_encoder_enable_tmds_output_with_clk_pattern_wa( 956 struct link_encoder *enc, 957 enum clock_source_id clock_source, 958 enum dc_color_depth color_depth, 959 enum signal_type signal, 960 uint32_t pixel_clock) 961 { 962 struct dcn10_link_encoder *enc10 = TO_DCN10_LINK_ENC(enc); 963 964 dcn10_link_encoder_enable_tmds_output( 965 enc, clock_source, color_depth, signal, pixel_clock); 966 967 REG_UPDATE(DIG_CLOCK_PATTERN, DIG_CLOCK_PATTERN, 0x1F); 968 } 969 970 /* enables DP PHY output */ dcn10_link_encoder_enable_dp_output(struct link_encoder * enc,const struct dc_link_settings * link_settings,enum clock_source_id clock_source)971 void dcn10_link_encoder_enable_dp_output( 972 struct link_encoder *enc, 973 const struct dc_link_settings *link_settings, 974 enum clock_source_id clock_source) 975 { 976 struct dcn10_link_encoder *enc10 = TO_DCN10_LINK_ENC(enc); 977 struct bp_transmitter_control cntl = { 0 }; 978 enum bp_result result; 979 980 /* Enable the PHY */ 981 982 /* number_of_lanes is used for pixel clock adjust, 983 * but it's not passed to asic_control. 984 * We need to set number of lanes manually. 985 */ 986 enc1_configure_encoder(enc10, link_settings); 987 988 cntl.action = TRANSMITTER_CONTROL_ENABLE; 989 cntl.engine_id = enc->preferred_engine; 990 cntl.transmitter = enc10->base.transmitter; 991 cntl.pll_id = clock_source; 992 cntl.signal = SIGNAL_TYPE_DISPLAY_PORT; 993 cntl.lanes_number = link_settings->lane_count; 994 cntl.hpd_sel = enc10->base.hpd_source; 995 cntl.pixel_clock = link_settings->link_rate 996 * LINK_RATE_REF_FREQ_IN_KHZ; 997 /* TODO: check if undefined works */ 998 cntl.color_depth = COLOR_DEPTH_UNDEFINED; 999 1000 result = link_transmitter_control(enc10, &cntl); 1001 1002 if (result != BP_RESULT_OK) { 1003 DC_LOG_ERROR("%s: Failed to execute VBIOS command table!\n", 1004 __func__); 1005 BREAK_TO_DEBUGGER(); 1006 } 1007 } 1008 1009 /* enables DP PHY output in MST mode */ dcn10_link_encoder_enable_dp_mst_output(struct link_encoder * enc,const struct dc_link_settings * link_settings,enum clock_source_id clock_source)1010 void dcn10_link_encoder_enable_dp_mst_output( 1011 struct link_encoder *enc, 1012 const struct dc_link_settings *link_settings, 1013 enum clock_source_id clock_source) 1014 { 1015 struct dcn10_link_encoder *enc10 = TO_DCN10_LINK_ENC(enc); 1016 struct bp_transmitter_control cntl = { 0 }; 1017 enum bp_result result; 1018 1019 /* Enable the PHY */ 1020 1021 /* number_of_lanes is used for pixel clock adjust, 1022 * but it's not passed to asic_control. 1023 * We need to set number of lanes manually. 1024 */ 1025 enc1_configure_encoder(enc10, link_settings); 1026 1027 cntl.action = TRANSMITTER_CONTROL_ENABLE; 1028 cntl.engine_id = ENGINE_ID_UNKNOWN; 1029 cntl.transmitter = enc10->base.transmitter; 1030 cntl.pll_id = clock_source; 1031 cntl.signal = SIGNAL_TYPE_DISPLAY_PORT_MST; 1032 cntl.lanes_number = link_settings->lane_count; 1033 cntl.hpd_sel = enc10->base.hpd_source; 1034 cntl.pixel_clock = link_settings->link_rate 1035 * LINK_RATE_REF_FREQ_IN_KHZ; 1036 /* TODO: check if undefined works */ 1037 cntl.color_depth = COLOR_DEPTH_UNDEFINED; 1038 1039 result = link_transmitter_control(enc10, &cntl); 1040 1041 if (result != BP_RESULT_OK) { 1042 DC_LOG_ERROR("%s: Failed to execute VBIOS command table!\n", 1043 __func__); 1044 BREAK_TO_DEBUGGER(); 1045 } 1046 } 1047 /* 1048 * @brief 1049 * Disable transmitter and its encoder 1050 */ dcn10_link_encoder_disable_output(struct link_encoder * enc,enum signal_type signal)1051 void dcn10_link_encoder_disable_output( 1052 struct link_encoder *enc, 1053 enum signal_type signal) 1054 { 1055 struct dcn10_link_encoder *enc10 = TO_DCN10_LINK_ENC(enc); 1056 struct bp_transmitter_control cntl = { 0 }; 1057 enum bp_result result; 1058 1059 if (enc->funcs->is_dig_enabled && !enc->funcs->is_dig_enabled(enc)) { 1060 /* OF_SKIP_POWER_DOWN_INACTIVE_ENCODER */ 1061 /*in DP_Alt_No_Connect case, we turn off the dig already, 1062 after excuation the PHY w/a sequence, not allow touch PHY any more*/ 1063 return; 1064 } 1065 /* Power-down RX and disable GPU PHY should be paired. 1066 * Disabling PHY without powering down RX may cause 1067 * symbol lock loss, on which we will get DP Sink interrupt. 1068 */ 1069 1070 /* There is a case for the DP active dongles 1071 * where we want to disable the PHY but keep RX powered, 1072 * for those we need to ignore DP Sink interrupt 1073 * by checking lane count that has been set 1074 * on the last do_enable_output(). 1075 */ 1076 1077 /* disable transmitter */ 1078 cntl.action = TRANSMITTER_CONTROL_DISABLE; 1079 cntl.transmitter = enc10->base.transmitter; 1080 cntl.hpd_sel = enc10->base.hpd_source; 1081 cntl.signal = signal; 1082 cntl.connector_obj_id = enc10->base.connector; 1083 1084 result = link_transmitter_control(enc10, &cntl); 1085 1086 if (result != BP_RESULT_OK) { 1087 DC_LOG_ERROR("%s: Failed to execute VBIOS command table!\n", 1088 __func__); 1089 BREAK_TO_DEBUGGER(); 1090 return; 1091 } 1092 1093 /* disable encoder */ 1094 if (dc_is_dp_signal(signal)) 1095 link_encoder_disable(enc10); 1096 } 1097 dcn10_link_encoder_dp_set_lane_settings(struct link_encoder * enc,const struct dc_link_settings * link_settings,const struct dc_lane_settings lane_settings[LANE_COUNT_DP_MAX])1098 void dcn10_link_encoder_dp_set_lane_settings( 1099 struct link_encoder *enc, 1100 const struct dc_link_settings *link_settings, 1101 const struct dc_lane_settings lane_settings[LANE_COUNT_DP_MAX]) 1102 { 1103 struct dcn10_link_encoder *enc10 = TO_DCN10_LINK_ENC(enc); 1104 union dpcd_training_lane_set training_lane_set = { { 0 } }; 1105 int32_t lane = 0; 1106 struct bp_transmitter_control cntl = { 0 }; 1107 enum bp_result result; 1108 1109 if (!link_settings) { 1110 BREAK_TO_DEBUGGER(); 1111 return; 1112 } 1113 1114 cntl.action = TRANSMITTER_CONTROL_SET_VOLTAGE_AND_PREEMPASIS; 1115 cntl.transmitter = enc10->base.transmitter; 1116 cntl.connector_obj_id = enc10->base.connector; 1117 cntl.lanes_number = link_settings->lane_count; 1118 cntl.hpd_sel = enc10->base.hpd_source; 1119 cntl.pixel_clock = link_settings->link_rate * LINK_RATE_REF_FREQ_IN_KHZ; 1120 1121 for (lane = 0; lane < link_settings->lane_count; lane++) { 1122 /* translate lane settings */ 1123 1124 training_lane_set.bits.VOLTAGE_SWING_SET = 1125 lane_settings[lane].VOLTAGE_SWING; 1126 training_lane_set.bits.PRE_EMPHASIS_SET = 1127 lane_settings[lane].PRE_EMPHASIS; 1128 1129 /* post cursor 2 setting only applies to HBR2 link rate */ 1130 if (link_settings->link_rate == LINK_RATE_HIGH2) { 1131 /* this is passed to VBIOS 1132 * to program post cursor 2 level 1133 */ 1134 training_lane_set.bits.POST_CURSOR2_SET = 1135 lane_settings[lane].POST_CURSOR2; 1136 } 1137 1138 cntl.lane_select = lane; 1139 cntl.lane_settings = training_lane_set.raw; 1140 1141 /* call VBIOS table to set voltage swing and pre-emphasis */ 1142 result = link_transmitter_control(enc10, &cntl); 1143 1144 if (result != BP_RESULT_OK) { 1145 DC_LOG_ERROR("%s: Failed to execute VBIOS command table!\n", __func__); 1146 BREAK_TO_DEBUGGER(); 1147 } 1148 } 1149 } 1150 1151 /* set DP PHY test and training patterns */ dcn10_link_encoder_dp_set_phy_pattern(struct link_encoder * enc,const struct encoder_set_dp_phy_pattern_param * param)1152 void dcn10_link_encoder_dp_set_phy_pattern( 1153 struct link_encoder *enc, 1154 const struct encoder_set_dp_phy_pattern_param *param) 1155 { 1156 struct dcn10_link_encoder *enc10 = TO_DCN10_LINK_ENC(enc); 1157 1158 switch (param->dp_phy_pattern) { 1159 case DP_TEST_PATTERN_TRAINING_PATTERN1: 1160 dcn10_link_encoder_set_dp_phy_pattern_training_pattern(enc, 0); 1161 break; 1162 case DP_TEST_PATTERN_TRAINING_PATTERN2: 1163 dcn10_link_encoder_set_dp_phy_pattern_training_pattern(enc, 1); 1164 break; 1165 case DP_TEST_PATTERN_TRAINING_PATTERN3: 1166 dcn10_link_encoder_set_dp_phy_pattern_training_pattern(enc, 2); 1167 break; 1168 case DP_TEST_PATTERN_TRAINING_PATTERN4: 1169 dcn10_link_encoder_set_dp_phy_pattern_training_pattern(enc, 3); 1170 break; 1171 case DP_TEST_PATTERN_D102: 1172 set_dp_phy_pattern_d102(enc10); 1173 break; 1174 case DP_TEST_PATTERN_SYMBOL_ERROR: 1175 set_dp_phy_pattern_symbol_error(enc10); 1176 break; 1177 case DP_TEST_PATTERN_PRBS7: 1178 set_dp_phy_pattern_prbs7(enc10); 1179 break; 1180 case DP_TEST_PATTERN_80BIT_CUSTOM: 1181 set_dp_phy_pattern_80bit_custom( 1182 enc10, param->custom_pattern); 1183 break; 1184 case DP_TEST_PATTERN_CP2520_1: 1185 set_dp_phy_pattern_hbr2_compliance_cp2520_2(enc10, 1); 1186 break; 1187 case DP_TEST_PATTERN_CP2520_2: 1188 set_dp_phy_pattern_hbr2_compliance_cp2520_2(enc10, 2); 1189 break; 1190 case DP_TEST_PATTERN_CP2520_3: 1191 set_dp_phy_pattern_hbr2_compliance_cp2520_2(enc10, 3); 1192 break; 1193 case DP_TEST_PATTERN_VIDEO_MODE: { 1194 set_dp_phy_pattern_passthrough_mode( 1195 enc10, param->dp_panel_mode); 1196 break; 1197 } 1198 1199 default: 1200 /* invalid phy pattern */ 1201 ASSERT_CRITICAL(false); 1202 break; 1203 } 1204 } 1205 fill_stream_allocation_row_info(const struct link_mst_stream_allocation * stream_allocation,uint32_t * src,uint32_t * slots)1206 static void fill_stream_allocation_row_info( 1207 const struct link_mst_stream_allocation *stream_allocation, 1208 uint32_t *src, 1209 uint32_t *slots) 1210 { 1211 const struct stream_encoder *stream_enc = stream_allocation->stream_enc; 1212 1213 if (stream_enc) { 1214 *src = stream_enc->id; 1215 *slots = stream_allocation->slot_count; 1216 } else { 1217 *src = 0; 1218 *slots = 0; 1219 } 1220 } 1221 1222 /* programs DP MST VC payload allocation */ dcn10_link_encoder_update_mst_stream_allocation_table(struct link_encoder * enc,const struct link_mst_stream_allocation_table * table)1223 void dcn10_link_encoder_update_mst_stream_allocation_table( 1224 struct link_encoder *enc, 1225 const struct link_mst_stream_allocation_table *table) 1226 { 1227 struct dcn10_link_encoder *enc10 = TO_DCN10_LINK_ENC(enc); 1228 uint32_t value1 = 0; 1229 uint32_t value2 = 0; 1230 uint32_t slots = 0; 1231 uint32_t src = 0; 1232 uint32_t retries = 0; 1233 1234 /* For CZ, there are only 3 pipes. So Virtual channel is up 3.*/ 1235 1236 /* --- Set MSE Stream Attribute - 1237 * Setup VC Payload Table on Tx Side, 1238 * Issue allocation change trigger 1239 * to commit payload on both tx and rx side 1240 */ 1241 1242 /* we should clean-up table each time */ 1243 1244 if (table->stream_count >= 1) { 1245 fill_stream_allocation_row_info( 1246 &table->stream_allocations[0], 1247 &src, 1248 &slots); 1249 } else { 1250 src = 0; 1251 slots = 0; 1252 } 1253 1254 REG_UPDATE_2(DP_MSE_SAT0, 1255 DP_MSE_SAT_SRC0, src, 1256 DP_MSE_SAT_SLOT_COUNT0, slots); 1257 1258 if (table->stream_count >= 2) { 1259 fill_stream_allocation_row_info( 1260 &table->stream_allocations[1], 1261 &src, 1262 &slots); 1263 } else { 1264 src = 0; 1265 slots = 0; 1266 } 1267 1268 REG_UPDATE_2(DP_MSE_SAT0, 1269 DP_MSE_SAT_SRC1, src, 1270 DP_MSE_SAT_SLOT_COUNT1, slots); 1271 1272 if (table->stream_count >= 3) { 1273 fill_stream_allocation_row_info( 1274 &table->stream_allocations[2], 1275 &src, 1276 &slots); 1277 } else { 1278 src = 0; 1279 slots = 0; 1280 } 1281 1282 REG_UPDATE_2(DP_MSE_SAT1, 1283 DP_MSE_SAT_SRC2, src, 1284 DP_MSE_SAT_SLOT_COUNT2, slots); 1285 1286 if (table->stream_count >= 4) { 1287 fill_stream_allocation_row_info( 1288 &table->stream_allocations[3], 1289 &src, 1290 &slots); 1291 } else { 1292 src = 0; 1293 slots = 0; 1294 } 1295 1296 REG_UPDATE_2(DP_MSE_SAT1, 1297 DP_MSE_SAT_SRC3, src, 1298 DP_MSE_SAT_SLOT_COUNT3, slots); 1299 1300 /* --- wait for transaction finish */ 1301 1302 /* send allocation change trigger (ACT) ? 1303 * this step first sends the ACT, 1304 * then double buffers the SAT into the hardware 1305 * making the new allocation active on the DP MST mode link 1306 */ 1307 1308 /* DP_MSE_SAT_UPDATE: 1309 * 0 - No Action 1310 * 1 - Update SAT with trigger 1311 * 2 - Update SAT without trigger 1312 */ 1313 REG_UPDATE(DP_MSE_SAT_UPDATE, 1314 DP_MSE_SAT_UPDATE, 1); 1315 1316 /* wait for update to complete 1317 * (i.e. DP_MSE_SAT_UPDATE field is reset to 0) 1318 * then wait for the transmission 1319 * of at least 16 MTP headers on immediate local link. 1320 * i.e. DP_MSE_16_MTP_KEEPOUT field (read only) is reset to 0 1321 * a value of 1 indicates that DP MST mode 1322 * is in the 16 MTP keepout region after a VC has been added. 1323 * MST stream bandwidth (VC rate) can be configured 1324 * after this bit is cleared 1325 */ 1326 do { 1327 udelay(10); 1328 1329 REG_READ(DP_MSE_SAT_UPDATE); 1330 1331 REG_GET(DP_MSE_SAT_UPDATE, 1332 DP_MSE_SAT_UPDATE, &value1); 1333 1334 REG_GET(DP_MSE_SAT_UPDATE, 1335 DP_MSE_16_MTP_KEEPOUT, &value2); 1336 1337 /* bit field DP_MSE_SAT_UPDATE is set to 1 already */ 1338 if (!value1 && !value2) 1339 break; 1340 ++retries; 1341 } while (retries < DP_MST_UPDATE_MAX_RETRY); 1342 } 1343 dcn10_link_encoder_connect_dig_be_to_fe(struct link_encoder * enc,enum engine_id engine,bool connect)1344 void dcn10_link_encoder_connect_dig_be_to_fe( 1345 struct link_encoder *enc, 1346 enum engine_id engine, 1347 bool connect) 1348 { 1349 struct dcn10_link_encoder *enc10 = TO_DCN10_LINK_ENC(enc); 1350 uint32_t field; 1351 1352 if (engine != ENGINE_ID_UNKNOWN) { 1353 1354 REG_GET(DIG_BE_CNTL, DIG_FE_SOURCE_SELECT, &field); 1355 1356 if (connect) 1357 field |= get_frontend_source(engine); 1358 else 1359 field &= ~get_frontend_source(engine); 1360 1361 REG_UPDATE(DIG_BE_CNTL, DIG_FE_SOURCE_SELECT, field); 1362 } 1363 } 1364 1365 1366 #define HPD_REG(reg)\ 1367 (enc10->hpd_regs->reg) 1368 1369 #define HPD_REG_READ(reg_name) \ 1370 dm_read_reg(CTX, HPD_REG(reg_name)) 1371 1372 #define HPD_REG_UPDATE_N(reg_name, n, ...) \ 1373 generic_reg_update_ex(CTX, \ 1374 HPD_REG(reg_name), \ 1375 n, __VA_ARGS__) 1376 1377 #define HPD_REG_UPDATE(reg_name, field, val) \ 1378 HPD_REG_UPDATE_N(reg_name, 1, \ 1379 FN(reg_name, field), val) 1380 dcn10_link_encoder_enable_hpd(struct link_encoder * enc)1381 void dcn10_link_encoder_enable_hpd(struct link_encoder *enc) 1382 { 1383 struct dcn10_link_encoder *enc10 = TO_DCN10_LINK_ENC(enc); 1384 1385 HPD_REG_UPDATE(DC_HPD_CONTROL, 1386 DC_HPD_EN, 1); 1387 } 1388 dcn10_link_encoder_disable_hpd(struct link_encoder * enc)1389 void dcn10_link_encoder_disable_hpd(struct link_encoder *enc) 1390 { 1391 struct dcn10_link_encoder *enc10 = TO_DCN10_LINK_ENC(enc); 1392 1393 HPD_REG_UPDATE(DC_HPD_CONTROL, 1394 DC_HPD_EN, 0); 1395 } 1396 1397 #define AUX_REG(reg)\ 1398 (enc10->aux_regs->reg) 1399 1400 #define AUX_REG_READ(reg_name) \ 1401 dm_read_reg(CTX, AUX_REG(reg_name)) 1402 1403 #define AUX_REG_UPDATE_N(reg_name, n, ...) \ 1404 generic_reg_update_ex(CTX, \ 1405 AUX_REG(reg_name), \ 1406 n, __VA_ARGS__) 1407 1408 #define AUX_REG_UPDATE(reg_name, field, val) \ 1409 AUX_REG_UPDATE_N(reg_name, 1, \ 1410 FN(reg_name, field), val) 1411 1412 #define AUX_REG_UPDATE_2(reg, f1, v1, f2, v2) \ 1413 AUX_REG_UPDATE_N(reg, 2,\ 1414 FN(reg, f1), v1,\ 1415 FN(reg, f2), v2) 1416 dcn10_aux_initialize(struct dcn10_link_encoder * enc10)1417 void dcn10_aux_initialize(struct dcn10_link_encoder *enc10) 1418 { 1419 enum hpd_source_id hpd_source = enc10->base.hpd_source; 1420 1421 AUX_REG_UPDATE_2(AUX_CONTROL, 1422 AUX_HPD_SEL, hpd_source, 1423 AUX_LS_READ_EN, 0); 1424 1425 /* 1/4 window (the maximum allowed) */ 1426 AUX_REG_UPDATE(AUX_DPHY_RX_CONTROL0, 1427 AUX_RX_RECEIVE_WINDOW, 0); 1428 } 1429 dcn10_get_dig_mode(struct link_encoder * enc)1430 enum signal_type dcn10_get_dig_mode( 1431 struct link_encoder *enc) 1432 { 1433 struct dcn10_link_encoder *enc10 = TO_DCN10_LINK_ENC(enc); 1434 uint32_t value; 1435 REG_GET(DIG_BE_CNTL, DIG_MODE, &value); 1436 switch (value) { 1437 case 1: 1438 return SIGNAL_TYPE_DISPLAY_PORT; 1439 case 2: 1440 return SIGNAL_TYPE_DVI_SINGLE_LINK; 1441 case 3: 1442 return SIGNAL_TYPE_HDMI_TYPE_A; 1443 case 5: 1444 return SIGNAL_TYPE_DISPLAY_PORT_MST; 1445 default: 1446 return SIGNAL_TYPE_NONE; 1447 } 1448 } 1449 dcn10_link_encoder_get_max_link_cap(struct link_encoder * enc,struct dc_link_settings * link_settings)1450 void dcn10_link_encoder_get_max_link_cap(struct link_encoder *enc, 1451 struct dc_link_settings *link_settings) 1452 { 1453 /* Set Default link settings */ 1454 struct dc_link_settings max_link_cap = {LANE_COUNT_FOUR, LINK_RATE_HIGH, 1455 LINK_SPREAD_05_DOWNSPREAD_30KHZ, false, 0}; 1456 1457 /* Higher link settings based on feature supported */ 1458 if (enc->features.flags.bits.IS_HBR2_CAPABLE) 1459 max_link_cap.link_rate = LINK_RATE_HIGH2; 1460 1461 if (enc->features.flags.bits.IS_HBR3_CAPABLE) 1462 max_link_cap.link_rate = LINK_RATE_HIGH3; 1463 1464 if (enc->features.flags.bits.IS_UHBR10_CAPABLE) 1465 max_link_cap.link_rate = LINK_RATE_UHBR10; 1466 1467 if (enc->features.flags.bits.IS_UHBR13_5_CAPABLE) 1468 max_link_cap.link_rate = LINK_RATE_UHBR13_5; 1469 1470 if (enc->features.flags.bits.IS_UHBR20_CAPABLE) 1471 max_link_cap.link_rate = LINK_RATE_UHBR20; 1472 1473 *link_settings = max_link_cap; 1474 } 1475