atombios_dp.c 24.1 KB
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24
/*
 * Copyright 2007-8 Advanced Micro Devices, Inc.
 * Copyright 2008 Red Hat Inc.
 *
 * Permission is hereby granted, free of charge, to any person obtaining a
 * copy of this software and associated documentation files (the "Software"),
 * to deal in the Software without restriction, including without limitation
 * the rights to use, copy, modify, merge, publish, distribute, sublicense,
 * and/or sell copies of the Software, and to permit persons to whom the
 * Software is furnished to do so, subject to the following conditions:
 *
 * The above copyright notice and this permission notice shall be included in
 * all copies or substantial portions of the Software.
 *
 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.  IN NO EVENT SHALL
 * THE COPYRIGHT HOLDER(S) OR AUTHOR(S) BE LIABLE FOR ANY CLAIM, DAMAGES OR
 * OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE,
 * ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
 * OTHER DEALINGS IN THE SOFTWARE.
 *
 * Authors: Dave Airlie
 *          Alex Deucher
25
 *          Jerome Glisse
26
 */
27

28
#include <drm/radeon_drm.h>
29 30 31 32
#include "radeon.h"

#include "atom.h"
#include "atom-bits.h"
33
#include <drm/drm_dp_helper.h>
34

35
/* move these to drm_dp_helper.c/h */
36
#define DP_LINK_CONFIGURATION_SIZE 9
37
#define DP_DPCD_SIZE DP_RECEIVER_CAP_SIZE
38 39

static char *voltage_names[] = {
J
Jérome Glisse 已提交
40
	"0.4V", "0.6V", "0.8V", "1.2V"
41 42
};
static char *pre_emph_names[] = {
J
Jérome Glisse 已提交
43
	"0dB", "3.5dB", "6dB", "9.5dB"
44
};
45

46
/***** radeon AUX functions *****/
47

48 49 50 51 52 53 54 55
/* Atom needs data in little endian format so swap as appropriate when copying
 * data to or from atom. Note that atom operates on dw units.
 *
 * Use to_le=true when sending data to atom and provide at least
 * ALIGN(num_bytes,4) bytes in the dst buffer.
 *
 * Use to_le=false when receiving data from atom and provide ALIGN(num_bytes,4)
 * byes in the src buffer.
56
 */
57
void radeon_atom_copy_swap(u8 *dst, u8 *src, u8 num_bytes, bool to_le)
58 59
{
#ifdef __BIG_ENDIAN
60
	u32 src_tmp[5], dst_tmp[5];
61
	int i;
62
	u8 align_num_bytes = ALIGN(num_bytes, 4);
63 64

	if (to_le) {
65 66 67 68
		memcpy(src_tmp, src, num_bytes);
		for (i = 0; i < align_num_bytes / 4; i++)
			dst_tmp[i] = cpu_to_le32(src_tmp[i]);
		memcpy(dst, dst_tmp, align_num_bytes);
69
	} else {
70 71 72 73
		memcpy(src_tmp, src, align_num_bytes);
		for (i = 0; i < align_num_bytes / 4; i++)
			dst_tmp[i] = le32_to_cpu(src_tmp[i]);
		memcpy(dst, dst_tmp, num_bytes);
74 75 76 77 78 79
	}
#else
	memcpy(dst, src, num_bytes);
#endif
}

80 81 82
union aux_channel_transaction {
	PROCESS_AUX_CHANNEL_TRANSACTION_PS_ALLOCATION v1;
	PROCESS_AUX_CHANNEL_TRANSACTION_PARAMETERS_V2 v2;
83 84
};

