1 /*
2 * Copyright 2019 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 #include "dc_bios_types.h"
27 #include "dcn31_hpo_dp_stream_encoder.h"
28 #include "reg_helper.h"
29 #include "dc.h"
30
31 #define DC_LOGGER \
32 enc3->base.ctx->logger
33
34 #define REG(reg)\
35 (enc3->regs->reg)
36
37 #undef FN
38 #define FN(reg_name, field_name) \
39 enc3->hpo_se_shift->field_name, enc3->hpo_se_mask->field_name
40
41 #define CTX \
42 enc3->base.ctx
43
44
45 enum dp2_pixel_encoding {
46 DP_SYM32_ENC_PIXEL_ENCODING_RGB_YCBCR444,
47 DP_SYM32_ENC_PIXEL_ENCODING_YCBCR422,
48 DP_SYM32_ENC_PIXEL_ENCODING_YCBCR420,
49 DP_SYM32_ENC_PIXEL_ENCODING_Y_ONLY
50 };
51
52 enum dp2_uncompressed_component_depth {
53 DP_SYM32_ENC_COMPONENT_DEPTH_6BPC,
54 DP_SYM32_ENC_COMPONENT_DEPTH_8BPC,
55 DP_SYM32_ENC_COMPONENT_DEPTH_10BPC,
56 DP_SYM32_ENC_COMPONENT_DEPTH_12BPC
57 };
58
59
dcn31_hpo_dp_stream_enc_enable_stream(struct hpo_dp_stream_encoder * enc)60 static void dcn31_hpo_dp_stream_enc_enable_stream(
61 struct hpo_dp_stream_encoder *enc)
62 {
63 struct dcn31_hpo_dp_stream_encoder *enc3 = DCN3_1_HPO_DP_STREAM_ENC_FROM_HPO_STREAM_ENC(enc);
64
65 /* Enable all clocks in the DP_STREAM_ENC */
66 REG_UPDATE(DP_STREAM_ENC_CLOCK_CONTROL,
67 DP_STREAM_ENC_CLOCK_EN, 1);
68
69 /* Assert reset to the DP_SYM32_ENC logic */
70 REG_UPDATE(DP_SYM32_ENC_CONTROL,
71 DP_SYM32_ENC_RESET, 1);
72 /* Wait for reset to complete (to assert) */
73 REG_WAIT(DP_SYM32_ENC_CONTROL,
74 DP_SYM32_ENC_RESET_DONE, 1,
75 1, 10);
76
77 /* De-assert reset to the DP_SYM32_ENC logic */
78 REG_UPDATE(DP_SYM32_ENC_CONTROL,
79 DP_SYM32_ENC_RESET, 0);
80 /* Wait for reset to de-assert */
81 REG_WAIT(DP_SYM32_ENC_CONTROL,
82 DP_SYM32_ENC_RESET_DONE, 0,
83 1, 10);
84
85 /* Enable idle pattern generation */
86 REG_UPDATE(DP_SYM32_ENC_CONTROL,
87 DP_SYM32_ENC_ENABLE, 1);
88 }
89
dcn31_hpo_dp_stream_enc_dp_unblank(struct hpo_dp_stream_encoder * enc,uint32_t stream_source)90 static void dcn31_hpo_dp_stream_enc_dp_unblank(
91 struct hpo_dp_stream_encoder *enc,
92 uint32_t stream_source)
93 {
94 struct dcn31_hpo_dp_stream_encoder *enc3 = DCN3_1_HPO_DP_STREAM_ENC_FROM_HPO_STREAM_ENC(enc);
95
96 /* Set the input mux for video stream source */
97 REG_UPDATE(DP_STREAM_ENC_INPUT_MUX_CONTROL,
98 DP_STREAM_ENC_INPUT_MUX_PIXEL_STREAM_SOURCE_SEL, stream_source);
99
100 /* Enable video transmission in main framer */
101 REG_UPDATE(DP_SYM32_ENC_VID_STREAM_CONTROL,
102 VID_STREAM_ENABLE, 1);
103
104 /* Reset and Enable Pixel to Symbol FIFO */
105 REG_UPDATE(DP_SYM32_ENC_VID_FIFO_CONTROL,
106 PIXEL_TO_SYMBOL_FIFO_RESET, 1);
107 REG_WAIT(DP_SYM32_ENC_VID_FIFO_CONTROL,
108 PIXEL_TO_SYMBOL_FIFO_RESET_DONE, 1,
109 1, 10);
110 REG_UPDATE(DP_SYM32_ENC_VID_FIFO_CONTROL,
111 PIXEL_TO_SYMBOL_FIFO_RESET, 0);
112 REG_WAIT(DP_SYM32_ENC_VID_FIFO_CONTROL, /* Disable Clock Ramp Adjuster FIFO */
113 PIXEL_TO_SYMBOL_FIFO_RESET_DONE, 0,
114 1, 10);
115 REG_UPDATE(DP_SYM32_ENC_VID_FIFO_CONTROL,
116 PIXEL_TO_SYMBOL_FIFO_ENABLE, 1);
117
118 /* Reset and Enable Clock Ramp Adjuster FIFO */
119 REG_UPDATE(DP_STREAM_ENC_CLOCK_RAMP_ADJUSTER_FIFO_STATUS_CONTROL0,
120 FIFO_RESET, 1);
121 REG_WAIT(DP_STREAM_ENC_CLOCK_RAMP_ADJUSTER_FIFO_STATUS_CONTROL0,
122 FIFO_RESET_DONE, 1,
123 1, 10);
124 REG_UPDATE(DP_STREAM_ENC_CLOCK_RAMP_ADJUSTER_FIFO_STATUS_CONTROL0,
125 FIFO_RESET, 0);
126 REG_WAIT(DP_STREAM_ENC_CLOCK_RAMP_ADJUSTER_FIFO_STATUS_CONTROL0,
127 FIFO_RESET_DONE, 0,
128 1, 10);
129
130 /* For Debug -- Enable CRC */
131 REG_UPDATE_2(DP_SYM32_ENC_VID_CRC_CONTROL,
132 CRC_ENABLE, 1,
133 CRC_CONT_MODE_ENABLE, 1);
134
135 REG_UPDATE(DP_STREAM_ENC_CLOCK_RAMP_ADJUSTER_FIFO_STATUS_CONTROL0,
136 FIFO_ENABLE, 1);
137 }
138
dcn31_hpo_dp_stream_enc_dp_blank(struct hpo_dp_stream_encoder * enc)139 static void dcn31_hpo_dp_stream_enc_dp_blank(
140 struct hpo_dp_stream_encoder *enc)
141 {
142 struct dcn31_hpo_dp_stream_encoder *enc3 = DCN3_1_HPO_DP_STREAM_ENC_FROM_HPO_STREAM_ENC(enc);
143
144 /* Disable video transmission */
145 REG_UPDATE(DP_SYM32_ENC_VID_STREAM_CONTROL,
146 VID_STREAM_ENABLE, 0);
147
148 /* Wait for video stream transmission disabled
149 * Larger delay to wait until VBLANK - use max retry of
150 * 10us*5000=50ms. This covers 41.7ms of minimum 24 Hz mode +
151 * a little more because we may not trust delay accuracy.
152 */
153 REG_WAIT(DP_SYM32_ENC_VID_STREAM_CONTROL,
154 VID_STREAM_STATUS, 0,
155 10, 5000);
156
157 /* Disable SDP transmission */
158 REG_UPDATE(DP_SYM32_ENC_SDP_CONTROL,
159 SDP_STREAM_ENABLE, 0);
160
161 /* Disable Pixel to Symbol FIFO */
162 REG_UPDATE(DP_SYM32_ENC_VID_FIFO_CONTROL,
163 PIXEL_TO_SYMBOL_FIFO_ENABLE, 0);
164
165 /* Disable Clock Ramp Adjuster FIFO */
166 REG_UPDATE(DP_STREAM_ENC_CLOCK_RAMP_ADJUSTER_FIFO_STATUS_CONTROL0,
167 FIFO_ENABLE, 0);
168 }
169
dcn31_hpo_dp_stream_enc_disable(struct hpo_dp_stream_encoder * enc)170 static void dcn31_hpo_dp_stream_enc_disable(
171 struct hpo_dp_stream_encoder *enc)
172 {
173 struct dcn31_hpo_dp_stream_encoder *enc3 = DCN3_1_HPO_DP_STREAM_ENC_FROM_HPO_STREAM_ENC(enc);
174
175 /* Disable DP_SYM32_ENC */
176 REG_UPDATE(DP_SYM32_ENC_CONTROL,
177 DP_SYM32_ENC_ENABLE, 0);
178
179 /* Disable clocks in the DP_STREAM_ENC */
180 REG_UPDATE(DP_STREAM_ENC_CLOCK_CONTROL,
181 DP_STREAM_ENC_CLOCK_EN, 0);
182 }
183
dcn31_hpo_dp_stream_enc_set_stream_attribute(struct hpo_dp_stream_encoder * enc,struct dc_crtc_timing * crtc_timing,enum dc_color_space output_color_space,bool use_vsc_sdp_for_colorimetry,bool compressed_format,bool double_buffer_en)184 static void dcn31_hpo_dp_stream_enc_set_stream_attribute(
185 struct hpo_dp_stream_encoder *enc,
186 struct dc_crtc_timing *crtc_timing,
187 enum dc_color_space output_color_space,
188 bool use_vsc_sdp_for_colorimetry,
189 bool compressed_format,
190 bool double_buffer_en)
191 {
192 enum dp2_pixel_encoding pixel_encoding;
193 enum dp2_uncompressed_component_depth component_depth;
194 uint32_t h_active_start;
195 uint32_t v_active_start;
196 uint32_t h_blank;
197 uint32_t h_back_porch;
198 uint32_t h_width;
199 uint32_t v_height;
200 uint64_t v_freq;
201 uint8_t misc0 = 0;
202 uint8_t misc1 = 0;
203 uint8_t hsp;
204 uint8_t vsp;
205
206 struct dcn31_hpo_dp_stream_encoder *enc3 = DCN3_1_HPO_DP_STREAM_ENC_FROM_HPO_STREAM_ENC(enc);
207 struct dc_crtc_timing hw_crtc_timing = *crtc_timing;
208
209 /* MISC0[0] = 0 video and link clocks are asynchronous
210 * MISC1[0] = 0 interlace not supported
211 * MISC1[2:1] = 0 stereo field is handled by hardware
212 * MISC1[5:3] = 0 Reserved
213 */
214
215 /* Interlaced not supported */
216 if (hw_crtc_timing.flags.INTERLACE) {
217 BREAK_TO_DEBUGGER();
218 }
219
220 /* Double buffer enable for MSA and pixel format registers
221 * Only double buffer for changing stream attributes for active streams
222 * Do not double buffer when initially enabling a stream
223 */
224 REG_UPDATE(DP_SYM32_ENC_VID_MSA_DOUBLE_BUFFER_CONTROL,
225 MSA_DOUBLE_BUFFER_ENABLE, double_buffer_en);
226 REG_UPDATE(DP_SYM32_ENC_VID_PIXEL_FORMAT_DOUBLE_BUFFER_CONTROL,
227 PIXEL_FORMAT_DOUBLE_BUFFER_ENABLE, double_buffer_en);
228
229 /* Pixel Encoding */
230 switch (hw_crtc_timing.pixel_encoding) {
231 case PIXEL_ENCODING_YCBCR422:
232 pixel_encoding = DP_SYM32_ENC_PIXEL_ENCODING_YCBCR422;
233 misc0 = misc0 | 0x2; // MISC0[2:1] = 01
234 break;
235 case PIXEL_ENCODING_YCBCR444:
236 pixel_encoding = DP_SYM32_ENC_PIXEL_ENCODING_RGB_YCBCR444;
237 misc0 = misc0 | 0x4; // MISC0[2:1] = 10
238
239 if (hw_crtc_timing.flags.Y_ONLY) {
240 pixel_encoding = DP_SYM32_ENC_PIXEL_ENCODING_Y_ONLY;
241 if (hw_crtc_timing.display_color_depth != COLOR_DEPTH_666) {
242 /* HW testing only, no use case yet.
243 * Color depth of Y-only could be
244 * 8, 10, 12, 16 bits
245 */
246 misc1 = misc1 | 0x80; // MISC1[7] = 1
247 }
248 }
249 break;
250 case PIXEL_ENCODING_YCBCR420:
251 pixel_encoding = DP_SYM32_ENC_PIXEL_ENCODING_YCBCR420;
252 misc1 = misc1 | 0x40; // MISC1[6] = 1
253 break;
254 case PIXEL_ENCODING_RGB:
255 default:
256 pixel_encoding = DP_SYM32_ENC_PIXEL_ENCODING_RGB_YCBCR444;
257 break;
258 }
259
260 /* For YCbCr420 and BT2020 Colorimetry Formats, VSC SDP shall be used.
261 * When MISC1, bit 6, is Set to 1, a Source device uses a VSC SDP to indicate the
262 * Pixel Encoding/Colorimetry Format and that a Sink device shall ignore MISC1, bit 7,
263 * and MISC0, bits 7:1 (MISC1, bit 7, and MISC0, bits 7:1, become "don't care").
264 */
265 if (use_vsc_sdp_for_colorimetry)
266 misc1 = misc1 | 0x40;
267 else
268 misc1 = misc1 & ~0x40;
269
270 /* Color depth */
271 switch (hw_crtc_timing.display_color_depth) {
272 case COLOR_DEPTH_666:
273 component_depth = DP_SYM32_ENC_COMPONENT_DEPTH_6BPC;
274 // MISC0[7:5] = 000
275 break;
276 case COLOR_DEPTH_888:
277 component_depth = DP_SYM32_ENC_COMPONENT_DEPTH_8BPC;
278 misc0 = misc0 | 0x20; // MISC0[7:5] = 001
279 break;
280 case COLOR_DEPTH_101010:
281 component_depth = DP_SYM32_ENC_COMPONENT_DEPTH_10BPC;
282 misc0 = misc0 | 0x40; // MISC0[7:5] = 010
283 break;
284 case COLOR_DEPTH_121212:
285 component_depth = DP_SYM32_ENC_COMPONENT_DEPTH_12BPC;
286 misc0 = misc0 | 0x60; // MISC0[7:5] = 011
287 break;
288 default:
289 component_depth = DP_SYM32_ENC_COMPONENT_DEPTH_6BPC;
290 break;
291 }
292
293 REG_UPDATE_3(DP_SYM32_ENC_VID_PIXEL_FORMAT,
294 PIXEL_ENCODING_TYPE, compressed_format,
295 UNCOMPRESSED_PIXEL_ENCODING, pixel_encoding,
296 UNCOMPRESSED_COMPONENT_DEPTH, component_depth);
297
298 switch (output_color_space) {
299 case COLOR_SPACE_SRGB:
300 misc1 = misc1 & ~0x80; /* bit7 = 0*/
301 break;
302 case COLOR_SPACE_SRGB_LIMITED:
303 misc0 = misc0 | 0x8; /* bit3=1 */
304 misc1 = misc1 & ~0x80; /* bit7 = 0*/
305 break;
306 case COLOR_SPACE_YCBCR601:
307 case COLOR_SPACE_YCBCR601_LIMITED:
308 misc0 = misc0 | 0x8; /* bit3=1, bit4=0 */
309 misc1 = misc1 & ~0x80; /* bit7 = 0*/
310 if (hw_crtc_timing.pixel_encoding == PIXEL_ENCODING_YCBCR422)
311 misc0 = misc0 | 0x2; /* bit2=0, bit1=1 */
312 else if (hw_crtc_timing.pixel_encoding == PIXEL_ENCODING_YCBCR444)
313 misc0 = misc0 | 0x4; /* bit2=1, bit1=0 */
314 break;
315 case COLOR_SPACE_YCBCR709:
316 case COLOR_SPACE_YCBCR709_LIMITED:
317 misc0 = misc0 | 0x18; /* bit3=1, bit4=1 */
318 misc1 = misc1 & ~0x80; /* bit7 = 0*/
319 if (hw_crtc_timing.pixel_encoding == PIXEL_ENCODING_YCBCR422)
320 misc0 = misc0 | 0x2; /* bit2=0, bit1=1 */
321 else if (hw_crtc_timing.pixel_encoding == PIXEL_ENCODING_YCBCR444)
322 misc0 = misc0 | 0x4; /* bit2=1, bit1=0 */
323 break;
324 case COLOR_SPACE_2020_RGB_LIMITEDRANGE:
325 case COLOR_SPACE_2020_RGB_FULLRANGE:
326 case COLOR_SPACE_2020_YCBCR:
327 case COLOR_SPACE_XR_RGB:
328 case COLOR_SPACE_MSREF_SCRGB:
329 case COLOR_SPACE_ADOBERGB:
330 case COLOR_SPACE_DCIP3:
331 case COLOR_SPACE_XV_YCC_709:
332 case COLOR_SPACE_XV_YCC_601:
333 case COLOR_SPACE_DISPLAYNATIVE:
334 case COLOR_SPACE_DOLBYVISION:
335 case COLOR_SPACE_APPCTRL:
336 case COLOR_SPACE_CUSTOMPOINTS:
337 case COLOR_SPACE_UNKNOWN:
338 case COLOR_SPACE_YCBCR709_BLACK:
339 /* do nothing */
340 break;
341 }
342
343 /* calculate from vesa timing parameters
344 * h_active_start related to leading edge of sync
345 */
346 h_blank = hw_crtc_timing.h_total - hw_crtc_timing.h_border_left -
347 hw_crtc_timing.h_addressable - hw_crtc_timing.h_border_right;
348
349 h_back_porch = h_blank - hw_crtc_timing.h_front_porch -
350 hw_crtc_timing.h_sync_width;
351
352 /* start at beginning of left border */
353 h_active_start = hw_crtc_timing.h_sync_width + h_back_porch;
354
355 v_active_start = hw_crtc_timing.v_total - hw_crtc_timing.v_border_top -
356 hw_crtc_timing.v_addressable - hw_crtc_timing.v_border_bottom -
357 hw_crtc_timing.v_front_porch;
358
359 h_width = hw_crtc_timing.h_border_left + hw_crtc_timing.h_addressable + hw_crtc_timing.h_border_right;
360 v_height = hw_crtc_timing.v_border_top + hw_crtc_timing.v_addressable + hw_crtc_timing.v_border_bottom;
361 hsp = hw_crtc_timing.flags.HSYNC_POSITIVE_POLARITY ? 0 : 0x80;
362 vsp = hw_crtc_timing.flags.VSYNC_POSITIVE_POLARITY ? 0 : 0x80;
363 v_freq = (uint64_t)hw_crtc_timing.pix_clk_100hz * 100;
364
365 /* MSA Packet Mapping to 32-bit Link Symbols - DP2 spec, section 2.7.4.1
366 *
367 * Lane 0 Lane 1 Lane 2 Lane 3
368 * MSA[0] = { 0, 0, 0, VFREQ[47:40]}
369 * MSA[1] = { 0, 0, 0, VFREQ[39:32]}
370 * MSA[2] = { 0, 0, 0, VFREQ[31:24]}
371 * MSA[3] = { HTotal[15:8], HStart[15:8], HWidth[15:8], VFREQ[23:16]}
372 * MSA[4] = { HTotal[ 7:0], HStart[ 7:0], HWidth[ 7:0], VFREQ[15: 8]}
373 * MSA[5] = { VTotal[15:8], VStart[15:8], VHeight[15:8], VFREQ[ 7: 0]}
374 * MSA[6] = { VTotal[ 7:0], VStart[ 7:0], VHeight[ 7:0], MISC0[ 7: 0]}
375 * MSA[7] = { HSP|HSW[14:8], VSP|VSW[14:8], 0, MISC1[ 7: 0]}
376 * MSA[8] = { HSW[ 7:0], VSW[ 7:0], 0, 0}
377 */
378 REG_SET_4(DP_SYM32_ENC_VID_MSA0, 0,
379 MSA_DATA_LANE_0, 0,
380 MSA_DATA_LANE_1, 0,
381 MSA_DATA_LANE_2, 0,
382 MSA_DATA_LANE_3, v_freq >> 40);
383
384 REG_SET_4(DP_SYM32_ENC_VID_MSA1, 0,
385 MSA_DATA_LANE_0, 0,
386 MSA_DATA_LANE_1, 0,
387 MSA_DATA_LANE_2, 0,
388 MSA_DATA_LANE_3, (v_freq >> 32) & 0xff);
389
390 REG_SET_4(DP_SYM32_ENC_VID_MSA2, 0,
391 MSA_DATA_LANE_0, 0,
392 MSA_DATA_LANE_1, 0,
393 MSA_DATA_LANE_2, 0,
394 MSA_DATA_LANE_3, (v_freq >> 24) & 0xff);
395
396 REG_SET_4(DP_SYM32_ENC_VID_MSA3, 0,
397 MSA_DATA_LANE_0, hw_crtc_timing.h_total >> 8,
398 MSA_DATA_LANE_1, h_active_start >> 8,
399 MSA_DATA_LANE_2, h_width >> 8,
400 MSA_DATA_LANE_3, (v_freq >> 16) & 0xff);
401
402 REG_SET_4(DP_SYM32_ENC_VID_MSA4, 0,
403 MSA_DATA_LANE_0, hw_crtc_timing.h_total & 0xff,
404 MSA_DATA_LANE_1, h_active_start & 0xff,
405 MSA_DATA_LANE_2, h_width & 0xff,
406 MSA_DATA_LANE_3, (v_freq >> 8) & 0xff);
407
408 REG_SET_4(DP_SYM32_ENC_VID_MSA5, 0,
409 MSA_DATA_LANE_0, hw_crtc_timing.v_total >> 8,
410 MSA_DATA_LANE_1, v_active_start >> 8,
411 MSA_DATA_LANE_2, v_height >> 8,
412 MSA_DATA_LANE_3, v_freq & 0xff);
413
414 REG_SET_4(DP_SYM32_ENC_VID_MSA6, 0,
415 MSA_DATA_LANE_0, hw_crtc_timing.v_total & 0xff,
416 MSA_DATA_LANE_1, v_active_start & 0xff,
417 MSA_DATA_LANE_2, v_height & 0xff,
418 MSA_DATA_LANE_3, misc0);
419
420 REG_SET_4(DP_SYM32_ENC_VID_MSA7, 0,
421 MSA_DATA_LANE_0, hsp | (hw_crtc_timing.h_sync_width >> 8),
422 MSA_DATA_LANE_1, vsp | (hw_crtc_timing.v_sync_width >> 8),
423 MSA_DATA_LANE_2, 0,
424 MSA_DATA_LANE_3, misc1);
425
426 REG_SET_4(DP_SYM32_ENC_VID_MSA8, 0,
427 MSA_DATA_LANE_0, hw_crtc_timing.h_sync_width & 0xff,
428 MSA_DATA_LANE_1, hw_crtc_timing.v_sync_width & 0xff,
429 MSA_DATA_LANE_2, 0,
430 MSA_DATA_LANE_3, 0);
431 }
432
dcn31_hpo_dp_stream_enc_update_dp_info_packets_sdp_line_num(struct hpo_dp_stream_encoder * enc,struct encoder_info_frame * info_frame)433 static void dcn31_hpo_dp_stream_enc_update_dp_info_packets_sdp_line_num(
434 struct hpo_dp_stream_encoder *enc,
435 struct encoder_info_frame *info_frame)
436 {
437 struct dcn31_hpo_dp_stream_encoder *enc3 = DCN3_1_HPO_DP_STREAM_ENC_FROM_HPO_STREAM_ENC(enc);
438
439 if (info_frame->adaptive_sync.valid == true &&
440 info_frame->sdp_line_num.adaptive_sync_line_num_valid == true) {
441 //00: REFER_TO_DP_SOF, 01: REFER_TO_OTG_SOF
442 REG_UPDATE(DP_SYM32_ENC_SDP_GSP_CONTROL5, GSP_SOF_REFERENCE, 1);
443
444 REG_UPDATE(DP_SYM32_ENC_SDP_GSP_CONTROL5, GSP_TRANSMISSION_LINE_NUMBER,
445 info_frame->sdp_line_num.adaptive_sync_line_num);
446 }
447 }
448
dcn31_hpo_dp_stream_enc_update_dp_info_packets(struct hpo_dp_stream_encoder * enc,const struct encoder_info_frame * info_frame)449 static void dcn31_hpo_dp_stream_enc_update_dp_info_packets(
450 struct hpo_dp_stream_encoder *enc,
451 const struct encoder_info_frame *info_frame)
452 {
453 struct dcn31_hpo_dp_stream_encoder *enc3 = DCN3_1_HPO_DP_STREAM_ENC_FROM_HPO_STREAM_ENC(enc);
454 uint32_t dmdata_packet_enabled = 0;
455
456 if (info_frame->vsc.valid)
457 enc->vpg->funcs->update_generic_info_packet(
458 enc->vpg,
459 0, /* packetIndex */
460 &info_frame->vsc,
461 true);
462
463 if (info_frame->spd.valid)
464 enc->vpg->funcs->update_generic_info_packet(
465 enc->vpg,
466 2, /* packetIndex */
467 &info_frame->spd,
468 true);
469
470 if (info_frame->hdrsmd.valid)
471 enc->vpg->funcs->update_generic_info_packet(
472 enc->vpg,
473 3, /* packetIndex */
474 &info_frame->hdrsmd,
475 true);
476
477 /* packetIndex 4 is used for send immediate sdp message, and please
478 * use other packetIndex (such as 5,6) for other info packet
479 */
480
481 if (info_frame->adaptive_sync.valid)
482 enc->vpg->funcs->update_generic_info_packet(
483 enc->vpg,
484 5, /* packetIndex */
485 &info_frame->adaptive_sync,
486 true);
487
488 /* enable/disable transmission of packet(s).
489 * If enabled, packet transmission begins on the next frame
490 */
491 REG_UPDATE(DP_SYM32_ENC_SDP_GSP_CONTROL0, GSP_VIDEO_CONTINUOUS_TRANSMISSION_ENABLE, info_frame->vsc.valid);
492 REG_UPDATE(DP_SYM32_ENC_SDP_GSP_CONTROL2, GSP_VIDEO_CONTINUOUS_TRANSMISSION_ENABLE, info_frame->spd.valid);
493 REG_UPDATE(DP_SYM32_ENC_SDP_GSP_CONTROL3, GSP_VIDEO_CONTINUOUS_TRANSMISSION_ENABLE, info_frame->hdrsmd.valid);
494 REG_UPDATE(DP_SYM32_ENC_SDP_GSP_CONTROL5, GSP_VIDEO_CONTINUOUS_TRANSMISSION_ENABLE, info_frame->adaptive_sync.valid);
495
496 /* check if dynamic metadata packet transmission is enabled */
497 REG_GET(DP_SYM32_ENC_SDP_METADATA_PACKET_CONTROL,
498 METADATA_PACKET_ENABLE, &dmdata_packet_enabled);
499
500 /* Enable secondary data path */
501 REG_UPDATE(DP_SYM32_ENC_SDP_CONTROL,
502 SDP_STREAM_ENABLE, 1);
503 }
504
dcn31_hpo_dp_stream_enc_stop_dp_info_packets(struct hpo_dp_stream_encoder * enc)505 static void dcn31_hpo_dp_stream_enc_stop_dp_info_packets(
506 struct hpo_dp_stream_encoder *enc)
507 {
508 /* stop generic packets on DP */
509 struct dcn31_hpo_dp_stream_encoder *enc3 = DCN3_1_HPO_DP_STREAM_ENC_FROM_HPO_STREAM_ENC(enc);
510 uint32_t asp_enable = 0;
511 uint32_t atp_enable = 0;
512 uint32_t aip_enable = 0;
513 uint32_t acm_enable = 0;
514
515 REG_UPDATE(DP_SYM32_ENC_SDP_GSP_CONTROL0, GSP_VIDEO_CONTINUOUS_TRANSMISSION_ENABLE, 0);
516 REG_UPDATE(DP_SYM32_ENC_SDP_GSP_CONTROL2, GSP_VIDEO_CONTINUOUS_TRANSMISSION_ENABLE, 0);
517 REG_UPDATE(DP_SYM32_ENC_SDP_GSP_CONTROL3, GSP_VIDEO_CONTINUOUS_TRANSMISSION_ENABLE, 0);
518
519 /* Disable secondary data path if audio is also disabled */
520 REG_GET_4(DP_SYM32_ENC_SDP_AUDIO_CONTROL0,
521 ASP_ENABLE, &asp_enable,
522 ATP_ENABLE, &atp_enable,
523 AIP_ENABLE, &aip_enable,
524 ACM_ENABLE, &acm_enable);
525 if (!(asp_enable || atp_enable || aip_enable || acm_enable))
526 REG_UPDATE(DP_SYM32_ENC_SDP_CONTROL,
527 SDP_STREAM_ENABLE, 0);
528 }
529
hpo_dp_is_gsp_enabled(struct hpo_dp_stream_encoder * enc)530 static uint32_t hpo_dp_is_gsp_enabled(
531 struct hpo_dp_stream_encoder *enc)
532 {
533 struct dcn31_hpo_dp_stream_encoder *enc3 = DCN3_1_HPO_DP_STREAM_ENC_FROM_HPO_STREAM_ENC(enc);
534 uint32_t gsp0_enabled = 0;
535 uint32_t gsp2_enabled = 0;
536 uint32_t gsp3_enabled = 0;
537 uint32_t gsp11_enabled = 0;
538
539 REG_GET(DP_SYM32_ENC_SDP_GSP_CONTROL0, GSP_VIDEO_CONTINUOUS_TRANSMISSION_ENABLE, &gsp0_enabled);
540 REG_GET(DP_SYM32_ENC_SDP_GSP_CONTROL2, GSP_VIDEO_CONTINUOUS_TRANSMISSION_ENABLE, &gsp2_enabled);
541 REG_GET(DP_SYM32_ENC_SDP_GSP_CONTROL3, GSP_VIDEO_CONTINUOUS_TRANSMISSION_ENABLE, &gsp3_enabled);
542 REG_GET(DP_SYM32_ENC_SDP_GSP_CONTROL11, GSP_VIDEO_CONTINUOUS_TRANSMISSION_ENABLE, &gsp11_enabled);
543
544 return (gsp0_enabled || gsp2_enabled || gsp3_enabled || gsp11_enabled);
545 }
546
dcn31_hpo_dp_stream_enc_set_dsc_pps_info_packet(struct hpo_dp_stream_encoder * enc,bool enable,uint8_t * dsc_packed_pps,bool immediate_update)547 static void dcn31_hpo_dp_stream_enc_set_dsc_pps_info_packet(
548 struct hpo_dp_stream_encoder *enc,
549 bool enable,
550 uint8_t *dsc_packed_pps,
551 bool immediate_update)
552 {
553 struct dcn31_hpo_dp_stream_encoder *enc3 = DCN3_1_HPO_DP_STREAM_ENC_FROM_HPO_STREAM_ENC(enc);
554
555 if (enable) {
556 struct dc_info_packet pps_sdp;
557 int i;
558
559 /* Configure for PPS packet size (128 bytes) */
560 REG_UPDATE(DP_SYM32_ENC_SDP_GSP_CONTROL11,
561 GSP_PAYLOAD_SIZE, 3);
562
563 /* Load PPS into infoframe (SDP) registers */
564 pps_sdp.valid = true;
565 pps_sdp.hb0 = 0;
566 pps_sdp.hb1 = DC_DP_INFOFRAME_TYPE_PPS;
567 pps_sdp.hb2 = 127;
568 pps_sdp.hb3 = 0;
569
570 for (i = 0; i < 4; i++) {
571 memcpy(pps_sdp.sb, &dsc_packed_pps[i * 32], 32);
572 enc3->base.vpg->funcs->update_generic_info_packet(
573 enc3->base.vpg,
574 11 + i,
575 &pps_sdp,
576 immediate_update);
577 }
578
579 /* SW should make sure VBID[6] update line number is bigger
580 * than PPS transmit line number
581 */
582 REG_UPDATE(DP_SYM32_ENC_SDP_GSP_CONTROL11,
583 GSP_TRANSMISSION_LINE_NUMBER, 2);
584
585 REG_UPDATE_2(DP_SYM32_ENC_VID_VBID_CONTROL,
586 VBID_6_COMPRESSEDSTREAM_FLAG_SOF_REFERENCE, 0,
587 VBID_6_COMPRESSEDSTREAM_FLAG_LINE_NUMBER, 3);
588
589 /* Send PPS data at the line number specified above. */
590 REG_UPDATE(DP_SYM32_ENC_SDP_GSP_CONTROL11,
591 GSP_VIDEO_CONTINUOUS_TRANSMISSION_ENABLE, 1);
592 REG_UPDATE(DP_SYM32_ENC_SDP_CONTROL,
593 SDP_STREAM_ENABLE, 1);
594 } else {
595 /* Disable Generic Stream Packet 11 (GSP) transmission */
596 REG_UPDATE_2(DP_SYM32_ENC_SDP_GSP_CONTROL11,
597 GSP_VIDEO_CONTINUOUS_TRANSMISSION_ENABLE, 0,
598 GSP_PAYLOAD_SIZE, 0);
599 }
600 }
601
dcn31_hpo_dp_stream_enc_map_stream_to_link(struct hpo_dp_stream_encoder * enc,uint32_t stream_enc_inst,uint32_t link_enc_inst)602 static void dcn31_hpo_dp_stream_enc_map_stream_to_link(
603 struct hpo_dp_stream_encoder *enc,
604 uint32_t stream_enc_inst,
605 uint32_t link_enc_inst)
606 {
607 struct dcn31_hpo_dp_stream_encoder *enc3 = DCN3_1_HPO_DP_STREAM_ENC_FROM_HPO_STREAM_ENC(enc);
608
609 ASSERT(stream_enc_inst < 4 && link_enc_inst < 2);
610
611 switch (stream_enc_inst) {
612 case 0:
613 REG_UPDATE(DP_STREAM_MAPPER_CONTROL0,
614 DP_STREAM_LINK_TARGET, link_enc_inst);
615 break;
616 case 1:
617 REG_UPDATE(DP_STREAM_MAPPER_CONTROL1,
618 DP_STREAM_LINK_TARGET, link_enc_inst);
619 break;
620 case 2:
621 REG_UPDATE(DP_STREAM_MAPPER_CONTROL2,
622 DP_STREAM_LINK_TARGET, link_enc_inst);
623 break;
624 case 3:
625 REG_UPDATE(DP_STREAM_MAPPER_CONTROL3,
626 DP_STREAM_LINK_TARGET, link_enc_inst);
627 break;
628 }
629 }
630
dcn31_hpo_dp_stream_enc_audio_setup(struct hpo_dp_stream_encoder * enc,unsigned int az_inst,struct audio_info * info)631 static void dcn31_hpo_dp_stream_enc_audio_setup(
632 struct hpo_dp_stream_encoder *enc,
633 unsigned int az_inst,
634 struct audio_info *info)
635 {
636 struct dcn31_hpo_dp_stream_encoder *enc3 = DCN3_1_HPO_DP_STREAM_ENC_FROM_HPO_STREAM_ENC(enc);
637
638 /* Set the input mux for video stream source */
639 REG_UPDATE(DP_STREAM_ENC_AUDIO_CONTROL,
640 DP_STREAM_ENC_INPUT_MUX_AUDIO_STREAM_SOURCE_SEL, az_inst);
641
642 ASSERT(enc->apg);
643 enc->apg->funcs->se_audio_setup(enc->apg, az_inst, info);
644 }
645
dcn31_hpo_dp_stream_enc_audio_enable(struct hpo_dp_stream_encoder * enc)646 static void dcn31_hpo_dp_stream_enc_audio_enable(
647 struct hpo_dp_stream_encoder *enc)
648 {
649 struct dcn31_hpo_dp_stream_encoder *enc3 = DCN3_1_HPO_DP_STREAM_ENC_FROM_HPO_STREAM_ENC(enc);
650
651 /* Enable Audio packets */
652 REG_UPDATE(DP_SYM32_ENC_SDP_AUDIO_CONTROL0, ASP_ENABLE, 1);
653
654 /* Program the ATP and AIP next */
655 REG_UPDATE_2(DP_SYM32_ENC_SDP_AUDIO_CONTROL0,
656 ATP_ENABLE, 1,
657 AIP_ENABLE, 1);
658
659 /* Enable secondary data path */
660 REG_UPDATE(DP_SYM32_ENC_SDP_CONTROL,
661 SDP_STREAM_ENABLE, 1);
662
663 /* Enable APG block */
664 enc->apg->funcs->enable_apg(enc->apg);
665 }
666
dcn31_hpo_dp_stream_enc_audio_disable(struct hpo_dp_stream_encoder * enc)667 static void dcn31_hpo_dp_stream_enc_audio_disable(
668 struct hpo_dp_stream_encoder *enc)
669 {
670 struct dcn31_hpo_dp_stream_encoder *enc3 = DCN3_1_HPO_DP_STREAM_ENC_FROM_HPO_STREAM_ENC(enc);
671
672 /* Disable Audio packets */
673 REG_UPDATE_4(DP_SYM32_ENC_SDP_AUDIO_CONTROL0,
674 ASP_ENABLE, 0,
675 ATP_ENABLE, 0,
676 AIP_ENABLE, 0,
677 ACM_ENABLE, 0);
678
679 /* Disable STP Stream Enable if other SDP GSP are also disabled */
680 if (!(hpo_dp_is_gsp_enabled(enc)))
681 REG_UPDATE(DP_SYM32_ENC_SDP_CONTROL,
682 SDP_STREAM_ENABLE, 0);
683
684 /* Disable APG block */
685 enc->apg->funcs->disable_apg(enc->apg);
686 }
687
dcn31_hpo_dp_stream_enc_read_state(struct hpo_dp_stream_encoder * enc,struct hpo_dp_stream_encoder_state * s)688 static void dcn31_hpo_dp_stream_enc_read_state(
689 struct hpo_dp_stream_encoder *enc,
690 struct hpo_dp_stream_encoder_state *s)
691 {
692 struct dcn31_hpo_dp_stream_encoder *enc3 = DCN3_1_HPO_DP_STREAM_ENC_FROM_HPO_STREAM_ENC(enc);
693
694 REG_GET(DP_SYM32_ENC_CONTROL,
695 DP_SYM32_ENC_ENABLE, &s->stream_enc_enabled);
696 REG_GET(DP_SYM32_ENC_VID_STREAM_CONTROL,
697 VID_STREAM_ENABLE, &s->vid_stream_enabled);
698 REG_GET(DP_STREAM_ENC_INPUT_MUX_CONTROL,
699 DP_STREAM_ENC_INPUT_MUX_PIXEL_STREAM_SOURCE_SEL, &s->otg_inst);
700
701 REG_GET_3(DP_SYM32_ENC_VID_PIXEL_FORMAT,
702 PIXEL_ENCODING_TYPE, &s->compressed_format,
703 UNCOMPRESSED_PIXEL_ENCODING, &s->pixel_encoding,
704 UNCOMPRESSED_COMPONENT_DEPTH, &s->component_depth);
705
706 REG_GET(DP_SYM32_ENC_SDP_CONTROL,
707 SDP_STREAM_ENABLE, &s->sdp_enabled);
708
709 switch (enc->inst) {
710 case 0:
711 REG_GET(DP_STREAM_MAPPER_CONTROL0,
712 DP_STREAM_LINK_TARGET, &s->mapped_to_link_enc);
713 break;
714 case 1:
715 REG_GET(DP_STREAM_MAPPER_CONTROL1,
716 DP_STREAM_LINK_TARGET, &s->mapped_to_link_enc);
717 break;
718 case 2:
719 REG_GET(DP_STREAM_MAPPER_CONTROL2,
720 DP_STREAM_LINK_TARGET, &s->mapped_to_link_enc);
721 break;
722 case 3:
723 REG_GET(DP_STREAM_MAPPER_CONTROL3,
724 DP_STREAM_LINK_TARGET, &s->mapped_to_link_enc);
725 break;
726 }
727 }
728
dcn31_set_hblank_min_symbol_width(struct hpo_dp_stream_encoder * enc,uint16_t width)729 static void dcn31_set_hblank_min_symbol_width(
730 struct hpo_dp_stream_encoder *enc,
731 uint16_t width)
732 {
733 struct dcn31_hpo_dp_stream_encoder *enc3 = DCN3_1_HPO_DP_STREAM_ENC_FROM_HPO_STREAM_ENC(enc);
734
735 REG_SET(DP_SYM32_ENC_HBLANK_CONTROL, 0,
736 HBLANK_MINIMUM_SYMBOL_WIDTH, width);
737 }
738
739 static const struct hpo_dp_stream_encoder_funcs dcn30_str_enc_funcs = {
740 .enable_stream = dcn31_hpo_dp_stream_enc_enable_stream,
741 .dp_unblank = dcn31_hpo_dp_stream_enc_dp_unblank,
742 .dp_blank = dcn31_hpo_dp_stream_enc_dp_blank,
743 .disable = dcn31_hpo_dp_stream_enc_disable,
744 .set_stream_attribute = dcn31_hpo_dp_stream_enc_set_stream_attribute,
745 .update_dp_info_packets_sdp_line_num = dcn31_hpo_dp_stream_enc_update_dp_info_packets_sdp_line_num,
746 .update_dp_info_packets = dcn31_hpo_dp_stream_enc_update_dp_info_packets,
747 .stop_dp_info_packets = dcn31_hpo_dp_stream_enc_stop_dp_info_packets,
748 .dp_set_dsc_pps_info_packet = dcn31_hpo_dp_stream_enc_set_dsc_pps_info_packet,
749 .map_stream_to_link = dcn31_hpo_dp_stream_enc_map_stream_to_link,
750 .dp_audio_setup = dcn31_hpo_dp_stream_enc_audio_setup,
751 .dp_audio_enable = dcn31_hpo_dp_stream_enc_audio_enable,
752 .dp_audio_disable = dcn31_hpo_dp_stream_enc_audio_disable,
753 .read_state = dcn31_hpo_dp_stream_enc_read_state,
754 .set_hblank_min_symbol_width = dcn31_set_hblank_min_symbol_width,
755 };
756
dcn31_hpo_dp_stream_encoder_construct(struct dcn31_hpo_dp_stream_encoder * enc3,struct dc_context * ctx,struct dc_bios * bp,uint32_t inst,enum engine_id eng_id,struct vpg * vpg,struct apg * apg,const struct dcn31_hpo_dp_stream_encoder_registers * regs,const struct dcn31_hpo_dp_stream_encoder_shift * hpo_se_shift,const struct dcn31_hpo_dp_stream_encoder_mask * hpo_se_mask)757 void dcn31_hpo_dp_stream_encoder_construct(
758 struct dcn31_hpo_dp_stream_encoder *enc3,
759 struct dc_context *ctx,
760 struct dc_bios *bp,
761 uint32_t inst,
762 enum engine_id eng_id,
763 struct vpg *vpg,
764 struct apg *apg,
765 const struct dcn31_hpo_dp_stream_encoder_registers *regs,
766 const struct dcn31_hpo_dp_stream_encoder_shift *hpo_se_shift,
767 const struct dcn31_hpo_dp_stream_encoder_mask *hpo_se_mask)
768 {
769 enc3->base.funcs = &dcn30_str_enc_funcs;
770 enc3->base.ctx = ctx;
771 enc3->base.inst = inst;
772 enc3->base.id = eng_id;
773 enc3->base.bp = bp;
774 enc3->base.vpg = vpg;
775 enc3->base.apg = apg;
776 enc3->regs = regs;
777 enc3->hpo_se_shift = hpo_se_shift;
778 enc3->hpo_se_mask = hpo_se_mask;
779 }
780