Linux Audio

Check our new training course

Loading...
v6.13.7
   1/*
   2 * Copyright 2015 Advanced Micro Devices, Inc.
   3 *
   4 * Permission is hereby granted, free of charge, to any person obtaining a
   5 * copy of this software and associated documentation files (the "Software"),
   6 * to deal in the Software without restriction, including without limitation
   7 * the rights to use, copy, modify, merge, publish, distribute, sublicense,
   8 * and/or sell copies of the Software, and to permit persons to whom the
   9 * Software is furnished to do so, subject to the following conditions:
  10 *
  11 * The above copyright notice and this permission notice shall be included in
  12 * all copies or substantial portions of the Software.
  13 *
  14 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
  15 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
  16 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.  IN NO EVENT SHALL
  17 * THE COPYRIGHT HOLDER(S) OR AUTHOR(S) BE LIABLE FOR ANY CLAIM, DAMAGES OR
  18 * OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE,
  19 * ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
  20 * OTHER DEALINGS IN THE SOFTWARE.
  21 *
  22 * Authors: AMD
  23 *
  24 */
  25
  26#include <acpi/video.h>
  27
  28#include <linux/string.h>
  29#include <linux/acpi.h>
 
  30#include <linux/i2c.h>
  31
  32#include <drm/drm_atomic.h>
  33#include <drm/drm_probe_helper.h>
  34#include <drm/amdgpu_drm.h>
  35#include <drm/drm_edid.h>
  36#include <drm/drm_fixed.h>
  37
  38#include "dm_services.h"
  39#include "amdgpu.h"
  40#include "dc.h"
  41#include "amdgpu_dm.h"
  42#include "amdgpu_dm_irq.h"
  43#include "amdgpu_dm_mst_types.h"
  44#include "dpcd_defs.h"
  45#include "dc/inc/core_types.h"
  46
  47#include "dm_helpers.h"
  48#include "ddc_service_types.h"
  49#include "clk_mgr.h"
  50
  51static u32 edid_extract_panel_id(struct edid *edid)
  52{
  53	return (u32)edid->mfg_id[0] << 24   |
  54	       (u32)edid->mfg_id[1] << 16   |
  55	       (u32)EDID_PRODUCT_ID(edid);
  56}
  57
  58static void apply_edid_quirks(struct edid *edid, struct dc_edid_caps *edid_caps)
  59{
  60	uint32_t panel_id = edid_extract_panel_id(edid);
  61
  62	switch (panel_id) {
  63	/* Workaround for some monitors which does not work well with FAMS */
  64	case drm_edid_encode_panel_id('S', 'A', 'M', 0x0E5E):
  65	case drm_edid_encode_panel_id('S', 'A', 'M', 0x7053):
  66	case drm_edid_encode_panel_id('S', 'A', 'M', 0x71AC):
  67		DRM_DEBUG_DRIVER("Disabling FAMS on monitor with panel id %X\n", panel_id);
  68		edid_caps->panel_patch.disable_fams = true;
  69		break;
  70	/* Workaround for some monitors that do not clear DPCD 0x317 if FreeSync is unsupported */
  71	case drm_edid_encode_panel_id('A', 'U', 'O', 0xA7AB):
  72	case drm_edid_encode_panel_id('A', 'U', 'O', 0xE69B):
  73	case drm_edid_encode_panel_id('B', 'O', 'E', 0x092A):
  74	case drm_edid_encode_panel_id('L', 'G', 'D', 0x06D1):
  75	case drm_edid_encode_panel_id('M', 'S', 'F', 0x1003):
  76		DRM_DEBUG_DRIVER("Clearing DPCD 0x317 on monitor with panel id %X\n", panel_id);
  77		edid_caps->panel_patch.remove_sink_ext_caps = true;
  78		break;
  79	case drm_edid_encode_panel_id('S', 'D', 'C', 0x4154):
  80		DRM_DEBUG_DRIVER("Disabling VSC on monitor with panel id %X\n", panel_id);
  81		edid_caps->panel_patch.disable_colorimetry = true;
  82		break;
  83	default:
  84		return;
  85	}
  86}
  87
  88/**
  89 * dm_helpers_parse_edid_caps() - Parse edid caps
  90 *
  91 * @link: current detected link
  92 * @edid:	[in] pointer to edid
  93 * @edid_caps:	[in] pointer to edid caps
  94 *
  95 * Return: void
  96 */
 
 
 
  97enum dc_edid_status dm_helpers_parse_edid_caps(
  98		struct dc_link *link,
  99		const struct dc_edid *edid,
 100		struct dc_edid_caps *edid_caps)
 101{
 102	struct amdgpu_dm_connector *aconnector = link->priv;
 103	struct drm_connector *connector = &aconnector->base;
 104	struct edid *edid_buf = edid ? (struct edid *) edid->raw_edid : NULL;
 105	struct cea_sad *sads;
 106	int sad_count = -1;
 107	int sadb_count = -1;
 108	int i = 0;
 
 109	uint8_t *sadb = NULL;
 110
 111	enum dc_edid_status result = EDID_OK;
 112
 113	if (!edid_caps || !edid)
 114		return EDID_BAD_INPUT;
 115
 116	if (!drm_edid_is_valid(edid_buf))
 117		result = EDID_BAD_CHECKSUM;
 118
 119	edid_caps->manufacturer_id = (uint16_t) edid_buf->mfg_id[0] |
 120					((uint16_t) edid_buf->mfg_id[1])<<8;
 121	edid_caps->product_id = (uint16_t) edid_buf->prod_code[0] |
 122					((uint16_t) edid_buf->prod_code[1])<<8;
 123	edid_caps->serial_number = edid_buf->serial;
 124	edid_caps->manufacture_week = edid_buf->mfg_week;
 125	edid_caps->manufacture_year = edid_buf->mfg_year;
 126
 127	drm_edid_get_monitor_name(edid_buf,
 128				  edid_caps->display_name,
 129				  AUDIO_INFO_DISPLAY_NAME_SIZE_IN_CHARS);
 130
 131	edid_caps->edid_hdmi = connector->display_info.is_hdmi;
 
 
 
 
 
 
 
 
 
 132
 133	apply_edid_quirks(edid_buf, edid_caps);
 
 134
 135	sad_count = drm_edid_to_sad((struct edid *) edid->raw_edid, &sads);
 136	if (sad_count <= 0)
 
 
 137		return result;
 
 138
 139	edid_caps->audio_mode_count = min(sad_count, DC_MAX_AUDIO_DESC_COUNT);
 140	for (i = 0; i < edid_caps->audio_mode_count; ++i) {
 141		struct cea_sad *sad = &sads[i];
 142
 143		edid_caps->audio_modes[i].format_code = sad->format;
 144		edid_caps->audio_modes[i].channel_count = sad->channels + 1;
 145		edid_caps->audio_modes[i].sample_rate = sad->freq;
 146		edid_caps->audio_modes[i].sample_size = sad->byte2;
 147	}
 148
 149	sadb_count = drm_edid_to_speaker_allocation((struct edid *) edid->raw_edid, &sadb);
 150
 151	if (sadb_count < 0) {
 152		DRM_ERROR("Couldn't read Speaker Allocation Data Block: %d\n", sadb_count);
 153		sadb_count = 0;
 154	}
 155
 156	if (sadb_count)
 157		edid_caps->speaker_flags = sadb[0];
 158	else
 159		edid_caps->speaker_flags = DEFAULT_SPEAKER_LOCATION;
 160
 161	kfree(sads);
 162	kfree(sadb);
 163
 164	return result;
 165}
 166
 167static void
 168fill_dc_mst_payload_table_from_drm(struct dc_link *link,
 169				   bool enable,
 170				   struct drm_dp_mst_atomic_payload *target_payload,
 171				   struct dc_dp_mst_stream_allocation_table *table)
 172{
 173	struct dc_dp_mst_stream_allocation_table new_table = { 0 };
 174	struct dc_dp_mst_stream_allocation *sa;
 175	struct link_mst_stream_allocation_table copy_of_link_table =
 176										link->mst_stream_alloc_table;
 177
 178	int i;
 179	int current_hw_table_stream_cnt = copy_of_link_table.stream_count;
 180	struct link_mst_stream_allocation *dc_alloc;
 181
 182	/* TODO: refactor to set link->mst_stream_alloc_table directly if possible.*/
 183	if (enable) {
 184		dc_alloc =
 185		&copy_of_link_table.stream_allocations[current_hw_table_stream_cnt];
 186		dc_alloc->vcp_id = target_payload->vcpi;
 187		dc_alloc->slot_count = target_payload->time_slots;
 188	} else {
 189		for (i = 0; i < copy_of_link_table.stream_count; i++) {
 190			dc_alloc =
 191			&copy_of_link_table.stream_allocations[i];
 192
 193			if (dc_alloc->vcp_id == target_payload->vcpi) {
 194				dc_alloc->vcp_id = 0;
 195				dc_alloc->slot_count = 0;
 196				break;
 197			}
 198		}
 199		ASSERT(i != copy_of_link_table.stream_count);
 200	}
 201
 202	/* Fill payload info*/
 203	for (i = 0; i < MAX_CONTROLLER_NUM; i++) {
 204		dc_alloc =
 205			&copy_of_link_table.stream_allocations[i];
 206		if (dc_alloc->vcp_id > 0 && dc_alloc->slot_count > 0) {
 207			sa = &new_table.stream_allocations[new_table.stream_count];
 208			sa->slot_count = dc_alloc->slot_count;
 209			sa->vcp_id = dc_alloc->vcp_id;
 210			new_table.stream_count++;
 
 
 211		}
 212	}
 213
 214	/* Overwrite the old table */
 215	*table = new_table;
 216}
 217
 218void dm_helpers_dp_update_branch_info(
 219	struct dc_context *ctx,
 220	const struct dc_link *link)
 221{}
 222
 223static void dm_helpers_construct_old_payload(
 224			struct drm_dp_mst_topology_mgr *mgr,
 225			struct drm_dp_mst_topology_state *mst_state,
 226			struct drm_dp_mst_atomic_payload *new_payload,
 227			struct drm_dp_mst_atomic_payload *old_payload)
 228{
 229	struct drm_dp_mst_atomic_payload *pos;
 230	int pbn_per_slot = dfixed_trunc(mst_state->pbn_div);
 231	u8 next_payload_vc_start = mgr->next_start_slot;
 232	u8 payload_vc_start = new_payload->vc_start_slot;
 233	u8 allocated_time_slots;
 234
 235	*old_payload = *new_payload;
 236
 237	/* Set correct time_slots/PBN of old payload.
 238	 * other fields (delete & dsc_enabled) in
 239	 * struct drm_dp_mst_atomic_payload are don't care fields
 240	 * while calling drm_dp_remove_payload_part2()
 241	 */
 242	list_for_each_entry(pos, &mst_state->payloads, next) {
 243		if (pos != new_payload &&
 244		    pos->vc_start_slot > payload_vc_start &&
 245		    pos->vc_start_slot < next_payload_vc_start)
 246			next_payload_vc_start = pos->vc_start_slot;
 247	}
 248
 249	allocated_time_slots = next_payload_vc_start - payload_vc_start;
 250
 251	old_payload->time_slots = allocated_time_slots;
 252	old_payload->pbn = allocated_time_slots * pbn_per_slot;
 253}
 254
 255/*
 256 * Writes payload allocation table in immediate downstream device.
 257 */
 258bool dm_helpers_dp_mst_write_payload_allocation_table(
 259		struct dc_context *ctx,
 260		const struct dc_stream_state *stream,
 261		struct dc_dp_mst_stream_allocation_table *proposed_table,
 262		bool enable)
 263{
 264	struct amdgpu_dm_connector *aconnector;
 265	struct drm_dp_mst_topology_state *mst_state;
 266	struct drm_dp_mst_atomic_payload *target_payload, *new_payload, old_payload;
 267	struct drm_dp_mst_topology_mgr *mst_mgr;
 
 
 
 
 
 
 268
 269	aconnector = (struct amdgpu_dm_connector *)stream->dm_stream_context;
 270	/* Accessing the connector state is required for vcpi_slots allocation
 271	 * and directly relies on behaviour in commit check
 272	 * that blocks before commit guaranteeing that the state
 273	 * is not gonna be swapped while still in use in commit tail
 274	 */
 275
 276	if (!aconnector || !aconnector->mst_root)
 
 
 
 
 
 277		return false;
 278
 279	mst_mgr = &aconnector->mst_root->mst_mgr;
 280	mst_state = to_drm_dp_mst_topology_state(mst_mgr->base.state);
 281	new_payload = drm_atomic_get_mst_payload_state(mst_state, aconnector->mst_output_port);
 282
 283	if (enable) {
 284		target_payload = new_payload;
 285
 286		/* It's OK for this to fail */
 287		drm_dp_add_payload_part1(mst_mgr, mst_state, new_payload);
 288	} else {
 289		/* construct old payload by VCPI*/
 290		dm_helpers_construct_old_payload(mst_mgr, mst_state,
 291						 new_payload, &old_payload);
 292		target_payload = &old_payload;
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 293
 294		drm_dp_remove_payload_part1(mst_mgr, mst_state, new_payload);
 
 
 
 
 295	}
 296
 
 
 297	/* mst_mgr->->payloads are VC payload notify MST branch using DPCD or
 298	 * AUX message. The sequence is slot 1-63 allocated sequence for each
 299	 * stream. AMD ASIC stream slot allocation should follow the same
 300	 * sequence. copy DRM MST allocation to dc
 301	 */
 302	fill_dc_mst_payload_table_from_drm(stream->link, enable, target_payload, proposed_table);
 
 
 
 303
 304	return true;
 305}
 306
 307/*
 308 * poll pending down reply
 309 */
 310void dm_helpers_dp_mst_poll_pending_down_reply(
 311	struct dc_context *ctx,
 312	const struct dc_link *link)
 313{}
 314
 315/*
 316 * Clear payload allocation table before enable MST DP link.
 317 */
 318void dm_helpers_dp_mst_clear_payload_allocation_table(
 319	struct dc_context *ctx,
 320	const struct dc_link *link)
 321{}
 322
 323/*
 324 * Polls for ACT (allocation change trigger) handled and sends
 325 * ALLOCATE_PAYLOAD message.
 326 */
 327enum act_return_status dm_helpers_dp_mst_poll_for_allocation_change_trigger(
 328		struct dc_context *ctx,
 329		const struct dc_stream_state *stream)
 330{
 331	struct amdgpu_dm_connector *aconnector;
 332	struct drm_dp_mst_topology_mgr *mst_mgr;
 333	int ret;
 334
 335	aconnector = (struct amdgpu_dm_connector *)stream->dm_stream_context;
 336
 337	if (!aconnector || !aconnector->mst_root)
 338		return ACT_FAILED;
 339
 340	mst_mgr = &aconnector->mst_root->mst_mgr;
 341
 342	if (!mst_mgr->mst_state)
 343		return ACT_FAILED;
 344
 345	ret = drm_dp_check_act_status(mst_mgr);
 346
 347	if (ret)
 348		return ACT_FAILED;
 349
 350	return ACT_SUCCESS;
 351}
 352
 353void dm_helpers_dp_mst_send_payload_allocation(
 354		struct dc_context *ctx,
 355		const struct dc_stream_state *stream)
 
 356{
 357	struct amdgpu_dm_connector *aconnector;
 358	struct drm_dp_mst_topology_state *mst_state;
 359	struct drm_dp_mst_topology_mgr *mst_mgr;
 360	struct drm_dp_mst_atomic_payload *new_payload;
 361	enum mst_progress_status set_flag = MST_ALLOCATE_NEW_PAYLOAD;
 362	enum mst_progress_status clr_flag = MST_CLEAR_ALLOCATED_PAYLOAD;
 363	int ret = 0;
 364
 365	aconnector = (struct amdgpu_dm_connector *)stream->dm_stream_context;
 366
 367	if (!aconnector || !aconnector->mst_root)
 368		return;
 369
 370	mst_mgr = &aconnector->mst_root->mst_mgr;
 371	mst_state = to_drm_dp_mst_topology_state(mst_mgr->base.state);
 372	new_payload = drm_atomic_get_mst_payload_state(mst_state, aconnector->mst_output_port);
 373
 374	ret = drm_dp_add_payload_part2(mst_mgr, new_payload);
 375
 376	if (ret) {
 377		amdgpu_dm_set_mst_status(&aconnector->mst_status,
 378			set_flag, false);
 379	} else {
 380		amdgpu_dm_set_mst_status(&aconnector->mst_status,
 381			set_flag, true);
 382		amdgpu_dm_set_mst_status(&aconnector->mst_status,
 383			clr_flag, false);
 384	}
 385}
 386
 387void dm_helpers_dp_mst_update_mst_mgr_for_deallocation(
 388		struct dc_context *ctx,
 389		const struct dc_stream_state *stream)
 390{
 391	struct amdgpu_dm_connector *aconnector;
 392	struct drm_dp_mst_topology_state *mst_state;
 393	struct drm_dp_mst_topology_mgr *mst_mgr;
 394	struct drm_dp_mst_atomic_payload *new_payload, old_payload;
 395	enum mst_progress_status set_flag = MST_CLEAR_ALLOCATED_PAYLOAD;
 396	enum mst_progress_status clr_flag = MST_ALLOCATE_NEW_PAYLOAD;
 397
 398	aconnector = (struct amdgpu_dm_connector *)stream->dm_stream_context;
 
 399
 400	if (!aconnector || !aconnector->mst_root)
 401		return;
 
 
 402
 403	mst_mgr = &aconnector->mst_root->mst_mgr;
 404	mst_state = to_drm_dp_mst_topology_state(mst_mgr->base.state);
 405	new_payload = drm_atomic_get_mst_payload_state(mst_state, aconnector->mst_output_port);
 406	dm_helpers_construct_old_payload(mst_mgr, mst_state,
 407					 new_payload, &old_payload);
 408
 409	drm_dp_remove_payload_part2(mst_mgr, mst_state, &old_payload, new_payload);
 410
 411	amdgpu_dm_set_mst_status(&aconnector->mst_status, set_flag, true);
 412	amdgpu_dm_set_mst_status(&aconnector->mst_status, clr_flag, false);
 413 }
 414
 415void dm_dtn_log_begin(struct dc_context *ctx,
 416	struct dc_log_buffer_ctx *log_ctx)
 417{
 418	static const char msg[] = "[dtn begin]\n";
 419
 420	if (!log_ctx) {
 421		pr_info("%s", msg);
 422		return;
 423	}
 424
 425	dm_dtn_log_append_v(ctx, log_ctx, "%s", msg);
 426}
 427
 428__printf(3, 4)
 429void dm_dtn_log_append_v(struct dc_context *ctx,
 430	struct dc_log_buffer_ctx *log_ctx,
 431	const char *msg, ...)
 432{
 433	va_list args;
 434	size_t total;
 435	int n;
 436
 437	if (!log_ctx) {
 438		/* No context, redirect to dmesg. */
 439		struct va_format vaf;
 440
 441		vaf.fmt = msg;
 442		vaf.va = &args;
 443
 444		va_start(args, msg);
 445		pr_info("%pV", &vaf);
 446		va_end(args);
 447
 448		return;
 449	}
 450
 451	/* Measure the output. */
 452	va_start(args, msg);
 453	n = vsnprintf(NULL, 0, msg, args);
 454	va_end(args);
 455
 456	if (n <= 0)
 457		return;
 458
 459	/* Reallocate the string buffer as needed. */
 460	total = log_ctx->pos + n + 1;
 461
 462	if (total > log_ctx->size) {
 463		char *buf = kvcalloc(total, sizeof(char), GFP_KERNEL);
 464
 465		if (buf) {
 466			memcpy(buf, log_ctx->buf, log_ctx->pos);
 467			kfree(log_ctx->buf);
 468
 469			log_ctx->buf = buf;
 470			log_ctx->size = total;
 471		}
 472	}
 473
 474	if (!log_ctx->buf)
 475		return;
 476
 477	/* Write the formatted string to the log buffer. */
 478	va_start(args, msg);
 479	n = vscnprintf(
 480		log_ctx->buf + log_ctx->pos,
 481		log_ctx->size - log_ctx->pos,
 482		msg,
 483		args);
 484	va_end(args);
 485
 486	if (n > 0)
 487		log_ctx->pos += n;
 488}
 489
 490void dm_dtn_log_end(struct dc_context *ctx,
 491	struct dc_log_buffer_ctx *log_ctx)
 492{
 493	static const char msg[] = "[dtn end]\n";
 494
 495	if (!log_ctx) {
 496		pr_info("%s", msg);
 497		return;
 498	}
 499
 500	dm_dtn_log_append_v(ctx, log_ctx, "%s", msg);
 501}
 502
 503bool dm_helpers_dp_mst_start_top_mgr(
 504		struct dc_context *ctx,
 505		const struct dc_link *link,
 506		bool boot)
 507{
 508	struct amdgpu_dm_connector *aconnector = link->priv;
 509	int ret;
 510
 511	if (!aconnector) {
 512		DRM_ERROR("Failed to find connector for link!");
 513		return false;
 514	}
 515
 516	if (boot) {
 517		DRM_INFO("DM_MST: Differing MST start on aconnector: %p [id: %d]\n",
 518					aconnector, aconnector->base.base.id);
 519		return true;
 520	}
 521
 522	DRM_INFO("DM_MST: starting TM on aconnector: %p [id: %d]\n",
 523			aconnector, aconnector->base.base.id);
 524
 525	ret = drm_dp_mst_topology_mgr_set_mst(&aconnector->mst_mgr, true);
 526	if (ret < 0) {
 527		DRM_ERROR("DM_MST: Failed to set the device into MST mode!");
 528		return false;
 529	}
 530
 531	DRM_INFO("DM_MST: DP%x, %d-lane link detected\n", aconnector->mst_mgr.dpcd[0],
 532		aconnector->mst_mgr.dpcd[2] & DP_MAX_LANE_COUNT_MASK);
 533
 534	return true;
 535}
 536
 537bool dm_helpers_dp_mst_stop_top_mgr(
 538		struct dc_context *ctx,
 539		struct dc_link *link)
 540{
 541	struct amdgpu_dm_connector *aconnector = link->priv;
 542
 543	if (!aconnector) {
 544		DRM_ERROR("Failed to find connector for link!");
 545		return false;
 546	}
 547
 548	DRM_INFO("DM_MST: stopping TM on aconnector: %p [id: %d]\n",
 549			aconnector, aconnector->base.base.id);
 550
 551	if (aconnector->mst_mgr.mst_state == true) {
 552		drm_dp_mst_topology_mgr_set_mst(&aconnector->mst_mgr, false);
 553		link->cur_link_settings.lane_count = 0;
 554	}
 555
 556	return false;
 557}
 558
 559bool dm_helpers_dp_read_dpcd(
 560		struct dc_context *ctx,
 561		const struct dc_link *link,
 562		uint32_t address,
 563		uint8_t *data,
 564		uint32_t size)
 565{
 566
 567	struct amdgpu_dm_connector *aconnector = link->priv;
 568
 569	if (!aconnector)
 
 570		return false;
 
 571
 572	return drm_dp_dpcd_read(&aconnector->dm_dp_aux.aux, address, data,
 573				size) == size;
 574}
 575
 576bool dm_helpers_dp_write_dpcd(
 577		struct dc_context *ctx,
 578		const struct dc_link *link,
 579		uint32_t address,
 580		const uint8_t *data,
 581		uint32_t size)
 582{
 583	struct amdgpu_dm_connector *aconnector = link->priv;
 584
 585	if (!aconnector)
 
 586		return false;
 
 587
 588	return drm_dp_dpcd_write(&aconnector->dm_dp_aux.aux,
 589			address, (uint8_t *)data, size) > 0;
 590}
 591
 592bool dm_helpers_submit_i2c(
 593		struct dc_context *ctx,
 594		const struct dc_link *link,
 595		struct i2c_command *cmd)
 596{
 597	struct amdgpu_dm_connector *aconnector = link->priv;
 598	struct i2c_msg *msgs;
 599	int i = 0;
 600	int num = cmd->number_of_payloads;
 601	bool result;
 602
 603	if (!aconnector) {
 604		DRM_ERROR("Failed to find connector for link!");
 605		return false;
 606	}
 607
 608	msgs = kcalloc(num, sizeof(struct i2c_msg), GFP_KERNEL);
 609
 610	if (!msgs)
 611		return false;
 612
 613	for (i = 0; i < num; i++) {
 614		msgs[i].flags = cmd->payloads[i].write ? 0 : I2C_M_RD;
 615		msgs[i].addr = cmd->payloads[i].address;
 616		msgs[i].len = cmd->payloads[i].length;
 617		msgs[i].buf = cmd->payloads[i].data;
 618	}
 619
 620	result = i2c_transfer(&aconnector->i2c->base, msgs, num) == num;
 621
 622	kfree(msgs);
 623
 624	return result;
 625}
 626
 627static bool execute_synaptics_rc_command(struct drm_dp_aux *aux,
 628		bool is_write_cmd,
 629		unsigned char cmd,
 630		unsigned int length,
 631		unsigned int offset,
 632		unsigned char *data)
 633{
 634	bool success = false;
 635	unsigned char rc_data[16] = {0};
 636	unsigned char rc_offset[4] = {0};
 637	unsigned char rc_length[2] = {0};
 638	unsigned char rc_cmd = 0;
 639	unsigned char rc_result = 0xFF;
 640	unsigned char i = 0;
 641	int ret;
 642
 643	if (is_write_cmd) {
 644		// write rc data
 645		memmove(rc_data, data, length);
 646		ret = drm_dp_dpcd_write(aux, SYNAPTICS_RC_DATA, rc_data, sizeof(rc_data));
 647		if (ret < 0)
 648			goto err;
 649	}
 650
 651	// write rc offset
 652	rc_offset[0] = (unsigned char) offset & 0xFF;
 653	rc_offset[1] = (unsigned char) (offset >> 8) & 0xFF;
 654	rc_offset[2] = (unsigned char) (offset >> 16) & 0xFF;
 655	rc_offset[3] = (unsigned char) (offset >> 24) & 0xFF;
 656	ret = drm_dp_dpcd_write(aux, SYNAPTICS_RC_OFFSET, rc_offset, sizeof(rc_offset));
 657	if (ret < 0)
 658		goto err;
 659
 660	// write rc length
 661	rc_length[0] = (unsigned char) length & 0xFF;
 662	rc_length[1] = (unsigned char) (length >> 8) & 0xFF;
 663	ret = drm_dp_dpcd_write(aux, SYNAPTICS_RC_LENGTH, rc_length, sizeof(rc_length));
 664	if (ret < 0)
 665		goto err;
 666
 667	// write rc cmd
 668	rc_cmd = cmd | 0x80;
 669	ret = drm_dp_dpcd_write(aux, SYNAPTICS_RC_COMMAND, &rc_cmd, sizeof(rc_cmd));
 670	if (ret < 0)
 671		goto err;
 672
 673	// poll until active is 0
 674	for (i = 0; i < 10; i++) {
 675		drm_dp_dpcd_read(aux, SYNAPTICS_RC_COMMAND, &rc_cmd, sizeof(rc_cmd));
 676		if (rc_cmd == cmd)
 677			// active is 0
 678			break;
 679		msleep(10);
 680	}
 681
 682	// read rc result
 683	drm_dp_dpcd_read(aux, SYNAPTICS_RC_RESULT, &rc_result, sizeof(rc_result));
 684	success = (rc_result == 0);
 685
 686	if (success && !is_write_cmd) {
 687		// read rc data
 688		drm_dp_dpcd_read(aux, SYNAPTICS_RC_DATA, data, length);
 689	}
 690
 691	drm_dbg_dp(aux->drm_dev, "success = %d\n", success);
 692
 693	return success;
 694
 695err:
 696	DRM_ERROR("%s: write cmd ..., err = %d\n",  __func__, ret);
 697	return false;
 698}
 699
 700static void apply_synaptics_fifo_reset_wa(struct drm_dp_aux *aux)
 701{
 702	unsigned char data[16] = {0};
 703
 704	drm_dbg_dp(aux->drm_dev, "Start\n");
 705
 706	// Step 2
 707	data[0] = 'P';
 708	data[1] = 'R';
 709	data[2] = 'I';
 710	data[3] = 'U';
 711	data[4] = 'S';
 712
 713	if (!execute_synaptics_rc_command(aux, true, 0x01, 5, 0, data))
 714		return;
 715
 716	// Step 3 and 4
 717	if (!execute_synaptics_rc_command(aux, false, 0x31, 4, 0x220998, data))
 718		return;
 719
 720	data[0] &= (~(1 << 1)); // set bit 1 to 0
 721	if (!execute_synaptics_rc_command(aux, true, 0x21, 4, 0x220998, data))
 722		return;
 723
 724	if (!execute_synaptics_rc_command(aux, false, 0x31, 4, 0x220D98, data))
 725		return;
 726
 727	data[0] &= (~(1 << 1)); // set bit 1 to 0
 728	if (!execute_synaptics_rc_command(aux, true, 0x21, 4, 0x220D98, data))
 729		return;
 730
 731	if (!execute_synaptics_rc_command(aux, false, 0x31, 4, 0x221198, data))
 732		return;
 733
 734	data[0] &= (~(1 << 1)); // set bit 1 to 0
 735	if (!execute_synaptics_rc_command(aux, true, 0x21, 4, 0x221198, data))
 736		return;
 737
 738	// Step 3 and 5
 739	if (!execute_synaptics_rc_command(aux, false, 0x31, 4, 0x220998, data))
 740		return;
 741
 742	data[0] |= (1 << 1); // set bit 1 to 1
 743	if (!execute_synaptics_rc_command(aux, true, 0x21, 4, 0x220998, data))
 744		return;
 745
 746	if (!execute_synaptics_rc_command(aux, false, 0x31, 4, 0x220D98, data))
 747		return;
 748
 749	data[0] |= (1 << 1); // set bit 1 to 1
 750
 751	if (!execute_synaptics_rc_command(aux, false, 0x31, 4, 0x221198, data))
 752		return;
 753
 754	data[0] |= (1 << 1); // set bit 1 to 1
 755	if (!execute_synaptics_rc_command(aux, true, 0x21, 4, 0x221198, data))
 756		return;
 757
 758	// Step 6
 759	if (!execute_synaptics_rc_command(aux, true, 0x02, 0, 0, NULL))
 760		return;
 761
 762	drm_dbg_dp(aux->drm_dev, "Done\n");
 763}
 764
 765/* MST Dock */
 766static const uint8_t SYNAPTICS_DEVICE_ID[] = "SYNA";
 767
 768static uint8_t write_dsc_enable_synaptics_non_virtual_dpcd_mst(
 769		struct drm_dp_aux *aux,
 770		const struct dc_stream_state *stream,
 771		bool enable)
 772{
 773	uint8_t ret = 0;
 774
 775	drm_dbg_dp(aux->drm_dev,
 776		   "MST_DSC Configure DSC to non-virtual dpcd synaptics\n");
 777
 778	if (enable) {
 779		/* When DSC is enabled on previous boot and reboot with the hub,
 780		 * there is a chance that Synaptics hub gets stuck during reboot sequence.
 781		 * Applying a workaround to reset Synaptics SDP fifo before enabling the first stream
 782		 */
 783		if (!stream->link->link_status.link_active &&
 784			memcmp(stream->link->dpcd_caps.branch_dev_name,
 785				(int8_t *)SYNAPTICS_DEVICE_ID, 4) == 0)
 786			apply_synaptics_fifo_reset_wa(aux);
 787
 788		ret = drm_dp_dpcd_write(aux, DP_DSC_ENABLE, &enable, 1);
 789		DRM_INFO("MST_DSC Send DSC enable to synaptics\n");
 790
 791	} else {
 792		/* Synaptics hub not support virtual dpcd,
 793		 * external monitor occur garbage while disable DSC,
 794		 * Disable DSC only when entire link status turn to false,
 795		 */
 796		if (!stream->link->link_status.link_active) {
 797			ret = drm_dp_dpcd_write(aux, DP_DSC_ENABLE, &enable, 1);
 798			DRM_INFO("MST_DSC Send DSC disable to synaptics\n");
 799		}
 800	}
 801
 802	return ret;
 803}
 804
 805bool dm_helpers_dp_write_dsc_enable(
 806		struct dc_context *ctx,
 807		const struct dc_stream_state *stream,
 808		bool enable)
 
 809{
 810	static const uint8_t DSC_DISABLE;
 811	static const uint8_t DSC_DECODING = 0x01;
 812	static const uint8_t DSC_PASSTHROUGH = 0x02;
 813
 814	struct amdgpu_dm_connector *aconnector =
 815		(struct amdgpu_dm_connector *)stream->dm_stream_context;
 816	struct drm_device *dev = aconnector->base.dev;
 817	struct drm_dp_mst_port *port;
 818	uint8_t enable_dsc = enable ? DSC_DECODING : DSC_DISABLE;
 819	uint8_t enable_passthrough = enable ? DSC_PASSTHROUGH : DSC_DISABLE;
 820	uint8_t ret = 0;
 821
 822	if (stream->signal == SIGNAL_TYPE_DISPLAY_PORT_MST) {
 823		if (!aconnector->dsc_aux)
 824			return false;
 825
 826		// apply w/a to synaptics
 827		if (needs_dsc_aux_workaround(aconnector->dc_link) &&
 828		    (aconnector->mst_downstream_port_present.byte & 0x7) != 0x3)
 829			return write_dsc_enable_synaptics_non_virtual_dpcd_mst(
 830				aconnector->dsc_aux, stream, enable_dsc);
 831
 832		port = aconnector->mst_output_port;
 833
 834		if (enable) {
 835			if (port->passthrough_aux) {
 836				ret = drm_dp_dpcd_write(port->passthrough_aux,
 837							DP_DSC_ENABLE,
 838							&enable_passthrough, 1);
 839				drm_dbg_dp(dev,
 840					   "MST_DSC Sent DSC pass-through enable to virtual dpcd port, ret = %u\n",
 841					   ret);
 842			}
 843
 844			ret = drm_dp_dpcd_write(aconnector->dsc_aux,
 845						DP_DSC_ENABLE, &enable_dsc, 1);
 846			drm_dbg_dp(dev,
 847				   "MST_DSC Sent DSC decoding enable to %s port, ret = %u\n",
 848				   (port->passthrough_aux) ? "remote RX" :
 849				   "virtual dpcd",
 850				   ret);
 851		} else {
 852			ret = drm_dp_dpcd_write(aconnector->dsc_aux,
 853						DP_DSC_ENABLE, &enable_dsc, 1);
 854			drm_dbg_dp(dev,
 855				   "MST_DSC Sent DSC decoding disable to %s port, ret = %u\n",
 856				   (port->passthrough_aux) ? "remote RX" :
 857				   "virtual dpcd",
 858				   ret);
 859
 860			if (port->passthrough_aux) {
 861				ret = drm_dp_dpcd_write(port->passthrough_aux,
 862							DP_DSC_ENABLE,
 863							&enable_passthrough, 1);
 864				drm_dbg_dp(dev,
 865					   "MST_DSC Sent DSC pass-through disable to virtual dpcd port, ret = %u\n",
 866					   ret);
 867			}
 868		}
 869	}
 870
 871	if (stream->signal == SIGNAL_TYPE_DISPLAY_PORT || stream->signal == SIGNAL_TYPE_EDP) {
 872		if (stream->sink->link->dpcd_caps.dongle_type == DISPLAY_DONGLE_NONE) {
 873			ret = dm_helpers_dp_write_dpcd(ctx, stream->link, DP_DSC_ENABLE, &enable_dsc, 1);
 874			drm_dbg_dp(dev,
 875				   "SST_DSC Send DSC %s to SST RX\n",
 876				   enable_dsc ? "enable" : "disable");
 877		} else if (stream->sink->link->dpcd_caps.dongle_type == DISPLAY_DONGLE_DP_HDMI_CONVERTER) {
 878			ret = dm_helpers_dp_write_dpcd(ctx, stream->link, DP_DSC_ENABLE, &enable_dsc, 1);
 879			drm_dbg_dp(dev,
 880				   "SST_DSC Send DSC %s to DP-HDMI PCON\n",
 881				   enable_dsc ? "enable" : "disable");
 882		}
 883	}
 884
 885	return ret;
 886}
 
 887
 888bool dm_helpers_is_dp_sink_present(struct dc_link *link)
 889{
 890	bool dp_sink_present;
 891	struct amdgpu_dm_connector *aconnector = link->priv;
 892
 893	if (!aconnector) {
 894		BUG_ON("Failed to find connector for link!");
 895		return true;
 896	}
 897
 898	mutex_lock(&aconnector->dm_dp_aux.aux.hw_mutex);
 899	dp_sink_present = dc_link_is_dp_sink_present(link);
 900	mutex_unlock(&aconnector->dm_dp_aux.aux.hw_mutex);
 901	return dp_sink_present;
 902}
 903
 904static int
 905dm_helpers_probe_acpi_edid(void *data, u8 *buf, unsigned int block, size_t len)
 906{
 907	struct drm_connector *connector = data;
 908	struct acpi_device *acpidev = ACPI_COMPANION(connector->dev->dev);
 909	unsigned char start = block * EDID_LENGTH;
 910	struct edid *edid;
 911	int r;
 912
 913	if (!acpidev)
 914		return -ENODEV;
 915
 916	/* fetch the entire edid from BIOS */
 917	r = acpi_video_get_edid(acpidev, ACPI_VIDEO_DISPLAY_LCD, -1, (void *)&edid);
 918	if (r < 0) {
 919		drm_dbg(connector->dev, "Failed to get EDID from ACPI: %d\n", r);
 920		return r;
 921	}
 922	if (len > r || start > r || start + len > r) {
 923		r = -EINVAL;
 924		goto cleanup;
 925	}
 926
 927	/* sanity check */
 928	if (edid->revision < 4 || !(edid->input & DRM_EDID_INPUT_DIGITAL) ||
 929	    (edid->input & DRM_EDID_DIGITAL_TYPE_MASK) == DRM_EDID_DIGITAL_TYPE_UNDEF) {
 930		r = -EINVAL;
 931		goto cleanup;
 932	}
 933
 934	memcpy(buf, (void *)edid + start, len);
 935	r = 0;
 936
 937cleanup:
 938	kfree(edid);
 939
 940	return r;
 941}
 942
 943static const struct drm_edid *
 944dm_helpers_read_acpi_edid(struct amdgpu_dm_connector *aconnector)
 945{
 946	struct drm_connector *connector = &aconnector->base;
 947
 948	if (amdgpu_dc_debug_mask & DC_DISABLE_ACPI_EDID)
 949		return NULL;
 950
 951	switch (connector->connector_type) {
 952	case DRM_MODE_CONNECTOR_LVDS:
 953	case DRM_MODE_CONNECTOR_eDP:
 954		break;
 955	default:
 956		return NULL;
 957	}
 958
 959	if (connector->force == DRM_FORCE_OFF)
 960		return NULL;
 961
 962	return drm_edid_read_custom(connector, dm_helpers_probe_acpi_edid, connector);
 963}
 964
 965enum dc_edid_status dm_helpers_read_local_edid(
 966		struct dc_context *ctx,
 967		struct dc_link *link,
 968		struct dc_sink *sink)
 969{
 970	struct amdgpu_dm_connector *aconnector = link->priv;
 971	struct drm_connector *connector = &aconnector->base;
 972	struct i2c_adapter *ddc;
 973	int retry = 3;
 974	enum dc_edid_status edid_status;
 975	const struct drm_edid *drm_edid;
 976	const struct edid *edid;
 977
 978	if (link->aux_mode)
 979		ddc = &aconnector->dm_dp_aux.aux.ddc;
 980	else
 981		ddc = &aconnector->i2c->base;
 982
 983	/* some dongles read edid incorrectly the first time,
 984	 * do check sum and retry to make sure read correct edid.
 985	 */
 986	do {
 987		drm_edid = dm_helpers_read_acpi_edid(aconnector);
 988		if (drm_edid)
 989			drm_info(connector->dev, "Using ACPI provided EDID for %s\n", connector->name);
 990		else
 991			drm_edid = drm_edid_read_ddc(connector, ddc);
 992		drm_edid_connector_update(connector, drm_edid);
 993
 994		/* DP Compliance Test 4.2.2.6 */
 995		if (link->aux_mode && connector->edid_corrupt)
 996			drm_dp_send_real_edid_checksum(&aconnector->dm_dp_aux.aux, connector->real_edid_checksum);
 997
 998		if (!drm_edid && connector->edid_corrupt) {
 999			connector->edid_corrupt = false;
1000			return EDID_BAD_CHECKSUM;
1001		}
1002
1003		if (!drm_edid)
 
 
1004			return EDID_NO_RESPONSE;
1005
1006		edid = drm_edid_raw(drm_edid); // FIXME: Get rid of drm_edid_raw()
1007		sink->dc_edid.length = EDID_LENGTH * (edid->extensions + 1);
1008		memmove(sink->dc_edid.raw_edid, (uint8_t *)edid, sink->dc_edid.length);
1009
1010		/* We don't need the original edid anymore */
1011		drm_edid_free(drm_edid);
1012
1013		edid_status = dm_helpers_parse_edid_caps(
1014						link,
1015						&sink->dc_edid,
1016						&sink->edid_caps);
1017
1018	} while (edid_status == EDID_BAD_CHECKSUM && --retry > 0);
1019
1020	if (edid_status != EDID_OK)
1021		DRM_ERROR("EDID err: %d, on connector: %s",
1022				edid_status,
1023				aconnector->base.name);
1024	if (link->aux_mode) {
1025		union test_request test_request = {0};
1026		union test_response test_response = {0};
1027
1028		dm_helpers_dp_read_dpcd(ctx,
1029					link,
1030					DP_TEST_REQUEST,
1031					&test_request.raw,
1032					sizeof(union test_request));
1033
1034		if (!test_request.bits.EDID_READ)
1035			return edid_status;
1036
1037		test_response.bits.EDID_CHECKSUM_WRITE = 1;
1038
1039		dm_helpers_dp_write_dpcd(ctx,
1040					link,
1041					DP_TEST_EDID_CHECKSUM,
1042					&sink->dc_edid.raw_edid[sink->dc_edid.length-1],
1043					1);
1044
1045		dm_helpers_dp_write_dpcd(ctx,
1046					link,
1047					DP_TEST_RESPONSE,
1048					&test_response.raw,
1049					sizeof(test_response));
1050
1051	}
1052
1053	return edid_status;
1054}
1055int dm_helper_dmub_aux_transfer_sync(
1056		struct dc_context *ctx,
1057		const struct dc_link *link,
1058		struct aux_payload *payload,
1059		enum aux_return_code_type *operation_result)
1060{
1061	if (!link->hpd_status) {
1062		*operation_result = AUX_RET_ERROR_HPD_DISCON;
1063		return -1;
1064	}
1065
1066	return amdgpu_dm_process_dmub_aux_transfer_sync(ctx, link->link_index, payload,
1067			operation_result);
1068}
1069
1070int dm_helpers_dmub_set_config_sync(struct dc_context *ctx,
1071		const struct dc_link *link,
1072		struct set_config_cmd_payload *payload,
1073		enum set_config_status *operation_result)
1074{
1075	return amdgpu_dm_process_dmub_set_config_sync(ctx, link->link_index, payload,
1076			operation_result);
1077}
1078
1079void dm_set_dcn_clocks(struct dc_context *ctx, struct dc_clocks *clks)
1080{
1081	/* TODO: something */
1082}
1083
1084void dm_helpers_smu_timeout(struct dc_context *ctx, unsigned int msg_id, unsigned int param, unsigned int timeout_us)
1085{
1086	// TODO:
1087	//amdgpu_device_gpu_recover(dc_context->driver-context, NULL);
1088}
1089
1090void dm_helpers_init_panel_settings(
1091	struct dc_context *ctx,
1092	struct dc_panel_config *panel_config,
1093	struct dc_sink *sink)
1094{
1095	// Extra Panel Power Sequence
1096	panel_config->pps.extra_t3_ms = sink->edid_caps.panel_patch.extra_t3_ms;
1097	panel_config->pps.extra_t7_ms = sink->edid_caps.panel_patch.extra_t7_ms;
1098	panel_config->pps.extra_delay_backlight_off = sink->edid_caps.panel_patch.extra_delay_backlight_off;
1099	panel_config->pps.extra_post_t7_ms = 0;
1100	panel_config->pps.extra_pre_t11_ms = 0;
1101	panel_config->pps.extra_t12_ms = sink->edid_caps.panel_patch.extra_t12_ms;
1102	panel_config->pps.extra_post_OUI_ms = 0;
1103	// Feature DSC
1104	panel_config->dsc.disable_dsc_edp = false;
1105	panel_config->dsc.force_dsc_edp_policy = 0;
1106}
1107
1108void dm_helpers_override_panel_settings(
1109	struct dc_context *ctx,
1110	struct dc_panel_config *panel_config)
1111{
1112	// Feature DSC
1113	if (amdgpu_dc_debug_mask & DC_DISABLE_DSC)
1114		panel_config->dsc.disable_dsc_edp = true;
1115}
1116
1117void *dm_helpers_allocate_gpu_mem(
1118		struct dc_context *ctx,
1119		enum dc_gpu_mem_alloc_type type,
1120		size_t size,
1121		long long *addr)
1122{
1123	struct amdgpu_device *adev = ctx->driver_context;
1124
1125	return dm_allocate_gpu_mem(adev, type, size, addr);
1126}
1127
1128void dm_helpers_free_gpu_mem(
1129		struct dc_context *ctx,
1130		enum dc_gpu_mem_alloc_type type,
1131		void *pvMem)
1132{
1133	struct amdgpu_device *adev = ctx->driver_context;
1134
1135	dm_free_gpu_mem(adev, type, pvMem);
1136}
1137
1138bool dm_helpers_dmub_outbox_interrupt_control(struct dc_context *ctx, bool enable)
1139{
1140	enum dc_irq_source irq_source;
1141	bool ret;
1142
1143	irq_source = DC_IRQ_SOURCE_DMCUB_OUTBOX;
1144
1145	ret = dc_interrupt_set(ctx->dc, irq_source, enable);
1146
1147	DRM_DEBUG_DRIVER("Dmub trace irq %sabling: r=%d\n",
1148			 enable ? "en" : "dis", ret);
1149	return ret;
1150}
1151
1152void dm_helpers_mst_enable_stream_features(const struct dc_stream_state *stream)
1153{
1154	/* TODO: virtual DPCD */
1155	struct dc_link *link = stream->link;
1156	union down_spread_ctrl old_downspread;
1157	union down_spread_ctrl new_downspread;
1158
1159	if (link->aux_access_disabled)
1160		return;
1161
1162	if (!dm_helpers_dp_read_dpcd(link->ctx, link, DP_DOWNSPREAD_CTRL,
1163				     &old_downspread.raw,
1164				     sizeof(old_downspread)))
1165		return;
1166
1167	new_downspread.raw = old_downspread.raw;
1168	new_downspread.bits.IGNORE_MSA_TIMING_PARAM =
1169		(stream->ignore_msa_timing_param) ? 1 : 0;
1170
1171	if (new_downspread.raw != old_downspread.raw)
1172		dm_helpers_dp_write_dpcd(link->ctx, link, DP_DOWNSPREAD_CTRL,
1173					 &new_downspread.raw,
1174					 sizeof(new_downspread));
1175}
1176
1177bool dm_helpers_dp_handle_test_pattern_request(
1178		struct dc_context *ctx,
1179		const struct dc_link *link,
1180		union link_test_pattern dpcd_test_pattern,
1181		union test_misc dpcd_test_params)
1182{
1183	enum dp_test_pattern test_pattern;
1184	enum dp_test_pattern_color_space test_pattern_color_space =
1185			DP_TEST_PATTERN_COLOR_SPACE_UNDEFINED;
1186	enum dc_color_depth requestColorDepth = COLOR_DEPTH_UNDEFINED;
1187	enum dc_pixel_encoding requestPixelEncoding = PIXEL_ENCODING_UNDEFINED;
1188	struct pipe_ctx *pipes = link->dc->current_state->res_ctx.pipe_ctx;
1189	struct pipe_ctx *pipe_ctx = NULL;
1190	struct amdgpu_dm_connector *aconnector = link->priv;
1191	struct drm_device *dev = aconnector->base.dev;
1192	struct dc_state *dc_state = ctx->dc->current_state;
1193	struct clk_mgr *clk_mgr = ctx->dc->clk_mgr;
1194	int i;
1195
1196	for (i = 0; i < MAX_PIPES; i++) {
1197		if (pipes[i].stream == NULL)
1198			continue;
1199
1200		if (pipes[i].stream->link == link && !pipes[i].top_pipe &&
1201			!pipes[i].prev_odm_pipe) {
1202			pipe_ctx = &pipes[i];
1203			break;
1204		}
1205	}
1206
1207	if (pipe_ctx == NULL)
1208		return false;
1209
1210	switch (dpcd_test_pattern.bits.PATTERN) {
1211	case LINK_TEST_PATTERN_COLOR_RAMP:
1212		test_pattern = DP_TEST_PATTERN_COLOR_RAMP;
1213	break;
1214	case LINK_TEST_PATTERN_VERTICAL_BARS:
1215		test_pattern = DP_TEST_PATTERN_VERTICAL_BARS;
1216	break; /* black and white */
1217	case LINK_TEST_PATTERN_COLOR_SQUARES:
1218		test_pattern = (dpcd_test_params.bits.DYN_RANGE ==
1219				TEST_DYN_RANGE_VESA ?
1220				DP_TEST_PATTERN_COLOR_SQUARES :
1221				DP_TEST_PATTERN_COLOR_SQUARES_CEA);
1222	break;
1223	default:
1224		test_pattern = DP_TEST_PATTERN_VIDEO_MODE;
1225	break;
1226	}
1227
1228	if (dpcd_test_params.bits.CLR_FORMAT == 0)
1229		test_pattern_color_space = DP_TEST_PATTERN_COLOR_SPACE_RGB;
1230	else
1231		test_pattern_color_space = dpcd_test_params.bits.YCBCR_COEFS ?
1232				DP_TEST_PATTERN_COLOR_SPACE_YCBCR709 :
1233				DP_TEST_PATTERN_COLOR_SPACE_YCBCR601;
1234
1235	switch (dpcd_test_params.bits.BPC) {
1236	case 0: // 6 bits
1237		requestColorDepth = COLOR_DEPTH_666;
1238		break;
1239	case 1: // 8 bits
1240		requestColorDepth = COLOR_DEPTH_888;
1241		break;
1242	case 2: // 10 bits
1243		requestColorDepth = COLOR_DEPTH_101010;
1244		break;
1245	case 3: // 12 bits
1246		requestColorDepth = COLOR_DEPTH_121212;
1247		break;
1248	default:
1249		break;
1250	}
1251
1252	switch (dpcd_test_params.bits.CLR_FORMAT) {
1253	case 0:
1254		requestPixelEncoding = PIXEL_ENCODING_RGB;
1255		break;
1256	case 1:
1257		requestPixelEncoding = PIXEL_ENCODING_YCBCR422;
1258		break;
1259	case 2:
1260		requestPixelEncoding = PIXEL_ENCODING_YCBCR444;
1261		break;
1262	default:
1263		requestPixelEncoding = PIXEL_ENCODING_RGB;
1264		break;
1265	}
1266
1267	if ((requestColorDepth != COLOR_DEPTH_UNDEFINED
1268		&& pipe_ctx->stream->timing.display_color_depth != requestColorDepth)
1269		|| (requestPixelEncoding != PIXEL_ENCODING_UNDEFINED
1270		&& pipe_ctx->stream->timing.pixel_encoding != requestPixelEncoding)) {
1271		drm_dbg(dev,
1272			"original bpc %d pix encoding %d, changing to %d  %d\n",
1273			pipe_ctx->stream->timing.display_color_depth,
1274			pipe_ctx->stream->timing.pixel_encoding,
1275			requestColorDepth,
1276			requestPixelEncoding);
1277		pipe_ctx->stream->timing.display_color_depth = requestColorDepth;
1278		pipe_ctx->stream->timing.pixel_encoding = requestPixelEncoding;
1279
1280		dc_link_update_dsc_config(pipe_ctx);
1281
1282		aconnector->timing_changed = true;
1283		/* store current timing */
1284		if (aconnector->timing_requested)
1285			*aconnector->timing_requested = pipe_ctx->stream->timing;
1286		else
1287			drm_err(dev, "timing storage failed\n");
1288
1289	}
1290
1291	pipe_ctx->stream->test_pattern.type = test_pattern;
1292	pipe_ctx->stream->test_pattern.color_space = test_pattern_color_space;
1293
1294	/* Temp W/A for compliance test failure */
1295	dc_state->bw_ctx.bw.dcn.clk.p_state_change_support = false;
1296	dc_state->bw_ctx.bw.dcn.clk.dramclk_khz = clk_mgr->dc_mode_softmax_enabled ?
1297		clk_mgr->bw_params->dc_mode_softmax_memclk : clk_mgr->bw_params->max_memclk_mhz;
1298	dc_state->bw_ctx.bw.dcn.clk.idle_dramclk_khz = dc_state->bw_ctx.bw.dcn.clk.dramclk_khz;
1299	ctx->dc->clk_mgr->funcs->update_clocks(
1300			ctx->dc->clk_mgr,
1301			dc_state,
1302			false);
1303
1304	dc_link_dp_set_test_pattern(
1305		(struct dc_link *) link,
1306		test_pattern,
1307		test_pattern_color_space,
1308		NULL,
1309		NULL,
1310		0);
1311
1312	return false;
1313}
1314
1315void dm_set_phyd32clk(struct dc_context *ctx, int freq_khz)
1316{
1317       // TODO
1318}
1319
1320void dm_helpers_enable_periodic_detection(struct dc_context *ctx, bool enable)
1321{
1322	struct amdgpu_device *adev = ctx->driver_context;
1323
1324	if (adev->dm.idle_workqueue) {
1325		adev->dm.idle_workqueue->enable = enable;
1326		if (enable && !adev->dm.idle_workqueue->running && amdgpu_dm_is_headless(adev))
1327			schedule_work(&adev->dm.idle_workqueue->work);
1328	}
1329}
1330
1331void dm_helpers_dp_mst_update_branch_bandwidth(
1332		struct dc_context *ctx,
1333		struct dc_link *link)
1334{
1335	// TODO
1336}
1337
1338static bool dm_is_freesync_pcon_whitelist(const uint32_t branch_dev_id)
1339{
1340	bool ret_val = false;
1341
1342	switch (branch_dev_id) {
1343	case DP_BRANCH_DEVICE_ID_0060AD:
1344	case DP_BRANCH_DEVICE_ID_00E04C:
1345	case DP_BRANCH_DEVICE_ID_90CC24:
1346		ret_val = true;
1347		break;
1348	default:
1349		break;
1350	}
1351
1352	return ret_val;
1353}
1354
1355enum adaptive_sync_type dm_get_adaptive_sync_support_type(struct dc_link *link)
1356{
1357	struct dpcd_caps *dpcd_caps = &link->dpcd_caps;
1358	enum adaptive_sync_type as_type = ADAPTIVE_SYNC_TYPE_NONE;
1359
1360	switch (dpcd_caps->dongle_type) {
1361	case DISPLAY_DONGLE_DP_HDMI_CONVERTER:
1362		if (dpcd_caps->adaptive_sync_caps.dp_adap_sync_caps.bits.ADAPTIVE_SYNC_SDP_SUPPORT == true &&
1363			dpcd_caps->allow_invalid_MSA_timing_param == true &&
1364			dm_is_freesync_pcon_whitelist(dpcd_caps->branch_dev_id))
1365			as_type = FREESYNC_TYPE_PCON_IN_WHITELIST;
1366		break;
1367	default:
1368		break;
1369	}
1370
1371	return as_type;
1372}
1373
1374bool dm_helpers_is_fullscreen(struct dc_context *ctx, struct dc_stream_state *stream)
1375{
1376	// TODO
1377	return false;
1378}
1379
1380bool dm_helpers_is_hdr_on(struct dc_context *ctx, struct dc_stream_state *stream)
1381{
1382	// TODO
1383	return false;
1384}
v5.4
  1/*
  2 * Copyright 2015 Advanced Micro Devices, Inc.
  3 *
  4 * Permission is hereby granted, free of charge, to any person obtaining a
  5 * copy of this software and associated documentation files (the "Software"),
  6 * to deal in the Software without restriction, including without limitation
  7 * the rights to use, copy, modify, merge, publish, distribute, sublicense,
  8 * and/or sell copies of the Software, and to permit persons to whom the
  9 * Software is furnished to do so, subject to the following conditions:
 10 *
 11 * The above copyright notice and this permission notice shall be included in
 12 * all copies or substantial portions of the Software.
 13 *
 14 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
 15 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
 16 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.  IN NO EVENT SHALL
 17 * THE COPYRIGHT HOLDER(S) OR AUTHOR(S) BE LIABLE FOR ANY CLAIM, DAMAGES OR
 18 * OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE,
 19 * ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
 20 * OTHER DEALINGS IN THE SOFTWARE.
 21 *
 22 * Authors: AMD
 23 *
 24 */
 25
 
 
 26#include <linux/string.h>
 27#include <linux/acpi.h>
 28#include <linux/version.h>
 29#include <linux/i2c.h>
 30
 
 31#include <drm/drm_probe_helper.h>
 32#include <drm/amdgpu_drm.h>
 33#include <drm/drm_edid.h>
 
 34
 35#include "dm_services.h"
 36#include "amdgpu.h"
 37#include "dc.h"
 38#include "amdgpu_dm.h"
 39#include "amdgpu_dm_irq.h"
 
 
 
 40
 41#include "dm_helpers.h"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 42
 43/* dm_helpers_parse_edid_caps
 
 44 *
 45 * Parse edid caps
 
 
 46 *
 47 * @edid:	[in] pointer to edid
 48 *  edid_caps:	[in] pointer to edid caps
 49 * @return
 50 *	void
 51 * */
 52enum dc_edid_status dm_helpers_parse_edid_caps(
 53		struct dc_context *ctx,
 54		const struct dc_edid *edid,
 55		struct dc_edid_caps *edid_caps)
 56{
 57	struct edid *edid_buf = (struct edid *) edid->raw_edid;
 
 
 58	struct cea_sad *sads;
 59	int sad_count = -1;
 60	int sadb_count = -1;
 61	int i = 0;
 62	int j = 0;
 63	uint8_t *sadb = NULL;
 64
 65	enum dc_edid_status result = EDID_OK;
 66
 67	if (!edid_caps || !edid)
 68		return EDID_BAD_INPUT;
 69
 70	if (!drm_edid_is_valid(edid_buf))
 71		result = EDID_BAD_CHECKSUM;
 72
 73	edid_caps->manufacturer_id = (uint16_t) edid_buf->mfg_id[0] |
 74					((uint16_t) edid_buf->mfg_id[1])<<8;
 75	edid_caps->product_id = (uint16_t) edid_buf->prod_code[0] |
 76					((uint16_t) edid_buf->prod_code[1])<<8;
 77	edid_caps->serial_number = edid_buf->serial;
 78	edid_caps->manufacture_week = edid_buf->mfg_week;
 79	edid_caps->manufacture_year = edid_buf->mfg_year;
 80
 81	/* One of the four detailed_timings stores the monitor name. It's
 82	 * stored in an array of length 13. */
 83	for (i = 0; i < 4; i++) {
 84		if (edid_buf->detailed_timings[i].data.other_data.type == 0xfc) {
 85			while (j < 13 && edid_buf->detailed_timings[i].data.other_data.data.str.str[j]) {
 86				if (edid_buf->detailed_timings[i].data.other_data.data.str.str[j] == '\n')
 87					break;
 88
 89				edid_caps->display_name[j] =
 90					edid_buf->detailed_timings[i].data.other_data.data.str.str[j];
 91				j++;
 92			}
 93		}
 94	}
 95
 96	edid_caps->edid_hdmi = drm_detect_hdmi_monitor(
 97			(struct edid *) edid->raw_edid);
 98
 99	sad_count = drm_edid_to_sad((struct edid *) edid->raw_edid, &sads);
100	if (sad_count <= 0) {
101		DRM_INFO("SADs count is: %d, don't need to read it\n",
102				sad_count);
103		return result;
104	}
105
106	edid_caps->audio_mode_count = sad_count < DC_MAX_AUDIO_DESC_COUNT ? sad_count : DC_MAX_AUDIO_DESC_COUNT;
107	for (i = 0; i < edid_caps->audio_mode_count; ++i) {
108		struct cea_sad *sad = &sads[i];
109
110		edid_caps->audio_modes[i].format_code = sad->format;
111		edid_caps->audio_modes[i].channel_count = sad->channels + 1;
112		edid_caps->audio_modes[i].sample_rate = sad->freq;
113		edid_caps->audio_modes[i].sample_size = sad->byte2;
114	}
115
116	sadb_count = drm_edid_to_speaker_allocation((struct edid *) edid->raw_edid, &sadb);
117
118	if (sadb_count < 0) {
119		DRM_ERROR("Couldn't read Speaker Allocation Data Block: %d\n", sadb_count);
120		sadb_count = 0;
121	}
122
123	if (sadb_count)
124		edid_caps->speaker_flags = sadb[0];
125	else
126		edid_caps->speaker_flags = DEFAULT_SPEAKER_LOCATION;
127
128	kfree(sads);
129	kfree(sadb);
130
131	return result;
132}
133
134static void get_payload_table(
135		struct amdgpu_dm_connector *aconnector,
136		struct dp_mst_stream_allocation_table *proposed_table)
 
 
137{
 
 
 
 
 
138	int i;
139	struct drm_dp_mst_topology_mgr *mst_mgr =
140			&aconnector->mst_port->mst_mgr;
141
142	mutex_lock(&mst_mgr->payload_lock);
143
144	proposed_table->stream_count = 0;
145
146	/* number of active streams */
147	for (i = 0; i < mst_mgr->max_payloads; i++) {
148		if (mst_mgr->payloads[i].num_slots == 0)
149			break; /* end of vcp_id table */
150
151		ASSERT(mst_mgr->payloads[i].payload_state !=
152				DP_PAYLOAD_DELETE_LOCAL);
 
 
 
 
 
 
 
 
153
154		if (mst_mgr->payloads[i].payload_state == DP_PAYLOAD_LOCAL ||
155			mst_mgr->payloads[i].payload_state ==
156					DP_PAYLOAD_REMOTE) {
157
158			struct dp_mst_stream_allocation *sa =
159					&proposed_table->stream_allocations[
160						proposed_table->stream_count];
161
162			sa->slot_count = mst_mgr->payloads[i].num_slots;
163			sa->vcp_id = mst_mgr->proposed_vcpis[i]->vcpi;
164			proposed_table->stream_count++;
165		}
166	}
167
168	mutex_unlock(&mst_mgr->payload_lock);
 
169}
170
171void dm_helpers_dp_update_branch_info(
172	struct dc_context *ctx,
173	const struct dc_link *link)
174{}
175
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
176/*
177 * Writes payload allocation table in immediate downstream device.
178 */
179bool dm_helpers_dp_mst_write_payload_allocation_table(
180		struct dc_context *ctx,
181		const struct dc_stream_state *stream,
182		struct dp_mst_stream_allocation_table *proposed_table,
183		bool enable)
184{
185	struct amdgpu_dm_connector *aconnector;
 
 
186	struct drm_dp_mst_topology_mgr *mst_mgr;
187	struct drm_dp_mst_port *mst_port;
188	int slots = 0;
189	bool ret;
190	int clock;
191	int bpp = 0;
192	int pbn = 0;
193
194	aconnector = (struct amdgpu_dm_connector *)stream->dm_stream_context;
 
 
 
 
 
195
196	if (!aconnector || !aconnector->mst_port)
197		return false;
198
199	mst_mgr = &aconnector->mst_port->mst_mgr;
200
201	if (!mst_mgr->mst_state)
202		return false;
203
204	mst_port = aconnector->port;
 
 
205
206	if (enable) {
207		clock = stream->timing.pix_clk_100hz / 10;
208
209		switch (stream->timing.display_color_depth) {
210
211		case COLOR_DEPTH_666:
212			bpp = 6;
213			break;
214		case COLOR_DEPTH_888:
215			bpp = 8;
216			break;
217		case COLOR_DEPTH_101010:
218			bpp = 10;
219			break;
220		case COLOR_DEPTH_121212:
221			bpp = 12;
222			break;
223		case COLOR_DEPTH_141414:
224			bpp = 14;
225			break;
226		case COLOR_DEPTH_161616:
227			bpp = 16;
228			break;
229		default:
230			ASSERT(bpp != 0);
231			break;
232		}
233
234		bpp = bpp * 3;
235
236		/* TODO need to know link rate */
237
238		pbn = drm_dp_calc_pbn_mode(clock, bpp);
239
240		slots = drm_dp_find_vcpi_slots(mst_mgr, pbn);
241		ret = drm_dp_mst_allocate_vcpi(mst_mgr, mst_port, pbn, slots);
242
243		if (!ret)
244			return false;
245
246	} else {
247		drm_dp_mst_reset_vcpi_slots(mst_mgr, mst_port);
248	}
249
250	ret = drm_dp_update_payload_part1(mst_mgr);
251
252	/* mst_mgr->->payloads are VC payload notify MST branch using DPCD or
253	 * AUX message. The sequence is slot 1-63 allocated sequence for each
254	 * stream. AMD ASIC stream slot allocation should follow the same
255	 * sequence. copy DRM MST allocation to dc */
256
257	get_payload_table(aconnector, proposed_table);
258
259	if (ret)
260		return false;
261
262	return true;
263}
264
265/*
266 * poll pending down reply
267 */
268void dm_helpers_dp_mst_poll_pending_down_reply(
269	struct dc_context *ctx,
270	const struct dc_link *link)
271{}
272
273/*
274 * Clear payload allocation table before enable MST DP link.
275 */
276void dm_helpers_dp_mst_clear_payload_allocation_table(
277	struct dc_context *ctx,
278	const struct dc_link *link)
279{}
280
281/*
282 * Polls for ACT (allocation change trigger) handled and sends
283 * ALLOCATE_PAYLOAD message.
284 */
285bool dm_helpers_dp_mst_poll_for_allocation_change_trigger(
286		struct dc_context *ctx,
287		const struct dc_stream_state *stream)
288{
289	struct amdgpu_dm_connector *aconnector;
290	struct drm_dp_mst_topology_mgr *mst_mgr;
291	int ret;
292
293	aconnector = (struct amdgpu_dm_connector *)stream->dm_stream_context;
294
295	if (!aconnector || !aconnector->mst_port)
296		return false;
297
298	mst_mgr = &aconnector->mst_port->mst_mgr;
299
300	if (!mst_mgr->mst_state)
301		return false;
302
303	ret = drm_dp_check_act_status(mst_mgr);
304
305	if (ret)
306		return false;
307
308	return true;
309}
310
311bool dm_helpers_dp_mst_send_payload_allocation(
312		struct dc_context *ctx,
313		const struct dc_stream_state *stream,
314		bool enable)
315{
316	struct amdgpu_dm_connector *aconnector;
 
317	struct drm_dp_mst_topology_mgr *mst_mgr;
318	struct drm_dp_mst_port *mst_port;
319	int ret;
 
 
320
321	aconnector = (struct amdgpu_dm_connector *)stream->dm_stream_context;
322
323	if (!aconnector || !aconnector->mst_port)
324		return false;
325
326	mst_port = aconnector->port;
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
327
328	mst_mgr = &aconnector->mst_port->mst_mgr;
 
 
 
 
 
 
 
 
 
329
330	if (!mst_mgr->mst_state)
331		return false;
332
333	ret = drm_dp_update_payload_part2(mst_mgr);
334
335	if (ret)
336		return false;
337
338	if (!enable)
339		drm_dp_mst_deallocate_vcpi(mst_mgr, mst_port);
340
341	return true;
342}
 
 
 
 
 
 
343
344void dm_dtn_log_begin(struct dc_context *ctx,
345	struct dc_log_buffer_ctx *log_ctx)
346{
347	static const char msg[] = "[dtn begin]\n";
348
349	if (!log_ctx) {
350		pr_info("%s", msg);
351		return;
352	}
353
354	dm_dtn_log_append_v(ctx, log_ctx, "%s", msg);
355}
356
 