85 86 87 88 89 90 91 92 93 94 95
static int radeon_process_aux_ch(struct radeon_i2c_chan *chan,
				 u8 *send, int send_bytes,
				 u8 *recv, int recv_size,
				 u8 delay, u8 *ack)
{
	struct drm_device *dev = chan->dev;
	struct radeon_device *rdev = dev->dev_private;
	union aux_channel_transaction args;
	int index = GetIndexIntoMasterTable(COMMAND, ProcessAuxChannelTransaction);
	unsigned char *base;
	int recv_bytes;
A
Alex Deucher 已提交
96
	int r = 0;
97 98

	memset(&args, 0, sizeof(args));
99

A
Alex Deucher 已提交
100
	mutex_lock(&chan->mutex);
101
	mutex_lock(&rdev->mode_info.atom_context->scratch_mutex);
A
Alex Deucher 已提交
102

103
	base = (unsigned char *)(rdev->mode_info.atom_context->scratch + 1);
104

105
	radeon_atom_copy_swap(base, send, send_bytes, true);
106

107 108
	args.v1.lpAuxRequest = cpu_to_le16((u16)(0 + 4));
	args.v1.lpDataOut = cpu_to_le16((u16)(16 + 4));
109 110 111 112 113 114
	args.v1.ucDataOutLen = 0;
	args.v1.ucChannelID = chan->rec.i2c_id;
	args.v1.ucDelay = delay / 10;
	if (ASIC_IS_DCE4(rdev))
		args.v2.ucHPD_ID = chan->rec.hpd;

115
	atom_execute_table_scratch_unlocked(rdev->mode_info.atom_context, index, (uint32_t *)&args);
116 117 118 119 120 121

	*ack = args.v1.ucReplyStatus;

	/* timeout */
	if (args.v1.ucReplyStatus == 1) {
		DRM_DEBUG_KMS("dp_aux_ch timeout\n");
A
Alex Deucher 已提交
122 123
		r = -ETIMEDOUT;
		goto done;
124 125 126 127 128
	}

	/* flags not zero */
	if (args.v1.ucReplyStatus == 2) {
		DRM_DEBUG_KMS("dp_aux_ch flags not zero\n");
129
		r = -EIO;
A
Alex Deucher 已提交
130
		goto done;
131 132 133 134 135
	}

	/* error */
	if (args.v1.ucReplyStatus == 3) {
		DRM_DEBUG_KMS("dp_aux_ch error\n");
A
Alex Deucher 已提交
136 137
		r = -EIO;
		goto done;
138 139 140 141 142 143 144
	}

	recv_bytes = args.v1.ucDataOutLen;
	if (recv_bytes > recv_size)
		recv_bytes = recv_size;

	if (recv && recv_size)
145
		radeon_atom_copy_swap(recv, base + 16, recv_bytes, false);
146

A
Alex Deucher 已提交
147 148
	r = recv_bytes;
done:
149
	mutex_unlock(&rdev->mode_info.atom_context->scratch_mutex);
A
Alex Deucher 已提交
150 151 152
	mutex_unlock(&chan->mutex);

	return r;
153 154
}

155 156
#define BARE_ADDRESS_SIZE 3
#define HEADER_SIZE (BARE_ADDRESS_SIZE + 1)
157

158
static ssize_t
159
radeon_dp_aux_transfer_atom(struct drm_dp_aux *aux, struct drm_dp_aux_msg *msg)
160
{
161 162
	struct radeon_i2c_chan *chan =
		container_of(aux, struct radeon_i2c_chan, aux);
163
	int ret;
164 165 166 167 168 169 170 171
	u8 tx_buf[20];
	size_t tx_size;
	u8 ack, delay = 0;

	if (WARN_ON(msg->size > 16))
		return -E2BIG;

	tx_buf[0] = msg->address & 0xff;
172 173 174
	tx_buf[1] = (msg->address >> 8) & 0xff;
	tx_buf[2] = (msg->request << 4) |
		((msg->address >> 16) & 0xf);
175
	tx_buf[3] = msg->size ? (msg->size - 1) : 0;
176 177 178 179

	switch (msg->request & ~DP_AUX_I2C_MOT) {
	case DP_AUX_NATIVE_WRITE:
	case DP_AUX_I2C_WRITE:
180
	case DP_AUX_I2C_WRITE_STATUS_UPDATE:
181 182 183 184 185 186 187
		/* The atom implementation only supports writes with a max payload of
		 * 12 bytes since it uses 4 bits for the total count (header + payload)
		 * in the parameter space.  The atom interface supports 16 byte
		 * payloads for reads. The hw itself supports up to 16 bytes of payload.
		 */
		if (WARN_ON_ONCE(msg->size > 12))
			return -E2BIG;
188 189 190
		/* tx_size needs to be 4 even for bare address packets since the atom
		 * table needs the info in tx_buf[3].
		 */
191
		tx_size = HEADER_SIZE + msg->size;
192 193 194 195
		if (msg->size == 0)
			tx_buf[3] |= BARE_ADDRESS_SIZE << 4;
		else
			tx_buf[3] |= tx_size << 4;
196 197 198 199 200 201 202 203 204
		memcpy(tx_buf + HEADER_SIZE, msg->buffer, msg->size);
		ret = radeon_process_aux_ch(chan,
					    tx_buf, tx_size, NULL, 0, delay, &ack);
		if (ret >= 0)
			/* Return payload size. */
			ret = msg->size;
		break;
	case DP_AUX_NATIVE_READ:
	case DP_AUX_I2C_READ:
205 206 207
		/* tx_size needs to be 4 even for bare address packets since the atom
		 * table needs the info in tx_buf[3].
		 */
208
		tx_size = HEADER_SIZE;
209 210 211 212
		if (msg->size == 0)
			tx_buf[3] |= BARE_ADDRESS_SIZE << 4;
		else
			tx_buf[3] |= tx_size << 4;
213 214 215 216 217 218
		ret = radeon_process_aux_ch(chan,
					    tx_buf, tx_size, msg->buffer, msg->size, delay, &ack);
		break;
	default:
		ret = -EINVAL;
		break;
219
	}
220

221
	if (ret >= 0)
222
		msg->reply = ack >> 4;
223

224
	return ret;
225 226
}

