blob: 3e3290c203c625d781f7dfacc13977c50c54d34b [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);
Dave Airlie1c949842014-11-11 09:16:15 +1000103 mutex_lock(&rdev->mode_info.atom_context->scratch_mutex);
Alex Deucher831719d62014-05-08 10:58:04 -0400104
Alex Deucher97412a72012-03-20 17:18:06 -0400105 base = (unsigned char *)(rdev->mode_info.atom_context->scratch + 1);
Dave Airlie746c1aa2009-12-08 07:07:28 +1000106
Alex Deucher4543eda2013-08-07 19:34:53 -0400107 radeon_atom_copy_swap(base, send, send_bytes, true);
Dave Airlie746c1aa2009-12-08 07:07:28 +1000108
Alex Deucher34be8c92013-07-18 11:13:53 -0400109 args.v1.lpAuxRequest = cpu_to_le16((u16)(0 + 4));
110 args.v1.lpDataOut = cpu_to_le16((u16)(16 + 4));
Alex Deucherbcc1c2a2010-01-12 17:54:34 -0500111 args.v1.ucDataOutLen = 0;
112 args.v1.ucChannelID = chan->rec.i2c_id;
113 args.v1.ucDelay = delay / 10;
114 if (ASIC_IS_DCE4(rdev))
Alex Deucher8e36ed02010-05-18 19:26:47 -0400115 args.v2.ucHPD_ID = chan->rec.hpd;
Dave Airlie746c1aa2009-12-08 07:07:28 +1000116
Dave Airlie1c949842014-11-11 09:16:15 +1000117 atom_execute_table_scratch_unlocked(rdev->mode_info.atom_context, index, (uint32_t *)&args);
Dave Airlie746c1aa2009-12-08 07:07:28 +1000118
Alex Deucher834b2902011-05-20 04:34:24 -0400119 *ack = args.v1.ucReplyStatus;
120
121 /* timeout */
122 if (args.v1.ucReplyStatus == 1) {
123 DRM_DEBUG_KMS("dp_aux_ch timeout\n");
Alex Deucher831719d62014-05-08 10:58:04 -0400124 r = -ETIMEDOUT;
125 goto done;
Dave Airlie746c1aa2009-12-08 07:07:28 +1000126 }
127
Alex Deucher834b2902011-05-20 04:34:24 -0400128 /* flags not zero */
129 if (args.v1.ucReplyStatus == 2) {
130 DRM_DEBUG_KMS("dp_aux_ch flags not zero\n");
Alex Deucherf6be5e62014-07-03 11:17:55 -0400131 r = -EIO;
Alex Deucher831719d62014-05-08 10:58:04 -0400132 goto done;
Dave Airlie746c1aa2009-12-08 07:07:28 +1000133 }
Alex Deucher834b2902011-05-20 04:34:24 -0400134
135 /* error */
136 if (args.v1.ucReplyStatus == 3) {
137 DRM_DEBUG_KMS("dp_aux_ch error\n");
Alex Deucher831719d62014-05-08 10:58:04 -0400138 r = -EIO;
139 goto done;
Alex Deucher834b2902011-05-20 04:34:24 -0400140 }
141
142 recv_bytes = args.v1.ucDataOutLen;
143 if (recv_bytes > recv_size)
144 recv_bytes = recv_size;
145
146 if (recv && recv_size)
Alex Deucher4543eda2013-08-07 19:34:53 -0400147 radeon_atom_copy_swap(recv, base + 16, recv_bytes, false);
Alex Deucher834b2902011-05-20 04:34:24 -0400148
Alex Deucher831719d62014-05-08 10:58:04 -0400149 r = recv_bytes;
150done:
Dave Airlie1c949842014-11-11 09:16:15 +1000151 mutex_unlock(&rdev->mode_info.atom_context->scratch_mutex);
Alex Deucher831719d62014-05-08 10:58:04 -0400152 mutex_unlock(&chan->mutex);
153
154 return r;
Dave Airlie746c1aa2009-12-08 07:07:28 +1000155}
156
Alex Deucher25377b92014-04-07 10:33:43 -0400157#define BARE_ADDRESS_SIZE 3
158#define HEADER_SIZE (BARE_ADDRESS_SIZE + 1)
Alex Deucher496263b2014-03-21 10:34:07 -0400159
160static ssize_t
Dave Airlie875711f2015-02-20 09:21:36 +1000161radeon_dp_aux_transfer_atom(struct drm_dp_aux *aux, struct drm_dp_aux_msg *msg)
Alex Deucher5801ead2009-11-24 13:32:59 -0500162{
Alex Deucher496263b2014-03-21 10:34:07 -0400163 struct radeon_i2c_chan *chan =
164 container_of(aux, struct radeon_i2c_chan, aux);
Alex Deucher834b2902011-05-20 04:34:24 -0400165 int ret;
Alex Deucher496263b2014-03-21 10:34:07 -0400166 u8 tx_buf[20];
167 size_t tx_size;
168 u8 ack, delay = 0;
Alex Deucher5801ead2009-11-24 13:32:59 -0500169
Alex Deucher496263b2014-03-21 10:34:07 -0400170 if (WARN_ON(msg->size > 16))
171 return -E2BIG;
Alex Deucher834b2902011-05-20 04:34:24 -0400172
Alex Deucher496263b2014-03-21 10:34:07 -0400173 tx_buf[0] = msg->address & 0xff;
174 tx_buf[1] = msg->address >> 8;
175 tx_buf[2] = msg->request << 4;
Alex Deucher25377b92014-04-07 10:33:43 -0400176 tx_buf[3] = msg->size ? (msg->size - 1) : 0;
Alex Deucher834b2902011-05-20 04:34:24 -0400177
Alex Deucher496263b2014-03-21 10:34:07 -0400178 switch (msg->request & ~DP_AUX_I2C_MOT) {
179 case DP_AUX_NATIVE_WRITE:
180 case DP_AUX_I2C_WRITE:
Alex Deucher94a47c42015-02-20 11:51:38 -0500181 /* The atom implementation only supports writes with a max payload of
182 * 12 bytes since it uses 4 bits for the total count (header + payload)
183 * in the parameter space. The atom interface supports 16 byte
184 * payloads for reads. The hw itself supports up to 16 bytes of payload.
185 */
186 if (WARN_ON_ONCE(msg->size > 12))
187 return -E2BIG;
Alex Deucher25377b92014-04-07 10:33:43 -0400188 /* tx_size needs to be 4 even for bare address packets since the atom
189 * table needs the info in tx_buf[3].
190 */
Alex Deucher496263b2014-03-21 10:34:07 -0400191 tx_size = HEADER_SIZE + msg->size;
Alex Deucher25377b92014-04-07 10:33:43 -0400192 if (msg->size == 0)
193 tx_buf[3] |= BARE_ADDRESS_SIZE << 4;
194 else
195 tx_buf[3] |= tx_size << 4;
Alex Deucher496263b2014-03-21 10:34:07 -0400196 memcpy(tx_buf + HEADER_SIZE, msg->buffer, msg->size);
197 ret = radeon_process_aux_ch(chan,
198 tx_buf, tx_size, NULL, 0, delay, &ack);
199 if (ret >= 0)
200 /* Return payload size. */
201 ret = msg->size;
202 break;
203 case DP_AUX_NATIVE_READ:
204 case DP_AUX_I2C_READ:
Alex Deucher25377b92014-04-07 10:33:43 -0400205 /* tx_size needs to be 4 even for bare address packets since the atom
206 * table needs the info in tx_buf[3].
207 */
Alex Deucher496263b2014-03-21 10:34:07 -0400208 tx_size = HEADER_SIZE;
Alex Deucher25377b92014-04-07 10:33:43 -0400209 if (msg->size == 0)
210 tx_buf[3] |= BARE_ADDRESS_SIZE << 4;
211 else
212 tx_buf[3] |= tx_size << 4;
Alex Deucher496263b2014-03-21 10:34:07 -0400213 ret = radeon_process_aux_ch(chan,
214 tx_buf, tx_size, msg->buffer, msg->size, delay, &ack);
215 break;
216 default:
217 ret = -EINVAL;
218 break;
Alex Deucher834b2902011-05-20 04:34:24 -0400219 }
220
Alex Deucher25377b92014-04-07 10:33:43 -0400221 if (ret >= 0)
Alex Deucher496263b2014-03-21 10:34:07 -0400222 msg->reply = ack >> 4;
223
224 return ret;
Alex Deucher5801ead2009-11-24 13:32:59 -0500225}
226
Alex Deucher496263b2014-03-21 10:34:07 -0400227void radeon_dp_aux_init(struct radeon_connector *radeon_connector)
Alex Deucher5801ead2009-11-24 13:32:59 -0500228{
Dave Airlie875711f2015-02-20 09:21:36 +1000229 struct drm_device *dev = radeon_connector->base.dev;
230 struct radeon_device *rdev = dev->dev_private;
Alex Deucher834b2902011-05-20 04:34:24 -0400231 int ret;
Dave Airlie746c1aa2009-12-08 07:07:28 +1000232
Alex Deucherad47b8f2014-04-22 02:02:06 -0400233 radeon_connector->ddc_bus->rec.hpd = radeon_connector->hpd.hpd;
Alex Deucher379dfc22014-04-07 10:33:46 -0400234 radeon_connector->ddc_bus->aux.dev = radeon_connector->base.kdev;
Dave Airlie875711f2015-02-20 09:21:36 +1000235 if (ASIC_IS_DCE5(rdev)) {
236 if (radeon_auxch)
237 radeon_connector->ddc_bus->aux.transfer = radeon_dp_aux_transfer_native;
238 else
239 radeon_connector->ddc_bus->aux.transfer = radeon_dp_aux_transfer_atom;
240 } else {
241 radeon_connector->ddc_bus->aux.transfer = radeon_dp_aux_transfer_atom;
242 }
Dave Airlie4f71d0c2014-06-04 16:02:28 +1000243
244 ret = drm_dp_aux_register(&radeon_connector->ddc_bus->aux);
Alex Deucher379dfc22014-04-07 10:33:46 -0400245 if (!ret)
246 radeon_connector->ddc_bus->has_aux = true;
Dave Airlie746c1aa2009-12-08 07:07:28 +1000247
Dave Airlie4f71d0c2014-06-04 16:02:28 +1000248 WARN(ret, "drm_dp_aux_register() failed with error %d\n", ret);
Dave Airlie746c1aa2009-12-08 07:07:28 +1000249}
Alex Deucher5801ead2009-11-24 13:32:59 -0500250
Alex Deucher224d94b2011-05-20 04:34:28 -0400251/***** general DP utility functions *****/
252
Sonika Jindal9cecb372014-08-08 16:23:44 +0530253#define DP_VOLTAGE_MAX DP_TRAIN_VOLTAGE_SWING_LEVEL_3
254#define DP_PRE_EMPHASIS_MAX DP_TRAIN_PRE_EMPH_LEVEL_3
Alex Deucher224d94b2011-05-20 04:34:28 -0400255
256static void dp_get_adjust_train(u8 link_status[DP_LINK_STATUS_SIZE],
257 int lane_count,
258 u8 train_set[4])
259{
260 u8 v = 0;
261 u8 p = 0;
262 int lane;
263
264 for (lane = 0; lane < lane_count; lane++) {
Daniel Vetter0f037bd2012-10-18 10:15:27 +0200265 u8 this_v = drm_dp_get_adjust_request_voltage(link_status, lane);
266 u8 this_p = drm_dp_get_adjust_request_pre_emphasis(link_status, lane);
Alex Deucher224d94b2011-05-20 04:34:28 -0400267
268 DRM_DEBUG_KMS("requested signal parameters: lane %d voltage %s pre_emph %s\n",
269 lane,
270 voltage_names[this_v >> DP_TRAIN_VOLTAGE_SWING_SHIFT],
271 pre_emph_names[this_p >> DP_TRAIN_PRE_EMPHASIS_SHIFT]);
272
273 if (this_v > v)
274 v = this_v;
275 if (this_p > p)
276 p = this_p;
277 }
278
279 if (v >= DP_VOLTAGE_MAX)
280 v |= DP_TRAIN_MAX_SWING_REACHED;
281
282 if (p >= DP_PRE_EMPHASIS_MAX)
283 p |= DP_TRAIN_MAX_PRE_EMPHASIS_REACHED;
284
285 DRM_DEBUG_KMS("using signal parameters: voltage %s pre_emph %s\n",
286 voltage_names[(v & DP_TRAIN_VOLTAGE_SWING_MASK) >> DP_TRAIN_VOLTAGE_SWING_SHIFT],
287 pre_emph_names[(p & DP_TRAIN_PRE_EMPHASIS_MASK) >> DP_TRAIN_PRE_EMPHASIS_SHIFT]);
288
289 for (lane = 0; lane < 4; lane++)
290 train_set[lane] = v | p;
291}
292
293/* convert bits per color to bits per pixel */
294/* get bpc from the EDID */
295static int convert_bpc_to_bpp(int bpc)
296{
297 if (bpc == 0)
298 return 24;
299 else
300 return bpc * 3;
301}
302
303/* get the max pix clock supported by the link rate and lane num */
304static int dp_get_max_dp_pix_clock(int link_rate,
305 int lane_num,
306 int bpp)
307{
308 return (link_rate * lane_num * 8) / bpp;
309}
310
Alex Deucher224d94b2011-05-20 04:34:28 -0400311/***** radeon specific DP functions *****/
312
Dave Airlie2be123d2015-02-24 09:24:02 +1000313int radeon_dp_get_max_link_rate(struct drm_connector *connector,
314 u8 dpcd[DP_DPCD_SIZE])
Alex Deucher3b6d9fd2014-05-27 13:48:05 -0400315{
316 int max_link_rate;
317
318 if (radeon_connector_is_dp12_capable(connector))
319 max_link_rate = min(drm_dp_max_link_rate(dpcd), 540000);
320 else
321 max_link_rate = min(drm_dp_max_link_rate(dpcd), 270000);
322
323 return max_link_rate;
324}
325
Alex Deucher224d94b2011-05-20 04:34:28 -0400326/* First get the min lane# when low rate is used according to pixel clock
327 * (prefer low rate), second check max lane# supported by DP panel,
328 * if the max lane# < low rate lane# then use max lane# instead.
329 */
330static int radeon_dp_get_dp_lane_number(struct drm_connector *connector,
331 u8 dpcd[DP_DPCD_SIZE],
332 int pix_clock)
333{
Alex Deuchereccea792012-03-26 15:12:54 -0400334 int bpp = convert_bpc_to_bpp(radeon_get_monitor_bpc(connector));
Alex Deucher3b6d9fd2014-05-27 13:48:05 -0400335 int max_link_rate = radeon_dp_get_max_link_rate(connector, dpcd);
Daniel Vetter397fe152012-10-22 22:56:43 +0200336 int max_lane_num = drm_dp_max_lane_count(dpcd);
Alex Deucher224d94b2011-05-20 04:34:28 -0400337 int lane_num;
338 int max_dp_pix_clock;
339
340 for (lane_num = 1; lane_num < max_lane_num; lane_num <<= 1) {
341 max_dp_pix_clock = dp_get_max_dp_pix_clock(max_link_rate, lane_num, bpp);
342 if (pix_clock <= max_dp_pix_clock)
343 break;
344 }
345
346 return lane_num;
347}
348
349static int radeon_dp_get_dp_link_clock(struct drm_connector *connector,
350 u8 dpcd[DP_DPCD_SIZE],
351 int pix_clock)
352{
Alex Deuchereccea792012-03-26 15:12:54 -0400353 int bpp = convert_bpc_to_bpp(radeon_get_monitor_bpc(connector));
Alex Deucher224d94b2011-05-20 04:34:28 -0400354 int lane_num, max_pix_clock;
355
Alex Deucherfdca78c2011-10-25 11:54:52 -0400356 if (radeon_connector_encoder_get_dp_bridge_encoder_id(connector) ==
357 ENCODER_OBJECT_ID_NUTMEG)
Alex Deucher224d94b2011-05-20 04:34:28 -0400358 return 270000;
359
360 lane_num = radeon_dp_get_dp_lane_number(connector, dpcd, pix_clock);
361 max_pix_clock = dp_get_max_dp_pix_clock(162000, lane_num, bpp);
362 if (pix_clock <= max_pix_clock)
363 return 162000;
364 max_pix_clock = dp_get_max_dp_pix_clock(270000, lane_num, bpp);
365 if (pix_clock <= max_pix_clock)
366 return 270000;
367 if (radeon_connector_is_dp12_capable(connector)) {
368 max_pix_clock = dp_get_max_dp_pix_clock(540000, lane_num, bpp);
369 if (pix_clock <= max_pix_clock)
370 return 540000;
371 }
372
Alex Deucher3b6d9fd2014-05-27 13:48:05 -0400373 return radeon_dp_get_max_link_rate(connector, dpcd);
Alex Deucher224d94b2011-05-20 04:34:28 -0400374}
375
376static u8 radeon_dp_encoder_service(struct radeon_device *rdev,
377 int action, int dp_clock,
378 u8 ucconfig, u8 lane_num)
379{
380 DP_ENCODER_SERVICE_PARAMETERS args;
381 int index = GetIndexIntoMasterTable(COMMAND, DPEncoderService);
382
383 memset(&args, 0, sizeof(args));
384 args.ucLinkClock = dp_clock / 10;
385 args.ucConfig = ucconfig;
386 args.ucAction = action;
387 args.ucLaneNum = lane_num;
388 args.ucStatus = 0;
389
390 atom_execute_table(rdev->mode_info.atom_context, index, (uint32_t *)&args);
391 return args.ucStatus;
392}
393
394u8 radeon_dp_getsinktype(struct radeon_connector *radeon_connector)
395{
Alex Deucher224d94b2011-05-20 04:34:28 -0400396 struct drm_device *dev = radeon_connector->base.dev;
397 struct radeon_device *rdev = dev->dev_private;
398
399 return radeon_dp_encoder_service(rdev, ATOM_DP_ACTION_GET_SINK_TYPE, 0,
Alex Deucher379dfc22014-04-07 10:33:46 -0400400 radeon_connector->ddc_bus->rec.i2c_id, 0);
Alex Deucher224d94b2011-05-20 04:34:28 -0400401}
402
Adam Jackson40c5d872012-05-14 16:05:48 -0400403static void radeon_dp_probe_oui(struct radeon_connector *radeon_connector)
404{
405 struct radeon_connector_atom_dig *dig_connector = radeon_connector->con_priv;
406 u8 buf[3];
407
408 if (!(dig_connector->dpcd[DP_DOWN_STREAM_PORT_COUNT] & DP_OUI_SUPPORT))
409 return;
410
Alex Deucheraa019b72014-04-30 09:27:15 -0400411 if (drm_dp_dpcd_read(&radeon_connector->ddc_bus->aux, DP_SINK_OUI, buf, 3) == 3)
Adam Jackson40c5d872012-05-14 16:05:48 -0400412 DRM_DEBUG_KMS("Sink OUI: %02hx%02hx%02hx\n",
413 buf[0], buf[1], buf[2]);
414
Alex Deucheraa019b72014-04-30 09:27:15 -0400415 if (drm_dp_dpcd_read(&radeon_connector->ddc_bus->aux, DP_BRANCH_OUI, buf, 3) == 3)
Adam Jackson40c5d872012-05-14 16:05:48 -0400416 DRM_DEBUG_KMS("Branch OUI: %02hx%02hx%02hx\n",
417 buf[0], buf[1], buf[2]);
418}
419
Alex Deucher224d94b2011-05-20 04:34:28 -0400420bool radeon_dp_getdpcd(struct radeon_connector *radeon_connector)
421{
422 struct radeon_connector_atom_dig *dig_connector = radeon_connector->con_priv;
Daniel Vetter1a644cd2012-10-18 15:32:40 +0200423 u8 msg[DP_DPCD_SIZE];
Stefan Brüns4e5f97d2014-06-29 21:03:53 +0200424 int ret;
425
Alex Deucher379dfc22014-04-07 10:33:46 -0400426 ret = drm_dp_dpcd_read(&radeon_connector->ddc_bus->aux, DP_DPCD_REV, msg,
Alex Deucher496263b2014-03-21 10:34:07 -0400427 DP_DPCD_SIZE);
Alex Deucher224d94b2011-05-20 04:34:28 -0400428 if (ret > 0) {
Daniel Vetter1a644cd2012-10-18 15:32:40 +0200429 memcpy(dig_connector->dpcd, msg, DP_DPCD_SIZE);
Stefan Brüns4e5f97d2014-06-29 21:03:53 +0200430
Andy Shevchenkodf8fbc232014-09-04 15:46:24 +0300431 DRM_DEBUG_KMS("DPCD: %*ph\n", (int)sizeof(dig_connector->dpcd),
432 dig_connector->dpcd);
Adam Jackson40c5d872012-05-14 16:05:48 -0400433
434 radeon_dp_probe_oui(radeon_connector);
435
Alex Deucher224d94b2011-05-20 04:34:28 -0400436 return true;
437 }
438 dig_connector->dpcd[0] = 0;
439 return false;
440}
441
Alex Deucher386d4d72012-01-20 15:01:29 -0500442int radeon_dp_get_panel_mode(struct drm_encoder *encoder,
443 struct drm_connector *connector)
Alex Deucher224d94b2011-05-20 04:34:28 -0400444{
445 struct drm_device *dev = encoder->dev;
446 struct radeon_device *rdev = dev->dev_private;
Alex Deucher00dfb8d2011-10-31 08:54:41 -0400447 struct radeon_connector *radeon_connector = to_radeon_connector(connector);
Alex Deucher496263b2014-03-21 10:34:07 -0400448 struct radeon_connector_atom_dig *dig_connector;
Alex Deucher224d94b2011-05-20 04:34:28 -0400449 int panel_mode = DP_PANEL_MODE_EXTERNAL_DP_MODE;
Alex Deucher0ceb9962012-08-27 17:48:18 -0400450 u16 dp_bridge = radeon_connector_encoder_get_dp_bridge_encoder_id(connector);
451 u8 tmp;
Alex Deucher224d94b2011-05-20 04:34:28 -0400452
453 if (!ASIC_IS_DCE4(rdev))
Alex Deucher386d4d72012-01-20 15:01:29 -0500454 return panel_mode;
Alex Deucher224d94b2011-05-20 04:34:28 -0400455
Alex Deucher496263b2014-03-21 10:34:07 -0400456 if (!radeon_connector->con_priv)
457 return panel_mode;
458
459 dig_connector = radeon_connector->con_priv;
460
Alex Deucher0ceb9962012-08-27 17:48:18 -0400461 if (dp_bridge != ENCODER_OBJECT_ID_NONE) {
462 /* DP bridge chips */
Alex Deucheraa019b72014-04-30 09:27:15 -0400463 if (drm_dp_dpcd_readb(&radeon_connector->ddc_bus->aux,
464 DP_EDP_CONFIGURATION_CAP, &tmp) == 1) {
465 if (tmp & 1)
466 panel_mode = DP_PANEL_MODE_INTERNAL_DP2_MODE;
467 else if ((dp_bridge == ENCODER_OBJECT_ID_NUTMEG) ||
468 (dp_bridge == ENCODER_OBJECT_ID_TRAVIS))
469 panel_mode = DP_PANEL_MODE_INTERNAL_DP1_MODE;
470 else
471 panel_mode = DP_PANEL_MODE_EXTERNAL_DP_MODE;
472 }
Alex Deucher304a4842012-02-02 10:18:00 -0500473 } else if (connector->connector_type == DRM_MODE_CONNECTOR_eDP) {
Alex Deucher0ceb9962012-08-27 17:48:18 -0400474 /* eDP */
Alex Deucheraa019b72014-04-30 09:27:15 -0400475 if (drm_dp_dpcd_readb(&radeon_connector->ddc_bus->aux,
476 DP_EDP_CONFIGURATION_CAP, &tmp) == 1) {
477 if (tmp & 1)
478 panel_mode = DP_PANEL_MODE_INTERNAL_DP2_MODE;
479 }
Alex Deucher00dfb8d2011-10-31 08:54:41 -0400480 }
Alex Deucher224d94b2011-05-20 04:34:28 -0400481
Alex Deucher386d4d72012-01-20 15:01:29 -0500482 return panel_mode;
Alex Deucher224d94b2011-05-20 04:34:28 -0400483}
484
485void radeon_dp_set_link_config(struct drm_connector *connector,
Laurent Pincharte811f5a2012-07-17 17:56:50 +0200486 const struct drm_display_mode *mode)
Alex Deucher224d94b2011-05-20 04:34:28 -0400487{
488 struct radeon_connector *radeon_connector = to_radeon_connector(connector);
489 struct radeon_connector_atom_dig *dig_connector;
490
491 if (!radeon_connector->con_priv)
492 return;
493 dig_connector = radeon_connector->con_priv;
494
495 if ((dig_connector->dp_sink_type == CONNECTOR_OBJECT_ID_DISPLAYPORT) ||
496 (dig_connector->dp_sink_type == CONNECTOR_OBJECT_ID_eDP)) {
497 dig_connector->dp_clock =
498 radeon_dp_get_dp_link_clock(connector, dig_connector->dpcd, mode->clock);
499 dig_connector->dp_lane_count =
500 radeon_dp_get_dp_lane_number(connector, dig_connector->dpcd, mode->clock);
501 }
502}
503
504int radeon_dp_mode_valid_helper(struct drm_connector *connector,
505 struct drm_display_mode *mode)
506{
507 struct radeon_connector *radeon_connector = to_radeon_connector(connector);
508 struct radeon_connector_atom_dig *dig_connector;
509 int dp_clock;
510
Alex Deucher410cce22014-12-10 09:42:10 -0500511 if ((mode->clock > 340000) &&
512 (!radeon_connector_is_dp12_capable(connector)))
513 return MODE_CLOCK_HIGH;
514
Alex Deucher224d94b2011-05-20 04:34:28 -0400515 if (!radeon_connector->con_priv)
516 return MODE_CLOCK_HIGH;
517 dig_connector = radeon_connector->con_priv;
518
519 dp_clock =
520 radeon_dp_get_dp_link_clock(connector, dig_connector->dpcd, mode->clock);
521
522 if ((dp_clock == 540000) &&
523 (!radeon_connector_is_dp12_capable(connector)))
524 return MODE_CLOCK_HIGH;
525
526 return MODE_OK;
527}
528
Alex Deucherd5811e82011-08-13 13:36:13 -0400529bool radeon_dp_needs_link_train(struct radeon_connector *radeon_connector)
530{
531 u8 link_status[DP_LINK_STATUS_SIZE];
532 struct radeon_connector_atom_dig *dig = radeon_connector->con_priv;
533
Alex Deucher379dfc22014-04-07 10:33:46 -0400534 if (drm_dp_dpcd_read_link_status(&radeon_connector->ddc_bus->aux, link_status)
535 <= 0)
Alex Deucherd5811e82011-08-13 13:36:13 -0400536 return false;
Daniel Vetter1ffdff12012-10-18 10:15:24 +0200537 if (drm_dp_channel_eq_ok(link_status, dig->dp_lane_count))
Alex Deucherd5811e82011-08-13 13:36:13 -0400538 return false;
539 return true;
540}
541
Alex Deucher2953da12014-03-17 23:48:15 -0400542void radeon_dp_set_rx_power_state(struct drm_connector *connector,
543 u8 power_state)
544{
545 struct radeon_connector *radeon_connector = to_radeon_connector(connector);
546 struct radeon_connector_atom_dig *dig_connector;
547
548 if (!radeon_connector->con_priv)
549 return;
550
551 dig_connector = radeon_connector->con_priv;
552
553 /* power up/down the sink */
554 if (dig_connector->dpcd[0] >= 0x11) {
Alex Deucher379dfc22014-04-07 10:33:46 -0400555 drm_dp_dpcd_writeb(&radeon_connector->ddc_bus->aux,
Alex Deucher2953da12014-03-17 23:48:15 -0400556 DP_SET_POWER, power_state);
557 usleep_range(1000, 2000);
558 }
559}
560
561
Alex Deucher224d94b2011-05-20 04:34:28 -0400562struct radeon_dp_link_train_info {
563 struct radeon_device *rdev;
564 struct drm_encoder *encoder;
565 struct drm_connector *connector;
Alex Deucher224d94b2011-05-20 04:34:28 -0400566 int enc_id;
567 int dp_clock;
568 int dp_lane_count;
Alex Deucher224d94b2011-05-20 04:34:28 -0400569 bool tp3_supported;
Daniel Vetter1a644cd2012-10-18 15:32:40 +0200570 u8 dpcd[DP_RECEIVER_CAP_SIZE];
Alex Deucher224d94b2011-05-20 04:34:28 -0400571 u8 train_set[4];
572 u8 link_status[DP_LINK_STATUS_SIZE];
573 u8 tries;
Jerome Glisse5a96a892011-07-25 11:57:43 -0400574 bool use_dpencoder;
Alex Deucher496263b2014-03-21 10:34:07 -0400575 struct drm_dp_aux *aux;
Alex Deucher224d94b2011-05-20 04:34:28 -0400576};
577
578static void radeon_dp_update_vs_emph(struct radeon_dp_link_train_info *dp_info)
579{
580 /* set the initial vs/emph on the source */
581 atombios_dig_transmitter_setup(dp_info->encoder,
582 ATOM_TRANSMITTER_ACTION_SETUP_VSEMPH,
583 0, dp_info->train_set[0]); /* sets all lanes at once */
584
585 /* set the vs/emph on the sink */
Alex Deucher496263b2014-03-21 10:34:07 -0400586 drm_dp_dpcd_write(dp_info->aux, DP_TRAINING_LANE0_SET,
587 dp_info->train_set, dp_info->dp_lane_count);
Alex Deucher224d94b2011-05-20 04:34:28 -0400588}
589
590static void radeon_dp_set_tp(struct radeon_dp_link_train_info *dp_info, int tp)
591{
592 int rtp = 0;
593
594 /* set training pattern on the source */
Jerome Glisse5a96a892011-07-25 11:57:43 -0400595 if (ASIC_IS_DCE4(dp_info->rdev) || !dp_info->use_dpencoder) {
Alex Deucher224d94b2011-05-20 04:34:28 -0400596 switch (tp) {
597 case DP_TRAINING_PATTERN_1:
598 rtp = ATOM_ENCODER_CMD_DP_LINK_TRAINING_PATTERN1;
599 break;
600 case DP_TRAINING_PATTERN_2:
601 rtp = ATOM_ENCODER_CMD_DP_LINK_TRAINING_PATTERN2;
602 break;
603 case DP_TRAINING_PATTERN_3:
604 rtp = ATOM_ENCODER_CMD_DP_LINK_TRAINING_PATTERN3;
605 break;
606 }
607 atombios_dig_encoder_setup(dp_info->encoder, rtp, 0);
608 } else {
609 switch (tp) {
610 case DP_TRAINING_PATTERN_1:
611 rtp = 0;
612 break;
613 case DP_TRAINING_PATTERN_2:
614 rtp = 1;
615 break;
616 }
617 radeon_dp_encoder_service(dp_info->rdev, ATOM_DP_ACTION_TRAINING_PATTERN_SEL,
618 dp_info->dp_clock, dp_info->enc_id, rtp);
619 }
620
621 /* enable training pattern on the sink */
Alex Deucher496263b2014-03-21 10:34:07 -0400622 drm_dp_dpcd_writeb(dp_info->aux, DP_TRAINING_PATTERN_SET, tp);
Alex Deucher224d94b2011-05-20 04:34:28 -0400623}
624
625static int radeon_dp_link_train_init(struct radeon_dp_link_train_info *dp_info)
626{
Alex Deucher386d4d72012-01-20 15:01:29 -0500627 struct radeon_encoder *radeon_encoder = to_radeon_encoder(dp_info->encoder);
628 struct radeon_encoder_atom_dig *dig = radeon_encoder->enc_priv;
Alex Deucher224d94b2011-05-20 04:34:28 -0400629 u8 tmp;
630
631 /* power up the sink */
Alex Deucher2953da12014-03-17 23:48:15 -0400632 radeon_dp_set_rx_power_state(dp_info->connector, DP_SET_POWER_D0);
Alex Deucher224d94b2011-05-20 04:34:28 -0400633
634 /* possibly enable downspread on the sink */
635 if (dp_info->dpcd[3] & 0x1)
Alex Deucher496263b2014-03-21 10:34:07 -0400636 drm_dp_dpcd_writeb(dp_info->aux,
637 DP_DOWNSPREAD_CTRL, DP_SPREAD_AMP_0_5);
Alex Deucher224d94b2011-05-20 04:34:28 -0400638 else
Alex Deucher496263b2014-03-21 10:34:07 -0400639 drm_dp_dpcd_writeb(dp_info->aux,
640 DP_DOWNSPREAD_CTRL, 0);
Alex Deucher224d94b2011-05-20 04:34:28 -0400641
Alex Deucher66c2b842015-02-11 18:34:36 -0500642 if (dig->panel_mode == DP_PANEL_MODE_INTERNAL_DP2_MODE)
Alex Deucher496263b2014-03-21 10:34:07 -0400643 drm_dp_dpcd_writeb(dp_info->aux, DP_EDP_CONFIGURATION_SET, 1);
Alex Deucher224d94b2011-05-20 04:34:28 -0400644
645 /* set the lane count on the sink */
646 tmp = dp_info->dp_lane_count;
Jani Nikula27f75dc62013-10-04 15:08:09 +0300647 if (drm_dp_enhanced_frame_cap(dp_info->dpcd))
Alex Deucher224d94b2011-05-20 04:34:28 -0400648 tmp |= DP_LANE_COUNT_ENHANCED_FRAME_EN;
Alex Deucher496263b2014-03-21 10:34:07 -0400649 drm_dp_dpcd_writeb(dp_info->aux, DP_LANE_COUNT_SET, tmp);
Alex Deucher224d94b2011-05-20 04:34:28 -0400650
651 /* set the link rate on the sink */
Daniel Vetter3b5c6622012-10-18 10:15:31 +0200652 tmp = drm_dp_link_rate_to_bw_code(dp_info->dp_clock);
Alex Deucher496263b2014-03-21 10:34:07 -0400653 drm_dp_dpcd_writeb(dp_info->aux, DP_LINK_BW_SET, tmp);
Alex Deucher224d94b2011-05-20 04:34:28 -0400654
655 /* start training on the source */
Jerome Glisse5a96a892011-07-25 11:57:43 -0400656 if (ASIC_IS_DCE4(dp_info->rdev) || !dp_info->use_dpencoder)
Alex Deucher224d94b2011-05-20 04:34:28 -0400657 atombios_dig_encoder_setup(dp_info->encoder,
658 ATOM_ENCODER_CMD_DP_LINK_TRAINING_START, 0);
659 else
660 radeon_dp_encoder_service(dp_info->rdev, ATOM_DP_ACTION_TRAINING_START,
661 dp_info->dp_clock, dp_info->enc_id, 0);
662
663 /* disable the training pattern on the sink */
Alex Deucher496263b2014-03-21 10:34:07 -0400664 drm_dp_dpcd_writeb(dp_info->aux,
665 DP_TRAINING_PATTERN_SET,
666 DP_TRAINING_PATTERN_DISABLE);
Alex Deucher224d94b2011-05-20 04:34:28 -0400667
668 return 0;
669}
670
671static int radeon_dp_link_train_finish(struct radeon_dp_link_train_info *dp_info)
672{
673 udelay(400);
674
675 /* disable the training pattern on the sink */
Alex Deucher496263b2014-03-21 10:34:07 -0400676 drm_dp_dpcd_writeb(dp_info->aux,
677 DP_TRAINING_PATTERN_SET,
678 DP_TRAINING_PATTERN_DISABLE);
Alex Deucher224d94b2011-05-20 04:34:28 -0400679
680 /* disable the training pattern on the source */
Jerome Glisse5a96a892011-07-25 11:57:43 -0400681 if (ASIC_IS_DCE4(dp_info->rdev) || !dp_info->use_dpencoder)
Alex Deucher224d94b2011-05-20 04:34:28 -0400682 atombios_dig_encoder_setup(dp_info->encoder,
683 ATOM_ENCODER_CMD_DP_LINK_TRAINING_COMPLETE, 0);
684 else
685 radeon_dp_encoder_service(dp_info->rdev, ATOM_DP_ACTION_TRAINING_COMPLETE,
686 dp_info->dp_clock, dp_info->enc_id, 0);
687
688 return 0;
689}
690
691static int radeon_dp_link_train_cr(struct radeon_dp_link_train_info *dp_info)
692{
693 bool clock_recovery;
694 u8 voltage;
695 int i;
696
697 radeon_dp_set_tp(dp_info, DP_TRAINING_PATTERN_1);
698 memset(dp_info->train_set, 0, 4);
699 radeon_dp_update_vs_emph(dp_info);
700
701 udelay(400);
702
703 /* clock recovery loop */
704 clock_recovery = false;
705 dp_info->tries = 0;
706 voltage = 0xff;
707 while (1) {
Daniel Vetter1a644cd2012-10-18 15:32:40 +0200708 drm_dp_link_train_clock_recovery_delay(dp_info->dpcd);
Alex Deucher224d94b2011-05-20 04:34:28 -0400709
Alex Deucherab8f1a22014-03-21 10:34:08 -0400710 if (drm_dp_dpcd_read_link_status(dp_info->aux,
711 dp_info->link_status) <= 0) {
Jerome Glisse8d1c7022012-07-17 17:17:16 -0400712 DRM_ERROR("displayport link status failed\n");
Alex Deucher224d94b2011-05-20 04:34:28 -0400713 break;
Jerome Glisse8d1c7022012-07-17 17:17:16 -0400714 }
Alex Deucher224d94b2011-05-20 04:34:28 -0400715
Daniel Vetter01916272012-10-18 10:15:25 +0200716 if (drm_dp_clock_recovery_ok(dp_info->link_status, dp_info->dp_lane_count)) {
Alex Deucher224d94b2011-05-20 04:34:28 -0400717 clock_recovery = true;
718 break;
719 }
720
721 for (i = 0; i < dp_info->dp_lane_count; i++) {
722 if ((dp_info->train_set[i] & DP_TRAIN_MAX_SWING_REACHED) == 0)
723 break;
724 }
725 if (i == dp_info->dp_lane_count) {
726 DRM_ERROR("clock recovery reached max voltage\n");
727 break;
728 }
729
730 if ((dp_info->train_set[0] & DP_TRAIN_VOLTAGE_SWING_MASK) == voltage) {
731 ++dp_info->tries;
732 if (dp_info->tries == 5) {
733 DRM_ERROR("clock recovery tried 5 times\n");
734 break;
735 }
736 } else
737 dp_info->tries = 0;
738
739 voltage = dp_info->train_set[0] & DP_TRAIN_VOLTAGE_SWING_MASK;
740
741 /* Compute new train_set as requested by sink */
742 dp_get_adjust_train(dp_info->link_status, dp_info->dp_lane_count, dp_info->train_set);
743
744 radeon_dp_update_vs_emph(dp_info);
745 }
746 if (!clock_recovery) {
747 DRM_ERROR("clock recovery failed\n");
748 return -1;
749 } else {
750 DRM_DEBUG_KMS("clock recovery at voltage %d pre-emphasis %d\n",
751 dp_info->train_set[0] & DP_TRAIN_VOLTAGE_SWING_MASK,
752 (dp_info->train_set[0] & DP_TRAIN_PRE_EMPHASIS_MASK) >>
753 DP_TRAIN_PRE_EMPHASIS_SHIFT);
754 return 0;
755 }
756}
757
758static int radeon_dp_link_train_ce(struct radeon_dp_link_train_info *dp_info)
759{
760 bool channel_eq;
761
762 if (dp_info->tp3_supported)
763 radeon_dp_set_tp(dp_info, DP_TRAINING_PATTERN_3);
764 else
765 radeon_dp_set_tp(dp_info, DP_TRAINING_PATTERN_2);
766
767 /* channel equalization loop */
768 dp_info->tries = 0;
769 channel_eq = false;
770 while (1) {
Daniel Vetter1a644cd2012-10-18 15:32:40 +0200771 drm_dp_link_train_channel_eq_delay(dp_info->dpcd);
Alex Deucher224d94b2011-05-20 04:34:28 -0400772
Alex Deucherab8f1a22014-03-21 10:34:08 -0400773 if (drm_dp_dpcd_read_link_status(dp_info->aux,
774 dp_info->link_status) <= 0) {
Jerome Glisse8d1c7022012-07-17 17:17:16 -0400775 DRM_ERROR("displayport link status failed\n");
Alex Deucher224d94b2011-05-20 04:34:28 -0400776 break;
Jerome Glisse8d1c7022012-07-17 17:17:16 -0400777 }
Alex Deucher224d94b2011-05-20 04:34:28 -0400778
Daniel Vetter1ffdff12012-10-18 10:15:24 +0200779 if (drm_dp_channel_eq_ok(dp_info->link_status, dp_info->dp_lane_count)) {
Alex Deucher224d94b2011-05-20 04:34:28 -0400780 channel_eq = true;
781 break;
782 }
783
784 /* Try 5 times */
785 if (dp_info->tries > 5) {
786 DRM_ERROR("channel eq failed: 5 tries\n");
787 break;
788 }
789
790 /* Compute new train_set as requested by sink */
791 dp_get_adjust_train(dp_info->link_status, dp_info->dp_lane_count, dp_info->train_set);
792
793 radeon_dp_update_vs_emph(dp_info);
794 dp_info->tries++;
795 }
796
797 if (!channel_eq) {
798 DRM_ERROR("channel eq failed\n");
799 return -1;
800 } else {
801 DRM_DEBUG_KMS("channel eq at voltage %d pre-emphasis %d\n",
802 dp_info->train_set[0] & DP_TRAIN_VOLTAGE_SWING_MASK,
803 (dp_info->train_set[0] & DP_TRAIN_PRE_EMPHASIS_MASK)
804 >> DP_TRAIN_PRE_EMPHASIS_SHIFT);
805 return 0;
806 }
807}
808
809void radeon_dp_link_train(struct drm_encoder *encoder,
810 struct drm_connector *connector)
811{
812 struct drm_device *dev = encoder->dev;
813 struct radeon_device *rdev = dev->dev_private;
814 struct radeon_encoder *radeon_encoder = to_radeon_encoder(encoder);
815 struct radeon_encoder_atom_dig *dig;
816 struct radeon_connector *radeon_connector;
817 struct radeon_connector_atom_dig *dig_connector;
818 struct radeon_dp_link_train_info dp_info;
Jerome Glisse5a96a892011-07-25 11:57:43 -0400819 int index;
820 u8 tmp, frev, crev;
Alex Deucher224d94b2011-05-20 04:34:28 -0400821
822 if (!radeon_encoder->enc_priv)
823 return;
824 dig = radeon_encoder->enc_priv;
825
826 radeon_connector = to_radeon_connector(connector);
827 if (!radeon_connector->con_priv)
828 return;
829 dig_connector = radeon_connector->con_priv;
830
831 if ((dig_connector->dp_sink_type != CONNECTOR_OBJECT_ID_DISPLAYPORT) &&
832 (dig_connector->dp_sink_type != CONNECTOR_OBJECT_ID_eDP))
833 return;
834
Jerome Glisse5a96a892011-07-25 11:57:43 -0400835 /* DPEncoderService newer than 1.1 can't program properly the
836 * training pattern. When facing such version use the
837 * DIGXEncoderControl (X== 1 | 2)
838 */
839 dp_info.use_dpencoder = true;
840 index = GetIndexIntoMasterTable(COMMAND, DPEncoderService);
841 if (atom_parse_cmd_header(rdev->mode_info.atom_context, index, &frev, &crev)) {
842 if (crev > 1) {
843 dp_info.use_dpencoder = false;
844 }
845 }
846
Alex Deucher224d94b2011-05-20 04:34:28 -0400847 dp_info.enc_id = 0;
848 if (dig->dig_encoder)
849 dp_info.enc_id |= ATOM_DP_CONFIG_DIG2_ENCODER;
850 else
851 dp_info.enc_id |= ATOM_DP_CONFIG_DIG1_ENCODER;
852 if (dig->linkb)
853 dp_info.enc_id |= ATOM_DP_CONFIG_LINK_B;
854 else
855 dp_info.enc_id |= ATOM_DP_CONFIG_LINK_A;
856
Alex Deucheraa019b72014-04-30 09:27:15 -0400857 if (drm_dp_dpcd_readb(&radeon_connector->ddc_bus->aux, DP_MAX_LANE_COUNT, &tmp)
858 == 1) {
859 if (ASIC_IS_DCE5(rdev) && (tmp & DP_TPS3_SUPPORTED))
860 dp_info.tp3_supported = true;
861 else
862 dp_info.tp3_supported = false;
863 } else {
Alex Deucher224d94b2011-05-20 04:34:28 -0400864 dp_info.tp3_supported = false;
Alex Deucheraa019b72014-04-30 09:27:15 -0400865 }
Alex Deucher224d94b2011-05-20 04:34:28 -0400866
Daniel Vetter1a644cd2012-10-18 15:32:40 +0200867 memcpy(dp_info.dpcd, dig_connector->dpcd, DP_RECEIVER_CAP_SIZE);
Alex Deucher224d94b2011-05-20 04:34:28 -0400868 dp_info.rdev = rdev;
869 dp_info.encoder = encoder;
870 dp_info.connector = connector;
Alex Deucher224d94b2011-05-20 04:34:28 -0400871 dp_info.dp_lane_count = dig_connector->dp_lane_count;
872 dp_info.dp_clock = dig_connector->dp_clock;
Alex Deucher379dfc22014-04-07 10:33:46 -0400873 dp_info.aux = &radeon_connector->ddc_bus->aux;
Alex Deucher224d94b2011-05-20 04:34:28 -0400874
875 if (radeon_dp_link_train_init(&dp_info))
876 goto done;
877 if (radeon_dp_link_train_cr(&dp_info))
878 goto done;
879 if (radeon_dp_link_train_ce(&dp_info))
880 goto done;
881done:
882 if (radeon_dp_link_train_finish(&dp_info))
883 return;
884}