1 /*
2 * Copyright 2022 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 /* FILE POLICY AND INTENDED USAGE:
27 * This file implements basic dp phy functionality such as enable/disable phy
28 * output and set lane/drive settings. This file is responsible for maintaining
29 * and update software state representing current phy status such as current
30 * link settings.
31 */
32
33 #include "link_dp_phy.h"
34 #include "link_dpcd.h"
35 #include "link_dp_training.h"
36 #include "link_dp_capability.h"
37 #include "clk_mgr.h"
38 #include "resource.h"
39 #include "link_enc_cfg.h"
40 #include "atomfirmware.h"
41 #define DC_LOGGER \
42 link->ctx->logger
43
dpcd_write_rx_power_ctrl(struct dc_link * link,bool on)44 void dpcd_write_rx_power_ctrl(struct dc_link *link, bool on)
45 {
46 uint8_t state;
47
48 state = on ? DP_POWER_STATE_D0 : DP_POWER_STATE_D3;
49
50 if (link->sync_lt_in_progress)
51 return;
52
53 core_link_write_dpcd(link, DP_SET_POWER, &state,
54 sizeof(state));
55
56 }
57
dp_enable_link_phy(struct dc_link * link,const struct link_resource * link_res,enum signal_type signal,enum clock_source_id clock_source,const struct dc_link_settings * link_settings)58 void dp_enable_link_phy(
59 struct dc_link *link,
60 const struct link_resource *link_res,
61 enum signal_type signal,
62 enum clock_source_id clock_source,
63 const struct dc_link_settings *link_settings)
64 {
65 link->cur_link_settings = *link_settings;
66 link->dc->hwss.enable_dp_link_output(link, link_res, signal,
67 clock_source, link_settings);
68 dpcd_write_rx_power_ctrl(link, true);
69 }
70
dp_disable_link_phy(struct dc_link * link,const struct link_resource * link_res,enum signal_type signal)71 void dp_disable_link_phy(struct dc_link *link,
72 const struct link_resource *link_res,
73 enum signal_type signal)
74 {
75 struct dc *dc = link->ctx->dc;
76
77 if (!link->wa_flags.dp_keep_receiver_powered &&
78 !link->skip_implict_edp_power_control &&
79 link->type != dc_connection_none)
80 dpcd_write_rx_power_ctrl(link, false);
81
82 dc->hwss.disable_link_output(link, link_res, signal);
83 /* Clear current link setting.*/
84 memset(&link->cur_link_settings, 0,
85 sizeof(link->cur_link_settings));
86
87 if (dc->clk_mgr->funcs->notify_link_rate_change)
88 dc->clk_mgr->funcs->notify_link_rate_change(dc->clk_mgr, link);
89 }
90
is_immediate_downstream(struct dc_link * link,uint32_t offset)91 static inline bool is_immediate_downstream(struct dc_link *link, uint32_t offset)
92 {
93 return (dp_parse_lttpr_repeater_count(link->dpcd_caps.lttpr_caps.phy_repeater_cnt) ==
94 offset);
95 }
96
dp_set_hw_lane_settings(struct dc_link * link,const struct link_resource * link_res,const struct link_training_settings * link_settings,uint32_t offset)97 void dp_set_hw_lane_settings(
98 struct dc_link *link,
99 const struct link_resource *link_res,
100 const struct link_training_settings *link_settings,
101 uint32_t offset)
102 {
103 const struct link_hwss *link_hwss = get_link_hwss(link, link_res);
104
105 // Don't return here if using FIXED_VS link HWSS and encoding is 128b/132b
106 if ((link_settings->lttpr_mode == LTTPR_MODE_NON_TRANSPARENT) &&
107 !is_immediate_downstream(link, offset) &&
108 (!(link->chip_caps & EXT_DISPLAY_PATH_CAPS__DP_FIXED_VS_EN) ||
109 link_dp_get_encoding_format(&link_settings->link_settings) == DP_8b_10b_ENCODING))
110 return;
111
112 if (link_hwss->ext.set_dp_lane_settings)
113 link_hwss->ext.set_dp_lane_settings(link, link_res,
114 &link_settings->link_settings,
115 link_settings->hw_lane_settings);
116
117 memmove(link->cur_lane_setting,
118 link_settings->hw_lane_settings,
119 sizeof(link->cur_lane_setting));
120 }
121
dp_set_drive_settings(struct dc_link * link,const struct link_resource * link_res,struct link_training_settings * lt_settings)122 void dp_set_drive_settings(
123 struct dc_link *link,
124 const struct link_resource *link_res,
125 struct link_training_settings *lt_settings)
126 {
127 /* program ASIC PHY settings*/
128 dp_set_hw_lane_settings(link, link_res, lt_settings, DPRX);
129
130 dp_hw_to_dpcd_lane_settings(lt_settings,
131 lt_settings->hw_lane_settings,
132 lt_settings->dpcd_lane_settings);
133
134 /* Notify DP sink the PHY settings from source */
135 dpcd_set_lane_settings(link, lt_settings, DPRX);
136 }
137
dp_set_fec_ready(struct dc_link * link,const struct link_resource * link_res,bool ready)138 enum dc_status dp_set_fec_ready(struct dc_link *link, const struct link_resource *link_res, bool ready)
139 {
140 /* FEC has to be "set ready" before the link training.
141 * The policy is to always train with FEC
142 * if the sink supports it and leave it enabled on link.
143 * If FEC is not supported, disable it.
144 */
145 struct link_encoder *link_enc = NULL;
146 enum dc_status status = DC_OK;
147 uint8_t fec_config = 0;
148
149 link_enc = link_enc_cfg_get_link_enc(link);
150 ASSERT(link_enc);
151 if (link_enc->funcs->fec_set_ready == NULL)
152 return DC_NOT_SUPPORTED;
153
154 if (ready && dp_should_enable_fec(link)) {
155 fec_config = 1;
156
157 status = core_link_write_dpcd(link, DP_FEC_CONFIGURATION,
158 &fec_config, sizeof(fec_config));
159
160 if (status == DC_OK) {
161 link_enc->funcs->fec_set_ready(link_enc, true);
162 link->fec_state = dc_link_fec_ready;
163 }
164 } else {
165 if (link->fec_state == dc_link_fec_ready) {
166 fec_config = 0;
167 if (link->type != dc_connection_none)
168 core_link_write_dpcd(link, DP_FEC_CONFIGURATION,
169 &fec_config, sizeof(fec_config));
170
171 link_enc->funcs->fec_set_ready(link_enc, false);
172 link->fec_state = dc_link_fec_not_ready;
173 }
174 }
175
176 return status;
177 }
178
dp_set_fec_enable(struct dc_link * link,bool enable)179 void dp_set_fec_enable(struct dc_link *link, bool enable)
180 {
181 struct link_encoder *link_enc = NULL;
182
183 link_enc = link_enc_cfg_get_link_enc(link);
184 ASSERT(link_enc);
185 if (link_enc->funcs->fec_set_enable == NULL)
186 return;
187
188 if (enable && dp_should_enable_fec(link)) {
189 if (link->fec_state == dc_link_fec_ready) {
190 /* According to DP spec, FEC enable sequence can first
191 * be transmitted anytime after 1000 LL codes have
192 * been transmitted on the link after link training
193 * completion. Using 1 lane RBR should have the maximum
194 * time for transmitting 1000 LL codes which is 6.173 us.
195 * So use 7 microseconds delay instead.
196 */
197 udelay(7);
198 link_enc->funcs->fec_set_enable(link_enc, true);
199 link->fec_state = dc_link_fec_enabled;
200 }
201 } else {
202 if (link->fec_state == dc_link_fec_enabled) {
203 link_enc->funcs->fec_set_enable(link_enc, false);
204 link->fec_state = dc_link_fec_ready;
205 }
206 }
207 }
208
209