Loading...
1// SPDX-License-Identifier: GPL-2.0-only
2/*
3 * Copyright (C) Fuzhou Rockchip Electronics Co.Ltd
4 * Zheng Yang <zhengyang@rock-chips.com>
5 * Yakir Yang <ykk@rock-chips.com>
6 */
7
8#include <linux/irq.h>
9#include <linux/clk.h>
10#include <linux/delay.h>
11#include <linux/err.h>
12#include <linux/hdmi.h>
13#include <linux/mod_devicetable.h>
14#include <linux/module.h>
15#include <linux/mutex.h>
16#include <linux/platform_device.h>
17
18#include <drm/drm_atomic.h>
19#include <drm/drm_atomic_helper.h>
20#include <drm/drm_edid.h>
21#include <drm/drm_of.h>
22#include <drm/drm_probe_helper.h>
23#include <drm/drm_simple_kms_helper.h>
24
25#include <drm/display/drm_hdmi_helper.h>
26#include <drm/display/drm_hdmi_state_helper.h>
27
28#include "rockchip_drm_drv.h"
29
30#include "inno_hdmi.h"
31
32#define INNO_HDMI_MIN_TMDS_CLOCK 25000000U
33
34struct inno_hdmi_phy_config {
35 unsigned long pixelclock;
36 u8 pre_emphasis;
37 u8 voltage_level_control;
38};
39
40struct inno_hdmi_variant {
41 struct inno_hdmi_phy_config *phy_configs;
42 struct inno_hdmi_phy_config *default_phy_config;
43};
44
45struct inno_hdmi_i2c {
46 struct i2c_adapter adap;
47
48 u8 ddc_addr;
49 u8 segment_addr;
50
51 struct mutex lock;
52 struct completion cmp;
53};
54
55struct inno_hdmi {
56 struct device *dev;
57
58 struct clk *pclk;
59 struct clk *refclk;
60 void __iomem *regs;
61
62 struct drm_connector connector;
63 struct rockchip_encoder encoder;
64
65 struct inno_hdmi_i2c *i2c;
66 struct i2c_adapter *ddc;
67
68 const struct inno_hdmi_variant *variant;
69};
70
71struct inno_hdmi_connector_state {
72 struct drm_connector_state base;
73 unsigned int colorimetry;
74};
75
76static struct inno_hdmi *encoder_to_inno_hdmi(struct drm_encoder *encoder)
77{
78 struct rockchip_encoder *rkencoder = to_rockchip_encoder(encoder);
79
80 return container_of(rkencoder, struct inno_hdmi, encoder);
81}
82
83static struct inno_hdmi *connector_to_inno_hdmi(struct drm_connector *connector)
84{
85 return container_of(connector, struct inno_hdmi, connector);
86}
87
88#define to_inno_hdmi_conn_state(conn_state) \
89 container_of_const(conn_state, struct inno_hdmi_connector_state, base)
90
91enum {
92 CSC_RGB_0_255_TO_ITU601_16_235_8BIT,
93 CSC_RGB_0_255_TO_ITU709_16_235_8BIT,
94 CSC_RGB_0_255_TO_RGB_16_235_8BIT,
95};
96
97static const char coeff_csc[][24] = {
98 /*
99 * RGB2YUV:601 SD mode:
100 * Cb = -0.291G - 0.148R + 0.439B + 128
101 * Y = 0.504G + 0.257R + 0.098B + 16
102 * Cr = -0.368G + 0.439R - 0.071B + 128
103 */
104 {
105 0x11, 0x5f, 0x01, 0x82, 0x10, 0x23, 0x00, 0x80,
106 0x02, 0x1c, 0x00, 0xa1, 0x00, 0x36, 0x00, 0x1e,
107 0x11, 0x29, 0x10, 0x59, 0x01, 0x82, 0x00, 0x80
108 },
109 /*
110 * RGB2YUV:709 HD mode:
111 * Cb = - 0.338G - 0.101R + 0.439B + 128
112 * Y = 0.614G + 0.183R + 0.062B + 16
113 * Cr = - 0.399G + 0.439R - 0.040B + 128
114 */
115 {
116 0x11, 0x98, 0x01, 0xc1, 0x10, 0x28, 0x00, 0x80,
117 0x02, 0x74, 0x00, 0xbb, 0x00, 0x3f, 0x00, 0x10,
118 0x11, 0x5a, 0x10, 0x67, 0x01, 0xc1, 0x00, 0x80
119 },
120 /*
121 * RGB[0:255]2RGB[16:235]:
122 * R' = R x (235-16)/255 + 16;
123 * G' = G x (235-16)/255 + 16;
124 * B' = B x (235-16)/255 + 16;
125 */
126 {
127 0x00, 0x00, 0x03, 0x6F, 0x00, 0x00, 0x00, 0x10,
128 0x03, 0x6F, 0x00, 0x00, 0x00, 0x00, 0x00, 0x10,
129 0x00, 0x00, 0x00, 0x00, 0x03, 0x6F, 0x00, 0x10
130 },
131};
132
133static struct inno_hdmi_phy_config rk3036_hdmi_phy_configs[] = {
134 { 74250000, 0x3f, 0xbb },
135 { 165000000, 0x6f, 0xbb },
136 { ~0UL, 0x00, 0x00 }
137};
138
139static struct inno_hdmi_phy_config rk3128_hdmi_phy_configs[] = {
140 { 74250000, 0x3f, 0xaa },
141 { 165000000, 0x5f, 0xaa },
142 { ~0UL, 0x00, 0x00 }
143};
144
145static int inno_hdmi_find_phy_config(struct inno_hdmi *hdmi,
146 unsigned long pixelclk)
147{
148 const struct inno_hdmi_phy_config *phy_configs =
149 hdmi->variant->phy_configs;
150 int i;
151
152 for (i = 0; phy_configs[i].pixelclock != ~0UL; i++) {
153 if (pixelclk <= phy_configs[i].pixelclock)
154 return i;
155 }
156
157 DRM_DEV_DEBUG(hdmi->dev, "No phy configuration for pixelclock %lu\n",
158 pixelclk);
159
160 return -EINVAL;
161}
162
163static inline u8 hdmi_readb(struct inno_hdmi *hdmi, u16 offset)
164{
165 return readl_relaxed(hdmi->regs + (offset) * 0x04);
166}
167
168static inline void hdmi_writeb(struct inno_hdmi *hdmi, u16 offset, u32 val)
169{
170 writel_relaxed(val, hdmi->regs + (offset) * 0x04);
171}
172
173static inline void hdmi_modb(struct inno_hdmi *hdmi, u16 offset,
174 u32 msk, u32 val)
175{
176 u8 temp = hdmi_readb(hdmi, offset) & ~msk;
177
178 temp |= val & msk;
179 hdmi_writeb(hdmi, offset, temp);
180}
181
182static void inno_hdmi_i2c_init(struct inno_hdmi *hdmi, unsigned long long rate)
183{
184 unsigned long long ddc_bus_freq = rate >> 2;
185
186 do_div(ddc_bus_freq, HDMI_SCL_RATE);
187
188 hdmi_writeb(hdmi, DDC_BUS_FREQ_L, ddc_bus_freq & 0xFF);
189 hdmi_writeb(hdmi, DDC_BUS_FREQ_H, (ddc_bus_freq >> 8) & 0xFF);
190
191 /* Clear the EDID interrupt flag and mute the interrupt */
192 hdmi_writeb(hdmi, HDMI_INTERRUPT_MASK1, 0);
193 hdmi_writeb(hdmi, HDMI_INTERRUPT_STATUS1, m_INT_EDID_READY);
194}
195
196static void inno_hdmi_sys_power(struct inno_hdmi *hdmi, bool enable)
197{
198 if (enable)
199 hdmi_modb(hdmi, HDMI_SYS_CTRL, m_POWER, v_PWR_ON);
200 else
201 hdmi_modb(hdmi, HDMI_SYS_CTRL, m_POWER, v_PWR_OFF);
202}
203
204static void inno_hdmi_standby(struct inno_hdmi *hdmi)
205{
206 inno_hdmi_sys_power(hdmi, false);
207
208 hdmi_writeb(hdmi, HDMI_PHY_DRIVER, 0x00);
209 hdmi_writeb(hdmi, HDMI_PHY_PRE_EMPHASIS, 0x00);
210 hdmi_writeb(hdmi, HDMI_PHY_CHG_PWR, 0x00);
211 hdmi_writeb(hdmi, HDMI_PHY_SYS_CTL, 0x15);
212};
213
214static void inno_hdmi_power_up(struct inno_hdmi *hdmi,
215 unsigned long mpixelclock)
216{
217 struct inno_hdmi_phy_config *phy_config;
218 int ret = inno_hdmi_find_phy_config(hdmi, mpixelclock);
219
220 if (ret < 0) {
221 phy_config = hdmi->variant->default_phy_config;
222 DRM_DEV_ERROR(hdmi->dev,
223 "Using default phy configuration for TMDS rate %lu",
224 mpixelclock);
225 } else {
226 phy_config = &hdmi->variant->phy_configs[ret];
227 }
228
229 inno_hdmi_sys_power(hdmi, false);
230
231 hdmi_writeb(hdmi, HDMI_PHY_PRE_EMPHASIS, phy_config->pre_emphasis);
232 hdmi_writeb(hdmi, HDMI_PHY_DRIVER, phy_config->voltage_level_control);
233 hdmi_writeb(hdmi, HDMI_PHY_SYS_CTL, 0x15);
234 hdmi_writeb(hdmi, HDMI_PHY_SYS_CTL, 0x14);
235 hdmi_writeb(hdmi, HDMI_PHY_SYS_CTL, 0x10);
236 hdmi_writeb(hdmi, HDMI_PHY_CHG_PWR, 0x0f);
237 hdmi_writeb(hdmi, HDMI_PHY_SYNC, 0x00);
238 hdmi_writeb(hdmi, HDMI_PHY_SYNC, 0x01);
239
240 inno_hdmi_sys_power(hdmi, true);
241};
242
243static void inno_hdmi_reset(struct inno_hdmi *hdmi)
244{
245 u32 val;
246 u32 msk;
247
248 hdmi_modb(hdmi, HDMI_SYS_CTRL, m_RST_DIGITAL, v_NOT_RST_DIGITAL);
249 udelay(100);
250
251 hdmi_modb(hdmi, HDMI_SYS_CTRL, m_RST_ANALOG, v_NOT_RST_ANALOG);
252 udelay(100);
253
254 msk = m_REG_CLK_INV | m_REG_CLK_SOURCE | m_POWER | m_INT_POL;
255 val = v_REG_CLK_INV | v_REG_CLK_SOURCE_SYS | v_PWR_ON | v_INT_POL_HIGH;
256 hdmi_modb(hdmi, HDMI_SYS_CTRL, msk, val);
257
258 inno_hdmi_standby(hdmi);
259}
260
261static int inno_hdmi_disable_frame(struct drm_connector *connector,
262 enum hdmi_infoframe_type type)
263{
264 struct inno_hdmi *hdmi = connector_to_inno_hdmi(connector);
265
266 if (type != HDMI_INFOFRAME_TYPE_AVI) {
267 drm_err(connector->dev,
268 "Unsupported infoframe type: %u\n", type);
269 return 0;
270 }
271
272 hdmi_writeb(hdmi, HDMI_CONTROL_PACKET_BUF_INDEX, INFOFRAME_AVI);
273
274 return 0;
275}
276
277static int inno_hdmi_upload_frame(struct drm_connector *connector,
278 enum hdmi_infoframe_type type,
279 const u8 *buffer, size_t len)
280{
281 struct inno_hdmi *hdmi = connector_to_inno_hdmi(connector);
282 ssize_t i;
283
284 if (type != HDMI_INFOFRAME_TYPE_AVI) {
285 drm_err(connector->dev,
286 "Unsupported infoframe type: %u\n", type);
287 return 0;
288 }
289
290 inno_hdmi_disable_frame(connector, type);
291
292 for (i = 0; i < len; i++)
293 hdmi_writeb(hdmi, HDMI_CONTROL_PACKET_ADDR + i, buffer[i]);
294
295 return 0;
296}
297
298static const struct drm_connector_hdmi_funcs inno_hdmi_hdmi_connector_funcs = {
299 .clear_infoframe = inno_hdmi_disable_frame,
300 .write_infoframe = inno_hdmi_upload_frame,
301};
302
303static int inno_hdmi_config_video_csc(struct inno_hdmi *hdmi)
304{
305 struct drm_connector *connector = &hdmi->connector;
306 struct drm_connector_state *conn_state = connector->state;
307 struct inno_hdmi_connector_state *inno_conn_state =
308 to_inno_hdmi_conn_state(conn_state);
309 int c0_c2_change = 0;
310 int csc_enable = 0;
311 int csc_mode = 0;
312 int auto_csc = 0;
313 int value;
314 int i;
315
316 /* Input video mode is SDR RGB24bit, data enable signal from external */
317 hdmi_writeb(hdmi, HDMI_VIDEO_CONTRL1, v_DE_EXTERNAL |
318 v_VIDEO_INPUT_FORMAT(VIDEO_INPUT_SDR_RGB444));
319
320 /* Input color hardcode to RGB, and output color hardcode to RGB888 */
321 value = v_VIDEO_INPUT_BITS(VIDEO_INPUT_8BITS) |
322 v_VIDEO_OUTPUT_COLOR(0) |
323 v_VIDEO_INPUT_CSP(0);
324 hdmi_writeb(hdmi, HDMI_VIDEO_CONTRL2, value);
325
326 if (conn_state->hdmi.output_format == HDMI_COLORSPACE_RGB) {
327 if (conn_state->hdmi.is_limited_range) {
328 csc_mode = CSC_RGB_0_255_TO_RGB_16_235_8BIT;
329 auto_csc = AUTO_CSC_DISABLE;
330 c0_c2_change = C0_C2_CHANGE_DISABLE;
331 csc_enable = v_CSC_ENABLE;
332
333 } else {
334 value = v_SOF_DISABLE | v_COLOR_DEPTH_NOT_INDICATED(1);
335 hdmi_writeb(hdmi, HDMI_VIDEO_CONTRL3, value);
336
337 hdmi_modb(hdmi, HDMI_VIDEO_CONTRL,
338 m_VIDEO_AUTO_CSC | m_VIDEO_C0_C2_SWAP,
339 v_VIDEO_AUTO_CSC(AUTO_CSC_DISABLE) |
340 v_VIDEO_C0_C2_SWAP(C0_C2_CHANGE_DISABLE));
341 return 0;
342 }
343 } else {
344 if (inno_conn_state->colorimetry == HDMI_COLORIMETRY_ITU_601) {
345 if (conn_state->hdmi.output_format == HDMI_COLORSPACE_YUV444) {
346 csc_mode = CSC_RGB_0_255_TO_ITU601_16_235_8BIT;
347 auto_csc = AUTO_CSC_DISABLE;
348 c0_c2_change = C0_C2_CHANGE_DISABLE;
349 csc_enable = v_CSC_ENABLE;
350 }
351 } else {
352 if (conn_state->hdmi.output_format == HDMI_COLORSPACE_YUV444) {
353 csc_mode = CSC_RGB_0_255_TO_ITU709_16_235_8BIT;
354 auto_csc = AUTO_CSC_DISABLE;
355 c0_c2_change = C0_C2_CHANGE_DISABLE;
356 csc_enable = v_CSC_ENABLE;
357 }
358 }
359 }
360
361 for (i = 0; i < 24; i++)
362 hdmi_writeb(hdmi, HDMI_VIDEO_CSC_COEF + i,
363 coeff_csc[csc_mode][i]);
364
365 value = v_SOF_DISABLE | csc_enable | v_COLOR_DEPTH_NOT_INDICATED(1);
366 hdmi_writeb(hdmi, HDMI_VIDEO_CONTRL3, value);
367 hdmi_modb(hdmi, HDMI_VIDEO_CONTRL, m_VIDEO_AUTO_CSC |
368 m_VIDEO_C0_C2_SWAP, v_VIDEO_AUTO_CSC(auto_csc) |
369 v_VIDEO_C0_C2_SWAP(c0_c2_change));
370
371 return 0;
372}
373
374static int inno_hdmi_config_video_timing(struct inno_hdmi *hdmi,
375 struct drm_display_mode *mode)
376{
377 int value;
378
379 /* Set detail external video timing polarity and interlace mode */
380 value = v_EXTERANL_VIDEO(1);
381 value |= mode->flags & DRM_MODE_FLAG_PHSYNC ?
382 v_HSYNC_POLARITY(1) : v_HSYNC_POLARITY(0);
383 value |= mode->flags & DRM_MODE_FLAG_PVSYNC ?
384 v_VSYNC_POLARITY(1) : v_VSYNC_POLARITY(0);
385 value |= mode->flags & DRM_MODE_FLAG_INTERLACE ?
386 v_INETLACE(1) : v_INETLACE(0);
387 hdmi_writeb(hdmi, HDMI_VIDEO_TIMING_CTL, value);
388
389 /* Set detail external video timing */
390 value = mode->htotal;
391 hdmi_writeb(hdmi, HDMI_VIDEO_EXT_HTOTAL_L, value & 0xFF);
392 hdmi_writeb(hdmi, HDMI_VIDEO_EXT_HTOTAL_H, (value >> 8) & 0xFF);
393
394 value = mode->htotal - mode->hdisplay;
395 hdmi_writeb(hdmi, HDMI_VIDEO_EXT_HBLANK_L, value & 0xFF);
396 hdmi_writeb(hdmi, HDMI_VIDEO_EXT_HBLANK_H, (value >> 8) & 0xFF);
397
398 value = mode->htotal - mode->hsync_start;
399 hdmi_writeb(hdmi, HDMI_VIDEO_EXT_HDELAY_L, value & 0xFF);
400 hdmi_writeb(hdmi, HDMI_VIDEO_EXT_HDELAY_H, (value >> 8) & 0xFF);
401
402 value = mode->hsync_end - mode->hsync_start;
403 hdmi_writeb(hdmi, HDMI_VIDEO_EXT_HDURATION_L, value & 0xFF);
404 hdmi_writeb(hdmi, HDMI_VIDEO_EXT_HDURATION_H, (value >> 8) & 0xFF);
405
406 value = mode->vtotal;
407 hdmi_writeb(hdmi, HDMI_VIDEO_EXT_VTOTAL_L, value & 0xFF);
408 hdmi_writeb(hdmi, HDMI_VIDEO_EXT_VTOTAL_H, (value >> 8) & 0xFF);
409
410 value = mode->vtotal - mode->vdisplay;
411 hdmi_writeb(hdmi, HDMI_VIDEO_EXT_VBLANK, value & 0xFF);
412
413 value = mode->vtotal - mode->vsync_start;
414 hdmi_writeb(hdmi, HDMI_VIDEO_EXT_VDELAY, value & 0xFF);
415
416 value = mode->vsync_end - mode->vsync_start;
417 hdmi_writeb(hdmi, HDMI_VIDEO_EXT_VDURATION, value & 0xFF);
418
419 hdmi_writeb(hdmi, HDMI_PHY_PRE_DIV_RATIO, 0x1e);
420 hdmi_writeb(hdmi, HDMI_PHY_FEEDBACK_DIV_RATIO_LOW, 0x2c);
421 hdmi_writeb(hdmi, HDMI_PHY_FEEDBACK_DIV_RATIO_HIGH, 0x01);
422
423 return 0;
424}
425
426static int inno_hdmi_setup(struct inno_hdmi *hdmi,
427 struct drm_atomic_state *state)
428{
429 struct drm_connector *connector = &hdmi->connector;
430 struct drm_display_info *display = &connector->display_info;
431 struct drm_connector_state *new_conn_state;
432 struct drm_crtc_state *new_crtc_state;
433
434 new_conn_state = drm_atomic_get_new_connector_state(state, connector);
435 if (WARN_ON(!new_conn_state))
436 return -EINVAL;
437
438 new_crtc_state = drm_atomic_get_new_crtc_state(state, new_conn_state->crtc);
439 if (WARN_ON(!new_crtc_state))
440 return -EINVAL;
441
442 /* Mute video and audio output */
443 hdmi_modb(hdmi, HDMI_AV_MUTE, m_AUDIO_MUTE | m_VIDEO_BLACK,
444 v_AUDIO_MUTE(1) | v_VIDEO_MUTE(1));
445
446 /* Set HDMI Mode */
447 hdmi_writeb(hdmi, HDMI_HDCP_CTRL,
448 v_HDMI_DVI(display->is_hdmi));
449
450 inno_hdmi_config_video_timing(hdmi, &new_crtc_state->adjusted_mode);
451
452 inno_hdmi_config_video_csc(hdmi);
453
454 drm_atomic_helper_connector_hdmi_update_infoframes(connector, state);
455
456 /*
457 * When IP controller have configured to an accurate video
458 * timing, then the TMDS clock source would be switched to
459 * DCLK_LCDC, so we need to init the TMDS rate to mode pixel
460 * clock rate, and reconfigure the DDC clock.
461 */
462 inno_hdmi_i2c_init(hdmi, new_conn_state->hdmi.tmds_char_rate);
463
464 /* Unmute video and audio output */
465 hdmi_modb(hdmi, HDMI_AV_MUTE, m_AUDIO_MUTE | m_VIDEO_BLACK,
466 v_AUDIO_MUTE(0) | v_VIDEO_MUTE(0));
467
468 inno_hdmi_power_up(hdmi, new_conn_state->hdmi.tmds_char_rate);
469
470 return 0;
471}
472
473static enum drm_mode_status inno_hdmi_display_mode_valid(struct inno_hdmi *hdmi,
474 struct drm_display_mode *mode)
475{
476 unsigned long mpixelclk, max_tolerance;
477 long rounded_refclk;
478
479 /* No support for double-clock modes */
480 if (mode->flags & DRM_MODE_FLAG_DBLCLK)
481 return MODE_BAD;
482
483 mpixelclk = mode->clock * 1000;
484
485 if (mpixelclk < INNO_HDMI_MIN_TMDS_CLOCK)
486 return MODE_CLOCK_LOW;
487
488 if (inno_hdmi_find_phy_config(hdmi, mpixelclk) < 0)
489 return MODE_CLOCK_HIGH;
490
491 if (hdmi->refclk) {
492 rounded_refclk = clk_round_rate(hdmi->refclk, mpixelclk);
493 if (rounded_refclk < 0)
494 return MODE_BAD;
495
496 /* Vesa DMT standard mentions +/- 0.5% max tolerance */
497 max_tolerance = mpixelclk / 200;
498 if (abs_diff((unsigned long)rounded_refclk, mpixelclk) > max_tolerance)
499 return MODE_NOCLOCK;
500 }
501
502 return MODE_OK;
503}
504
505static void inno_hdmi_encoder_enable(struct drm_encoder *encoder,
506 struct drm_atomic_state *state)
507{
508 struct inno_hdmi *hdmi = encoder_to_inno_hdmi(encoder);
509
510 inno_hdmi_setup(hdmi, state);
511}
512
513static void inno_hdmi_encoder_disable(struct drm_encoder *encoder,
514 struct drm_atomic_state *state)
515{
516 struct inno_hdmi *hdmi = encoder_to_inno_hdmi(encoder);
517
518 inno_hdmi_standby(hdmi);
519}
520
521static int
522inno_hdmi_encoder_atomic_check(struct drm_encoder *encoder,
523 struct drm_crtc_state *crtc_state,
524 struct drm_connector_state *conn_state)
525{
526 struct rockchip_crtc_state *s = to_rockchip_crtc_state(crtc_state);
527 struct drm_display_mode *mode = &crtc_state->adjusted_mode;
528 u8 vic = drm_match_cea_mode(mode);
529 struct inno_hdmi_connector_state *inno_conn_state =
530 to_inno_hdmi_conn_state(conn_state);
531
532 s->output_mode = ROCKCHIP_OUT_MODE_P888;
533 s->output_type = DRM_MODE_CONNECTOR_HDMIA;
534
535 if (vic == 6 || vic == 7 ||
536 vic == 21 || vic == 22 ||
537 vic == 2 || vic == 3 ||
538 vic == 17 || vic == 18)
539 inno_conn_state->colorimetry = HDMI_COLORIMETRY_ITU_601;
540 else
541 inno_conn_state->colorimetry = HDMI_COLORIMETRY_ITU_709;
542
543 return 0;
544}
545
546static const struct drm_encoder_helper_funcs inno_hdmi_encoder_helper_funcs = {
547 .atomic_check = inno_hdmi_encoder_atomic_check,
548 .atomic_enable = inno_hdmi_encoder_enable,
549 .atomic_disable = inno_hdmi_encoder_disable,
550};
551
552static enum drm_connector_status
553inno_hdmi_connector_detect(struct drm_connector *connector, bool force)
554{
555 struct inno_hdmi *hdmi = connector_to_inno_hdmi(connector);
556
557 return (hdmi_readb(hdmi, HDMI_STATUS) & m_HOTPLUG) ?
558 connector_status_connected : connector_status_disconnected;
559}
560
561static int inno_hdmi_connector_get_modes(struct drm_connector *connector)
562{
563 struct inno_hdmi *hdmi = connector_to_inno_hdmi(connector);
564 const struct drm_edid *drm_edid;
565 int ret = 0;
566
567 if (!hdmi->ddc)
568 return 0;
569
570 drm_edid = drm_edid_read_ddc(connector, hdmi->ddc);
571 drm_edid_connector_update(connector, drm_edid);
572 ret = drm_edid_connector_add_modes(connector);
573 drm_edid_free(drm_edid);
574
575 return ret;
576}
577
578static enum drm_mode_status
579inno_hdmi_connector_mode_valid(struct drm_connector *connector,
580 struct drm_display_mode *mode)
581{
582 struct inno_hdmi *hdmi = connector_to_inno_hdmi(connector);
583
584 return inno_hdmi_display_mode_valid(hdmi, mode);
585}
586
587static void
588inno_hdmi_connector_destroy_state(struct drm_connector *connector,
589 struct drm_connector_state *state)
590{
591 struct inno_hdmi_connector_state *inno_conn_state =
592 to_inno_hdmi_conn_state(state);
593
594 __drm_atomic_helper_connector_destroy_state(&inno_conn_state->base);
595 kfree(inno_conn_state);
596}
597
598static void inno_hdmi_connector_reset(struct drm_connector *connector)
599{
600 struct inno_hdmi_connector_state *inno_conn_state;
601
602 if (connector->state) {
603 inno_hdmi_connector_destroy_state(connector, connector->state);
604 connector->state = NULL;
605 }
606
607 inno_conn_state = kzalloc(sizeof(*inno_conn_state), GFP_KERNEL);
608 if (!inno_conn_state)
609 return;
610
611 __drm_atomic_helper_connector_reset(connector, &inno_conn_state->base);
612 __drm_atomic_helper_connector_hdmi_reset(connector, connector->state);
613
614 inno_conn_state->colorimetry = HDMI_COLORIMETRY_ITU_709;
615}
616
617static struct drm_connector_state *
618inno_hdmi_connector_duplicate_state(struct drm_connector *connector)
619{
620 struct inno_hdmi_connector_state *inno_conn_state;
621
622 if (WARN_ON(!connector->state))
623 return NULL;
624
625 inno_conn_state = kmemdup(to_inno_hdmi_conn_state(connector->state),
626 sizeof(*inno_conn_state), GFP_KERNEL);
627
628 if (!inno_conn_state)
629 return NULL;
630
631 __drm_atomic_helper_connector_duplicate_state(connector,
632 &inno_conn_state->base);
633
634 return &inno_conn_state->base;
635}
636
637static const struct drm_connector_funcs inno_hdmi_connector_funcs = {
638 .fill_modes = drm_helper_probe_single_connector_modes,
639 .detect = inno_hdmi_connector_detect,
640 .reset = inno_hdmi_connector_reset,
641 .atomic_duplicate_state = inno_hdmi_connector_duplicate_state,
642 .atomic_destroy_state = inno_hdmi_connector_destroy_state,
643};
644
645static struct drm_connector_helper_funcs inno_hdmi_connector_helper_funcs = {
646 .atomic_check = drm_atomic_helper_connector_hdmi_check,
647 .get_modes = inno_hdmi_connector_get_modes,
648 .mode_valid = inno_hdmi_connector_mode_valid,
649};
650
651static int inno_hdmi_register(struct drm_device *drm, struct inno_hdmi *hdmi)
652{
653 struct drm_encoder *encoder = &hdmi->encoder.encoder;
654 struct device *dev = hdmi->dev;
655
656 encoder->possible_crtcs = drm_of_find_possible_crtcs(drm, dev->of_node);
657
658 /*
659 * If we failed to find the CRTC(s) which this encoder is
660 * supposed to be connected to, it's because the CRTC has
661 * not been registered yet. Defer probing, and hope that
662 * the required CRTC is added later.
663 */
664 if (encoder->possible_crtcs == 0)
665 return -EPROBE_DEFER;
666
667 drm_encoder_helper_add(encoder, &inno_hdmi_encoder_helper_funcs);
668 drm_simple_encoder_init(drm, encoder, DRM_MODE_ENCODER_TMDS);
669
670 hdmi->connector.polled = DRM_CONNECTOR_POLL_HPD;
671
672 drm_connector_helper_add(&hdmi->connector,
673 &inno_hdmi_connector_helper_funcs);
674 drmm_connector_hdmi_init(drm, &hdmi->connector,
675 "Rockchip", "Inno HDMI",
676 &inno_hdmi_connector_funcs,
677 &inno_hdmi_hdmi_connector_funcs,
678 DRM_MODE_CONNECTOR_HDMIA,
679 hdmi->ddc,
680 BIT(HDMI_COLORSPACE_RGB),
681 8);
682
683 drm_connector_attach_encoder(&hdmi->connector, encoder);
684
685 return 0;
686}
687
688static irqreturn_t inno_hdmi_i2c_irq(struct inno_hdmi *hdmi)
689{
690 struct inno_hdmi_i2c *i2c = hdmi->i2c;
691 u8 stat;
692
693 stat = hdmi_readb(hdmi, HDMI_INTERRUPT_STATUS1);
694 if (!(stat & m_INT_EDID_READY))
695 return IRQ_NONE;
696
697 /* Clear HDMI EDID interrupt flag */
698 hdmi_writeb(hdmi, HDMI_INTERRUPT_STATUS1, m_INT_EDID_READY);
699
700 complete(&i2c->cmp);
701
702 return IRQ_HANDLED;
703}
704
705static irqreturn_t inno_hdmi_hardirq(int irq, void *dev_id)
706{
707 struct inno_hdmi *hdmi = dev_id;
708 irqreturn_t ret = IRQ_NONE;
709 u8 interrupt;
710
711 if (hdmi->i2c)
712 ret = inno_hdmi_i2c_irq(hdmi);
713
714 interrupt = hdmi_readb(hdmi, HDMI_STATUS);
715 if (interrupt & m_INT_HOTPLUG) {
716 hdmi_modb(hdmi, HDMI_STATUS, m_INT_HOTPLUG, m_INT_HOTPLUG);
717 ret = IRQ_WAKE_THREAD;
718 }
719
720 return ret;
721}
722
723static irqreturn_t inno_hdmi_irq(int irq, void *dev_id)
724{
725 struct inno_hdmi *hdmi = dev_id;
726
727 drm_helper_hpd_irq_event(hdmi->connector.dev);
728
729 return IRQ_HANDLED;
730}
731
732static int inno_hdmi_i2c_read(struct inno_hdmi *hdmi, struct i2c_msg *msgs)
733{
734 int length = msgs->len;
735 u8 *buf = msgs->buf;
736 int ret;
737
738 ret = wait_for_completion_timeout(&hdmi->i2c->cmp, HZ / 10);
739 if (!ret)
740 return -EAGAIN;
741
742 while (length--)
743 *buf++ = hdmi_readb(hdmi, HDMI_EDID_FIFO_ADDR);
744
745 return 0;
746}
747
748static int inno_hdmi_i2c_write(struct inno_hdmi *hdmi, struct i2c_msg *msgs)
749{
750 /*
751 * The DDC module only support read EDID message, so
752 * we assume that each word write to this i2c adapter
753 * should be the offset of EDID word address.
754 */
755 if ((msgs->len != 1) ||
756 ((msgs->addr != DDC_ADDR) && (msgs->addr != DDC_SEGMENT_ADDR)))
757 return -EINVAL;
758
759 reinit_completion(&hdmi->i2c->cmp);
760
761 if (msgs->addr == DDC_SEGMENT_ADDR)
762 hdmi->i2c->segment_addr = msgs->buf[0];
763 if (msgs->addr == DDC_ADDR)
764 hdmi->i2c->ddc_addr = msgs->buf[0];
765
766 /* Set edid fifo first addr */
767 hdmi_writeb(hdmi, HDMI_EDID_FIFO_OFFSET, 0x00);
768
769 /* Set edid word address 0x00/0x80 */
770 hdmi_writeb(hdmi, HDMI_EDID_WORD_ADDR, hdmi->i2c->ddc_addr);
771
772 /* Set edid segment pointer */
773 hdmi_writeb(hdmi, HDMI_EDID_SEGMENT_POINTER, hdmi->i2c->segment_addr);
774
775 return 0;
776}
777
778static int inno_hdmi_i2c_xfer(struct i2c_adapter *adap,
779 struct i2c_msg *msgs, int num)
780{
781 struct inno_hdmi *hdmi = i2c_get_adapdata(adap);
782 struct inno_hdmi_i2c *i2c = hdmi->i2c;
783 int i, ret = 0;
784
785 mutex_lock(&i2c->lock);
786
787 /* Clear the EDID interrupt flag and unmute the interrupt */
788 hdmi_writeb(hdmi, HDMI_INTERRUPT_MASK1, m_INT_EDID_READY);
789 hdmi_writeb(hdmi, HDMI_INTERRUPT_STATUS1, m_INT_EDID_READY);
790
791 for (i = 0; i < num; i++) {
792 DRM_DEV_DEBUG(hdmi->dev,
793 "xfer: num: %d/%d, len: %d, flags: %#x\n",
794 i + 1, num, msgs[i].len, msgs[i].flags);
795
796 if (msgs[i].flags & I2C_M_RD)
797 ret = inno_hdmi_i2c_read(hdmi, &msgs[i]);
798 else
799 ret = inno_hdmi_i2c_write(hdmi, &msgs[i]);
800
801 if (ret < 0)
802 break;
803 }
804
805 if (!ret)
806 ret = num;
807
808 /* Mute HDMI EDID interrupt */
809 hdmi_writeb(hdmi, HDMI_INTERRUPT_MASK1, 0);
810
811 mutex_unlock(&i2c->lock);
812
813 return ret;
814}
815
816static u32 inno_hdmi_i2c_func(struct i2c_adapter *adapter)
817{
818 return I2C_FUNC_I2C | I2C_FUNC_SMBUS_EMUL;
819}
820
821static const struct i2c_algorithm inno_hdmi_algorithm = {
822 .master_xfer = inno_hdmi_i2c_xfer,
823 .functionality = inno_hdmi_i2c_func,
824};
825
826static struct i2c_adapter *inno_hdmi_i2c_adapter(struct inno_hdmi *hdmi)
827{
828 struct i2c_adapter *adap;
829 struct inno_hdmi_i2c *i2c;
830 int ret;
831
832 i2c = devm_kzalloc(hdmi->dev, sizeof(*i2c), GFP_KERNEL);
833 if (!i2c)
834 return ERR_PTR(-ENOMEM);
835
836 mutex_init(&i2c->lock);
837 init_completion(&i2c->cmp);
838
839 adap = &i2c->adap;
840 adap->owner = THIS_MODULE;
841 adap->dev.parent = hdmi->dev;
842 adap->dev.of_node = hdmi->dev->of_node;
843 adap->algo = &inno_hdmi_algorithm;
844 strscpy(adap->name, "Inno HDMI", sizeof(adap->name));
845 i2c_set_adapdata(adap, hdmi);
846
847 ret = i2c_add_adapter(adap);
848 if (ret) {
849 dev_warn(hdmi->dev, "cannot add %s I2C adapter\n", adap->name);
850 devm_kfree(hdmi->dev, i2c);
851 return ERR_PTR(ret);
852 }
853
854 hdmi->i2c = i2c;
855
856 DRM_DEV_INFO(hdmi->dev, "registered %s I2C bus driver\n", adap->name);
857
858 return adap;
859}
860
861static int inno_hdmi_bind(struct device *dev, struct device *master,
862 void *data)
863{
864 struct platform_device *pdev = to_platform_device(dev);
865 struct drm_device *drm = data;
866 struct inno_hdmi *hdmi;
867 const struct inno_hdmi_variant *variant;
868 int irq;
869 int ret;
870
871 hdmi = devm_kzalloc(dev, sizeof(*hdmi), GFP_KERNEL);
872 if (!hdmi)
873 return -ENOMEM;
874
875 hdmi->dev = dev;
876
877 variant = of_device_get_match_data(hdmi->dev);
878 if (!variant)
879 return -EINVAL;
880
881 hdmi->variant = variant;
882
883 hdmi->regs = devm_platform_ioremap_resource(pdev, 0);
884 if (IS_ERR(hdmi->regs))
885 return PTR_ERR(hdmi->regs);
886
887 hdmi->pclk = devm_clk_get(hdmi->dev, "pclk");
888 if (IS_ERR(hdmi->pclk)) {
889 DRM_DEV_ERROR(hdmi->dev, "Unable to get HDMI pclk clk\n");
890 return PTR_ERR(hdmi->pclk);
891 }
892
893 ret = clk_prepare_enable(hdmi->pclk);
894 if (ret) {
895 DRM_DEV_ERROR(hdmi->dev,
896 "Cannot enable HDMI pclk clock: %d\n", ret);
897 return ret;
898 }
899
900 hdmi->refclk = devm_clk_get_optional(hdmi->dev, "ref");
901 if (IS_ERR(hdmi->refclk)) {
902 DRM_DEV_ERROR(hdmi->dev, "Unable to get HDMI reference clock\n");
903 ret = PTR_ERR(hdmi->refclk);
904 goto err_disable_pclk;
905 }
906
907 ret = clk_prepare_enable(hdmi->refclk);
908 if (ret) {
909 DRM_DEV_ERROR(hdmi->dev,
910 "Cannot enable HDMI reference clock: %d\n", ret);
911 goto err_disable_pclk;
912 }
913
914 irq = platform_get_irq(pdev, 0);
915 if (irq < 0) {
916 ret = irq;
917 goto err_disable_clk;
918 }
919
920 inno_hdmi_reset(hdmi);
921
922 hdmi->ddc = inno_hdmi_i2c_adapter(hdmi);
923 if (IS_ERR(hdmi->ddc)) {
924 ret = PTR_ERR(hdmi->ddc);
925 hdmi->ddc = NULL;
926 goto err_disable_clk;
927 }
928
929 /*
930 * When the controller isn't configured to an accurate
931 * video timing and there is no reference clock available,
932 * then the TMDS clock source would be switched to PCLK_HDMI,
933 * so we need to init the TMDS rate to PCLK rate, and
934 * reconfigure the DDC clock.
935 */
936 if (hdmi->refclk)
937 inno_hdmi_i2c_init(hdmi, clk_get_rate(hdmi->refclk));
938 else
939 inno_hdmi_i2c_init(hdmi, clk_get_rate(hdmi->pclk));
940
941 ret = inno_hdmi_register(drm, hdmi);
942 if (ret)
943 goto err_put_adapter;
944
945 dev_set_drvdata(dev, hdmi);
946
947 /* Unmute hotplug interrupt */
948 hdmi_modb(hdmi, HDMI_STATUS, m_MASK_INT_HOTPLUG, v_MASK_INT_HOTPLUG(1));
949
950 ret = devm_request_threaded_irq(dev, irq, inno_hdmi_hardirq,
951 inno_hdmi_irq, IRQF_SHARED,
952 dev_name(dev), hdmi);
953 if (ret < 0)
954 goto err_cleanup_hdmi;
955
956 return 0;
957err_cleanup_hdmi:
958 hdmi->connector.funcs->destroy(&hdmi->connector);
959 hdmi->encoder.encoder.funcs->destroy(&hdmi->encoder.encoder);
960err_put_adapter:
961 i2c_put_adapter(hdmi->ddc);
962err_disable_clk:
963 clk_disable_unprepare(hdmi->refclk);
964err_disable_pclk:
965 clk_disable_unprepare(hdmi->pclk);
966 return ret;
967}
968
969static void inno_hdmi_unbind(struct device *dev, struct device *master,
970 void *data)
971{
972 struct inno_hdmi *hdmi = dev_get_drvdata(dev);
973
974 hdmi->connector.funcs->destroy(&hdmi->connector);
975 hdmi->encoder.encoder.funcs->destroy(&hdmi->encoder.encoder);
976
977 i2c_put_adapter(hdmi->ddc);
978 clk_disable_unprepare(hdmi->refclk);
979 clk_disable_unprepare(hdmi->pclk);
980}
981
982static const struct component_ops inno_hdmi_ops = {
983 .bind = inno_hdmi_bind,
984 .unbind = inno_hdmi_unbind,
985};
986
987static int inno_hdmi_probe(struct platform_device *pdev)
988{
989 return component_add(&pdev->dev, &inno_hdmi_ops);
990}
991
992static void inno_hdmi_remove(struct platform_device *pdev)
993{
994 component_del(&pdev->dev, &inno_hdmi_ops);
995}
996
997static const struct inno_hdmi_variant rk3036_inno_hdmi_variant = {
998 .phy_configs = rk3036_hdmi_phy_configs,
999 .default_phy_config = &rk3036_hdmi_phy_configs[1],
1000};
1001
1002static const struct inno_hdmi_variant rk3128_inno_hdmi_variant = {
1003 .phy_configs = rk3128_hdmi_phy_configs,
1004 .default_phy_config = &rk3128_hdmi_phy_configs[1],
1005};
1006
1007static const struct of_device_id inno_hdmi_dt_ids[] = {
1008 { .compatible = "rockchip,rk3036-inno-hdmi",
1009 .data = &rk3036_inno_hdmi_variant,
1010 },
1011 { .compatible = "rockchip,rk3128-inno-hdmi",
1012 .data = &rk3128_inno_hdmi_variant,
1013 },
1014 {},
1015};
1016MODULE_DEVICE_TABLE(of, inno_hdmi_dt_ids);
1017
1018struct platform_driver inno_hdmi_driver = {
1019 .probe = inno_hdmi_probe,
1020 .remove = inno_hdmi_remove,
1021 .driver = {
1022 .name = "innohdmi-rockchip",
1023 .of_match_table = inno_hdmi_dt_ids,
1024 },
1025};
1// SPDX-License-Identifier: GPL-2.0-only
2/*
3 * Copyright (C) Fuzhou Rockchip Electronics Co.Ltd
4 * Zheng Yang <zhengyang@rock-chips.com>
5 * Yakir Yang <ykk@rock-chips.com>
6 */
7
8#include <linux/irq.h>
9#include <linux/clk.h>
10#include <linux/delay.h>
11#include <linux/err.h>
12#include <linux/hdmi.h>
13#include <linux/mfd/syscon.h>
14#include <linux/module.h>
15#include <linux/mutex.h>
16#include <linux/of_device.h>
17
18#include <drm/drm_atomic_helper.h>
19#include <drm/drm_edid.h>
20#include <drm/drm_of.h>
21#include <drm/drm_probe_helper.h>
22
23#include "rockchip_drm_drv.h"
24#include "rockchip_drm_vop.h"
25
26#include "inno_hdmi.h"
27
28#define to_inno_hdmi(x) container_of(x, struct inno_hdmi, x)
29
30struct hdmi_data_info {
31 int vic;
32 bool sink_is_hdmi;
33 bool sink_has_audio;
34 unsigned int enc_in_format;
35 unsigned int enc_out_format;
36 unsigned int colorimetry;
37};
38
39struct inno_hdmi_i2c {
40 struct i2c_adapter adap;
41
42 u8 ddc_addr;
43 u8 segment_addr;
44
45 struct mutex lock;
46 struct completion cmp;
47};
48
49struct inno_hdmi {
50 struct device *dev;
51 struct drm_device *drm_dev;
52
53 int irq;
54 struct clk *pclk;
55 void __iomem *regs;
56
57 struct drm_connector connector;
58 struct drm_encoder encoder;
59
60 struct inno_hdmi_i2c *i2c;
61 struct i2c_adapter *ddc;
62
63 unsigned int tmds_rate;
64
65 struct hdmi_data_info hdmi_data;
66 struct drm_display_mode previous_mode;
67};
68
69enum {
70 CSC_ITU601_16_235_TO_RGB_0_255_8BIT,
71 CSC_ITU601_0_255_TO_RGB_0_255_8BIT,
72 CSC_ITU709_16_235_TO_RGB_0_255_8BIT,
73 CSC_RGB_0_255_TO_ITU601_16_235_8BIT,
74 CSC_RGB_0_255_TO_ITU709_16_235_8BIT,
75 CSC_RGB_0_255_TO_RGB_16_235_8BIT,
76};
77
78static const char coeff_csc[][24] = {
79 /*
80 * YUV2RGB:601 SD mode(Y[16:235], UV[16:240], RGB[0:255]):
81 * R = 1.164*Y + 1.596*V - 204
82 * G = 1.164*Y - 0.391*U - 0.813*V + 154
83 * B = 1.164*Y + 2.018*U - 258
84 */
85 {
86 0x04, 0xa7, 0x00, 0x00, 0x06, 0x62, 0x02, 0xcc,
87 0x04, 0xa7, 0x11, 0x90, 0x13, 0x40, 0x00, 0x9a,
88 0x04, 0xa7, 0x08, 0x12, 0x00, 0x00, 0x03, 0x02
89 },
90 /*
91 * YUV2RGB:601 SD mode(YUV[0:255],RGB[0:255]):
92 * R = Y + 1.402*V - 248
93 * G = Y - 0.344*U - 0.714*V + 135
94 * B = Y + 1.772*U - 227
95 */
96 {
97 0x04, 0x00, 0x00, 0x00, 0x05, 0x9b, 0x02, 0xf8,
98 0x04, 0x00, 0x11, 0x60, 0x12, 0xdb, 0x00, 0x87,
99 0x04, 0x00, 0x07, 0x16, 0x00, 0x00, 0x02, 0xe3
100 },
101 /*
102 * YUV2RGB:709 HD mode(Y[16:235],UV[16:240],RGB[0:255]):
103 * R = 1.164*Y + 1.793*V - 248
104 * G = 1.164*Y - 0.213*U - 0.534*V + 77
105 * B = 1.164*Y + 2.115*U - 289
106 */
107 {
108 0x04, 0xa7, 0x00, 0x00, 0x07, 0x2c, 0x02, 0xf8,
109 0x04, 0xa7, 0x10, 0xda, 0x12, 0x22, 0x00, 0x4d,
110 0x04, 0xa7, 0x08, 0x74, 0x00, 0x00, 0x03, 0x21
111 },
112
113 /*
114 * RGB2YUV:601 SD mode:
115 * Cb = -0.291G - 0.148R + 0.439B + 128
116 * Y = 0.504G + 0.257R + 0.098B + 16
117 * Cr = -0.368G + 0.439R - 0.071B + 128
118 */
119 {
120 0x11, 0x5f, 0x01, 0x82, 0x10, 0x23, 0x00, 0x80,
121 0x02, 0x1c, 0x00, 0xa1, 0x00, 0x36, 0x00, 0x1e,
122 0x11, 0x29, 0x10, 0x59, 0x01, 0x82, 0x00, 0x80
123 },
124 /*
125 * RGB2YUV:709 HD mode:
126 * Cb = - 0.338G - 0.101R + 0.439B + 128
127 * Y = 0.614G + 0.183R + 0.062B + 16
128 * Cr = - 0.399G + 0.439R - 0.040B + 128
129 */
130 {
131 0x11, 0x98, 0x01, 0xc1, 0x10, 0x28, 0x00, 0x80,
132 0x02, 0x74, 0x00, 0xbb, 0x00, 0x3f, 0x00, 0x10,
133 0x11, 0x5a, 0x10, 0x67, 0x01, 0xc1, 0x00, 0x80
134 },
135 /*
136 * RGB[0:255]2RGB[16:235]:
137 * R' = R x (235-16)/255 + 16;
138 * G' = G x (235-16)/255 + 16;
139 * B' = B x (235-16)/255 + 16;
140 */
141 {
142 0x00, 0x00, 0x03, 0x6F, 0x00, 0x00, 0x00, 0x10,
143 0x03, 0x6F, 0x00, 0x00, 0x00, 0x00, 0x00, 0x10,
144 0x00, 0x00, 0x00, 0x00, 0x03, 0x6F, 0x00, 0x10
145 },
146};
147
148static inline u8 hdmi_readb(struct inno_hdmi *hdmi, u16 offset)
149{
150 return readl_relaxed(hdmi->regs + (offset) * 0x04);
151}
152
153static inline void hdmi_writeb(struct inno_hdmi *hdmi, u16 offset, u32 val)
154{
155 writel_relaxed(val, hdmi->regs + (offset) * 0x04);
156}
157
158static inline void hdmi_modb(struct inno_hdmi *hdmi, u16 offset,
159 u32 msk, u32 val)
160{
161 u8 temp = hdmi_readb(hdmi, offset) & ~msk;
162
163 temp |= val & msk;
164 hdmi_writeb(hdmi, offset, temp);
165}
166
167static void inno_hdmi_i2c_init(struct inno_hdmi *hdmi)
168{
169 int ddc_bus_freq;
170
171 ddc_bus_freq = (hdmi->tmds_rate >> 2) / HDMI_SCL_RATE;
172
173 hdmi_writeb(hdmi, DDC_BUS_FREQ_L, ddc_bus_freq & 0xFF);
174 hdmi_writeb(hdmi, DDC_BUS_FREQ_H, (ddc_bus_freq >> 8) & 0xFF);
175
176 /* Clear the EDID interrupt flag and mute the interrupt */
177 hdmi_writeb(hdmi, HDMI_INTERRUPT_MASK1, 0);
178 hdmi_writeb(hdmi, HDMI_INTERRUPT_STATUS1, m_INT_EDID_READY);
179}
180
181static void inno_hdmi_sys_power(struct inno_hdmi *hdmi, bool enable)
182{
183 if (enable)
184 hdmi_modb(hdmi, HDMI_SYS_CTRL, m_POWER, v_PWR_ON);
185 else
186 hdmi_modb(hdmi, HDMI_SYS_CTRL, m_POWER, v_PWR_OFF);
187}
188
189static void inno_hdmi_set_pwr_mode(struct inno_hdmi *hdmi, int mode)
190{
191 switch (mode) {
192 case NORMAL:
193 inno_hdmi_sys_power(hdmi, false);
194
195 hdmi_writeb(hdmi, HDMI_PHY_PRE_EMPHASIS, 0x6f);
196 hdmi_writeb(hdmi, HDMI_PHY_DRIVER, 0xbb);
197
198 hdmi_writeb(hdmi, HDMI_PHY_SYS_CTL, 0x15);
199 hdmi_writeb(hdmi, HDMI_PHY_SYS_CTL, 0x14);
200 hdmi_writeb(hdmi, HDMI_PHY_SYS_CTL, 0x10);
201 hdmi_writeb(hdmi, HDMI_PHY_CHG_PWR, 0x0f);
202 hdmi_writeb(hdmi, HDMI_PHY_SYNC, 0x00);
203 hdmi_writeb(hdmi, HDMI_PHY_SYNC, 0x01);
204
205 inno_hdmi_sys_power(hdmi, true);
206 break;
207
208 case LOWER_PWR:
209 inno_hdmi_sys_power(hdmi, false);
210 hdmi_writeb(hdmi, HDMI_PHY_DRIVER, 0x00);
211 hdmi_writeb(hdmi, HDMI_PHY_PRE_EMPHASIS, 0x00);
212 hdmi_writeb(hdmi, HDMI_PHY_CHG_PWR, 0x00);
213 hdmi_writeb(hdmi, HDMI_PHY_SYS_CTL, 0x15);
214
215 break;
216
217 default:
218 DRM_DEV_ERROR(hdmi->dev, "Unknown power mode %d\n", mode);
219 }
220}
221
222static void inno_hdmi_reset(struct inno_hdmi *hdmi)
223{
224 u32 val;
225 u32 msk;
226
227 hdmi_modb(hdmi, HDMI_SYS_CTRL, m_RST_DIGITAL, v_NOT_RST_DIGITAL);
228 udelay(100);
229
230 hdmi_modb(hdmi, HDMI_SYS_CTRL, m_RST_ANALOG, v_NOT_RST_ANALOG);
231 udelay(100);
232
233 msk = m_REG_CLK_INV | m_REG_CLK_SOURCE | m_POWER | m_INT_POL;
234 val = v_REG_CLK_INV | v_REG_CLK_SOURCE_SYS | v_PWR_ON | v_INT_POL_HIGH;
235 hdmi_modb(hdmi, HDMI_SYS_CTRL, msk, val);
236
237 inno_hdmi_set_pwr_mode(hdmi, NORMAL);
238}
239
240static int inno_hdmi_upload_frame(struct inno_hdmi *hdmi, int setup_rc,
241 union hdmi_infoframe *frame, u32 frame_index,
242 u32 mask, u32 disable, u32 enable)
243{
244 if (mask)
245 hdmi_modb(hdmi, HDMI_PACKET_SEND_AUTO, mask, disable);
246
247 hdmi_writeb(hdmi, HDMI_CONTROL_PACKET_BUF_INDEX, frame_index);
248
249 if (setup_rc >= 0) {
250 u8 packed_frame[HDMI_MAXIMUM_INFO_FRAME_SIZE];
251 ssize_t rc, i;
252
253 rc = hdmi_infoframe_pack(frame, packed_frame,
254 sizeof(packed_frame));
255 if (rc < 0)
256 return rc;
257
258 for (i = 0; i < rc; i++)
259 hdmi_writeb(hdmi, HDMI_CONTROL_PACKET_ADDR + i,
260 packed_frame[i]);
261
262 if (mask)
263 hdmi_modb(hdmi, HDMI_PACKET_SEND_AUTO, mask, enable);
264 }
265
266 return setup_rc;
267}
268
269static int inno_hdmi_config_video_vsi(struct inno_hdmi *hdmi,
270 struct drm_display_mode *mode)
271{
272 union hdmi_infoframe frame;
273 int rc;
274
275 rc = drm_hdmi_vendor_infoframe_from_display_mode(&frame.vendor.hdmi,
276 &hdmi->connector,
277 mode);
278
279 return inno_hdmi_upload_frame(hdmi, rc, &frame, INFOFRAME_VSI,
280 m_PACKET_VSI_EN, v_PACKET_VSI_EN(0), v_PACKET_VSI_EN(1));
281}
282
283static int inno_hdmi_config_video_avi(struct inno_hdmi *hdmi,
284 struct drm_display_mode *mode)
285{
286 union hdmi_infoframe frame;
287 int rc;
288
289 rc = drm_hdmi_avi_infoframe_from_display_mode(&frame.avi,
290 &hdmi->connector,
291 mode);
292
293 if (hdmi->hdmi_data.enc_out_format == HDMI_COLORSPACE_YUV444)
294 frame.avi.colorspace = HDMI_COLORSPACE_YUV444;
295 else if (hdmi->hdmi_data.enc_out_format == HDMI_COLORSPACE_YUV422)
296 frame.avi.colorspace = HDMI_COLORSPACE_YUV422;
297 else
298 frame.avi.colorspace = HDMI_COLORSPACE_RGB;
299
300 return inno_hdmi_upload_frame(hdmi, rc, &frame, INFOFRAME_AVI, 0, 0, 0);
301}
302
303static int inno_hdmi_config_video_csc(struct inno_hdmi *hdmi)
304{
305 struct hdmi_data_info *data = &hdmi->hdmi_data;
306 int c0_c2_change = 0;
307 int csc_enable = 0;
308 int csc_mode = 0;
309 int auto_csc = 0;
310 int value;
311 int i;
312
313 /* Input video mode is SDR RGB24bit, data enable signal from external */
314 hdmi_writeb(hdmi, HDMI_VIDEO_CONTRL1, v_DE_EXTERNAL |
315 v_VIDEO_INPUT_FORMAT(VIDEO_INPUT_SDR_RGB444));
316
317 /* Input color hardcode to RGB, and output color hardcode to RGB888 */
318 value = v_VIDEO_INPUT_BITS(VIDEO_INPUT_8BITS) |
319 v_VIDEO_OUTPUT_COLOR(0) |
320 v_VIDEO_INPUT_CSP(0);
321 hdmi_writeb(hdmi, HDMI_VIDEO_CONTRL2, value);
322
323 if (data->enc_in_format == data->enc_out_format) {
324 if ((data->enc_in_format == HDMI_COLORSPACE_RGB) ||
325 (data->enc_in_format >= HDMI_COLORSPACE_YUV444)) {
326 value = v_SOF_DISABLE | v_COLOR_DEPTH_NOT_INDICATED(1);
327 hdmi_writeb(hdmi, HDMI_VIDEO_CONTRL3, value);
328
329 hdmi_modb(hdmi, HDMI_VIDEO_CONTRL,
330 m_VIDEO_AUTO_CSC | m_VIDEO_C0_C2_SWAP,
331 v_VIDEO_AUTO_CSC(AUTO_CSC_DISABLE) |
332 v_VIDEO_C0_C2_SWAP(C0_C2_CHANGE_DISABLE));
333 return 0;
334 }
335 }
336
337 if (data->colorimetry == HDMI_COLORIMETRY_ITU_601) {
338 if ((data->enc_in_format == HDMI_COLORSPACE_RGB) &&
339 (data->enc_out_format == HDMI_COLORSPACE_YUV444)) {
340 csc_mode = CSC_RGB_0_255_TO_ITU601_16_235_8BIT;
341 auto_csc = AUTO_CSC_DISABLE;
342 c0_c2_change = C0_C2_CHANGE_DISABLE;
343 csc_enable = v_CSC_ENABLE;
344 } else if ((data->enc_in_format == HDMI_COLORSPACE_YUV444) &&
345 (data->enc_out_format == HDMI_COLORSPACE_RGB)) {
346 csc_mode = CSC_ITU601_16_235_TO_RGB_0_255_8BIT;
347 auto_csc = AUTO_CSC_ENABLE;
348 c0_c2_change = C0_C2_CHANGE_DISABLE;
349 csc_enable = v_CSC_DISABLE;
350 }
351 } else {
352 if ((data->enc_in_format == HDMI_COLORSPACE_RGB) &&
353 (data->enc_out_format == HDMI_COLORSPACE_YUV444)) {
354 csc_mode = CSC_RGB_0_255_TO_ITU709_16_235_8BIT;
355 auto_csc = AUTO_CSC_DISABLE;
356 c0_c2_change = C0_C2_CHANGE_DISABLE;
357 csc_enable = v_CSC_ENABLE;
358 } else if ((data->enc_in_format == HDMI_COLORSPACE_YUV444) &&
359 (data->enc_out_format == HDMI_COLORSPACE_RGB)) {
360 csc_mode = CSC_ITU709_16_235_TO_RGB_0_255_8BIT;
361 auto_csc = AUTO_CSC_ENABLE;
362 c0_c2_change = C0_C2_CHANGE_DISABLE;
363 csc_enable = v_CSC_DISABLE;
364 }
365 }
366
367 for (i = 0; i < 24; i++)
368 hdmi_writeb(hdmi, HDMI_VIDEO_CSC_COEF + i,
369 coeff_csc[csc_mode][i]);
370
371 value = v_SOF_DISABLE | csc_enable | v_COLOR_DEPTH_NOT_INDICATED(1);
372 hdmi_writeb(hdmi, HDMI_VIDEO_CONTRL3, value);
373 hdmi_modb(hdmi, HDMI_VIDEO_CONTRL, m_VIDEO_AUTO_CSC |
374 m_VIDEO_C0_C2_SWAP, v_VIDEO_AUTO_CSC(auto_csc) |
375 v_VIDEO_C0_C2_SWAP(c0_c2_change));
376
377 return 0;
378}
379
380static int inno_hdmi_config_video_timing(struct inno_hdmi *hdmi,
381 struct drm_display_mode *mode)
382{
383 int value;
384
385 /* Set detail external video timing polarity and interlace mode */
386 value = v_EXTERANL_VIDEO(1);
387 value |= mode->flags & DRM_MODE_FLAG_PHSYNC ?
388 v_HSYNC_POLARITY(1) : v_HSYNC_POLARITY(0);
389 value |= mode->flags & DRM_MODE_FLAG_PVSYNC ?
390 v_VSYNC_POLARITY(1) : v_VSYNC_POLARITY(0);
391 value |= mode->flags & DRM_MODE_FLAG_INTERLACE ?
392 v_INETLACE(1) : v_INETLACE(0);
393 hdmi_writeb(hdmi, HDMI_VIDEO_TIMING_CTL, value);
394
395 /* Set detail external video timing */
396 value = mode->htotal;
397 hdmi_writeb(hdmi, HDMI_VIDEO_EXT_HTOTAL_L, value & 0xFF);
398 hdmi_writeb(hdmi, HDMI_VIDEO_EXT_HTOTAL_H, (value >> 8) & 0xFF);
399
400 value = mode->htotal - mode->hdisplay;
401 hdmi_writeb(hdmi, HDMI_VIDEO_EXT_HBLANK_L, value & 0xFF);
402 hdmi_writeb(hdmi, HDMI_VIDEO_EXT_HBLANK_H, (value >> 8) & 0xFF);
403
404 value = mode->hsync_start - mode->hdisplay;
405 hdmi_writeb(hdmi, HDMI_VIDEO_EXT_HDELAY_L, value & 0xFF);
406 hdmi_writeb(hdmi, HDMI_VIDEO_EXT_HDELAY_H, (value >> 8) & 0xFF);
407
408 value = mode->hsync_end - mode->hsync_start;
409 hdmi_writeb(hdmi, HDMI_VIDEO_EXT_HDURATION_L, value & 0xFF);
410 hdmi_writeb(hdmi, HDMI_VIDEO_EXT_HDURATION_H, (value >> 8) & 0xFF);
411
412 value = mode->vtotal;
413 hdmi_writeb(hdmi, HDMI_VIDEO_EXT_VTOTAL_L, value & 0xFF);
414 hdmi_writeb(hdmi, HDMI_VIDEO_EXT_VTOTAL_H, (value >> 8) & 0xFF);
415
416 value = mode->vtotal - mode->vdisplay;
417 hdmi_writeb(hdmi, HDMI_VIDEO_EXT_VBLANK, value & 0xFF);
418
419 value = mode->vsync_start - mode->vdisplay;
420 hdmi_writeb(hdmi, HDMI_VIDEO_EXT_VDELAY, value & 0xFF);
421
422 value = mode->vsync_end - mode->vsync_start;
423 hdmi_writeb(hdmi, HDMI_VIDEO_EXT_VDURATION, value & 0xFF);
424
425 hdmi_writeb(hdmi, HDMI_PHY_PRE_DIV_RATIO, 0x1e);
426 hdmi_writeb(hdmi, HDMI_PHY_FEEDBACK_DIV_RATIO_LOW, 0x2c);
427 hdmi_writeb(hdmi, HDMI_PHY_FEEDBACK_DIV_RATIO_HIGH, 0x01);
428
429 return 0;
430}
431
432static int inno_hdmi_setup(struct inno_hdmi *hdmi,
433 struct drm_display_mode *mode)
434{
435 hdmi->hdmi_data.vic = drm_match_cea_mode(mode);
436
437 hdmi->hdmi_data.enc_in_format = HDMI_COLORSPACE_RGB;
438 hdmi->hdmi_data.enc_out_format = HDMI_COLORSPACE_RGB;
439
440 if ((hdmi->hdmi_data.vic == 6) || (hdmi->hdmi_data.vic == 7) ||
441 (hdmi->hdmi_data.vic == 21) || (hdmi->hdmi_data.vic == 22) ||
442 (hdmi->hdmi_data.vic == 2) || (hdmi->hdmi_data.vic == 3) ||
443 (hdmi->hdmi_data.vic == 17) || (hdmi->hdmi_data.vic == 18))
444 hdmi->hdmi_data.colorimetry = HDMI_COLORIMETRY_ITU_601;
445 else
446 hdmi->hdmi_data.colorimetry = HDMI_COLORIMETRY_ITU_709;
447
448 /* Mute video and audio output */
449 hdmi_modb(hdmi, HDMI_AV_MUTE, m_AUDIO_MUTE | m_VIDEO_BLACK,
450 v_AUDIO_MUTE(1) | v_VIDEO_MUTE(1));
451
452 /* Set HDMI Mode */
453 hdmi_writeb(hdmi, HDMI_HDCP_CTRL,
454 v_HDMI_DVI(hdmi->hdmi_data.sink_is_hdmi));
455
456 inno_hdmi_config_video_timing(hdmi, mode);
457
458 inno_hdmi_config_video_csc(hdmi);
459
460 if (hdmi->hdmi_data.sink_is_hdmi) {
461 inno_hdmi_config_video_avi(hdmi, mode);
462 inno_hdmi_config_video_vsi(hdmi, mode);
463 }
464
465 /*
466 * When IP controller have configured to an accurate video
467 * timing, then the TMDS clock source would be switched to
468 * DCLK_LCDC, so we need to init the TMDS rate to mode pixel
469 * clock rate, and reconfigure the DDC clock.
470 */
471 hdmi->tmds_rate = mode->clock * 1000;
472 inno_hdmi_i2c_init(hdmi);
473
474 /* Unmute video and audio output */
475 hdmi_modb(hdmi, HDMI_AV_MUTE, m_AUDIO_MUTE | m_VIDEO_BLACK,
476 v_AUDIO_MUTE(0) | v_VIDEO_MUTE(0));
477
478 return 0;
479}
480
481static void inno_hdmi_encoder_mode_set(struct drm_encoder *encoder,
482 struct drm_display_mode *mode,
483 struct drm_display_mode *adj_mode)
484{
485 struct inno_hdmi *hdmi = to_inno_hdmi(encoder);
486
487 inno_hdmi_setup(hdmi, adj_mode);
488
489 /* Store the display mode for plugin/DPMS poweron events */
490 memcpy(&hdmi->previous_mode, adj_mode, sizeof(hdmi->previous_mode));
491}
492
493static void inno_hdmi_encoder_enable(struct drm_encoder *encoder)
494{
495 struct inno_hdmi *hdmi = to_inno_hdmi(encoder);
496
497 inno_hdmi_set_pwr_mode(hdmi, NORMAL);
498}
499
500static void inno_hdmi_encoder_disable(struct drm_encoder *encoder)
501{
502 struct inno_hdmi *hdmi = to_inno_hdmi(encoder);
503
504 inno_hdmi_set_pwr_mode(hdmi, LOWER_PWR);
505}
506
507static bool inno_hdmi_encoder_mode_fixup(struct drm_encoder *encoder,
508 const struct drm_display_mode *mode,
509 struct drm_display_mode *adj_mode)
510{
511 return true;
512}
513
514static int
515inno_hdmi_encoder_atomic_check(struct drm_encoder *encoder,
516 struct drm_crtc_state *crtc_state,
517 struct drm_connector_state *conn_state)
518{
519 struct rockchip_crtc_state *s = to_rockchip_crtc_state(crtc_state);
520
521 s->output_mode = ROCKCHIP_OUT_MODE_P888;
522 s->output_type = DRM_MODE_CONNECTOR_HDMIA;
523
524 return 0;
525}
526
527static struct drm_encoder_helper_funcs inno_hdmi_encoder_helper_funcs = {
528 .enable = inno_hdmi_encoder_enable,
529 .disable = inno_hdmi_encoder_disable,
530 .mode_fixup = inno_hdmi_encoder_mode_fixup,
531 .mode_set = inno_hdmi_encoder_mode_set,
532 .atomic_check = inno_hdmi_encoder_atomic_check,
533};
534
535static struct drm_encoder_funcs inno_hdmi_encoder_funcs = {
536 .destroy = drm_encoder_cleanup,
537};
538
539static enum drm_connector_status
540inno_hdmi_connector_detect(struct drm_connector *connector, bool force)
541{
542 struct inno_hdmi *hdmi = to_inno_hdmi(connector);
543
544 return (hdmi_readb(hdmi, HDMI_STATUS) & m_HOTPLUG) ?
545 connector_status_connected : connector_status_disconnected;
546}
547
548static int inno_hdmi_connector_get_modes(struct drm_connector *connector)
549{
550 struct inno_hdmi *hdmi = to_inno_hdmi(connector);
551 struct edid *edid;
552 int ret = 0;
553
554 if (!hdmi->ddc)
555 return 0;
556
557 edid = drm_get_edid(connector, hdmi->ddc);
558 if (edid) {
559 hdmi->hdmi_data.sink_is_hdmi = drm_detect_hdmi_monitor(edid);
560 hdmi->hdmi_data.sink_has_audio = drm_detect_monitor_audio(edid);
561 drm_connector_update_edid_property(connector, edid);
562 ret = drm_add_edid_modes(connector, edid);
563 kfree(edid);
564 }
565
566 return ret;
567}
568
569static enum drm_mode_status
570inno_hdmi_connector_mode_valid(struct drm_connector *connector,
571 struct drm_display_mode *mode)
572{
573 return MODE_OK;
574}
575
576static int
577inno_hdmi_probe_single_connector_modes(struct drm_connector *connector,
578 uint32_t maxX, uint32_t maxY)
579{
580 return drm_helper_probe_single_connector_modes(connector, 1920, 1080);
581}
582
583static void inno_hdmi_connector_destroy(struct drm_connector *connector)
584{
585 drm_connector_unregister(connector);
586 drm_connector_cleanup(connector);
587}
588
589static const struct drm_connector_funcs inno_hdmi_connector_funcs = {
590 .fill_modes = inno_hdmi_probe_single_connector_modes,
591 .detect = inno_hdmi_connector_detect,
592 .destroy = inno_hdmi_connector_destroy,
593 .reset = drm_atomic_helper_connector_reset,
594 .atomic_duplicate_state = drm_atomic_helper_connector_duplicate_state,
595 .atomic_destroy_state = drm_atomic_helper_connector_destroy_state,
596};
597
598static struct drm_connector_helper_funcs inno_hdmi_connector_helper_funcs = {
599 .get_modes = inno_hdmi_connector_get_modes,
600 .mode_valid = inno_hdmi_connector_mode_valid,
601};
602
603static int inno_hdmi_register(struct drm_device *drm, struct inno_hdmi *hdmi)
604{
605 struct drm_encoder *encoder = &hdmi->encoder;
606 struct device *dev = hdmi->dev;
607
608 encoder->possible_crtcs = drm_of_find_possible_crtcs(drm, dev->of_node);
609
610 /*
611 * If we failed to find the CRTC(s) which this encoder is
612 * supposed to be connected to, it's because the CRTC has
613 * not been registered yet. Defer probing, and hope that
614 * the required CRTC is added later.
615 */
616 if (encoder->possible_crtcs == 0)
617 return -EPROBE_DEFER;
618
619 drm_encoder_helper_add(encoder, &inno_hdmi_encoder_helper_funcs);
620 drm_encoder_init(drm, encoder, &inno_hdmi_encoder_funcs,
621 DRM_MODE_ENCODER_TMDS, NULL);
622
623 hdmi->connector.polled = DRM_CONNECTOR_POLL_HPD;
624
625 drm_connector_helper_add(&hdmi->connector,
626 &inno_hdmi_connector_helper_funcs);
627 drm_connector_init(drm, &hdmi->connector, &inno_hdmi_connector_funcs,
628 DRM_MODE_CONNECTOR_HDMIA);
629
630 drm_connector_attach_encoder(&hdmi->connector, encoder);
631
632 return 0;
633}
634
635static irqreturn_t inno_hdmi_i2c_irq(struct inno_hdmi *hdmi)
636{
637 struct inno_hdmi_i2c *i2c = hdmi->i2c;
638 u8 stat;
639
640 stat = hdmi_readb(hdmi, HDMI_INTERRUPT_STATUS1);
641 if (!(stat & m_INT_EDID_READY))
642 return IRQ_NONE;
643
644 /* Clear HDMI EDID interrupt flag */
645 hdmi_writeb(hdmi, HDMI_INTERRUPT_STATUS1, m_INT_EDID_READY);
646
647 complete(&i2c->cmp);
648
649 return IRQ_HANDLED;
650}
651
652static irqreturn_t inno_hdmi_hardirq(int irq, void *dev_id)
653{
654 struct inno_hdmi *hdmi = dev_id;
655 irqreturn_t ret = IRQ_NONE;
656 u8 interrupt;
657
658 if (hdmi->i2c)
659 ret = inno_hdmi_i2c_irq(hdmi);
660
661 interrupt = hdmi_readb(hdmi, HDMI_STATUS);
662 if (interrupt & m_INT_HOTPLUG) {
663 hdmi_modb(hdmi, HDMI_STATUS, m_INT_HOTPLUG, m_INT_HOTPLUG);
664 ret = IRQ_WAKE_THREAD;
665 }
666
667 return ret;
668}
669
670static irqreturn_t inno_hdmi_irq(int irq, void *dev_id)
671{
672 struct inno_hdmi *hdmi = dev_id;
673
674 drm_helper_hpd_irq_event(hdmi->connector.dev);
675
676 return IRQ_HANDLED;
677}
678
679static int inno_hdmi_i2c_read(struct inno_hdmi *hdmi, struct i2c_msg *msgs)
680{
681 int length = msgs->len;
682 u8 *buf = msgs->buf;
683 int ret;
684
685 ret = wait_for_completion_timeout(&hdmi->i2c->cmp, HZ / 10);
686 if (!ret)
687 return -EAGAIN;
688
689 while (length--)
690 *buf++ = hdmi_readb(hdmi, HDMI_EDID_FIFO_ADDR);
691
692 return 0;
693}
694
695static int inno_hdmi_i2c_write(struct inno_hdmi *hdmi, struct i2c_msg *msgs)
696{
697 /*
698 * The DDC module only support read EDID message, so
699 * we assume that each word write to this i2c adapter
700 * should be the offset of EDID word address.
701 */
702 if ((msgs->len != 1) ||
703 ((msgs->addr != DDC_ADDR) && (msgs->addr != DDC_SEGMENT_ADDR)))
704 return -EINVAL;
705
706 reinit_completion(&hdmi->i2c->cmp);
707
708 if (msgs->addr == DDC_SEGMENT_ADDR)
709 hdmi->i2c->segment_addr = msgs->buf[0];
710 if (msgs->addr == DDC_ADDR)
711 hdmi->i2c->ddc_addr = msgs->buf[0];
712
713 /* Set edid fifo first addr */
714 hdmi_writeb(hdmi, HDMI_EDID_FIFO_OFFSET, 0x00);
715
716 /* Set edid word address 0x00/0x80 */
717 hdmi_writeb(hdmi, HDMI_EDID_WORD_ADDR, hdmi->i2c->ddc_addr);
718
719 /* Set edid segment pointer */
720 hdmi_writeb(hdmi, HDMI_EDID_SEGMENT_POINTER, hdmi->i2c->segment_addr);
721
722 return 0;
723}
724
725static int inno_hdmi_i2c_xfer(struct i2c_adapter *adap,
726 struct i2c_msg *msgs, int num)
727{
728 struct inno_hdmi *hdmi = i2c_get_adapdata(adap);
729 struct inno_hdmi_i2c *i2c = hdmi->i2c;
730 int i, ret = 0;
731
732 mutex_lock(&i2c->lock);
733
734 /* Clear the EDID interrupt flag and unmute the interrupt */
735 hdmi_writeb(hdmi, HDMI_INTERRUPT_MASK1, m_INT_EDID_READY);
736 hdmi_writeb(hdmi, HDMI_INTERRUPT_STATUS1, m_INT_EDID_READY);
737
738 for (i = 0; i < num; i++) {
739 DRM_DEV_DEBUG(hdmi->dev,
740 "xfer: num: %d/%d, len: %d, flags: %#x\n",
741 i + 1, num, msgs[i].len, msgs[i].flags);
742
743 if (msgs[i].flags & I2C_M_RD)
744 ret = inno_hdmi_i2c_read(hdmi, &msgs[i]);
745 else
746 ret = inno_hdmi_i2c_write(hdmi, &msgs[i]);
747
748 if (ret < 0)
749 break;
750 }
751
752 if (!ret)
753 ret = num;
754
755 /* Mute HDMI EDID interrupt */
756 hdmi_writeb(hdmi, HDMI_INTERRUPT_MASK1, 0);
757
758 mutex_unlock(&i2c->lock);
759
760 return ret;
761}
762
763static u32 inno_hdmi_i2c_func(struct i2c_adapter *adapter)
764{
765 return I2C_FUNC_I2C | I2C_FUNC_SMBUS_EMUL;
766}
767
768static const struct i2c_algorithm inno_hdmi_algorithm = {
769 .master_xfer = inno_hdmi_i2c_xfer,
770 .functionality = inno_hdmi_i2c_func,
771};
772
773static struct i2c_adapter *inno_hdmi_i2c_adapter(struct inno_hdmi *hdmi)
774{
775 struct i2c_adapter *adap;
776 struct inno_hdmi_i2c *i2c;
777 int ret;
778
779 i2c = devm_kzalloc(hdmi->dev, sizeof(*i2c), GFP_KERNEL);
780 if (!i2c)
781 return ERR_PTR(-ENOMEM);
782
783 mutex_init(&i2c->lock);
784 init_completion(&i2c->cmp);
785
786 adap = &i2c->adap;
787 adap->class = I2C_CLASS_DDC;
788 adap->owner = THIS_MODULE;
789 adap->dev.parent = hdmi->dev;
790 adap->dev.of_node = hdmi->dev->of_node;
791 adap->algo = &inno_hdmi_algorithm;
792 strlcpy(adap->name, "Inno HDMI", sizeof(adap->name));
793 i2c_set_adapdata(adap, hdmi);
794
795 ret = i2c_add_adapter(adap);
796 if (ret) {
797 dev_warn(hdmi->dev, "cannot add %s I2C adapter\n", adap->name);
798 devm_kfree(hdmi->dev, i2c);
799 return ERR_PTR(ret);
800 }
801
802 hdmi->i2c = i2c;
803
804 DRM_DEV_INFO(hdmi->dev, "registered %s I2C bus driver\n", adap->name);
805
806 return adap;
807}
808
809static int inno_hdmi_bind(struct device *dev, struct device *master,
810 void *data)
811{
812 struct platform_device *pdev = to_platform_device(dev);
813 struct drm_device *drm = data;
814 struct inno_hdmi *hdmi;
815 struct resource *iores;
816 int irq;
817 int ret;
818
819 hdmi = devm_kzalloc(dev, sizeof(*hdmi), GFP_KERNEL);
820 if (!hdmi)
821 return -ENOMEM;
822
823 hdmi->dev = dev;
824 hdmi->drm_dev = drm;
825
826 iores = platform_get_resource(pdev, IORESOURCE_MEM, 0);
827 hdmi->regs = devm_ioremap_resource(dev, iores);
828 if (IS_ERR(hdmi->regs))
829 return PTR_ERR(hdmi->regs);
830
831 hdmi->pclk = devm_clk_get(hdmi->dev, "pclk");
832 if (IS_ERR(hdmi->pclk)) {
833 DRM_DEV_ERROR(hdmi->dev, "Unable to get HDMI pclk clk\n");
834 return PTR_ERR(hdmi->pclk);
835 }
836
837 ret = clk_prepare_enable(hdmi->pclk);
838 if (ret) {
839 DRM_DEV_ERROR(hdmi->dev,
840 "Cannot enable HDMI pclk clock: %d\n", ret);
841 return ret;
842 }
843
844 irq = platform_get_irq(pdev, 0);
845 if (irq < 0) {
846 ret = irq;
847 goto err_disable_clk;
848 }
849
850 inno_hdmi_reset(hdmi);
851
852 hdmi->ddc = inno_hdmi_i2c_adapter(hdmi);
853 if (IS_ERR(hdmi->ddc)) {
854 ret = PTR_ERR(hdmi->ddc);
855 hdmi->ddc = NULL;
856 goto err_disable_clk;
857 }
858
859 /*
860 * When IP controller haven't configured to an accurate video
861 * timing, then the TMDS clock source would be switched to
862 * PCLK_HDMI, so we need to init the TMDS rate to PCLK rate,
863 * and reconfigure the DDC clock.
864 */
865 hdmi->tmds_rate = clk_get_rate(hdmi->pclk);
866 inno_hdmi_i2c_init(hdmi);
867
868 ret = inno_hdmi_register(drm, hdmi);
869 if (ret)
870 goto err_put_adapter;
871
872 dev_set_drvdata(dev, hdmi);
873
874 /* Unmute hotplug interrupt */
875 hdmi_modb(hdmi, HDMI_STATUS, m_MASK_INT_HOTPLUG, v_MASK_INT_HOTPLUG(1));
876
877 ret = devm_request_threaded_irq(dev, irq, inno_hdmi_hardirq,
878 inno_hdmi_irq, IRQF_SHARED,
879 dev_name(dev), hdmi);
880 if (ret < 0)
881 goto err_cleanup_hdmi;
882
883 return 0;
884err_cleanup_hdmi:
885 hdmi->connector.funcs->destroy(&hdmi->connector);
886 hdmi->encoder.funcs->destroy(&hdmi->encoder);
887err_put_adapter:
888 i2c_put_adapter(hdmi->ddc);
889err_disable_clk:
890 clk_disable_unprepare(hdmi->pclk);
891 return ret;
892}
893
894static void inno_hdmi_unbind(struct device *dev, struct device *master,
895 void *data)
896{
897 struct inno_hdmi *hdmi = dev_get_drvdata(dev);
898
899 hdmi->connector.funcs->destroy(&hdmi->connector);
900 hdmi->encoder.funcs->destroy(&hdmi->encoder);
901
902 i2c_put_adapter(hdmi->ddc);
903 clk_disable_unprepare(hdmi->pclk);
904}
905
906static const struct component_ops inno_hdmi_ops = {
907 .bind = inno_hdmi_bind,
908 .unbind = inno_hdmi_unbind,
909};
910
911static int inno_hdmi_probe(struct platform_device *pdev)
912{
913 return component_add(&pdev->dev, &inno_hdmi_ops);
914}
915
916static int inno_hdmi_remove(struct platform_device *pdev)
917{
918 component_del(&pdev->dev, &inno_hdmi_ops);
919
920 return 0;
921}
922
923static const struct of_device_id inno_hdmi_dt_ids[] = {
924 { .compatible = "rockchip,rk3036-inno-hdmi",
925 },
926 {},
927};
928MODULE_DEVICE_TABLE(of, inno_hdmi_dt_ids);
929
930struct platform_driver inno_hdmi_driver = {
931 .probe = inno_hdmi_probe,
932 .remove = inno_hdmi_remove,
933 .driver = {
934 .name = "innohdmi-rockchip",
935 .of_match_table = inno_hdmi_dt_ids,
936 },
937};