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>
34 #include <drm/drm_fixed.h>
36 #include "dm_services.h"
39 #include "amdgpu_dm.h"
40 #include "amdgpu_dm_irq.h"
41 #include "amdgpu_dm_mst_types.h"
42 #include "dpcd_defs.h"
43 #include "dc/inc/core_types.h"
45 #include "dm_helpers.h"
46 #include "ddc_service_types.h"
48 static u32 edid_extract_panel_id(struct edid *edid)
50 return (u32)edid->mfg_id[0] << 24 |
51 (u32)edid->mfg_id[1] << 16 |
52 (u32)EDID_PRODUCT_ID(edid);
55 static void apply_edid_quirks(struct edid *edid, struct dc_edid_caps *edid_caps)
57 uint32_t panel_id = edid_extract_panel_id(edid);
60 /* Workaround for some monitors which does not work well with FAMS */
61 case drm_edid_encode_panel_id('S', 'A', 'M', 0x0E5E):
62 case drm_edid_encode_panel_id('S', 'A', 'M', 0x7053):
63 case drm_edid_encode_panel_id('S', 'A', 'M', 0x71AC):
64 DRM_DEBUG_DRIVER("Disabling FAMS on monitor with panel id %X\n", panel_id);
65 edid_caps->panel_patch.disable_fams = true;
67 /* Workaround for some monitors that do not clear DPCD 0x317 if FreeSync is unsupported */
68 case drm_edid_encode_panel_id('A', 'U', 'O', 0xA7AB):
69 case drm_edid_encode_panel_id('A', 'U', 'O', 0xE69B):
70 case drm_edid_encode_panel_id('B', 'O', 'E', 0x092A):
71 case drm_edid_encode_panel_id('L', 'G', 'D', 0x06D1):
72 DRM_DEBUG_DRIVER("Clearing DPCD 0x317 on monitor with panel id %X\n", panel_id);
73 edid_caps->panel_patch.remove_sink_ext_caps = true;
81 * dm_helpers_parse_edid_caps() - Parse edid caps
83 * @link: current detected link
84 * @edid: [in] pointer to edid
85 * @edid_caps: [in] pointer to edid caps
89 enum dc_edid_status dm_helpers_parse_edid_caps(
91 const struct dc_edid *edid,
92 struct dc_edid_caps *edid_caps)
94 struct amdgpu_dm_connector *aconnector = link->priv;
95 struct drm_connector *connector = &aconnector->base;
96 struct edid *edid_buf = edid ? (struct edid *) edid->raw_edid : NULL;
101 uint8_t *sadb = NULL;
103 enum dc_edid_status result = EDID_OK;
105 if (!edid_caps || !edid)
106 return EDID_BAD_INPUT;
108 if (!drm_edid_is_valid(edid_buf))
109 result = EDID_BAD_CHECKSUM;
111 edid_caps->manufacturer_id = (uint16_t) edid_buf->mfg_id[0] |
112 ((uint16_t) edid_buf->mfg_id[1])<<8;
113 edid_caps->product_id = (uint16_t) edid_buf->prod_code[0] |
114 ((uint16_t) edid_buf->prod_code[1])<<8;
115 edid_caps->serial_number = edid_buf->serial;
116 edid_caps->manufacture_week = edid_buf->mfg_week;
117 edid_caps->manufacture_year = edid_buf->mfg_year;
119 drm_edid_get_monitor_name(edid_buf,
120 edid_caps->display_name,
121 AUDIO_INFO_DISPLAY_NAME_SIZE_IN_CHARS);
123 edid_caps->edid_hdmi = connector->display_info.is_hdmi;
125 apply_edid_quirks(edid_buf, edid_caps);
127 sad_count = drm_edid_to_sad((struct edid *) edid->raw_edid, &sads);
131 edid_caps->audio_mode_count = min(sad_count, DC_MAX_AUDIO_DESC_COUNT);
132 for (i = 0; i < edid_caps->audio_mode_count; ++i) {
133 struct cea_sad *sad = &sads[i];
135 edid_caps->audio_modes[i].format_code = sad->format;
136 edid_caps->audio_modes[i].channel_count = sad->channels + 1;
137 edid_caps->audio_modes[i].sample_rate = sad->freq;
138 edid_caps->audio_modes[i].sample_size = sad->byte2;
141 sadb_count = drm_edid_to_speaker_allocation((struct edid *) edid->raw_edid, &sadb);
143 if (sadb_count < 0) {
144 DRM_ERROR("Couldn't read Speaker Allocation Data Block: %d\n", sadb_count);
149 edid_caps->speaker_flags = sadb[0];
151 edid_caps->speaker_flags = DEFAULT_SPEAKER_LOCATION;
160 fill_dc_mst_payload_table_from_drm(struct dc_link *link,
162 struct drm_dp_mst_atomic_payload *target_payload,
163 struct dc_dp_mst_stream_allocation_table *table)
165 struct dc_dp_mst_stream_allocation_table new_table = { 0 };
166 struct dc_dp_mst_stream_allocation *sa;
167 struct link_mst_stream_allocation_table copy_of_link_table =
168 link->mst_stream_alloc_table;
171 int current_hw_table_stream_cnt = copy_of_link_table.stream_count;
172 struct link_mst_stream_allocation *dc_alloc;
174 /* TODO: refactor to set link->mst_stream_alloc_table directly if possible.*/
177 ©_of_link_table.stream_allocations[current_hw_table_stream_cnt];
178 dc_alloc->vcp_id = target_payload->vcpi;
179 dc_alloc->slot_count = target_payload->time_slots;
181 for (i = 0; i < copy_of_link_table.stream_count; i++) {
183 ©_of_link_table.stream_allocations[i];
185 if (dc_alloc->vcp_id == target_payload->vcpi) {
186 dc_alloc->vcp_id = 0;
187 dc_alloc->slot_count = 0;
191 ASSERT(i != copy_of_link_table.stream_count);
194 /* Fill payload info*/
195 for (i = 0; i < MAX_CONTROLLER_NUM; i++) {
197 ©_of_link_table.stream_allocations[i];
198 if (dc_alloc->vcp_id > 0 && dc_alloc->slot_count > 0) {
199 sa = &new_table.stream_allocations[new_table.stream_count];
200 sa->slot_count = dc_alloc->slot_count;
201 sa->vcp_id = dc_alloc->vcp_id;
202 new_table.stream_count++;
206 /* Overwrite the old table */
210 void dm_helpers_dp_update_branch_info(
211 struct dc_context *ctx,
212 const struct dc_link *link)
215 static void dm_helpers_construct_old_payload(
216 struct drm_dp_mst_topology_mgr *mgr,
217 struct drm_dp_mst_topology_state *mst_state,
218 struct drm_dp_mst_atomic_payload *new_payload,
219 struct drm_dp_mst_atomic_payload *old_payload)
221 struct drm_dp_mst_atomic_payload *pos;
222 int pbn_per_slot = dfixed_trunc(mst_state->pbn_div);
223 u8 next_payload_vc_start = mgr->next_start_slot;
224 u8 payload_vc_start = new_payload->vc_start_slot;
225 u8 allocated_time_slots;
227 *old_payload = *new_payload;
229 /* Set correct time_slots/PBN of old payload.
230 * other fields (delete & dsc_enabled) in
231 * struct drm_dp_mst_atomic_payload are don't care fields
232 * while calling drm_dp_remove_payload_part2()
234 list_for_each_entry(pos, &mst_state->payloads, next) {
235 if (pos != new_payload &&
236 pos->vc_start_slot > payload_vc_start &&
237 pos->vc_start_slot < next_payload_vc_start)
238 next_payload_vc_start = pos->vc_start_slot;
241 allocated_time_slots = next_payload_vc_start - payload_vc_start;
243 old_payload->time_slots = allocated_time_slots;
244 old_payload->pbn = allocated_time_slots * pbn_per_slot;
248 * Writes payload allocation table in immediate downstream device.
250 bool dm_helpers_dp_mst_write_payload_allocation_table(
251 struct dc_context *ctx,
252 const struct dc_stream_state *stream,
253 struct dc_dp_mst_stream_allocation_table *proposed_table,
256 struct amdgpu_dm_connector *aconnector;
257 struct drm_dp_mst_topology_state *mst_state;
258 struct drm_dp_mst_atomic_payload *target_payload, *new_payload, old_payload;
259 struct drm_dp_mst_topology_mgr *mst_mgr;
261 aconnector = (struct amdgpu_dm_connector *)stream->dm_stream_context;
262 /* Accessing the connector state is required for vcpi_slots allocation
263 * and directly relies on behaviour in commit check
264 * that blocks before commit guaranteeing that the state
265 * is not gonna be swapped while still in use in commit tail
268 if (!aconnector || !aconnector->mst_root)
271 mst_mgr = &aconnector->mst_root->mst_mgr;
272 mst_state = to_drm_dp_mst_topology_state(mst_mgr->base.state);
273 new_payload = drm_atomic_get_mst_payload_state(mst_state, aconnector->mst_output_port);
276 target_payload = new_payload;
278 /* It's OK for this to fail */
279 drm_dp_add_payload_part1(mst_mgr, mst_state, new_payload);
281 /* construct old payload by VCPI*/
282 dm_helpers_construct_old_payload(mst_mgr, mst_state,
283 new_payload, &old_payload);
284 target_payload = &old_payload;
286 drm_dp_remove_payload_part1(mst_mgr, mst_state, new_payload);
289 /* mst_mgr->->payloads are VC payload notify MST branch using DPCD or
290 * AUX message. The sequence is slot 1-63 allocated sequence for each
291 * stream. AMD ASIC stream slot allocation should follow the same
292 * sequence. copy DRM MST allocation to dc
294 fill_dc_mst_payload_table_from_drm(stream->link, enable, target_payload, proposed_table);
300 * poll pending down reply
302 void dm_helpers_dp_mst_poll_pending_down_reply(
303 struct dc_context *ctx,
304 const struct dc_link *link)
308 * Clear payload allocation table before enable MST DP link.
310 void dm_helpers_dp_mst_clear_payload_allocation_table(
311 struct dc_context *ctx,
312 const struct dc_link *link)
316 * Polls for ACT (allocation change trigger) handled and sends
317 * ALLOCATE_PAYLOAD message.
319 enum act_return_status dm_helpers_dp_mst_poll_for_allocation_change_trigger(
320 struct dc_context *ctx,
321 const struct dc_stream_state *stream)
323 struct amdgpu_dm_connector *aconnector;
324 struct drm_dp_mst_topology_mgr *mst_mgr;
327 aconnector = (struct amdgpu_dm_connector *)stream->dm_stream_context;
329 if (!aconnector || !aconnector->mst_root)
332 mst_mgr = &aconnector->mst_root->mst_mgr;
334 if (!mst_mgr->mst_state)
337 ret = drm_dp_check_act_status(mst_mgr);
345 void dm_helpers_dp_mst_send_payload_allocation(
346 struct dc_context *ctx,
347 const struct dc_stream_state *stream)
349 struct amdgpu_dm_connector *aconnector;
350 struct drm_dp_mst_topology_state *mst_state;
351 struct drm_dp_mst_topology_mgr *mst_mgr;
352 struct drm_dp_mst_atomic_payload *new_payload;
353 enum mst_progress_status set_flag = MST_ALLOCATE_NEW_PAYLOAD;
354 enum mst_progress_status clr_flag = MST_CLEAR_ALLOCATED_PAYLOAD;
357 aconnector = (struct amdgpu_dm_connector *)stream->dm_stream_context;
359 if (!aconnector || !aconnector->mst_root)
362 mst_mgr = &aconnector->mst_root->mst_mgr;
363 mst_state = to_drm_dp_mst_topology_state(mst_mgr->base.state);
364 new_payload = drm_atomic_get_mst_payload_state(mst_state, aconnector->mst_output_port);
366 ret = drm_dp_add_payload_part2(mst_mgr, mst_state->base.state, new_payload);
369 amdgpu_dm_set_mst_status(&aconnector->mst_status,
372 amdgpu_dm_set_mst_status(&aconnector->mst_status,
374 amdgpu_dm_set_mst_status(&aconnector->mst_status,
379 void dm_helpers_dp_mst_update_mst_mgr_for_deallocation(
380 struct dc_context *ctx,
381 const struct dc_stream_state *stream)
383 struct amdgpu_dm_connector *aconnector;
384 struct drm_dp_mst_topology_state *mst_state;
385 struct drm_dp_mst_topology_mgr *mst_mgr;
386 struct drm_dp_mst_atomic_payload *new_payload, old_payload;
387 enum mst_progress_status set_flag = MST_CLEAR_ALLOCATED_PAYLOAD;
388 enum mst_progress_status clr_flag = MST_ALLOCATE_NEW_PAYLOAD;
390 aconnector = (struct amdgpu_dm_connector *)stream->dm_stream_context;
392 if (!aconnector || !aconnector->mst_root)
395 mst_mgr = &aconnector->mst_root->mst_mgr;
396 mst_state = to_drm_dp_mst_topology_state(mst_mgr->base.state);
397 new_payload = drm_atomic_get_mst_payload_state(mst_state, aconnector->mst_output_port);
398 dm_helpers_construct_old_payload(mst_mgr, mst_state,
399 new_payload, &old_payload);
401 drm_dp_remove_payload_part2(mst_mgr, mst_state, &old_payload, new_payload);
403 amdgpu_dm_set_mst_status(&aconnector->mst_status, set_flag, true);
404 amdgpu_dm_set_mst_status(&aconnector->mst_status, clr_flag, false);
407 void dm_dtn_log_begin(struct dc_context *ctx,
408 struct dc_log_buffer_ctx *log_ctx)
410 static const char msg[] = "[dtn begin]\n";
417 dm_dtn_log_append_v(ctx, log_ctx, "%s", msg);
421 void dm_dtn_log_append_v(struct dc_context *ctx,
422 struct dc_log_buffer_ctx *log_ctx,
423 const char *msg, ...)
430 /* No context, redirect to dmesg. */
431 struct va_format vaf;
437 pr_info("%pV", &vaf);
443 /* Measure the output. */
445 n = vsnprintf(NULL, 0, msg, args);
451 /* Reallocate the string buffer as needed. */
452 total = log_ctx->pos + n + 1;
454 if (total > log_ctx->size) {
455 char *buf = kvcalloc(total, sizeof(char), GFP_KERNEL);
458 memcpy(buf, log_ctx->buf, log_ctx->pos);
462 log_ctx->size = total;
469 /* Write the formatted string to the log buffer. */
472 log_ctx->buf + log_ctx->pos,
473 log_ctx->size - log_ctx->pos,
482 void dm_dtn_log_end(struct dc_context *ctx,
483 struct dc_log_buffer_ctx *log_ctx)
485 static const char msg[] = "[dtn end]\n";
492 dm_dtn_log_append_v(ctx, log_ctx, "%s", msg);
495 bool dm_helpers_dp_mst_start_top_mgr(
496 struct dc_context *ctx,
497 const struct dc_link *link,
500 struct amdgpu_dm_connector *aconnector = link->priv;
504 DRM_ERROR("Failed to find connector for link!");
509 DRM_INFO("DM_MST: Differing MST start on aconnector: %p [id: %d]\n",
510 aconnector, aconnector->base.base.id);
514 DRM_INFO("DM_MST: starting TM on aconnector: %p [id: %d]\n",
515 aconnector, aconnector->base.base.id);
517 ret = drm_dp_mst_topology_mgr_set_mst(&aconnector->mst_mgr, true);
519 DRM_ERROR("DM_MST: Failed to set the device into MST mode!");
523 DRM_INFO("DM_MST: DP%x, %d-lane link detected\n", aconnector->mst_mgr.dpcd[0],
524 aconnector->mst_mgr.dpcd[2] & DP_MAX_LANE_COUNT_MASK);
529 bool dm_helpers_dp_mst_stop_top_mgr(
530 struct dc_context *ctx,
531 struct dc_link *link)
533 struct amdgpu_dm_connector *aconnector = link->priv;
536 DRM_ERROR("Failed to find connector for link!");
540 DRM_INFO("DM_MST: stopping TM on aconnector: %p [id: %d]\n",
541 aconnector, aconnector->base.base.id);
543 if (aconnector->mst_mgr.mst_state == true) {
544 drm_dp_mst_topology_mgr_set_mst(&aconnector->mst_mgr, false);
545 link->cur_link_settings.lane_count = 0;
551 bool dm_helpers_dp_read_dpcd(
552 struct dc_context *ctx,
553 const struct dc_link *link,
559 struct amdgpu_dm_connector *aconnector = link->priv;
564 return drm_dp_dpcd_read(&aconnector->dm_dp_aux.aux, address, data,
568 bool dm_helpers_dp_write_dpcd(
569 struct dc_context *ctx,
570 const struct dc_link *link,
575 struct amdgpu_dm_connector *aconnector = link->priv;
578 DRM_ERROR("Failed to find connector for link!");
582 return drm_dp_dpcd_write(&aconnector->dm_dp_aux.aux,
583 address, (uint8_t *)data, size) > 0;
586 bool dm_helpers_submit_i2c(
587 struct dc_context *ctx,
588 const struct dc_link *link,
589 struct i2c_command *cmd)
591 struct amdgpu_dm_connector *aconnector = link->priv;
592 struct i2c_msg *msgs;
594 int num = cmd->number_of_payloads;
598 DRM_ERROR("Failed to find connector for link!");
602 msgs = kcalloc(num, sizeof(struct i2c_msg), GFP_KERNEL);
607 for (i = 0; i < num; i++) {
608 msgs[i].flags = cmd->payloads[i].write ? 0 : I2C_M_RD;
609 msgs[i].addr = cmd->payloads[i].address;
610 msgs[i].len = cmd->payloads[i].length;
611 msgs[i].buf = cmd->payloads[i].data;
614 result = i2c_transfer(&aconnector->i2c->base, msgs, num) == num;
621 static bool execute_synaptics_rc_command(struct drm_dp_aux *aux,
628 bool success = false;
629 unsigned char rc_data[16] = {0};
630 unsigned char rc_offset[4] = {0};
631 unsigned char rc_length[2] = {0};
632 unsigned char rc_cmd = 0;
633 unsigned char rc_result = 0xFF;
639 memmove(rc_data, data, length);
640 ret = drm_dp_dpcd_write(aux, SYNAPTICS_RC_DATA, rc_data, sizeof(rc_data));
644 rc_offset[0] = (unsigned char) offset & 0xFF;
645 rc_offset[1] = (unsigned char) (offset >> 8) & 0xFF;
646 rc_offset[2] = (unsigned char) (offset >> 16) & 0xFF;
647 rc_offset[3] = (unsigned char) (offset >> 24) & 0xFF;
648 ret = drm_dp_dpcd_write(aux, SYNAPTICS_RC_OFFSET, rc_offset, sizeof(rc_offset));
651 rc_length[0] = (unsigned char) length & 0xFF;
652 rc_length[1] = (unsigned char) (length >> 8) & 0xFF;
653 ret = drm_dp_dpcd_write(aux, SYNAPTICS_RC_LENGTH, rc_length, sizeof(rc_length));
657 ret = drm_dp_dpcd_write(aux, SYNAPTICS_RC_COMMAND, &rc_cmd, sizeof(rc_cmd));
660 DRM_ERROR("%s: write cmd ..., err = %d\n", __func__, ret);
664 // poll until active is 0
665 for (i = 0; i < 10; i++) {
666 drm_dp_dpcd_read(aux, SYNAPTICS_RC_COMMAND, &rc_cmd, sizeof(rc_cmd));
674 drm_dp_dpcd_read(aux, SYNAPTICS_RC_RESULT, &rc_result, sizeof(rc_result));
675 success = (rc_result == 0);
677 if (success && !is_write_cmd) {
679 drm_dp_dpcd_read(aux, SYNAPTICS_RC_DATA, data, length);
682 drm_dbg_dp(aux->drm_dev, "success = %d\n", success);
687 static void apply_synaptics_fifo_reset_wa(struct drm_dp_aux *aux)
689 unsigned char data[16] = {0};
691 drm_dbg_dp(aux->drm_dev, "Start\n");
700 if (!execute_synaptics_rc_command(aux, true, 0x01, 5, 0, data))
704 if (!execute_synaptics_rc_command(aux, false, 0x31, 4, 0x220998, data))
707 data[0] &= (~(1 << 1)); // set bit 1 to 0
708 if (!execute_synaptics_rc_command(aux, true, 0x21, 4, 0x220998, data))
711 if (!execute_synaptics_rc_command(aux, false, 0x31, 4, 0x220D98, data))
714 data[0] &= (~(1 << 1)); // set bit 1 to 0
715 if (!execute_synaptics_rc_command(aux, true, 0x21, 4, 0x220D98, data))
718 if (!execute_synaptics_rc_command(aux, false, 0x31, 4, 0x221198, data))
721 data[0] &= (~(1 << 1)); // set bit 1 to 0
722 if (!execute_synaptics_rc_command(aux, true, 0x21, 4, 0x221198, data))
726 if (!execute_synaptics_rc_command(aux, false, 0x31, 4, 0x220998, data))
729 data[0] |= (1 << 1); // set bit 1 to 1
730 if (!execute_synaptics_rc_command(aux, true, 0x21, 4, 0x220998, data))
733 if (!execute_synaptics_rc_command(aux, false, 0x31, 4, 0x220D98, data))
736 data[0] |= (1 << 1); // set bit 1 to 1
738 if (!execute_synaptics_rc_command(aux, false, 0x31, 4, 0x221198, data))
741 data[0] |= (1 << 1); // set bit 1 to 1
742 if (!execute_synaptics_rc_command(aux, true, 0x21, 4, 0x221198, data))
746 if (!execute_synaptics_rc_command(aux, true, 0x02, 0, 0, NULL))
749 drm_dbg_dp(aux->drm_dev, "Done\n");
753 static const uint8_t SYNAPTICS_DEVICE_ID[] = "SYNA";
755 static uint8_t write_dsc_enable_synaptics_non_virtual_dpcd_mst(
756 struct drm_dp_aux *aux,
757 const struct dc_stream_state *stream,
762 drm_dbg_dp(aux->drm_dev,
763 "Configure DSC to non-virtual dpcd synaptics\n");
766 /* When DSC is enabled on previous boot and reboot with the hub,
767 * there is a chance that Synaptics hub gets stuck during reboot sequence.
768 * Applying a workaround to reset Synaptics SDP fifo before enabling the first stream
770 if (!stream->link->link_status.link_active &&
771 memcmp(stream->link->dpcd_caps.branch_dev_name,
772 (int8_t *)SYNAPTICS_DEVICE_ID, 4) == 0)
773 apply_synaptics_fifo_reset_wa(aux);
775 ret = drm_dp_dpcd_write(aux, DP_DSC_ENABLE, &enable, 1);
776 DRM_INFO("Send DSC enable to synaptics\n");
779 /* Synaptics hub not support virtual dpcd,
780 * external monitor occur garbage while disable DSC,
781 * Disable DSC only when entire link status turn to false,
783 if (!stream->link->link_status.link_active) {
784 ret = drm_dp_dpcd_write(aux, DP_DSC_ENABLE, &enable, 1);
785 DRM_INFO("Send DSC disable to synaptics\n");
792 bool dm_helpers_dp_write_dsc_enable(
793 struct dc_context *ctx,
794 const struct dc_stream_state *stream,
797 static const uint8_t DSC_DISABLE;
798 static const uint8_t DSC_DECODING = 0x01;
799 static const uint8_t DSC_PASSTHROUGH = 0x02;
801 struct amdgpu_dm_connector *aconnector =
802 (struct amdgpu_dm_connector *)stream->dm_stream_context;
803 struct drm_device *dev = aconnector->base.dev;
804 struct drm_dp_mst_port *port;
805 uint8_t enable_dsc = enable ? DSC_DECODING : DSC_DISABLE;
806 uint8_t enable_passthrough = enable ? DSC_PASSTHROUGH : DSC_DISABLE;
812 if (stream->signal == SIGNAL_TYPE_DISPLAY_PORT_MST) {
813 if (!aconnector->dsc_aux)
816 // apply w/a to synaptics
817 if (needs_dsc_aux_workaround(aconnector->dc_link) &&
818 (aconnector->mst_downstream_port_present.byte & 0x7) != 0x3)
819 return write_dsc_enable_synaptics_non_virtual_dpcd_mst(
820 aconnector->dsc_aux, stream, enable_dsc);
822 port = aconnector->mst_output_port;
825 if (port->passthrough_aux) {
826 ret = drm_dp_dpcd_write(port->passthrough_aux,
828 &enable_passthrough, 1);
830 "Sent DSC pass-through enable to virtual dpcd port, ret = %u\n",
834 ret = drm_dp_dpcd_write(aconnector->dsc_aux,
835 DP_DSC_ENABLE, &enable_dsc, 1);
837 "Sent DSC decoding enable to %s port, ret = %u\n",
838 (port->passthrough_aux) ? "remote RX" :
842 ret = drm_dp_dpcd_write(aconnector->dsc_aux,
843 DP_DSC_ENABLE, &enable_dsc, 1);
845 "Sent DSC decoding disable to %s port, ret = %u\n",
846 (port->passthrough_aux) ? "remote RX" :
850 if (port->passthrough_aux) {
851 ret = drm_dp_dpcd_write(port->passthrough_aux,
853 &enable_passthrough, 1);
855 "Sent DSC pass-through disable to virtual dpcd port, ret = %u\n",
861 if (stream->signal == SIGNAL_TYPE_DISPLAY_PORT || stream->signal == SIGNAL_TYPE_EDP) {
862 if (stream->sink->link->dpcd_caps.dongle_type == DISPLAY_DONGLE_NONE) {
863 ret = dm_helpers_dp_write_dpcd(ctx, stream->link, DP_DSC_ENABLE, &enable_dsc, 1);
865 "Send DSC %s to SST RX\n",
866 enable_dsc ? "enable" : "disable");
867 } else if (stream->sink->link->dpcd_caps.dongle_type == DISPLAY_DONGLE_DP_HDMI_CONVERTER) {
868 ret = dm_helpers_dp_write_dpcd(ctx, stream->link, DP_DSC_ENABLE, &enable_dsc, 1);
870 "Send DSC %s to DP-HDMI PCON\n",
871 enable_dsc ? "enable" : "disable");
878 bool dm_helpers_is_dp_sink_present(struct dc_link *link)
880 bool dp_sink_present;
881 struct amdgpu_dm_connector *aconnector = link->priv;
884 BUG_ON("Failed to find connector for link!");
888 mutex_lock(&aconnector->dm_dp_aux.aux.hw_mutex);
889 dp_sink_present = dc_link_is_dp_sink_present(link);
890 mutex_unlock(&aconnector->dm_dp_aux.aux.hw_mutex);
891 return dp_sink_present;
894 enum dc_edid_status dm_helpers_read_local_edid(
895 struct dc_context *ctx,
896 struct dc_link *link,
897 struct dc_sink *sink)
899 struct amdgpu_dm_connector *aconnector = link->priv;
900 struct drm_connector *connector = &aconnector->base;
901 struct i2c_adapter *ddc;
903 enum dc_edid_status edid_status;
907 ddc = &aconnector->dm_dp_aux.aux.ddc;
909 ddc = &aconnector->i2c->base;
911 /* some dongles read edid incorrectly the first time,
912 * do check sum and retry to make sure read correct edid.
916 edid = drm_get_edid(&aconnector->base, ddc);
918 /* DP Compliance Test 4.2.2.6 */
919 if (link->aux_mode && connector->edid_corrupt)
920 drm_dp_send_real_edid_checksum(&aconnector->dm_dp_aux.aux, connector->real_edid_checksum);
922 if (!edid && connector->edid_corrupt) {
923 connector->edid_corrupt = false;
924 return EDID_BAD_CHECKSUM;
928 return EDID_NO_RESPONSE;
930 sink->dc_edid.length = EDID_LENGTH * (edid->extensions + 1);
931 memmove(sink->dc_edid.raw_edid, (uint8_t *)edid, sink->dc_edid.length);
933 /* We don't need the original edid anymore */
936 edid_status = dm_helpers_parse_edid_caps(
941 } while (edid_status == EDID_BAD_CHECKSUM && --retry > 0);
943 if (edid_status != EDID_OK)
944 DRM_ERROR("EDID err: %d, on connector: %s",
946 aconnector->base.name);
947 if (link->aux_mode) {
948 union test_request test_request = {0};
949 union test_response test_response = {0};
951 dm_helpers_dp_read_dpcd(ctx,
955 sizeof(union test_request));
957 if (!test_request.bits.EDID_READ)
960 test_response.bits.EDID_CHECKSUM_WRITE = 1;
962 dm_helpers_dp_write_dpcd(ctx,
964 DP_TEST_EDID_CHECKSUM,
965 &sink->dc_edid.raw_edid[sink->dc_edid.length-1],
968 dm_helpers_dp_write_dpcd(ctx,
972 sizeof(test_response));
978 int dm_helper_dmub_aux_transfer_sync(
979 struct dc_context *ctx,
980 const struct dc_link *link,
981 struct aux_payload *payload,
982 enum aux_return_code_type *operation_result)
984 if (!link->hpd_status) {
985 *operation_result = AUX_RET_ERROR_HPD_DISCON;
989 return amdgpu_dm_process_dmub_aux_transfer_sync(ctx, link->link_index, payload,
993 int dm_helpers_dmub_set_config_sync(struct dc_context *ctx,
994 const struct dc_link *link,
995 struct set_config_cmd_payload *payload,
996 enum set_config_status *operation_result)
998 return amdgpu_dm_process_dmub_set_config_sync(ctx, link->link_index, payload,
1002 void dm_set_dcn_clocks(struct dc_context *ctx, struct dc_clocks *clks)
1004 /* TODO: something */
1007 void dm_helpers_smu_timeout(struct dc_context *ctx, unsigned int msg_id, unsigned int param, unsigned int timeout_us)
1010 //amdgpu_device_gpu_recover(dc_context->driver-context, NULL);
1013 void dm_helpers_init_panel_settings(
1014 struct dc_context *ctx,
1015 struct dc_panel_config *panel_config,
1016 struct dc_sink *sink)
1018 // Extra Panel Power Sequence
1019 panel_config->pps.extra_t3_ms = sink->edid_caps.panel_patch.extra_t3_ms;
1020 panel_config->pps.extra_t7_ms = sink->edid_caps.panel_patch.extra_t7_ms;
1021 panel_config->pps.extra_delay_backlight_off = sink->edid_caps.panel_patch.extra_delay_backlight_off;
1022 panel_config->pps.extra_post_t7_ms = 0;
1023 panel_config->pps.extra_pre_t11_ms = 0;
1024 panel_config->pps.extra_t12_ms = sink->edid_caps.panel_patch.extra_t12_ms;
1025 panel_config->pps.extra_post_OUI_ms = 0;
1027 panel_config->dsc.disable_dsc_edp = false;
1028 panel_config->dsc.force_dsc_edp_policy = 0;
1031 void dm_helpers_override_panel_settings(
1032 struct dc_context *ctx,
1033 struct dc_panel_config *panel_config)
1036 if (amdgpu_dc_debug_mask & DC_DISABLE_DSC)
1037 panel_config->dsc.disable_dsc_edp = true;
1040 void *dm_helpers_allocate_gpu_mem(
1041 struct dc_context *ctx,
1042 enum dc_gpu_mem_alloc_type type,
1046 struct amdgpu_device *adev = ctx->driver_context;
1047 struct dal_allocation *da;
1048 u32 domain = (type == DC_MEM_ALLOC_TYPE_GART) ?
1049 AMDGPU_GEM_DOMAIN_GTT : AMDGPU_GEM_DOMAIN_VRAM;
1052 da = kzalloc(sizeof(struct dal_allocation), GFP_KERNEL);
1056 ret = amdgpu_bo_create_kernel(adev, size, PAGE_SIZE,
1058 &da->gpu_addr, &da->cpu_ptr);
1060 *addr = da->gpu_addr;
1067 /* add da to list in dm */
1068 list_add(&da->list, &adev->dm.da_list);
1073 void dm_helpers_free_gpu_mem(
1074 struct dc_context *ctx,
1075 enum dc_gpu_mem_alloc_type type,
1078 struct amdgpu_device *adev = ctx->driver_context;
1079 struct dal_allocation *da;
1081 /* walk the da list in DM */
1082 list_for_each_entry(da, &adev->dm.da_list, list) {
1083 if (pvMem == da->cpu_ptr) {
1084 amdgpu_bo_free_kernel(&da->bo, &da->gpu_addr, &da->cpu_ptr);
1085 list_del(&da->list);
1092 bool dm_helpers_dmub_outbox_interrupt_control(struct dc_context *ctx, bool enable)
1094 enum dc_irq_source irq_source;
1097 irq_source = DC_IRQ_SOURCE_DMCUB_OUTBOX;
1099 ret = dc_interrupt_set(ctx->dc, irq_source, enable);
1101 DRM_DEBUG_DRIVER("Dmub trace irq %sabling: r=%d\n",
1102 enable ? "en" : "dis", ret);
1106 void dm_helpers_mst_enable_stream_features(const struct dc_stream_state *stream)
1108 /* TODO: virtual DPCD */
1109 struct dc_link *link = stream->link;
1110 union down_spread_ctrl old_downspread;
1111 union down_spread_ctrl new_downspread;
1113 if (link->aux_access_disabled)
1116 if (!dm_helpers_dp_read_dpcd(link->ctx, link, DP_DOWNSPREAD_CTRL,
1117 &old_downspread.raw,
1118 sizeof(old_downspread)))
1121 new_downspread.raw = old_downspread.raw;
1122 new_downspread.bits.IGNORE_MSA_TIMING_PARAM =
1123 (stream->ignore_msa_timing_param) ? 1 : 0;
1125 if (new_downspread.raw != old_downspread.raw)
1126 dm_helpers_dp_write_dpcd(link->ctx, link, DP_DOWNSPREAD_CTRL,
1127 &new_downspread.raw,
1128 sizeof(new_downspread));
1131 bool dm_helpers_dp_handle_test_pattern_request(
1132 struct dc_context *ctx,
1133 const struct dc_link *link,
1134 union link_test_pattern dpcd_test_pattern,
1135 union test_misc dpcd_test_params)
1137 enum dp_test_pattern test_pattern;
1138 enum dp_test_pattern_color_space test_pattern_color_space =
1139 DP_TEST_PATTERN_COLOR_SPACE_UNDEFINED;
1140 enum dc_color_depth requestColorDepth = COLOR_DEPTH_UNDEFINED;
1141 enum dc_pixel_encoding requestPixelEncoding = PIXEL_ENCODING_UNDEFINED;
1142 struct pipe_ctx *pipes = link->dc->current_state->res_ctx.pipe_ctx;
1143 struct pipe_ctx *pipe_ctx = NULL;
1144 struct amdgpu_dm_connector *aconnector = link->priv;
1145 struct drm_device *dev = aconnector->base.dev;
1148 for (i = 0; i < MAX_PIPES; i++) {
1149 if (pipes[i].stream == NULL)
1152 if (pipes[i].stream->link == link && !pipes[i].top_pipe &&
1153 !pipes[i].prev_odm_pipe) {
1154 pipe_ctx = &pipes[i];
1159 if (pipe_ctx == NULL)
1162 switch (dpcd_test_pattern.bits.PATTERN) {
1163 case LINK_TEST_PATTERN_COLOR_RAMP:
1164 test_pattern = DP_TEST_PATTERN_COLOR_RAMP;
1166 case LINK_TEST_PATTERN_VERTICAL_BARS:
1167 test_pattern = DP_TEST_PATTERN_VERTICAL_BARS;
1168 break; /* black and white */
1169 case LINK_TEST_PATTERN_COLOR_SQUARES:
1170 test_pattern = (dpcd_test_params.bits.DYN_RANGE ==
1171 TEST_DYN_RANGE_VESA ?
1172 DP_TEST_PATTERN_COLOR_SQUARES :
1173 DP_TEST_PATTERN_COLOR_SQUARES_CEA);
1176 test_pattern = DP_TEST_PATTERN_VIDEO_MODE;
1180 if (dpcd_test_params.bits.CLR_FORMAT == 0)
1181 test_pattern_color_space = DP_TEST_PATTERN_COLOR_SPACE_RGB;
1183 test_pattern_color_space = dpcd_test_params.bits.YCBCR_COEFS ?
1184 DP_TEST_PATTERN_COLOR_SPACE_YCBCR709 :
1185 DP_TEST_PATTERN_COLOR_SPACE_YCBCR601;
1187 switch (dpcd_test_params.bits.BPC) {
1189 requestColorDepth = COLOR_DEPTH_666;
1192 requestColorDepth = COLOR_DEPTH_888;
1195 requestColorDepth = COLOR_DEPTH_101010;
1198 requestColorDepth = COLOR_DEPTH_121212;
1204 switch (dpcd_test_params.bits.CLR_FORMAT) {
1206 requestPixelEncoding = PIXEL_ENCODING_RGB;
1209 requestPixelEncoding = PIXEL_ENCODING_YCBCR422;
1212 requestPixelEncoding = PIXEL_ENCODING_YCBCR444;
1215 requestPixelEncoding = PIXEL_ENCODING_RGB;
1219 if ((requestColorDepth != COLOR_DEPTH_UNDEFINED
1220 && pipe_ctx->stream->timing.display_color_depth != requestColorDepth)
1221 || (requestPixelEncoding != PIXEL_ENCODING_UNDEFINED
1222 && pipe_ctx->stream->timing.pixel_encoding != requestPixelEncoding)) {
1224 "original bpc %d pix encoding %d, changing to %d %d\n",
1225 pipe_ctx->stream->timing.display_color_depth,
1226 pipe_ctx->stream->timing.pixel_encoding,
1228 requestPixelEncoding);
1229 pipe_ctx->stream->timing.display_color_depth = requestColorDepth;
1230 pipe_ctx->stream->timing.pixel_encoding = requestPixelEncoding;
1232 dc_link_update_dsc_config(pipe_ctx);
1234 aconnector->timing_changed = true;
1235 /* store current timing */
1236 if (aconnector->timing_requested)
1237 *aconnector->timing_requested = pipe_ctx->stream->timing;
1239 drm_err(dev, "timing storage failed\n");
1243 pipe_ctx->stream->test_pattern.type = test_pattern;
1244 pipe_ctx->stream->test_pattern.color_space = test_pattern_color_space;
1246 dc_link_dp_set_test_pattern(
1247 (struct dc_link *) link,
1249 test_pattern_color_space,
1257 void dm_set_phyd32clk(struct dc_context *ctx, int freq_khz)
1262 void dm_helpers_enable_periodic_detection(struct dc_context *ctx, bool enable)
1264 /* TODO: add periodic detection implementation */
1267 void dm_helpers_dp_mst_update_branch_bandwidth(
1268 struct dc_context *ctx,
1269 struct dc_link *link)
1274 static bool dm_is_freesync_pcon_whitelist(const uint32_t branch_dev_id)
1276 bool ret_val = false;
1278 switch (branch_dev_id) {
1279 case DP_BRANCH_DEVICE_ID_0060AD:
1280 case DP_BRANCH_DEVICE_ID_00E04C:
1281 case DP_BRANCH_DEVICE_ID_90CC24:
1291 enum adaptive_sync_type dm_get_adaptive_sync_support_type(struct dc_link *link)
1293 struct dpcd_caps *dpcd_caps = &link->dpcd_caps;
1294 enum adaptive_sync_type as_type = ADAPTIVE_SYNC_TYPE_NONE;
1296 switch (dpcd_caps->dongle_type) {
1297 case DISPLAY_DONGLE_DP_HDMI_CONVERTER:
1298 if (dpcd_caps->adaptive_sync_caps.dp_adap_sync_caps.bits.ADAPTIVE_SYNC_SDP_SUPPORT == true &&
1299 dpcd_caps->allow_invalid_MSA_timing_param == true &&
1300 dm_is_freesync_pcon_whitelist(dpcd_caps->branch_dev_id))
1301 as_type = FREESYNC_TYPE_PCON_IN_WHITELIST;