227
void radeon_dp_aux_init(struct radeon_connector *radeon_connector)
228
{
229 230
	struct drm_device *dev = radeon_connector->base.dev;
	struct radeon_device *rdev = dev->dev_private;
231
	int ret;
232

233
	radeon_connector->ddc_bus->rec.hpd = radeon_connector->hpd.hpd;
234
	radeon_connector->ddc_bus->aux.dev = radeon_connector->base.kdev;
235
	radeon_connector->ddc_bus->aux.drm_dev = radeon_connector->base.dev;
236 237 238 239 240 241 242 243
	if (ASIC_IS_DCE5(rdev)) {
		if (radeon_auxch)
			radeon_connector->ddc_bus->aux.transfer = radeon_dp_aux_transfer_native;
		else
			radeon_connector->ddc_bus->aux.transfer = radeon_dp_aux_transfer_atom;
	} else {
		radeon_connector->ddc_bus->aux.transfer = radeon_dp_aux_transfer_atom;
	}
244 245

	ret = drm_dp_aux_register(&radeon_connector->ddc_bus->aux);
246 247
	if (!ret)
		radeon_connector->ddc_bus->has_aux = true;
248

249
	WARN(ret, "drm_dp_aux_register() failed with error %d\n", ret);
250 251
}

252 253
/***** general DP utility functions *****/

254 255
#define DP_VOLTAGE_MAX         DP_TRAIN_VOLTAGE_SWING_LEVEL_3
#define DP_PRE_EMPHASIS_MAX    DP_TRAIN_PRE_EMPH_LEVEL_3
256

257
static void dp_get_adjust_train(const u8 link_status[DP_LINK_STATUS_SIZE],
258 259 260 261 262 263 264 265
				int lane_count,
				u8 train_set[4])
{
	u8 v = 0;
	u8 p = 0;
	int lane;

	for (lane = 0; lane < lane_count; lane++) {
266 267
		u8 this_v = drm_dp_get_adjust_request_voltage(link_status, lane);
		u8 this_p = drm_dp_get_adjust_request_pre_emphasis(link_status, lane);
268

269
		DRM_DEBUG_KMS("requested signal parameters: lane %d voltage %s pre_emph %s\n",
270 271 272
			  lane,
			  voltage_names[this_v >> DP_TRAIN_VOLTAGE_SWING_SHIFT],
			  pre_emph_names[this_p >> DP_TRAIN_PRE_EMPHASIS_SHIFT]);
273 274 275 276 277 278 279 280

		if (this_v > v)
			v = this_v;
		if (this_p > p)
			p = this_p;
	}

	if (v >= DP_VOLTAGE_MAX)
281
		v |= DP_TRAIN_MAX_SWING_REACHED;
282

283 284
	if (p >= DP_PRE_EMPHASIS_MAX)
		p |= DP_TRAIN_MAX_PRE_EMPHASIS_REACHED;
285

286
	DRM_DEBUG_KMS("using signal parameters: voltage %s pre_emph %s\n",
287 288
		  voltage_names[(v & DP_TRAIN_VOLTAGE_SWING_MASK) >> DP_TRAIN_VOLTAGE_SWING_SHIFT],
		  pre_emph_names[(p & DP_TRAIN_PRE_EMPHASIS_MASK) >> DP_TRAIN_PRE_EMPHASIS_SHIFT]);
289 290 291 292 293

	for (lane = 0; lane < 4; lane++)
		train_set[lane] = v | p;
}

294 295 296
/* convert bits per color to bits per pixel */
/* get bpc from the EDID */
static int convert_bpc_to_bpp(int bpc)
297
{
298 299 300 301 302
	if (bpc == 0)
		return 24;
	else
		return bpc * 3;
}
303

304
/***** radeon specific DP functions *****/
305

306 307 308 309
static int radeon_dp_get_dp_link_config(struct drm_connector *connector,
					const u8 dpcd[DP_DPCD_SIZE],
					unsigned pix_clock,
					unsigned *dp_lanes, unsigned *dp_rate)
