1 // SPDX-License-Identifier: GPL-2.0-only 2 /* 3 * Copyright (c) 2017-2020, The Linux Foundation. All rights reserved. 4 */ 5 6 #include <linux/module.h> 7 #include <linux/slab.h> 8 #include <linux/uaccess.h> 9 #include <linux/debugfs.h> 10 #include <linux/component.h> 11 #include <linux/of_irq.h> 12 #include <linux/phy/phy.h> 13 #include <linux/delay.h> 14 #include <drm/display/drm_dp_aux_bus.h> 15 #include <drm/drm_edid.h> 16 17 #include "msm_drv.h" 18 #include "msm_kms.h" 19 #include "dp_ctrl.h" 20 #include "dp_catalog.h" 21 #include "dp_aux.h" 22 #include "dp_reg.h" 23 #include "dp_link.h" 24 #include "dp_panel.h" 25 #include "dp_display.h" 26 #include "dp_drm.h" 27 #include "dp_audio.h" 28 #include "dp_debug.h" 29 30 static bool psr_enabled = false; 31 module_param(psr_enabled, bool, 0); 32 MODULE_PARM_DESC(psr_enabled, "enable PSR for eDP and DP displays"); 33 34 #define HPD_STRING_SIZE 30 35 36 enum { 37 ISR_DISCONNECTED, 38 ISR_CONNECT_PENDING, 39 ISR_CONNECTED, 40 ISR_HPD_REPLUG_COUNT, 41 ISR_IRQ_HPD_PULSE_COUNT, 42 ISR_HPD_LO_GLITH_COUNT, 43 }; 44 45 /* event thread connection state */ 46 enum { 47 ST_DISCONNECTED, 48 ST_MAINLINK_READY, 49 ST_CONNECTED, 50 ST_DISCONNECT_PENDING, 51 ST_DISPLAY_OFF, 52 }; 53 54 enum { 55 EV_NO_EVENT, 56 /* hpd events */ 57 EV_HPD_PLUG_INT, 58 EV_IRQ_HPD_INT, 59 EV_HPD_UNPLUG_INT, 60 EV_USER_NOTIFICATION, 61 }; 62 63 #define EVENT_TIMEOUT (HZ/10) /* 100ms */ 64 #define DP_EVENT_Q_MAX 8 65 66 #define DP_TIMEOUT_NONE 0 67 68 #define WAIT_FOR_RESUME_TIMEOUT_JIFFIES (HZ / 2) 69 70 struct dp_event { 71 u32 event_id; 72 u32 data; 73 u32 delay; 74 }; 75 76 struct dp_display_private { 77 char *name; 78 int irq; 79 80 unsigned int id; 81 82 /* state variables */ 83 bool core_initialized; 84 bool phy_initialized; 85 bool hpd_irq_on; 86 bool audio_supported; 87 88 struct drm_device *drm_dev; 89 struct dentry *root; 90 91 struct dp_catalog *catalog; 92 struct drm_dp_aux *aux; 93 struct dp_link *link; 94 struct dp_panel *panel; 95 struct dp_ctrl *ctrl; 96 struct dp_debug *debug; 97 98 struct dp_display_mode dp_mode; 99 struct msm_dp dp_display; 100 101 /* wait for audio signaling */ 102 struct completion audio_comp; 103 104 /* event related only access by event thread */ 105 struct mutex event_mutex; 106 wait_queue_head_t event_q; 107 u32 hpd_state; 108 u32 event_pndx; 109 u32 event_gndx; 110 struct task_struct *ev_tsk; 111 struct dp_event event_list[DP_EVENT_Q_MAX]; 112 spinlock_t event_lock; 113 114 bool wide_bus_en; 115 116 struct dp_audio *audio; 117 }; 118 119 struct msm_dp_desc { 120 phys_addr_t io_start; 121 unsigned int id; 122 unsigned int connector_type; 123 bool wide_bus_en; 124 }; 125 126 static const struct msm_dp_desc sc7180_dp_descs[] = { 127 { .io_start = 0x0ae90000, .id = MSM_DP_CONTROLLER_0, .connector_type = DRM_MODE_CONNECTOR_DisplayPort }, 128 {} 129 }; 130 131 static const struct msm_dp_desc sc7280_dp_descs[] = { 132 { .io_start = 0x0ae90000, .id = MSM_DP_CONTROLLER_0, .connector_type = DRM_MODE_CONNECTOR_DisplayPort, .wide_bus_en = true }, 133 { .io_start = 0x0aea0000, .id = MSM_DP_CONTROLLER_1, .connector_type = DRM_MODE_CONNECTOR_eDP, .wide_bus_en = true }, 134 {} 135 }; 136 137 static const struct msm_dp_desc sc8180x_dp_descs[] = { 138 { .io_start = 0x0ae90000, .id = MSM_DP_CONTROLLER_0, .connector_type = DRM_MODE_CONNECTOR_DisplayPort }, 139 { .io_start = 0x0ae98000, .id = MSM_DP_CONTROLLER_1, .connector_type = DRM_MODE_CONNECTOR_DisplayPort }, 140 { .io_start = 0x0ae9a000, .id = MSM_DP_CONTROLLER_2, .connector_type = DRM_MODE_CONNECTOR_eDP }, 141 {} 142 }; 143 144 static const struct msm_dp_desc sc8280xp_dp_descs[] = { 145 { .io_start = 0x0ae90000, .id = MSM_DP_CONTROLLER_0, .connector_type = DRM_MODE_CONNECTOR_DisplayPort, .wide_bus_en = true }, 146 { .io_start = 0x0ae98000, .id = MSM_DP_CONTROLLER_1, .connector_type = DRM_MODE_CONNECTOR_DisplayPort, .wide_bus_en = true }, 147 { .io_start = 0x0ae9a000, .id = MSM_DP_CONTROLLER_2, .connector_type = DRM_MODE_CONNECTOR_DisplayPort, .wide_bus_en = true }, 148 { .io_start = 0x0aea0000, .id = MSM_DP_CONTROLLER_3, .connector_type = DRM_MODE_CONNECTOR_DisplayPort, .wide_bus_en = true }, 149 { .io_start = 0x22090000, .id = MSM_DP_CONTROLLER_0, .connector_type = DRM_MODE_CONNECTOR_DisplayPort, .wide_bus_en = true }, 150 { .io_start = 0x22098000, .id = MSM_DP_CONTROLLER_1, .connector_type = DRM_MODE_CONNECTOR_DisplayPort, .wide_bus_en = true }, 151 { .io_start = 0x2209a000, .id = MSM_DP_CONTROLLER_2, .connector_type = DRM_MODE_CONNECTOR_DisplayPort, .wide_bus_en = true }, 152 { .io_start = 0x220a0000, .id = MSM_DP_CONTROLLER_3, .connector_type = DRM_MODE_CONNECTOR_DisplayPort, .wide_bus_en = true }, 153 {} 154 }; 155 156 static const struct msm_dp_desc sc8280xp_edp_descs[] = { 157 { .io_start = 0x0ae9a000, .id = MSM_DP_CONTROLLER_2, .connector_type = DRM_MODE_CONNECTOR_eDP, .wide_bus_en = true }, 158 { .io_start = 0x0aea0000, .id = MSM_DP_CONTROLLER_3, .connector_type = DRM_MODE_CONNECTOR_eDP, .wide_bus_en = true }, 159 { .io_start = 0x2209a000, .id = MSM_DP_CONTROLLER_2, .connector_type = DRM_MODE_CONNECTOR_eDP, .wide_bus_en = true }, 160 { .io_start = 0x220a0000, .id = MSM_DP_CONTROLLER_3, .connector_type = DRM_MODE_CONNECTOR_eDP, .wide_bus_en = true }, 161 {} 162 }; 163 164 static const struct msm_dp_desc sm8350_dp_descs[] = { 165 { .io_start = 0x0ae90000, .id = MSM_DP_CONTROLLER_0, .connector_type = DRM_MODE_CONNECTOR_DisplayPort }, 166 {} 167 }; 168 169 static const struct msm_dp_desc sm8650_dp_descs[] = { 170 { .io_start = 0x0af54000, .id = MSM_DP_CONTROLLER_0, .connector_type = DRM_MODE_CONNECTOR_DisplayPort }, 171 {} 172 }; 173 174 static const struct of_device_id dp_dt_match[] = { 175 { .compatible = "qcom,sc7180-dp", .data = &sc7180_dp_descs }, 176 { .compatible = "qcom,sc7280-dp", .data = &sc7280_dp_descs }, 177 { .compatible = "qcom,sc7280-edp", .data = &sc7280_dp_descs }, 178 { .compatible = "qcom,sc8180x-dp", .data = &sc8180x_dp_descs }, 179 { .compatible = "qcom,sc8180x-edp", .data = &sc8180x_dp_descs }, 180 { .compatible = "qcom,sc8280xp-dp", .data = &sc8280xp_dp_descs }, 181 { .compatible = "qcom,sc8280xp-edp", .data = &sc8280xp_edp_descs }, 182 { .compatible = "qcom,sdm845-dp", .data = &sc7180_dp_descs }, 183 { .compatible = "qcom,sm8350-dp", .data = &sm8350_dp_descs }, 184 { .compatible = "qcom,sm8650-dp", .data = &sm8650_dp_descs }, 185 {} 186 }; 187 188 static struct dp_display_private *dev_get_dp_display_private(struct device *dev) 189 { 190 struct msm_dp *dp = dev_get_drvdata(dev); 191 192 return container_of(dp, struct dp_display_private, dp_display); 193 } 194 195 static int dp_add_event(struct dp_display_private *dp_priv, u32 event, 196 u32 data, u32 delay) 197 { 198 unsigned long flag; 199 struct dp_event *todo; 200 int pndx; 201 202 spin_lock_irqsave(&dp_priv->event_lock, flag); 203 pndx = dp_priv->event_pndx + 1; 204 pndx %= DP_EVENT_Q_MAX; 205 if (pndx == dp_priv->event_gndx) { 206 pr_err("event_q is full: pndx=%d gndx=%d\n", 207 dp_priv->event_pndx, dp_priv->event_gndx); 208 spin_unlock_irqrestore(&dp_priv->event_lock, flag); 209 return -EPERM; 210 } 211 todo = &dp_priv->event_list[dp_priv->event_pndx++]; 212 dp_priv->event_pndx %= DP_EVENT_Q_MAX; 213 todo->event_id = event; 214 todo->data = data; 215 todo->delay = delay; 216 wake_up(&dp_priv->event_q); 217 spin_unlock_irqrestore(&dp_priv->event_lock, flag); 218 219 return 0; 220 } 221 222 static int dp_del_event(struct dp_display_private *dp_priv, u32 event) 223 { 224 unsigned long flag; 225 struct dp_event *todo; 226 u32 gndx; 227 228 spin_lock_irqsave(&dp_priv->event_lock, flag); 229 if (dp_priv->event_pndx == dp_priv->event_gndx) { 230 spin_unlock_irqrestore(&dp_priv->event_lock, flag); 231 return -ENOENT; 232 } 233 234 gndx = dp_priv->event_gndx; 235 while (dp_priv->event_pndx != gndx) { 236 todo = &dp_priv->event_list[gndx]; 237 if (todo->event_id == event) { 238 todo->event_id = EV_NO_EVENT; /* deleted */ 239 todo->delay = 0; 240 } 241 gndx++; 242 gndx %= DP_EVENT_Q_MAX; 243 } 244 spin_unlock_irqrestore(&dp_priv->event_lock, flag); 245 246 return 0; 247 } 248 249 void dp_display_signal_audio_start(struct msm_dp *dp_display) 250 { 251 struct dp_display_private *dp; 252 253 dp = container_of(dp_display, struct dp_display_private, dp_display); 254 255 reinit_completion(&dp->audio_comp); 256 } 257 258 void dp_display_signal_audio_complete(struct msm_dp *dp_display) 259 { 260 struct dp_display_private *dp; 261 262 dp = container_of(dp_display, struct dp_display_private, dp_display); 263 264 complete_all(&dp->audio_comp); 265 } 266 267 static int dp_hpd_event_thread_start(struct dp_display_private *dp_priv); 268 269 static int dp_display_bind(struct device *dev, struct device *master, 270 void *data) 271 { 272 int rc = 0; 273 struct dp_display_private *dp = dev_get_dp_display_private(dev); 274 struct msm_drm_private *priv = dev_get_drvdata(master); 275 struct drm_device *drm = priv->dev; 276 277 dp->dp_display.drm_dev = drm; 278 priv->dp[dp->id] = &dp->dp_display; 279 280 281 282 dp->drm_dev = drm; 283 dp->aux->drm_dev = drm; 284 rc = dp_aux_register(dp->aux); 285 if (rc) { 286 DRM_ERROR("DRM DP AUX register failed\n"); 287 goto end; 288 } 289 290 291 rc = dp_register_audio_driver(dev, dp->audio); 292 if (rc) { 293 DRM_ERROR("Audio registration Dp failed\n"); 294 goto end; 295 } 296 297 rc = dp_hpd_event_thread_start(dp); 298 if (rc) { 299 DRM_ERROR("Event thread create failed\n"); 300 goto end; 301 } 302 303 return 0; 304 end: 305 return rc; 306 } 307 308 static void dp_display_unbind(struct device *dev, struct device *master, 309 void *data) 310 { 311 struct dp_display_private *dp = dev_get_dp_display_private(dev); 312 struct msm_drm_private *priv = dev_get_drvdata(master); 313 314 kthread_stop(dp->ev_tsk); 315 316 of_dp_aux_depopulate_bus(dp->aux); 317 318 dp_unregister_audio_driver(dev, dp->audio); 319 dp_aux_unregister(dp->aux); 320 dp->drm_dev = NULL; 321 dp->aux->drm_dev = NULL; 322 priv->dp[dp->id] = NULL; 323 } 324 325 static const struct component_ops dp_display_comp_ops = { 326 .bind = dp_display_bind, 327 .unbind = dp_display_unbind, 328 }; 329 330 static int dp_display_send_hpd_notification(struct dp_display_private *dp, 331 bool hpd) 332 { 333 struct drm_bridge *bridge = dp->dp_display.bridge; 334 335 /* reset video pattern flag on disconnect */ 336 if (!hpd) { 337 dp->panel->video_test = false; 338 if (!dp->dp_display.is_edp) 339 drm_dp_set_subconnector_property(dp->dp_display.connector, 340 connector_status_disconnected, 341 dp->panel->dpcd, 342 dp->panel->downstream_ports); 343 } 344 345 dp->dp_display.link_ready = hpd; 346 347 drm_dbg_dp(dp->drm_dev, "type=%d hpd=%d\n", 348 dp->dp_display.connector_type, hpd); 349 drm_bridge_hpd_notify(bridge, dp->dp_display.link_ready); 350 351 return 0; 352 } 353 354 static int dp_display_process_hpd_high(struct dp_display_private *dp) 355 { 356 int rc = 0; 357 struct edid *edid; 358 359 rc = dp_panel_read_sink_caps(dp->panel, dp->dp_display.connector); 360 if (rc) 361 goto end; 362 363 dp_link_process_request(dp->link); 364 365 if (!dp->dp_display.is_edp) 366 drm_dp_set_subconnector_property(dp->dp_display.connector, 367 connector_status_connected, 368 dp->panel->dpcd, 369 dp->panel->downstream_ports); 370 371 edid = dp->panel->edid; 372 373 dp->dp_display.psr_supported = dp->panel->psr_cap.version && psr_enabled; 374 375 dp->audio_supported = drm_detect_monitor_audio(edid); 376 dp_panel_handle_sink_request(dp->panel); 377 378 /* 379 * set sink to normal operation mode -- D0 380 * before dpcd read 381 */ 382 dp_link_psm_config(dp->link, &dp->panel->link_info, false); 383 384 dp_link_reset_phy_params_vx_px(dp->link); 385 rc = dp_ctrl_on_link(dp->ctrl); 386 if (rc) { 387 DRM_ERROR("failed to complete DP link training\n"); 388 goto end; 389 } 390 391 dp_add_event(dp, EV_USER_NOTIFICATION, true, 0); 392 393 end: 394 return rc; 395 } 396 397 static void dp_display_host_phy_init(struct dp_display_private *dp) 398 { 399 drm_dbg_dp(dp->drm_dev, "type=%d core_init=%d phy_init=%d\n", 400 dp->dp_display.connector_type, dp->core_initialized, 401 dp->phy_initialized); 402 403 if (!dp->phy_initialized) { 404 dp_ctrl_phy_init(dp->ctrl); 405 dp->phy_initialized = true; 406 } 407 } 408 409 static void dp_display_host_phy_exit(struct dp_display_private *dp) 410 { 411 drm_dbg_dp(dp->drm_dev, "type=%d core_init=%d phy_init=%d\n", 412 dp->dp_display.connector_type, dp->core_initialized, 413 dp->phy_initialized); 414 415 if (dp->phy_initialized) { 416 dp_ctrl_phy_exit(dp->ctrl); 417 dp->phy_initialized = false; 418 } 419 } 420 421 static void dp_display_host_init(struct dp_display_private *dp) 422 { 423 drm_dbg_dp(dp->drm_dev, "type=%d core_init=%d phy_init=%d\n", 424 dp->dp_display.connector_type, dp->core_initialized, 425 dp->phy_initialized); 426 427 dp_ctrl_core_clk_enable(dp->ctrl); 428 dp_ctrl_reset_irq_ctrl(dp->ctrl, true); 429 dp_aux_init(dp->aux); 430 dp->core_initialized = true; 431 } 432 433 static void dp_display_host_deinit(struct dp_display_private *dp) 434 { 435 drm_dbg_dp(dp->drm_dev, "type=%d core_init=%d phy_init=%d\n", 436 dp->dp_display.connector_type, dp->core_initialized, 437 dp->phy_initialized); 438 439 dp_ctrl_reset_irq_ctrl(dp->ctrl, false); 440 dp_aux_deinit(dp->aux); 441 dp_ctrl_core_clk_disable(dp->ctrl); 442 dp->core_initialized = false; 443 } 444 445 static int dp_display_usbpd_configure_cb(struct device *dev) 446 { 447 struct dp_display_private *dp = dev_get_dp_display_private(dev); 448 449 dp_display_host_phy_init(dp); 450 451 return dp_display_process_hpd_high(dp); 452 } 453 454 static int dp_display_notify_disconnect(struct device *dev) 455 { 456 struct dp_display_private *dp = dev_get_dp_display_private(dev); 457 458 dp_add_event(dp, EV_USER_NOTIFICATION, false, 0); 459 460 return 0; 461 } 462 463 static void dp_display_handle_video_request(struct dp_display_private *dp) 464 { 465 if (dp->link->sink_request & DP_TEST_LINK_VIDEO_PATTERN) { 466 dp->panel->video_test = true; 467 dp_link_send_test_response(dp->link); 468 } 469 } 470 471 static int dp_display_handle_port_ststus_changed(struct dp_display_private *dp) 472 { 473 int rc = 0; 474 475 if (drm_dp_is_branch(dp->panel->dpcd) && dp->link->sink_count == 0) { 476 drm_dbg_dp(dp->drm_dev, "sink count is zero, nothing to do\n"); 477 if (dp->hpd_state != ST_DISCONNECTED) { 478 dp->hpd_state = ST_DISCONNECT_PENDING; 479 dp_add_event(dp, EV_USER_NOTIFICATION, false, 0); 480 } 481 } else { 482 if (dp->hpd_state == ST_DISCONNECTED) { 483 dp->hpd_state = ST_MAINLINK_READY; 484 rc = dp_display_process_hpd_high(dp); 485 if (rc) 486 dp->hpd_state = ST_DISCONNECTED; 487 } 488 } 489 490 return rc; 491 } 492 493 static int dp_display_handle_irq_hpd(struct dp_display_private *dp) 494 { 495 u32 sink_request = dp->link->sink_request; 496 497 drm_dbg_dp(dp->drm_dev, "%d\n", sink_request); 498 if (dp->hpd_state == ST_DISCONNECTED) { 499 if (sink_request & DP_LINK_STATUS_UPDATED) { 500 drm_dbg_dp(dp->drm_dev, "Disconnected sink_request: %d\n", 501 sink_request); 502 DRM_ERROR("Disconnected, no DP_LINK_STATUS_UPDATED\n"); 503 return -EINVAL; 504 } 505 } 506 507 dp_ctrl_handle_sink_request(dp->ctrl); 508 509 if (sink_request & DP_TEST_LINK_VIDEO_PATTERN) 510 dp_display_handle_video_request(dp); 511 512 return 0; 513 } 514 515 static int dp_display_usbpd_attention_cb(struct device *dev) 516 { 517 int rc = 0; 518 u32 sink_request; 519 struct dp_display_private *dp = dev_get_dp_display_private(dev); 520 521 /* check for any test request issued by sink */ 522 rc = dp_link_process_request(dp->link); 523 if (!rc) { 524 sink_request = dp->link->sink_request; 525 drm_dbg_dp(dp->drm_dev, "hpd_state=%d sink_request=%d\n", 526 dp->hpd_state, sink_request); 527 if (sink_request & DS_PORT_STATUS_CHANGED) 528 rc = dp_display_handle_port_ststus_changed(dp); 529 else 530 rc = dp_display_handle_irq_hpd(dp); 531 } 532 533 return rc; 534 } 535 536 static int dp_hpd_plug_handle(struct dp_display_private *dp, u32 data) 537 { 538 u32 state; 539 int ret; 540 struct platform_device *pdev = dp->dp_display.pdev; 541 542 mutex_lock(&dp->event_mutex); 543 544 state = dp->hpd_state; 545 drm_dbg_dp(dp->drm_dev, "Before, type=%d hpd_state=%d\n", 546 dp->dp_display.connector_type, state); 547 548 if (state == ST_DISPLAY_OFF) { 549 mutex_unlock(&dp->event_mutex); 550 return 0; 551 } 552 553 if (state == ST_MAINLINK_READY || state == ST_CONNECTED) { 554 mutex_unlock(&dp->event_mutex); 555 return 0; 556 } 557 558 if (state == ST_DISCONNECT_PENDING) { 559 /* wait until ST_DISCONNECTED */ 560 dp_add_event(dp, EV_HPD_PLUG_INT, 0, 1); /* delay = 1 */ 561 mutex_unlock(&dp->event_mutex); 562 return 0; 563 } 564 565 ret = pm_runtime_resume_and_get(&pdev->dev); 566 if (ret) { 567 DRM_ERROR("failed to pm_runtime_resume\n"); 568 mutex_unlock(&dp->event_mutex); 569 return ret; 570 } 571 572 ret = dp_display_usbpd_configure_cb(&pdev->dev); 573 if (ret) { /* link train failed */ 574 dp->hpd_state = ST_DISCONNECTED; 575 } else { 576 dp->hpd_state = ST_MAINLINK_READY; 577 } 578 579 drm_dbg_dp(dp->drm_dev, "After, type=%d hpd_state=%d\n", 580 dp->dp_display.connector_type, state); 581 mutex_unlock(&dp->event_mutex); 582 583 /* uevent will complete connection part */ 584 return 0; 585 }; 586 587 static void dp_display_handle_plugged_change(struct msm_dp *dp_display, 588 bool plugged) 589 { 590 struct dp_display_private *dp; 591 592 dp = container_of(dp_display, 593 struct dp_display_private, dp_display); 594 595 /* notify audio subsystem only if sink supports audio */ 596 if (dp_display->plugged_cb && dp_display->codec_dev && 597 dp->audio_supported) 598 dp_display->plugged_cb(dp_display->codec_dev, plugged); 599 } 600 601 static int dp_hpd_unplug_handle(struct dp_display_private *dp, u32 data) 602 { 603 u32 state; 604 struct platform_device *pdev = dp->dp_display.pdev; 605 606 mutex_lock(&dp->event_mutex); 607 608 state = dp->hpd_state; 609 610 drm_dbg_dp(dp->drm_dev, "Before, type=%d hpd_state=%d\n", 611 dp->dp_display.connector_type, state); 612 613 /* unplugged, no more irq_hpd handle */ 614 dp_del_event(dp, EV_IRQ_HPD_INT); 615 616 if (state == ST_DISCONNECTED) { 617 /* triggered by irq_hdp with sink_count = 0 */ 618 if (dp->link->sink_count == 0) { 619 dp_display_host_phy_exit(dp); 620 } 621 dp_display_notify_disconnect(&dp->dp_display.pdev->dev); 622 mutex_unlock(&dp->event_mutex); 623 return 0; 624 } else if (state == ST_DISCONNECT_PENDING) { 625 mutex_unlock(&dp->event_mutex); 626 return 0; 627 } else if (state == ST_MAINLINK_READY) { 628 dp_ctrl_off_link(dp->ctrl); 629 dp_display_host_phy_exit(dp); 630 dp->hpd_state = ST_DISCONNECTED; 631 dp_display_notify_disconnect(&dp->dp_display.pdev->dev); 632 mutex_unlock(&dp->event_mutex); 633 return 0; 634 } 635 636 /* 637 * We don't need separate work for disconnect as 638 * connect/attention interrupts are disabled 639 */ 640 dp_display_notify_disconnect(&dp->dp_display.pdev->dev); 641 642 if (state == ST_DISPLAY_OFF) { 643 dp->hpd_state = ST_DISCONNECTED; 644 } else { 645 dp->hpd_state = ST_DISCONNECT_PENDING; 646 } 647 648 /* signal the disconnect event early to ensure proper teardown */ 649 dp_display_handle_plugged_change(&dp->dp_display, false); 650 651 drm_dbg_dp(dp->drm_dev, "After, type=%d hpd_state=%d\n", 652 dp->dp_display.connector_type, state); 653 654 /* uevent will complete disconnection part */ 655 pm_runtime_put_sync(&pdev->dev); 656 mutex_unlock(&dp->event_mutex); 657 return 0; 658 } 659 660 static int dp_irq_hpd_handle(struct dp_display_private *dp, u32 data) 661 { 662 u32 state; 663 664 mutex_lock(&dp->event_mutex); 665 666 /* irq_hpd can happen at either connected or disconnected state */ 667 state = dp->hpd_state; 668 drm_dbg_dp(dp->drm_dev, "Before, type=%d hpd_state=%d\n", 669 dp->dp_display.connector_type, state); 670 671 if (state == ST_DISPLAY_OFF) { 672 mutex_unlock(&dp->event_mutex); 673 return 0; 674 } 675 676 if (state == ST_MAINLINK_READY || state == ST_DISCONNECT_PENDING) { 677 /* wait until ST_CONNECTED */ 678 dp_add_event(dp, EV_IRQ_HPD_INT, 0, 1); /* delay = 1 */ 679 mutex_unlock(&dp->event_mutex); 680 return 0; 681 } 682 683 dp_display_usbpd_attention_cb(&dp->dp_display.pdev->dev); 684 685 drm_dbg_dp(dp->drm_dev, "After, type=%d hpd_state=%d\n", 686 dp->dp_display.connector_type, state); 687 688 mutex_unlock(&dp->event_mutex); 689 690 return 0; 691 } 692 693 static void dp_display_deinit_sub_modules(struct dp_display_private *dp) 694 { 695 dp_audio_put(dp->audio); 696 dp_panel_put(dp->panel); 697 dp_aux_put(dp->aux); 698 } 699 700 static int dp_init_sub_modules(struct dp_display_private *dp) 701 { 702 int rc = 0; 703 struct device *dev = &dp->dp_display.pdev->dev; 704 struct dp_panel_in panel_in = { 705 .dev = dev, 706 }; 707 struct phy *phy; 708 709 phy = devm_phy_get(dev, "dp"); 710 if (IS_ERR(phy)) 711 return PTR_ERR(phy); 712 713 dp->catalog = dp_catalog_get(dev); 714 if (IS_ERR(dp->catalog)) { 715 rc = PTR_ERR(dp->catalog); 716 DRM_ERROR("failed to initialize catalog, rc = %d\n", rc); 717 dp->catalog = NULL; 718 goto error; 719 } 720 721 dp->aux = dp_aux_get(dev, dp->catalog, 722 phy, 723 dp->dp_display.is_edp); 724 if (IS_ERR(dp->aux)) { 725 rc = PTR_ERR(dp->aux); 726 DRM_ERROR("failed to initialize aux, rc = %d\n", rc); 727 dp->aux = NULL; 728 goto error; 729 } 730 731 dp->link = dp_link_get(dev, dp->aux); 732 if (IS_ERR(dp->link)) { 733 rc = PTR_ERR(dp->link); 734 DRM_ERROR("failed to initialize link, rc = %d\n", rc); 735 dp->link = NULL; 736 goto error_link; 737 } 738 739 panel_in.aux = dp->aux; 740 panel_in.catalog = dp->catalog; 741 panel_in.link = dp->link; 742 743 dp->panel = dp_panel_get(&panel_in); 744 if (IS_ERR(dp->panel)) { 745 rc = PTR_ERR(dp->panel); 746 DRM_ERROR("failed to initialize panel, rc = %d\n", rc); 747 dp->panel = NULL; 748 goto error_link; 749 } 750 751 dp->ctrl = dp_ctrl_get(dev, dp->link, dp->panel, dp->aux, 752 dp->catalog, 753 phy); 754 if (IS_ERR(dp->ctrl)) { 755 rc = PTR_ERR(dp->ctrl); 756 DRM_ERROR("failed to initialize ctrl, rc = %d\n", rc); 757 dp->ctrl = NULL; 758 goto error_ctrl; 759 } 760 761 dp->audio = dp_audio_get(dp->dp_display.pdev, dp->panel, dp->catalog); 762 if (IS_ERR(dp->audio)) { 763 rc = PTR_ERR(dp->audio); 764 pr_err("failed to initialize audio, rc = %d\n", rc); 765 dp->audio = NULL; 766 goto error_ctrl; 767 } 768 769 /* populate wide_bus_en to differernt layers */ 770 dp->ctrl->wide_bus_en = dp->wide_bus_en; 771 dp->catalog->wide_bus_en = dp->wide_bus_en; 772 773 return rc; 774 775 error_ctrl: 776 dp_panel_put(dp->panel); 777 error_link: 778 dp_aux_put(dp->aux); 779 error: 780 return rc; 781 } 782 783 static int dp_display_set_mode(struct msm_dp *dp_display, 784 struct dp_display_mode *mode) 785 { 786 struct dp_display_private *dp; 787 788 dp = container_of(dp_display, struct dp_display_private, dp_display); 789 790 drm_mode_copy(&dp->panel->dp_mode.drm_mode, &mode->drm_mode); 791 dp->panel->dp_mode.bpp = mode->bpp; 792 dp->panel->dp_mode.capabilities = mode->capabilities; 793 dp_panel_init_panel_info(dp->panel); 794 return 0; 795 } 796 797 static int dp_display_enable(struct dp_display_private *dp, bool force_link_train) 798 { 799 int rc = 0; 800 struct msm_dp *dp_display = &dp->dp_display; 801 802 drm_dbg_dp(dp->drm_dev, "sink_count=%d\n", dp->link->sink_count); 803 if (dp_display->power_on) { 804 drm_dbg_dp(dp->drm_dev, "Link already setup, return\n"); 805 return 0; 806 } 807 808 rc = dp_ctrl_on_stream(dp->ctrl, force_link_train); 809 if (!rc) 810 dp_display->power_on = true; 811 812 return rc; 813 } 814 815 static int dp_display_post_enable(struct msm_dp *dp_display) 816 { 817 struct dp_display_private *dp; 818 u32 rate; 819 820 dp = container_of(dp_display, struct dp_display_private, dp_display); 821 822 rate = dp->link->link_params.rate; 823 824 if (dp->audio_supported) { 825 dp->audio->bw_code = drm_dp_link_rate_to_bw_code(rate); 826 dp->audio->lane_count = dp->link->link_params.num_lanes; 827 } 828 829 /* signal the connect event late to synchronize video and display */ 830 dp_display_handle_plugged_change(dp_display, true); 831 832 if (dp_display->psr_supported) 833 dp_ctrl_config_psr(dp->ctrl); 834 835 return 0; 836 } 837 838 static int dp_display_disable(struct dp_display_private *dp) 839 { 840 struct msm_dp *dp_display = &dp->dp_display; 841 842 if (!dp_display->power_on) 843 return 0; 844 845 /* wait only if audio was enabled */ 846 if (dp_display->audio_enabled) { 847 /* signal the disconnect event */ 848 dp_display_handle_plugged_change(dp_display, false); 849 if (!wait_for_completion_timeout(&dp->audio_comp, 850 HZ * 5)) 851 DRM_ERROR("audio comp timeout\n"); 852 } 853 854 dp_display->audio_enabled = false; 855 856 if (dp->link->sink_count == 0) { 857 /* 858 * irq_hpd with sink_count = 0 859 * hdmi unplugged out of dongle 860 */ 861 dp_ctrl_off_link_stream(dp->ctrl); 862 } else { 863 /* 864 * unplugged interrupt 865 * dongle unplugged out of DUT 866 */ 867 dp_ctrl_off(dp->ctrl); 868 dp_display_host_phy_exit(dp); 869 } 870 871 dp_display->power_on = false; 872 873 drm_dbg_dp(dp->drm_dev, "sink count: %d\n", dp->link->sink_count); 874 return 0; 875 } 876 877 int dp_display_set_plugged_cb(struct msm_dp *dp_display, 878 hdmi_codec_plugged_cb fn, struct device *codec_dev) 879 { 880 bool plugged; 881 882 dp_display->plugged_cb = fn; 883 dp_display->codec_dev = codec_dev; 884 plugged = dp_display->link_ready; 885 dp_display_handle_plugged_change(dp_display, plugged); 886 887 return 0; 888 } 889 890 /** 891 * dp_bridge_mode_valid - callback to determine if specified mode is valid 892 * @bridge: Pointer to drm bridge structure 893 * @info: display info 894 * @mode: Pointer to drm mode structure 895 * Returns: Validity status for specified mode 896 */ 897 enum drm_mode_status dp_bridge_mode_valid(struct drm_bridge *bridge, 898 const struct drm_display_info *info, 899 const struct drm_display_mode *mode) 900 { 901 const u32 num_components = 3, default_bpp = 24; 902 struct dp_display_private *dp_display; 903 struct dp_link_info *link_info; 904 u32 mode_rate_khz = 0, supported_rate_khz = 0, mode_bpp = 0; 905 struct msm_dp *dp; 906 int mode_pclk_khz = mode->clock; 907 908 dp = to_dp_bridge(bridge)->dp_display; 909 910 if (!dp || !mode_pclk_khz || !dp->connector) { 911 DRM_ERROR("invalid params\n"); 912 return -EINVAL; 913 } 914 915 if (mode->clock > DP_MAX_PIXEL_CLK_KHZ) 916 return MODE_CLOCK_HIGH; 917 918 dp_display = container_of(dp, struct dp_display_private, dp_display); 919 link_info = &dp_display->panel->link_info; 920 921 mode_bpp = dp->connector->display_info.bpc * num_components; 922 if (!mode_bpp) 923 mode_bpp = default_bpp; 924 925 mode_bpp = dp_panel_get_mode_bpp(dp_display->panel, 926 mode_bpp, mode_pclk_khz); 927 928 mode_rate_khz = mode_pclk_khz * mode_bpp; 929 supported_rate_khz = link_info->num_lanes * link_info->rate * 8; 930 931 if (mode_rate_khz > supported_rate_khz) 932 return MODE_BAD; 933 934 return MODE_OK; 935 } 936 937 int dp_display_get_modes(struct msm_dp *dp) 938 { 939 struct dp_display_private *dp_display; 940 941 if (!dp) { 942 DRM_ERROR("invalid params\n"); 943 return 0; 944 } 945 946 dp_display = container_of(dp, struct dp_display_private, dp_display); 947 948 return dp_panel_get_modes(dp_display->panel, 949 dp->connector); 950 } 951 952 bool dp_display_check_video_test(struct msm_dp *dp) 953 { 954 struct dp_display_private *dp_display; 955 956 dp_display = container_of(dp, struct dp_display_private, dp_display); 957 958 return dp_display->panel->video_test; 959 } 960 961 int dp_display_get_test_bpp(struct msm_dp *dp) 962 { 963 struct dp_display_private *dp_display; 964 965 if (!dp) { 966 DRM_ERROR("invalid params\n"); 967 return 0; 968 } 969 970 dp_display = container_of(dp, struct dp_display_private, dp_display); 971 972 return dp_link_bit_depth_to_bpp( 973 dp_display->link->test_video.test_bit_depth); 974 } 975 976 void msm_dp_snapshot(struct msm_disp_state *disp_state, struct msm_dp *dp) 977 { 978 struct dp_display_private *dp_display; 979 980 dp_display = container_of(dp, struct dp_display_private, dp_display); 981 982 /* 983 * if we are reading registers we need the link clocks to be on 984 * however till DP cable is connected this will not happen as we 985 * do not know the resolution to power up with. Hence check the 986 * power_on status before dumping DP registers to avoid crash due 987 * to unclocked access 988 */ 989 mutex_lock(&dp_display->event_mutex); 990 991 if (!dp->power_on) { 992 mutex_unlock(&dp_display->event_mutex); 993 return; 994 } 995 996 dp_catalog_snapshot(dp_display->catalog, disp_state); 997 998 mutex_unlock(&dp_display->event_mutex); 999 } 1000 1001 void dp_display_set_psr(struct msm_dp *dp_display, bool enter) 1002 { 1003 struct dp_display_private *dp; 1004 1005 if (!dp_display) { 1006 DRM_ERROR("invalid params\n"); 1007 return; 1008 } 1009 1010 dp = container_of(dp_display, struct dp_display_private, dp_display); 1011 dp_ctrl_set_psr(dp->ctrl, enter); 1012 } 1013 1014 static int hpd_event_thread(void *data) 1015 { 1016 struct dp_display_private *dp_priv; 1017 unsigned long flag; 1018 struct dp_event *todo; 1019 int timeout_mode = 0; 1020 1021 dp_priv = (struct dp_display_private *)data; 1022 1023 while (1) { 1024 if (timeout_mode) { 1025 wait_event_timeout(dp_priv->event_q, 1026 (dp_priv->event_pndx == dp_priv->event_gndx) || 1027 kthread_should_stop(), EVENT_TIMEOUT); 1028 } else { 1029 wait_event_interruptible(dp_priv->event_q, 1030 (dp_priv->event_pndx != dp_priv->event_gndx) || 1031 kthread_should_stop()); 1032 } 1033 1034 if (kthread_should_stop()) 1035 break; 1036 1037 spin_lock_irqsave(&dp_priv->event_lock, flag); 1038 todo = &dp_priv->event_list[dp_priv->event_gndx]; 1039 if (todo->delay) { 1040 struct dp_event *todo_next; 1041 1042 dp_priv->event_gndx++; 1043 dp_priv->event_gndx %= DP_EVENT_Q_MAX; 1044 1045 /* re enter delay event into q */ 1046 todo_next = &dp_priv->event_list[dp_priv->event_pndx++]; 1047 dp_priv->event_pndx %= DP_EVENT_Q_MAX; 1048 todo_next->event_id = todo->event_id; 1049 todo_next->data = todo->data; 1050 todo_next->delay = todo->delay - 1; 1051 1052 /* clean up older event */ 1053 todo->event_id = EV_NO_EVENT; 1054 todo->delay = 0; 1055 1056 /* switch to timeout mode */ 1057 timeout_mode = 1; 1058 spin_unlock_irqrestore(&dp_priv->event_lock, flag); 1059 continue; 1060 } 1061 1062 /* timeout with no events in q */ 1063 if (dp_priv->event_pndx == dp_priv->event_gndx) { 1064 spin_unlock_irqrestore(&dp_priv->event_lock, flag); 1065 continue; 1066 } 1067 1068 dp_priv->event_gndx++; 1069 dp_priv->event_gndx %= DP_EVENT_Q_MAX; 1070 timeout_mode = 0; 1071 spin_unlock_irqrestore(&dp_priv->event_lock, flag); 1072 1073 switch (todo->event_id) { 1074 case EV_HPD_PLUG_INT: 1075 dp_hpd_plug_handle(dp_priv, todo->data); 1076 break; 1077 case EV_HPD_UNPLUG_INT: 1078 dp_hpd_unplug_handle(dp_priv, todo->data); 1079 break; 1080 case EV_IRQ_HPD_INT: 1081 dp_irq_hpd_handle(dp_priv, todo->data); 1082 break; 1083 case EV_USER_NOTIFICATION: 1084 dp_display_send_hpd_notification(dp_priv, 1085 todo->data); 1086 break; 1087 default: 1088 break; 1089 } 1090 } 1091 1092 return 0; 1093 } 1094 1095 static int dp_hpd_event_thread_start(struct dp_display_private *dp_priv) 1096 { 1097 /* set event q to empty */ 1098 dp_priv->event_gndx = 0; 1099 dp_priv->event_pndx = 0; 1100 1101 dp_priv->ev_tsk = kthread_run(hpd_event_thread, dp_priv, "dp_hpd_handler"); 1102 if (IS_ERR(dp_priv->ev_tsk)) 1103 return PTR_ERR(dp_priv->ev_tsk); 1104 1105 return 0; 1106 } 1107 1108 static irqreturn_t dp_display_irq_handler(int irq, void *dev_id) 1109 { 1110 struct dp_display_private *dp = dev_id; 1111 irqreturn_t ret = IRQ_NONE; 1112 u32 hpd_isr_status; 1113 1114 if (!dp) { 1115 DRM_ERROR("invalid data\n"); 1116 return IRQ_NONE; 1117 } 1118 1119 hpd_isr_status = dp_catalog_hpd_get_intr_status(dp->catalog); 1120 1121 if (hpd_isr_status & 0x0F) { 1122 drm_dbg_dp(dp->drm_dev, "type=%d isr=0x%x\n", 1123 dp->dp_display.connector_type, hpd_isr_status); 1124 /* hpd related interrupts */ 1125 if (hpd_isr_status & DP_DP_HPD_PLUG_INT_MASK) 1126 dp_add_event(dp, EV_HPD_PLUG_INT, 0, 0); 1127 1128 if (hpd_isr_status & DP_DP_IRQ_HPD_INT_MASK) { 1129 dp_add_event(dp, EV_IRQ_HPD_INT, 0, 0); 1130 } 1131 1132 if (hpd_isr_status & DP_DP_HPD_REPLUG_INT_MASK) { 1133 dp_add_event(dp, EV_HPD_UNPLUG_INT, 0, 0); 1134 dp_add_event(dp, EV_HPD_PLUG_INT, 0, 3); 1135 } 1136 1137 if (hpd_isr_status & DP_DP_HPD_UNPLUG_INT_MASK) 1138 dp_add_event(dp, EV_HPD_UNPLUG_INT, 0, 0); 1139 1140 ret = IRQ_HANDLED; 1141 } 1142 1143 /* DP controller isr */ 1144 ret |= dp_ctrl_isr(dp->ctrl); 1145 1146 /* DP aux isr */ 1147 ret |= dp_aux_isr(dp->aux); 1148 1149 return ret; 1150 } 1151 1152 static int dp_display_request_irq(struct dp_display_private *dp) 1153 { 1154 int rc = 0; 1155 struct platform_device *pdev = dp->dp_display.pdev; 1156 1157 dp->irq = platform_get_irq(pdev, 0); 1158 if (dp->irq < 0) { 1159 DRM_ERROR("failed to get irq\n"); 1160 return dp->irq; 1161 } 1162 1163 rc = devm_request_irq(&pdev->dev, dp->irq, dp_display_irq_handler, 1164 IRQF_TRIGGER_HIGH|IRQF_NO_AUTOEN, 1165 "dp_display_isr", dp); 1166 1167 if (rc < 0) { 1168 DRM_ERROR("failed to request IRQ%u: %d\n", 1169 dp->irq, rc); 1170 return rc; 1171 } 1172 1173 return 0; 1174 } 1175 1176 static const struct msm_dp_desc *dp_display_get_desc(struct platform_device *pdev) 1177 { 1178 const struct msm_dp_desc *descs = of_device_get_match_data(&pdev->dev); 1179 struct resource *res; 1180 int i; 1181 1182 res = platform_get_resource(pdev, IORESOURCE_MEM, 0); 1183 if (!res) 1184 return NULL; 1185 1186 for (i = 0; i < descs[i].io_start; i++) { 1187 if (descs[i].io_start == res->start) 1188 return &descs[i]; 1189 } 1190 1191 dev_err(&pdev->dev, "unknown displayport instance\n"); 1192 return NULL; 1193 } 1194 1195 static int dp_display_probe_tail(struct device *dev) 1196 { 1197 struct msm_dp *dp = dev_get_drvdata(dev); 1198 int ret; 1199 1200 /* 1201 * External bridges are mandatory for eDP interfaces: one has to 1202 * provide at least an eDP panel (which gets wrapped into panel-bridge). 1203 * 1204 * For DisplayPort interfaces external bridges are optional, so 1205 * silently ignore an error if one is not present (-ENODEV). 1206 */ 1207 dp->next_bridge = devm_drm_of_get_bridge(&dp->pdev->dev, dp->pdev->dev.of_node, 1, 0); 1208 if (IS_ERR(dp->next_bridge)) { 1209 ret = PTR_ERR(dp->next_bridge); 1210 dp->next_bridge = NULL; 1211 if (dp->is_edp || ret != -ENODEV) 1212 return ret; 1213 } 1214 1215 ret = component_add(dev, &dp_display_comp_ops); 1216 if (ret) 1217 DRM_ERROR("component add failed, rc=%d\n", ret); 1218 1219 return ret; 1220 } 1221 1222 static int dp_auxbus_done_probe(struct drm_dp_aux *aux) 1223 { 1224 return dp_display_probe_tail(aux->dev); 1225 } 1226 1227 static int dp_display_probe(struct platform_device *pdev) 1228 { 1229 int rc = 0; 1230 struct dp_display_private *dp; 1231 const struct msm_dp_desc *desc; 1232 1233 if (!pdev || !pdev->dev.of_node) { 1234 DRM_ERROR("pdev not found\n"); 1235 return -ENODEV; 1236 } 1237 1238 dp = devm_kzalloc(&pdev->dev, sizeof(*dp), GFP_KERNEL); 1239 if (!dp) 1240 return -ENOMEM; 1241 1242 desc = dp_display_get_desc(pdev); 1243 if (!desc) 1244 return -EINVAL; 1245 1246 dp->dp_display.pdev = pdev; 1247 dp->name = "drm_dp"; 1248 dp->id = desc->id; 1249 dp->dp_display.connector_type = desc->connector_type; 1250 dp->wide_bus_en = desc->wide_bus_en; 1251 dp->dp_display.is_edp = 1252 (dp->dp_display.connector_type == DRM_MODE_CONNECTOR_eDP); 1253 1254 rc = dp_init_sub_modules(dp); 1255 if (rc) { 1256 DRM_ERROR("init sub module failed\n"); 1257 return -EPROBE_DEFER; 1258 } 1259 1260 /* setup event q */ 1261 mutex_init(&dp->event_mutex); 1262 init_waitqueue_head(&dp->event_q); 1263 spin_lock_init(&dp->event_lock); 1264 1265 /* Store DP audio handle inside DP display */ 1266 dp->dp_display.dp_audio = dp->audio; 1267 1268 init_completion(&dp->audio_comp); 1269 1270 platform_set_drvdata(pdev, &dp->dp_display); 1271 1272 rc = devm_pm_runtime_enable(&pdev->dev); 1273 if (rc) 1274 goto err; 1275 1276 rc = dp_display_request_irq(dp); 1277 if (rc) 1278 goto err; 1279 1280 if (dp->dp_display.is_edp) { 1281 rc = devm_of_dp_aux_populate_bus(dp->aux, dp_auxbus_done_probe); 1282 if (rc) { 1283 DRM_ERROR("eDP auxbus population failed, rc=%d\n", rc); 1284 goto err; 1285 } 1286 } else { 1287 rc = dp_display_probe_tail(&pdev->dev); 1288 if (rc) 1289 goto err; 1290 } 1291 1292 return rc; 1293 1294 err: 1295 dp_display_deinit_sub_modules(dp); 1296 return rc; 1297 } 1298 1299 static void dp_display_remove(struct platform_device *pdev) 1300 { 1301 struct dp_display_private *dp = dev_get_dp_display_private(&pdev->dev); 1302 1303 component_del(&pdev->dev, &dp_display_comp_ops); 1304 dp_display_deinit_sub_modules(dp); 1305 platform_set_drvdata(pdev, NULL); 1306 } 1307 1308 static int dp_pm_runtime_suspend(struct device *dev) 1309 { 1310 struct dp_display_private *dp = dev_get_dp_display_private(dev); 1311 1312 disable_irq(dp->irq); 1313 1314 if (dp->dp_display.is_edp) { 1315 dp_display_host_phy_exit(dp); 1316 dp_catalog_ctrl_hpd_disable(dp->catalog); 1317 } 1318 dp_display_host_deinit(dp); 1319 1320 return 0; 1321 } 1322 1323 static int dp_pm_runtime_resume(struct device *dev) 1324 { 1325 struct dp_display_private *dp = dev_get_dp_display_private(dev); 1326 1327 /* 1328 * for eDP, host cotroller, HPD block and PHY are enabled here 1329 * but with HPD irq disabled 1330 * 1331 * for DP, only host controller is enabled here. 1332 * HPD block is enabled at dp_bridge_hpd_enable() 1333 * PHY will be enabled at plugin handler later 1334 */ 1335 dp_display_host_init(dp); 1336 if (dp->dp_display.is_edp) { 1337 dp_catalog_ctrl_hpd_enable(dp->catalog); 1338 dp_display_host_phy_init(dp); 1339 } 1340 1341 enable_irq(dp->irq); 1342 return 0; 1343 } 1344 1345 static const struct dev_pm_ops dp_pm_ops = { 1346 SET_RUNTIME_PM_OPS(dp_pm_runtime_suspend, dp_pm_runtime_resume, NULL) 1347 SET_SYSTEM_SLEEP_PM_OPS(pm_runtime_force_suspend, 1348 pm_runtime_force_resume) 1349 }; 1350 1351 static struct platform_driver dp_display_driver = { 1352 .probe = dp_display_probe, 1353 .remove_new = dp_display_remove, 1354 .driver = { 1355 .name = "msm-dp-display", 1356 .of_match_table = dp_dt_match, 1357 .suppress_bind_attrs = true, 1358 .pm = &dp_pm_ops, 1359 }, 1360 }; 1361 1362 int __init msm_dp_register(void) 1363 { 1364 int ret; 1365 1366 ret = platform_driver_register(&dp_display_driver); 1367 if (ret) 1368 DRM_ERROR("Dp display driver register failed"); 1369 1370 return ret; 1371 } 1372 1373 void __exit msm_dp_unregister(void) 1374 { 1375 platform_driver_unregister(&dp_display_driver); 1376 } 1377 1378 bool msm_dp_wide_bus_available(const struct msm_dp *dp_display) 1379 { 1380 struct dp_display_private *dp; 1381 1382 dp = container_of(dp_display, struct dp_display_private, dp_display); 1383 1384 return dp->wide_bus_en; 1385 } 1386 1387 void dp_display_debugfs_init(struct msm_dp *dp_display, struct dentry *root, bool is_edp) 1388 { 1389 struct dp_display_private *dp; 1390 struct device *dev; 1391 int rc; 1392 1393 dp = container_of(dp_display, struct dp_display_private, dp_display); 1394 dev = &dp->dp_display.pdev->dev; 1395 1396 dp->debug = dp_debug_get(dev, dp->panel, 1397 dp->link, dp->dp_display.connector, 1398 root, is_edp); 1399 if (IS_ERR(dp->debug)) { 1400 rc = PTR_ERR(dp->debug); 1401 DRM_ERROR("failed to initialize debug, rc = %d\n", rc); 1402 dp->debug = NULL; 1403 } 1404 } 1405 1406 int msm_dp_modeset_init(struct msm_dp *dp_display, struct drm_device *dev, 1407 struct drm_encoder *encoder) 1408 { 1409 struct dp_display_private *dp_priv; 1410 int ret; 1411 1412 dp_display->drm_dev = dev; 1413 1414 dp_priv = container_of(dp_display, struct dp_display_private, dp_display); 1415 1416 ret = dp_bridge_init(dp_display, dev, encoder); 1417 if (ret) { 1418 DRM_DEV_ERROR(dev->dev, 1419 "failed to create dp bridge: %d\n", ret); 1420 return ret; 1421 } 1422 1423 dp_display->connector = dp_drm_connector_init(dp_display, encoder); 1424 if (IS_ERR(dp_display->connector)) { 1425 ret = PTR_ERR(dp_display->connector); 1426 DRM_DEV_ERROR(dev->dev, 1427 "failed to create dp connector: %d\n", ret); 1428 dp_display->connector = NULL; 1429 return ret; 1430 } 1431 1432 dp_priv->panel->connector = dp_display->connector; 1433 1434 return 0; 1435 } 1436 1437 void dp_bridge_atomic_enable(struct drm_bridge *drm_bridge, 1438 struct drm_bridge_state *old_bridge_state) 1439 { 1440 struct msm_dp_bridge *dp_bridge = to_dp_bridge(drm_bridge); 1441 struct msm_dp *dp = dp_bridge->dp_display; 1442 int rc = 0; 1443 struct dp_display_private *dp_display; 1444 u32 state; 1445 bool force_link_train = false; 1446 1447 dp_display = container_of(dp, struct dp_display_private, dp_display); 1448 if (!dp_display->dp_mode.drm_mode.clock) { 1449 DRM_ERROR("invalid params\n"); 1450 return; 1451 } 1452 1453 if (dp->is_edp) 1454 dp_hpd_plug_handle(dp_display, 0); 1455 1456 mutex_lock(&dp_display->event_mutex); 1457 if (pm_runtime_resume_and_get(&dp->pdev->dev)) { 1458 DRM_ERROR("failed to pm_runtime_resume\n"); 1459 mutex_unlock(&dp_display->event_mutex); 1460 return; 1461 } 1462 1463 state = dp_display->hpd_state; 1464 if (state != ST_DISPLAY_OFF && state != ST_MAINLINK_READY) { 1465 mutex_unlock(&dp_display->event_mutex); 1466 return; 1467 } 1468 1469 rc = dp_display_set_mode(dp, &dp_display->dp_mode); 1470 if (rc) { 1471 DRM_ERROR("Failed to perform a mode set, rc=%d\n", rc); 1472 mutex_unlock(&dp_display->event_mutex); 1473 return; 1474 } 1475 1476 state = dp_display->hpd_state; 1477 1478 if (state == ST_DISPLAY_OFF) { 1479 dp_display_host_phy_init(dp_display); 1480 force_link_train = true; 1481 } 1482 1483 dp_display_enable(dp_display, force_link_train); 1484 1485 rc = dp_display_post_enable(dp); 1486 if (rc) { 1487 DRM_ERROR("DP display post enable failed, rc=%d\n", rc); 1488 dp_display_disable(dp_display); 1489 } 1490 1491 /* completed connection */ 1492 dp_display->hpd_state = ST_CONNECTED; 1493 1494 drm_dbg_dp(dp->drm_dev, "type=%d Done\n", dp->connector_type); 1495 mutex_unlock(&dp_display->event_mutex); 1496 } 1497 1498 void dp_bridge_atomic_disable(struct drm_bridge *drm_bridge, 1499 struct drm_bridge_state *old_bridge_state) 1500 { 1501 struct msm_dp_bridge *dp_bridge = to_dp_bridge(drm_bridge); 1502 struct msm_dp *dp = dp_bridge->dp_display; 1503 struct dp_display_private *dp_display; 1504 1505 dp_display = container_of(dp, struct dp_display_private, dp_display); 1506 1507 dp_ctrl_push_idle(dp_display->ctrl); 1508 } 1509 1510 void dp_bridge_atomic_post_disable(struct drm_bridge *drm_bridge, 1511 struct drm_bridge_state *old_bridge_state) 1512 { 1513 struct msm_dp_bridge *dp_bridge = to_dp_bridge(drm_bridge); 1514 struct msm_dp *dp = dp_bridge->dp_display; 1515 u32 state; 1516 struct dp_display_private *dp_display; 1517 1518 dp_display = container_of(dp, struct dp_display_private, dp_display); 1519 1520 if (dp->is_edp) 1521 dp_hpd_unplug_handle(dp_display, 0); 1522 1523 mutex_lock(&dp_display->event_mutex); 1524 1525 state = dp_display->hpd_state; 1526 if (state != ST_DISCONNECT_PENDING && state != ST_CONNECTED) 1527 drm_dbg_dp(dp->drm_dev, "type=%d wrong hpd_state=%d\n", 1528 dp->connector_type, state); 1529 1530 dp_display_disable(dp_display); 1531 1532 state = dp_display->hpd_state; 1533 if (state == ST_DISCONNECT_PENDING) { 1534 /* completed disconnection */ 1535 dp_display->hpd_state = ST_DISCONNECTED; 1536 } else { 1537 dp_display->hpd_state = ST_DISPLAY_OFF; 1538 } 1539 1540 drm_dbg_dp(dp->drm_dev, "type=%d Done\n", dp->connector_type); 1541 1542 pm_runtime_put_sync(&dp->pdev->dev); 1543 mutex_unlock(&dp_display->event_mutex); 1544 } 1545 1546 void dp_bridge_mode_set(struct drm_bridge *drm_bridge, 1547 const struct drm_display_mode *mode, 1548 const struct drm_display_mode *adjusted_mode) 1549 { 1550 struct msm_dp_bridge *dp_bridge = to_dp_bridge(drm_bridge); 1551 struct msm_dp *dp = dp_bridge->dp_display; 1552 struct dp_display_private *dp_display; 1553 1554 dp_display = container_of(dp, struct dp_display_private, dp_display); 1555 1556 memset(&dp_display->dp_mode, 0x0, sizeof(struct dp_display_mode)); 1557 1558 if (dp_display_check_video_test(dp)) 1559 dp_display->dp_mode.bpp = dp_display_get_test_bpp(dp); 1560 else /* Default num_components per pixel = 3 */ 1561 dp_display->dp_mode.bpp = dp->connector->display_info.bpc * 3; 1562 1563 if (!dp_display->dp_mode.bpp) 1564 dp_display->dp_mode.bpp = 24; /* Default bpp */ 1565 1566 drm_mode_copy(&dp_display->dp_mode.drm_mode, adjusted_mode); 1567 1568 dp_display->dp_mode.v_active_low = 1569 !!(dp_display->dp_mode.drm_mode.flags & DRM_MODE_FLAG_NVSYNC); 1570 1571 dp_display->dp_mode.h_active_low = 1572 !!(dp_display->dp_mode.drm_mode.flags & DRM_MODE_FLAG_NHSYNC); 1573 } 1574 1575 void dp_bridge_hpd_enable(struct drm_bridge *bridge) 1576 { 1577 struct msm_dp_bridge *dp_bridge = to_dp_bridge(bridge); 1578 struct msm_dp *dp_display = dp_bridge->dp_display; 1579 struct dp_display_private *dp = container_of(dp_display, struct dp_display_private, dp_display); 1580 1581 /* 1582 * this is for external DP with hpd irq enabled case, 1583 * step-1: dp_pm_runtime_resume() enable dp host only 1584 * step-2: enable hdp block and have hpd irq enabled here 1585 * step-3: waiting for plugin irq while phy is not initialized 1586 * step-4: DP PHY is initialized at plugin handler before link training 1587 * 1588 */ 1589 mutex_lock(&dp->event_mutex); 1590 if (pm_runtime_resume_and_get(&dp_display->pdev->dev)) { 1591 DRM_ERROR("failed to resume power\n"); 1592 mutex_unlock(&dp->event_mutex); 1593 return; 1594 } 1595 1596 dp_catalog_ctrl_hpd_enable(dp->catalog); 1597 1598 /* enable HDP interrupts */ 1599 dp_catalog_hpd_config_intr(dp->catalog, DP_DP_HPD_INT_MASK, true); 1600 1601 dp_display->internal_hpd = true; 1602 mutex_unlock(&dp->event_mutex); 1603 } 1604 1605 void dp_bridge_hpd_disable(struct drm_bridge *bridge) 1606 { 1607 struct msm_dp_bridge *dp_bridge = to_dp_bridge(bridge); 1608 struct msm_dp *dp_display = dp_bridge->dp_display; 1609 struct dp_display_private *dp = container_of(dp_display, struct dp_display_private, dp_display); 1610 1611 mutex_lock(&dp->event_mutex); 1612 /* disable HDP interrupts */ 1613 dp_catalog_hpd_config_intr(dp->catalog, DP_DP_HPD_INT_MASK, false); 1614 dp_catalog_ctrl_hpd_disable(dp->catalog); 1615 1616 dp_display->internal_hpd = false; 1617 1618 pm_runtime_put_sync(&dp_display->pdev->dev); 1619 mutex_unlock(&dp->event_mutex); 1620 } 1621 1622 void dp_bridge_hpd_notify(struct drm_bridge *bridge, 1623 enum drm_connector_status status) 1624 { 1625 struct msm_dp_bridge *dp_bridge = to_dp_bridge(bridge); 1626 struct msm_dp *dp_display = dp_bridge->dp_display; 1627 struct dp_display_private *dp = container_of(dp_display, struct dp_display_private, dp_display); 1628 1629 /* Without next_bridge interrupts are handled by the DP core directly */ 1630 if (dp_display->internal_hpd) 1631 return; 1632 1633 if (!dp_display->link_ready && status == connector_status_connected) 1634 dp_add_event(dp, EV_HPD_PLUG_INT, 0, 0); 1635 else if (dp_display->link_ready && status == connector_status_disconnected) 1636 dp_add_event(dp, EV_HPD_UNPLUG_INT, 0, 0); 1637 } 1638