2 * Copyright (C) Fuzhou Rockchip Electronics Co.Ltd
3 * Author: Chris Zhong <zyw@rock-chips.com>
5 * This software is licensed under the terms of the GNU General Public
6 * License version 2, as published by the Free Software Foundation, and
7 * may be copied, distributed, and modified under those terms.
9 * This program is distributed in the hope that it will be useful,
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 * GNU General Public License for more details.
16 #include <drm/drm_atomic_helper.h>
17 #include <drm/drm_crtc_helper.h>
18 #include <drm/drm_dp_helper.h>
19 #include <drm/drm_edid.h>
20 #include <drm/drm_of.h>
22 #include <linux/clk.h>
23 #include <linux/component.h>
24 #include <linux/extcon.h>
25 #include <linux/firmware.h>
26 #include <linux/regmap.h>
27 #include <linux/reset.h>
28 #include <linux/mfd/syscon.h>
29 #include <linux/phy/phy.h>
31 #include <sound/hdmi-codec.h>
33 #include "cdn-dp-core.h"
34 #include "cdn-dp-reg.h"
35 #include "rockchip_drm_vop.h"
37 #define connector_to_dp(c) \
38 container_of(c, struct cdn_dp_device, connector)
40 #define encoder_to_dp(c) \
41 container_of(c, struct cdn_dp_device, encoder)
43 #define GRF_SOC_CON9 0x6224
44 #define DP_SEL_VOP_LIT BIT(12)
45 #define GRF_SOC_CON26 0x6268
46 #define UPHY_SEL_BIT 3
47 #define UPHY_SEL_MASK BIT(19)
48 #define DPTX_HPD_SEL (3 << 12)
49 #define DPTX_HPD_DEL (2 << 12)
50 #define DPTX_HPD_SEL_MASK (3 << 28)
52 #define CDN_FW_TIMEOUT_MS (64 * 1000)
53 #define CDN_DPCD_TIMEOUT_MS 5000
54 #define CDN_DP_FIRMWARE "rockchip/dptx.bin"
60 struct cdn_dp_data rk3399_cdn_dp
= {
64 static const struct of_device_id cdn_dp_dt_ids
[] = {
65 { .compatible
= "rockchip,rk3399-cdn-dp",
66 .data
= (void *)&rk3399_cdn_dp
},
70 MODULE_DEVICE_TABLE(of
, cdn_dp_dt_ids
);
72 static int cdn_dp_grf_write(struct cdn_dp_device
*dp
,
73 unsigned int reg
, unsigned int val
)
77 ret
= clk_prepare_enable(dp
->grf_clk
);
79 DRM_DEV_ERROR(dp
->dev
, "Failed to prepare_enable grf clock\n");
83 ret
= regmap_write(dp
->grf
, reg
, val
);
85 DRM_DEV_ERROR(dp
->dev
, "Could not write to GRF: %d\n", ret
);
89 clk_disable_unprepare(dp
->grf_clk
);
94 static int cdn_dp_clk_enable(struct cdn_dp_device
*dp
)
99 ret
= clk_prepare_enable(dp
->pclk
);
101 DRM_DEV_ERROR(dp
->dev
, "cannot enable dp pclk %d\n", ret
);
105 ret
= clk_prepare_enable(dp
->core_clk
);
107 DRM_DEV_ERROR(dp
->dev
, "cannot enable core_clk %d\n", ret
);
111 ret
= pm_runtime_get_sync(dp
->dev
);
113 DRM_DEV_ERROR(dp
->dev
, "cannot get pm runtime %d\n", ret
);
114 goto err_pm_runtime_get
;
117 reset_control_assert(dp
->core_rst
);
118 reset_control_assert(dp
->dptx_rst
);
119 reset_control_assert(dp
->apb_rst
);
120 reset_control_deassert(dp
->core_rst
);
121 reset_control_deassert(dp
->dptx_rst
);
122 reset_control_deassert(dp
->apb_rst
);
124 rate
= clk_get_rate(dp
->core_clk
);
126 DRM_DEV_ERROR(dp
->dev
, "get clk rate failed\n");
131 cdn_dp_set_fw_clk(dp
, rate
);
132 cdn_dp_clock_reset(dp
);
137 pm_runtime_put(dp
->dev
);
139 clk_disable_unprepare(dp
->core_clk
);
141 clk_disable_unprepare(dp
->pclk
);
146 static void cdn_dp_clk_disable(struct cdn_dp_device
*dp
)
148 pm_runtime_put_sync(dp
->dev
);
149 clk_disable_unprepare(dp
->pclk
);
150 clk_disable_unprepare(dp
->core_clk
);
153 static int cdn_dp_get_port_lanes(struct cdn_dp_port
*port
)
155 struct extcon_dev
*edev
= port
->extcon
;
156 union extcon_property_value property
;
160 dptx
= extcon_get_state(edev
, EXTCON_DISP_DP
);
162 extcon_get_property(edev
, EXTCON_DISP_DP
,
163 EXTCON_PROP_USB_SS
, &property
);
175 static int cdn_dp_get_sink_count(struct cdn_dp_device
*dp
, u8
*sink_count
)
181 ret
= cdn_dp_dpcd_read(dp
, DP_SINK_COUNT
, &value
, 1);
185 *sink_count
= DP_GET_SINK_COUNT(value
);
189 static struct cdn_dp_port
*cdn_dp_connected_port(struct cdn_dp_device
*dp
)
191 struct cdn_dp_port
*port
;
194 for (i
= 0; i
< dp
->ports
; i
++) {
196 lanes
= cdn_dp_get_port_lanes(port
);
203 static bool cdn_dp_check_sink_connection(struct cdn_dp_device
*dp
)
205 unsigned long timeout
= jiffies
+ msecs_to_jiffies(CDN_DPCD_TIMEOUT_MS
);
206 struct cdn_dp_port
*port
;
209 if (dp
->active_port
< 0 || dp
->active_port
>= dp
->ports
) {
210 DRM_DEV_ERROR(dp
->dev
, "active_port is wrong!\n");
214 port
= dp
->port
[dp
->active_port
];
217 * Attempt to read sink count, retry in case the sink may not be ready.
219 * Sinks are *supposed* to come up within 1ms from an off state, but
220 * some docks need more time to power up.
222 while (time_before(jiffies
, timeout
)) {
223 if (!extcon_get_state(port
->extcon
, EXTCON_DISP_DP
))
226 if (!cdn_dp_get_sink_count(dp
, &sink_count
))
227 return sink_count
? true : false;
229 usleep_range(5000, 10000);
232 DRM_DEV_ERROR(dp
->dev
, "Get sink capability timed out\n");
236 static enum drm_connector_status
237 cdn_dp_connector_detect(struct drm_connector
*connector
, bool force
)
239 struct cdn_dp_device
*dp
= connector_to_dp(connector
);
240 enum drm_connector_status status
= connector_status_disconnected
;
242 mutex_lock(&dp
->lock
);
244 status
= connector_status_connected
;
245 mutex_unlock(&dp
->lock
);
250 static void cdn_dp_connector_destroy(struct drm_connector
*connector
)
252 drm_connector_unregister(connector
);
253 drm_connector_cleanup(connector
);
256 static const struct drm_connector_funcs cdn_dp_atomic_connector_funcs
= {
257 .detect
= cdn_dp_connector_detect
,
258 .destroy
= cdn_dp_connector_destroy
,
259 .fill_modes
= drm_helper_probe_single_connector_modes
,
260 .reset
= drm_atomic_helper_connector_reset
,
261 .atomic_duplicate_state
= drm_atomic_helper_connector_duplicate_state
,
262 .atomic_destroy_state
= drm_atomic_helper_connector_destroy_state
,
265 static int cdn_dp_connector_get_modes(struct drm_connector
*connector
)
267 struct cdn_dp_device
*dp
= connector_to_dp(connector
);
271 mutex_lock(&dp
->lock
);
274 DRM_DEV_DEBUG_KMS(dp
->dev
, "got edid: width[%d] x height[%d]\n",
275 edid
->width_cm
, edid
->height_cm
);
277 dp
->sink_has_audio
= drm_detect_monitor_audio(edid
);
278 ret
= drm_add_edid_modes(connector
, edid
);
280 drm_mode_connector_update_edid_property(connector
,
283 mutex_unlock(&dp
->lock
);
288 static int cdn_dp_connector_mode_valid(struct drm_connector
*connector
,
289 struct drm_display_mode
*mode
)
291 struct cdn_dp_device
*dp
= connector_to_dp(connector
);
292 struct drm_display_info
*display_info
= &dp
->connector
.display_info
;
293 u32 requested
, actual
, rate
, sink_max
, source_max
= 0;
296 /* If DP is disconnected, every mode is invalid */
300 switch (display_info
->bpc
) {
312 requested
= mode
->clock
* bpc
* 3 / 1000;
314 source_max
= dp
->lanes
;
315 sink_max
= drm_dp_max_lane_count(dp
->dpcd
);
316 lanes
= min(source_max
, sink_max
);
318 source_max
= drm_dp_bw_code_to_link_rate(CDN_DP_MAX_LINK_RATE
);
319 sink_max
= drm_dp_max_link_rate(dp
->dpcd
);
320 rate
= min(source_max
, sink_max
);
322 actual
= rate
* lanes
/ 100;
324 /* efficiency is about 0.8 */
325 actual
= actual
* 8 / 10;
327 if (requested
> actual
) {
328 DRM_DEV_DEBUG_KMS(dp
->dev
,
329 "requested=%d, actual=%d, clock=%d\n",
330 requested
, actual
, mode
->clock
);
331 return MODE_CLOCK_HIGH
;
337 static struct drm_connector_helper_funcs cdn_dp_connector_helper_funcs
= {
338 .get_modes
= cdn_dp_connector_get_modes
,
339 .mode_valid
= cdn_dp_connector_mode_valid
,
342 static int cdn_dp_firmware_init(struct cdn_dp_device
*dp
)
345 const u32
*iram_data
, *dram_data
;
346 const struct firmware
*fw
= dp
->fw
;
347 const struct cdn_firmware_header
*hdr
;
349 hdr
= (struct cdn_firmware_header
*)fw
->data
;
350 if (fw
->size
!= le32_to_cpu(hdr
->size_bytes
)) {
351 DRM_DEV_ERROR(dp
->dev
, "firmware is invalid\n");
355 iram_data
= (const u32
*)(fw
->data
+ hdr
->header_size
);
356 dram_data
= (const u32
*)(fw
->data
+ hdr
->header_size
+ hdr
->iram_size
);
358 ret
= cdn_dp_load_firmware(dp
, iram_data
, hdr
->iram_size
,
359 dram_data
, hdr
->dram_size
);
363 ret
= cdn_dp_set_firmware_active(dp
, true);
365 DRM_DEV_ERROR(dp
->dev
, "active ucpu failed: %d\n", ret
);
369 return cdn_dp_event_config(dp
);
372 static int cdn_dp_get_sink_capability(struct cdn_dp_device
*dp
)
376 if (!cdn_dp_check_sink_connection(dp
))
379 ret
= cdn_dp_dpcd_read(dp
, DP_DPCD_REV
, dp
->dpcd
,
380 DP_RECEIVER_CAP_SIZE
);
382 DRM_DEV_ERROR(dp
->dev
, "Failed to get caps %d\n", ret
);
387 dp
->edid
= drm_do_get_edid(&dp
->connector
,
388 cdn_dp_get_edid_block
, dp
);
392 static int cdn_dp_enable_phy(struct cdn_dp_device
*dp
, struct cdn_dp_port
*port
)
394 union extcon_property_value property
;
397 ret
= cdn_dp_grf_write(dp
, GRF_SOC_CON26
,
398 (port
->id
<< UPHY_SEL_BIT
) | UPHY_SEL_MASK
);
402 if (!port
->phy_enabled
) {
403 ret
= phy_power_on(port
->phy
);
405 DRM_DEV_ERROR(dp
->dev
, "phy power on failed: %d\n",
409 port
->phy_enabled
= true;
412 ret
= cdn_dp_grf_write(dp
, GRF_SOC_CON26
,
413 DPTX_HPD_SEL_MASK
| DPTX_HPD_SEL
);
415 DRM_DEV_ERROR(dp
->dev
, "Failed to write HPD_SEL %d\n", ret
);
419 ret
= cdn_dp_get_hpd_status(dp
);
422 DRM_DEV_ERROR(dp
->dev
, "hpd does not exist\n");
426 ret
= extcon_get_property(port
->extcon
, EXTCON_DISP_DP
,
427 EXTCON_PROP_USB_TYPEC_POLARITY
, &property
);
429 DRM_DEV_ERROR(dp
->dev
, "get property failed\n");
433 port
->lanes
= cdn_dp_get_port_lanes(port
);
434 ret
= cdn_dp_set_host_cap(dp
, port
->lanes
, property
.intval
);
436 DRM_DEV_ERROR(dp
->dev
, "set host capabilities failed: %d\n",
441 dp
->active_port
= port
->id
;
445 if (phy_power_off(port
->phy
))
446 DRM_DEV_ERROR(dp
->dev
, "phy power off failed: %d", ret
);
448 port
->phy_enabled
= false;
451 cdn_dp_grf_write(dp
, GRF_SOC_CON26
,
452 DPTX_HPD_SEL_MASK
| DPTX_HPD_DEL
);
456 static int cdn_dp_disable_phy(struct cdn_dp_device
*dp
,
457 struct cdn_dp_port
*port
)
461 if (port
->phy_enabled
) {
462 ret
= phy_power_off(port
->phy
);
464 DRM_DEV_ERROR(dp
->dev
, "phy power off failed: %d", ret
);
469 port
->phy_enabled
= false;
471 dp
->active_port
= -1;
475 static int cdn_dp_disable(struct cdn_dp_device
*dp
)
482 for (i
= 0; i
< dp
->ports
; i
++)
483 cdn_dp_disable_phy(dp
, dp
->port
[i
]);
485 ret
= cdn_dp_grf_write(dp
, GRF_SOC_CON26
,
486 DPTX_HPD_SEL_MASK
| DPTX_HPD_DEL
);
488 DRM_DEV_ERROR(dp
->dev
, "Failed to clear hpd sel %d\n",
493 cdn_dp_set_firmware_active(dp
, false);
494 cdn_dp_clk_disable(dp
);
497 dp
->link
.num_lanes
= 0;
498 if (!dp
->connected
) {
506 static int cdn_dp_enable(struct cdn_dp_device
*dp
)
509 struct cdn_dp_port
*port
;
511 port
= cdn_dp_connected_port(dp
);
513 DRM_DEV_ERROR(dp
->dev
,
514 "Can't enable without connection\n");
521 ret
= cdn_dp_clk_enable(dp
);
525 ret
= cdn_dp_firmware_init(dp
);
527 DRM_DEV_ERROR(dp
->dev
, "firmware init failed: %d", ret
);
528 goto err_clk_disable
;
531 /* only enable the port that connected with downstream device */
532 for (i
= port
->id
; i
< dp
->ports
; i
++) {
534 lanes
= cdn_dp_get_port_lanes(port
);
536 ret
= cdn_dp_enable_phy(dp
, port
);
540 ret
= cdn_dp_get_sink_capability(dp
);
542 cdn_dp_disable_phy(dp
, port
);
545 dp
->lanes
= port
->lanes
;
552 cdn_dp_clk_disable(dp
);
556 static void cdn_dp_encoder_mode_set(struct drm_encoder
*encoder
,
557 struct drm_display_mode
*mode
,
558 struct drm_display_mode
*adjusted
)
560 struct cdn_dp_device
*dp
= encoder_to_dp(encoder
);
561 struct drm_display_info
*display_info
= &dp
->connector
.display_info
;
562 struct video_info
*video
= &dp
->video_info
;
564 switch (display_info
->bpc
) {
566 video
->color_depth
= 10;
569 video
->color_depth
= 6;
572 video
->color_depth
= 8;
576 video
->color_fmt
= PXL_RGB
;
577 video
->v_sync_polarity
= !!(mode
->flags
& DRM_MODE_FLAG_NVSYNC
);
578 video
->h_sync_polarity
= !!(mode
->flags
& DRM_MODE_FLAG_NHSYNC
);
580 memcpy(&dp
->mode
, adjusted
, sizeof(*mode
));
583 static bool cdn_dp_check_link_status(struct cdn_dp_device
*dp
)
585 u8 link_status
[DP_LINK_STATUS_SIZE
];
586 struct cdn_dp_port
*port
= cdn_dp_connected_port(dp
);
587 u8 sink_lanes
= drm_dp_max_lane_count(dp
->dpcd
);
589 if (!port
|| !dp
->link
.rate
|| !dp
->link
.num_lanes
)
592 if (cdn_dp_dpcd_read(dp
, DP_LANE0_1_STATUS
, link_status
,
593 DP_LINK_STATUS_SIZE
)) {
594 DRM_ERROR("Failed to get link status\n");
598 /* if link training is requested we should perform it always */
599 return drm_dp_channel_eq_ok(link_status
, min(port
->lanes
, sink_lanes
));
602 static void cdn_dp_encoder_enable(struct drm_encoder
*encoder
)
604 struct cdn_dp_device
*dp
= encoder_to_dp(encoder
);
607 ret
= drm_of_encoder_active_endpoint_id(dp
->dev
->of_node
, encoder
);
609 DRM_DEV_ERROR(dp
->dev
, "Could not get vop id, %d", ret
);
613 DRM_DEV_DEBUG_KMS(dp
->dev
, "vop %s output to cdn-dp\n",
614 (ret
) ? "LIT" : "BIG");
616 val
= DP_SEL_VOP_LIT
| (DP_SEL_VOP_LIT
<< 16);
618 val
= DP_SEL_VOP_LIT
<< 16;
620 ret
= cdn_dp_grf_write(dp
, GRF_SOC_CON9
, val
);
624 mutex_lock(&dp
->lock
);
626 ret
= cdn_dp_enable(dp
);
628 DRM_DEV_ERROR(dp
->dev
, "Failed to enable encoder %d\n",
632 if (!cdn_dp_check_link_status(dp
)) {
633 ret
= cdn_dp_train_link(dp
);
635 DRM_DEV_ERROR(dp
->dev
, "Failed link train %d\n", ret
);
640 ret
= cdn_dp_set_video_status(dp
, CONTROL_VIDEO_IDLE
);
642 DRM_DEV_ERROR(dp
->dev
, "Failed to idle video %d\n", ret
);
646 ret
= cdn_dp_config_video(dp
);
648 DRM_DEV_ERROR(dp
->dev
, "Failed to config video %d\n", ret
);
652 ret
= cdn_dp_set_video_status(dp
, CONTROL_VIDEO_VALID
);
654 DRM_DEV_ERROR(dp
->dev
, "Failed to valid video %d\n", ret
);
658 mutex_unlock(&dp
->lock
);
661 static void cdn_dp_encoder_disable(struct drm_encoder
*encoder
)
663 struct cdn_dp_device
*dp
= encoder_to_dp(encoder
);
666 mutex_lock(&dp
->lock
);
668 ret
= cdn_dp_disable(dp
);
670 DRM_DEV_ERROR(dp
->dev
, "Failed to disable encoder %d\n",
674 mutex_unlock(&dp
->lock
);
677 * In the following 2 cases, we need to run the event_work to re-enable
679 * 1. If there is not just one port device is connected, and remove one
680 * device from a port, the DP will be disabled here, at this case,
681 * run the event_work to re-open DP for the other port.
682 * 2. If re-training or re-config failed, the DP will be disabled here.
683 * run the event_work to re-connect it.
685 if (!dp
->connected
&& cdn_dp_connected_port(dp
))
686 schedule_work(&dp
->event_work
);
689 static int cdn_dp_encoder_atomic_check(struct drm_encoder
*encoder
,
690 struct drm_crtc_state
*crtc_state
,
691 struct drm_connector_state
*conn_state
)
693 struct rockchip_crtc_state
*s
= to_rockchip_crtc_state(crtc_state
);
695 s
->output_mode
= ROCKCHIP_OUT_MODE_AAAA
;
696 s
->output_type
= DRM_MODE_CONNECTOR_DisplayPort
;
701 static const struct drm_encoder_helper_funcs cdn_dp_encoder_helper_funcs
= {
702 .mode_set
= cdn_dp_encoder_mode_set
,
703 .enable
= cdn_dp_encoder_enable
,
704 .disable
= cdn_dp_encoder_disable
,
705 .atomic_check
= cdn_dp_encoder_atomic_check
,
708 static const struct drm_encoder_funcs cdn_dp_encoder_funcs
= {
709 .destroy
= drm_encoder_cleanup
,
712 static int cdn_dp_parse_dt(struct cdn_dp_device
*dp
)
714 struct device
*dev
= dp
->dev
;
715 struct device_node
*np
= dev
->of_node
;
716 struct platform_device
*pdev
= to_platform_device(dev
);
717 struct resource
*res
;
719 dp
->grf
= syscon_regmap_lookup_by_phandle(np
, "rockchip,grf");
720 if (IS_ERR(dp
->grf
)) {
721 DRM_DEV_ERROR(dev
, "cdn-dp needs rockchip,grf property\n");
722 return PTR_ERR(dp
->grf
);
725 res
= platform_get_resource(pdev
, IORESOURCE_MEM
, 0);
726 dp
->regs
= devm_ioremap_resource(dev
, res
);
727 if (IS_ERR(dp
->regs
)) {
728 DRM_DEV_ERROR(dev
, "ioremap reg failed\n");
729 return PTR_ERR(dp
->regs
);
732 dp
->core_clk
= devm_clk_get(dev
, "core-clk");
733 if (IS_ERR(dp
->core_clk
)) {
734 DRM_DEV_ERROR(dev
, "cannot get core_clk_dp\n");
735 return PTR_ERR(dp
->core_clk
);
738 dp
->pclk
= devm_clk_get(dev
, "pclk");
739 if (IS_ERR(dp
->pclk
)) {
740 DRM_DEV_ERROR(dev
, "cannot get pclk\n");
741 return PTR_ERR(dp
->pclk
);
744 dp
->spdif_clk
= devm_clk_get(dev
, "spdif");
745 if (IS_ERR(dp
->spdif_clk
)) {
746 DRM_DEV_ERROR(dev
, "cannot get spdif_clk\n");
747 return PTR_ERR(dp
->spdif_clk
);
750 dp
->grf_clk
= devm_clk_get(dev
, "grf");
751 if (IS_ERR(dp
->grf_clk
)) {
752 DRM_DEV_ERROR(dev
, "cannot get grf clk\n");
753 return PTR_ERR(dp
->grf_clk
);
756 dp
->spdif_rst
= devm_reset_control_get(dev
, "spdif");
757 if (IS_ERR(dp
->spdif_rst
)) {
758 DRM_DEV_ERROR(dev
, "no spdif reset control found\n");
759 return PTR_ERR(dp
->spdif_rst
);
762 dp
->dptx_rst
= devm_reset_control_get(dev
, "dptx");
763 if (IS_ERR(dp
->dptx_rst
)) {
764 DRM_DEV_ERROR(dev
, "no uphy reset control found\n");
765 return PTR_ERR(dp
->dptx_rst
);
768 dp
->core_rst
= devm_reset_control_get(dev
, "core");
769 if (IS_ERR(dp
->core_rst
)) {
770 DRM_DEV_ERROR(dev
, "no core reset control found\n");
771 return PTR_ERR(dp
->core_rst
);
774 dp
->apb_rst
= devm_reset_control_get(dev
, "apb");
775 if (IS_ERR(dp
->apb_rst
)) {
776 DRM_DEV_ERROR(dev
, "no apb reset control found\n");
777 return PTR_ERR(dp
->apb_rst
);
783 static int cdn_dp_audio_hw_params(struct device
*dev
, void *data
,
784 struct hdmi_codec_daifmt
*daifmt
,
785 struct hdmi_codec_params
*params
)
787 struct cdn_dp_device
*dp
= dev_get_drvdata(dev
);
788 struct audio_info audio
= {
789 .sample_width
= params
->sample_width
,
790 .sample_rate
= params
->sample_rate
,
791 .channels
= params
->channels
,
795 mutex_lock(&dp
->lock
);
801 switch (daifmt
->fmt
) {
803 audio
.format
= AFMT_I2S
;
806 audio
.format
= AFMT_SPDIF
;
809 DRM_DEV_ERROR(dev
, "Invalid format %d\n", daifmt
->fmt
);
814 ret
= cdn_dp_audio_config(dp
, &audio
);
816 dp
->audio_info
= audio
;
819 mutex_unlock(&dp
->lock
);
823 static void cdn_dp_audio_shutdown(struct device
*dev
, void *data
)
825 struct cdn_dp_device
*dp
= dev_get_drvdata(dev
);
828 mutex_lock(&dp
->lock
);
832 ret
= cdn_dp_audio_stop(dp
, &dp
->audio_info
);
834 dp
->audio_info
.format
= AFMT_UNUSED
;
836 mutex_unlock(&dp
->lock
);
839 static int cdn_dp_audio_digital_mute(struct device
*dev
, void *data
,
842 struct cdn_dp_device
*dp
= dev_get_drvdata(dev
);
845 mutex_lock(&dp
->lock
);
851 ret
= cdn_dp_audio_mute(dp
, enable
);
854 mutex_unlock(&dp
->lock
);
858 static int cdn_dp_audio_get_eld(struct device
*dev
, void *data
,
861 struct cdn_dp_device
*dp
= dev_get_drvdata(dev
);
863 memcpy(buf
, dp
->connector
.eld
, min(sizeof(dp
->connector
.eld
), len
));
868 static const struct hdmi_codec_ops audio_codec_ops
= {
869 .hw_params
= cdn_dp_audio_hw_params
,
870 .audio_shutdown
= cdn_dp_audio_shutdown
,
871 .digital_mute
= cdn_dp_audio_digital_mute
,
872 .get_eld
= cdn_dp_audio_get_eld
,
875 static int cdn_dp_audio_codec_init(struct cdn_dp_device
*dp
,
878 struct hdmi_codec_pdata codec_data
= {
881 .ops
= &audio_codec_ops
,
882 .max_i2s_channels
= 8,
885 dp
->audio_pdev
= platform_device_register_data(
886 dev
, HDMI_CODEC_DRV_NAME
, PLATFORM_DEVID_AUTO
,
887 &codec_data
, sizeof(codec_data
));
889 return PTR_ERR_OR_ZERO(dp
->audio_pdev
);
892 static int cdn_dp_request_firmware(struct cdn_dp_device
*dp
)
895 unsigned long timeout
= jiffies
+ msecs_to_jiffies(CDN_FW_TIMEOUT_MS
);
896 unsigned long sleep
= 1000;
898 WARN_ON(!mutex_is_locked(&dp
->lock
));
903 /* Drop the lock before getting the firmware to avoid blocking boot */
904 mutex_unlock(&dp
->lock
);
906 while (time_before(jiffies
, timeout
)) {
907 ret
= request_firmware(&dp
->fw
, CDN_DP_FIRMWARE
, dp
->dev
);
908 if (ret
== -ENOENT
) {
913 DRM_DEV_ERROR(dp
->dev
,
914 "failed to request firmware: %d\n", ret
);
918 dp
->fw_loaded
= true;
923 DRM_DEV_ERROR(dp
->dev
, "Timed out trying to load firmware\n");
926 mutex_lock(&dp
->lock
);
930 static void cdn_dp_pd_event_work(struct work_struct
*work
)
932 struct cdn_dp_device
*dp
= container_of(work
, struct cdn_dp_device
,
934 struct drm_connector
*connector
= &dp
->connector
;
935 enum drm_connector_status old_status
;
939 mutex_lock(&dp
->lock
);
944 ret
= cdn_dp_request_firmware(dp
);
948 dp
->connected
= true;
950 /* Not connected, notify userspace to disable the block */
951 if (!cdn_dp_connected_port(dp
)) {
952 DRM_DEV_INFO(dp
->dev
, "Not connected. Disabling cdn\n");
953 dp
->connected
= false;
955 /* Connected but not enabled, enable the block */
956 } else if (!dp
->active
) {
957 DRM_DEV_INFO(dp
->dev
, "Connected, not enabled. Enabling cdn\n");
958 ret
= cdn_dp_enable(dp
);
960 DRM_DEV_ERROR(dp
->dev
, "Enable dp failed %d\n", ret
);
961 dp
->connected
= false;
964 /* Enabled and connected to a dongle without a sink, notify userspace */
965 } else if (!cdn_dp_check_sink_connection(dp
)) {
966 DRM_DEV_INFO(dp
->dev
, "Connected without sink. Assert hpd\n");
967 dp
->connected
= false;
969 /* Enabled and connected with a sink, re-train if requested */
970 } else if (!cdn_dp_check_link_status(dp
)) {
971 unsigned int rate
= dp
->link
.rate
;
972 unsigned int lanes
= dp
->link
.num_lanes
;
973 struct drm_display_mode
*mode
= &dp
->mode
;
975 DRM_DEV_INFO(dp
->dev
, "Connected with sink. Re-train link\n");
976 ret
= cdn_dp_train_link(dp
);
978 dp
->connected
= false;
979 DRM_DEV_ERROR(dp
->dev
, "Train link failed %d\n", ret
);
983 /* If training result is changed, update the video config */
985 (rate
!= dp
->link
.rate
|| lanes
!= dp
->link
.num_lanes
)) {
986 ret
= cdn_dp_config_video(dp
);
988 dp
->connected
= false;
989 DRM_DEV_ERROR(dp
->dev
,
990 "Failed to config video %d\n",
997 mutex_unlock(&dp
->lock
);
999 old_status
= connector
->status
;
1000 connector
->status
= connector
->funcs
->detect(connector
, false);
1001 if (old_status
!= connector
->status
)
1002 drm_kms_helper_hotplug_event(dp
->drm_dev
);
1005 static int cdn_dp_pd_event(struct notifier_block
*nb
,
1006 unsigned long event
, void *priv
)
1008 struct cdn_dp_port
*port
= container_of(nb
, struct cdn_dp_port
,
1010 struct cdn_dp_device
*dp
= port
->dp
;
1013 * It would be nice to be able to just do the work inline right here.
1014 * However, we need to make a bunch of calls that might sleep in order
1015 * to turn on the block/phy, so use a worker instead.
1017 schedule_work(&dp
->event_work
);
1022 static int cdn_dp_bind(struct device
*dev
, struct device
*master
, void *data
)
1024 struct cdn_dp_device
*dp
= dev_get_drvdata(dev
);
1025 struct drm_encoder
*encoder
;
1026 struct drm_connector
*connector
;
1027 struct cdn_dp_port
*port
;
1028 struct drm_device
*drm_dev
= data
;
1031 ret
= cdn_dp_parse_dt(dp
);
1035 dp
->drm_dev
= drm_dev
;
1036 dp
->connected
= false;
1038 dp
->active_port
= -1;
1039 dp
->fw_loaded
= false;
1041 INIT_WORK(&dp
->event_work
, cdn_dp_pd_event_work
);
1043 encoder
= &dp
->encoder
;
1045 encoder
->possible_crtcs
= drm_of_find_possible_crtcs(drm_dev
,
1047 DRM_DEBUG_KMS("possible_crtcs = 0x%x\n", encoder
->possible_crtcs
);
1049 ret
= drm_encoder_init(drm_dev
, encoder
, &cdn_dp_encoder_funcs
,
1050 DRM_MODE_ENCODER_TMDS
, NULL
);
1052 DRM_ERROR("failed to initialize encoder with drm\n");
1056 drm_encoder_helper_add(encoder
, &cdn_dp_encoder_helper_funcs
);
1058 connector
= &dp
->connector
;
1059 connector
->polled
= DRM_CONNECTOR_POLL_HPD
;
1060 connector
->dpms
= DRM_MODE_DPMS_OFF
;
1062 ret
= drm_connector_init(drm_dev
, connector
,
1063 &cdn_dp_atomic_connector_funcs
,
1064 DRM_MODE_CONNECTOR_DisplayPort
);
1066 DRM_ERROR("failed to initialize connector with drm\n");
1067 goto err_free_encoder
;
1070 drm_connector_helper_add(connector
, &cdn_dp_connector_helper_funcs
);
1072 ret
= drm_mode_connector_attach_encoder(connector
, encoder
);
1074 DRM_ERROR("failed to attach connector and encoder\n");
1075 goto err_free_connector
;
1078 for (i
= 0; i
< dp
->ports
; i
++) {
1081 port
->event_nb
.notifier_call
= cdn_dp_pd_event
;
1082 ret
= devm_extcon_register_notifier(dp
->dev
, port
->extcon
,
1087 "register EXTCON_DISP_DP notifier err\n");
1088 goto err_free_connector
;
1092 pm_runtime_enable(dev
);
1094 schedule_work(&dp
->event_work
);
1099 drm_connector_cleanup(connector
);
1101 drm_encoder_cleanup(encoder
);
1105 static void cdn_dp_unbind(struct device
*dev
, struct device
*master
, void *data
)
1107 struct cdn_dp_device
*dp
= dev_get_drvdata(dev
);
1108 struct drm_encoder
*encoder
= &dp
->encoder
;
1109 struct drm_connector
*connector
= &dp
->connector
;
1111 cancel_work_sync(&dp
->event_work
);
1112 cdn_dp_encoder_disable(encoder
);
1113 encoder
->funcs
->destroy(encoder
);
1114 connector
->funcs
->destroy(connector
);
1116 pm_runtime_disable(dev
);
1118 release_firmware(dp
->fw
);
1123 static const struct component_ops cdn_dp_component_ops
= {
1124 .bind
= cdn_dp_bind
,
1125 .unbind
= cdn_dp_unbind
,
1128 int cdn_dp_suspend(struct device
*dev
)
1130 struct cdn_dp_device
*dp
= dev_get_drvdata(dev
);
1133 mutex_lock(&dp
->lock
);
1135 ret
= cdn_dp_disable(dp
);
1136 dp
->suspended
= true;
1137 mutex_unlock(&dp
->lock
);
1142 int cdn_dp_resume(struct device
*dev
)
1144 struct cdn_dp_device
*dp
= dev_get_drvdata(dev
);
1146 mutex_lock(&dp
->lock
);
1147 dp
->suspended
= false;
1149 schedule_work(&dp
->event_work
);
1150 mutex_unlock(&dp
->lock
);
1155 static int cdn_dp_probe(struct platform_device
*pdev
)
1157 struct device
*dev
= &pdev
->dev
;
1158 const struct of_device_id
*match
;
1159 struct cdn_dp_data
*dp_data
;
1160 struct cdn_dp_port
*port
;
1161 struct cdn_dp_device
*dp
;
1162 struct extcon_dev
*extcon
;
1166 dp
= devm_kzalloc(dev
, sizeof(*dp
), GFP_KERNEL
);
1171 match
= of_match_node(cdn_dp_dt_ids
, pdev
->dev
.of_node
);
1172 dp_data
= (struct cdn_dp_data
*)match
->data
;
1174 for (i
= 0; i
< dp_data
->max_phy
; i
++) {
1175 extcon
= extcon_get_edev_by_phandle(dev
, i
);
1176 phy
= devm_of_phy_get_by_index(dev
, dev
->of_node
, i
);
1178 if (PTR_ERR(extcon
) == -EPROBE_DEFER
||
1179 PTR_ERR(phy
) == -EPROBE_DEFER
)
1180 return -EPROBE_DEFER
;
1182 if (IS_ERR(extcon
) || IS_ERR(phy
))
1185 port
= devm_kzalloc(dev
, sizeof(*port
), GFP_KERNEL
);
1189 port
->extcon
= extcon
;
1193 dp
->port
[dp
->ports
++] = port
;
1197 DRM_DEV_ERROR(dev
, "missing extcon or phy\n");
1201 mutex_init(&dp
->lock
);
1202 dev_set_drvdata(dev
, dp
);
1204 cdn_dp_audio_codec_init(dp
, dev
);
1206 return component_add(dev
, &cdn_dp_component_ops
);
1209 static int cdn_dp_remove(struct platform_device
*pdev
)
1211 struct cdn_dp_device
*dp
= platform_get_drvdata(pdev
);
1213 platform_device_unregister(dp
->audio_pdev
);
1214 cdn_dp_suspend(dp
->dev
);
1215 component_del(&pdev
->dev
, &cdn_dp_component_ops
);
1220 static void cdn_dp_shutdown(struct platform_device
*pdev
)
1222 struct cdn_dp_device
*dp
= platform_get_drvdata(pdev
);
1224 cdn_dp_suspend(dp
->dev
);
1227 static const struct dev_pm_ops cdn_dp_pm_ops
= {
1228 SET_SYSTEM_SLEEP_PM_OPS(cdn_dp_suspend
,
1232 struct platform_driver cdn_dp_driver
= {
1233 .probe
= cdn_dp_probe
,
1234 .remove
= cdn_dp_remove
,
1235 .shutdown
= cdn_dp_shutdown
,
1238 .owner
= THIS_MODULE
,
1239 .of_match_table
= of_match_ptr(cdn_dp_dt_ids
),
1240 .pm
= &cdn_dp_pm_ops
,