357void dm_dtn_log_append_v(struct dc_context *ctx,
358	struct dc_log_buffer_ctx *log_ctx,
359	const char *msg, ...)
360{
361	va_list args;
362	size_t total;
363	int n;
364
365	if (!log_ctx) {
366		/* No context, redirect to dmesg. */
367		struct va_format vaf;
368
369		vaf.fmt = msg;
370		vaf.va = &args;
371
372		va_start(args, msg);
373		pr_info("%pV", &vaf);
374		va_end(args);
375
376		return;
377	}
378
379	/* Measure the output. */
380	va_start(args, msg);
381	n = vsnprintf(NULL, 0, msg, args);
382	va_end(args);
383
384	if (n <= 0)
385		return;
386
387	/* Reallocate the string buffer as needed. */
388	total = log_ctx->pos + n + 1;
389
390	if (total > log_ctx->size) {
391		char *buf = (char *)kvcalloc(total, sizeof(char), GFP_KERNEL);
392
393		if (buf) {
394			memcpy(buf, log_ctx->buf, log_ctx->pos);
395			kfree(log_ctx->buf);
396
397			log_ctx->buf = buf;
398			log_ctx->size = total;
399		}
400	}
401
402	if (!log_ctx->buf)
403		return;
404
405	/* Write the formatted string to the log buffer. */
406	va_start(args, msg);
407	n = vscnprintf(
408		log_ctx->buf + log_ctx->pos,
409		log_ctx->size - log_ctx->pos,
410		msg,
411		args);
412	va_end(args);
413
414	if (n > 0)
415		log_ctx->pos += n;
416}
417
418void dm_dtn_log_end(struct dc_context *ctx,
419	struct dc_log_buffer_ctx *log_ctx)
420{
421	static const char msg[] = "[dtn end]\n";
422
423	if (!log_ctx) {
424		pr_info("%s", msg);
425		return;
426	}
427
428	dm_dtn_log_append_v(ctx, log_ctx, "%s", msg);
429}
430
431bool dm_helpers_dp_mst_start_top_mgr(
432		struct dc_context *ctx,
433		const struct dc_link *link,
434		bool boot)
435{
436	struct amdgpu_dm_connector *aconnector = link->priv;
 
437
438	if (!aconnector) {
439			DRM_ERROR("Failed to found connector for link!");
440			return false;
441	}
442
443	if (boot) {
444		DRM_INFO("DM_MST: Differing MST start on aconnector: %p [id: %d]\n",
445					aconnector, aconnector->base.base.id);
446		return true;
447	}
448
449	DRM_INFO("DM_MST: starting TM on aconnector: %p [id: %d]\n",
450			aconnector, aconnector->base.base.id);
451
452	return (drm_dp_mst_topology_mgr_set_mst(&aconnector->mst_mgr, true) == 0);
 
 
 
 
 
 
 
 
 
453}
454
455void dm_helpers_dp_mst_stop_top_mgr(
456		struct dc_context *ctx,
457		const struct dc_link *link)
458{
459	struct amdgpu_dm_connector *aconnector = link->priv;
460
461	if (!aconnector) {
462			DRM_ERROR("Failed to found connector for link!");
463			return;
464	}
465
466	DRM_INFO("DM_MST: stopping TM on aconnector: %p [id: %d]\n",
467			aconnector, aconnector->base.base.id);
468
469	if (aconnector->mst_mgr.mst_state == true)
470		drm_dp_mst_topology_mgr_set_mst(&aconnector->mst_mgr, false);
 
 
 
 
471}
472
473bool dm_helpers_dp_read_dpcd(
474		struct dc_context *ctx,
475		const struct dc_link *link,
476		uint32_t address,
477		uint8_t *data,
478		uint32_t size)
479{
480
481	struct amdgpu_dm_connector *aconnector = link->priv;
482
483	if (!aconnector) {
484		DRM_ERROR("Failed to found connector for link!");
485		return false;
486	}
487
488	return drm_dp_dpcd_read(&aconnector->dm_dp_aux.aux, address,
489			data, size) > 0;
490}
491
492bool dm_helpers_dp_write_dpcd(
493		struct dc_context *ctx,
494		const struct dc_link *link,
495		uint32_t address,
496		const uint8_t *data,
497		uint32_t size)
498{
499	struct amdgpu_dm_connector *aconnector = link->priv;
500
501	if (!aconnector) {
502		DRM_ERROR("Failed to found connector for link!");
503		return false;
504	}
505
506	return drm_dp_dpcd_write(&aconnector->dm_dp_aux.aux,
507			address, (uint8_t *)data, size) > 0;
508}
509
510bool dm_helpers_submit_i2c(
511		struct dc_context *ctx,
512		const struct dc_link *link,
513		struct i2c_command *cmd)
514{
515	struct amdgpu_dm_connector *aconnector = link->priv;
516	struct i2c_msg *msgs;
517	int i = 0;
518	int num = cmd->number_of_payloads;
519	bool result;
520
521	if (!aconnector) {
522		DRM_ERROR("Failed to found connector for link!");
523		return false;
524	}
525
526	msgs = kcalloc(num, sizeof(struct i2c_msg), GFP_KERNEL);
527
528	if (!msgs)
529		return false;
530
531	for (i = 0; i < num; i++) {
532		msgs[i].flags = cmd->payloads[i].write ? 0 : I2C_M_RD;
533		msgs[i].addr = cmd->payloads[i].address;
534		msgs[i].len = cmd->payloads[i].length;
535		msgs[i].buf = cmd->payloads[i].data;
536	}
537
538	result = i2c_transfer(&aconnector->i2c->base, msgs, num) == num;
539
540	kfree(msgs);
541
542	return result;
543}
544#ifdef CONFIG_DRM_AMD_DC_DSC_SUPPORT
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
545bool dm_helpers_dp_write_dsc_enable(
546		struct dc_context *ctx,
547		const struct dc_stream_state *stream,
548		bool enable
549)
550{
551	uint8_t enable_dsc = enable ? 1 : 0;
 
 
 
 
 
 
 
 
 
 
552
553	return dm_helpers_dp_write_dpcd(ctx, stream->sink->link, DP_DSC_ENABLE, &enable_dsc, 1);
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
554}
555#endif
556
557bool dm_helpers_is_dp_sink_present(struct dc_link *link)
558{
559	bool dp_sink_present;
560	struct amdgpu_dm_connector *aconnector = link->priv;
561
562	if (!aconnector) {
563		BUG_ON("Failed to found connector for link!");
564		return true;
565	}
566
567	mutex_lock(&aconnector->dm_dp_aux.aux.hw_mutex);
568	dp_sink_present = dc_link_is_dp_sink_present(link);
569	mutex_unlock(&aconnector->dm_dp_aux.aux.hw_mutex);
570	return dp_sink_present;
571}
572
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
573enum dc_edid_status dm_helpers_read_local_edid(
574		struct dc_context *ctx,
575		struct dc_link *link,
576		struct dc_sink *sink)
577{
578	struct amdgpu_dm_connector *aconnector = link->priv;
 
579	struct i2c_adapter *ddc;
580	int retry = 3;
581	enum dc_edid_status edid_status;
582	struct edid *edid;
 
583
584	if (link->aux_mode)
585		ddc = &aconnector->dm_dp_aux.aux.ddc;
586	else
587		ddc = &aconnector->i2c->base;
588
589	/* some dongles read edid incorrectly the first time,
590	 * do check sum and retry to make sure read correct edid.
591	 */
592	do {
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
593
594		edid = drm_get_edid(&aconnector->base, ddc);
595
596		if (!edid)
597			return EDID_NO_RESPONSE;
598
 
599		sink->dc_edid.length = EDID_LENGTH * (edid->extensions + 1);
600		memmove(sink->dc_edid.raw_edid, (uint8_t *)edid, sink->dc_edid.length);
601
602		/* We don't need the original edid anymore */
603		kfree(edid);
604
605		edid_status = dm_helpers_parse_edid_caps(
606						ctx,
607						&sink->dc_edid,
608						&sink->edid_caps);
609
610	} while (edid_status == EDID_BAD_CHECKSUM && --retry > 0);
611
612	if (edid_status != EDID_OK)
613		DRM_ERROR("EDID err: %d, on connector: %s",
614				edid_status,
615				aconnector->base.name);
616	if (link->aux_mode) {
617		union test_request test_request = { {0} };
618		union test_response test_response = { {0} };
619
620		dm_helpers_dp_read_dpcd(ctx,
621					link,
622					DP_TEST_REQUEST,
623					&test_request.raw,
624					sizeof(union test_request));
625
626		if (!test_request.bits.EDID_READ)
627			return edid_status;
628
629		test_response.bits.EDID_CHECKSUM_WRITE = 1;
630
631		dm_helpers_dp_write_dpcd(ctx,
632					link,
633					DP_TEST_EDID_CHECKSUM,
634					&sink->dc_edid.raw_edid[sink->dc_edid.length-1],
635					1);
636
637		dm_helpers_dp_write_dpcd(ctx,
638					link,
639					DP_TEST_RESPONSE,
640					&test_response.raw,
641					sizeof(test_response));
642
643	}
644
645	return edid_status;
646}
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
647
648void dm_set_dcn_clocks(struct dc_context *ctx, struct dc_clocks *clks)
649{
650	/* TODO: something */
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
651}