1 /*
2 * Copyright 2021 Advanced Micro Devices, Inc.
3 *
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:
10 *
11 * The above copyright notice and this permission notice shall be included in
12 * all copies or substantial portions of the Software.
13 *
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.
21 *
22 * Authors: AMD
23 *
24 */
25
26
27 #include "dc_bios_types.h"
28 #include "dcn30/dcn30_dio_stream_encoder.h"
29 #include "dcn32/dcn32_dio_stream_encoder.h"
30 #include "dcn35/dcn35_dio_stream_encoder.h"
31
32 #include "dcn401_dio_stream_encoder.h"
33 #include "reg_helper.h"
34 #include "hw_shared.h"
35 #include "link.h"
36 #include "dpcd_defs.h"
37
38 #define DC_LOGGER \
39 enc1->base.ctx->logger
40
41 #define REG(reg)\
42 (enc1->regs->reg)
43
44 #undef FN
45 #define FN(reg_name, field_name) \
46 enc1->se_shift->field_name, enc1->se_mask->field_name
47
48 #define VBI_LINE_0 0
49 #define HDMI_CLOCK_CHANNEL_RATE_MORE_340M 340000
50
51 #define CTX \
52 enc1->base.ctx
53
54
55
enc401_dp_set_odm_combine(struct stream_encoder * enc,bool odm_combine)56 static void enc401_dp_set_odm_combine(
57 struct stream_encoder *enc,
58 bool odm_combine)
59 {
60 }
61
62 /* setup stream encoder in dvi mode */
enc401_stream_encoder_dvi_set_stream_attribute(struct stream_encoder * enc,struct dc_crtc_timing * crtc_timing,bool is_dual_link)63 static void enc401_stream_encoder_dvi_set_stream_attribute(
64 struct stream_encoder *enc,
65 struct dc_crtc_timing *crtc_timing,
66 bool is_dual_link)
67 {
68 struct dcn10_stream_encoder *enc1 = DCN10STRENC_FROM_STRENC(enc);
69
70 if (!enc->ctx->dc->debug.avoid_vbios_exec_table) {
71 struct bp_encoder_control cntl = {0};
72
73 cntl.action = ENCODER_CONTROL_SETUP;
74 cntl.engine_id = enc1->base.id;
75 cntl.signal = is_dual_link ?
76 SIGNAL_TYPE_DVI_DUAL_LINK : SIGNAL_TYPE_DVI_SINGLE_LINK;
77 cntl.enable_dp_audio = false;
78 cntl.pixel_clock = crtc_timing->pix_clk_100hz / 10;
79 cntl.lanes_number = (is_dual_link) ? LANE_COUNT_EIGHT : LANE_COUNT_FOUR;
80
81 if (enc1->base.bp->funcs->encoder_control(
82 enc1->base.bp, &cntl) != BP_RESULT_OK)
83 return;
84
85 } else {
86
87 //Set pattern for clock channel, default vlue 0x63 does not work
88 REG_UPDATE(DIG_CLOCK_PATTERN, DIG_CLOCK_PATTERN, 0x1F);
89
90 //DIG_BE_TMDS_DVI_MODE : TMDS-DVI mode is already set in link_encoder_setup
91
92 //DIG_SOURCE_SELECT is already set in dig_connect_to_otg
93
94 /* DIG_START is removed from the register spec */
95 }
96
97 ASSERT(crtc_timing->pixel_encoding == PIXEL_ENCODING_RGB);
98 ASSERT(crtc_timing->display_color_depth == COLOR_DEPTH_888);
99 enc401_stream_encoder_set_stream_attribute_helper(enc1, crtc_timing);
100 }
101
102 /* setup stream encoder in hdmi mode */
enc401_stream_encoder_hdmi_set_stream_attribute(struct stream_encoder * enc,struct dc_crtc_timing * crtc_timing,int actual_pix_clk_khz,bool enable_audio)103 static void enc401_stream_encoder_hdmi_set_stream_attribute(
104 struct stream_encoder *enc,
105 struct dc_crtc_timing *crtc_timing,
106 int actual_pix_clk_khz,
107 bool enable_audio)
108 {
109 struct dcn10_stream_encoder *enc1 = DCN10STRENC_FROM_STRENC(enc);
110
111 if (!enc->ctx->dc->debug.avoid_vbios_exec_table) {
112 struct bp_encoder_control cntl = {0};
113
114 cntl.action = ENCODER_CONTROL_SETUP;
115 cntl.engine_id = enc1->base.id;
116 cntl.signal = SIGNAL_TYPE_HDMI_TYPE_A;
117 cntl.enable_dp_audio = enable_audio;
118 cntl.pixel_clock = actual_pix_clk_khz;
119 cntl.lanes_number = LANE_COUNT_FOUR;
120
121 if (enc1->base.bp->funcs->encoder_control(
122 enc1->base.bp, &cntl) != BP_RESULT_OK)
123 return;
124
125 } else {
126
127 //Set pattern for clock channel, default vlue 0x63 does not work
128 REG_UPDATE(DIG_CLOCK_PATTERN, DIG_CLOCK_PATTERN, 0x1F);
129
130 //DIG_BE_TMDS_HDMI_MODE : TMDS-HDMI mode is already set in link_encoder_setup
131
132 //DIG_SOURCE_SELECT is already set in dig_connect_to_otg
133
134 /* DIG_START is removed from the register spec */
135 }
136
137 /* Configure pixel encoding */
138 enc401_stream_encoder_set_stream_attribute_helper(enc1, crtc_timing);
139
140 /* setup HDMI engine */
141 REG_UPDATE_6(HDMI_CONTROL,
142 HDMI_PACKET_GEN_VERSION, 1,
143 HDMI_KEEPOUT_MODE, 1,
144 HDMI_DEEP_COLOR_ENABLE, 0,
145 HDMI_DATA_SCRAMBLE_EN, 0,
146 HDMI_NO_EXTRA_NULL_PACKET_FILLED, 1,
147 HDMI_CLOCK_CHANNEL_RATE, 0);
148
149 /* Configure color depth */
150 switch (crtc_timing->display_color_depth) {
151 case COLOR_DEPTH_888:
152 REG_UPDATE(HDMI_CONTROL, HDMI_DEEP_COLOR_DEPTH, 0);
153 break;
154 case COLOR_DEPTH_101010:
155 if (crtc_timing->pixel_encoding == PIXEL_ENCODING_YCBCR422) {
156 REG_UPDATE_2(HDMI_CONTROL,
157 HDMI_DEEP_COLOR_DEPTH, 1,
158 HDMI_DEEP_COLOR_ENABLE, 0);
159 } else {
160 REG_UPDATE_2(HDMI_CONTROL,
161 HDMI_DEEP_COLOR_DEPTH, 1,
162 HDMI_DEEP_COLOR_ENABLE, 1);
163 }
164 break;
165 case COLOR_DEPTH_121212:
166 if (crtc_timing->pixel_encoding == PIXEL_ENCODING_YCBCR422) {
167 REG_UPDATE_2(HDMI_CONTROL,
168 HDMI_DEEP_COLOR_DEPTH, 2,
169 HDMI_DEEP_COLOR_ENABLE, 0);
170 } else {
171 REG_UPDATE_2(HDMI_CONTROL,
172 HDMI_DEEP_COLOR_DEPTH, 2,
173 HDMI_DEEP_COLOR_ENABLE, 1);
174 }
175 break;
176 case COLOR_DEPTH_161616:
177 REG_UPDATE_2(HDMI_CONTROL,
178 HDMI_DEEP_COLOR_DEPTH, 3,
179 HDMI_DEEP_COLOR_ENABLE, 1);
180 break;
181 default:
182 break;
183 }
184
185 if (actual_pix_clk_khz >= HDMI_CLOCK_CHANNEL_RATE_MORE_340M) {
186 /* enable HDMI data scrambler
187 * HDMI_CLOCK_CHANNEL_RATE_MORE_340M
188 * Clock channel frequency is 1/4 of character rate.
189 */
190 REG_UPDATE_2(HDMI_CONTROL,
191 HDMI_DATA_SCRAMBLE_EN, 1,
192 HDMI_CLOCK_CHANNEL_RATE, 1);
193 } else if (crtc_timing->flags.LTE_340MCSC_SCRAMBLE) {
194
195 /* TODO: New feature for DCE11, still need to implement */
196
197 /* enable HDMI data scrambler
198 * HDMI_CLOCK_CHANNEL_FREQ_EQUAL_TO_CHAR_RATE
199 * Clock channel frequency is the same
200 * as character rate
201 */
202 REG_UPDATE_2(HDMI_CONTROL,
203 HDMI_DATA_SCRAMBLE_EN, 1,
204 HDMI_CLOCK_CHANNEL_RATE, 0);
205 }
206
207
208 /* Enable transmission of General Control packet on every frame */
209 REG_UPDATE_3(HDMI_VBI_PACKET_CONTROL,
210 HDMI_GC_CONT, 1,
211 HDMI_GC_SEND, 1,
212 HDMI_NULL_SEND, 1);
213
214 /* Disable Audio Content Protection packet transmission */
215 REG_UPDATE(HDMI_VBI_PACKET_CONTROL, HDMI_ACP_SEND, 0);
216 /* following belongs to audio */
217 /* Enable Audio InfoFrame packet transmission. */
218 REG_UPDATE(HDMI_INFOFRAME_CONTROL0, HDMI_AUDIO_INFO_SEND, 1);
219
220 /* update double-buffered AUDIO_INFO registers immediately */
221 ASSERT(enc->afmt);
222 enc->afmt->funcs->audio_info_immediate_update(enc->afmt);
223
224 /* Select line number on which to send Audio InfoFrame packets */
225 REG_UPDATE(HDMI_INFOFRAME_CONTROL1, HDMI_AUDIO_INFO_LINE,
226 VBI_LINE_0 + 2);
227
228 /* set HDMI GC AVMUTE */
229 REG_UPDATE(HDMI_GC, HDMI_GC_AVMUTE, 0);
230 }
231
enc401_set_dig_input_mode(struct stream_encoder * enc,unsigned int pix_per_container)232 static void enc401_set_dig_input_mode(struct stream_encoder *enc, unsigned int pix_per_container)
233 {
234 struct dcn10_stream_encoder *enc1 = DCN10STRENC_FROM_STRENC(enc);
235
236 // The naming of this field is confusing, what it means is the output mode of otg, which
237 // is the input mode of the dig
238 switch (pix_per_container) {
239 case 2:
240 REG_UPDATE(DIG_FIFO_CTRL0, DIG_FIFO_OUTPUT_PIXEL_PER_CYCLE, 0x1);
241 break;
242 case 4:
243 REG_UPDATE(DIG_FIFO_CTRL0, DIG_FIFO_OUTPUT_PIXEL_PER_CYCLE, 0x2);
244 break;
245 case 8:
246 REG_UPDATE(DIG_FIFO_CTRL0, DIG_FIFO_OUTPUT_PIXEL_PER_CYCLE, 0x3);
247 break;
248 default:
249 REG_UPDATE(DIG_FIFO_CTRL0, DIG_FIFO_OUTPUT_PIXEL_PER_CYCLE, 0x0);
250 break;
251 }
252 }
253
is_two_pixels_per_containter(const struct dc_crtc_timing * timing)254 static bool is_two_pixels_per_containter(const struct dc_crtc_timing *timing)
255 {
256 bool two_pix = timing->pixel_encoding == PIXEL_ENCODING_YCBCR420;
257
258 two_pix = two_pix || (timing->flags.DSC && timing->pixel_encoding == PIXEL_ENCODING_YCBCR422
259 && !timing->dsc_cfg.ycbcr422_simple);
260 return two_pix;
261 }
262
enc401_stream_encoder_dp_unblank(struct dc_link * link,struct stream_encoder * enc,const struct encoder_unblank_param * param)263 static void enc401_stream_encoder_dp_unblank(
264 struct dc_link *link,
265 struct stream_encoder *enc,
266 const struct encoder_unblank_param *param)
267 {
268 struct dcn10_stream_encoder *enc1 = DCN10STRENC_FROM_STRENC(enc);
269
270 if (param->link_settings.link_rate != LINK_RATE_UNKNOWN) {
271 uint32_t n_vid = 0x8000;
272 uint32_t m_vid;
273 uint32_t pix_per_container = 1;
274 uint64_t m_vid_l = n_vid;
275
276 /* YCbCr 4:2:0 or YCbCr4:2:2 simple + DSC: Computed VID_M will be 2X the input rate */
277 if (is_two_pixels_per_containter(¶m->timing)) {
278 pix_per_container = 2;
279 }
280
281 /* M / N = Fstream / Flink
282 * m_vid / n_vid = pixel rate / link rate
283 */
284 m_vid_l *= param->timing.pix_clk_100hz / pix_per_container / 10;
285 m_vid_l = div_u64(m_vid_l,
286 param->link_settings.link_rate
287 * LINK_RATE_REF_FREQ_IN_KHZ);
288
289 m_vid = (uint32_t) m_vid_l;
290
291 /* enable auto measurement */
292
293 REG_UPDATE(DP_VID_TIMING, DP_VID_M_N_GEN_EN, 0);
294
295 /* auto measurement need 1 full 0x8000 symbol cycle to kick in,
296 * therefore program initial value for Mvid and Nvid
297 */
298
299 REG_UPDATE(DP_VID_N, DP_VID_N, n_vid);
300
301 REG_UPDATE(DP_VID_M, DP_VID_M, m_vid);
302
303 /* reduce jitter based on read rate */
304 switch (param->pix_per_cycle) {
305 case 2:
306 REG_UPDATE(DP_VID_TIMING, DP_VID_N_INTERVAL, 0x1);
307 break;
308 case 4:
309 REG_UPDATE(DP_VID_TIMING, DP_VID_N_INTERVAL, 0x2);
310 break;
311 case 8:
312 REG_UPDATE(DP_VID_TIMING, DP_VID_N_INTERVAL, 0x3);
313 break;
314 default:
315 REG_UPDATE(DP_VID_TIMING, DP_VID_N_INTERVAL, 0x0);
316 break;
317 }
318
319 REG_UPDATE(DP_VID_TIMING, DP_VID_M_N_GEN_EN, 1);
320 }
321
322 /* make sure stream is disabled before resetting steer fifo */
323 REG_UPDATE(DP_VID_STREAM_CNTL, DP_VID_STREAM_ENABLE, false);
324 REG_WAIT(DP_VID_STREAM_CNTL, DP_VID_STREAM_STATUS, 0, 10, 5000);
325
326 /* DIG_START is removed from the register spec */
327
328 /* switch DP encoder to CRTC data, but reset it the fifo first. It may happen
329 * that it overflows during mode transition, and sometimes doesn't recover.
330 */
331 REG_UPDATE(DP_STEER_FIFO, DP_STEER_FIFO_RESET, 1);
332 udelay(10);
333
334 REG_UPDATE(DP_STEER_FIFO, DP_STEER_FIFO_RESET, 0);
335
336 REG_UPDATE(DP_STEER_FIFO, DP_STEER_FIFO_ENABLE, 1);
337
338 REG_UPDATE_2(DP_VID_STREAM_CNTL, DP_VID_STREAM_ENABLE, 1, DP_VID_STREAM_DIS_DEFER, 2);
339 udelay(200);
340
341 /* DIG Resync FIFO now needs to be explicitly enabled
342 */
343 /* read start level = 0 will bring underflow / overflow and DIG_FIFO_ERROR = 1
344 * so set it to 1/2 full = 7 before reset as suggested by hardware team.
345 */
346 REG_UPDATE(DIG_FIFO_CTRL0, DIG_FIFO_READ_START_LEVEL, 0x7);
347
348 REG_UPDATE(DIG_FIFO_CTRL0, DIG_FIFO_RESET, 1);
349
350 REG_WAIT(DIG_FIFO_CTRL0, DIG_FIFO_RESET_DONE, 1, 10, 5000);
351
352 REG_UPDATE(DIG_FIFO_CTRL0, DIG_FIFO_RESET, 0);
353
354 REG_WAIT(DIG_FIFO_CTRL0, DIG_FIFO_RESET_DONE, 0, 10, 5000);
355
356 REG_UPDATE(DIG_FIFO_CTRL0, DIG_FIFO_ENABLE, 1);
357
358 /* wait 100us for DIG/DP logic to prime
359 * (i.e. a few video lines)
360 */
361 udelay(100);
362
363 /* the hardware would start sending video at the start of the next DP
364 * frame (i.e. rising edge of the vblank).
365 * NOTE: We used to program DP_VID_STREAM_DIS_DEFER = 2 here, but this
366 * register has no effect on enable transition! HW always guarantees
367 * VID_STREAM enable at start of next frame, and this is not
368 * programmable
369 */
370
371 REG_UPDATE(DP_VID_STREAM_CNTL, DP_VID_STREAM_ENABLE, true);
372
373 link->dc->link_srv->dp_trace_source_sequence(link, DPCD_SOURCE_SEQ_AFTER_ENABLE_DP_VID_STREAM);
374 }
375
376 /* this function read dsc related register fields to be logged later in dcn10_log_hw_state
377 * into a dcn_dsc_state struct.
378 */
enc401_read_state(struct stream_encoder * enc,struct enc_state * s)379 static void enc401_read_state(struct stream_encoder *enc, struct enc_state *s)
380 {
381 struct dcn10_stream_encoder *enc1 = DCN10STRENC_FROM_STRENC(enc);
382
383 //if dsc is enabled, continue to read
384 REG_GET(DP_PIXEL_FORMAT, PIXEL_ENCODING_TYPE, &s->dsc_mode);
385
386 if (s->dsc_mode) {
387 REG_GET(DP_GSP11_CNTL, DP_SEC_GSP11_LINE_NUM, &s->sec_gsp_pps_line_num);
388
389 REG_GET(DP_MSA_VBID_MISC, DP_VBID6_LINE_REFERENCE, &s->vbid6_line_reference);
390 REG_GET(DP_MSA_VBID_MISC, DP_VBID6_LINE_NUM, &s->vbid6_line_num);
391
392 REG_GET(DP_GSP11_CNTL, DP_SEC_GSP11_ENABLE, &s->sec_gsp_pps_enable);
393 REG_GET(DP_SEC_CNTL, DP_SEC_STREAM_ENABLE, &s->sec_stream_enable);
394 }
395 }
396
enc401_stream_encoder_enable(struct stream_encoder * enc,enum signal_type signal,bool enable)397 static void enc401_stream_encoder_enable(
398 struct stream_encoder *enc,
399 enum signal_type signal,
400 bool enable)
401 {
402 struct dcn10_stream_encoder *enc1 = DCN10STRENC_FROM_STRENC(enc);
403 if (enable) {
404 switch (signal) {
405 case SIGNAL_TYPE_DVI_SINGLE_LINK:
406 case SIGNAL_TYPE_DVI_DUAL_LINK:
407 /* TMDS-DVI */
408 REG_UPDATE(DIG_FE_CLK_CNTL, DIG_FE_MODE, 2);
409 break;
410 case SIGNAL_TYPE_HDMI_TYPE_A:
411 /* TMDS-HDMI */
412 REG_UPDATE(DIG_FE_CLK_CNTL, DIG_FE_MODE, 3);
413 break;
414 case SIGNAL_TYPE_DISPLAY_PORT_MST:
415 /* DP MST */
416 REG_UPDATE(DIG_FE_CLK_CNTL, DIG_FE_MODE, 5);
417 break;
418 case SIGNAL_TYPE_EDP:
419 case SIGNAL_TYPE_DISPLAY_PORT:
420 case SIGNAL_TYPE_VIRTUAL:
421 /* DP SST */
422 REG_UPDATE(DIG_FE_CLK_CNTL, DIG_FE_MODE, 0);
423 break;
424 default:
425 /* invalid mode ! */
426 ASSERT_CRITICAL(false);
427 }
428
429 REG_UPDATE(DIG_FE_CLK_CNTL, DIG_FE_CLK_EN, 1);
430 REG_UPDATE(DIG_FE_EN_CNTL, DIG_FE_ENABLE, 1);
431 } else {
432 REG_UPDATE(DIG_FE_EN_CNTL, DIG_FE_ENABLE, 0);
433 REG_UPDATE(DIG_FE_CLK_CNTL, DIG_FE_CLK_EN, 0);
434 }
435 }
436
enc401_stream_encoder_dp_set_stream_attribute(struct stream_encoder * enc,struct dc_crtc_timing * crtc_timing,enum dc_color_space output_color_space,bool use_vsc_sdp_for_colorimetry,uint32_t enable_sdp_splitting)437 void enc401_stream_encoder_dp_set_stream_attribute(
438 struct stream_encoder *enc,
439 struct dc_crtc_timing *crtc_timing,
440 enum dc_color_space output_color_space,
441 bool use_vsc_sdp_for_colorimetry,
442 uint32_t enable_sdp_splitting)
443 {
444 uint32_t h_active_start;
445 uint32_t v_active_start;
446 uint32_t misc0 = 0;
447 uint32_t misc1 = 0;
448 uint32_t h_blank;
449 uint32_t h_back_porch;
450 uint8_t synchronous_clock = 0; /* asynchronous mode */
451 uint8_t colorimetry_bpc;
452 uint8_t dp_pixel_encoding = 0;
453 uint8_t dp_component_depth = 0;
454 uint8_t dp_translate_pixel_enc = 0;
455 // Fix set but not used warnings
456 //uint8_t dp_pixel_encoding_type = 0;
457 uint8_t dp_compressed_pixel_format = 0;
458
459 struct dcn10_stream_encoder *enc1 = DCN10STRENC_FROM_STRENC(enc);
460 struct dc_crtc_timing hw_crtc_timing = *crtc_timing;
461
462 if (hw_crtc_timing.flags.INTERLACE) {
463 /*the input timing is in VESA spec format with Interlace flag =1*/
464 hw_crtc_timing.v_total /= 2;
465 hw_crtc_timing.v_border_top /= 2;
466 hw_crtc_timing.v_addressable /= 2;
467 hw_crtc_timing.v_border_bottom /= 2;
468 hw_crtc_timing.v_front_porch /= 2;
469 hw_crtc_timing.v_sync_width /= 2;
470 }
471
472
473 /* set pixel encoding */
474 switch (hw_crtc_timing.pixel_encoding) {
475 case PIXEL_ENCODING_YCBCR422:
476 dp_pixel_encoding = DP_PIXEL_ENCODING_TYPE_YCBCR422;
477 break;
478 case PIXEL_ENCODING_YCBCR444:
479 dp_pixel_encoding = DP_PIXEL_ENCODING_TYPE_YCBCR444;
480
481 if (hw_crtc_timing.flags.Y_ONLY)
482 if (hw_crtc_timing.display_color_depth != COLOR_DEPTH_666)
483 /* HW testing only, no use case yet.
484 * Color depth of Y-only could be
485 * 8, 10, 12, 16 bits
486 */
487 dp_pixel_encoding = DP_PIXEL_ENCODING_TYPE_Y_ONLY;
488
489 /* Note: DP_MSA_MISC1 bit 7 is the indicator
490 * of Y-only mode.
491 * This bit is set in HW if register
492 * DP_PIXEL_ENCODING is programmed to 0x4
493 */
494 break;
495 case PIXEL_ENCODING_YCBCR420:
496 dp_pixel_encoding = DP_PIXEL_ENCODING_TYPE_YCBCR420;
497 break;
498 default:
499 dp_pixel_encoding = DP_PIXEL_ENCODING_TYPE_RGB444;
500 break;
501 }
502
503 misc1 = REG_READ(DP_MSA_MISC);
504 /* For YCbCr420 and BT2020 Colorimetry Formats, VSC SDP shall be used.
505 * When MISC1, bit 6, is Set to 1, a Source device uses a VSC SDP to indicate the
506 * Pixel Encoding/Colorimetry Format and that a Sink device shall ignore MISC1, bit 7,
507 * and MISC0, bits 7:1 (MISC1, bit 7, and MISC0, bits 7:1, become "don't care").
508 */
509 if (use_vsc_sdp_for_colorimetry)
510 misc1 = misc1 | 0x40;
511 else
512 misc1 = misc1 & ~0x40;
513
514 /* set color depth */
515 switch (hw_crtc_timing.display_color_depth) {
516 case COLOR_DEPTH_666:
517 dp_component_depth = DP_COMPONENT_PIXEL_DEPTH_6BPC;
518 break;
519 case COLOR_DEPTH_888:
520 dp_component_depth = DP_COMPONENT_PIXEL_DEPTH_8BPC;
521 break;
522 case COLOR_DEPTH_101010:
523 dp_component_depth = DP_COMPONENT_PIXEL_DEPTH_10BPC;
524 break;
525 case COLOR_DEPTH_121212:
526 dp_component_depth = DP_COMPONENT_PIXEL_DEPTH_12BPC;
527 break;
528 case COLOR_DEPTH_161616:
529 dp_component_depth = DP_COMPONENT_PIXEL_DEPTH_16BPC;
530 break;
531 default:
532 dp_component_depth = DP_COMPONENT_PIXEL_DEPTH_6BPC;
533 break;
534 }
535
536 if (hw_crtc_timing.flags.DSC) {
537 // Fix set but not used error
538 //dp_pixel_encoding_type = 1;
539 switch (hw_crtc_timing.pixel_encoding) {
540 case PIXEL_ENCODING_YCBCR444:
541 dp_compressed_pixel_format = 0;
542 break;
543 case PIXEL_ENCODING_YCBCR422:
544 dp_compressed_pixel_format = 1;
545 if (hw_crtc_timing.dsc_cfg.ycbcr422_simple)
546 dp_compressed_pixel_format = 0;
547 break;
548 case PIXEL_ENCODING_YCBCR420:
549 dp_compressed_pixel_format = 1;
550 break;
551 default:
552 dp_compressed_pixel_format = 0;
553 break;
554 }
555 } else {
556 // Fix set but not used error
557 //dp_pixel_encoding_type = 0;
558 switch (dp_pixel_encoding) {
559 case DP_PIXEL_ENCODING_TYPE_RGB444:
560 dp_translate_pixel_enc = 0;
561 break;
562 case DP_PIXEL_ENCODING_TYPE_YCBCR422:
563 dp_translate_pixel_enc = 1;
564 break;
565 case DP_PIXEL_ENCODING_TYPE_YCBCR444:
566 dp_translate_pixel_enc = 0;
567 break;
568 case DP_PIXEL_ENCODING_TYPE_Y_ONLY:
569 dp_translate_pixel_enc = 3;
570 break;
571 case DP_PIXEL_ENCODING_TYPE_YCBCR420:
572 dp_translate_pixel_enc = 2;
573 break;
574 default:
575 ASSERT(0);
576 break;
577 }
578 }
579 /* Set DP pixel encoding and component depth */
580 REG_UPDATE_4(DP_PIXEL_FORMAT,
581 PIXEL_ENCODING_TYPE, hw_crtc_timing.flags.DSC ? 1 : 0,
582 UNCOMPRESSED_PIXEL_FORMAT, dp_translate_pixel_enc,
583 UNCOMPRESSED_COMPONENT_DEPTH, dp_component_depth,
584 COMPRESSED_PIXEL_FORMAT, dp_compressed_pixel_format);
585
586 /* set dynamic range and YCbCr range */
587
588 switch (hw_crtc_timing.display_color_depth) {
589 case COLOR_DEPTH_666:
590 colorimetry_bpc = 0;
591 break;
592 case COLOR_DEPTH_888:
593 colorimetry_bpc = 1;
594 break;
595 case COLOR_DEPTH_101010:
596 colorimetry_bpc = 2;
597 break;
598 case COLOR_DEPTH_121212:
599 colorimetry_bpc = 3;
600 break;
601 default:
602 colorimetry_bpc = 0;
603 break;
604 }
605
606 misc0 = misc0 | synchronous_clock;
607 misc0 = colorimetry_bpc << 5;
608
609 switch (output_color_space) {
610 case COLOR_SPACE_SRGB:
611 misc1 = misc1 & ~0x80; /* bit7 = 0*/
612 break;
613 case COLOR_SPACE_SRGB_LIMITED:
614 misc0 = misc0 | 0x8; /* bit3=1 */
615 misc1 = misc1 & ~0x80; /* bit7 = 0*/
616 break;
617 case COLOR_SPACE_YCBCR601:
618 case COLOR_SPACE_YCBCR601_LIMITED:
619 misc0 = misc0 | 0x8; /* bit3=1, bit4=0 */
620 misc1 = misc1 & ~0x80; /* bit7 = 0*/
621 if (hw_crtc_timing.pixel_encoding == PIXEL_ENCODING_YCBCR422)
622 misc0 = misc0 | 0x2; /* bit2=0, bit1=1 */
623 else if (hw_crtc_timing.pixel_encoding == PIXEL_ENCODING_YCBCR444)
624 misc0 = misc0 | 0x4; /* bit2=1, bit1=0 */
625 break;
626 case COLOR_SPACE_YCBCR709:
627 case COLOR_SPACE_YCBCR709_LIMITED:
628 misc0 = misc0 | 0x18; /* bit3=1, bit4=1 */
629 misc1 = misc1 & ~0x80; /* bit7 = 0*/
630 if (hw_crtc_timing.pixel_encoding == PIXEL_ENCODING_YCBCR422)
631 misc0 = misc0 | 0x2; /* bit2=0, bit1=1 */
632 else if (hw_crtc_timing.pixel_encoding == PIXEL_ENCODING_YCBCR444)
633 misc0 = misc0 | 0x4; /* bit2=1, bit1=0 */
634 break;
635 case COLOR_SPACE_2020_RGB_LIMITEDRANGE:
636 case COLOR_SPACE_2020_RGB_FULLRANGE:
637 case COLOR_SPACE_2020_YCBCR:
638 case COLOR_SPACE_XR_RGB:
639 case COLOR_SPACE_MSREF_SCRGB:
640 case COLOR_SPACE_ADOBERGB:
641 case COLOR_SPACE_DCIP3:
642 case COLOR_SPACE_XV_YCC_709:
643 case COLOR_SPACE_XV_YCC_601:
644 case COLOR_SPACE_DISPLAYNATIVE:
645 case COLOR_SPACE_DOLBYVISION:
646 case COLOR_SPACE_APPCTRL:
647 case COLOR_SPACE_CUSTOMPOINTS:
648 case COLOR_SPACE_UNKNOWN:
649 case COLOR_SPACE_YCBCR709_BLACK:
650 /* do nothing */
651 break;
652 }
653
654 REG_SET(DP_MSA_COLORIMETRY, 0, DP_MSA_MISC0, misc0);
655 REG_WRITE(DP_MSA_MISC, misc1); /* MSA_MISC1 */
656
657 /* dcn new register
658 * dc_crtc_timing is vesa dmt struct. data from edid
659 */
660 REG_SET_2(DP_MSA_TIMING_PARAM1, 0,
661 DP_MSA_HTOTAL, hw_crtc_timing.h_total,
662 DP_MSA_VTOTAL, hw_crtc_timing.v_total);
663
664 /* calculate from vesa timing parameters
665 * h_active_start related to leading edge of sync
666 */
667
668 h_blank = hw_crtc_timing.h_total - hw_crtc_timing.h_border_left -
669 hw_crtc_timing.h_addressable - hw_crtc_timing.h_border_right;
670
671 h_back_porch = h_blank - hw_crtc_timing.h_front_porch -
672 hw_crtc_timing.h_sync_width;
673
674 /* start at beginning of left border */
675 h_active_start = hw_crtc_timing.h_sync_width + h_back_porch;
676
677
678 v_active_start = hw_crtc_timing.v_total - hw_crtc_timing.v_border_top -
679 hw_crtc_timing.v_addressable - hw_crtc_timing.v_border_bottom -
680 hw_crtc_timing.v_front_porch;
681
682
683 /* start at beginning of left border */
684 REG_SET_2(DP_MSA_TIMING_PARAM2, 0,
685 DP_MSA_HSTART, h_active_start,
686 DP_MSA_VSTART, v_active_start);
687
688 REG_SET_4(DP_MSA_TIMING_PARAM3, 0,
689 DP_MSA_HSYNCWIDTH,
690 hw_crtc_timing.h_sync_width,
691 DP_MSA_HSYNCPOLARITY,
692 !hw_crtc_timing.flags.HSYNC_POSITIVE_POLARITY,
693 DP_MSA_VSYNCWIDTH,
694 hw_crtc_timing.v_sync_width,
695 DP_MSA_VSYNCPOLARITY,
696 !hw_crtc_timing.flags.VSYNC_POSITIVE_POLARITY);
697
698 /* HWDITH include border or overscan */
699 REG_SET_2(DP_MSA_TIMING_PARAM4, 0,
700 DP_MSA_HWIDTH, hw_crtc_timing.h_border_left +
701 hw_crtc_timing.h_addressable + hw_crtc_timing.h_border_right,
702 DP_MSA_VHEIGHT, hw_crtc_timing.v_border_top +
703 hw_crtc_timing.v_addressable + hw_crtc_timing.v_border_bottom);
704
705 REG_UPDATE(DP_SEC_FRAMING4,
706 DP_SST_SDP_SPLITTING, enable_sdp_splitting);
707 }
708
enc401_stream_encoder_map_to_link(struct stream_encoder * enc,uint32_t stream_enc_inst,uint32_t link_enc_inst)709 static void enc401_stream_encoder_map_to_link(
710 struct stream_encoder *enc,
711 uint32_t stream_enc_inst,
712 uint32_t link_enc_inst)
713 {
714 struct dcn10_stream_encoder *enc1 = DCN10STRENC_FROM_STRENC(enc);
715
716 REG_UPDATE(STREAM_MAPPER_CONTROL,
717 DIG_STREAM_LINK_TARGET, link_enc_inst);
718 }
719
720 static const struct stream_encoder_funcs dcn401_str_enc_funcs = {
721 .dp_set_odm_combine =
722 enc401_dp_set_odm_combine,
723 .dp_set_stream_attribute =
724 enc401_stream_encoder_dp_set_stream_attribute,
725 .hdmi_set_stream_attribute =
726 enc401_stream_encoder_hdmi_set_stream_attribute,
727 .dvi_set_stream_attribute =
728 enc401_stream_encoder_dvi_set_stream_attribute,
729 .set_throttled_vcp_size =
730 enc1_stream_encoder_set_throttled_vcp_size,
731 .update_hdmi_info_packets =
732 enc3_stream_encoder_update_hdmi_info_packets,
733 .stop_hdmi_info_packets =
734 enc3_stream_encoder_stop_hdmi_info_packets,
735 .update_dp_info_packets_sdp_line_num =
736 enc3_stream_encoder_update_dp_info_packets_sdp_line_num,
737 .update_dp_info_packets =
738 enc3_stream_encoder_update_dp_info_packets,
739 .stop_dp_info_packets =
740 enc1_stream_encoder_stop_dp_info_packets,
741 .dp_blank =
742 enc1_stream_encoder_dp_blank,
743 .dp_unblank =
744 enc401_stream_encoder_dp_unblank,
745 .audio_mute_control = enc3_audio_mute_control,
746
747 .dp_audio_setup = enc3_se_dp_audio_setup,
748 .dp_audio_enable = enc3_se_dp_audio_enable,
749 .dp_audio_disable = enc1_se_dp_audio_disable,
750
751 .hdmi_audio_setup = enc3_se_hdmi_audio_setup,
752 .hdmi_audio_disable = enc1_se_hdmi_audio_disable,
753 .setup_stereo_sync = enc1_setup_stereo_sync,
754 .set_avmute = enc1_stream_encoder_set_avmute,
755 .dig_connect_to_otg = enc1_dig_connect_to_otg,
756 .dig_source_otg = enc1_dig_source_otg,
757
758 .dp_get_pixel_format = enc1_stream_encoder_dp_get_pixel_format,
759
760 .enc_read_state = enc401_read_state,
761 .dp_set_dsc_config = NULL,
762 .dp_set_dsc_pps_info_packet = enc3_dp_set_dsc_pps_info_packet,
763 .set_dynamic_metadata = enc401_set_dynamic_metadata,
764 .hdmi_reset_stream_attribute = enc1_reset_hdmi_stream_attribute,
765 .enable_stream = enc401_stream_encoder_enable,
766
767 .set_input_mode = enc401_set_dig_input_mode,
768 .enable_fifo = enc35_enable_fifo,
769 .disable_fifo = enc35_disable_fifo,
770 .map_stream_to_link = enc401_stream_encoder_map_to_link,
771 };
772
dcn401_dio_stream_encoder_construct(struct dcn10_stream_encoder * enc1,struct dc_context * ctx,struct dc_bios * bp,enum engine_id eng_id,struct vpg * vpg,struct afmt * afmt,const struct dcn10_stream_enc_registers * regs,const struct dcn10_stream_encoder_shift * se_shift,const struct dcn10_stream_encoder_mask * se_mask)773 void dcn401_dio_stream_encoder_construct(
774 struct dcn10_stream_encoder *enc1,
775 struct dc_context *ctx,
776 struct dc_bios *bp,
777 enum engine_id eng_id,
778 struct vpg *vpg,
779 struct afmt *afmt,
780 const struct dcn10_stream_enc_registers *regs,
781 const struct dcn10_stream_encoder_shift *se_shift,
782 const struct dcn10_stream_encoder_mask *se_mask)
783 {
784 enc1->base.funcs = &dcn401_str_enc_funcs;
785 enc1->base.ctx = ctx;
786 enc1->base.id = eng_id;
787 enc1->base.bp = bp;
788 enc1->base.vpg = vpg;
789 enc1->base.afmt = afmt;
790 enc1->regs = regs;
791 enc1->se_shift = se_shift;
792 enc1->se_mask = se_mask;
793 enc1->base.stream_enc_inst = vpg->inst;
794 }
795
enc401_set_dynamic_metadata(struct stream_encoder * enc,bool enable_dme,uint32_t hubp_requestor_id,enum dynamic_metadata_mode dmdata_mode)796 void enc401_set_dynamic_metadata(struct stream_encoder *enc,
797 bool enable_dme,
798 uint32_t hubp_requestor_id,
799 enum dynamic_metadata_mode dmdata_mode)
800 {
801 struct dcn10_stream_encoder *enc1 = DCN10STRENC_FROM_STRENC(enc);
802
803 if (enable_dme) {
804 REG_UPDATE_2(DME_CONTROL,
805 METADATA_HUBP_REQUESTOR_ID, hubp_requestor_id,
806 METADATA_STREAM_TYPE, (dmdata_mode == dmdata_dolby_vision) ? 1 : 0);
807
808 /* Use default line reference DP_SOF for bringup.
809 * Should use OTG_SOF for DRR cases
810 */
811 if (dmdata_mode == dmdata_dp)
812 REG_UPDATE_3(DP_SEC_METADATA_TRANSMISSION,
813 DP_SEC_METADATA_PACKET_ENABLE, 1,
814 DP_SEC_METADATA_PACKET_LINE_REFERENCE, 0,
815 DP_SEC_METADATA_PACKET_LINE, 20);
816 else {
817 REG_UPDATE_3(HDMI_METADATA_PACKET_CONTROL,
818 HDMI_METADATA_PACKET_ENABLE, 1,
819 HDMI_METADATA_PACKET_LINE_REFERENCE, 0,
820 HDMI_METADATA_PACKET_LINE, 2);
821
822 if (dmdata_mode == dmdata_dolby_vision)
823 REG_UPDATE(HDMI_CONTROL,
824 DOLBY_VISION_EN, 1);
825 }
826
827 REG_UPDATE(DME_CONTROL,
828 METADATA_ENGINE_EN, 1);
829 } else {
830 REG_UPDATE(DME_CONTROL,
831 METADATA_ENGINE_EN, 0);
832
833 if (dmdata_mode == dmdata_dp)
834 REG_UPDATE(DP_SEC_METADATA_TRANSMISSION,
835 DP_SEC_METADATA_PACKET_ENABLE, 0);
836 else {
837 REG_UPDATE(HDMI_METADATA_PACKET_CONTROL,
838 HDMI_METADATA_PACKET_ENABLE, 0);
839 REG_UPDATE(HDMI_CONTROL,
840 DOLBY_VISION_EN, 0);
841 }
842 }
843 }
enc401_stream_encoder_set_stream_attribute_helper(struct dcn10_stream_encoder * enc1,struct dc_crtc_timing * crtc_timing)844 void enc401_stream_encoder_set_stream_attribute_helper(
845 struct dcn10_stream_encoder *enc1,
846 struct dc_crtc_timing *crtc_timing)
847 {
848 switch (crtc_timing->pixel_encoding) {
849 case PIXEL_ENCODING_YCBCR422:
850 REG_UPDATE(HDMI_CONTROL, TMDS_PIXEL_ENCODING, 1);
851 break;
852 default:
853 REG_UPDATE(HDMI_CONTROL, TMDS_PIXEL_ENCODING, 0);
854 break;
855 }
856 REG_UPDATE(HDMI_CONTROL, TMDS_COLOR_FORMAT, 0);
857 }
858