2 * Silicon Image SiI8620 HDMI/MHL bridge driver
4 * Copyright (C) 2015, Samsung Electronics Co., Ltd.
5 * Andrzej Hajda <a.hajda@samsung.com>
7 * This program is free software; you can redistribute it and/or modify
8 * it under the terms of the GNU General Public License version 2 as
9 * published by the Free Software Foundation.
12 #include <asm/unaligned.h>
14 #include <drm/bridge/mhl.h>
15 #include <drm/drm_crtc.h>
16 #include <drm/drm_edid.h>
18 #include <linux/clk.h>
19 #include <linux/delay.h>
20 #include <linux/gpio/consumer.h>
21 #include <linux/i2c.h>
22 #include <linux/interrupt.h>
23 #include <linux/irq.h>
24 #include <linux/kernel.h>
25 #include <linux/list.h>
26 #include <linux/module.h>
27 #include <linux/mutex.h>
28 #include <linux/regulator/consumer.h>
29 #include <linux/slab.h>
31 #include "sil-sii8620.h"
33 #define SII8620_BURST_BUF_LEN 288
34 #define VAL_RX_HDMI_CTRL2_DEFVAL VAL_RX_HDMI_CTRL2_IDLE_CNT(3)
35 #define MHL1_MAX_LCLK 225000
36 #define MHL3_MAX_LCLK 600000
46 enum sii8620_sink_type
{
52 enum sii8620_mt_state
{
59 struct drm_bridge bridge
;
62 struct gpio_desc
*gpio_reset
;
63 struct gpio_desc
*gpio_int
;
64 struct regulator_bulk_data supplies
[2];
65 struct mutex lock
; /* context lock, protects fields below */
68 unsigned int use_packed_pixel
:1;
70 enum sii8620_mode mode
;
71 enum sii8620_sink_type sink_type
;
73 u8 stat
[MHL_DST_SIZE
];
74 u8 xstat
[MHL_XDS_SIZE
];
75 u8 devcap
[MHL_DCAP_SIZE
];
76 u8 xdevcap
[MHL_XDC_SIZE
];
77 u8 avif
[HDMI_INFOFRAME_SIZE(AVI
)];
79 unsigned int gen2_write_burst
:1;
80 enum sii8620_mt_state mt_state
;
81 struct list_head mt_queue
;
93 struct sii8620_mt_msg
;
95 typedef void (*sii8620_mt_msg_cb
)(struct sii8620
*ctx
,
96 struct sii8620_mt_msg
*msg
);
98 typedef void (*sii8620_cb
)(struct sii8620
*ctx
, int ret
);
100 struct sii8620_mt_msg
{
101 struct list_head node
;
104 sii8620_mt_msg_cb send
;
105 sii8620_mt_msg_cb recv
;
106 sii8620_cb continuation
;
109 static const u8 sii8620_i2c_page
[] = {
110 0x39, /* Main System */
111 0x3d, /* TDM and HSIC */
112 0x49, /* TMDS Receiver, MHL EDID */
113 0x4d, /* eMSC, HDCP, HSIC */
116 0x59, /* Hardware TPI (Transmitter Programming Interface) */
117 0x61, /* eCBUS-S, eCBUS-D */
120 static void sii8620_fetch_edid(struct sii8620
*ctx
);
121 static void sii8620_set_upstream_edid(struct sii8620
*ctx
);
122 static void sii8620_enable_hpd(struct sii8620
*ctx
);
123 static void sii8620_mhl_disconnected(struct sii8620
*ctx
);
124 static void sii8620_disconnect(struct sii8620
*ctx
);
126 static int sii8620_clear_error(struct sii8620
*ctx
)
128 int ret
= ctx
->error
;
134 static void sii8620_read_buf(struct sii8620
*ctx
, u16 addr
, u8
*buf
, int len
)
136 struct device
*dev
= ctx
->dev
;
137 struct i2c_client
*client
= to_i2c_client(dev
);
139 struct i2c_msg msg
[] = {
141 .addr
= sii8620_i2c_page
[addr
>> 8],
142 .flags
= client
->flags
,
147 .addr
= sii8620_i2c_page
[addr
>> 8],
148 .flags
= client
->flags
| I2C_M_RD
,
158 ret
= i2c_transfer(client
->adapter
, msg
, 2);
159 dev_dbg(dev
, "read at %04x: %*ph, %d\n", addr
, len
, buf
, ret
);
162 dev_err(dev
, "Read at %#06x of %d bytes failed with code %d.\n",
164 ctx
->error
= ret
< 0 ? ret
: -EIO
;
168 static u8
sii8620_readb(struct sii8620
*ctx
, u16 addr
)
172 sii8620_read_buf(ctx
, addr
, &ret
, 1);
176 static void sii8620_write_buf(struct sii8620
*ctx
, u16 addr
, const u8
*buf
,
179 struct device
*dev
= ctx
->dev
;
180 struct i2c_client
*client
= to_i2c_client(dev
);
182 struct i2c_msg msg
= {
183 .addr
= sii8620_i2c_page
[addr
>> 8],
184 .flags
= client
->flags
,
193 msg
.buf
= kmalloc(len
+ 1, GFP_KERNEL
);
195 ctx
->error
= -ENOMEM
;
198 memcpy(msg
.buf
+ 1, buf
, len
);
206 ret
= i2c_transfer(client
->adapter
, &msg
, 1);
207 dev_dbg(dev
, "write at %04x: %*ph, %d\n", addr
, len
, buf
, ret
);
210 dev_err(dev
, "Write at %#06x of %*ph failed with code %d.\n",
211 addr
, len
, buf
, ret
);
212 ctx
->error
= ret
?: -EIO
;
219 #define sii8620_write(ctx, addr, arr...) \
222 sii8620_write_buf(ctx, addr, d, ARRAY_SIZE(d)); \
225 static void __sii8620_write_seq(struct sii8620
*ctx
, const u16
*seq
, int len
)
229 for (i
= 0; i
< len
; i
+= 2)
230 sii8620_write(ctx
, seq
[i
], seq
[i
+ 1]);
233 #define sii8620_write_seq(ctx, seq...) \
235 const u16 d[] = { seq }; \
236 __sii8620_write_seq(ctx, d, ARRAY_SIZE(d)); \
239 #define sii8620_write_seq_static(ctx, seq...) \
241 static const u16 d[] = { seq }; \
242 __sii8620_write_seq(ctx, d, ARRAY_SIZE(d)); \
245 static void sii8620_setbits(struct sii8620
*ctx
, u16 addr
, u8 mask
, u8 val
)
247 val
= (val
& mask
) | (sii8620_readb(ctx
, addr
) & ~mask
);
248 sii8620_write(ctx
, addr
, val
);
251 static inline bool sii8620_is_mhl3(struct sii8620
*ctx
)
253 return ctx
->mode
>= CM_MHL3
;
256 static void sii8620_mt_cleanup(struct sii8620
*ctx
)
258 struct sii8620_mt_msg
*msg
, *n
;
260 list_for_each_entry_safe(msg
, n
, &ctx
->mt_queue
, node
) {
261 list_del(&msg
->node
);
264 ctx
->mt_state
= MT_STATE_READY
;
267 static void sii8620_mt_work(struct sii8620
*ctx
)
269 struct sii8620_mt_msg
*msg
;
273 if (ctx
->mt_state
== MT_STATE_BUSY
|| list_empty(&ctx
->mt_queue
))
276 if (ctx
->mt_state
== MT_STATE_DONE
) {
277 ctx
->mt_state
= MT_STATE_READY
;
278 msg
= list_first_entry(&ctx
->mt_queue
, struct sii8620_mt_msg
,
280 list_del(&msg
->node
);
283 if (msg
->continuation
)
284 msg
->continuation(ctx
, msg
->ret
);
288 if (ctx
->mt_state
!= MT_STATE_READY
|| list_empty(&ctx
->mt_queue
))
291 ctx
->mt_state
= MT_STATE_BUSY
;
292 msg
= list_first_entry(&ctx
->mt_queue
, struct sii8620_mt_msg
, node
);
297 static void sii8620_enable_gen2_write_burst(struct sii8620
*ctx
)
299 u8 ctrl
= BIT_MDT_RCV_CTRL_MDT_RCV_EN
;
301 if (ctx
->gen2_write_burst
)
304 if (ctx
->mode
>= CM_MHL1
)
305 ctrl
|= BIT_MDT_RCV_CTRL_MDT_DELAY_RCV_EN
;
307 sii8620_write_seq(ctx
,
308 REG_MDT_RCV_TIMEOUT
, 100,
309 REG_MDT_RCV_CTRL
, ctrl
311 ctx
->gen2_write_burst
= 1;
314 static void sii8620_disable_gen2_write_burst(struct sii8620
*ctx
)
316 if (!ctx
->gen2_write_burst
)
319 sii8620_write_seq_static(ctx
,
320 REG_MDT_XMIT_CTRL
, 0,
323 ctx
->gen2_write_burst
= 0;
326 static void sii8620_start_gen2_write_burst(struct sii8620
*ctx
)
328 sii8620_write_seq_static(ctx
,
329 REG_MDT_INT_1_MASK
, BIT_MDT_RCV_TIMEOUT
330 | BIT_MDT_RCV_SM_ABORT_PKT_RCVD
| BIT_MDT_RCV_SM_ERROR
331 | BIT_MDT_XMIT_TIMEOUT
| BIT_MDT_XMIT_SM_ABORT_PKT_RCVD
332 | BIT_MDT_XMIT_SM_ERROR
,
333 REG_MDT_INT_0_MASK
, BIT_MDT_XFIFO_EMPTY
334 | BIT_MDT_IDLE_AFTER_HAWB_DISABLE
335 | BIT_MDT_RFIFO_DATA_RDY
337 sii8620_enable_gen2_write_burst(ctx
);
340 static void sii8620_mt_msc_cmd_send(struct sii8620
*ctx
,
341 struct sii8620_mt_msg
*msg
)
343 if (msg
->reg
[0] == MHL_SET_INT
&&
344 msg
->reg
[1] == MHL_INT_REG(RCHANGE
) &&
345 msg
->reg
[2] == MHL_INT_RC_FEAT_REQ
)
346 sii8620_enable_gen2_write_burst(ctx
);
348 sii8620_disable_gen2_write_burst(ctx
);
350 switch (msg
->reg
[0]) {
353 sii8620_write_buf(ctx
, REG_MSC_CMD_OR_OFFSET
, msg
->reg
+ 1, 2);
354 sii8620_write(ctx
, REG_MSC_COMMAND_START
,
355 BIT_MSC_COMMAND_START_WRITE_STAT
);
358 sii8620_write_buf(ctx
, REG_MSC_CMD_OR_OFFSET
, msg
->reg
, 3);
359 sii8620_write(ctx
, REG_MSC_COMMAND_START
,
360 BIT_MSC_COMMAND_START_MSC_MSG
);
362 case MHL_READ_DEVCAP_REG
:
363 case MHL_READ_XDEVCAP_REG
:
364 sii8620_write(ctx
, REG_MSC_CMD_OR_OFFSET
, msg
->reg
[1]);
365 sii8620_write(ctx
, REG_MSC_COMMAND_START
,
366 BIT_MSC_COMMAND_START_READ_DEVCAP
);
369 dev_err(ctx
->dev
, "%s: command %#x not supported\n", __func__
,
374 static struct sii8620_mt_msg
*sii8620_mt_msg_new(struct sii8620
*ctx
)
376 struct sii8620_mt_msg
*msg
= kzalloc(sizeof(*msg
), GFP_KERNEL
);
379 ctx
->error
= -ENOMEM
;
381 list_add_tail(&msg
->node
, &ctx
->mt_queue
);
386 static void sii8620_mt_set_cont(struct sii8620
*ctx
, sii8620_cb cont
)
388 struct sii8620_mt_msg
*msg
;
393 if (list_empty(&ctx
->mt_queue
)) {
394 ctx
->error
= -EINVAL
;
397 msg
= list_last_entry(&ctx
->mt_queue
, struct sii8620_mt_msg
, node
);
398 msg
->continuation
= cont
;
401 static void sii8620_mt_msc_cmd(struct sii8620
*ctx
, u8 cmd
, u8 arg1
, u8 arg2
)
403 struct sii8620_mt_msg
*msg
= sii8620_mt_msg_new(ctx
);
411 msg
->send
= sii8620_mt_msc_cmd_send
;
414 static void sii8620_mt_write_stat(struct sii8620
*ctx
, u8 reg
, u8 val
)
416 sii8620_mt_msc_cmd(ctx
, MHL_WRITE_STAT
, reg
, val
);
419 static inline void sii8620_mt_set_int(struct sii8620
*ctx
, u8 irq
, u8 mask
)
421 sii8620_mt_msc_cmd(ctx
, MHL_SET_INT
, irq
, mask
);
424 static void sii8620_mt_msc_msg(struct sii8620
*ctx
, u8 cmd
, u8 data
)
426 sii8620_mt_msc_cmd(ctx
, MHL_MSC_MSG
, cmd
, data
);
429 static void sii8620_mt_rap(struct sii8620
*ctx
, u8 code
)
431 sii8620_mt_msc_msg(ctx
, MHL_MSC_MSG_RAP
, code
);
434 static void sii8620_mt_read_devcap_send(struct sii8620
*ctx
,
435 struct sii8620_mt_msg
*msg
)
437 u8 ctrl
= BIT_EDID_CTRL_DEVCAP_SELECT_DEVCAP
438 | BIT_EDID_CTRL_EDID_FIFO_ADDR_AUTO
439 | BIT_EDID_CTRL_EDID_MODE_EN
;
441 if (msg
->reg
[0] == MHL_READ_XDEVCAP
)
442 ctrl
|= BIT_EDID_CTRL_XDEVCAP_EN
;
444 sii8620_write_seq(ctx
,
445 REG_INTR9_MASK
, BIT_INTR9_DEVCAP_DONE
,
447 REG_TPI_CBUS_START
, BIT_TPI_CBUS_START_GET_DEVCAP_START
451 /* copy src to dst and set changed bits in src */
452 static void sii8620_update_array(u8
*dst
, u8
*src
, int count
)
454 while (--count
>= 0) {
460 static void sii8620_sink_detected(struct sii8620
*ctx
, int ret
)
462 static const char * const sink_str
[] = {
463 [SINK_NONE
] = "NONE",
464 [SINK_HDMI
] = "HDMI",
469 struct device
*dev
= ctx
->dev
;
474 sii8620_fetch_edid(ctx
);
476 dev_err(ctx
->dev
, "Cannot fetch EDID\n");
477 sii8620_mhl_disconnected(ctx
);
481 if (drm_detect_hdmi_monitor(ctx
->edid
))
482 ctx
->sink_type
= SINK_HDMI
;
484 ctx
->sink_type
= SINK_DVI
;
486 drm_edid_get_monitor_name(ctx
->edid
, sink_name
, ARRAY_SIZE(sink_name
));
488 dev_info(dev
, "detected sink(type: %s): %s\n",
489 sink_str
[ctx
->sink_type
], sink_name
);
492 static void sii8620_hsic_init(struct sii8620
*ctx
)
494 if (!sii8620_is_mhl3(ctx
))
497 sii8620_write(ctx
, REG_FCGC
,
498 BIT_FCGC_HSIC_HOSTMODE
| BIT_FCGC_HSIC_ENABLE
);
499 sii8620_setbits(ctx
, REG_HRXCTRL3
,
500 BIT_HRXCTRL3_HRX_STAY_RESET
| BIT_HRXCTRL3_STATUS_EN
, ~0);
501 sii8620_setbits(ctx
, REG_TTXNUMB
, MSK_TTXNUMB_TTX_NUMBPS
, 4);
502 sii8620_setbits(ctx
, REG_TRXCTRL
, BIT_TRXCTRL_TRX_FROM_SE_COC
, ~0);
503 sii8620_setbits(ctx
, REG_HTXCTRL
, BIT_HTXCTRL_HTX_DRVCONN1
, 0);
504 sii8620_setbits(ctx
, REG_KEEPER
, MSK_KEEPER_MODE
, VAL_KEEPER_MODE_HOST
);
505 sii8620_write_seq_static(ctx
,
507 REG_UTSRST
, BIT_UTSRST_HRX_SRST
| BIT_UTSRST_HTX_SRST
|
508 BIT_UTSRST_KEEPER_SRST
| BIT_UTSRST_FC_SRST
,
509 REG_UTSRST
, BIT_UTSRST_HRX_SRST
| BIT_UTSRST_HTX_SRST
,
529 static void sii8620_edid_read(struct sii8620
*ctx
, int ret
)
534 sii8620_set_upstream_edid(ctx
);
535 sii8620_hsic_init(ctx
);
536 sii8620_enable_hpd(ctx
);
539 static void sii8620_mr_devcap(struct sii8620
*ctx
)
541 u8 dcap
[MHL_DCAP_SIZE
];
542 struct device
*dev
= ctx
->dev
;
544 sii8620_read_buf(ctx
, REG_EDID_FIFO_RD_DATA
, dcap
, MHL_DCAP_SIZE
);
548 dev_info(dev
, "detected dongle MHL %d.%d, ChipID %02x%02x:%02x%02x\n",
549 dcap
[MHL_DCAP_MHL_VERSION
] / 16,
550 dcap
[MHL_DCAP_MHL_VERSION
] % 16,
551 dcap
[MHL_DCAP_ADOPTER_ID_H
], dcap
[MHL_DCAP_ADOPTER_ID_L
],
552 dcap
[MHL_DCAP_DEVICE_ID_H
], dcap
[MHL_DCAP_DEVICE_ID_L
]);
553 sii8620_update_array(ctx
->devcap
, dcap
, MHL_DCAP_SIZE
);
556 static void sii8620_mr_xdevcap(struct sii8620
*ctx
)
558 sii8620_read_buf(ctx
, REG_EDID_FIFO_RD_DATA
, ctx
->xdevcap
,
562 static void sii8620_mt_read_devcap_recv(struct sii8620
*ctx
,
563 struct sii8620_mt_msg
*msg
)
565 u8 ctrl
= BIT_EDID_CTRL_DEVCAP_SELECT_DEVCAP
566 | BIT_EDID_CTRL_EDID_FIFO_ADDR_AUTO
567 | BIT_EDID_CTRL_EDID_MODE_EN
;
569 if (msg
->reg
[0] == MHL_READ_XDEVCAP
)
570 ctrl
|= BIT_EDID_CTRL_XDEVCAP_EN
;
572 sii8620_write_seq(ctx
,
573 REG_INTR9_MASK
, BIT_INTR9_DEVCAP_DONE
| BIT_INTR9_EDID_DONE
574 | BIT_INTR9_EDID_ERROR
,
576 REG_EDID_FIFO_ADDR
, 0
579 if (msg
->reg
[0] == MHL_READ_XDEVCAP
)
580 sii8620_mr_xdevcap(ctx
);
582 sii8620_mr_devcap(ctx
);
585 static void sii8620_mt_read_devcap(struct sii8620
*ctx
, bool xdevcap
)
587 struct sii8620_mt_msg
*msg
= sii8620_mt_msg_new(ctx
);
592 msg
->reg
[0] = xdevcap
? MHL_READ_XDEVCAP
: MHL_READ_DEVCAP
;
593 msg
->send
= sii8620_mt_read_devcap_send
;
594 msg
->recv
= sii8620_mt_read_devcap_recv
;
597 static void sii8620_mt_read_devcap_reg_recv(struct sii8620
*ctx
,
598 struct sii8620_mt_msg
*msg
)
600 u8 reg
= msg
->reg
[0] & 0x7f;
602 if (msg
->reg
[0] & 0x80)
603 ctx
->xdevcap
[reg
] = msg
->ret
;
605 ctx
->devcap
[reg
] = msg
->ret
;
608 static void sii8620_mt_read_devcap_reg(struct sii8620
*ctx
, u8 reg
)
610 struct sii8620_mt_msg
*msg
= sii8620_mt_msg_new(ctx
);
615 msg
->reg
[0] = (reg
& 0x80) ? MHL_READ_XDEVCAP_REG
: MHL_READ_DEVCAP_REG
;
617 msg
->send
= sii8620_mt_msc_cmd_send
;
618 msg
->recv
= sii8620_mt_read_devcap_reg_recv
;
621 static inline void sii8620_mt_read_xdevcap_reg(struct sii8620
*ctx
, u8 reg
)
623 sii8620_mt_read_devcap_reg(ctx
, reg
| 0x80);
626 static void *sii8620_burst_get_tx_buf(struct sii8620
*ctx
, int len
)
628 u8
*buf
= &ctx
->burst
.tx_buf
[ctx
->burst
.tx_count
];
631 if (ctx
->burst
.tx_count
+ size
> ARRAY_SIZE(ctx
->burst
.tx_buf
)) {
632 dev_err(ctx
->dev
, "TX-BLK buffer exhausted\n");
633 ctx
->error
= -EINVAL
;
637 ctx
->burst
.tx_count
+= size
;
643 static u8
*sii8620_burst_get_rx_buf(struct sii8620
*ctx
, int len
)
645 u8
*buf
= &ctx
->burst
.rx_buf
[ctx
->burst
.rx_count
];
648 if (ctx
->burst
.tx_count
+ size
> ARRAY_SIZE(ctx
->burst
.tx_buf
)) {
649 dev_err(ctx
->dev
, "RX-BLK buffer exhausted\n");
650 ctx
->error
= -EINVAL
;
654 ctx
->burst
.rx_count
+= size
;
660 static void sii8620_burst_send(struct sii8620
*ctx
)
662 int tx_left
= ctx
->burst
.tx_count
;
663 u8
*d
= ctx
->burst
.tx_buf
;
665 while (tx_left
> 0) {
668 if (ctx
->burst
.r_count
+ len
> ctx
->burst
.r_size
)
670 d
[0] = min(ctx
->burst
.rx_ack
, 255);
671 ctx
->burst
.rx_ack
-= d
[0];
672 sii8620_write_buf(ctx
, REG_EMSC_XMIT_WRITE_PORT
, d
, len
);
673 ctx
->burst
.r_count
+= len
;
678 ctx
->burst
.tx_count
= tx_left
;
680 while (ctx
->burst
.rx_ack
> 0) {
681 u8 b
[2] = { min(ctx
->burst
.rx_ack
, 255), 0 };
683 if (ctx
->burst
.r_count
+ 2 > ctx
->burst
.r_size
)
685 ctx
->burst
.rx_ack
-= b
[0];
686 sii8620_write_buf(ctx
, REG_EMSC_XMIT_WRITE_PORT
, b
, 2);
687 ctx
->burst
.r_count
+= 2;
691 static void sii8620_burst_receive(struct sii8620
*ctx
)
696 sii8620_read_buf(ctx
, REG_EMSCRFIFOBCNTL
, buf
, 2);
697 count
= get_unaligned_le16(buf
);
699 int len
= min(count
, 3);
701 sii8620_read_buf(ctx
, REG_EMSC_RCV_READ_PORT
, buf
, len
);
703 ctx
->burst
.rx_ack
+= len
- 1;
704 ctx
->burst
.r_count
-= buf
[1];
705 if (ctx
->burst
.r_count
< 0)
706 ctx
->burst
.r_count
= 0;
708 if (len
< 3 || !buf
[2])
712 d
= sii8620_burst_get_rx_buf(ctx
, len
);
715 sii8620_read_buf(ctx
, REG_EMSC_RCV_READ_PORT
, d
, len
);
717 ctx
->burst
.rx_ack
+= len
;
721 static void sii8620_burst_tx_rbuf_info(struct sii8620
*ctx
, int size
)
723 struct mhl_burst_blk_rcv_buffer_info
*d
=
724 sii8620_burst_get_tx_buf(ctx
, sizeof(*d
));
728 d
->id
= cpu_to_be16(MHL_BURST_ID_BLK_RCV_BUFFER_INFO
);
729 d
->size
= cpu_to_le16(size
);
732 static u8
sii8620_checksum(void *ptr
, int size
)
734 u8
*d
= ptr
, sum
= 0;
742 static void sii8620_mhl_burst_hdr_set(struct mhl3_burst_header
*h
,
743 enum mhl_burst_id id
)
745 h
->id
= cpu_to_be16(id
);
746 h
->total_entries
= 1;
747 h
->sequence_index
= 1;
750 static void sii8620_burst_tx_bits_per_pixel_fmt(struct sii8620
*ctx
, u8 fmt
)
752 struct mhl_burst_bits_per_pixel_fmt
*d
;
753 const int size
= sizeof(*d
) + sizeof(d
->desc
[0]);
755 d
= sii8620_burst_get_tx_buf(ctx
, size
);
759 sii8620_mhl_burst_hdr_set(&d
->hdr
, MHL_BURST_ID_BITS_PER_PIXEL_FMT
);
761 d
->desc
[0].stream_id
= 0;
762 d
->desc
[0].pixel_format
= fmt
;
763 d
->hdr
.checksum
-= sii8620_checksum(d
, size
);
766 static void sii8620_burst_rx_all(struct sii8620
*ctx
)
768 u8
*d
= ctx
->burst
.rx_buf
;
769 int count
= ctx
->burst
.rx_count
;
771 while (count
-- > 0) {
773 int id
= get_unaligned_be16(&d
[0]);
776 case MHL_BURST_ID_BLK_RCV_BUFFER_INFO
:
777 ctx
->burst
.r_size
= get_unaligned_le16(&d
[2]);
785 ctx
->burst
.rx_count
= 0;
788 static void sii8620_fetch_edid(struct sii8620
*ctx
)
790 u8 lm_ddc
, ddc_cmd
, int3
, cbus
;
792 int edid_len
= EDID_LENGTH
;
795 sii8620_readb(ctx
, REG_CBUS_STATUS
);
796 lm_ddc
= sii8620_readb(ctx
, REG_LM_DDC
);
797 ddc_cmd
= sii8620_readb(ctx
, REG_DDC_CMD
);
799 sii8620_write_seq(ctx
,
801 REG_EDID_CTRL
, BIT_EDID_CTRL_EDID_FIFO_ADDR_AUTO
,
802 REG_HDCP2X_POLL_CS
, 0x71,
803 REG_HDCP2X_CTRL_0
, BIT_HDCP2X_CTRL_0_HDCP2X_HDCPTX
,
804 REG_LM_DDC
, lm_ddc
| BIT_LM_DDC_SW_TPI_EN_DISABLED
,
807 for (i
= 0; i
< 256; ++i
) {
808 u8 ddc_stat
= sii8620_readb(ctx
, REG_DDC_STATUS
);
810 if (!(ddc_stat
& BIT_DDC_STATUS_DDC_I2C_IN_PROG
))
812 sii8620_write(ctx
, REG_DDC_STATUS
,
813 BIT_DDC_STATUS_DDC_FIFO_EMPTY
);
816 sii8620_write(ctx
, REG_DDC_ADDR
, 0x50 << 1);
818 edid
= kmalloc(EDID_LENGTH
, GFP_KERNEL
);
820 ctx
->error
= -ENOMEM
;
824 #define FETCH_SIZE 16
825 for (fetched
= 0; fetched
< edid_len
; fetched
+= FETCH_SIZE
) {
826 sii8620_readb(ctx
, REG_DDC_STATUS
);
827 sii8620_write_seq(ctx
,
828 REG_DDC_CMD
, ddc_cmd
| VAL_DDC_CMD_DDC_CMD_ABORT
,
829 REG_DDC_CMD
, ddc_cmd
| VAL_DDC_CMD_DDC_CMD_CLEAR_FIFO
,
830 REG_DDC_STATUS
, BIT_DDC_STATUS_DDC_FIFO_EMPTY
832 sii8620_write_seq(ctx
,
833 REG_DDC_SEGM
, fetched
>> 8,
834 REG_DDC_OFFSET
, fetched
& 0xff,
835 REG_DDC_DIN_CNT1
, FETCH_SIZE
,
837 REG_DDC_CMD
, ddc_cmd
| VAL_DDC_CMD_ENH_DDC_READ_NO_ACK
841 int3
= sii8620_readb(ctx
, REG_INTR3
);
842 cbus
= sii8620_readb(ctx
, REG_CBUS_STATUS
);
844 if (int3
& BIT_DDC_CMD_DONE
)
847 if (!(cbus
& BIT_CBUS_STATUS_CBUS_CONNECTED
)) {
854 sii8620_readb(ctx
, REG_DDC_STATUS
);
855 while (sii8620_readb(ctx
, REG_DDC_DOUT_CNT
) < FETCH_SIZE
)
856 usleep_range(10, 20);
858 sii8620_read_buf(ctx
, REG_DDC_DATA
, edid
+ fetched
, FETCH_SIZE
);
859 if (fetched
+ FETCH_SIZE
== EDID_LENGTH
) {
860 u8 ext
= ((struct edid
*)edid
)->extensions
;
865 edid_len
+= ext
* EDID_LENGTH
;
866 new_edid
= krealloc(edid
, edid_len
, GFP_KERNEL
);
869 ctx
->error
= -ENOMEM
;
877 sii8620_write_seq(ctx
,
878 REG_INTR3_MASK
, BIT_DDC_CMD_DONE
,
884 ctx
->edid
= (struct edid
*)edid
;
887 static void sii8620_set_upstream_edid(struct sii8620
*ctx
)
889 sii8620_setbits(ctx
, REG_DPD
, BIT_DPD_PDNRX12
| BIT_DPD_PDIDCK_N
890 | BIT_DPD_PD_MHL_CLK_N
, 0xff);
892 sii8620_write_seq_static(ctx
,
893 REG_RX_HDMI_CTRL3
, 0x00,
894 REG_PKT_FILTER_0
, 0xFF,
895 REG_PKT_FILTER_1
, 0xFF,
896 REG_ALICE0_BW_I2C
, 0x06
899 sii8620_setbits(ctx
, REG_RX_HDMI_CLR_BUFFER
,
900 BIT_RX_HDMI_CLR_BUFFER_VSI_CLR_EN
, 0xff);
902 sii8620_write_seq_static(ctx
,
903 REG_EDID_CTRL
, BIT_EDID_CTRL_EDID_FIFO_ADDR_AUTO
904 | BIT_EDID_CTRL_EDID_MODE_EN
,
905 REG_EDID_FIFO_ADDR
, 0,
908 sii8620_write_buf(ctx
, REG_EDID_FIFO_WR_DATA
, (u8
*)ctx
->edid
,
909 (ctx
->edid
->extensions
+ 1) * EDID_LENGTH
);
911 sii8620_write_seq_static(ctx
,
912 REG_EDID_CTRL
, BIT_EDID_CTRL_EDID_PRIME_VALID
913 | BIT_EDID_CTRL_EDID_FIFO_ADDR_AUTO
914 | BIT_EDID_CTRL_EDID_MODE_EN
,
915 REG_INTR5_MASK
, BIT_INTR_SCDT_CHANGE
,
920 static void sii8620_xtal_set_rate(struct sii8620
*ctx
)
922 static const struct {
927 { 19200, 0x04, 0x53 },
928 { 20000, 0x04, 0x62 },
929 { 24000, 0x05, 0x75 },
930 { 30000, 0x06, 0x92 },
931 { 38400, 0x0c, 0xbc },
933 unsigned long rate
= clk_get_rate(ctx
->clk_xtal
) / 1000;
936 for (i
= 0; i
< ARRAY_SIZE(rates
) - 1; ++i
)
937 if (rate
<= rates
[i
].rate
)
940 if (rate
!= rates
[i
].rate
)
941 dev_err(ctx
->dev
, "xtal clock rate(%lukHz) not supported, setting MHL for %ukHz.\n",
942 rate
, rates
[i
].rate
);
944 sii8620_write(ctx
, REG_DIV_CTL_MAIN
, rates
[i
].div
);
945 sii8620_write(ctx
, REG_HDCP2X_TP1
, rates
[i
].tp1
);
948 static int sii8620_hw_on(struct sii8620
*ctx
)
952 ret
= regulator_bulk_enable(ARRAY_SIZE(ctx
->supplies
), ctx
->supplies
);
955 usleep_range(10000, 20000);
956 return clk_prepare_enable(ctx
->clk_xtal
);
959 static int sii8620_hw_off(struct sii8620
*ctx
)
961 clk_disable_unprepare(ctx
->clk_xtal
);
962 gpiod_set_value(ctx
->gpio_reset
, 1);
963 return regulator_bulk_disable(ARRAY_SIZE(ctx
->supplies
), ctx
->supplies
);
966 static void sii8620_hw_reset(struct sii8620
*ctx
)
968 usleep_range(10000, 20000);
969 gpiod_set_value(ctx
->gpio_reset
, 0);
970 usleep_range(5000, 20000);
971 gpiod_set_value(ctx
->gpio_reset
, 1);
972 usleep_range(10000, 20000);
973 gpiod_set_value(ctx
->gpio_reset
, 0);
977 static void sii8620_cbus_reset(struct sii8620
*ctx
)
979 sii8620_write(ctx
, REG_PWD_SRST
, BIT_PWD_SRST_CBUS_RST
980 | BIT_PWD_SRST_CBUS_RST_SW_EN
);
981 usleep_range(10000, 20000);
982 sii8620_write(ctx
, REG_PWD_SRST
, BIT_PWD_SRST_CBUS_RST_SW_EN
);
985 static void sii8620_set_auto_zone(struct sii8620
*ctx
)
987 if (ctx
->mode
!= CM_MHL1
) {
988 sii8620_write_seq_static(ctx
,
989 REG_TX_ZONE_CTL1
, 0x0,
990 REG_MHL_PLL_CTL0
, VAL_MHL_PLL_CTL0_HDMI_CLK_RATIO_1X
991 | BIT_MHL_PLL_CTL0_CRYSTAL_CLK_SEL
992 | BIT_MHL_PLL_CTL0_ZONE_MASK_OE
995 sii8620_write_seq_static(ctx
,
996 REG_TX_ZONE_CTL1
, VAL_TX_ZONE_CTL1_TX_ZONE_CTRL_MODE
,
997 REG_MHL_PLL_CTL0
, VAL_MHL_PLL_CTL0_HDMI_CLK_RATIO_1X
998 | BIT_MHL_PLL_CTL0_ZONE_MASK_OE
1003 static void sii8620_stop_video(struct sii8620
*ctx
)
1005 u8
uninitialized_var(val
);
1007 sii8620_write_seq_static(ctx
,
1009 REG_HDCP2X_INTR0_MASK
, 0,
1010 REG_TPI_COPP_DATA2
, 0,
1011 REG_TPI_INTR_ST0
, ~0,
1014 switch (ctx
->sink_type
) {
1016 val
= BIT_TPI_SC_REG_TMDS_OE_POWER_DOWN
1017 | BIT_TPI_SC_TPI_AV_MUTE
;
1021 val
= BIT_TPI_SC_REG_TMDS_OE_POWER_DOWN
1022 | BIT_TPI_SC_TPI_AV_MUTE
1023 | BIT_TPI_SC_TPI_OUTPUT_MODE_0_HDMI
;
1027 sii8620_write(ctx
, REG_TPI_SC
, val
);
1030 static void sii8620_set_format(struct sii8620
*ctx
)
1034 if (sii8620_is_mhl3(ctx
)) {
1035 sii8620_setbits(ctx
, REG_M3_P0CTRL
,
1036 BIT_M3_P0CTRL_MHL3_P0_PIXEL_MODE_PACKED
,
1037 ctx
->use_packed_pixel
? ~0 : 0);
1039 if (ctx
->use_packed_pixel
)
1040 sii8620_write_seq_static(ctx
,
1041 REG_VID_MODE
, BIT_VID_MODE_M1080P
,
1042 REG_MHL_TOP_CTL
, BIT_MHL_TOP_CTL_MHL_PP_SEL
| 1,
1043 REG_MHLTX_CTL6
, 0x60
1046 sii8620_write_seq_static(ctx
,
1049 REG_MHLTX_CTL6
, 0xa0
1053 if (ctx
->use_packed_pixel
)
1054 out_fmt
= VAL_TPI_FORMAT(YCBCR422
, FULL
) |
1055 BIT_TPI_OUTPUT_CSCMODE709
;
1057 out_fmt
= VAL_TPI_FORMAT(RGB
, FULL
);
1059 sii8620_write_seq(ctx
,
1060 REG_TPI_INPUT
, VAL_TPI_FORMAT(RGB
, FULL
),
1061 REG_TPI_OUTPUT
, out_fmt
,
1065 static int mhl3_infoframe_init(struct mhl3_infoframe
*frame
)
1067 memset(frame
, 0, sizeof(*frame
));
1070 frame
->hev_format
= -1;
1074 static ssize_t
mhl3_infoframe_pack(struct mhl3_infoframe
*frame
,
1075 void *buffer
, size_t size
)
1077 const int frm_len
= HDMI_INFOFRAME_HEADER_SIZE
+ MHL3_INFOFRAME_SIZE
;
1083 memset(buffer
, 0, size
);
1084 ptr
[0] = HDMI_INFOFRAME_TYPE_VENDOR
;
1085 ptr
[1] = frame
->version
;
1086 ptr
[2] = MHL3_INFOFRAME_SIZE
;
1087 ptr
[4] = MHL3_IEEE_OUI
& 0xff;
1088 ptr
[5] = (MHL3_IEEE_OUI
>> 8) & 0xff;
1089 ptr
[6] = (MHL3_IEEE_OUI
>> 16) & 0xff;
1090 ptr
[7] = frame
->video_format
& 0x3;
1091 ptr
[7] |= (frame
->format_type
& 0x7) << 2;
1092 ptr
[7] |= frame
->sep_audio
? BIT(5) : 0;
1093 if (frame
->hev_format
>= 0) {
1095 ptr
[10] = (frame
->hev_format
>> 8) & 0xff;
1096 ptr
[11] = frame
->hev_format
& 0xff;
1098 if (frame
->av_delay
) {
1099 bool sign
= frame
->av_delay
< 0;
1100 int delay
= sign
? -frame
->av_delay
: frame
->av_delay
;
1102 ptr
[12] = (delay
>> 16) & 0xf;
1105 ptr
[13] = (delay
>> 8) & 0xff;
1106 ptr
[14] = delay
& 0xff;
1108 ptr
[3] -= sii8620_checksum(buffer
, frm_len
);
1112 static void sii8620_set_infoframes(struct sii8620
*ctx
)
1114 struct mhl3_infoframe mhl_frm
;
1115 union hdmi_infoframe frm
;
1119 if (!sii8620_is_mhl3(ctx
) || !ctx
->use_packed_pixel
) {
1120 sii8620_write(ctx
, REG_TPI_SC
,
1121 BIT_TPI_SC_TPI_OUTPUT_MODE_0_HDMI
);
1122 sii8620_write_buf(ctx
, REG_TPI_AVI_CHSUM
, ctx
->avif
+ 3,
1123 ARRAY_SIZE(ctx
->avif
) - 3);
1124 sii8620_write(ctx
, REG_PKT_FILTER_0
,
1125 BIT_PKT_FILTER_0_DROP_CEA_GAMUT_PKT
|
1126 BIT_PKT_FILTER_0_DROP_MPEG_PKT
|
1127 BIT_PKT_FILTER_0_DROP_GCP_PKT
,
1128 BIT_PKT_FILTER_1_DROP_GEN_PKT
);
1132 ret
= hdmi_avi_infoframe_init(&frm
.avi
);
1133 frm
.avi
.colorspace
= HDMI_COLORSPACE_YUV422
;
1134 frm
.avi
.active_aspect
= HDMI_ACTIVE_ASPECT_PICTURE
;
1135 frm
.avi
.picture_aspect
= HDMI_PICTURE_ASPECT_16_9
;
1136 frm
.avi
.colorimetry
= HDMI_COLORIMETRY_ITU_709
;
1137 frm
.avi
.video_code
= ctx
->video_code
;
1139 ret
= hdmi_avi_infoframe_pack(&frm
.avi
, buf
, ARRAY_SIZE(buf
));
1141 sii8620_write_buf(ctx
, REG_TPI_AVI_CHSUM
, buf
+ 3, ret
- 3);
1142 sii8620_write(ctx
, REG_PKT_FILTER_0
,
1143 BIT_PKT_FILTER_0_DROP_CEA_GAMUT_PKT
|
1144 BIT_PKT_FILTER_0_DROP_MPEG_PKT
|
1145 BIT_PKT_FILTER_0_DROP_AVI_PKT
|
1146 BIT_PKT_FILTER_0_DROP_GCP_PKT
,
1147 BIT_PKT_FILTER_1_VSI_OVERRIDE_DIS
|
1148 BIT_PKT_FILTER_1_DROP_GEN_PKT
|
1149 BIT_PKT_FILTER_1_DROP_VSIF_PKT
);
1151 sii8620_write(ctx
, REG_TPI_INFO_FSEL
, BIT_TPI_INFO_FSEL_EN
1152 | BIT_TPI_INFO_FSEL_RPT
| VAL_TPI_INFO_FSEL_VSI
);
1153 ret
= mhl3_infoframe_init(&mhl_frm
);
1155 ret
= mhl3_infoframe_pack(&mhl_frm
, buf
, ARRAY_SIZE(buf
));
1156 sii8620_write_buf(ctx
, REG_TPI_INFO_B0
, buf
, ret
);
1159 static void sii8620_start_hdmi(struct sii8620
*ctx
)
1161 sii8620_write_seq_static(ctx
,
1162 REG_RX_HDMI_CTRL2
, VAL_RX_HDMI_CTRL2_DEFVAL
1163 | BIT_RX_HDMI_CTRL2_USE_AV_MUTE
,
1164 REG_VID_OVRRD
, BIT_VID_OVRRD_PP_AUTO_DISABLE
1165 | BIT_VID_OVRRD_M1080P_OVRRD
);
1166 sii8620_set_format(ctx
);
1168 if (!sii8620_is_mhl3(ctx
)) {
1169 sii8620_mt_write_stat(ctx
, MHL_DST_REG(LINK_MODE
),
1170 MHL_DST_LM_CLK_MODE_NORMAL
| MHL_DST_LM_PATH_ENABLED
);
1171 sii8620_set_auto_zone(ctx
);
1173 static const struct {
1179 { 150000, VAL_TX_ZONE_CTL3_TX_ZONE_1_5GBPS
,
1180 MHL_XDS_LINK_RATE_1_5_GBPS
, 0x38 },
1181 { 300000, VAL_TX_ZONE_CTL3_TX_ZONE_3GBPS
,
1182 MHL_XDS_LINK_RATE_3_0_GBPS
, 0x40 },
1183 { 600000, VAL_TX_ZONE_CTL3_TX_ZONE_6GBPS
,
1184 MHL_XDS_LINK_RATE_6_0_GBPS
, 0x40 },
1186 u8 p0_ctrl
= BIT_M3_P0CTRL_MHL3_P0_PORT_EN
;
1187 int clk
= ctx
->pixel_clock
* (ctx
->use_packed_pixel
? 2 : 3);
1190 for (i
= 0; i
< ARRAY_SIZE(clk_spec
); ++i
)
1191 if (clk
< clk_spec
[i
].max_clk
)
1194 if (100 * clk
>= 98 * clk_spec
[i
].max_clk
)
1195 p0_ctrl
|= BIT_M3_P0CTRL_MHL3_P0_UNLIMIT_EN
;
1197 sii8620_burst_tx_bits_per_pixel_fmt(ctx
, ctx
->use_packed_pixel
);
1198 sii8620_burst_send(ctx
);
1199 sii8620_write_seq(ctx
,
1200 REG_MHL_DP_CTL0
, 0xf0,
1201 REG_MHL3_TX_ZONE_CTL
, clk_spec
[i
].zone
);
1202 sii8620_setbits(ctx
, REG_M3_P0CTRL
,
1203 BIT_M3_P0CTRL_MHL3_P0_PORT_EN
1204 | BIT_M3_P0CTRL_MHL3_P0_UNLIMIT_EN
, p0_ctrl
);
1205 sii8620_setbits(ctx
, REG_M3_POSTM
, MSK_M3_POSTM_RRP_DECODE
,
1206 clk_spec
[i
].rrp_decode
);
1207 sii8620_write_seq_static(ctx
,
1208 REG_M3_CTRL
, VAL_M3_CTRL_MHL3_VALUE
1209 | BIT_M3_CTRL_H2M_SWRST
,
1210 REG_M3_CTRL
, VAL_M3_CTRL_MHL3_VALUE
1212 sii8620_mt_write_stat(ctx
, MHL_XDS_REG(AVLINK_MODE_CONTROL
),
1213 clk_spec
[i
].link_rate
);
1216 sii8620_set_infoframes(ctx
);
1219 static void sii8620_start_video(struct sii8620
*ctx
)
1221 if (!sii8620_is_mhl3(ctx
))
1222 sii8620_stop_video(ctx
);
1224 switch (ctx
->sink_type
) {
1226 sii8620_start_hdmi(ctx
);
1234 static void sii8620_disable_hpd(struct sii8620
*ctx
)
1236 sii8620_setbits(ctx
, REG_EDID_CTRL
, BIT_EDID_CTRL_EDID_PRIME_VALID
, 0);
1237 sii8620_write_seq_static(ctx
,
1238 REG_HPD_CTRL
, BIT_HPD_CTRL_HPD_OUT_OVR_EN
,
1243 static void sii8620_enable_hpd(struct sii8620
*ctx
)
1245 sii8620_setbits(ctx
, REG_TMDS_CSTAT_P3
,
1246 BIT_TMDS_CSTAT_P3_SCDT_CLR_AVI_DIS
1247 | BIT_TMDS_CSTAT_P3_CLR_AVI
, ~0);
1248 sii8620_write_seq_static(ctx
,
1249 REG_HPD_CTRL
, BIT_HPD_CTRL_HPD_OUT_OVR_EN
1250 | BIT_HPD_CTRL_HPD_HIGH
,
1254 static void sii8620_mhl_discover(struct sii8620
*ctx
)
1256 sii8620_write_seq_static(ctx
,
1257 REG_DISC_CTRL9
, BIT_DISC_CTRL9_WAKE_DRVFLT
1258 | BIT_DISC_CTRL9_DISC_PULSE_PROCEED
,
1259 REG_DISC_CTRL4
, VAL_DISC_CTRL4(VAL_PUP_5K
, VAL_PUP_20K
),
1260 REG_CBUS_DISC_INTR0_MASK
, BIT_MHL3_EST_INT
1262 | BIT_NOT_MHL_EST_INT
1263 | BIT_CBUS_MHL3_DISCON_INT
1264 | BIT_CBUS_MHL12_DISCON_INT
1265 | BIT_RGND_READY_INT
,
1266 REG_MHL_PLL_CTL0
, VAL_MHL_PLL_CTL0_HDMI_CLK_RATIO_1X
1267 | BIT_MHL_PLL_CTL0_CRYSTAL_CLK_SEL
1268 | BIT_MHL_PLL_CTL0_ZONE_MASK_OE
,
1269 REG_MHL_DP_CTL0
, BIT_MHL_DP_CTL0_DP_OE
1270 | BIT_MHL_DP_CTL0_TX_OE_OVR
,
1271 REG_M3_CTRL
, VAL_M3_CTRL_MHL3_VALUE
,
1272 REG_MHL_DP_CTL1
, 0xA2,
1273 REG_MHL_DP_CTL2
, 0x03,
1274 REG_MHL_DP_CTL3
, 0x35,
1275 REG_MHL_DP_CTL5
, 0x02,
1276 REG_MHL_DP_CTL6
, 0x02,
1277 REG_MHL_DP_CTL7
, 0x03,
1279 REG_DPD
, BIT_DPD_PWRON_PLL
| BIT_DPD_PDNTX12
1280 | BIT_DPD_OSC_EN
| BIT_DPD_PWRON_HSIC
,
1281 REG_COC_INTR_MASK
, BIT_COC_PLL_LOCK_STATUS_CHANGE
1282 | BIT_COC_CALIBRATION_DONE
,
1283 REG_CBUS_INT_1_MASK
, BIT_CBUS_MSC_ABORT_RCVD
1284 | BIT_CBUS_CMD_ABORT
,
1285 REG_CBUS_INT_0_MASK
, BIT_CBUS_MSC_MT_DONE
1287 | BIT_CBUS_MSC_MR_WRITE_STAT
1288 | BIT_CBUS_MSC_MR_MSC_MSG
1289 | BIT_CBUS_MSC_MR_WRITE_BURST
1290 | BIT_CBUS_MSC_MR_SET_INT
1291 | BIT_CBUS_MSC_MT_DONE_NACK
1295 static void sii8620_peer_specific_init(struct sii8620
*ctx
)
1297 if (sii8620_is_mhl3(ctx
))
1298 sii8620_write_seq_static(ctx
,
1299 REG_SYS_CTRL1
, BIT_SYS_CTRL1_BLOCK_DDC_BY_HPD
,
1301 BIT_EMSCINTR1_EMSC_TRAINING_COMMA_ERR
1304 sii8620_write_seq_static(ctx
,
1305 REG_HDCP2X_INTR0_MASK
, 0x00,
1306 REG_EMSCINTRMASK1
, 0x00,
1307 REG_HDCP2X_INTR0
, 0xFF,
1309 REG_SYS_CTRL1
, BIT_SYS_CTRL1_BLOCK_DDC_BY_HPD
1310 | BIT_SYS_CTRL1_TX_CTRL_HDMI
1314 #define SII8620_MHL_VERSION 0x32
1315 #define SII8620_SCRATCHPAD_SIZE 16
1316 #define SII8620_INT_STAT_SIZE 0x33
1318 static void sii8620_set_dev_cap(struct sii8620
*ctx
)
1320 static const u8 devcap
[MHL_DCAP_SIZE
] = {
1321 [MHL_DCAP_MHL_VERSION
] = SII8620_MHL_VERSION
,
1322 [MHL_DCAP_CAT
] = MHL_DCAP_CAT_SOURCE
| MHL_DCAP_CAT_POWER
,
1323 [MHL_DCAP_ADOPTER_ID_H
] = 0x01,
1324 [MHL_DCAP_ADOPTER_ID_L
] = 0x41,
1325 [MHL_DCAP_VID_LINK_MODE
] = MHL_DCAP_VID_LINK_RGB444
1326 | MHL_DCAP_VID_LINK_PPIXEL
1327 | MHL_DCAP_VID_LINK_16BPP
,
1328 [MHL_DCAP_AUD_LINK_MODE
] = MHL_DCAP_AUD_LINK_2CH
,
1329 [MHL_DCAP_VIDEO_TYPE
] = MHL_DCAP_VT_GRAPHICS
,
1330 [MHL_DCAP_LOG_DEV_MAP
] = MHL_DCAP_LD_GUI
,
1331 [MHL_DCAP_BANDWIDTH
] = 0x0f,
1332 [MHL_DCAP_FEATURE_FLAG
] = MHL_DCAP_FEATURE_RCP_SUPPORT
1333 | MHL_DCAP_FEATURE_RAP_SUPPORT
1334 | MHL_DCAP_FEATURE_SP_SUPPORT
,
1335 [MHL_DCAP_SCRATCHPAD_SIZE
] = SII8620_SCRATCHPAD_SIZE
,
1336 [MHL_DCAP_INT_STAT_SIZE
] = SII8620_INT_STAT_SIZE
,
1338 static const u8 xdcap
[MHL_XDC_SIZE
] = {
1339 [MHL_XDC_ECBUS_SPEEDS
] = MHL_XDC_ECBUS_S_075
1340 | MHL_XDC_ECBUS_S_8BIT
,
1341 [MHL_XDC_TMDS_SPEEDS
] = MHL_XDC_TMDS_150
1342 | MHL_XDC_TMDS_300
| MHL_XDC_TMDS_600
,
1343 [MHL_XDC_ECBUS_ROLES
] = MHL_XDC_DEV_HOST
,
1344 [MHL_XDC_LOG_DEV_MAPX
] = MHL_XDC_LD_PHONE
,
1347 sii8620_write_buf(ctx
, REG_MHL_DEVCAP_0
, devcap
, ARRAY_SIZE(devcap
));
1348 sii8620_write_buf(ctx
, REG_MHL_EXTDEVCAP_0
, xdcap
, ARRAY_SIZE(xdcap
));
1351 static void sii8620_mhl_init(struct sii8620
*ctx
)
1353 sii8620_write_seq_static(ctx
,
1354 REG_DISC_CTRL4
, VAL_DISC_CTRL4(VAL_PUP_OFF
, VAL_PUP_20K
),
1355 REG_CBUS_MSC_COMPAT_CTRL
,
1356 BIT_CBUS_MSC_COMPAT_CTRL_XDEVCAP_EN
,
1359 sii8620_peer_specific_init(ctx
);
1361 sii8620_disable_hpd(ctx
);
1363 sii8620_write_seq_static(ctx
,
1364 REG_EDID_CTRL
, BIT_EDID_CTRL_EDID_FIFO_ADDR_AUTO
,
1365 REG_DISC_CTRL9
, BIT_DISC_CTRL9_WAKE_DRVFLT
1366 | BIT_DISC_CTRL9_WAKE_PULSE_BYPASS
,
1367 REG_TMDS0_CCTRL1
, 0x90,
1368 REG_TMDS_CLK_EN
, 0x01,
1369 REG_TMDS_CH_EN
, 0x11,
1371 REG_ALICE0_ZONE_CTRL
, 0xE8,
1372 REG_ALICE0_MODE_CTRL
, 0x04,
1374 sii8620_setbits(ctx
, REG_LM_DDC
, BIT_LM_DDC_SW_TPI_EN_DISABLED
, 0);
1375 sii8620_write_seq_static(ctx
,
1376 REG_TPI_HW_OPT3
, 0x76,
1377 REG_TMDS_CCTRL
, BIT_TMDS_CCTRL_TMDS_OE
,
1380 sii8620_set_dev_cap(ctx
);
1381 sii8620_write_seq_static(ctx
,
1382 REG_MDT_XMIT_TIMEOUT
, 100,
1383 REG_MDT_XMIT_CTRL
, 0x03,
1384 REG_MDT_XFIFO_STAT
, 0x00,
1385 REG_MDT_RCV_TIMEOUT
, 100,
1386 REG_CBUS_LINK_CTRL_8
, 0x1D,
1389 sii8620_start_gen2_write_burst(ctx
);
1390 sii8620_write_seq_static(ctx
,
1391 REG_BIST_CTRL
, 0x00,
1395 REG_COC_CTL11
, 0xF8,
1396 REG_COC_CTL17
, 0x61,
1397 REG_COC_CTL18
, 0x46,
1398 REG_COC_CTL19
, 0x15,
1399 REG_COC_CTL1A
, 0x01,
1400 REG_MHL_COC_CTL3
, BIT_MHL_COC_CTL3_COC_AECHO_EN
,
1401 REG_MHL_COC_CTL4
, 0x2D,
1402 REG_MHL_COC_CTL5
, 0xF9,
1403 REG_MSC_HEARTBEAT_CTRL
, 0x27,
1405 sii8620_disable_gen2_write_burst(ctx
);
1407 sii8620_mt_write_stat(ctx
, MHL_DST_REG(VERSION
), SII8620_MHL_VERSION
);
1408 sii8620_mt_write_stat(ctx
, MHL_DST_REG(CONNECTED_RDY
),
1409 MHL_DST_CONN_DCAP_RDY
| MHL_DST_CONN_XDEVCAPP_SUPP
1410 | MHL_DST_CONN_POW_STAT
);
1411 sii8620_mt_set_int(ctx
, MHL_INT_REG(RCHANGE
), MHL_INT_RC_DCAP_CHG
);
1414 static void sii8620_emsc_enable(struct sii8620
*ctx
)
1418 sii8620_setbits(ctx
, REG_GENCTL
, BIT_GENCTL_EMSC_EN
1419 | BIT_GENCTL_CLR_EMSC_RFIFO
1420 | BIT_GENCTL_CLR_EMSC_XFIFO
, ~0);
1421 sii8620_setbits(ctx
, REG_GENCTL
, BIT_GENCTL_CLR_EMSC_RFIFO
1422 | BIT_GENCTL_CLR_EMSC_XFIFO
, 0);
1423 sii8620_setbits(ctx
, REG_COMMECNT
, BIT_COMMECNT_I2C_TO_EMSC_EN
, ~0);
1424 reg
= sii8620_readb(ctx
, REG_EMSCINTR
);
1425 sii8620_write(ctx
, REG_EMSCINTR
, reg
);
1426 sii8620_write(ctx
, REG_EMSCINTRMASK
, BIT_EMSCINTR_SPI_DVLD
);
1429 static int sii8620_wait_for_fsm_state(struct sii8620
*ctx
, u8 state
)
1433 for (i
= 0; i
< 10; ++i
) {
1434 u8 s
= sii8620_readb(ctx
, REG_COC_STAT_0
);
1436 if ((s
& MSK_COC_STAT_0_FSM_STATE
) == state
)
1438 if (!(s
& BIT_COC_STAT_0_PLL_LOCKED
))
1440 usleep_range(4000, 6000);
1445 static void sii8620_set_mode(struct sii8620
*ctx
, enum sii8620_mode mode
)
1449 if (ctx
->mode
== mode
)
1454 sii8620_write_seq_static(ctx
,
1455 REG_CBUS_MSC_COMPAT_CTRL
, 0x02,
1456 REG_M3_CTRL
, VAL_M3_CTRL_MHL1_2_VALUE
,
1457 REG_DPD
, BIT_DPD_PWRON_PLL
| BIT_DPD_PDNTX12
1459 REG_COC_INTR_MASK
, 0
1464 sii8620_write(ctx
, REG_M3_CTRL
, VAL_M3_CTRL_MHL3_VALUE
);
1468 sii8620_emsc_enable(ctx
);
1469 sii8620_write_seq_static(ctx
,
1472 REG_TTXHSICNUMS
, 0x14,
1473 REG_TRXHSICNUMS
, 0x14,
1474 REG_TTXTOTNUMS
, 0x18,
1475 REG_TRXTOTNUMS
, 0x18,
1476 REG_PWD_SRST
, BIT_PWD_SRST_COC_DOC_RST
1477 | BIT_PWD_SRST_CBUS_RST_SW_EN
,
1478 REG_MHL_COC_CTL1
, 0xbd,
1479 REG_PWD_SRST
, BIT_PWD_SRST_CBUS_RST_SW_EN
,
1482 REG_COC_CTL14
, 0x03,
1483 REG_COC_CTL15
, 0x80,
1484 REG_MHL_DP_CTL6
, BIT_MHL_DP_CTL6_DP_TAP1_SGN
1485 | BIT_MHL_DP_CTL6_DP_TAP1_EN
1486 | BIT_MHL_DP_CTL6_DT_PREDRV_FEEDCAP_EN
,
1487 REG_MHL_DP_CTL8
, 0x03
1489 ret
= sii8620_wait_for_fsm_state(ctx
, 0x03);
1490 sii8620_write_seq_static(ctx
,
1491 REG_COC_CTL14
, 0x00,
1495 sii8620_write(ctx
, REG_CBUS3_CNVT
, 0x85);
1497 sii8620_disconnect(ctx
);
1499 case CM_DISCONNECTED
:
1503 dev_err(ctx
->dev
, "%s mode %d not supported\n", __func__
, mode
);
1507 sii8620_set_auto_zone(ctx
);
1509 if (mode
!= CM_MHL1
)
1512 sii8620_write_seq_static(ctx
,
1513 REG_MHL_DP_CTL0
, 0xBC,
1514 REG_MHL_DP_CTL1
, 0xBB,
1515 REG_MHL_DP_CTL3
, 0x48,
1516 REG_MHL_DP_CTL5
, 0x39,
1517 REG_MHL_DP_CTL2
, 0x2A,
1518 REG_MHL_DP_CTL6
, 0x2A,
1519 REG_MHL_DP_CTL7
, 0x08
1523 static void sii8620_disconnect(struct sii8620
*ctx
)
1525 sii8620_disable_gen2_write_burst(ctx
);
1526 sii8620_stop_video(ctx
);
1528 sii8620_cbus_reset(ctx
);
1529 sii8620_set_mode(ctx
, CM_DISCONNECTED
);
1530 sii8620_write_seq_static(ctx
,
1531 REG_TX_ZONE_CTL1
, 0,
1532 REG_MHL_PLL_CTL0
, 0x07,
1534 REG_CBUS3_CNVT
, 0x84,
1535 REG_COC_CTL14
, 0x00,
1538 REG_MHL_PLL_CTL0
, VAL_MHL_PLL_CTL0_HDMI_CLK_RATIO_1X
1539 | BIT_MHL_PLL_CTL0_CRYSTAL_CLK_SEL
1540 | BIT_MHL_PLL_CTL0_ZONE_MASK_OE
,
1541 REG_MHL_DP_CTL0
, BIT_MHL_DP_CTL0_DP_OE
1542 | BIT_MHL_DP_CTL0_TX_OE_OVR
,
1543 REG_MHL_DP_CTL1
, 0xBB,
1544 REG_MHL_DP_CTL3
, 0x48,
1545 REG_MHL_DP_CTL5
, 0x3F,
1546 REG_MHL_DP_CTL2
, 0x2F,
1547 REG_MHL_DP_CTL6
, 0x2A,
1548 REG_MHL_DP_CTL7
, 0x03
1550 sii8620_disable_hpd(ctx
);
1551 sii8620_write_seq_static(ctx
,
1552 REG_M3_CTRL
, VAL_M3_CTRL_MHL3_VALUE
,
1553 REG_MHL_COC_CTL1
, 0x07,
1554 REG_DISC_CTRL4
, VAL_DISC_CTRL4(VAL_PUP_OFF
, VAL_PUP_20K
),
1555 REG_DISC_CTRL8
, 0x00,
1556 REG_DISC_CTRL9
, BIT_DISC_CTRL9_WAKE_DRVFLT
1557 | BIT_DISC_CTRL9_WAKE_PULSE_BYPASS
,
1559 REG_MSC_HEARTBEAT_CTRL
, 0x27,
1560 REG_DISC_CTRL1
, 0x25,
1561 REG_CBUS_DISC_INTR0
, (u8
)~BIT_RGND_READY_INT
,
1562 REG_CBUS_DISC_INTR0_MASK
, BIT_RGND_READY_INT
,
1563 REG_MDT_INT_1
, 0xff,
1564 REG_MDT_INT_1_MASK
, 0x00,
1565 REG_MDT_INT_0
, 0xff,
1566 REG_MDT_INT_0_MASK
, 0x00,
1568 REG_COC_INTR_MASK
, 0x00,
1571 REG_CBUS_INT_0
, 0xff,
1572 REG_CBUS_INT_0_MASK
, 0x00,
1573 REG_CBUS_INT_1
, 0xff,
1574 REG_CBUS_INT_1_MASK
, 0x00,
1576 REG_EMSCINTRMASK
, 0x00,
1577 REG_EMSCINTR1
, 0xff,
1578 REG_EMSCINTRMASK1
, 0x00,
1580 REG_INTR8_MASK
, 0x00,
1581 REG_TPI_INTR_ST0
, 0xff,
1582 REG_TPI_INTR_EN
, 0x00,
1583 REG_HDCP2X_INTR0
, 0xff,
1584 REG_HDCP2X_INTR0_MASK
, 0x00,
1586 REG_INTR9_MASK
, 0x00,
1588 REG_INTR3_MASK
, 0x00,
1590 REG_INTR5_MASK
, 0x00,
1592 REG_INTR2_MASK
, 0x00,
1594 memset(ctx
->stat
, 0, sizeof(ctx
->stat
));
1595 memset(ctx
->xstat
, 0, sizeof(ctx
->xstat
));
1596 memset(ctx
->devcap
, 0, sizeof(ctx
->devcap
));
1597 memset(ctx
->xdevcap
, 0, sizeof(ctx
->xdevcap
));
1598 ctx
->cbus_status
= 0;
1599 ctx
->sink_type
= SINK_NONE
;
1602 sii8620_mt_cleanup(ctx
);
1605 static void sii8620_mhl_disconnected(struct sii8620
*ctx
)
1607 sii8620_write_seq_static(ctx
,
1608 REG_DISC_CTRL4
, VAL_DISC_CTRL4(VAL_PUP_OFF
, VAL_PUP_20K
),
1609 REG_CBUS_MSC_COMPAT_CTRL
,
1610 BIT_CBUS_MSC_COMPAT_CTRL_XDEVCAP_EN
1612 sii8620_disconnect(ctx
);
1615 static void sii8620_irq_disc(struct sii8620
*ctx
)
1617 u8 stat
= sii8620_readb(ctx
, REG_CBUS_DISC_INTR0
);
1619 if (stat
& VAL_CBUS_MHL_DISCON
)
1620 sii8620_mhl_disconnected(ctx
);
1622 if (stat
& BIT_RGND_READY_INT
) {
1623 u8 stat2
= sii8620_readb(ctx
, REG_DISC_STAT2
);
1625 if ((stat2
& MSK_DISC_STAT2_RGND
) == VAL_RGND_1K
) {
1626 sii8620_mhl_discover(ctx
);
1628 sii8620_write_seq_static(ctx
,
1629 REG_DISC_CTRL9
, BIT_DISC_CTRL9_WAKE_DRVFLT
1630 | BIT_DISC_CTRL9_NOMHL_EST
1631 | BIT_DISC_CTRL9_WAKE_PULSE_BYPASS
,
1632 REG_CBUS_DISC_INTR0_MASK
, BIT_RGND_READY_INT
1633 | BIT_CBUS_MHL3_DISCON_INT
1634 | BIT_CBUS_MHL12_DISCON_INT
1635 | BIT_NOT_MHL_EST_INT
1639 if (stat
& BIT_MHL_EST_INT
)
1640 sii8620_mhl_init(ctx
);
1642 sii8620_write(ctx
, REG_CBUS_DISC_INTR0
, stat
);
1645 static void sii8620_read_burst(struct sii8620
*ctx
)
1649 sii8620_read_buf(ctx
, REG_MDT_RCV_READ_PORT
, buf
, ARRAY_SIZE(buf
));
1650 sii8620_write(ctx
, REG_MDT_RCV_CTRL
, BIT_MDT_RCV_CTRL_MDT_RCV_EN
|
1651 BIT_MDT_RCV_CTRL_MDT_DELAY_RCV_EN
|
1652 BIT_MDT_RCV_CTRL_MDT_RFIFO_CLR_CUR
);
1653 sii8620_readb(ctx
, REG_MDT_RFIFO_STAT
);
1656 static void sii8620_irq_g2wb(struct sii8620
*ctx
)
1658 u8 stat
= sii8620_readb(ctx
, REG_MDT_INT_0
);
1660 if (stat
& BIT_MDT_IDLE_AFTER_HAWB_DISABLE
)
1661 if (sii8620_is_mhl3(ctx
))
1662 sii8620_mt_set_int(ctx
, MHL_INT_REG(RCHANGE
),
1663 MHL_INT_RC_FEAT_COMPLETE
);
1665 if (stat
& BIT_MDT_RFIFO_DATA_RDY
)
1666 sii8620_read_burst(ctx
);
1668 if (stat
& BIT_MDT_XFIFO_EMPTY
)
1669 sii8620_write(ctx
, REG_MDT_XMIT_CTRL
, 0);
1671 sii8620_write(ctx
, REG_MDT_INT_0
, stat
);
1674 static void sii8620_status_dcap_ready(struct sii8620
*ctx
)
1676 enum sii8620_mode mode
;
1678 mode
= ctx
->stat
[MHL_DST_VERSION
] >= 0x30 ? CM_MHL3
: CM_MHL1
;
1679 if (mode
> ctx
->mode
)
1680 sii8620_set_mode(ctx
, mode
);
1681 sii8620_peer_specific_init(ctx
);
1682 sii8620_write(ctx
, REG_INTR9_MASK
, BIT_INTR9_DEVCAP_DONE
1683 | BIT_INTR9_EDID_DONE
| BIT_INTR9_EDID_ERROR
);
1686 static void sii8620_status_changed_path(struct sii8620
*ctx
)
1688 if (ctx
->stat
[MHL_DST_LINK_MODE
] & MHL_DST_LM_PATH_ENABLED
) {
1689 sii8620_mt_write_stat(ctx
, MHL_DST_REG(LINK_MODE
),
1690 MHL_DST_LM_CLK_MODE_NORMAL
1691 | MHL_DST_LM_PATH_ENABLED
);
1692 if (!sii8620_is_mhl3(ctx
))
1693 sii8620_mt_read_devcap(ctx
, false);
1694 sii8620_mt_set_cont(ctx
, sii8620_sink_detected
);
1696 sii8620_mt_write_stat(ctx
, MHL_DST_REG(LINK_MODE
),
1697 MHL_DST_LM_CLK_MODE_NORMAL
);
1701 static void sii8620_msc_mr_write_stat(struct sii8620
*ctx
)
1703 u8 st
[MHL_DST_SIZE
], xst
[MHL_XDS_SIZE
];
1705 sii8620_read_buf(ctx
, REG_MHL_STAT_0
, st
, MHL_DST_SIZE
);
1706 sii8620_read_buf(ctx
, REG_MHL_EXTSTAT_0
, xst
, MHL_XDS_SIZE
);
1708 sii8620_update_array(ctx
->stat
, st
, MHL_DST_SIZE
);
1709 sii8620_update_array(ctx
->xstat
, xst
, MHL_XDS_SIZE
);
1711 if (ctx
->stat
[MHL_DST_CONNECTED_RDY
] & MHL_DST_CONN_DCAP_RDY
)
1712 sii8620_status_dcap_ready(ctx
);
1714 if (st
[MHL_DST_LINK_MODE
] & MHL_DST_LM_PATH_ENABLED
)
1715 sii8620_status_changed_path(ctx
);
1718 static void sii8620_ecbus_up(struct sii8620
*ctx
, int ret
)
1723 sii8620_set_mode(ctx
, CM_ECBUS_S
);
1726 static void sii8620_got_ecbus_speed(struct sii8620
*ctx
, int ret
)
1731 sii8620_mt_write_stat(ctx
, MHL_XDS_REG(CURR_ECBUS_MODE
),
1732 MHL_XDS_ECBUS_S
| MHL_XDS_SLOT_MODE_8BIT
);
1733 sii8620_mt_rap(ctx
, MHL_RAP_CBUS_MODE_UP
);
1734 sii8620_mt_set_cont(ctx
, sii8620_ecbus_up
);
1737 static void sii8620_mhl_burst_emsc_support_set(struct mhl_burst_emsc_support
*d
,
1738 enum mhl_burst_id id
)
1740 sii8620_mhl_burst_hdr_set(&d
->hdr
, MHL_BURST_ID_EMSC_SUPPORT
);
1742 d
->burst_id
[0] = cpu_to_be16(id
);
1745 static void sii8620_send_features(struct sii8620
*ctx
)
1749 sii8620_write(ctx
, REG_MDT_XMIT_CTRL
, BIT_MDT_XMIT_CTRL_EN
1750 | BIT_MDT_XMIT_CTRL_FIXED_BURST_LEN
);
1751 sii8620_mhl_burst_emsc_support_set((void *)buf
,
1752 MHL_BURST_ID_HID_PAYLOAD
);
1753 sii8620_write_buf(ctx
, REG_MDT_XMIT_WRITE_PORT
, buf
, ARRAY_SIZE(buf
));
1756 static void sii8620_msc_mr_set_int(struct sii8620
*ctx
)
1758 u8 ints
[MHL_INT_SIZE
];
1760 sii8620_read_buf(ctx
, REG_MHL_INT_0
, ints
, MHL_INT_SIZE
);
1761 sii8620_write_buf(ctx
, REG_MHL_INT_0
, ints
, MHL_INT_SIZE
);
1763 if (ints
[MHL_INT_RCHANGE
] & MHL_INT_RC_DCAP_CHG
) {
1764 switch (ctx
->mode
) {
1766 sii8620_mt_read_xdevcap_reg(ctx
, MHL_XDC_ECBUS_SPEEDS
);
1767 sii8620_mt_set_cont(ctx
, sii8620_got_ecbus_speed
);
1770 sii8620_mt_read_devcap(ctx
, true);
1776 if (ints
[MHL_INT_RCHANGE
] & MHL_INT_RC_FEAT_REQ
)
1777 sii8620_send_features(ctx
);
1778 if (ints
[MHL_INT_RCHANGE
] & MHL_INT_RC_FEAT_COMPLETE
)
1779 sii8620_edid_read(ctx
, 0);
1782 static struct sii8620_mt_msg
*sii8620_msc_msg_first(struct sii8620
*ctx
)
1784 struct device
*dev
= ctx
->dev
;
1786 if (list_empty(&ctx
->mt_queue
)) {
1787 dev_err(dev
, "unexpected MSC MT response\n");
1791 return list_first_entry(&ctx
->mt_queue
, struct sii8620_mt_msg
, node
);
1794 static void sii8620_msc_mt_done(struct sii8620
*ctx
)
1796 struct sii8620_mt_msg
*msg
= sii8620_msc_msg_first(ctx
);
1801 msg
->ret
= sii8620_readb(ctx
, REG_MSC_MT_RCVD_DATA0
);
1802 ctx
->mt_state
= MT_STATE_DONE
;
1805 static void sii8620_msc_mr_msc_msg(struct sii8620
*ctx
)
1807 struct sii8620_mt_msg
*msg
= sii8620_msc_msg_first(ctx
);
1813 sii8620_read_buf(ctx
, REG_MSC_MR_MSC_MSG_RCVD_1ST_DATA
, buf
, 2);
1816 case MHL_MSC_MSG_RAPK
:
1818 ctx
->mt_state
= MT_STATE_DONE
;
1821 dev_err(ctx
->dev
, "%s message type %d,%d not supported",
1822 __func__
, buf
[0], buf
[1]);
1826 static void sii8620_irq_msc(struct sii8620
*ctx
)
1828 u8 stat
= sii8620_readb(ctx
, REG_CBUS_INT_0
);
1830 if (stat
& ~BIT_CBUS_HPD_CHG
)
1831 sii8620_write(ctx
, REG_CBUS_INT_0
, stat
& ~BIT_CBUS_HPD_CHG
);
1833 if (stat
& BIT_CBUS_HPD_CHG
) {
1834 u8 cbus_stat
= sii8620_readb(ctx
, REG_CBUS_STATUS
);
1836 if ((cbus_stat
^ ctx
->cbus_status
) & BIT_CBUS_STATUS_CBUS_HPD
) {
1837 sii8620_write(ctx
, REG_CBUS_INT_0
, BIT_CBUS_HPD_CHG
);
1839 stat
^= BIT_CBUS_STATUS_CBUS_HPD
;
1840 cbus_stat
^= BIT_CBUS_STATUS_CBUS_HPD
;
1842 ctx
->cbus_status
= cbus_stat
;
1845 if (stat
& BIT_CBUS_MSC_MR_WRITE_STAT
)
1846 sii8620_msc_mr_write_stat(ctx
);
1848 if (stat
& BIT_CBUS_MSC_MR_SET_INT
)
1849 sii8620_msc_mr_set_int(ctx
);
1851 if (stat
& BIT_CBUS_MSC_MT_DONE
)
1852 sii8620_msc_mt_done(ctx
);
1854 if (stat
& BIT_CBUS_MSC_MR_MSC_MSG
)
1855 sii8620_msc_mr_msc_msg(ctx
);
1858 static void sii8620_irq_coc(struct sii8620
*ctx
)
1860 u8 stat
= sii8620_readb(ctx
, REG_COC_INTR
);
1862 if (stat
& BIT_COC_CALIBRATION_DONE
) {
1863 u8 cstat
= sii8620_readb(ctx
, REG_COC_STAT_0
);
1865 cstat
&= BIT_COC_STAT_0_PLL_LOCKED
| MSK_COC_STAT_0_FSM_STATE
;
1866 if (cstat
== (BIT_COC_STAT_0_PLL_LOCKED
| 0x02)) {
1867 sii8620_write_seq_static(ctx
,
1869 REG_TRXINTMH
, BIT_TDM_INTR_SYNC_DATA
1870 | BIT_TDM_INTR_SYNC_WAIT
1875 sii8620_write(ctx
, REG_COC_INTR
, stat
);
1878 static void sii8620_irq_merr(struct sii8620
*ctx
)
1880 u8 stat
= sii8620_readb(ctx
, REG_CBUS_INT_1
);
1882 sii8620_write(ctx
, REG_CBUS_INT_1
, stat
);
1885 static void sii8620_irq_edid(struct sii8620
*ctx
)
1887 u8 stat
= sii8620_readb(ctx
, REG_INTR9
);
1889 sii8620_write(ctx
, REG_INTR9
, stat
);
1891 if (stat
& BIT_INTR9_DEVCAP_DONE
)
1892 ctx
->mt_state
= MT_STATE_DONE
;
1895 static void sii8620_scdt_high(struct sii8620
*ctx
)
1897 sii8620_write_seq_static(ctx
,
1898 REG_INTR8_MASK
, BIT_CEA_NEW_AVI
| BIT_CEA_NEW_VSI
,
1899 REG_TPI_SC
, BIT_TPI_SC_TPI_OUTPUT_MODE_0_HDMI
,
1903 static void sii8620_irq_scdt(struct sii8620
*ctx
)
1905 u8 stat
= sii8620_readb(ctx
, REG_INTR5
);
1907 if (stat
& BIT_INTR_SCDT_CHANGE
) {
1908 u8 cstat
= sii8620_readb(ctx
, REG_TMDS_CSTAT_P3
);
1910 if (cstat
& BIT_TMDS_CSTAT_P3_SCDT
)
1911 sii8620_scdt_high(ctx
);
1914 sii8620_write(ctx
, REG_INTR5
, stat
);
1917 static void sii8620_new_vsi(struct sii8620
*ctx
)
1921 sii8620_write(ctx
, REG_RX_HDMI_CTRL2
,
1922 VAL_RX_HDMI_CTRL2_DEFVAL
|
1923 BIT_RX_HDMI_CTRL2_VSI_MON_SEL_VSI
);
1924 sii8620_read_buf(ctx
, REG_RX_HDMI_MON_PKT_HEADER1
, vsif
,
1928 static void sii8620_new_avi(struct sii8620
*ctx
)
1930 sii8620_write(ctx
, REG_RX_HDMI_CTRL2
, VAL_RX_HDMI_CTRL2_DEFVAL
);
1931 sii8620_read_buf(ctx
, REG_RX_HDMI_MON_PKT_HEADER1
, ctx
->avif
,
1932 ARRAY_SIZE(ctx
->avif
));
1935 static void sii8620_irq_infr(struct sii8620
*ctx
)
1937 u8 stat
= sii8620_readb(ctx
, REG_INTR8
)
1938 & (BIT_CEA_NEW_VSI
| BIT_CEA_NEW_AVI
);
1940 sii8620_write(ctx
, REG_INTR8
, stat
);
1942 if (stat
& BIT_CEA_NEW_VSI
)
1943 sii8620_new_vsi(ctx
);
1945 if (stat
& BIT_CEA_NEW_AVI
)
1946 sii8620_new_avi(ctx
);
1948 if (stat
& (BIT_CEA_NEW_VSI
| BIT_CEA_NEW_AVI
))
1949 sii8620_start_video(ctx
);
1952 static void sii8620_got_xdevcap(struct sii8620
*ctx
, int ret
)
1957 sii8620_mt_read_devcap(ctx
, false);
1960 static void sii8620_irq_tdm(struct sii8620
*ctx
)
1962 u8 stat
= sii8620_readb(ctx
, REG_TRXINTH
);
1963 u8 tdm
= sii8620_readb(ctx
, REG_TRXSTA2
);
1965 if ((tdm
& MSK_TDM_SYNCHRONIZED
) == VAL_TDM_SYNCHRONIZED
) {
1966 ctx
->mode
= CM_ECBUS_S
;
1967 ctx
->burst
.rx_ack
= 0;
1968 ctx
->burst
.r_size
= SII8620_BURST_BUF_LEN
;
1969 sii8620_burst_tx_rbuf_info(ctx
, SII8620_BURST_BUF_LEN
);
1970 sii8620_mt_read_devcap(ctx
, true);
1971 sii8620_mt_set_cont(ctx
, sii8620_got_xdevcap
);
1973 sii8620_write_seq_static(ctx
,
1974 REG_MHL_PLL_CTL2
, 0,
1975 REG_MHL_PLL_CTL2
, BIT_MHL_PLL_CTL2_CLKDETECT_EN
1979 sii8620_write(ctx
, REG_TRXINTH
, stat
);
1982 static void sii8620_irq_block(struct sii8620
*ctx
)
1984 u8 stat
= sii8620_readb(ctx
, REG_EMSCINTR
);
1986 if (stat
& BIT_EMSCINTR_SPI_DVLD
) {
1987 u8 bstat
= sii8620_readb(ctx
, REG_SPIBURSTSTAT
);
1989 if (bstat
& BIT_SPIBURSTSTAT_EMSC_NORMAL_MODE
)
1990 sii8620_burst_receive(ctx
);
1993 sii8620_write(ctx
, REG_EMSCINTR
, stat
);
1996 static void sii8620_irq_ddc(struct sii8620
*ctx
)
1998 u8 stat
= sii8620_readb(ctx
, REG_INTR3
);
2000 if (stat
& BIT_DDC_CMD_DONE
) {
2001 sii8620_write(ctx
, REG_INTR3_MASK
, 0);
2002 if (sii8620_is_mhl3(ctx
))
2003 sii8620_mt_set_int(ctx
, MHL_INT_REG(RCHANGE
),
2004 MHL_INT_RC_FEAT_REQ
);
2006 sii8620_edid_read(ctx
, 0);
2008 sii8620_write(ctx
, REG_INTR3
, stat
);
2011 /* endian agnostic, non-volatile version of test_bit */
2012 static bool sii8620_test_bit(unsigned int nr
, const u8
*addr
)
2014 return 1 & (addr
[nr
/ BITS_PER_BYTE
] >> (nr
% BITS_PER_BYTE
));
2017 static irqreturn_t
sii8620_irq_thread(int irq
, void *data
)
2019 static const struct {
2021 void (*handler
)(struct sii8620
*ctx
);
2023 { BIT_FAST_INTR_STAT_DISC
, sii8620_irq_disc
},
2024 { BIT_FAST_INTR_STAT_G2WB
, sii8620_irq_g2wb
},
2025 { BIT_FAST_INTR_STAT_COC
, sii8620_irq_coc
},
2026 { BIT_FAST_INTR_STAT_TDM
, sii8620_irq_tdm
},
2027 { BIT_FAST_INTR_STAT_MSC
, sii8620_irq_msc
},
2028 { BIT_FAST_INTR_STAT_MERR
, sii8620_irq_merr
},
2029 { BIT_FAST_INTR_STAT_BLOCK
, sii8620_irq_block
},
2030 { BIT_FAST_INTR_STAT_EDID
, sii8620_irq_edid
},
2031 { BIT_FAST_INTR_STAT_DDC
, sii8620_irq_ddc
},
2032 { BIT_FAST_INTR_STAT_SCDT
, sii8620_irq_scdt
},
2033 { BIT_FAST_INTR_STAT_INFR
, sii8620_irq_infr
},
2035 struct sii8620
*ctx
= data
;
2036 u8 stats
[LEN_FAST_INTR_STAT
];
2039 mutex_lock(&ctx
->lock
);
2041 sii8620_read_buf(ctx
, REG_FAST_INTR_STAT
, stats
, ARRAY_SIZE(stats
));
2042 for (i
= 0; i
< ARRAY_SIZE(irq_vec
); ++i
)
2043 if (sii8620_test_bit(irq_vec
[i
].bit
, stats
))
2044 irq_vec
[i
].handler(ctx
);
2046 sii8620_burst_rx_all(ctx
);
2047 sii8620_mt_work(ctx
);
2048 sii8620_burst_send(ctx
);
2050 ret
= sii8620_clear_error(ctx
);
2052 dev_err(ctx
->dev
, "Error during IRQ handling, %d.\n", ret
);
2053 sii8620_mhl_disconnected(ctx
);
2055 mutex_unlock(&ctx
->lock
);
2060 static void sii8620_cable_in(struct sii8620
*ctx
)
2062 struct device
*dev
= ctx
->dev
;
2066 ret
= sii8620_hw_on(ctx
);
2068 dev_err(dev
, "Error powering on, %d.\n", ret
);
2071 sii8620_hw_reset(ctx
);
2073 sii8620_read_buf(ctx
, REG_VND_IDL
, ver
, ARRAY_SIZE(ver
));
2074 ret
= sii8620_clear_error(ctx
);
2076 dev_err(dev
, "Error accessing I2C bus, %d.\n", ret
);
2080 dev_info(dev
, "ChipID %02x%02x:%02x%02x rev %02x.\n", ver
[1], ver
[0],
2081 ver
[3], ver
[2], ver
[4]);
2083 sii8620_write(ctx
, REG_DPD
,
2084 BIT_DPD_PWRON_PLL
| BIT_DPD_PDNTX12
| BIT_DPD_OSC_EN
);
2086 sii8620_xtal_set_rate(ctx
);
2087 sii8620_disconnect(ctx
);
2089 sii8620_write_seq_static(ctx
,
2090 REG_MHL_CBUS_CTL0
, VAL_MHL_CBUS_CTL0_CBUS_DRV_SEL_STRONG
2091 | VAL_MHL_CBUS_CTL0_CBUS_RGND_VBIAS_734
,
2092 REG_MHL_CBUS_CTL1
, VAL_MHL_CBUS_CTL1_1115_OHM
,
2093 REG_DPD
, BIT_DPD_PWRON_PLL
| BIT_DPD_PDNTX12
| BIT_DPD_OSC_EN
,
2096 ret
= sii8620_clear_error(ctx
);
2098 dev_err(dev
, "Error accessing I2C bus, %d.\n", ret
);
2102 enable_irq(to_i2c_client(ctx
->dev
)->irq
);
2105 static inline struct sii8620
*bridge_to_sii8620(struct drm_bridge
*bridge
)
2107 return container_of(bridge
, struct sii8620
, bridge
);
2110 static bool sii8620_mode_fixup(struct drm_bridge
*bridge
,
2111 const struct drm_display_mode
*mode
,
2112 struct drm_display_mode
*adjusted_mode
)
2114 struct sii8620
*ctx
= bridge_to_sii8620(bridge
);
2118 mutex_lock(&ctx
->lock
);
2120 max_lclk
= sii8620_is_mhl3(ctx
) ? MHL3_MAX_LCLK
: MHL1_MAX_LCLK
;
2121 if (max_lclk
> 3 * adjusted_mode
->clock
) {
2122 ctx
->use_packed_pixel
= 0;
2125 if ((ctx
->devcap
[MHL_DCAP_VID_LINK_MODE
] & MHL_DCAP_VID_LINK_PPIXEL
) &&
2126 max_lclk
> 2 * adjusted_mode
->clock
) {
2127 ctx
->use_packed_pixel
= 1;
2133 u8 vic
= drm_match_cea_mode(adjusted_mode
);
2136 union hdmi_infoframe frm
;
2137 u8 mhl_vic
[] = { 0, 95, 94, 93, 98 };
2139 drm_hdmi_vendor_infoframe_from_display_mode(
2140 &frm
.vendor
.hdmi
, adjusted_mode
);
2141 vic
= frm
.vendor
.hdmi
.vic
;
2142 if (vic
>= ARRAY_SIZE(mhl_vic
))
2146 ctx
->video_code
= vic
;
2147 ctx
->pixel_clock
= adjusted_mode
->clock
;
2149 mutex_unlock(&ctx
->lock
);
2153 static const struct drm_bridge_funcs sii8620_bridge_funcs
= {
2154 .mode_fixup
= sii8620_mode_fixup
,
2157 static int sii8620_probe(struct i2c_client
*client
,
2158 const struct i2c_device_id
*id
)
2160 struct device
*dev
= &client
->dev
;
2161 struct sii8620
*ctx
;
2164 ctx
= devm_kzalloc(dev
, sizeof(*ctx
), GFP_KERNEL
);
2169 mutex_init(&ctx
->lock
);
2170 INIT_LIST_HEAD(&ctx
->mt_queue
);
2172 ctx
->clk_xtal
= devm_clk_get(dev
, "xtal");
2173 if (IS_ERR(ctx
->clk_xtal
)) {
2174 dev_err(dev
, "failed to get xtal clock from DT\n");
2175 return PTR_ERR(ctx
->clk_xtal
);
2179 dev_err(dev
, "no irq provided\n");
2182 irq_set_status_flags(client
->irq
, IRQ_NOAUTOEN
);
2183 ret
= devm_request_threaded_irq(dev
, client
->irq
, NULL
,
2185 IRQF_TRIGGER_HIGH
| IRQF_ONESHOT
,
2188 dev_err(dev
, "failed to install IRQ handler\n");
2192 ctx
->gpio_reset
= devm_gpiod_get(dev
, "reset", GPIOD_OUT_HIGH
);
2193 if (IS_ERR(ctx
->gpio_reset
)) {
2194 dev_err(dev
, "failed to get reset gpio from DT\n");
2195 return PTR_ERR(ctx
->gpio_reset
);
2198 ctx
->supplies
[0].supply
= "cvcc10";
2199 ctx
->supplies
[1].supply
= "iovcc18";
2200 ret
= devm_regulator_bulk_get(dev
, 2, ctx
->supplies
);
2204 i2c_set_clientdata(client
, ctx
);
2206 ctx
->bridge
.funcs
= &sii8620_bridge_funcs
;
2207 ctx
->bridge
.of_node
= dev
->of_node
;
2208 drm_bridge_add(&ctx
->bridge
);
2210 sii8620_cable_in(ctx
);
2215 static int sii8620_remove(struct i2c_client
*client
)
2217 struct sii8620
*ctx
= i2c_get_clientdata(client
);
2219 disable_irq(to_i2c_client(ctx
->dev
)->irq
);
2220 drm_bridge_remove(&ctx
->bridge
);
2221 sii8620_hw_off(ctx
);
2226 static const struct of_device_id sii8620_dt_match
[] = {
2227 { .compatible
= "sil,sii8620" },
2230 MODULE_DEVICE_TABLE(of
, sii8620_dt_match
);
2232 static const struct i2c_device_id sii8620_id
[] = {
2237 MODULE_DEVICE_TABLE(i2c
, sii8620_id
);
2238 static struct i2c_driver sii8620_driver
= {
2241 .of_match_table
= of_match_ptr(sii8620_dt_match
),
2243 .probe
= sii8620_probe
,
2244 .remove
= sii8620_remove
,
2245 .id_table
= sii8620_id
,
2248 module_i2c_driver(sii8620_driver
);
2249 MODULE_LICENSE("GPL v2");