Linux Audio

Check our new training course

Loading...
v4.17
  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/drmP.h>
 32#include <drm/drm_crtc_helper.h>
 33#include <drm/amdgpu_drm.h>
 34#include <drm/drm_edid.h>
 35
 36#include "dm_services.h"
 37#include "amdgpu.h"
 38#include "dc.h"
 39#include "amdgpu_dm.h"
 40#include "amdgpu_dm_irq.h"
 41
 42#include "dm_helpers.h"
 43
 44/* dm_helpers_parse_edid_caps
 45 *
 46 * Parse edid caps
 47 *
 48 * @edid:	[in] pointer to edid
 49 *  edid_caps:	[in] pointer to edid caps
 50 * @return
 51 *	void
 52 * */
 53enum dc_edid_status dm_helpers_parse_edid_caps(
 54		struct dc_context *ctx,
 55		const struct dc_edid *edid,
 56		struct dc_edid_caps *edid_caps)
 57{
 58	struct edid *edid_buf = (struct edid *) edid->raw_edid;
 59	struct cea_sad *sads;
 60	int sad_count = -1;
 61	int sadb_count = -1;
 62	int i = 0;
 63	int j = 0;
 64	uint8_t *sadb = NULL;
 65
 66	enum dc_edid_status result = EDID_OK;
 67
 68	if (!edid_caps || !edid)
 69		return EDID_BAD_INPUT;
 70
 71	if (!drm_edid_is_valid(edid_buf))
 72		result = EDID_BAD_CHECKSUM;
 73
 74	edid_caps->manufacturer_id = (uint16_t) edid_buf->mfg_id[0] |
 75					((uint16_t) edid_buf->mfg_id[1])<<8;
 76	edid_caps->product_id = (uint16_t) edid_buf->prod_code[0] |
 77					((uint16_t) edid_buf->prod_code[1])<<8;
 78	edid_caps->serial_number = edid_buf->serial;
 79	edid_caps->manufacture_week = edid_buf->mfg_week;
 80	edid_caps->manufacture_year = edid_buf->mfg_year;
 81
 82	/* One of the four detailed_timings stores the monitor name. It's
 83	 * stored in an array of length 13. */
 84	for (i = 0; i < 4; i++) {
 85		if (edid_buf->detailed_timings[i].data.other_data.type == 0xfc) {
 86			while (j < 13 && edid_buf->detailed_timings[i].data.other_data.data.str.str[j]) {
 87				if (edid_buf->detailed_timings[i].data.other_data.data.str.str[j] == '\n')
 88					break;
 89
 90				edid_caps->display_name[j] =
 91					edid_buf->detailed_timings[i].data.other_data.data.str.str[j];
 92				j++;
 93			}
 94		}
 95	}
 96
 97	edid_caps->edid_hdmi = drm_detect_hdmi_monitor(
 98			(struct edid *) edid->raw_edid);
 99
100	sad_count = drm_edid_to_sad((struct edid *) edid->raw_edid, &sads);
101	if (sad_count <= 0) {
102		DRM_INFO("SADs count is: %d, don't need to read it\n",
103				sad_count);
104		return result;
105	}
106
107	edid_caps->audio_mode_count = sad_count < DC_MAX_AUDIO_DESC_COUNT ? sad_count : DC_MAX_AUDIO_DESC_COUNT;
108	for (i = 0; i < edid_caps->audio_mode_count; ++i) {
109		struct cea_sad *sad = &sads[i];
110
111		edid_caps->audio_modes[i].format_code = sad->format;
112		edid_caps->audio_modes[i].channel_count = sad->channels + 1;
113		edid_caps->audio_modes[i].sample_rate = sad->freq;
114		edid_caps->audio_modes[i].sample_size = sad->byte2;
115	}
116
117	sadb_count = drm_edid_to_speaker_allocation((struct edid *) edid->raw_edid, &sadb);
118
119	if (sadb_count < 0) {
120		DRM_ERROR("Couldn't read Speaker Allocation Data Block: %d\n", sadb_count);
121		sadb_count = 0;
122	}
123
124	if (sadb_count)
125		edid_caps->speaker_flags = sadb[0];
126	else
127		edid_caps->speaker_flags = DEFAULT_SPEAKER_LOCATION;
128
129	kfree(sads);
130	kfree(sadb);
131
132	return result;
133}
134
135static void get_payload_table(
136		struct amdgpu_dm_connector *aconnector,
137		struct dp_mst_stream_allocation_table *proposed_table)
138{
139	int i;
140	struct drm_dp_mst_topology_mgr *mst_mgr =
141			&aconnector->mst_port->mst_mgr;
142
143	mutex_lock(&mst_mgr->payload_lock);
144
145	proposed_table->stream_count = 0;
146
147	/* number of active streams */
148	for (i = 0; i < mst_mgr->max_payloads; i++) {
149		if (mst_mgr->payloads[i].num_slots == 0)
150			break; /* end of vcp_id table */
151
152		ASSERT(mst_mgr->payloads[i].payload_state !=
153				DP_PAYLOAD_DELETE_LOCAL);
154
155		if (mst_mgr->payloads[i].payload_state == DP_PAYLOAD_LOCAL ||
156			mst_mgr->payloads[i].payload_state ==
157					DP_PAYLOAD_REMOTE) {
158
159			struct dp_mst_stream_allocation *sa =
160					&proposed_table->stream_allocations[
161						proposed_table->stream_count];
162
163			sa->slot_count = mst_mgr->payloads[i].num_slots;
164			sa->vcp_id = mst_mgr->proposed_vcpis[i]->vcpi;
165			proposed_table->stream_count++;
166		}
167	}
168
169	mutex_unlock(&mst_mgr->payload_lock);
170}
171
 
 
 
 
 
