bpf: Prevent memory disambiguation attack
[linux/fpc-iii.git] / drivers / gpu / drm / bridge / sil-sii8620.c
blob86789f8918a4958124f63493770523bc66cfa6a3
1 /*
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 <media/rc-core.h>
33 #include "sil-sii8620.h"
35 #define SII8620_BURST_BUF_LEN 288
36 #define VAL_RX_HDMI_CTRL2_DEFVAL VAL_RX_HDMI_CTRL2_IDLE_CNT(3)
37 #define MHL1_MAX_LCLK 225000
38 #define MHL3_MAX_LCLK 600000
40 enum sii8620_mode {
41 CM_DISCONNECTED,
42 CM_DISCOVERY,
43 CM_MHL1,
44 CM_MHL3,
45 CM_ECBUS_S
48 enum sii8620_sink_type {
49 SINK_NONE,
50 SINK_HDMI,
51 SINK_DVI
54 enum sii8620_mt_state {
55 MT_STATE_READY,
56 MT_STATE_BUSY,
57 MT_STATE_DONE
60 struct sii8620 {
61 struct drm_bridge bridge;
62 struct device *dev;
63 struct rc_dev *rc_dev;
64 struct clk *clk_xtal;
65 struct gpio_desc *gpio_reset;
66 struct gpio_desc *gpio_int;
67 struct regulator_bulk_data supplies[2];
68 struct mutex lock; /* context lock, protects fields below */
69 int error;
70 int pixel_clock;
71 unsigned int use_packed_pixel:1;
72 int video_code;
73 enum sii8620_mode mode;
74 enum sii8620_sink_type sink_type;
75 u8 cbus_status;
76 u8 stat[MHL_DST_SIZE];
77 u8 xstat[MHL_XDS_SIZE];
78 u8 devcap[MHL_DCAP_SIZE];
79 u8 xdevcap[MHL_XDC_SIZE];
80 u8 avif[HDMI_INFOFRAME_SIZE(AVI)];
81 struct edid *edid;
82 unsigned int gen2_write_burst:1;
83 enum sii8620_mt_state mt_state;
84 struct list_head mt_queue;
85 struct {
86 int r_size;
87 int r_count;
88 int rx_ack;
89 int rx_count;
90 u8 rx_buf[32];
91 int tx_count;
92 u8 tx_buf[32];
93 } burst;
96 struct sii8620_mt_msg;
98 typedef void (*sii8620_mt_msg_cb)(struct sii8620 *ctx,
99 struct sii8620_mt_msg *msg);
101 typedef void (*sii8620_cb)(struct sii8620 *ctx, int ret);
103 struct sii8620_mt_msg {
104 struct list_head node;
105 u8 reg[4];
106 u8 ret;
107 sii8620_mt_msg_cb send;
108 sii8620_mt_msg_cb recv;
109 sii8620_cb continuation;
112 static const u8 sii8620_i2c_page[] = {
113 0x39, /* Main System */
114 0x3d, /* TDM and HSIC */
115 0x49, /* TMDS Receiver, MHL EDID */
116 0x4d, /* eMSC, HDCP, HSIC */
117 0x5d, /* MHL Spec */
118 0x64, /* MHL CBUS */
119 0x59, /* Hardware TPI (Transmitter Programming Interface) */
120 0x61, /* eCBUS-S, eCBUS-D */
123 static void sii8620_fetch_edid(struct sii8620 *ctx);
124 static void sii8620_set_upstream_edid(struct sii8620 *ctx);
125 static void sii8620_enable_hpd(struct sii8620 *ctx);
126 static void sii8620_mhl_disconnected(struct sii8620 *ctx);
127 static void sii8620_disconnect(struct sii8620 *ctx);
129 static int sii8620_clear_error(struct sii8620 *ctx)
131 int ret = ctx->error;
133 ctx->error = 0;
134 return ret;
137 static void sii8620_read_buf(struct sii8620 *ctx, u16 addr, u8 *buf, int len)
139 struct device *dev = ctx->dev;
140 struct i2c_client *client = to_i2c_client(dev);
141 u8 data = addr;
142 struct i2c_msg msg[] = {
144 .addr = sii8620_i2c_page[addr >> 8],
145 .flags = client->flags,
146 .len = 1,
147 .buf = &data
150 .addr = sii8620_i2c_page[addr >> 8],
151 .flags = client->flags | I2C_M_RD,
152 .len = len,
153 .buf = buf
156 int ret;
158 if (ctx->error)
159 return;
161 ret = i2c_transfer(client->adapter, msg, 2);
162 dev_dbg(dev, "read at %04x: %*ph, %d\n", addr, len, buf, ret);
164 if (ret != 2) {
165 dev_err(dev, "Read at %#06x of %d bytes failed with code %d.\n",
166 addr, len, ret);
167 ctx->error = ret < 0 ? ret : -EIO;
171 static u8 sii8620_readb(struct sii8620 *ctx, u16 addr)
173 u8 ret;
175 sii8620_read_buf(ctx, addr, &ret, 1);
176 return ret;
179 static void sii8620_write_buf(struct sii8620 *ctx, u16 addr, const u8 *buf,
180 int len)
182 struct device *dev = ctx->dev;
183 struct i2c_client *client = to_i2c_client(dev);
184 u8 data[2];
185 struct i2c_msg msg = {
186 .addr = sii8620_i2c_page[addr >> 8],
187 .flags = client->flags,
188 .len = len + 1,
190 int ret;
192 if (ctx->error)
193 return;
195 if (len > 1) {
196 msg.buf = kmalloc(len + 1, GFP_KERNEL);
197 if (!msg.buf) {
198 ctx->error = -ENOMEM;
199 return;
201 memcpy(msg.buf + 1, buf, len);
202 } else {
203 msg.buf = data;
204 msg.buf[1] = *buf;
207 msg.buf[0] = addr;
209 ret = i2c_transfer(client->adapter, &msg, 1);
210 dev_dbg(dev, "write at %04x: %*ph, %d\n", addr, len, buf, ret);
212 if (ret != 1) {
213 dev_err(dev, "Write at %#06x of %*ph failed with code %d.\n",
214 addr, len, buf, ret);
215 ctx->error = ret ?: -EIO;
218 if (len > 1)
219 kfree(msg.buf);
222 #define sii8620_write(ctx, addr, arr...) \
224 u8 d[] = { arr }; \
225 sii8620_write_buf(ctx, addr, d, ARRAY_SIZE(d)); \
228 static void __sii8620_write_seq(struct sii8620 *ctx, const u16 *seq, int len)
230 int i;
232 for (i = 0; i < len; i += 2)
233 sii8620_write(ctx, seq[i], seq[i + 1]);
236 #define sii8620_write_seq(ctx, seq...) \
238 const u16 d[] = { seq }; \
239 __sii8620_write_seq(ctx, d, ARRAY_SIZE(d)); \
242 #define sii8620_write_seq_static(ctx, seq...) \
244 static const u16 d[] = { seq }; \
245 __sii8620_write_seq(ctx, d, ARRAY_SIZE(d)); \
248 static void sii8620_setbits(struct sii8620 *ctx, u16 addr, u8 mask, u8 val)
250 val = (val & mask) | (sii8620_readb(ctx, addr) & ~mask);
251 sii8620_write(ctx, addr, val);
254 static inline bool sii8620_is_mhl3(struct sii8620 *ctx)
256 return ctx->mode >= CM_MHL3;
259 static void sii8620_mt_cleanup(struct sii8620 *ctx)
261 struct sii8620_mt_msg *msg, *n;
263 list_for_each_entry_safe(msg, n, &ctx->mt_queue, node) {
264 list_del(&msg->node);
265 kfree(msg);
267 ctx->mt_state = MT_STATE_READY;
270 static void sii8620_mt_work(struct sii8620 *ctx)
272 struct sii8620_mt_msg *msg;
274 if (ctx->error)
275 return;
276 if (ctx->mt_state == MT_STATE_BUSY || list_empty(&ctx->mt_queue))
277 return;
279 if (ctx->mt_state == MT_STATE_DONE) {
280 ctx->mt_state = MT_STATE_READY;
281 msg = list_first_entry(&ctx->mt_queue, struct sii8620_mt_msg,
282 node);
283 list_del(&msg->node);
284 if (msg->recv)
285 msg->recv(ctx, msg);
286 if (msg->continuation)
287 msg->continuation(ctx, msg->ret);
288 kfree(msg);
291 if (ctx->mt_state != MT_STATE_READY || list_empty(&ctx->mt_queue))
292 return;
294 ctx->mt_state = MT_STATE_BUSY;
295 msg = list_first_entry(&ctx->mt_queue, struct sii8620_mt_msg, node);
296 if (msg->send)
297 msg->send(ctx, msg);
300 static void sii8620_enable_gen2_write_burst(struct sii8620 *ctx)
302 u8 ctrl = BIT_MDT_RCV_CTRL_MDT_RCV_EN;
304 if (ctx->gen2_write_burst)
305 return;
307 if (ctx->mode >= CM_MHL1)
308 ctrl |= BIT_MDT_RCV_CTRL_MDT_DELAY_RCV_EN;
310 sii8620_write_seq(ctx,
311 REG_MDT_RCV_TIMEOUT, 100,
312 REG_MDT_RCV_CTRL, ctrl
314 ctx->gen2_write_burst = 1;
317 static void sii8620_disable_gen2_write_burst(struct sii8620 *ctx)
319 if (!ctx->gen2_write_burst)
320 return;
322 sii8620_write_seq_static(ctx,
323 REG_MDT_XMIT_CTRL, 0,
324 REG_MDT_RCV_CTRL, 0
326 ctx->gen2_write_burst = 0;
329 static void sii8620_start_gen2_write_burst(struct sii8620 *ctx)
331 sii8620_write_seq_static(ctx,
332 REG_MDT_INT_1_MASK, BIT_MDT_RCV_TIMEOUT
333 | BIT_MDT_RCV_SM_ABORT_PKT_RCVD | BIT_MDT_RCV_SM_ERROR
334 | BIT_MDT_XMIT_TIMEOUT | BIT_MDT_XMIT_SM_ABORT_PKT_RCVD
335 | BIT_MDT_XMIT_SM_ERROR,
336 REG_MDT_INT_0_MASK, BIT_MDT_XFIFO_EMPTY
337 | BIT_MDT_IDLE_AFTER_HAWB_DISABLE
338 | BIT_MDT_RFIFO_DATA_RDY
340 sii8620_enable_gen2_write_burst(ctx);
343 static void sii8620_mt_msc_cmd_send(struct sii8620 *ctx,
344 struct sii8620_mt_msg *msg)
346 if (msg->reg[0] == MHL_SET_INT &&
347 msg->reg[1] == MHL_INT_REG(RCHANGE) &&
348 msg->reg[2] == MHL_INT_RC_FEAT_REQ)
349 sii8620_enable_gen2_write_burst(ctx);
350 else
351 sii8620_disable_gen2_write_burst(ctx);
353 switch (msg->reg[0]) {
354 case MHL_WRITE_STAT:
355 case MHL_SET_INT:
356 sii8620_write_buf(ctx, REG_MSC_CMD_OR_OFFSET, msg->reg + 1, 2);
357 sii8620_write(ctx, REG_MSC_COMMAND_START,
358 BIT_MSC_COMMAND_START_WRITE_STAT);
359 break;
360 case MHL_MSC_MSG:
361 sii8620_write_buf(ctx, REG_MSC_CMD_OR_OFFSET, msg->reg, 3);
362 sii8620_write(ctx, REG_MSC_COMMAND_START,
363 BIT_MSC_COMMAND_START_MSC_MSG);
364 break;
365 case MHL_READ_DEVCAP_REG:
366 case MHL_READ_XDEVCAP_REG:
367 sii8620_write(ctx, REG_MSC_CMD_OR_OFFSET, msg->reg[1]);
368 sii8620_write(ctx, REG_MSC_COMMAND_START,
369 BIT_MSC_COMMAND_START_READ_DEVCAP);
370 break;
371 default:
372 dev_err(ctx->dev, "%s: command %#x not supported\n", __func__,
373 msg->reg[0]);
377 static struct sii8620_mt_msg *sii8620_mt_msg_new(struct sii8620 *ctx)
379 struct sii8620_mt_msg *msg = kzalloc(sizeof(*msg), GFP_KERNEL);
381 if (!msg)
382 ctx->error = -ENOMEM;
383 else
384 list_add_tail(&msg->node, &ctx->mt_queue);
386 return msg;
389 static void sii8620_mt_set_cont(struct sii8620 *ctx, sii8620_cb cont)
391 struct sii8620_mt_msg *msg;
393 if (ctx->error)
394 return;
396 if (list_empty(&ctx->mt_queue)) {
397 ctx->error = -EINVAL;
398 return;
400 msg = list_last_entry(&ctx->mt_queue, struct sii8620_mt_msg, node);
401 msg->continuation = cont;
404 static void sii8620_mt_msc_cmd(struct sii8620 *ctx, u8 cmd, u8 arg1, u8 arg2)
406 struct sii8620_mt_msg *msg = sii8620_mt_msg_new(ctx);
408 if (!msg)
409 return;
411 msg->reg[0] = cmd;
412 msg->reg[1] = arg1;
413 msg->reg[2] = arg2;
414 msg->send = sii8620_mt_msc_cmd_send;
417 static void sii8620_mt_write_stat(struct sii8620 *ctx, u8 reg, u8 val)
419 sii8620_mt_msc_cmd(ctx, MHL_WRITE_STAT, reg, val);
422 static inline void sii8620_mt_set_int(struct sii8620 *ctx, u8 irq, u8 mask)
424 sii8620_mt_msc_cmd(ctx, MHL_SET_INT, irq, mask);
427 static void sii8620_mt_msc_msg(struct sii8620 *ctx, u8 cmd, u8 data)
429 sii8620_mt_msc_cmd(ctx, MHL_MSC_MSG, cmd, data);
432 static void sii8620_mt_rap(struct sii8620 *ctx, u8 code)
434 sii8620_mt_msc_msg(ctx, MHL_MSC_MSG_RAP, code);
437 static void sii8620_mt_rcpk(struct sii8620 *ctx, u8 code)
439 sii8620_mt_msc_msg(ctx, MHL_MSC_MSG_RCPK, code);
442 static void sii8620_mt_rcpe(struct sii8620 *ctx, u8 code)
444 sii8620_mt_msc_msg(ctx, MHL_MSC_MSG_RCPE, code);
447 static void sii8620_mt_read_devcap_send(struct sii8620 *ctx,
448 struct sii8620_mt_msg *msg)
450 u8 ctrl = BIT_EDID_CTRL_DEVCAP_SELECT_DEVCAP
451 | BIT_EDID_CTRL_EDID_FIFO_ADDR_AUTO
452 | BIT_EDID_CTRL_EDID_MODE_EN;
454 if (msg->reg[0] == MHL_READ_XDEVCAP)
455 ctrl |= BIT_EDID_CTRL_XDEVCAP_EN;
457 sii8620_write_seq(ctx,
458 REG_INTR9_MASK, BIT_INTR9_DEVCAP_DONE,
459 REG_EDID_CTRL, ctrl,
460 REG_TPI_CBUS_START, BIT_TPI_CBUS_START_GET_DEVCAP_START
464 /* copy src to dst and set changed bits in src */
465 static void sii8620_update_array(u8 *dst, u8 *src, int count)
467 while (--count >= 0) {
468 *src ^= *dst;
469 *dst++ ^= *src++;
473 static void sii8620_sink_detected(struct sii8620 *ctx, int ret)
475 static const char * const sink_str[] = {
476 [SINK_NONE] = "NONE",
477 [SINK_HDMI] = "HDMI",
478 [SINK_DVI] = "DVI"
481 char sink_name[20];
482 struct device *dev = ctx->dev;
484 if (ret < 0)
485 return;
487 sii8620_fetch_edid(ctx);
488 if (!ctx->edid) {
489 dev_err(ctx->dev, "Cannot fetch EDID\n");
490 sii8620_mhl_disconnected(ctx);
491 return;
494 if (drm_detect_hdmi_monitor(ctx->edid))
495 ctx->sink_type = SINK_HDMI;
496 else
497 ctx->sink_type = SINK_DVI;
499 drm_edid_get_monitor_name(ctx->edid, sink_name, ARRAY_SIZE(sink_name));
501 dev_info(dev, "detected sink(type: %s): %s\n",
502 sink_str[ctx->sink_type], sink_name);
505 static void sii8620_hsic_init(struct sii8620 *ctx)
507 if (!sii8620_is_mhl3(ctx))
508 return;
510 sii8620_write(ctx, REG_FCGC,
511 BIT_FCGC_HSIC_HOSTMODE | BIT_FCGC_HSIC_ENABLE);
512 sii8620_setbits(ctx, REG_HRXCTRL3,
513 BIT_HRXCTRL3_HRX_STAY_RESET | BIT_HRXCTRL3_STATUS_EN, ~0);
514 sii8620_setbits(ctx, REG_TTXNUMB, MSK_TTXNUMB_TTX_NUMBPS, 4);
515 sii8620_setbits(ctx, REG_TRXCTRL, BIT_TRXCTRL_TRX_FROM_SE_COC, ~0);
516 sii8620_setbits(ctx, REG_HTXCTRL, BIT_HTXCTRL_HTX_DRVCONN1, 0);
517 sii8620_setbits(ctx, REG_KEEPER, MSK_KEEPER_MODE, VAL_KEEPER_MODE_HOST);
518 sii8620_write_seq_static(ctx,
519 REG_TDMLLCTL, 0,
520 REG_UTSRST, BIT_UTSRST_HRX_SRST | BIT_UTSRST_HTX_SRST |
521 BIT_UTSRST_KEEPER_SRST | BIT_UTSRST_FC_SRST,
522 REG_UTSRST, BIT_UTSRST_HRX_SRST | BIT_UTSRST_HTX_SRST,
523 REG_HRXINTL, 0xff,
524 REG_HRXINTH, 0xff,
525 REG_TTXINTL, 0xff,
526 REG_TTXINTH, 0xff,
527 REG_TRXINTL, 0xff,
528 REG_TRXINTH, 0xff,
529 REG_HTXINTL, 0xff,
530 REG_HTXINTH, 0xff,
531 REG_FCINTR0, 0xff,
532 REG_FCINTR1, 0xff,
533 REG_FCINTR2, 0xff,
534 REG_FCINTR3, 0xff,
535 REG_FCINTR4, 0xff,
536 REG_FCINTR5, 0xff,
537 REG_FCINTR6, 0xff,
538 REG_FCINTR7, 0xff
542 static void sii8620_edid_read(struct sii8620 *ctx, int ret)
544 if (ret < 0)
545 return;
547 sii8620_set_upstream_edid(ctx);
548 sii8620_hsic_init(ctx);
549 sii8620_enable_hpd(ctx);
552 static void sii8620_mr_devcap(struct sii8620 *ctx)
554 u8 dcap[MHL_DCAP_SIZE];
555 struct device *dev = ctx->dev;
557 sii8620_read_buf(ctx, REG_EDID_FIFO_RD_DATA, dcap, MHL_DCAP_SIZE);
558 if (ctx->error < 0)
559 return;
561 dev_info(dev, "detected dongle MHL %d.%d, ChipID %02x%02x:%02x%02x\n",
562 dcap[MHL_DCAP_MHL_VERSION] / 16,
563 dcap[MHL_DCAP_MHL_VERSION] % 16,
564 dcap[MHL_DCAP_ADOPTER_ID_H], dcap[MHL_DCAP_ADOPTER_ID_L],
565 dcap[MHL_DCAP_DEVICE_ID_H], dcap[MHL_DCAP_DEVICE_ID_L]);
566 sii8620_update_array(ctx->devcap, dcap, MHL_DCAP_SIZE);
569 static void sii8620_mr_xdevcap(struct sii8620 *ctx)
571 sii8620_read_buf(ctx, REG_EDID_FIFO_RD_DATA, ctx->xdevcap,
572 MHL_XDC_SIZE);
575 static void sii8620_mt_read_devcap_recv(struct sii8620 *ctx,
576 struct sii8620_mt_msg *msg)
578 u8 ctrl = BIT_EDID_CTRL_DEVCAP_SELECT_DEVCAP
579 | BIT_EDID_CTRL_EDID_FIFO_ADDR_AUTO
580 | BIT_EDID_CTRL_EDID_MODE_EN;
582 if (msg->reg[0] == MHL_READ_XDEVCAP)
583 ctrl |= BIT_EDID_CTRL_XDEVCAP_EN;
585 sii8620_write_seq(ctx,
586 REG_INTR9_MASK, BIT_INTR9_DEVCAP_DONE | BIT_INTR9_EDID_DONE
587 | BIT_INTR9_EDID_ERROR,
588 REG_EDID_CTRL, ctrl,
589 REG_EDID_FIFO_ADDR, 0
592 if (msg->reg[0] == MHL_READ_XDEVCAP)
593 sii8620_mr_xdevcap(ctx);
594 else
595 sii8620_mr_devcap(ctx);
598 static void sii8620_mt_read_devcap(struct sii8620 *ctx, bool xdevcap)
600 struct sii8620_mt_msg *msg = sii8620_mt_msg_new(ctx);
602 if (!msg)
603 return;
605 msg->reg[0] = xdevcap ? MHL_READ_XDEVCAP : MHL_READ_DEVCAP;
606 msg->send = sii8620_mt_read_devcap_send;
607 msg->recv = sii8620_mt_read_devcap_recv;
610 static void sii8620_mt_read_devcap_reg_recv(struct sii8620 *ctx,
611 struct sii8620_mt_msg *msg)
613 u8 reg = msg->reg[1] & 0x7f;
615 if (msg->reg[1] & 0x80)
616 ctx->xdevcap[reg] = msg->ret;
617 else
618 ctx->devcap[reg] = msg->ret;
621 static void sii8620_mt_read_devcap_reg(struct sii8620 *ctx, u8 reg)
623 struct sii8620_mt_msg *msg = sii8620_mt_msg_new(ctx);
625 if (!msg)
626 return;
628 msg->reg[0] = (reg & 0x80) ? MHL_READ_XDEVCAP_REG : MHL_READ_DEVCAP_REG;
629 msg->reg[1] = reg;
630 msg->send = sii8620_mt_msc_cmd_send;
631 msg->recv = sii8620_mt_read_devcap_reg_recv;
634 static inline void sii8620_mt_read_xdevcap_reg(struct sii8620 *ctx, u8 reg)
636 sii8620_mt_read_devcap_reg(ctx, reg | 0x80);
639 static void *sii8620_burst_get_tx_buf(struct sii8620 *ctx, int len)
641 u8 *buf = &ctx->burst.tx_buf[ctx->burst.tx_count];
642 int size = len + 2;
644 if (ctx->burst.tx_count + size > ARRAY_SIZE(ctx->burst.tx_buf)) {
645 dev_err(ctx->dev, "TX-BLK buffer exhausted\n");
646 ctx->error = -EINVAL;
647 return NULL;
650 ctx->burst.tx_count += size;
651 buf[1] = len;
653 return buf + 2;
656 static u8 *sii8620_burst_get_rx_buf(struct sii8620 *ctx, int len)
658 u8 *buf = &ctx->burst.rx_buf[ctx->burst.rx_count];
659 int size = len + 1;
661 if (ctx->burst.tx_count + size > ARRAY_SIZE(ctx->burst.tx_buf)) {
662 dev_err(ctx->dev, "RX-BLK buffer exhausted\n");
663 ctx->error = -EINVAL;
664 return NULL;
667 ctx->burst.rx_count += size;
668 buf[0] = len;
670 return buf + 1;
673 static void sii8620_burst_send(struct sii8620 *ctx)
675 int tx_left = ctx->burst.tx_count;
676 u8 *d = ctx->burst.tx_buf;
678 while (tx_left > 0) {
679 int len = d[1] + 2;
681 if (ctx->burst.r_count + len > ctx->burst.r_size)
682 break;
683 d[0] = min(ctx->burst.rx_ack, 255);
684 ctx->burst.rx_ack -= d[0];
685 sii8620_write_buf(ctx, REG_EMSC_XMIT_WRITE_PORT, d, len);
686 ctx->burst.r_count += len;
687 tx_left -= len;
688 d += len;
691 ctx->burst.tx_count = tx_left;
693 while (ctx->burst.rx_ack > 0) {
694 u8 b[2] = { min(ctx->burst.rx_ack, 255), 0 };
696 if (ctx->burst.r_count + 2 > ctx->burst.r_size)
697 break;
698 ctx->burst.rx_ack -= b[0];
699 sii8620_write_buf(ctx, REG_EMSC_XMIT_WRITE_PORT, b, 2);
700 ctx->burst.r_count += 2;
704 static void sii8620_burst_receive(struct sii8620 *ctx)
706 u8 buf[3], *d;
707 int count;
709 sii8620_read_buf(ctx, REG_EMSCRFIFOBCNTL, buf, 2);
710 count = get_unaligned_le16(buf);
711 while (count > 0) {
712 int len = min(count, 3);
714 sii8620_read_buf(ctx, REG_EMSC_RCV_READ_PORT, buf, len);
715 count -= len;
716 ctx->burst.rx_ack += len - 1;
717 ctx->burst.r_count -= buf[1];
718 if (ctx->burst.r_count < 0)
719 ctx->burst.r_count = 0;
721 if (len < 3 || !buf[2])
722 continue;
724 len = buf[2];
725 d = sii8620_burst_get_rx_buf(ctx, len);
726 if (!d)
727 continue;
728 sii8620_read_buf(ctx, REG_EMSC_RCV_READ_PORT, d, len);
729 count -= len;
730 ctx->burst.rx_ack += len;
734 static void sii8620_burst_tx_rbuf_info(struct sii8620 *ctx, int size)
736 struct mhl_burst_blk_rcv_buffer_info *d =
737 sii8620_burst_get_tx_buf(ctx, sizeof(*d));
738 if (!d)
739 return;
741 d->id = cpu_to_be16(MHL_BURST_ID_BLK_RCV_BUFFER_INFO);
742 d->size = cpu_to_le16(size);
745 static u8 sii8620_checksum(void *ptr, int size)
747 u8 *d = ptr, sum = 0;
749 while (size--)
750 sum += *d++;
752 return sum;
755 static void sii8620_mhl_burst_hdr_set(struct mhl3_burst_header *h,
756 enum mhl_burst_id id)
758 h->id = cpu_to_be16(id);
759 h->total_entries = 1;
760 h->sequence_index = 1;
763 static void sii8620_burst_tx_bits_per_pixel_fmt(struct sii8620 *ctx, u8 fmt)
765 struct mhl_burst_bits_per_pixel_fmt *d;
766 const int size = sizeof(*d) + sizeof(d->desc[0]);
768 d = sii8620_burst_get_tx_buf(ctx, size);
769 if (!d)
770 return;
772 sii8620_mhl_burst_hdr_set(&d->hdr, MHL_BURST_ID_BITS_PER_PIXEL_FMT);
773 d->num_entries = 1;
774 d->desc[0].stream_id = 0;
775 d->desc[0].pixel_format = fmt;
776 d->hdr.checksum -= sii8620_checksum(d, size);
779 static void sii8620_burst_rx_all(struct sii8620 *ctx)
781 u8 *d = ctx->burst.rx_buf;
782 int count = ctx->burst.rx_count;
784 while (count-- > 0) {
785 int len = *d++;
786 int id = get_unaligned_be16(&d[0]);
788 switch (id) {
789 case MHL_BURST_ID_BLK_RCV_BUFFER_INFO:
790 ctx->burst.r_size = get_unaligned_le16(&d[2]);
791 break;
792 default:
793 break;
795 count -= len;
796 d += len;
798 ctx->burst.rx_count = 0;
801 static void sii8620_fetch_edid(struct sii8620 *ctx)
803 u8 lm_ddc, ddc_cmd, int3, cbus;
804 int fetched, i;
805 int edid_len = EDID_LENGTH;
806 u8 *edid;
808 sii8620_readb(ctx, REG_CBUS_STATUS);
809 lm_ddc = sii8620_readb(ctx, REG_LM_DDC);
810 ddc_cmd = sii8620_readb(ctx, REG_DDC_CMD);
812 sii8620_write_seq(ctx,
813 REG_INTR9_MASK, 0,
814 REG_EDID_CTRL, BIT_EDID_CTRL_EDID_FIFO_ADDR_AUTO,
815 REG_HDCP2X_POLL_CS, 0x71,
816 REG_HDCP2X_CTRL_0, BIT_HDCP2X_CTRL_0_HDCP2X_HDCPTX,
817 REG_LM_DDC, lm_ddc | BIT_LM_DDC_SW_TPI_EN_DISABLED,
820 for (i = 0; i < 256; ++i) {
821 u8 ddc_stat = sii8620_readb(ctx, REG_DDC_STATUS);
823 if (!(ddc_stat & BIT_DDC_STATUS_DDC_I2C_IN_PROG))
824 break;
825 sii8620_write(ctx, REG_DDC_STATUS,
826 BIT_DDC_STATUS_DDC_FIFO_EMPTY);
829 sii8620_write(ctx, REG_DDC_ADDR, 0x50 << 1);
831 edid = kmalloc(EDID_LENGTH, GFP_KERNEL);
832 if (!edid) {
833 ctx->error = -ENOMEM;
834 return;
837 #define FETCH_SIZE 16
838 for (fetched = 0; fetched < edid_len; fetched += FETCH_SIZE) {
839 sii8620_readb(ctx, REG_DDC_STATUS);
840 sii8620_write_seq(ctx,
841 REG_DDC_CMD, ddc_cmd | VAL_DDC_CMD_DDC_CMD_ABORT,
842 REG_DDC_CMD, ddc_cmd | VAL_DDC_CMD_DDC_CMD_CLEAR_FIFO,
843 REG_DDC_STATUS, BIT_DDC_STATUS_DDC_FIFO_EMPTY
845 sii8620_write_seq(ctx,
846 REG_DDC_SEGM, fetched >> 8,
847 REG_DDC_OFFSET, fetched & 0xff,
848 REG_DDC_DIN_CNT1, FETCH_SIZE,
849 REG_DDC_DIN_CNT2, 0,
850 REG_DDC_CMD, ddc_cmd | VAL_DDC_CMD_ENH_DDC_READ_NO_ACK
853 do {
854 int3 = sii8620_readb(ctx, REG_INTR3);
855 cbus = sii8620_readb(ctx, REG_CBUS_STATUS);
857 if (int3 & BIT_DDC_CMD_DONE)
858 break;
860 if (!(cbus & BIT_CBUS_STATUS_CBUS_CONNECTED)) {
861 kfree(edid);
862 edid = NULL;
863 goto end;
865 } while (1);
867 sii8620_readb(ctx, REG_DDC_STATUS);
868 while (sii8620_readb(ctx, REG_DDC_DOUT_CNT) < FETCH_SIZE)
869 usleep_range(10, 20);
871 sii8620_read_buf(ctx, REG_DDC_DATA, edid + fetched, FETCH_SIZE);
872 if (fetched + FETCH_SIZE == EDID_LENGTH) {
873 u8 ext = ((struct edid *)edid)->extensions;
875 if (ext) {
876 u8 *new_edid;
878 edid_len += ext * EDID_LENGTH;
879 new_edid = krealloc(edid, edid_len, GFP_KERNEL);
880 if (!new_edid) {
881 kfree(edid);
882 ctx->error = -ENOMEM;
883 return;
885 edid = new_edid;
890 sii8620_write_seq(ctx,
891 REG_INTR3_MASK, BIT_DDC_CMD_DONE,
892 REG_LM_DDC, lm_ddc
895 end:
896 kfree(ctx->edid);
897 ctx->edid = (struct edid *)edid;
900 static void sii8620_set_upstream_edid(struct sii8620 *ctx)
902 sii8620_setbits(ctx, REG_DPD, BIT_DPD_PDNRX12 | BIT_DPD_PDIDCK_N
903 | BIT_DPD_PD_MHL_CLK_N, 0xff);
905 sii8620_write_seq_static(ctx,
906 REG_RX_HDMI_CTRL3, 0x00,
907 REG_PKT_FILTER_0, 0xFF,
908 REG_PKT_FILTER_1, 0xFF,
909 REG_ALICE0_BW_I2C, 0x06
912 sii8620_setbits(ctx, REG_RX_HDMI_CLR_BUFFER,
913 BIT_RX_HDMI_CLR_BUFFER_VSI_CLR_EN, 0xff);
915 sii8620_write_seq_static(ctx,
916 REG_EDID_CTRL, BIT_EDID_CTRL_EDID_FIFO_ADDR_AUTO
917 | BIT_EDID_CTRL_EDID_MODE_EN,
918 REG_EDID_FIFO_ADDR, 0,
921 sii8620_write_buf(ctx, REG_EDID_FIFO_WR_DATA, (u8 *)ctx->edid,
922 (ctx->edid->extensions + 1) * EDID_LENGTH);
924 sii8620_write_seq_static(ctx,
925 REG_EDID_CTRL, BIT_EDID_CTRL_EDID_PRIME_VALID
926 | BIT_EDID_CTRL_EDID_FIFO_ADDR_AUTO
927 | BIT_EDID_CTRL_EDID_MODE_EN,
928 REG_INTR5_MASK, BIT_INTR_SCDT_CHANGE,
929 REG_INTR9_MASK, 0
933 static void sii8620_xtal_set_rate(struct sii8620 *ctx)
935 static const struct {
936 unsigned int rate;
937 u8 div;
938 u8 tp1;
939 } rates[] = {
940 { 19200, 0x04, 0x53 },
941 { 20000, 0x04, 0x62 },
942 { 24000, 0x05, 0x75 },
943 { 30000, 0x06, 0x92 },
944 { 38400, 0x0c, 0xbc },
946 unsigned long rate = clk_get_rate(ctx->clk_xtal) / 1000;
947 int i;
949 for (i = 0; i < ARRAY_SIZE(rates) - 1; ++i)
950 if (rate <= rates[i].rate)
951 break;
953 if (rate != rates[i].rate)
954 dev_err(ctx->dev, "xtal clock rate(%lukHz) not supported, setting MHL for %ukHz.\n",
955 rate, rates[i].rate);
957 sii8620_write(ctx, REG_DIV_CTL_MAIN, rates[i].div);
958 sii8620_write(ctx, REG_HDCP2X_TP1, rates[i].tp1);
961 static int sii8620_hw_on(struct sii8620 *ctx)
963 int ret;
965 ret = regulator_bulk_enable(ARRAY_SIZE(ctx->supplies), ctx->supplies);
966 if (ret)
967 return ret;
968 usleep_range(10000, 20000);
969 return clk_prepare_enable(ctx->clk_xtal);
972 static int sii8620_hw_off(struct sii8620 *ctx)
974 clk_disable_unprepare(ctx->clk_xtal);
975 gpiod_set_value(ctx->gpio_reset, 1);
976 return regulator_bulk_disable(ARRAY_SIZE(ctx->supplies), ctx->supplies);
979 static void sii8620_hw_reset(struct sii8620 *ctx)
981 usleep_range(10000, 20000);
982 gpiod_set_value(ctx->gpio_reset, 0);
983 usleep_range(5000, 20000);
984 gpiod_set_value(ctx->gpio_reset, 1);
985 usleep_range(10000, 20000);
986 gpiod_set_value(ctx->gpio_reset, 0);
987 msleep(300);
990 static void sii8620_cbus_reset(struct sii8620 *ctx)
992 sii8620_write(ctx, REG_PWD_SRST, BIT_PWD_SRST_CBUS_RST
993 | BIT_PWD_SRST_CBUS_RST_SW_EN);
994 usleep_range(10000, 20000);
995 sii8620_write(ctx, REG_PWD_SRST, BIT_PWD_SRST_CBUS_RST_SW_EN);
998 static void sii8620_set_auto_zone(struct sii8620 *ctx)
1000 if (ctx->mode != CM_MHL1) {
1001 sii8620_write_seq_static(ctx,
1002 REG_TX_ZONE_CTL1, 0x0,
1003 REG_MHL_PLL_CTL0, VAL_MHL_PLL_CTL0_HDMI_CLK_RATIO_1X
1004 | BIT_MHL_PLL_CTL0_CRYSTAL_CLK_SEL
1005 | BIT_MHL_PLL_CTL0_ZONE_MASK_OE
1007 } else {
1008 sii8620_write_seq_static(ctx,
1009 REG_TX_ZONE_CTL1, VAL_TX_ZONE_CTL1_TX_ZONE_CTRL_MODE,
1010 REG_MHL_PLL_CTL0, VAL_MHL_PLL_CTL0_HDMI_CLK_RATIO_1X
1011 | BIT_MHL_PLL_CTL0_ZONE_MASK_OE
1016 static void sii8620_stop_video(struct sii8620 *ctx)
1018 u8 uninitialized_var(val);
1020 sii8620_write_seq_static(ctx,
1021 REG_TPI_INTR_EN, 0,
1022 REG_HDCP2X_INTR0_MASK, 0,
1023 REG_TPI_COPP_DATA2, 0,
1024 REG_TPI_INTR_ST0, ~0,
1027 switch (ctx->sink_type) {
1028 case SINK_DVI:
1029 val = BIT_TPI_SC_REG_TMDS_OE_POWER_DOWN
1030 | BIT_TPI_SC_TPI_AV_MUTE;
1031 break;
1032 case SINK_HDMI:
1033 default:
1034 val = BIT_TPI_SC_REG_TMDS_OE_POWER_DOWN
1035 | BIT_TPI_SC_TPI_AV_MUTE
1036 | BIT_TPI_SC_TPI_OUTPUT_MODE_0_HDMI;
1037 break;
1040 sii8620_write(ctx, REG_TPI_SC, val);
1043 static void sii8620_set_format(struct sii8620 *ctx)
1045 u8 out_fmt;
1047 if (sii8620_is_mhl3(ctx)) {
1048 sii8620_setbits(ctx, REG_M3_P0CTRL,
1049 BIT_M3_P0CTRL_MHL3_P0_PIXEL_MODE_PACKED,
1050 ctx->use_packed_pixel ? ~0 : 0);
1051 } else {
1052 if (ctx->use_packed_pixel)
1053 sii8620_write_seq_static(ctx,
1054 REG_VID_MODE, BIT_VID_MODE_M1080P,
1055 REG_MHL_TOP_CTL, BIT_MHL_TOP_CTL_MHL_PP_SEL | 1,
1056 REG_MHLTX_CTL6, 0x60
1058 else
1059 sii8620_write_seq_static(ctx,
1060 REG_VID_MODE, 0,
1061 REG_MHL_TOP_CTL, 1,
1062 REG_MHLTX_CTL6, 0xa0
1066 if (ctx->use_packed_pixel)
1067 out_fmt = VAL_TPI_FORMAT(YCBCR422, FULL) |
1068 BIT_TPI_OUTPUT_CSCMODE709;
1069 else
1070 out_fmt = VAL_TPI_FORMAT(RGB, FULL);
1072 sii8620_write_seq(ctx,
1073 REG_TPI_INPUT, VAL_TPI_FORMAT(RGB, FULL),
1074 REG_TPI_OUTPUT, out_fmt,
1078 static int mhl3_infoframe_init(struct mhl3_infoframe *frame)
1080 memset(frame, 0, sizeof(*frame));
1082 frame->version = 3;
1083 frame->hev_format = -1;
1084 return 0;
1087 static ssize_t mhl3_infoframe_pack(struct mhl3_infoframe *frame,
1088 void *buffer, size_t size)
1090 const int frm_len = HDMI_INFOFRAME_HEADER_SIZE + MHL3_INFOFRAME_SIZE;
1091 u8 *ptr = buffer;
1093 if (size < frm_len)
1094 return -ENOSPC;
1096 memset(buffer, 0, size);
1097 ptr[0] = HDMI_INFOFRAME_TYPE_VENDOR;
1098 ptr[1] = frame->version;
1099 ptr[2] = MHL3_INFOFRAME_SIZE;
1100 ptr[4] = MHL3_IEEE_OUI & 0xff;
1101 ptr[5] = (MHL3_IEEE_OUI >> 8) & 0xff;
1102 ptr[6] = (MHL3_IEEE_OUI >> 16) & 0xff;
1103 ptr[7] = frame->video_format & 0x3;
1104 ptr[7] |= (frame->format_type & 0x7) << 2;
1105 ptr[7] |= frame->sep_audio ? BIT(5) : 0;
1106 if (frame->hev_format >= 0) {
1107 ptr[9] = 1;
1108 ptr[10] = (frame->hev_format >> 8) & 0xff;
1109 ptr[11] = frame->hev_format & 0xff;
1111 if (frame->av_delay) {
1112 bool sign = frame->av_delay < 0;
1113 int delay = sign ? -frame->av_delay : frame->av_delay;
1115 ptr[12] = (delay >> 16) & 0xf;
1116 if (sign)
1117 ptr[12] |= BIT(4);
1118 ptr[13] = (delay >> 8) & 0xff;
1119 ptr[14] = delay & 0xff;
1121 ptr[3] -= sii8620_checksum(buffer, frm_len);
1122 return frm_len;
1125 static void sii8620_set_infoframes(struct sii8620 *ctx)
1127 struct mhl3_infoframe mhl_frm;
1128 union hdmi_infoframe frm;
1129 u8 buf[31];
1130 int ret;
1132 if (!sii8620_is_mhl3(ctx) || !ctx->use_packed_pixel) {
1133 sii8620_write(ctx, REG_TPI_SC,
1134 BIT_TPI_SC_TPI_OUTPUT_MODE_0_HDMI);
1135 sii8620_write_buf(ctx, REG_TPI_AVI_CHSUM, ctx->avif + 3,
1136 ARRAY_SIZE(ctx->avif) - 3);
1137 sii8620_write(ctx, REG_PKT_FILTER_0,
1138 BIT_PKT_FILTER_0_DROP_CEA_GAMUT_PKT |
1139 BIT_PKT_FILTER_0_DROP_MPEG_PKT |
1140 BIT_PKT_FILTER_0_DROP_GCP_PKT,
1141 BIT_PKT_FILTER_1_DROP_GEN_PKT);
1142 return;
1145 ret = hdmi_avi_infoframe_init(&frm.avi);
1146 frm.avi.colorspace = HDMI_COLORSPACE_YUV422;
1147 frm.avi.active_aspect = HDMI_ACTIVE_ASPECT_PICTURE;
1148 frm.avi.picture_aspect = HDMI_PICTURE_ASPECT_16_9;
1149 frm.avi.colorimetry = HDMI_COLORIMETRY_ITU_709;
1150 frm.avi.video_code = ctx->video_code;
1151 if (!ret)
1152 ret = hdmi_avi_infoframe_pack(&frm.avi, buf, ARRAY_SIZE(buf));
1153 if (ret > 0)
1154 sii8620_write_buf(ctx, REG_TPI_AVI_CHSUM, buf + 3, ret - 3);
1155 sii8620_write(ctx, REG_PKT_FILTER_0,
1156 BIT_PKT_FILTER_0_DROP_CEA_GAMUT_PKT |
1157 BIT_PKT_FILTER_0_DROP_MPEG_PKT |
1158 BIT_PKT_FILTER_0_DROP_AVI_PKT |
1159 BIT_PKT_FILTER_0_DROP_GCP_PKT,
1160 BIT_PKT_FILTER_1_VSI_OVERRIDE_DIS |
1161 BIT_PKT_FILTER_1_DROP_GEN_PKT |
1162 BIT_PKT_FILTER_1_DROP_VSIF_PKT);
1164 sii8620_write(ctx, REG_TPI_INFO_FSEL, BIT_TPI_INFO_FSEL_EN
1165 | BIT_TPI_INFO_FSEL_RPT | VAL_TPI_INFO_FSEL_VSI);
1166 ret = mhl3_infoframe_init(&mhl_frm);
1167 if (!ret)
1168 ret = mhl3_infoframe_pack(&mhl_frm, buf, ARRAY_SIZE(buf));
1169 sii8620_write_buf(ctx, REG_TPI_INFO_B0, buf, ret);
1172 static void sii8620_start_video(struct sii8620 *ctx)
1174 if (!sii8620_is_mhl3(ctx))
1175 sii8620_stop_video(ctx);
1177 if (ctx->sink_type == SINK_DVI && !sii8620_is_mhl3(ctx)) {
1178 sii8620_write(ctx, REG_RX_HDMI_CTRL2,
1179 VAL_RX_HDMI_CTRL2_DEFVAL);
1180 sii8620_write(ctx, REG_TPI_SC, 0);
1181 return;
1184 sii8620_write_seq_static(ctx,
1185 REG_RX_HDMI_CTRL2, VAL_RX_HDMI_CTRL2_DEFVAL
1186 | BIT_RX_HDMI_CTRL2_USE_AV_MUTE,
1187 REG_VID_OVRRD, BIT_VID_OVRRD_PP_AUTO_DISABLE
1188 | BIT_VID_OVRRD_M1080P_OVRRD);
1189 sii8620_set_format(ctx);
1191 if (!sii8620_is_mhl3(ctx)) {
1192 sii8620_mt_write_stat(ctx, MHL_DST_REG(LINK_MODE),
1193 MHL_DST_LM_CLK_MODE_NORMAL | MHL_DST_LM_PATH_ENABLED);
1194 sii8620_set_auto_zone(ctx);
1195 } else {
1196 static const struct {
1197 int max_clk;
1198 u8 zone;
1199 u8 link_rate;
1200 u8 rrp_decode;
1201 } clk_spec[] = {
1202 { 150000, VAL_TX_ZONE_CTL3_TX_ZONE_1_5GBPS,
1203 MHL_XDS_LINK_RATE_1_5_GBPS, 0x38 },
1204 { 300000, VAL_TX_ZONE_CTL3_TX_ZONE_3GBPS,
1205 MHL_XDS_LINK_RATE_3_0_GBPS, 0x40 },
1206 { 600000, VAL_TX_ZONE_CTL3_TX_ZONE_6GBPS,
1207 MHL_XDS_LINK_RATE_6_0_GBPS, 0x40 },
1209 u8 p0_ctrl = BIT_M3_P0CTRL_MHL3_P0_PORT_EN;
1210 int clk = ctx->pixel_clock * (ctx->use_packed_pixel ? 2 : 3);
1211 int i;
1213 for (i = 0; i < ARRAY_SIZE(clk_spec); ++i)
1214 if (clk < clk_spec[i].max_clk)
1215 break;
1217 if (100 * clk >= 98 * clk_spec[i].max_clk)
1218 p0_ctrl |= BIT_M3_P0CTRL_MHL3_P0_UNLIMIT_EN;
1220 sii8620_burst_tx_bits_per_pixel_fmt(ctx, ctx->use_packed_pixel);
1221 sii8620_burst_send(ctx);
1222 sii8620_write_seq(ctx,
1223 REG_MHL_DP_CTL0, 0xf0,
1224 REG_MHL3_TX_ZONE_CTL, clk_spec[i].zone);
1225 sii8620_setbits(ctx, REG_M3_P0CTRL,
1226 BIT_M3_P0CTRL_MHL3_P0_PORT_EN
1227 | BIT_M3_P0CTRL_MHL3_P0_UNLIMIT_EN, p0_ctrl);
1228 sii8620_setbits(ctx, REG_M3_POSTM, MSK_M3_POSTM_RRP_DECODE,
1229 clk_spec[i].rrp_decode);
1230 sii8620_write_seq_static(ctx,
1231 REG_M3_CTRL, VAL_M3_CTRL_MHL3_VALUE
1232 | BIT_M3_CTRL_H2M_SWRST,
1233 REG_M3_CTRL, VAL_M3_CTRL_MHL3_VALUE
1235 sii8620_mt_write_stat(ctx, MHL_XDS_REG(AVLINK_MODE_CONTROL),
1236 clk_spec[i].link_rate);
1239 sii8620_set_infoframes(ctx);
1242 static void sii8620_disable_hpd(struct sii8620 *ctx)
1244 sii8620_setbits(ctx, REG_EDID_CTRL, BIT_EDID_CTRL_EDID_PRIME_VALID, 0);
1245 sii8620_write_seq_static(ctx,
1246 REG_HPD_CTRL, BIT_HPD_CTRL_HPD_OUT_OVR_EN,
1247 REG_INTR8_MASK, 0
1251 static void sii8620_enable_hpd(struct sii8620 *ctx)
1253 sii8620_setbits(ctx, REG_TMDS_CSTAT_P3,
1254 BIT_TMDS_CSTAT_P3_SCDT_CLR_AVI_DIS
1255 | BIT_TMDS_CSTAT_P3_CLR_AVI, ~0);
1256 sii8620_write_seq_static(ctx,
1257 REG_HPD_CTRL, BIT_HPD_CTRL_HPD_OUT_OVR_EN
1258 | BIT_HPD_CTRL_HPD_HIGH,
1262 static void sii8620_mhl_discover(struct sii8620 *ctx)
1264 sii8620_write_seq_static(ctx,
1265 REG_DISC_CTRL9, BIT_DISC_CTRL9_WAKE_DRVFLT
1266 | BIT_DISC_CTRL9_DISC_PULSE_PROCEED,
1267 REG_DISC_CTRL4, VAL_DISC_CTRL4(VAL_PUP_5K, VAL_PUP_20K),
1268 REG_CBUS_DISC_INTR0_MASK, BIT_MHL3_EST_INT
1269 | BIT_MHL_EST_INT
1270 | BIT_NOT_MHL_EST_INT
1271 | BIT_CBUS_MHL3_DISCON_INT
1272 | BIT_CBUS_MHL12_DISCON_INT
1273 | BIT_RGND_READY_INT,
1274 REG_MHL_PLL_CTL0, VAL_MHL_PLL_CTL0_HDMI_CLK_RATIO_1X
1275 | BIT_MHL_PLL_CTL0_CRYSTAL_CLK_SEL
1276 | BIT_MHL_PLL_CTL0_ZONE_MASK_OE,
1277 REG_MHL_DP_CTL0, BIT_MHL_DP_CTL0_DP_OE
1278 | BIT_MHL_DP_CTL0_TX_OE_OVR,
1279 REG_M3_CTRL, VAL_M3_CTRL_MHL3_VALUE,
1280 REG_MHL_DP_CTL1, 0xA2,
1281 REG_MHL_DP_CTL2, 0x03,
1282 REG_MHL_DP_CTL3, 0x35,
1283 REG_MHL_DP_CTL5, 0x02,
1284 REG_MHL_DP_CTL6, 0x02,
1285 REG_MHL_DP_CTL7, 0x03,
1286 REG_COC_CTLC, 0xFF,
1287 REG_DPD, BIT_DPD_PWRON_PLL | BIT_DPD_PDNTX12
1288 | BIT_DPD_OSC_EN | BIT_DPD_PWRON_HSIC,
1289 REG_COC_INTR_MASK, BIT_COC_PLL_LOCK_STATUS_CHANGE
1290 | BIT_COC_CALIBRATION_DONE,
1291 REG_CBUS_INT_1_MASK, BIT_CBUS_MSC_ABORT_RCVD
1292 | BIT_CBUS_CMD_ABORT,
1293 REG_CBUS_INT_0_MASK, BIT_CBUS_MSC_MT_DONE
1294 | BIT_CBUS_HPD_CHG
1295 | BIT_CBUS_MSC_MR_WRITE_STAT
1296 | BIT_CBUS_MSC_MR_MSC_MSG
1297 | BIT_CBUS_MSC_MR_WRITE_BURST
1298 | BIT_CBUS_MSC_MR_SET_INT
1299 | BIT_CBUS_MSC_MT_DONE_NACK
1303 static void sii8620_peer_specific_init(struct sii8620 *ctx)
1305 if (sii8620_is_mhl3(ctx))
1306 sii8620_write_seq_static(ctx,
1307 REG_SYS_CTRL1, BIT_SYS_CTRL1_BLOCK_DDC_BY_HPD,
1308 REG_EMSCINTRMASK1,
1309 BIT_EMSCINTR1_EMSC_TRAINING_COMMA_ERR
1311 else
1312 sii8620_write_seq_static(ctx,
1313 REG_HDCP2X_INTR0_MASK, 0x00,
1314 REG_EMSCINTRMASK1, 0x00,
1315 REG_HDCP2X_INTR0, 0xFF,
1316 REG_INTR1, 0xFF,
1317 REG_SYS_CTRL1, BIT_SYS_CTRL1_BLOCK_DDC_BY_HPD
1318 | BIT_SYS_CTRL1_TX_CTRL_HDMI
1322 #define SII8620_MHL_VERSION 0x32
1323 #define SII8620_SCRATCHPAD_SIZE 16
1324 #define SII8620_INT_STAT_SIZE 0x33
1326 static void sii8620_set_dev_cap(struct sii8620 *ctx)
1328 static const u8 devcap[MHL_DCAP_SIZE] = {
1329 [MHL_DCAP_MHL_VERSION] = SII8620_MHL_VERSION,
1330 [MHL_DCAP_CAT] = MHL_DCAP_CAT_SOURCE | MHL_DCAP_CAT_POWER,
1331 [MHL_DCAP_ADOPTER_ID_H] = 0x01,
1332 [MHL_DCAP_ADOPTER_ID_L] = 0x41,
1333 [MHL_DCAP_VID_LINK_MODE] = MHL_DCAP_VID_LINK_RGB444
1334 | MHL_DCAP_VID_LINK_PPIXEL
1335 | MHL_DCAP_VID_LINK_16BPP,
1336 [MHL_DCAP_AUD_LINK_MODE] = MHL_DCAP_AUD_LINK_2CH,
1337 [MHL_DCAP_VIDEO_TYPE] = MHL_DCAP_VT_GRAPHICS,
1338 [MHL_DCAP_LOG_DEV_MAP] = MHL_DCAP_LD_GUI,
1339 [MHL_DCAP_BANDWIDTH] = 0x0f,
1340 [MHL_DCAP_FEATURE_FLAG] = MHL_DCAP_FEATURE_RCP_SUPPORT
1341 | MHL_DCAP_FEATURE_RAP_SUPPORT
1342 | MHL_DCAP_FEATURE_SP_SUPPORT,
1343 [MHL_DCAP_SCRATCHPAD_SIZE] = SII8620_SCRATCHPAD_SIZE,
1344 [MHL_DCAP_INT_STAT_SIZE] = SII8620_INT_STAT_SIZE,
1346 static const u8 xdcap[MHL_XDC_SIZE] = {
1347 [MHL_XDC_ECBUS_SPEEDS] = MHL_XDC_ECBUS_S_075
1348 | MHL_XDC_ECBUS_S_8BIT,
1349 [MHL_XDC_TMDS_SPEEDS] = MHL_XDC_TMDS_150
1350 | MHL_XDC_TMDS_300 | MHL_XDC_TMDS_600,
1351 [MHL_XDC_ECBUS_ROLES] = MHL_XDC_DEV_HOST,
1352 [MHL_XDC_LOG_DEV_MAPX] = MHL_XDC_LD_PHONE,
1355 sii8620_write_buf(ctx, REG_MHL_DEVCAP_0, devcap, ARRAY_SIZE(devcap));
1356 sii8620_write_buf(ctx, REG_MHL_EXTDEVCAP_0, xdcap, ARRAY_SIZE(xdcap));
1359 static void sii8620_mhl_init(struct sii8620 *ctx)
1361 sii8620_write_seq_static(ctx,
1362 REG_DISC_CTRL4, VAL_DISC_CTRL4(VAL_PUP_OFF, VAL_PUP_20K),
1363 REG_CBUS_MSC_COMPAT_CTRL,
1364 BIT_CBUS_MSC_COMPAT_CTRL_XDEVCAP_EN,
1367 sii8620_peer_specific_init(ctx);
1369 sii8620_disable_hpd(ctx);
1371 sii8620_write_seq_static(ctx,
1372 REG_EDID_CTRL, BIT_EDID_CTRL_EDID_FIFO_ADDR_AUTO,
1373 REG_DISC_CTRL9, BIT_DISC_CTRL9_WAKE_DRVFLT
1374 | BIT_DISC_CTRL9_WAKE_PULSE_BYPASS,
1375 REG_TMDS0_CCTRL1, 0x90,
1376 REG_TMDS_CLK_EN, 0x01,
1377 REG_TMDS_CH_EN, 0x11,
1378 REG_BGR_BIAS, 0x87,
1379 REG_ALICE0_ZONE_CTRL, 0xE8,
1380 REG_ALICE0_MODE_CTRL, 0x04,
1382 sii8620_setbits(ctx, REG_LM_DDC, BIT_LM_DDC_SW_TPI_EN_DISABLED, 0);
1383 sii8620_write_seq_static(ctx,
1384 REG_TPI_HW_OPT3, 0x76,
1385 REG_TMDS_CCTRL, BIT_TMDS_CCTRL_TMDS_OE,
1386 REG_TPI_DTD_B2, 79,
1388 sii8620_set_dev_cap(ctx);
1389 sii8620_write_seq_static(ctx,
1390 REG_MDT_XMIT_TIMEOUT, 100,
1391 REG_MDT_XMIT_CTRL, 0x03,
1392 REG_MDT_XFIFO_STAT, 0x00,
1393 REG_MDT_RCV_TIMEOUT, 100,
1394 REG_CBUS_LINK_CTRL_8, 0x1D,
1397 sii8620_start_gen2_write_burst(ctx);
1398 sii8620_write_seq_static(ctx,
1399 REG_BIST_CTRL, 0x00,
1400 REG_COC_CTL1, 0x10,
1401 REG_COC_CTL2, 0x18,
1402 REG_COC_CTLF, 0x07,
1403 REG_COC_CTL11, 0xF8,
1404 REG_COC_CTL17, 0x61,
1405 REG_COC_CTL18, 0x46,
1406 REG_COC_CTL19, 0x15,
1407 REG_COC_CTL1A, 0x01,
1408 REG_MHL_COC_CTL3, BIT_MHL_COC_CTL3_COC_AECHO_EN,
1409 REG_MHL_COC_CTL4, 0x2D,
1410 REG_MHL_COC_CTL5, 0xF9,
1411 REG_MSC_HEARTBEAT_CTRL, 0x27,
1413 sii8620_disable_gen2_write_burst(ctx);
1415 sii8620_mt_write_stat(ctx, MHL_DST_REG(VERSION), SII8620_MHL_VERSION);
1416 sii8620_mt_write_stat(ctx, MHL_DST_REG(CONNECTED_RDY),
1417 MHL_DST_CONN_DCAP_RDY | MHL_DST_CONN_XDEVCAPP_SUPP
1418 | MHL_DST_CONN_POW_STAT);
1419 sii8620_mt_set_int(ctx, MHL_INT_REG(RCHANGE), MHL_INT_RC_DCAP_CHG);
1422 static void sii8620_emsc_enable(struct sii8620 *ctx)
1424 u8 reg;
1426 sii8620_setbits(ctx, REG_GENCTL, BIT_GENCTL_EMSC_EN
1427 | BIT_GENCTL_CLR_EMSC_RFIFO
1428 | BIT_GENCTL_CLR_EMSC_XFIFO, ~0);
1429 sii8620_setbits(ctx, REG_GENCTL, BIT_GENCTL_CLR_EMSC_RFIFO
1430 | BIT_GENCTL_CLR_EMSC_XFIFO, 0);
1431 sii8620_setbits(ctx, REG_COMMECNT, BIT_COMMECNT_I2C_TO_EMSC_EN, ~0);
1432 reg = sii8620_readb(ctx, REG_EMSCINTR);
1433 sii8620_write(ctx, REG_EMSCINTR, reg);
1434 sii8620_write(ctx, REG_EMSCINTRMASK, BIT_EMSCINTR_SPI_DVLD);
1437 static int sii8620_wait_for_fsm_state(struct sii8620 *ctx, u8 state)
1439 int i;
1441 for (i = 0; i < 10; ++i) {
1442 u8 s = sii8620_readb(ctx, REG_COC_STAT_0);
1444 if ((s & MSK_COC_STAT_0_FSM_STATE) == state)
1445 return 0;
1446 if (!(s & BIT_COC_STAT_0_PLL_LOCKED))
1447 return -EBUSY;
1448 usleep_range(4000, 6000);
1450 return -ETIMEDOUT;
1453 static void sii8620_set_mode(struct sii8620 *ctx, enum sii8620_mode mode)
1455 int ret;
1457 if (ctx->mode == mode)
1458 return;
1460 switch (mode) {
1461 case CM_MHL1:
1462 sii8620_write_seq_static(ctx,
1463 REG_CBUS_MSC_COMPAT_CTRL, 0x02,
1464 REG_M3_CTRL, VAL_M3_CTRL_MHL1_2_VALUE,
1465 REG_DPD, BIT_DPD_PWRON_PLL | BIT_DPD_PDNTX12
1466 | BIT_DPD_OSC_EN,
1467 REG_COC_INTR_MASK, 0
1469 ctx->mode = mode;
1470 break;
1471 case CM_MHL3:
1472 sii8620_write(ctx, REG_M3_CTRL, VAL_M3_CTRL_MHL3_VALUE);
1473 ctx->mode = mode;
1474 return;
1475 case CM_ECBUS_S:
1476 sii8620_emsc_enable(ctx);
1477 sii8620_write_seq_static(ctx,
1478 REG_TTXSPINUMS, 4,
1479 REG_TRXSPINUMS, 4,
1480 REG_TTXHSICNUMS, 0x14,
1481 REG_TRXHSICNUMS, 0x14,
1482 REG_TTXTOTNUMS, 0x18,
1483 REG_TRXTOTNUMS, 0x18,
1484 REG_PWD_SRST, BIT_PWD_SRST_COC_DOC_RST
1485 | BIT_PWD_SRST_CBUS_RST_SW_EN,
1486 REG_MHL_COC_CTL1, 0xbd,
1487 REG_PWD_SRST, BIT_PWD_SRST_CBUS_RST_SW_EN,
1488 REG_COC_CTLB, 0x01,
1489 REG_COC_CTL0, 0x5c,
1490 REG_COC_CTL14, 0x03,
1491 REG_COC_CTL15, 0x80,
1492 REG_MHL_DP_CTL6, BIT_MHL_DP_CTL6_DP_TAP1_SGN
1493 | BIT_MHL_DP_CTL6_DP_TAP1_EN
1494 | BIT_MHL_DP_CTL6_DT_PREDRV_FEEDCAP_EN,
1495 REG_MHL_DP_CTL8, 0x03
1497 ret = sii8620_wait_for_fsm_state(ctx, 0x03);
1498 sii8620_write_seq_static(ctx,
1499 REG_COC_CTL14, 0x00,
1500 REG_COC_CTL15, 0x80
1502 if (!ret)
1503 sii8620_write(ctx, REG_CBUS3_CNVT, 0x85);
1504 else
1505 sii8620_disconnect(ctx);
1506 return;
1507 case CM_DISCONNECTED:
1508 ctx->mode = mode;
1509 break;
1510 default:
1511 dev_err(ctx->dev, "%s mode %d not supported\n", __func__, mode);
1512 break;
1515 sii8620_set_auto_zone(ctx);
1517 if (mode != CM_MHL1)
1518 return;
1520 sii8620_write_seq_static(ctx,
1521 REG_MHL_DP_CTL0, 0xBC,
1522 REG_MHL_DP_CTL1, 0xBB,
1523 REG_MHL_DP_CTL3, 0x48,
1524 REG_MHL_DP_CTL5, 0x39,
1525 REG_MHL_DP_CTL2, 0x2A,
1526 REG_MHL_DP_CTL6, 0x2A,
1527 REG_MHL_DP_CTL7, 0x08
1531 static void sii8620_disconnect(struct sii8620 *ctx)
1533 sii8620_disable_gen2_write_burst(ctx);
1534 sii8620_stop_video(ctx);
1535 msleep(100);
1536 sii8620_cbus_reset(ctx);
1537 sii8620_set_mode(ctx, CM_DISCONNECTED);
1538 sii8620_write_seq_static(ctx,
1539 REG_TX_ZONE_CTL1, 0,
1540 REG_MHL_PLL_CTL0, 0x07,
1541 REG_COC_CTL0, 0x40,
1542 REG_CBUS3_CNVT, 0x84,
1543 REG_COC_CTL14, 0x00,
1544 REG_COC_CTL0, 0x40,
1545 REG_HRXCTRL3, 0x07,
1546 REG_MHL_PLL_CTL0, VAL_MHL_PLL_CTL0_HDMI_CLK_RATIO_1X
1547 | BIT_MHL_PLL_CTL0_CRYSTAL_CLK_SEL
1548 | BIT_MHL_PLL_CTL0_ZONE_MASK_OE,
1549 REG_MHL_DP_CTL0, BIT_MHL_DP_CTL0_DP_OE
1550 | BIT_MHL_DP_CTL0_TX_OE_OVR,
1551 REG_MHL_DP_CTL1, 0xBB,
1552 REG_MHL_DP_CTL3, 0x48,
1553 REG_MHL_DP_CTL5, 0x3F,
1554 REG_MHL_DP_CTL2, 0x2F,
1555 REG_MHL_DP_CTL6, 0x2A,
1556 REG_MHL_DP_CTL7, 0x03
1558 sii8620_disable_hpd(ctx);
1559 sii8620_write_seq_static(ctx,
1560 REG_M3_CTRL, VAL_M3_CTRL_MHL3_VALUE,
1561 REG_MHL_COC_CTL1, 0x07,
1562 REG_DISC_CTRL4, VAL_DISC_CTRL4(VAL_PUP_OFF, VAL_PUP_20K),
1563 REG_DISC_CTRL8, 0x00,
1564 REG_DISC_CTRL9, BIT_DISC_CTRL9_WAKE_DRVFLT
1565 | BIT_DISC_CTRL9_WAKE_PULSE_BYPASS,
1566 REG_INT_CTRL, 0x00,
1567 REG_MSC_HEARTBEAT_CTRL, 0x27,
1568 REG_DISC_CTRL1, 0x25,
1569 REG_CBUS_DISC_INTR0, (u8)~BIT_RGND_READY_INT,
1570 REG_CBUS_DISC_INTR0_MASK, BIT_RGND_READY_INT,
1571 REG_MDT_INT_1, 0xff,
1572 REG_MDT_INT_1_MASK, 0x00,
1573 REG_MDT_INT_0, 0xff,
1574 REG_MDT_INT_0_MASK, 0x00,
1575 REG_COC_INTR, 0xff,
1576 REG_COC_INTR_MASK, 0x00,
1577 REG_TRXINTH, 0xff,
1578 REG_TRXINTMH, 0x00,
1579 REG_CBUS_INT_0, 0xff,
1580 REG_CBUS_INT_0_MASK, 0x00,
1581 REG_CBUS_INT_1, 0xff,
1582 REG_CBUS_INT_1_MASK, 0x00,
1583 REG_EMSCINTR, 0xff,
1584 REG_EMSCINTRMASK, 0x00,
1585 REG_EMSCINTR1, 0xff,
1586 REG_EMSCINTRMASK1, 0x00,
1587 REG_INTR8, 0xff,
1588 REG_INTR8_MASK, 0x00,
1589 REG_TPI_INTR_ST0, 0xff,
1590 REG_TPI_INTR_EN, 0x00,
1591 REG_HDCP2X_INTR0, 0xff,
1592 REG_HDCP2X_INTR0_MASK, 0x00,
1593 REG_INTR9, 0xff,
1594 REG_INTR9_MASK, 0x00,
1595 REG_INTR3, 0xff,
1596 REG_INTR3_MASK, 0x00,
1597 REG_INTR5, 0xff,
1598 REG_INTR5_MASK, 0x00,
1599 REG_INTR2, 0xff,
1600 REG_INTR2_MASK, 0x00,
1602 memset(ctx->stat, 0, sizeof(ctx->stat));
1603 memset(ctx->xstat, 0, sizeof(ctx->xstat));
1604 memset(ctx->devcap, 0, sizeof(ctx->devcap));
1605 memset(ctx->xdevcap, 0, sizeof(ctx->xdevcap));
1606 ctx->cbus_status = 0;
1607 ctx->sink_type = SINK_NONE;
1608 kfree(ctx->edid);
1609 ctx->edid = NULL;
1610 sii8620_mt_cleanup(ctx);
1613 static void sii8620_mhl_disconnected(struct sii8620 *ctx)
1615 sii8620_write_seq_static(ctx,
1616 REG_DISC_CTRL4, VAL_DISC_CTRL4(VAL_PUP_OFF, VAL_PUP_20K),
1617 REG_CBUS_MSC_COMPAT_CTRL,
1618 BIT_CBUS_MSC_COMPAT_CTRL_XDEVCAP_EN
1620 sii8620_disconnect(ctx);
1623 static void sii8620_irq_disc(struct sii8620 *ctx)
1625 u8 stat = sii8620_readb(ctx, REG_CBUS_DISC_INTR0);
1627 if (stat & VAL_CBUS_MHL_DISCON)
1628 sii8620_mhl_disconnected(ctx);
1630 if (stat & BIT_RGND_READY_INT) {
1631 u8 stat2 = sii8620_readb(ctx, REG_DISC_STAT2);
1633 if ((stat2 & MSK_DISC_STAT2_RGND) == VAL_RGND_1K) {
1634 sii8620_mhl_discover(ctx);
1635 } else {
1636 sii8620_write_seq_static(ctx,
1637 REG_DISC_CTRL9, BIT_DISC_CTRL9_WAKE_DRVFLT
1638 | BIT_DISC_CTRL9_NOMHL_EST
1639 | BIT_DISC_CTRL9_WAKE_PULSE_BYPASS,
1640 REG_CBUS_DISC_INTR0_MASK, BIT_RGND_READY_INT
1641 | BIT_CBUS_MHL3_DISCON_INT
1642 | BIT_CBUS_MHL12_DISCON_INT
1643 | BIT_NOT_MHL_EST_INT
1647 if (stat & BIT_MHL_EST_INT)
1648 sii8620_mhl_init(ctx);
1650 sii8620_write(ctx, REG_CBUS_DISC_INTR0, stat);
1653 static void sii8620_read_burst(struct sii8620 *ctx)
1655 u8 buf[17];
1657 sii8620_read_buf(ctx, REG_MDT_RCV_READ_PORT, buf, ARRAY_SIZE(buf));
1658 sii8620_write(ctx, REG_MDT_RCV_CTRL, BIT_MDT_RCV_CTRL_MDT_RCV_EN |
1659 BIT_MDT_RCV_CTRL_MDT_DELAY_RCV_EN |
1660 BIT_MDT_RCV_CTRL_MDT_RFIFO_CLR_CUR);
1661 sii8620_readb(ctx, REG_MDT_RFIFO_STAT);
1664 static void sii8620_irq_g2wb(struct sii8620 *ctx)
1666 u8 stat = sii8620_readb(ctx, REG_MDT_INT_0);
1668 if (stat & BIT_MDT_IDLE_AFTER_HAWB_DISABLE)
1669 if (sii8620_is_mhl3(ctx))
1670 sii8620_mt_set_int(ctx, MHL_INT_REG(RCHANGE),
1671 MHL_INT_RC_FEAT_COMPLETE);
1673 if (stat & BIT_MDT_RFIFO_DATA_RDY)
1674 sii8620_read_burst(ctx);
1676 if (stat & BIT_MDT_XFIFO_EMPTY)
1677 sii8620_write(ctx, REG_MDT_XMIT_CTRL, 0);
1679 sii8620_write(ctx, REG_MDT_INT_0, stat);
1682 static void sii8620_status_dcap_ready(struct sii8620 *ctx)
1684 enum sii8620_mode mode;
1686 mode = ctx->stat[MHL_DST_VERSION] >= 0x30 ? CM_MHL3 : CM_MHL1;
1687 if (mode > ctx->mode)
1688 sii8620_set_mode(ctx, mode);
1689 sii8620_peer_specific_init(ctx);
1690 sii8620_write(ctx, REG_INTR9_MASK, BIT_INTR9_DEVCAP_DONE
1691 | BIT_INTR9_EDID_DONE | BIT_INTR9_EDID_ERROR);
1694 static void sii8620_status_changed_path(struct sii8620 *ctx)
1696 if (ctx->stat[MHL_DST_LINK_MODE] & MHL_DST_LM_PATH_ENABLED) {
1697 sii8620_mt_write_stat(ctx, MHL_DST_REG(LINK_MODE),
1698 MHL_DST_LM_CLK_MODE_NORMAL
1699 | MHL_DST_LM_PATH_ENABLED);
1700 if (!sii8620_is_mhl3(ctx))
1701 sii8620_mt_read_devcap(ctx, false);
1702 sii8620_mt_set_cont(ctx, sii8620_sink_detected);
1703 } else {
1704 sii8620_mt_write_stat(ctx, MHL_DST_REG(LINK_MODE),
1705 MHL_DST_LM_CLK_MODE_NORMAL);
1709 static void sii8620_msc_mr_write_stat(struct sii8620 *ctx)
1711 u8 st[MHL_DST_SIZE], xst[MHL_XDS_SIZE];
1713 sii8620_read_buf(ctx, REG_MHL_STAT_0, st, MHL_DST_SIZE);
1714 sii8620_read_buf(ctx, REG_MHL_EXTSTAT_0, xst, MHL_XDS_SIZE);
1716 sii8620_update_array(ctx->stat, st, MHL_DST_SIZE);
1717 sii8620_update_array(ctx->xstat, xst, MHL_XDS_SIZE);
1719 if (ctx->stat[MHL_DST_CONNECTED_RDY] & MHL_DST_CONN_DCAP_RDY)
1720 sii8620_status_dcap_ready(ctx);
1722 if (st[MHL_DST_LINK_MODE] & MHL_DST_LM_PATH_ENABLED)
1723 sii8620_status_changed_path(ctx);
1726 static void sii8620_ecbus_up(struct sii8620 *ctx, int ret)
1728 if (ret < 0)
1729 return;
1731 sii8620_set_mode(ctx, CM_ECBUS_S);
1734 static void sii8620_got_ecbus_speed(struct sii8620 *ctx, int ret)
1736 if (ret < 0)
1737 return;
1739 sii8620_mt_write_stat(ctx, MHL_XDS_REG(CURR_ECBUS_MODE),
1740 MHL_XDS_ECBUS_S | MHL_XDS_SLOT_MODE_8BIT);
1741 sii8620_mt_rap(ctx, MHL_RAP_CBUS_MODE_UP);
1742 sii8620_mt_set_cont(ctx, sii8620_ecbus_up);
1745 static void sii8620_mhl_burst_emsc_support_set(struct mhl_burst_emsc_support *d,
1746 enum mhl_burst_id id)
1748 sii8620_mhl_burst_hdr_set(&d->hdr, MHL_BURST_ID_EMSC_SUPPORT);
1749 d->num_entries = 1;
1750 d->burst_id[0] = cpu_to_be16(id);
1753 static void sii8620_send_features(struct sii8620 *ctx)
1755 u8 buf[16];
1757 sii8620_write(ctx, REG_MDT_XMIT_CTRL, BIT_MDT_XMIT_CTRL_EN
1758 | BIT_MDT_XMIT_CTRL_FIXED_BURST_LEN);
1759 sii8620_mhl_burst_emsc_support_set((void *)buf,
1760 MHL_BURST_ID_HID_PAYLOAD);
1761 sii8620_write_buf(ctx, REG_MDT_XMIT_WRITE_PORT, buf, ARRAY_SIZE(buf));
1764 static bool sii8620_rcp_consume(struct sii8620 *ctx, u8 scancode)
1766 bool pressed = !(scancode & MHL_RCP_KEY_RELEASED_MASK);
1768 scancode &= MHL_RCP_KEY_ID_MASK;
1770 if (!ctx->rc_dev) {
1771 dev_dbg(ctx->dev, "RCP input device not initialized\n");
1772 return false;
1775 if (pressed)
1776 rc_keydown(ctx->rc_dev, RC_PROTO_CEC, scancode, 0);
1777 else
1778 rc_keyup(ctx->rc_dev);
1780 return true;
1783 static void sii8620_msc_mr_set_int(struct sii8620 *ctx)
1785 u8 ints[MHL_INT_SIZE];
1787 sii8620_read_buf(ctx, REG_MHL_INT_0, ints, MHL_INT_SIZE);
1788 sii8620_write_buf(ctx, REG_MHL_INT_0, ints, MHL_INT_SIZE);
1790 if (ints[MHL_INT_RCHANGE] & MHL_INT_RC_DCAP_CHG) {
1791 switch (ctx->mode) {
1792 case CM_MHL3:
1793 sii8620_mt_read_xdevcap_reg(ctx, MHL_XDC_ECBUS_SPEEDS);
1794 sii8620_mt_set_cont(ctx, sii8620_got_ecbus_speed);
1795 break;
1796 case CM_ECBUS_S:
1797 sii8620_mt_read_devcap(ctx, true);
1798 break;
1799 default:
1800 break;
1803 if (ints[MHL_INT_RCHANGE] & MHL_INT_RC_FEAT_REQ)
1804 sii8620_send_features(ctx);
1805 if (ints[MHL_INT_RCHANGE] & MHL_INT_RC_FEAT_COMPLETE)
1806 sii8620_edid_read(ctx, 0);
1809 static struct sii8620_mt_msg *sii8620_msc_msg_first(struct sii8620 *ctx)
1811 struct device *dev = ctx->dev;
1813 if (list_empty(&ctx->mt_queue)) {
1814 dev_err(dev, "unexpected MSC MT response\n");
1815 return NULL;
1818 return list_first_entry(&ctx->mt_queue, struct sii8620_mt_msg, node);
1821 static void sii8620_msc_mt_done(struct sii8620 *ctx)
1823 struct sii8620_mt_msg *msg = sii8620_msc_msg_first(ctx);
1825 if (!msg)
1826 return;
1828 msg->ret = sii8620_readb(ctx, REG_MSC_MT_RCVD_DATA0);
1829 ctx->mt_state = MT_STATE_DONE;
1832 static void sii8620_msc_mr_msc_msg(struct sii8620 *ctx)
1834 struct sii8620_mt_msg *msg;
1835 u8 buf[2];
1837 sii8620_read_buf(ctx, REG_MSC_MR_MSC_MSG_RCVD_1ST_DATA, buf, 2);
1839 switch (buf[0]) {
1840 case MHL_MSC_MSG_RAPK:
1841 msg = sii8620_msc_msg_first(ctx);
1842 if (!msg)
1843 return;
1844 msg->ret = buf[1];
1845 ctx->mt_state = MT_STATE_DONE;
1846 break;
1847 case MHL_MSC_MSG_RCP:
1848 if (!sii8620_rcp_consume(ctx, buf[1]))
1849 sii8620_mt_rcpe(ctx,
1850 MHL_RCPE_STATUS_INEFFECTIVE_KEY_CODE);
1851 sii8620_mt_rcpk(ctx, buf[1]);
1852 break;
1853 default:
1854 dev_err(ctx->dev, "%s message type %d,%d not supported",
1855 __func__, buf[0], buf[1]);
1859 static void sii8620_irq_msc(struct sii8620 *ctx)
1861 u8 stat = sii8620_readb(ctx, REG_CBUS_INT_0);
1863 if (stat & ~BIT_CBUS_HPD_CHG)
1864 sii8620_write(ctx, REG_CBUS_INT_0, stat & ~BIT_CBUS_HPD_CHG);
1866 if (stat & BIT_CBUS_HPD_CHG) {
1867 u8 cbus_stat = sii8620_readb(ctx, REG_CBUS_STATUS);
1869 if ((cbus_stat ^ ctx->cbus_status) & BIT_CBUS_STATUS_CBUS_HPD) {
1870 sii8620_write(ctx, REG_CBUS_INT_0, BIT_CBUS_HPD_CHG);
1871 } else {
1872 stat ^= BIT_CBUS_STATUS_CBUS_HPD;
1873 cbus_stat ^= BIT_CBUS_STATUS_CBUS_HPD;
1875 ctx->cbus_status = cbus_stat;
1878 if (stat & BIT_CBUS_MSC_MR_WRITE_STAT)
1879 sii8620_msc_mr_write_stat(ctx);
1881 if (stat & BIT_CBUS_MSC_MR_SET_INT)
1882 sii8620_msc_mr_set_int(ctx);
1884 if (stat & BIT_CBUS_MSC_MT_DONE)
1885 sii8620_msc_mt_done(ctx);
1887 if (stat & BIT_CBUS_MSC_MR_MSC_MSG)
1888 sii8620_msc_mr_msc_msg(ctx);
1891 static void sii8620_irq_coc(struct sii8620 *ctx)
1893 u8 stat = sii8620_readb(ctx, REG_COC_INTR);
1895 if (stat & BIT_COC_CALIBRATION_DONE) {
1896 u8 cstat = sii8620_readb(ctx, REG_COC_STAT_0);
1898 cstat &= BIT_COC_STAT_0_PLL_LOCKED | MSK_COC_STAT_0_FSM_STATE;
1899 if (cstat == (BIT_COC_STAT_0_PLL_LOCKED | 0x02)) {
1900 sii8620_write_seq_static(ctx,
1901 REG_COC_CTLB, 0,
1902 REG_TRXINTMH, BIT_TDM_INTR_SYNC_DATA
1903 | BIT_TDM_INTR_SYNC_WAIT
1908 sii8620_write(ctx, REG_COC_INTR, stat);
1911 static void sii8620_irq_merr(struct sii8620 *ctx)
1913 u8 stat = sii8620_readb(ctx, REG_CBUS_INT_1);
1915 sii8620_write(ctx, REG_CBUS_INT_1, stat);
1918 static void sii8620_irq_edid(struct sii8620 *ctx)
1920 u8 stat = sii8620_readb(ctx, REG_INTR9);
1922 sii8620_write(ctx, REG_INTR9, stat);
1924 if (stat & BIT_INTR9_DEVCAP_DONE)
1925 ctx->mt_state = MT_STATE_DONE;
1928 static void sii8620_scdt_high(struct sii8620 *ctx)
1930 sii8620_write_seq_static(ctx,
1931 REG_INTR8_MASK, BIT_CEA_NEW_AVI | BIT_CEA_NEW_VSI,
1932 REG_TPI_SC, BIT_TPI_SC_TPI_OUTPUT_MODE_0_HDMI,
1936 static void sii8620_irq_scdt(struct sii8620 *ctx)
1938 u8 stat = sii8620_readb(ctx, REG_INTR5);
1940 if (stat & BIT_INTR_SCDT_CHANGE) {
1941 u8 cstat = sii8620_readb(ctx, REG_TMDS_CSTAT_P3);
1943 if (cstat & BIT_TMDS_CSTAT_P3_SCDT) {
1944 if (ctx->sink_type == SINK_HDMI)
1945 /* enable infoframe interrupt */
1946 sii8620_scdt_high(ctx);
1947 else
1948 sii8620_start_video(ctx);
1952 sii8620_write(ctx, REG_INTR5, stat);
1955 static void sii8620_new_vsi(struct sii8620 *ctx)
1957 u8 vsif[11];
1959 sii8620_write(ctx, REG_RX_HDMI_CTRL2,
1960 VAL_RX_HDMI_CTRL2_DEFVAL |
1961 BIT_RX_HDMI_CTRL2_VSI_MON_SEL_VSI);
1962 sii8620_read_buf(ctx, REG_RX_HDMI_MON_PKT_HEADER1, vsif,
1963 ARRAY_SIZE(vsif));
1966 static void sii8620_new_avi(struct sii8620 *ctx)
1968 sii8620_write(ctx, REG_RX_HDMI_CTRL2, VAL_RX_HDMI_CTRL2_DEFVAL);
1969 sii8620_read_buf(ctx, REG_RX_HDMI_MON_PKT_HEADER1, ctx->avif,
1970 ARRAY_SIZE(ctx->avif));
1973 static void sii8620_irq_infr(struct sii8620 *ctx)
1975 u8 stat = sii8620_readb(ctx, REG_INTR8)
1976 & (BIT_CEA_NEW_VSI | BIT_CEA_NEW_AVI);
1978 sii8620_write(ctx, REG_INTR8, stat);
1980 if (stat & BIT_CEA_NEW_VSI)
1981 sii8620_new_vsi(ctx);
1983 if (stat & BIT_CEA_NEW_AVI)
1984 sii8620_new_avi(ctx);
1986 if (stat & (BIT_CEA_NEW_VSI | BIT_CEA_NEW_AVI))
1987 sii8620_start_video(ctx);
1990 static void sii8620_got_xdevcap(struct sii8620 *ctx, int ret)
1992 if (ret < 0)
1993 return;
1995 sii8620_mt_read_devcap(ctx, false);
1998 static void sii8620_irq_tdm(struct sii8620 *ctx)
2000 u8 stat = sii8620_readb(ctx, REG_TRXINTH);
2001 u8 tdm = sii8620_readb(ctx, REG_TRXSTA2);
2003 if ((tdm & MSK_TDM_SYNCHRONIZED) == VAL_TDM_SYNCHRONIZED) {
2004 ctx->mode = CM_ECBUS_S;
2005 ctx->burst.rx_ack = 0;
2006 ctx->burst.r_size = SII8620_BURST_BUF_LEN;
2007 sii8620_burst_tx_rbuf_info(ctx, SII8620_BURST_BUF_LEN);
2008 sii8620_mt_read_devcap(ctx, true);
2009 sii8620_mt_set_cont(ctx, sii8620_got_xdevcap);
2010 } else {
2011 sii8620_write_seq_static(ctx,
2012 REG_MHL_PLL_CTL2, 0,
2013 REG_MHL_PLL_CTL2, BIT_MHL_PLL_CTL2_CLKDETECT_EN
2017 sii8620_write(ctx, REG_TRXINTH, stat);
2020 static void sii8620_irq_block(struct sii8620 *ctx)
2022 u8 stat = sii8620_readb(ctx, REG_EMSCINTR);
2024 if (stat & BIT_EMSCINTR_SPI_DVLD) {
2025 u8 bstat = sii8620_readb(ctx, REG_SPIBURSTSTAT);
2027 if (bstat & BIT_SPIBURSTSTAT_EMSC_NORMAL_MODE)
2028 sii8620_burst_receive(ctx);
2031 sii8620_write(ctx, REG_EMSCINTR, stat);
2034 static void sii8620_irq_ddc(struct sii8620 *ctx)
2036 u8 stat = sii8620_readb(ctx, REG_INTR3);
2038 if (stat & BIT_DDC_CMD_DONE) {
2039 sii8620_write(ctx, REG_INTR3_MASK, 0);
2040 if (sii8620_is_mhl3(ctx))
2041 sii8620_mt_set_int(ctx, MHL_INT_REG(RCHANGE),
2042 MHL_INT_RC_FEAT_REQ);
2043 else
2044 sii8620_edid_read(ctx, 0);
2046 sii8620_write(ctx, REG_INTR3, stat);
2049 /* endian agnostic, non-volatile version of test_bit */
2050 static bool sii8620_test_bit(unsigned int nr, const u8 *addr)
2052 return 1 & (addr[nr / BITS_PER_BYTE] >> (nr % BITS_PER_BYTE));
2055 static irqreturn_t sii8620_irq_thread(int irq, void *data)
2057 static const struct {
2058 int bit;
2059 void (*handler)(struct sii8620 *ctx);
2060 } irq_vec[] = {
2061 { BIT_FAST_INTR_STAT_DISC, sii8620_irq_disc },
2062 { BIT_FAST_INTR_STAT_G2WB, sii8620_irq_g2wb },
2063 { BIT_FAST_INTR_STAT_COC, sii8620_irq_coc },
2064 { BIT_FAST_INTR_STAT_TDM, sii8620_irq_tdm },
2065 { BIT_FAST_INTR_STAT_MSC, sii8620_irq_msc },
2066 { BIT_FAST_INTR_STAT_MERR, sii8620_irq_merr },
2067 { BIT_FAST_INTR_STAT_BLOCK, sii8620_irq_block },
2068 { BIT_FAST_INTR_STAT_EDID, sii8620_irq_edid },
2069 { BIT_FAST_INTR_STAT_DDC, sii8620_irq_ddc },
2070 { BIT_FAST_INTR_STAT_SCDT, sii8620_irq_scdt },
2071 { BIT_FAST_INTR_STAT_INFR, sii8620_irq_infr },
2073 struct sii8620 *ctx = data;
2074 u8 stats[LEN_FAST_INTR_STAT];
2075 int i, ret;
2077 mutex_lock(&ctx->lock);
2079 sii8620_read_buf(ctx, REG_FAST_INTR_STAT, stats, ARRAY_SIZE(stats));
2080 for (i = 0; i < ARRAY_SIZE(irq_vec); ++i)
2081 if (sii8620_test_bit(irq_vec[i].bit, stats))
2082 irq_vec[i].handler(ctx);
2084 sii8620_burst_rx_all(ctx);
2085 sii8620_mt_work(ctx);
2086 sii8620_burst_send(ctx);
2088 ret = sii8620_clear_error(ctx);
2089 if (ret) {
2090 dev_err(ctx->dev, "Error during IRQ handling, %d.\n", ret);
2091 sii8620_mhl_disconnected(ctx);
2093 mutex_unlock(&ctx->lock);
2095 return IRQ_HANDLED;
2098 static void sii8620_cable_in(struct sii8620 *ctx)
2100 struct device *dev = ctx->dev;
2101 u8 ver[5];
2102 int ret;
2104 ret = sii8620_hw_on(ctx);
2105 if (ret) {
2106 dev_err(dev, "Error powering on, %d.\n", ret);
2107 return;
2109 sii8620_hw_reset(ctx);
2111 sii8620_read_buf(ctx, REG_VND_IDL, ver, ARRAY_SIZE(ver));
2112 ret = sii8620_clear_error(ctx);
2113 if (ret) {
2114 dev_err(dev, "Error accessing I2C bus, %d.\n", ret);
2115 return;
2118 dev_info(dev, "ChipID %02x%02x:%02x%02x rev %02x.\n", ver[1], ver[0],
2119 ver[3], ver[2], ver[4]);
2121 sii8620_write(ctx, REG_DPD,
2122 BIT_DPD_PWRON_PLL | BIT_DPD_PDNTX12 | BIT_DPD_OSC_EN);
2124 sii8620_xtal_set_rate(ctx);
2125 sii8620_disconnect(ctx);
2127 sii8620_write_seq_static(ctx,
2128 REG_MHL_CBUS_CTL0, VAL_MHL_CBUS_CTL0_CBUS_DRV_SEL_STRONG
2129 | VAL_MHL_CBUS_CTL0_CBUS_RGND_VBIAS_734,
2130 REG_MHL_CBUS_CTL1, VAL_MHL_CBUS_CTL1_1115_OHM,
2131 REG_DPD, BIT_DPD_PWRON_PLL | BIT_DPD_PDNTX12 | BIT_DPD_OSC_EN,
2134 ret = sii8620_clear_error(ctx);
2135 if (ret) {
2136 dev_err(dev, "Error accessing I2C bus, %d.\n", ret);
2137 return;
2140 enable_irq(to_i2c_client(ctx->dev)->irq);
2143 static void sii8620_init_rcp_input_dev(struct sii8620 *ctx)
2145 struct rc_dev *rc_dev;
2146 int ret;
2148 rc_dev = rc_allocate_device(RC_DRIVER_SCANCODE);
2149 if (!rc_dev) {
2150 dev_err(ctx->dev, "Failed to allocate RC device\n");
2151 ctx->error = -ENOMEM;
2152 return;
2155 rc_dev->input_phys = "sii8620/input0";
2156 rc_dev->input_id.bustype = BUS_VIRTUAL;
2157 rc_dev->map_name = RC_MAP_CEC;
2158 rc_dev->allowed_protocols = RC_PROTO_BIT_CEC;
2159 rc_dev->driver_name = "sii8620";
2160 rc_dev->device_name = "sii8620";
2162 ret = rc_register_device(rc_dev);
2164 if (ret) {
2165 dev_err(ctx->dev, "Failed to register RC device\n");
2166 ctx->error = ret;
2167 rc_free_device(ctx->rc_dev);
2168 return;
2170 ctx->rc_dev = rc_dev;
2173 static inline struct sii8620 *bridge_to_sii8620(struct drm_bridge *bridge)
2175 return container_of(bridge, struct sii8620, bridge);
2178 static int sii8620_attach(struct drm_bridge *bridge)
2180 struct sii8620 *ctx = bridge_to_sii8620(bridge);
2182 sii8620_init_rcp_input_dev(ctx);
2184 return sii8620_clear_error(ctx);
2187 static void sii8620_detach(struct drm_bridge *bridge)
2189 struct sii8620 *ctx = bridge_to_sii8620(bridge);
2191 rc_unregister_device(ctx->rc_dev);
2194 static enum drm_mode_status sii8620_mode_valid(struct drm_bridge *bridge,
2195 const struct drm_display_mode *mode)
2197 struct sii8620 *ctx = bridge_to_sii8620(bridge);
2198 bool can_pack = ctx->devcap[MHL_DCAP_VID_LINK_MODE] &
2199 MHL_DCAP_VID_LINK_PPIXEL;
2200 unsigned int max_pclk = sii8620_is_mhl3(ctx) ? MHL3_MAX_LCLK :
2201 MHL1_MAX_LCLK;
2202 max_pclk /= can_pack ? 2 : 3;
2204 return (mode->clock > max_pclk) ? MODE_CLOCK_HIGH : MODE_OK;
2207 static bool sii8620_mode_fixup(struct drm_bridge *bridge,
2208 const struct drm_display_mode *mode,
2209 struct drm_display_mode *adjusted_mode)
2211 struct sii8620 *ctx = bridge_to_sii8620(bridge);
2212 int max_lclk;
2213 bool ret = true;
2215 mutex_lock(&ctx->lock);
2217 max_lclk = sii8620_is_mhl3(ctx) ? MHL3_MAX_LCLK : MHL1_MAX_LCLK;
2218 if (max_lclk > 3 * adjusted_mode->clock) {
2219 ctx->use_packed_pixel = 0;
2220 goto end;
2222 if ((ctx->devcap[MHL_DCAP_VID_LINK_MODE] & MHL_DCAP_VID_LINK_PPIXEL) &&
2223 max_lclk > 2 * adjusted_mode->clock) {
2224 ctx->use_packed_pixel = 1;
2225 goto end;
2227 ret = false;
2228 end:
2229 if (ret) {
2230 u8 vic = drm_match_cea_mode(adjusted_mode);
2232 if (!vic) {
2233 union hdmi_infoframe frm;
2234 u8 mhl_vic[] = { 0, 95, 94, 93, 98 };
2236 /* FIXME: We need the connector here */
2237 drm_hdmi_vendor_infoframe_from_display_mode(
2238 &frm.vendor.hdmi, NULL, adjusted_mode);
2239 vic = frm.vendor.hdmi.vic;
2240 if (vic >= ARRAY_SIZE(mhl_vic))
2241 vic = 0;
2242 vic = mhl_vic[vic];
2244 ctx->video_code = vic;
2245 ctx->pixel_clock = adjusted_mode->clock;
2247 mutex_unlock(&ctx->lock);
2248 return ret;
2251 static const struct drm_bridge_funcs sii8620_bridge_funcs = {
2252 .attach = sii8620_attach,
2253 .detach = sii8620_detach,
2254 .mode_fixup = sii8620_mode_fixup,
2255 .mode_valid = sii8620_mode_valid,
2258 static int sii8620_probe(struct i2c_client *client,
2259 const struct i2c_device_id *id)
2261 struct device *dev = &client->dev;
2262 struct sii8620 *ctx;
2263 int ret;
2265 ctx = devm_kzalloc(dev, sizeof(*ctx), GFP_KERNEL);
2266 if (!ctx)
2267 return -ENOMEM;
2269 ctx->dev = dev;
2270 mutex_init(&ctx->lock);
2271 INIT_LIST_HEAD(&ctx->mt_queue);
2273 ctx->clk_xtal = devm_clk_get(dev, "xtal");
2274 if (IS_ERR(ctx->clk_xtal)) {
2275 dev_err(dev, "failed to get xtal clock from DT\n");
2276 return PTR_ERR(ctx->clk_xtal);
2279 if (!client->irq) {
2280 dev_err(dev, "no irq provided\n");
2281 return -EINVAL;
2283 irq_set_status_flags(client->irq, IRQ_NOAUTOEN);
2284 ret = devm_request_threaded_irq(dev, client->irq, NULL,
2285 sii8620_irq_thread,
2286 IRQF_TRIGGER_HIGH | IRQF_ONESHOT,
2287 "sii8620", ctx);
2288 if (ret < 0) {
2289 dev_err(dev, "failed to install IRQ handler\n");
2290 return ret;
2293 ctx->gpio_reset = devm_gpiod_get(dev, "reset", GPIOD_OUT_HIGH);
2294 if (IS_ERR(ctx->gpio_reset)) {
2295 dev_err(dev, "failed to get reset gpio from DT\n");
2296 return PTR_ERR(ctx->gpio_reset);
2299 ctx->supplies[0].supply = "cvcc10";
2300 ctx->supplies[1].supply = "iovcc18";
2301 ret = devm_regulator_bulk_get(dev, 2, ctx->supplies);
2302 if (ret)
2303 return ret;
2305 i2c_set_clientdata(client, ctx);
2307 ctx->bridge.funcs = &sii8620_bridge_funcs;
2308 ctx->bridge.of_node = dev->of_node;
2309 drm_bridge_add(&ctx->bridge);
2311 sii8620_cable_in(ctx);
2313 return 0;
2316 static int sii8620_remove(struct i2c_client *client)
2318 struct sii8620 *ctx = i2c_get_clientdata(client);
2320 disable_irq(to_i2c_client(ctx->dev)->irq);
2321 sii8620_hw_off(ctx);
2322 drm_bridge_remove(&ctx->bridge);
2324 return 0;
2327 static const struct of_device_id sii8620_dt_match[] = {
2328 { .compatible = "sil,sii8620" },
2329 { },
2331 MODULE_DEVICE_TABLE(of, sii8620_dt_match);
2333 static const struct i2c_device_id sii8620_id[] = {
2334 { "sii8620", 0 },
2335 { },
2338 MODULE_DEVICE_TABLE(i2c, sii8620_id);
2339 static struct i2c_driver sii8620_driver = {
2340 .driver = {
2341 .name = "sii8620",
2342 .of_match_table = of_match_ptr(sii8620_dt_match),
2344 .probe = sii8620_probe,
2345 .remove = sii8620_remove,
2346 .id_table = sii8620_id,
2349 module_i2c_driver(sii8620_driver);
2350 MODULE_LICENSE("GPL v2");