]> asedeno.scripts.mit.edu Git - linux.git/blob - drivers/gpu/drm/amd/display/dc/dcn10/dcn10_link_encoder.c
drm/amd/display: block DP YCbCr420 modes
[linux.git] / drivers / gpu / drm / amd / display / dc / dcn10 / dcn10_link_encoder.c
1 /*
2  * Copyright 2012-15 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 "reg_helper.h"
27
28 #include "core_types.h"
29 #include "link_encoder.h"
30 #include "dcn10_link_encoder.h"
31 #include "stream_encoder.h"
32 #include "i2caux_interface.h"
33 #include "dc_bios_types.h"
34
35 #include "gpio_service_interface.h"
36
37 #define CTX \
38         enc10->base.ctx
39 #define DC_LOGGER \
40         enc10->base.ctx->logger
41
42 #define REG(reg)\
43         (enc10->link_regs->reg)
44
45 #undef FN
46 #define FN(reg_name, field_name) \
47         enc10->link_shift->field_name, enc10->link_mask->field_name
48
49
50 /*
51  * @brief
52  * Trigger Source Select
53  * ASIC-dependent, actual values for register programming
54  */
55 #define DCN10_DIG_FE_SOURCE_SELECT_INVALID 0x0
56 #define DCN10_DIG_FE_SOURCE_SELECT_DIGA 0x1
57 #define DCN10_DIG_FE_SOURCE_SELECT_DIGB 0x2
58 #define DCN10_DIG_FE_SOURCE_SELECT_DIGC 0x4
59 #define DCN10_DIG_FE_SOURCE_SELECT_DIGD 0x08
60 #define DCN10_DIG_FE_SOURCE_SELECT_DIGE 0x10
61 #define DCN10_DIG_FE_SOURCE_SELECT_DIGF 0x20
62 #define DCN10_DIG_FE_SOURCE_SELECT_DIGG 0x40
63
64 enum {
65         DP_MST_UPDATE_MAX_RETRY = 50
66 };
67
68 static const struct link_encoder_funcs dcn10_lnk_enc_funcs = {
69         .validate_output_with_stream =
70                 dcn10_link_encoder_validate_output_with_stream,
71         .hw_init = dcn10_link_encoder_hw_init,
72         .setup = dcn10_link_encoder_setup,
73         .enable_tmds_output = dcn10_link_encoder_enable_tmds_output,
74         .enable_dp_output = dcn10_link_encoder_enable_dp_output,
75         .enable_dp_mst_output = dcn10_link_encoder_enable_dp_mst_output,
76         .disable_output = dcn10_link_encoder_disable_output,
77         .dp_set_lane_settings = dcn10_link_encoder_dp_set_lane_settings,
78         .dp_set_phy_pattern = dcn10_link_encoder_dp_set_phy_pattern,
79         .update_mst_stream_allocation_table =
80                 dcn10_link_encoder_update_mst_stream_allocation_table,
81         .psr_program_dp_dphy_fast_training =
82                         dcn10_psr_program_dp_dphy_fast_training,
83         .psr_program_secondary_packet = dcn10_psr_program_secondary_packet,
84         .connect_dig_be_to_fe = dcn10_link_encoder_connect_dig_be_to_fe,
85         .enable_hpd = dcn10_link_encoder_enable_hpd,
86         .disable_hpd = dcn10_link_encoder_disable_hpd,
87         .is_dig_enabled = dcn10_is_dig_enabled,
88         .destroy = dcn10_link_encoder_destroy
89 };
90
91 static enum bp_result link_transmitter_control(
92         struct dcn10_link_encoder *enc10,
93         struct bp_transmitter_control *cntl)
94 {
95         enum bp_result result;
96         struct dc_bios *bp = enc10->base.ctx->dc_bios;
97
98         result = bp->funcs->transmitter_control(bp, cntl);
99
100         return result;
101 }
102
103 static void enable_phy_bypass_mode(
104         struct dcn10_link_encoder *enc10,
105         bool enable)
106 {
107         /* This register resides in DP back end block;
108          * transmitter is used for the offset
109          */
110         REG_UPDATE(DP_DPHY_CNTL, DPHY_BYPASS, enable);
111
112 }
113
114 static void disable_prbs_symbols(
115         struct dcn10_link_encoder *enc10,
116         bool disable)
117 {
118         /* This register resides in DP back end block;
119          * transmitter is used for the offset
120          */
121         REG_UPDATE_4(DP_DPHY_CNTL,
122                         DPHY_ATEST_SEL_LANE0, disable,
123                         DPHY_ATEST_SEL_LANE1, disable,
124                         DPHY_ATEST_SEL_LANE2, disable,
125                         DPHY_ATEST_SEL_LANE3, disable);
126 }
127
128 static void disable_prbs_mode(
129         struct dcn10_link_encoder *enc10)
130 {
131         REG_UPDATE(DP_DPHY_PRBS_CNTL, DPHY_PRBS_EN, 0);
132 }
133
134 static void program_pattern_symbols(
135         struct dcn10_link_encoder *enc10,
136         uint16_t pattern_symbols[8])
137 {
138         /* This register resides in DP back end block;
139          * transmitter is used for the offset
140          */
141         REG_SET_3(DP_DPHY_SYM0, 0,
142                         DPHY_SYM1, pattern_symbols[0],
143                         DPHY_SYM2, pattern_symbols[1],
144                         DPHY_SYM3, pattern_symbols[2]);
145
146         /* This register resides in DP back end block;
147          * transmitter is used for the offset
148          */
149         REG_SET_3(DP_DPHY_SYM1, 0,
150                         DPHY_SYM4, pattern_symbols[3],
151                         DPHY_SYM5, pattern_symbols[4],
152                         DPHY_SYM6, pattern_symbols[5]);
153
154         /* This register resides in DP back end block;
155          * transmitter is used for the offset
156          */
157         REG_SET_2(DP_DPHY_SYM2, 0,
158                         DPHY_SYM7, pattern_symbols[6],
159                         DPHY_SYM8, pattern_symbols[7]);
160 }
161
162 static void set_dp_phy_pattern_d102(
163         struct dcn10_link_encoder *enc10)
164 {
165         /* Disable PHY Bypass mode to setup the test pattern */
166         enable_phy_bypass_mode(enc10, false);
167
168         /* For 10-bit PRBS or debug symbols
169          * please use the following sequence:
170          *
171          * Enable debug symbols on the lanes
172          */
173         disable_prbs_symbols(enc10, true);
174
175         /* Disable PRBS mode */
176         disable_prbs_mode(enc10);
177
178         /* Program debug symbols to be output */
179         {
180                 uint16_t pattern_symbols[8] = {
181                         0x2AA, 0x2AA, 0x2AA, 0x2AA,
182                         0x2AA, 0x2AA, 0x2AA, 0x2AA
183                 };
184
185                 program_pattern_symbols(enc10, pattern_symbols);
186         }
187
188         /* Enable phy bypass mode to enable the test pattern */
189
190         enable_phy_bypass_mode(enc10, true);
191 }
192
193 static void set_link_training_complete(
194         struct dcn10_link_encoder *enc10,
195         bool complete)
196 {
197         /* This register resides in DP back end block;
198          * transmitter is used for the offset
199          */
200         REG_UPDATE(DP_LINK_CNTL, DP_LINK_TRAINING_COMPLETE, complete);
201
202 }
203
204 void dcn10_link_encoder_set_dp_phy_pattern_training_pattern(
205         struct link_encoder *enc,
206         uint32_t index)
207 {
208         struct dcn10_link_encoder *enc10 = TO_DCN10_LINK_ENC(enc);
209         /* Write Training Pattern */
210
211         REG_WRITE(DP_DPHY_TRAINING_PATTERN_SEL, index);
212
213         /* Set HW Register Training Complete to false */
214
215         set_link_training_complete(enc10, false);
216
217         /* Disable PHY Bypass mode to output Training Pattern */
218
219         enable_phy_bypass_mode(enc10, false);
220
221         /* Disable PRBS mode */
222         disable_prbs_mode(enc10);
223 }
224
225 static void setup_panel_mode(
226         struct dcn10_link_encoder *enc10,
227         enum dp_panel_mode panel_mode)
228 {
229         uint32_t value;
230
231         ASSERT(REG(DP_DPHY_INTERNAL_CTRL));
232         value = REG_READ(DP_DPHY_INTERNAL_CTRL);
233
234         switch (panel_mode) {
235         case DP_PANEL_MODE_EDP:
236                 value = 0x1;
237                 break;
238         case DP_PANEL_MODE_SPECIAL:
239                 value = 0x11;
240                 break;
241         default:
242                 value = 0x0;
243                 break;
244         }
245
246         REG_WRITE(DP_DPHY_INTERNAL_CTRL, value);
247 }
248
249 static void set_dp_phy_pattern_symbol_error(
250         struct dcn10_link_encoder *enc10)
251 {
252         /* Disable PHY Bypass mode to setup the test pattern */
253         enable_phy_bypass_mode(enc10, false);
254
255         /* program correct panel mode*/
256         setup_panel_mode(enc10, DP_PANEL_MODE_DEFAULT);
257
258         /* A PRBS23 pattern is used for most DP electrical measurements. */
259
260         /* Enable PRBS symbols on the lanes */
261         disable_prbs_symbols(enc10, false);
262
263         /* For PRBS23 Set bit DPHY_PRBS_SEL=1 and Set bit DPHY_PRBS_EN=1 */
264         REG_UPDATE_2(DP_DPHY_PRBS_CNTL,
265                         DPHY_PRBS_SEL, 1,
266                         DPHY_PRBS_EN, 1);
267
268         /* Enable phy bypass mode to enable the test pattern */
269         enable_phy_bypass_mode(enc10, true);
270 }
271
272 static void set_dp_phy_pattern_prbs7(
273         struct dcn10_link_encoder *enc10)
274 {
275         /* Disable PHY Bypass mode to setup the test pattern */
276         enable_phy_bypass_mode(enc10, false);
277
278         /* A PRBS7 pattern is used for most DP electrical measurements. */
279
280         /* Enable PRBS symbols on the lanes */
281         disable_prbs_symbols(enc10, false);
282
283         /* For PRBS7 Set bit DPHY_PRBS_SEL=0 and Set bit DPHY_PRBS_EN=1 */
284         REG_UPDATE_2(DP_DPHY_PRBS_CNTL,
285                         DPHY_PRBS_SEL, 0,
286                         DPHY_PRBS_EN, 1);
287
288         /* Enable phy bypass mode to enable the test pattern */
289         enable_phy_bypass_mode(enc10, true);
290 }
291
292 static void set_dp_phy_pattern_80bit_custom(
293         struct dcn10_link_encoder *enc10,
294         const uint8_t *pattern)
295 {
296         /* Disable PHY Bypass mode to setup the test pattern */
297         enable_phy_bypass_mode(enc10, false);
298
299         /* Enable debug symbols on the lanes */
300
301         disable_prbs_symbols(enc10, true);
302
303         /* Enable PHY bypass mode to enable the test pattern */
304         /* TODO is it really needed ? */
305
306         enable_phy_bypass_mode(enc10, true);
307
308         /* Program 80 bit custom pattern */
309         {
310                 uint16_t pattern_symbols[8];
311
312                 pattern_symbols[0] =
313                         ((pattern[1] & 0x03) << 8) | pattern[0];
314                 pattern_symbols[1] =
315                         ((pattern[2] & 0x0f) << 6) | ((pattern[1] >> 2) & 0x3f);
316                 pattern_symbols[2] =
317                         ((pattern[3] & 0x3f) << 4) | ((pattern[2] >> 4) & 0x0f);
318                 pattern_symbols[3] =
319                         (pattern[4] << 2) | ((pattern[3] >> 6) & 0x03);
320                 pattern_symbols[4] =
321                         ((pattern[6] & 0x03) << 8) | pattern[5];
322                 pattern_symbols[5] =
323                         ((pattern[7] & 0x0f) << 6) | ((pattern[6] >> 2) & 0x3f);
324                 pattern_symbols[6] =
325                         ((pattern[8] & 0x3f) << 4) | ((pattern[7] >> 4) & 0x0f);
326                 pattern_symbols[7] =
327                         (pattern[9] << 2) | ((pattern[8] >> 6) & 0x03);
328
329                 program_pattern_symbols(enc10, pattern_symbols);
330         }
331
332         /* Enable phy bypass mode to enable the test pattern */
333
334         enable_phy_bypass_mode(enc10, true);
335 }
336
337 static void set_dp_phy_pattern_hbr2_compliance_cp2520_2(
338         struct dcn10_link_encoder *enc10,
339         unsigned int cp2520_pattern)
340 {
341
342         /* previously there is a register DP_HBR2_EYE_PATTERN
343          * that is enabled to get the pattern.
344          * But it does not work with the latest spec change,
345          * so we are programming the following registers manually.
346          *
347          * The following settings have been confirmed
348          * by Nick Chorney and Sandra Liu
349          */
350
351         /* Disable PHY Bypass mode to setup the test pattern */
352
353         enable_phy_bypass_mode(enc10, false);
354
355         /* Setup DIG encoder in DP SST mode */
356         enc10->base.funcs->setup(&enc10->base, SIGNAL_TYPE_DISPLAY_PORT);
357
358         /* ensure normal panel mode. */
359         setup_panel_mode(enc10, DP_PANEL_MODE_DEFAULT);
360
361         /* no vbid after BS (SR)
362          * DP_LINK_FRAMING_CNTL changed history Sandra Liu
363          * 11000260 / 11000104 / 110000FC
364          */
365         REG_UPDATE_3(DP_LINK_FRAMING_CNTL,
366                         DP_IDLE_BS_INTERVAL, 0xFC,
367                         DP_VBID_DISABLE, 1,
368                         DP_VID_ENHANCED_FRAME_MODE, 1);
369
370         /* swap every BS with SR */
371         REG_UPDATE(DP_DPHY_SCRAM_CNTL, DPHY_SCRAMBLER_BS_COUNT, 0);
372
373         /* select cp2520 patterns */
374         if (REG(DP_DPHY_HBR2_PATTERN_CONTROL))
375                 REG_UPDATE(DP_DPHY_HBR2_PATTERN_CONTROL,
376                                 DP_DPHY_HBR2_PATTERN_CONTROL, cp2520_pattern);
377         else
378                 /* pre-DCE11 can only generate CP2520 pattern 2 */
379                 ASSERT(cp2520_pattern == 2);
380
381         /* set link training complete */
382         set_link_training_complete(enc10, true);
383
384         /* disable video stream */
385         REG_UPDATE(DP_VID_STREAM_CNTL, DP_VID_STREAM_ENABLE, 0);
386
387         /* Disable PHY Bypass mode to setup the test pattern */
388         enable_phy_bypass_mode(enc10, false);
389 }
390
391 static void set_dp_phy_pattern_passthrough_mode(
392         struct dcn10_link_encoder *enc10,
393         enum dp_panel_mode panel_mode)
394 {
395         /* program correct panel mode */
396         setup_panel_mode(enc10, panel_mode);
397
398         /* restore LINK_FRAMING_CNTL and DPHY_SCRAMBLER_BS_COUNT
399          * in case we were doing HBR2 compliance pattern before
400          */
401         REG_UPDATE_3(DP_LINK_FRAMING_CNTL,
402                         DP_IDLE_BS_INTERVAL, 0x2000,
403                         DP_VBID_DISABLE, 0,
404                         DP_VID_ENHANCED_FRAME_MODE, 1);
405
406         REG_UPDATE(DP_DPHY_SCRAM_CNTL, DPHY_SCRAMBLER_BS_COUNT, 0x1FF);
407
408         /* set link training complete */
409         set_link_training_complete(enc10, true);
410
411         /* Disable PHY Bypass mode to setup the test pattern */
412         enable_phy_bypass_mode(enc10, false);
413
414         /* Disable PRBS mode */
415         disable_prbs_mode(enc10);
416 }
417
418 /* return value is bit-vector */
419 static uint8_t get_frontend_source(
420         enum engine_id engine)
421 {
422         switch (engine) {
423         case ENGINE_ID_DIGA:
424                 return DCN10_DIG_FE_SOURCE_SELECT_DIGA;
425         case ENGINE_ID_DIGB:
426                 return DCN10_DIG_FE_SOURCE_SELECT_DIGB;
427         case ENGINE_ID_DIGC:
428                 return DCN10_DIG_FE_SOURCE_SELECT_DIGC;
429         case ENGINE_ID_DIGD:
430                 return DCN10_DIG_FE_SOURCE_SELECT_DIGD;
431         case ENGINE_ID_DIGE:
432                 return DCN10_DIG_FE_SOURCE_SELECT_DIGE;
433         case ENGINE_ID_DIGF:
434                 return DCN10_DIG_FE_SOURCE_SELECT_DIGF;
435         case ENGINE_ID_DIGG:
436                 return DCN10_DIG_FE_SOURCE_SELECT_DIGG;
437         default:
438                 ASSERT_CRITICAL(false);
439                 return DCN10_DIG_FE_SOURCE_SELECT_INVALID;
440         }
441 }
442
443 void configure_encoder(
444         struct dcn10_link_encoder *enc10,
445         const struct dc_link_settings *link_settings)
446 {
447         /* set number of lanes */
448         REG_SET(DP_CONFIG, 0,
449                         DP_UDI_LANES, link_settings->lane_count - LANE_COUNT_ONE);
450
451         /* setup scrambler */
452         REG_UPDATE(DP_DPHY_SCRAM_CNTL, DPHY_SCRAMBLER_ADVANCE, 1);
453 }
454
455 void dcn10_psr_program_dp_dphy_fast_training(struct link_encoder *enc,
456                         bool exit_link_training_required)
457 {
458         struct dcn10_link_encoder *enc10 = TO_DCN10_LINK_ENC(enc);
459
460         if (exit_link_training_required)
461                 REG_UPDATE(DP_DPHY_FAST_TRAINING,
462                                 DPHY_RX_FAST_TRAINING_CAPABLE, 1);
463         else {
464                 REG_UPDATE(DP_DPHY_FAST_TRAINING,
465                                 DPHY_RX_FAST_TRAINING_CAPABLE, 0);
466                 /*In DCE 11, we are able to pre-program a Force SR register
467                  * to be able to trigger SR symbol after 5 idle patterns
468                  * transmitted. Upon PSR Exit, DMCU can trigger
469                  * DPHY_LOAD_BS_COUNT_START = 1. Upon writing 1 to
470                  * DPHY_LOAD_BS_COUNT_START and the internal counter
471                  * reaches DPHY_LOAD_BS_COUNT, the next BS symbol will be
472                  * replaced by SR symbol once.
473                  */
474
475                 REG_UPDATE(DP_DPHY_BS_SR_SWAP_CNTL, DPHY_LOAD_BS_COUNT, 0x5);
476         }
477 }
478
479 void dcn10_psr_program_secondary_packet(struct link_encoder *enc,
480                         unsigned int sdp_transmit_line_num_deadline)
481 {
482         struct dcn10_link_encoder *enc10 = TO_DCN10_LINK_ENC(enc);
483
484         REG_UPDATE_2(DP_SEC_CNTL1,
485                 DP_SEC_GSP0_LINE_NUM, sdp_transmit_line_num_deadline,
486                 DP_SEC_GSP0_PRIORITY, 1);
487 }
488
489 bool dcn10_is_dig_enabled(struct link_encoder *enc)
490 {
491         struct dcn10_link_encoder *enc10 = TO_DCN10_LINK_ENC(enc);
492         uint32_t value;
493
494         REG_GET(DIG_BE_EN_CNTL, DIG_ENABLE, &value);
495         return value;
496 }
497
498 static void link_encoder_disable(struct dcn10_link_encoder *enc10)
499 {
500         /* reset training pattern */
501         REG_SET(DP_DPHY_TRAINING_PATTERN_SEL, 0,
502                         DPHY_TRAINING_PATTERN_SEL, 0);
503
504         /* reset training complete */
505         REG_UPDATE(DP_LINK_CNTL, DP_LINK_TRAINING_COMPLETE, 0);
506
507         /* reset panel mode */
508         setup_panel_mode(enc10, DP_PANEL_MODE_DEFAULT);
509 }
510
511 static void hpd_initialize(
512         struct dcn10_link_encoder *enc10)
513 {
514         /* Associate HPD with DIG_BE */
515         enum hpd_source_id hpd_source = enc10->base.hpd_source;
516
517         REG_UPDATE(DIG_BE_CNTL, DIG_HPD_SELECT, hpd_source);
518 }
519
520 bool dcn10_link_encoder_validate_dvi_output(
521         const struct dcn10_link_encoder *enc10,
522         enum signal_type connector_signal,
523         enum signal_type signal,
524         const struct dc_crtc_timing *crtc_timing)
525 {
526         uint32_t max_pixel_clock = TMDS_MAX_PIXEL_CLOCK;
527
528         if (signal == SIGNAL_TYPE_DVI_DUAL_LINK)
529                 max_pixel_clock *= 2;
530
531         /* This handles the case of HDMI downgrade to DVI we don't want to
532          * we don't want to cap the pixel clock if the DDI is not DVI.
533          */
534         if (connector_signal != SIGNAL_TYPE_DVI_DUAL_LINK &&
535                         connector_signal != SIGNAL_TYPE_DVI_SINGLE_LINK)
536                 max_pixel_clock = enc10->base.features.max_hdmi_pixel_clock;
537
538         /* DVI only support RGB pixel encoding */
539         if (crtc_timing->pixel_encoding != PIXEL_ENCODING_RGB)
540                 return false;
541
542         /*connect DVI via adpater's HDMI connector*/
543         if ((connector_signal == SIGNAL_TYPE_DVI_SINGLE_LINK ||
544                 connector_signal == SIGNAL_TYPE_HDMI_TYPE_A) &&
545                 signal != SIGNAL_TYPE_HDMI_TYPE_A &&
546                 crtc_timing->pix_clk_khz > TMDS_MAX_PIXEL_CLOCK)
547                 return false;
548         if (crtc_timing->pix_clk_khz < TMDS_MIN_PIXEL_CLOCK)
549                 return false;
550
551         if (crtc_timing->pix_clk_khz > max_pixel_clock)
552                 return false;
553
554         /* DVI supports 6/8bpp single-link and 10/16bpp dual-link */
555         switch (crtc_timing->display_color_depth) {
556         case COLOR_DEPTH_666:
557         case COLOR_DEPTH_888:
558         break;
559         case COLOR_DEPTH_101010:
560         case COLOR_DEPTH_161616:
561                 if (signal != SIGNAL_TYPE_DVI_DUAL_LINK)
562                         return false;
563         break;
564         default:
565                 return false;
566         }
567
568         return true;
569 }
570
571 static bool dcn10_link_encoder_validate_hdmi_output(
572         const struct dcn10_link_encoder *enc10,
573         const struct dc_crtc_timing *crtc_timing,
574         int adjusted_pix_clk_khz)
575 {
576         enum dc_color_depth max_deep_color =
577                         enc10->base.features.max_hdmi_deep_color;
578
579         if (max_deep_color < crtc_timing->display_color_depth)
580                 return false;
581
582         if (crtc_timing->display_color_depth < COLOR_DEPTH_888)
583                 return false;
584         if (adjusted_pix_clk_khz < TMDS_MIN_PIXEL_CLOCK)
585                 return false;
586
587         if ((adjusted_pix_clk_khz == 0) ||
588                 (adjusted_pix_clk_khz > enc10->base.features.max_hdmi_pixel_clock))
589                 return false;
590
591         /* DCE11 HW does not support 420 */
592         if (!enc10->base.features.ycbcr420_supported &&
593                         crtc_timing->pixel_encoding == PIXEL_ENCODING_YCBCR420)
594                 return false;
595
596         if (!enc10->base.features.flags.bits.HDMI_6GB_EN &&
597                 adjusted_pix_clk_khz >= 300000)
598                 return false;
599         if (enc10->base.ctx->dc->debug.hdmi20_disable &&
600                 crtc_timing->pixel_encoding == PIXEL_ENCODING_YCBCR420)
601                 return false;
602         return true;
603 }
604
605 bool dcn10_link_encoder_validate_dp_output(
606         const struct dcn10_link_encoder *enc10,
607         const struct dc_crtc_timing *crtc_timing)
608 {
609         if (crtc_timing->pixel_encoding == PIXEL_ENCODING_YCBCR420)
610                 return false;
611
612         /* default RGB only */
613         if (crtc_timing->pixel_encoding == PIXEL_ENCODING_RGB)
614                 return true;
615
616         if (enc10->base.features.flags.bits.IS_YCBCR_CAPABLE)
617                 return true;
618
619         /* for DCE 8.x or later DP Y-only feature,
620          * we need ASIC cap + FeatureSupportDPYonly, not support 666
621          */
622         if (crtc_timing->flags.Y_ONLY &&
623                 enc10->base.features.flags.bits.IS_YCBCR_CAPABLE &&
624                 crtc_timing->display_color_depth != COLOR_DEPTH_666)
625                 return true;
626
627         return false;
628 }
629
630 void dcn10_link_encoder_construct(
631         struct dcn10_link_encoder *enc10,
632         const struct encoder_init_data *init_data,
633         const struct encoder_feature_support *enc_features,
634         const struct dcn10_link_enc_registers *link_regs,
635         const struct dcn10_link_enc_aux_registers *aux_regs,
636         const struct dcn10_link_enc_hpd_registers *hpd_regs,
637         const struct dcn10_link_enc_shift *link_shift,
638         const struct dcn10_link_enc_mask *link_mask)
639 {
640         struct bp_encoder_cap_info bp_cap_info = {0};
641         const struct dc_vbios_funcs *bp_funcs = init_data->ctx->dc_bios->funcs;
642         enum bp_result result = BP_RESULT_OK;
643
644         enc10->base.funcs = &dcn10_lnk_enc_funcs;
645         enc10->base.ctx = init_data->ctx;
646         enc10->base.id = init_data->encoder;
647
648         enc10->base.hpd_source = init_data->hpd_source;
649         enc10->base.connector = init_data->connector;
650
651         enc10->base.preferred_engine = ENGINE_ID_UNKNOWN;
652
653         enc10->base.features = *enc_features;
654
655         enc10->base.transmitter = init_data->transmitter;
656
657         /* set the flag to indicate whether driver poll the I2C data pin
658          * while doing the DP sink detect
659          */
660
661 /*      if (dal_adapter_service_is_feature_supported(as,
662                 FEATURE_DP_SINK_DETECT_POLL_DATA_PIN))
663                 enc10->base.features.flags.bits.
664                         DP_SINK_DETECT_POLL_DATA_PIN = true;*/
665
666         enc10->base.output_signals =
667                 SIGNAL_TYPE_DVI_SINGLE_LINK |
668                 SIGNAL_TYPE_DVI_DUAL_LINK |
669                 SIGNAL_TYPE_LVDS |
670                 SIGNAL_TYPE_DISPLAY_PORT |
671                 SIGNAL_TYPE_DISPLAY_PORT_MST |
672                 SIGNAL_TYPE_EDP |
673                 SIGNAL_TYPE_HDMI_TYPE_A;
674
675         /* For DCE 8.0 and 8.1, by design, UNIPHY is hardwired to DIG_BE.
676          * SW always assign DIG_FE 1:1 mapped to DIG_FE for non-MST UNIPHY.
677          * SW assign DIG_FE to non-MST UNIPHY first and MST last. So prefer
678          * DIG is per UNIPHY and used by SST DP, eDP, HDMI, DVI and LVDS.
679          * Prefer DIG assignment is decided by board design.
680          * For DCE 8.0, there are only max 6 UNIPHYs, we assume board design
681          * and VBIOS will filter out 7 UNIPHY for DCE 8.0.
682          * By this, adding DIGG should not hurt DCE 8.0.
683          * This will let DCE 8.1 share DCE 8.0 as much as possible
684          */
685
686         enc10->link_regs = link_regs;
687         enc10->aux_regs = aux_regs;
688         enc10->hpd_regs = hpd_regs;
689         enc10->link_shift = link_shift;
690         enc10->link_mask = link_mask;
691
692         switch (enc10->base.transmitter) {
693         case TRANSMITTER_UNIPHY_A:
694                 enc10->base.preferred_engine = ENGINE_ID_DIGA;
695         break;
696         case TRANSMITTER_UNIPHY_B:
697                 enc10->base.preferred_engine = ENGINE_ID_DIGB;
698         break;
699         case TRANSMITTER_UNIPHY_C:
700                 enc10->base.preferred_engine = ENGINE_ID_DIGC;
701         break;
702         case TRANSMITTER_UNIPHY_D:
703                 enc10->base.preferred_engine = ENGINE_ID_DIGD;
704         break;
705         case TRANSMITTER_UNIPHY_E:
706                 enc10->base.preferred_engine = ENGINE_ID_DIGE;
707         break;
708         case TRANSMITTER_UNIPHY_F:
709                 enc10->base.preferred_engine = ENGINE_ID_DIGF;
710         break;
711         case TRANSMITTER_UNIPHY_G:
712                 enc10->base.preferred_engine = ENGINE_ID_DIGG;
713         break;
714         default:
715                 ASSERT_CRITICAL(false);
716                 enc10->base.preferred_engine = ENGINE_ID_UNKNOWN;
717         }
718
719         /* default to one to mirror Windows behavior */
720         enc10->base.features.flags.bits.HDMI_6GB_EN = 1;
721
722         result = bp_funcs->get_encoder_cap_info(enc10->base.ctx->dc_bios,
723                                                 enc10->base.id, &bp_cap_info);
724
725         /* Override features with DCE-specific values */
726         if (result == BP_RESULT_OK) {
727                 enc10->base.features.flags.bits.IS_HBR2_CAPABLE =
728                                 bp_cap_info.DP_HBR2_EN;
729                 enc10->base.features.flags.bits.IS_HBR3_CAPABLE =
730                                 bp_cap_info.DP_HBR3_EN;
731                 enc10->base.features.flags.bits.HDMI_6GB_EN = bp_cap_info.HDMI_6GB_EN;
732         } else {
733                 DC_LOG_WARNING("%s: Failed to get encoder_cap_info from VBIOS with error code %d!\n",
734                                 __func__,
735                                 result);
736         }
737         if (enc10->base.ctx->dc->debug.hdmi20_disable) {
738                 enc10->base.features.flags.bits.HDMI_6GB_EN = 0;
739         }
740 }
741
742 bool dcn10_link_encoder_validate_output_with_stream(
743         struct link_encoder *enc,
744         const struct dc_stream_state *stream)
745 {
746         struct dcn10_link_encoder *enc10 = TO_DCN10_LINK_ENC(enc);
747         bool is_valid;
748
749         switch (stream->signal) {
750         case SIGNAL_TYPE_DVI_SINGLE_LINK:
751         case SIGNAL_TYPE_DVI_DUAL_LINK:
752                 is_valid = dcn10_link_encoder_validate_dvi_output(
753                         enc10,
754                         stream->sink->link->connector_signal,
755                         stream->signal,
756                         &stream->timing);
757         break;
758         case SIGNAL_TYPE_HDMI_TYPE_A:
759                 is_valid = dcn10_link_encoder_validate_hdmi_output(
760                                 enc10,
761                                 &stream->timing,
762                                 stream->phy_pix_clk);
763         break;
764         case SIGNAL_TYPE_DISPLAY_PORT:
765         case SIGNAL_TYPE_DISPLAY_PORT_MST:
766                 is_valid = dcn10_link_encoder_validate_dp_output(
767                                         enc10, &stream->timing);
768         break;
769         case SIGNAL_TYPE_EDP:
770                 is_valid = (stream->timing.pixel_encoding == PIXEL_ENCODING_RGB) ? true : false;
771         break;
772         case SIGNAL_TYPE_VIRTUAL:
773                 is_valid = true;
774                 break;
775         default:
776                 is_valid = false;
777         break;
778         }
779
780         return is_valid;
781 }
782
783 void dcn10_link_encoder_hw_init(
784         struct link_encoder *enc)
785 {
786         struct dcn10_link_encoder *enc10 = TO_DCN10_LINK_ENC(enc);
787         struct bp_transmitter_control cntl = { 0 };
788         enum bp_result result;
789
790         cntl.action = TRANSMITTER_CONTROL_INIT;
791         cntl.engine_id = ENGINE_ID_UNKNOWN;
792         cntl.transmitter = enc10->base.transmitter;
793         cntl.connector_obj_id = enc10->base.connector;
794         cntl.lanes_number = LANE_COUNT_FOUR;
795         cntl.coherent = false;
796         cntl.hpd_sel = enc10->base.hpd_source;
797
798         if (enc10->base.connector.id == CONNECTOR_ID_EDP)
799                 cntl.signal = SIGNAL_TYPE_EDP;
800
801         result = link_transmitter_control(enc10, &cntl);
802
803         if (result != BP_RESULT_OK) {
804                 DC_LOG_ERROR("%s: Failed to execute VBIOS command table!\n",
805                         __func__);
806                 BREAK_TO_DEBUGGER();
807                 return;
808         }
809
810         if (enc10->base.connector.id == CONNECTOR_ID_LVDS) {
811                 cntl.action = TRANSMITTER_CONTROL_BACKLIGHT_BRIGHTNESS;
812
813                 result = link_transmitter_control(enc10, &cntl);
814
815                 ASSERT(result == BP_RESULT_OK);
816
817         }
818         dcn10_aux_initialize(enc10);
819
820         /* reinitialize HPD.
821          * hpd_initialize() will pass DIG_FE id to HW context.
822          * All other routine within HW context will use fe_engine_offset
823          * as DIG_FE id even caller pass DIG_FE id.
824          * So this routine must be called first.
825          */
826         hpd_initialize(enc10);
827 }
828
829 void dcn10_link_encoder_destroy(struct link_encoder **enc)
830 {
831         kfree(TO_DCN10_LINK_ENC(*enc));
832         *enc = NULL;
833 }
834
835 void dcn10_link_encoder_setup(
836         struct link_encoder *enc,
837         enum signal_type signal)
838 {
839         struct dcn10_link_encoder *enc10 = TO_DCN10_LINK_ENC(enc);
840
841         switch (signal) {
842         case SIGNAL_TYPE_EDP:
843         case SIGNAL_TYPE_DISPLAY_PORT:
844                 /* DP SST */
845                 REG_UPDATE(DIG_BE_CNTL, DIG_MODE, 0);
846                 break;
847         case SIGNAL_TYPE_LVDS:
848                 /* LVDS */
849                 REG_UPDATE(DIG_BE_CNTL, DIG_MODE, 1);
850                 break;
851         case SIGNAL_TYPE_DVI_SINGLE_LINK:
852         case SIGNAL_TYPE_DVI_DUAL_LINK:
853                 /* TMDS-DVI */
854                 REG_UPDATE(DIG_BE_CNTL, DIG_MODE, 2);
855                 break;
856         case SIGNAL_TYPE_HDMI_TYPE_A:
857                 /* TMDS-HDMI */
858                 REG_UPDATE(DIG_BE_CNTL, DIG_MODE, 3);
859                 break;
860         case SIGNAL_TYPE_DISPLAY_PORT_MST:
861                 /* DP MST */
862                 REG_UPDATE(DIG_BE_CNTL, DIG_MODE, 5);
863                 break;
864         default:
865                 ASSERT_CRITICAL(false);
866                 /* invalid mode ! */
867                 break;
868         }
869
870 }
871
872 /* TODO: still need depth or just pass in adjusted pixel clock? */
873 void dcn10_link_encoder_enable_tmds_output(
874         struct link_encoder *enc,
875         enum clock_source_id clock_source,
876         enum dc_color_depth color_depth,
877         enum signal_type signal,
878         uint32_t pixel_clock)
879 {
880         struct dcn10_link_encoder *enc10 = TO_DCN10_LINK_ENC(enc);
881         struct bp_transmitter_control cntl = { 0 };
882         enum bp_result result;
883
884         /* Enable the PHY */
885
886         cntl.action = TRANSMITTER_CONTROL_ENABLE;
887         cntl.engine_id = enc->preferred_engine;
888         cntl.transmitter = enc10->base.transmitter;
889         cntl.pll_id = clock_source;
890         cntl.signal = signal;
891         if (cntl.signal == SIGNAL_TYPE_DVI_DUAL_LINK)
892                 cntl.lanes_number = 8;
893         else
894                 cntl.lanes_number = 4;
895
896         cntl.hpd_sel = enc10->base.hpd_source;
897
898         cntl.pixel_clock = pixel_clock;
899         cntl.color_depth = color_depth;
900
901         result = link_transmitter_control(enc10, &cntl);
902
903         if (result != BP_RESULT_OK) {
904                 DC_LOG_ERROR("%s: Failed to execute VBIOS command table!\n",
905                         __func__);
906                 BREAK_TO_DEBUGGER();
907         }
908 }
909
910 /* enables DP PHY output */
911 void dcn10_link_encoder_enable_dp_output(
912         struct link_encoder *enc,
913         const struct dc_link_settings *link_settings,
914         enum clock_source_id clock_source)
915 {
916         struct dcn10_link_encoder *enc10 = TO_DCN10_LINK_ENC(enc);
917         struct bp_transmitter_control cntl = { 0 };
918         enum bp_result result;
919
920         /* Enable the PHY */
921
922         /* number_of_lanes is used for pixel clock adjust,
923          * but it's not passed to asic_control.
924          * We need to set number of lanes manually.
925          */
926         configure_encoder(enc10, link_settings);
927
928         cntl.action = TRANSMITTER_CONTROL_ENABLE;
929         cntl.engine_id = enc->preferred_engine;
930         cntl.transmitter = enc10->base.transmitter;
931         cntl.pll_id = clock_source;
932         cntl.signal = SIGNAL_TYPE_DISPLAY_PORT;
933         cntl.lanes_number = link_settings->lane_count;
934         cntl.hpd_sel = enc10->base.hpd_source;
935         cntl.pixel_clock = link_settings->link_rate
936                                                 * LINK_RATE_REF_FREQ_IN_KHZ;
937         /* TODO: check if undefined works */
938         cntl.color_depth = COLOR_DEPTH_UNDEFINED;
939
940         result = link_transmitter_control(enc10, &cntl);
941
942         if (result != BP_RESULT_OK) {
943                 DC_LOG_ERROR("%s: Failed to execute VBIOS command table!\n",
944                         __func__);
945                 BREAK_TO_DEBUGGER();
946         }
947 }
948
949 /* enables DP PHY output in MST mode */
950 void dcn10_link_encoder_enable_dp_mst_output(
951         struct link_encoder *enc,
952         const struct dc_link_settings *link_settings,
953         enum clock_source_id clock_source)
954 {
955         struct dcn10_link_encoder *enc10 = TO_DCN10_LINK_ENC(enc);
956         struct bp_transmitter_control cntl = { 0 };
957         enum bp_result result;
958
959         /* Enable the PHY */
960
961         /* number_of_lanes is used for pixel clock adjust,
962          * but it's not passed to asic_control.
963          * We need to set number of lanes manually.
964          */
965         configure_encoder(enc10, link_settings);
966
967         cntl.action = TRANSMITTER_CONTROL_ENABLE;
968         cntl.engine_id = ENGINE_ID_UNKNOWN;
969         cntl.transmitter = enc10->base.transmitter;
970         cntl.pll_id = clock_source;
971         cntl.signal = SIGNAL_TYPE_DISPLAY_PORT_MST;
972         cntl.lanes_number = link_settings->lane_count;
973         cntl.hpd_sel = enc10->base.hpd_source;
974         cntl.pixel_clock = link_settings->link_rate
975                                                 * LINK_RATE_REF_FREQ_IN_KHZ;
976         /* TODO: check if undefined works */
977         cntl.color_depth = COLOR_DEPTH_UNDEFINED;
978
979         result = link_transmitter_control(enc10, &cntl);
980
981         if (result != BP_RESULT_OK) {
982                 DC_LOG_ERROR("%s: Failed to execute VBIOS command table!\n",
983                         __func__);
984                 BREAK_TO_DEBUGGER();
985         }
986 }
987 /*
988  * @brief
989  * Disable transmitter and its encoder
990  */
991 void dcn10_link_encoder_disable_output(
992         struct link_encoder *enc,
993         enum signal_type signal)
994 {
995         struct dcn10_link_encoder *enc10 = TO_DCN10_LINK_ENC(enc);
996         struct bp_transmitter_control cntl = { 0 };
997         enum bp_result result;
998
999         if (!dcn10_is_dig_enabled(enc)) {
1000                 /* OF_SKIP_POWER_DOWN_INACTIVE_ENCODER */
1001         /*in DP_Alt_No_Connect case, we turn off the dig already,
1002         after excuation the PHY w/a sequence, not allow touch PHY any more*/
1003                 return;
1004         }
1005         /* Power-down RX and disable GPU PHY should be paired.
1006          * Disabling PHY without powering down RX may cause
1007          * symbol lock loss, on which we will get DP Sink interrupt.
1008          */
1009
1010         /* There is a case for the DP active dongles
1011          * where we want to disable the PHY but keep RX powered,
1012          * for those we need to ignore DP Sink interrupt
1013          * by checking lane count that has been set
1014          * on the last do_enable_output().
1015          */
1016
1017         /* disable transmitter */
1018         cntl.action = TRANSMITTER_CONTROL_DISABLE;
1019         cntl.transmitter = enc10->base.transmitter;
1020         cntl.hpd_sel = enc10->base.hpd_source;
1021         cntl.signal = signal;
1022         cntl.connector_obj_id = enc10->base.connector;
1023
1024         result = link_transmitter_control(enc10, &cntl);
1025
1026         if (result != BP_RESULT_OK) {
1027                 DC_LOG_ERROR("%s: Failed to execute VBIOS command table!\n",
1028                         __func__);
1029                 BREAK_TO_DEBUGGER();
1030                 return;
1031         }
1032
1033         /* disable encoder */
1034         if (dc_is_dp_signal(signal))
1035                 link_encoder_disable(enc10);
1036 }
1037
1038 void dcn10_link_encoder_dp_set_lane_settings(
1039         struct link_encoder *enc,
1040         const struct link_training_settings *link_settings)
1041 {
1042         struct dcn10_link_encoder *enc10 = TO_DCN10_LINK_ENC(enc);
1043         union dpcd_training_lane_set training_lane_set = { { 0 } };
1044         int32_t lane = 0;
1045         struct bp_transmitter_control cntl = { 0 };
1046
1047         if (!link_settings) {
1048                 BREAK_TO_DEBUGGER();
1049                 return;
1050         }
1051
1052         cntl.action = TRANSMITTER_CONTROL_SET_VOLTAGE_AND_PREEMPASIS;
1053         cntl.transmitter = enc10->base.transmitter;
1054         cntl.connector_obj_id = enc10->base.connector;
1055         cntl.lanes_number = link_settings->link_settings.lane_count;
1056         cntl.hpd_sel = enc10->base.hpd_source;
1057         cntl.pixel_clock = link_settings->link_settings.link_rate *
1058                                                 LINK_RATE_REF_FREQ_IN_KHZ;
1059
1060         for (lane = 0; lane < link_settings->link_settings.lane_count; lane++) {
1061                 /* translate lane settings */
1062
1063                 training_lane_set.bits.VOLTAGE_SWING_SET =
1064                         link_settings->lane_settings[lane].VOLTAGE_SWING;
1065                 training_lane_set.bits.PRE_EMPHASIS_SET =
1066                         link_settings->lane_settings[lane].PRE_EMPHASIS;
1067
1068                 /* post cursor 2 setting only applies to HBR2 link rate */
1069                 if (link_settings->link_settings.link_rate == LINK_RATE_HIGH2) {
1070                         /* this is passed to VBIOS
1071                          * to program post cursor 2 level
1072                          */
1073                         training_lane_set.bits.POST_CURSOR2_SET =
1074                                 link_settings->lane_settings[lane].POST_CURSOR2;
1075                 }
1076
1077                 cntl.lane_select = lane;
1078                 cntl.lane_settings = training_lane_set.raw;
1079
1080                 /* call VBIOS table to set voltage swing and pre-emphasis */
1081                 link_transmitter_control(enc10, &cntl);
1082         }
1083 }
1084
1085 /* set DP PHY test and training patterns */
1086 void dcn10_link_encoder_dp_set_phy_pattern(
1087         struct link_encoder *enc,
1088         const struct encoder_set_dp_phy_pattern_param *param)
1089 {
1090         struct dcn10_link_encoder *enc10 = TO_DCN10_LINK_ENC(enc);
1091
1092         switch (param->dp_phy_pattern) {
1093         case DP_TEST_PATTERN_TRAINING_PATTERN1:
1094                 dcn10_link_encoder_set_dp_phy_pattern_training_pattern(enc, 0);
1095                 break;
1096         case DP_TEST_PATTERN_TRAINING_PATTERN2:
1097                 dcn10_link_encoder_set_dp_phy_pattern_training_pattern(enc, 1);
1098                 break;
1099         case DP_TEST_PATTERN_TRAINING_PATTERN3:
1100                 dcn10_link_encoder_set_dp_phy_pattern_training_pattern(enc, 2);
1101                 break;
1102         case DP_TEST_PATTERN_TRAINING_PATTERN4:
1103                 dcn10_link_encoder_set_dp_phy_pattern_training_pattern(enc, 3);
1104                 break;
1105         case DP_TEST_PATTERN_D102:
1106                 set_dp_phy_pattern_d102(enc10);
1107                 break;
1108         case DP_TEST_PATTERN_SYMBOL_ERROR:
1109                 set_dp_phy_pattern_symbol_error(enc10);
1110                 break;
1111         case DP_TEST_PATTERN_PRBS7:
1112                 set_dp_phy_pattern_prbs7(enc10);
1113                 break;
1114         case DP_TEST_PATTERN_80BIT_CUSTOM:
1115                 set_dp_phy_pattern_80bit_custom(
1116                         enc10, param->custom_pattern);
1117                 break;
1118         case DP_TEST_PATTERN_CP2520_1:
1119                 set_dp_phy_pattern_hbr2_compliance_cp2520_2(enc10, 1);
1120                 break;
1121         case DP_TEST_PATTERN_CP2520_2:
1122                 set_dp_phy_pattern_hbr2_compliance_cp2520_2(enc10, 2);
1123                 break;
1124         case DP_TEST_PATTERN_CP2520_3:
1125                 set_dp_phy_pattern_hbr2_compliance_cp2520_2(enc10, 3);
1126                 break;
1127         case DP_TEST_PATTERN_VIDEO_MODE: {
1128                 set_dp_phy_pattern_passthrough_mode(
1129                         enc10, param->dp_panel_mode);
1130                 break;
1131         }
1132
1133         default:
1134                 /* invalid phy pattern */
1135                 ASSERT_CRITICAL(false);
1136                 break;
1137         }
1138 }
1139
1140 static void fill_stream_allocation_row_info(
1141         const struct link_mst_stream_allocation *stream_allocation,
1142         uint32_t *src,
1143         uint32_t *slots)
1144 {
1145         const struct stream_encoder *stream_enc = stream_allocation->stream_enc;
1146
1147         if (stream_enc) {
1148                 *src = stream_enc->id;
1149                 *slots = stream_allocation->slot_count;
1150         } else {
1151                 *src = 0;
1152                 *slots = 0;
1153         }
1154 }
1155
1156 /* programs DP MST VC payload allocation */
1157 void dcn10_link_encoder_update_mst_stream_allocation_table(
1158         struct link_encoder *enc,
1159         const struct link_mst_stream_allocation_table *table)
1160 {
1161         struct dcn10_link_encoder *enc10 = TO_DCN10_LINK_ENC(enc);
1162         uint32_t value0 = 0;
1163         uint32_t value1 = 0;
1164         uint32_t value2 = 0;
1165         uint32_t slots = 0;
1166         uint32_t src = 0;
1167         uint32_t retries = 0;
1168
1169         /* For CZ, there are only 3 pipes. So Virtual channel is up 3.*/
1170
1171         /* --- Set MSE Stream Attribute -
1172          * Setup VC Payload Table on Tx Side,
1173          * Issue allocation change trigger
1174          * to commit payload on both tx and rx side
1175          */
1176
1177         /* we should clean-up table each time */
1178
1179         if (table->stream_count >= 1) {
1180                 fill_stream_allocation_row_info(
1181                         &table->stream_allocations[0],
1182                         &src,
1183                         &slots);
1184         } else {
1185                 src = 0;
1186                 slots = 0;
1187         }
1188
1189         REG_UPDATE_2(DP_MSE_SAT0,
1190                         DP_MSE_SAT_SRC0, src,
1191                         DP_MSE_SAT_SLOT_COUNT0, slots);
1192
1193         if (table->stream_count >= 2) {
1194                 fill_stream_allocation_row_info(
1195                         &table->stream_allocations[1],
1196                         &src,
1197                         &slots);
1198         } else {
1199                 src = 0;
1200                 slots = 0;
1201         }
1202
1203         REG_UPDATE_2(DP_MSE_SAT0,
1204                         DP_MSE_SAT_SRC1, src,
1205                         DP_MSE_SAT_SLOT_COUNT1, slots);
1206
1207         if (table->stream_count >= 3) {
1208                 fill_stream_allocation_row_info(
1209                         &table->stream_allocations[2],
1210                         &src,
1211                         &slots);
1212         } else {
1213                 src = 0;
1214                 slots = 0;
1215         }
1216
1217         REG_UPDATE_2(DP_MSE_SAT1,
1218                         DP_MSE_SAT_SRC2, src,
1219                         DP_MSE_SAT_SLOT_COUNT2, slots);
1220
1221         if (table->stream_count >= 4) {
1222                 fill_stream_allocation_row_info(
1223                         &table->stream_allocations[3],
1224                         &src,
1225                         &slots);
1226         } else {
1227                 src = 0;
1228                 slots = 0;
1229         }
1230
1231         REG_UPDATE_2(DP_MSE_SAT1,
1232                         DP_MSE_SAT_SRC3, src,
1233                         DP_MSE_SAT_SLOT_COUNT3, slots);
1234
1235         /* --- wait for transaction finish */
1236
1237         /* send allocation change trigger (ACT) ?
1238          * this step first sends the ACT,
1239          * then double buffers the SAT into the hardware
1240          * making the new allocation active on the DP MST mode link
1241          */
1242
1243         /* DP_MSE_SAT_UPDATE:
1244          * 0 - No Action
1245          * 1 - Update SAT with trigger
1246          * 2 - Update SAT without trigger
1247          */
1248         REG_UPDATE(DP_MSE_SAT_UPDATE,
1249                         DP_MSE_SAT_UPDATE, 1);
1250
1251         /* wait for update to complete
1252          * (i.e. DP_MSE_SAT_UPDATE field is reset to 0)
1253          * then wait for the transmission
1254          * of at least 16 MTP headers on immediate local link.
1255          * i.e. DP_MSE_16_MTP_KEEPOUT field (read only) is reset to 0
1256          * a value of 1 indicates that DP MST mode
1257          * is in the 16 MTP keepout region after a VC has been added.
1258          * MST stream bandwidth (VC rate) can be configured
1259          * after this bit is cleared
1260          */
1261         do {
1262                 udelay(10);
1263
1264                 value0 = REG_READ(DP_MSE_SAT_UPDATE);
1265
1266                 REG_GET(DP_MSE_SAT_UPDATE,
1267                                 DP_MSE_SAT_UPDATE, &value1);
1268
1269                 REG_GET(DP_MSE_SAT_UPDATE,
1270                                 DP_MSE_16_MTP_KEEPOUT, &value2);
1271
1272                 /* bit field DP_MSE_SAT_UPDATE is set to 1 already */
1273                 if (!value1 && !value2)
1274                         break;
1275                 ++retries;
1276         } while (retries < DP_MST_UPDATE_MAX_RETRY);
1277 }
1278
1279 void dcn10_link_encoder_connect_dig_be_to_fe(
1280         struct link_encoder *enc,
1281         enum engine_id engine,
1282         bool connect)
1283 {
1284         struct dcn10_link_encoder *enc10 = TO_DCN10_LINK_ENC(enc);
1285         uint32_t field;
1286
1287         if (engine != ENGINE_ID_UNKNOWN) {
1288
1289                 REG_GET(DIG_BE_CNTL, DIG_FE_SOURCE_SELECT, &field);
1290
1291                 if (connect)
1292                         field |= get_frontend_source(engine);
1293                 else
1294                         field &= ~get_frontend_source(engine);
1295
1296                 REG_UPDATE(DIG_BE_CNTL, DIG_FE_SOURCE_SELECT, field);
1297         }
1298 }
1299
1300
1301 #define HPD_REG(reg)\
1302         (enc10->hpd_regs->reg)
1303
1304 #define HPD_REG_READ(reg_name) \
1305                 dm_read_reg(CTX, HPD_REG(reg_name))
1306
1307 #define HPD_REG_UPDATE_N(reg_name, n, ...)      \
1308                 generic_reg_update_ex(CTX, \
1309                                 HPD_REG(reg_name), \
1310                                 HPD_REG_READ(reg_name), \
1311                                 n, __VA_ARGS__)
1312
1313 #define HPD_REG_UPDATE(reg_name, field, val)    \
1314                 HPD_REG_UPDATE_N(reg_name, 1, \
1315                                 FN(reg_name, field), val)
1316
1317 void dcn10_link_encoder_enable_hpd(struct link_encoder *enc)
1318 {
1319         struct dcn10_link_encoder *enc10 = TO_DCN10_LINK_ENC(enc);
1320
1321         HPD_REG_UPDATE(DC_HPD_CONTROL,
1322                         DC_HPD_EN, 1);
1323 }
1324
1325 void dcn10_link_encoder_disable_hpd(struct link_encoder *enc)
1326 {
1327         struct dcn10_link_encoder *enc10 = TO_DCN10_LINK_ENC(enc);
1328
1329         HPD_REG_UPDATE(DC_HPD_CONTROL,
1330                         DC_HPD_EN, 0);
1331 }
1332
1333
1334 #define AUX_REG(reg)\
1335         (enc10->aux_regs->reg)
1336
1337 #define AUX_REG_READ(reg_name) \
1338                 dm_read_reg(CTX, AUX_REG(reg_name))
1339
1340 #define AUX_REG_UPDATE_N(reg_name, n, ...)      \
1341                 generic_reg_update_ex(CTX, \
1342                                 AUX_REG(reg_name), \
1343                                 AUX_REG_READ(reg_name), \
1344                                 n, __VA_ARGS__)
1345
1346 #define AUX_REG_UPDATE(reg_name, field, val)    \
1347                 AUX_REG_UPDATE_N(reg_name, 1, \
1348                                 FN(reg_name, field), val)
1349
1350 #define AUX_REG_UPDATE_2(reg, f1, v1, f2, v2)   \
1351                 AUX_REG_UPDATE_N(reg, 2,\
1352                                 FN(reg, f1), v1,\
1353                                 FN(reg, f2), v2)
1354
1355 void dcn10_aux_initialize(struct dcn10_link_encoder *enc10)
1356 {
1357         enum hpd_source_id hpd_source = enc10->base.hpd_source;
1358
1359         AUX_REG_UPDATE_2(AUX_CONTROL,
1360                         AUX_HPD_SEL, hpd_source,
1361                         AUX_LS_READ_EN, 0);
1362
1363         /* 1/4 window (the maximum allowed) */
1364         AUX_REG_UPDATE(AUX_DPHY_RX_CONTROL0,
1365                         AUX_RX_RECEIVE_WINDOW, 1);
1366 }