blob: d66ade0efac892b84ce7e26c4f9e132870806d33 [file] [log] [blame]
Jingoo Hane9474be2012-02-03 18:01:55 +09001/*
2 * Samsung SoC DP (Display Port) interface driver.
3 *
4 * Copyright (C) 2012 Samsung Electronics Co., Ltd.
5 * Author: Jingoo Han <jg1.han@samsung.com>
6 *
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.
11 */
12
13#include <linux/module.h>
14#include <linux/platform_device.h>
Jingoo Hane9474be2012-02-03 18:01:55 +090015#include <linux/err.h>
16#include <linux/clk.h>
17#include <linux/io.h>
18#include <linux/interrupt.h>
Ajay Kumarc4e235c2012-10-13 05:48:00 +090019#include <linux/of.h>
Andrew Brestickerb8b52472014-04-22 04:09:10 +053020#include <linux/of_gpio.h>
Ajay Kumar80185562015-01-20 22:08:46 +053021#include <linux/of_graph.h>
Andrew Brestickerb8b52472014-04-22 04:09:10 +053022#include <linux/gpio.h>
Inki Daef37cd5e2014-05-09 14:25:20 +090023#include <linux/component.h>
Jingoo Han8114fab2013-10-16 21:58:16 +053024#include <linux/phy/phy.h>
Sean Paul1417f102014-01-30 16:19:23 -050025#include <video/of_display_timing.h>
26#include <video/of_videomode.h>
Jingoo Hane9474be2012-02-03 18:01:55 +090027
Sean Paul1417f102014-01-30 16:19:23 -050028#include <drm/drmP.h>
Sean Paulcaa5d1e2014-01-30 16:19:30 -050029#include <drm/drm_crtc.h>
30#include <drm/drm_crtc_helper.h>
Gustavo Padovan4ea95262015-06-01 12:04:44 -030031#include <drm/drm_atomic_helper.h>
Ajay Kumar5f1dcd82014-07-31 23:12:14 +053032#include <drm/drm_panel.h>
Sean Paul1417f102014-01-30 16:19:23 -050033
Jingoo Hane9474be2012-02-03 18:01:55 +090034#include "exynos_dp_core.h"
Gustavo Padovan2b8376c2015-08-15 12:14:08 -030035#include "exynos_drm_crtc.h"
Jingoo Hane9474be2012-02-03 18:01:55 +090036
Sean Paulcaa5d1e2014-01-30 16:19:30 -050037#define ctx_from_connector(c) container_of(c, struct exynos_dp_device, \
38 connector)
39
Krzysztof Kozlowski1c363c72015-04-07 22:28:50 +090040static inline struct exynos_drm_crtc *dp_to_crtc(struct exynos_dp_device *dp)
41{
Gustavo Padovan2b8376c2015-08-15 12:14:08 -030042 return to_exynos_crtc(dp->encoder.crtc);
Krzysztof Kozlowski1c363c72015-04-07 22:28:50 +090043}
44
Gustavo Padovancf67cc92015-08-11 17:38:06 +090045static inline struct exynos_dp_device *encoder_to_dp(
Gustavo Padovan2b8376c2015-08-15 12:14:08 -030046 struct drm_encoder *e)
Andrzej Hajda63b3be32014-11-17 09:54:25 +010047{
Gustavo Padovancf67cc92015-08-11 17:38:06 +090048 return container_of(e, struct exynos_dp_device, encoder);
Andrzej Hajda63b3be32014-11-17 09:54:25 +010049}
50
Sean Paul1634ba22014-02-24 19:20:15 +090051struct bridge_init {
52 struct i2c_client *client;
53 struct device_node *node;
54};
55
Ajay Kumar5f1dcd82014-07-31 23:12:14 +053056static void exynos_dp_init_dp(struct exynos_dp_device *dp)
Jingoo Hane9474be2012-02-03 18:01:55 +090057{
58 exynos_dp_reset(dp);
59
Jingoo Han24db03a2012-05-25 16:21:08 +090060 exynos_dp_swreset(dp);
61
Jingoo Han75435c72012-08-23 19:55:13 +090062 exynos_dp_init_analog_param(dp);
63 exynos_dp_init_interrupt(dp);
64
Jingoo Hane9474be2012-02-03 18:01:55 +090065 /* SW defined function Normal operation */
66 exynos_dp_enable_sw_function(dp);
67
68 exynos_dp_config_interrupt(dp);
69 exynos_dp_init_analog_func(dp);
70
71 exynos_dp_init_hpd(dp);
72 exynos_dp_init_aux(dp);
Jingoo Hane9474be2012-02-03 18:01:55 +090073}
74
75static int exynos_dp_detect_hpd(struct exynos_dp_device *dp)
76{
77 int timeout_loop = 0;
78
Jingoo Hane9474be2012-02-03 18:01:55 +090079 while (exynos_dp_get_plug_in_status(dp) != 0) {
80 timeout_loop++;
81 if (DP_TIMEOUT_LOOP_COUNT < timeout_loop) {
82 dev_err(dp->dev, "failed to get hpd plug status\n");
83 return -ETIMEDOUT;
84 }
Jingoo Hana2c81bc2012-07-18 18:50:59 +090085 usleep_range(10, 11);
Jingoo Hane9474be2012-02-03 18:01:55 +090086 }
87
88 return 0;
89}
90
91static unsigned char exynos_dp_calc_edid_check_sum(unsigned char *edid_data)
92{
93 int i;
94 unsigned char sum = 0;
95
96 for (i = 0; i < EDID_BLOCK_LENGTH; i++)
97 sum = sum + edid_data[i];
98
99 return sum;
100}
101
102static int exynos_dp_read_edid(struct exynos_dp_device *dp)
103{
104 unsigned char edid[EDID_BLOCK_LENGTH * 2];
105 unsigned int extend_block = 0;
106 unsigned char sum;
107 unsigned char test_vector;
108 int retval;
109
110 /*
111 * EDID device address is 0x50.
112 * However, if necessary, you must have set upper address
113 * into E-EDID in I2C device, 0x30.
114 */
115
116 /* Read Extension Flag, Number of 128-byte EDID extension blocks */
Sean Paul99f54152012-11-01 02:13:00 +0000117 retval = exynos_dp_read_byte_from_i2c(dp, I2C_EDID_DEVICE_ADDR,
Jingoo Hane9474be2012-02-03 18:01:55 +0900118 EDID_EXTENSION_FLAG,
119 &extend_block);
Sean Paul99f54152012-11-01 02:13:00 +0000120 if (retval)
121 return retval;
Jingoo Hane9474be2012-02-03 18:01:55 +0900122
123 if (extend_block > 0) {
124 dev_dbg(dp->dev, "EDID data includes a single extension!\n");
125
126 /* Read EDID data */
127 retval = exynos_dp_read_bytes_from_i2c(dp, I2C_EDID_DEVICE_ADDR,
128 EDID_HEADER_PATTERN,
129 EDID_BLOCK_LENGTH,
130 &edid[EDID_HEADER_PATTERN]);
131 if (retval != 0) {
132 dev_err(dp->dev, "EDID Read failed!\n");
133 return -EIO;
134 }
135 sum = exynos_dp_calc_edid_check_sum(edid);
136 if (sum != 0) {
137 dev_err(dp->dev, "EDID bad checksum!\n");
138 return -EIO;
139 }
140
141 /* Read additional EDID data */
142 retval = exynos_dp_read_bytes_from_i2c(dp,
143 I2C_EDID_DEVICE_ADDR,
144 EDID_BLOCK_LENGTH,
145 EDID_BLOCK_LENGTH,
146 &edid[EDID_BLOCK_LENGTH]);
147 if (retval != 0) {
148 dev_err(dp->dev, "EDID Read failed!\n");
149 return -EIO;
150 }
151 sum = exynos_dp_calc_edid_check_sum(&edid[EDID_BLOCK_LENGTH]);
152 if (sum != 0) {
153 dev_err(dp->dev, "EDID bad checksum!\n");
154 return -EIO;
155 }
156
Jingoo Han073ea2a2014-05-07 20:44:51 +0900157 exynos_dp_read_byte_from_dpcd(dp, DP_TEST_REQUEST,
Jingoo Hane9474be2012-02-03 18:01:55 +0900158 &test_vector);
Jingoo Han073ea2a2014-05-07 20:44:51 +0900159 if (test_vector & DP_TEST_LINK_EDID_READ) {
Jingoo Hane9474be2012-02-03 18:01:55 +0900160 exynos_dp_write_byte_to_dpcd(dp,
Jingoo Han073ea2a2014-05-07 20:44:51 +0900161 DP_TEST_EDID_CHECKSUM,
Jingoo Hane9474be2012-02-03 18:01:55 +0900162 edid[EDID_BLOCK_LENGTH + EDID_CHECKSUM]);
163 exynos_dp_write_byte_to_dpcd(dp,
Jingoo Han073ea2a2014-05-07 20:44:51 +0900164 DP_TEST_RESPONSE,
165 DP_TEST_EDID_CHECKSUM_WRITE);
Jingoo Hane9474be2012-02-03 18:01:55 +0900166 }
167 } else {
168 dev_info(dp->dev, "EDID data does not include any extensions.\n");
169
170 /* Read EDID data */
171 retval = exynos_dp_read_bytes_from_i2c(dp,
172 I2C_EDID_DEVICE_ADDR,
173 EDID_HEADER_PATTERN,
174 EDID_BLOCK_LENGTH,
175 &edid[EDID_HEADER_PATTERN]);
176 if (retval != 0) {
177 dev_err(dp->dev, "EDID Read failed!\n");
178 return -EIO;
179 }
180 sum = exynos_dp_calc_edid_check_sum(edid);
181 if (sum != 0) {
182 dev_err(dp->dev, "EDID bad checksum!\n");
183 return -EIO;
184 }
185
186 exynos_dp_read_byte_from_dpcd(dp,
Jingoo Han073ea2a2014-05-07 20:44:51 +0900187 DP_TEST_REQUEST,
Jingoo Hane9474be2012-02-03 18:01:55 +0900188 &test_vector);
Jingoo Han073ea2a2014-05-07 20:44:51 +0900189 if (test_vector & DP_TEST_LINK_EDID_READ) {
Jingoo Hane9474be2012-02-03 18:01:55 +0900190 exynos_dp_write_byte_to_dpcd(dp,
Jingoo Han073ea2a2014-05-07 20:44:51 +0900191 DP_TEST_EDID_CHECKSUM,
Jingoo Hane9474be2012-02-03 18:01:55 +0900192 edid[EDID_CHECKSUM]);
193 exynos_dp_write_byte_to_dpcd(dp,
Jingoo Han073ea2a2014-05-07 20:44:51 +0900194 DP_TEST_RESPONSE,
195 DP_TEST_EDID_CHECKSUM_WRITE);
Jingoo Hane9474be2012-02-03 18:01:55 +0900196 }
197 }
198
Krzysztof Kozlowskib0f155a2015-05-14 09:03:06 +0900199 dev_dbg(dp->dev, "EDID Read success!\n");
Jingoo Hane9474be2012-02-03 18:01:55 +0900200 return 0;
201}
202
203static int exynos_dp_handle_edid(struct exynos_dp_device *dp)
204{
205 u8 buf[12];
206 int i;
207 int retval;
208
Jingoo Han073ea2a2014-05-07 20:44:51 +0900209 /* Read DPCD DP_DPCD_REV~RECEIVE_PORT1_CAP_1 */
210 retval = exynos_dp_read_bytes_from_dpcd(dp, DP_DPCD_REV,
Sean Paul99f54152012-11-01 02:13:00 +0000211 12, buf);
212 if (retval)
213 return retval;
Jingoo Hane9474be2012-02-03 18:01:55 +0900214
215 /* Read EDID */
216 for (i = 0; i < 3; i++) {
217 retval = exynos_dp_read_edid(dp);
Sean Paul99f54152012-11-01 02:13:00 +0000218 if (!retval)
Jingoo Hane9474be2012-02-03 18:01:55 +0900219 break;
220 }
221
222 return retval;
223}
224
225static void exynos_dp_enable_rx_to_enhanced_mode(struct exynos_dp_device *dp,
226 bool enable)
227{
228 u8 data;
229
Jingoo Han073ea2a2014-05-07 20:44:51 +0900230 exynos_dp_read_byte_from_dpcd(dp, DP_LANE_COUNT_SET, &data);
Jingoo Hane9474be2012-02-03 18:01:55 +0900231
232 if (enable)
Jingoo Han073ea2a2014-05-07 20:44:51 +0900233 exynos_dp_write_byte_to_dpcd(dp, DP_LANE_COUNT_SET,
234 DP_LANE_COUNT_ENHANCED_FRAME_EN |
Jingoo Hane9474be2012-02-03 18:01:55 +0900235 DPCD_LANE_COUNT_SET(data));
236 else
Jingoo Han073ea2a2014-05-07 20:44:51 +0900237 exynos_dp_write_byte_to_dpcd(dp, DP_LANE_COUNT_SET,
Jingoo Hane9474be2012-02-03 18:01:55 +0900238 DPCD_LANE_COUNT_SET(data));
239}
240
241static int exynos_dp_is_enhanced_mode_available(struct exynos_dp_device *dp)
242{
243 u8 data;
244 int retval;
245
Jingoo Han073ea2a2014-05-07 20:44:51 +0900246 exynos_dp_read_byte_from_dpcd(dp, DP_MAX_LANE_COUNT, &data);
Jingoo Hane9474be2012-02-03 18:01:55 +0900247 retval = DPCD_ENHANCED_FRAME_CAP(data);
248
249 return retval;
250}
251
252static void exynos_dp_set_enhanced_mode(struct exynos_dp_device *dp)
253{
254 u8 data;
255
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);
259}
260
261static void exynos_dp_training_pattern_dis(struct exynos_dp_device *dp)
262{
263 exynos_dp_set_training_pattern(dp, DP_NONE);
264
265 exynos_dp_write_byte_to_dpcd(dp,
Jingoo Han073ea2a2014-05-07 20:44:51 +0900266 DP_TRAINING_PATTERN_SET,
267 DP_TRAINING_PATTERN_DISABLE);
Jingoo Hane9474be2012-02-03 18:01:55 +0900268}
269
270static void exynos_dp_set_lane_lane_pre_emphasis(struct exynos_dp_device *dp,
271 int pre_emphasis, int lane)
272{
273 switch (lane) {
274 case 0:
275 exynos_dp_set_lane0_pre_emphasis(dp, pre_emphasis);
276 break;
277 case 1:
278 exynos_dp_set_lane1_pre_emphasis(dp, pre_emphasis);
279 break;
280
281 case 2:
282 exynos_dp_set_lane2_pre_emphasis(dp, pre_emphasis);
283 break;
284
285 case 3:
286 exynos_dp_set_lane3_pre_emphasis(dp, pre_emphasis);
287 break;
288 }
289}
290
Sean Paulace2d7f2012-10-31 23:21:00 +0000291static int exynos_dp_link_start(struct exynos_dp_device *dp)
Jingoo Hane9474be2012-02-03 18:01:55 +0900292{
Jingoo Hand5c0eed2012-07-19 13:52:59 +0900293 u8 buf[4];
Sean Paul49ce41f2012-10-31 23:21:00 +0000294 int lane, lane_count, pll_tries, retval;
Jingoo Hane9474be2012-02-03 18:01:55 +0900295
296 lane_count = dp->link_train.lane_count;
297
298 dp->link_train.lt_state = CLOCK_RECOVERY;
299 dp->link_train.eq_loop = 0;
300
301 for (lane = 0; lane < lane_count; lane++)
302 dp->link_train.cr_loop[lane] = 0;
303
Jingoo Hane9474be2012-02-03 18:01:55 +0900304 /* 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);
307
308 /* Setup RX configuration */
309 buf[0] = dp->link_train.link_rate;
310 buf[1] = dp->link_train.lane_count;
Jingoo Han073ea2a2014-05-07 20:44:51 +0900311 retval = exynos_dp_write_bytes_to_dpcd(dp, DP_LINK_BW_SET,
Jingoo Hane9474be2012-02-03 18:01:55 +0900312 2, buf);
Sean Paulace2d7f2012-10-31 23:21:00 +0000313 if (retval)
314 return retval;
Jingoo Hane9474be2012-02-03 18:01:55 +0900315
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);
320
Sean Paul49ce41f2012-10-31 23:21:00 +0000321 /* Wait for PLL lock */
322 pll_tries = 0;
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");
326 return -ETIMEDOUT;
327 }
328
329 pll_tries++;
330 usleep_range(90, 120);
331 }
332
Jingoo Hane9474be2012-02-03 18:01:55 +0900333 /* Set training pattern 1 */
334 exynos_dp_set_training_pattern(dp, TRAINING_PTN1);
335
336 /* Set RX training pattern */
Sean Paulfadec4b2012-10-31 23:21:00 +0000337 retval = exynos_dp_write_byte_to_dpcd(dp,
Jingoo Han073ea2a2014-05-07 20:44:51 +0900338 DP_TRAINING_PATTERN_SET,
339 DP_LINK_SCRAMBLING_DISABLE | DP_TRAINING_PATTERN_1);
Sean Paulfadec4b2012-10-31 23:21:00 +0000340 if (retval)
341 return retval;
Jingoo Hane9474be2012-02-03 18:01:55 +0900342
343 for (lane = 0; lane < lane_count; lane++)
Sonika Jindal0ded9252014-08-08 16:23:42 +0530344 buf[lane] = DP_TRAIN_PRE_EMPH_LEVEL_0 |
345 DP_TRAIN_VOLTAGE_SWING_LEVEL_0;
Sean Paulfadec4b2012-10-31 23:21:00 +0000346
Jingoo Han073ea2a2014-05-07 20:44:51 +0900347 retval = exynos_dp_write_bytes_to_dpcd(dp, DP_TRAINING_LANE0_SET,
Sean Paulfadec4b2012-10-31 23:21:00 +0000348 lane_count, buf);
Sean Paulace2d7f2012-10-31 23:21:00 +0000349
350 return retval;
Jingoo Hane9474be2012-02-03 18:01:55 +0900351}
352
Jingoo Hand5c0eed2012-07-19 13:52:59 +0900353static unsigned char exynos_dp_get_lane_status(u8 link_status[2], int lane)
Jingoo Hane9474be2012-02-03 18:01:55 +0900354{
355 int shift = (lane & 1) * 4;
356 u8 link_value = link_status[lane>>1];
357
358 return (link_value >> shift) & 0xf;
359}
360
Jingoo Hand5c0eed2012-07-19 13:52:59 +0900361static int exynos_dp_clock_recovery_ok(u8 link_status[2], int lane_count)
Jingoo Hane9474be2012-02-03 18:01:55 +0900362{
363 int lane;
364 u8 lane_status;
365
366 for (lane = 0; lane < lane_count; lane++) {
367 lane_status = exynos_dp_get_lane_status(link_status, lane);
Jingoo Han073ea2a2014-05-07 20:44:51 +0900368 if ((lane_status & DP_LANE_CR_DONE) == 0)
Jingoo Hane9474be2012-02-03 18:01:55 +0900369 return -EINVAL;
370 }
371 return 0;
372}
373
Sean Paulfadec4b2012-10-31 23:21:00 +0000374static int exynos_dp_channel_eq_ok(u8 link_status[2], u8 link_align,
375 int lane_count)
Jingoo Hane9474be2012-02-03 18:01:55 +0900376{
377 int lane;
Jingoo Hane9474be2012-02-03 18:01:55 +0900378 u8 lane_status;
379
Jingoo Han073ea2a2014-05-07 20:44:51 +0900380 if ((link_align & DP_INTERLANE_ALIGN_DONE) == 0)
Jingoo Hane9474be2012-02-03 18:01:55 +0900381 return -EINVAL;
382
383 for (lane = 0; lane < lane_count; lane++) {
Sean Paulfadec4b2012-10-31 23:21:00 +0000384 lane_status = exynos_dp_get_lane_status(link_status, lane);
Jingoo Han073ea2a2014-05-07 20:44:51 +0900385 lane_status &= DP_CHANNEL_EQ_BITS;
386 if (lane_status != DP_CHANNEL_EQ_BITS)
Jingoo Hane9474be2012-02-03 18:01:55 +0900387 return -EINVAL;
388 }
Jingoo Hand5c0eed2012-07-19 13:52:59 +0900389
Jingoo Hane9474be2012-02-03 18:01:55 +0900390 return 0;
391}
392
393static unsigned char exynos_dp_get_adjust_request_voltage(u8 adjust_request[2],
394 int lane)
395{
396 int shift = (lane & 1) * 4;
397 u8 link_value = adjust_request[lane>>1];
398
399 return (link_value >> shift) & 0x3;
400}
401
402static unsigned char exynos_dp_get_adjust_request_pre_emphasis(
403 u8 adjust_request[2],
404 int lane)
405{
406 int shift = (lane & 1) * 4;
407 u8 link_value = adjust_request[lane>>1];
408
409 return ((link_value >> shift) & 0xc) >> 2;
410}
411
412static void exynos_dp_set_lane_link_training(struct exynos_dp_device *dp,
413 u8 training_lane_set, int lane)
414{
415 switch (lane) {
416 case 0:
417 exynos_dp_set_lane0_link_training(dp, training_lane_set);
418 break;
419 case 1:
420 exynos_dp_set_lane1_link_training(dp, training_lane_set);
421 break;
422
423 case 2:
424 exynos_dp_set_lane2_link_training(dp, training_lane_set);
425 break;
426
427 case 3:
428 exynos_dp_set_lane3_link_training(dp, training_lane_set);
429 break;
430 }
431}
432
433static unsigned int exynos_dp_get_lane_link_training(
434 struct exynos_dp_device *dp,
435 int lane)
436{
437 u32 reg;
438
439 switch (lane) {
440 case 0:
441 reg = exynos_dp_get_lane0_link_training(dp);
442 break;
443 case 1:
444 reg = exynos_dp_get_lane1_link_training(dp);
445 break;
446 case 2:
447 reg = exynos_dp_get_lane2_link_training(dp);
448 break;
449 case 3:
450 reg = exynos_dp_get_lane3_link_training(dp);
451 break;
Jingoo Han64c43df2012-06-20 10:25:48 +0900452 default:
453 WARN_ON(1);
454 return 0;
Jingoo Hane9474be2012-02-03 18:01:55 +0900455 }
456
457 return reg;
458}
459
460static void exynos_dp_reduce_link_rate(struct exynos_dp_device *dp)
461{
Jingoo Hand5c0eed2012-07-19 13:52:59 +0900462 exynos_dp_training_pattern_dis(dp);
463 exynos_dp_set_enhanced_mode(dp);
Jingoo Hane9474be2012-02-03 18:01:55 +0900464
Jingoo Hand5c0eed2012-07-19 13:52:59 +0900465 dp->link_train.lt_state = FAILED;
Jingoo Hane9474be2012-02-03 18:01:55 +0900466}
467
Sean Paulfadec4b2012-10-31 23:21:00 +0000468static void exynos_dp_get_adjust_training_lane(struct exynos_dp_device *dp,
469 u8 adjust_request[2])
470{
471 int lane, lane_count;
472 u8 voltage_swing, pre_emphasis, training_lane;
473
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);
482
483 if (voltage_swing == VOLTAGE_LEVEL_3)
Jingoo Han073ea2a2014-05-07 20:44:51 +0900484 training_lane |= DP_TRAIN_MAX_SWING_REACHED;
Sean Paulfadec4b2012-10-31 23:21:00 +0000485 if (pre_emphasis == PRE_EMPHASIS_LEVEL_3)
Jingoo Han073ea2a2014-05-07 20:44:51 +0900486 training_lane |= DP_TRAIN_MAX_PRE_EMPHASIS_REACHED;
Sean Paulfadec4b2012-10-31 23:21:00 +0000487
488 dp->link_train.training_lane[lane] = training_lane;
489 }
490}
491
Jingoo Hane9474be2012-02-03 18:01:55 +0900492static int exynos_dp_process_clock_recovery(struct exynos_dp_device *dp)
493{
Sean Paulace2d7f2012-10-31 23:21:00 +0000494 int lane, lane_count, retval;
Sean Paulfadec4b2012-10-31 23:21:00 +0000495 u8 voltage_swing, pre_emphasis, training_lane;
496 u8 link_status[2], adjust_request[2];
Jingoo Hane9474be2012-02-03 18:01:55 +0900497
Jingoo Hana2c81bc2012-07-18 18:50:59 +0900498 usleep_range(100, 101);
Jingoo Hane9474be2012-02-03 18:01:55 +0900499
Jingoo Hane9474be2012-02-03 18:01:55 +0900500 lane_count = dp->link_train.lane_count;
501
Sean Paulfadec4b2012-10-31 23:21:00 +0000502 retval = exynos_dp_read_bytes_from_dpcd(dp,
Jingoo Han073ea2a2014-05-07 20:44:51 +0900503 DP_LANE0_1_STATUS, 2, link_status);
Sean Paulfadec4b2012-10-31 23:21:00 +0000504 if (retval)
505 return retval;
506
507 retval = exynos_dp_read_bytes_from_dpcd(dp,
Jingoo Han073ea2a2014-05-07 20:44:51 +0900508 DP_ADJUST_REQUEST_LANE0_1, 2, adjust_request);
Sean Paulace2d7f2012-10-31 23:21:00 +0000509 if (retval)
510 return retval;
Jingoo Hand5c0eed2012-07-19 13:52:59 +0900511
Jingoo Hane9474be2012-02-03 18:01:55 +0900512 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);
515
Sean Paulace2d7f2012-10-31 23:21:00 +0000516 retval = exynos_dp_write_byte_to_dpcd(dp,
Jingoo Han073ea2a2014-05-07 20:44:51 +0900517 DP_TRAINING_PATTERN_SET,
518 DP_LINK_SCRAMBLING_DISABLE |
519 DP_TRAINING_PATTERN_2);
Sean Paulace2d7f2012-10-31 23:21:00 +0000520 if (retval)
521 return retval;
Jingoo Hand5c0eed2012-07-19 13:52:59 +0900522
523 dev_info(dp->dev, "Link Training Clock Recovery success\n");
524 dp->link_train.lt_state = EQUALIZER_TRAINING;
525 } else {
526 for (lane = 0; lane < lane_count; lane++) {
527 training_lane = exynos_dp_get_lane_link_training(
528 dp, lane);
Jingoo Hand5c0eed2012-07-19 13:52:59 +0900529 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);
533
Sean Paulfadec4b2012-10-31 23:21:00 +0000534 if (DPCD_VOLTAGE_SWING_GET(training_lane) ==
535 voltage_swing &&
536 DPCD_PRE_EMPHASIS_GET(training_lane) ==
537 pre_emphasis)
Jingoo Hand5c0eed2012-07-19 13:52:59 +0900538 dp->link_train.cr_loop[lane]++;
Sean Paulfadec4b2012-10-31 23:21:00 +0000539
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);
547 return -EIO;
Jingoo Hand5c0eed2012-07-19 13:52:59 +0900548 }
Jingoo Hane9474be2012-02-03 18:01:55 +0900549 }
550 }
551
Sean Paulfadec4b2012-10-31 23:21:00 +0000552 exynos_dp_get_adjust_training_lane(dp, adjust_request);
Jingoo Hand5c0eed2012-07-19 13:52:59 +0900553
Sean Paulfadec4b2012-10-31 23:21:00 +0000554 for (lane = 0; lane < lane_count; lane++)
555 exynos_dp_set_lane_link_training(dp,
556 dp->link_train.training_lane[lane], lane);
557
558 retval = exynos_dp_write_bytes_to_dpcd(dp,
Jingoo Han073ea2a2014-05-07 20:44:51 +0900559 DP_TRAINING_LANE0_SET, lane_count,
Sean Paulfadec4b2012-10-31 23:21:00 +0000560 dp->link_train.training_lane);
561 if (retval)
562 return retval;
563
564 return retval;
Jingoo Hane9474be2012-02-03 18:01:55 +0900565}
566
567static int exynos_dp_process_equalizer_training(struct exynos_dp_device *dp)
568{
Sean Paulace2d7f2012-10-31 23:21:00 +0000569 int lane, lane_count, retval;
Jingoo Hane9474be2012-02-03 18:01:55 +0900570 u32 reg;
Sean Paulfadec4b2012-10-31 23:21:00 +0000571 u8 link_align, link_status[2], adjust_request[2];
Jingoo Hane9474be2012-02-03 18:01:55 +0900572
Jingoo Hana2c81bc2012-07-18 18:50:59 +0900573 usleep_range(400, 401);
Jingoo Hane9474be2012-02-03 18:01:55 +0900574
Jingoo Hane9474be2012-02-03 18:01:55 +0900575 lane_count = dp->link_train.lane_count;
576
Sean Paulfadec4b2012-10-31 23:21:00 +0000577 retval = exynos_dp_read_bytes_from_dpcd(dp,
Jingoo Han073ea2a2014-05-07 20:44:51 +0900578 DP_LANE0_1_STATUS, 2, link_status);
Sean Paulace2d7f2012-10-31 23:21:00 +0000579 if (retval)
580 return retval;
Jingoo Hand5c0eed2012-07-19 13:52:59 +0900581
Sean Paulfadec4b2012-10-31 23:21:00 +0000582 if (exynos_dp_clock_recovery_ok(link_status, lane_count)) {
583 exynos_dp_reduce_link_rate(dp);
584 return -EIO;
Jingoo Hane9474be2012-02-03 18:01:55 +0900585 }
586
Sean Paulfadec4b2012-10-31 23:21:00 +0000587 retval = exynos_dp_read_bytes_from_dpcd(dp,
Jingoo Han073ea2a2014-05-07 20:44:51 +0900588 DP_ADJUST_REQUEST_LANE0_1, 2, adjust_request);
Sean Paulfadec4b2012-10-31 23:21:00 +0000589 if (retval)
590 return retval;
Jingoo Hand5c0eed2012-07-19 13:52:59 +0900591
Sean Paulfadec4b2012-10-31 23:21:00 +0000592 retval = exynos_dp_read_byte_from_dpcd(dp,
Jingoo Han073ea2a2014-05-07 20:44:51 +0900593 DP_LANE_ALIGN_STATUS_UPDATED, &link_align);
Sean Paulfadec4b2012-10-31 23:21:00 +0000594 if (retval)
595 return retval;
596
597 exynos_dp_get_adjust_training_lane(dp, adjust_request);
598
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);
602
603 dev_info(dp->dev, "Link Training success!\n");
604
605 exynos_dp_get_link_bandwidth(dp, &reg);
606 dp->link_train.link_rate = reg;
607 dev_dbg(dp->dev, "final bandwidth = %.2x\n",
608 dp->link_train.link_rate);
609
610 exynos_dp_get_lane_count(dp, &reg);
611 dp->link_train.lane_count = reg;
612 dev_dbg(dp->dev, "final lane count = %.2x\n",
613 dp->link_train.lane_count);
614
615 /* set enhanced mode if available */
616 exynos_dp_set_enhanced_mode(dp);
617 dp->link_train.lt_state = FINISHED;
618
619 return 0;
620 }
621
622 /* not all locked */
623 dp->link_train.eq_loop++;
624
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);
628 return -EIO;
629 }
630
631 for (lane = 0; lane < lane_count; lane++)
632 exynos_dp_set_lane_link_training(dp,
633 dp->link_train.training_lane[lane], lane);
634
Jingoo Han073ea2a2014-05-07 20:44:51 +0900635 retval = exynos_dp_write_bytes_to_dpcd(dp, DP_TRAINING_LANE0_SET,
Sean Paulfadec4b2012-10-31 23:21:00 +0000636 lane_count, dp->link_train.training_lane);
637
638 return retval;
Jingoo Hane9474be2012-02-03 18:01:55 +0900639}
640
641static void exynos_dp_get_max_rx_bandwidth(struct exynos_dp_device *dp,
Jingoo Hand5c0eed2012-07-19 13:52:59 +0900642 u8 *bandwidth)
Jingoo Hane9474be2012-02-03 18:01:55 +0900643{
644 u8 data;
645
646 /*
647 * For DP rev.1.1, Maximum link rate of Main Link lanes
648 * 0x06 = 1.62 Gbps, 0x0a = 2.7 Gbps
649 */
Jingoo Han073ea2a2014-05-07 20:44:51 +0900650 exynos_dp_read_byte_from_dpcd(dp, DP_MAX_LINK_RATE, &data);
Jingoo Hane9474be2012-02-03 18:01:55 +0900651 *bandwidth = data;
652}
653
654static void exynos_dp_get_max_rx_lane_count(struct exynos_dp_device *dp,
Jingoo Hand5c0eed2012-07-19 13:52:59 +0900655 u8 *lane_count)
Jingoo Hane9474be2012-02-03 18:01:55 +0900656{
657 u8 data;
658
659 /*
660 * For DP rev.1.1, Maximum number of Main Link lanes
661 * 0x01 = 1 lane, 0x02 = 2 lanes, 0x04 = 4 lanes
662 */
Jingoo Han073ea2a2014-05-07 20:44:51 +0900663 exynos_dp_read_byte_from_dpcd(dp, DP_MAX_LANE_COUNT, &data);
Jingoo Hane9474be2012-02-03 18:01:55 +0900664 *lane_count = DPCD_MAX_LANE_COUNT(data);
665}
666
667static 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)
670{
671 /*
672 * MACRO_RST must be applied after the PLL_LOCK to avoid
673 * the DP inter pair skew issue for at least 10 us
674 */
675 exynos_dp_reset_macro(dp);
676
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);
680
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;
686 }
687
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;
692 }
693
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;
699
700 /* All DP analog module power up */
701 exynos_dp_set_analog_power_down(dp, POWER_ALL, 0);
702}
703
704static int exynos_dp_sw_link_training(struct exynos_dp_device *dp)
705{
Sean Paulace2d7f2012-10-31 23:21:00 +0000706 int retval = 0, training_finished = 0;
Jingoo Hane9474be2012-02-03 18:01:55 +0900707
708 dp->link_train.lt_state = START;
709
710 /* Process here */
Sean Paulace2d7f2012-10-31 23:21:00 +0000711 while (!retval && !training_finished) {
Jingoo Hane9474be2012-02-03 18:01:55 +0900712 switch (dp->link_train.lt_state) {
713 case START:
Sean Paulace2d7f2012-10-31 23:21:00 +0000714 retval = exynos_dp_link_start(dp);
715 if (retval)
716 dev_err(dp->dev, "LT link start failed!\n");
Jingoo Hane9474be2012-02-03 18:01:55 +0900717 break;
718 case CLOCK_RECOVERY:
Jingoo Hand5c0eed2012-07-19 13:52:59 +0900719 retval = exynos_dp_process_clock_recovery(dp);
720 if (retval)
721 dev_err(dp->dev, "LT CR failed!\n");
Jingoo Hane9474be2012-02-03 18:01:55 +0900722 break;
723 case EQUALIZER_TRAINING:
Jingoo Hand5c0eed2012-07-19 13:52:59 +0900724 retval = exynos_dp_process_equalizer_training(dp);
725 if (retval)
726 dev_err(dp->dev, "LT EQ failed!\n");
Jingoo Hane9474be2012-02-03 18:01:55 +0900727 break;
728 case FINISHED:
729 training_finished = 1;
730 break;
731 case FAILED:
732 return -EREMOTEIO;
733 }
734 }
Sean Paulace2d7f2012-10-31 23:21:00 +0000735 if (retval)
736 dev_err(dp->dev, "eDP link training failed (%d)\n", retval);
Jingoo Hane9474be2012-02-03 18:01:55 +0900737
738 return retval;
739}
740
741static int exynos_dp_set_link_train(struct exynos_dp_device *dp,
742 u32 count,
743 u32 bwtype)
744{
745 int i;
746 int retval;
747
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);
751 if (retval == 0)
752 break;
753
Jingoo Hana2c81bc2012-07-18 18:50:59 +0900754 usleep_range(100, 110);
Jingoo Hane9474be2012-02-03 18:01:55 +0900755 }
756
757 return retval;
758}
759
Ajay Kumar3fcb6eb2012-11-09 14:05:06 +0900760static int exynos_dp_config_video(struct exynos_dp_device *dp)
Jingoo Hane9474be2012-02-03 18:01:55 +0900761{
762 int retval = 0;
763 int timeout_loop = 0;
764 int done_count = 0;
765
Ajay Kumar3fcb6eb2012-11-09 14:05:06 +0900766 exynos_dp_config_video_slave_mode(dp);
Jingoo Hane9474be2012-02-03 18:01:55 +0900767
Ajay Kumar3fcb6eb2012-11-09 14:05:06 +0900768 exynos_dp_set_video_color_format(dp);
Jingoo Hane9474be2012-02-03 18:01:55 +0900769
770 if (exynos_dp_get_pll_lock_status(dp) == PLL_UNLOCKED) {
771 dev_err(dp->dev, "PLL is not locked yet.\n");
772 return -EINVAL;
773 }
774
775 for (;;) {
776 timeout_loop++;
777 if (exynos_dp_is_slave_video_stream_clock_on(dp) == 0)
778 break;
779 if (DP_TIMEOUT_LOOP_COUNT < timeout_loop) {
780 dev_err(dp->dev, "Timeout of video streamclk ok\n");
781 return -ETIMEDOUT;
782 }
783
Jingoo Hana2c81bc2012-07-18 18:50:59 +0900784 usleep_range(1, 2);
Jingoo Hane9474be2012-02-03 18:01:55 +0900785 }
786
787 /* Set to use the register calculated M/N video */
788 exynos_dp_set_video_cr_mn(dp, CALCULATED_M, 0, 0);
789
790 /* For video bist, Video timing must be generated by register */
791 exynos_dp_set_video_timing_mode(dp, VIDEO_TIMING_FROM_CAPTURE);
792
793 /* Disable video mute */
794 exynos_dp_enable_video_mute(dp, 0);
795
796 /* Configure video slave mode */
797 exynos_dp_enable_video_master(dp, 0);
798
Jingoo Hane9474be2012-02-03 18:01:55 +0900799 timeout_loop = 0;
800
801 for (;;) {
802 timeout_loop++;
803 if (exynos_dp_is_video_stream_on(dp) == 0) {
804 done_count++;
805 if (done_count > 10)
806 break;
807 } else if (done_count) {
808 done_count = 0;
809 }
810 if (DP_TIMEOUT_LOOP_COUNT < timeout_loop) {
811 dev_err(dp->dev, "Timeout of video streamclk ok\n");
812 return -ETIMEDOUT;
813 }
814
Jingoo Hana2c81bc2012-07-18 18:50:59 +0900815 usleep_range(1000, 1001);
Jingoo Hane9474be2012-02-03 18:01:55 +0900816 }
817
818 if (retval != 0)
819 dev_err(dp->dev, "Video stream is not detected!\n");
820
821 return retval;
822}
823
824static void exynos_dp_enable_scramble(struct exynos_dp_device *dp, bool enable)
825{
826 u8 data;
827
828 if (enable) {
829 exynos_dp_enable_scrambling(dp);
830
831 exynos_dp_read_byte_from_dpcd(dp,
Jingoo Han073ea2a2014-05-07 20:44:51 +0900832 DP_TRAINING_PATTERN_SET,
Jingoo Hane9474be2012-02-03 18:01:55 +0900833 &data);
834 exynos_dp_write_byte_to_dpcd(dp,
Jingoo Han073ea2a2014-05-07 20:44:51 +0900835 DP_TRAINING_PATTERN_SET,
836 (u8)(data & ~DP_LINK_SCRAMBLING_DISABLE));
Jingoo Hane9474be2012-02-03 18:01:55 +0900837 } else {
838 exynos_dp_disable_scrambling(dp);
839
840 exynos_dp_read_byte_from_dpcd(dp,
Jingoo Han073ea2a2014-05-07 20:44:51 +0900841 DP_TRAINING_PATTERN_SET,
Jingoo Hane9474be2012-02-03 18:01:55 +0900842 &data);
843 exynos_dp_write_byte_to_dpcd(dp,
Jingoo Han073ea2a2014-05-07 20:44:51 +0900844 DP_TRAINING_PATTERN_SET,
845 (u8)(data | DP_LINK_SCRAMBLING_DISABLE));
Jingoo Hane9474be2012-02-03 18:01:55 +0900846 }
847}
848
849static irqreturn_t exynos_dp_irq_handler(int irq, void *arg)
850{
851 struct exynos_dp_device *dp = arg;
852
Sean Paulc30ffb92012-11-01 19:13:46 +0900853 enum dp_irq_type irq_type;
854
855 irq_type = exynos_dp_get_irq_type(dp);
856 switch (irq_type) {
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);
861 break;
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);
865 break;
866 case DP_IRQ_TYPE_HP_CHANGE:
867 /*
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.
871 */
872 dev_dbg(dp->dev, "Received irq - hotplug change; ignoring.\n");
873 exynos_dp_clear_hotplug_interrupts(dp);
874 break;
875 default:
876 dev_err(dp->dev, "Received irq - unknown type!\n");
877 break;
878 }
Jingoo Hane9474be2012-02-03 18:01:55 +0900879 return IRQ_HANDLED;
880}
881
Sean Paul784fa9a2012-11-09 13:55:08 +0900882static void exynos_dp_hotplug(struct work_struct *work)
883{
884 struct exynos_dp_device *dp;
Sean Paul784fa9a2012-11-09 13:55:08 +0900885
886 dp = container_of(work, struct exynos_dp_device, hotplug_work);
887
Ajay Kumar4deabfa2014-07-31 23:12:13 +0530888 if (dp->drm_dev)
889 drm_helper_hpd_irq_event(dp->drm_dev);
890}
891
Gustavo Padovan2b8376c2015-08-15 12:14:08 -0300892static void exynos_dp_commit(struct drm_encoder *encoder)
Ajay Kumar4deabfa2014-07-31 23:12:13 +0530893{
Gustavo Padovancf67cc92015-08-11 17:38:06 +0900894 struct exynos_dp_device *dp = encoder_to_dp(encoder);
Ajay Kumar4deabfa2014-07-31 23:12:13 +0530895 int ret;
896
Ajay Kumar5f1dcd82014-07-31 23:12:14 +0530897 /* Keep the panel disabled while we configure video */
898 if (dp->panel) {
899 if (drm_panel_disable(dp->panel))
900 DRM_ERROR("failed to disable the panel\n");
901 }
902
Sean Paul784fa9a2012-11-09 13:55:08 +0900903 ret = exynos_dp_detect_hpd(dp);
904 if (ret) {
Sean Paulc30ffb92012-11-01 19:13:46 +0900905 /* Cable has been disconnected, we're done */
Sean Paul784fa9a2012-11-09 13:55:08 +0900906 return;
907 }
908
909 ret = exynos_dp_handle_edid(dp);
910 if (ret) {
911 dev_err(dp->dev, "unable to handle edid\n");
912 return;
913 }
914
915 ret = exynos_dp_set_link_train(dp, dp->video_info->lane_count,
916 dp->video_info->link_rate);
917 if (ret) {
918 dev_err(dp->dev, "unable to do link train\n");
919 return;
920 }
921
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);
925
926 exynos_dp_set_lane_count(dp, dp->video_info->lane_count);
927 exynos_dp_set_link_bandwidth(dp, dp->video_info->link_rate);
928
929 exynos_dp_init_video(dp);
Ajay Kumar3fcb6eb2012-11-09 14:05:06 +0900930 ret = exynos_dp_config_video(dp);
Sean Paul784fa9a2012-11-09 13:55:08 +0900931 if (ret)
932 dev_err(dp->dev, "unable to config video\n");
Ajay Kumar5f1dcd82014-07-31 23:12:14 +0530933
934 /* Safe to enable the panel now */
935 if (dp->panel) {
936 if (drm_panel_enable(dp->panel))
937 DRM_ERROR("failed to enable the panel\n");
938 }
Gustavo Padovan07fd6e12015-08-05 20:24:18 -0300939
940 /* Enable video */
941 exynos_dp_start_video(dp);
Sean Paul784fa9a2012-11-09 13:55:08 +0900942}
943
Sean Paulcaa5d1e2014-01-30 16:19:30 -0500944static enum drm_connector_status exynos_dp_detect(
945 struct drm_connector *connector, bool force)
Sean Paul1417f102014-01-30 16:19:23 -0500946{
Sean Paulcaa5d1e2014-01-30 16:19:30 -0500947 return connector_status_connected;
Sean Paul1417f102014-01-30 16:19:23 -0500948}
949
Sean Paulcaa5d1e2014-01-30 16:19:30 -0500950static void exynos_dp_connector_destroy(struct drm_connector *connector)
951{
Andrzej Hajda7c61b1e2014-09-09 15:16:12 +0200952 drm_connector_unregister(connector);
953 drm_connector_cleanup(connector);
Sean Paulcaa5d1e2014-01-30 16:19:30 -0500954}
955
956static struct drm_connector_funcs exynos_dp_connector_funcs = {
Gustavo Padovan63498e32015-06-01 12:04:53 -0300957 .dpms = drm_atomic_helper_connector_dpms,
Sean Paulcaa5d1e2014-01-30 16:19:30 -0500958 .fill_modes = drm_helper_probe_single_connector_modes,
959 .detect = exynos_dp_detect,
960 .destroy = exynos_dp_connector_destroy,
Gustavo Padovan4ea95262015-06-01 12:04:44 -0300961 .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,
Sean Paulcaa5d1e2014-01-30 16:19:30 -0500964};
965
966static int exynos_dp_get_modes(struct drm_connector *connector)
967{
968 struct exynos_dp_device *dp = ctx_from_connector(connector);
969 struct drm_display_mode *mode;
970
Ajay Kumar5f1dcd82014-07-31 23:12:14 +0530971 if (dp->panel)
972 return drm_panel_get_modes(dp->panel);
973
Sean Paulcaa5d1e2014-01-30 16:19:30 -0500974 mode = drm_mode_create(connector->dev);
975 if (!mode) {
976 DRM_ERROR("failed to create a new display mode.\n");
977 return 0;
978 }
979
Ajay Kumar5f1dcd82014-07-31 23:12:14 +0530980 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;
Sean Paulcaa5d1e2014-01-30 16:19:30 -0500983 connector->display_info.width_mm = mode->width_mm;
984 connector->display_info.height_mm = mode->height_mm;
985
986 mode->type = DRM_MODE_TYPE_DRIVER | DRM_MODE_TYPE_PREFERRED;
987 drm_mode_set_name(mode);
988 drm_mode_probed_add(connector, mode);
989
990 return 1;
991}
992
Sean Paulcaa5d1e2014-01-30 16:19:30 -0500993static struct drm_encoder *exynos_dp_best_encoder(
994 struct drm_connector *connector)
995{
996 struct exynos_dp_device *dp = ctx_from_connector(connector);
997
Gustavo Padovan2b8376c2015-08-15 12:14:08 -0300998 return &dp->encoder;
Sean Paulcaa5d1e2014-01-30 16:19:30 -0500999}
1000
1001static struct drm_connector_helper_funcs exynos_dp_connector_helper_funcs = {
1002 .get_modes = exynos_dp_get_modes,
Sean Paulcaa5d1e2014-01-30 16:19:30 -05001003 .best_encoder = exynos_dp_best_encoder,
1004};
1005
Sean Paul1634ba22014-02-24 19:20:15 +09001006/* returns the number of bridges attached */
Ajay Kumar80185562015-01-20 22:08:46 +05301007static int exynos_drm_attach_lcd_bridge(struct exynos_dp_device *dp,
Sean Paul1634ba22014-02-24 19:20:15 +09001008 struct drm_encoder *encoder)
1009{
Ajay Kumar80185562015-01-20 22:08:46 +05301010 int ret;
1011
1012 encoder->bridge = dp->bridge;
1013 dp->bridge->encoder = encoder;
1014 ret = drm_bridge_attach(encoder->dev, dp->bridge);
1015 if (ret) {
1016 DRM_ERROR("Failed to attach bridge to drm\n");
1017 return ret;
1018 }
1019
Sean Paul1634ba22014-02-24 19:20:15 +09001020 return 0;
1021}
1022
Gustavo Padovan2b8376c2015-08-15 12:14:08 -03001023static int exynos_dp_create_connector(struct drm_encoder *encoder)
Sean Paul1417f102014-01-30 16:19:23 -05001024{
Gustavo Padovan2b8376c2015-08-15 12:14:08 -03001025 struct exynos_dp_device *dp = encoder_to_dp(encoder);
Sean Paulcaa5d1e2014-01-30 16:19:30 -05001026 struct drm_connector *connector = &dp->connector;
1027 int ret;
1028
Sean Paul1634ba22014-02-24 19:20:15 +09001029 /* Pre-empt DP connector creation if there's a bridge */
Ajay Kumar80185562015-01-20 22:08:46 +05301030 if (dp->bridge) {
1031 ret = exynos_drm_attach_lcd_bridge(dp, encoder);
1032 if (!ret)
1033 return 0;
1034 }
Sean Paul1634ba22014-02-24 19:20:15 +09001035
Sean Paulcaa5d1e2014-01-30 16:19:30 -05001036 connector->polled = DRM_CONNECTOR_POLL_HPD;
1037
1038 ret = drm_connector_init(dp->drm_dev, connector,
1039 &exynos_dp_connector_funcs, DRM_MODE_CONNECTOR_eDP);
1040 if (ret) {
1041 DRM_ERROR("Failed to initialize connector with drm\n");
1042 return ret;
1043 }
1044
1045 drm_connector_helper_add(connector, &exynos_dp_connector_helper_funcs);
Thomas Wood34ea3d32014-05-29 16:57:41 +01001046 drm_connector_register(connector);
Sean Paulcaa5d1e2014-01-30 16:19:30 -05001047 drm_mode_connector_attach_encoder(connector, encoder);
1048
Ajay Kumar5f1dcd82014-07-31 23:12:14 +05301049 if (dp->panel)
1050 ret = drm_panel_attach(dp->panel, &dp->connector);
1051
1052 return ret;
Sean Paul1417f102014-01-30 16:19:23 -05001053}
1054
Gustavo Padovan2b8376c2015-08-15 12:14:08 -03001055static bool exynos_dp_mode_fixup(struct drm_encoder *encoder,
1056 const struct drm_display_mode *mode,
1057 struct drm_display_mode *adjusted_mode)
1058{
1059 return true;
1060}
1061
1062static void exynos_dp_mode_set(struct drm_encoder *encoder,
1063 struct drm_display_mode *mode,
1064 struct drm_display_mode *adjusted_mode)
1065{
1066}
1067
1068static void exynos_dp_enable(struct drm_encoder *encoder)
Sean Paul12f5ad62014-01-30 16:19:25 -05001069{
Gustavo Padovancf67cc92015-08-11 17:38:06 +09001070 struct exynos_dp_device *dp = encoder_to_dp(encoder);
Krzysztof Kozlowski48107d72015-05-07 09:04:44 +09001071 struct exynos_drm_crtc *crtc = dp_to_crtc(dp);
1072
Sean Paul12f5ad62014-01-30 16:19:25 -05001073 if (dp->dpms_mode == DRM_MODE_DPMS_ON)
1074 return;
1075
Ajay Kumar5f1dcd82014-07-31 23:12:14 +05301076 if (dp->panel) {
1077 if (drm_panel_prepare(dp->panel)) {
1078 DRM_ERROR("failed to setup the panel\n");
1079 return;
1080 }
1081 }
1082
Krzysztof Kozlowski48107d72015-05-07 09:04:44 +09001083 if (crtc->ops->clock_enable)
1084 crtc->ops->clock_enable(dp_to_crtc(dp), true);
Krzysztof Kozlowski1c363c72015-04-07 22:28:50 +09001085
Sean Paul12f5ad62014-01-30 16:19:25 -05001086 clk_prepare_enable(dp->clock);
Gustavo Padovanb6f3c362015-08-05 20:24:13 -03001087 phy_power_on(dp->phy);
Sean Paul12f5ad62014-01-30 16:19:25 -05001088 exynos_dp_init_dp(dp);
1089 enable_irq(dp->irq);
Gustavo Padovancf67cc92015-08-11 17:38:06 +09001090 exynos_dp_commit(&dp->encoder);
Gustavo Padovanb6595dc2015-08-10 21:37:04 -03001091
1092 dp->dpms_mode = DRM_MODE_DPMS_ON;
Sean Paul12f5ad62014-01-30 16:19:25 -05001093}
1094
Gustavo Padovan2b8376c2015-08-15 12:14:08 -03001095static void exynos_dp_disable(struct drm_encoder *encoder)
Sean Paul12f5ad62014-01-30 16:19:25 -05001096{
Gustavo Padovancf67cc92015-08-11 17:38:06 +09001097 struct exynos_dp_device *dp = encoder_to_dp(encoder);
Krzysztof Kozlowski48107d72015-05-07 09:04:44 +09001098 struct exynos_drm_crtc *crtc = dp_to_crtc(dp);
1099
Sean Paul12f5ad62014-01-30 16:19:25 -05001100 if (dp->dpms_mode != DRM_MODE_DPMS_ON)
1101 return;
1102
Ajay Kumar5f1dcd82014-07-31 23:12:14 +05301103 if (dp->panel) {
1104 if (drm_panel_disable(dp->panel)) {
1105 DRM_ERROR("failed to disable the panel\n");
1106 return;
1107 }
1108 }
1109
Sean Paul12f5ad62014-01-30 16:19:25 -05001110 disable_irq(dp->irq);
1111 flush_work(&dp->hotplug_work);
Gustavo Padovanb6f3c362015-08-05 20:24:13 -03001112 phy_power_off(dp->phy);
Sean Paul12f5ad62014-01-30 16:19:25 -05001113 clk_disable_unprepare(dp->clock);
Ajay Kumar5f1dcd82014-07-31 23:12:14 +05301114
Krzysztof Kozlowski48107d72015-05-07 09:04:44 +09001115 if (crtc->ops->clock_enable)
1116 crtc->ops->clock_enable(dp_to_crtc(dp), false);
Krzysztof Kozlowski1c363c72015-04-07 22:28:50 +09001117
Ajay Kumar5f1dcd82014-07-31 23:12:14 +05301118 if (dp->panel) {
1119 if (drm_panel_unprepare(dp->panel))
1120 DRM_ERROR("failed to turnoff the panel\n");
1121 }
Sean Paul12f5ad62014-01-30 16:19:25 -05001122
Gustavo Padovanb6595dc2015-08-10 21:37:04 -03001123 dp->dpms_mode = DRM_MODE_DPMS_OFF;
Sean Paul12f5ad62014-01-30 16:19:25 -05001124}
1125
Gustavo Padovan2b8376c2015-08-15 12:14:08 -03001126static struct drm_encoder_helper_funcs exynos_dp_encoder_helper_funcs = {
1127 .mode_fixup = exynos_dp_mode_fixup,
1128 .mode_set = exynos_dp_mode_set,
Gustavo Padovanb6595dc2015-08-10 21:37:04 -03001129 .enable = exynos_dp_enable,
1130 .disable = exynos_dp_disable,
Sean Paul1417f102014-01-30 16:19:23 -05001131};
1132
Gustavo Padovan2b8376c2015-08-15 12:14:08 -03001133static struct drm_encoder_funcs exynos_dp_encoder_funcs = {
1134 .destroy = drm_encoder_cleanup,
1135};
1136
Jingoo Hanf9b1e012013-10-16 21:58:15 +05301137static struct video_info *exynos_dp_dt_parse_pdata(struct device *dev)
Ajay Kumarc4e235c2012-10-13 05:48:00 +09001138{
1139 struct device_node *dp_node = dev->of_node;
Ajay Kumarc4e235c2012-10-13 05:48:00 +09001140 struct video_info *dp_video_config;
1141
Ajay Kumarc4e235c2012-10-13 05:48:00 +09001142 dp_video_config = devm_kzalloc(dev,
1143 sizeof(*dp_video_config), GFP_KERNEL);
Jingoo Han7a5b68272014-04-17 19:08:14 +09001144 if (!dp_video_config)
Ajay Kumarc4e235c2012-10-13 05:48:00 +09001145 return ERR_PTR(-ENOMEM);
Ajay Kumarc4e235c2012-10-13 05:48:00 +09001146
1147 dp_video_config->h_sync_polarity =
1148 of_property_read_bool(dp_node, "hsync-active-high");
1149
1150 dp_video_config->v_sync_polarity =
1151 of_property_read_bool(dp_node, "vsync-active-high");
1152
1153 dp_video_config->interlaced =
1154 of_property_read_bool(dp_node, "interlaced");
1155
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);
1160 }
1161
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);
1166 }
1167
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);
1172 }
1173
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);
1178 }
1179
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);
1184 }
1185
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);
1190 }
1191
Jingoo Hanf9b1e012013-10-16 21:58:15 +05301192 return dp_video_config;
Ajay Kumarc4e235c2012-10-13 05:48:00 +09001193}
1194
Sean Paul1417f102014-01-30 16:19:23 -05001195static int exynos_dp_dt_parse_panel(struct exynos_dp_device *dp)
1196{
1197 int ret;
1198
Ajay Kumar5f1dcd82014-07-31 23:12:14 +05301199 ret = of_get_videomode(dp->dev->of_node, &dp->priv.vm,
Sean Paul1417f102014-01-30 16:19:23 -05001200 OF_USE_NATIVE_MODE);
1201 if (ret) {
1202 DRM_ERROR("failed: of_get_videomode() : %d\n", ret);
1203 return ret;
1204 }
1205 return 0;
1206}
1207
Inki Daef37cd5e2014-05-09 14:25:20 +09001208static int exynos_dp_bind(struct device *dev, struct device *master, void *data)
Jingoo Hane9474be2012-02-03 18:01:55 +09001209{
Andrzej Hajda1df6e5f2014-11-17 09:54:24 +01001210 struct exynos_dp_device *dp = dev_get_drvdata(dev);
Inki Daef37cd5e2014-05-09 14:25:20 +09001211 struct platform_device *pdev = to_platform_device(dev);
1212 struct drm_device *drm_dev = data;
Gustavo Padovan2b8376c2015-08-15 12:14:08 -03001213 struct drm_encoder *encoder = &dp->encoder;
Jingoo Hane9474be2012-02-03 18:01:55 +09001214 struct resource *res;
Andrew Brestickerb8b52472014-04-22 04:09:10 +05301215 unsigned int irq_flags;
Gustavo Padovan2b8376c2015-08-15 12:14:08 -03001216 int pipe, ret = 0;
Jingoo Hane9474be2012-02-03 18:01:55 +09001217
Jingoo Hane9474be2012-02-03 18:01:55 +09001218 dp->dev = &pdev->dev;
Sean Paul12f5ad62014-01-30 16:19:25 -05001219 dp->dpms_mode = DRM_MODE_DPMS_OFF;
Jingoo Hane9474be2012-02-03 18:01:55 +09001220
Jingoo Hanf9b1e012013-10-16 21:58:15 +05301221 dp->video_info = exynos_dp_dt_parse_pdata(&pdev->dev);
1222 if (IS_ERR(dp->video_info))
1223 return PTR_ERR(dp->video_info);
Ajay Kumarc4e235c2012-10-13 05:48:00 +09001224
Vivek Gautamb128aef2014-11-12 15:12:10 +05301225 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);
1229 if (ret) {
1230 /*
1231 * phy itself is not enabled, so we can move forward
1232 * assigning NULL to phy pointer.
1233 */
1234 if (ret == -ENOSYS || ret == -ENODEV)
1235 dp->phy = NULL;
1236 else
1237 return ret;
1238 }
1239 }
Ajay Kumarc4e235c2012-10-13 05:48:00 +09001240
Ajay Kumar80185562015-01-20 22:08:46 +05301241 if (!dp->panel && !dp->bridge) {
Ajay Kumar5f1dcd82014-07-31 23:12:14 +05301242 ret = exynos_dp_dt_parse_panel(dp);
1243 if (ret)
1244 return ret;
1245 }
Sean Paul1417f102014-01-30 16:19:23 -05001246
Damien Cassoud913f362012-08-01 18:20:39 +02001247 dp->clock = devm_clk_get(&pdev->dev, "dp");
Jingoo Hane9474be2012-02-03 18:01:55 +09001248 if (IS_ERR(dp->clock)) {
1249 dev_err(&pdev->dev, "failed to get clock\n");
Jingoo Han4d10ecf82012-05-25 16:20:45 +09001250 return PTR_ERR(dp->clock);
Jingoo Hane9474be2012-02-03 18:01:55 +09001251 }
1252
Jingoo Han37414fb2012-10-04 15:45:14 +09001253 clk_prepare_enable(dp->clock);
Jingoo Hane9474be2012-02-03 18:01:55 +09001254
1255 res = platform_get_resource(pdev, IORESOURCE_MEM, 0);
Jingoo Hane9474be2012-02-03 18:01:55 +09001256
Thierry Redingbc3bad12013-01-21 11:09:23 +01001257 dp->reg_base = devm_ioremap_resource(&pdev->dev, res);
1258 if (IS_ERR(dp->reg_base))
1259 return PTR_ERR(dp->reg_base);
Jingoo Hane9474be2012-02-03 18:01:55 +09001260
Andrew Brestickerb8b52472014-04-22 04:09:10 +05301261 dp->hpd_gpio = of_get_named_gpio(dev->of_node, "samsung,hpd-gpio", 0);
1262
1263 if (gpio_is_valid(dp->hpd_gpio)) {
1264 /*
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.
1270 */
1271 ret = devm_gpio_request_one(&pdev->dev, dp->hpd_gpio, GPIOF_IN,
1272 "hpd_gpio");
1273 if (ret) {
1274 dev_err(&pdev->dev, "failed to get hpd gpio\n");
1275 return ret;
1276 }
1277 dp->irq = gpio_to_irq(dp->hpd_gpio);
1278 irq_flags = IRQF_TRIGGER_RISING | IRQF_TRIGGER_FALLING;
1279 } else {
1280 dp->hpd_gpio = -ENODEV;
1281 dp->irq = platform_get_irq(pdev, 0);
1282 irq_flags = 0;
1283 }
1284
Sean Paul1cefc1d2012-10-31 23:21:00 +00001285 if (dp->irq == -ENXIO) {
Jingoo Hane9474be2012-02-03 18:01:55 +09001286 dev_err(&pdev->dev, "failed to get irq\n");
Damien Cassoud913f362012-08-01 18:20:39 +02001287 return -ENODEV;
Jingoo Hane9474be2012-02-03 18:01:55 +09001288 }
1289
Sean Paul784fa9a2012-11-09 13:55:08 +09001290 INIT_WORK(&dp->hotplug_work, exynos_dp_hotplug);
1291
Gustavo Padovanb6f3c362015-08-05 20:24:13 -03001292 phy_power_on(dp->phy);
Jingoo Hane9474be2012-02-03 18:01:55 +09001293
1294 exynos_dp_init_dp(dp);
1295
Andrew Brestickerb8b52472014-04-22 04:09:10 +05301296 ret = devm_request_irq(&pdev->dev, dp->irq, exynos_dp_irq_handler,
1297 irq_flags, "exynos-dp", dp);
Ajay Kumar22ce19c2012-11-09 13:59:09 +09001298 if (ret) {
1299 dev_err(&pdev->dev, "failed to request irq\n");
1300 return ret;
1301 }
Sean Paul12f5ad62014-01-30 16:19:25 -05001302 disable_irq(dp->irq);
Jingoo Hane9474be2012-02-03 18:01:55 +09001303
Inki Daef37cd5e2014-05-09 14:25:20 +09001304 dp->drm_dev = drm_dev;
Sean Paul12f5ad62014-01-30 16:19:25 -05001305
Gustavo Padovan2b8376c2015-08-15 12:14:08 -03001306 pipe = exynos_drm_crtc_get_pipe_from_type(drm_dev,
1307 EXYNOS_DISPLAY_TYPE_LCD);
1308 if (pipe < 0)
1309 return pipe;
Gustavo Padovana2986e82015-08-05 20:24:20 -03001310
Gustavo Padovan2b8376c2015-08-15 12:14:08 -03001311 encoder->possible_crtcs = 1 << pipe;
1312
1313 DRM_DEBUG_KMS("possible_crtcs = 0x%x\n", encoder->possible_crtcs);
1314
1315 drm_encoder_init(drm_dev, encoder, &exynos_dp_encoder_funcs,
1316 DRM_MODE_ENCODER_TMDS);
1317
1318 drm_encoder_helper_add(encoder, &exynos_dp_encoder_helper_funcs);
1319
1320 ret = exynos_dp_create_connector(encoder);
Gustavo Padovana2986e82015-08-05 20:24:20 -03001321 if (ret) {
1322 DRM_ERROR("failed to create connector ret = %d\n", ret);
Gustavo Padovan2b8376c2015-08-15 12:14:08 -03001323 drm_encoder_cleanup(encoder);
Gustavo Padovana2986e82015-08-05 20:24:20 -03001324 return ret;
1325 }
1326
1327 return 0;
Inki Daef37cd5e2014-05-09 14:25:20 +09001328}
1329
1330static void exynos_dp_unbind(struct device *dev, struct device *master,
1331 void *data)
1332{
Andrzej Hajda1df6e5f2014-11-17 09:54:24 +01001333 struct exynos_dp_device *dp = dev_get_drvdata(dev);
Inki Daef37cd5e2014-05-09 14:25:20 +09001334
Gustavo Padovancf67cc92015-08-11 17:38:06 +09001335 exynos_dp_disable(&dp->encoder);
Inki Daef37cd5e2014-05-09 14:25:20 +09001336}
1337
1338static const struct component_ops exynos_dp_ops = {
1339 .bind = exynos_dp_bind,
1340 .unbind = exynos_dp_unbind,
1341};
1342
1343static int exynos_dp_probe(struct platform_device *pdev)
1344{
Ajay Kumar5f1dcd82014-07-31 23:12:14 +05301345 struct device *dev = &pdev->dev;
Ajay Kumar80185562015-01-20 22:08:46 +05301346 struct device_node *panel_node, *bridge_node, *endpoint;
Ajay Kumar5f1dcd82014-07-31 23:12:14 +05301347 struct exynos_dp_device *dp;
Inki Daedf5225b2014-05-29 18:28:02 +09001348
Ajay Kumar5f1dcd82014-07-31 23:12:14 +05301349 dp = devm_kzalloc(&pdev->dev, sizeof(struct exynos_dp_device),
1350 GFP_KERNEL);
1351 if (!dp)
1352 return -ENOMEM;
1353
Andrzej Hajda1df6e5f2014-11-17 09:54:24 +01001354 platform_set_drvdata(pdev, dp);
1355
Ajay Kumar5f1dcd82014-07-31 23:12:14 +05301356 panel_node = of_parse_phandle(dev->of_node, "panel", 0);
1357 if (panel_node) {
1358 dp->panel = of_drm_find_panel(panel_node);
1359 of_node_put(panel_node);
1360 if (!dp->panel)
1361 return -EPROBE_DEFER;
1362 }
1363
Ajay Kumar80185562015-01-20 22:08:46 +05301364 endpoint = of_graph_get_next_endpoint(dev->of_node, NULL);
1365 if (endpoint) {
1366 bridge_node = of_graph_get_remote_port_parent(endpoint);
1367 if (bridge_node) {
1368 dp->bridge = of_drm_find_bridge(bridge_node);
1369 of_node_put(bridge_node);
1370 if (!dp->bridge)
1371 return -EPROBE_DEFER;
1372 } else
1373 return -EPROBE_DEFER;
1374 }
1375
Andrzej Hajda86650402015-06-11 23:23:37 +09001376 return component_add(&pdev->dev, &exynos_dp_ops);
Jingoo Hane9474be2012-02-03 18:01:55 +09001377}
1378
Greg Kroah-Hartman48c68c42012-12-21 13:07:39 -08001379static int exynos_dp_remove(struct platform_device *pdev)
Jingoo Hane9474be2012-02-03 18:01:55 +09001380{
Inki Daedf5225b2014-05-29 18:28:02 +09001381 component_del(&pdev->dev, &exynos_dp_ops);
Inki Daedf5225b2014-05-29 18:28:02 +09001382
Jingoo Hane9474be2012-02-03 18:01:55 +09001383 return 0;
1384}
1385
1386#ifdef CONFIG_PM_SLEEP
1387static int exynos_dp_suspend(struct device *dev)
1388{
Andrzej Hajda1df6e5f2014-11-17 09:54:24 +01001389 struct exynos_dp_device *dp = dev_get_drvdata(dev);
Jingoo Hane9474be2012-02-03 18:01:55 +09001390
Gustavo Padovancf67cc92015-08-11 17:38:06 +09001391 exynos_dp_disable(&dp->encoder);
Jingoo Hane9474be2012-02-03 18:01:55 +09001392 return 0;
1393}
1394
1395static int exynos_dp_resume(struct device *dev)
1396{
Andrzej Hajda1df6e5f2014-11-17 09:54:24 +01001397 struct exynos_dp_device *dp = dev_get_drvdata(dev);
Jingoo Hane9474be2012-02-03 18:01:55 +09001398
Gustavo Padovancf67cc92015-08-11 17:38:06 +09001399 exynos_dp_enable(&dp->encoder);
Jingoo Hane9474be2012-02-03 18:01:55 +09001400 return 0;
1401}
1402#endif
1403
1404static const struct dev_pm_ops exynos_dp_pm_ops = {
1405 SET_SYSTEM_SLEEP_PM_OPS(exynos_dp_suspend, exynos_dp_resume)
1406};
1407
Ajay Kumarc4e235c2012-10-13 05:48:00 +09001408static const struct of_device_id exynos_dp_match[] = {
1409 { .compatible = "samsung,exynos5-dp" },
1410 {},
1411};
Sjoerd Simonsbd024b82014-07-30 11:29:41 +09001412MODULE_DEVICE_TABLE(of, exynos_dp_match);
Ajay Kumarc4e235c2012-10-13 05:48:00 +09001413
Sean Paul1417f102014-01-30 16:19:23 -05001414struct platform_driver dp_driver = {
Jingoo Hane9474be2012-02-03 18:01:55 +09001415 .probe = exynos_dp_probe,
Greg Kroah-Hartman48c68c42012-12-21 13:07:39 -08001416 .remove = exynos_dp_remove,
Jingoo Hane9474be2012-02-03 18:01:55 +09001417 .driver = {
1418 .name = "exynos-dp",
1419 .owner = THIS_MODULE,
1420 .pm = &exynos_dp_pm_ops,
Jingoo Hanf9b1e012013-10-16 21:58:15 +05301421 .of_match_table = exynos_dp_match,
Jingoo Hane9474be2012-02-03 18:01:55 +09001422 },
1423};
1424
Jingoo Hane9474be2012-02-03 18:01:55 +09001425MODULE_AUTHOR("Jingoo Han <jg1.han@samsung.com>");
1426MODULE_DESCRIPTION("Samsung SoC DP Driver");
Jingoo Han8f589bb2014-06-03 21:46:11 +09001427MODULE_LICENSE("GPL v2");