172/*
173 * Writes payload allocation table in immediate downstream device.
174 */
175bool dm_helpers_dp_mst_write_payload_allocation_table(
176		struct dc_context *ctx,
177		const struct dc_stream_state *stream,
178		struct dp_mst_stream_allocation_table *proposed_table,
179		bool enable)
180{
181	struct amdgpu_dm_connector *aconnector;
182	struct drm_dp_mst_topology_mgr *mst_mgr;
183	struct drm_dp_mst_port *mst_port;
184	int slots = 0;
185	bool ret;
186	int clock;
187	int bpp = 0;
188	int pbn = 0;
189
190	aconnector = stream->sink->priv;
191
192	if (!aconnector || !aconnector->mst_port)
193		return false;
194
195	mst_mgr = &aconnector->mst_port->mst_mgr;
196
197	if (!mst_mgr->mst_state)
198		return false;
199
200	mst_port = aconnector->port;
201
202	if (enable) {
203		clock = stream->timing.pix_clk_khz;
204
205		switch (stream->timing.display_color_depth) {
206
207		case COLOR_DEPTH_666:
208			bpp = 6;
209			break;
210		case COLOR_DEPTH_888:
211			bpp = 8;
212			break;
213		case COLOR_DEPTH_101010:
214			bpp = 10;
215			break;
216		case COLOR_DEPTH_121212:
217			bpp = 12;
218			break;
219		case COLOR_DEPTH_141414:
220			bpp = 14;
221			break;
222		case COLOR_DEPTH_161616:
223			bpp = 16;
224			break;
225		default:
226			ASSERT(bpp != 0);
227			break;
228		}
229
230		bpp = bpp * 3;
231
232		/* TODO need to know link rate */
233
234		pbn = drm_dp_calc_pbn_mode(clock, bpp);
235
236		slots = drm_dp_find_vcpi_slots(mst_mgr, pbn);
237		ret = drm_dp_mst_allocate_vcpi(mst_mgr, mst_port, pbn, slots);
238
239		if (!ret)
240			return false;
241
242	} else {
243		drm_dp_mst_reset_vcpi_slots(mst_mgr, mst_port);
244	}
245
246	ret = drm_dp_update_payload_part1(mst_mgr);
247
248	/* mst_mgr->->payloads are VC payload notify MST branch using DPCD or
249	 * AUX message. The sequence is slot 1-63 allocated sequence for each
250	 * stream. AMD ASIC stream slot allocation should follow the same
251	 * sequence. copy DRM MST allocation to dc */
252
253	get_payload_table(aconnector, proposed_table);
254
255	if (ret)
256		return false;
257
258	return true;
259}
260
 
 
 
 
 
 
 
