1 // SPDX-License-Identifier: (GPL-2.0-only OR BSD-2-Clause)
2 /*
3  * Copyright (c) 2020, The Linux Foundation. All rights reserved.
4  */
5 #include <linux/bits.h>
6 #include <linux/delay.h>
7 #include <linux/device.h>
8 #include <linux/err.h>
9 #include <linux/extcon.h>
10 #include <linux/fs.h>
11 #include <linux/gpio/consumer.h>
12 #include <linux/i2c.h>
13 #include <linux/interrupt.h>
14 #include <linux/kernel.h>
15 #include <linux/module.h>
16 #include <linux/pm_runtime.h>
17 #include <linux/regmap.h>
18 #include <linux/regulator/consumer.h>
19 #include <linux/types.h>
20 #include <linux/wait.h>
21 
22 #include <crypto/hash.h>
23 
24 #include <drm/display/drm_dp_helper.h>
25 #include <drm/display/drm_hdcp_helper.h>
26 #include <drm/drm_atomic_helper.h>
27 #include <drm/drm_bridge.h>
28 #include <drm/drm_crtc.h>
29 #include <drm/drm_edid.h>
30 #include <drm/drm_print.h>
31 #include <drm/drm_probe_helper.h>
32 
33 #include <sound/hdmi-codec.h>
34 
35 #define REG_IC_VER 0x04
36 
37 #define REG_RESET_CTRL 0x05
38 #define VIDEO_RESET BIT(0)
39 #define AUDIO_RESET BIT(1)
40 #define ALL_LOGIC_RESET BIT(2)
41 #define AUX_RESET BIT(3)
42 #define HDCP_RESET BIT(4)
43 
44 #define INT_STATUS_01 0x06
45 #define INT_MASK_01 0x09
46 #define INT_HPD_CHANGE 0
47 #define INT_RECEIVE_HPD_IRQ 1
48 #define INT_SCDT_CHANGE 2
49 #define INT_HDCP_FAIL 3
50 #define INT_HDCP_DONE 4
51 #define BIT_OFFSET(x) (((x) - INT_STATUS_01) * BITS_PER_BYTE)
52 #define BIT_INT_HPD INT_HPD_CHANGE
53 #define BIT_INT_HPD_IRQ INT_RECEIVE_HPD_IRQ
54 #define BIT_INT_SCDT INT_SCDT_CHANGE
55 #define BIT_INT_HDCP_FAIL INT_HDCP_FAIL
56 #define BIT_INT_HDCP_DONE INT_HDCP_DONE
57 
58 #define INT_STATUS_02 0x07
59 #define INT_MASK_02 0x0A
60 #define INT_AUX_CMD_FAIL 0
61 #define INT_HDCP_KSV_CHECK 1
62 #define INT_AUDIO_FIFO_ERROR 2
63 #define BIT_INT_AUX_CMD_FAIL (BIT_OFFSET(0x07) + INT_AUX_CMD_FAIL)
64 #define BIT_INT_HDCP_KSV_CHECK (BIT_OFFSET(0x07) + INT_HDCP_KSV_CHECK)
65 #define BIT_INT_AUDIO_FIFO_ERROR (BIT_OFFSET(0x07) + INT_AUDIO_FIFO_ERROR)
66 
67 #define INT_STATUS_03 0x08
68 #define INT_MASK_03 0x0B
69 #define INT_LINK_TRAIN_FAIL 4
70 #define INT_VID_FIFO_ERROR 5
71 #define INT_IO_LATCH_FIFO_OVERFLOW 7
72 #define BIT_INT_LINK_TRAIN_FAIL (BIT_OFFSET(0x08) + INT_LINK_TRAIN_FAIL)
73 #define BIT_INT_VID_FIFO_ERROR (BIT_OFFSET(0x08) + INT_VID_FIFO_ERROR)
74 #define BIT_INT_IO_FIFO_OVERFLOW (BIT_OFFSET(0x08) + INT_IO_LATCH_FIFO_OVERFLOW)
75 
76 #define REG_SYSTEM_STS 0x0D
77 #define INT_STS BIT(0)
78 #define HPD_STS BIT(1)
79 #define VIDEO_STB BIT(2)
80 
81 #define REG_LINK_TRAIN_STS 0x0E
82 #define LINK_STATE_CR BIT(2)
83 #define LINK_STATE_EQ BIT(3)
84 #define LINK_STATE_NORP BIT(4)
85 
86 #define REG_BANK_SEL 0x0F
87 #define REG_CLK_CTRL0 0x10
88 #define M_PCLK_DELAY 0x03
89 
90 #define REG_AUX_OPT 0x11
91 #define AUX_AUTO_RST BIT(0)
92 #define AUX_FIX_FREQ BIT(3)
93 
94 #define REG_DATA_CTRL0 0x12
95 #define VIDEO_LATCH_EDGE BIT(4)
96 #define ENABLE_PCLK_COUNTER BIT(7)
97 
98 #define REG_PCLK_COUNTER_VALUE 0x13
99 
100 #define REG_501_FIFO_CTRL 0x15
101 #define RST_501_FIFO BIT(1)
102 
103 #define REG_TRAIN_CTRL0 0x16
104 #define FORCE_LBR BIT(0)
105 #define LANE_COUNT_MASK 0x06
106 #define LANE_SWAP BIT(3)
107 #define SPREAD_AMP_5 BIT(4)
108 #define FORCE_CR_DONE BIT(5)
109 #define FORCE_EQ_DONE BIT(6)
110 
111 #define REG_TRAIN_CTRL1 0x17
112 #define AUTO_TRAIN BIT(0)
113 #define MANUAL_TRAIN BIT(1)
114 #define FORCE_RETRAIN BIT(2)
115 
116 #define REG_AUX_CTRL 0x23
117 #define CLR_EDID_FIFO BIT(0)
118 #define AUX_USER_MODE BIT(1)
119 #define AUX_NO_SEGMENT_WR BIT(6)
120 #define AUX_EN_FIFO_READ BIT(7)
121 
122 #define REG_AUX_ADR_0_7 0x24
123 #define REG_AUX_ADR_8_15 0x25
124 #define REG_AUX_ADR_16_19 0x26
125 #define REG_AUX_OUT_DATA0 0x27
126 
127 #define REG_AUX_CMD_REQ 0x2B
128 #define AUX_BUSY BIT(5)
129 
130 #define REG_AUX_DATA_0_7 0x2C
131 #define REG_AUX_DATA_8_15 0x2D
132 #define REG_AUX_DATA_16_23 0x2E
133 #define REG_AUX_DATA_24_31 0x2F
134 
135 #define REG_AUX_DATA_FIFO 0x2F
136 
137 #define REG_AUX_ERROR_STS 0x9F
138 #define M_AUX_REQ_FAIL 0x03
139 
140 #define REG_HDCP_CTRL1 0x38
141 #define HDCP_CP_ENABLE BIT(0)
142 
143 #define REG_HDCP_TRIGGER 0x39
144 #define HDCP_TRIGGER_START  BIT(0)
145 #define HDCP_TRIGGER_CPIRQ  BIT(1)
146 #define HDCP_TRIGGER_KSV_DONE  BIT(4)
147 #define HDCP_TRIGGER_KSV_FAIL BIT(5)
148 
149 #define REG_HDCP_CTRL2 0x3A
150 #define HDCP_AN_SEL BIT(0)
151 #define HDCP_AN_GEN BIT(1)
152 #define HDCP_HW_HPDIRQ_ACT BIT(2)
153 #define HDCP_EN_M0_READ BIT(5)
154 
155 #define REG_M0_0_7 0x4C
156 #define REG_AN_0_7 0x4C
157 #define REG_SP_CTRL0 0x58
158 #define REG_IP_CTRL1 0x59
159 #define REG_IP_CTRL2 0x5A
160 
161 #define REG_LINK_DRV 0x5C
162 #define DRV_HS BIT(1)
163 
164 #define REG_DRV_LN_DATA_SEL 0x5D
165 
166 #define REG_AUX 0x5E
167 
168 #define REG_VID_BUS_CTRL0 0x60
169 #define IN_DDR BIT(2)
170 #define DDR_CD (0x01 << 6)
171 
172 #define REG_VID_BUS_CTRL1 0x61
173 #define TX_FIFO_RESET BIT(1)
174 
175 #define REG_INPUT_CTRL 0xA0
176 #define INPUT_HSYNC_POL BIT(0)
177 #define INPUT_VSYNC_POL BIT(2)
178 #define INPUT_INTERLACED BIT(4)
179 
180 #define REG_INPUT_HTOTAL 0xA1
181 #define REG_INPUT_HACTIVE_START 0xA3
182 #define REG_INPUT_HACTIVE_WIDTH 0xA5
183 #define REG_INPUT_HFRONT_PORCH 0xA7
184 #define REG_INPUT_HSYNC_WIDTH 0xA9
185 #define REG_INPUT_VTOTAL 0xAB
186 #define REG_INPUT_VACTIVE_START 0xAD
187 #define REG_INPUT_VACTIVE_WIDTH 0xAF
188 #define REG_INPUT_VFRONT_PORCH 0xB1
189 #define REG_INPUT_VSYNC_WIDTH 0xB3
190 
191 #define REG_AUDIO_SRC_CTRL 0xB8
192 #define M_AUDIO_I2S_EN 0x0F
193 #define EN_I2S0 BIT(0)
194 #define EN_I2S1 BIT(1)
195 #define EN_I2S2 BIT(2)
196 #define EN_I2S3 BIT(3)
197 #define AUDIO_FIFO_RESET BIT(7)
198 
199 #define REG_AUDIO_FMT 0xB9
200 #define REG_AUDIO_FIFO_SEL 0xBA
201 
202 #define REG_AUDIO_CTRL0 0xBB
203 #define AUDIO_FULL_PKT BIT(4)
204 #define AUDIO_16B_BOUND BIT(5)
205 
206 #define REG_AUDIO_CTRL1 0xBC
207 #define REG_AUDIO_INPUT_FREQ 0xBE
208 
209 #define REG_IEC958_STS0 0xBF
210 #define REG_IEC958_STS1 0xC0
211 #define REG_IEC958_STS2 0xC1
212 #define REG_IEC958_STS3 0xC2
213 #define REG_IEC958_STS4 0xC3
214 
215 #define REG_HPD_IRQ_TIME 0xC9
216 #define REG_AUX_DEBUG_MODE 0xCA
217 #define REG_AUX_OPT2 0xCB
218 #define REG_HDCP_OPT 0xCE
219 #define REG_USER_DRV_PRE 0xCF
220 
221 #define REG_DATA_MUTE_CTRL 0xD3
222 #define ENABLE_ENHANCED_FRAME BIT(0)
223 #define ENABLE_AUTO_VIDEO_FIFO_RESET BIT(1)
224 #define EN_VID_MUTE BIT(4)
225 #define EN_AUD_MUTE BIT(5)
226 
227 #define REG_TIME_STMP_CTRL 0xD4
228 #define EN_ENHANCE_VID_STMP BIT(0)
229 #define EN_ENHANCE_AUD_STMP BIT(2)
230 #define M_STAMP_STEP 0x30
231 #define EN_SSC_GAT BIT(6)
232 
233 #define REG_INFOFRAME_CTRL 0xE8
234 #define EN_AVI_PKT BIT(0)
235 #define EN_AUD_PKT BIT(1)
236 #define EN_MPG_PKT BIT(2)
237 #define EN_GEN_PKT BIT(3)
238 #define EN_VID_TIME_STMP BIT(4)
239 #define EN_AUD_TIME_STMP BIT(5)
240 #define EN_VID_CTRL_PKT (EN_AVI_PKT | EN_VID_TIME_STMP)
241 #define EN_AUD_CTRL_PKT (EN_AUD_PKT | EN_AUD_TIME_STMP)
242 
243 #define REG_AUDIO_N_0_7 0xDE
244 #define REG_AUDIO_N_8_15 0xDF
245 #define REG_AUDIO_N_16_23 0xE0
246 
247 #define REG_AVI_INFO_DB1 0xE9
248 #define REG_AVI_INFO_DB2 0xEA
249 #define REG_AVI_INFO_DB3 0xEB
250 #define REG_AVI_INFO_DB4 0xEC
251 #define REG_AVI_INFO_DB5 0xED
252 #define REG_AVI_INFO_SUM 0xF6
253 
254 #define REG_AUD_INFOFRAM_DB1 0xF7
255 #define REG_AUD_INFOFRAM_DB2 0xF8
256 #define REG_AUD_INFOFRAM_DB3 0xF9
257 #define REG_AUD_INFOFRAM_DB4 0xFA
258 #define REG_AUD_INFOFRAM_SUM 0xFB
259 
260 /* the following six registers are in bank1 */
261 #define REG_DRV_0_DB_800_MV 0x17E
262 #define REG_PRE_0_DB_800_MV 0x17F
263 #define REG_PRE_3P5_DB_800_MV 0x181
264 #define REG_SSC_CTRL0 0x188
265 #define REG_SSC_CTRL1 0x189
266 #define REG_SSC_CTRL2 0x18A
267 
268 #define RBR DP_LINK_BW_1_62
269 #define HBR DP_LINK_BW_2_7
270 #define HBR2 DP_LINK_BW_5_4
271 #define HBR3 DP_LINK_BW_8_1
272 
273 #define DPCD_V_1_1 0x11
274 #define MISC_VERB 0xF0
275 #define MISC_VERC 0x70
276 #define I2S_INPUT_FORMAT_STANDARD 0
277 #define I2S_INPUT_FORMAT_32BIT 1
278 #define I2S_INPUT_LEFT_JUSTIFIED 0
279 #define I2S_INPUT_RIGHT_JUSTIFIED 1
280 #define I2S_DATA_1T_DELAY 0
281 #define I2S_DATA_NO_DELAY 1
282 #define I2S_WS_LEFT_CHANNEL 0
283 #define I2S_WS_RIGHT_CHANNEL 1
284 #define I2S_DATA_MSB_FIRST 0
285 #define I2S_DATA_LSB_FIRST 1
286 #define WORD_LENGTH_16BIT 0
287 #define WORD_LENGTH_18BIT 1
288 #define WORD_LENGTH_20BIT 2
289 #define WORD_LENGTH_24BIT 3
290 #define DEBUGFS_DIR_NAME "it6505-debugfs"
291 #define READ_BUFFER_SIZE 400
292 
293 /* Vendor option */
294 #define HDCP_DESIRED 1
295 #define MAX_LANE_COUNT 4
296 #define MAX_LINK_RATE HBR
297 #define AUTO_TRAIN_RETRY 3
298 #define MAX_HDCP_DOWN_STREAM_COUNT 10
299 #define MAX_CR_LEVEL 0x03
300 #define MAX_EQ_LEVEL 0x03
301 #define AUX_WAIT_TIMEOUT_MS 15
302 #define AUX_FIFO_MAX_SIZE 32
303 #define PIXEL_CLK_DELAY 1
304 #define PIXEL_CLK_INVERSE 0
305 #define ADJUST_PHASE_THRESHOLD 80000
306 #define DPI_PIXEL_CLK_MAX 95000
307 #define HDCP_SHA1_FIFO_LEN (MAX_HDCP_DOWN_STREAM_COUNT * 5 + 10)
308 #define DEFAULT_PWR_ON 0
309 #define DEFAULT_DRV_HOLD 0
310 
311 #define AUDIO_SELECT I2S
312 #define AUDIO_TYPE LPCM
313 #define AUDIO_SAMPLE_RATE SAMPLE_RATE_48K
314 #define AUDIO_CHANNEL_COUNT 2
315 #define I2S_INPUT_FORMAT I2S_INPUT_FORMAT_32BIT
316 #define I2S_JUSTIFIED I2S_INPUT_LEFT_JUSTIFIED
317 #define I2S_DATA_DELAY I2S_DATA_1T_DELAY
318 #define I2S_WS_CHANNEL I2S_WS_LEFT_CHANNEL
319 #define I2S_DATA_SEQUENCE I2S_DATA_MSB_FIRST
320 #define AUDIO_WORD_LENGTH WORD_LENGTH_24BIT
321 
322 enum aux_cmd_type {
323 	CMD_AUX_NATIVE_READ = 0x0,
324 	CMD_AUX_NATIVE_WRITE = 0x5,
325 	CMD_AUX_I2C_EDID_READ = 0xB,
326 };
327 
328 enum aux_cmd_reply {
329 	REPLY_ACK,
330 	REPLY_NACK,
331 	REPLY_DEFER,
332 };
333 
334 enum link_train_status {
335 	LINK_IDLE,
336 	LINK_BUSY,
337 	LINK_OK,
338 };
339 
340 enum hdcp_state {
341 	HDCP_AUTH_IDLE,
342 	HDCP_AUTH_GOING,
343 	HDCP_AUTH_DONE,
344 };
345 
346 struct it6505_platform_data {
347 	struct regulator *pwr18;
348 	struct regulator *ovdd;
349 	struct gpio_desc *gpiod_reset;
350 };
351 
352 enum it6505_audio_select {
353 	I2S = 0,
354 	SPDIF,
355 };
356 
357 enum it6505_audio_sample_rate {
358 	SAMPLE_RATE_24K = 0x6,
359 	SAMPLE_RATE_32K = 0x3,
360 	SAMPLE_RATE_48K = 0x2,
361 	SAMPLE_RATE_96K = 0xA,
362 	SAMPLE_RATE_192K = 0xE,
363 	SAMPLE_RATE_44_1K = 0x0,
364 	SAMPLE_RATE_88_2K = 0x8,
365 	SAMPLE_RATE_176_4K = 0xC,
366 };
367 
368 enum it6505_audio_type {
369 	LPCM = 0,
370 	NLPCM,
371 	DSS,
372 };
373 
374 struct it6505_audio_data {
375 	enum it6505_audio_select select;
376 	enum it6505_audio_sample_rate sample_rate;
377 	enum it6505_audio_type type;
378 	u8 word_length;
379 	u8 channel_count;
380 	u8 i2s_input_format;
381 	u8 i2s_justified;
382 	u8 i2s_data_delay;
383 	u8 i2s_ws_channel;
384 	u8 i2s_data_sequence;
385 };
386 
387 struct it6505_audio_sample_rate_map {
388 	enum it6505_audio_sample_rate rate;
389 	int sample_rate_value;
390 };
391 
392 struct it6505_drm_dp_link {
393 	unsigned char revision;
394 	unsigned int rate;
395 	unsigned int num_lanes;
396 	unsigned long capabilities;
397 };
398 
399 struct debugfs_entries {
400 	char *name;
401 	const struct file_operations *fops;
402 };
403 
404 struct it6505 {
405 	struct drm_dp_aux aux;
406 	struct drm_bridge bridge;
407 	struct device *dev;
408 	struct it6505_drm_dp_link link;
409 	struct it6505_platform_data pdata;
410 	/*
411 	 * Mutex protects extcon and interrupt functions from interfering
412 	 * each other.
413 	 */
414 	struct mutex extcon_lock;
415 	struct mutex mode_lock; /* used to bridge_detect */
416 	struct mutex aux_lock; /* used to aux data transfers */
417 	struct regmap *regmap;
418 	struct drm_display_mode source_output_mode;
419 	struct drm_display_mode video_info;
420 	struct notifier_block event_nb;
421 	struct extcon_dev *extcon;
422 	struct work_struct extcon_wq;
423 	int extcon_state;
424 	enum drm_connector_status connector_status;
425 	enum link_train_status link_state;
426 	struct work_struct link_works;
427 	u8 dpcd[DP_RECEIVER_CAP_SIZE];
428 	u8 lane_count;
429 	u8 link_rate_bw_code;
430 	u8 sink_count;
431 	bool step_train;
432 	bool branch_device;
433 	bool enable_ssc;
434 	bool lane_swap_disabled;
435 	bool lane_swap;
436 	bool powered;
437 	bool hpd_state;
438 	u32 afe_setting;
439 	u32 max_dpi_pixel_clock;
440 	u32 max_lane_count;
441 	enum hdcp_state hdcp_status;
442 	struct delayed_work hdcp_work;
443 	struct work_struct hdcp_wait_ksv_list;
444 	struct completion extcon_completion;
445 	u8 auto_train_retry;
446 	bool hdcp_desired;
447 	bool is_repeater;
448 	u8 hdcp_down_stream_count;
449 	u8 bksvs[DRM_HDCP_KSV_LEN];
450 	u8 sha1_input[HDCP_SHA1_FIFO_LEN];
451 	bool enable_enhanced_frame;
452 	hdmi_codec_plugged_cb plugged_cb;
453 	struct device *codec_dev;
454 	struct delayed_work delayed_audio;
455 	struct it6505_audio_data audio;
456 	struct dentry *debugfs;
457 
458 	/* it6505 driver hold option */
459 	bool enable_drv_hold;
460 
461 	struct edid *cached_edid;
462 };
463 
464 struct it6505_step_train_para {
465 	u8 voltage_swing[MAX_LANE_COUNT];
466 	u8 pre_emphasis[MAX_LANE_COUNT];
467 };
468 
469 /*
470  * Vendor option afe settings for different platforms
471  * 0: without FPC cable
472  * 1: with FPC cable
473  */
474 
475 static const u8 afe_setting_table[][3] = {
476 	{0x82, 0x00, 0x45},
477 	{0x93, 0x2A, 0x85}
478 };
479 
480 static const struct it6505_audio_sample_rate_map audio_sample_rate_map[] = {
481 	{SAMPLE_RATE_24K, 24000},
482 	{SAMPLE_RATE_32K, 32000},
483 	{SAMPLE_RATE_48K, 48000},
484 	{SAMPLE_RATE_96K, 96000},
485 	{SAMPLE_RATE_192K, 192000},
486 	{SAMPLE_RATE_44_1K, 44100},
487 	{SAMPLE_RATE_88_2K, 88200},
488 	{SAMPLE_RATE_176_4K, 176400},
489 };
490 
491 static const struct regmap_range it6505_bridge_volatile_ranges[] = {
492 	{ .range_min = 0, .range_max = 0x1FF },
493 };
494 
495 static const struct regmap_access_table it6505_bridge_volatile_table = {
496 	.yes_ranges = it6505_bridge_volatile_ranges,
497 	.n_yes_ranges = ARRAY_SIZE(it6505_bridge_volatile_ranges),
498 };
499 
500 static const struct regmap_range_cfg it6505_regmap_banks[] = {
501 	{
502 		.name = "it6505",
503 		.range_min = 0x00,
504 		.range_max = 0x1FF,
505 		.selector_reg = REG_BANK_SEL,
506 		.selector_mask = 0x1,
507 		.selector_shift = 0,
508 		.window_start = 0x00,
509 		.window_len = 0x100,
510 	},
511 };
512 
513 static const struct regmap_config it6505_regmap_config = {
514 	.reg_bits = 8,
515 	.val_bits = 8,
516 	.volatile_table = &it6505_bridge_volatile_table,
517 	.cache_type = REGCACHE_NONE,
518 	.ranges = it6505_regmap_banks,
519 	.num_ranges = ARRAY_SIZE(it6505_regmap_banks),
520 	.max_register = 0x1FF,
521 };
522 
it6505_read(struct it6505 * it6505,unsigned int reg_addr)523 static int it6505_read(struct it6505 *it6505, unsigned int reg_addr)
524 {
525 	unsigned int value;
526 	int err;
527 	struct device *dev = it6505->dev;
528 
529 	if (!it6505->powered)
530 		return -ENODEV;
531 
532 	err = regmap_read(it6505->regmap, reg_addr, &value);
533 	if (err < 0) {
534 		dev_err(dev, "read failed reg[0x%x] err: %d", reg_addr, err);
535 		return err;
536 	}
537 
538 	return value;
539 }
540 
it6505_write(struct it6505 * it6505,unsigned int reg_addr,unsigned int reg_val)541 static int it6505_write(struct it6505 *it6505, unsigned int reg_addr,
542 			unsigned int reg_val)
543 {
544 	int err;
545 	struct device *dev = it6505->dev;
546 
547 	if (!it6505->powered)
548 		return -ENODEV;
549 
550 	err = regmap_write(it6505->regmap, reg_addr, reg_val);
551 
552 	if (err < 0) {
553 		dev_err(dev, "write failed reg[0x%x] = 0x%x err = %d",
554 			reg_addr, reg_val, err);
555 		return err;
556 	}
557 
558 	return 0;
559 }
560 
it6505_set_bits(struct it6505 * it6505,unsigned int reg,unsigned int mask,unsigned int value)561 static int it6505_set_bits(struct it6505 *it6505, unsigned int reg,
562 			   unsigned int mask, unsigned int value)
563 {
564 	int err;
565 	struct device *dev = it6505->dev;
566 
567 	if (!it6505->powered)
568 		return -ENODEV;
569 
570 	err = regmap_update_bits(it6505->regmap, reg, mask, value);
571 	if (err < 0) {
572 		dev_err(dev, "write reg[0x%x] = 0x%x mask = 0x%x failed err %d",
573 			reg, value, mask, err);
574 		return err;
575 	}
576 
577 	return 0;
578 }
579 
it6505_debug_print(struct it6505 * it6505,unsigned int reg,const char * prefix)580 static void it6505_debug_print(struct it6505 *it6505, unsigned int reg,
581 			       const char *prefix)
582 {
583 	struct device *dev = it6505->dev;
584 	int val;
585 
586 	if (!drm_debug_enabled(DRM_UT_DRIVER))
587 		return;
588 
589 	val = it6505_read(it6505, reg);
590 	if (val < 0)
591 		DRM_DEV_DEBUG_DRIVER(dev, "%s reg[%02x] read error (%d)",
592 				     prefix, reg, val);
593 	else
594 		DRM_DEV_DEBUG_DRIVER(dev, "%s reg[%02x] = 0x%02x", prefix, reg,
595 				     val);
596 }
597 
it6505_dpcd_read(struct it6505 * it6505,unsigned long offset)598 static int it6505_dpcd_read(struct it6505 *it6505, unsigned long offset)
599 {
600 	u8 value;
601 	int ret;
602 	struct device *dev = it6505->dev;
603 
604 	ret = drm_dp_dpcd_readb(&it6505->aux, offset, &value);
605 	if (ret < 0) {
606 		dev_err(dev, "DPCD read failed [0x%lx] ret: %d", offset, ret);
607 		return ret;
608 	}
609 	return value;
610 }
611 
it6505_dpcd_write(struct it6505 * it6505,unsigned long offset,u8 datain)612 static int it6505_dpcd_write(struct it6505 *it6505, unsigned long offset,
613 			     u8 datain)
614 {
615 	int ret;
616 	struct device *dev = it6505->dev;
617 
618 	ret = drm_dp_dpcd_writeb(&it6505->aux, offset, datain);
619 	if (ret < 0) {
620 		dev_err(dev, "DPCD write failed [0x%lx] ret: %d", offset, ret);
621 		return ret;
622 	}
623 	return 0;
624 }
625 
it6505_get_dpcd(struct it6505 * it6505,int offset,u8 * dpcd,int num)626 static int it6505_get_dpcd(struct it6505 *it6505, int offset, u8 *dpcd, int num)
627 {
628 	int ret;
629 	struct device *dev = it6505->dev;
630 
631 	ret = drm_dp_dpcd_read(&it6505->aux, offset, dpcd, num);
632 
633 	if (ret < 0)
634 		return ret;
635 
636 	DRM_DEV_DEBUG_DRIVER(dev, "ret = %d DPCD[0x%x] = 0x%*ph", ret, offset,
637 			     num, dpcd);
638 
639 	return 0;
640 }
641 
it6505_dump(struct it6505 * it6505)642 static void it6505_dump(struct it6505 *it6505)
643 {
644 	unsigned int i, j;
645 	u8 regs[16];
646 	struct device *dev = it6505->dev;
647 
648 	for (i = 0; i <= 0xff; i += 16) {
649 		for (j = 0; j < 16; j++)
650 			regs[j] = it6505_read(it6505, i + j);
651 
652 		DRM_DEV_DEBUG_DRIVER(dev, "[0x%02x] = %16ph", i, regs);
653 	}
654 }
655 
it6505_get_sink_hpd_status(struct it6505 * it6505)656 static bool it6505_get_sink_hpd_status(struct it6505 *it6505)
657 {
658 	int reg_0d;
659 
660 	reg_0d = it6505_read(it6505, REG_SYSTEM_STS);
661 
662 	if (reg_0d < 0)
663 		return false;
664 
665 	return reg_0d & HPD_STS;
666 }
667 
it6505_read_word(struct it6505 * it6505,unsigned int reg)668 static int it6505_read_word(struct it6505 *it6505, unsigned int reg)
669 {
670 	int val0, val1;
671 
672 	val0 = it6505_read(it6505, reg);
673 	if (val0 < 0)
674 		return val0;
675 
676 	val1 = it6505_read(it6505, reg + 1);
677 	if (val1 < 0)
678 		return val1;
679 
680 	return (val1 << 8) | val0;
681 }
682 
it6505_calc_video_info(struct it6505 * it6505)683 static void it6505_calc_video_info(struct it6505 *it6505)
684 {
685 	struct device *dev = it6505->dev;
686 	int hsync_pol, vsync_pol, interlaced;
687 	int htotal, hdes, hdew, hfph, hsyncw;
688 	int vtotal, vdes, vdew, vfph, vsyncw;
689 	int rddata, i, pclk, sum = 0;
690 
691 	usleep_range(10000, 15000);
692 	rddata = it6505_read(it6505, REG_INPUT_CTRL);
693 	hsync_pol = rddata & INPUT_HSYNC_POL;
694 	vsync_pol = (rddata & INPUT_VSYNC_POL) >> 2;
695 	interlaced = (rddata & INPUT_INTERLACED) >> 4;
696 
697 	htotal = it6505_read_word(it6505, REG_INPUT_HTOTAL) & 0x1FFF;
698 	hdes = it6505_read_word(it6505, REG_INPUT_HACTIVE_START) & 0x1FFF;
699 	hdew = it6505_read_word(it6505, REG_INPUT_HACTIVE_WIDTH) & 0x1FFF;
700 	hfph = it6505_read_word(it6505, REG_INPUT_HFRONT_PORCH) & 0x1FFF;
701 	hsyncw = it6505_read_word(it6505, REG_INPUT_HSYNC_WIDTH) & 0x1FFF;
702 
703 	vtotal = it6505_read_word(it6505, REG_INPUT_VTOTAL) & 0xFFF;
704 	vdes = it6505_read_word(it6505, REG_INPUT_VACTIVE_START) & 0xFFF;
705 	vdew = it6505_read_word(it6505, REG_INPUT_VACTIVE_WIDTH) & 0xFFF;
706 	vfph = it6505_read_word(it6505, REG_INPUT_VFRONT_PORCH) & 0xFFF;
707 	vsyncw = it6505_read_word(it6505, REG_INPUT_VSYNC_WIDTH) & 0xFFF;
708 
709 	DRM_DEV_DEBUG_DRIVER(dev, "hsync_pol:%d, vsync_pol:%d, interlaced:%d",
710 			     hsync_pol, vsync_pol, interlaced);
711 	DRM_DEV_DEBUG_DRIVER(dev, "hactive_start:%d, vactive_start:%d",
712 			     hdes, vdes);
713 
714 	for (i = 0; i < 3; i++) {
715 		it6505_set_bits(it6505, REG_DATA_CTRL0, ENABLE_PCLK_COUNTER,
716 				ENABLE_PCLK_COUNTER);
717 		usleep_range(10000, 15000);
718 		it6505_set_bits(it6505, REG_DATA_CTRL0, ENABLE_PCLK_COUNTER,
719 				0x00);
720 		rddata = it6505_read_word(it6505, REG_PCLK_COUNTER_VALUE) &
721 			 0xFFF;
722 
723 		sum += rddata;
724 	}
725 
726 	if (sum == 0) {
727 		DRM_DEV_DEBUG_DRIVER(dev, "calc video timing error");
728 		return;
729 	}
730 
731 	sum /= 3;
732 	pclk = 13500 * 2048 / sum;
733 	it6505->video_info.clock = pclk;
734 	it6505->video_info.hdisplay = hdew;
735 	it6505->video_info.hsync_start = hdew + hfph;
736 	it6505->video_info.hsync_end = hdew + hfph + hsyncw;
737 	it6505->video_info.htotal = htotal;
738 	it6505->video_info.vdisplay = vdew;
739 	it6505->video_info.vsync_start = vdew + vfph;
740 	it6505->video_info.vsync_end = vdew + vfph + vsyncw;
741 	it6505->video_info.vtotal = vtotal;
742 
743 	DRM_DEV_DEBUG_DRIVER(dev, DRM_MODE_FMT,
744 			     DRM_MODE_ARG(&it6505->video_info));
745 }
746 
it6505_drm_dp_link_set_power(struct drm_dp_aux * aux,struct it6505_drm_dp_link * link,u8 mode)747 static int it6505_drm_dp_link_set_power(struct drm_dp_aux *aux,
748 					struct it6505_drm_dp_link *link,
749 					u8 mode)
750 {
751 	u8 value;
752 	int err;
753 
754 	/* DP_SET_POWER register is only available on DPCD v1.1 and later */
755 	if (link->revision < DPCD_V_1_1)
756 		return 0;
757 
758 	err = drm_dp_dpcd_readb(aux, DP_SET_POWER, &value);
759 	if (err < 0)
760 		return err;
761 
762 	value &= ~DP_SET_POWER_MASK;
763 	value |= mode;
764 
765 	err = drm_dp_dpcd_writeb(aux, DP_SET_POWER, value);
766 	if (err < 0)
767 		return err;
768 
769 	if (mode == DP_SET_POWER_D0) {
770 		/*
771 		 * According to the DP 1.1 specification, a "Sink Device must
772 		 * exit the power saving state within 1 ms" (Section 2.5.3.1,
773 		 * Table 5-52, "Sink Control Field" (register 0x600).
774 		 */
775 		usleep_range(1000, 2000);
776 	}
777 
778 	return 0;
779 }
780 
it6505_clear_int(struct it6505 * it6505)781 static void it6505_clear_int(struct it6505 *it6505)
782 {
783 	it6505_write(it6505, INT_STATUS_01, 0xFF);
784 	it6505_write(it6505, INT_STATUS_02, 0xFF);
785 	it6505_write(it6505, INT_STATUS_03, 0xFF);
786 }
787 
it6505_int_mask_enable(struct it6505 * it6505)788 static void it6505_int_mask_enable(struct it6505 *it6505)
789 {
790 	it6505_write(it6505, INT_MASK_01, BIT(INT_HPD_CHANGE) |
791 		     BIT(INT_RECEIVE_HPD_IRQ) | BIT(INT_SCDT_CHANGE) |
792 		     BIT(INT_HDCP_FAIL) | BIT(INT_HDCP_DONE));
793 
794 	it6505_write(it6505, INT_MASK_02, BIT(INT_AUX_CMD_FAIL) |
795 		     BIT(INT_HDCP_KSV_CHECK) | BIT(INT_AUDIO_FIFO_ERROR));
796 
797 	it6505_write(it6505, INT_MASK_03, BIT(INT_LINK_TRAIN_FAIL) |
798 		     BIT(INT_VID_FIFO_ERROR) | BIT(INT_IO_LATCH_FIFO_OVERFLOW));
799 }
800 
it6505_int_mask_disable(struct it6505 * it6505)801 static void it6505_int_mask_disable(struct it6505 *it6505)
802 {
803 	it6505_write(it6505, INT_MASK_01, 0x00);
804 	it6505_write(it6505, INT_MASK_02, 0x00);
805 	it6505_write(it6505, INT_MASK_03, 0x00);
806 }
807 
it6505_lane_termination_on(struct it6505 * it6505)808 static void it6505_lane_termination_on(struct it6505 *it6505)
809 {
810 	int regcf;
811 
812 	regcf = it6505_read(it6505, REG_USER_DRV_PRE);
813 
814 	if (regcf == MISC_VERB)
815 		it6505_set_bits(it6505, REG_DRV_LN_DATA_SEL, 0x80, 0x00);
816 
817 	if (regcf == MISC_VERC) {
818 		if (it6505->lane_swap) {
819 			switch (it6505->lane_count) {
820 			case 1:
821 			case 2:
822 				it6505_set_bits(it6505, REG_DRV_LN_DATA_SEL,
823 						0x0C, 0x08);
824 				break;
825 			default:
826 				it6505_set_bits(it6505, REG_DRV_LN_DATA_SEL,
827 						0x0C, 0x0C);
828 				break;
829 			}
830 		} else {
831 			switch (it6505->lane_count) {
832 			case 1:
833 			case 2:
834 				it6505_set_bits(it6505, REG_DRV_LN_DATA_SEL,
835 						0x0C, 0x04);
836 				break;
837 			default:
838 				it6505_set_bits(it6505, REG_DRV_LN_DATA_SEL,
839 						0x0C, 0x0C);
840 				break;
841 			}
842 		}
843 	}
844 }
845 
it6505_lane_termination_off(struct it6505 * it6505)846 static void it6505_lane_termination_off(struct it6505 *it6505)
847 {
848 	int regcf;
849 
850 	regcf = it6505_read(it6505, REG_USER_DRV_PRE);
851 
852 	if (regcf == MISC_VERB)
853 		it6505_set_bits(it6505, REG_DRV_LN_DATA_SEL, 0x80, 0x80);
854 
855 	if (regcf == MISC_VERC)
856 		it6505_set_bits(it6505, REG_DRV_LN_DATA_SEL, 0x0C, 0x00);
857 }
858 
it6505_lane_power_on(struct it6505 * it6505)859 static void it6505_lane_power_on(struct it6505 *it6505)
860 {
861 	it6505_set_bits(it6505, REG_LINK_DRV, 0xF1,
862 			(it6505->lane_swap ?
863 				 GENMASK(7, 8 - it6505->lane_count) :
864 				 GENMASK(3 + it6505->lane_count, 4)) |
865 				0x01);
866 }
867 
it6505_lane_power_off(struct it6505 * it6505)868 static void it6505_lane_power_off(struct it6505 *it6505)
869 {
870 	it6505_set_bits(it6505, REG_LINK_DRV, 0xF0, 0x00);
871 }
872 
it6505_lane_off(struct it6505 * it6505)873 static void it6505_lane_off(struct it6505 *it6505)
874 {
875 	it6505_lane_power_off(it6505);
876 	it6505_lane_termination_off(it6505);
877 }
878 
it6505_aux_termination_on(struct it6505 * it6505)879 static void it6505_aux_termination_on(struct it6505 *it6505)
880 {
881 	int regcf;
882 
883 	regcf = it6505_read(it6505, REG_USER_DRV_PRE);
884 
885 	if (regcf == MISC_VERB)
886 		it6505_lane_termination_on(it6505);
887 
888 	if (regcf == MISC_VERC)
889 		it6505_set_bits(it6505, REG_DRV_LN_DATA_SEL, 0x80, 0x80);
890 }
891 
it6505_aux_power_on(struct it6505 * it6505)892 static void it6505_aux_power_on(struct it6505 *it6505)
893 {
894 	it6505_set_bits(it6505, REG_AUX, 0x02, 0x02);
895 }
896 
it6505_aux_on(struct it6505 * it6505)897 static void it6505_aux_on(struct it6505 *it6505)
898 {
899 	it6505_aux_power_on(it6505);
900 	it6505_aux_termination_on(it6505);
901 }
902 
it6505_aux_reset(struct it6505 * it6505)903 static void it6505_aux_reset(struct it6505 *it6505)
904 {
905 	it6505_set_bits(it6505, REG_RESET_CTRL, AUX_RESET, AUX_RESET);
906 	it6505_set_bits(it6505, REG_RESET_CTRL, AUX_RESET, 0x00);
907 }
908 
it6505_reset_logic(struct it6505 * it6505)909 static void it6505_reset_logic(struct it6505 *it6505)
910 {
911 	regmap_write(it6505->regmap, REG_RESET_CTRL, ALL_LOGIC_RESET);
912 	usleep_range(1000, 1500);
913 }
914 
it6505_aux_op_finished(struct it6505 * it6505)915 static bool it6505_aux_op_finished(struct it6505 *it6505)
916 {
917 	int reg2b = it6505_read(it6505, REG_AUX_CMD_REQ);
918 
919 	if (reg2b < 0)
920 		return false;
921 
922 	return (reg2b & AUX_BUSY) == 0;
923 }
924 
it6505_aux_wait(struct it6505 * it6505)925 static int it6505_aux_wait(struct it6505 *it6505)
926 {
927 	int status;
928 	unsigned long timeout;
929 	struct device *dev = it6505->dev;
930 
931 	timeout = jiffies + msecs_to_jiffies(AUX_WAIT_TIMEOUT_MS) + 1;
932 
933 	while (!it6505_aux_op_finished(it6505)) {
934 		if (time_after(jiffies, timeout)) {
935 			dev_err(dev, "Timed out waiting AUX to finish");
936 			return -ETIMEDOUT;
937 		}
938 		usleep_range(1000, 2000);
939 	}
940 
941 	status = it6505_read(it6505, REG_AUX_ERROR_STS);
942 	if (status < 0) {
943 		dev_err(dev, "Failed to read AUX channel: %d", status);
944 		return status;
945 	}
946 
947 	return 0;
948 }
949 
it6505_aux_operation(struct it6505 * it6505,enum aux_cmd_type cmd,unsigned int address,u8 * buffer,size_t size,enum aux_cmd_reply * reply)950 static ssize_t it6505_aux_operation(struct it6505 *it6505,
951 				    enum aux_cmd_type cmd,
952 				    unsigned int address, u8 *buffer,
953 				    size_t size, enum aux_cmd_reply *reply)
954 {
955 	int i, ret;
956 	bool aux_write_check = false;
957 
958 	if (!it6505_get_sink_hpd_status(it6505))
959 		return -EIO;
960 
961 	/* set AUX user mode */
962 	it6505_set_bits(it6505, REG_AUX_CTRL, AUX_USER_MODE, AUX_USER_MODE);
963 
964 aux_op_start:
965 	if (cmd == CMD_AUX_I2C_EDID_READ) {
966 		/* AUX EDID FIFO has max length of AUX_FIFO_MAX_SIZE bytes. */
967 		size = min_t(size_t, size, AUX_FIFO_MAX_SIZE);
968 		/* Enable AUX FIFO read back and clear FIFO */
969 		it6505_set_bits(it6505, REG_AUX_CTRL,
970 				AUX_EN_FIFO_READ | CLR_EDID_FIFO,
971 				AUX_EN_FIFO_READ | CLR_EDID_FIFO);
972 
973 		it6505_set_bits(it6505, REG_AUX_CTRL,
974 				AUX_EN_FIFO_READ | CLR_EDID_FIFO,
975 				AUX_EN_FIFO_READ);
976 	} else {
977 		/* The DP AUX transmit buffer has 4 bytes. */
978 		size = min_t(size_t, size, 4);
979 		it6505_set_bits(it6505, REG_AUX_CTRL, AUX_NO_SEGMENT_WR,
980 				AUX_NO_SEGMENT_WR);
981 	}
982 
983 	/* Start Address[7:0] */
984 	it6505_write(it6505, REG_AUX_ADR_0_7, (address >> 0) & 0xFF);
985 	/* Start Address[15:8] */
986 	it6505_write(it6505, REG_AUX_ADR_8_15, (address >> 8) & 0xFF);
987 	/* WriteNum[3:0]+StartAdr[19:16] */
988 	it6505_write(it6505, REG_AUX_ADR_16_19,
989 		     ((address >> 16) & 0x0F) | ((size - 1) << 4));
990 
991 	if (cmd == CMD_AUX_NATIVE_WRITE)
992 		regmap_bulk_write(it6505->regmap, REG_AUX_OUT_DATA0, buffer,
993 				  size);
994 
995 	/* Aux Fire */
996 	it6505_write(it6505, REG_AUX_CMD_REQ, cmd);
997 
998 	ret = it6505_aux_wait(it6505);
999 	if (ret < 0)
1000 		goto aux_op_err;
1001 
1002 	ret = it6505_read(it6505, REG_AUX_ERROR_STS);
1003 	if (ret < 0)
1004 		goto aux_op_err;
1005 
1006 	switch ((ret >> 6) & 0x3) {
1007 	case 0:
1008 		*reply = REPLY_ACK;
1009 		break;
1010 	case 1:
1011 		*reply = REPLY_DEFER;
1012 		ret = -EAGAIN;
1013 		goto aux_op_err;
1014 	case 2:
1015 		*reply = REPLY_NACK;
1016 		ret = -EIO;
1017 		goto aux_op_err;
1018 	case 3:
1019 		ret = -ETIMEDOUT;
1020 		goto aux_op_err;
1021 	}
1022 
1023 	/* Read back Native Write data */
1024 	if (cmd == CMD_AUX_NATIVE_WRITE) {
1025 		aux_write_check = true;
1026 		cmd = CMD_AUX_NATIVE_READ;
1027 		goto aux_op_start;
1028 	}
1029 
1030 	if (cmd == CMD_AUX_I2C_EDID_READ) {
1031 		for (i = 0; i < size; i++) {
1032 			ret = it6505_read(it6505, REG_AUX_DATA_FIFO);
1033 			if (ret < 0)
1034 				goto aux_op_err;
1035 			buffer[i] = ret;
1036 		}
1037 	} else {
1038 		for (i = 0; i < size; i++) {
1039 			ret = it6505_read(it6505, REG_AUX_DATA_0_7 + i);
1040 			if (ret < 0)
1041 				goto aux_op_err;
1042 
1043 			if (aux_write_check && buffer[size - 1 - i] != ret) {
1044 				ret = -EINVAL;
1045 				goto aux_op_err;
1046 			}
1047 
1048 			buffer[size - 1 - i] = ret;
1049 		}
1050 	}
1051 
1052 	ret = i;
1053 
1054 aux_op_err:
1055 	if (cmd == CMD_AUX_I2C_EDID_READ) {
1056 		/* clear AUX FIFO */
1057 		it6505_set_bits(it6505, REG_AUX_CTRL,
1058 				AUX_EN_FIFO_READ | CLR_EDID_FIFO,
1059 				AUX_EN_FIFO_READ | CLR_EDID_FIFO);
1060 		it6505_set_bits(it6505, REG_AUX_CTRL,
1061 				AUX_EN_FIFO_READ | CLR_EDID_FIFO, 0x00);
1062 	}
1063 
1064 	/* Leave AUX user mode */
1065 	it6505_set_bits(it6505, REG_AUX_CTRL, AUX_USER_MODE, 0);
1066 
1067 	return ret;
1068 }
1069 
it6505_aux_do_transfer(struct it6505 * it6505,enum aux_cmd_type cmd,unsigned int address,u8 * buffer,size_t size,enum aux_cmd_reply * reply)1070 static ssize_t it6505_aux_do_transfer(struct it6505 *it6505,
1071 				      enum aux_cmd_type cmd,
1072 				      unsigned int address, u8 *buffer,
1073 				      size_t size, enum aux_cmd_reply *reply)
1074 {
1075 	int i, ret_size, ret = 0, request_size;
1076 
1077 	mutex_lock(&it6505->aux_lock);
1078 	for (i = 0; i < size; i += 4) {
1079 		request_size = min((int)size - i, 4);
1080 		ret_size = it6505_aux_operation(it6505, cmd, address + i,
1081 						buffer + i, request_size,
1082 						reply);
1083 		if (ret_size < 0) {
1084 			ret = ret_size;
1085 			goto aux_op_err;
1086 		}
1087 
1088 		ret += ret_size;
1089 	}
1090 
1091 aux_op_err:
1092 	mutex_unlock(&it6505->aux_lock);
1093 	return ret;
1094 }
1095 
it6505_aux_transfer(struct drm_dp_aux * aux,struct drm_dp_aux_msg * msg)1096 static ssize_t it6505_aux_transfer(struct drm_dp_aux *aux,
1097 				   struct drm_dp_aux_msg *msg)
1098 {
1099 	struct it6505 *it6505 = container_of(aux, struct it6505, aux);
1100 	u8 cmd;
1101 	bool is_i2c = !(msg->request & DP_AUX_NATIVE_WRITE);
1102 	int ret;
1103 	enum aux_cmd_reply reply;
1104 
1105 	/* IT6505 doesn't support arbitrary I2C read / write. */
1106 	if (is_i2c)
1107 		return -EINVAL;
1108 
1109 	switch (msg->request) {
1110 	case DP_AUX_NATIVE_READ:
1111 		cmd = CMD_AUX_NATIVE_READ;
1112 		break;
1113 	case DP_AUX_NATIVE_WRITE:
1114 		cmd = CMD_AUX_NATIVE_WRITE;
1115 		break;
1116 	default:
1117 		return -EINVAL;
1118 	}
1119 
1120 	ret = it6505_aux_do_transfer(it6505, cmd, msg->address, msg->buffer,
1121 				     msg->size, &reply);
1122 	if (ret < 0)
1123 		return ret;
1124 
1125 	switch (reply) {
1126 	case REPLY_ACK:
1127 		msg->reply = DP_AUX_NATIVE_REPLY_ACK;
1128 		break;
1129 	case REPLY_NACK:
1130 		msg->reply = DP_AUX_NATIVE_REPLY_NACK;
1131 		break;
1132 	case REPLY_DEFER:
1133 		msg->reply = DP_AUX_NATIVE_REPLY_DEFER;
1134 		break;
1135 	}
1136 
1137 	return ret;
1138 }
1139 
it6505_get_edid_block(void * data,u8 * buf,unsigned int block,size_t len)1140 static int it6505_get_edid_block(void *data, u8 *buf, unsigned int block,
1141 				 size_t len)
1142 {
1143 	struct it6505 *it6505 = data;
1144 	struct device *dev = it6505->dev;
1145 	enum aux_cmd_reply reply;
1146 	int offset, ret, aux_retry = 100;
1147 
1148 	it6505_aux_reset(it6505);
1149 	DRM_DEV_DEBUG_DRIVER(dev, "block number = %d", block);
1150 
1151 	for (offset = 0; offset < EDID_LENGTH;) {
1152 		ret = it6505_aux_do_transfer(it6505, CMD_AUX_I2C_EDID_READ,
1153 					     block * EDID_LENGTH + offset,
1154 					     buf + offset, 8, &reply);
1155 
1156 		if (ret < 0 && ret != -EAGAIN)
1157 			return ret;
1158 
1159 		switch (reply) {
1160 		case REPLY_ACK:
1161 			DRM_DEV_DEBUG_DRIVER(dev, "[0x%02x]: %8ph", offset,
1162 					     buf + offset);
1163 			offset += 8;
1164 			aux_retry = 100;
1165 			break;
1166 		case REPLY_NACK:
1167 			return -EIO;
1168 		case REPLY_DEFER:
1169 			msleep(20);
1170 			if (!(--aux_retry))
1171 				return -EIO;
1172 		}
1173 	}
1174 
1175 	return 0;
1176 }
1177 
it6505_variable_config(struct it6505 * it6505)1178 static void it6505_variable_config(struct it6505 *it6505)
1179 {
1180 	it6505->link_rate_bw_code = HBR;
1181 	it6505->lane_count = MAX_LANE_COUNT;
1182 	it6505->link_state = LINK_IDLE;
1183 	it6505->hdcp_desired = HDCP_DESIRED;
1184 	it6505->auto_train_retry = AUTO_TRAIN_RETRY;
1185 	it6505->audio.select = AUDIO_SELECT;
1186 	it6505->audio.sample_rate = AUDIO_SAMPLE_RATE;
1187 	it6505->audio.channel_count = AUDIO_CHANNEL_COUNT;
1188 	it6505->audio.type = AUDIO_TYPE;
1189 	it6505->audio.i2s_input_format = I2S_INPUT_FORMAT;
1190 	it6505->audio.i2s_justified = I2S_JUSTIFIED;
1191 	it6505->audio.i2s_data_delay = I2S_DATA_DELAY;
1192 	it6505->audio.i2s_ws_channel = I2S_WS_CHANNEL;
1193 	it6505->audio.i2s_data_sequence = I2S_DATA_SEQUENCE;
1194 	it6505->audio.word_length = AUDIO_WORD_LENGTH;
1195 	memset(it6505->sha1_input, 0, sizeof(it6505->sha1_input));
1196 	memset(it6505->bksvs, 0, sizeof(it6505->bksvs));
1197 }
1198 
it6505_send_video_infoframe(struct it6505 * it6505,struct hdmi_avi_infoframe * frame)1199 static int it6505_send_video_infoframe(struct it6505 *it6505,
1200 				       struct hdmi_avi_infoframe *frame)
1201 {
1202 	u8 buffer[HDMI_INFOFRAME_HEADER_SIZE + HDMI_AVI_INFOFRAME_SIZE];
1203 	int err;
1204 	struct device *dev = it6505->dev;
1205 
1206 	err = hdmi_avi_infoframe_pack(frame, buffer, sizeof(buffer));
1207 	if (err < 0) {
1208 		dev_err(dev, "Failed to pack AVI infoframe: %d", err);
1209 		return err;
1210 	}
1211 
1212 	err = it6505_set_bits(it6505, REG_INFOFRAME_CTRL, EN_AVI_PKT, 0x00);
1213 	if (err)
1214 		return err;
1215 
1216 	err = regmap_bulk_write(it6505->regmap, REG_AVI_INFO_DB1,
1217 				buffer + HDMI_INFOFRAME_HEADER_SIZE,
1218 				frame->length);
1219 	if (err)
1220 		return err;
1221 
1222 	err = it6505_set_bits(it6505, REG_INFOFRAME_CTRL, EN_AVI_PKT,
1223 			      EN_AVI_PKT);
1224 	if (err)
1225 		return err;
1226 
1227 	return 0;
1228 }
1229 
it6505_get_extcon_property(struct it6505 * it6505)1230 static void it6505_get_extcon_property(struct it6505 *it6505)
1231 {
1232 	int err;
1233 	union extcon_property_value property;
1234 	struct device *dev = it6505->dev;
1235 
1236 	if (it6505->extcon && !it6505->lane_swap_disabled) {
1237 		err = extcon_get_property(it6505->extcon, EXTCON_DISP_DP,
1238 					  EXTCON_PROP_USB_TYPEC_POLARITY,
1239 					  &property);
1240 		if (err) {
1241 			dev_err(dev, "get property fail!");
1242 			return;
1243 		}
1244 		it6505->lane_swap = property.intval;
1245 	}
1246 }
1247 
it6505_clk_phase_adjustment(struct it6505 * it6505,const struct drm_display_mode * mode)1248 static void it6505_clk_phase_adjustment(struct it6505 *it6505,
1249 					const struct drm_display_mode *mode)
1250 {
1251 	int clock = mode->clock;
1252 
1253 	it6505_set_bits(it6505, REG_CLK_CTRL0, M_PCLK_DELAY,
1254 			clock < ADJUST_PHASE_THRESHOLD ? PIXEL_CLK_DELAY : 0);
1255 	it6505_set_bits(it6505, REG_DATA_CTRL0, VIDEO_LATCH_EDGE,
1256 			PIXEL_CLK_INVERSE << 4);
1257 }
1258 
it6505_link_reset_step_train(struct it6505 * it6505)1259 static void it6505_link_reset_step_train(struct it6505 *it6505)
1260 {
1261 	it6505_set_bits(it6505, REG_TRAIN_CTRL0,
1262 			FORCE_CR_DONE | FORCE_EQ_DONE, 0x00);
1263 	it6505_dpcd_write(it6505, DP_TRAINING_PATTERN_SET,
1264 			  DP_TRAINING_PATTERN_DISABLE);
1265 }
1266 
it6505_init(struct it6505 * it6505)1267 static void it6505_init(struct it6505 *it6505)
1268 {
1269 	it6505_write(it6505, REG_AUX_OPT, AUX_AUTO_RST | AUX_FIX_FREQ);
1270 	it6505_write(it6505, REG_AUX_CTRL, AUX_NO_SEGMENT_WR);
1271 	it6505_write(it6505, REG_HDCP_CTRL2, HDCP_AN_SEL | HDCP_HW_HPDIRQ_ACT);
1272 	it6505_write(it6505, REG_VID_BUS_CTRL0, IN_DDR | DDR_CD);
1273 	it6505_write(it6505, REG_VID_BUS_CTRL1, 0x01);
1274 	it6505_write(it6505, REG_AUDIO_CTRL0, AUDIO_16B_BOUND);
1275 
1276 	/* chip internal setting, don't modify */
1277 	it6505_write(it6505, REG_HPD_IRQ_TIME, 0xF5);
1278 	it6505_write(it6505, REG_AUX_DEBUG_MODE, 0x4D);
1279 	it6505_write(it6505, REG_AUX_OPT2, 0x17);
1280 	it6505_write(it6505, REG_HDCP_OPT, 0x60);
1281 	it6505_write(it6505, REG_DATA_MUTE_CTRL,
1282 		     EN_VID_MUTE | EN_AUD_MUTE | ENABLE_AUTO_VIDEO_FIFO_RESET);
1283 	it6505_write(it6505, REG_TIME_STMP_CTRL,
1284 		     EN_SSC_GAT | EN_ENHANCE_VID_STMP | EN_ENHANCE_AUD_STMP);
1285 	it6505_write(it6505, REG_INFOFRAME_CTRL, 0x00);
1286 	it6505_write(it6505, REG_DRV_0_DB_800_MV,
1287 		     afe_setting_table[it6505->afe_setting][0]);
1288 	it6505_write(it6505, REG_PRE_0_DB_800_MV,
1289 		     afe_setting_table[it6505->afe_setting][1]);
1290 	it6505_write(it6505, REG_PRE_3P5_DB_800_MV,
1291 		     afe_setting_table[it6505->afe_setting][2]);
1292 	it6505_write(it6505, REG_SSC_CTRL0, 0x9E);
1293 	it6505_write(it6505, REG_SSC_CTRL1, 0x1C);
1294 	it6505_write(it6505, REG_SSC_CTRL2, 0x42);
1295 }
1296 
it6505_video_disable(struct it6505 * it6505)1297 static void it6505_video_disable(struct it6505 *it6505)
1298 {
1299 	it6505_set_bits(it6505, REG_DATA_MUTE_CTRL, EN_VID_MUTE, EN_VID_MUTE);
1300 	it6505_set_bits(it6505, REG_INFOFRAME_CTRL, EN_VID_CTRL_PKT, 0x00);
1301 	it6505_set_bits(it6505, REG_RESET_CTRL, VIDEO_RESET, VIDEO_RESET);
1302 }
1303 
it6505_video_reset(struct it6505 * it6505)1304 static void it6505_video_reset(struct it6505 *it6505)
1305 {
1306 	it6505_link_reset_step_train(it6505);
1307 	it6505_set_bits(it6505, REG_DATA_MUTE_CTRL, EN_VID_MUTE, EN_VID_MUTE);
1308 	it6505_set_bits(it6505, REG_INFOFRAME_CTRL, EN_VID_CTRL_PKT, 0x00);
1309 
1310 	it6505_set_bits(it6505, REG_VID_BUS_CTRL1, TX_FIFO_RESET, TX_FIFO_RESET);
1311 	it6505_set_bits(it6505, REG_VID_BUS_CTRL1, TX_FIFO_RESET, 0x00);
1312 
1313 	it6505_set_bits(it6505, REG_501_FIFO_CTRL, RST_501_FIFO, RST_501_FIFO);
1314 	it6505_set_bits(it6505, REG_501_FIFO_CTRL, RST_501_FIFO, 0x00);
1315 
1316 	it6505_set_bits(it6505, REG_RESET_CTRL, VIDEO_RESET, VIDEO_RESET);
1317 	usleep_range(1000, 2000);
1318 	it6505_set_bits(it6505, REG_RESET_CTRL, VIDEO_RESET, 0x00);
1319 }
1320 
it6505_update_video_parameter(struct it6505 * it6505,const struct drm_display_mode * mode)1321 static void it6505_update_video_parameter(struct it6505 *it6505,
1322 					  const struct drm_display_mode *mode)
1323 {
1324 	it6505_clk_phase_adjustment(it6505, mode);
1325 	it6505_video_disable(it6505);
1326 }
1327 
it6505_audio_input(struct it6505 * it6505)1328 static bool it6505_audio_input(struct it6505 *it6505)
1329 {
1330 	int reg05, regbe;
1331 
1332 	reg05 = it6505_read(it6505, REG_RESET_CTRL);
1333 	it6505_set_bits(it6505, REG_RESET_CTRL, AUDIO_RESET, 0x00);
1334 	usleep_range(3000, 4000);
1335 	regbe = it6505_read(it6505, REG_AUDIO_INPUT_FREQ);
1336 	it6505_write(it6505, REG_RESET_CTRL, reg05);
1337 
1338 	return regbe != 0xFF;
1339 }
1340 
it6505_setup_audio_channel_status(struct it6505 * it6505)1341 static void it6505_setup_audio_channel_status(struct it6505 *it6505)
1342 {
1343 	enum it6505_audio_sample_rate sample_rate = it6505->audio.sample_rate;
1344 	u8 audio_word_length_map[] = { 0x02, 0x04, 0x03, 0x0B };
1345 
1346 	/* Channel Status */
1347 	it6505_write(it6505, REG_IEC958_STS0, it6505->audio.type << 1);
1348 	it6505_write(it6505, REG_IEC958_STS1, 0x00);
1349 	it6505_write(it6505, REG_IEC958_STS2, 0x00);
1350 	it6505_write(it6505, REG_IEC958_STS3, sample_rate);
1351 	it6505_write(it6505, REG_IEC958_STS4, (~sample_rate << 4) |
1352 		     audio_word_length_map[it6505->audio.word_length]);
1353 }
1354 
it6505_setup_audio_format(struct it6505 * it6505)1355 static void it6505_setup_audio_format(struct it6505 *it6505)
1356 {
1357 	/* I2S MODE */
1358 	it6505_write(it6505, REG_AUDIO_FMT,
1359 		     (it6505->audio.word_length << 5) |
1360 		     (it6505->audio.i2s_data_sequence << 4) |
1361 		     (it6505->audio.i2s_ws_channel << 3) |
1362 		     (it6505->audio.i2s_data_delay << 2) |
1363 		     (it6505->audio.i2s_justified << 1) |
1364 		     it6505->audio.i2s_input_format);
1365 	if (it6505->audio.select == SPDIF) {
1366 		it6505_write(it6505, REG_AUDIO_FIFO_SEL, 0x00);
1367 		/* 0x30 = 128*FS */
1368 		it6505_set_bits(it6505, REG_AUX_OPT, 0xF0, 0x30);
1369 	} else {
1370 		it6505_write(it6505, REG_AUDIO_FIFO_SEL, 0xE4);
1371 	}
1372 
1373 	it6505_write(it6505, REG_AUDIO_CTRL0, 0x20);
1374 	it6505_write(it6505, REG_AUDIO_CTRL1, 0x00);
1375 }
1376 
it6505_enable_audio_source(struct it6505 * it6505)1377 static void it6505_enable_audio_source(struct it6505 *it6505)
1378 {
1379 	unsigned int audio_source_count;
1380 
1381 	audio_source_count = BIT(DIV_ROUND_UP(it6505->audio.channel_count, 2))
1382 				 - 1;
1383 
1384 	audio_source_count |= it6505->audio.select << 4;
1385 
1386 	it6505_write(it6505, REG_AUDIO_SRC_CTRL, audio_source_count);
1387 }
1388 
it6505_enable_audio_infoframe(struct it6505 * it6505)1389 static void it6505_enable_audio_infoframe(struct it6505 *it6505)
1390 {
1391 	struct device *dev = it6505->dev;
1392 	u8 audio_info_ca[] = { 0x00, 0x00, 0x01, 0x03, 0x07, 0x0B, 0x0F, 0x1F };
1393 
1394 	DRM_DEV_DEBUG_DRIVER(dev, "infoframe channel_allocation:0x%02x",
1395 			     audio_info_ca[it6505->audio.channel_count - 1]);
1396 
1397 	it6505_write(it6505, REG_AUD_INFOFRAM_DB1, it6505->audio.channel_count
1398 		     - 1);
1399 	it6505_write(it6505, REG_AUD_INFOFRAM_DB2, 0x00);
1400 	it6505_write(it6505, REG_AUD_INFOFRAM_DB3,
1401 		     audio_info_ca[it6505->audio.channel_count - 1]);
1402 	it6505_write(it6505, REG_AUD_INFOFRAM_DB4, 0x00);
1403 	it6505_write(it6505, REG_AUD_INFOFRAM_SUM, 0x00);
1404 
1405 	/* Enable Audio InfoFrame */
1406 	it6505_set_bits(it6505, REG_INFOFRAME_CTRL, EN_AUD_CTRL_PKT,
1407 			EN_AUD_CTRL_PKT);
1408 }
1409 
it6505_disable_audio(struct it6505 * it6505)1410 static void it6505_disable_audio(struct it6505 *it6505)
1411 {
1412 	it6505_set_bits(it6505, REG_DATA_MUTE_CTRL, EN_AUD_MUTE, EN_AUD_MUTE);
1413 	it6505_set_bits(it6505, REG_AUDIO_SRC_CTRL, M_AUDIO_I2S_EN, 0x00);
1414 	it6505_set_bits(it6505, REG_INFOFRAME_CTRL, EN_AUD_CTRL_PKT, 0x00);
1415 	it6505_set_bits(it6505, REG_RESET_CTRL, AUDIO_RESET, AUDIO_RESET);
1416 }
1417 
it6505_enable_audio(struct it6505 * it6505)1418 static void it6505_enable_audio(struct it6505 *it6505)
1419 {
1420 	struct device *dev = it6505->dev;
1421 	int regbe;
1422 
1423 	DRM_DEV_DEBUG_DRIVER(dev, "start");
1424 	it6505_disable_audio(it6505);
1425 
1426 	it6505_setup_audio_channel_status(it6505);
1427 	it6505_setup_audio_format(it6505);
1428 	it6505_enable_audio_source(it6505);
1429 	it6505_enable_audio_infoframe(it6505);
1430 
1431 	it6505_write(it6505, REG_AUDIO_N_0_7, 0x00);
1432 	it6505_write(it6505, REG_AUDIO_N_8_15, 0x80);
1433 	it6505_write(it6505, REG_AUDIO_N_16_23, 0x00);
1434 
1435 	it6505_set_bits(it6505, REG_AUDIO_SRC_CTRL, AUDIO_FIFO_RESET,
1436 			AUDIO_FIFO_RESET);
1437 	it6505_set_bits(it6505, REG_AUDIO_SRC_CTRL, AUDIO_FIFO_RESET, 0x00);
1438 	it6505_set_bits(it6505, REG_RESET_CTRL, AUDIO_RESET, 0x00);
1439 	regbe = it6505_read(it6505, REG_AUDIO_INPUT_FREQ);
1440 	DRM_DEV_DEBUG_DRIVER(dev, "regbe:0x%02x audio input fs: %d.%d kHz",
1441 			     regbe, 6750 / regbe, (6750 % regbe) * 10 / regbe);
1442 	it6505_set_bits(it6505, REG_DATA_MUTE_CTRL, EN_AUD_MUTE, 0x00);
1443 }
1444 
it6505_use_step_train_check(struct it6505 * it6505)1445 static bool it6505_use_step_train_check(struct it6505 *it6505)
1446 {
1447 	if (it6505->link.revision >= 0x12)
1448 		return it6505->dpcd[DP_TRAINING_AUX_RD_INTERVAL] >= 0x01;
1449 
1450 	return true;
1451 }
1452 
it6505_parse_link_capabilities(struct it6505 * it6505)1453 static void it6505_parse_link_capabilities(struct it6505 *it6505)
1454 {
1455 	struct device *dev = it6505->dev;
1456 	struct it6505_drm_dp_link *link = &it6505->link;
1457 	int bcaps;
1458 
1459 	if (it6505->dpcd[0] == 0) {
1460 		dev_err(dev, "DPCD is not initialized");
1461 		return;
1462 	}
1463 
1464 	memset(link, 0, sizeof(*link));
1465 
1466 	link->revision = it6505->dpcd[0];
1467 	link->rate = drm_dp_bw_code_to_link_rate(it6505->dpcd[1]);
1468 	link->num_lanes = it6505->dpcd[2] & DP_MAX_LANE_COUNT_MASK;
1469 
1470 	if (it6505->dpcd[2] & DP_ENHANCED_FRAME_CAP)
1471 		link->capabilities = DP_ENHANCED_FRAME_CAP;
1472 
1473 	DRM_DEV_DEBUG_DRIVER(dev, "DPCD Rev.: %d.%d",
1474 			     link->revision >> 4, link->revision & 0x0F);
1475 
1476 	DRM_DEV_DEBUG_DRIVER(dev, "Sink max link rate: %d.%02d Gbps per lane",
1477 			     link->rate / 100000, link->rate / 1000 % 100);
1478 
1479 	it6505->link_rate_bw_code = drm_dp_link_rate_to_bw_code(link->rate);
1480 	DRM_DEV_DEBUG_DRIVER(dev, "link rate bw code:0x%02x",
1481 			     it6505->link_rate_bw_code);
1482 	it6505->link_rate_bw_code = min_t(int, it6505->link_rate_bw_code,
1483 					  MAX_LINK_RATE);
1484 
1485 	it6505->lane_count = link->num_lanes;
1486 	DRM_DEV_DEBUG_DRIVER(dev, "Sink support %d lanes training",
1487 			     it6505->lane_count);
1488 	it6505->lane_count = min_t(int, it6505->lane_count,
1489 				   it6505->max_lane_count);
1490 
1491 	it6505->branch_device = drm_dp_is_branch(it6505->dpcd);
1492 	DRM_DEV_DEBUG_DRIVER(dev, "Sink %sbranch device",
1493 			     it6505->branch_device ? "" : "Not ");
1494 
1495 	it6505->enable_enhanced_frame = link->capabilities;
1496 	DRM_DEV_DEBUG_DRIVER(dev, "Sink %sSupport Enhanced Framing",
1497 			     it6505->enable_enhanced_frame ? "" : "Not ");
1498 
1499 	it6505->enable_ssc = (it6505->dpcd[DP_MAX_DOWNSPREAD] &
1500 				DP_MAX_DOWNSPREAD_0_5);
1501 	DRM_DEV_DEBUG_DRIVER(dev, "Maximum Down-Spread: %s, %ssupport SSC!",
1502 			     it6505->enable_ssc ? "0.5" : "0",
1503 			     it6505->enable_ssc ? "" : "Not ");
1504 
1505 	it6505->step_train = it6505_use_step_train_check(it6505);
1506 	if (it6505->step_train)
1507 		DRM_DEV_DEBUG_DRIVER(dev, "auto train fail, will step train");
1508 
1509 	bcaps = it6505_dpcd_read(it6505, DP_AUX_HDCP_BCAPS);
1510 	DRM_DEV_DEBUG_DRIVER(dev, "bcaps:0x%02x", bcaps);
1511 	if (bcaps & DP_BCAPS_HDCP_CAPABLE) {
1512 		it6505->is_repeater = (bcaps & DP_BCAPS_REPEATER_PRESENT);
1513 		DRM_DEV_DEBUG_DRIVER(dev, "Support HDCP! Downstream is %s!",
1514 				     it6505->is_repeater ? "repeater" :
1515 				     "receiver");
1516 	} else {
1517 		DRM_DEV_DEBUG_DRIVER(dev, "Sink not support HDCP!");
1518 		it6505->hdcp_desired = false;
1519 	}
1520 	DRM_DEV_DEBUG_DRIVER(dev, "HDCP %s",
1521 			     it6505->hdcp_desired ? "desired" : "undesired");
1522 }
1523 
it6505_setup_ssc(struct it6505 * it6505)1524 static void it6505_setup_ssc(struct it6505 *it6505)
1525 {
1526 	it6505_set_bits(it6505, REG_TRAIN_CTRL0, SPREAD_AMP_5,
1527 			it6505->enable_ssc ? SPREAD_AMP_5 : 0x00);
1528 	if (it6505->enable_ssc) {
1529 		it6505_write(it6505, REG_SSC_CTRL0, 0x9E);
1530 		it6505_write(it6505, REG_SSC_CTRL1, 0x1C);
1531 		it6505_write(it6505, REG_SSC_CTRL2, 0x42);
1532 		it6505_write(it6505, REG_SP_CTRL0, 0x07);
1533 		it6505_write(it6505, REG_IP_CTRL1, 0x29);
1534 		it6505_write(it6505, REG_IP_CTRL2, 0x03);
1535 		/* Stamp Interrupt Step */
1536 		it6505_set_bits(it6505, REG_TIME_STMP_CTRL, M_STAMP_STEP,
1537 				0x10);
1538 		it6505_dpcd_write(it6505, DP_DOWNSPREAD_CTRL,
1539 				  DP_SPREAD_AMP_0_5);
1540 	} else {
1541 		it6505_dpcd_write(it6505, DP_DOWNSPREAD_CTRL, 0x00);
1542 		it6505_set_bits(it6505, REG_TIME_STMP_CTRL, M_STAMP_STEP,
1543 				0x00);
1544 	}
1545 }
1546 
it6505_link_rate_setup(struct it6505 * it6505)1547 static inline void it6505_link_rate_setup(struct it6505 *it6505)
1548 {
1549 	it6505_set_bits(it6505, REG_TRAIN_CTRL0, FORCE_LBR,
1550 			(it6505->link_rate_bw_code == RBR) ? FORCE_LBR : 0x00);
1551 	it6505_set_bits(it6505, REG_LINK_DRV, DRV_HS,
1552 			(it6505->link_rate_bw_code == RBR) ? 0x00 : DRV_HS);
1553 }
1554 
it6505_lane_count_setup(struct it6505 * it6505)1555 static void it6505_lane_count_setup(struct it6505 *it6505)
1556 {
1557 	it6505_get_extcon_property(it6505);
1558 	it6505_set_bits(it6505, REG_TRAIN_CTRL0, LANE_SWAP,
1559 			it6505->lane_swap ? LANE_SWAP : 0x00);
1560 	it6505_set_bits(it6505, REG_TRAIN_CTRL0, LANE_COUNT_MASK,
1561 			(it6505->lane_count - 1) << 1);
1562 }
1563 
it6505_link_training_setup(struct it6505 * it6505)1564 static void it6505_link_training_setup(struct it6505 *it6505)
1565 {
1566 	struct device *dev = it6505->dev;
1567 
1568 	if (it6505->enable_enhanced_frame)
1569 		it6505_set_bits(it6505, REG_DATA_MUTE_CTRL,
1570 				ENABLE_ENHANCED_FRAME, ENABLE_ENHANCED_FRAME);
1571 
1572 	it6505_link_rate_setup(it6505);
1573 	it6505_lane_count_setup(it6505);
1574 	it6505_setup_ssc(it6505);
1575 	DRM_DEV_DEBUG_DRIVER(dev,
1576 			     "%s, %d lanes, %sable ssc, %sable enhanced frame",
1577 			     it6505->link_rate_bw_code != RBR ? "HBR" : "RBR",
1578 			     it6505->lane_count,
1579 			     it6505->enable_ssc ? "en" : "dis",
1580 			     it6505->enable_enhanced_frame ? "en" : "dis");
1581 }
1582 
it6505_link_start_auto_train(struct it6505 * it6505)1583 static bool it6505_link_start_auto_train(struct it6505 *it6505)
1584 {
1585 	int timeout = 500, link_training_state;
1586 	bool state = false;
1587 
1588 	mutex_lock(&it6505->aux_lock);
1589 	it6505_set_bits(it6505, REG_TRAIN_CTRL0,
1590 			FORCE_CR_DONE | FORCE_EQ_DONE, 0x00);
1591 	it6505_write(it6505, REG_TRAIN_CTRL1, FORCE_RETRAIN);
1592 	it6505_write(it6505, REG_TRAIN_CTRL1, AUTO_TRAIN);
1593 
1594 	while (timeout > 0) {
1595 		usleep_range(1000, 2000);
1596 		link_training_state = it6505_read(it6505, REG_LINK_TRAIN_STS);
1597 
1598 		if (link_training_state > 0 &&
1599 		    (link_training_state & LINK_STATE_NORP)) {
1600 			state = true;
1601 			goto unlock;
1602 		}
1603 
1604 		timeout--;
1605 	}
1606 unlock:
1607 	mutex_unlock(&it6505->aux_lock);
1608 
1609 	return state;
1610 }
1611 
it6505_drm_dp_link_configure(struct it6505 * it6505)1612 static int it6505_drm_dp_link_configure(struct it6505 *it6505)
1613 {
1614 	u8 values[2];
1615 	int err;
1616 	struct drm_dp_aux *aux = &it6505->aux;
1617 
1618 	values[0] = it6505->link_rate_bw_code;
1619 	values[1] = it6505->lane_count;
1620 
1621 	if (it6505->enable_enhanced_frame)
1622 		values[1] |= DP_LANE_COUNT_ENHANCED_FRAME_EN;
1623 
1624 	err = drm_dp_dpcd_write(aux, DP_LINK_BW_SET, values, sizeof(values));
1625 	if (err < 0)
1626 		return err;
1627 
1628 	return 0;
1629 }
1630 
it6505_check_voltage_swing_max(u8 lane_voltage_swing_pre_emphasis)1631 static bool it6505_check_voltage_swing_max(u8 lane_voltage_swing_pre_emphasis)
1632 {
1633 	return ((lane_voltage_swing_pre_emphasis & 0x03) == MAX_CR_LEVEL);
1634 }
1635 
it6505_check_pre_emphasis_max(u8 lane_voltage_swing_pre_emphasis)1636 static bool it6505_check_pre_emphasis_max(u8 lane_voltage_swing_pre_emphasis)
1637 {
1638 	return ((lane_voltage_swing_pre_emphasis & 0x03) == MAX_EQ_LEVEL);
1639 }
1640 
it6505_check_max_voltage_swing_reached(u8 * lane_voltage_swing,u8 lane_count)1641 static bool it6505_check_max_voltage_swing_reached(u8 *lane_voltage_swing,
1642 						   u8 lane_count)
1643 {
1644 	u8 i;
1645 
1646 	for (i = 0; i < lane_count; i++) {
1647 		if (lane_voltage_swing[i] & DP_TRAIN_MAX_SWING_REACHED)
1648 			return true;
1649 	}
1650 
1651 	return false;
1652 }
1653 
1654 static bool
step_train_lane_voltage_para_set(struct it6505 * it6505,struct it6505_step_train_para * lane_voltage_pre_emphasis,u8 * lane_voltage_pre_emphasis_set)1655 step_train_lane_voltage_para_set(struct it6505 *it6505,
1656 				 struct it6505_step_train_para
1657 				 *lane_voltage_pre_emphasis,
1658 				 u8 *lane_voltage_pre_emphasis_set)
1659 {
1660 	u8 *voltage_swing = lane_voltage_pre_emphasis->voltage_swing;
1661 	u8 *pre_emphasis = lane_voltage_pre_emphasis->pre_emphasis;
1662 	u8 i;
1663 
1664 	for (i = 0; i < it6505->lane_count; i++) {
1665 		voltage_swing[i] &= 0x03;
1666 		lane_voltage_pre_emphasis_set[i] = voltage_swing[i];
1667 		if (it6505_check_voltage_swing_max(voltage_swing[i]))
1668 			lane_voltage_pre_emphasis_set[i] |=
1669 				DP_TRAIN_MAX_SWING_REACHED;
1670 
1671 		pre_emphasis[i] &= 0x03;
1672 		lane_voltage_pre_emphasis_set[i] |= pre_emphasis[i]
1673 			<< DP_TRAIN_PRE_EMPHASIS_SHIFT;
1674 		if (it6505_check_pre_emphasis_max(pre_emphasis[i]))
1675 			lane_voltage_pre_emphasis_set[i] |=
1676 				DP_TRAIN_MAX_PRE_EMPHASIS_REACHED;
1677 		it6505_dpcd_write(it6505, DP_TRAINING_LANE0_SET + i,
1678 				  lane_voltage_pre_emphasis_set[i]);
1679 
1680 		if (lane_voltage_pre_emphasis_set[i] !=
1681 		    it6505_dpcd_read(it6505, DP_TRAINING_LANE0_SET + i))
1682 			return false;
1683 	}
1684 
1685 	return true;
1686 }
1687 
1688 static bool
it6505_step_cr_train(struct it6505 * it6505,struct it6505_step_train_para * lane_voltage_pre_emphasis)1689 it6505_step_cr_train(struct it6505 *it6505,
1690 		     struct it6505_step_train_para *lane_voltage_pre_emphasis)
1691 {
1692 	u8 loop_count = 0, i = 0, j;
1693 	u8 link_status[DP_LINK_STATUS_SIZE] = { 0 };
1694 	u8 lane_level_config[MAX_LANE_COUNT] = { 0 };
1695 	int pre_emphasis_adjust = -1, voltage_swing_adjust = -1;
1696 	const struct drm_dp_aux *aux = &it6505->aux;
1697 
1698 	it6505_dpcd_write(it6505, DP_DOWNSPREAD_CTRL,
1699 			  it6505->enable_ssc ? DP_SPREAD_AMP_0_5 : 0x00);
1700 	it6505_dpcd_write(it6505, DP_TRAINING_PATTERN_SET,
1701 			  DP_TRAINING_PATTERN_1);
1702 
1703 	while (loop_count < 5 && i < 10) {
1704 		i++;
1705 		if (!step_train_lane_voltage_para_set(it6505,
1706 						      lane_voltage_pre_emphasis,
1707 						      lane_level_config))
1708 			continue;
1709 		drm_dp_link_train_clock_recovery_delay(aux, it6505->dpcd);
1710 		drm_dp_dpcd_read_link_status(&it6505->aux, link_status);
1711 
1712 		if (drm_dp_clock_recovery_ok(link_status, it6505->lane_count)) {
1713 			it6505_set_bits(it6505, REG_TRAIN_CTRL0, FORCE_CR_DONE,
1714 					FORCE_CR_DONE);
1715 			return true;
1716 		}
1717 		DRM_DEV_DEBUG_DRIVER(it6505->dev, "cr not done");
1718 
1719 		if (it6505_check_max_voltage_swing_reached(lane_level_config,
1720 							   it6505->lane_count))
1721 			goto cr_train_fail;
1722 
1723 		for (j = 0; j < it6505->lane_count; j++) {
1724 			lane_voltage_pre_emphasis->voltage_swing[j] =
1725 				drm_dp_get_adjust_request_voltage(link_status,
1726 								  j) >>
1727 				DP_TRAIN_VOLTAGE_SWING_SHIFT;
1728 			lane_voltage_pre_emphasis->pre_emphasis[j] =
1729 			drm_dp_get_adjust_request_pre_emphasis(link_status,
1730 							       j) >>
1731 					DP_TRAIN_PRE_EMPHASIS_SHIFT;
1732 			if (voltage_swing_adjust ==
1733 			     lane_voltage_pre_emphasis->voltage_swing[j] &&
1734 			    pre_emphasis_adjust ==
1735 			     lane_voltage_pre_emphasis->pre_emphasis[j]) {
1736 				loop_count++;
1737 				continue;
1738 			}
1739 
1740 			voltage_swing_adjust =
1741 				lane_voltage_pre_emphasis->voltage_swing[j];
1742 			pre_emphasis_adjust =
1743 				lane_voltage_pre_emphasis->pre_emphasis[j];
1744 			loop_count = 0;
1745 
1746 			if (voltage_swing_adjust + pre_emphasis_adjust >
1747 			    MAX_EQ_LEVEL)
1748 				lane_voltage_pre_emphasis->voltage_swing[j] =
1749 					MAX_EQ_LEVEL -
1750 					lane_voltage_pre_emphasis
1751 						->pre_emphasis[j];
1752 		}
1753 	}
1754 
1755 cr_train_fail:
1756 	it6505_dpcd_write(it6505, DP_TRAINING_PATTERN_SET,
1757 			  DP_TRAINING_PATTERN_DISABLE);
1758 
1759 	return false;
1760 }
1761 
1762 static bool
it6505_step_eq_train(struct it6505 * it6505,struct it6505_step_train_para * lane_voltage_pre_emphasis)1763 it6505_step_eq_train(struct it6505 *it6505,
1764 		     struct it6505_step_train_para *lane_voltage_pre_emphasis)
1765 {
1766 	u8 loop_count = 0, i, link_status[DP_LINK_STATUS_SIZE] = { 0 };
1767 	u8 lane_level_config[MAX_LANE_COUNT] = { 0 };
1768 	const struct drm_dp_aux *aux = &it6505->aux;
1769 
1770 	it6505_dpcd_write(it6505, DP_TRAINING_PATTERN_SET,
1771 			  DP_TRAINING_PATTERN_2);
1772 
1773 	while (loop_count < 6) {
1774 		loop_count++;
1775 
1776 		if (!step_train_lane_voltage_para_set(it6505,
1777 						      lane_voltage_pre_emphasis,
1778 						      lane_level_config))
1779 			continue;
1780 
1781 		drm_dp_link_train_channel_eq_delay(aux, it6505->dpcd);
1782 		drm_dp_dpcd_read_link_status(&it6505->aux, link_status);
1783 
1784 		if (!drm_dp_clock_recovery_ok(link_status, it6505->lane_count))
1785 			goto eq_train_fail;
1786 
1787 		if (drm_dp_channel_eq_ok(link_status, it6505->lane_count)) {
1788 			it6505_dpcd_write(it6505, DP_TRAINING_PATTERN_SET,
1789 					  DP_TRAINING_PATTERN_DISABLE);
1790 			it6505_set_bits(it6505, REG_TRAIN_CTRL0, FORCE_EQ_DONE,
1791 					FORCE_EQ_DONE);
1792 			return true;
1793 		}
1794 		DRM_DEV_DEBUG_DRIVER(it6505->dev, "eq not done");
1795 
1796 		for (i = 0; i < it6505->lane_count; i++) {
1797 			lane_voltage_pre_emphasis->voltage_swing[i] =
1798 				drm_dp_get_adjust_request_voltage(link_status,
1799 								  i) >>
1800 				DP_TRAIN_VOLTAGE_SWING_SHIFT;
1801 			lane_voltage_pre_emphasis->pre_emphasis[i] =
1802 			drm_dp_get_adjust_request_pre_emphasis(link_status,
1803 							       i) >>
1804 					DP_TRAIN_PRE_EMPHASIS_SHIFT;
1805 
1806 			if (lane_voltage_pre_emphasis->voltage_swing[i] +
1807 				    lane_voltage_pre_emphasis->pre_emphasis[i] >
1808 			    MAX_EQ_LEVEL)
1809 				lane_voltage_pre_emphasis->voltage_swing[i] =
1810 					0x03 - lane_voltage_pre_emphasis
1811 						       ->pre_emphasis[i];
1812 		}
1813 	}
1814 
1815 eq_train_fail:
1816 	it6505_dpcd_write(it6505, DP_TRAINING_PATTERN_SET,
1817 			  DP_TRAINING_PATTERN_DISABLE);
1818 	return false;
1819 }
1820 
it6505_link_start_step_train(struct it6505 * it6505)1821 static bool it6505_link_start_step_train(struct it6505 *it6505)
1822 {
1823 	int err;
1824 	struct it6505_step_train_para lane_voltage_pre_emphasis = {
1825 		.voltage_swing = { 0 },
1826 		.pre_emphasis = { 0 },
1827 	};
1828 
1829 	DRM_DEV_DEBUG_DRIVER(it6505->dev, "start");
1830 	err = it6505_drm_dp_link_configure(it6505);
1831 
1832 	if (err < 0)
1833 		return false;
1834 	if (!it6505_step_cr_train(it6505, &lane_voltage_pre_emphasis))
1835 		return false;
1836 	if (!it6505_step_eq_train(it6505, &lane_voltage_pre_emphasis))
1837 		return false;
1838 	return true;
1839 }
1840 
it6505_get_video_status(struct it6505 * it6505)1841 static bool it6505_get_video_status(struct it6505 *it6505)
1842 {
1843 	int reg_0d;
1844 
1845 	reg_0d = it6505_read(it6505, REG_SYSTEM_STS);
1846 
1847 	if (reg_0d < 0)
1848 		return false;
1849 
1850 	return reg_0d & VIDEO_STB;
1851 }
1852 
it6505_reset_hdcp(struct it6505 * it6505)1853 static void it6505_reset_hdcp(struct it6505 *it6505)
1854 {
1855 	it6505->hdcp_status = HDCP_AUTH_IDLE;
1856 	/* Disable CP_Desired */
1857 	it6505_set_bits(it6505, REG_HDCP_CTRL1, HDCP_CP_ENABLE, 0x00);
1858 	it6505_set_bits(it6505, REG_RESET_CTRL, HDCP_RESET, HDCP_RESET);
1859 }
1860 
it6505_start_hdcp(struct it6505 * it6505)1861 static void it6505_start_hdcp(struct it6505 *it6505)
1862 {
1863 	struct device *dev = it6505->dev;
1864 
1865 	DRM_DEV_DEBUG_DRIVER(dev, "start");
1866 	it6505_reset_hdcp(it6505);
1867 	queue_delayed_work(system_wq, &it6505->hdcp_work,
1868 			   msecs_to_jiffies(2400));
1869 }
1870 
it6505_stop_hdcp(struct it6505 * it6505)1871 static void it6505_stop_hdcp(struct it6505 *it6505)
1872 {
1873 	it6505_reset_hdcp(it6505);
1874 	cancel_delayed_work(&it6505->hdcp_work);
1875 }
1876 
it6505_hdcp_is_ksv_valid(u8 * ksv)1877 static bool it6505_hdcp_is_ksv_valid(u8 *ksv)
1878 {
1879 	int i, ones = 0;
1880 
1881 	/* KSV has 20 1's and 20 0's */
1882 	for (i = 0; i < DRM_HDCP_KSV_LEN; i++)
1883 		ones += hweight8(ksv[i]);
1884 	if (ones != 20)
1885 		return false;
1886 	return true;
1887 }
1888 
it6505_hdcp_part1_auth(struct it6505 * it6505)1889 static void it6505_hdcp_part1_auth(struct it6505 *it6505)
1890 {
1891 	struct device *dev = it6505->dev;
1892 	u8 hdcp_bcaps;
1893 
1894 	it6505_set_bits(it6505, REG_RESET_CTRL, HDCP_RESET, 0x00);
1895 	/* Disable CP_Desired */
1896 	it6505_set_bits(it6505, REG_HDCP_CTRL1, HDCP_CP_ENABLE, 0x00);
1897 
1898 	usleep_range(1000, 1500);
1899 	hdcp_bcaps = it6505_dpcd_read(it6505, DP_AUX_HDCP_BCAPS);
1900 	DRM_DEV_DEBUG_DRIVER(dev, "DPCD[0x68028]: 0x%02x",
1901 			     hdcp_bcaps);
1902 
1903 	if (!hdcp_bcaps)
1904 		return;
1905 
1906 	/* clear the repeater List Chk Done and fail bit */
1907 	it6505_set_bits(it6505, REG_HDCP_TRIGGER,
1908 			HDCP_TRIGGER_KSV_DONE | HDCP_TRIGGER_KSV_FAIL,
1909 			0x00);
1910 
1911 	/* Enable An Generator */
1912 	it6505_set_bits(it6505, REG_HDCP_CTRL2, HDCP_AN_GEN, HDCP_AN_GEN);
1913 	/* delay1ms(10);*/
1914 	usleep_range(10000, 15000);
1915 	/* Stop An Generator */
1916 	it6505_set_bits(it6505, REG_HDCP_CTRL2, HDCP_AN_GEN, 0x00);
1917 
1918 	it6505_set_bits(it6505, REG_HDCP_CTRL1, HDCP_CP_ENABLE, HDCP_CP_ENABLE);
1919 
1920 	it6505_set_bits(it6505, REG_HDCP_TRIGGER, HDCP_TRIGGER_START,
1921 			HDCP_TRIGGER_START);
1922 
1923 	it6505->hdcp_status = HDCP_AUTH_GOING;
1924 }
1925 
it6505_sha1_digest(struct it6505 * it6505,u8 * sha1_input,unsigned int size,u8 * output_av)1926 static int it6505_sha1_digest(struct it6505 *it6505, u8 *sha1_input,
1927 			      unsigned int size, u8 *output_av)
1928 {
1929 	struct shash_desc *desc;
1930 	struct crypto_shash *tfm;
1931 	int err;
1932 	struct device *dev = it6505->dev;
1933 
1934 	tfm = crypto_alloc_shash("sha1", 0, 0);
1935 	if (IS_ERR(tfm)) {
1936 		dev_err(dev, "crypto_alloc_shash sha1 failed");
1937 		return PTR_ERR(tfm);
1938 	}
1939 	desc = kzalloc(sizeof(*desc) + crypto_shash_descsize(tfm), GFP_KERNEL);
1940 	if (!desc) {
1941 		crypto_free_shash(tfm);
1942 		return -ENOMEM;
1943 	}
1944 
1945 	desc->tfm = tfm;
1946 	err = crypto_shash_digest(desc, sha1_input, size, output_av);
1947 	if (err)
1948 		dev_err(dev, "crypto_shash_digest sha1 failed");
1949 
1950 	crypto_free_shash(tfm);
1951 	kfree(desc);
1952 	return err;
1953 }
1954 
it6505_setup_sha1_input(struct it6505 * it6505,u8 * sha1_input)1955 static int it6505_setup_sha1_input(struct it6505 *it6505, u8 *sha1_input)
1956 {
1957 	struct device *dev = it6505->dev;
1958 	u8 binfo[2];
1959 	int down_stream_count, i, err, msg_count = 0;
1960 
1961 	err = it6505_get_dpcd(it6505, DP_AUX_HDCP_BINFO, binfo,
1962 			      ARRAY_SIZE(binfo));
1963 
1964 	if (err < 0) {
1965 		dev_err(dev, "Read binfo value Fail");
1966 		return err;
1967 	}
1968 
1969 	down_stream_count = binfo[0] & 0x7F;
1970 	DRM_DEV_DEBUG_DRIVER(dev, "binfo:0x%*ph", (int)ARRAY_SIZE(binfo),
1971 			     binfo);
1972 
1973 	if ((binfo[0] & BIT(7)) || (binfo[1] & BIT(3))) {
1974 		dev_err(dev, "HDCP max cascade device exceed");
1975 		return 0;
1976 	}
1977 
1978 	if (!down_stream_count ||
1979 	    down_stream_count > MAX_HDCP_DOWN_STREAM_COUNT) {
1980 		dev_err(dev, "HDCP down stream count Error %d",
1981 			down_stream_count);
1982 		return 0;
1983 	}
1984 
1985 	for (i = 0; i < down_stream_count; i++) {
1986 		err = it6505_get_dpcd(it6505, DP_AUX_HDCP_KSV_FIFO +
1987 				      (i % 3) * DRM_HDCP_KSV_LEN,
1988 				      sha1_input + msg_count,
1989 				      DRM_HDCP_KSV_LEN);
1990 
1991 		if (err < 0)
1992 			return err;
1993 
1994 		msg_count += 5;
1995 	}
1996 
1997 	it6505->hdcp_down_stream_count = down_stream_count;
1998 	sha1_input[msg_count++] = binfo[0];
1999 	sha1_input[msg_count++] = binfo[1];
2000 
2001 	it6505_set_bits(it6505, REG_HDCP_CTRL2, HDCP_EN_M0_READ,
2002 			HDCP_EN_M0_READ);
2003 
2004 	err = regmap_bulk_read(it6505->regmap, REG_M0_0_7,
2005 			       sha1_input + msg_count, 8);
2006 
2007 	it6505_set_bits(it6505, REG_HDCP_CTRL2, HDCP_EN_M0_READ, 0x00);
2008 
2009 	if (err < 0) {
2010 		dev_err(dev, " Warning, Read M value Fail");
2011 		return err;
2012 	}
2013 
2014 	msg_count += 8;
2015 
2016 	return msg_count;
2017 }
2018 
it6505_hdcp_part2_ksvlist_check(struct it6505 * it6505)2019 static bool it6505_hdcp_part2_ksvlist_check(struct it6505 *it6505)
2020 {
2021 	struct device *dev = it6505->dev;
2022 	u8 av[5][4], bv[5][4];
2023 	int i, err;
2024 
2025 	i = it6505_setup_sha1_input(it6505, it6505->sha1_input);
2026 	if (i <= 0) {
2027 		dev_err(dev, "SHA-1 Input length error %d", i);
2028 		return false;
2029 	}
2030 
2031 	it6505_sha1_digest(it6505, it6505->sha1_input, i, (u8 *)av);
2032 
2033 	err = it6505_get_dpcd(it6505, DP_AUX_HDCP_V_PRIME(0), (u8 *)bv,
2034 			      sizeof(bv));
2035 
2036 	if (err < 0) {
2037 		dev_err(dev, "Read V' value Fail");
2038 		return false;
2039 	}
2040 
2041 	for (i = 0; i < 5; i++)
2042 		if (bv[i][3] != av[i][0] || bv[i][2] != av[i][1] ||
2043 		    bv[i][1] != av[i][2] || bv[i][0] != av[i][3])
2044 			return false;
2045 
2046 	DRM_DEV_DEBUG_DRIVER(dev, "V' all match!!");
2047 	return true;
2048 }
2049 
it6505_hdcp_wait_ksv_list(struct work_struct * work)2050 static void it6505_hdcp_wait_ksv_list(struct work_struct *work)
2051 {
2052 	struct it6505 *it6505 = container_of(work, struct it6505,
2053 					     hdcp_wait_ksv_list);
2054 	struct device *dev = it6505->dev;
2055 	unsigned int timeout = 5000;
2056 	u8 bstatus = 0;
2057 	bool ksv_list_check;
2058 
2059 	timeout /= 20;
2060 	while (timeout > 0) {
2061 		if (!it6505_get_sink_hpd_status(it6505))
2062 			return;
2063 
2064 		bstatus = it6505_dpcd_read(it6505, DP_AUX_HDCP_BSTATUS);
2065 
2066 		if (bstatus & DP_BSTATUS_READY)
2067 			break;
2068 
2069 		msleep(20);
2070 		timeout--;
2071 	}
2072 
2073 	if (timeout == 0) {
2074 		DRM_DEV_DEBUG_DRIVER(dev, "timeout and ksv list wait failed");
2075 		goto timeout;
2076 	}
2077 
2078 	ksv_list_check = it6505_hdcp_part2_ksvlist_check(it6505);
2079 	DRM_DEV_DEBUG_DRIVER(dev, "ksv list ready, ksv list check %s",
2080 			     ksv_list_check ? "pass" : "fail");
2081 	if (ksv_list_check) {
2082 		it6505_set_bits(it6505, REG_HDCP_TRIGGER,
2083 				HDCP_TRIGGER_KSV_DONE, HDCP_TRIGGER_KSV_DONE);
2084 		return;
2085 	}
2086 timeout:
2087 	it6505_set_bits(it6505, REG_HDCP_TRIGGER,
2088 			HDCP_TRIGGER_KSV_DONE | HDCP_TRIGGER_KSV_FAIL,
2089 			HDCP_TRIGGER_KSV_DONE | HDCP_TRIGGER_KSV_FAIL);
2090 }
2091 
it6505_hdcp_work(struct work_struct * work)2092 static void it6505_hdcp_work(struct work_struct *work)
2093 {
2094 	struct it6505 *it6505 = container_of(work, struct it6505,
2095 					     hdcp_work.work);
2096 	struct device *dev = it6505->dev;
2097 	int ret;
2098 	u8 link_status[DP_LINK_STATUS_SIZE] = { 0 };
2099 
2100 	DRM_DEV_DEBUG_DRIVER(dev, "start");
2101 
2102 	if (!it6505_get_sink_hpd_status(it6505))
2103 		return;
2104 
2105 	ret = drm_dp_dpcd_read_link_status(&it6505->aux, link_status);
2106 	DRM_DEV_DEBUG_DRIVER(dev, "ret: %d link_status: %*ph", ret,
2107 			     (int)sizeof(link_status), link_status);
2108 
2109 	if (ret < 0 || !drm_dp_channel_eq_ok(link_status, it6505->lane_count) ||
2110 	    !it6505_get_video_status(it6505)) {
2111 		DRM_DEV_DEBUG_DRIVER(dev, "link train not done or no video");
2112 		return;
2113 	}
2114 
2115 	ret = it6505_get_dpcd(it6505, DP_AUX_HDCP_BKSV, it6505->bksvs,
2116 			      ARRAY_SIZE(it6505->bksvs));
2117 	if (ret < 0) {
2118 		dev_err(dev, "fail to get bksv  ret: %d", ret);
2119 		it6505_set_bits(it6505, REG_HDCP_TRIGGER,
2120 				HDCP_TRIGGER_KSV_FAIL, HDCP_TRIGGER_KSV_FAIL);
2121 	}
2122 
2123 	DRM_DEV_DEBUG_DRIVER(dev, "bksv = 0x%*ph",
2124 			     (int)ARRAY_SIZE(it6505->bksvs), it6505->bksvs);
2125 
2126 	if (!it6505_hdcp_is_ksv_valid(it6505->bksvs)) {
2127 		dev_err(dev, "Display Port bksv not valid");
2128 		it6505_set_bits(it6505, REG_HDCP_TRIGGER,
2129 				HDCP_TRIGGER_KSV_FAIL, HDCP_TRIGGER_KSV_FAIL);
2130 	}
2131 
2132 	it6505_hdcp_part1_auth(it6505);
2133 }
2134 
it6505_show_hdcp_info(struct it6505 * it6505)2135 static void it6505_show_hdcp_info(struct it6505 *it6505)
2136 {
2137 	struct device *dev = it6505->dev;
2138 	int i;
2139 	u8 *sha1 = it6505->sha1_input;
2140 
2141 	DRM_DEV_DEBUG_DRIVER(dev, "hdcp_status: %d is_repeater: %d",
2142 			     it6505->hdcp_status, it6505->is_repeater);
2143 	DRM_DEV_DEBUG_DRIVER(dev, "bksv = 0x%*ph",
2144 			     (int)ARRAY_SIZE(it6505->bksvs), it6505->bksvs);
2145 
2146 	if (it6505->is_repeater) {
2147 		DRM_DEV_DEBUG_DRIVER(dev, "hdcp_down_stream_count: %d",
2148 				     it6505->hdcp_down_stream_count);
2149 		DRM_DEV_DEBUG_DRIVER(dev, "sha1_input: 0x%*ph",
2150 				     (int)ARRAY_SIZE(it6505->sha1_input),
2151 				     it6505->sha1_input);
2152 		for (i = 0; i < it6505->hdcp_down_stream_count; i++) {
2153 			DRM_DEV_DEBUG_DRIVER(dev, "KSV_%d = 0x%*ph", i,
2154 					     DRM_HDCP_KSV_LEN, sha1);
2155 			sha1 += DRM_HDCP_KSV_LEN;
2156 		}
2157 		DRM_DEV_DEBUG_DRIVER(dev, "binfo: 0x%2ph M0: 0x%8ph",
2158 				     sha1, sha1 + 2);
2159 	}
2160 }
2161 
it6505_stop_link_train(struct it6505 * it6505)2162 static void it6505_stop_link_train(struct it6505 *it6505)
2163 {
2164 	it6505->link_state = LINK_IDLE;
2165 	cancel_work_sync(&it6505->link_works);
2166 	it6505_write(it6505, REG_TRAIN_CTRL1, FORCE_RETRAIN);
2167 }
2168 
it6505_link_train_ok(struct it6505 * it6505)2169 static void it6505_link_train_ok(struct it6505 *it6505)
2170 {
2171 	struct device *dev = it6505->dev;
2172 
2173 	it6505->link_state = LINK_OK;
2174 	/* disalbe mute enable avi info frame */
2175 	it6505_set_bits(it6505, REG_DATA_MUTE_CTRL, EN_VID_MUTE, 0x00);
2176 	it6505_set_bits(it6505, REG_INFOFRAME_CTRL,
2177 			EN_VID_CTRL_PKT, EN_VID_CTRL_PKT);
2178 
2179 	if (it6505_audio_input(it6505)) {
2180 		DRM_DEV_DEBUG_DRIVER(dev, "Enable audio!");
2181 		it6505_enable_audio(it6505);
2182 	}
2183 
2184 	if (it6505->hdcp_desired)
2185 		it6505_start_hdcp(it6505);
2186 }
2187 
it6505_link_step_train_process(struct it6505 * it6505)2188 static void it6505_link_step_train_process(struct it6505 *it6505)
2189 {
2190 	struct device *dev = it6505->dev;
2191 	int ret, i, step_retry = 3;
2192 
2193 	DRM_DEV_DEBUG_DRIVER(dev, "Start step train");
2194 
2195 	if (it6505->sink_count == 0) {
2196 		DRM_DEV_DEBUG_DRIVER(dev, "it6505->sink_count:%d, force eq",
2197 				     it6505->sink_count);
2198 		it6505_set_bits(it6505,	REG_TRAIN_CTRL0, FORCE_EQ_DONE,
2199 				FORCE_EQ_DONE);
2200 		return;
2201 	}
2202 
2203 	if (!it6505->step_train) {
2204 		DRM_DEV_DEBUG_DRIVER(dev, "not support step train");
2205 		return;
2206 	}
2207 
2208 	/* step training start here */
2209 	for (i = 0; i < step_retry; i++) {
2210 		it6505_link_reset_step_train(it6505);
2211 		ret = it6505_link_start_step_train(it6505);
2212 		DRM_DEV_DEBUG_DRIVER(dev, "step train %s, retry:%d times",
2213 				     ret ? "pass" : "failed", i + 1);
2214 		if (ret) {
2215 			it6505_link_train_ok(it6505);
2216 			return;
2217 		}
2218 	}
2219 
2220 	DRM_DEV_DEBUG_DRIVER(dev, "training fail");
2221 	it6505->link_state = LINK_IDLE;
2222 	it6505_video_reset(it6505);
2223 }
2224 
it6505_link_training_work(struct work_struct * work)2225 static void it6505_link_training_work(struct work_struct *work)
2226 {
2227 	struct it6505 *it6505 = container_of(work, struct it6505, link_works);
2228 	struct device *dev = it6505->dev;
2229 	int ret;
2230 
2231 	DRM_DEV_DEBUG_DRIVER(dev, "it6505->sink_count: %d",
2232 			     it6505->sink_count);
2233 
2234 	if (!it6505_get_sink_hpd_status(it6505))
2235 		return;
2236 
2237 	it6505_link_training_setup(it6505);
2238 	it6505_reset_hdcp(it6505);
2239 	it6505_aux_reset(it6505);
2240 
2241 	if (it6505->auto_train_retry < 1) {
2242 		it6505_link_step_train_process(it6505);
2243 		return;
2244 	}
2245 
2246 	ret = it6505_link_start_auto_train(it6505);
2247 	DRM_DEV_DEBUG_DRIVER(dev, "auto train %s, auto_train_retry: %d",
2248 			     ret ? "pass" : "failed", it6505->auto_train_retry);
2249 
2250 	if (ret) {
2251 		it6505->auto_train_retry = AUTO_TRAIN_RETRY;
2252 		it6505_link_train_ok(it6505);
2253 	} else {
2254 		it6505->auto_train_retry--;
2255 		it6505_dump(it6505);
2256 	}
2257 
2258 }
2259 
it6505_plugged_status_to_codec(struct it6505 * it6505)2260 static void it6505_plugged_status_to_codec(struct it6505 *it6505)
2261 {
2262 	enum drm_connector_status status = it6505->connector_status;
2263 
2264 	if (it6505->plugged_cb && it6505->codec_dev)
2265 		it6505->plugged_cb(it6505->codec_dev,
2266 				   status == connector_status_connected);
2267 }
2268 
it6505_remove_edid(struct it6505 * it6505)2269 static void it6505_remove_edid(struct it6505 *it6505)
2270 {
2271 	kfree(it6505->cached_edid);
2272 	it6505->cached_edid = NULL;
2273 }
2274 
it6505_process_hpd_irq(struct it6505 * it6505)2275 static int it6505_process_hpd_irq(struct it6505 *it6505)
2276 {
2277 	struct device *dev = it6505->dev;
2278 	int ret, dpcd_sink_count, dp_irq_vector, bstatus;
2279 	u8 link_status[DP_LINK_STATUS_SIZE];
2280 
2281 	if (!it6505_get_sink_hpd_status(it6505)) {
2282 		DRM_DEV_DEBUG_DRIVER(dev, "HPD_IRQ HPD low");
2283 		it6505->sink_count = 0;
2284 		return 0;
2285 	}
2286 
2287 	ret = it6505_dpcd_read(it6505, DP_SINK_COUNT);
2288 	if (ret < 0)
2289 		return ret;
2290 
2291 	dpcd_sink_count = DP_GET_SINK_COUNT(ret);
2292 	DRM_DEV_DEBUG_DRIVER(dev, "dpcd_sink_count: %d it6505->sink_count:%d",
2293 			     dpcd_sink_count, it6505->sink_count);
2294 
2295 	if (it6505->branch_device && dpcd_sink_count != it6505->sink_count) {
2296 		memset(it6505->dpcd, 0, sizeof(it6505->dpcd));
2297 		it6505->sink_count = dpcd_sink_count;
2298 		it6505_reset_logic(it6505);
2299 		it6505_int_mask_enable(it6505);
2300 		it6505_init(it6505);
2301 		it6505_remove_edid(it6505);
2302 		return 0;
2303 	}
2304 
2305 	dp_irq_vector = it6505_dpcd_read(it6505, DP_DEVICE_SERVICE_IRQ_VECTOR);
2306 	if (dp_irq_vector < 0)
2307 		return dp_irq_vector;
2308 
2309 	DRM_DEV_DEBUG_DRIVER(dev, "dp_irq_vector = 0x%02x", dp_irq_vector);
2310 
2311 	if (dp_irq_vector & DP_CP_IRQ) {
2312 		it6505_set_bits(it6505, REG_HDCP_TRIGGER, HDCP_TRIGGER_CPIRQ,
2313 				HDCP_TRIGGER_CPIRQ);
2314 
2315 		bstatus = it6505_dpcd_read(it6505, DP_AUX_HDCP_BSTATUS);
2316 		if (bstatus < 0)
2317 			return bstatus;
2318 
2319 		DRM_DEV_DEBUG_DRIVER(dev, "Bstatus = 0x%02x", bstatus);
2320 	}
2321 
2322 	ret = drm_dp_dpcd_read_link_status(&it6505->aux, link_status);
2323 	if (ret < 0) {
2324 		dev_err(dev, "Fail to read link status ret: %d", ret);
2325 		return ret;
2326 	}
2327 
2328 	DRM_DEV_DEBUG_DRIVER(dev, "link status = 0x%*ph",
2329 			     (int)ARRAY_SIZE(link_status), link_status);
2330 
2331 	if (!drm_dp_channel_eq_ok(link_status, it6505->lane_count)) {
2332 		it6505->auto_train_retry = AUTO_TRAIN_RETRY;
2333 		it6505_video_reset(it6505);
2334 	}
2335 
2336 	return 0;
2337 }
2338 
it6505_irq_hpd(struct it6505 * it6505)2339 static void it6505_irq_hpd(struct it6505 *it6505)
2340 {
2341 	struct device *dev = it6505->dev;
2342 	int dp_sink_count;
2343 
2344 	it6505->hpd_state = it6505_get_sink_hpd_status(it6505);
2345 	DRM_DEV_DEBUG_DRIVER(dev, "hpd change interrupt, change to %s",
2346 			     it6505->hpd_state ? "high" : "low");
2347 
2348 	if (it6505->hpd_state) {
2349 		wait_for_completion_timeout(&it6505->extcon_completion,
2350 					    msecs_to_jiffies(1000));
2351 		it6505_aux_on(it6505);
2352 		if (it6505->dpcd[0] == 0) {
2353 			it6505_get_dpcd(it6505, DP_DPCD_REV, it6505->dpcd,
2354 					ARRAY_SIZE(it6505->dpcd));
2355 			it6505_variable_config(it6505);
2356 			it6505_parse_link_capabilities(it6505);
2357 		}
2358 		it6505->auto_train_retry = AUTO_TRAIN_RETRY;
2359 
2360 		it6505_drm_dp_link_set_power(&it6505->aux, &it6505->link,
2361 					     DP_SET_POWER_D0);
2362 		dp_sink_count = it6505_dpcd_read(it6505, DP_SINK_COUNT);
2363 		it6505->sink_count = DP_GET_SINK_COUNT(dp_sink_count);
2364 
2365 		DRM_DEV_DEBUG_DRIVER(dev, "it6505->sink_count: %d",
2366 				     it6505->sink_count);
2367 
2368 		it6505_lane_termination_on(it6505);
2369 		it6505_lane_power_on(it6505);
2370 
2371 		/*
2372 		 * for some dongle which issue HPD_irq
2373 		 * when sink count change from  0->1
2374 		 * it6505 not able to receive HPD_IRQ
2375 		 * if HW never go into trainig done
2376 		 */
2377 
2378 		if (it6505->branch_device && it6505->sink_count == 0)
2379 			schedule_work(&it6505->link_works);
2380 
2381 		if (!it6505_get_video_status(it6505))
2382 			it6505_video_reset(it6505);
2383 	} else {
2384 		memset(it6505->dpcd, 0, sizeof(it6505->dpcd));
2385 		it6505_remove_edid(it6505);
2386 
2387 		if (it6505->hdcp_desired)
2388 			it6505_stop_hdcp(it6505);
2389 
2390 		it6505_video_disable(it6505);
2391 		it6505_disable_audio(it6505);
2392 		it6505_stop_link_train(it6505);
2393 		it6505_lane_off(it6505);
2394 		it6505_link_reset_step_train(it6505);
2395 	}
2396 
2397 	if (it6505->bridge.dev)
2398 		drm_helper_hpd_irq_event(it6505->bridge.dev);
2399 }
2400 
it6505_irq_hpd_irq(struct it6505 * it6505)2401 static void it6505_irq_hpd_irq(struct it6505 *it6505)
2402 {
2403 	struct device *dev = it6505->dev;
2404 
2405 	DRM_DEV_DEBUG_DRIVER(dev, "hpd_irq interrupt");
2406 
2407 	if (it6505_process_hpd_irq(it6505) < 0)
2408 		DRM_DEV_DEBUG_DRIVER(dev, "process hpd_irq fail!");
2409 }
2410 
it6505_irq_scdt(struct it6505 * it6505)2411 static void it6505_irq_scdt(struct it6505 *it6505)
2412 {
2413 	struct device *dev = it6505->dev;
2414 	bool data;
2415 
2416 	data = it6505_get_video_status(it6505);
2417 	DRM_DEV_DEBUG_DRIVER(dev, "video stable change interrupt, %s",
2418 			     data ? "stable" : "unstable");
2419 	it6505_calc_video_info(it6505);
2420 	it6505_link_reset_step_train(it6505);
2421 
2422 	if (data)
2423 		schedule_work(&it6505->link_works);
2424 }
2425 
it6505_irq_hdcp_done(struct it6505 * it6505)2426 static void it6505_irq_hdcp_done(struct it6505 *it6505)
2427 {
2428 	struct device *dev = it6505->dev;
2429 
2430 	DRM_DEV_DEBUG_DRIVER(dev, "hdcp done interrupt");
2431 	it6505->hdcp_status = HDCP_AUTH_DONE;
2432 	it6505_show_hdcp_info(it6505);
2433 }
2434 
it6505_irq_hdcp_fail(struct it6505 * it6505)2435 static void it6505_irq_hdcp_fail(struct it6505 *it6505)
2436 {
2437 	struct device *dev = it6505->dev;
2438 
2439 	DRM_DEV_DEBUG_DRIVER(dev, "hdcp fail interrupt");
2440 	it6505->hdcp_status = HDCP_AUTH_IDLE;
2441 	it6505_show_hdcp_info(it6505);
2442 	it6505_start_hdcp(it6505);
2443 }
2444 
it6505_irq_aux_cmd_fail(struct it6505 * it6505)2445 static void it6505_irq_aux_cmd_fail(struct it6505 *it6505)
2446 {
2447 	struct device *dev = it6505->dev;
2448 
2449 	DRM_DEV_DEBUG_DRIVER(dev, "AUX PC Request Fail Interrupt");
2450 }
2451 
it6505_irq_hdcp_ksv_check(struct it6505 * it6505)2452 static void it6505_irq_hdcp_ksv_check(struct it6505 *it6505)
2453 {
2454 	struct device *dev = it6505->dev;
2455 
2456 	DRM_DEV_DEBUG_DRIVER(dev, "HDCP event Interrupt");
2457 	schedule_work(&it6505->hdcp_wait_ksv_list);
2458 }
2459 
it6505_irq_audio_fifo_error(struct it6505 * it6505)2460 static void it6505_irq_audio_fifo_error(struct it6505 *it6505)
2461 {
2462 	struct device *dev = it6505->dev;
2463 
2464 	DRM_DEV_DEBUG_DRIVER(dev, "audio fifo error Interrupt");
2465 
2466 	if (it6505_audio_input(it6505))
2467 		it6505_enable_audio(it6505);
2468 }
2469 
it6505_irq_link_train_fail(struct it6505 * it6505)2470 static void it6505_irq_link_train_fail(struct it6505 *it6505)
2471 {
2472 	struct device *dev = it6505->dev;
2473 
2474 	DRM_DEV_DEBUG_DRIVER(dev, "link training fail interrupt");
2475 	schedule_work(&it6505->link_works);
2476 }
2477 
it6505_test_bit(unsigned int bit,const unsigned int * addr)2478 static bool it6505_test_bit(unsigned int bit, const unsigned int *addr)
2479 {
2480 	return 1 & (addr[bit / BITS_PER_BYTE] >> (bit % BITS_PER_BYTE));
2481 }
2482 
it6505_irq_video_handler(struct it6505 * it6505,const int * int_status)2483 static void it6505_irq_video_handler(struct it6505 *it6505, const int *int_status)
2484 {
2485 	struct device *dev = it6505->dev;
2486 	int reg_0d, reg_int03;
2487 
2488 	/*
2489 	 * When video SCDT change with video not stable,
2490 	 * Or video FIFO error, need video reset
2491 	 */
2492 
2493 	if ((!it6505_get_video_status(it6505) &&
2494 	     (it6505_test_bit(INT_SCDT_CHANGE, (unsigned int *)int_status))) ||
2495 	    (it6505_test_bit(BIT_INT_IO_FIFO_OVERFLOW,
2496 			     (unsigned int *)int_status)) ||
2497 	    (it6505_test_bit(BIT_INT_VID_FIFO_ERROR,
2498 			     (unsigned int *)int_status))) {
2499 		it6505->auto_train_retry = AUTO_TRAIN_RETRY;
2500 		flush_work(&it6505->link_works);
2501 		it6505_stop_hdcp(it6505);
2502 		it6505_video_reset(it6505);
2503 
2504 		usleep_range(10000, 11000);
2505 
2506 		/*
2507 		 * Clear FIFO error IRQ to prevent fifo error -> reset loop
2508 		 * HW will trigger SCDT change IRQ again when video stable
2509 		 */
2510 
2511 		reg_int03 = it6505_read(it6505, INT_STATUS_03);
2512 		reg_0d = it6505_read(it6505, REG_SYSTEM_STS);
2513 
2514 		reg_int03 &= (BIT(INT_VID_FIFO_ERROR) | BIT(INT_IO_LATCH_FIFO_OVERFLOW));
2515 		it6505_write(it6505, INT_STATUS_03, reg_int03);
2516 
2517 		DRM_DEV_DEBUG_DRIVER(dev, "reg08 = 0x%02x", reg_int03);
2518 		DRM_DEV_DEBUG_DRIVER(dev, "reg0D = 0x%02x", reg_0d);
2519 
2520 		return;
2521 	}
2522 
2523 	if (it6505_test_bit(INT_SCDT_CHANGE, (unsigned int *)int_status))
2524 		it6505_irq_scdt(it6505);
2525 }
2526 
it6505_int_threaded_handler(int unused,void * data)2527 static irqreturn_t it6505_int_threaded_handler(int unused, void *data)
2528 {
2529 	struct it6505 *it6505 = data;
2530 	struct device *dev = it6505->dev;
2531 	static const struct {
2532 		int bit;
2533 		void (*handler)(struct it6505 *it6505);
2534 	} irq_vec[] = {
2535 		{ BIT_INT_HPD, it6505_irq_hpd },
2536 		{ BIT_INT_HPD_IRQ, it6505_irq_hpd_irq },
2537 		{ BIT_INT_HDCP_FAIL, it6505_irq_hdcp_fail },
2538 		{ BIT_INT_HDCP_DONE, it6505_irq_hdcp_done },
2539 		{ BIT_INT_AUX_CMD_FAIL, it6505_irq_aux_cmd_fail },
2540 		{ BIT_INT_HDCP_KSV_CHECK, it6505_irq_hdcp_ksv_check },
2541 		{ BIT_INT_AUDIO_FIFO_ERROR, it6505_irq_audio_fifo_error },
2542 		{ BIT_INT_LINK_TRAIN_FAIL, it6505_irq_link_train_fail },
2543 	};
2544 	int int_status[3], i;
2545 
2546 	if (it6505->enable_drv_hold || !it6505->powered)
2547 		return IRQ_HANDLED;
2548 
2549 	pm_runtime_get_sync(dev);
2550 
2551 	int_status[0] = it6505_read(it6505, INT_STATUS_01);
2552 	int_status[1] = it6505_read(it6505, INT_STATUS_02);
2553 	int_status[2] = it6505_read(it6505, INT_STATUS_03);
2554 
2555 	it6505_write(it6505, INT_STATUS_01, int_status[0]);
2556 	it6505_write(it6505, INT_STATUS_02, int_status[1]);
2557 	it6505_write(it6505, INT_STATUS_03, int_status[2]);
2558 
2559 	DRM_DEV_DEBUG_DRIVER(dev, "reg06 = 0x%02x", int_status[0]);
2560 	DRM_DEV_DEBUG_DRIVER(dev, "reg07 = 0x%02x", int_status[1]);
2561 	DRM_DEV_DEBUG_DRIVER(dev, "reg08 = 0x%02x", int_status[2]);
2562 	it6505_debug_print(it6505, REG_SYSTEM_STS, "");
2563 
2564 	if (it6505_test_bit(irq_vec[0].bit, (unsigned int *)int_status))
2565 		irq_vec[0].handler(it6505);
2566 
2567 	if (it6505->hpd_state) {
2568 		for (i = 1; i < ARRAY_SIZE(irq_vec); i++) {
2569 			if (it6505_test_bit(irq_vec[i].bit, (unsigned int *)int_status))
2570 				irq_vec[i].handler(it6505);
2571 		}
2572 		it6505_irq_video_handler(it6505, (unsigned int *)int_status);
2573 	}
2574 
2575 	pm_runtime_put_sync(dev);
2576 
2577 	return IRQ_HANDLED;
2578 }
2579 
it6505_poweron(struct it6505 * it6505)2580 static int it6505_poweron(struct it6505 *it6505)
2581 {
2582 	struct device *dev = it6505->dev;
2583 	struct it6505_platform_data *pdata = &it6505->pdata;
2584 	int err;
2585 
2586 	DRM_DEV_DEBUG_DRIVER(dev, "it6505 start powered on");
2587 
2588 	if (it6505->powered) {
2589 		DRM_DEV_DEBUG_DRIVER(dev, "it6505 already powered on");
2590 		return 0;
2591 	}
2592 
2593 	if (pdata->pwr18) {
2594 		err = regulator_enable(pdata->pwr18);
2595 		if (err) {
2596 			DRM_DEV_DEBUG_DRIVER(dev, "Failed to enable VDD18: %d",
2597 					     err);
2598 			return err;
2599 		}
2600 	}
2601 
2602 	if (pdata->ovdd) {
2603 		/* time interval between IVDD and OVDD at least be 1ms */
2604 		usleep_range(1000, 2000);
2605 		err = regulator_enable(pdata->ovdd);
2606 		if (err) {
2607 			regulator_disable(pdata->pwr18);
2608 			return err;
2609 		}
2610 	}
2611 	/* time interval between OVDD and SYSRSTN at least be 10ms */
2612 	if (pdata->gpiod_reset) {
2613 		usleep_range(10000, 20000);
2614 		gpiod_set_value_cansleep(pdata->gpiod_reset, 0);
2615 		usleep_range(1000, 2000);
2616 		gpiod_set_value_cansleep(pdata->gpiod_reset, 1);
2617 		usleep_range(10000, 20000);
2618 	}
2619 
2620 	it6505->powered = true;
2621 	it6505_reset_logic(it6505);
2622 	it6505_int_mask_enable(it6505);
2623 	it6505_init(it6505);
2624 	it6505_lane_off(it6505);
2625 
2626 	return 0;
2627 }
2628 
it6505_poweroff(struct it6505 * it6505)2629 static int it6505_poweroff(struct it6505 *it6505)
2630 {
2631 	struct device *dev = it6505->dev;
2632 	struct it6505_platform_data *pdata = &it6505->pdata;
2633 	int err;
2634 
2635 	DRM_DEV_DEBUG_DRIVER(dev, "it6505 start power off");
2636 
2637 	if (!it6505->powered) {
2638 		DRM_DEV_DEBUG_DRIVER(dev, "power had been already off");
2639 		return 0;
2640 	}
2641 
2642 	if (pdata->gpiod_reset)
2643 		gpiod_set_value_cansleep(pdata->gpiod_reset, 0);
2644 
2645 	if (pdata->pwr18) {
2646 		err = regulator_disable(pdata->pwr18);
2647 		if (err)
2648 			return err;
2649 	}
2650 
2651 	if (pdata->ovdd) {
2652 		err = regulator_disable(pdata->ovdd);
2653 		if (err)
2654 			return err;
2655 	}
2656 
2657 	it6505->powered = false;
2658 	it6505->sink_count = 0;
2659 
2660 	return 0;
2661 }
2662 
it6505_detect(struct it6505 * it6505)2663 static enum drm_connector_status it6505_detect(struct it6505 *it6505)
2664 {
2665 	struct device *dev = it6505->dev;
2666 	enum drm_connector_status status = connector_status_disconnected;
2667 	int dp_sink_count;
2668 
2669 	DRM_DEV_DEBUG_DRIVER(dev, "it6505->sink_count:%d powered:%d",
2670 			     it6505->sink_count, it6505->powered);
2671 
2672 	mutex_lock(&it6505->mode_lock);
2673 
2674 	if (!it6505->powered)
2675 		goto unlock;
2676 
2677 	if (it6505->enable_drv_hold) {
2678 		status = it6505->hpd_state ? connector_status_connected :
2679 					     connector_status_disconnected;
2680 		goto unlock;
2681 	}
2682 
2683 	if (it6505->hpd_state) {
2684 		it6505_drm_dp_link_set_power(&it6505->aux, &it6505->link,
2685 					     DP_SET_POWER_D0);
2686 		dp_sink_count = it6505_dpcd_read(it6505, DP_SINK_COUNT);
2687 		it6505->sink_count = DP_GET_SINK_COUNT(dp_sink_count);
2688 		DRM_DEV_DEBUG_DRIVER(dev, "it6505->sink_count:%d branch:%d",
2689 				     it6505->sink_count, it6505->branch_device);
2690 
2691 		if (it6505->branch_device) {
2692 			status = (it6505->sink_count != 0) ?
2693 				 connector_status_connected :
2694 				 connector_status_disconnected;
2695 		} else {
2696 			status = connector_status_connected;
2697 		}
2698 	} else {
2699 		it6505->sink_count = 0;
2700 		memset(it6505->dpcd, 0, sizeof(it6505->dpcd));
2701 	}
2702 
2703 unlock:
2704 	if (it6505->connector_status != status) {
2705 		it6505->connector_status = status;
2706 		it6505_plugged_status_to_codec(it6505);
2707 	}
2708 
2709 	mutex_unlock(&it6505->mode_lock);
2710 
2711 	return status;
2712 }
2713 
it6505_extcon_notifier(struct notifier_block * self,unsigned long event,void * ptr)2714 static int it6505_extcon_notifier(struct notifier_block *self,
2715 				  unsigned long event, void *ptr)
2716 {
2717 	struct it6505 *it6505 = container_of(self, struct it6505, event_nb);
2718 
2719 	schedule_work(&it6505->extcon_wq);
2720 	return NOTIFY_DONE;
2721 }
2722 
it6505_extcon_work(struct work_struct * work)2723 static void it6505_extcon_work(struct work_struct *work)
2724 {
2725 	struct it6505 *it6505 = container_of(work, struct it6505, extcon_wq);
2726 	struct device *dev = it6505->dev;
2727 	int state, ret;
2728 
2729 	if (it6505->enable_drv_hold)
2730 		return;
2731 
2732 	mutex_lock(&it6505->extcon_lock);
2733 
2734 	state = extcon_get_state(it6505->extcon, EXTCON_DISP_DP);
2735 	DRM_DEV_DEBUG_DRIVER(dev, "EXTCON_DISP_DP = 0x%02x", state);
2736 
2737 	if (state == it6505->extcon_state || unlikely(state < 0))
2738 		goto unlock;
2739 	it6505->extcon_state = state;
2740 	if (state) {
2741 		DRM_DEV_DEBUG_DRIVER(dev, "start to power on");
2742 		msleep(100);
2743 		ret = pm_runtime_get_sync(dev);
2744 
2745 		/*
2746 		 * On system resume, extcon_work can be triggered before
2747 		 * pm_runtime_force_resume re-enables runtime power management.
2748 		 * Handling the error here to make sure the bridge is powered on.
2749 		 */
2750 		if (ret < 0)
2751 			it6505_poweron(it6505);
2752 
2753 		complete_all(&it6505->extcon_completion);
2754 	} else {
2755 		DRM_DEV_DEBUG_DRIVER(dev, "start to power off");
2756 		pm_runtime_put_sync(dev);
2757 		reinit_completion(&it6505->extcon_completion);
2758 
2759 		drm_helper_hpd_irq_event(it6505->bridge.dev);
2760 		memset(it6505->dpcd, 0, sizeof(it6505->dpcd));
2761 		DRM_DEV_DEBUG_DRIVER(dev, "power off it6505 success!");
2762 	}
2763 
2764 unlock:
2765 	mutex_unlock(&it6505->extcon_lock);
2766 }
2767 
it6505_use_notifier_module(struct it6505 * it6505)2768 static int it6505_use_notifier_module(struct it6505 *it6505)
2769 {
2770 	int ret;
2771 	struct device *dev = it6505->dev;
2772 
2773 	it6505->event_nb.notifier_call = it6505_extcon_notifier;
2774 	INIT_WORK(&it6505->extcon_wq, it6505_extcon_work);
2775 	ret = devm_extcon_register_notifier(it6505->dev,
2776 					    it6505->extcon, EXTCON_DISP_DP,
2777 					    &it6505->event_nb);
2778 	if (ret) {
2779 		dev_err(dev, "failed to register notifier for DP");
2780 		return ret;
2781 	}
2782 
2783 	schedule_work(&it6505->extcon_wq);
2784 
2785 	return 0;
2786 }
2787 
it6505_remove_notifier_module(struct it6505 * it6505)2788 static void it6505_remove_notifier_module(struct it6505 *it6505)
2789 {
2790 	if (it6505->extcon) {
2791 		devm_extcon_unregister_notifier(it6505->dev,
2792 						it6505->extcon,	EXTCON_DISP_DP,
2793 						&it6505->event_nb);
2794 
2795 		flush_work(&it6505->extcon_wq);
2796 	}
2797 }
2798 
it6505_delayed_audio(struct work_struct * work)2799 static void __maybe_unused it6505_delayed_audio(struct work_struct *work)
2800 {
2801 	struct it6505 *it6505 = container_of(work, struct it6505,
2802 					     delayed_audio.work);
2803 
2804 	DRM_DEV_DEBUG_DRIVER(it6505->dev, "start");
2805 
2806 	if (!it6505->powered)
2807 		return;
2808 
2809 	if (!it6505->enable_drv_hold)
2810 		it6505_enable_audio(it6505);
2811 }
2812 
it6505_audio_setup_hw_params(struct it6505 * it6505,struct hdmi_codec_params * params)2813 static int __maybe_unused it6505_audio_setup_hw_params(struct it6505 *it6505,
2814 						       struct hdmi_codec_params
2815 						       *params)
2816 {
2817 	struct device *dev = it6505->dev;
2818 	int i = 0;
2819 
2820 	DRM_DEV_DEBUG_DRIVER(dev, "%s %d Hz, %d bit, %d channels\n", __func__,
2821 			     params->sample_rate, params->sample_width,
2822 			     params->cea.channels);
2823 
2824 	if (!it6505->bridge.encoder)
2825 		return -ENODEV;
2826 
2827 	if (params->cea.channels <= 1 || params->cea.channels > 8) {
2828 		DRM_DEV_DEBUG_DRIVER(dev, "channel number: %d not support",
2829 				     it6505->audio.channel_count);
2830 		return -EINVAL;
2831 	}
2832 
2833 	it6505->audio.channel_count = params->cea.channels;
2834 
2835 	while (i < ARRAY_SIZE(audio_sample_rate_map) &&
2836 	       params->sample_rate !=
2837 		       audio_sample_rate_map[i].sample_rate_value) {
2838 		i++;
2839 	}
2840 	if (i == ARRAY_SIZE(audio_sample_rate_map)) {
2841 		DRM_DEV_DEBUG_DRIVER(dev, "sample rate: %d Hz not support",
2842 				     params->sample_rate);
2843 		return -EINVAL;
2844 	}
2845 	it6505->audio.sample_rate = audio_sample_rate_map[i].rate;
2846 
2847 	switch (params->sample_width) {
2848 	case 16:
2849 		it6505->audio.word_length = WORD_LENGTH_16BIT;
2850 		break;
2851 	case 18:
2852 		it6505->audio.word_length = WORD_LENGTH_18BIT;
2853 		break;
2854 	case 20:
2855 		it6505->audio.word_length = WORD_LENGTH_20BIT;
2856 		break;
2857 	case 24:
2858 	case 32:
2859 		it6505->audio.word_length = WORD_LENGTH_24BIT;
2860 		break;
2861 	default:
2862 		DRM_DEV_DEBUG_DRIVER(dev, "wordlength: %d bit not support",
2863 				     params->sample_width);
2864 		return -EINVAL;
2865 	}
2866 
2867 	return 0;
2868 }
2869 
it6505_audio_shutdown(struct device * dev,void * data)2870 static void __maybe_unused it6505_audio_shutdown(struct device *dev, void *data)
2871 {
2872 	struct it6505 *it6505 = dev_get_drvdata(dev);
2873 
2874 	if (it6505->powered)
2875 		it6505_disable_audio(it6505);
2876 }
2877 
it6505_audio_hook_plugged_cb(struct device * dev,void * data,hdmi_codec_plugged_cb fn,struct device * codec_dev)2878 static int __maybe_unused it6505_audio_hook_plugged_cb(struct device *dev,
2879 						       void *data,
2880 						       hdmi_codec_plugged_cb fn,
2881 						       struct device *codec_dev)
2882 {
2883 	struct it6505 *it6505 = data;
2884 
2885 	it6505->plugged_cb = fn;
2886 	it6505->codec_dev = codec_dev;
2887 	it6505_plugged_status_to_codec(it6505);
2888 
2889 	return 0;
2890 }
2891 
bridge_to_it6505(struct drm_bridge * bridge)2892 static inline struct it6505 *bridge_to_it6505(struct drm_bridge *bridge)
2893 {
2894 	return container_of(bridge, struct it6505, bridge);
2895 }
2896 
it6505_bridge_attach(struct drm_bridge * bridge,enum drm_bridge_attach_flags flags)2897 static int it6505_bridge_attach(struct drm_bridge *bridge,
2898 				enum drm_bridge_attach_flags flags)
2899 {
2900 	struct it6505 *it6505 = bridge_to_it6505(bridge);
2901 	struct device *dev = it6505->dev;
2902 	int ret;
2903 
2904 	if (!(flags & DRM_BRIDGE_ATTACH_NO_CONNECTOR)) {
2905 		DRM_ERROR("DRM_BRIDGE_ATTACH_NO_CONNECTOR must be supplied");
2906 		return -EINVAL;
2907 	}
2908 
2909 	if (!bridge->encoder) {
2910 		dev_err(dev, "Parent encoder object not found");
2911 		return -ENODEV;
2912 	}
2913 
2914 	/* Register aux channel */
2915 	it6505->aux.drm_dev = bridge->dev;
2916 
2917 	ret = drm_dp_aux_register(&it6505->aux);
2918 
2919 	if (ret < 0) {
2920 		dev_err(dev, "Failed to register aux: %d", ret);
2921 		return ret;
2922 	}
2923 
2924 	if (it6505->extcon) {
2925 		ret = it6505_use_notifier_module(it6505);
2926 		if (ret < 0) {
2927 			dev_err(dev, "use notifier module failed");
2928 			return ret;
2929 		}
2930 	}
2931 
2932 	return 0;
2933 }
2934 
it6505_bridge_detach(struct drm_bridge * bridge)2935 static void it6505_bridge_detach(struct drm_bridge *bridge)
2936 {
2937 	struct it6505 *it6505 = bridge_to_it6505(bridge);
2938 
2939 	flush_work(&it6505->link_works);
2940 	it6505_remove_notifier_module(it6505);
2941 }
2942 
2943 static enum drm_mode_status
it6505_bridge_mode_valid(struct drm_bridge * bridge,const struct drm_display_info * info,const struct drm_display_mode * mode)2944 it6505_bridge_mode_valid(struct drm_bridge *bridge,
2945 			 const struct drm_display_info *info,
2946 			 const struct drm_display_mode *mode)
2947 {
2948 	struct it6505 *it6505 = bridge_to_it6505(bridge);
2949 
2950 	if (mode->flags & DRM_MODE_FLAG_INTERLACE)
2951 		return MODE_NO_INTERLACE;
2952 
2953 	if (mode->clock > it6505->max_dpi_pixel_clock)
2954 		return MODE_CLOCK_HIGH;
2955 
2956 	it6505->video_info.clock = mode->clock;
2957 
2958 	return MODE_OK;
2959 }
2960 
it6505_bridge_atomic_enable(struct drm_bridge * bridge,struct drm_bridge_state * old_state)2961 static void it6505_bridge_atomic_enable(struct drm_bridge *bridge,
2962 					struct drm_bridge_state *old_state)
2963 {
2964 	struct it6505 *it6505 = bridge_to_it6505(bridge);
2965 	struct device *dev = it6505->dev;
2966 	struct drm_atomic_state *state = old_state->base.state;
2967 	struct hdmi_avi_infoframe frame;
2968 	struct drm_crtc_state *crtc_state;
2969 	struct drm_connector_state *conn_state;
2970 	struct drm_display_mode *mode;
2971 	struct drm_connector *connector;
2972 	int ret;
2973 
2974 	DRM_DEV_DEBUG_DRIVER(dev, "start");
2975 
2976 	connector = drm_atomic_get_new_connector_for_encoder(state,
2977 							     bridge->encoder);
2978 
2979 	if (WARN_ON(!connector))
2980 		return;
2981 
2982 	conn_state = drm_atomic_get_new_connector_state(state, connector);
2983 
2984 	if (WARN_ON(!conn_state))
2985 		return;
2986 
2987 	crtc_state = drm_atomic_get_new_crtc_state(state, conn_state->crtc);
2988 
2989 	if (WARN_ON(!crtc_state))
2990 		return;
2991 
2992 	mode = &crtc_state->adjusted_mode;
2993 
2994 	if (WARN_ON(!mode))
2995 		return;
2996 
2997 	ret = drm_hdmi_avi_infoframe_from_display_mode(&frame,
2998 						       connector,
2999 						       mode);
3000 	if (ret)
3001 		dev_err(dev, "Failed to setup AVI infoframe: %d", ret);
3002 
3003 	it6505_update_video_parameter(it6505, mode);
3004 
3005 	ret = it6505_send_video_infoframe(it6505, &frame);
3006 
3007 	if (ret)
3008 		dev_err(dev, "Failed to send AVI infoframe: %d", ret);
3009 
3010 	it6505_int_mask_enable(it6505);
3011 	it6505_video_reset(it6505);
3012 
3013 	it6505_drm_dp_link_set_power(&it6505->aux, &it6505->link,
3014 				     DP_SET_POWER_D0);
3015 }
3016 
it6505_bridge_atomic_disable(struct drm_bridge * bridge,struct drm_bridge_state * old_state)3017 static void it6505_bridge_atomic_disable(struct drm_bridge *bridge,
3018 					 struct drm_bridge_state *old_state)
3019 {
3020 	struct it6505 *it6505 = bridge_to_it6505(bridge);
3021 	struct device *dev = it6505->dev;
3022 
3023 	DRM_DEV_DEBUG_DRIVER(dev, "start");
3024 
3025 	if (it6505->powered) {
3026 		it6505_drm_dp_link_set_power(&it6505->aux, &it6505->link,
3027 					     DP_SET_POWER_D3);
3028 		it6505_video_disable(it6505);
3029 	}
3030 }
3031 
it6505_bridge_atomic_pre_enable(struct drm_bridge * bridge,struct drm_bridge_state * old_state)3032 static void it6505_bridge_atomic_pre_enable(struct drm_bridge *bridge,
3033 					    struct drm_bridge_state *old_state)
3034 {
3035 	struct it6505 *it6505 = bridge_to_it6505(bridge);
3036 	struct device *dev = it6505->dev;
3037 
3038 	DRM_DEV_DEBUG_DRIVER(dev, "start");
3039 
3040 	pm_runtime_get_sync(dev);
3041 }
3042 
it6505_bridge_atomic_post_disable(struct drm_bridge * bridge,struct drm_bridge_state * old_state)3043 static void it6505_bridge_atomic_post_disable(struct drm_bridge *bridge,
3044 					      struct drm_bridge_state *old_state)
3045 {
3046 	struct it6505 *it6505 = bridge_to_it6505(bridge);
3047 	struct device *dev = it6505->dev;
3048 
3049 	DRM_DEV_DEBUG_DRIVER(dev, "start");
3050 
3051 	pm_runtime_put_sync(dev);
3052 }
3053 
3054 static enum drm_connector_status
it6505_bridge_detect(struct drm_bridge * bridge)3055 it6505_bridge_detect(struct drm_bridge *bridge)
3056 {
3057 	struct it6505 *it6505 = bridge_to_it6505(bridge);
3058 
3059 	return it6505_detect(it6505);
3060 }
3061 
it6505_bridge_get_edid(struct drm_bridge * bridge,struct drm_connector * connector)3062 static struct edid *it6505_bridge_get_edid(struct drm_bridge *bridge,
3063 					   struct drm_connector *connector)
3064 {
3065 	struct it6505 *it6505 = bridge_to_it6505(bridge);
3066 	struct device *dev = it6505->dev;
3067 
3068 	if (!it6505->cached_edid) {
3069 		it6505->cached_edid = drm_do_get_edid(connector, it6505_get_edid_block,
3070 						      it6505);
3071 
3072 		if (!it6505->cached_edid) {
3073 			DRM_DEV_DEBUG_DRIVER(dev, "failed to get edid!");
3074 			return NULL;
3075 		}
3076 	}
3077 
3078 	return drm_edid_duplicate(it6505->cached_edid);
3079 }
3080 
3081 static const struct drm_bridge_funcs it6505_bridge_funcs = {
3082 	.atomic_duplicate_state = drm_atomic_helper_bridge_duplicate_state,
3083 	.atomic_destroy_state = drm_atomic_helper_bridge_destroy_state,
3084 	.atomic_reset = drm_atomic_helper_bridge_reset,
3085 	.attach = it6505_bridge_attach,
3086 	.detach = it6505_bridge_detach,
3087 	.mode_valid = it6505_bridge_mode_valid,
3088 	.atomic_enable = it6505_bridge_atomic_enable,
3089 	.atomic_disable = it6505_bridge_atomic_disable,
3090 	.atomic_pre_enable = it6505_bridge_atomic_pre_enable,
3091 	.atomic_post_disable = it6505_bridge_atomic_post_disable,
3092 	.detect = it6505_bridge_detect,
3093 	.get_edid = it6505_bridge_get_edid,
3094 };
3095 
it6505_bridge_resume(struct device * dev)3096 static __maybe_unused int it6505_bridge_resume(struct device *dev)
3097 {
3098 	struct it6505 *it6505 = dev_get_drvdata(dev);
3099 
3100 	return it6505_poweron(it6505);
3101 }
3102 
it6505_bridge_suspend(struct device * dev)3103 static __maybe_unused int it6505_bridge_suspend(struct device *dev)
3104 {
3105 	struct it6505 *it6505 = dev_get_drvdata(dev);
3106 
3107 	return it6505_poweroff(it6505);
3108 }
3109 
3110 static const struct dev_pm_ops it6505_bridge_pm_ops = {
3111 	SET_SYSTEM_SLEEP_PM_OPS(pm_runtime_force_suspend, pm_runtime_force_resume)
3112 	SET_RUNTIME_PM_OPS(it6505_bridge_suspend, it6505_bridge_resume, NULL)
3113 };
3114 
it6505_init_pdata(struct it6505 * it6505)3115 static int it6505_init_pdata(struct it6505 *it6505)
3116 {
3117 	struct it6505_platform_data *pdata = &it6505->pdata;
3118 	struct device *dev = it6505->dev;
3119 
3120 	/* 1.0V digital core power regulator  */
3121 	pdata->pwr18 = devm_regulator_get(dev, "pwr18");
3122 	if (IS_ERR(pdata->pwr18)) {
3123 		dev_err(dev, "pwr18 regulator not found");
3124 		return PTR_ERR(pdata->pwr18);
3125 	}
3126 
3127 	pdata->ovdd = devm_regulator_get(dev, "ovdd");
3128 	if (IS_ERR(pdata->ovdd)) {
3129 		dev_err(dev, "ovdd regulator not found");
3130 		return PTR_ERR(pdata->ovdd);
3131 	}
3132 
3133 	pdata->gpiod_reset = devm_gpiod_get(dev, "reset", GPIOD_OUT_LOW);
3134 	if (IS_ERR(pdata->gpiod_reset)) {
3135 		dev_err(dev, "gpiod_reset gpio not found");
3136 		return PTR_ERR(pdata->gpiod_reset);
3137 	}
3138 
3139 	return 0;
3140 }
3141 
it6505_get_data_lanes_count(const struct device_node * endpoint,const unsigned int min,const unsigned int max)3142 static int it6505_get_data_lanes_count(const struct device_node *endpoint,
3143 				       const unsigned int min,
3144 				       const unsigned int max)
3145 {
3146 	int ret;
3147 
3148 	ret = of_property_count_u32_elems(endpoint, "data-lanes");
3149 	if (ret < 0)
3150 		return ret;
3151 
3152 	if (ret < min || ret > max)
3153 		return -EINVAL;
3154 
3155 	return ret;
3156 }
3157 
it6505_parse_dt(struct it6505 * it6505)3158 static void it6505_parse_dt(struct it6505 *it6505)
3159 {
3160 	struct device *dev = it6505->dev;
3161 	struct device_node *np = dev->of_node, *ep = NULL;
3162 	int len;
3163 	u64 link_frequencies;
3164 	u32 data_lanes[4];
3165 	u32 *afe_setting = &it6505->afe_setting;
3166 	u32 *max_lane_count = &it6505->max_lane_count;
3167 	u32 *max_dpi_pixel_clock = &it6505->max_dpi_pixel_clock;
3168 
3169 	it6505->lane_swap_disabled =
3170 		device_property_read_bool(dev, "no-laneswap");
3171 
3172 	if (it6505->lane_swap_disabled)
3173 		it6505->lane_swap = false;
3174 
3175 	if (device_property_read_u32(dev, "afe-setting", afe_setting) == 0) {
3176 		if (*afe_setting >= ARRAY_SIZE(afe_setting_table)) {
3177 			dev_err(dev, "afe setting error, use default");
3178 			*afe_setting = 0;
3179 		}
3180 	} else {
3181 		*afe_setting = 0;
3182 	}
3183 
3184 	ep = of_graph_get_endpoint_by_regs(np, 1, 0);
3185 	of_node_put(ep);
3186 
3187 	if (ep) {
3188 		len = it6505_get_data_lanes_count(ep, 1, 4);
3189 
3190 		if (len > 0 && len != 3) {
3191 			of_property_read_u32_array(ep, "data-lanes",
3192 						   data_lanes, len);
3193 			*max_lane_count = len;
3194 		} else {
3195 			*max_lane_count = MAX_LANE_COUNT;
3196 			dev_err(dev, "error data-lanes, use default");
3197 		}
3198 	} else {
3199 		*max_lane_count = MAX_LANE_COUNT;
3200 		dev_err(dev, "error endpoint, use default");
3201 	}
3202 
3203 	ep = of_graph_get_endpoint_by_regs(np, 0, 0);
3204 	of_node_put(ep);
3205 
3206 	if (ep) {
3207 		len = of_property_read_variable_u64_array(ep,
3208 							  "link-frequencies",
3209 							  &link_frequencies, 0,
3210 							  1);
3211 		if (len >= 0) {
3212 			do_div(link_frequencies, 1000);
3213 			if (link_frequencies > 297000) {
3214 				dev_err(dev,
3215 					"max pixel clock error, use default");
3216 				*max_dpi_pixel_clock = DPI_PIXEL_CLK_MAX;
3217 			} else {
3218 				*max_dpi_pixel_clock = link_frequencies;
3219 			}
3220 		} else {
3221 			dev_err(dev, "error link frequencies, use default");
3222 			*max_dpi_pixel_clock = DPI_PIXEL_CLK_MAX;
3223 		}
3224 	} else {
3225 		dev_err(dev, "error endpoint, use default");
3226 		*max_dpi_pixel_clock = DPI_PIXEL_CLK_MAX;
3227 	}
3228 
3229 	DRM_DEV_DEBUG_DRIVER(dev, "using afe_setting: %u, max_lane_count: %u",
3230 			     it6505->afe_setting, it6505->max_lane_count);
3231 	DRM_DEV_DEBUG_DRIVER(dev, "using max_dpi_pixel_clock: %u kHz",
3232 			     it6505->max_dpi_pixel_clock);
3233 }
3234 
receive_timing_debugfs_show(struct file * file,char __user * buf,size_t len,loff_t * ppos)3235 static ssize_t receive_timing_debugfs_show(struct file *file, char __user *buf,
3236 					   size_t len, loff_t *ppos)
3237 {
3238 	struct it6505 *it6505 = file->private_data;
3239 	struct drm_display_mode *vid;
3240 	u8 read_buf[READ_BUFFER_SIZE];
3241 	u8 *str = read_buf, *end = read_buf + READ_BUFFER_SIZE;
3242 	ssize_t ret, count;
3243 
3244 	if (!it6505)
3245 		return -ENODEV;
3246 
3247 	it6505_calc_video_info(it6505);
3248 	vid = &it6505->video_info;
3249 	str += scnprintf(str, end - str, "---video timing---\n");
3250 	str += scnprintf(str, end - str, "PCLK:%d.%03dMHz\n",
3251 			 vid->clock / 1000, vid->clock % 1000);
3252 	str += scnprintf(str, end - str, "HTotal:%d\n", vid->htotal);
3253 	str += scnprintf(str, end - str, "HActive:%d\n", vid->hdisplay);
3254 	str += scnprintf(str, end - str, "HFrontPorch:%d\n",
3255 			 vid->hsync_start - vid->hdisplay);
3256 	str += scnprintf(str, end - str, "HSyncWidth:%d\n",
3257 			 vid->hsync_end - vid->hsync_start);
3258 	str += scnprintf(str, end - str, "HBackPorch:%d\n",
3259 			 vid->htotal - vid->hsync_end);
3260 	str += scnprintf(str, end - str, "VTotal:%d\n", vid->vtotal);
3261 	str += scnprintf(str, end - str, "VActive:%d\n", vid->vdisplay);
3262 	str += scnprintf(str, end - str, "VFrontPorch:%d\n",
3263 			 vid->vsync_start - vid->vdisplay);
3264 	str += scnprintf(str, end - str, "VSyncWidth:%d\n",
3265 			 vid->vsync_end - vid->vsync_start);
3266 	str += scnprintf(str, end - str, "VBackPorch:%d\n",
3267 			 vid->vtotal - vid->vsync_end);
3268 
3269 	count = str - read_buf;
3270 	ret = simple_read_from_buffer(buf, len, ppos, read_buf, count);
3271 
3272 	return ret;
3273 }
3274 
force_power_on_off_debugfs_write(void * data,u64 value)3275 static int force_power_on_off_debugfs_write(void *data, u64 value)
3276 {
3277 	struct it6505 *it6505 = data;
3278 
3279 	if (!it6505)
3280 		return -ENODEV;
3281 
3282 	if (value)
3283 		it6505_poweron(it6505);
3284 	else
3285 		it6505_poweroff(it6505);
3286 
3287 	return 0;
3288 }
3289 
enable_drv_hold_debugfs_show(void * data,u64 * buf)3290 static int enable_drv_hold_debugfs_show(void *data, u64 *buf)
3291 {
3292 	struct it6505 *it6505 = data;
3293 
3294 	if (!it6505)
3295 		return -ENODEV;
3296 
3297 	*buf = it6505->enable_drv_hold;
3298 
3299 	return 0;
3300 }
3301 
enable_drv_hold_debugfs_write(void * data,u64 drv_hold)3302 static int enable_drv_hold_debugfs_write(void *data, u64 drv_hold)
3303 {
3304 	struct it6505 *it6505 = data;
3305 
3306 	if (!it6505)
3307 		return -ENODEV;
3308 
3309 	it6505->enable_drv_hold = drv_hold;
3310 
3311 	if (it6505->enable_drv_hold) {
3312 		it6505_int_mask_disable(it6505);
3313 	} else {
3314 		it6505_clear_int(it6505);
3315 		it6505_int_mask_enable(it6505);
3316 
3317 		if (it6505->powered) {
3318 			it6505->connector_status =
3319 					it6505_get_sink_hpd_status(it6505) ?
3320 					connector_status_connected :
3321 					connector_status_disconnected;
3322 		} else {
3323 			it6505->connector_status =
3324 					connector_status_disconnected;
3325 		}
3326 	}
3327 
3328 	return 0;
3329 }
3330 
3331 static const struct file_operations receive_timing_fops = {
3332 	.owner = THIS_MODULE,
3333 	.open = simple_open,
3334 	.read = receive_timing_debugfs_show,
3335 	.llseek = default_llseek,
3336 };
3337 
3338 DEFINE_DEBUGFS_ATTRIBUTE(fops_force_power, NULL,
3339 			 force_power_on_off_debugfs_write, "%llu\n");
3340 
3341 DEFINE_DEBUGFS_ATTRIBUTE(fops_enable_drv_hold, enable_drv_hold_debugfs_show,
3342 			 enable_drv_hold_debugfs_write, "%llu\n");
3343 
3344 static const struct debugfs_entries debugfs_entry[] = {
3345 	{ "receive_timing", &receive_timing_fops },
3346 	{ "force_power_on_off", &fops_force_power },
3347 	{ "enable_drv_hold", &fops_enable_drv_hold },
3348 	{ NULL, NULL },
3349 };
3350 
debugfs_create_files(struct it6505 * it6505)3351 static void debugfs_create_files(struct it6505 *it6505)
3352 {
3353 	int i = 0;
3354 
3355 	while (debugfs_entry[i].name && debugfs_entry[i].fops) {
3356 		debugfs_create_file(debugfs_entry[i].name, 0644,
3357 				    it6505->debugfs, it6505,
3358 				    debugfs_entry[i].fops);
3359 		i++;
3360 	}
3361 }
3362 
debugfs_init(struct it6505 * it6505)3363 static void debugfs_init(struct it6505 *it6505)
3364 {
3365 	struct device *dev = it6505->dev;
3366 
3367 	it6505->debugfs = debugfs_create_dir(DEBUGFS_DIR_NAME, NULL);
3368 
3369 	if (IS_ERR(it6505->debugfs)) {
3370 		dev_err(dev, "failed to create debugfs root");
3371 		return;
3372 	}
3373 
3374 	debugfs_create_files(it6505);
3375 }
3376 
it6505_debugfs_remove(struct it6505 * it6505)3377 static void it6505_debugfs_remove(struct it6505 *it6505)
3378 {
3379 	debugfs_remove_recursive(it6505->debugfs);
3380 }
3381 
it6505_shutdown(struct i2c_client * client)3382 static void it6505_shutdown(struct i2c_client *client)
3383 {
3384 	struct it6505 *it6505 = dev_get_drvdata(&client->dev);
3385 
3386 	if (it6505->powered)
3387 		it6505_lane_off(it6505);
3388 }
3389 
it6505_i2c_probe(struct i2c_client * client)3390 static int it6505_i2c_probe(struct i2c_client *client)
3391 {
3392 	struct it6505 *it6505;
3393 	struct device *dev = &client->dev;
3394 	struct extcon_dev *extcon;
3395 	int err, intp_irq;
3396 
3397 	it6505 = devm_kzalloc(&client->dev, sizeof(*it6505), GFP_KERNEL);
3398 	if (!it6505)
3399 		return -ENOMEM;
3400 
3401 	mutex_init(&it6505->extcon_lock);
3402 	mutex_init(&it6505->mode_lock);
3403 	mutex_init(&it6505->aux_lock);
3404 
3405 	it6505->bridge.of_node = client->dev.of_node;
3406 	it6505->connector_status = connector_status_disconnected;
3407 	it6505->dev = &client->dev;
3408 	i2c_set_clientdata(client, it6505);
3409 
3410 	/* get extcon device from DTS */
3411 	extcon = extcon_get_edev_by_phandle(dev, 0);
3412 	if (PTR_ERR(extcon) == -EPROBE_DEFER)
3413 		return -EPROBE_DEFER;
3414 	if (IS_ERR(extcon)) {
3415 		dev_err(dev, "can not get extcon device!");
3416 		return PTR_ERR(extcon);
3417 	}
3418 
3419 	it6505->extcon = extcon;
3420 
3421 	it6505->regmap = devm_regmap_init_i2c(client, &it6505_regmap_config);
3422 	if (IS_ERR(it6505->regmap)) {
3423 		dev_err(dev, "regmap i2c init failed");
3424 		err = PTR_ERR(it6505->regmap);
3425 		return err;
3426 	}
3427 
3428 	err = it6505_init_pdata(it6505);
3429 	if (err) {
3430 		dev_err(dev, "Failed to initialize pdata: %d", err);
3431 		return err;
3432 	}
3433 
3434 	it6505_parse_dt(it6505);
3435 
3436 	intp_irq = client->irq;
3437 
3438 	if (!intp_irq) {
3439 		dev_err(dev, "Failed to get INTP IRQ");
3440 		err = -ENODEV;
3441 		return err;
3442 	}
3443 
3444 	err = devm_request_threaded_irq(&client->dev, intp_irq, NULL,
3445 					it6505_int_threaded_handler,
3446 					IRQF_TRIGGER_LOW | IRQF_ONESHOT,
3447 					"it6505-intp", it6505);
3448 	if (err) {
3449 		dev_err(dev, "Failed to request INTP threaded IRQ: %d", err);
3450 		return err;
3451 	}
3452 
3453 	INIT_WORK(&it6505->link_works, it6505_link_training_work);
3454 	INIT_WORK(&it6505->hdcp_wait_ksv_list, it6505_hdcp_wait_ksv_list);
3455 	INIT_DELAYED_WORK(&it6505->hdcp_work, it6505_hdcp_work);
3456 	init_completion(&it6505->extcon_completion);
3457 	memset(it6505->dpcd, 0, sizeof(it6505->dpcd));
3458 	it6505->powered = false;
3459 	it6505->enable_drv_hold = DEFAULT_DRV_HOLD;
3460 
3461 	if (DEFAULT_PWR_ON)
3462 		it6505_poweron(it6505);
3463 
3464 	DRM_DEV_DEBUG_DRIVER(dev, "it6505 device name: %s", dev_name(dev));
3465 	debugfs_init(it6505);
3466 	pm_runtime_enable(dev);
3467 
3468 	it6505->aux.name = "DP-AUX";
3469 	it6505->aux.dev = dev;
3470 	it6505->aux.transfer = it6505_aux_transfer;
3471 	drm_dp_aux_init(&it6505->aux);
3472 
3473 	it6505->bridge.funcs = &it6505_bridge_funcs;
3474 	it6505->bridge.type = DRM_MODE_CONNECTOR_DisplayPort;
3475 	it6505->bridge.ops = DRM_BRIDGE_OP_DETECT | DRM_BRIDGE_OP_EDID |
3476 			     DRM_BRIDGE_OP_HPD;
3477 	drm_bridge_add(&it6505->bridge);
3478 
3479 	return 0;
3480 }
3481 
it6505_i2c_remove(struct i2c_client * client)3482 static void it6505_i2c_remove(struct i2c_client *client)
3483 {
3484 	struct it6505 *it6505 = i2c_get_clientdata(client);
3485 
3486 	drm_bridge_remove(&it6505->bridge);
3487 	drm_dp_aux_unregister(&it6505->aux);
3488 	it6505_debugfs_remove(it6505);
3489 	it6505_poweroff(it6505);
3490 	it6505_remove_edid(it6505);
3491 }
3492 
3493 static const struct i2c_device_id it6505_id[] = {
3494 	{ "it6505", 0 },
3495 	{ }
3496 };
3497 
3498 MODULE_DEVICE_TABLE(i2c, it6505_id);
3499 
3500 static const struct of_device_id it6505_of_match[] = {
3501 	{ .compatible = "ite,it6505" },
3502 	{ }
3503 };
3504 
3505 static struct i2c_driver it6505_i2c_driver = {
3506 	.driver = {
3507 		.name = "it6505",
3508 		.of_match_table = it6505_of_match,
3509 		.pm = &it6505_bridge_pm_ops,
3510 	},
3511 	.probe = it6505_i2c_probe,
3512 	.remove = it6505_i2c_remove,
3513 	.shutdown = it6505_shutdown,
3514 	.id_table = it6505_id,
3515 };
3516 
3517 module_i2c_driver(it6505_i2c_driver);
3518 
3519 MODULE_AUTHOR("Allen Chen <allen.chen@ite.com.tw>");
3520 MODULE_DESCRIPTION("IT6505 DisplayPort Transmitter driver");
3521 MODULE_LICENSE("GPL v2");
3522