2 * Samsung SoC DP (Display Port) interface driver.
4 * Copyright (C) 2012 Samsung Electronics Co., Ltd.
5 * Author: Jingoo Han <jg1.han@samsung.com>
7 * This program is free software; you can redistribute it and/or modify it
8 * under the terms of the GNU General Public License as published by the
9 * Free Software Foundation; either version 2 of the License, or (at your
10 * option) any later version.
13 #include <linux/module.h>
14 #include <linux/platform_device.h>
15 #include <linux/err.h>
16 #include <linux/clk.h>
18 #include <linux/interrupt.h>
20 #include <linux/of_gpio.h>
21 #include <linux/of_graph.h>
22 #include <linux/gpio.h>
23 #include <linux/component.h>
24 #include <linux/phy/phy.h>
25 #include <video/of_display_timing.h>
26 #include <video/of_videomode.h>
29 #include <drm/drm_crtc.h>
30 #include <drm/drm_crtc_helper.h>
31 #include <drm/drm_atomic_helper.h>
32 #include <drm/drm_panel.h>
34 #include "exynos_dp_core.h"
35 #include "exynos_drm_crtc.h"
37 #define ctx_from_connector(c) container_of(c, struct exynos_dp_device, \
40 static inline struct exynos_drm_crtc
*dp_to_crtc(struct exynos_dp_device
*dp
)
42 return to_exynos_crtc(dp
->encoder
.crtc
);
45 static inline struct exynos_dp_device
*encoder_to_dp(
46 struct drm_encoder
*e
)
48 return container_of(e
, struct exynos_dp_device
, encoder
);
52 struct i2c_client
*client
;
53 struct device_node
*node
;
56 static void exynos_dp_init_dp(struct exynos_dp_device
*dp
)
60 exynos_dp_swreset(dp
);
62 exynos_dp_init_analog_param(dp
);
63 exynos_dp_init_interrupt(dp
);
65 /* SW defined function Normal operation */
66 exynos_dp_enable_sw_function(dp
);
68 exynos_dp_config_interrupt(dp
);
69 exynos_dp_init_analog_func(dp
);
71 exynos_dp_init_hpd(dp
);
72 exynos_dp_init_aux(dp
);
75 static int exynos_dp_detect_hpd(struct exynos_dp_device
*dp
)
79 while (exynos_dp_get_plug_in_status(dp
) != 0) {
81 if (DP_TIMEOUT_LOOP_COUNT
< timeout_loop
) {
82 dev_err(dp
->dev
, "failed to get hpd plug status\n");
91 static unsigned char exynos_dp_calc_edid_check_sum(unsigned char *edid_data
)
94 unsigned char sum
= 0;
96 for (i
= 0; i
< EDID_BLOCK_LENGTH
; i
++)
97 sum
= sum
+ edid_data
[i
];
102 static int exynos_dp_read_edid(struct exynos_dp_device
*dp
)
104 unsigned char edid
[EDID_BLOCK_LENGTH
* 2];
105 unsigned int extend_block
= 0;
107 unsigned char test_vector
;
111 * EDID device address is 0x50.
112 * However, if necessary, you must have set upper address
113 * into E-EDID in I2C device, 0x30.
116 /* Read Extension Flag, Number of 128-byte EDID extension blocks */
117 retval
= exynos_dp_read_byte_from_i2c(dp
, I2C_EDID_DEVICE_ADDR
,
123 if (extend_block
> 0) {
124 dev_dbg(dp
->dev
, "EDID data includes a single extension!\n");
127 retval
= exynos_dp_read_bytes_from_i2c(dp
, I2C_EDID_DEVICE_ADDR
,
130 &edid
[EDID_HEADER_PATTERN
]);
132 dev_err(dp
->dev
, "EDID Read failed!\n");
135 sum
= exynos_dp_calc_edid_check_sum(edid
);
137 dev_err(dp
->dev
, "EDID bad checksum!\n");
141 /* Read additional EDID data */
142 retval
= exynos_dp_read_bytes_from_i2c(dp
,
143 I2C_EDID_DEVICE_ADDR
,
146 &edid
[EDID_BLOCK_LENGTH
]);
148 dev_err(dp
->dev
, "EDID Read failed!\n");
151 sum
= exynos_dp_calc_edid_check_sum(&edid
[EDID_BLOCK_LENGTH
]);
153 dev_err(dp
->dev
, "EDID bad checksum!\n");
157 exynos_dp_read_byte_from_dpcd(dp
, DP_TEST_REQUEST
,
159 if (test_vector
& DP_TEST_LINK_EDID_READ
) {
160 exynos_dp_write_byte_to_dpcd(dp
,
161 DP_TEST_EDID_CHECKSUM
,
162 edid
[EDID_BLOCK_LENGTH
+ EDID_CHECKSUM
]);
163 exynos_dp_write_byte_to_dpcd(dp
,
165 DP_TEST_EDID_CHECKSUM_WRITE
);
168 dev_info(dp
->dev
, "EDID data does not include any extensions.\n");
171 retval
= exynos_dp_read_bytes_from_i2c(dp
,
172 I2C_EDID_DEVICE_ADDR
,
175 &edid
[EDID_HEADER_PATTERN
]);
177 dev_err(dp
->dev
, "EDID Read failed!\n");
180 sum
= exynos_dp_calc_edid_check_sum(edid
);
182 dev_err(dp
->dev
, "EDID bad checksum!\n");
186 exynos_dp_read_byte_from_dpcd(dp
,
189 if (test_vector
& DP_TEST_LINK_EDID_READ
) {
190 exynos_dp_write_byte_to_dpcd(dp
,
191 DP_TEST_EDID_CHECKSUM
,
192 edid
[EDID_CHECKSUM
]);
193 exynos_dp_write_byte_to_dpcd(dp
,
195 DP_TEST_EDID_CHECKSUM_WRITE
);
199 dev_dbg(dp
->dev
, "EDID Read success!\n");
203 static int exynos_dp_handle_edid(struct exynos_dp_device
*dp
)
209 /* Read DPCD DP_DPCD_REV~RECEIVE_PORT1_CAP_1 */
210 retval
= exynos_dp_read_bytes_from_dpcd(dp
, DP_DPCD_REV
,
216 for (i
= 0; i
< 3; i
++) {
217 retval
= exynos_dp_read_edid(dp
);
225 static void exynos_dp_enable_rx_to_enhanced_mode(struct exynos_dp_device
*dp
,
230 exynos_dp_read_byte_from_dpcd(dp
, DP_LANE_COUNT_SET
, &data
);
233 exynos_dp_write_byte_to_dpcd(dp
, DP_LANE_COUNT_SET
,
234 DP_LANE_COUNT_ENHANCED_FRAME_EN
|
235 DPCD_LANE_COUNT_SET(data
));
237 exynos_dp_write_byte_to_dpcd(dp
, DP_LANE_COUNT_SET
,
238 DPCD_LANE_COUNT_SET(data
));
241 static int exynos_dp_is_enhanced_mode_available(struct exynos_dp_device
*dp
)
246 exynos_dp_read_byte_from_dpcd(dp
, DP_MAX_LANE_COUNT
, &data
);
247 retval
= DPCD_ENHANCED_FRAME_CAP(data
);
252 static void exynos_dp_set_enhanced_mode(struct exynos_dp_device
*dp
)
256 data
= exynos_dp_is_enhanced_mode_available(dp
);
257 exynos_dp_enable_rx_to_enhanced_mode(dp
, data
);
258 exynos_dp_enable_enhanced_mode(dp
, data
);
261 static void exynos_dp_training_pattern_dis(struct exynos_dp_device
*dp
)
263 exynos_dp_set_training_pattern(dp
, DP_NONE
);
265 exynos_dp_write_byte_to_dpcd(dp
,
266 DP_TRAINING_PATTERN_SET
,
267 DP_TRAINING_PATTERN_DISABLE
);
270 static void exynos_dp_set_lane_lane_pre_emphasis(struct exynos_dp_device
*dp
,
271 int pre_emphasis
, int lane
)
275 exynos_dp_set_lane0_pre_emphasis(dp
, pre_emphasis
);
278 exynos_dp_set_lane1_pre_emphasis(dp
, pre_emphasis
);
282 exynos_dp_set_lane2_pre_emphasis(dp
, pre_emphasis
);
286 exynos_dp_set_lane3_pre_emphasis(dp
, pre_emphasis
);
291 static int exynos_dp_link_start(struct exynos_dp_device
*dp
)
294 int lane
, lane_count
, pll_tries
, retval
;
296 lane_count
= dp
->link_train
.lane_count
;
298 dp
->link_train
.lt_state
= CLOCK_RECOVERY
;
299 dp
->link_train
.eq_loop
= 0;
301 for (lane
= 0; lane
< lane_count
; lane
++)
302 dp
->link_train
.cr_loop
[lane
] = 0;
304 /* Set link rate and count as you want to establish*/
305 exynos_dp_set_link_bandwidth(dp
, dp
->link_train
.link_rate
);
306 exynos_dp_set_lane_count(dp
, dp
->link_train
.lane_count
);
308 /* Setup RX configuration */
309 buf
[0] = dp
->link_train
.link_rate
;
310 buf
[1] = dp
->link_train
.lane_count
;
311 retval
= exynos_dp_write_bytes_to_dpcd(dp
, DP_LINK_BW_SET
,
316 /* Set TX pre-emphasis to minimum */
317 for (lane
= 0; lane
< lane_count
; lane
++)
318 exynos_dp_set_lane_lane_pre_emphasis(dp
,
319 PRE_EMPHASIS_LEVEL_0
, lane
);
321 /* Wait for PLL lock */
323 while (exynos_dp_get_pll_lock_status(dp
) == PLL_UNLOCKED
) {
324 if (pll_tries
== DP_TIMEOUT_LOOP_COUNT
) {
325 dev_err(dp
->dev
, "Wait for PLL lock timed out\n");
330 usleep_range(90, 120);
333 /* Set training pattern 1 */
334 exynos_dp_set_training_pattern(dp
, TRAINING_PTN1
);
336 /* Set RX training pattern */
337 retval
= exynos_dp_write_byte_to_dpcd(dp
,
338 DP_TRAINING_PATTERN_SET
,
339 DP_LINK_SCRAMBLING_DISABLE
| DP_TRAINING_PATTERN_1
);
343 for (lane
= 0; lane
< lane_count
; lane
++)
344 buf
[lane
] = DP_TRAIN_PRE_EMPH_LEVEL_0
|
345 DP_TRAIN_VOLTAGE_SWING_LEVEL_0
;
347 retval
= exynos_dp_write_bytes_to_dpcd(dp
, DP_TRAINING_LANE0_SET
,
353 static unsigned char exynos_dp_get_lane_status(u8 link_status
[2], int lane
)
355 int shift
= (lane
& 1) * 4;
356 u8 link_value
= link_status
[lane
>>1];
358 return (link_value
>> shift
) & 0xf;
361 static int exynos_dp_clock_recovery_ok(u8 link_status
[2], int lane_count
)
366 for (lane
= 0; lane
< lane_count
; lane
++) {
367 lane_status
= exynos_dp_get_lane_status(link_status
, lane
);
368 if ((lane_status
& DP_LANE_CR_DONE
) == 0)
374 static int exynos_dp_channel_eq_ok(u8 link_status
[2], u8 link_align
,
380 if ((link_align
& DP_INTERLANE_ALIGN_DONE
) == 0)
383 for (lane
= 0; lane
< lane_count
; lane
++) {
384 lane_status
= exynos_dp_get_lane_status(link_status
, lane
);
385 lane_status
&= DP_CHANNEL_EQ_BITS
;
386 if (lane_status
!= DP_CHANNEL_EQ_BITS
)
393 static unsigned char exynos_dp_get_adjust_request_voltage(u8 adjust_request
[2],
396 int shift
= (lane
& 1) * 4;
397 u8 link_value
= adjust_request
[lane
>>1];
399 return (link_value
>> shift
) & 0x3;
402 static unsigned char exynos_dp_get_adjust_request_pre_emphasis(
403 u8 adjust_request
[2],
406 int shift
= (lane
& 1) * 4;
407 u8 link_value
= adjust_request
[lane
>>1];
409 return ((link_value
>> shift
) & 0xc) >> 2;
412 static void exynos_dp_set_lane_link_training(struct exynos_dp_device
*dp
,
413 u8 training_lane_set
, int lane
)
417 exynos_dp_set_lane0_link_training(dp
, training_lane_set
);
420 exynos_dp_set_lane1_link_training(dp
, training_lane_set
);
424 exynos_dp_set_lane2_link_training(dp
, training_lane_set
);
428 exynos_dp_set_lane3_link_training(dp
, training_lane_set
);
433 static unsigned int exynos_dp_get_lane_link_training(
434 struct exynos_dp_device
*dp
,
441 reg
= exynos_dp_get_lane0_link_training(dp
);
444 reg
= exynos_dp_get_lane1_link_training(dp
);
447 reg
= exynos_dp_get_lane2_link_training(dp
);
450 reg
= exynos_dp_get_lane3_link_training(dp
);
460 static void exynos_dp_reduce_link_rate(struct exynos_dp_device
*dp
)
462 exynos_dp_training_pattern_dis(dp
);
463 exynos_dp_set_enhanced_mode(dp
);
465 dp
->link_train
.lt_state
= FAILED
;
468 static void exynos_dp_get_adjust_training_lane(struct exynos_dp_device
*dp
,
469 u8 adjust_request
[2])
471 int lane
, lane_count
;
472 u8 voltage_swing
, pre_emphasis
, training_lane
;
474 lane_count
= dp
->link_train
.lane_count
;
475 for (lane
= 0; lane
< lane_count
; lane
++) {
476 voltage_swing
= exynos_dp_get_adjust_request_voltage(
477 adjust_request
, lane
);
478 pre_emphasis
= exynos_dp_get_adjust_request_pre_emphasis(
479 adjust_request
, lane
);
480 training_lane
= DPCD_VOLTAGE_SWING_SET(voltage_swing
) |
481 DPCD_PRE_EMPHASIS_SET(pre_emphasis
);
483 if (voltage_swing
== VOLTAGE_LEVEL_3
)
484 training_lane
|= DP_TRAIN_MAX_SWING_REACHED
;
485 if (pre_emphasis
== PRE_EMPHASIS_LEVEL_3
)
486 training_lane
|= DP_TRAIN_MAX_PRE_EMPHASIS_REACHED
;
488 dp
->link_train
.training_lane
[lane
] = training_lane
;
492 static int exynos_dp_process_clock_recovery(struct exynos_dp_device
*dp
)
494 int lane
, lane_count
, retval
;
495 u8 voltage_swing
, pre_emphasis
, training_lane
;
496 u8 link_status
[2], adjust_request
[2];
498 usleep_range(100, 101);
500 lane_count
= dp
->link_train
.lane_count
;
502 retval
= exynos_dp_read_bytes_from_dpcd(dp
,
503 DP_LANE0_1_STATUS
, 2, link_status
);
507 retval
= exynos_dp_read_bytes_from_dpcd(dp
,
508 DP_ADJUST_REQUEST_LANE0_1
, 2, adjust_request
);
512 if (exynos_dp_clock_recovery_ok(link_status
, lane_count
) == 0) {
513 /* set training pattern 2 for EQ */
514 exynos_dp_set_training_pattern(dp
, TRAINING_PTN2
);
516 retval
= exynos_dp_write_byte_to_dpcd(dp
,
517 DP_TRAINING_PATTERN_SET
,
518 DP_LINK_SCRAMBLING_DISABLE
|
519 DP_TRAINING_PATTERN_2
);
523 dev_info(dp
->dev
, "Link Training Clock Recovery success\n");
524 dp
->link_train
.lt_state
= EQUALIZER_TRAINING
;
526 for (lane
= 0; lane
< lane_count
; lane
++) {
527 training_lane
= exynos_dp_get_lane_link_training(
529 voltage_swing
= exynos_dp_get_adjust_request_voltage(
530 adjust_request
, lane
);
531 pre_emphasis
= exynos_dp_get_adjust_request_pre_emphasis(
532 adjust_request
, lane
);
534 if (DPCD_VOLTAGE_SWING_GET(training_lane
) ==
536 DPCD_PRE_EMPHASIS_GET(training_lane
) ==
538 dp
->link_train
.cr_loop
[lane
]++;
540 if (dp
->link_train
.cr_loop
[lane
] == MAX_CR_LOOP
||
541 voltage_swing
== VOLTAGE_LEVEL_3
||
542 pre_emphasis
== PRE_EMPHASIS_LEVEL_3
) {
543 dev_err(dp
->dev
, "CR Max reached (%d,%d,%d)\n",
544 dp
->link_train
.cr_loop
[lane
],
545 voltage_swing
, pre_emphasis
);
546 exynos_dp_reduce_link_rate(dp
);
552 exynos_dp_get_adjust_training_lane(dp
, adjust_request
);
554 for (lane
= 0; lane
< lane_count
; lane
++)
555 exynos_dp_set_lane_link_training(dp
,
556 dp
->link_train
.training_lane
[lane
], lane
);
558 retval
= exynos_dp_write_bytes_to_dpcd(dp
,
559 DP_TRAINING_LANE0_SET
, lane_count
,
560 dp
->link_train
.training_lane
);
567 static int exynos_dp_process_equalizer_training(struct exynos_dp_device
*dp
)
569 int lane
, lane_count
, retval
;
571 u8 link_align
, link_status
[2], adjust_request
[2];
573 usleep_range(400, 401);
575 lane_count
= dp
->link_train
.lane_count
;
577 retval
= exynos_dp_read_bytes_from_dpcd(dp
,
578 DP_LANE0_1_STATUS
, 2, link_status
);
582 if (exynos_dp_clock_recovery_ok(link_status
, lane_count
)) {
583 exynos_dp_reduce_link_rate(dp
);
587 retval
= exynos_dp_read_bytes_from_dpcd(dp
,
588 DP_ADJUST_REQUEST_LANE0_1
, 2, adjust_request
);
592 retval
= exynos_dp_read_byte_from_dpcd(dp
,
593 DP_LANE_ALIGN_STATUS_UPDATED
, &link_align
);
597 exynos_dp_get_adjust_training_lane(dp
, adjust_request
);
599 if (!exynos_dp_channel_eq_ok(link_status
, link_align
, lane_count
)) {
600 /* traing pattern Set to Normal */
601 exynos_dp_training_pattern_dis(dp
);
603 dev_info(dp
->dev
, "Link Training success!\n");
605 exynos_dp_get_link_bandwidth(dp
, ®
);
606 dp
->link_train
.link_rate
= reg
;
607 dev_dbg(dp
->dev
, "final bandwidth = %.2x\n",
608 dp
->link_train
.link_rate
);
610 exynos_dp_get_lane_count(dp
, ®
);
611 dp
->link_train
.lane_count
= reg
;
612 dev_dbg(dp
->dev
, "final lane count = %.2x\n",
613 dp
->link_train
.lane_count
);
615 /* set enhanced mode if available */
616 exynos_dp_set_enhanced_mode(dp
);
617 dp
->link_train
.lt_state
= FINISHED
;
623 dp
->link_train
.eq_loop
++;
625 if (dp
->link_train
.eq_loop
> MAX_EQ_LOOP
) {
626 dev_err(dp
->dev
, "EQ Max loop\n");
627 exynos_dp_reduce_link_rate(dp
);
631 for (lane
= 0; lane
< lane_count
; lane
++)
632 exynos_dp_set_lane_link_training(dp
,
633 dp
->link_train
.training_lane
[lane
], lane
);
635 retval
= exynos_dp_write_bytes_to_dpcd(dp
, DP_TRAINING_LANE0_SET
,
636 lane_count
, dp
->link_train
.training_lane
);
641 static void exynos_dp_get_max_rx_bandwidth(struct exynos_dp_device
*dp
,
647 * For DP rev.1.1, Maximum link rate of Main Link lanes
648 * 0x06 = 1.62 Gbps, 0x0a = 2.7 Gbps
650 exynos_dp_read_byte_from_dpcd(dp
, DP_MAX_LINK_RATE
, &data
);
654 static void exynos_dp_get_max_rx_lane_count(struct exynos_dp_device
*dp
,
660 * For DP rev.1.1, Maximum number of Main Link lanes
661 * 0x01 = 1 lane, 0x02 = 2 lanes, 0x04 = 4 lanes
663 exynos_dp_read_byte_from_dpcd(dp
, DP_MAX_LANE_COUNT
, &data
);
664 *lane_count
= DPCD_MAX_LANE_COUNT(data
);
667 static void exynos_dp_init_training(struct exynos_dp_device
*dp
,
668 enum link_lane_count_type max_lane
,
669 enum link_rate_type max_rate
)
672 * MACRO_RST must be applied after the PLL_LOCK to avoid
673 * the DP inter pair skew issue for at least 10 us
675 exynos_dp_reset_macro(dp
);
677 /* Initialize by reading RX's DPCD */
678 exynos_dp_get_max_rx_bandwidth(dp
, &dp
->link_train
.link_rate
);
679 exynos_dp_get_max_rx_lane_count(dp
, &dp
->link_train
.lane_count
);
681 if ((dp
->link_train
.link_rate
!= LINK_RATE_1_62GBPS
) &&
682 (dp
->link_train
.link_rate
!= LINK_RATE_2_70GBPS
)) {
683 dev_err(dp
->dev
, "Rx Max Link Rate is abnormal :%x !\n",
684 dp
->link_train
.link_rate
);
685 dp
->link_train
.link_rate
= LINK_RATE_1_62GBPS
;
688 if (dp
->link_train
.lane_count
== 0) {
689 dev_err(dp
->dev
, "Rx Max Lane count is abnormal :%x !\n",
690 dp
->link_train
.lane_count
);
691 dp
->link_train
.lane_count
= (u8
)LANE_COUNT1
;
694 /* Setup TX lane count & rate */
695 if (dp
->link_train
.lane_count
> max_lane
)
696 dp
->link_train
.lane_count
= max_lane
;
697 if (dp
->link_train
.link_rate
> max_rate
)
698 dp
->link_train
.link_rate
= max_rate
;
700 /* All DP analog module power up */
701 exynos_dp_set_analog_power_down(dp
, POWER_ALL
, 0);
704 static int exynos_dp_sw_link_training(struct exynos_dp_device
*dp
)
706 int retval
= 0, training_finished
= 0;
708 dp
->link_train
.lt_state
= START
;
711 while (!retval
&& !training_finished
) {
712 switch (dp
->link_train
.lt_state
) {
714 retval
= exynos_dp_link_start(dp
);
716 dev_err(dp
->dev
, "LT link start failed!\n");
719 retval
= exynos_dp_process_clock_recovery(dp
);
721 dev_err(dp
->dev
, "LT CR failed!\n");
723 case EQUALIZER_TRAINING
:
724 retval
= exynos_dp_process_equalizer_training(dp
);
726 dev_err(dp
->dev
, "LT EQ failed!\n");
729 training_finished
= 1;
736 dev_err(dp
->dev
, "eDP link training failed (%d)\n", retval
);
741 static int exynos_dp_set_link_train(struct exynos_dp_device
*dp
,
748 for (i
= 0; i
< DP_TIMEOUT_LOOP_COUNT
; i
++) {
749 exynos_dp_init_training(dp
, count
, bwtype
);
750 retval
= exynos_dp_sw_link_training(dp
);
754 usleep_range(100, 110);
760 static int exynos_dp_config_video(struct exynos_dp_device
*dp
)
763 int timeout_loop
= 0;
766 exynos_dp_config_video_slave_mode(dp
);
768 exynos_dp_set_video_color_format(dp
);
770 if (exynos_dp_get_pll_lock_status(dp
) == PLL_UNLOCKED
) {
771 dev_err(dp
->dev
, "PLL is not locked yet.\n");
777 if (exynos_dp_is_slave_video_stream_clock_on(dp
) == 0)
779 if (DP_TIMEOUT_LOOP_COUNT
< timeout_loop
) {
780 dev_err(dp
->dev
, "Timeout of video streamclk ok\n");
787 /* Set to use the register calculated M/N video */
788 exynos_dp_set_video_cr_mn(dp
, CALCULATED_M
, 0, 0);
790 /* For video bist, Video timing must be generated by register */
791 exynos_dp_set_video_timing_mode(dp
, VIDEO_TIMING_FROM_CAPTURE
);
793 /* Disable video mute */
794 exynos_dp_enable_video_mute(dp
, 0);
796 /* Configure video slave mode */
797 exynos_dp_enable_video_master(dp
, 0);
803 if (exynos_dp_is_video_stream_on(dp
) == 0) {
807 } else if (done_count
) {
810 if (DP_TIMEOUT_LOOP_COUNT
< timeout_loop
) {
811 dev_err(dp
->dev
, "Timeout of video streamclk ok\n");
815 usleep_range(1000, 1001);
819 dev_err(dp
->dev
, "Video stream is not detected!\n");
824 static void exynos_dp_enable_scramble(struct exynos_dp_device
*dp
, bool enable
)
829 exynos_dp_enable_scrambling(dp
);
831 exynos_dp_read_byte_from_dpcd(dp
,
832 DP_TRAINING_PATTERN_SET
,
834 exynos_dp_write_byte_to_dpcd(dp
,
835 DP_TRAINING_PATTERN_SET
,
836 (u8
)(data
& ~DP_LINK_SCRAMBLING_DISABLE
));
838 exynos_dp_disable_scrambling(dp
);
840 exynos_dp_read_byte_from_dpcd(dp
,
841 DP_TRAINING_PATTERN_SET
,
843 exynos_dp_write_byte_to_dpcd(dp
,
844 DP_TRAINING_PATTERN_SET
,
845 (u8
)(data
| DP_LINK_SCRAMBLING_DISABLE
));
849 static irqreturn_t
exynos_dp_irq_handler(int irq
, void *arg
)
851 struct exynos_dp_device
*dp
= arg
;
853 enum dp_irq_type irq_type
;
855 irq_type
= exynos_dp_get_irq_type(dp
);
857 case DP_IRQ_TYPE_HP_CABLE_IN
:
858 dev_dbg(dp
->dev
, "Received irq - cable in\n");
859 schedule_work(&dp
->hotplug_work
);
860 exynos_dp_clear_hotplug_interrupts(dp
);
862 case DP_IRQ_TYPE_HP_CABLE_OUT
:
863 dev_dbg(dp
->dev
, "Received irq - cable out\n");
864 exynos_dp_clear_hotplug_interrupts(dp
);
866 case DP_IRQ_TYPE_HP_CHANGE
:
868 * We get these change notifications once in a while, but there
869 * is nothing we can do with them. Just ignore it for now and
870 * only handle cable changes.
872 dev_dbg(dp
->dev
, "Received irq - hotplug change; ignoring.\n");
873 exynos_dp_clear_hotplug_interrupts(dp
);
876 dev_err(dp
->dev
, "Received irq - unknown type!\n");
882 static void exynos_dp_hotplug(struct work_struct
*work
)
884 struct exynos_dp_device
*dp
;
886 dp
= container_of(work
, struct exynos_dp_device
, hotplug_work
);
889 drm_helper_hpd_irq_event(dp
->drm_dev
);
892 static void exynos_dp_commit(struct drm_encoder
*encoder
)
894 struct exynos_dp_device
*dp
= encoder_to_dp(encoder
);
897 /* Keep the panel disabled while we configure video */
899 if (drm_panel_disable(dp
->panel
))
900 DRM_ERROR("failed to disable the panel\n");
903 ret
= exynos_dp_detect_hpd(dp
);
905 /* Cable has been disconnected, we're done */
909 ret
= exynos_dp_handle_edid(dp
);
911 dev_err(dp
->dev
, "unable to handle edid\n");
915 ret
= exynos_dp_set_link_train(dp
, dp
->video_info
->lane_count
,
916 dp
->video_info
->link_rate
);
918 dev_err(dp
->dev
, "unable to do link train\n");
922 exynos_dp_enable_scramble(dp
, 1);
923 exynos_dp_enable_rx_to_enhanced_mode(dp
, 1);
924 exynos_dp_enable_enhanced_mode(dp
, 1);
926 exynos_dp_set_lane_count(dp
, dp
->video_info
->lane_count
);
927 exynos_dp_set_link_bandwidth(dp
, dp
->video_info
->link_rate
);
929 exynos_dp_init_video(dp
);
930 ret
= exynos_dp_config_video(dp
);
932 dev_err(dp
->dev
, "unable to config video\n");
934 /* Safe to enable the panel now */
936 if (drm_panel_enable(dp
->panel
))
937 DRM_ERROR("failed to enable the panel\n");
941 exynos_dp_start_video(dp
);
944 static enum drm_connector_status
exynos_dp_detect(
945 struct drm_connector
*connector
, bool force
)
947 return connector_status_connected
;
950 static void exynos_dp_connector_destroy(struct drm_connector
*connector
)
952 drm_connector_unregister(connector
);
953 drm_connector_cleanup(connector
);
956 static struct drm_connector_funcs exynos_dp_connector_funcs
= {
957 .dpms
= drm_atomic_helper_connector_dpms
,
958 .fill_modes
= drm_helper_probe_single_connector_modes
,
959 .detect
= exynos_dp_detect
,
960 .destroy
= exynos_dp_connector_destroy
,
961 .reset
= drm_atomic_helper_connector_reset
,
962 .atomic_duplicate_state
= drm_atomic_helper_connector_duplicate_state
,
963 .atomic_destroy_state
= drm_atomic_helper_connector_destroy_state
,
966 static int exynos_dp_get_modes(struct drm_connector
*connector
)
968 struct exynos_dp_device
*dp
= ctx_from_connector(connector
);
969 struct drm_display_mode
*mode
;
972 return drm_panel_get_modes(dp
->panel
);
974 mode
= drm_mode_create(connector
->dev
);
976 DRM_ERROR("failed to create a new display mode.\n");
980 drm_display_mode_from_videomode(&dp
->priv
.vm
, mode
);
981 mode
->width_mm
= dp
->priv
.width_mm
;
982 mode
->height_mm
= dp
->priv
.height_mm
;
983 connector
->display_info
.width_mm
= mode
->width_mm
;
984 connector
->display_info
.height_mm
= mode
->height_mm
;
986 mode
->type
= DRM_MODE_TYPE_DRIVER
| DRM_MODE_TYPE_PREFERRED
;
987 drm_mode_set_name(mode
);
988 drm_mode_probed_add(connector
, mode
);
993 static struct drm_encoder
*exynos_dp_best_encoder(
994 struct drm_connector
*connector
)
996 struct exynos_dp_device
*dp
= ctx_from_connector(connector
);
1001 static struct drm_connector_helper_funcs exynos_dp_connector_helper_funcs
= {
1002 .get_modes
= exynos_dp_get_modes
,
1003 .best_encoder
= exynos_dp_best_encoder
,
1006 /* returns the number of bridges attached */
1007 static int exynos_drm_attach_lcd_bridge(struct exynos_dp_device
*dp
,
1008 struct drm_encoder
*encoder
)
1012 encoder
->bridge
= dp
->bridge
;
1013 dp
->bridge
->encoder
= encoder
;
1014 ret
= drm_bridge_attach(encoder
->dev
, dp
->bridge
);
1016 DRM_ERROR("Failed to attach bridge to drm\n");
1023 static int exynos_dp_create_connector(struct drm_encoder
*encoder
)
1025 struct exynos_dp_device
*dp
= encoder_to_dp(encoder
);
1026 struct drm_connector
*connector
= &dp
->connector
;
1029 /* Pre-empt DP connector creation if there's a bridge */
1031 ret
= exynos_drm_attach_lcd_bridge(dp
, encoder
);
1036 connector
->polled
= DRM_CONNECTOR_POLL_HPD
;
1038 ret
= drm_connector_init(dp
->drm_dev
, connector
,
1039 &exynos_dp_connector_funcs
, DRM_MODE_CONNECTOR_eDP
);
1041 DRM_ERROR("Failed to initialize connector with drm\n");
1045 drm_connector_helper_add(connector
, &exynos_dp_connector_helper_funcs
);
1046 drm_connector_register(connector
);
1047 drm_mode_connector_attach_encoder(connector
, encoder
);
1050 ret
= drm_panel_attach(dp
->panel
, &dp
->connector
);
1055 static bool exynos_dp_mode_fixup(struct drm_encoder
*encoder
,
1056 const struct drm_display_mode
*mode
,
1057 struct drm_display_mode
*adjusted_mode
)
1062 static void exynos_dp_mode_set(struct drm_encoder
*encoder
,
1063 struct drm_display_mode
*mode
,
1064 struct drm_display_mode
*adjusted_mode
)
1068 static void exynos_dp_enable(struct drm_encoder
*encoder
)
1070 struct exynos_dp_device
*dp
= encoder_to_dp(encoder
);
1071 struct exynos_drm_crtc
*crtc
= dp_to_crtc(dp
);
1073 if (dp
->dpms_mode
== DRM_MODE_DPMS_ON
)
1077 if (drm_panel_prepare(dp
->panel
)) {
1078 DRM_ERROR("failed to setup the panel\n");
1083 if (crtc
->ops
->clock_enable
)
1084 crtc
->ops
->clock_enable(dp_to_crtc(dp
), true);
1086 clk_prepare_enable(dp
->clock
);
1087 phy_power_on(dp
->phy
);
1088 exynos_dp_init_dp(dp
);
1089 enable_irq(dp
->irq
);
1090 exynos_dp_commit(&dp
->encoder
);
1092 dp
->dpms_mode
= DRM_MODE_DPMS_ON
;
1095 static void exynos_dp_disable(struct drm_encoder
*encoder
)
1097 struct exynos_dp_device
*dp
= encoder_to_dp(encoder
);
1098 struct exynos_drm_crtc
*crtc
= dp_to_crtc(dp
);
1100 if (dp
->dpms_mode
!= DRM_MODE_DPMS_ON
)
1104 if (drm_panel_disable(dp
->panel
)) {
1105 DRM_ERROR("failed to disable the panel\n");
1110 disable_irq(dp
->irq
);
1111 flush_work(&dp
->hotplug_work
);
1112 phy_power_off(dp
->phy
);
1113 clk_disable_unprepare(dp
->clock
);
1115 if (crtc
->ops
->clock_enable
)
1116 crtc
->ops
->clock_enable(dp_to_crtc(dp
), false);
1119 if (drm_panel_unprepare(dp
->panel
))
1120 DRM_ERROR("failed to turnoff the panel\n");
1123 dp
->dpms_mode
= DRM_MODE_DPMS_OFF
;
1126 static struct drm_encoder_helper_funcs exynos_dp_encoder_helper_funcs
= {
1127 .mode_fixup
= exynos_dp_mode_fixup
,
1128 .mode_set
= exynos_dp_mode_set
,
1129 .enable
= exynos_dp_enable
,
1130 .disable
= exynos_dp_disable
,
1133 static struct drm_encoder_funcs exynos_dp_encoder_funcs
= {
1134 .destroy
= drm_encoder_cleanup
,
1137 static struct video_info
*exynos_dp_dt_parse_pdata(struct device
*dev
)
1139 struct device_node
*dp_node
= dev
->of_node
;
1140 struct video_info
*dp_video_config
;
1142 dp_video_config
= devm_kzalloc(dev
,
1143 sizeof(*dp_video_config
), GFP_KERNEL
);
1144 if (!dp_video_config
)
1145 return ERR_PTR(-ENOMEM
);
1147 dp_video_config
->h_sync_polarity
=
1148 of_property_read_bool(dp_node
, "hsync-active-high");
1150 dp_video_config
->v_sync_polarity
=
1151 of_property_read_bool(dp_node
, "vsync-active-high");
1153 dp_video_config
->interlaced
=
1154 of_property_read_bool(dp_node
, "interlaced");
1156 if (of_property_read_u32(dp_node
, "samsung,color-space",
1157 &dp_video_config
->color_space
)) {
1158 dev_err(dev
, "failed to get color-space\n");
1159 return ERR_PTR(-EINVAL
);
1162 if (of_property_read_u32(dp_node
, "samsung,dynamic-range",
1163 &dp_video_config
->dynamic_range
)) {
1164 dev_err(dev
, "failed to get dynamic-range\n");
1165 return ERR_PTR(-EINVAL
);
1168 if (of_property_read_u32(dp_node
, "samsung,ycbcr-coeff",
1169 &dp_video_config
->ycbcr_coeff
)) {
1170 dev_err(dev
, "failed to get ycbcr-coeff\n");
1171 return ERR_PTR(-EINVAL
);
1174 if (of_property_read_u32(dp_node
, "samsung,color-depth",
1175 &dp_video_config
->color_depth
)) {
1176 dev_err(dev
, "failed to get color-depth\n");
1177 return ERR_PTR(-EINVAL
);
1180 if (of_property_read_u32(dp_node
, "samsung,link-rate",
1181 &dp_video_config
->link_rate
)) {
1182 dev_err(dev
, "failed to get link-rate\n");
1183 return ERR_PTR(-EINVAL
);
1186 if (of_property_read_u32(dp_node
, "samsung,lane-count",
1187 &dp_video_config
->lane_count
)) {
1188 dev_err(dev
, "failed to get lane-count\n");
1189 return ERR_PTR(-EINVAL
);
1192 return dp_video_config
;
1195 static int exynos_dp_dt_parse_panel(struct exynos_dp_device
*dp
)
1199 ret
= of_get_videomode(dp
->dev
->of_node
, &dp
->priv
.vm
,
1200 OF_USE_NATIVE_MODE
);
1202 DRM_ERROR("failed: of_get_videomode() : %d\n", ret
);
1208 static int exynos_dp_bind(struct device
*dev
, struct device
*master
, void *data
)
1210 struct exynos_dp_device
*dp
= dev_get_drvdata(dev
);
1211 struct platform_device
*pdev
= to_platform_device(dev
);
1212 struct drm_device
*drm_dev
= data
;
1213 struct drm_encoder
*encoder
= &dp
->encoder
;
1214 struct resource
*res
;
1215 unsigned int irq_flags
;
1218 dp
->dev
= &pdev
->dev
;
1219 dp
->dpms_mode
= DRM_MODE_DPMS_OFF
;
1221 dp
->video_info
= exynos_dp_dt_parse_pdata(&pdev
->dev
);
1222 if (IS_ERR(dp
->video_info
))
1223 return PTR_ERR(dp
->video_info
);
1225 dp
->phy
= devm_phy_get(dp
->dev
, "dp");
1226 if (IS_ERR(dp
->phy
)) {
1227 dev_err(dp
->dev
, "no DP phy configured\n");
1228 ret
= PTR_ERR(dp
->phy
);
1231 * phy itself is not enabled, so we can move forward
1232 * assigning NULL to phy pointer.
1234 if (ret
== -ENOSYS
|| ret
== -ENODEV
)
1241 if (!dp
->panel
&& !dp
->bridge
) {
1242 ret
= exynos_dp_dt_parse_panel(dp
);
1247 dp
->clock
= devm_clk_get(&pdev
->dev
, "dp");
1248 if (IS_ERR(dp
->clock
)) {
1249 dev_err(&pdev
->dev
, "failed to get clock\n");
1250 return PTR_ERR(dp
->clock
);
1253 clk_prepare_enable(dp
->clock
);
1255 res
= platform_get_resource(pdev
, IORESOURCE_MEM
, 0);
1257 dp
->reg_base
= devm_ioremap_resource(&pdev
->dev
, res
);
1258 if (IS_ERR(dp
->reg_base
))
1259 return PTR_ERR(dp
->reg_base
);
1261 dp
->hpd_gpio
= of_get_named_gpio(dev
->of_node
, "samsung,hpd-gpio", 0);
1263 if (gpio_is_valid(dp
->hpd_gpio
)) {
1265 * Set up the hotplug GPIO from the device tree as an interrupt.
1266 * Simply specifying a different interrupt in the device tree
1267 * doesn't work since we handle hotplug rather differently when
1268 * using a GPIO. We also need the actual GPIO specifier so
1269 * that we can get the current state of the GPIO.
1271 ret
= devm_gpio_request_one(&pdev
->dev
, dp
->hpd_gpio
, GPIOF_IN
,
1274 dev_err(&pdev
->dev
, "failed to get hpd gpio\n");
1277 dp
->irq
= gpio_to_irq(dp
->hpd_gpio
);
1278 irq_flags
= IRQF_TRIGGER_RISING
| IRQF_TRIGGER_FALLING
;
1280 dp
->hpd_gpio
= -ENODEV
;
1281 dp
->irq
= platform_get_irq(pdev
, 0);
1285 if (dp
->irq
== -ENXIO
) {
1286 dev_err(&pdev
->dev
, "failed to get irq\n");
1290 INIT_WORK(&dp
->hotplug_work
, exynos_dp_hotplug
);
1292 phy_power_on(dp
->phy
);
1294 exynos_dp_init_dp(dp
);
1296 ret
= devm_request_irq(&pdev
->dev
, dp
->irq
, exynos_dp_irq_handler
,
1297 irq_flags
, "exynos-dp", dp
);
1299 dev_err(&pdev
->dev
, "failed to request irq\n");
1302 disable_irq(dp
->irq
);
1304 dp
->drm_dev
= drm_dev
;
1306 pipe
= exynos_drm_crtc_get_pipe_from_type(drm_dev
,
1307 EXYNOS_DISPLAY_TYPE_LCD
);
1311 encoder
->possible_crtcs
= 1 << pipe
;
1313 DRM_DEBUG_KMS("possible_crtcs = 0x%x\n", encoder
->possible_crtcs
);
1315 drm_encoder_init(drm_dev
, encoder
, &exynos_dp_encoder_funcs
,
1316 DRM_MODE_ENCODER_TMDS
);
1318 drm_encoder_helper_add(encoder
, &exynos_dp_encoder_helper_funcs
);
1320 ret
= exynos_dp_create_connector(encoder
);
1322 DRM_ERROR("failed to create connector ret = %d\n", ret
);
1323 drm_encoder_cleanup(encoder
);
1330 static void exynos_dp_unbind(struct device
*dev
, struct device
*master
,
1333 struct exynos_dp_device
*dp
= dev_get_drvdata(dev
);
1335 exynos_dp_disable(&dp
->encoder
);
1338 static const struct component_ops exynos_dp_ops
= {
1339 .bind
= exynos_dp_bind
,
1340 .unbind
= exynos_dp_unbind
,
1343 static int exynos_dp_probe(struct platform_device
*pdev
)
1345 struct device
*dev
= &pdev
->dev
;
1346 struct device_node
*panel_node
, *bridge_node
, *endpoint
;
1347 struct exynos_dp_device
*dp
;
1349 dp
= devm_kzalloc(&pdev
->dev
, sizeof(struct exynos_dp_device
),
1354 platform_set_drvdata(pdev
, dp
);
1356 panel_node
= of_parse_phandle(dev
->of_node
, "panel", 0);
1358 dp
->panel
= of_drm_find_panel(panel_node
);
1359 of_node_put(panel_node
);
1361 return -EPROBE_DEFER
;
1364 endpoint
= of_graph_get_next_endpoint(dev
->of_node
, NULL
);
1366 bridge_node
= of_graph_get_remote_port_parent(endpoint
);
1368 dp
->bridge
= of_drm_find_bridge(bridge_node
);
1369 of_node_put(bridge_node
);
1371 return -EPROBE_DEFER
;
1373 return -EPROBE_DEFER
;
1376 return component_add(&pdev
->dev
, &exynos_dp_ops
);
1379 static int exynos_dp_remove(struct platform_device
*pdev
)
1381 component_del(&pdev
->dev
, &exynos_dp_ops
);
1386 static const struct of_device_id exynos_dp_match
[] = {
1387 { .compatible
= "samsung,exynos5-dp" },
1390 MODULE_DEVICE_TABLE(of
, exynos_dp_match
);
1392 struct platform_driver dp_driver
= {
1393 .probe
= exynos_dp_probe
,
1394 .remove
= exynos_dp_remove
,
1396 .name
= "exynos-dp",
1397 .owner
= THIS_MODULE
,
1398 .of_match_table
= exynos_dp_match
,
1402 MODULE_AUTHOR("Jingoo Han <jg1.han@samsung.com>");
1403 MODULE_DESCRIPTION("Samsung SoC DP Driver");
1404 MODULE_LICENSE("GPL v2");