310
{
311
	int bpp = convert_bpc_to_bpp(radeon_get_monitor_bpc(connector));
312 313 314 315 316
	static const unsigned link_rates[3] = { 162000, 270000, 540000 };
	unsigned max_link_rate = drm_dp_max_link_rate(dpcd);
	unsigned max_lane_num = drm_dp_max_lane_count(dpcd);
	unsigned lane_num, i, max_pix_clock;

317 318 319 320
	if (radeon_connector_encoder_get_dp_bridge_encoder_id(connector) ==
	    ENCODER_OBJECT_ID_NUTMEG) {
		for (lane_num = 1; lane_num <= max_lane_num; lane_num <<= 1) {
			max_pix_clock = (lane_num * 270000 * 8) / bpp;
321 322
			if (max_pix_clock >= pix_clock) {
				*dp_lanes = lane_num;
323
				*dp_rate = 270000;
324 325 326
				return 0;
			}
		}
327
	} else {
328 329
		for (i = 0; i < ARRAY_SIZE(link_rates) && link_rates[i] <= max_link_rate; i++) {
			for (lane_num = 1; lane_num <= max_lane_num; lane_num <<= 1) {
330 331 332 333 334 335 336 337
				max_pix_clock = (lane_num * link_rates[i] * 8) / bpp;
				if (max_pix_clock >= pix_clock) {
					*dp_lanes = lane_num;
					*dp_rate = link_rates[i];
					return 0;
				}
			}
		}
338
	}
339

340
	return -EINVAL;
341 342
}

343 344
static u8 radeon_dp_encoder_service(struct radeon_device *rdev,
				    int action, int dp_clock,
345
				    u8 ucconfig, u8 lane_num)
346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366
{
	DP_ENCODER_SERVICE_PARAMETERS args;
	int index = GetIndexIntoMasterTable(COMMAND, DPEncoderService);

	memset(&args, 0, sizeof(args));
	args.ucLinkClock = dp_clock / 10;
	args.ucConfig = ucconfig;
	args.ucAction = action;
	args.ucLaneNum = lane_num;
	args.ucStatus = 0;

	atom_execute_table(rdev->mode_info.atom_context, index, (uint32_t *)&args);
	return args.ucStatus;
}

u8 radeon_dp_getsinktype(struct radeon_connector *radeon_connector)
{
	struct drm_device *dev = radeon_connector->base.dev;
	struct radeon_device *rdev = dev->dev_private;

	return radeon_dp_encoder_service(rdev, ATOM_DP_ACTION_GET_SINK_TYPE, 0,
367
					 radeon_connector->ddc_bus->rec.i2c_id, 0);
368 369
}

370 371 372 373 374 375 376 377
static void radeon_dp_probe_oui(struct radeon_connector *radeon_connector)
{
	struct radeon_connector_atom_dig *dig_connector = radeon_connector->con_priv;
	u8 buf[3];

	if (!(dig_connector->dpcd[DP_DOWN_STREAM_PORT_COUNT] & DP_OUI_SUPPORT))
		return;

378
	if (drm_dp_dpcd_read(&radeon_connector->ddc_bus->aux, DP_SINK_OUI, buf, 3) == 3)
379 380 381
		DRM_DEBUG_KMS("Sink OUI: %02hx%02hx%02hx\n",
			      buf[0], buf[1], buf[2]);

382
	if (drm_dp_dpcd_read(&radeon_connector->ddc_bus->aux, DP_BRANCH_OUI, buf, 3) == 3)
383 384 385 386
		DRM_DEBUG_KMS("Branch OUI: %02hx%02hx%02hx\n",
			      buf[0], buf[1], buf[2]);
}

A
Alex Deucher 已提交
387
bool radeon_dp_getdpcd(struct radeon_connector *radeon_connector)
388
{
389
	struct radeon_connector_atom_dig *dig_connector = radeon_connector->con_priv;
390
	u8 msg[DP_DPCD_SIZE];
391
	int ret;
392

393 394 395 396
	ret = drm_dp_dpcd_read(&radeon_connector->ddc_bus->aux, DP_DPCD_REV, msg,
			       DP_DPCD_SIZE);
	if (ret == DP_DPCD_SIZE) {
		memcpy(dig_connector->dpcd, msg, DP_DPCD_SIZE);
397

398 399
		DRM_DEBUG_KMS("DPCD: %*ph\n", (int)sizeof(dig_connector->dpcd),
			      dig_connector->dpcd);
400

401
		radeon_dp_probe_oui(radeon_connector);
402

403
		return true;
404
	}
405

406
	dig_connector->dpcd[0] = 0;
A
Alex Deucher 已提交
407
	return false;
408 409
}

410 411
int radeon_dp_get_panel_mode(struct drm_encoder *encoder,
			     struct drm_connector *connector)
