blob: c5b1f2da39544e6766ae1d70a3be0d296ebe6b97 [file] [log] [blame]
Dave Airlie746c1aa2009-12-08 07:07:28 +10001/*
2 * Copyright 2007-8 Advanced Micro Devices, Inc.
3 * Copyright 2008 Red Hat Inc.
4 *
5 * Permission is hereby granted, free of charge, to any person obtaining a
6 * copy of this software and associated documentation files (the "Software"),
7 * to deal in the Software without restriction, including without limitation
8 * the rights to use, copy, modify, merge, publish, distribute, sublicense,
9 * and/or sell copies of the Software, and to permit persons to whom the
10 * Software is furnished to do so, subject to the following conditions:
11 *
12 * The above copyright notice and this permission notice shall be included in
13 * all copies or substantial portions of the Software.
14 *
15 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
18 * THE COPYRIGHT HOLDER(S) OR AUTHOR(S) BE LIABLE FOR ANY CLAIM, DAMAGES OR
19 * OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE,
20 * ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
21 * OTHER DEALINGS IN THE SOFTWARE.
22 *
23 * Authors: Dave Airlie
24 * Alex Deucher
Jerome Glisse8d1c7022012-07-17 17:17:16 -040025 * Jerome Glisse
Dave Airlie746c1aa2009-12-08 07:07:28 +100026 */
David Howells760285e2012-10-02 18:01:07 +010027#include <drm/drmP.h>
28#include <drm/radeon_drm.h>
Dave Airlie746c1aa2009-12-08 07:07:28 +100029#include "radeon.h"
30
31#include "atom.h"
32#include "atom-bits.h"
David Howells760285e2012-10-02 18:01:07 +010033#include <drm/drm_dp_helper.h>
Dave Airlie746c1aa2009-12-08 07:07:28 +100034
Alex Deucherf92a8b62009-11-23 18:40:40 -050035/* move these to drm_dp_helper.c/h */
Alex Deucher5801ead2009-11-24 13:32:59 -050036#define DP_LINK_CONFIGURATION_SIZE 9
Daniel Vetter1a644cd2012-10-18 15:32:40 +020037#define DP_DPCD_SIZE DP_RECEIVER_CAP_SIZE
Alex Deucher5801ead2009-11-24 13:32:59 -050038
39static char *voltage_names[] = {
40 "0.4V", "0.6V", "0.8V", "1.2V"
41};
42static char *pre_emph_names[] = {
43 "0dB", "3.5dB", "6dB", "9.5dB"
44};
Alex Deucherf92a8b62009-11-23 18:40:40 -050045
Alex Deucher224d94b2011-05-20 04:34:28 -040046/***** radeon AUX functions *****/
Alex Deucher34be8c92013-07-18 11:13:53 -040047
48/* Atom needs data in little endian format
49 * so swap as appropriate when copying data to
50 * or from atom. Note that atom operates on
51 * dw units.
52 */
Alex Deucher4543eda2013-08-07 19:34:53 -040053void radeon_atom_copy_swap(u8 *dst, u8 *src, u8 num_bytes, bool to_le)
Alex Deucher34be8c92013-07-18 11:13:53 -040054{
55#ifdef __BIG_ENDIAN
56 u8 src_tmp[20], dst_tmp[20]; /* used for byteswapping */
57 u32 *dst32, *src32;
58 int i;
59
60 memcpy(src_tmp, src, num_bytes);
61 src32 = (u32 *)src_tmp;
62 dst32 = (u32 *)dst_tmp;
63 if (to_le) {
64 for (i = 0; i < ((num_bytes + 3) / 4); i++)
65 dst32[i] = cpu_to_le32(src32[i]);
66 memcpy(dst, dst_tmp, num_bytes);
67 } else {
68 u8 dws = num_bytes & ~3;
69 for (i = 0; i < ((num_bytes + 3) / 4); i++)
70 dst32[i] = le32_to_cpu(src32[i]);
71 memcpy(dst, dst_tmp, dws);
72 if (num_bytes % 4) {
73 for (i = 0; i < (num_bytes % 4); i++)
74 dst[dws+i] = dst_tmp[dws+i];
75 }
76 }
77#else
78 memcpy(dst, src, num_bytes);
79#endif
80}
81
Alex Deucherbcc1c2a2010-01-12 17:54:34 -050082union aux_channel_transaction {
83 PROCESS_AUX_CHANNEL_TRANSACTION_PS_ALLOCATION v1;
84 PROCESS_AUX_CHANNEL_TRANSACTION_PARAMETERS_V2 v2;
85};
Alex Deucher5801ead2009-11-24 13:32:59 -050086
Alex Deucher834b2902011-05-20 04:34:24 -040087static int radeon_process_aux_ch(struct radeon_i2c_chan *chan,
88 u8 *send, int send_bytes,
89 u8 *recv, int recv_size,
90 u8 delay, u8 *ack)
Dave Airlie746c1aa2009-12-08 07:07:28 +100091{
92 struct drm_device *dev = chan->dev;
93 struct radeon_device *rdev = dev->dev_private;
Alex Deucherbcc1c2a2010-01-12 17:54:34 -050094 union aux_channel_transaction args;
Dave Airlie746c1aa2009-12-08 07:07:28 +100095 int index = GetIndexIntoMasterTable(COMMAND, ProcessAuxChannelTransaction);
96 unsigned char *base;
Alex Deucher834b2902011-05-20 04:34:24 -040097 int recv_bytes;
Alex Deucher831719d62014-05-08 10:58:04 -040098 int r = 0;
Alex Deucher1a66c952009-11-20 19:40:13 -050099
Dave Airlie746c1aa2009-12-08 07:07:28 +1000100 memset(&args, 0, sizeof(args));
Alex Deucher1a66c952009-11-20 19:40:13 -0500101
Alex Deucher831719d62014-05-08 10:58:04 -0400102 mutex_lock(&chan->mutex);
103
Alex Deucher97412a72012-03-20 17:18:06 -0400104 base = (unsigned char *)(rdev->mode_info.atom_context->scratch + 1);
Dave Airlie746c1aa2009-12-08 07:07:28 +1000105
Alex Deucher4543eda2013-08-07 19:34:53 -0400106 radeon_atom_copy_swap(base, send, send_bytes, true);
Dave Airlie746c1aa2009-12-08 07:07:28 +1000107
Alex Deucher34be8c92013-07-18 11:13:53 -0400108 args.v1.lpAuxRequest = cpu_to_le16((u16)(0 + 4));
109 args.v1.lpDataOut = cpu_to_le16((u16)(16 + 4));
Alex Deucherbcc1c2a2010-01-12 17:54:34 -0500110 args.v1.ucDataOutLen = 0;
111 args.v1.ucChannelID = chan->rec.i2c_id;
112 args.v1.ucDelay = delay / 10;
113 if (ASIC_IS_DCE4(rdev))
Alex Deucher8e36ed02010-05-18 19:26:47 -0400114 args.v2.ucHPD_ID = chan->rec.hpd;
Dave Airlie746c1aa2009-12-08 07:07:28 +1000115
116 atom_execute_table(rdev->mode_info.atom_context, index, (uint32_t *)&args);
117
Alex Deucher834b2902011-05-20 04:34:24 -0400118 *ack = args.v1.ucReplyStatus;
119
120 /* timeout */
121 if (args.v1.ucReplyStatus == 1) {
122 DRM_DEBUG_KMS("dp_aux_ch timeout\n");
Alex Deucher831719d62014-05-08 10:58:04 -0400123 r = -ETIMEDOUT;
124 goto done;
Dave Airlie746c1aa2009-12-08 07:07:28 +1000125 }
126
Alex Deucher834b2902011-05-20 04:34:24 -0400127 /* flags not zero */
128 if (args.v1.ucReplyStatus == 2) {
129 DRM_DEBUG_KMS("dp_aux_ch flags not zero\n");
Alex Deucher831719d62014-05-08 10:58:04 -0400130 r = -EBUSY;
131 goto done;
Dave Airlie746c1aa2009-12-08 07:07:28 +1000132 }
Alex Deucher834b2902011-05-20 04:34:24 -0400133
134 /* error */
135 if (args.v1.ucReplyStatus == 3) {
136 DRM_DEBUG_KMS("dp_aux_ch error\n");
Alex Deucher831719d62014-05-08 10:58:04 -0400137 r = -EIO;
138 goto done;
Alex Deucher834b2902011-05-20 04:34:24 -0400139 }
140
141 recv_bytes = args.v1.ucDataOutLen;
142 if (recv_bytes > recv_size)
143 recv_bytes = recv_size;
144
145 if (recv && recv_size)
Alex Deucher4543eda2013-08-07 19:34:53 -0400146 radeon_atom_copy_swap(recv, base + 16, recv_bytes, false);
Alex Deucher834b2902011-05-20 04:34:24 -0400147
Alex Deucher831719d62014-05-08 10:58:04 -0400148 r = recv_bytes;
149done:
150 mutex_unlock(&chan->mutex);
151
152 return r;
Dave Airlie746c1aa2009-12-08 07:07:28 +1000153}
154
Alex Deucher25377b92014-04-07 10:33:43 -0400155#define BARE_ADDRESS_SIZE 3
156#define HEADER_SIZE (BARE_ADDRESS_SIZE + 1)
Alex Deucher496263b2014-03-21 10:34:07 -0400157
158static ssize_t
159radeon_dp_aux_transfer(struct drm_dp_aux *aux, struct drm_dp_aux_msg *msg)
Alex Deucher5801ead2009-11-24 13:32:59 -0500160{
Alex Deucher496263b2014-03-21 10:34:07 -0400161 struct radeon_i2c_chan *chan =
162 container_of(aux, struct radeon_i2c_chan, aux);
Alex Deucher834b2902011-05-20 04:34:24 -0400163 int ret;
Alex Deucher496263b2014-03-21 10:34:07 -0400164 u8 tx_buf[20];
165 size_t tx_size;
166 u8 ack, delay = 0;
Alex Deucher5801ead2009-11-24 13:32:59 -0500167
Alex Deucher496263b2014-03-21 10:34:07 -0400168 if (WARN_ON(msg->size > 16))
169 return -E2BIG;
Alex Deucher834b2902011-05-20 04:34:24 -0400170
Alex Deucher496263b2014-03-21 10:34:07 -0400171 tx_buf[0] = msg->address & 0xff;
172 tx_buf[1] = msg->address >> 8;
173 tx_buf[2] = msg->request << 4;
Alex Deucher25377b92014-04-07 10:33:43 -0400174 tx_buf[3] = msg->size ? (msg->size - 1) : 0;
Alex Deucher834b2902011-05-20 04:34:24 -0400175
Alex Deucher496263b2014-03-21 10:34:07 -0400176 switch (msg->request & ~DP_AUX_I2C_MOT) {
177 case DP_AUX_NATIVE_WRITE:
178 case DP_AUX_I2C_WRITE:
Alex Deucher25377b92014-04-07 10:33:43 -0400179 /* tx_size needs to be 4 even for bare address packets since the atom
180 * table needs the info in tx_buf[3].
181 */
Alex Deucher496263b2014-03-21 10:34:07 -0400182 tx_size = HEADER_SIZE + msg->size;
Alex Deucher25377b92014-04-07 10:33:43 -0400183 if (msg->size == 0)
184 tx_buf[3] |= BARE_ADDRESS_SIZE << 4;
185 else
186 tx_buf[3] |= tx_size << 4;
Alex Deucher496263b2014-03-21 10:34:07 -0400187 memcpy(tx_buf + HEADER_SIZE, msg->buffer, msg->size);
188 ret = radeon_process_aux_ch(chan,
189 tx_buf, tx_size, NULL, 0, delay, &ack);
190 if (ret >= 0)
191 /* Return payload size. */
192 ret = msg->size;
193 break;
194 case DP_AUX_NATIVE_READ:
195 case DP_AUX_I2C_READ:
Alex Deucher25377b92014-04-07 10:33:43 -0400196 /* tx_size needs to be 4 even for bare address packets since the atom
197 * table needs the info in tx_buf[3].
198 */
Alex Deucher496263b2014-03-21 10:34:07 -0400199 tx_size = HEADER_SIZE;
Alex Deucher25377b92014-04-07 10:33:43 -0400200 if (msg->size == 0)
201 tx_buf[3] |= BARE_ADDRESS_SIZE << 4;
202 else
203 tx_buf[3] |= tx_size << 4;
Alex Deucher496263b2014-03-21 10:34:07 -0400204 ret = radeon_process_aux_ch(chan,
205 tx_buf, tx_size, msg->buffer, msg->size, delay, &ack);
206 break;
207 default:
208 ret = -EINVAL;
209 break;
Alex Deucher834b2902011-05-20 04:34:24 -0400210 }
211
Alex Deucher25377b92014-04-07 10:33:43 -0400212 if (ret >= 0)
Alex Deucher496263b2014-03-21 10:34:07 -0400213 msg->reply = ack >> 4;
214
215 return ret;
Alex Deucher5801ead2009-11-24 13:32:59 -0500216}
217
Alex Deucher496263b2014-03-21 10:34:07 -0400218void radeon_dp_aux_init(struct radeon_connector *radeon_connector)
Alex Deucher5801ead2009-11-24 13:32:59 -0500219{
Alex Deucher834b2902011-05-20 04:34:24 -0400220 int ret;
Dave Airlie746c1aa2009-12-08 07:07:28 +1000221
Alex Deucherad47b8f2014-04-22 02:02:06 -0400222 radeon_connector->ddc_bus->rec.hpd = radeon_connector->hpd.hpd;
Alex Deucher379dfc22014-04-07 10:33:46 -0400223 radeon_connector->ddc_bus->aux.dev = radeon_connector->base.kdev;
224 radeon_connector->ddc_bus->aux.transfer = radeon_dp_aux_transfer;
Dave Airlie4f71d0c2014-06-04 16:02:28 +1000225
226 ret = drm_dp_aux_register(&radeon_connector->ddc_bus->aux);
Alex Deucher379dfc22014-04-07 10:33:46 -0400227 if (!ret)
228 radeon_connector->ddc_bus->has_aux = true;
Dave Airlie746c1aa2009-12-08 07:07:28 +1000229
Dave Airlie4f71d0c2014-06-04 16:02:28 +1000230 WARN(ret, "drm_dp_aux_register() failed with error %d\n", ret);
Dave Airlie746c1aa2009-12-08 07:07:28 +1000231}
Alex Deucher5801ead2009-11-24 13:32:59 -0500232
Alex Deucher224d94b2011-05-20 04:34:28 -0400233/***** general DP utility functions *****/
234
Alex Deucher224d94b2011-05-20 04:34:28 -0400235#define DP_VOLTAGE_MAX DP_TRAIN_VOLTAGE_SWING_1200
236#define DP_PRE_EMPHASIS_MAX DP_TRAIN_PRE_EMPHASIS_9_5
237
238static void dp_get_adjust_train(u8 link_status[DP_LINK_STATUS_SIZE],
239 int lane_count,
240 u8 train_set[4])
241{
242 u8 v = 0;
243 u8 p = 0;
244 int lane;
245
246 for (lane = 0; lane < lane_count; lane++) {
Daniel Vetter0f037bd2012-10-18 10:15:27 +0200247 u8 this_v = drm_dp_get_adjust_request_voltage(link_status, lane);
248 u8 this_p = drm_dp_get_adjust_request_pre_emphasis(link_status, lane);
Alex Deucher224d94b2011-05-20 04:34:28 -0400249
250 DRM_DEBUG_KMS("requested signal parameters: lane %d voltage %s pre_emph %s\n",
251 lane,
252 voltage_names[this_v >> DP_TRAIN_VOLTAGE_SWING_SHIFT],
253 pre_emph_names[this_p >> DP_TRAIN_PRE_EMPHASIS_SHIFT]);
254
255 if (this_v > v)
256 v = this_v;
257 if (this_p > p)
258 p = this_p;
259 }
260
261 if (v >= DP_VOLTAGE_MAX)
262 v |= DP_TRAIN_MAX_SWING_REACHED;
263
264 if (p >= DP_PRE_EMPHASIS_MAX)
265 p |= DP_TRAIN_MAX_PRE_EMPHASIS_REACHED;
266
267 DRM_DEBUG_KMS("using signal parameters: voltage %s pre_emph %s\n",
268 voltage_names[(v & DP_TRAIN_VOLTAGE_SWING_MASK) >> DP_TRAIN_VOLTAGE_SWING_SHIFT],
269 pre_emph_names[(p & DP_TRAIN_PRE_EMPHASIS_MASK) >> DP_TRAIN_PRE_EMPHASIS_SHIFT]);
270
271 for (lane = 0; lane < 4; lane++)
272 train_set[lane] = v | p;
273}
274
275/* convert bits per color to bits per pixel */
276/* get bpc from the EDID */
277static int convert_bpc_to_bpp(int bpc)
278{
279 if (bpc == 0)
280 return 24;
281 else
282 return bpc * 3;
283}
284
285/* get the max pix clock supported by the link rate and lane num */
286static int dp_get_max_dp_pix_clock(int link_rate,
287 int lane_num,
288 int bpp)
289{
290 return (link_rate * lane_num * 8) / bpp;
291}
292
Alex Deucher224d94b2011-05-20 04:34:28 -0400293/***** radeon specific DP functions *****/
294
Alex Deucher3b6d9fd2014-05-27 13:48:05 -0400295static int radeon_dp_get_max_link_rate(struct drm_connector *connector,
296 u8 dpcd[DP_DPCD_SIZE])
297{
298 int max_link_rate;
299
300 if (radeon_connector_is_dp12_capable(connector))
301 max_link_rate = min(drm_dp_max_link_rate(dpcd), 540000);
302 else
303 max_link_rate = min(drm_dp_max_link_rate(dpcd), 270000);
304
305 return max_link_rate;
306}
307
Alex Deucher224d94b2011-05-20 04:34:28 -0400308/* First get the min lane# when low rate is used according to pixel clock
309 * (prefer low rate), second check max lane# supported by DP panel,
310 * if the max lane# < low rate lane# then use max lane# instead.
311 */
312static int radeon_dp_get_dp_lane_number(struct drm_connector *connector,
313 u8 dpcd[DP_DPCD_SIZE],
314 int pix_clock)
315{
Alex Deuchereccea792012-03-26 15:12:54 -0400316 int bpp = convert_bpc_to_bpp(radeon_get_monitor_bpc(connector));
Alex Deucher3b6d9fd2014-05-27 13:48:05 -0400317 int max_link_rate = radeon_dp_get_max_link_rate(connector, dpcd);
Daniel Vetter397fe152012-10-22 22:56:43 +0200318 int max_lane_num = drm_dp_max_lane_count(dpcd);
Alex Deucher224d94b2011-05-20 04:34:28 -0400319 int lane_num;
320 int max_dp_pix_clock;
321
322 for (lane_num = 1; lane_num < max_lane_num; lane_num <<= 1) {
323 max_dp_pix_clock = dp_get_max_dp_pix_clock(max_link_rate, lane_num, bpp);
324 if (pix_clock <= max_dp_pix_clock)
325 break;
326 }
327
328 return lane_num;
329}
330
331static int radeon_dp_get_dp_link_clock(struct drm_connector *connector,
332 u8 dpcd[DP_DPCD_SIZE],
333 int pix_clock)
334{
Alex Deuchereccea792012-03-26 15:12:54 -0400335 int bpp = convert_bpc_to_bpp(radeon_get_monitor_bpc(connector));
Alex Deucher224d94b2011-05-20 04:34:28 -0400336 int lane_num, max_pix_clock;
337
Alex Deucherfdca78c2011-10-25 11:54:52 -0400338 if (radeon_connector_encoder_get_dp_bridge_encoder_id(connector) ==
339 ENCODER_OBJECT_ID_NUTMEG)
Alex Deucher224d94b2011-05-20 04:34:28 -0400340 return 270000;
341
342 lane_num = radeon_dp_get_dp_lane_number(connector, dpcd, pix_clock);
343 max_pix_clock = dp_get_max_dp_pix_clock(162000, lane_num, bpp);
344 if (pix_clock <= max_pix_clock)
345 return 162000;
346 max_pix_clock = dp_get_max_dp_pix_clock(270000, lane_num, bpp);
347 if (pix_clock <= max_pix_clock)
348 return 270000;
349 if (radeon_connector_is_dp12_capable(connector)) {
350 max_pix_clock = dp_get_max_dp_pix_clock(540000, lane_num, bpp);
351 if (pix_clock <= max_pix_clock)
352 return 540000;
353 }
354
Alex Deucher3b6d9fd2014-05-27 13:48:05 -0400355 return radeon_dp_get_max_link_rate(connector, dpcd);
Alex Deucher224d94b2011-05-20 04:34:28 -0400356}
357
358static u8 radeon_dp_encoder_service(struct radeon_device *rdev,
359 int action, int dp_clock,
360 u8 ucconfig, u8 lane_num)
361{
362 DP_ENCODER_SERVICE_PARAMETERS args;
363 int index = GetIndexIntoMasterTable(COMMAND, DPEncoderService);
364
365 memset(&args, 0, sizeof(args));
366 args.ucLinkClock = dp_clock / 10;
367 args.ucConfig = ucconfig;
368 args.ucAction = action;
369 args.ucLaneNum = lane_num;
370 args.ucStatus = 0;
371
372 atom_execute_table(rdev->mode_info.atom_context, index, (uint32_t *)&args);
373 return args.ucStatus;
374}
375
376u8 radeon_dp_getsinktype(struct radeon_connector *radeon_connector)
377{
Alex Deucher224d94b2011-05-20 04:34:28 -0400378 struct drm_device *dev = radeon_connector->base.dev;
379 struct radeon_device *rdev = dev->dev_private;
380
381 return radeon_dp_encoder_service(rdev, ATOM_DP_ACTION_GET_SINK_TYPE, 0,
Alex Deucher379dfc22014-04-07 10:33:46 -0400382 radeon_connector->ddc_bus->rec.i2c_id, 0);
Alex Deucher224d94b2011-05-20 04:34:28 -0400383}
384
Adam Jackson40c5d872012-05-14 16:05:48 -0400385static void radeon_dp_probe_oui(struct radeon_connector *radeon_connector)
386{
387 struct radeon_connector_atom_dig *dig_connector = radeon_connector->con_priv;
388 u8 buf[3];
389
390 if (!(dig_connector->dpcd[DP_DOWN_STREAM_PORT_COUNT] & DP_OUI_SUPPORT))
391 return;
392
Alex Deucheraa019b72014-04-30 09:27:15 -0400393 if (drm_dp_dpcd_read(&radeon_connector->ddc_bus->aux, DP_SINK_OUI, buf, 3) == 3)
Adam Jackson40c5d872012-05-14 16:05:48 -0400394 DRM_DEBUG_KMS("Sink OUI: %02hx%02hx%02hx\n",
395 buf[0], buf[1], buf[2]);
396
Alex Deucheraa019b72014-04-30 09:27:15 -0400397 if (drm_dp_dpcd_read(&radeon_connector->ddc_bus->aux, DP_BRANCH_OUI, buf, 3) == 3)
Adam Jackson40c5d872012-05-14 16:05:48 -0400398 DRM_DEBUG_KMS("Branch OUI: %02hx%02hx%02hx\n",
399 buf[0], buf[1], buf[2]);
400}
401
Alex Deucher224d94b2011-05-20 04:34:28 -0400402bool radeon_dp_getdpcd(struct radeon_connector *radeon_connector)
403{
404 struct radeon_connector_atom_dig *dig_connector = radeon_connector->con_priv;
Daniel Vetter1a644cd2012-10-18 15:32:40 +0200405 u8 msg[DP_DPCD_SIZE];
Alex Deucher224d94b2011-05-20 04:34:28 -0400406 int ret, i;
407
Alex Deucher379dfc22014-04-07 10:33:46 -0400408 ret = drm_dp_dpcd_read(&radeon_connector->ddc_bus->aux, DP_DPCD_REV, msg,
Alex Deucher496263b2014-03-21 10:34:07 -0400409 DP_DPCD_SIZE);
Alex Deucher224d94b2011-05-20 04:34:28 -0400410 if (ret > 0) {
Daniel Vetter1a644cd2012-10-18 15:32:40 +0200411 memcpy(dig_connector->dpcd, msg, DP_DPCD_SIZE);
Alex Deucher224d94b2011-05-20 04:34:28 -0400412 DRM_DEBUG_KMS("DPCD: ");
Daniel Vetter1a644cd2012-10-18 15:32:40 +0200413 for (i = 0; i < DP_DPCD_SIZE; i++)
Alex Deucher224d94b2011-05-20 04:34:28 -0400414 DRM_DEBUG_KMS("%02x ", msg[i]);
415 DRM_DEBUG_KMS("\n");
Adam Jackson40c5d872012-05-14 16:05:48 -0400416
417 radeon_dp_probe_oui(radeon_connector);
418
Alex Deucher224d94b2011-05-20 04:34:28 -0400419 return true;
420 }
421 dig_connector->dpcd[0] = 0;
422 return false;
423}
424
Alex Deucher386d4d72012-01-20 15:01:29 -0500425int radeon_dp_get_panel_mode(struct drm_encoder *encoder,
426 struct drm_connector *connector)
Alex Deucher224d94b2011-05-20 04:34:28 -0400427{
428 struct drm_device *dev = encoder->dev;
429 struct radeon_device *rdev = dev->dev_private;
Alex Deucher00dfb8d2011-10-31 08:54:41 -0400430 struct radeon_connector *radeon_connector = to_radeon_connector(connector);
Alex Deucher496263b2014-03-21 10:34:07 -0400431 struct radeon_connector_atom_dig *dig_connector;
Alex Deucher224d94b2011-05-20 04:34:28 -0400432 int panel_mode = DP_PANEL_MODE_EXTERNAL_DP_MODE;
Alex Deucher0ceb9962012-08-27 17:48:18 -0400433 u16 dp_bridge = radeon_connector_encoder_get_dp_bridge_encoder_id(connector);
434 u8 tmp;
Alex Deucher224d94b2011-05-20 04:34:28 -0400435
436 if (!ASIC_IS_DCE4(rdev))
Alex Deucher386d4d72012-01-20 15:01:29 -0500437 return panel_mode;
Alex Deucher224d94b2011-05-20 04:34:28 -0400438
Alex Deucher496263b2014-03-21 10:34:07 -0400439 if (!radeon_connector->con_priv)
440 return panel_mode;
441
442 dig_connector = radeon_connector->con_priv;
443
Alex Deucher0ceb9962012-08-27 17:48:18 -0400444 if (dp_bridge != ENCODER_OBJECT_ID_NONE) {
445 /* DP bridge chips */
Alex Deucheraa019b72014-04-30 09:27:15 -0400446 if (drm_dp_dpcd_readb(&radeon_connector->ddc_bus->aux,
447 DP_EDP_CONFIGURATION_CAP, &tmp) == 1) {
448 if (tmp & 1)
449 panel_mode = DP_PANEL_MODE_INTERNAL_DP2_MODE;
450 else if ((dp_bridge == ENCODER_OBJECT_ID_NUTMEG) ||
451 (dp_bridge == ENCODER_OBJECT_ID_TRAVIS))
452 panel_mode = DP_PANEL_MODE_INTERNAL_DP1_MODE;
453 else
454 panel_mode = DP_PANEL_MODE_EXTERNAL_DP_MODE;
455 }
Alex Deucher304a4842012-02-02 10:18:00 -0500456 } else if (connector->connector_type == DRM_MODE_CONNECTOR_eDP) {
Alex Deucher0ceb9962012-08-27 17:48:18 -0400457 /* eDP */
Alex Deucheraa019b72014-04-30 09:27:15 -0400458 if (drm_dp_dpcd_readb(&radeon_connector->ddc_bus->aux,
459 DP_EDP_CONFIGURATION_CAP, &tmp) == 1) {
460 if (tmp & 1)
461 panel_mode = DP_PANEL_MODE_INTERNAL_DP2_MODE;
462 }
Alex Deucher00dfb8d2011-10-31 08:54:41 -0400463 }
Alex Deucher224d94b2011-05-20 04:34:28 -0400464
Alex Deucher386d4d72012-01-20 15:01:29 -0500465 return panel_mode;
Alex Deucher224d94b2011-05-20 04:34:28 -0400466}
467
468void radeon_dp_set_link_config(struct drm_connector *connector,
Laurent Pincharte811f5a2012-07-17 17:56:50 +0200469 const struct drm_display_mode *mode)
Alex Deucher224d94b2011-05-20 04:34:28 -0400470{
471 struct radeon_connector *radeon_connector = to_radeon_connector(connector);
472 struct radeon_connector_atom_dig *dig_connector;
473
474 if (!radeon_connector->con_priv)
475 return;
476 dig_connector = radeon_connector->con_priv;
477
478 if ((dig_connector->dp_sink_type == CONNECTOR_OBJECT_ID_DISPLAYPORT) ||
479 (dig_connector->dp_sink_type == CONNECTOR_OBJECT_ID_eDP)) {
480 dig_connector->dp_clock =
481 radeon_dp_get_dp_link_clock(connector, dig_connector->dpcd, mode->clock);
482 dig_connector->dp_lane_count =
483 radeon_dp_get_dp_lane_number(connector, dig_connector->dpcd, mode->clock);
484 }
485}
486
487int radeon_dp_mode_valid_helper(struct drm_connector *connector,
488 struct drm_display_mode *mode)
489{
490 struct radeon_connector *radeon_connector = to_radeon_connector(connector);
491 struct radeon_connector_atom_dig *dig_connector;
492 int dp_clock;
493
494 if (!radeon_connector->con_priv)
495 return MODE_CLOCK_HIGH;
496 dig_connector = radeon_connector->con_priv;
497
498 dp_clock =
499 radeon_dp_get_dp_link_clock(connector, dig_connector->dpcd, mode->clock);
500
501 if ((dp_clock == 540000) &&
502 (!radeon_connector_is_dp12_capable(connector)))
503 return MODE_CLOCK_HIGH;
504
505 return MODE_OK;
506}
507
Alex Deucherd5811e82011-08-13 13:36:13 -0400508bool radeon_dp_needs_link_train(struct radeon_connector *radeon_connector)
509{
510 u8 link_status[DP_LINK_STATUS_SIZE];
511 struct radeon_connector_atom_dig *dig = radeon_connector->con_priv;
512
Alex Deucher379dfc22014-04-07 10:33:46 -0400513 if (drm_dp_dpcd_read_link_status(&radeon_connector->ddc_bus->aux, link_status)
514 <= 0)
Alex Deucherd5811e82011-08-13 13:36:13 -0400515 return false;
Daniel Vetter1ffdff12012-10-18 10:15:24 +0200516 if (drm_dp_channel_eq_ok(link_status, dig->dp_lane_count))
Alex Deucherd5811e82011-08-13 13:36:13 -0400517 return false;
518 return true;
519}
520
Alex Deucher2953da12014-03-17 23:48:15 -0400521void radeon_dp_set_rx_power_state(struct drm_connector *connector,
522 u8 power_state)
523{
524 struct radeon_connector *radeon_connector = to_radeon_connector(connector);
525 struct radeon_connector_atom_dig *dig_connector;
526
527 if (!radeon_connector->con_priv)
528 return;
529
530 dig_connector = radeon_connector->con_priv;
531
532 /* power up/down the sink */
533 if (dig_connector->dpcd[0] >= 0x11) {
Alex Deucher379dfc22014-04-07 10:33:46 -0400534 drm_dp_dpcd_writeb(&radeon_connector->ddc_bus->aux,
Alex Deucher2953da12014-03-17 23:48:15 -0400535 DP_SET_POWER, power_state);
536 usleep_range(1000, 2000);
537 }
538}
539
540
Alex Deucher224d94b2011-05-20 04:34:28 -0400541struct radeon_dp_link_train_info {
542 struct radeon_device *rdev;
543 struct drm_encoder *encoder;
544 struct drm_connector *connector;
Alex Deucher224d94b2011-05-20 04:34:28 -0400545 int enc_id;
546 int dp_clock;
547 int dp_lane_count;
Alex Deucher224d94b2011-05-20 04:34:28 -0400548 bool tp3_supported;
Daniel Vetter1a644cd2012-10-18 15:32:40 +0200549 u8 dpcd[DP_RECEIVER_CAP_SIZE];
Alex Deucher224d94b2011-05-20 04:34:28 -0400550 u8 train_set[4];
551 u8 link_status[DP_LINK_STATUS_SIZE];
552 u8 tries;
Jerome Glisse5a96a892011-07-25 11:57:43 -0400553 bool use_dpencoder;
Alex Deucher496263b2014-03-21 10:34:07 -0400554 struct drm_dp_aux *aux;
Alex Deucher224d94b2011-05-20 04:34:28 -0400555};
556
557static void radeon_dp_update_vs_emph(struct radeon_dp_link_train_info *dp_info)
558{
559 /* set the initial vs/emph on the source */
560 atombios_dig_transmitter_setup(dp_info->encoder,
561 ATOM_TRANSMITTER_ACTION_SETUP_VSEMPH,
562 0, dp_info->train_set[0]); /* sets all lanes at once */
563
564 /* set the vs/emph on the sink */
Alex Deucher496263b2014-03-21 10:34:07 -0400565 drm_dp_dpcd_write(dp_info->aux, DP_TRAINING_LANE0_SET,
566 dp_info->train_set, dp_info->dp_lane_count);
Alex Deucher224d94b2011-05-20 04:34:28 -0400567}
568
569static void radeon_dp_set_tp(struct radeon_dp_link_train_info *dp_info, int tp)
570{
571 int rtp = 0;
572
573 /* set training pattern on the source */
Jerome Glisse5a96a892011-07-25 11:57:43 -0400574 if (ASIC_IS_DCE4(dp_info->rdev) || !dp_info->use_dpencoder) {
Alex Deucher224d94b2011-05-20 04:34:28 -0400575 switch (tp) {
576 case DP_TRAINING_PATTERN_1:
577 rtp = ATOM_ENCODER_CMD_DP_LINK_TRAINING_PATTERN1;
578 break;
579 case DP_TRAINING_PATTERN_2:
580 rtp = ATOM_ENCODER_CMD_DP_LINK_TRAINING_PATTERN2;
581 break;
582 case DP_TRAINING_PATTERN_3:
583 rtp = ATOM_ENCODER_CMD_DP_LINK_TRAINING_PATTERN3;
584 break;
585 }
586 atombios_dig_encoder_setup(dp_info->encoder, rtp, 0);
587 } else {
588 switch (tp) {
589 case DP_TRAINING_PATTERN_1:
590 rtp = 0;
591 break;
592 case DP_TRAINING_PATTERN_2:
593 rtp = 1;
594 break;
595 }
596 radeon_dp_encoder_service(dp_info->rdev, ATOM_DP_ACTION_TRAINING_PATTERN_SEL,
597 dp_info->dp_clock, dp_info->enc_id, rtp);
598 }
599
600 /* enable training pattern on the sink */
Alex Deucher496263b2014-03-21 10:34:07 -0400601 drm_dp_dpcd_writeb(dp_info->aux, DP_TRAINING_PATTERN_SET, tp);
Alex Deucher224d94b2011-05-20 04:34:28 -0400602}
603
604static int radeon_dp_link_train_init(struct radeon_dp_link_train_info *dp_info)
605{
Alex Deucher386d4d72012-01-20 15:01:29 -0500606 struct radeon_encoder *radeon_encoder = to_radeon_encoder(dp_info->encoder);
607 struct radeon_encoder_atom_dig *dig = radeon_encoder->enc_priv;
Alex Deucher224d94b2011-05-20 04:34:28 -0400608 u8 tmp;
609
610 /* power up the sink */
Alex Deucher2953da12014-03-17 23:48:15 -0400611 radeon_dp_set_rx_power_state(dp_info->connector, DP_SET_POWER_D0);
Alex Deucher224d94b2011-05-20 04:34:28 -0400612
613 /* possibly enable downspread on the sink */
614 if (dp_info->dpcd[3] & 0x1)
Alex Deucher496263b2014-03-21 10:34:07 -0400615 drm_dp_dpcd_writeb(dp_info->aux,
616 DP_DOWNSPREAD_CTRL, DP_SPREAD_AMP_0_5);
Alex Deucher224d94b2011-05-20 04:34:28 -0400617 else
Alex Deucher496263b2014-03-21 10:34:07 -0400618 drm_dp_dpcd_writeb(dp_info->aux,
619 DP_DOWNSPREAD_CTRL, 0);
Alex Deucher224d94b2011-05-20 04:34:28 -0400620
Alex Deucher386d4d72012-01-20 15:01:29 -0500621 if ((dp_info->connector->connector_type == DRM_MODE_CONNECTOR_eDP) &&
622 (dig->panel_mode == DP_PANEL_MODE_INTERNAL_DP2_MODE)) {
Alex Deucher496263b2014-03-21 10:34:07 -0400623 drm_dp_dpcd_writeb(dp_info->aux, DP_EDP_CONFIGURATION_SET, 1);
Alex Deucher386d4d72012-01-20 15:01:29 -0500624 }
Alex Deucher224d94b2011-05-20 04:34:28 -0400625
626 /* set the lane count on the sink */
627 tmp = dp_info->dp_lane_count;
Jani Nikula27f75dc62013-10-04 15:08:09 +0300628 if (drm_dp_enhanced_frame_cap(dp_info->dpcd))
Alex Deucher224d94b2011-05-20 04:34:28 -0400629 tmp |= DP_LANE_COUNT_ENHANCED_FRAME_EN;
Alex Deucher496263b2014-03-21 10:34:07 -0400630 drm_dp_dpcd_writeb(dp_info->aux, DP_LANE_COUNT_SET, tmp);
Alex Deucher224d94b2011-05-20 04:34:28 -0400631
632 /* set the link rate on the sink */
Daniel Vetter3b5c6622012-10-18 10:15:31 +0200633 tmp = drm_dp_link_rate_to_bw_code(dp_info->dp_clock);
Alex Deucher496263b2014-03-21 10:34:07 -0400634 drm_dp_dpcd_writeb(dp_info->aux, DP_LINK_BW_SET, tmp);
Alex Deucher224d94b2011-05-20 04:34:28 -0400635
636 /* start training on the source */
Jerome Glisse5a96a892011-07-25 11:57:43 -0400637 if (ASIC_IS_DCE4(dp_info->rdev) || !dp_info->use_dpencoder)
Alex Deucher224d94b2011-05-20 04:34:28 -0400638 atombios_dig_encoder_setup(dp_info->encoder,
639 ATOM_ENCODER_CMD_DP_LINK_TRAINING_START, 0);
640 else
641 radeon_dp_encoder_service(dp_info->rdev, ATOM_DP_ACTION_TRAINING_START,
642 dp_info->dp_clock, dp_info->enc_id, 0);
643
644 /* disable the training pattern on the sink */
Alex Deucher496263b2014-03-21 10:34:07 -0400645 drm_dp_dpcd_writeb(dp_info->aux,
646 DP_TRAINING_PATTERN_SET,
647 DP_TRAINING_PATTERN_DISABLE);
Alex Deucher224d94b2011-05-20 04:34:28 -0400648
649 return 0;
650}
651
652static int radeon_dp_link_train_finish(struct radeon_dp_link_train_info *dp_info)
653{
654 udelay(400);
655
656 /* disable the training pattern on the sink */
Alex Deucher496263b2014-03-21 10:34:07 -0400657 drm_dp_dpcd_writeb(dp_info->aux,
658 DP_TRAINING_PATTERN_SET,
659 DP_TRAINING_PATTERN_DISABLE);
Alex Deucher224d94b2011-05-20 04:34:28 -0400660
661 /* disable the training pattern on the source */
Jerome Glisse5a96a892011-07-25 11:57:43 -0400662 if (ASIC_IS_DCE4(dp_info->rdev) || !dp_info->use_dpencoder)
Alex Deucher224d94b2011-05-20 04:34:28 -0400663 atombios_dig_encoder_setup(dp_info->encoder,
664 ATOM_ENCODER_CMD_DP_LINK_TRAINING_COMPLETE, 0);
665 else
666 radeon_dp_encoder_service(dp_info->rdev, ATOM_DP_ACTION_TRAINING_COMPLETE,
667 dp_info->dp_clock, dp_info->enc_id, 0);
668
669 return 0;
670}
671
672static int radeon_dp_link_train_cr(struct radeon_dp_link_train_info *dp_info)
673{
674 bool clock_recovery;
675 u8 voltage;
676 int i;
677
678 radeon_dp_set_tp(dp_info, DP_TRAINING_PATTERN_1);
679 memset(dp_info->train_set, 0, 4);
680 radeon_dp_update_vs_emph(dp_info);
681
682 udelay(400);
683
684 /* clock recovery loop */
685 clock_recovery = false;
686 dp_info->tries = 0;
687 voltage = 0xff;
688 while (1) {
Daniel Vetter1a644cd2012-10-18 15:32:40 +0200689 drm_dp_link_train_clock_recovery_delay(dp_info->dpcd);
Alex Deucher224d94b2011-05-20 04:34:28 -0400690
Alex Deucherab8f1a22014-03-21 10:34:08 -0400691 if (drm_dp_dpcd_read_link_status(dp_info->aux,
692 dp_info->link_status) <= 0) {
Jerome Glisse8d1c7022012-07-17 17:17:16 -0400693 DRM_ERROR("displayport link status failed\n");
Alex Deucher224d94b2011-05-20 04:34:28 -0400694 break;
Jerome Glisse8d1c7022012-07-17 17:17:16 -0400695 }
Alex Deucher224d94b2011-05-20 04:34:28 -0400696
Daniel Vetter01916272012-10-18 10:15:25 +0200697 if (drm_dp_clock_recovery_ok(dp_info->link_status, dp_info->dp_lane_count)) {
Alex Deucher224d94b2011-05-20 04:34:28 -0400698 clock_recovery = true;
699 break;
700 }
701
702 for (i = 0; i < dp_info->dp_lane_count; i++) {
703 if ((dp_info->train_set[i] & DP_TRAIN_MAX_SWING_REACHED) == 0)
704 break;
705 }
706 if (i == dp_info->dp_lane_count) {
707 DRM_ERROR("clock recovery reached max voltage\n");
708 break;
709 }
710
711 if ((dp_info->train_set[0] & DP_TRAIN_VOLTAGE_SWING_MASK) == voltage) {
712 ++dp_info->tries;
713 if (dp_info->tries == 5) {
714 DRM_ERROR("clock recovery tried 5 times\n");
715 break;
716 }
717 } else
718 dp_info->tries = 0;
719
720 voltage = dp_info->train_set[0] & DP_TRAIN_VOLTAGE_SWING_MASK;
721
722 /* Compute new train_set as requested by sink */
723 dp_get_adjust_train(dp_info->link_status, dp_info->dp_lane_count, dp_info->train_set);
724
725 radeon_dp_update_vs_emph(dp_info);
726 }
727 if (!clock_recovery) {
728 DRM_ERROR("clock recovery failed\n");
729 return -1;
730 } else {
731 DRM_DEBUG_KMS("clock recovery at voltage %d pre-emphasis %d\n",
732 dp_info->train_set[0] & DP_TRAIN_VOLTAGE_SWING_MASK,
733 (dp_info->train_set[0] & DP_TRAIN_PRE_EMPHASIS_MASK) >>
734 DP_TRAIN_PRE_EMPHASIS_SHIFT);
735 return 0;
736 }
737}
738
739static int radeon_dp_link_train_ce(struct radeon_dp_link_train_info *dp_info)
740{
741 bool channel_eq;
742
743 if (dp_info->tp3_supported)
744 radeon_dp_set_tp(dp_info, DP_TRAINING_PATTERN_3);
745 else
746 radeon_dp_set_tp(dp_info, DP_TRAINING_PATTERN_2);
747
748 /* channel equalization loop */
749 dp_info->tries = 0;
750 channel_eq = false;
751 while (1) {
Daniel Vetter1a644cd2012-10-18 15:32:40 +0200752 drm_dp_link_train_channel_eq_delay(dp_info->dpcd);
Alex Deucher224d94b2011-05-20 04:34:28 -0400753
Alex Deucherab8f1a22014-03-21 10:34:08 -0400754 if (drm_dp_dpcd_read_link_status(dp_info->aux,
755 dp_info->link_status) <= 0) {
Jerome Glisse8d1c7022012-07-17 17:17:16 -0400756 DRM_ERROR("displayport link status failed\n");
Alex Deucher224d94b2011-05-20 04:34:28 -0400757 break;
Jerome Glisse8d1c7022012-07-17 17:17:16 -0400758 }
Alex Deucher224d94b2011-05-20 04:34:28 -0400759
Daniel Vetter1ffdff12012-10-18 10:15:24 +0200760 if (drm_dp_channel_eq_ok(dp_info->link_status, dp_info->dp_lane_count)) {
Alex Deucher224d94b2011-05-20 04:34:28 -0400761 channel_eq = true;
762 break;
763 }
764
765 /* Try 5 times */
766 if (dp_info->tries > 5) {
767 DRM_ERROR("channel eq failed: 5 tries\n");
768 break;
769 }
770
771 /* Compute new train_set as requested by sink */
772 dp_get_adjust_train(dp_info->link_status, dp_info->dp_lane_count, dp_info->train_set);
773
774 radeon_dp_update_vs_emph(dp_info);
775 dp_info->tries++;
776 }
777
778 if (!channel_eq) {
779 DRM_ERROR("channel eq failed\n");
780 return -1;
781 } else {
782 DRM_DEBUG_KMS("channel eq at voltage %d pre-emphasis %d\n",
783 dp_info->train_set[0] & DP_TRAIN_VOLTAGE_SWING_MASK,
784 (dp_info->train_set[0] & DP_TRAIN_PRE_EMPHASIS_MASK)
785 >> DP_TRAIN_PRE_EMPHASIS_SHIFT);
786 return 0;
787 }
788}
789
790void radeon_dp_link_train(struct drm_encoder *encoder,
791 struct drm_connector *connector)
792{
793 struct drm_device *dev = encoder->dev;
794 struct radeon_device *rdev = dev->dev_private;
795 struct radeon_encoder *radeon_encoder = to_radeon_encoder(encoder);
796 struct radeon_encoder_atom_dig *dig;
797 struct radeon_connector *radeon_connector;
798 struct radeon_connector_atom_dig *dig_connector;
799 struct radeon_dp_link_train_info dp_info;
Jerome Glisse5a96a892011-07-25 11:57:43 -0400800 int index;
801 u8 tmp, frev, crev;
Alex Deucher224d94b2011-05-20 04:34:28 -0400802
803 if (!radeon_encoder->enc_priv)
804 return;
805 dig = radeon_encoder->enc_priv;
806
807 radeon_connector = to_radeon_connector(connector);
808 if (!radeon_connector->con_priv)
809 return;
810 dig_connector = radeon_connector->con_priv;
811
812 if ((dig_connector->dp_sink_type != CONNECTOR_OBJECT_ID_DISPLAYPORT) &&
813 (dig_connector->dp_sink_type != CONNECTOR_OBJECT_ID_eDP))
814 return;
815
Jerome Glisse5a96a892011-07-25 11:57:43 -0400816 /* DPEncoderService newer than 1.1 can't program properly the
817 * training pattern. When facing such version use the
818 * DIGXEncoderControl (X== 1 | 2)
819 */
820 dp_info.use_dpencoder = true;
821 index = GetIndexIntoMasterTable(COMMAND, DPEncoderService);
822 if (atom_parse_cmd_header(rdev->mode_info.atom_context, index, &frev, &crev)) {
823 if (crev > 1) {
824 dp_info.use_dpencoder = false;
825 }
826 }
827
Alex Deucher224d94b2011-05-20 04:34:28 -0400828 dp_info.enc_id = 0;
829 if (dig->dig_encoder)
830 dp_info.enc_id |= ATOM_DP_CONFIG_DIG2_ENCODER;
831 else
832 dp_info.enc_id |= ATOM_DP_CONFIG_DIG1_ENCODER;
833 if (dig->linkb)
834 dp_info.enc_id |= ATOM_DP_CONFIG_LINK_B;
835 else
836 dp_info.enc_id |= ATOM_DP_CONFIG_LINK_A;
837
Alex Deucheraa019b72014-04-30 09:27:15 -0400838 if (drm_dp_dpcd_readb(&radeon_connector->ddc_bus->aux, DP_MAX_LANE_COUNT, &tmp)
839 == 1) {
840 if (ASIC_IS_DCE5(rdev) && (tmp & DP_TPS3_SUPPORTED))
841 dp_info.tp3_supported = true;
842 else
843 dp_info.tp3_supported = false;
844 } else {
Alex Deucher224d94b2011-05-20 04:34:28 -0400845 dp_info.tp3_supported = false;
Alex Deucheraa019b72014-04-30 09:27:15 -0400846 }
Alex Deucher224d94b2011-05-20 04:34:28 -0400847
Daniel Vetter1a644cd2012-10-18 15:32:40 +0200848 memcpy(dp_info.dpcd, dig_connector->dpcd, DP_RECEIVER_CAP_SIZE);
Alex Deucher224d94b2011-05-20 04:34:28 -0400849 dp_info.rdev = rdev;
850 dp_info.encoder = encoder;
851 dp_info.connector = connector;
Alex Deucher224d94b2011-05-20 04:34:28 -0400852 dp_info.dp_lane_count = dig_connector->dp_lane_count;
853 dp_info.dp_clock = dig_connector->dp_clock;
Alex Deucher379dfc22014-04-07 10:33:46 -0400854 dp_info.aux = &radeon_connector->ddc_bus->aux;
Alex Deucher224d94b2011-05-20 04:34:28 -0400855
856 if (radeon_dp_link_train_init(&dp_info))
857 goto done;
858 if (radeon_dp_link_train_cr(&dp_info))
859 goto done;
860 if (radeon_dp_link_train_ce(&dp_info))
861 goto done;
862done:
863 if (radeon_dp_link_train_finish(&dp_info))
864 return;
865}