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