412 413 414
{
	struct drm_device *dev = encoder->dev;
	struct radeon_device *rdev = dev->dev_private;
415
	struct radeon_connector *radeon_connector = to_radeon_connector(connector);
416
	int panel_mode = DP_PANEL_MODE_EXTERNAL_DP_MODE;
417 418
	u16 dp_bridge = radeon_connector_encoder_get_dp_bridge_encoder_id(connector);
	u8 tmp;
419 420

	if (!ASIC_IS_DCE4(rdev))
421
		return panel_mode;
422

423 424 425
	if (!radeon_connector->con_priv)
		return panel_mode;

426 427
	if (dp_bridge != ENCODER_OBJECT_ID_NONE) {
		/* DP bridge chips */
428 429 430 431 432 433 434 435 436 437
		if (drm_dp_dpcd_readb(&radeon_connector->ddc_bus->aux,
				      DP_EDP_CONFIGURATION_CAP, &tmp) == 1) {
			if (tmp & 1)
				panel_mode = DP_PANEL_MODE_INTERNAL_DP2_MODE;
			else if ((dp_bridge == ENCODER_OBJECT_ID_NUTMEG) ||
				 (dp_bridge == ENCODER_OBJECT_ID_TRAVIS))
				panel_mode = DP_PANEL_MODE_INTERNAL_DP1_MODE;
			else
				panel_mode = DP_PANEL_MODE_EXTERNAL_DP_MODE;
		}
438
	} else if (connector->connector_type == DRM_MODE_CONNECTOR_eDP) {
439
		/* eDP */
440 441 442 443 444
		if (drm_dp_dpcd_readb(&radeon_connector->ddc_bus->aux,
				      DP_EDP_CONFIGURATION_CAP, &tmp) == 1) {
			if (tmp & 1)
				panel_mode = DP_PANEL_MODE_INTERNAL_DP2_MODE;
		}
445
	}
446

447
	return panel_mode;
448 449
}

450
void radeon_dp_set_link_config(struct drm_connector *connector,
451
			       const struct drm_display_mode *mode)
452
{
453
	struct radeon_connector *radeon_connector = to_radeon_connector(connector);
454
	struct radeon_connector_atom_dig *dig_connector;
455
	int ret;
456 457 458 459 460

	if (!radeon_connector->con_priv)
		return;
	dig_connector = radeon_connector->con_priv;

461 462
	if ((dig_connector->dp_sink_type == CONNECTOR_OBJECT_ID_DISPLAYPORT) ||
	    (dig_connector->dp_sink_type == CONNECTOR_OBJECT_ID_eDP)) {
463 464 465 466 467 468 469 470
		ret = radeon_dp_get_dp_link_config(connector, dig_connector->dpcd,
						   mode->clock,
						   &dig_connector->dp_lane_count,
						   &dig_connector->dp_clock);
		if (ret) {
			dig_connector->dp_clock = 0;
			dig_connector->dp_lane_count = 0;
		}
471
	}
472 473
}

474
int radeon_dp_mode_valid_helper(struct drm_connector *connector,
475 476
				struct drm_display_mode *mode)
{
477 478
	struct radeon_connector *radeon_connector = to_radeon_connector(connector);
	struct radeon_connector_atom_dig *dig_connector;
479 480
	unsigned dp_clock, dp_lanes;
	int ret;
481

482 483 484 485
	if ((mode->clock > 340000) &&
	    (!radeon_connector_is_dp12_capable(connector)))
		return MODE_CLOCK_HIGH;

486 487 488 489
	if (!radeon_connector->con_priv)
		return MODE_CLOCK_HIGH;
	dig_connector = radeon_connector->con_priv;

490 491 492 493 494 495
	ret = radeon_dp_get_dp_link_config(connector, dig_connector->dpcd,
					   mode->clock,
					   &dp_lanes,
					   &dp_clock);
	if (ret)
		return MODE_CLOCK_HIGH;
496 497 498 499 500 501

	if ((dp_clock == 540000) &&
	    (!radeon_connector_is_dp12_capable(connector)))
		return MODE_CLOCK_HIGH;

	return MODE_OK;
502 503
}

504 505 506 507 508
bool radeon_dp_needs_link_train(struct radeon_connector *radeon_connector)
{
	u8 link_status[DP_LINK_STATUS_SIZE];
	struct radeon_connector_atom_dig *dig = radeon_connector->con_priv;

509 510
	if (drm_dp_dpcd_read_link_status(&radeon_connector->ddc_bus->aux, link_status)
	    <= 0)
511
		return false;
512
	if (drm_dp_channel_eq_ok(link_status, dig->dp_lane_count))
513 514 515 516
		return false;
	return true;
}

517 518 519 520 521 522 523 524 525 526 527 528 529
void radeon_dp_set_rx_power_state(struct drm_connector *connector,
				  u8 power_state)
{
	struct radeon_connector *radeon_connector = to_radeon_connector(connector);
	struct radeon_connector_atom_dig *dig_connector;

	if (!radeon_connector->con_priv)
		return;

	dig_connector = radeon_connector->con_priv;

	/* power up/down the sink */
	if (dig_connector->dpcd[0] >= 0x11) {
530
		drm_dp_dpcd_writeb(&radeon_connector->ddc_bus->aux,
531 532 533 534 535 536
				   DP_SET_POWER, power_state);
		usleep_range(1000, 2000);
	}
}


