WIP FPC-III support
[linux/fpc-iii.git] / drivers / gpu / drm / amd / display / dc / dcn10 / dcn10_stream_encoder.c
blob73ac78b16bd4ffa214bcc3de1db11f5292e99218
1 /*
2 * Copyright 2012-15 Advanced Micro Devices, Inc.
4 * Permission is hereby granted, free of charge, to any person obtaining a
5 * copy of this software and associated documentation files (the "Software"),
6 * to deal in the Software without restriction, including without limitation
7 * the rights to use, copy, modify, merge, publish, distribute, sublicense,
8 * and/or sell copies of the Software, and to permit persons to whom the
9 * Software is furnished to do so, subject to the following conditions:
11 * The above copyright notice and this permission notice shall be included in
12 * all copies or substantial portions of the Software.
14 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
15 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
16 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
17 * THE COPYRIGHT HOLDER(S) OR AUTHOR(S) BE LIABLE FOR ANY CLAIM, DAMAGES OR
18 * OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE,
19 * ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
20 * OTHER DEALINGS IN THE SOFTWARE.
22 * Authors: AMD
26 #include <linux/delay.h>
28 #include "dc_bios_types.h"
29 #include "dcn10_stream_encoder.h"
30 #include "reg_helper.h"
31 #include "hw_shared.h"
33 #define DC_LOGGER \
34 enc1->base.ctx->logger
37 #define REG(reg)\
38 (enc1->regs->reg)
40 #undef FN
41 #define FN(reg_name, field_name) \
42 enc1->se_shift->field_name, enc1->se_mask->field_name
44 #define VBI_LINE_0 0
45 #define DP_BLANK_MAX_RETRY 20
46 #define HDMI_CLOCK_CHANNEL_RATE_MORE_340M 340000
49 enum {
50 DP_MST_UPDATE_MAX_RETRY = 50
53 #define CTX \
54 enc1->base.ctx
56 void enc1_update_generic_info_packet(
57 struct dcn10_stream_encoder *enc1,
58 uint32_t packet_index,
59 const struct dc_info_packet *info_packet)
61 uint32_t regval;
62 /* TODOFPGA Figure out a proper number for max_retries polling for lock
63 * use 50 for now.
65 uint32_t max_retries = 50;
67 /*we need turn on clock before programming AFMT block*/
68 REG_UPDATE(AFMT_CNTL, AFMT_AUDIO_CLOCK_EN, 1);
70 if (packet_index >= 8)
71 ASSERT(0);
73 /* poll dig_update_lock is not locked -> asic internal signal
74 * assume otg master lock will unlock it
76 /* REG_WAIT(AFMT_VBI_PACKET_CONTROL, AFMT_GENERIC_LOCK_STATUS,
77 0, 10, max_retries);*/
79 /* check if HW reading GSP memory */
80 REG_WAIT(AFMT_VBI_PACKET_CONTROL, AFMT_GENERIC_CONFLICT,
81 0, 10, max_retries);
83 /* HW does is not reading GSP memory not reading too long ->
84 * something wrong. clear GPS memory access and notify?
85 * hw SW is writing to GSP memory
87 REG_UPDATE(AFMT_VBI_PACKET_CONTROL, AFMT_GENERIC_CONFLICT_CLR, 1);
89 /* choose which generic packet to use */
90 regval = REG_READ(AFMT_VBI_PACKET_CONTROL);
91 REG_UPDATE(AFMT_VBI_PACKET_CONTROL,
92 AFMT_GENERIC_INDEX, packet_index);
94 /* write generic packet header
95 * (4th byte is for GENERIC0 only)
97 REG_SET_4(AFMT_GENERIC_HDR, 0,
98 AFMT_GENERIC_HB0, info_packet->hb0,
99 AFMT_GENERIC_HB1, info_packet->hb1,
100 AFMT_GENERIC_HB2, info_packet->hb2,
101 AFMT_GENERIC_HB3, info_packet->hb3);
103 /* write generic packet contents
104 * (we never use last 4 bytes)
105 * there are 8 (0-7) mmDIG0_AFMT_GENERIC0_x registers
108 const uint32_t *content =
109 (const uint32_t *) &info_packet->sb[0];
111 REG_WRITE(AFMT_GENERIC_0, *content++);
112 REG_WRITE(AFMT_GENERIC_1, *content++);
113 REG_WRITE(AFMT_GENERIC_2, *content++);
114 REG_WRITE(AFMT_GENERIC_3, *content++);
115 REG_WRITE(AFMT_GENERIC_4, *content++);
116 REG_WRITE(AFMT_GENERIC_5, *content++);
117 REG_WRITE(AFMT_GENERIC_6, *content++);
118 REG_WRITE(AFMT_GENERIC_7, *content);
121 switch (packet_index) {
122 case 0:
123 REG_UPDATE(AFMT_VBI_PACKET_CONTROL1,
124 AFMT_GENERIC0_IMMEDIATE_UPDATE, 1);
125 break;
126 case 1:
127 REG_UPDATE(AFMT_VBI_PACKET_CONTROL1,
128 AFMT_GENERIC1_IMMEDIATE_UPDATE, 1);
129 break;
130 case 2:
131 REG_UPDATE(AFMT_VBI_PACKET_CONTROL1,
132 AFMT_GENERIC2_IMMEDIATE_UPDATE, 1);
133 break;
134 case 3:
135 REG_UPDATE(AFMT_VBI_PACKET_CONTROL1,
136 AFMT_GENERIC3_IMMEDIATE_UPDATE, 1);
137 break;
138 case 4:
139 REG_UPDATE(AFMT_VBI_PACKET_CONTROL1,
140 AFMT_GENERIC4_IMMEDIATE_UPDATE, 1);
141 break;
142 case 5:
143 REG_UPDATE(AFMT_VBI_PACKET_CONTROL1,
144 AFMT_GENERIC5_IMMEDIATE_UPDATE, 1);
145 break;
146 case 6:
147 REG_UPDATE(AFMT_VBI_PACKET_CONTROL1,
148 AFMT_GENERIC6_IMMEDIATE_UPDATE, 1);
149 break;
150 case 7:
151 REG_UPDATE(AFMT_VBI_PACKET_CONTROL1,
152 AFMT_GENERIC7_IMMEDIATE_UPDATE, 1);
153 break;
154 default:
155 break;
159 static void enc1_update_hdmi_info_packet(
160 struct dcn10_stream_encoder *enc1,
161 uint32_t packet_index,
162 const struct dc_info_packet *info_packet)
164 uint32_t cont, send, line;
166 if (info_packet->valid) {
167 enc1_update_generic_info_packet(
168 enc1,
169 packet_index,
170 info_packet);
172 /* enable transmission of packet(s) -
173 * packet transmission begins on the next frame
175 cont = 1;
176 /* send packet(s) every frame */
177 send = 1;
178 /* select line number to send packets on */
179 line = 2;
180 } else {
181 cont = 0;
182 send = 0;
183 line = 0;
186 /* choose which generic packet control to use */
187 switch (packet_index) {
188 case 0:
189 REG_UPDATE_3(HDMI_GENERIC_PACKET_CONTROL0,
190 HDMI_GENERIC0_CONT, cont,
191 HDMI_GENERIC0_SEND, send,
192 HDMI_GENERIC0_LINE, line);
193 break;
194 case 1:
195 REG_UPDATE_3(HDMI_GENERIC_PACKET_CONTROL0,
196 HDMI_GENERIC1_CONT, cont,
197 HDMI_GENERIC1_SEND, send,
198 HDMI_GENERIC1_LINE, line);
199 break;
200 case 2:
201 REG_UPDATE_3(HDMI_GENERIC_PACKET_CONTROL1,
202 HDMI_GENERIC0_CONT, cont,
203 HDMI_GENERIC0_SEND, send,
204 HDMI_GENERIC0_LINE, line);
205 break;
206 case 3:
207 REG_UPDATE_3(HDMI_GENERIC_PACKET_CONTROL1,
208 HDMI_GENERIC1_CONT, cont,
209 HDMI_GENERIC1_SEND, send,
210 HDMI_GENERIC1_LINE, line);
211 break;
212 case 4:
213 REG_UPDATE_3(HDMI_GENERIC_PACKET_CONTROL2,
214 HDMI_GENERIC0_CONT, cont,
215 HDMI_GENERIC0_SEND, send,
216 HDMI_GENERIC0_LINE, line);
217 break;
218 case 5:
219 REG_UPDATE_3(HDMI_GENERIC_PACKET_CONTROL2,
220 HDMI_GENERIC1_CONT, cont,
221 HDMI_GENERIC1_SEND, send,
222 HDMI_GENERIC1_LINE, line);
223 break;
224 case 6:
225 REG_UPDATE_3(HDMI_GENERIC_PACKET_CONTROL3,
226 HDMI_GENERIC0_CONT, cont,
227 HDMI_GENERIC0_SEND, send,
228 HDMI_GENERIC0_LINE, line);
229 break;
230 case 7:
231 REG_UPDATE_3(HDMI_GENERIC_PACKET_CONTROL3,
232 HDMI_GENERIC1_CONT, cont,
233 HDMI_GENERIC1_SEND, send,
234 HDMI_GENERIC1_LINE, line);
235 break;
236 default:
237 /* invalid HW packet index */
238 DC_LOG_WARNING(
239 "Invalid HW packet index: %s()\n",
240 __func__);
241 return;
245 /* setup stream encoder in dp mode */
246 void enc1_stream_encoder_dp_set_stream_attribute(
247 struct stream_encoder *enc,
248 struct dc_crtc_timing *crtc_timing,
249 enum dc_color_space output_color_space,
250 bool use_vsc_sdp_for_colorimetry,
251 uint32_t enable_sdp_splitting)
253 uint32_t h_active_start;
254 uint32_t v_active_start;
255 uint32_t misc0 = 0;
256 uint32_t misc1 = 0;
257 uint32_t h_blank;
258 uint32_t h_back_porch;
259 uint8_t synchronous_clock = 0; /* asynchronous mode */
260 uint8_t colorimetry_bpc;
261 uint8_t dynamic_range_rgb = 0; /*full range*/
262 uint8_t dynamic_range_ycbcr = 1; /*bt709*/
263 uint8_t dp_pixel_encoding = 0;
264 uint8_t dp_component_depth = 0;
266 struct dcn10_stream_encoder *enc1 = DCN10STRENC_FROM_STRENC(enc);
267 struct dc_crtc_timing hw_crtc_timing = *crtc_timing;
269 if (hw_crtc_timing.flags.INTERLACE) {
270 /*the input timing is in VESA spec format with Interlace flag =1*/
271 hw_crtc_timing.v_total /= 2;
272 hw_crtc_timing.v_border_top /= 2;
273 hw_crtc_timing.v_addressable /= 2;
274 hw_crtc_timing.v_border_bottom /= 2;
275 hw_crtc_timing.v_front_porch /= 2;
276 hw_crtc_timing.v_sync_width /= 2;
280 /* set pixel encoding */
281 switch (hw_crtc_timing.pixel_encoding) {
282 case PIXEL_ENCODING_YCBCR422:
283 dp_pixel_encoding = DP_PIXEL_ENCODING_TYPE_YCBCR422;
284 break;
285 case PIXEL_ENCODING_YCBCR444:
286 dp_pixel_encoding = DP_PIXEL_ENCODING_TYPE_YCBCR444;
288 if (hw_crtc_timing.flags.Y_ONLY)
289 if (hw_crtc_timing.display_color_depth != COLOR_DEPTH_666)
290 /* HW testing only, no use case yet.
291 * Color depth of Y-only could be
292 * 8, 10, 12, 16 bits
294 dp_pixel_encoding = DP_PIXEL_ENCODING_TYPE_Y_ONLY;
296 /* Note: DP_MSA_MISC1 bit 7 is the indicator
297 * of Y-only mode.
298 * This bit is set in HW if register
299 * DP_PIXEL_ENCODING is programmed to 0x4
301 break;
302 case PIXEL_ENCODING_YCBCR420:
303 dp_pixel_encoding = DP_PIXEL_ENCODING_TYPE_YCBCR420;
304 break;
305 default:
306 dp_pixel_encoding = DP_PIXEL_ENCODING_TYPE_RGB444;
307 break;
310 misc1 = REG_READ(DP_MSA_MISC);
311 /* For YCbCr420 and BT2020 Colorimetry Formats, VSC SDP shall be used.
312 * When MISC1, bit 6, is Set to 1, a Source device uses a VSC SDP to indicate the
313 * Pixel Encoding/Colorimetry Format and that a Sink device shall ignore MISC1, bit 7,
314 * and MISC0, bits 7:1 (MISC1, bit 7, and MISC0, bits 7:1, become "don't care").
316 if (use_vsc_sdp_for_colorimetry)
317 misc1 = misc1 | 0x40;
318 else
319 misc1 = misc1 & ~0x40;
321 /* set color depth */
322 switch (hw_crtc_timing.display_color_depth) {
323 case COLOR_DEPTH_666:
324 dp_component_depth = DP_COMPONENT_PIXEL_DEPTH_6BPC;
325 break;
326 case COLOR_DEPTH_888:
327 dp_component_depth = DP_COMPONENT_PIXEL_DEPTH_8BPC;
328 break;
329 case COLOR_DEPTH_101010:
330 dp_component_depth = DP_COMPONENT_PIXEL_DEPTH_10BPC;
331 break;
332 case COLOR_DEPTH_121212:
333 dp_component_depth = DP_COMPONENT_PIXEL_DEPTH_12BPC;
334 break;
335 case COLOR_DEPTH_161616:
336 dp_component_depth = DP_COMPONENT_PIXEL_DEPTH_16BPC;
337 break;
338 default:
339 dp_component_depth = DP_COMPONENT_PIXEL_DEPTH_6BPC;
340 break;
343 /* Set DP pixel encoding and component depth */
344 REG_UPDATE_2(DP_PIXEL_FORMAT,
345 DP_PIXEL_ENCODING, dp_pixel_encoding,
346 DP_COMPONENT_DEPTH, dp_component_depth);
348 /* set dynamic range and YCbCr range */
350 switch (hw_crtc_timing.display_color_depth) {
351 case COLOR_DEPTH_666:
352 colorimetry_bpc = 0;
353 break;
354 case COLOR_DEPTH_888:
355 colorimetry_bpc = 1;
356 break;
357 case COLOR_DEPTH_101010:
358 colorimetry_bpc = 2;
359 break;
360 case COLOR_DEPTH_121212:
361 colorimetry_bpc = 3;
362 break;
363 default:
364 colorimetry_bpc = 0;
365 break;
368 misc0 = misc0 | synchronous_clock;
369 misc0 = colorimetry_bpc << 5;
371 switch (output_color_space) {
372 case COLOR_SPACE_SRGB:
373 misc1 = misc1 & ~0x80; /* bit7 = 0*/
374 dynamic_range_rgb = 0; /*full range*/
375 break;
376 case COLOR_SPACE_SRGB_LIMITED:
377 misc0 = misc0 | 0x8; /* bit3=1 */
378 misc1 = misc1 & ~0x80; /* bit7 = 0*/
379 dynamic_range_rgb = 1; /*limited range*/
380 break;
381 case COLOR_SPACE_YCBCR601:
382 case COLOR_SPACE_YCBCR601_LIMITED:
383 misc0 = misc0 | 0x8; /* bit3=1, bit4=0 */
384 misc1 = misc1 & ~0x80; /* bit7 = 0*/
385 dynamic_range_ycbcr = 0; /*bt601*/
386 if (hw_crtc_timing.pixel_encoding == PIXEL_ENCODING_YCBCR422)
387 misc0 = misc0 | 0x2; /* bit2=0, bit1=1 */
388 else if (hw_crtc_timing.pixel_encoding == PIXEL_ENCODING_YCBCR444)
389 misc0 = misc0 | 0x4; /* bit2=1, bit1=0 */
390 break;
391 case COLOR_SPACE_YCBCR709:
392 case COLOR_SPACE_YCBCR709_LIMITED:
393 misc0 = misc0 | 0x18; /* bit3=1, bit4=1 */
394 misc1 = misc1 & ~0x80; /* bit7 = 0*/
395 dynamic_range_ycbcr = 1; /*bt709*/
396 if (hw_crtc_timing.pixel_encoding == PIXEL_ENCODING_YCBCR422)
397 misc0 = misc0 | 0x2; /* bit2=0, bit1=1 */
398 else if (hw_crtc_timing.pixel_encoding == PIXEL_ENCODING_YCBCR444)
399 misc0 = misc0 | 0x4; /* bit2=1, bit1=0 */
400 break;
401 case COLOR_SPACE_2020_RGB_LIMITEDRANGE:
402 dynamic_range_rgb = 1; /*limited range*/
403 break;
404 case COLOR_SPACE_2020_RGB_FULLRANGE:
405 case COLOR_SPACE_2020_YCBCR:
406 case COLOR_SPACE_XR_RGB:
407 case COLOR_SPACE_MSREF_SCRGB:
408 case COLOR_SPACE_ADOBERGB:
409 case COLOR_SPACE_DCIP3:
410 case COLOR_SPACE_XV_YCC_709:
411 case COLOR_SPACE_XV_YCC_601:
412 case COLOR_SPACE_DISPLAYNATIVE:
413 case COLOR_SPACE_DOLBYVISION:
414 case COLOR_SPACE_APPCTRL:
415 case COLOR_SPACE_CUSTOMPOINTS:
416 case COLOR_SPACE_UNKNOWN:
417 case COLOR_SPACE_YCBCR709_BLACK:
418 /* do nothing */
419 break;
422 REG_SET(DP_MSA_COLORIMETRY, 0, DP_MSA_MISC0, misc0);
423 REG_WRITE(DP_MSA_MISC, misc1); /* MSA_MISC1 */
425 /* dcn new register
426 * dc_crtc_timing is vesa dmt struct. data from edid
428 REG_SET_2(DP_MSA_TIMING_PARAM1, 0,
429 DP_MSA_HTOTAL, hw_crtc_timing.h_total,
430 DP_MSA_VTOTAL, hw_crtc_timing.v_total);
432 /* calculate from vesa timing parameters
433 * h_active_start related to leading edge of sync
436 h_blank = hw_crtc_timing.h_total - hw_crtc_timing.h_border_left -
437 hw_crtc_timing.h_addressable - hw_crtc_timing.h_border_right;
439 h_back_porch = h_blank - hw_crtc_timing.h_front_porch -
440 hw_crtc_timing.h_sync_width;
442 /* start at beginning of left border */
443 h_active_start = hw_crtc_timing.h_sync_width + h_back_porch;
446 v_active_start = hw_crtc_timing.v_total - hw_crtc_timing.v_border_top -
447 hw_crtc_timing.v_addressable - hw_crtc_timing.v_border_bottom -
448 hw_crtc_timing.v_front_porch;
451 /* start at beginning of left border */
452 REG_SET_2(DP_MSA_TIMING_PARAM2, 0,
453 DP_MSA_HSTART, h_active_start,
454 DP_MSA_VSTART, v_active_start);
456 REG_SET_4(DP_MSA_TIMING_PARAM3, 0,
457 DP_MSA_HSYNCWIDTH,
458 hw_crtc_timing.h_sync_width,
459 DP_MSA_HSYNCPOLARITY,
460 !hw_crtc_timing.flags.HSYNC_POSITIVE_POLARITY,
461 DP_MSA_VSYNCWIDTH,
462 hw_crtc_timing.v_sync_width,
463 DP_MSA_VSYNCPOLARITY,
464 !hw_crtc_timing.flags.VSYNC_POSITIVE_POLARITY);
466 /* HWDITH include border or overscan */
467 REG_SET_2(DP_MSA_TIMING_PARAM4, 0,
468 DP_MSA_HWIDTH, hw_crtc_timing.h_border_left +
469 hw_crtc_timing.h_addressable + hw_crtc_timing.h_border_right,
470 DP_MSA_VHEIGHT, hw_crtc_timing.v_border_top +
471 hw_crtc_timing.v_addressable + hw_crtc_timing.v_border_bottom);
474 void enc1_stream_encoder_set_stream_attribute_helper(
475 struct dcn10_stream_encoder *enc1,
476 struct dc_crtc_timing *crtc_timing)
478 switch (crtc_timing->pixel_encoding) {
479 case PIXEL_ENCODING_YCBCR422:
480 REG_UPDATE(DIG_FE_CNTL, TMDS_PIXEL_ENCODING, 1);
481 break;
482 default:
483 REG_UPDATE(DIG_FE_CNTL, TMDS_PIXEL_ENCODING, 0);
484 break;
486 REG_UPDATE(DIG_FE_CNTL, TMDS_COLOR_FORMAT, 0);
489 /* setup stream encoder in hdmi mode */
490 void enc1_stream_encoder_hdmi_set_stream_attribute(
491 struct stream_encoder *enc,
492 struct dc_crtc_timing *crtc_timing,
493 int actual_pix_clk_khz,
494 bool enable_audio)
496 struct dcn10_stream_encoder *enc1 = DCN10STRENC_FROM_STRENC(enc);
497 struct bp_encoder_control cntl = {0};
499 cntl.action = ENCODER_CONTROL_SETUP;
500 cntl.engine_id = enc1->base.id;
501 cntl.signal = SIGNAL_TYPE_HDMI_TYPE_A;
502 cntl.enable_dp_audio = enable_audio;
503 cntl.pixel_clock = actual_pix_clk_khz;
504 cntl.lanes_number = LANE_COUNT_FOUR;
506 if (enc1->base.bp->funcs->encoder_control(
507 enc1->base.bp, &cntl) != BP_RESULT_OK)
508 return;
510 enc1_stream_encoder_set_stream_attribute_helper(enc1, crtc_timing);
512 /* setup HDMI engine */
513 REG_UPDATE_6(HDMI_CONTROL,
514 HDMI_PACKET_GEN_VERSION, 1,
515 HDMI_KEEPOUT_MODE, 1,
516 HDMI_DEEP_COLOR_ENABLE, 0,
517 HDMI_DATA_SCRAMBLE_EN, 0,
518 HDMI_NO_EXTRA_NULL_PACKET_FILLED, 1,
519 HDMI_CLOCK_CHANNEL_RATE, 0);
522 switch (crtc_timing->display_color_depth) {
523 case COLOR_DEPTH_888:
524 REG_UPDATE(HDMI_CONTROL, HDMI_DEEP_COLOR_DEPTH, 0);
525 break;
526 case COLOR_DEPTH_101010:
527 if (crtc_timing->pixel_encoding == PIXEL_ENCODING_YCBCR422) {
528 REG_UPDATE_2(HDMI_CONTROL,
529 HDMI_DEEP_COLOR_DEPTH, 1,
530 HDMI_DEEP_COLOR_ENABLE, 0);
531 } else {
532 REG_UPDATE_2(HDMI_CONTROL,
533 HDMI_DEEP_COLOR_DEPTH, 1,
534 HDMI_DEEP_COLOR_ENABLE, 1);
536 break;
537 case COLOR_DEPTH_121212:
538 if (crtc_timing->pixel_encoding == PIXEL_ENCODING_YCBCR422) {
539 REG_UPDATE_2(HDMI_CONTROL,
540 HDMI_DEEP_COLOR_DEPTH, 2,
541 HDMI_DEEP_COLOR_ENABLE, 0);
542 } else {
543 REG_UPDATE_2(HDMI_CONTROL,
544 HDMI_DEEP_COLOR_DEPTH, 2,
545 HDMI_DEEP_COLOR_ENABLE, 1);
547 break;
548 case COLOR_DEPTH_161616:
549 REG_UPDATE_2(HDMI_CONTROL,
550 HDMI_DEEP_COLOR_DEPTH, 3,
551 HDMI_DEEP_COLOR_ENABLE, 1);
552 break;
553 default:
554 break;
557 if (actual_pix_clk_khz >= HDMI_CLOCK_CHANNEL_RATE_MORE_340M) {
558 /* enable HDMI data scrambler
559 * HDMI_CLOCK_CHANNEL_RATE_MORE_340M
560 * Clock channel frequency is 1/4 of character rate.
562 REG_UPDATE_2(HDMI_CONTROL,
563 HDMI_DATA_SCRAMBLE_EN, 1,
564 HDMI_CLOCK_CHANNEL_RATE, 1);
565 } else if (crtc_timing->flags.LTE_340MCSC_SCRAMBLE) {
567 /* TODO: New feature for DCE11, still need to implement */
569 /* enable HDMI data scrambler
570 * HDMI_CLOCK_CHANNEL_FREQ_EQUAL_TO_CHAR_RATE
571 * Clock channel frequency is the same
572 * as character rate
574 REG_UPDATE_2(HDMI_CONTROL,
575 HDMI_DATA_SCRAMBLE_EN, 1,
576 HDMI_CLOCK_CHANNEL_RATE, 0);
580 REG_UPDATE_3(HDMI_VBI_PACKET_CONTROL,
581 HDMI_GC_CONT, 1,
582 HDMI_GC_SEND, 1,
583 HDMI_NULL_SEND, 1);
585 /* following belongs to audio */
586 REG_UPDATE(HDMI_INFOFRAME_CONTROL0, HDMI_AUDIO_INFO_SEND, 1);
588 REG_UPDATE(AFMT_INFOFRAME_CONTROL0, AFMT_AUDIO_INFO_UPDATE, 1);
590 REG_UPDATE(HDMI_INFOFRAME_CONTROL1, HDMI_AUDIO_INFO_LINE,
591 VBI_LINE_0 + 2);
593 REG_UPDATE(HDMI_GC, HDMI_GC_AVMUTE, 0);
596 /* setup stream encoder in dvi mode */
597 void enc1_stream_encoder_dvi_set_stream_attribute(
598 struct stream_encoder *enc,
599 struct dc_crtc_timing *crtc_timing,
600 bool is_dual_link)
602 struct dcn10_stream_encoder *enc1 = DCN10STRENC_FROM_STRENC(enc);
603 struct bp_encoder_control cntl = {0};
605 cntl.action = ENCODER_CONTROL_SETUP;
606 cntl.engine_id = enc1->base.id;
607 cntl.signal = is_dual_link ?
608 SIGNAL_TYPE_DVI_DUAL_LINK : SIGNAL_TYPE_DVI_SINGLE_LINK;
609 cntl.enable_dp_audio = false;
610 cntl.pixel_clock = crtc_timing->pix_clk_100hz / 10;
611 cntl.lanes_number = (is_dual_link) ? LANE_COUNT_EIGHT : LANE_COUNT_FOUR;
613 if (enc1->base.bp->funcs->encoder_control(
614 enc1->base.bp, &cntl) != BP_RESULT_OK)
615 return;
617 ASSERT(crtc_timing->pixel_encoding == PIXEL_ENCODING_RGB);
618 ASSERT(crtc_timing->display_color_depth == COLOR_DEPTH_888);
619 enc1_stream_encoder_set_stream_attribute_helper(enc1, crtc_timing);
622 void enc1_stream_encoder_set_throttled_vcp_size(
623 struct stream_encoder *enc,
624 struct fixed31_32 avg_time_slots_per_mtp)
626 struct dcn10_stream_encoder *enc1 = DCN10STRENC_FROM_STRENC(enc);
627 uint32_t x = dc_fixpt_floor(
628 avg_time_slots_per_mtp);
629 uint32_t y = dc_fixpt_ceil(
630 dc_fixpt_shl(
631 dc_fixpt_sub_int(
632 avg_time_slots_per_mtp,
634 26));
636 REG_SET_2(DP_MSE_RATE_CNTL, 0,
637 DP_MSE_RATE_X, x,
638 DP_MSE_RATE_Y, y);
640 /* wait for update to be completed on the link */
641 /* i.e. DP_MSE_RATE_UPDATE_PENDING field (read only) */
642 /* is reset to 0 (not pending) */
643 REG_WAIT(DP_MSE_RATE_UPDATE, DP_MSE_RATE_UPDATE_PENDING,
645 10, DP_MST_UPDATE_MAX_RETRY);
648 static void enc1_stream_encoder_update_hdmi_info_packets(
649 struct stream_encoder *enc,
650 const struct encoder_info_frame *info_frame)
652 struct dcn10_stream_encoder *enc1 = DCN10STRENC_FROM_STRENC(enc);
654 /* for bring up, disable dp double TODO */
655 REG_UPDATE(HDMI_DB_CONTROL, HDMI_DB_DISABLE, 1);
657 enc1_update_hdmi_info_packet(enc1, 0, &info_frame->avi);
658 enc1_update_hdmi_info_packet(enc1, 1, &info_frame->vendor);
659 enc1_update_hdmi_info_packet(enc1, 2, &info_frame->gamut);
660 enc1_update_hdmi_info_packet(enc1, 3, &info_frame->spd);
661 enc1_update_hdmi_info_packet(enc1, 4, &info_frame->hdrsmd);
664 static void enc1_stream_encoder_stop_hdmi_info_packets(
665 struct stream_encoder *enc)
667 struct dcn10_stream_encoder *enc1 = DCN10STRENC_FROM_STRENC(enc);
669 /* stop generic packets 0 & 1 on HDMI */
670 REG_SET_6(HDMI_GENERIC_PACKET_CONTROL0, 0,
671 HDMI_GENERIC1_CONT, 0,
672 HDMI_GENERIC1_LINE, 0,
673 HDMI_GENERIC1_SEND, 0,
674 HDMI_GENERIC0_CONT, 0,
675 HDMI_GENERIC0_LINE, 0,
676 HDMI_GENERIC0_SEND, 0);
678 /* stop generic packets 2 & 3 on HDMI */
679 REG_SET_6(HDMI_GENERIC_PACKET_CONTROL1, 0,
680 HDMI_GENERIC0_CONT, 0,
681 HDMI_GENERIC0_LINE, 0,
682 HDMI_GENERIC0_SEND, 0,
683 HDMI_GENERIC1_CONT, 0,
684 HDMI_GENERIC1_LINE, 0,
685 HDMI_GENERIC1_SEND, 0);
687 /* stop generic packets 2 & 3 on HDMI */
688 REG_SET_6(HDMI_GENERIC_PACKET_CONTROL2, 0,
689 HDMI_GENERIC0_CONT, 0,
690 HDMI_GENERIC0_LINE, 0,
691 HDMI_GENERIC0_SEND, 0,
692 HDMI_GENERIC1_CONT, 0,
693 HDMI_GENERIC1_LINE, 0,
694 HDMI_GENERIC1_SEND, 0);
696 REG_SET_6(HDMI_GENERIC_PACKET_CONTROL3, 0,
697 HDMI_GENERIC0_CONT, 0,
698 HDMI_GENERIC0_LINE, 0,
699 HDMI_GENERIC0_SEND, 0,
700 HDMI_GENERIC1_CONT, 0,
701 HDMI_GENERIC1_LINE, 0,
702 HDMI_GENERIC1_SEND, 0);
705 void enc1_stream_encoder_update_dp_info_packets(
706 struct stream_encoder *enc,
707 const struct encoder_info_frame *info_frame)
709 struct dcn10_stream_encoder *enc1 = DCN10STRENC_FROM_STRENC(enc);
710 uint32_t value = 0;
712 if (info_frame->vsc.valid)
713 enc1_update_generic_info_packet(
714 enc1,
715 0, /* packetIndex */
716 &info_frame->vsc);
718 if (info_frame->spd.valid)
719 enc1_update_generic_info_packet(
720 enc1,
721 2, /* packetIndex */
722 &info_frame->spd);
724 if (info_frame->hdrsmd.valid)
725 enc1_update_generic_info_packet(
726 enc1,
727 3, /* packetIndex */
728 &info_frame->hdrsmd);
730 /* packetIndex 4 is used for send immediate sdp message, and please
731 * use other packetIndex (such as 5,6) for other info packet
734 /* enable/disable transmission of packet(s).
735 * If enabled, packet transmission begins on the next frame
737 REG_UPDATE(DP_SEC_CNTL, DP_SEC_GSP0_ENABLE, info_frame->vsc.valid);
738 REG_UPDATE(DP_SEC_CNTL, DP_SEC_GSP2_ENABLE, info_frame->spd.valid);
739 REG_UPDATE(DP_SEC_CNTL, DP_SEC_GSP3_ENABLE, info_frame->hdrsmd.valid);
742 /* This bit is the master enable bit.
743 * When enabling secondary stream engine,
744 * this master bit must also be set.
745 * This register shared with audio info frame.
746 * Therefore we need to enable master bit
747 * if at least on of the fields is not 0
749 value = REG_READ(DP_SEC_CNTL);
750 if (value)
751 REG_UPDATE(DP_SEC_CNTL, DP_SEC_STREAM_ENABLE, 1);
754 void enc1_stream_encoder_send_immediate_sdp_message(
755 struct stream_encoder *enc,
756 const uint8_t *custom_sdp_message,
757 unsigned int sdp_message_size)
759 struct dcn10_stream_encoder *enc1 = DCN10STRENC_FROM_STRENC(enc);
760 uint32_t value = 0;
762 /* TODOFPGA Figure out a proper number for max_retries polling for lock
763 * use 50 for now.
765 uint32_t max_retries = 50;
767 /* check if GSP4 is transmitted */
768 REG_WAIT(DP_SEC_CNTL2, DP_SEC_GSP4_SEND_PENDING,
769 0, 10, max_retries);
771 /* disable GSP4 transmitting */
772 REG_UPDATE(DP_SEC_CNTL2, DP_SEC_GSP4_SEND, 0);
774 /* transmit GSP4 at the earliest time in a frame */
775 REG_UPDATE(DP_SEC_CNTL2, DP_SEC_GSP4_SEND_ANY_LINE, 1);
777 /*we need turn on clock before programming AFMT block*/
778 REG_UPDATE(AFMT_CNTL, AFMT_AUDIO_CLOCK_EN, 1);
780 /* check if HW reading GSP memory */
781 REG_WAIT(AFMT_VBI_PACKET_CONTROL, AFMT_GENERIC_CONFLICT,
782 0, 10, max_retries);
784 /* HW does is not reading GSP memory not reading too long ->
785 * something wrong. clear GPS memory access and notify?
786 * hw SW is writing to GSP memory
788 REG_UPDATE(AFMT_VBI_PACKET_CONTROL, AFMT_GENERIC_CONFLICT_CLR, 1);
790 /* use generic packet 4 for immediate sdp message */
791 REG_UPDATE(AFMT_VBI_PACKET_CONTROL,
792 AFMT_GENERIC_INDEX, 4);
794 /* write generic packet header
795 * (4th byte is for GENERIC0 only)
797 REG_SET_4(AFMT_GENERIC_HDR, 0,
798 AFMT_GENERIC_HB0, custom_sdp_message[0],
799 AFMT_GENERIC_HB1, custom_sdp_message[1],
800 AFMT_GENERIC_HB2, custom_sdp_message[2],
801 AFMT_GENERIC_HB3, custom_sdp_message[3]);
803 /* write generic packet contents
804 * (we never use last 4 bytes)
805 * there are 8 (0-7) mmDIG0_AFMT_GENERIC0_x registers
808 const uint32_t *content =
809 (const uint32_t *) &custom_sdp_message[4];
811 REG_WRITE(AFMT_GENERIC_0, *content++);
812 REG_WRITE(AFMT_GENERIC_1, *content++);
813 REG_WRITE(AFMT_GENERIC_2, *content++);
814 REG_WRITE(AFMT_GENERIC_3, *content++);
815 REG_WRITE(AFMT_GENERIC_4, *content++);
816 REG_WRITE(AFMT_GENERIC_5, *content++);
817 REG_WRITE(AFMT_GENERIC_6, *content++);
818 REG_WRITE(AFMT_GENERIC_7, *content);
821 /* check whether GENERIC4 registers double buffer update in immediate mode
822 * is pending
824 REG_WAIT(AFMT_VBI_PACKET_CONTROL1, AFMT_GENERIC4_IMMEDIATE_UPDATE_PENDING,
825 0, 10, max_retries);
827 /* atomically update double-buffered GENERIC4 registers in immediate mode
828 * (update immediately)
830 REG_UPDATE(AFMT_VBI_PACKET_CONTROL1,
831 AFMT_GENERIC4_IMMEDIATE_UPDATE, 1);
833 /* enable GSP4 transmitting */
834 REG_UPDATE(DP_SEC_CNTL2, DP_SEC_GSP4_SEND, 1);
836 /* This bit is the master enable bit.
837 * When enabling secondary stream engine,
838 * this master bit must also be set.
839 * This register shared with audio info frame.
840 * Therefore we need to enable master bit
841 * if at least on of the fields is not 0
843 value = REG_READ(DP_SEC_CNTL);
844 if (value)
845 REG_UPDATE(DP_SEC_CNTL, DP_SEC_STREAM_ENABLE, 1);
848 void enc1_stream_encoder_stop_dp_info_packets(
849 struct stream_encoder *enc)
851 /* stop generic packets on DP */
852 struct dcn10_stream_encoder *enc1 = DCN10STRENC_FROM_STRENC(enc);
853 uint32_t value = 0;
855 REG_SET_10(DP_SEC_CNTL, 0,
856 DP_SEC_GSP0_ENABLE, 0,
857 DP_SEC_GSP1_ENABLE, 0,
858 DP_SEC_GSP2_ENABLE, 0,
859 DP_SEC_GSP3_ENABLE, 0,
860 DP_SEC_GSP4_ENABLE, 0,
861 DP_SEC_GSP5_ENABLE, 0,
862 DP_SEC_GSP6_ENABLE, 0,
863 DP_SEC_GSP7_ENABLE, 0,
864 DP_SEC_MPG_ENABLE, 0,
865 DP_SEC_STREAM_ENABLE, 0);
867 /* this register shared with audio info frame.
868 * therefore we need to keep master enabled
869 * if at least one of the fields is not 0 */
870 value = REG_READ(DP_SEC_CNTL);
871 if (value)
872 REG_UPDATE(DP_SEC_CNTL, DP_SEC_STREAM_ENABLE, 1);
876 void enc1_stream_encoder_dp_blank(
877 struct stream_encoder *enc)
879 struct dcn10_stream_encoder *enc1 = DCN10STRENC_FROM_STRENC(enc);
880 uint32_t reg1 = 0;
881 uint32_t max_retries = DP_BLANK_MAX_RETRY * 10;
883 /* Note: For CZ, we are changing driver default to disable
884 * stream deferred to next VBLANK. If results are positive, we
885 * will make the same change to all DCE versions. There are a
886 * handful of panels that cannot handle disable stream at
887 * HBLANK and will result in a white line flash across the
888 * screen on stream disable.
890 REG_GET(DP_VID_STREAM_CNTL, DP_VID_STREAM_ENABLE, &reg1);
891 if ((reg1 & 0x1) == 0)
892 /*stream not enabled*/
893 return;
894 /* Specify the video stream disable point
895 * (2 = start of the next vertical blank)
897 REG_UPDATE(DP_VID_STREAM_CNTL, DP_VID_STREAM_DIS_DEFER, 2);
898 /* Larger delay to wait until VBLANK - use max retry of
899 * 10us*10200=102ms. This covers 100.0ms of minimum 10 Hz mode +
900 * a little more because we may not trust delay accuracy.
902 max_retries = DP_BLANK_MAX_RETRY * 501;
904 /* disable DP stream */
905 REG_UPDATE(DP_VID_STREAM_CNTL, DP_VID_STREAM_ENABLE, 0);
907 /* the encoder stops sending the video stream
908 * at the start of the vertical blanking.
909 * Poll for DP_VID_STREAM_STATUS == 0
912 REG_WAIT(DP_VID_STREAM_CNTL, DP_VID_STREAM_STATUS,
914 10, max_retries);
916 /* Tell the DP encoder to ignore timing from CRTC, must be done after
917 * the polling. If we set DP_STEER_FIFO_RESET before DP stream blank is
918 * complete, stream status will be stuck in video stream enabled state,
919 * i.e. DP_VID_STREAM_STATUS stuck at 1.
922 REG_UPDATE(DP_STEER_FIFO, DP_STEER_FIFO_RESET, true);
925 /* output video stream to link encoder */
926 void enc1_stream_encoder_dp_unblank(
927 struct stream_encoder *enc,
928 const struct encoder_unblank_param *param)
930 struct dcn10_stream_encoder *enc1 = DCN10STRENC_FROM_STRENC(enc);
932 if (param->link_settings.link_rate != LINK_RATE_UNKNOWN) {
933 uint32_t n_vid = 0x8000;
934 uint32_t m_vid;
935 uint32_t n_multiply = 0;
936 uint64_t m_vid_l = n_vid;
938 /* YCbCr 4:2:0 : Computed VID_M will be 2X the input rate */
939 if (param->timing.pixel_encoding == PIXEL_ENCODING_YCBCR420) {
940 /*this param->pixel_clk_khz is half of 444 rate for 420 already*/
941 n_multiply = 1;
943 /* M / N = Fstream / Flink
944 * m_vid / n_vid = pixel rate / link rate
947 m_vid_l *= param->timing.pix_clk_100hz / 10;
948 m_vid_l = div_u64(m_vid_l,
949 param->link_settings.link_rate
950 * LINK_RATE_REF_FREQ_IN_KHZ);
952 m_vid = (uint32_t) m_vid_l;
954 /* enable auto measurement */
956 REG_UPDATE(DP_VID_TIMING, DP_VID_M_N_GEN_EN, 0);
958 /* auto measurement need 1 full 0x8000 symbol cycle to kick in,
959 * therefore program initial value for Mvid and Nvid
962 REG_UPDATE(DP_VID_N, DP_VID_N, n_vid);
964 REG_UPDATE(DP_VID_M, DP_VID_M, m_vid);
966 REG_UPDATE_2(DP_VID_TIMING,
967 DP_VID_M_N_GEN_EN, 1,
968 DP_VID_N_MUL, n_multiply);
971 /* set DIG_START to 0x1 to resync FIFO */
973 REG_UPDATE(DIG_FE_CNTL, DIG_START, 1);
975 /* switch DP encoder to CRTC data */
977 REG_UPDATE(DP_STEER_FIFO, DP_STEER_FIFO_RESET, 0);
979 /* wait 100us for DIG/DP logic to prime
980 * (i.e. a few video lines)
982 udelay(100);
984 /* the hardware would start sending video at the start of the next DP
985 * frame (i.e. rising edge of the vblank).
986 * NOTE: We used to program DP_VID_STREAM_DIS_DEFER = 2 here, but this
987 * register has no effect on enable transition! HW always guarantees
988 * VID_STREAM enable at start of next frame, and this is not
989 * programmable
992 REG_UPDATE(DP_VID_STREAM_CNTL, DP_VID_STREAM_ENABLE, true);
995 void enc1_stream_encoder_set_avmute(
996 struct stream_encoder *enc,
997 bool enable)
999 struct dcn10_stream_encoder *enc1 = DCN10STRENC_FROM_STRENC(enc);
1000 unsigned int value = enable ? 1 : 0;
1002 REG_UPDATE(HDMI_GC, HDMI_GC_AVMUTE, value);
1005 void enc1_reset_hdmi_stream_attribute(
1006 struct stream_encoder *enc)
1008 struct dcn10_stream_encoder *enc1 = DCN10STRENC_FROM_STRENC(enc);
1010 REG_UPDATE_5(HDMI_CONTROL,
1011 HDMI_PACKET_GEN_VERSION, 1,
1012 HDMI_KEEPOUT_MODE, 1,
1013 HDMI_DEEP_COLOR_ENABLE, 0,
1014 HDMI_DATA_SCRAMBLE_EN, 0,
1015 HDMI_CLOCK_CHANNEL_RATE, 0);
1019 #define DP_SEC_AUD_N__DP_SEC_AUD_N__DEFAULT 0x8000
1020 #define DP_SEC_TIMESTAMP__DP_SEC_TIMESTAMP_MODE__AUTO_CALC 1
1022 #include "include/audio_types.h"
1025 /* 25.2MHz/1.001*/
1026 /* 25.2MHz/1.001*/
1027 /* 25.2MHz*/
1028 /* 27MHz */
1029 /* 27MHz*1.001*/
1030 /* 27MHz*1.001*/
1031 /* 54MHz*/
1032 /* 54MHz*1.001*/
1033 /* 74.25MHz/1.001*/
1034 /* 74.25MHz*/
1035 /* 148.5MHz/1.001*/
1036 /* 148.5MHz*/
1038 static const struct audio_clock_info audio_clock_info_table[16] = {
1039 {2517, 4576, 28125, 7007, 31250, 6864, 28125},
1040 {2518, 4576, 28125, 7007, 31250, 6864, 28125},
1041 {2520, 4096, 25200, 6272, 28000, 6144, 25200},
1042 {2700, 4096, 27000, 6272, 30000, 6144, 27000},
1043 {2702, 4096, 27027, 6272, 30030, 6144, 27027},
1044 {2703, 4096, 27027, 6272, 30030, 6144, 27027},
1045 {5400, 4096, 54000, 6272, 60000, 6144, 54000},
1046 {5405, 4096, 54054, 6272, 60060, 6144, 54054},
1047 {7417, 11648, 210937, 17836, 234375, 11648, 140625},
1048 {7425, 4096, 74250, 6272, 82500, 6144, 74250},
1049 {14835, 11648, 421875, 8918, 234375, 5824, 140625},
1050 {14850, 4096, 148500, 6272, 165000, 6144, 148500},
1051 {29670, 5824, 421875, 4459, 234375, 5824, 281250},
1052 {29700, 3072, 222750, 4704, 247500, 5120, 247500},
1053 {59340, 5824, 843750, 8918, 937500, 5824, 562500},
1054 {59400, 3072, 445500, 9408, 990000, 6144, 594000}
1057 static const struct audio_clock_info audio_clock_info_table_36bpc[14] = {
1058 {2517, 9152, 84375, 7007, 48875, 9152, 56250},
1059 {2518, 9152, 84375, 7007, 48875, 9152, 56250},
1060 {2520, 4096, 37800, 6272, 42000, 6144, 37800},
1061 {2700, 4096, 40500, 6272, 45000, 6144, 40500},
1062 {2702, 8192, 81081, 6272, 45045, 8192, 54054},
1063 {2703, 8192, 81081, 6272, 45045, 8192, 54054},
1064 {5400, 4096, 81000, 6272, 90000, 6144, 81000},
1065 {5405, 4096, 81081, 6272, 90090, 6144, 81081},
1066 {7417, 11648, 316406, 17836, 351562, 11648, 210937},
1067 {7425, 4096, 111375, 6272, 123750, 6144, 111375},
1068 {14835, 11648, 632812, 17836, 703125, 11648, 421875},
1069 {14850, 4096, 222750, 6272, 247500, 6144, 222750},
1070 {29670, 5824, 632812, 8918, 703125, 5824, 421875},
1071 {29700, 4096, 445500, 4704, 371250, 5120, 371250}
1074 static const struct audio_clock_info audio_clock_info_table_48bpc[14] = {
1075 {2517, 4576, 56250, 7007, 62500, 6864, 56250},
1076 {2518, 4576, 56250, 7007, 62500, 6864, 56250},
1077 {2520, 4096, 50400, 6272, 56000, 6144, 50400},
1078 {2700, 4096, 54000, 6272, 60000, 6144, 54000},
1079 {2702, 4096, 54054, 6267, 60060, 8192, 54054},
1080 {2703, 4096, 54054, 6272, 60060, 8192, 54054},
1081 {5400, 4096, 108000, 6272, 120000, 6144, 108000},
1082 {5405, 4096, 108108, 6272, 120120, 6144, 108108},
1083 {7417, 11648, 421875, 17836, 468750, 11648, 281250},
1084 {7425, 4096, 148500, 6272, 165000, 6144, 148500},
1085 {14835, 11648, 843750, 8918, 468750, 11648, 281250},
1086 {14850, 4096, 297000, 6272, 330000, 6144, 297000},
1087 {29670, 5824, 843750, 4459, 468750, 5824, 562500},
1088 {29700, 3072, 445500, 4704, 495000, 5120, 495000}
1093 static union audio_cea_channels speakers_to_channels(
1094 struct audio_speaker_flags speaker_flags)
1096 union audio_cea_channels cea_channels = {0};
1098 /* these are one to one */
1099 cea_channels.channels.FL = speaker_flags.FL_FR;
1100 cea_channels.channels.FR = speaker_flags.FL_FR;
1101 cea_channels.channels.LFE = speaker_flags.LFE;
1102 cea_channels.channels.FC = speaker_flags.FC;
1104 /* if Rear Left and Right exist move RC speaker to channel 7
1105 * otherwise to channel 5
1107 if (speaker_flags.RL_RR) {
1108 cea_channels.channels.RL_RC = speaker_flags.RL_RR;
1109 cea_channels.channels.RR = speaker_flags.RL_RR;
1110 cea_channels.channels.RC_RLC_FLC = speaker_flags.RC;
1111 } else {
1112 cea_channels.channels.RL_RC = speaker_flags.RC;
1115 /* FRONT Left Right Center and REAR Left Right Center are exclusive */
1116 if (speaker_flags.FLC_FRC) {
1117 cea_channels.channels.RC_RLC_FLC = speaker_flags.FLC_FRC;
1118 cea_channels.channels.RRC_FRC = speaker_flags.FLC_FRC;
1119 } else {
1120 cea_channels.channels.RC_RLC_FLC = speaker_flags.RLC_RRC;
1121 cea_channels.channels.RRC_FRC = speaker_flags.RLC_RRC;
1124 return cea_channels;
1127 void get_audio_clock_info(
1128 enum dc_color_depth color_depth,
1129 uint32_t crtc_pixel_clock_100Hz,
1130 uint32_t actual_pixel_clock_100Hz,
1131 struct audio_clock_info *audio_clock_info)
1133 const struct audio_clock_info *clock_info;
1134 uint32_t index;
1135 uint32_t crtc_pixel_clock_in_10khz = crtc_pixel_clock_100Hz / 100;
1136 uint32_t audio_array_size;
1138 switch (color_depth) {
1139 case COLOR_DEPTH_161616:
1140 clock_info = audio_clock_info_table_48bpc;
1141 audio_array_size = ARRAY_SIZE(
1142 audio_clock_info_table_48bpc);
1143 break;
1144 case COLOR_DEPTH_121212:
1145 clock_info = audio_clock_info_table_36bpc;
1146 audio_array_size = ARRAY_SIZE(
1147 audio_clock_info_table_36bpc);
1148 break;
1149 default:
1150 clock_info = audio_clock_info_table;
1151 audio_array_size = ARRAY_SIZE(
1152 audio_clock_info_table);
1153 break;
1156 if (clock_info != NULL) {
1157 /* search for exact pixel clock in table */
1158 for (index = 0; index < audio_array_size; index++) {
1159 if (clock_info[index].pixel_clock_in_10khz >
1160 crtc_pixel_clock_in_10khz)
1161 break; /* not match */
1162 else if (clock_info[index].pixel_clock_in_10khz ==
1163 crtc_pixel_clock_in_10khz) {
1164 /* match found */
1165 *audio_clock_info = clock_info[index];
1166 return;
1171 /* not found */
1172 if (actual_pixel_clock_100Hz == 0)
1173 actual_pixel_clock_100Hz = crtc_pixel_clock_100Hz;
1175 /* See HDMI spec the table entry under
1176 * pixel clock of "Other". */
1177 audio_clock_info->pixel_clock_in_10khz =
1178 actual_pixel_clock_100Hz / 100;
1179 audio_clock_info->cts_32khz = actual_pixel_clock_100Hz / 10;
1180 audio_clock_info->cts_44khz = actual_pixel_clock_100Hz / 10;
1181 audio_clock_info->cts_48khz = actual_pixel_clock_100Hz / 10;
1183 audio_clock_info->n_32khz = 4096;
1184 audio_clock_info->n_44khz = 6272;
1185 audio_clock_info->n_48khz = 6144;
1188 static void enc1_se_audio_setup(
1189 struct stream_encoder *enc,
1190 unsigned int az_inst,
1191 struct audio_info *audio_info)
1193 struct dcn10_stream_encoder *enc1 = DCN10STRENC_FROM_STRENC(enc);
1195 uint32_t channels = 0;
1197 ASSERT(audio_info);
1198 if (audio_info == NULL)
1199 /* This should not happen.it does so we don't get BSOD*/
1200 return;
1202 channels = speakers_to_channels(audio_info->flags.speaker_flags).all;
1204 /* setup the audio stream source select (audio -> dig mapping) */
1205 REG_SET(AFMT_AUDIO_SRC_CONTROL, 0, AFMT_AUDIO_SRC_SELECT, az_inst);
1207 /* Channel allocation */
1208 REG_UPDATE(AFMT_AUDIO_PACKET_CONTROL2, AFMT_AUDIO_CHANNEL_ENABLE, channels);
1211 static void enc1_se_setup_hdmi_audio(
1212 struct stream_encoder *enc,
1213 const struct audio_crtc_info *crtc_info)
1215 struct dcn10_stream_encoder *enc1 = DCN10STRENC_FROM_STRENC(enc);
1217 struct audio_clock_info audio_clock_info = {0};
1219 /* HDMI_AUDIO_PACKET_CONTROL */
1220 REG_UPDATE(HDMI_AUDIO_PACKET_CONTROL,
1221 HDMI_AUDIO_DELAY_EN, 1);
1223 /* AFMT_AUDIO_PACKET_CONTROL */
1224 REG_UPDATE(AFMT_AUDIO_PACKET_CONTROL, AFMT_60958_CS_UPDATE, 1);
1226 /* AFMT_AUDIO_PACKET_CONTROL2 */
1227 REG_UPDATE_2(AFMT_AUDIO_PACKET_CONTROL2,
1228 AFMT_AUDIO_LAYOUT_OVRD, 0,
1229 AFMT_60958_OSF_OVRD, 0);
1231 /* HDMI_ACR_PACKET_CONTROL */
1232 REG_UPDATE_3(HDMI_ACR_PACKET_CONTROL,
1233 HDMI_ACR_AUTO_SEND, 1,
1234 HDMI_ACR_SOURCE, 0,
1235 HDMI_ACR_AUDIO_PRIORITY, 0);
1237 /* Program audio clock sample/regeneration parameters */
1238 get_audio_clock_info(crtc_info->color_depth,
1239 crtc_info->requested_pixel_clock_100Hz,
1240 crtc_info->calculated_pixel_clock_100Hz,
1241 &audio_clock_info);
1242 DC_LOG_HW_AUDIO(
1243 "\n%s:Input::requested_pixel_clock_100Hz = %d" \
1244 "calculated_pixel_clock_100Hz = %d \n", __func__, \
1245 crtc_info->requested_pixel_clock_100Hz, \
1246 crtc_info->calculated_pixel_clock_100Hz);
1248 /* HDMI_ACR_32_0__HDMI_ACR_CTS_32_MASK */
1249 REG_UPDATE(HDMI_ACR_32_0, HDMI_ACR_CTS_32, audio_clock_info.cts_32khz);
1251 /* HDMI_ACR_32_1__HDMI_ACR_N_32_MASK */
1252 REG_UPDATE(HDMI_ACR_32_1, HDMI_ACR_N_32, audio_clock_info.n_32khz);
1254 /* HDMI_ACR_44_0__HDMI_ACR_CTS_44_MASK */
1255 REG_UPDATE(HDMI_ACR_44_0, HDMI_ACR_CTS_44, audio_clock_info.cts_44khz);
1257 /* HDMI_ACR_44_1__HDMI_ACR_N_44_MASK */
1258 REG_UPDATE(HDMI_ACR_44_1, HDMI_ACR_N_44, audio_clock_info.n_44khz);
1260 /* HDMI_ACR_48_0__HDMI_ACR_CTS_48_MASK */
1261 REG_UPDATE(HDMI_ACR_48_0, HDMI_ACR_CTS_48, audio_clock_info.cts_48khz);
1263 /* HDMI_ACR_48_1__HDMI_ACR_N_48_MASK */
1264 REG_UPDATE(HDMI_ACR_48_1, HDMI_ACR_N_48, audio_clock_info.n_48khz);
1266 /* Video driver cannot know in advance which sample rate will
1267 * be used by HD Audio driver
1268 * HDMI_ACR_PACKET_CONTROL__HDMI_ACR_N_MULTIPLE field is
1269 * programmed below in interruppt callback
1272 /* AFMT_60958_0__AFMT_60958_CS_CHANNEL_NUMBER_L_MASK &
1273 * AFMT_60958_0__AFMT_60958_CS_CLOCK_ACCURACY_MASK
1275 REG_UPDATE_2(AFMT_60958_0,
1276 AFMT_60958_CS_CHANNEL_NUMBER_L, 1,
1277 AFMT_60958_CS_CLOCK_ACCURACY, 0);
1279 /* AFMT_60958_1 AFMT_60958_CS_CHALNNEL_NUMBER_R */
1280 REG_UPDATE(AFMT_60958_1, AFMT_60958_CS_CHANNEL_NUMBER_R, 2);
1282 /* AFMT_60958_2 now keep this settings until
1283 * Programming guide comes out
1285 REG_UPDATE_6(AFMT_60958_2,
1286 AFMT_60958_CS_CHANNEL_NUMBER_2, 3,
1287 AFMT_60958_CS_CHANNEL_NUMBER_3, 4,
1288 AFMT_60958_CS_CHANNEL_NUMBER_4, 5,
1289 AFMT_60958_CS_CHANNEL_NUMBER_5, 6,
1290 AFMT_60958_CS_CHANNEL_NUMBER_6, 7,
1291 AFMT_60958_CS_CHANNEL_NUMBER_7, 8);
1294 static void enc1_se_setup_dp_audio(
1295 struct stream_encoder *enc)
1297 struct dcn10_stream_encoder *enc1 = DCN10STRENC_FROM_STRENC(enc);
1299 /* --- DP Audio packet configurations --- */
1301 /* ATP Configuration */
1302 REG_SET(DP_SEC_AUD_N, 0,
1303 DP_SEC_AUD_N, DP_SEC_AUD_N__DP_SEC_AUD_N__DEFAULT);
1305 /* Async/auto-calc timestamp mode */
1306 REG_SET(DP_SEC_TIMESTAMP, 0, DP_SEC_TIMESTAMP_MODE,
1307 DP_SEC_TIMESTAMP__DP_SEC_TIMESTAMP_MODE__AUTO_CALC);
1309 /* --- The following are the registers
1310 * copied from the SetupHDMI ---
1313 /* AFMT_AUDIO_PACKET_CONTROL */
1314 REG_UPDATE(AFMT_AUDIO_PACKET_CONTROL, AFMT_60958_CS_UPDATE, 1);
1316 /* AFMT_AUDIO_PACKET_CONTROL2 */
1317 /* Program the ATP and AIP next */
1318 REG_UPDATE_2(AFMT_AUDIO_PACKET_CONTROL2,
1319 AFMT_AUDIO_LAYOUT_OVRD, 0,
1320 AFMT_60958_OSF_OVRD, 0);
1322 /* AFMT_INFOFRAME_CONTROL0 */
1323 REG_UPDATE(AFMT_INFOFRAME_CONTROL0, AFMT_AUDIO_INFO_UPDATE, 1);
1325 /* AFMT_60958_0__AFMT_60958_CS_CLOCK_ACCURACY_MASK */
1326 REG_UPDATE(AFMT_60958_0, AFMT_60958_CS_CLOCK_ACCURACY, 0);
1329 void enc1_se_enable_audio_clock(
1330 struct stream_encoder *enc,
1331 bool enable)
1333 struct dcn10_stream_encoder *enc1 = DCN10STRENC_FROM_STRENC(enc);
1335 if (REG(AFMT_CNTL) == 0)
1336 return; /* DCE8/10 does not have this register */
1338 REG_UPDATE(AFMT_CNTL, AFMT_AUDIO_CLOCK_EN, !!enable);
1340 /* wait for AFMT clock to turn on,
1341 * expectation: this should complete in 1-2 reads
1343 * REG_WAIT(AFMT_CNTL, AFMT_AUDIO_CLOCK_ON, !!enable, 1, 10);
1345 * TODO: wait for clock_on does not work well. May need HW
1346 * program sequence. But audio seems work normally even without wait
1347 * for clock_on status change
1351 void enc1_se_enable_dp_audio(
1352 struct stream_encoder *enc)
1354 struct dcn10_stream_encoder *enc1 = DCN10STRENC_FROM_STRENC(enc);
1356 /* Enable Audio packets */
1357 REG_UPDATE(DP_SEC_CNTL, DP_SEC_ASP_ENABLE, 1);
1359 /* Program the ATP and AIP next */
1360 REG_UPDATE_2(DP_SEC_CNTL,
1361 DP_SEC_ATP_ENABLE, 1,
1362 DP_SEC_AIP_ENABLE, 1);
1364 /* Program STREAM_ENABLE after all the other enables. */
1365 REG_UPDATE(DP_SEC_CNTL, DP_SEC_STREAM_ENABLE, 1);
1368 static void enc1_se_disable_dp_audio(
1369 struct stream_encoder *enc)
1371 struct dcn10_stream_encoder *enc1 = DCN10STRENC_FROM_STRENC(enc);
1372 uint32_t value = 0;
1374 /* Disable Audio packets */
1375 REG_UPDATE_5(DP_SEC_CNTL,
1376 DP_SEC_ASP_ENABLE, 0,
1377 DP_SEC_ATP_ENABLE, 0,
1378 DP_SEC_AIP_ENABLE, 0,
1379 DP_SEC_ACM_ENABLE, 0,
1380 DP_SEC_STREAM_ENABLE, 0);
1382 /* This register shared with encoder info frame. Therefore we need to
1383 * keep master enabled if at least on of the fields is not 0
1385 value = REG_READ(DP_SEC_CNTL);
1386 if (value != 0)
1387 REG_UPDATE(DP_SEC_CNTL, DP_SEC_STREAM_ENABLE, 1);
1391 void enc1_se_audio_mute_control(
1392 struct stream_encoder *enc,
1393 bool mute)
1395 struct dcn10_stream_encoder *enc1 = DCN10STRENC_FROM_STRENC(enc);
1397 REG_UPDATE(AFMT_AUDIO_PACKET_CONTROL, AFMT_AUDIO_SAMPLE_SEND, !mute);
1400 void enc1_se_dp_audio_setup(
1401 struct stream_encoder *enc,
1402 unsigned int az_inst,
1403 struct audio_info *info)
1405 enc1_se_audio_setup(enc, az_inst, info);
1408 void enc1_se_dp_audio_enable(
1409 struct stream_encoder *enc)
1411 enc1_se_enable_audio_clock(enc, true);
1412 enc1_se_setup_dp_audio(enc);
1413 enc1_se_enable_dp_audio(enc);
1416 void enc1_se_dp_audio_disable(
1417 struct stream_encoder *enc)
1419 enc1_se_disable_dp_audio(enc);
1420 enc1_se_enable_audio_clock(enc, false);
1423 void enc1_se_hdmi_audio_setup(
1424 struct stream_encoder *enc,
1425 unsigned int az_inst,
1426 struct audio_info *info,
1427 struct audio_crtc_info *audio_crtc_info)
1429 enc1_se_enable_audio_clock(enc, true);
1430 enc1_se_setup_hdmi_audio(enc, audio_crtc_info);
1431 enc1_se_audio_setup(enc, az_inst, info);
1434 void enc1_se_hdmi_audio_disable(
1435 struct stream_encoder *enc)
1437 enc1_se_enable_audio_clock(enc, false);
1441 void enc1_setup_stereo_sync(
1442 struct stream_encoder *enc,
1443 int tg_inst, bool enable)
1445 struct dcn10_stream_encoder *enc1 = DCN10STRENC_FROM_STRENC(enc);
1446 REG_UPDATE(DIG_FE_CNTL, DIG_STEREOSYNC_SELECT, tg_inst);
1447 REG_UPDATE(DIG_FE_CNTL, DIG_STEREOSYNC_GATE_EN, !enable);
1450 void enc1_dig_connect_to_otg(
1451 struct stream_encoder *enc,
1452 int tg_inst)
1454 struct dcn10_stream_encoder *enc1 = DCN10STRENC_FROM_STRENC(enc);
1456 REG_UPDATE(DIG_FE_CNTL, DIG_SOURCE_SELECT, tg_inst);
1459 unsigned int enc1_dig_source_otg(
1460 struct stream_encoder *enc)
1462 uint32_t tg_inst = 0;
1463 struct dcn10_stream_encoder *enc1 = DCN10STRENC_FROM_STRENC(enc);
1465 REG_GET(DIG_FE_CNTL, DIG_SOURCE_SELECT, &tg_inst);
1467 return tg_inst;
1470 bool enc1_stream_encoder_dp_get_pixel_format(
1471 struct stream_encoder *enc,
1472 enum dc_pixel_encoding *encoding,
1473 enum dc_color_depth *depth)
1475 uint32_t hw_encoding = 0;
1476 uint32_t hw_depth = 0;
1477 struct dcn10_stream_encoder *enc1 = DCN10STRENC_FROM_STRENC(enc);
1479 if (enc == NULL ||
1480 encoding == NULL ||
1481 depth == NULL)
1482 return false;
1484 REG_GET_2(DP_PIXEL_FORMAT,
1485 DP_PIXEL_ENCODING, &hw_encoding,
1486 DP_COMPONENT_DEPTH, &hw_depth);
1488 switch (hw_depth) {
1489 case DP_COMPONENT_PIXEL_DEPTH_6BPC:
1490 *depth = COLOR_DEPTH_666;
1491 break;
1492 case DP_COMPONENT_PIXEL_DEPTH_8BPC:
1493 *depth = COLOR_DEPTH_888;
1494 break;
1495 case DP_COMPONENT_PIXEL_DEPTH_10BPC:
1496 *depth = COLOR_DEPTH_101010;
1497 break;
1498 case DP_COMPONENT_PIXEL_DEPTH_12BPC:
1499 *depth = COLOR_DEPTH_121212;
1500 break;
1501 case DP_COMPONENT_PIXEL_DEPTH_16BPC:
1502 *depth = COLOR_DEPTH_161616;
1503 break;
1504 default:
1505 *depth = COLOR_DEPTH_UNDEFINED;
1506 break;
1509 switch (hw_encoding) {
1510 case DP_PIXEL_ENCODING_TYPE_RGB444:
1511 *encoding = PIXEL_ENCODING_RGB;
1512 break;
1513 case DP_PIXEL_ENCODING_TYPE_YCBCR422:
1514 *encoding = PIXEL_ENCODING_YCBCR422;
1515 break;
1516 case DP_PIXEL_ENCODING_TYPE_YCBCR444:
1517 case DP_PIXEL_ENCODING_TYPE_Y_ONLY:
1518 *encoding = PIXEL_ENCODING_YCBCR444;
1519 break;
1520 case DP_PIXEL_ENCODING_TYPE_YCBCR420:
1521 *encoding = PIXEL_ENCODING_YCBCR420;
1522 break;
1523 default:
1524 *encoding = PIXEL_ENCODING_UNDEFINED;
1525 break;
1527 return true;
1530 static const struct stream_encoder_funcs dcn10_str_enc_funcs = {
1531 .dp_set_stream_attribute =
1532 enc1_stream_encoder_dp_set_stream_attribute,
1533 .hdmi_set_stream_attribute =
1534 enc1_stream_encoder_hdmi_set_stream_attribute,
1535 .dvi_set_stream_attribute =
1536 enc1_stream_encoder_dvi_set_stream_attribute,
1537 .set_throttled_vcp_size =
1538 enc1_stream_encoder_set_throttled_vcp_size,
1539 .update_hdmi_info_packets =
1540 enc1_stream_encoder_update_hdmi_info_packets,
1541 .stop_hdmi_info_packets =
1542 enc1_stream_encoder_stop_hdmi_info_packets,
1543 .update_dp_info_packets =
1544 enc1_stream_encoder_update_dp_info_packets,
1545 .send_immediate_sdp_message =
1546 enc1_stream_encoder_send_immediate_sdp_message,
1547 .stop_dp_info_packets =
1548 enc1_stream_encoder_stop_dp_info_packets,
1549 .dp_blank =
1550 enc1_stream_encoder_dp_blank,
1551 .dp_unblank =
1552 enc1_stream_encoder_dp_unblank,
1553 .audio_mute_control = enc1_se_audio_mute_control,
1555 .dp_audio_setup = enc1_se_dp_audio_setup,
1556 .dp_audio_enable = enc1_se_dp_audio_enable,
1557 .dp_audio_disable = enc1_se_dp_audio_disable,
1559 .hdmi_audio_setup = enc1_se_hdmi_audio_setup,
1560 .hdmi_audio_disable = enc1_se_hdmi_audio_disable,
1561 .setup_stereo_sync = enc1_setup_stereo_sync,
1562 .set_avmute = enc1_stream_encoder_set_avmute,
1563 .dig_connect_to_otg = enc1_dig_connect_to_otg,
1564 .hdmi_reset_stream_attribute = enc1_reset_hdmi_stream_attribute,
1565 .dig_source_otg = enc1_dig_source_otg,
1567 .dp_get_pixel_format = enc1_stream_encoder_dp_get_pixel_format,
1570 void dcn10_stream_encoder_construct(
1571 struct dcn10_stream_encoder *enc1,
1572 struct dc_context *ctx,
1573 struct dc_bios *bp,
1574 enum engine_id eng_id,
1575 const struct dcn10_stream_enc_registers *regs,
1576 const struct dcn10_stream_encoder_shift *se_shift,
1577 const struct dcn10_stream_encoder_mask *se_mask)
1579 enc1->base.funcs = &dcn10_str_enc_funcs;
1580 enc1->base.ctx = ctx;
1581 enc1->base.id = eng_id;
1582 enc1->base.bp = bp;
1583 enc1->regs = regs;
1584 enc1->se_shift = se_shift;
1585 enc1->se_mask = se_mask;
1586 enc1->base.stream_enc_inst = eng_id - ENGINE_ID_DIGA;