2 * Copyright 2022 Advanced Micro Devices, Inc.
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:
11 * The above copyright notice and this permission notice shall be included in
12 * all copies or substantial portions of the Software.
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.
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
33 #include "link_dp_phy.h"
34 #include "link_dpcd.h"
35 #include "link_dp_training.h"
36 #include "link_dp_capability.h"
39 #include "link_enc_cfg.h"
40 #include "atomfirmware.h"
44 void dpcd_write_rx_power_ctrl(struct dc_link *link, bool on)
48 state = on ? DP_POWER_STATE_D0 : DP_POWER_STATE_D3;
50 if (link->sync_lt_in_progress)
53 core_link_write_dpcd(link, DP_SET_POWER, &state,
58 void dp_enable_link_phy(
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)
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);
71 void dp_disable_link_phy(struct dc_link *link,
72 const struct link_resource *link_res,
73 enum signal_type signal)
75 struct dc *dc = link->ctx->dc;
77 if (!link->wa_flags.dp_keep_receiver_powered &&
78 !link->skip_implict_edp_power_control)
79 dpcd_write_rx_power_ctrl(link, false);
81 dc->hwss.disable_link_output(link, link_res, signal);
82 /* Clear current link setting.*/
83 memset(&link->cur_link_settings, 0,
84 sizeof(link->cur_link_settings));
86 if (dc->clk_mgr->funcs->notify_link_rate_change)
87 dc->clk_mgr->funcs->notify_link_rate_change(dc->clk_mgr, link);
90 static inline bool is_immediate_downstream(struct dc_link *link, uint32_t offset)
92 return (dp_parse_lttpr_repeater_count(link->dpcd_caps.lttpr_caps.phy_repeater_cnt) ==
96 void dp_set_hw_lane_settings(
98 const struct link_resource *link_res,
99 const struct link_training_settings *link_settings,
102 const struct link_hwss *link_hwss = get_link_hwss(link, link_res);
104 // Don't return here if using FIXED_VS link HWSS and encoding is 128b/132b
105 if ((link_settings->lttpr_mode == LTTPR_MODE_NON_TRANSPARENT) &&
106 !is_immediate_downstream(link, offset) &&
107 (!((link->chip_caps & AMD_EXT_DISPLAY_PATH_CAPS__EXT_CHIP_MASK) == AMD_EXT_DISPLAY_PATH_CAPS__DP_FIXED_VS_EN) ||
108 link_dp_get_encoding_format(&link_settings->link_settings) == DP_8b_10b_ENCODING))
111 if (link_hwss->ext.set_dp_lane_settings)
112 link_hwss->ext.set_dp_lane_settings(link, link_res,
113 &link_settings->link_settings,
114 link_settings->hw_lane_settings);
116 memmove(link->cur_lane_setting,
117 link_settings->hw_lane_settings,
118 sizeof(link->cur_lane_setting));
121 void dp_set_drive_settings(
122 struct dc_link *link,
123 const struct link_resource *link_res,
124 struct link_training_settings *lt_settings)
126 /* program ASIC PHY settings*/
127 dp_set_hw_lane_settings(link, link_res, lt_settings, DPRX);
129 dp_hw_to_dpcd_lane_settings(lt_settings,
130 lt_settings->hw_lane_settings,
131 lt_settings->dpcd_lane_settings);
133 /* Notify DP sink the PHY settings from source */
134 dpcd_set_lane_settings(link, lt_settings, DPRX);
137 enum dc_status dp_set_fec_ready(struct dc_link *link, const struct link_resource *link_res, bool ready)
139 /* FEC has to be "set ready" before the link training.
140 * The policy is to always train with FEC
141 * if the sink supports it and leave it enabled on link.
142 * If FEC is not supported, disable it.
144 struct link_encoder *link_enc = NULL;
145 enum dc_status status = DC_OK;
146 uint8_t fec_config = 0;
148 link_enc = link_enc_cfg_get_link_enc(link);
150 if (link_enc->funcs->fec_set_ready == NULL)
151 return DC_NOT_SUPPORTED;
153 if (ready && dp_should_enable_fec(link)) {
156 status = core_link_write_dpcd(link, DP_FEC_CONFIGURATION,
157 &fec_config, sizeof(fec_config));
159 if (status == DC_OK) {
160 link_enc->funcs->fec_set_ready(link_enc, true);
161 link->fec_state = dc_link_fec_ready;
164 if (link->fec_state == dc_link_fec_ready) {
166 core_link_write_dpcd(link, DP_FEC_CONFIGURATION,
167 &fec_config, sizeof(fec_config));
169 link_enc->funcs->fec_set_ready(link_enc, false);
170 link->fec_state = dc_link_fec_not_ready;
177 void dp_set_fec_enable(struct dc_link *link, bool enable)
179 struct link_encoder *link_enc = NULL;
181 link_enc = link_enc_cfg_get_link_enc(link);
183 if (link_enc->funcs->fec_set_enable == NULL)
186 if (enable && dp_should_enable_fec(link)) {
187 if (link->fec_state == dc_link_fec_ready) {
188 /* According to DP spec, FEC enable sequence can first
189 * be transmitted anytime after 1000 LL codes have
190 * been transmitted on the link after link training
191 * completion. Using 1 lane RBR should have the maximum
192 * time for transmitting 1000 LL codes which is 6.173 us.
193 * So use 7 microseconds delay instead.
196 link_enc->funcs->fec_set_enable(link_enc, true);
197 link->fec_state = dc_link_fec_enabled;
200 if (link->fec_state == dc_link_fec_enabled) {
201 link_enc->funcs->fec_set_enable(link_enc, false);
202 link->fec_state = dc_link_fec_ready;