537 538 539 540 541 542 543 544
struct radeon_dp_link_train_info {
	struct radeon_device *rdev;
	struct drm_encoder *encoder;
	struct drm_connector *connector;
	int enc_id;
	int dp_clock;
	int dp_lane_count;
	bool tp3_supported;
545
	u8 dpcd[DP_RECEIVER_CAP_SIZE];
546 547 548
	u8 train_set[4];
	u8 link_status[DP_LINK_STATUS_SIZE];
	u8 tries;
549
	bool use_dpencoder;
550
	struct drm_dp_aux *aux;
551
};
552

553
static void radeon_dp_update_vs_emph(struct radeon_dp_link_train_info *dp_info)
554
{
555 556 557 558 559 560
	/* set the initial vs/emph on the source */
	atombios_dig_transmitter_setup(dp_info->encoder,
				       ATOM_TRANSMITTER_ACTION_SETUP_VSEMPH,
				       0, dp_info->train_set[0]); /* sets all lanes at once */

	/* set the vs/emph on the sink */
561 562
	drm_dp_dpcd_write(dp_info->aux, DP_TRAINING_LANE0_SET,
			  dp_info->train_set, dp_info->dp_lane_count);
563 564
}

565
static void radeon_dp_set_tp(struct radeon_dp_link_train_info *dp_info, int tp)
566
{
567
	int rtp = 0;
568

569
	/* set training pattern on the source */
570
	if (ASIC_IS_DCE4(dp_info->rdev) || !dp_info->use_dpencoder) {
571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594
		switch (tp) {
		case DP_TRAINING_PATTERN_1:
			rtp = ATOM_ENCODER_CMD_DP_LINK_TRAINING_PATTERN1;
			break;
		case DP_TRAINING_PATTERN_2:
			rtp = ATOM_ENCODER_CMD_DP_LINK_TRAINING_PATTERN2;
			break;
		case DP_TRAINING_PATTERN_3:
			rtp = ATOM_ENCODER_CMD_DP_LINK_TRAINING_PATTERN3;
			break;
		}
		atombios_dig_encoder_setup(dp_info->encoder, rtp, 0);
	} else {
		switch (tp) {
		case DP_TRAINING_PATTERN_1:
			rtp = 0;
			break;
		case DP_TRAINING_PATTERN_2:
			rtp = 1;
			break;
		}
		radeon_dp_encoder_service(dp_info->rdev, ATOM_DP_ACTION_TRAINING_PATTERN_SEL,
					  dp_info->dp_clock, dp_info->enc_id, rtp);
	}
595

596
	/* enable training pattern on the sink */
597
	drm_dp_dpcd_writeb(dp_info->aux, DP_TRAINING_PATTERN_SET, tp);
598 599
}

600
static int radeon_dp_link_train_init(struct radeon_dp_link_train_info *dp_info)
601
{
602 603
	struct radeon_encoder *radeon_encoder = to_radeon_encoder(dp_info->encoder);
	struct radeon_encoder_atom_dig *dig = radeon_encoder->enc_priv;
604
	u8 tmp;
605

606
	/* power up the sink */
607
	radeon_dp_set_rx_power_state(dp_info->connector, DP_SET_POWER_D0);
608 609 610

	/* possibly enable downspread on the sink */
	if (dp_info->dpcd[3] & 0x1)
611 612
		drm_dp_dpcd_writeb(dp_info->aux,
				   DP_DOWNSPREAD_CTRL, DP_SPREAD_AMP_0_5);
613
	else
614 615
		drm_dp_dpcd_writeb(dp_info->aux,
				   DP_DOWNSPREAD_CTRL, 0);
616

617
	if (dig->panel_mode == DP_PANEL_MODE_INTERNAL_DP2_MODE)
618
		drm_dp_dpcd_writeb(dp_info->aux, DP_EDP_CONFIGURATION_SET, 1);
619

620 621
	/* set the lane count on the sink */
	tmp = dp_info->dp_lane_count;
622
	if (drm_dp_enhanced_frame_cap(dp_info->dpcd))
623
		tmp |= DP_LANE_COUNT_ENHANCED_FRAME_EN;
624
	drm_dp_dpcd_writeb(dp_info->aux, DP_LANE_COUNT_SET, tmp);
625

626
	/* set the link rate on the sink */
D
Daniel Vetter 已提交
627
	tmp = drm_dp_link_rate_to_bw_code(dp_info->dp_clock);
628
	drm_dp_dpcd_writeb(dp_info->aux, DP_LINK_BW_SET, tmp);
629

630
	/* start training on the source */
631
	if (ASIC_IS_DCE4(dp_info->rdev) || !dp_info->use_dpencoder)
632 633
		atombios_dig_encoder_setup(dp_info->encoder,
					   ATOM_ENCODER_CMD_DP_LINK_TRAINING_START, 0);
634
	else
635 636
		radeon_dp_encoder_service(dp_info->rdev, ATOM_DP_ACTION_TRAINING_START,
					  dp_info->dp_clock, dp_info->enc_id, 0);
637 638

	/* disable the training pattern on the sink */
639 640 641
	drm_dp_dpcd_writeb(dp_info->aux,
			   DP_TRAINING_PATTERN_SET,
			   DP_TRAINING_PATTERN_DISABLE);
642 643 644

	return 0;
}
645