261
262/*
263 * Clear payload allocation table before enable MST DP link.
264 */
265void dm_helpers_dp_mst_clear_payload_allocation_table(
266	struct dc_context *ctx,
267	const struct dc_link *link)
268{}
269
270/*
271 * Polls for ACT (allocation change trigger) handled and sends
272 * ALLOCATE_PAYLOAD message.
273 */
274bool dm_helpers_dp_mst_poll_for_allocation_change_trigger(
275		struct dc_context *ctx,
276		const struct dc_stream_state *stream)
277{
278	struct amdgpu_dm_connector *aconnector;
279	struct drm_dp_mst_topology_mgr *mst_mgr;
280	int ret;
281
282	aconnector = stream->sink->priv;
283
284	if (!aconnector || !aconnector->mst_port)
285		return false;
286
287	mst_mgr = &aconnector->mst_port->mst_mgr;
288
289	if (!mst_mgr->mst_state)
290		return false;
291
292	ret = drm_dp_check_act_status(mst_mgr);
293
294	if (ret)
295		return false;
296
297	return true;
298}
299
300bool dm_helpers_dp_mst_send_payload_allocation(
301		struct dc_context *ctx,
302		const struct dc_stream_state *stream,
303		bool enable)
304{
305	struct amdgpu_dm_connector *aconnector;
306	struct drm_dp_mst_topology_mgr *mst_mgr;
307	struct drm_dp_mst_port *mst_port;
308	int ret;
309
310	aconnector = stream->sink->priv;
311
312	if (!aconnector || !aconnector->mst_port)
313		return false;
314
315	mst_port = aconnector->port;
316
317	mst_mgr = &aconnector->mst_port->mst_mgr;
318
319	if (!mst_mgr->mst_state)
320		return false;
321
322	ret = drm_dp_update_payload_part2(mst_mgr);
323
324	if (ret)
325		return false;
326
327	if (!enable)
328		drm_dp_mst_deallocate_vcpi(mst_mgr, mst_port);
329
330	return true;
331}
332
333bool dm_helpers_dc_conn_log(struct dc_context *ctx, struct log_entry *entry, enum dc_log_type event)
 
334{
335	return true;
336}
337
338void dm_dtn_log_begin(struct dc_context *ctx)
339{}
 
 
 
 
 
