1 // SPDX-License-Identifier: GPL-2.0
2 /*
3 * MediaTek HDMI v2 IP driver
4 *
5 * Copyright (c) 2022 MediaTek Inc.
6 * Copyright (c) 2022 BayLibre, SAS
7 * Copyright (c) 2024 Collabora Ltd.
8 * AngeloGioacchino Del Regno <angelogioacchino.delregno@collabora.com>
9 */
10
11 #include <linux/bitfield.h>
12 #include <linux/clk.h>
13 #include <linux/debugfs.h>
14 #include <linux/delay.h>
15 #include <linux/device.h>
16 #include <linux/err.h>
17 #include <linux/interrupt.h>
18 #include <linux/irq.h>
19 #include <linux/kernel.h>
20 #include <linux/mutex.h>
21 #include <linux/of.h>
22 #include <linux/of_platform.h>
23 #include <linux/pm_runtime.h>
24 #include <linux/regmap.h>
25 #include <linux/suspend.h>
26 #include <linux/units.h>
27 #include <linux/phy/phy.h>
28
29 #include <drm/display/drm_hdmi_helper.h>
30 #include <drm/display/drm_hdmi_state_helper.h>
31 #include <drm/display/drm_scdc_helper.h>
32 #include <drm/drm_drv.h>
33 #include <drm/drm_edid.h>
34 #include <drm/drm_print.h>
35 #include <drm/drm_probe_helper.h>
36
37 #include "mtk_hdmi_common.h"
38 #include "mtk_hdmi_regs_v2.h"
39
40 #define MTK_HDMI_V2_CLOCK_MIN 27000
41 #define MTK_HDMI_V2_CLOCK_MAX 594000
42
43 #define HPD_PORD_HWIRQS (HTPLG_R_INT | HTPLG_F_INT | PORD_F_INT | PORD_R_INT)
44
45 enum mtk_hdmi_v2_clk_id {
46 MTK_HDMI_V2_CLK_HDCP_SEL,
47 MTK_HDMI_V2_CLK_HDCP_24M_SEL,
48 MTK_HDMI_V2_CLK_VPP_SPLIT_HDMI,
49 MTK_HDMI_V2_CLK_HDMI_APB_SEL,
50 MTK_HDMI_V2_CLK_COUNT,
51 };
52
53 const char *const mtk_hdmi_v2_clk_names[MTK_HDMI_V2_CLK_COUNT] = {
54 [MTK_HDMI_V2_CLK_HDMI_APB_SEL] = "bus",
55 [MTK_HDMI_V2_CLK_HDCP_SEL] = "hdcp",
56 [MTK_HDMI_V2_CLK_HDCP_24M_SEL] = "hdcp24m",
57 [MTK_HDMI_V2_CLK_VPP_SPLIT_HDMI] = "hdmi-split",
58 };
59
mtk_hdmi_v2_hwirq_disable(struct mtk_hdmi * hdmi)60 static inline void mtk_hdmi_v2_hwirq_disable(struct mtk_hdmi *hdmi)
61 {
62 regmap_write(hdmi->regs, TOP_INT_ENABLE00, 0);
63 regmap_write(hdmi->regs, TOP_INT_ENABLE01, 0);
64 }
65
mtk_hdmi_v2_enable_hpd_pord_irq(struct mtk_hdmi * hdmi,bool enable)66 static inline void mtk_hdmi_v2_enable_hpd_pord_irq(struct mtk_hdmi *hdmi, bool enable)
67 {
68 if (enable)
69 regmap_set_bits(hdmi->regs, TOP_INT_ENABLE00, HPD_PORD_HWIRQS);
70 else
71 regmap_clear_bits(hdmi->regs, TOP_INT_ENABLE00, HPD_PORD_HWIRQS);
72 }
73
mtk_hdmi_v2_set_sw_hpd(struct mtk_hdmi * hdmi,bool enable)74 static inline void mtk_hdmi_v2_set_sw_hpd(struct mtk_hdmi *hdmi, bool enable)
75 {
76 if (enable) {
77 regmap_set_bits(hdmi->regs, hdmi->conf->reg_hdmi_tx_cfg, HDMITX_SW_HPD);
78 regmap_set_bits(hdmi->regs, HDCP2X_CTRL_0, HDCP2X_HPD_OVR);
79 regmap_set_bits(hdmi->regs, HDCP2X_CTRL_0, HDCP2X_HPD_SW);
80 } else {
81 regmap_clear_bits(hdmi->regs, HDCP2X_CTRL_0, HDCP2X_HPD_OVR);
82 regmap_clear_bits(hdmi->regs, HDCP2X_CTRL_0, HDCP2X_HPD_SW);
83 regmap_clear_bits(hdmi->regs, hdmi->conf->reg_hdmi_tx_cfg, HDMITX_SW_HPD);
84 }
85 }
86
mtk_hdmi_v2_enable_scrambling(struct mtk_hdmi * hdmi,bool enable)87 static inline void mtk_hdmi_v2_enable_scrambling(struct mtk_hdmi *hdmi, bool enable)
88 {
89 struct drm_scdc *scdc = &hdmi->curr_conn->display_info.hdmi.scdc;
90
91 if (enable)
92 regmap_set_bits(hdmi->regs, TOP_CFG00, SCR_ON | HDMI2_ON);
93 else
94 regmap_clear_bits(hdmi->regs, TOP_CFG00, SCR_ON | HDMI2_ON);
95
96 if (scdc->supported) {
97 if (scdc->scrambling.supported)
98 drm_scdc_set_scrambling(hdmi->curr_conn, enable);
99 drm_scdc_set_high_tmds_clock_ratio(hdmi->curr_conn, enable);
100 }
101 }
102
mtk_hdmi_v2_hw_vid_mute(struct mtk_hdmi * hdmi,bool enable)103 static void mtk_hdmi_v2_hw_vid_mute(struct mtk_hdmi *hdmi, bool enable)
104 {
105 /* If enabled, sends a black image */
106 if (enable)
107 regmap_set_bits(hdmi->regs, TOP_VMUTE_CFG1, REG_VMUTE_EN);
108 else
109 regmap_clear_bits(hdmi->regs, TOP_VMUTE_CFG1, REG_VMUTE_EN);
110 }
111
mtk_hdmi_v2_hw_aud_mute(struct mtk_hdmi * hdmi,bool enable)112 static void mtk_hdmi_v2_hw_aud_mute(struct mtk_hdmi *hdmi, bool enable)
113 {
114 u32 aip, val;
115
116 if (!enable) {
117 regmap_clear_bits(hdmi->regs, AIP_TXCTRL, AUD_MUTE_FIFO_EN);
118 return;
119 }
120
121 regmap_read(hdmi->regs, AIP_CTRL, &aip);
122
123 val = AUD_MUTE_FIFO_EN;
124 if (aip & DSD_EN)
125 val |= DSD_MUTE_EN;
126
127 regmap_update_bits(hdmi->regs, AIP_TXCTRL, val, val);
128 }
129
mtk_hdmi_v2_hw_reset(struct mtk_hdmi * hdmi)130 static void mtk_hdmi_v2_hw_reset(struct mtk_hdmi *hdmi)
131 {
132 regmap_clear_bits(hdmi->regs, hdmi->conf->reg_hdmi_tx_cfg, HDMITX_SW_RSTB);
133 udelay(5);
134 regmap_set_bits(hdmi->regs, hdmi->conf->reg_hdmi_tx_cfg, HDMITX_SW_RSTB);
135 }
136
mtk_hdmi_v2_format_hw_packet(const u8 * buffer,u8 len)137 static inline u32 mtk_hdmi_v2_format_hw_packet(const u8 *buffer, u8 len)
138 {
139 unsigned short i;
140 u32 val = 0;
141
142 for (i = 0; i < len; i++)
143 val |= buffer[i] << (i * 8);
144
145 return val;
146 }
147
mtk_hdmi_v2_hw_write_audio_infoframe(struct mtk_hdmi * hdmi,const u8 * buffer)148 static void mtk_hdmi_v2_hw_write_audio_infoframe(struct mtk_hdmi *hdmi, const u8 *buffer)
149 {
150 regmap_clear_bits(hdmi->regs, TOP_INFO_EN, AUD_EN | AUD_EN_WR);
151 regmap_clear_bits(hdmi->regs, TOP_INFO_RPT, AUD_RPT_EN);
152
153 regmap_write(hdmi->regs, TOP_AIF_HEADER, mtk_hdmi_v2_format_hw_packet(&buffer[0], 3));
154 regmap_write(hdmi->regs, TOP_AIF_PKT00, mtk_hdmi_v2_format_hw_packet(&buffer[3], 3));
155 regmap_write(hdmi->regs, TOP_AIF_PKT01, mtk_hdmi_v2_format_hw_packet(&buffer[7], 2));
156 regmap_write(hdmi->regs, TOP_AIF_PKT02, 0);
157 regmap_write(hdmi->regs, TOP_AIF_PKT03, 0);
158
159 regmap_set_bits(hdmi->regs, TOP_INFO_RPT, AUD_RPT_EN);
160 regmap_set_bits(hdmi->regs, TOP_INFO_EN, AUD_EN | AUD_EN_WR);
161 }
162
mtk_hdmi_v2_hw_write_avi_infoframe(struct mtk_hdmi * hdmi,const u8 * buffer)163 static void mtk_hdmi_v2_hw_write_avi_infoframe(struct mtk_hdmi *hdmi, const u8 *buffer)
164 {
165 regmap_clear_bits(hdmi->regs, TOP_INFO_EN, AVI_EN_WR | AVI_EN);
166 regmap_clear_bits(hdmi->regs, TOP_INFO_RPT, AVI_RPT_EN);
167
168 regmap_write(hdmi->regs, TOP_AVI_HEADER, mtk_hdmi_v2_format_hw_packet(&buffer[0], 3));
169 regmap_write(hdmi->regs, TOP_AVI_PKT00, mtk_hdmi_v2_format_hw_packet(&buffer[3], 4));
170 regmap_write(hdmi->regs, TOP_AVI_PKT01, mtk_hdmi_v2_format_hw_packet(&buffer[7], 3));
171 regmap_write(hdmi->regs, TOP_AVI_PKT02, mtk_hdmi_v2_format_hw_packet(&buffer[10], 4));
172 regmap_write(hdmi->regs, TOP_AVI_PKT03, mtk_hdmi_v2_format_hw_packet(&buffer[14], 3));
173 regmap_write(hdmi->regs, TOP_AVI_PKT04, 0);
174 regmap_write(hdmi->regs, TOP_AVI_PKT05, 0);
175
176 regmap_set_bits(hdmi->regs, TOP_INFO_RPT, AVI_RPT_EN);
177 regmap_set_bits(hdmi->regs, TOP_INFO_EN, AVI_EN_WR | AVI_EN);
178 }
179
mtk_hdmi_v2_hw_write_spd_infoframe(struct mtk_hdmi * hdmi,const u8 * buffer)180 static void mtk_hdmi_v2_hw_write_spd_infoframe(struct mtk_hdmi *hdmi, const u8 *buffer)
181 {
182 regmap_clear_bits(hdmi->regs, TOP_INFO_EN, SPD_EN_WR | SPD_EN);
183 regmap_clear_bits(hdmi->regs, TOP_INFO_RPT, SPD_RPT_EN);
184
185 regmap_write(hdmi->regs, TOP_SPDIF_HEADER, mtk_hdmi_v2_format_hw_packet(&buffer[0], 3));
186 regmap_write(hdmi->regs, TOP_SPDIF_PKT00, mtk_hdmi_v2_format_hw_packet(&buffer[3], 4));
187 regmap_write(hdmi->regs, TOP_SPDIF_PKT01, mtk_hdmi_v2_format_hw_packet(&buffer[7], 3));
188 regmap_write(hdmi->regs, TOP_SPDIF_PKT02, mtk_hdmi_v2_format_hw_packet(&buffer[10], 4));
189 regmap_write(hdmi->regs, TOP_SPDIF_PKT03, mtk_hdmi_v2_format_hw_packet(&buffer[14], 3));
190 regmap_write(hdmi->regs, TOP_SPDIF_PKT04, mtk_hdmi_v2_format_hw_packet(&buffer[17], 4));
191 regmap_write(hdmi->regs, TOP_SPDIF_PKT05, mtk_hdmi_v2_format_hw_packet(&buffer[21], 3));
192 regmap_write(hdmi->regs, TOP_SPDIF_PKT06, mtk_hdmi_v2_format_hw_packet(&buffer[24], 4));
193 regmap_write(hdmi->regs, TOP_SPDIF_PKT07, buffer[28]);
194
195 regmap_set_bits(hdmi->regs, TOP_INFO_EN, SPD_EN_WR | SPD_EN);
196 regmap_set_bits(hdmi->regs, TOP_INFO_RPT, SPD_RPT_EN);
197 }
198
mtk_hdmi_v2_hw_write_vendor_infoframe(struct mtk_hdmi * hdmi,const u8 * buffer)199 static void mtk_hdmi_v2_hw_write_vendor_infoframe(struct mtk_hdmi *hdmi, const u8 *buffer)
200 {
201 regmap_clear_bits(hdmi->regs, TOP_INFO_EN, VSIF_EN_WR | VSIF_EN);
202 regmap_clear_bits(hdmi->regs, TOP_INFO_RPT, VSIF_RPT_EN);
203
204 regmap_write(hdmi->regs, TOP_VSIF_HEADER, mtk_hdmi_v2_format_hw_packet(&buffer[0], 3));
205 regmap_write(hdmi->regs, TOP_VSIF_PKT00, mtk_hdmi_v2_format_hw_packet(&buffer[3], 4));
206 regmap_write(hdmi->regs, TOP_VSIF_PKT01, mtk_hdmi_v2_format_hw_packet(&buffer[7], 2));
207 regmap_write(hdmi->regs, TOP_VSIF_PKT02, 0);
208 regmap_write(hdmi->regs, TOP_VSIF_PKT03, 0);
209 regmap_write(hdmi->regs, TOP_VSIF_PKT04, 0);
210 regmap_write(hdmi->regs, TOP_VSIF_PKT05, 0);
211 regmap_write(hdmi->regs, TOP_VSIF_PKT06, 0);
212 regmap_write(hdmi->regs, TOP_VSIF_PKT07, 0);
213
214 regmap_set_bits(hdmi->regs, TOP_INFO_EN, VSIF_EN_WR | VSIF_EN);
215 regmap_set_bits(hdmi->regs, TOP_INFO_RPT, VSIF_RPT_EN);
216 }
217
mtk_hdmi_yuv420_downsampling(struct mtk_hdmi * hdmi,bool enable)218 static void mtk_hdmi_yuv420_downsampling(struct mtk_hdmi *hdmi, bool enable)
219 {
220 u32 val;
221
222 regmap_read(hdmi->regs, VID_DOWNSAMPLE_CONFIG, &val);
223
224 if (enable) {
225 regmap_set_bits(hdmi->regs, hdmi->conf->reg_hdmi_tx_cfg, HDMI_YUV420_MODE);
226
227 val |= C444_C422_CONFIG_ENABLE | C422_C420_CONFIG_ENABLE;
228 val |= C422_C420_CONFIG_OUT_CB_OR_CR;
229 val &= ~C422_C420_CONFIG_BYPASS;
230 regmap_write(hdmi->regs, VID_DOWNSAMPLE_CONFIG, val);
231
232 regmap_set_bits(hdmi->regs, VID_OUT_FORMAT, OUTPUT_FORMAT_DEMUX_420_ENABLE);
233 } else {
234 regmap_clear_bits(hdmi->regs, hdmi->conf->reg_hdmi_tx_cfg, HDMI_YUV420_MODE);
235
236 val &= ~(C444_C422_CONFIG_ENABLE | C422_C420_CONFIG_ENABLE);
237 val &= ~C422_C420_CONFIG_OUT_CB_OR_CR;
238 val |= C422_C420_CONFIG_BYPASS;
239 regmap_write(hdmi->regs, VID_DOWNSAMPLE_CONFIG, val);
240
241 regmap_clear_bits(hdmi->regs, VID_OUT_FORMAT, OUTPUT_FORMAT_DEMUX_420_ENABLE);
242 }
243 }
244
mtk_hdmi_v2_setup_audio_infoframe(struct mtk_hdmi * hdmi)245 static int mtk_hdmi_v2_setup_audio_infoframe(struct mtk_hdmi *hdmi)
246 {
247 struct hdmi_codec_params *params = &hdmi->aud_param.codec_params;
248 struct hdmi_audio_infoframe frame;
249 u8 buffer[14];
250 ssize_t ret;
251
252 memcpy(&frame, ¶ms->cea, sizeof(frame));
253
254 ret = hdmi_audio_infoframe_pack(&frame, buffer, sizeof(buffer));
255 if (ret < 0)
256 return ret;
257
258 mtk_hdmi_v2_hw_write_audio_infoframe(hdmi, buffer);
259
260 return 0;
261 }
262
mtk_hdmi_v2_hw_gcp_avmute(struct mtk_hdmi * hdmi,bool mute)263 static inline void mtk_hdmi_v2_hw_gcp_avmute(struct mtk_hdmi *hdmi, bool mute)
264 {
265 u32 val;
266
267 regmap_read(hdmi->regs, TOP_CFG01, &val);
268 val &= ~(CP_CLR_MUTE_EN | CP_SET_MUTE_EN);
269
270 if (mute) {
271 val |= CP_SET_MUTE_EN;
272 val &= ~CP_CLR_MUTE_EN;
273 } else {
274 val |= CP_CLR_MUTE_EN;
275 val &= ~CP_SET_MUTE_EN;
276 }
277 regmap_write(hdmi->regs, TOP_CFG01, val);
278
279 regmap_set_bits(hdmi->regs, TOP_INFO_RPT, CP_RPT_EN);
280 regmap_set_bits(hdmi->regs, TOP_INFO_EN, CP_EN | CP_EN_WR);
281 }
282
mtk_hdmi_v2_hw_ncts_enable(struct mtk_hdmi * hdmi,bool enable)283 static void mtk_hdmi_v2_hw_ncts_enable(struct mtk_hdmi *hdmi, bool enable)
284 {
285 if (enable)
286 regmap_set_bits(hdmi->regs, AIP_CTRL, CTS_SW_SEL);
287 else
288 regmap_clear_bits(hdmi->regs, AIP_CTRL, CTS_SW_SEL);
289 }
290
mtk_hdmi_v2_hw_aud_set_channel_status(struct mtk_hdmi * hdmi)291 static void mtk_hdmi_v2_hw_aud_set_channel_status(struct mtk_hdmi *hdmi)
292 {
293 u8 *ch_status = hdmi->aud_param.codec_params.iec.status;
294
295 /* Only the first 5 to 7 bytes of Channel Status contain useful information */
296 regmap_write(hdmi->regs, AIP_I2S_CHST0, mtk_hdmi_v2_format_hw_packet(&ch_status[0], 4));
297 regmap_write(hdmi->regs, AIP_I2S_CHST1, mtk_hdmi_v2_format_hw_packet(&ch_status[4], 3));
298 }
299
mtk_hdmi_v2_hw_aud_set_ncts(struct mtk_hdmi * hdmi,unsigned int sample_rate,unsigned int clock)300 static void mtk_hdmi_v2_hw_aud_set_ncts(struct mtk_hdmi *hdmi,
301 unsigned int sample_rate,
302 unsigned int clock)
303 {
304 unsigned int n, cts;
305
306 mtk_hdmi_get_ncts(sample_rate, clock, &n, &cts);
307
308 regmap_write(hdmi->regs, AIP_N_VAL, n);
309 regmap_write(hdmi->regs, AIP_CTS_SVAL, cts);
310 }
311
mtk_hdmi_v2_hw_aud_enable(struct mtk_hdmi * hdmi,bool enable)312 static void mtk_hdmi_v2_hw_aud_enable(struct mtk_hdmi *hdmi, bool enable)
313 {
314 if (enable)
315 regmap_clear_bits(hdmi->regs, AIP_TXCTRL, AUD_PACKET_DROP);
316 else
317 regmap_set_bits(hdmi->regs, AIP_TXCTRL, AUD_PACKET_DROP);
318 }
319
mtk_hdmi_v2_aud_output_channel_map(u8 sd0,u8 sd1,u8 sd2,u8 sd3,u8 sd4,u8 sd5,u8 sd6,u8 sd7)320 static u32 mtk_hdmi_v2_aud_output_channel_map(u8 sd0, u8 sd1, u8 sd2, u8 sd3,
321 u8 sd4, u8 sd5, u8 sd6, u8 sd7)
322 {
323 u32 val;
324
325 /*
326 * Each of the Output Channels (0-7) can be mapped to get their input
327 * from any of the available Input Channels (0-7): this function
328 * takes input channel numbers and formats a value that must then
329 * be written to the TOP_AUD_MAP hardware register by the caller.
330 */
331 val = FIELD_PREP(SD0_MAP, sd0) | FIELD_PREP(SD1_MAP, sd1);
332 val |= FIELD_PREP(SD2_MAP, sd2) | FIELD_PREP(SD3_MAP, sd3);
333 val |= FIELD_PREP(SD4_MAP, sd4) | FIELD_PREP(SD5_MAP, sd5);
334 val |= FIELD_PREP(SD6_MAP, sd6) | FIELD_PREP(SD7_MAP, sd7);
335
336 return val;
337 }
338
mtk_hdmi_audio_dsd_config(struct mtk_hdmi * hdmi,unsigned char chnum,bool dsd_bypass)339 static void mtk_hdmi_audio_dsd_config(struct mtk_hdmi *hdmi,
340 unsigned char chnum, bool dsd_bypass)
341 {
342 u32 channel_map;
343
344 regmap_update_bits(hdmi->regs, AIP_CTRL, SPDIF_EN | DSD_EN | HBRA_ON, DSD_EN);
345 regmap_set_bits(hdmi->regs, AIP_TXCTRL, DSD_MUTE_EN);
346
347 if (dsd_bypass)
348 channel_map = mtk_hdmi_v2_aud_output_channel_map(0, 2, 4, 6, 1, 3, 5, 7);
349 else
350 channel_map = mtk_hdmi_v2_aud_output_channel_map(0, 5, 1, 0, 3, 2, 4, 0);
351
352 regmap_write(hdmi->regs, TOP_AUD_MAP, channel_map);
353 regmap_clear_bits(hdmi->regs, AIP_SPDIF_CTRL, I2S2DSD_EN);
354 }
355
mtk_hdmi_v2_hw_i2s_fifo_map(struct mtk_hdmi * hdmi,u32 fifo_mapping)356 static inline void mtk_hdmi_v2_hw_i2s_fifo_map(struct mtk_hdmi *hdmi, u32 fifo_mapping)
357 {
358 regmap_update_bits(hdmi->regs, AIP_I2S_CTRL,
359 FIFO0_MAP | FIFO1_MAP | FIFO2_MAP | FIFO3_MAP, fifo_mapping);
360 }
361
mtk_hdmi_v2_hw_i2s_ch_number(struct mtk_hdmi * hdmi,u8 chnum)362 static inline void mtk_hdmi_v2_hw_i2s_ch_number(struct mtk_hdmi *hdmi, u8 chnum)
363 {
364 regmap_update_bits(hdmi->regs, AIP_CTRL, I2S_EN, FIELD_PREP(I2S_EN, chnum));
365 }
366
mtk_hdmi_v2_hw_i2s_ch_mapping(struct mtk_hdmi * hdmi,u8 chnum,u8 mapping)367 static void mtk_hdmi_v2_hw_i2s_ch_mapping(struct mtk_hdmi *hdmi, u8 chnum, u8 mapping)
368 {
369 u32 fifo_map;
370 u8 bdata;
371
372 switch (chnum) {
373 default:
374 case 2:
375 bdata = 0x1;
376 break;
377 case 3:
378 bdata = 0x3;
379 break;
380 case 6:
381 if (mapping == 0x0e) {
382 bdata = 0xf;
383 break;
384 }
385 fallthrough;
386 case 5:
387 bdata = 0x7;
388 break;
389 case 7:
390 case 8:
391 bdata = 0xf;
392 break;
393 }
394
395 /* Assign default FIFO mapping: SD0 to FIFO0, SD1 to FIFO1, etc. */
396 fifo_map = FIELD_PREP(FIFO0_MAP, 0) | FIELD_PREP(FIFO1_MAP, 1);
397 fifo_map |= FIELD_PREP(FIFO2_MAP, 2) | FIELD_PREP(FIFO3_MAP, 3);
398 mtk_hdmi_v2_hw_i2s_fifo_map(hdmi, fifo_map);
399 mtk_hdmi_v2_hw_i2s_ch_number(hdmi, bdata);
400
401 /*
402 * Set HDMI Audio packet layout indicator:
403 * Layout 0 is for two channels
404 * Layout 1 is for up to eight channels
405 */
406 if (chnum == 2)
407 regmap_set_bits(hdmi->regs, AIP_TXCTRL, AUD_LAYOUT_1);
408 else
409 regmap_clear_bits(hdmi->regs, AIP_TXCTRL, AUD_LAYOUT_1);
410 }
411
mtk_hdmi_i2s_data_fmt(struct mtk_hdmi * hdmi,unsigned char fmt)412 static void mtk_hdmi_i2s_data_fmt(struct mtk_hdmi *hdmi, unsigned char fmt)
413 {
414 u32 val;
415
416 regmap_read(hdmi->regs, AIP_I2S_CTRL, &val);
417 val &= ~(WS_HIGH | I2S_1ST_BIT_NOSHIFT | JUSTIFY_RIGHT);
418
419 switch (fmt) {
420 case HDMI_I2S_MODE_RJT_24BIT:
421 case HDMI_I2S_MODE_RJT_16BIT:
422 val |= (WS_HIGH | I2S_1ST_BIT_NOSHIFT | JUSTIFY_RIGHT);
423 break;
424 case HDMI_I2S_MODE_LJT_24BIT:
425 case HDMI_I2S_MODE_LJT_16BIT:
426 val |= (WS_HIGH | I2S_1ST_BIT_NOSHIFT);
427 break;
428 case HDMI_I2S_MODE_I2S_24BIT:
429 case HDMI_I2S_MODE_I2S_16BIT:
430 default:
431 break;
432 }
433
434 regmap_write(hdmi->regs, AIP_I2S_CTRL, val);
435 }
436
mtk_hdmi_i2s_sck_edge_rise(struct mtk_hdmi * hdmi,bool rise)437 static inline void mtk_hdmi_i2s_sck_edge_rise(struct mtk_hdmi *hdmi, bool rise)
438 {
439 if (rise)
440 regmap_set_bits(hdmi->regs, AIP_I2S_CTRL, SCK_EDGE_RISE);
441 else
442 regmap_clear_bits(hdmi->regs, AIP_I2S_CTRL, SCK_EDGE_RISE);
443 }
444
mtk_hdmi_i2s_cbit_order(struct mtk_hdmi * hdmi,unsigned int cbit)445 static inline void mtk_hdmi_i2s_cbit_order(struct mtk_hdmi *hdmi, unsigned int cbit)
446 {
447 regmap_update_bits(hdmi->regs, AIP_I2S_CTRL, CBIT_ORDER_SAME, cbit);
448 }
449
mtk_hdmi_i2s_vbit(struct mtk_hdmi * hdmi,unsigned int vbit)450 static inline void mtk_hdmi_i2s_vbit(struct mtk_hdmi *hdmi, unsigned int vbit)
451 {
452 /* V bit: 0 for PCM, 1 for Compressed data */
453 regmap_update_bits(hdmi->regs, AIP_I2S_CTRL, VBIT_COMPRESSED, vbit);
454 }
455
mtk_hdmi_i2s_data_direction(struct mtk_hdmi * hdmi,unsigned int is_lsb)456 static inline void mtk_hdmi_i2s_data_direction(struct mtk_hdmi *hdmi, unsigned int is_lsb)
457 {
458 regmap_update_bits(hdmi->regs, AIP_I2S_CTRL, I2S_DATA_DIR_LSB, is_lsb);
459 }
460
mtk_hdmi_v2_hw_audio_type(struct mtk_hdmi * hdmi,unsigned int spdif_i2s)461 static inline void mtk_hdmi_v2_hw_audio_type(struct mtk_hdmi *hdmi, unsigned int spdif_i2s)
462 {
463 regmap_update_bits(hdmi->regs, AIP_CTRL, SPDIF_EN, FIELD_PREP(SPDIF_EN, spdif_i2s));
464 }
465
mtk_hdmi_v2_get_i2s_ch_mapping(struct mtk_hdmi * hdmi,u8 channel_type)466 static u8 mtk_hdmi_v2_get_i2s_ch_mapping(struct mtk_hdmi *hdmi, u8 channel_type)
467 {
468 switch (channel_type) {
469 case HDMI_AUD_CHAN_TYPE_1_1:
470 case HDMI_AUD_CHAN_TYPE_2_1:
471 return 0x01;
472 case HDMI_AUD_CHAN_TYPE_3_0:
473 return 0x02;
474 case HDMI_AUD_CHAN_TYPE_3_1:
475 return 0x03;
476 case HDMI_AUD_CHAN_TYPE_3_0_LRS:
477 case HDMI_AUD_CHAN_TYPE_4_0:
478 return 0x08;
479 case HDMI_AUD_CHAN_TYPE_5_1:
480 return 0x0b;
481 case HDMI_AUD_CHAN_TYPE_4_1_CLRS:
482 case HDMI_AUD_CHAN_TYPE_6_0:
483 case HDMI_AUD_CHAN_TYPE_6_0_CS:
484 case HDMI_AUD_CHAN_TYPE_6_0_CH:
485 case HDMI_AUD_CHAN_TYPE_6_0_OH:
486 case HDMI_AUD_CHAN_TYPE_6_0_CHR:
487 return 0x0e;
488 case HDMI_AUD_CHAN_TYPE_1_0:
489 case HDMI_AUD_CHAN_TYPE_2_0:
490 case HDMI_AUD_CHAN_TYPE_3_1_LRS:
491 case HDMI_AUD_CHAN_TYPE_4_1:
492 case HDMI_AUD_CHAN_TYPE_5_0:
493 case HDMI_AUD_CHAN_TYPE_4_0_CLRS:
494 case HDMI_AUD_CHAN_TYPE_6_1:
495 case HDMI_AUD_CHAN_TYPE_6_1_CS:
496 case HDMI_AUD_CHAN_TYPE_6_1_CH:
497 case HDMI_AUD_CHAN_TYPE_6_1_OH:
498 case HDMI_AUD_CHAN_TYPE_6_1_CHR:
499 case HDMI_AUD_CHAN_TYPE_7_0:
500 case HDMI_AUD_CHAN_TYPE_7_0_LH_RH:
501 case HDMI_AUD_CHAN_TYPE_7_0_LSR_RSR:
502 case HDMI_AUD_CHAN_TYPE_7_0_LC_RC:
503 case HDMI_AUD_CHAN_TYPE_7_0_LW_RW:
504 case HDMI_AUD_CHAN_TYPE_7_0_LSD_RSD:
505 case HDMI_AUD_CHAN_TYPE_7_0_LSS_RSS:
506 case HDMI_AUD_CHAN_TYPE_7_0_LHS_RHS:
507 case HDMI_AUD_CHAN_TYPE_7_0_CS_CH:
508 case HDMI_AUD_CHAN_TYPE_7_0_CS_OH:
509 case HDMI_AUD_CHAN_TYPE_7_0_CS_CHR:
510 case HDMI_AUD_CHAN_TYPE_7_0_CH_OH:
511 case HDMI_AUD_CHAN_TYPE_7_0_CH_CHR:
512 case HDMI_AUD_CHAN_TYPE_7_0_OH_CHR:
513 case HDMI_AUD_CHAN_TYPE_7_0_LSS_RSS_LSR_RSR:
514 case HDMI_AUD_CHAN_TYPE_8_0_LH_RH_CS:
515 case HDMI_AUD_CHAN_TYPE_7_1:
516 case HDMI_AUD_CHAN_TYPE_7_1_LH_RH:
517 case HDMI_AUD_CHAN_TYPE_7_1_LSR_RSR:
518 case HDMI_AUD_CHAN_TYPE_7_1_LC_RC:
519 case HDMI_AUD_CHAN_TYPE_7_1_LW_RW:
520 case HDMI_AUD_CHAN_TYPE_7_1_LSD_RSD:
521 case HDMI_AUD_CHAN_TYPE_7_1_LSS_RSS:
522 case HDMI_AUD_CHAN_TYPE_7_1_LHS_RHS:
523 case HDMI_AUD_CHAN_TYPE_7_1_CS_CH:
524 case HDMI_AUD_CHAN_TYPE_7_1_CS_OH:
525 case HDMI_AUD_CHAN_TYPE_7_1_CS_CHR:
526 case HDMI_AUD_CHAN_TYPE_7_1_CH_OH:
527 case HDMI_AUD_CHAN_TYPE_7_1_CH_CHR:
528 case HDMI_AUD_CHAN_TYPE_7_1_OH_CHR:
529 case HDMI_AUD_CHAN_TYPE_7_1_LSS_RSS_LSR_RSR:
530 default:
531 return 0;
532 }
533
534 return 0;
535 }
536
mtk_hdmi_v2_hw_i2s_ch_swap(struct mtk_hdmi * hdmi)537 static inline void mtk_hdmi_v2_hw_i2s_ch_swap(struct mtk_hdmi *hdmi)
538 {
539 regmap_update_bits(hdmi->regs, AIP_SPDIF_CTRL, MAX_2UI_I2S_HI_WRITE,
540 FIELD_PREP(MAX_2UI_I2S_HI_WRITE, MAX_2UI_I2S_LFE_CC_SWAP));
541 }
542
mtk_hdmi_hbr_config(struct mtk_hdmi * hdmi,bool dsd_bypass)543 static void mtk_hdmi_hbr_config(struct mtk_hdmi *hdmi, bool dsd_bypass)
544 {
545 const u32 hbr_mask = SPDIF_EN | DSD_EN | HBRA_ON;
546
547 if (dsd_bypass) {
548 regmap_update_bits(hdmi->regs, AIP_CTRL, hbr_mask, HBRA_ON);
549 regmap_set_bits(hdmi->regs, AIP_CTRL, I2S_EN);
550 } else {
551 regmap_update_bits(hdmi->regs, AIP_CTRL, hbr_mask, SPDIF_EN);
552 regmap_set_bits(hdmi->regs, AIP_CTRL, SPDIF_INTERNAL_MODULE);
553 regmap_set_bits(hdmi->regs, AIP_CTRL, HBR_FROM_SPDIF);
554 regmap_set_bits(hdmi->regs, AIP_CTRL, CTS_CAL_N4);
555 }
556 }
557
mtk_hdmi_v2_hw_spdif_config(struct mtk_hdmi * hdmi)558 static inline void mtk_hdmi_v2_hw_spdif_config(struct mtk_hdmi *hdmi)
559 {
560 regmap_clear_bits(hdmi->regs, AIP_SPDIF_CTRL, WR_1UI_LOCK);
561 regmap_clear_bits(hdmi->regs, AIP_SPDIF_CTRL, FS_OVERRIDE_WRITE);
562 regmap_clear_bits(hdmi->regs, AIP_SPDIF_CTRL, WR_2UI_LOCK);
563
564 regmap_update_bits(hdmi->regs, AIP_SPDIF_CTRL, MAX_1UI_WRITE,
565 FIELD_PREP(MAX_1UI_WRITE, 4));
566 regmap_update_bits(hdmi->regs, AIP_SPDIF_CTRL, MAX_2UI_SPDIF_WRITE,
567 FIELD_PREP(MAX_2UI_SPDIF_WRITE, 9));
568 regmap_update_bits(hdmi->regs, AIP_SPDIF_CTRL, AUD_ERR_THRESH,
569 FIELD_PREP(AUD_ERR_THRESH, 4));
570
571 regmap_set_bits(hdmi->regs, AIP_SPDIF_CTRL, I2S2DSD_EN);
572 }
573
mtk_hdmi_v2_aud_set_input(struct mtk_hdmi * hdmi)574 static void mtk_hdmi_v2_aud_set_input(struct mtk_hdmi *hdmi)
575 {
576 struct hdmi_audio_param *aud_param = &hdmi->aud_param;
577 struct hdmi_codec_params *codec_params = &aud_param->codec_params;
578 u8 i2s_ch_map;
579 u32 out_ch_map;
580
581 /* Write the default output channel map. CH0 maps to SD0, CH1 maps to SD1, etc */
582 out_ch_map = mtk_hdmi_v2_aud_output_channel_map(0, 1, 2, 3, 4, 5, 6, 7);
583 regmap_write(hdmi->regs, TOP_AUD_MAP, out_ch_map);
584
585 regmap_update_bits(hdmi->regs, AIP_SPDIF_CTRL, MAX_2UI_I2S_HI_WRITE, 0);
586 regmap_clear_bits(hdmi->regs, AIP_CTRL,
587 SPDIF_EN | DSD_EN | HBRA_ON | CTS_CAL_N4 |
588 HBR_FROM_SPDIF | SPDIF_INTERNAL_MODULE);
589 regmap_clear_bits(hdmi->regs, AIP_TXCTRL, DSD_MUTE_EN | AUD_LAYOUT_1);
590
591 if (aud_param->aud_input_type == HDMI_AUD_INPUT_I2S) {
592 switch (aud_param->aud_codec) {
593 case HDMI_AUDIO_CODING_TYPE_DTS_HD:
594 case HDMI_AUDIO_CODING_TYPE_MLP:
595 mtk_hdmi_i2s_data_fmt(hdmi, aud_param->aud_i2s_fmt);
596 mtk_hdmi_hbr_config(hdmi, true);
597 break;
598 case HDMI_AUDIO_CODING_TYPE_DSD:
599 mtk_hdmi_audio_dsd_config(hdmi, codec_params->channels, 0);
600 mtk_hdmi_v2_hw_i2s_ch_mapping(hdmi, codec_params->channels, 1);
601 break;
602 default:
603 mtk_hdmi_i2s_data_fmt(hdmi, aud_param->aud_i2s_fmt);
604 mtk_hdmi_i2s_sck_edge_rise(hdmi, true);
605 mtk_hdmi_i2s_cbit_order(hdmi, CBIT_ORDER_SAME);
606 mtk_hdmi_i2s_vbit(hdmi, 0); /* PCM data */
607 mtk_hdmi_i2s_data_direction(hdmi, 0); /* MSB first */
608 mtk_hdmi_v2_hw_audio_type(hdmi, HDMI_AUD_INPUT_I2S);
609 i2s_ch_map = mtk_hdmi_v2_get_i2s_ch_mapping(hdmi,
610 aud_param->aud_input_chan_type);
611 mtk_hdmi_v2_hw_i2s_ch_mapping(hdmi, codec_params->channels, i2s_ch_map);
612 mtk_hdmi_v2_hw_i2s_ch_swap(hdmi);
613 }
614 } else {
615 if (codec_params->sample_rate == 768000 &&
616 (aud_param->aud_codec == HDMI_AUDIO_CODING_TYPE_DTS_HD ||
617 aud_param->aud_codec == HDMI_AUDIO_CODING_TYPE_MLP)) {
618 mtk_hdmi_hbr_config(hdmi, false);
619 } else {
620 mtk_hdmi_v2_hw_spdif_config(hdmi);
621 mtk_hdmi_v2_hw_i2s_ch_mapping(hdmi, 2, 0);
622 }
623 }
624 }
625
mtk_hdmi_v2_hw_audio_input_enable(struct mtk_hdmi * hdmi,bool ena)626 static inline void mtk_hdmi_v2_hw_audio_input_enable(struct mtk_hdmi *hdmi, bool ena)
627 {
628 if (ena)
629 regmap_set_bits(hdmi->regs, AIP_CTRL, AUD_IN_EN);
630 else
631 regmap_clear_bits(hdmi->regs, AIP_CTRL, AUD_IN_EN);
632 }
633
mtk_hdmi_v2_aip_ctrl_init(struct mtk_hdmi * hdmi)634 static void mtk_hdmi_v2_aip_ctrl_init(struct mtk_hdmi *hdmi)
635 {
636 regmap_set_bits(hdmi->regs, AIP_CTRL,
637 AUD_SEL_OWRT | NO_MCLK_CTSGEN_SEL | MCLK_EN | CTS_REQ_EN);
638 regmap_clear_bits(hdmi->regs, AIP_TPI_CTRL, TPI_AUDIO_LOOKUP_EN);
639 }
640
mtk_hdmi_v2_audio_reset(struct mtk_hdmi * hdmi,bool reset)641 static void mtk_hdmi_v2_audio_reset(struct mtk_hdmi *hdmi, bool reset)
642 {
643 const u32 arst_bits = RST4AUDIO | RST4AUDIO_FIFO | RST4AUDIO_ACR;
644
645 if (reset)
646 regmap_set_bits(hdmi->regs, AIP_TXCTRL, arst_bits);
647 else
648 regmap_clear_bits(hdmi->regs, AIP_TXCTRL, arst_bits);
649 }
650
mtk_hdmi_v2_aud_output_config(struct mtk_hdmi * hdmi,struct drm_display_mode * display_mode)651 static void mtk_hdmi_v2_aud_output_config(struct mtk_hdmi *hdmi,
652 struct drm_display_mode *display_mode)
653 {
654 /* Shut down and reset the HDMI Audio HW to avoid glitching */
655 mtk_hdmi_v2_hw_aud_mute(hdmi, true);
656 mtk_hdmi_v2_hw_aud_enable(hdmi, false);
657 mtk_hdmi_v2_audio_reset(hdmi, true);
658
659 /* Configure the main hardware params and get out of reset */
660 mtk_hdmi_v2_aip_ctrl_init(hdmi);
661 mtk_hdmi_v2_aud_set_input(hdmi);
662 mtk_hdmi_v2_hw_aud_set_channel_status(hdmi);
663 mtk_hdmi_v2_setup_audio_infoframe(hdmi);
664 mtk_hdmi_v2_hw_audio_input_enable(hdmi, true);
665 mtk_hdmi_v2_audio_reset(hdmi, false);
666
667 /* Ignore N/CTS packet transmission requests and configure */
668 mtk_hdmi_v2_hw_ncts_enable(hdmi, false);
669 mtk_hdmi_v2_hw_aud_set_ncts(hdmi, hdmi->aud_param.codec_params.sample_rate,
670 display_mode->clock);
671
672 /* Wait for the HW to apply settings */
673 usleep_range(25, 50);
674
675 /* Hardware is fully configured: enable TX of N/CTS pkts and unmute */
676 mtk_hdmi_v2_hw_ncts_enable(hdmi, true);
677 mtk_hdmi_v2_hw_aud_enable(hdmi, true);
678 mtk_hdmi_v2_hw_aud_mute(hdmi, false);
679 }
680
mtk_hdmi_v2_change_video_resolution(struct mtk_hdmi * hdmi,struct drm_connector_state * conn_state)681 static void mtk_hdmi_v2_change_video_resolution(struct mtk_hdmi *hdmi,
682 struct drm_connector_state *conn_state)
683 {
684 mtk_hdmi_v2_hw_reset(hdmi);
685 mtk_hdmi_v2_set_sw_hpd(hdmi, true);
686 udelay(2);
687
688 regmap_write(hdmi->regs, HDCP_TOP_CTRL, 0);
689
690 /*
691 * Enable HDCP reauthentication interrupt: the HW uses this internally
692 * for the HPD state machine even if HDCP encryption is not enabled.
693 */
694 regmap_set_bits(hdmi->regs, TOP_INT_ENABLE00, HDCP2X_RX_REAUTH_REQ_DDCM_INT);
695
696 /* Enable hotplug and pord interrupts */
697 mtk_hdmi_v2_enable_hpd_pord_irq(hdmi, true);
698
699 /* Force enabling HDCP HPD */
700 regmap_set_bits(hdmi->regs, HDCP2X_CTRL_0, HDCP2X_HPD_OVR);
701 regmap_set_bits(hdmi->regs, HDCP2X_CTRL_0, HDCP2X_HPD_SW);
702
703 /* Set 8 bits per pixel */
704 regmap_update_bits(hdmi->regs, TOP_CFG00, TMDS_PACK_MODE,
705 FIELD_PREP(TMDS_PACK_MODE, TMDS_PACK_MODE_8BPP));
706 /* Disable generating deepcolor packets */
707 regmap_clear_bits(hdmi->regs, TOP_CFG00, DEEPCOLOR_PKT_EN);
708 /* Disable adding deepcolor information to the general packet */
709 regmap_clear_bits(hdmi->regs, TOP_MISC_CTLR, DEEP_COLOR_ADD);
710
711 if (hdmi->curr_conn->display_info.is_hdmi)
712 regmap_set_bits(hdmi->regs, TOP_CFG00, HDMI_MODE_HDMI);
713 else
714 regmap_clear_bits(hdmi->regs, TOP_CFG00, HDMI_MODE_HDMI);
715
716 udelay(5);
717 mtk_hdmi_v2_hw_vid_mute(hdmi, true);
718 mtk_hdmi_v2_hw_aud_mute(hdmi, true);
719 mtk_hdmi_v2_hw_gcp_avmute(hdmi, false);
720
721 regmap_update_bits(hdmi->regs, TOP_CFG01,
722 NULL_PKT_VSYNC_HIGH_EN | NULL_PKT_EN, NULL_PKT_VSYNC_HIGH_EN);
723 usleep_range(100, 150);
724
725 /* Enable scrambling if tmds clock is 340MHz or more */
726 mtk_hdmi_v2_enable_scrambling(hdmi, hdmi->mode.clock >= 340 * KILO);
727
728 switch (conn_state->hdmi.output_format) {
729 default:
730 case HDMI_COLORSPACE_RGB:
731 case HDMI_COLORSPACE_YUV444:
732 /* Disable YUV420 downsampling for RGB and YUV444 */
733 mtk_hdmi_yuv420_downsampling(hdmi, false);
734 break;
735 case HDMI_COLORSPACE_YUV422:
736 /*
737 * YUV420 downsampling is special and needs a bit of setup
738 * so we disable everything there before doing anything else.
739 *
740 * YUV422 downsampling instead just needs one bit to be set.
741 */
742 mtk_hdmi_yuv420_downsampling(hdmi, false);
743 regmap_set_bits(hdmi->regs, VID_DOWNSAMPLE_CONFIG,
744 C444_C422_CONFIG_ENABLE);
745 break;
746 case HDMI_COLORSPACE_YUV420:
747 mtk_hdmi_yuv420_downsampling(hdmi, true);
748 break;
749 };
750 }
751
mtk_hdmi_v2_output_set_display_mode(struct mtk_hdmi * hdmi,struct drm_connector_state * conn_state,struct drm_display_mode * mode)752 static void mtk_hdmi_v2_output_set_display_mode(struct mtk_hdmi *hdmi,
753 struct drm_connector_state *conn_state,
754 struct drm_display_mode *mode)
755 {
756 union phy_configure_opts opts = {
757 .dp = { .link_rate = hdmi->mode.clock * KILO }
758 };
759 int ret;
760
761 ret = phy_configure(hdmi->phy, &opts);
762 if (ret)
763 dev_err(hdmi->dev, "Setting clock=%d failed: %d", mode->clock, ret);
764
765 mtk_hdmi_v2_change_video_resolution(hdmi, conn_state);
766 mtk_hdmi_v2_aud_output_config(hdmi, mode);
767 }
768
mtk_hdmi_v2_clk_enable(struct mtk_hdmi * hdmi)769 static int mtk_hdmi_v2_clk_enable(struct mtk_hdmi *hdmi)
770 {
771 int ret;
772
773 ret = clk_prepare_enable(hdmi->clk[MTK_HDMI_V2_CLK_HDCP_SEL]);
774 if (ret)
775 return ret;
776
777 ret = clk_prepare_enable(hdmi->clk[MTK_HDMI_V2_CLK_HDCP_24M_SEL]);
778 if (ret)
779 goto disable_hdcp_clk;
780
781 ret = clk_prepare_enable(hdmi->clk[MTK_HDMI_V2_CLK_HDMI_APB_SEL]);
782 if (ret)
783 goto disable_hdcp_24m_clk;
784
785 ret = clk_prepare_enable(hdmi->clk[MTK_HDMI_V2_CLK_VPP_SPLIT_HDMI]);
786 if (ret)
787 goto disable_bus_clk;
788
789 return 0;
790
791 disable_bus_clk:
792 clk_disable_unprepare(hdmi->clk[MTK_HDMI_V2_CLK_HDMI_APB_SEL]);
793 disable_hdcp_24m_clk:
794 clk_disable_unprepare(hdmi->clk[MTK_HDMI_V2_CLK_HDCP_24M_SEL]);
795 disable_hdcp_clk:
796 clk_disable_unprepare(hdmi->clk[MTK_HDMI_V2_CLK_HDCP_SEL]);
797
798 return ret;
799 }
800
mtk_hdmi_v2_clk_disable(struct mtk_hdmi * hdmi)801 static void mtk_hdmi_v2_clk_disable(struct mtk_hdmi *hdmi)
802 {
803 clk_disable_unprepare(hdmi->clk[MTK_HDMI_V2_CLK_VPP_SPLIT_HDMI]);
804 clk_disable_unprepare(hdmi->clk[MTK_HDMI_V2_CLK_HDMI_APB_SEL]);
805 clk_disable_unprepare(hdmi->clk[MTK_HDMI_V2_CLK_HDCP_24M_SEL]);
806 clk_disable_unprepare(hdmi->clk[MTK_HDMI_V2_CLK_HDCP_SEL]);
807 }
808
mtk_hdmi_v2_hpd_pord_status(struct mtk_hdmi * hdmi)809 static enum hdmi_hpd_state mtk_hdmi_v2_hpd_pord_status(struct mtk_hdmi *hdmi)
810 {
811 u8 hpd_pin_sta, pord_pin_sta;
812 u32 hpd_status;
813
814 regmap_read(hdmi->regs, HPD_DDC_STATUS, &hpd_status);
815 hpd_pin_sta = FIELD_GET(HPD_PIN_STA, hpd_status);
816 pord_pin_sta = FIELD_GET(PORD_PIN_STA, hpd_status);
817
818 /*
819 * Inform that the cable is plugged in (hpd_pin_sta) so that the
820 * sink can be powered on by switching the 5V VBUS as required by
821 * the HDMI spec for reading EDID and for HDMI Audio registers to
822 * be accessible.
823 *
824 * PORD detection succeeds only when the cable is plugged in and
825 * the sink is powered on: reaching that state means that the
826 * communication with the sink can be started.
827 *
828 * Please note that when the cable is plugged out the HPD pin will
829 * be the first one to fall, while PORD may still be in rise state
830 * for a few more milliseconds, so we decide HDMI_PLUG_OUT without
831 * checking PORD at all (we check only HPD falling for that).
832 */
833 if (hpd_pin_sta && pord_pin_sta)
834 return HDMI_PLUG_IN_AND_SINK_POWER_ON;
835 else if (hpd_pin_sta)
836 return HDMI_PLUG_IN_ONLY;
837 else
838 return HDMI_PLUG_OUT;
839 }
840
mtk_hdmi_v2_isr(int irq,void * arg)841 static irqreturn_t mtk_hdmi_v2_isr(int irq, void *arg)
842 {
843 struct mtk_hdmi *hdmi = arg;
844 unsigned int irq_sta;
845 int ret = IRQ_HANDLED;
846
847 regmap_read(hdmi->regs, TOP_INT_STA00, &irq_sta);
848
849 /* Handle Hotplug Detection interrupts */
850 if (irq_sta & HPD_PORD_HWIRQS) {
851 /*
852 * Disable the HPD/PORD IRQs now and until thread done to
853 * avoid interrupt storm that could happen with bad cables
854 */
855 mtk_hdmi_v2_enable_hpd_pord_irq(hdmi, false);
856 ret = IRQ_WAKE_THREAD;
857
858 /* Clear HPD/PORD irqs to avoid unwanted retriggering */
859 regmap_write(hdmi->regs, TOP_INT_CLR00, HPD_PORD_HWIRQS);
860 regmap_write(hdmi->regs, TOP_INT_CLR00, 0);
861 }
862
863 return ret;
864 }
865
__mtk_hdmi_v2_isr_thread(struct mtk_hdmi * hdmi)866 static irqreturn_t __mtk_hdmi_v2_isr_thread(struct mtk_hdmi *hdmi)
867 {
868 enum hdmi_hpd_state hpd;
869
870 hpd = mtk_hdmi_v2_hpd_pord_status(hdmi);
871 if (hpd != hdmi->hpd) {
872 struct drm_encoder *encoder = hdmi->bridge.encoder;
873
874 hdmi->hpd = hpd;
875
876 if (encoder && encoder->dev)
877 drm_helper_hpd_irq_event(hdmi->bridge.encoder->dev);
878 }
879
880 mtk_hdmi_v2_enable_hpd_pord_irq(hdmi, true);
881 return IRQ_HANDLED;
882 }
883
mtk_hdmi_v2_isr_thread(int irq,void * arg)884 static irqreturn_t mtk_hdmi_v2_isr_thread(int irq, void *arg)
885 {
886 struct mtk_hdmi *hdmi = arg;
887
888 /*
889 * Debounce HDMI monitor HPD status.
890 * Empirical testing shows that 30ms is enough wait
891 */
892 msleep(30);
893
894 return __mtk_hdmi_v2_isr_thread(hdmi);
895 }
896
mtk_hdmi_v2_enable(struct mtk_hdmi * hdmi)897 static int mtk_hdmi_v2_enable(struct mtk_hdmi *hdmi)
898 {
899 bool was_active = pm_runtime_active(hdmi->dev);
900 int ret;
901
902 ret = pm_runtime_resume_and_get(hdmi->dev);
903 if (ret) {
904 dev_err(hdmi->dev, "Cannot resume HDMI\n");
905 return ret;
906 }
907
908 ret = mtk_hdmi_v2_clk_enable(hdmi);
909 if (ret) {
910 pm_runtime_put(hdmi->dev);
911 return ret;
912 }
913
914 if (!was_active) {
915 mtk_hdmi_v2_hw_reset(hdmi);
916 mtk_hdmi_v2_set_sw_hpd(hdmi, true);
917 }
918
919 return 0;
920 }
921
mtk_hdmi_v2_disable(struct mtk_hdmi * hdmi)922 static void mtk_hdmi_v2_disable(struct mtk_hdmi *hdmi)
923 {
924 mtk_hdmi_v2_clk_disable(hdmi);
925 pm_runtime_put_sync(hdmi->dev);
926 }
927
928 /*
929 * Bridge callbacks
930 */
931
mtk_hdmi_v2_bridge_attach(struct drm_bridge * bridge,struct drm_encoder * encoder,enum drm_bridge_attach_flags flags)932 static int mtk_hdmi_v2_bridge_attach(struct drm_bridge *bridge,
933 struct drm_encoder *encoder,
934 enum drm_bridge_attach_flags flags)
935 {
936 struct mtk_hdmi *hdmi = hdmi_ctx_from_bridge(bridge);
937 int ret;
938
939 if (!(flags & DRM_BRIDGE_ATTACH_NO_CONNECTOR)) {
940 DRM_ERROR("The flag DRM_BRIDGE_ATTACH_NO_CONNECTOR must be supplied\n");
941 return -EINVAL;
942 }
943 if (hdmi->next_bridge) {
944 ret = drm_bridge_attach(encoder, hdmi->next_bridge, bridge, flags);
945 if (ret)
946 return ret;
947 }
948
949 ret = mtk_hdmi_v2_enable(hdmi);
950 if (ret)
951 return ret;
952
953 /* Enable Hotplug and Pord pins internal debouncing */
954 regmap_set_bits(hdmi->regs, HPD_DDC_CTRL,
955 HPD_DDC_HPD_DBNC_EN | HPD_DDC_PORD_DBNC_EN);
956
957 irq_clear_status_flags(hdmi->irq, IRQ_NOAUTOEN);
958 enable_irq(hdmi->irq);
959
960 /*
961 * Check if any HDMI monitor was connected before probing this driver
962 * and/or attaching the bridge, without debouncing: if so, we want to
963 * notify the DRM so that we start outputting an image ASAP.
964 * Note that calling the ISR thread function will also perform a HW
965 * registers write that enables both the HPD and Pord interrupts.
966 */
967 __mtk_hdmi_v2_isr_thread(hdmi);
968
969 mtk_hdmi_v2_disable(hdmi);
970
971 return 0;
972 }
973
mtk_hdmi_v2_bridge_detach(struct drm_bridge * bridge)974 static void mtk_hdmi_v2_bridge_detach(struct drm_bridge *bridge)
975 {
976 struct mtk_hdmi *hdmi = hdmi_ctx_from_bridge(bridge);
977
978 WARN_ON(pm_runtime_active(hdmi->dev));
979
980 /* The controller is already powered off, just disable irq here */
981 disable_irq(hdmi->irq);
982 }
983
mtk_hdmi_v2_handle_plugged_change(struct mtk_hdmi * hdmi,bool plugged)984 static void mtk_hdmi_v2_handle_plugged_change(struct mtk_hdmi *hdmi, bool plugged)
985 {
986 mutex_lock(&hdmi->update_plugged_status_lock);
987 if (hdmi->plugged_cb && hdmi->codec_dev)
988 hdmi->plugged_cb(hdmi->codec_dev, plugged);
989 mutex_unlock(&hdmi->update_plugged_status_lock);
990 }
991
mtk_hdmi_v2_bridge_pre_enable(struct drm_bridge * bridge,struct drm_atomic_state * state)992 static void mtk_hdmi_v2_bridge_pre_enable(struct drm_bridge *bridge,
993 struct drm_atomic_state *state)
994 {
995 struct mtk_hdmi *hdmi = hdmi_ctx_from_bridge(bridge);
996 struct drm_connector_state *conn_state;
997 union phy_configure_opts opts = {
998 .dp = { .link_rate = hdmi->mode.clock * KILO }
999 };
1000 int ret;
1001
1002 /* Power on the controller before trying to write to registers */
1003 ret = mtk_hdmi_v2_enable(hdmi);
1004 if (WARN_ON(ret))
1005 return;
1006
1007 /* Retrieve the connector through the atomic state */
1008 hdmi->curr_conn = drm_atomic_get_new_connector_for_encoder(state, bridge->encoder);
1009
1010 conn_state = drm_atomic_get_new_connector_state(state, hdmi->curr_conn);
1011 if (WARN_ON(!conn_state))
1012 return;
1013
1014 /*
1015 * Preconfigure the HDMI controller and the HDMI PHY at pre_enable
1016 * stage to make sure that this IP is ready and clocked before the
1017 * mtk_dpi gets powered on and before it enables the output.
1018 */
1019 mtk_hdmi_v2_output_set_display_mode(hdmi, conn_state, &hdmi->mode);
1020
1021 /* Reconfigure phy clock link with appropriate rate */
1022 phy_configure(hdmi->phy, &opts);
1023
1024 /* Power on the PHY here to make sure that DPI_HDMI is clocked */
1025 phy_power_on(hdmi->phy);
1026
1027 hdmi->powered = true;
1028 }
1029
mtk_hdmi_v2_bridge_enable(struct drm_bridge * bridge,struct drm_atomic_state * state)1030 static void mtk_hdmi_v2_bridge_enable(struct drm_bridge *bridge,
1031 struct drm_atomic_state *state)
1032 {
1033 struct mtk_hdmi *hdmi = hdmi_ctx_from_bridge(bridge);
1034 int ret;
1035
1036 if (WARN_ON(!hdmi->powered))
1037 return;
1038
1039 ret = drm_atomic_helper_connector_hdmi_update_infoframes(hdmi->curr_conn, state);
1040 if (ret)
1041 dev_err(hdmi->dev, "Could not update infoframes: %d\n", ret);
1042
1043 mtk_hdmi_v2_hw_vid_mute(hdmi, false);
1044
1045 /* signal the connect event to audio codec */
1046 mtk_hdmi_v2_handle_plugged_change(hdmi, true);
1047
1048 hdmi->enabled = true;
1049 }
1050
mtk_hdmi_v2_bridge_disable(struct drm_bridge * bridge,struct drm_atomic_state * state)1051 static void mtk_hdmi_v2_bridge_disable(struct drm_bridge *bridge,
1052 struct drm_atomic_state *state)
1053 {
1054 struct mtk_hdmi *hdmi = hdmi_ctx_from_bridge(bridge);
1055
1056 if (!hdmi->enabled)
1057 return;
1058
1059 mtk_hdmi_v2_hw_gcp_avmute(hdmi, true);
1060 msleep(50);
1061 mtk_hdmi_v2_hw_vid_mute(hdmi, true);
1062 mtk_hdmi_v2_hw_aud_mute(hdmi, true);
1063 msleep(50);
1064
1065 hdmi->enabled = false;
1066 }
1067
mtk_hdmi_v2_bridge_post_disable(struct drm_bridge * bridge,struct drm_atomic_state * state)1068 static void mtk_hdmi_v2_bridge_post_disable(struct drm_bridge *bridge,
1069 struct drm_atomic_state *state)
1070 {
1071 struct mtk_hdmi *hdmi = hdmi_ctx_from_bridge(bridge);
1072
1073 if (!hdmi->powered)
1074 return;
1075
1076 phy_power_off(hdmi->phy);
1077 hdmi->powered = false;
1078
1079 /* signal the disconnect event to audio codec */
1080 mtk_hdmi_v2_handle_plugged_change(hdmi, false);
1081
1082 /* Power off */
1083 mtk_hdmi_v2_disable(hdmi);
1084 }
1085
mtk_hdmi_v2_bridge_detect(struct drm_bridge * bridge,struct drm_connector * connector)1086 static enum drm_connector_status mtk_hdmi_v2_bridge_detect(struct drm_bridge *bridge,
1087 struct drm_connector *connector)
1088 {
1089 struct mtk_hdmi *hdmi = hdmi_ctx_from_bridge(bridge);
1090
1091 return hdmi->hpd != HDMI_PLUG_OUT ?
1092 connector_status_connected : connector_status_disconnected;
1093 }
1094
mtk_hdmi_v2_bridge_edid_read(struct drm_bridge * bridge,struct drm_connector * connector)1095 static const struct drm_edid *mtk_hdmi_v2_bridge_edid_read(struct drm_bridge *bridge,
1096 struct drm_connector *connector)
1097 {
1098 return drm_edid_read(connector);
1099 }
1100
mtk_hdmi_v2_hpd_enable(struct drm_bridge * bridge)1101 static void mtk_hdmi_v2_hpd_enable(struct drm_bridge *bridge)
1102 {
1103 struct mtk_hdmi *hdmi = hdmi_ctx_from_bridge(bridge);
1104 int ret;
1105
1106 ret = mtk_hdmi_v2_enable(hdmi);
1107 if (ret) {
1108 dev_err(hdmi->dev, "Cannot power on controller for HPD: %d\n", ret);
1109 return;
1110 }
1111
1112 mtk_hdmi_v2_enable_hpd_pord_irq(hdmi, true);
1113 }
1114
mtk_hdmi_v2_hpd_disable(struct drm_bridge * bridge)1115 static void mtk_hdmi_v2_hpd_disable(struct drm_bridge *bridge)
1116 {
1117 struct mtk_hdmi *hdmi = hdmi_ctx_from_bridge(bridge);
1118
1119 mtk_hdmi_v2_enable_hpd_pord_irq(hdmi, false);
1120 mtk_hdmi_v2_disable(hdmi);
1121 }
1122
mtk_hdmi_v2_hdmi_tmds_char_rate_valid(const struct drm_bridge * bridge,const struct drm_display_mode * mode,unsigned long long tmds_rate)1123 static int mtk_hdmi_v2_hdmi_tmds_char_rate_valid(const struct drm_bridge *bridge,
1124 const struct drm_display_mode *mode,
1125 unsigned long long tmds_rate)
1126 {
1127 if (mode->clock < MTK_HDMI_V2_CLOCK_MIN)
1128 return MODE_CLOCK_LOW;
1129 else if (mode->clock > MTK_HDMI_V2_CLOCK_MAX)
1130 return MODE_CLOCK_HIGH;
1131 else
1132 return MODE_OK;
1133 }
1134
mtk_hdmi_v2_hdmi_clear_infoframe(struct drm_bridge * bridge,enum hdmi_infoframe_type type)1135 static int mtk_hdmi_v2_hdmi_clear_infoframe(struct drm_bridge *bridge,
1136 enum hdmi_infoframe_type type)
1137 {
1138 struct mtk_hdmi *hdmi = hdmi_ctx_from_bridge(bridge);
1139
1140 switch (type) {
1141 case HDMI_INFOFRAME_TYPE_AUDIO:
1142 regmap_clear_bits(hdmi->regs, TOP_INFO_EN, AUD_EN_WR | AUD_EN);
1143 regmap_clear_bits(hdmi->regs, TOP_INFO_RPT, AUD_RPT_EN);
1144 break;
1145 case HDMI_INFOFRAME_TYPE_AVI:
1146 regmap_clear_bits(hdmi->regs, TOP_INFO_EN, AVI_EN_WR | AVI_EN);
1147 regmap_clear_bits(hdmi->regs, TOP_INFO_RPT, AVI_RPT_EN);
1148 break;
1149 case HDMI_INFOFRAME_TYPE_SPD:
1150 regmap_clear_bits(hdmi->regs, TOP_INFO_EN, SPD_EN_WR | SPD_EN);
1151 regmap_clear_bits(hdmi->regs, TOP_INFO_RPT, SPD_RPT_EN);
1152 break;
1153 case HDMI_INFOFRAME_TYPE_VENDOR:
1154 regmap_clear_bits(hdmi->regs, TOP_INFO_EN, VSIF_EN_WR | VSIF_EN);
1155 regmap_clear_bits(hdmi->regs, TOP_INFO_RPT, VSIF_RPT_EN);
1156 break;
1157 case HDMI_INFOFRAME_TYPE_DRM:
1158 default:
1159 break;
1160 };
1161
1162 return 0;
1163 }
1164
mtk_hdmi_v2_hdmi_write_infoframe(struct drm_bridge * bridge,enum hdmi_infoframe_type type,const u8 * buffer,size_t len)1165 static int mtk_hdmi_v2_hdmi_write_infoframe(struct drm_bridge *bridge,
1166 enum hdmi_infoframe_type type,
1167 const u8 *buffer, size_t len)
1168 {
1169 struct mtk_hdmi *hdmi = hdmi_ctx_from_bridge(bridge);
1170
1171 switch (type) {
1172 case HDMI_INFOFRAME_TYPE_AUDIO:
1173 mtk_hdmi_v2_hw_write_audio_infoframe(hdmi, buffer);
1174 break;
1175 case HDMI_INFOFRAME_TYPE_AVI:
1176 mtk_hdmi_v2_hw_write_avi_infoframe(hdmi, buffer);
1177 break;
1178 case HDMI_INFOFRAME_TYPE_SPD:
1179 mtk_hdmi_v2_hw_write_spd_infoframe(hdmi, buffer);
1180 break;
1181 case HDMI_INFOFRAME_TYPE_VENDOR:
1182 mtk_hdmi_v2_hw_write_vendor_infoframe(hdmi, buffer);
1183 break;
1184 case HDMI_INFOFRAME_TYPE_DRM:
1185 default:
1186 dev_err(hdmi->dev, "Unsupported HDMI infoframe type %u\n", type);
1187 break;
1188 };
1189
1190 return 0;
1191 }
1192
mtk_hdmi_v2_set_abist(struct mtk_hdmi * hdmi,bool enable)1193 static int mtk_hdmi_v2_set_abist(struct mtk_hdmi *hdmi, bool enable)
1194 {
1195 struct drm_display_mode *mode = &hdmi->mode;
1196 int abist_format = -EINVAL;
1197 bool interlaced;
1198
1199 if (!enable) {
1200 regmap_clear_bits(hdmi->regs, TOP_CFG00, HDMI_ABIST_ENABLE);
1201 return 0;
1202 }
1203
1204 if (!mode->hdisplay || !mode->vdisplay)
1205 return -EINVAL;
1206
1207 interlaced = mode->flags & DRM_MODE_FLAG_INTERLACE;
1208
1209 switch (mode->hdisplay) {
1210 case 720:
1211 if (mode->vdisplay == 480)
1212 abist_format = 2;
1213 else if (mode->vdisplay == 576)
1214 abist_format = 11;
1215 break;
1216 case 1280:
1217 if (mode->vdisplay == 720)
1218 abist_format = 3;
1219 break;
1220 case 1440:
1221 if (mode->vdisplay == 480)
1222 abist_format = interlaced ? 5 : 9;
1223 else if (mode->vdisplay == 576)
1224 abist_format = interlaced ? 14 : 18;
1225 break;
1226 case 1920:
1227 if (mode->vdisplay == 1080)
1228 abist_format = interlaced ? 4 : 10;
1229 break;
1230 case 3840:
1231 if (mode->vdisplay == 2160)
1232 abist_format = 25;
1233 break;
1234 case 4096:
1235 if (mode->vdisplay == 2160)
1236 abist_format = 26;
1237 break;
1238 default:
1239 break;
1240 }
1241 if (abist_format < 0)
1242 return abist_format;
1243
1244 regmap_update_bits(hdmi->regs, TOP_CFG00, HDMI_ABIST_VIDEO_FORMAT,
1245 FIELD_PREP(HDMI_ABIST_VIDEO_FORMAT, abist_format));
1246 regmap_set_bits(hdmi->regs, TOP_CFG00, HDMI_ABIST_ENABLE);
1247 return 0;
1248 }
1249
mtk_hdmi_v2_debug_abist_show(struct seq_file * m,void * arg)1250 static int mtk_hdmi_v2_debug_abist_show(struct seq_file *m, void *arg)
1251 {
1252 struct mtk_hdmi *hdmi = m->private;
1253 bool en;
1254 u32 val;
1255 int ret;
1256
1257 if (!hdmi)
1258 return -EINVAL;
1259
1260 ret = regmap_read(hdmi->regs, TOP_CFG00, &val);
1261 if (ret)
1262 return ret;
1263
1264 en = FIELD_GET(HDMI_ABIST_ENABLE, val);
1265
1266 seq_printf(m, "HDMI Automated Built-In Self Test: %s\n",
1267 en ? "Enabled" : "Disabled");
1268
1269 return 0;
1270 }
1271
mtk_hdmi_v2_debug_abist_write(struct file * file,const char __user * ubuf,size_t len,loff_t * offp)1272 static ssize_t mtk_hdmi_v2_debug_abist_write(struct file *file,
1273 const char __user *ubuf,
1274 size_t len, loff_t *offp)
1275 {
1276 struct seq_file *m = file->private_data;
1277 int ret;
1278 u32 en;
1279
1280 if (!m || !m->private || *offp)
1281 return -EINVAL;
1282
1283 ret = kstrtouint_from_user(ubuf, len, 0, &en);
1284 if (ret)
1285 return ret;
1286
1287 if (en < 0 || en > 1)
1288 return -EINVAL;
1289
1290 mtk_hdmi_v2_set_abist((struct mtk_hdmi *)m->private, en);
1291 return len;
1292 }
1293
mtk_hdmi_v2_debug_abist_open(struct inode * inode,struct file * file)1294 static int mtk_hdmi_v2_debug_abist_open(struct inode *inode, struct file *file)
1295 {
1296 return single_open(file, mtk_hdmi_v2_debug_abist_show, inode->i_private);
1297 }
1298
1299 static const struct file_operations mtk_hdmi_debug_abist_fops = {
1300 .owner = THIS_MODULE,
1301 .open = mtk_hdmi_v2_debug_abist_open,
1302 .read = seq_read,
1303 .write = mtk_hdmi_v2_debug_abist_write,
1304 .llseek = seq_lseek,
1305 .release = single_release,
1306 };
1307
mtk_hdmi_v2_debugfs_init(struct drm_bridge * bridge,struct dentry * root)1308 static void mtk_hdmi_v2_debugfs_init(struct drm_bridge *bridge, struct dentry *root)
1309 {
1310 struct mtk_hdmi *dpi = hdmi_ctx_from_bridge(bridge);
1311
1312 debugfs_create_file("hdmi_abist", 0640, root, dpi, &mtk_hdmi_debug_abist_fops);
1313 }
1314
1315 static const struct drm_bridge_funcs mtk_v2_hdmi_bridge_funcs = {
1316 .attach = mtk_hdmi_v2_bridge_attach,
1317 .detach = mtk_hdmi_v2_bridge_detach,
1318 .mode_fixup = mtk_hdmi_bridge_mode_fixup,
1319 .mode_set = mtk_hdmi_bridge_mode_set,
1320 .atomic_pre_enable = mtk_hdmi_v2_bridge_pre_enable,
1321 .atomic_enable = mtk_hdmi_v2_bridge_enable,
1322 .atomic_disable = mtk_hdmi_v2_bridge_disable,
1323 .atomic_post_disable = mtk_hdmi_v2_bridge_post_disable,
1324 .atomic_duplicate_state = drm_atomic_helper_bridge_duplicate_state,
1325 .atomic_destroy_state = drm_atomic_helper_bridge_destroy_state,
1326 .atomic_reset = drm_atomic_helper_bridge_reset,
1327 .detect = mtk_hdmi_v2_bridge_detect,
1328 .edid_read = mtk_hdmi_v2_bridge_edid_read,
1329 .hpd_enable = mtk_hdmi_v2_hpd_enable,
1330 .hpd_disable = mtk_hdmi_v2_hpd_disable,
1331 .hdmi_tmds_char_rate_valid = mtk_hdmi_v2_hdmi_tmds_char_rate_valid,
1332 .hdmi_clear_infoframe = mtk_hdmi_v2_hdmi_clear_infoframe,
1333 .hdmi_write_infoframe = mtk_hdmi_v2_hdmi_write_infoframe,
1334 .debugfs_init = mtk_hdmi_v2_debugfs_init,
1335 };
1336
1337 /*
1338 * HDMI audio codec callbacks
1339 */
mtk_hdmi_v2_audio_hook_plugged_cb(struct device * dev,void * data,hdmi_codec_plugged_cb fn,struct device * codec_dev)1340 static int mtk_hdmi_v2_audio_hook_plugged_cb(struct device *dev, void *data,
1341 hdmi_codec_plugged_cb fn,
1342 struct device *codec_dev)
1343 {
1344 struct mtk_hdmi *hdmi = dev_get_drvdata(dev);
1345 bool plugged;
1346
1347 if (!hdmi)
1348 return -ENODEV;
1349
1350 mtk_hdmi_audio_set_plugged_cb(hdmi, fn, codec_dev);
1351 plugged = (hdmi->hpd == HDMI_PLUG_IN_AND_SINK_POWER_ON);
1352 mtk_hdmi_v2_handle_plugged_change(hdmi, plugged);
1353
1354 return 0;
1355 }
1356
mtk_hdmi_v2_audio_hw_params(struct device * dev,void * data,struct hdmi_codec_daifmt * daifmt,struct hdmi_codec_params * params)1357 static int mtk_hdmi_v2_audio_hw_params(struct device *dev, void *data,
1358 struct hdmi_codec_daifmt *daifmt,
1359 struct hdmi_codec_params *params)
1360 {
1361 struct mtk_hdmi *hdmi = dev_get_drvdata(dev);
1362
1363 if (hdmi->audio_enable) {
1364 mtk_hdmi_audio_params(hdmi, daifmt, params);
1365 mtk_hdmi_v2_aud_output_config(hdmi, &hdmi->mode);
1366 }
1367 return 0;
1368 }
1369
mtk_hdmi_v2_audio_startup(struct device * dev,void * data)1370 static int mtk_hdmi_v2_audio_startup(struct device *dev, void *data)
1371 {
1372 struct mtk_hdmi *hdmi = dev_get_drvdata(dev);
1373
1374 mtk_hdmi_v2_hw_aud_enable(hdmi, true);
1375 hdmi->audio_enable = true;
1376
1377 return 0;
1378 }
1379
mtk_hdmi_v2_audio_shutdown(struct device * dev,void * data)1380 static void mtk_hdmi_v2_audio_shutdown(struct device *dev, void *data)
1381 {
1382 struct mtk_hdmi *hdmi = dev_get_drvdata(dev);
1383
1384 hdmi->audio_enable = false;
1385 mtk_hdmi_v2_hw_aud_enable(hdmi, false);
1386 }
1387
mtk_hdmi_v2_audio_mute(struct device * dev,void * data,bool enable,int dir)1388 static int mtk_hdmi_v2_audio_mute(struct device *dev, void *data, bool enable, int dir)
1389 {
1390 struct mtk_hdmi *hdmi = dev_get_drvdata(dev);
1391
1392 mtk_hdmi_v2_hw_aud_mute(hdmi, enable);
1393
1394 return 0;
1395 }
1396
1397 static const struct hdmi_codec_ops mtk_hdmi_v2_audio_codec_ops = {
1398 .hw_params = mtk_hdmi_v2_audio_hw_params,
1399 .audio_startup = mtk_hdmi_v2_audio_startup,
1400 .audio_shutdown = mtk_hdmi_v2_audio_shutdown,
1401 .mute_stream = mtk_hdmi_v2_audio_mute,
1402 .get_eld = mtk_hdmi_audio_get_eld,
1403 .hook_plugged_cb = mtk_hdmi_v2_audio_hook_plugged_cb,
1404 };
1405
mtk_hdmi_v2_suspend(struct device * dev)1406 static __maybe_unused int mtk_hdmi_v2_suspend(struct device *dev)
1407 {
1408 struct mtk_hdmi *hdmi = dev_get_drvdata(dev);
1409
1410 mtk_hdmi_v2_disable(hdmi);
1411
1412 return 0;
1413 }
1414
mtk_hdmi_v2_resume(struct device * dev)1415 static __maybe_unused int mtk_hdmi_v2_resume(struct device *dev)
1416 {
1417 struct mtk_hdmi *hdmi = dev_get_drvdata(dev);
1418
1419 return mtk_hdmi_v2_enable(hdmi);
1420 }
1421
1422 static SIMPLE_DEV_PM_OPS(mtk_hdmi_v2_pm_ops, mtk_hdmi_v2_suspend, mtk_hdmi_v2_resume);
1423
1424 static const struct mtk_hdmi_ver_conf mtk_hdmi_conf_v2 = {
1425 .bridge_funcs = &mtk_v2_hdmi_bridge_funcs,
1426 .codec_ops = &mtk_hdmi_v2_audio_codec_ops,
1427 .mtk_hdmi_clock_names = mtk_hdmi_v2_clk_names,
1428 .num_clocks = MTK_HDMI_V2_CLK_COUNT,
1429 .interlace_allowed = true,
1430 };
1431
1432 static const struct mtk_hdmi_conf mtk_hdmi_conf_mt8188 = {
1433 .ver_conf = &mtk_hdmi_conf_v2,
1434 .reg_hdmi_tx_cfg = HDMITX_CONFIG_MT8188
1435 };
1436
1437 static const struct mtk_hdmi_conf mtk_hdmi_conf_mt8195 = {
1438 .ver_conf = &mtk_hdmi_conf_v2,
1439 .reg_hdmi_tx_cfg = HDMITX_CONFIG_MT8195
1440 };
1441
mtk_hdmi_v2_probe(struct platform_device * pdev)1442 static int mtk_hdmi_v2_probe(struct platform_device *pdev)
1443 {
1444 struct mtk_hdmi *hdmi;
1445 int ret;
1446
1447 /* Populate HDMI sub-devices if present */
1448 ret = devm_of_platform_populate(&pdev->dev);
1449 if (ret)
1450 return ret;
1451
1452 hdmi = mtk_hdmi_common_probe(pdev);
1453 if (IS_ERR(hdmi))
1454 return PTR_ERR(hdmi);
1455
1456 hdmi->hpd = HDMI_PLUG_OUT;
1457
1458 /* Disable all HW interrupts at probe stage */
1459 mtk_hdmi_v2_hwirq_disable(hdmi);
1460
1461 /*
1462 * In case bootloader leaves HDMI enabled before booting, make
1463 * sure that any interrupt that was left is cleared by setting
1464 * all bits in the INT_CLR registers for all 32+19 interrupts.
1465 */
1466 regmap_write(hdmi->regs, TOP_INT_CLR00, GENMASK(31, 0));
1467 regmap_write(hdmi->regs, TOP_INT_CLR01, GENMASK(18, 0));
1468
1469 /* Restore interrupt clearing registers to zero */
1470 regmap_write(hdmi->regs, TOP_INT_CLR00, 0);
1471 regmap_write(hdmi->regs, TOP_INT_CLR01, 0);
1472
1473 /*
1474 * Install the ISR but keep it disabled: as the interrupts are
1475 * being set up in the .bridge_attach() callback which will
1476 * enable both the right HW IRQs and the ISR.
1477 */
1478 irq_set_status_flags(hdmi->irq, IRQ_NOAUTOEN);
1479 ret = devm_request_threaded_irq(&pdev->dev, hdmi->irq, mtk_hdmi_v2_isr,
1480 mtk_hdmi_v2_isr_thread,
1481 IRQ_TYPE_LEVEL_HIGH,
1482 dev_name(&pdev->dev), hdmi);
1483 if (ret)
1484 return dev_err_probe(&pdev->dev, ret, "Cannot request IRQ\n");
1485
1486 ret = devm_pm_runtime_enable(&pdev->dev);
1487 if (ret)
1488 return dev_err_probe(&pdev->dev, ret, "Cannot enable Runtime PM\n");
1489
1490 return 0;
1491 }
1492
mtk_hdmi_v2_remove(struct platform_device * pdev)1493 static void mtk_hdmi_v2_remove(struct platform_device *pdev)
1494 {
1495 struct mtk_hdmi *hdmi = platform_get_drvdata(pdev);
1496
1497 i2c_put_adapter(hdmi->ddc_adpt);
1498 }
1499
1500 static const struct of_device_id mtk_drm_hdmi_v2_of_ids[] = {
1501 { .compatible = "mediatek,mt8188-hdmi-tx", .data = &mtk_hdmi_conf_mt8188 },
1502 { .compatible = "mediatek,mt8195-hdmi-tx", .data = &mtk_hdmi_conf_mt8195 },
1503 { /* sentinel */ }
1504 };
1505 MODULE_DEVICE_TABLE(of, mtk_drm_hdmi_v2_of_ids);
1506
1507 static struct platform_driver mtk_hdmi_v2_driver = {
1508 .probe = mtk_hdmi_v2_probe,
1509 .remove = mtk_hdmi_v2_remove,
1510 .driver = {
1511 .name = "mediatek-drm-hdmi-v2",
1512 .of_match_table = mtk_drm_hdmi_v2_of_ids,
1513 .pm = &mtk_hdmi_v2_pm_ops,
1514 },
1515 };
1516 module_platform_driver(mtk_hdmi_v2_driver);
1517
1518 MODULE_AUTHOR("AngeloGioacchino Del Regno <angelogioacchino.delregno@collabora.com>>");
1519 MODULE_DESCRIPTION("MediaTek HDMIv2 Driver");
1520 MODULE_LICENSE("GPL");
1521 MODULE_IMPORT_NS("DRM_MTK_HDMI");
1522