646 647
static int radeon_dp_link_train_finish(struct radeon_dp_link_train_info *dp_info)
{
648 649
	udelay(400);

650
	/* disable the training pattern on the sink */
651 652 653
	drm_dp_dpcd_writeb(dp_info->aux,
			   DP_TRAINING_PATTERN_SET,
			   DP_TRAINING_PATTERN_DISABLE);
654 655

	/* disable the training pattern on the source */
656
	if (ASIC_IS_DCE4(dp_info->rdev) || !dp_info->use_dpencoder)
657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676
		atombios_dig_encoder_setup(dp_info->encoder,
					   ATOM_ENCODER_CMD_DP_LINK_TRAINING_COMPLETE, 0);
	else
		radeon_dp_encoder_service(dp_info->rdev, ATOM_DP_ACTION_TRAINING_COMPLETE,
					  dp_info->dp_clock, dp_info->enc_id, 0);

	return 0;
}

static int radeon_dp_link_train_cr(struct radeon_dp_link_train_info *dp_info)
{
	bool clock_recovery;
 	u8 voltage;
	int i;

	radeon_dp_set_tp(dp_info, DP_TRAINING_PATTERN_1);
	memset(dp_info->train_set, 0, 4);
	radeon_dp_update_vs_emph(dp_info);

	udelay(400);
677

678 679
	/* clock recovery loop */
	clock_recovery = false;
680
	dp_info->tries = 0;
681
	voltage = 0xff;
682
	while (1) {
683
		drm_dp_link_train_clock_recovery_delay(dp_info->aux, dp_info->dpcd);
684

685 686
		if (drm_dp_dpcd_read_link_status(dp_info->aux,
						 dp_info->link_status) <= 0) {
687
			DRM_ERROR("displayport link status failed\n");
688
			break;
689
		}
690

691
		if (drm_dp_clock_recovery_ok(dp_info->link_status, dp_info->dp_lane_count)) {
692 693 694 695
			clock_recovery = true;
			break;
		}

696 697
		for (i = 0; i < dp_info->dp_lane_count; i++) {
			if ((dp_info->train_set[i] & DP_TRAIN_MAX_SWING_REACHED) == 0)
698 699
				break;
		}
700
		if (i == dp_info->dp_lane_count) {
701 702 703 704
			DRM_ERROR("clock recovery reached max voltage\n");
			break;
		}

705 706 707
		if ((dp_info->train_set[0] & DP_TRAIN_VOLTAGE_SWING_MASK) == voltage) {
			++dp_info->tries;
			if (dp_info->tries == 5) {
708 709 710 711
				DRM_ERROR("clock recovery tried 5 times\n");
				break;
			}
		} else
712
			dp_info->tries = 0;
713

714
		voltage = dp_info->train_set[0] & DP_TRAIN_VOLTAGE_SWING_MASK;
715 716

		/* Compute new train_set as requested by sink */
717 718 719
		dp_get_adjust_train(dp_info->link_status, dp_info->dp_lane_count, dp_info->train_set);

		radeon_dp_update_vs_emph(dp_info);
720
	}
721
	if (!clock_recovery) {
722
		DRM_ERROR("clock recovery failed\n");
723 724
		return -1;
	} else {
725
		DRM_DEBUG_KMS("clock recovery at voltage %d pre-emphasis %d\n",
726 727
			  dp_info->train_set[0] & DP_TRAIN_VOLTAGE_SWING_MASK,
			  (dp_info->train_set[0] & DP_TRAIN_PRE_EMPHASIS_MASK) >>
728
			  DP_TRAIN_PRE_EMPHASIS_SHIFT);
729 730 731
		return 0;
	}
}
732

