1 // SPDX-License-Identifier: MIT 2 /* 3 * Copyright © 2019 Intel Corporation 4 */ 5 6 #include "i915_drv.h" 7 #include "i915_reg.h" 8 #include "intel_atomic.h" 9 #include "intel_cx0_phy_regs.h" 10 #include "intel_ddi.h" 11 #include "intel_de.h" 12 #include "intel_display.h" 13 #include "intel_display_driver.h" 14 #include "intel_display_power_map.h" 15 #include "intel_display_types.h" 16 #include "intel_dkl_phy_regs.h" 17 #include "intel_dp.h" 18 #include "intel_dp_mst.h" 19 #include "intel_mg_phy_regs.h" 20 #include "intel_modeset_lock.h" 21 #include "intel_tc.h" 22 23 #define DP_PIN_ASSIGNMENT_C 0x3 24 #define DP_PIN_ASSIGNMENT_D 0x4 25 #define DP_PIN_ASSIGNMENT_E 0x5 26 27 enum tc_port_mode { 28 TC_PORT_DISCONNECTED, 29 TC_PORT_TBT_ALT, 30 TC_PORT_DP_ALT, 31 TC_PORT_LEGACY, 32 }; 33 34 struct intel_tc_port; 35 36 struct intel_tc_phy_ops { 37 enum intel_display_power_domain (*cold_off_domain)(struct intel_tc_port *tc); 38 u32 (*hpd_live_status)(struct intel_tc_port *tc); 39 bool (*is_ready)(struct intel_tc_port *tc); 40 bool (*is_owned)(struct intel_tc_port *tc); 41 void (*get_hw_state)(struct intel_tc_port *tc); 42 bool (*connect)(struct intel_tc_port *tc, int required_lanes); 43 void (*disconnect)(struct intel_tc_port *tc); 44 void (*init)(struct intel_tc_port *tc); 45 }; 46 47 struct intel_tc_port { 48 struct intel_digital_port *dig_port; 49 50 const struct intel_tc_phy_ops *phy_ops; 51 52 struct mutex lock; /* protects the TypeC port mode */ 53 intel_wakeref_t lock_wakeref; 54 #if IS_ENABLED(CONFIG_DRM_I915_DEBUG_RUNTIME_PM) 55 enum intel_display_power_domain lock_power_domain; 56 #endif 57 struct delayed_work disconnect_phy_work; 58 struct delayed_work link_reset_work; 59 int link_refcount; 60 bool legacy_port:1; 61 const char *port_name; 62 enum tc_port_mode mode; 63 enum tc_port_mode init_mode; 64 enum phy_fia phy_fia; 65 u8 phy_fia_idx; 66 }; 67 68 static enum intel_display_power_domain 69 tc_phy_cold_off_domain(struct intel_tc_port *); 70 static u32 tc_phy_hpd_live_status(struct intel_tc_port *tc); 71 static bool tc_phy_is_ready(struct intel_tc_port *tc); 72 static bool tc_phy_wait_for_ready(struct intel_tc_port *tc); 73 static enum tc_port_mode tc_phy_get_current_mode(struct intel_tc_port *tc); 74 75 static const char *tc_port_mode_name(enum tc_port_mode mode) 76 { 77 static const char * const names[] = { 78 [TC_PORT_DISCONNECTED] = "disconnected", 79 [TC_PORT_TBT_ALT] = "tbt-alt", 80 [TC_PORT_DP_ALT] = "dp-alt", 81 [TC_PORT_LEGACY] = "legacy", 82 }; 83 84 if (WARN_ON(mode >= ARRAY_SIZE(names))) 85 mode = TC_PORT_DISCONNECTED; 86 87 return names[mode]; 88 } 89 90 static struct intel_tc_port *to_tc_port(struct intel_digital_port *dig_port) 91 { 92 return dig_port->tc; 93 } 94 95 static struct drm_i915_private *tc_to_i915(struct intel_tc_port *tc) 96 { 97 return to_i915(tc->dig_port->base.base.dev); 98 } 99 100 static bool intel_tc_port_in_mode(struct intel_digital_port *dig_port, 101 enum tc_port_mode mode) 102 { 103 struct intel_tc_port *tc = to_tc_port(dig_port); 104 105 return intel_encoder_is_tc(&dig_port->base) && tc->mode == mode; 106 } 107 108 bool intel_tc_port_in_tbt_alt_mode(struct intel_digital_port *dig_port) 109 { 110 return intel_tc_port_in_mode(dig_port, TC_PORT_TBT_ALT); 111 } 112 113 bool intel_tc_port_in_dp_alt_mode(struct intel_digital_port *dig_port) 114 { 115 return intel_tc_port_in_mode(dig_port, TC_PORT_DP_ALT); 116 } 117 118 bool intel_tc_port_in_legacy_mode(struct intel_digital_port *dig_port) 119 { 120 return intel_tc_port_in_mode(dig_port, TC_PORT_LEGACY); 121 } 122 123 bool intel_tc_port_handles_hpd_glitches(struct intel_digital_port *dig_port) 124 { 125 struct intel_tc_port *tc = to_tc_port(dig_port); 126 127 return intel_encoder_is_tc(&dig_port->base) && !tc->legacy_port; 128 } 129 130 /* 131 * The display power domains used for TC ports depending on the 132 * platform and TC mode (legacy, DP-alt, TBT): 133 * 134 * POWER_DOMAIN_DISPLAY_CORE: 135 * -------------------------- 136 * ADLP/all modes: 137 * - TCSS/IOM access for PHY ready state. 138 * ADLP+/all modes: 139 * - DE/north-,south-HPD ISR access for HPD live state. 140 * 141 * POWER_DOMAIN_PORT_DDI_LANES_<port>: 142 * ----------------------------------- 143 * ICL+/all modes: 144 * - DE/DDI_BUF access for port enabled state. 145 * ADLP/all modes: 146 * - DE/DDI_BUF access for PHY owned state. 147 * 148 * POWER_DOMAIN_AUX_USBC<TC port index>: 149 * ------------------------------------- 150 * ICL/legacy mode: 151 * - TCSS/IOM,FIA access for PHY ready, owned and HPD live state 152 * - TCSS/PHY: block TC-cold power state for using the PHY AUX and 153 * main lanes. 154 * ADLP/legacy, DP-alt modes: 155 * - TCSS/PHY: block TC-cold power state for using the PHY AUX and 156 * main lanes. 157 * 158 * POWER_DOMAIN_TC_COLD_OFF: 159 * ------------------------- 160 * ICL/DP-alt, TBT mode: 161 * - TCSS/TBT: block TC-cold power state for using the (direct or 162 * TBT DP-IN) AUX and main lanes. 163 * 164 * TGL/all modes: 165 * - TCSS/IOM,FIA access for PHY ready, owned and HPD live state 166 * - TCSS/PHY: block TC-cold power state for using the (direct or 167 * TBT DP-IN) AUX and main lanes. 168 * 169 * ADLP/TBT mode: 170 * - TCSS/TBT: block TC-cold power state for using the (TBT DP-IN) 171 * AUX and main lanes. 172 * 173 * XELPDP+/all modes: 174 * - TCSS/IOM,FIA access for PHY ready, owned state 175 * - TCSS/PHY: block TC-cold power state for using the (direct or 176 * TBT DP-IN) AUX and main lanes. 177 */ 178 bool intel_tc_cold_requires_aux_pw(struct intel_digital_port *dig_port) 179 { 180 struct drm_i915_private *i915 = to_i915(dig_port->base.base.dev); 181 struct intel_tc_port *tc = to_tc_port(dig_port); 182 183 return tc_phy_cold_off_domain(tc) == 184 intel_display_power_legacy_aux_domain(i915, dig_port->aux_ch); 185 } 186 187 static intel_wakeref_t 188 __tc_cold_block(struct intel_tc_port *tc, enum intel_display_power_domain *domain) 189 { 190 struct drm_i915_private *i915 = tc_to_i915(tc); 191 192 *domain = tc_phy_cold_off_domain(tc); 193 194 return intel_display_power_get(i915, *domain); 195 } 196 197 static intel_wakeref_t 198 tc_cold_block(struct intel_tc_port *tc) 199 { 200 enum intel_display_power_domain domain; 201 intel_wakeref_t wakeref; 202 203 wakeref = __tc_cold_block(tc, &domain); 204 #if IS_ENABLED(CONFIG_DRM_I915_DEBUG_RUNTIME_PM) 205 tc->lock_power_domain = domain; 206 #endif 207 return wakeref; 208 } 209 210 static void 211 __tc_cold_unblock(struct intel_tc_port *tc, enum intel_display_power_domain domain, 212 intel_wakeref_t wakeref) 213 { 214 struct drm_i915_private *i915 = tc_to_i915(tc); 215 216 intel_display_power_put(i915, domain, wakeref); 217 } 218 219 static void 220 tc_cold_unblock(struct intel_tc_port *tc, intel_wakeref_t wakeref) 221 { 222 enum intel_display_power_domain domain = tc_phy_cold_off_domain(tc); 223 224 #if IS_ENABLED(CONFIG_DRM_I915_DEBUG_RUNTIME_PM) 225 drm_WARN_ON(&tc_to_i915(tc)->drm, tc->lock_power_domain != domain); 226 #endif 227 __tc_cold_unblock(tc, domain, wakeref); 228 } 229 230 static void 231 assert_display_core_power_enabled(struct intel_tc_port *tc) 232 { 233 struct drm_i915_private *i915 = tc_to_i915(tc); 234 235 drm_WARN_ON(&i915->drm, 236 !intel_display_power_is_enabled(i915, POWER_DOMAIN_DISPLAY_CORE)); 237 } 238 239 static void 240 assert_tc_cold_blocked(struct intel_tc_port *tc) 241 { 242 struct drm_i915_private *i915 = tc_to_i915(tc); 243 bool enabled; 244 245 enabled = intel_display_power_is_enabled(i915, 246 tc_phy_cold_off_domain(tc)); 247 drm_WARN_ON(&i915->drm, !enabled); 248 } 249 250 static enum intel_display_power_domain 251 tc_port_power_domain(struct intel_tc_port *tc) 252 { 253 enum tc_port tc_port = intel_encoder_to_tc(&tc->dig_port->base); 254 255 return POWER_DOMAIN_PORT_DDI_LANES_TC1 + tc_port - TC_PORT_1; 256 } 257 258 static void 259 assert_tc_port_power_enabled(struct intel_tc_port *tc) 260 { 261 struct drm_i915_private *i915 = tc_to_i915(tc); 262 263 drm_WARN_ON(&i915->drm, 264 !intel_display_power_is_enabled(i915, tc_port_power_domain(tc))); 265 } 266 267 static u32 intel_tc_port_get_lane_mask(struct intel_digital_port *dig_port) 268 { 269 struct drm_i915_private *i915 = to_i915(dig_port->base.base.dev); 270 struct intel_tc_port *tc = to_tc_port(dig_port); 271 u32 lane_mask; 272 273 lane_mask = intel_de_read(i915, PORT_TX_DFLEXDPSP(tc->phy_fia)); 274 275 drm_WARN_ON(&i915->drm, lane_mask == 0xffffffff); 276 assert_tc_cold_blocked(tc); 277 278 lane_mask &= DP_LANE_ASSIGNMENT_MASK(tc->phy_fia_idx); 279 return lane_mask >> DP_LANE_ASSIGNMENT_SHIFT(tc->phy_fia_idx); 280 } 281 282 u32 intel_tc_port_get_pin_assignment_mask(struct intel_digital_port *dig_port) 283 { 284 struct drm_i915_private *i915 = to_i915(dig_port->base.base.dev); 285 struct intel_tc_port *tc = to_tc_port(dig_port); 286 u32 pin_mask; 287 288 pin_mask = intel_de_read(i915, PORT_TX_DFLEXPA1(tc->phy_fia)); 289 290 drm_WARN_ON(&i915->drm, pin_mask == 0xffffffff); 291 assert_tc_cold_blocked(tc); 292 293 return (pin_mask & DP_PIN_ASSIGNMENT_MASK(tc->phy_fia_idx)) >> 294 DP_PIN_ASSIGNMENT_SHIFT(tc->phy_fia_idx); 295 } 296 297 static int lnl_tc_port_get_max_lane_count(struct intel_digital_port *dig_port) 298 { 299 struct drm_i915_private *i915 = to_i915(dig_port->base.base.dev); 300 enum tc_port tc_port = intel_encoder_to_tc(&dig_port->base); 301 intel_wakeref_t wakeref; 302 u32 val, pin_assignment; 303 304 with_intel_display_power(i915, POWER_DOMAIN_DISPLAY_CORE, wakeref) 305 val = intel_de_read(i915, TCSS_DDI_STATUS(tc_port)); 306 307 pin_assignment = 308 REG_FIELD_GET(TCSS_DDI_STATUS_PIN_ASSIGNMENT_MASK, val); 309 310 switch (pin_assignment) { 311 default: 312 MISSING_CASE(pin_assignment); 313 fallthrough; 314 case DP_PIN_ASSIGNMENT_D: 315 return 2; 316 case DP_PIN_ASSIGNMENT_C: 317 case DP_PIN_ASSIGNMENT_E: 318 return 4; 319 } 320 } 321 322 static int mtl_tc_port_get_max_lane_count(struct intel_digital_port *dig_port) 323 { 324 struct drm_i915_private *i915 = to_i915(dig_port->base.base.dev); 325 intel_wakeref_t wakeref; 326 u32 pin_mask; 327 328 with_intel_display_power(i915, POWER_DOMAIN_DISPLAY_CORE, wakeref) 329 pin_mask = intel_tc_port_get_pin_assignment_mask(dig_port); 330 331 switch (pin_mask) { 332 default: 333 MISSING_CASE(pin_mask); 334 fallthrough; 335 case DP_PIN_ASSIGNMENT_D: 336 return 2; 337 case DP_PIN_ASSIGNMENT_C: 338 case DP_PIN_ASSIGNMENT_E: 339 return 4; 340 } 341 } 342 343 static int intel_tc_port_get_max_lane_count(struct intel_digital_port *dig_port) 344 { 345 struct drm_i915_private *i915 = to_i915(dig_port->base.base.dev); 346 intel_wakeref_t wakeref; 347 u32 lane_mask = 0; 348 349 with_intel_display_power(i915, POWER_DOMAIN_DISPLAY_CORE, wakeref) 350 lane_mask = intel_tc_port_get_lane_mask(dig_port); 351 352 switch (lane_mask) { 353 default: 354 MISSING_CASE(lane_mask); 355 fallthrough; 356 case 0x1: 357 case 0x2: 358 case 0x4: 359 case 0x8: 360 return 1; 361 case 0x3: 362 case 0xc: 363 return 2; 364 case 0xf: 365 return 4; 366 } 367 } 368 369 int intel_tc_port_max_lane_count(struct intel_digital_port *dig_port) 370 { 371 struct drm_i915_private *i915 = to_i915(dig_port->base.base.dev); 372 struct intel_tc_port *tc = to_tc_port(dig_port); 373 374 if (!intel_encoder_is_tc(&dig_port->base) || tc->mode != TC_PORT_DP_ALT) 375 return 4; 376 377 assert_tc_cold_blocked(tc); 378 379 if (DISPLAY_VER(i915) >= 20) 380 return lnl_tc_port_get_max_lane_count(dig_port); 381 382 if (DISPLAY_VER(i915) >= 14) 383 return mtl_tc_port_get_max_lane_count(dig_port); 384 385 return intel_tc_port_get_max_lane_count(dig_port); 386 } 387 388 void intel_tc_port_set_fia_lane_count(struct intel_digital_port *dig_port, 389 int required_lanes) 390 { 391 struct drm_i915_private *i915 = to_i915(dig_port->base.base.dev); 392 struct intel_tc_port *tc = to_tc_port(dig_port); 393 bool lane_reversal = dig_port->lane_reversal; 394 u32 val; 395 396 if (DISPLAY_VER(i915) >= 14) 397 return; 398 399 drm_WARN_ON(&i915->drm, 400 lane_reversal && tc->mode != TC_PORT_LEGACY); 401 402 assert_tc_cold_blocked(tc); 403 404 val = intel_de_read(i915, PORT_TX_DFLEXDPMLE1(tc->phy_fia)); 405 val &= ~DFLEXDPMLE1_DPMLETC_MASK(tc->phy_fia_idx); 406 407 switch (required_lanes) { 408 case 1: 409 val |= lane_reversal ? 410 DFLEXDPMLE1_DPMLETC_ML3(tc->phy_fia_idx) : 411 DFLEXDPMLE1_DPMLETC_ML0(tc->phy_fia_idx); 412 break; 413 case 2: 414 val |= lane_reversal ? 415 DFLEXDPMLE1_DPMLETC_ML3_2(tc->phy_fia_idx) : 416 DFLEXDPMLE1_DPMLETC_ML1_0(tc->phy_fia_idx); 417 break; 418 case 4: 419 val |= DFLEXDPMLE1_DPMLETC_ML3_0(tc->phy_fia_idx); 420 break; 421 default: 422 MISSING_CASE(required_lanes); 423 } 424 425 intel_de_write(i915, PORT_TX_DFLEXDPMLE1(tc->phy_fia), val); 426 } 427 428 static void tc_port_fixup_legacy_flag(struct intel_tc_port *tc, 429 u32 live_status_mask) 430 { 431 struct drm_i915_private *i915 = tc_to_i915(tc); 432 u32 valid_hpd_mask; 433 434 drm_WARN_ON(&i915->drm, tc->mode != TC_PORT_DISCONNECTED); 435 436 if (hweight32(live_status_mask) != 1) 437 return; 438 439 if (tc->legacy_port) 440 valid_hpd_mask = BIT(TC_PORT_LEGACY); 441 else 442 valid_hpd_mask = BIT(TC_PORT_DP_ALT) | 443 BIT(TC_PORT_TBT_ALT); 444 445 if (!(live_status_mask & ~valid_hpd_mask)) 446 return; 447 448 /* If live status mismatches the VBT flag, trust the live status. */ 449 drm_dbg_kms(&i915->drm, 450 "Port %s: live status %08x mismatches the legacy port flag %08x, fixing flag\n", 451 tc->port_name, live_status_mask, valid_hpd_mask); 452 453 tc->legacy_port = !tc->legacy_port; 454 } 455 456 static void tc_phy_load_fia_params(struct intel_tc_port *tc, bool modular_fia) 457 { 458 enum tc_port tc_port = intel_encoder_to_tc(&tc->dig_port->base); 459 460 /* 461 * Each Modular FIA instance houses 2 TC ports. In SOC that has more 462 * than two TC ports, there are multiple instances of Modular FIA. 463 */ 464 if (modular_fia) { 465 tc->phy_fia = tc_port / 2; 466 tc->phy_fia_idx = tc_port % 2; 467 } else { 468 tc->phy_fia = FIA1; 469 tc->phy_fia_idx = tc_port; 470 } 471 } 472 473 /* 474 * ICL TC PHY handlers 475 * ------------------- 476 */ 477 static enum intel_display_power_domain 478 icl_tc_phy_cold_off_domain(struct intel_tc_port *tc) 479 { 480 struct drm_i915_private *i915 = tc_to_i915(tc); 481 struct intel_digital_port *dig_port = tc->dig_port; 482 483 if (tc->legacy_port) 484 return intel_display_power_legacy_aux_domain(i915, dig_port->aux_ch); 485 486 return POWER_DOMAIN_TC_COLD_OFF; 487 } 488 489 static u32 icl_tc_phy_hpd_live_status(struct intel_tc_port *tc) 490 { 491 struct drm_i915_private *i915 = tc_to_i915(tc); 492 struct intel_digital_port *dig_port = tc->dig_port; 493 u32 isr_bit = i915->display.hotplug.pch_hpd[dig_port->base.hpd_pin]; 494 intel_wakeref_t wakeref; 495 u32 fia_isr; 496 u32 pch_isr; 497 u32 mask = 0; 498 499 with_intel_display_power(i915, tc_phy_cold_off_domain(tc), wakeref) { 500 fia_isr = intel_de_read(i915, PORT_TX_DFLEXDPSP(tc->phy_fia)); 501 pch_isr = intel_de_read(i915, SDEISR); 502 } 503 504 if (fia_isr == 0xffffffff) { 505 drm_dbg_kms(&i915->drm, 506 "Port %s: PHY in TCCOLD, nothing connected\n", 507 tc->port_name); 508 return mask; 509 } 510 511 if (fia_isr & TC_LIVE_STATE_TBT(tc->phy_fia_idx)) 512 mask |= BIT(TC_PORT_TBT_ALT); 513 if (fia_isr & TC_LIVE_STATE_TC(tc->phy_fia_idx)) 514 mask |= BIT(TC_PORT_DP_ALT); 515 516 if (pch_isr & isr_bit) 517 mask |= BIT(TC_PORT_LEGACY); 518 519 return mask; 520 } 521 522 /* 523 * Return the PHY status complete flag indicating that display can acquire the 524 * PHY ownership. The IOM firmware sets this flag when a DP-alt or legacy sink 525 * is connected and it's ready to switch the ownership to display. The flag 526 * will be left cleared when a TBT-alt sink is connected, where the PHY is 527 * owned by the TBT subsystem and so switching the ownership to display is not 528 * required. 529 */ 530 static bool icl_tc_phy_is_ready(struct intel_tc_port *tc) 531 { 532 struct drm_i915_private *i915 = tc_to_i915(tc); 533 u32 val; 534 535 assert_tc_cold_blocked(tc); 536 537 val = intel_de_read(i915, PORT_TX_DFLEXDPPMS(tc->phy_fia)); 538 if (val == 0xffffffff) { 539 drm_dbg_kms(&i915->drm, 540 "Port %s: PHY in TCCOLD, assuming not ready\n", 541 tc->port_name); 542 return false; 543 } 544 545 return val & DP_PHY_MODE_STATUS_COMPLETED(tc->phy_fia_idx); 546 } 547 548 static bool icl_tc_phy_take_ownership(struct intel_tc_port *tc, 549 bool take) 550 { 551 struct drm_i915_private *i915 = tc_to_i915(tc); 552 u32 val; 553 554 assert_tc_cold_blocked(tc); 555 556 val = intel_de_read(i915, PORT_TX_DFLEXDPCSSS(tc->phy_fia)); 557 if (val == 0xffffffff) { 558 drm_dbg_kms(&i915->drm, 559 "Port %s: PHY in TCCOLD, can't %s ownership\n", 560 tc->port_name, take ? "take" : "release"); 561 562 return false; 563 } 564 565 val &= ~DP_PHY_MODE_STATUS_NOT_SAFE(tc->phy_fia_idx); 566 if (take) 567 val |= DP_PHY_MODE_STATUS_NOT_SAFE(tc->phy_fia_idx); 568 569 intel_de_write(i915, PORT_TX_DFLEXDPCSSS(tc->phy_fia), val); 570 571 return true; 572 } 573 574 static bool icl_tc_phy_is_owned(struct intel_tc_port *tc) 575 { 576 struct drm_i915_private *i915 = tc_to_i915(tc); 577 u32 val; 578 579 assert_tc_cold_blocked(tc); 580 581 val = intel_de_read(i915, PORT_TX_DFLEXDPCSSS(tc->phy_fia)); 582 if (val == 0xffffffff) { 583 drm_dbg_kms(&i915->drm, 584 "Port %s: PHY in TCCOLD, assume not owned\n", 585 tc->port_name); 586 return false; 587 } 588 589 return val & DP_PHY_MODE_STATUS_NOT_SAFE(tc->phy_fia_idx); 590 } 591 592 static void icl_tc_phy_get_hw_state(struct intel_tc_port *tc) 593 { 594 enum intel_display_power_domain domain; 595 intel_wakeref_t tc_cold_wref; 596 597 tc_cold_wref = __tc_cold_block(tc, &domain); 598 599 tc->mode = tc_phy_get_current_mode(tc); 600 if (tc->mode != TC_PORT_DISCONNECTED) 601 tc->lock_wakeref = tc_cold_block(tc); 602 603 __tc_cold_unblock(tc, domain, tc_cold_wref); 604 } 605 606 /* 607 * This function implements the first part of the Connect Flow described by our 608 * specification, Gen11 TypeC Programming chapter. The rest of the flow (reading 609 * lanes, EDID, etc) is done as needed in the typical places. 610 * 611 * Unlike the other ports, type-C ports are not available to use as soon as we 612 * get a hotplug. The type-C PHYs can be shared between multiple controllers: 613 * display, USB, etc. As a result, handshaking through FIA is required around 614 * connect and disconnect to cleanly transfer ownership with the controller and 615 * set the type-C power state. 616 */ 617 static bool tc_phy_verify_legacy_or_dp_alt_mode(struct intel_tc_port *tc, 618 int required_lanes) 619 { 620 struct drm_i915_private *i915 = tc_to_i915(tc); 621 struct intel_digital_port *dig_port = tc->dig_port; 622 int max_lanes; 623 624 max_lanes = intel_tc_port_max_lane_count(dig_port); 625 if (tc->mode == TC_PORT_LEGACY) { 626 drm_WARN_ON(&i915->drm, max_lanes != 4); 627 return true; 628 } 629 630 drm_WARN_ON(&i915->drm, tc->mode != TC_PORT_DP_ALT); 631 632 /* 633 * Now we have to re-check the live state, in case the port recently 634 * became disconnected. Not necessary for legacy mode. 635 */ 636 if (!(tc_phy_hpd_live_status(tc) & BIT(TC_PORT_DP_ALT))) { 637 drm_dbg_kms(&i915->drm, "Port %s: PHY sudden disconnect\n", 638 tc->port_name); 639 return false; 640 } 641 642 if (max_lanes < required_lanes) { 643 drm_dbg_kms(&i915->drm, 644 "Port %s: PHY max lanes %d < required lanes %d\n", 645 tc->port_name, 646 max_lanes, required_lanes); 647 return false; 648 } 649 650 return true; 651 } 652 653 static bool icl_tc_phy_connect(struct intel_tc_port *tc, 654 int required_lanes) 655 { 656 struct drm_i915_private *i915 = tc_to_i915(tc); 657 658 tc->lock_wakeref = tc_cold_block(tc); 659 660 if (tc->mode == TC_PORT_TBT_ALT) 661 return true; 662 663 if ((!tc_phy_is_ready(tc) || 664 !icl_tc_phy_take_ownership(tc, true)) && 665 !drm_WARN_ON(&i915->drm, tc->mode == TC_PORT_LEGACY)) { 666 drm_dbg_kms(&i915->drm, "Port %s: can't take PHY ownership (ready %s)\n", 667 tc->port_name, 668 str_yes_no(tc_phy_is_ready(tc))); 669 goto out_unblock_tc_cold; 670 } 671 672 673 if (!tc_phy_verify_legacy_or_dp_alt_mode(tc, required_lanes)) 674 goto out_release_phy; 675 676 return true; 677 678 out_release_phy: 679 icl_tc_phy_take_ownership(tc, false); 680 out_unblock_tc_cold: 681 tc_cold_unblock(tc, fetch_and_zero(&tc->lock_wakeref)); 682 683 return false; 684 } 685 686 /* 687 * See the comment at the connect function. This implements the Disconnect 688 * Flow. 689 */ 690 static void icl_tc_phy_disconnect(struct intel_tc_port *tc) 691 { 692 switch (tc->mode) { 693 case TC_PORT_LEGACY: 694 case TC_PORT_DP_ALT: 695 icl_tc_phy_take_ownership(tc, false); 696 fallthrough; 697 case TC_PORT_TBT_ALT: 698 tc_cold_unblock(tc, fetch_and_zero(&tc->lock_wakeref)); 699 break; 700 default: 701 MISSING_CASE(tc->mode); 702 } 703 } 704 705 static void icl_tc_phy_init(struct intel_tc_port *tc) 706 { 707 tc_phy_load_fia_params(tc, false); 708 } 709 710 static const struct intel_tc_phy_ops icl_tc_phy_ops = { 711 .cold_off_domain = icl_tc_phy_cold_off_domain, 712 .hpd_live_status = icl_tc_phy_hpd_live_status, 713 .is_ready = icl_tc_phy_is_ready, 714 .is_owned = icl_tc_phy_is_owned, 715 .get_hw_state = icl_tc_phy_get_hw_state, 716 .connect = icl_tc_phy_connect, 717 .disconnect = icl_tc_phy_disconnect, 718 .init = icl_tc_phy_init, 719 }; 720 721 /* 722 * TGL TC PHY handlers 723 * ------------------- 724 */ 725 static enum intel_display_power_domain 726 tgl_tc_phy_cold_off_domain(struct intel_tc_port *tc) 727 { 728 return POWER_DOMAIN_TC_COLD_OFF; 729 } 730 731 static void tgl_tc_phy_init(struct intel_tc_port *tc) 732 { 733 struct drm_i915_private *i915 = tc_to_i915(tc); 734 intel_wakeref_t wakeref; 735 u32 val; 736 737 with_intel_display_power(i915, tc_phy_cold_off_domain(tc), wakeref) 738 val = intel_de_read(i915, PORT_TX_DFLEXDPSP(FIA1)); 739 740 drm_WARN_ON(&i915->drm, val == 0xffffffff); 741 742 tc_phy_load_fia_params(tc, val & MODULAR_FIA_MASK); 743 } 744 745 static const struct intel_tc_phy_ops tgl_tc_phy_ops = { 746 .cold_off_domain = tgl_tc_phy_cold_off_domain, 747 .hpd_live_status = icl_tc_phy_hpd_live_status, 748 .is_ready = icl_tc_phy_is_ready, 749 .is_owned = icl_tc_phy_is_owned, 750 .get_hw_state = icl_tc_phy_get_hw_state, 751 .connect = icl_tc_phy_connect, 752 .disconnect = icl_tc_phy_disconnect, 753 .init = tgl_tc_phy_init, 754 }; 755 756 /* 757 * ADLP TC PHY handlers 758 * -------------------- 759 */ 760 static enum intel_display_power_domain 761 adlp_tc_phy_cold_off_domain(struct intel_tc_port *tc) 762 { 763 struct drm_i915_private *i915 = tc_to_i915(tc); 764 struct intel_digital_port *dig_port = tc->dig_port; 765 766 if (tc->mode != TC_PORT_TBT_ALT) 767 return intel_display_power_legacy_aux_domain(i915, dig_port->aux_ch); 768 769 return POWER_DOMAIN_TC_COLD_OFF; 770 } 771 772 static u32 adlp_tc_phy_hpd_live_status(struct intel_tc_port *tc) 773 { 774 struct drm_i915_private *i915 = tc_to_i915(tc); 775 struct intel_digital_port *dig_port = tc->dig_port; 776 enum hpd_pin hpd_pin = dig_port->base.hpd_pin; 777 u32 cpu_isr_bits = i915->display.hotplug.hpd[hpd_pin]; 778 u32 pch_isr_bit = i915->display.hotplug.pch_hpd[hpd_pin]; 779 intel_wakeref_t wakeref; 780 u32 cpu_isr; 781 u32 pch_isr; 782 u32 mask = 0; 783 784 with_intel_display_power(i915, POWER_DOMAIN_DISPLAY_CORE, wakeref) { 785 cpu_isr = intel_de_read(i915, GEN11_DE_HPD_ISR); 786 pch_isr = intel_de_read(i915, SDEISR); 787 } 788 789 if (cpu_isr & (cpu_isr_bits & GEN11_DE_TC_HOTPLUG_MASK)) 790 mask |= BIT(TC_PORT_DP_ALT); 791 if (cpu_isr & (cpu_isr_bits & GEN11_DE_TBT_HOTPLUG_MASK)) 792 mask |= BIT(TC_PORT_TBT_ALT); 793 794 if (pch_isr & pch_isr_bit) 795 mask |= BIT(TC_PORT_LEGACY); 796 797 return mask; 798 } 799 800 /* 801 * Return the PHY status complete flag indicating that display can acquire the 802 * PHY ownership. The IOM firmware sets this flag when it's ready to switch 803 * the ownership to display, regardless of what sink is connected (TBT-alt, 804 * DP-alt, legacy or nothing). For TBT-alt sinks the PHY is owned by the TBT 805 * subsystem and so switching the ownership to display is not required. 806 */ 807 static bool adlp_tc_phy_is_ready(struct intel_tc_port *tc) 808 { 809 struct drm_i915_private *i915 = tc_to_i915(tc); 810 enum tc_port tc_port = intel_encoder_to_tc(&tc->dig_port->base); 811 u32 val; 812 813 assert_display_core_power_enabled(tc); 814 815 val = intel_de_read(i915, TCSS_DDI_STATUS(tc_port)); 816 if (val == 0xffffffff) { 817 drm_dbg_kms(&i915->drm, 818 "Port %s: PHY in TCCOLD, assuming not ready\n", 819 tc->port_name); 820 return false; 821 } 822 823 return val & TCSS_DDI_STATUS_READY; 824 } 825 826 static bool adlp_tc_phy_take_ownership(struct intel_tc_port *tc, 827 bool take) 828 { 829 struct drm_i915_private *i915 = tc_to_i915(tc); 830 enum port port = tc->dig_port->base.port; 831 832 assert_tc_port_power_enabled(tc); 833 834 intel_de_rmw(i915, DDI_BUF_CTL(port), DDI_BUF_CTL_TC_PHY_OWNERSHIP, 835 take ? DDI_BUF_CTL_TC_PHY_OWNERSHIP : 0); 836 837 return true; 838 } 839 840 static bool adlp_tc_phy_is_owned(struct intel_tc_port *tc) 841 { 842 struct drm_i915_private *i915 = tc_to_i915(tc); 843 enum port port = tc->dig_port->base.port; 844 u32 val; 845 846 assert_tc_port_power_enabled(tc); 847 848 val = intel_de_read(i915, DDI_BUF_CTL(port)); 849 return val & DDI_BUF_CTL_TC_PHY_OWNERSHIP; 850 } 851 852 static void adlp_tc_phy_get_hw_state(struct intel_tc_port *tc) 853 { 854 struct drm_i915_private *i915 = tc_to_i915(tc); 855 enum intel_display_power_domain port_power_domain = 856 tc_port_power_domain(tc); 857 intel_wakeref_t port_wakeref; 858 859 port_wakeref = intel_display_power_get(i915, port_power_domain); 860 861 tc->mode = tc_phy_get_current_mode(tc); 862 if (tc->mode != TC_PORT_DISCONNECTED) 863 tc->lock_wakeref = tc_cold_block(tc); 864 865 intel_display_power_put(i915, port_power_domain, port_wakeref); 866 } 867 868 static bool adlp_tc_phy_connect(struct intel_tc_port *tc, int required_lanes) 869 { 870 struct drm_i915_private *i915 = tc_to_i915(tc); 871 enum intel_display_power_domain port_power_domain = 872 tc_port_power_domain(tc); 873 intel_wakeref_t port_wakeref; 874 875 if (tc->mode == TC_PORT_TBT_ALT) { 876 tc->lock_wakeref = tc_cold_block(tc); 877 return true; 878 } 879 880 port_wakeref = intel_display_power_get(i915, port_power_domain); 881 882 if (!adlp_tc_phy_take_ownership(tc, true) && 883 !drm_WARN_ON(&i915->drm, tc->mode == TC_PORT_LEGACY)) { 884 drm_dbg_kms(&i915->drm, "Port %s: can't take PHY ownership\n", 885 tc->port_name); 886 goto out_put_port_power; 887 } 888 889 if (!tc_phy_is_ready(tc) && 890 !drm_WARN_ON(&i915->drm, tc->mode == TC_PORT_LEGACY)) { 891 drm_dbg_kms(&i915->drm, "Port %s: PHY not ready\n", 892 tc->port_name); 893 goto out_release_phy; 894 } 895 896 tc->lock_wakeref = tc_cold_block(tc); 897 898 if (!tc_phy_verify_legacy_or_dp_alt_mode(tc, required_lanes)) 899 goto out_unblock_tc_cold; 900 901 intel_display_power_put(i915, port_power_domain, port_wakeref); 902 903 return true; 904 905 out_unblock_tc_cold: 906 tc_cold_unblock(tc, fetch_and_zero(&tc->lock_wakeref)); 907 out_release_phy: 908 adlp_tc_phy_take_ownership(tc, false); 909 out_put_port_power: 910 intel_display_power_put(i915, port_power_domain, port_wakeref); 911 912 return false; 913 } 914 915 static void adlp_tc_phy_disconnect(struct intel_tc_port *tc) 916 { 917 struct drm_i915_private *i915 = tc_to_i915(tc); 918 enum intel_display_power_domain port_power_domain = 919 tc_port_power_domain(tc); 920 intel_wakeref_t port_wakeref; 921 922 port_wakeref = intel_display_power_get(i915, port_power_domain); 923 924 tc_cold_unblock(tc, fetch_and_zero(&tc->lock_wakeref)); 925 926 switch (tc->mode) { 927 case TC_PORT_LEGACY: 928 case TC_PORT_DP_ALT: 929 adlp_tc_phy_take_ownership(tc, false); 930 fallthrough; 931 case TC_PORT_TBT_ALT: 932 break; 933 default: 934 MISSING_CASE(tc->mode); 935 } 936 937 intel_display_power_put(i915, port_power_domain, port_wakeref); 938 } 939 940 static void adlp_tc_phy_init(struct intel_tc_port *tc) 941 { 942 tc_phy_load_fia_params(tc, true); 943 } 944 945 static const struct intel_tc_phy_ops adlp_tc_phy_ops = { 946 .cold_off_domain = adlp_tc_phy_cold_off_domain, 947 .hpd_live_status = adlp_tc_phy_hpd_live_status, 948 .is_ready = adlp_tc_phy_is_ready, 949 .is_owned = adlp_tc_phy_is_owned, 950 .get_hw_state = adlp_tc_phy_get_hw_state, 951 .connect = adlp_tc_phy_connect, 952 .disconnect = adlp_tc_phy_disconnect, 953 .init = adlp_tc_phy_init, 954 }; 955 956 /* 957 * XELPDP TC PHY handlers 958 * ---------------------- 959 */ 960 static u32 xelpdp_tc_phy_hpd_live_status(struct intel_tc_port *tc) 961 { 962 struct drm_i915_private *i915 = tc_to_i915(tc); 963 struct intel_digital_port *dig_port = tc->dig_port; 964 enum hpd_pin hpd_pin = dig_port->base.hpd_pin; 965 u32 pica_isr_bits = i915->display.hotplug.hpd[hpd_pin]; 966 u32 pch_isr_bit = i915->display.hotplug.pch_hpd[hpd_pin]; 967 intel_wakeref_t wakeref; 968 u32 pica_isr; 969 u32 pch_isr; 970 u32 mask = 0; 971 972 with_intel_display_power(i915, POWER_DOMAIN_DISPLAY_CORE, wakeref) { 973 pica_isr = intel_de_read(i915, PICAINTERRUPT_ISR); 974 pch_isr = intel_de_read(i915, SDEISR); 975 } 976 977 if (pica_isr & (pica_isr_bits & XELPDP_DP_ALT_HOTPLUG_MASK)) 978 mask |= BIT(TC_PORT_DP_ALT); 979 if (pica_isr & (pica_isr_bits & XELPDP_TBT_HOTPLUG_MASK)) 980 mask |= BIT(TC_PORT_TBT_ALT); 981 982 if (tc->legacy_port && (pch_isr & pch_isr_bit)) 983 mask |= BIT(TC_PORT_LEGACY); 984 985 return mask; 986 } 987 988 static bool 989 xelpdp_tc_phy_tcss_power_is_enabled(struct intel_tc_port *tc) 990 { 991 struct drm_i915_private *i915 = tc_to_i915(tc); 992 enum port port = tc->dig_port->base.port; 993 i915_reg_t reg = XELPDP_PORT_BUF_CTL1(i915, port); 994 995 assert_tc_cold_blocked(tc); 996 997 return intel_de_read(i915, reg) & XELPDP_TCSS_POWER_STATE; 998 } 999 1000 static bool 1001 xelpdp_tc_phy_wait_for_tcss_power(struct intel_tc_port *tc, bool enabled) 1002 { 1003 struct drm_i915_private *i915 = tc_to_i915(tc); 1004 1005 if (wait_for(xelpdp_tc_phy_tcss_power_is_enabled(tc) == enabled, 5)) { 1006 drm_dbg_kms(&i915->drm, 1007 "Port %s: timeout waiting for TCSS power to get %s\n", 1008 str_enabled_disabled(enabled), 1009 tc->port_name); 1010 return false; 1011 } 1012 1013 return true; 1014 } 1015 1016 /* 1017 * Gfx driver WA 14020908590 for PTL tcss_rxdetect_clkswb_req/ack 1018 * handshake violation when pwwreq= 0->1 during TC7/10 entry 1019 */ 1020 static void xelpdp_tc_power_request_wa(struct intel_display *display, bool enable) 1021 { 1022 /* check if mailbox is running busy */ 1023 if (intel_de_wait_for_clear(display, TCSS_DISP_MAILBOX_IN_CMD, 1024 TCSS_DISP_MAILBOX_IN_CMD_RUN_BUSY, 10)) { 1025 drm_dbg_kms(display->drm, 1026 "Timeout waiting for TCSS mailbox run/busy bit to clear\n"); 1027 return; 1028 } 1029 1030 intel_de_write(display, TCSS_DISP_MAILBOX_IN_DATA, enable ? 1 : 0); 1031 intel_de_write(display, TCSS_DISP_MAILBOX_IN_CMD, 1032 TCSS_DISP_MAILBOX_IN_CMD_RUN_BUSY | 1033 TCSS_DISP_MAILBOX_IN_CMD_DATA(0x1)); 1034 1035 /* wait to clear mailbox running busy bit before continuing */ 1036 if (intel_de_wait_for_clear(display, TCSS_DISP_MAILBOX_IN_CMD, 1037 TCSS_DISP_MAILBOX_IN_CMD_RUN_BUSY, 10)) { 1038 drm_dbg_kms(display->drm, 1039 "Timeout after writing data to mailbox. Mailbox run/busy bit did not clear\n"); 1040 return; 1041 } 1042 } 1043 1044 static void __xelpdp_tc_phy_enable_tcss_power(struct intel_tc_port *tc, bool enable) 1045 { 1046 struct intel_display *display = to_intel_display(tc->dig_port); 1047 enum port port = tc->dig_port->base.port; 1048 i915_reg_t reg = XELPDP_PORT_BUF_CTL1(display, port); 1049 u32 val; 1050 1051 assert_tc_cold_blocked(tc); 1052 1053 if (DISPLAY_VER(display) == 30) 1054 xelpdp_tc_power_request_wa(display, enable); 1055 1056 val = intel_de_read(display, reg); 1057 if (enable) 1058 val |= XELPDP_TCSS_POWER_REQUEST; 1059 else 1060 val &= ~XELPDP_TCSS_POWER_REQUEST; 1061 intel_de_write(display, reg, val); 1062 } 1063 1064 static bool xelpdp_tc_phy_enable_tcss_power(struct intel_tc_port *tc, bool enable) 1065 { 1066 struct drm_i915_private *i915 = tc_to_i915(tc); 1067 1068 __xelpdp_tc_phy_enable_tcss_power(tc, enable); 1069 1070 if (enable && !tc_phy_wait_for_ready(tc)) 1071 goto out_disable; 1072 1073 if (!xelpdp_tc_phy_wait_for_tcss_power(tc, enable)) 1074 goto out_disable; 1075 1076 return true; 1077 1078 out_disable: 1079 if (drm_WARN_ON(&i915->drm, tc->mode == TC_PORT_LEGACY)) 1080 return false; 1081 1082 if (!enable) 1083 return false; 1084 1085 __xelpdp_tc_phy_enable_tcss_power(tc, false); 1086 xelpdp_tc_phy_wait_for_tcss_power(tc, false); 1087 1088 return false; 1089 } 1090 1091 static void xelpdp_tc_phy_take_ownership(struct intel_tc_port *tc, bool take) 1092 { 1093 struct drm_i915_private *i915 = tc_to_i915(tc); 1094 enum port port = tc->dig_port->base.port; 1095 i915_reg_t reg = XELPDP_PORT_BUF_CTL1(i915, port); 1096 u32 val; 1097 1098 assert_tc_cold_blocked(tc); 1099 1100 val = intel_de_read(i915, reg); 1101 if (take) 1102 val |= XELPDP_TC_PHY_OWNERSHIP; 1103 else 1104 val &= ~XELPDP_TC_PHY_OWNERSHIP; 1105 intel_de_write(i915, reg, val); 1106 } 1107 1108 static bool xelpdp_tc_phy_is_owned(struct intel_tc_port *tc) 1109 { 1110 struct drm_i915_private *i915 = tc_to_i915(tc); 1111 enum port port = tc->dig_port->base.port; 1112 i915_reg_t reg = XELPDP_PORT_BUF_CTL1(i915, port); 1113 1114 assert_tc_cold_blocked(tc); 1115 1116 return intel_de_read(i915, reg) & XELPDP_TC_PHY_OWNERSHIP; 1117 } 1118 1119 static void xelpdp_tc_phy_get_hw_state(struct intel_tc_port *tc) 1120 { 1121 struct drm_i915_private *i915 = tc_to_i915(tc); 1122 intel_wakeref_t tc_cold_wref; 1123 enum intel_display_power_domain domain; 1124 1125 tc_cold_wref = __tc_cold_block(tc, &domain); 1126 1127 tc->mode = tc_phy_get_current_mode(tc); 1128 if (tc->mode != TC_PORT_DISCONNECTED) 1129 tc->lock_wakeref = tc_cold_block(tc); 1130 1131 drm_WARN_ON(&i915->drm, 1132 (tc->mode == TC_PORT_DP_ALT || tc->mode == TC_PORT_LEGACY) && 1133 !xelpdp_tc_phy_tcss_power_is_enabled(tc)); 1134 1135 __tc_cold_unblock(tc, domain, tc_cold_wref); 1136 } 1137 1138 static bool xelpdp_tc_phy_connect(struct intel_tc_port *tc, int required_lanes) 1139 { 1140 tc->lock_wakeref = tc_cold_block(tc); 1141 1142 if (tc->mode == TC_PORT_TBT_ALT) 1143 return true; 1144 1145 if (!xelpdp_tc_phy_enable_tcss_power(tc, true)) 1146 goto out_unblock_tccold; 1147 1148 xelpdp_tc_phy_take_ownership(tc, true); 1149 1150 if (!tc_phy_verify_legacy_or_dp_alt_mode(tc, required_lanes)) 1151 goto out_release_phy; 1152 1153 return true; 1154 1155 out_release_phy: 1156 xelpdp_tc_phy_take_ownership(tc, false); 1157 xelpdp_tc_phy_wait_for_tcss_power(tc, false); 1158 1159 out_unblock_tccold: 1160 tc_cold_unblock(tc, fetch_and_zero(&tc->lock_wakeref)); 1161 1162 return false; 1163 } 1164 1165 static void xelpdp_tc_phy_disconnect(struct intel_tc_port *tc) 1166 { 1167 switch (tc->mode) { 1168 case TC_PORT_LEGACY: 1169 case TC_PORT_DP_ALT: 1170 xelpdp_tc_phy_take_ownership(tc, false); 1171 xelpdp_tc_phy_enable_tcss_power(tc, false); 1172 fallthrough; 1173 case TC_PORT_TBT_ALT: 1174 tc_cold_unblock(tc, fetch_and_zero(&tc->lock_wakeref)); 1175 break; 1176 default: 1177 MISSING_CASE(tc->mode); 1178 } 1179 } 1180 1181 static const struct intel_tc_phy_ops xelpdp_tc_phy_ops = { 1182 .cold_off_domain = tgl_tc_phy_cold_off_domain, 1183 .hpd_live_status = xelpdp_tc_phy_hpd_live_status, 1184 .is_ready = adlp_tc_phy_is_ready, 1185 .is_owned = xelpdp_tc_phy_is_owned, 1186 .get_hw_state = xelpdp_tc_phy_get_hw_state, 1187 .connect = xelpdp_tc_phy_connect, 1188 .disconnect = xelpdp_tc_phy_disconnect, 1189 .init = adlp_tc_phy_init, 1190 }; 1191 1192 /* 1193 * Generic TC PHY handlers 1194 * ----------------------- 1195 */ 1196 static enum intel_display_power_domain 1197 tc_phy_cold_off_domain(struct intel_tc_port *tc) 1198 { 1199 return tc->phy_ops->cold_off_domain(tc); 1200 } 1201 1202 static u32 tc_phy_hpd_live_status(struct intel_tc_port *tc) 1203 { 1204 struct drm_i915_private *i915 = tc_to_i915(tc); 1205 u32 mask; 1206 1207 mask = tc->phy_ops->hpd_live_status(tc); 1208 1209 /* The sink can be connected only in a single mode. */ 1210 drm_WARN_ON_ONCE(&i915->drm, hweight32(mask) > 1); 1211 1212 return mask; 1213 } 1214 1215 static bool tc_phy_is_ready(struct intel_tc_port *tc) 1216 { 1217 return tc->phy_ops->is_ready(tc); 1218 } 1219 1220 static bool tc_phy_is_owned(struct intel_tc_port *tc) 1221 { 1222 return tc->phy_ops->is_owned(tc); 1223 } 1224 1225 static void tc_phy_get_hw_state(struct intel_tc_port *tc) 1226 { 1227 tc->phy_ops->get_hw_state(tc); 1228 } 1229 1230 static bool tc_phy_is_ready_and_owned(struct intel_tc_port *tc, 1231 bool phy_is_ready, bool phy_is_owned) 1232 { 1233 struct drm_i915_private *i915 = tc_to_i915(tc); 1234 1235 drm_WARN_ON(&i915->drm, phy_is_owned && !phy_is_ready); 1236 1237 return phy_is_ready && phy_is_owned; 1238 } 1239 1240 static bool tc_phy_is_connected(struct intel_tc_port *tc, 1241 enum icl_port_dpll_id port_pll_type) 1242 { 1243 struct intel_encoder *encoder = &tc->dig_port->base; 1244 struct drm_i915_private *i915 = to_i915(encoder->base.dev); 1245 bool phy_is_ready = tc_phy_is_ready(tc); 1246 bool phy_is_owned = tc_phy_is_owned(tc); 1247 bool is_connected; 1248 1249 if (tc_phy_is_ready_and_owned(tc, phy_is_ready, phy_is_owned)) 1250 is_connected = port_pll_type == ICL_PORT_DPLL_MG_PHY; 1251 else 1252 is_connected = port_pll_type == ICL_PORT_DPLL_DEFAULT; 1253 1254 drm_dbg_kms(&i915->drm, 1255 "Port %s: PHY connected: %s (ready: %s, owned: %s, pll_type: %s)\n", 1256 tc->port_name, 1257 str_yes_no(is_connected), 1258 str_yes_no(phy_is_ready), 1259 str_yes_no(phy_is_owned), 1260 port_pll_type == ICL_PORT_DPLL_DEFAULT ? "tbt" : "non-tbt"); 1261 1262 return is_connected; 1263 } 1264 1265 static bool tc_phy_wait_for_ready(struct intel_tc_port *tc) 1266 { 1267 struct drm_i915_private *i915 = tc_to_i915(tc); 1268 1269 if (wait_for(tc_phy_is_ready(tc), 500)) { 1270 drm_err(&i915->drm, "Port %s: timeout waiting for PHY ready\n", 1271 tc->port_name); 1272 1273 return false; 1274 } 1275 1276 return true; 1277 } 1278 1279 static enum tc_port_mode 1280 hpd_mask_to_tc_mode(u32 live_status_mask) 1281 { 1282 if (live_status_mask) 1283 return fls(live_status_mask) - 1; 1284 1285 return TC_PORT_DISCONNECTED; 1286 } 1287 1288 static enum tc_port_mode 1289 tc_phy_hpd_live_mode(struct intel_tc_port *tc) 1290 { 1291 u32 live_status_mask = tc_phy_hpd_live_status(tc); 1292 1293 return hpd_mask_to_tc_mode(live_status_mask); 1294 } 1295 1296 static enum tc_port_mode 1297 get_tc_mode_in_phy_owned_state(struct intel_tc_port *tc, 1298 enum tc_port_mode live_mode) 1299 { 1300 switch (live_mode) { 1301 case TC_PORT_LEGACY: 1302 case TC_PORT_DP_ALT: 1303 return live_mode; 1304 default: 1305 MISSING_CASE(live_mode); 1306 fallthrough; 1307 case TC_PORT_TBT_ALT: 1308 case TC_PORT_DISCONNECTED: 1309 if (tc->legacy_port) 1310 return TC_PORT_LEGACY; 1311 else 1312 return TC_PORT_DP_ALT; 1313 } 1314 } 1315 1316 static enum tc_port_mode 1317 get_tc_mode_in_phy_not_owned_state(struct intel_tc_port *tc, 1318 enum tc_port_mode live_mode) 1319 { 1320 switch (live_mode) { 1321 case TC_PORT_LEGACY: 1322 return TC_PORT_DISCONNECTED; 1323 case TC_PORT_DP_ALT: 1324 case TC_PORT_TBT_ALT: 1325 return TC_PORT_TBT_ALT; 1326 default: 1327 MISSING_CASE(live_mode); 1328 fallthrough; 1329 case TC_PORT_DISCONNECTED: 1330 if (tc->legacy_port) 1331 return TC_PORT_DISCONNECTED; 1332 else 1333 return TC_PORT_TBT_ALT; 1334 } 1335 } 1336 1337 static enum tc_port_mode 1338 tc_phy_get_current_mode(struct intel_tc_port *tc) 1339 { 1340 struct drm_i915_private *i915 = tc_to_i915(tc); 1341 enum tc_port_mode live_mode = tc_phy_hpd_live_mode(tc); 1342 bool phy_is_ready; 1343 bool phy_is_owned; 1344 enum tc_port_mode mode; 1345 1346 /* 1347 * For legacy ports the IOM firmware initializes the PHY during boot-up 1348 * and system resume whether or not a sink is connected. Wait here for 1349 * the initialization to get ready. 1350 */ 1351 if (tc->legacy_port) 1352 tc_phy_wait_for_ready(tc); 1353 1354 phy_is_ready = tc_phy_is_ready(tc); 1355 phy_is_owned = tc_phy_is_owned(tc); 1356 1357 if (!tc_phy_is_ready_and_owned(tc, phy_is_ready, phy_is_owned)) { 1358 mode = get_tc_mode_in_phy_not_owned_state(tc, live_mode); 1359 } else { 1360 drm_WARN_ON(&i915->drm, live_mode == TC_PORT_TBT_ALT); 1361 mode = get_tc_mode_in_phy_owned_state(tc, live_mode); 1362 } 1363 1364 drm_dbg_kms(&i915->drm, 1365 "Port %s: PHY mode: %s (ready: %s, owned: %s, HPD: %s)\n", 1366 tc->port_name, 1367 tc_port_mode_name(mode), 1368 str_yes_no(phy_is_ready), 1369 str_yes_no(phy_is_owned), 1370 tc_port_mode_name(live_mode)); 1371 1372 return mode; 1373 } 1374 1375 static enum tc_port_mode default_tc_mode(struct intel_tc_port *tc) 1376 { 1377 if (tc->legacy_port) 1378 return TC_PORT_LEGACY; 1379 1380 return TC_PORT_TBT_ALT; 1381 } 1382 1383 static enum tc_port_mode 1384 hpd_mask_to_target_mode(struct intel_tc_port *tc, u32 live_status_mask) 1385 { 1386 enum tc_port_mode mode = hpd_mask_to_tc_mode(live_status_mask); 1387 1388 if (mode != TC_PORT_DISCONNECTED) 1389 return mode; 1390 1391 return default_tc_mode(tc); 1392 } 1393 1394 static enum tc_port_mode 1395 tc_phy_get_target_mode(struct intel_tc_port *tc) 1396 { 1397 u32 live_status_mask = tc_phy_hpd_live_status(tc); 1398 1399 return hpd_mask_to_target_mode(tc, live_status_mask); 1400 } 1401 1402 static void tc_phy_connect(struct intel_tc_port *tc, int required_lanes) 1403 { 1404 struct drm_i915_private *i915 = tc_to_i915(tc); 1405 u32 live_status_mask = tc_phy_hpd_live_status(tc); 1406 bool connected; 1407 1408 tc_port_fixup_legacy_flag(tc, live_status_mask); 1409 1410 tc->mode = hpd_mask_to_target_mode(tc, live_status_mask); 1411 1412 connected = tc->phy_ops->connect(tc, required_lanes); 1413 if (!connected && tc->mode != default_tc_mode(tc)) { 1414 tc->mode = default_tc_mode(tc); 1415 connected = tc->phy_ops->connect(tc, required_lanes); 1416 } 1417 1418 drm_WARN_ON(&i915->drm, !connected); 1419 } 1420 1421 static void tc_phy_disconnect(struct intel_tc_port *tc) 1422 { 1423 if (tc->mode != TC_PORT_DISCONNECTED) { 1424 tc->phy_ops->disconnect(tc); 1425 tc->mode = TC_PORT_DISCONNECTED; 1426 } 1427 } 1428 1429 static void tc_phy_init(struct intel_tc_port *tc) 1430 { 1431 mutex_lock(&tc->lock); 1432 tc->phy_ops->init(tc); 1433 mutex_unlock(&tc->lock); 1434 } 1435 1436 static void intel_tc_port_reset_mode(struct intel_tc_port *tc, 1437 int required_lanes, bool force_disconnect) 1438 { 1439 struct drm_i915_private *i915 = tc_to_i915(tc); 1440 struct intel_digital_port *dig_port = tc->dig_port; 1441 enum tc_port_mode old_tc_mode = tc->mode; 1442 1443 intel_display_power_flush_work(i915); 1444 if (!intel_tc_cold_requires_aux_pw(dig_port)) { 1445 enum intel_display_power_domain aux_domain; 1446 bool aux_powered; 1447 1448 aux_domain = intel_aux_power_domain(dig_port); 1449 aux_powered = intel_display_power_is_enabled(i915, aux_domain); 1450 drm_WARN_ON(&i915->drm, aux_powered); 1451 } 1452 1453 tc_phy_disconnect(tc); 1454 if (!force_disconnect) 1455 tc_phy_connect(tc, required_lanes); 1456 1457 drm_dbg_kms(&i915->drm, "Port %s: TC port mode reset (%s -> %s)\n", 1458 tc->port_name, 1459 tc_port_mode_name(old_tc_mode), 1460 tc_port_mode_name(tc->mode)); 1461 } 1462 1463 static bool intel_tc_port_needs_reset(struct intel_tc_port *tc) 1464 { 1465 return tc_phy_get_target_mode(tc) != tc->mode; 1466 } 1467 1468 static void intel_tc_port_update_mode(struct intel_tc_port *tc, 1469 int required_lanes, bool force_disconnect) 1470 { 1471 if (force_disconnect || 1472 intel_tc_port_needs_reset(tc)) 1473 intel_tc_port_reset_mode(tc, required_lanes, force_disconnect); 1474 } 1475 1476 static void __intel_tc_port_get_link(struct intel_tc_port *tc) 1477 { 1478 tc->link_refcount++; 1479 } 1480 1481 static void __intel_tc_port_put_link(struct intel_tc_port *tc) 1482 { 1483 tc->link_refcount--; 1484 } 1485 1486 static bool tc_port_is_enabled(struct intel_tc_port *tc) 1487 { 1488 struct drm_i915_private *i915 = tc_to_i915(tc); 1489 struct intel_digital_port *dig_port = tc->dig_port; 1490 1491 assert_tc_port_power_enabled(tc); 1492 1493 return intel_de_read(i915, DDI_BUF_CTL(dig_port->base.port)) & 1494 DDI_BUF_CTL_ENABLE; 1495 } 1496 1497 /** 1498 * intel_tc_port_init_mode: Read out HW state and init the given port's TypeC mode 1499 * @dig_port: digital port 1500 * 1501 * Read out the HW state and initialize the TypeC mode of @dig_port. The mode 1502 * will be locked until intel_tc_port_sanitize_mode() is called. 1503 */ 1504 void intel_tc_port_init_mode(struct intel_digital_port *dig_port) 1505 { 1506 struct drm_i915_private *i915 = to_i915(dig_port->base.base.dev); 1507 struct intel_tc_port *tc = to_tc_port(dig_port); 1508 bool update_mode = false; 1509 1510 mutex_lock(&tc->lock); 1511 1512 drm_WARN_ON(&i915->drm, tc->mode != TC_PORT_DISCONNECTED); 1513 drm_WARN_ON(&i915->drm, tc->lock_wakeref); 1514 drm_WARN_ON(&i915->drm, tc->link_refcount); 1515 1516 tc_phy_get_hw_state(tc); 1517 /* 1518 * Save the initial mode for the state check in 1519 * intel_tc_port_sanitize_mode(). 1520 */ 1521 tc->init_mode = tc->mode; 1522 1523 /* 1524 * The PHY needs to be connected for AUX to work during HW readout and 1525 * MST topology resume, but the PHY mode can only be changed if the 1526 * port is disabled. 1527 * 1528 * An exception is the case where BIOS leaves the PHY incorrectly 1529 * disconnected on an enabled legacy port. Work around that by 1530 * connecting the PHY even though the port is enabled. This doesn't 1531 * cause a problem as the PHY ownership state is ignored by the 1532 * IOM/TCSS firmware (only display can own the PHY in that case). 1533 */ 1534 if (!tc_port_is_enabled(tc)) { 1535 update_mode = true; 1536 } else if (tc->mode == TC_PORT_DISCONNECTED) { 1537 drm_WARN_ON(&i915->drm, !tc->legacy_port); 1538 drm_err(&i915->drm, 1539 "Port %s: PHY disconnected on enabled port, connecting it\n", 1540 tc->port_name); 1541 update_mode = true; 1542 } 1543 1544 if (update_mode) 1545 intel_tc_port_update_mode(tc, 1, false); 1546 1547 /* Prevent changing tc->mode until intel_tc_port_sanitize_mode() is called. */ 1548 __intel_tc_port_get_link(tc); 1549 1550 mutex_unlock(&tc->lock); 1551 } 1552 1553 static bool tc_port_has_active_links(struct intel_tc_port *tc, 1554 const struct intel_crtc_state *crtc_state) 1555 { 1556 struct drm_i915_private *i915 = tc_to_i915(tc); 1557 struct intel_digital_port *dig_port = tc->dig_port; 1558 enum icl_port_dpll_id pll_type = ICL_PORT_DPLL_DEFAULT; 1559 int active_links = 0; 1560 1561 if (dig_port->dp.is_mst) { 1562 /* TODO: get the PLL type for MST, once HW readout is done for it. */ 1563 active_links = intel_dp_mst_encoder_active_links(dig_port); 1564 } else if (crtc_state && crtc_state->hw.active) { 1565 pll_type = intel_ddi_port_pll_type(&dig_port->base, crtc_state); 1566 active_links = 1; 1567 } 1568 1569 if (active_links && !tc_phy_is_connected(tc, pll_type)) 1570 drm_err(&i915->drm, 1571 "Port %s: PHY disconnected with %d active link(s)\n", 1572 tc->port_name, active_links); 1573 1574 return active_links; 1575 } 1576 1577 /** 1578 * intel_tc_port_sanitize_mode: Sanitize the given port's TypeC mode 1579 * @dig_port: digital port 1580 * @crtc_state: atomic state of CRTC connected to @dig_port 1581 * 1582 * Sanitize @dig_port's TypeC mode wrt. the encoder's state right after driver 1583 * loading and system resume: 1584 * If the encoder is enabled keep the TypeC mode/PHY connected state locked until 1585 * the encoder is disabled. 1586 * If the encoder is disabled make sure the PHY is disconnected. 1587 * @crtc_state is valid if @dig_port is enabled, NULL otherwise. 1588 */ 1589 void intel_tc_port_sanitize_mode(struct intel_digital_port *dig_port, 1590 const struct intel_crtc_state *crtc_state) 1591 { 1592 struct drm_i915_private *i915 = to_i915(dig_port->base.base.dev); 1593 struct intel_tc_port *tc = to_tc_port(dig_port); 1594 1595 mutex_lock(&tc->lock); 1596 1597 drm_WARN_ON(&i915->drm, tc->link_refcount != 1); 1598 if (!tc_port_has_active_links(tc, crtc_state)) { 1599 /* 1600 * TBT-alt is the default mode in any case the PHY ownership is not 1601 * held (regardless of the sink's connected live state), so 1602 * we'll just switch to disconnected mode from it here without 1603 * a note. 1604 */ 1605 if (tc->init_mode != TC_PORT_TBT_ALT && 1606 tc->init_mode != TC_PORT_DISCONNECTED) 1607 drm_dbg_kms(&i915->drm, 1608 "Port %s: PHY left in %s mode on disabled port, disconnecting it\n", 1609 tc->port_name, 1610 tc_port_mode_name(tc->init_mode)); 1611 tc_phy_disconnect(tc); 1612 __intel_tc_port_put_link(tc); 1613 } 1614 1615 drm_dbg_kms(&i915->drm, "Port %s: sanitize mode (%s)\n", 1616 tc->port_name, 1617 tc_port_mode_name(tc->mode)); 1618 1619 mutex_unlock(&tc->lock); 1620 } 1621 1622 /* 1623 * The type-C ports are different because even when they are connected, they may 1624 * not be available/usable by the graphics driver: see the comment on 1625 * icl_tc_phy_connect(). So in our driver instead of adding the additional 1626 * concept of "usable" and make everything check for "connected and usable" we 1627 * define a port as "connected" when it is not only connected, but also when it 1628 * is usable by the rest of the driver. That maintains the old assumption that 1629 * connected ports are usable, and avoids exposing to the users objects they 1630 * can't really use. 1631 */ 1632 bool intel_tc_port_connected(struct intel_encoder *encoder) 1633 { 1634 struct intel_digital_port *dig_port = enc_to_dig_port(encoder); 1635 struct drm_i915_private *i915 = to_i915(dig_port->base.base.dev); 1636 struct intel_tc_port *tc = to_tc_port(dig_port); 1637 u32 mask = ~0; 1638 1639 drm_WARN_ON(&i915->drm, !intel_tc_port_ref_held(dig_port)); 1640 1641 if (tc->mode != TC_PORT_DISCONNECTED) 1642 mask = BIT(tc->mode); 1643 1644 return tc_phy_hpd_live_status(tc) & mask; 1645 } 1646 1647 static bool __intel_tc_port_link_needs_reset(struct intel_tc_port *tc) 1648 { 1649 bool ret; 1650 1651 mutex_lock(&tc->lock); 1652 1653 ret = tc->link_refcount && 1654 tc->mode == TC_PORT_DP_ALT && 1655 intel_tc_port_needs_reset(tc); 1656 1657 mutex_unlock(&tc->lock); 1658 1659 return ret; 1660 } 1661 1662 bool intel_tc_port_link_needs_reset(struct intel_digital_port *dig_port) 1663 { 1664 if (!intel_encoder_is_tc(&dig_port->base)) 1665 return false; 1666 1667 return __intel_tc_port_link_needs_reset(to_tc_port(dig_port)); 1668 } 1669 1670 static int reset_link_commit(struct intel_tc_port *tc, 1671 struct intel_atomic_state *state, 1672 struct drm_modeset_acquire_ctx *ctx) 1673 { 1674 struct drm_i915_private *i915 = tc_to_i915(tc); 1675 struct intel_digital_port *dig_port = tc->dig_port; 1676 struct intel_dp *intel_dp = enc_to_intel_dp(&dig_port->base); 1677 struct intel_crtc *crtc; 1678 u8 pipe_mask; 1679 int ret; 1680 1681 ret = drm_modeset_lock(&i915->drm.mode_config.connection_mutex, ctx); 1682 if (ret) 1683 return ret; 1684 1685 ret = intel_dp_get_active_pipes(intel_dp, ctx, &pipe_mask); 1686 if (ret) 1687 return ret; 1688 1689 if (!pipe_mask) 1690 return 0; 1691 1692 for_each_intel_crtc_in_pipe_mask(&i915->drm, crtc, pipe_mask) { 1693 struct intel_crtc_state *crtc_state; 1694 1695 crtc_state = intel_atomic_get_crtc_state(&state->base, crtc); 1696 if (IS_ERR(crtc_state)) 1697 return PTR_ERR(crtc_state); 1698 1699 crtc_state->uapi.connectors_changed = true; 1700 } 1701 1702 if (!__intel_tc_port_link_needs_reset(tc)) 1703 return 0; 1704 1705 return drm_atomic_commit(&state->base); 1706 } 1707 1708 static int reset_link(struct intel_tc_port *tc) 1709 { 1710 struct drm_i915_private *i915 = tc_to_i915(tc); 1711 struct drm_modeset_acquire_ctx ctx; 1712 struct drm_atomic_state *_state; 1713 struct intel_atomic_state *state; 1714 int ret; 1715 1716 _state = drm_atomic_state_alloc(&i915->drm); 1717 if (!_state) 1718 return -ENOMEM; 1719 1720 state = to_intel_atomic_state(_state); 1721 state->internal = true; 1722 1723 intel_modeset_lock_ctx_retry(&ctx, state, 0, ret) 1724 ret = reset_link_commit(tc, state, &ctx); 1725 1726 drm_atomic_state_put(&state->base); 1727 1728 return ret; 1729 } 1730 1731 static void intel_tc_port_link_reset_work(struct work_struct *work) 1732 { 1733 struct intel_tc_port *tc = 1734 container_of(work, struct intel_tc_port, link_reset_work.work); 1735 struct drm_i915_private *i915 = tc_to_i915(tc); 1736 int ret; 1737 1738 if (!__intel_tc_port_link_needs_reset(tc)) 1739 return; 1740 1741 mutex_lock(&i915->drm.mode_config.mutex); 1742 1743 drm_dbg_kms(&i915->drm, 1744 "Port %s: TypeC DP-alt sink disconnected, resetting link\n", 1745 tc->port_name); 1746 ret = reset_link(tc); 1747 drm_WARN_ON(&i915->drm, ret); 1748 1749 mutex_unlock(&i915->drm.mode_config.mutex); 1750 } 1751 1752 bool intel_tc_port_link_reset(struct intel_digital_port *dig_port) 1753 { 1754 if (!intel_tc_port_link_needs_reset(dig_port)) 1755 return false; 1756 1757 queue_delayed_work(system_unbound_wq, 1758 &to_tc_port(dig_port)->link_reset_work, 1759 msecs_to_jiffies(2000)); 1760 1761 return true; 1762 } 1763 1764 void intel_tc_port_link_cancel_reset_work(struct intel_digital_port *dig_port) 1765 { 1766 struct intel_tc_port *tc = to_tc_port(dig_port); 1767 1768 if (!intel_encoder_is_tc(&dig_port->base)) 1769 return; 1770 1771 cancel_delayed_work(&tc->link_reset_work); 1772 } 1773 1774 static void __intel_tc_port_lock(struct intel_tc_port *tc, 1775 int required_lanes) 1776 { 1777 struct drm_i915_private *i915 = tc_to_i915(tc); 1778 1779 mutex_lock(&tc->lock); 1780 1781 cancel_delayed_work(&tc->disconnect_phy_work); 1782 1783 if (!tc->link_refcount) 1784 intel_tc_port_update_mode(tc, required_lanes, 1785 false); 1786 1787 drm_WARN_ON(&i915->drm, tc->mode == TC_PORT_DISCONNECTED); 1788 drm_WARN_ON(&i915->drm, tc->mode != TC_PORT_TBT_ALT && 1789 !tc_phy_is_owned(tc)); 1790 } 1791 1792 void intel_tc_port_lock(struct intel_digital_port *dig_port) 1793 { 1794 __intel_tc_port_lock(to_tc_port(dig_port), 1); 1795 } 1796 1797 /* 1798 * Disconnect the given digital port from its TypeC PHY (handing back the 1799 * control of the PHY to the TypeC subsystem). This will happen in a delayed 1800 * manner after each aux transactions and modeset disables. 1801 */ 1802 static void intel_tc_port_disconnect_phy_work(struct work_struct *work) 1803 { 1804 struct intel_tc_port *tc = 1805 container_of(work, struct intel_tc_port, disconnect_phy_work.work); 1806 1807 mutex_lock(&tc->lock); 1808 1809 if (!tc->link_refcount) 1810 intel_tc_port_update_mode(tc, 1, true); 1811 1812 mutex_unlock(&tc->lock); 1813 } 1814 1815 /** 1816 * intel_tc_port_flush_work: flush the work disconnecting the PHY 1817 * @dig_port: digital port 1818 * 1819 * Flush the delayed work disconnecting an idle PHY. 1820 */ 1821 static void intel_tc_port_flush_work(struct intel_digital_port *dig_port) 1822 { 1823 flush_delayed_work(&to_tc_port(dig_port)->disconnect_phy_work); 1824 } 1825 1826 void intel_tc_port_suspend(struct intel_digital_port *dig_port) 1827 { 1828 struct intel_tc_port *tc = to_tc_port(dig_port); 1829 1830 cancel_delayed_work_sync(&tc->link_reset_work); 1831 intel_tc_port_flush_work(dig_port); 1832 } 1833 1834 void intel_tc_port_unlock(struct intel_digital_port *dig_port) 1835 { 1836 struct intel_tc_port *tc = to_tc_port(dig_port); 1837 1838 if (!tc->link_refcount && tc->mode != TC_PORT_DISCONNECTED) 1839 queue_delayed_work(system_unbound_wq, &tc->disconnect_phy_work, 1840 msecs_to_jiffies(1000)); 1841 1842 mutex_unlock(&tc->lock); 1843 } 1844 1845 bool intel_tc_port_ref_held(struct intel_digital_port *dig_port) 1846 { 1847 struct intel_tc_port *tc = to_tc_port(dig_port); 1848 1849 return mutex_is_locked(&tc->lock) || 1850 tc->link_refcount; 1851 } 1852 1853 void intel_tc_port_get_link(struct intel_digital_port *dig_port, 1854 int required_lanes) 1855 { 1856 struct intel_tc_port *tc = to_tc_port(dig_port); 1857 1858 __intel_tc_port_lock(tc, required_lanes); 1859 __intel_tc_port_get_link(tc); 1860 intel_tc_port_unlock(dig_port); 1861 } 1862 1863 void intel_tc_port_put_link(struct intel_digital_port *dig_port) 1864 { 1865 struct intel_tc_port *tc = to_tc_port(dig_port); 1866 1867 intel_tc_port_lock(dig_port); 1868 __intel_tc_port_put_link(tc); 1869 intel_tc_port_unlock(dig_port); 1870 1871 /* 1872 * The firmware will not update the HPD status of other TypeC ports 1873 * that are active in DP-alt mode with their sink disconnected, until 1874 * this port is disabled and its PHY gets disconnected. Make sure this 1875 * happens in a timely manner by disconnecting the PHY synchronously. 1876 */ 1877 intel_tc_port_flush_work(dig_port); 1878 } 1879 1880 int intel_tc_port_init(struct intel_digital_port *dig_port, bool is_legacy) 1881 { 1882 struct drm_i915_private *i915 = to_i915(dig_port->base.base.dev); 1883 struct intel_tc_port *tc; 1884 enum port port = dig_port->base.port; 1885 enum tc_port tc_port = intel_encoder_to_tc(&dig_port->base); 1886 1887 if (drm_WARN_ON(&i915->drm, tc_port == TC_PORT_NONE)) 1888 return -EINVAL; 1889 1890 tc = kzalloc(sizeof(*tc), GFP_KERNEL); 1891 if (!tc) 1892 return -ENOMEM; 1893 1894 dig_port->tc = tc; 1895 tc->dig_port = dig_port; 1896 1897 if (DISPLAY_VER(i915) >= 14) 1898 tc->phy_ops = &xelpdp_tc_phy_ops; 1899 else if (DISPLAY_VER(i915) >= 13) 1900 tc->phy_ops = &adlp_tc_phy_ops; 1901 else if (DISPLAY_VER(i915) >= 12) 1902 tc->phy_ops = &tgl_tc_phy_ops; 1903 else 1904 tc->phy_ops = &icl_tc_phy_ops; 1905 1906 tc->port_name = kasprintf(GFP_KERNEL, "%c/TC#%d", port_name(port), 1907 tc_port + 1); 1908 if (!tc->port_name) { 1909 kfree(tc); 1910 return -ENOMEM; 1911 } 1912 1913 mutex_init(&tc->lock); 1914 /* TODO: Combine the two works */ 1915 INIT_DELAYED_WORK(&tc->disconnect_phy_work, intel_tc_port_disconnect_phy_work); 1916 INIT_DELAYED_WORK(&tc->link_reset_work, intel_tc_port_link_reset_work); 1917 tc->legacy_port = is_legacy; 1918 tc->mode = TC_PORT_DISCONNECTED; 1919 tc->link_refcount = 0; 1920 1921 tc_phy_init(tc); 1922 1923 intel_tc_port_init_mode(dig_port); 1924 1925 return 0; 1926 } 1927 1928 void intel_tc_port_cleanup(struct intel_digital_port *dig_port) 1929 { 1930 intel_tc_port_suspend(dig_port); 1931 1932 kfree(dig_port->tc->port_name); 1933 kfree(dig_port->tc); 1934 dig_port->tc = NULL; 1935 } 1936