2 * Copyright (C) 2013 Red Hat
3 * Author: Rob Clark <robdclark@gmail.com>
5 * This program is free software; you can redistribute it and/or modify it
6 * under the terms of the GNU General Public License version 2 as published by
7 * the Free Software Foundation.
9 * This program is distributed in the hope that it will be useful, but WITHOUT
10 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
11 * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for
14 * You should have received a copy of the GNU General Public License along with
15 * this program. If not, see <http://www.gnu.org/licenses/>.
20 struct hdmi_i2c_adapter
{
21 struct i2c_adapter base
;
24 wait_queue_head_t ddc_event
;
26 #define to_hdmi_i2c_adapter(x) container_of(x, struct hdmi_i2c_adapter, base)
28 static void init_ddc(struct hdmi_i2c_adapter
*hdmi_i2c
)
30 struct hdmi
*hdmi
= hdmi_i2c
->hdmi
;
32 hdmi_write(hdmi
, REG_HDMI_DDC_CTRL
,
33 HDMI_DDC_CTRL_SW_STATUS_RESET
);
34 hdmi_write(hdmi
, REG_HDMI_DDC_CTRL
,
35 HDMI_DDC_CTRL_SOFT_RESET
);
37 hdmi_write(hdmi
, REG_HDMI_DDC_SPEED
,
38 HDMI_DDC_SPEED_THRESHOLD(2) |
39 HDMI_DDC_SPEED_PRESCALE(10));
41 hdmi_write(hdmi
, REG_HDMI_DDC_SETUP
,
42 HDMI_DDC_SETUP_TIMEOUT(0xff));
44 /* enable reference timer for 27us */
45 hdmi_write(hdmi
, REG_HDMI_DDC_REF
,
46 HDMI_DDC_REF_REFTIMER_ENABLE
|
47 HDMI_DDC_REF_REFTIMER(27));
50 static int ddc_clear_irq(struct hdmi_i2c_adapter
*hdmi_i2c
)
52 struct hdmi
*hdmi
= hdmi_i2c
->hdmi
;
53 struct drm_device
*dev
= hdmi
->dev
;
54 uint32_t retry
= 0xffff;
55 uint32_t ddc_int_ctrl
;
60 hdmi_write(hdmi
, REG_HDMI_DDC_INT_CTRL
,
61 HDMI_DDC_INT_CTRL_SW_DONE_ACK
|
62 HDMI_DDC_INT_CTRL_SW_DONE_MASK
);
64 ddc_int_ctrl
= hdmi_read(hdmi
, REG_HDMI_DDC_INT_CTRL
);
66 } while ((ddc_int_ctrl
& HDMI_DDC_INT_CTRL_SW_DONE_INT
) && retry
);
69 DRM_DEV_ERROR(dev
->dev
, "timeout waiting for DDC\n");
73 hdmi_i2c
->sw_done
= false;
78 #define MAX_TRANSACTIONS 4
80 static bool sw_done(struct hdmi_i2c_adapter
*hdmi_i2c
)
82 struct hdmi
*hdmi
= hdmi_i2c
->hdmi
;
84 if (!hdmi_i2c
->sw_done
) {
85 uint32_t ddc_int_ctrl
;
87 ddc_int_ctrl
= hdmi_read(hdmi
, REG_HDMI_DDC_INT_CTRL
);
89 if ((ddc_int_ctrl
& HDMI_DDC_INT_CTRL_SW_DONE_MASK
) &&
90 (ddc_int_ctrl
& HDMI_DDC_INT_CTRL_SW_DONE_INT
)) {
91 hdmi_i2c
->sw_done
= true;
92 hdmi_write(hdmi
, REG_HDMI_DDC_INT_CTRL
,
93 HDMI_DDC_INT_CTRL_SW_DONE_ACK
);
97 return hdmi_i2c
->sw_done
;
100 static int msm_hdmi_i2c_xfer(struct i2c_adapter
*i2c
,
101 struct i2c_msg
*msgs
, int num
)
103 struct hdmi_i2c_adapter
*hdmi_i2c
= to_hdmi_i2c_adapter(i2c
);
104 struct hdmi
*hdmi
= hdmi_i2c
->hdmi
;
105 struct drm_device
*dev
= hdmi
->dev
;
106 static const uint32_t nack
[] = {
107 HDMI_DDC_SW_STATUS_NACK0
, HDMI_DDC_SW_STATUS_NACK1
,
108 HDMI_DDC_SW_STATUS_NACK2
, HDMI_DDC_SW_STATUS_NACK3
,
110 int indices
[MAX_TRANSACTIONS
];
111 int ret
, i
, j
, index
= 0;
112 uint32_t ddc_status
, ddc_data
, i2c_trans
;
114 num
= min(num
, MAX_TRANSACTIONS
);
116 WARN_ON(!(hdmi_read(hdmi
, REG_HDMI_CTRL
) & HDMI_CTRL_ENABLE
));
123 ret
= ddc_clear_irq(hdmi_i2c
);
127 for (i
= 0; i
< num
; i
++) {
128 struct i2c_msg
*p
= &msgs
[i
];
129 uint32_t raw_addr
= p
->addr
<< 1;
131 if (p
->flags
& I2C_M_RD
)
134 ddc_data
= HDMI_DDC_DATA_DATA(raw_addr
) |
135 HDMI_DDC_DATA_DATA_RW(DDC_WRITE
);
138 ddc_data
|= HDMI_DDC_DATA_INDEX(0) |
139 HDMI_DDC_DATA_INDEX_WRITE
;
142 hdmi_write(hdmi
, REG_HDMI_DDC_DATA
, ddc_data
);
147 if (p
->flags
& I2C_M_RD
) {
150 for (j
= 0; j
< p
->len
; j
++) {
151 ddc_data
= HDMI_DDC_DATA_DATA(p
->buf
[j
]) |
152 HDMI_DDC_DATA_DATA_RW(DDC_WRITE
);
153 hdmi_write(hdmi
, REG_HDMI_DDC_DATA
, ddc_data
);
158 i2c_trans
= HDMI_I2C_TRANSACTION_REG_CNT(p
->len
) |
159 HDMI_I2C_TRANSACTION_REG_RW(
160 (p
->flags
& I2C_M_RD
) ? DDC_READ
: DDC_WRITE
) |
161 HDMI_I2C_TRANSACTION_REG_START
;
164 i2c_trans
|= HDMI_I2C_TRANSACTION_REG_STOP
;
166 hdmi_write(hdmi
, REG_HDMI_I2C_TRANSACTION(i
), i2c_trans
);
169 /* trigger the transfer: */
170 hdmi_write(hdmi
, REG_HDMI_DDC_CTRL
,
171 HDMI_DDC_CTRL_TRANSACTION_CNT(num
- 1) |
174 ret
= wait_event_timeout(hdmi_i2c
->ddc_event
, sw_done(hdmi_i2c
), HZ
/4);
178 dev_warn(dev
->dev
, "DDC timeout: %d\n", ret
);
179 DBG("sw_status=%08x, hw_status=%08x, int_ctrl=%08x",
180 hdmi_read(hdmi
, REG_HDMI_DDC_SW_STATUS
),
181 hdmi_read(hdmi
, REG_HDMI_DDC_HW_STATUS
),
182 hdmi_read(hdmi
, REG_HDMI_DDC_INT_CTRL
));
186 ddc_status
= hdmi_read(hdmi
, REG_HDMI_DDC_SW_STATUS
);
188 /* read back results of any read transactions: */
189 for (i
= 0; i
< num
; i
++) {
190 struct i2c_msg
*p
= &msgs
[i
];
192 if (!(p
->flags
& I2C_M_RD
))
195 /* check for NACK: */
196 if (ddc_status
& nack
[i
]) {
197 DBG("ddc_status=%08x", ddc_status
);
201 ddc_data
= HDMI_DDC_DATA_DATA_RW(DDC_READ
) |
202 HDMI_DDC_DATA_INDEX(indices
[i
]) |
203 HDMI_DDC_DATA_INDEX_WRITE
;
205 hdmi_write(hdmi
, REG_HDMI_DDC_DATA
, ddc_data
);
207 /* discard first byte: */
208 hdmi_read(hdmi
, REG_HDMI_DDC_DATA
);
210 for (j
= 0; j
< p
->len
; j
++) {
211 ddc_data
= hdmi_read(hdmi
, REG_HDMI_DDC_DATA
);
212 p
->buf
[j
] = FIELD(ddc_data
, HDMI_DDC_DATA_DATA
);
219 static u32
msm_hdmi_i2c_func(struct i2c_adapter
*adapter
)
221 return I2C_FUNC_I2C
| I2C_FUNC_SMBUS_EMUL
;
224 static const struct i2c_algorithm msm_hdmi_i2c_algorithm
= {
225 .master_xfer
= msm_hdmi_i2c_xfer
,
226 .functionality
= msm_hdmi_i2c_func
,
229 void msm_hdmi_i2c_irq(struct i2c_adapter
*i2c
)
231 struct hdmi_i2c_adapter
*hdmi_i2c
= to_hdmi_i2c_adapter(i2c
);
233 if (sw_done(hdmi_i2c
))
234 wake_up_all(&hdmi_i2c
->ddc_event
);
237 void msm_hdmi_i2c_destroy(struct i2c_adapter
*i2c
)
239 struct hdmi_i2c_adapter
*hdmi_i2c
= to_hdmi_i2c_adapter(i2c
);
240 i2c_del_adapter(i2c
);
244 struct i2c_adapter
*msm_hdmi_i2c_init(struct hdmi
*hdmi
)
246 struct hdmi_i2c_adapter
*hdmi_i2c
;
247 struct i2c_adapter
*i2c
= NULL
;
250 hdmi_i2c
= kzalloc(sizeof(*hdmi_i2c
), GFP_KERNEL
);
256 i2c
= &hdmi_i2c
->base
;
258 hdmi_i2c
->hdmi
= hdmi
;
259 init_waitqueue_head(&hdmi_i2c
->ddc_event
);
262 i2c
->owner
= THIS_MODULE
;
263 i2c
->class = I2C_CLASS_DDC
;
264 snprintf(i2c
->name
, sizeof(i2c
->name
), "msm hdmi i2c");
265 i2c
->dev
.parent
= &hdmi
->pdev
->dev
;
266 i2c
->algo
= &msm_hdmi_i2c_algorithm
;
268 ret
= i2c_add_adapter(i2c
);
276 msm_hdmi_i2c_destroy(i2c
);