733 734 735
static int radeon_dp_link_train_ce(struct radeon_dp_link_train_info *dp_info)
{
	bool channel_eq;
736

737 738
	if (dp_info->tp3_supported)
		radeon_dp_set_tp(dp_info, DP_TRAINING_PATTERN_3);
739
	else
740
		radeon_dp_set_tp(dp_info, DP_TRAINING_PATTERN_2);
741 742

	/* channel equalization loop */
743
	dp_info->tries = 0;
744
	channel_eq = false;
745
	while (1) {
746
		drm_dp_link_train_channel_eq_delay(dp_info->dpcd);
747

748 749
		if (drm_dp_dpcd_read_link_status(dp_info->aux,
						 dp_info->link_status) <= 0) {
750
			DRM_ERROR("displayport link status failed\n");
751
			break;
752
		}
753

754
		if (drm_dp_channel_eq_ok(dp_info->link_status, dp_info->dp_lane_count)) {
755 756 757 758 759
			channel_eq = true;
			break;
		}

		/* Try 5 times */
760
		if (dp_info->tries > 5) {
761 762 763 764 765
			DRM_ERROR("channel eq failed: 5 tries\n");
			break;
		}

		/* Compute new train_set as requested by sink */
766
		dp_get_adjust_train(dp_info->link_status, dp_info->dp_lane_count, dp_info->train_set);
767

768 769
		radeon_dp_update_vs_emph(dp_info);
		dp_info->tries++;
770 771
	}

772
	if (!channel_eq) {
773
		DRM_ERROR("channel eq failed\n");
774 775
		return -1;
	} else {
776
		DRM_DEBUG_KMS("channel eq at voltage %d pre-emphasis %d\n",
777 778
			  dp_info->train_set[0] & DP_TRAIN_VOLTAGE_SWING_MASK,
			  (dp_info->train_set[0] & DP_TRAIN_PRE_EMPHASIS_MASK)
779
			  >> DP_TRAIN_PRE_EMPHASIS_SHIFT);
780 781
		return 0;
	}
782 783
}

784 785
void radeon_dp_link_train(struct drm_encoder *encoder,
			  struct drm_connector *connector)
786
{
787 788 789 790 791 792 793
	struct drm_device *dev = encoder->dev;
	struct radeon_device *rdev = dev->dev_private;
	struct radeon_encoder *radeon_encoder = to_radeon_encoder(encoder);
	struct radeon_encoder_atom_dig *dig;
	struct radeon_connector *radeon_connector;
	struct radeon_connector_atom_dig *dig_connector;
	struct radeon_dp_link_train_info dp_info;
794 795
	int index;
	u8 tmp, frev, crev;
796

797 798 799
	if (!radeon_encoder->enc_priv)
		return;
	dig = radeon_encoder->enc_priv;
800

801 802 803 804
	radeon_connector = to_radeon_connector(connector);
	if (!radeon_connector->con_priv)
		return;
	dig_connector = radeon_connector->con_priv;
805

806 807 808
	if ((dig_connector->dp_sink_type != CONNECTOR_OBJECT_ID_DISPLAYPORT) &&
	    (dig_connector->dp_sink_type != CONNECTOR_OBJECT_ID_eDP))
		return;
809

810 811 812 813 814 815 816
	/* DPEncoderService newer than 1.1 can't program properly the
	 * training pattern. When facing such version use the
	 * DIGXEncoderControl (X== 1 | 2)
	 */
	dp_info.use_dpencoder = true;
	index = GetIndexIntoMasterTable(COMMAND, DPEncoderService);
	if (atom_parse_cmd_header(rdev->mode_info.atom_context, index, &frev, &crev)) {
817
		if (crev > 1)
818 819 820
			dp_info.use_dpencoder = false;
	}

821 822 823 824 825 826 827 828 829
	dp_info.enc_id = 0;
	if (dig->dig_encoder)
		dp_info.enc_id |= ATOM_DP_CONFIG_DIG2_ENCODER;
	else
		dp_info.enc_id |= ATOM_DP_CONFIG_DIG1_ENCODER;
	if (dig->linkb)
		dp_info.enc_id |= ATOM_DP_CONFIG_LINK_B;
	else
		dp_info.enc_id |= ATOM_DP_CONFIG_LINK_A;
830

831 832 833 834 835 836 837
	if (drm_dp_dpcd_readb(&radeon_connector->ddc_bus->aux, DP_MAX_LANE_COUNT, &tmp)
	    == 1) {
		if (ASIC_IS_DCE5(rdev) && (tmp & DP_TPS3_SUPPORTED))
			dp_info.tp3_supported = true;
		else
			dp_info.tp3_supported = false;
	} else {
838
		dp_info.tp3_supported = false;
839
	}
840

841
	memcpy(dp_info.dpcd, dig_connector->dpcd, DP_RECEIVER_CAP_SIZE);
842 843 844 845 846
	dp_info.rdev = rdev;
	dp_info.encoder = encoder;
	dp_info.connector = connector;
	dp_info.dp_lane_count = dig_connector->dp_lane_count;
	dp_info.dp_clock = dig_connector->dp_clock;
847
	dp_info.aux = &radeon_connector->ddc_bus->aux;
848 849 850 851 852 853 854 855 856 857

	if (radeon_dp_link_train_init(&dp_info))
		goto done;
	if (radeon_dp_link_train_cr(&dp_info))
		goto done;
	if (radeon_dp_link_train_ce(&dp_info))
		goto done;
done:
	if (radeon_dp_link_train_finish(&dp_info))
		return;
858
}