340
341void dm_dtn_log_append_v(struct dc_context *ctx,
342		const char *pMsg, ...)
343{}
 
 
 
 
344
345void dm_dtn_log_end(struct dc_context *ctx)
346{}
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
347
348bool dm_helpers_dp_mst_start_top_mgr(
349		struct dc_context *ctx,
350		const struct dc_link *link,
351		bool boot)
352{
353	struct amdgpu_dm_connector *aconnector = link->priv;
354
355	if (!aconnector) {
356			DRM_ERROR("Failed to found connector for link!");
357			return false;
358	}
359
360	if (boot) {
361		DRM_INFO("DM_MST: Differing MST start on aconnector: %p [id: %d]\n",
362					aconnector, aconnector->base.base.id);
363		return true;
364	}
365
366	DRM_INFO("DM_MST: starting TM on aconnector: %p [id: %d]\n",
367			aconnector, aconnector->base.base.id);
368
369	return (drm_dp_mst_topology_mgr_set_mst(&aconnector->mst_mgr, true) == 0);
370}
371
372void dm_helpers_dp_mst_stop_top_mgr(
373		struct dc_context *ctx,
374		const struct dc_link *link)
375{
376	struct amdgpu_dm_connector *aconnector = link->priv;
377
378	if (!aconnector) {
379			DRM_ERROR("Failed to found connector for link!");
380			return;
381	}
382
383	DRM_INFO("DM_MST: stopping TM on aconnector: %p [id: %d]\n",
384			aconnector, aconnector->base.base.id);
385
386	if (aconnector->mst_mgr.mst_state == true)
387		drm_dp_mst_topology_mgr_set_mst(&aconnector->mst_mgr, false);
388}
389
390bool dm_helpers_dp_read_dpcd(
391		struct dc_context *ctx,
392		const struct dc_link *link,
393		uint32_t address,
394		uint8_t *data,
395		uint32_t size)
396{
397
398	struct amdgpu_dm_connector *aconnector = link->priv;
399
400	if (!aconnector) {
401		DRM_ERROR("Failed to found connector for link!");
402		return false;
403	}
404
405	return drm_dp_dpcd_read(&aconnector->dm_dp_aux.aux, address,
406			data, size) > 0;
407}
408
409bool dm_helpers_dp_write_dpcd(
410		struct dc_context *ctx,
411		const struct dc_link *link,
412		uint32_t address,
413		const uint8_t *data,
414		uint32_t size)
415{
416	struct amdgpu_dm_connector *aconnector = link->priv;
417
418	if (!aconnector) {
419		DRM_ERROR("Failed to found connector for link!");
420		return false;
421	}
422
423	return drm_dp_dpcd_write(&aconnector->dm_dp_aux.aux,
424			address, (uint8_t *)data, size) > 0;
425}
426
427bool dm_helpers_submit_i2c(
428		struct dc_context *ctx,
429		const struct dc_link *link,
430		struct i2c_command *cmd)
431{
432	struct amdgpu_dm_connector *aconnector = link->priv;
433	struct i2c_msg *msgs;
434	int i = 0;
435	int num = cmd->number_of_payloads;
436	bool result;
437
438	if (!aconnector) {
439		DRM_ERROR("Failed to found connector for link!");
440		return false;
441	}
442
443	msgs = kzalloc(num * sizeof(struct i2c_msg), GFP_KERNEL);
444
445	if (!msgs)
446		return false;
447
448	for (i = 0; i < num; i++) {
449		msgs[i].flags = cmd->payloads[i].write ? 0 : I2C_M_RD;
450		msgs[i].addr = cmd->payloads[i].address;
451		msgs[i].len = cmd->payloads[i].length;
452		msgs[i].buf = cmd->payloads[i].data;
453	}
454
455	result = i2c_transfer(&aconnector->i2c->base, msgs, num) == num;
456
457	kfree(msgs);
458
459	return result;
460}
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
461
462enum dc_edid_status dm_helpers_read_local_edid(
463		struct dc_context *ctx,
464		struct dc_link *link,
465		struct dc_sink *sink)
466{
467	struct amdgpu_dm_connector *aconnector = link->priv;
468	struct i2c_adapter *ddc;
469	int retry = 3;
470	enum dc_edid_status edid_status;
471	struct edid *edid;
472
473	if (link->aux_mode)
474		ddc = &aconnector->dm_dp_aux.aux.ddc;
475	else
476		ddc = &aconnector->i2c->base;
477
478	/* some dongles read edid incorrectly the first time,
479	 * do check sum and retry to make sure read correct edid.
480	 */
481	do {
482
483		edid = drm_get_edid(&aconnector->base, ddc);
484
485		if (!edid)
486			return EDID_NO_RESPONSE;
487
488		sink->dc_edid.length = EDID_LENGTH * (edid->extensions + 1);
489		memmove(sink->dc_edid.raw_edid, (uint8_t *)edid, sink->dc_edid.length);
490
491		/* We don't need the original edid anymore */
492		kfree(edid);
493
494		edid_status = dm_helpers_parse_edid_caps(
495						ctx,
496						&sink->dc_edid,
497						&sink->edid_caps);
498
499	} while (edid_status == EDID_BAD_CHECKSUM && --retry > 0);
500
501	if (edid_status != EDID_OK)
502		DRM_ERROR("EDID err: %d, on connector: %s",
503				edid_status,
504				aconnector->base.name);
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
505
506	return edid_status;
507}
508
509void dm_set_dcn_clocks(struct dc_context *ctx, struct dc_clocks *clks)
510{
511	/* TODO: something */
512}
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}