2 * Copyright 2015 Advanced Micro Devices, Inc.
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:
11 * The above copyright notice and this permission notice shall be included in
12 * all copies or substantial portions of the Software.
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.
26 #include <linux/string.h>
27 #include <linux/acpi.h>
28 #include <linux/i2c.h>
30 #include <drm/drm_atomic.h>
31 #include <drm/drm_probe_helper.h>
32 #include <drm/amdgpu_drm.h>
33 #include <drm/drm_edid.h>
35 #include "dm_services.h"
38 #include "amdgpu_dm.h"
39 #include "amdgpu_dm_irq.h"
40 #include "amdgpu_dm_mst_types.h"
41 #include "dpcd_defs.h"
42 #include "dc/inc/core_types.h"
44 #include "dm_helpers.h"
45 #include "ddc_service_types.h"
48 static const uint8_t SYNAPTICS_DEVICE_ID[] = "SYNA";
50 /* dm_helpers_parse_edid_caps
54 * @edid: [in] pointer to edid
55 * edid_caps: [in] pointer to edid caps
59 enum dc_edid_status dm_helpers_parse_edid_caps(
61 const struct dc_edid *edid,
62 struct dc_edid_caps *edid_caps)
64 struct amdgpu_dm_connector *aconnector = link->priv;
65 struct drm_connector *connector = &aconnector->base;
66 struct edid *edid_buf = edid ? (struct edid *) edid->raw_edid : NULL;
73 enum dc_edid_status result = EDID_OK;
75 if (!edid_caps || !edid)
76 return EDID_BAD_INPUT;
78 if (!drm_edid_is_valid(edid_buf))
79 result = EDID_BAD_CHECKSUM;
81 edid_caps->manufacturer_id = (uint16_t) edid_buf->mfg_id[0] |
82 ((uint16_t) edid_buf->mfg_id[1])<<8;
83 edid_caps->product_id = (uint16_t) edid_buf->prod_code[0] |
84 ((uint16_t) edid_buf->prod_code[1])<<8;
85 edid_caps->serial_number = edid_buf->serial;
86 edid_caps->manufacture_week = edid_buf->mfg_week;
87 edid_caps->manufacture_year = edid_buf->mfg_year;
89 drm_edid_get_monitor_name(edid_buf,
90 edid_caps->display_name,
91 AUDIO_INFO_DISPLAY_NAME_SIZE_IN_CHARS);
93 edid_caps->edid_hdmi = connector->display_info.is_hdmi;
95 sad_count = drm_edid_to_sad((struct edid *) edid->raw_edid, &sads);
99 edid_caps->audio_mode_count = sad_count < DC_MAX_AUDIO_DESC_COUNT ? sad_count : DC_MAX_AUDIO_DESC_COUNT;
100 for (i = 0; i < edid_caps->audio_mode_count; ++i) {
101 struct cea_sad *sad = &sads[i];
103 edid_caps->audio_modes[i].format_code = sad->format;
104 edid_caps->audio_modes[i].channel_count = sad->channels + 1;
105 edid_caps->audio_modes[i].sample_rate = sad->freq;
106 edid_caps->audio_modes[i].sample_size = sad->byte2;
109 sadb_count = drm_edid_to_speaker_allocation((struct edid *) edid->raw_edid, &sadb);
111 if (sadb_count < 0) {
112 DRM_ERROR("Couldn't read Speaker Allocation Data Block: %d\n", sadb_count);
117 edid_caps->speaker_flags = sadb[0];
119 edid_caps->speaker_flags = DEFAULT_SPEAKER_LOCATION;
128 fill_dc_mst_payload_table_from_drm(struct dc_link *link,
130 struct drm_dp_mst_atomic_payload *target_payload,
131 struct dc_dp_mst_stream_allocation_table *table)
133 struct dc_dp_mst_stream_allocation_table new_table = { 0 };
134 struct dc_dp_mst_stream_allocation *sa;
135 struct link_mst_stream_allocation_table copy_of_link_table =
136 link->mst_stream_alloc_table;
139 int current_hw_table_stream_cnt = copy_of_link_table.stream_count;
140 struct link_mst_stream_allocation *dc_alloc;
142 /* TODO: refactor to set link->mst_stream_alloc_table directly if possible.*/
145 ©_of_link_table.stream_allocations[current_hw_table_stream_cnt];
146 dc_alloc->vcp_id = target_payload->vcpi;
147 dc_alloc->slot_count = target_payload->time_slots;
149 for (i = 0; i < copy_of_link_table.stream_count; i++) {
151 ©_of_link_table.stream_allocations[i];
153 if (dc_alloc->vcp_id == target_payload->vcpi) {
154 dc_alloc->vcp_id = 0;
155 dc_alloc->slot_count = 0;
159 ASSERT(i != copy_of_link_table.stream_count);
162 /* Fill payload info*/
163 for (i = 0; i < MAX_CONTROLLER_NUM; i++) {
165 ©_of_link_table.stream_allocations[i];
166 if (dc_alloc->vcp_id > 0 && dc_alloc->slot_count > 0) {
167 sa = &new_table.stream_allocations[new_table.stream_count];
168 sa->slot_count = dc_alloc->slot_count;
169 sa->vcp_id = dc_alloc->vcp_id;
170 new_table.stream_count++;
174 /* Overwrite the old table */
178 void dm_helpers_dp_update_branch_info(
179 struct dc_context *ctx,
180 const struct dc_link *link)
183 static void dm_helpers_construct_old_payload(
184 struct dc_link *link,
186 struct drm_dp_mst_atomic_payload *new_payload,
187 struct drm_dp_mst_atomic_payload *old_payload)
189 struct link_mst_stream_allocation_table current_link_table =
190 link->mst_stream_alloc_table;
191 struct link_mst_stream_allocation *dc_alloc;
194 *old_payload = *new_payload;
196 /* Set correct time_slots/PBN of old payload.
197 * other fields (delete & dsc_enabled) in
198 * struct drm_dp_mst_atomic_payload are don't care fields
199 * while calling drm_dp_remove_payload()
201 for (i = 0; i < current_link_table.stream_count; i++) {
203 ¤t_link_table.stream_allocations[i];
205 if (dc_alloc->vcp_id == new_payload->vcpi) {
206 old_payload->time_slots = dc_alloc->slot_count;
207 old_payload->pbn = dc_alloc->slot_count * pbn_per_slot;
212 /* make sure there is an old payload*/
213 ASSERT(i != current_link_table.stream_count);
218 * Writes payload allocation table in immediate downstream device.
220 bool dm_helpers_dp_mst_write_payload_allocation_table(
221 struct dc_context *ctx,
222 const struct dc_stream_state *stream,
223 struct dc_dp_mst_stream_allocation_table *proposed_table,
226 struct amdgpu_dm_connector *aconnector;
227 struct drm_dp_mst_topology_state *mst_state;
228 struct drm_dp_mst_atomic_payload *target_payload, *new_payload, old_payload;
229 struct drm_dp_mst_topology_mgr *mst_mgr;
231 aconnector = (struct amdgpu_dm_connector *)stream->dm_stream_context;
232 /* Accessing the connector state is required for vcpi_slots allocation
233 * and directly relies on behaviour in commit check
234 * that blocks before commit guaranteeing that the state
235 * is not gonna be swapped while still in use in commit tail */
237 if (!aconnector || !aconnector->mst_root)
240 mst_mgr = &aconnector->mst_root->mst_mgr;
241 mst_state = to_drm_dp_mst_topology_state(mst_mgr->base.state);
243 /* It's OK for this to fail */
244 new_payload = drm_atomic_get_mst_payload_state(mst_state, aconnector->mst_output_port);
247 target_payload = new_payload;
249 drm_dp_add_payload_part1(mst_mgr, mst_state, new_payload);
251 /* construct old payload by VCPI*/
252 dm_helpers_construct_old_payload(stream->link, mst_state->pbn_div,
253 new_payload, &old_payload);
254 target_payload = &old_payload;
256 drm_dp_remove_payload(mst_mgr, mst_state, &old_payload, new_payload);
259 /* mst_mgr->->payloads are VC payload notify MST branch using DPCD or
260 * AUX message. The sequence is slot 1-63 allocated sequence for each
261 * stream. AMD ASIC stream slot allocation should follow the same
262 * sequence. copy DRM MST allocation to dc */
263 fill_dc_mst_payload_table_from_drm(stream->link, enable, target_payload, proposed_table);
269 * poll pending down reply
271 void dm_helpers_dp_mst_poll_pending_down_reply(
272 struct dc_context *ctx,
273 const struct dc_link *link)
277 * Clear payload allocation table before enable MST DP link.
279 void dm_helpers_dp_mst_clear_payload_allocation_table(
280 struct dc_context *ctx,
281 const struct dc_link *link)
285 * Polls for ACT (allocation change trigger) handled and sends
286 * ALLOCATE_PAYLOAD message.
288 enum act_return_status dm_helpers_dp_mst_poll_for_allocation_change_trigger(
289 struct dc_context *ctx,
290 const struct dc_stream_state *stream)
292 struct amdgpu_dm_connector *aconnector;
293 struct drm_dp_mst_topology_mgr *mst_mgr;
296 aconnector = (struct amdgpu_dm_connector *)stream->dm_stream_context;
298 if (!aconnector || !aconnector->mst_root)
301 mst_mgr = &aconnector->mst_root->mst_mgr;
303 if (!mst_mgr->mst_state)
306 ret = drm_dp_check_act_status(mst_mgr);
314 bool dm_helpers_dp_mst_send_payload_allocation(
315 struct dc_context *ctx,
316 const struct dc_stream_state *stream,
319 struct amdgpu_dm_connector *aconnector;
320 struct drm_dp_mst_topology_state *mst_state;
321 struct drm_dp_mst_topology_mgr *mst_mgr;
322 struct drm_dp_mst_atomic_payload *payload;
323 enum mst_progress_status set_flag = MST_ALLOCATE_NEW_PAYLOAD;
324 enum mst_progress_status clr_flag = MST_CLEAR_ALLOCATED_PAYLOAD;
327 aconnector = (struct amdgpu_dm_connector *)stream->dm_stream_context;
329 if (!aconnector || !aconnector->mst_root)
332 mst_mgr = &aconnector->mst_root->mst_mgr;
333 mst_state = to_drm_dp_mst_topology_state(mst_mgr->base.state);
335 payload = drm_atomic_get_mst_payload_state(mst_state, aconnector->mst_output_port);
338 set_flag = MST_CLEAR_ALLOCATED_PAYLOAD;
339 clr_flag = MST_ALLOCATE_NEW_PAYLOAD;
343 ret = drm_dp_add_payload_part2(mst_mgr, mst_state->base.state, payload);
346 amdgpu_dm_set_mst_status(&aconnector->mst_status,
349 amdgpu_dm_set_mst_status(&aconnector->mst_status,
351 amdgpu_dm_set_mst_status(&aconnector->mst_status,
358 void dm_dtn_log_begin(struct dc_context *ctx,
359 struct dc_log_buffer_ctx *log_ctx)
361 static const char msg[] = "[dtn begin]\n";
368 dm_dtn_log_append_v(ctx, log_ctx, "%s", msg);
372 void dm_dtn_log_append_v(struct dc_context *ctx,
373 struct dc_log_buffer_ctx *log_ctx,
374 const char *msg, ...)
381 /* No context, redirect to dmesg. */
382 struct va_format vaf;
388 pr_info("%pV", &vaf);
394 /* Measure the output. */
396 n = vsnprintf(NULL, 0, msg, args);
402 /* Reallocate the string buffer as needed. */
403 total = log_ctx->pos + n + 1;
405 if (total > log_ctx->size) {
406 char *buf = (char *)kvcalloc(total, sizeof(char), GFP_KERNEL);
409 memcpy(buf, log_ctx->buf, log_ctx->pos);
413 log_ctx->size = total;
420 /* Write the formatted string to the log buffer. */
423 log_ctx->buf + log_ctx->pos,
424 log_ctx->size - log_ctx->pos,
433 void dm_dtn_log_end(struct dc_context *ctx,
434 struct dc_log_buffer_ctx *log_ctx)
436 static const char msg[] = "[dtn end]\n";
443 dm_dtn_log_append_v(ctx, log_ctx, "%s", msg);
446 bool dm_helpers_dp_mst_start_top_mgr(
447 struct dc_context *ctx,
448 const struct dc_link *link,
451 struct amdgpu_dm_connector *aconnector = link->priv;
455 DRM_ERROR("Failed to find connector for link!");
460 DRM_INFO("DM_MST: Differing MST start on aconnector: %p [id: %d]\n",
461 aconnector, aconnector->base.base.id);
465 DRM_INFO("DM_MST: starting TM on aconnector: %p [id: %d]\n",
466 aconnector, aconnector->base.base.id);
468 ret = drm_dp_mst_topology_mgr_set_mst(&aconnector->mst_mgr, true);
470 DRM_ERROR("DM_MST: Failed to set the device into MST mode!");
474 DRM_INFO("DM_MST: DP%x, %d-lane link detected\n", aconnector->mst_mgr.dpcd[0],
475 aconnector->mst_mgr.dpcd[2] & DP_MAX_LANE_COUNT_MASK);
480 bool dm_helpers_dp_mst_stop_top_mgr(
481 struct dc_context *ctx,
482 struct dc_link *link)
484 struct amdgpu_dm_connector *aconnector = link->priv;
487 DRM_ERROR("Failed to find connector for link!");
491 DRM_INFO("DM_MST: stopping TM on aconnector: %p [id: %d]\n",
492 aconnector, aconnector->base.base.id);
494 if (aconnector->mst_mgr.mst_state == true) {
495 drm_dp_mst_topology_mgr_set_mst(&aconnector->mst_mgr, false);
496 link->cur_link_settings.lane_count = 0;
502 bool dm_helpers_dp_read_dpcd(
503 struct dc_context *ctx,
504 const struct dc_link *link,
510 struct amdgpu_dm_connector *aconnector = link->priv;
513 DC_LOG_DC("Failed to find connector for link!\n");
517 return drm_dp_dpcd_read(&aconnector->dm_dp_aux.aux, address, data,
521 bool dm_helpers_dp_write_dpcd(
522 struct dc_context *ctx,
523 const struct dc_link *link,
528 struct amdgpu_dm_connector *aconnector = link->priv;
531 DRM_ERROR("Failed to find connector for link!");
535 return drm_dp_dpcd_write(&aconnector->dm_dp_aux.aux,
536 address, (uint8_t *)data, size) > 0;
539 bool dm_helpers_submit_i2c(
540 struct dc_context *ctx,
541 const struct dc_link *link,
542 struct i2c_command *cmd)
544 struct amdgpu_dm_connector *aconnector = link->priv;
545 struct i2c_msg *msgs;
547 int num = cmd->number_of_payloads;
551 DRM_ERROR("Failed to find connector for link!");
555 msgs = kcalloc(num, sizeof(struct i2c_msg), GFP_KERNEL);
560 for (i = 0; i < num; i++) {
561 msgs[i].flags = cmd->payloads[i].write ? 0 : I2C_M_RD;
562 msgs[i].addr = cmd->payloads[i].address;
563 msgs[i].len = cmd->payloads[i].length;
564 msgs[i].buf = cmd->payloads[i].data;
567 result = i2c_transfer(&aconnector->i2c->base, msgs, num) == num;
574 static bool execute_synaptics_rc_command(struct drm_dp_aux *aux,
581 bool success = false;
582 unsigned char rc_data[16] = {0};
583 unsigned char rc_offset[4] = {0};
584 unsigned char rc_length[2] = {0};
585 unsigned char rc_cmd = 0;
586 unsigned char rc_result = 0xFF;
592 memmove(rc_data, data, length);
593 ret = drm_dp_dpcd_write(aux, SYNAPTICS_RC_DATA, rc_data, sizeof(rc_data));
597 rc_offset[0] = (unsigned char) offset & 0xFF;
598 rc_offset[1] = (unsigned char) (offset >> 8) & 0xFF;
599 rc_offset[2] = (unsigned char) (offset >> 16) & 0xFF;
600 rc_offset[3] = (unsigned char) (offset >> 24) & 0xFF;
601 ret = drm_dp_dpcd_write(aux, SYNAPTICS_RC_OFFSET, rc_offset, sizeof(rc_offset));
604 rc_length[0] = (unsigned char) length & 0xFF;
605 rc_length[1] = (unsigned char) (length >> 8) & 0xFF;
606 ret = drm_dp_dpcd_write(aux, SYNAPTICS_RC_LENGTH, rc_length, sizeof(rc_length));
610 ret = drm_dp_dpcd_write(aux, SYNAPTICS_RC_COMMAND, &rc_cmd, sizeof(rc_cmd));
613 DRM_ERROR(" execute_synaptics_rc_command - write cmd ..., err = %d\n", ret);
617 // poll until active is 0
618 for (i = 0; i < 10; i++) {
619 drm_dp_dpcd_read(aux, SYNAPTICS_RC_COMMAND, &rc_cmd, sizeof(rc_cmd));
627 drm_dp_dpcd_read(aux, SYNAPTICS_RC_RESULT, &rc_result, sizeof(rc_result));
628 success = (rc_result == 0);
630 if (success && !is_write_cmd) {
632 drm_dp_dpcd_read(aux, SYNAPTICS_RC_DATA, data, length);
635 DC_LOG_DC(" execute_synaptics_rc_command - success = %d\n", success);
640 static void apply_synaptics_fifo_reset_wa(struct drm_dp_aux *aux)
642 unsigned char data[16] = {0};
644 DC_LOG_DC("Start apply_synaptics_fifo_reset_wa\n");
653 if (!execute_synaptics_rc_command(aux, true, 0x01, 5, 0, data))
657 if (!execute_synaptics_rc_command(aux, false, 0x31, 4, 0x220998, data))
660 data[0] &= (~(1 << 1)); // set bit 1 to 0
661 if (!execute_synaptics_rc_command(aux, true, 0x21, 4, 0x220998, data))
664 if (!execute_synaptics_rc_command(aux, false, 0x31, 4, 0x220D98, data))
667 data[0] &= (~(1 << 1)); // set bit 1 to 0
668 if (!execute_synaptics_rc_command(aux, true, 0x21, 4, 0x220D98, data))
671 if (!execute_synaptics_rc_command(aux, false, 0x31, 4, 0x221198, data))
674 data[0] &= (~(1 << 1)); // set bit 1 to 0
675 if (!execute_synaptics_rc_command(aux, true, 0x21, 4, 0x221198, data))
679 if (!execute_synaptics_rc_command(aux, false, 0x31, 4, 0x220998, data))
682 data[0] |= (1 << 1); // set bit 1 to 1
683 if (!execute_synaptics_rc_command(aux, true, 0x21, 4, 0x220998, data))
686 if (!execute_synaptics_rc_command(aux, false, 0x31, 4, 0x220D98, data))
689 data[0] |= (1 << 1); // set bit 1 to 1
691 if (!execute_synaptics_rc_command(aux, false, 0x31, 4, 0x221198, data))
694 data[0] |= (1 << 1); // set bit 1 to 1
695 if (!execute_synaptics_rc_command(aux, true, 0x21, 4, 0x221198, data))
699 if (!execute_synaptics_rc_command(aux, true, 0x02, 0, 0, NULL))
702 DC_LOG_DC("Done apply_synaptics_fifo_reset_wa\n");
705 static uint8_t write_dsc_enable_synaptics_non_virtual_dpcd_mst(
706 struct drm_dp_aux *aux,
707 const struct dc_stream_state *stream,
712 DC_LOG_DC("Configure DSC to non-virtual dpcd synaptics\n");
715 /* When DSC is enabled on previous boot and reboot with the hub,
716 * there is a chance that Synaptics hub gets stuck during reboot sequence.
717 * Applying a workaround to reset Synaptics SDP fifo before enabling the first stream
719 if (!stream->link->link_status.link_active &&
720 memcmp(stream->link->dpcd_caps.branch_dev_name,
721 (int8_t *)SYNAPTICS_DEVICE_ID, 4) == 0)
722 apply_synaptics_fifo_reset_wa(aux);
724 ret = drm_dp_dpcd_write(aux, DP_DSC_ENABLE, &enable, 1);
725 DRM_INFO("Send DSC enable to synaptics\n");
728 /* Synaptics hub not support virtual dpcd,
729 * external monitor occur garbage while disable DSC,
730 * Disable DSC only when entire link status turn to false,
732 if (!stream->link->link_status.link_active) {
733 ret = drm_dp_dpcd_write(aux, DP_DSC_ENABLE, &enable, 1);
734 DRM_INFO("Send DSC disable to synaptics\n");
741 bool dm_helpers_dp_write_dsc_enable(
742 struct dc_context *ctx,
743 const struct dc_stream_state *stream,
746 static const uint8_t DSC_DISABLE;
747 static const uint8_t DSC_DECODING = 0x01;
748 static const uint8_t DSC_PASSTHROUGH = 0x02;
750 struct amdgpu_dm_connector *aconnector;
751 struct drm_dp_mst_port *port;
752 uint8_t enable_dsc = enable ? DSC_DECODING : DSC_DISABLE;
753 uint8_t enable_passthrough = enable ? DSC_PASSTHROUGH : DSC_DISABLE;
759 if (stream->signal == SIGNAL_TYPE_DISPLAY_PORT_MST) {
760 aconnector = (struct amdgpu_dm_connector *)stream->dm_stream_context;
762 if (!aconnector->dsc_aux)
765 // apply w/a to synaptics
766 if (needs_dsc_aux_workaround(aconnector->dc_link) &&
767 (aconnector->mst_downstream_port_present.byte & 0x7) != 0x3)
768 return write_dsc_enable_synaptics_non_virtual_dpcd_mst(
769 aconnector->dsc_aux, stream, enable_dsc);
771 port = aconnector->mst_output_port;
774 if (port->passthrough_aux) {
775 ret = drm_dp_dpcd_write(port->passthrough_aux,
777 &enable_passthrough, 1);
778 DC_LOG_DC("Sent DSC pass-through enable to virtual dpcd port, ret = %u\n",
782 ret = drm_dp_dpcd_write(aconnector->dsc_aux,
783 DP_DSC_ENABLE, &enable_dsc, 1);
784 DC_LOG_DC("Sent DSC decoding enable to %s port, ret = %u\n",
785 (port->passthrough_aux) ? "remote RX" :
789 ret = drm_dp_dpcd_write(aconnector->dsc_aux,
790 DP_DSC_ENABLE, &enable_dsc, 1);
791 DC_LOG_DC("Sent DSC decoding disable to %s port, ret = %u\n",
792 (port->passthrough_aux) ? "remote RX" :
796 if (port->passthrough_aux) {
797 ret = drm_dp_dpcd_write(port->passthrough_aux,
799 &enable_passthrough, 1);
800 DC_LOG_DC("Sent DSC pass-through disable to virtual dpcd port, ret = %u\n",
806 if (stream->signal == SIGNAL_TYPE_DISPLAY_PORT || stream->signal == SIGNAL_TYPE_EDP) {
807 if (stream->sink->link->dpcd_caps.dongle_type == DISPLAY_DONGLE_NONE) {
808 ret = dm_helpers_dp_write_dpcd(ctx, stream->link, DP_DSC_ENABLE, &enable_dsc, 1);
809 DC_LOG_DC("Send DSC %s to SST RX\n", enable_dsc ? "enable" : "disable");
810 } else if (stream->sink->link->dpcd_caps.dongle_type == DISPLAY_DONGLE_DP_HDMI_CONVERTER) {
811 ret = dm_helpers_dp_write_dpcd(ctx, stream->link, DP_DSC_ENABLE, &enable_dsc, 1);
812 DC_LOG_DC("Send DSC %s to DP-HDMI PCON\n", enable_dsc ? "enable" : "disable");
819 bool dm_helpers_is_dp_sink_present(struct dc_link *link)
821 bool dp_sink_present;
822 struct amdgpu_dm_connector *aconnector = link->priv;
825 BUG_ON("Failed to find connector for link!");
829 mutex_lock(&aconnector->dm_dp_aux.aux.hw_mutex);
830 dp_sink_present = dc_link_is_dp_sink_present(link);
831 mutex_unlock(&aconnector->dm_dp_aux.aux.hw_mutex);
832 return dp_sink_present;
835 enum dc_edid_status dm_helpers_read_local_edid(
836 struct dc_context *ctx,
837 struct dc_link *link,
838 struct dc_sink *sink)
840 struct amdgpu_dm_connector *aconnector = link->priv;
841 struct drm_connector *connector = &aconnector->base;
842 struct i2c_adapter *ddc;
844 enum dc_edid_status edid_status;
848 ddc = &aconnector->dm_dp_aux.aux.ddc;
850 ddc = &aconnector->i2c->base;
852 /* some dongles read edid incorrectly the first time,
853 * do check sum and retry to make sure read correct edid.
857 edid = drm_get_edid(&aconnector->base, ddc);
859 /* DP Compliance Test 4.2.2.6 */
860 if (link->aux_mode && connector->edid_corrupt)
861 drm_dp_send_real_edid_checksum(&aconnector->dm_dp_aux.aux, connector->real_edid_checksum);
863 if (!edid && connector->edid_corrupt) {
864 connector->edid_corrupt = false;
865 return EDID_BAD_CHECKSUM;
869 return EDID_NO_RESPONSE;
871 sink->dc_edid.length = EDID_LENGTH * (edid->extensions + 1);
872 memmove(sink->dc_edid.raw_edid, (uint8_t *)edid, sink->dc_edid.length);
874 /* We don't need the original edid anymore */
877 edid_status = dm_helpers_parse_edid_caps(
882 } while (edid_status == EDID_BAD_CHECKSUM && --retry > 0);
884 if (edid_status != EDID_OK)
885 DRM_ERROR("EDID err: %d, on connector: %s",
887 aconnector->base.name);
889 /* DP Compliance Test 4.2.2.3 */
891 drm_dp_send_real_edid_checksum(&aconnector->dm_dp_aux.aux, sink->dc_edid.raw_edid[sink->dc_edid.length-1]);
895 int dm_helper_dmub_aux_transfer_sync(
896 struct dc_context *ctx,
897 const struct dc_link *link,
898 struct aux_payload *payload,
899 enum aux_return_code_type *operation_result)
901 return amdgpu_dm_process_dmub_aux_transfer_sync(ctx, link->link_index, payload,
905 int dm_helpers_dmub_set_config_sync(struct dc_context *ctx,
906 const struct dc_link *link,
907 struct set_config_cmd_payload *payload,
908 enum set_config_status *operation_result)
910 return amdgpu_dm_process_dmub_set_config_sync(ctx, link->link_index, payload,
914 void dm_set_dcn_clocks(struct dc_context *ctx, struct dc_clocks *clks)
916 /* TODO: something */
919 void dm_helpers_smu_timeout(struct dc_context *ctx, unsigned int msg_id, unsigned int param, unsigned int timeout_us)
922 //amdgpu_device_gpu_recover(dc_context->driver-context, NULL);
925 void dm_helpers_init_panel_settings(
926 struct dc_context *ctx,
927 struct dc_panel_config *panel_config,
928 struct dc_sink *sink)
930 // Extra Panel Power Sequence
931 panel_config->pps.extra_t3_ms = sink->edid_caps.panel_patch.extra_t3_ms;
932 panel_config->pps.extra_t7_ms = sink->edid_caps.panel_patch.extra_t7_ms;
933 panel_config->pps.extra_delay_backlight_off = sink->edid_caps.panel_patch.extra_delay_backlight_off;
934 panel_config->pps.extra_post_t7_ms = 0;
935 panel_config->pps.extra_pre_t11_ms = 0;
936 panel_config->pps.extra_t12_ms = sink->edid_caps.panel_patch.extra_t12_ms;
937 panel_config->pps.extra_post_OUI_ms = 0;
939 panel_config->dsc.disable_dsc_edp = false;
940 panel_config->dsc.force_dsc_edp_policy = 0;
943 void dm_helpers_override_panel_settings(
944 struct dc_context *ctx,
945 struct dc_panel_config *panel_config)
948 if (amdgpu_dc_debug_mask & DC_DISABLE_DSC) {
949 panel_config->dsc.disable_dsc_edp = true;
953 void *dm_helpers_allocate_gpu_mem(
954 struct dc_context *ctx,
955 enum dc_gpu_mem_alloc_type type,
959 struct amdgpu_device *adev = ctx->driver_context;
960 struct dal_allocation *da;
961 u32 domain = (type == DC_MEM_ALLOC_TYPE_GART) ?
962 AMDGPU_GEM_DOMAIN_GTT : AMDGPU_GEM_DOMAIN_VRAM;
965 da = kzalloc(sizeof(struct dal_allocation), GFP_KERNEL);
969 ret = amdgpu_bo_create_kernel(adev, size, PAGE_SIZE,
971 &da->gpu_addr, &da->cpu_ptr);
973 *addr = da->gpu_addr;
980 /* add da to list in dm */
981 list_add(&da->list, &adev->dm.da_list);
986 void dm_helpers_free_gpu_mem(
987 struct dc_context *ctx,
988 enum dc_gpu_mem_alloc_type type,
991 struct amdgpu_device *adev = ctx->driver_context;
992 struct dal_allocation *da;
994 /* walk the da list in DM */
995 list_for_each_entry(da, &adev->dm.da_list, list) {
996 if (pvMem == da->cpu_ptr) {
997 amdgpu_bo_free_kernel(&da->bo, &da->gpu_addr, &da->cpu_ptr);
1005 bool dm_helpers_dmub_outbox_interrupt_control(struct dc_context *ctx, bool enable)
1007 enum dc_irq_source irq_source;
1010 irq_source = DC_IRQ_SOURCE_DMCUB_OUTBOX;
1012 ret = dc_interrupt_set(ctx->dc, irq_source, enable);
1014 DRM_DEBUG_DRIVER("Dmub trace irq %sabling: r=%d\n",
1015 enable ? "en" : "dis", ret);
1019 void dm_helpers_mst_enable_stream_features(const struct dc_stream_state *stream)
1021 /* TODO: virtual DPCD */
1022 struct dc_link *link = stream->link;
1023 union down_spread_ctrl old_downspread;
1024 union down_spread_ctrl new_downspread;
1026 if (link->aux_access_disabled)
1029 if (!dm_helpers_dp_read_dpcd(link->ctx, link, DP_DOWNSPREAD_CTRL,
1030 &old_downspread.raw,
1031 sizeof(old_downspread)))
1034 new_downspread.raw = old_downspread.raw;
1035 new_downspread.bits.IGNORE_MSA_TIMING_PARAM =
1036 (stream->ignore_msa_timing_param) ? 1 : 0;
1038 if (new_downspread.raw != old_downspread.raw)
1039 dm_helpers_dp_write_dpcd(link->ctx, link, DP_DOWNSPREAD_CTRL,
1040 &new_downspread.raw,
1041 sizeof(new_downspread));
1044 bool dm_helpers_dp_handle_test_pattern_request(
1045 struct dc_context *ctx,
1046 const struct dc_link *link,
1047 union link_test_pattern dpcd_test_pattern,
1048 union test_misc dpcd_test_params)
1050 enum dp_test_pattern test_pattern;
1051 enum dp_test_pattern_color_space test_pattern_color_space =
1052 DP_TEST_PATTERN_COLOR_SPACE_UNDEFINED;
1053 enum dc_color_depth requestColorDepth = COLOR_DEPTH_UNDEFINED;
1054 enum dc_pixel_encoding requestPixelEncoding = PIXEL_ENCODING_UNDEFINED;
1055 struct pipe_ctx *pipes = link->dc->current_state->res_ctx.pipe_ctx;
1056 struct pipe_ctx *pipe_ctx = NULL;
1057 struct amdgpu_dm_connector *aconnector = link->priv;
1060 for (i = 0; i < MAX_PIPES; i++) {
1061 if (pipes[i].stream == NULL)
1064 if (pipes[i].stream->link == link && !pipes[i].top_pipe &&
1065 !pipes[i].prev_odm_pipe) {
1066 pipe_ctx = &pipes[i];
1071 if (pipe_ctx == NULL)
1074 switch (dpcd_test_pattern.bits.PATTERN) {
1075 case LINK_TEST_PATTERN_COLOR_RAMP:
1076 test_pattern = DP_TEST_PATTERN_COLOR_RAMP;
1078 case LINK_TEST_PATTERN_VERTICAL_BARS:
1079 test_pattern = DP_TEST_PATTERN_VERTICAL_BARS;
1080 break; /* black and white */
1081 case LINK_TEST_PATTERN_COLOR_SQUARES:
1082 test_pattern = (dpcd_test_params.bits.DYN_RANGE ==
1083 TEST_DYN_RANGE_VESA ?
1084 DP_TEST_PATTERN_COLOR_SQUARES :
1085 DP_TEST_PATTERN_COLOR_SQUARES_CEA);
1088 test_pattern = DP_TEST_PATTERN_VIDEO_MODE;
1092 if (dpcd_test_params.bits.CLR_FORMAT == 0)
1093 test_pattern_color_space = DP_TEST_PATTERN_COLOR_SPACE_RGB;
1095 test_pattern_color_space = dpcd_test_params.bits.YCBCR_COEFS ?
1096 DP_TEST_PATTERN_COLOR_SPACE_YCBCR709 :
1097 DP_TEST_PATTERN_COLOR_SPACE_YCBCR601;
1099 switch (dpcd_test_params.bits.BPC) {
1101 requestColorDepth = COLOR_DEPTH_666;
1104 requestColorDepth = COLOR_DEPTH_888;
1107 requestColorDepth = COLOR_DEPTH_101010;
1110 requestColorDepth = COLOR_DEPTH_121212;
1116 switch (dpcd_test_params.bits.CLR_FORMAT) {
1118 requestPixelEncoding = PIXEL_ENCODING_RGB;
1121 requestPixelEncoding = PIXEL_ENCODING_YCBCR422;
1124 requestPixelEncoding = PIXEL_ENCODING_YCBCR444;
1127 requestPixelEncoding = PIXEL_ENCODING_RGB;
1131 if ((requestColorDepth != COLOR_DEPTH_UNDEFINED
1132 && pipe_ctx->stream->timing.display_color_depth != requestColorDepth)
1133 || (requestPixelEncoding != PIXEL_ENCODING_UNDEFINED
1134 && pipe_ctx->stream->timing.pixel_encoding != requestPixelEncoding)) {
1135 DC_LOG_DEBUG("%s: original bpc %d pix encoding %d, changing to %d %d\n",
1137 pipe_ctx->stream->timing.display_color_depth,
1138 pipe_ctx->stream->timing.pixel_encoding,
1140 requestPixelEncoding);
1141 pipe_ctx->stream->timing.display_color_depth = requestColorDepth;
1142 pipe_ctx->stream->timing.pixel_encoding = requestPixelEncoding;
1144 dc_link_update_dsc_config(pipe_ctx);
1146 aconnector->timing_changed = true;
1147 /* store current timing */
1148 if (aconnector->timing_requested)
1149 *aconnector->timing_requested = pipe_ctx->stream->timing;
1151 DC_LOG_ERROR("%s: timing storage failed\n", __func__);
1155 dc_link_dp_set_test_pattern(
1156 (struct dc_link *) link,
1158 test_pattern_color_space,
1166 void dm_set_phyd32clk(struct dc_context *ctx, int freq_khz)
1171 void dm_helpers_enable_periodic_detection(struct dc_context *ctx, bool enable)
1173 /* TODO: add periodic detection implementation */
1176 void dm_helpers_dp_mst_update_branch_bandwidth(
1177 struct dc_context *ctx,
1178 struct dc_link *link)
1183 static bool dm_is_freesync_pcon_whitelist(const uint32_t branch_dev_id)
1185 bool ret_val = false;
1187 switch (branch_dev_id) {
1188 case DP_BRANCH_DEVICE_ID_0060AD:
1189 case DP_BRANCH_DEVICE_ID_00E04C:
1190 case DP_BRANCH_DEVICE_ID_90CC24:
1200 enum adaptive_sync_type dm_get_adaptive_sync_support_type(struct dc_link *link)
1202 struct dpcd_caps *dpcd_caps = &link->dpcd_caps;
1203 enum adaptive_sync_type as_type = ADAPTIVE_SYNC_TYPE_NONE;
1205 switch (dpcd_caps->dongle_type) {
1206 case DISPLAY_DONGLE_DP_HDMI_CONVERTER:
1207 if (dpcd_caps->adaptive_sync_caps.dp_adap_sync_caps.bits.ADAPTIVE_SYNC_SDP_SUPPORT == true &&
1208 dpcd_caps->allow_invalid_MSA_timing_param == true &&
1209 dm_is_freesync_pcon_whitelist(dpcd_caps->branch_dev_id))
1210 as_type = FREESYNC_TYPE_PCON_IN_WHITELIST;