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 /* The caprices of the preprocessor require that this be declared right here */
27 #define CREATE_TRACE_POINTS
29 #include "dm_services_types.h"
31 #include "dc/inc/core_types.h"
35 #include "amdgpu_display.h"
36 #include "amdgpu_ucode.h"
38 #include "amdgpu_dm.h"
39 #include "amdgpu_pm.h"
41 #include "amd_shared.h"
42 #include "amdgpu_dm_irq.h"
43 #include "dm_helpers.h"
44 #include "amdgpu_dm_mst_types.h"
45 #if defined(CONFIG_DEBUG_FS)
46 #include "amdgpu_dm_debugfs.h"
49 #include "ivsrcid/ivsrcid_vislands30.h"
51 #include <linux/module.h>
52 #include <linux/moduleparam.h>
53 #include <linux/version.h>
54 #include <linux/types.h>
55 #include <linux/pm_runtime.h>
56 #include <linux/firmware.h>
59 #include <drm/drm_atomic.h>
60 #include <drm/drm_atomic_uapi.h>
61 #include <drm/drm_atomic_helper.h>
62 #include <drm/drm_dp_mst_helper.h>
63 #include <drm/drm_fb_helper.h>
64 #include <drm/drm_edid.h>
66 #if defined(CONFIG_DRM_AMD_DC_DCN1_0)
67 #include "ivsrcid/irqsrcs_dcn_1_0.h"
69 #include "dcn/dcn_1_0_offset.h"
70 #include "dcn/dcn_1_0_sh_mask.h"
71 #include "soc15_hw_ip.h"
72 #include "vega10_ip_offset.h"
74 #include "soc15_common.h"
77 #include "modules/inc/mod_freesync.h"
78 #include "modules/power/power_helpers.h"
79 #include "modules/inc/mod_info_packet.h"
81 #define FIRMWARE_RAVEN_DMCU "amdgpu/raven_dmcu.bin"
82 MODULE_FIRMWARE(FIRMWARE_RAVEN_DMCU);
87 * The AMDgpu display manager, **amdgpu_dm** (or even simpler,
88 * **dm**) sits between DRM and DC. It acts as a liason, converting DRM
89 * requests into DC requests, and DC responses into DRM responses.
91 * The root control structure is &struct amdgpu_display_manager.
94 /* basic init/fini API */
95 static int amdgpu_dm_init(struct amdgpu_device *adev);
96 static void amdgpu_dm_fini(struct amdgpu_device *adev);
99 * initializes drm_device display related structures, based on the information
100 * provided by DAL. The drm strcutures are: drm_crtc, drm_connector,
101 * drm_encoder, drm_mode_config
103 * Returns 0 on success
105 static int amdgpu_dm_initialize_drm_device(struct amdgpu_device *adev);
106 /* removes and deallocates the drm structures, created by the above function */
107 static void amdgpu_dm_destroy_drm_device(struct amdgpu_display_manager *dm);
110 amdgpu_dm_update_connector_after_detect(struct amdgpu_dm_connector *aconnector);
112 static int amdgpu_dm_plane_init(struct amdgpu_display_manager *dm,
113 struct drm_plane *plane,
114 unsigned long possible_crtcs);
115 static int amdgpu_dm_crtc_init(struct amdgpu_display_manager *dm,
116 struct drm_plane *plane,
117 uint32_t link_index);
118 static int amdgpu_dm_connector_init(struct amdgpu_display_manager *dm,
119 struct amdgpu_dm_connector *amdgpu_dm_connector,
121 struct amdgpu_encoder *amdgpu_encoder);
122 static int amdgpu_dm_encoder_init(struct drm_device *dev,
123 struct amdgpu_encoder *aencoder,
124 uint32_t link_index);
126 static int amdgpu_dm_connector_get_modes(struct drm_connector *connector);
128 static int amdgpu_dm_atomic_commit(struct drm_device *dev,
129 struct drm_atomic_state *state,
132 static void amdgpu_dm_atomic_commit_tail(struct drm_atomic_state *state);
134 static int amdgpu_dm_atomic_check(struct drm_device *dev,
135 struct drm_atomic_state *state);
137 static void handle_cursor_update(struct drm_plane *plane,
138 struct drm_plane_state *old_plane_state);
142 static const enum drm_plane_type dm_plane_type_default[AMDGPU_MAX_PLANES] = {
143 DRM_PLANE_TYPE_PRIMARY,
144 DRM_PLANE_TYPE_PRIMARY,
145 DRM_PLANE_TYPE_PRIMARY,
146 DRM_PLANE_TYPE_PRIMARY,
147 DRM_PLANE_TYPE_PRIMARY,
148 DRM_PLANE_TYPE_PRIMARY,
151 static const enum drm_plane_type dm_plane_type_carizzo[AMDGPU_MAX_PLANES] = {
152 DRM_PLANE_TYPE_PRIMARY,
153 DRM_PLANE_TYPE_PRIMARY,
154 DRM_PLANE_TYPE_PRIMARY,
155 DRM_PLANE_TYPE_OVERLAY,/* YUV Capable Underlay */
158 static const enum drm_plane_type dm_plane_type_stoney[AMDGPU_MAX_PLANES] = {
159 DRM_PLANE_TYPE_PRIMARY,
160 DRM_PLANE_TYPE_PRIMARY,
161 DRM_PLANE_TYPE_OVERLAY, /* YUV Capable Underlay */
165 * dm_vblank_get_counter
168 * Get counter for number of vertical blanks
171 * struct amdgpu_device *adev - [in] desired amdgpu device
172 * int disp_idx - [in] which CRTC to get the counter from
175 * Counter for vertical blanks
177 static u32 dm_vblank_get_counter(struct amdgpu_device *adev, int crtc)
179 if (crtc >= adev->mode_info.num_crtc)
182 struct amdgpu_crtc *acrtc = adev->mode_info.crtcs[crtc];
183 struct dm_crtc_state *acrtc_state = to_dm_crtc_state(
187 if (acrtc_state->stream == NULL) {
188 DRM_ERROR("dc_stream_state is NULL for crtc '%d'!\n",
193 return dc_stream_get_vblank_counter(acrtc_state->stream);
197 static int dm_crtc_get_scanoutpos(struct amdgpu_device *adev, int crtc,
198 u32 *vbl, u32 *position)
200 uint32_t v_blank_start, v_blank_end, h_position, v_position;
202 if ((crtc < 0) || (crtc >= adev->mode_info.num_crtc))
205 struct amdgpu_crtc *acrtc = adev->mode_info.crtcs[crtc];
206 struct dm_crtc_state *acrtc_state = to_dm_crtc_state(
209 if (acrtc_state->stream == NULL) {
210 DRM_ERROR("dc_stream_state is NULL for crtc '%d'!\n",
216 * TODO rework base driver to use values directly.
217 * for now parse it back into reg-format
219 dc_stream_get_scanoutpos(acrtc_state->stream,
225 *position = v_position | (h_position << 16);
226 *vbl = v_blank_start | (v_blank_end << 16);
232 static bool dm_is_idle(void *handle)
238 static int dm_wait_for_idle(void *handle)
244 static bool dm_check_soft_reset(void *handle)
249 static int dm_soft_reset(void *handle)
255 static struct amdgpu_crtc *
256 get_crtc_by_otg_inst(struct amdgpu_device *adev,
259 struct drm_device *dev = adev->ddev;
260 struct drm_crtc *crtc;
261 struct amdgpu_crtc *amdgpu_crtc;
263 if (otg_inst == -1) {
265 return adev->mode_info.crtcs[0];
268 list_for_each_entry(crtc, &dev->mode_config.crtc_list, head) {
269 amdgpu_crtc = to_amdgpu_crtc(crtc);
271 if (amdgpu_crtc->otg_inst == otg_inst)
278 static void dm_pflip_high_irq(void *interrupt_params)
280 struct amdgpu_crtc *amdgpu_crtc;
281 struct common_irq_params *irq_params = interrupt_params;
282 struct amdgpu_device *adev = irq_params->adev;
285 amdgpu_crtc = get_crtc_by_otg_inst(adev, irq_params->irq_src - IRQ_TYPE_PFLIP);
287 /* IRQ could occur when in initial stage */
288 /* TODO work and BO cleanup */
289 if (amdgpu_crtc == NULL) {
290 DRM_DEBUG_DRIVER("CRTC is null, returning.\n");
294 spin_lock_irqsave(&adev->ddev->event_lock, flags);
296 if (amdgpu_crtc->pflip_status != AMDGPU_FLIP_SUBMITTED){
297 DRM_DEBUG_DRIVER("amdgpu_crtc->pflip_status = %d !=AMDGPU_FLIP_SUBMITTED(%d) on crtc:%d[%p] \n",
298 amdgpu_crtc->pflip_status,
299 AMDGPU_FLIP_SUBMITTED,
300 amdgpu_crtc->crtc_id,
302 spin_unlock_irqrestore(&adev->ddev->event_lock, flags);
307 /* wake up userspace */
308 if (amdgpu_crtc->event) {
309 /* Update to correct count(s) if racing with vblank irq */
310 drm_crtc_accurate_vblank_count(&amdgpu_crtc->base);
312 drm_crtc_send_vblank_event(&amdgpu_crtc->base, amdgpu_crtc->event);
314 /* page flip completed. clean up */
315 amdgpu_crtc->event = NULL;
320 amdgpu_crtc->pflip_status = AMDGPU_FLIP_NONE;
321 spin_unlock_irqrestore(&adev->ddev->event_lock, flags);
323 DRM_DEBUG_DRIVER("%s - crtc :%d[%p], pflip_stat:AMDGPU_FLIP_NONE\n",
324 __func__, amdgpu_crtc->crtc_id, amdgpu_crtc);
326 drm_crtc_vblank_put(&amdgpu_crtc->base);
329 static void dm_crtc_high_irq(void *interrupt_params)
331 struct common_irq_params *irq_params = interrupt_params;
332 struct amdgpu_device *adev = irq_params->adev;
333 struct amdgpu_crtc *acrtc;
334 struct dm_crtc_state *acrtc_state;
336 acrtc = get_crtc_by_otg_inst(adev, irq_params->irq_src - IRQ_TYPE_VBLANK);
339 drm_crtc_handle_vblank(&acrtc->base);
340 amdgpu_dm_crtc_handle_crc_irq(&acrtc->base);
342 acrtc_state = to_dm_crtc_state(acrtc->base.state);
344 if (acrtc_state->stream &&
345 acrtc_state->vrr_params.supported &&
346 acrtc_state->freesync_config.state == VRR_STATE_ACTIVE_VARIABLE) {
347 mod_freesync_handle_v_update(
348 adev->dm.freesync_module,
350 &acrtc_state->vrr_params);
352 dc_stream_adjust_vmin_vmax(
355 &acrtc_state->vrr_params.adjust);
360 static int dm_set_clockgating_state(void *handle,
361 enum amd_clockgating_state state)
366 static int dm_set_powergating_state(void *handle,
367 enum amd_powergating_state state)
372 /* Prototypes of private functions */
373 static int dm_early_init(void* handle);
375 /* Allocate memory for FBC compressed data */
376 static void amdgpu_dm_fbc_init(struct drm_connector *connector)
378 struct drm_device *dev = connector->dev;
379 struct amdgpu_device *adev = dev->dev_private;
380 struct dm_comressor_info *compressor = &adev->dm.compressor;
381 struct amdgpu_dm_connector *aconn = to_amdgpu_dm_connector(connector);
382 struct drm_display_mode *mode;
383 unsigned long max_size = 0;
385 if (adev->dm.dc->fbc_compressor == NULL)
388 if (aconn->dc_link->connector_signal != SIGNAL_TYPE_EDP)
391 if (compressor->bo_ptr)
395 list_for_each_entry(mode, &connector->modes, head) {
396 if (max_size < mode->htotal * mode->vtotal)
397 max_size = mode->htotal * mode->vtotal;
401 int r = amdgpu_bo_create_kernel(adev, max_size * 4, PAGE_SIZE,
402 AMDGPU_GEM_DOMAIN_GTT, &compressor->bo_ptr,
403 &compressor->gpu_addr, &compressor->cpu_addr);
406 DRM_ERROR("DM: Failed to initialize FBC\n");
408 adev->dm.dc->ctx->fbc_gpu_addr = compressor->gpu_addr;
409 DRM_INFO("DM: FBC alloc %lu\n", max_size*4);
416 static int amdgpu_dm_init(struct amdgpu_device *adev)
418 struct dc_init_data init_data;
419 adev->dm.ddev = adev->ddev;
420 adev->dm.adev = adev;
422 /* Zero all the fields */
423 memset(&init_data, 0, sizeof(init_data));
425 mutex_init(&adev->dm.dc_lock);
427 if(amdgpu_dm_irq_init(adev)) {
428 DRM_ERROR("amdgpu: failed to initialize DM IRQ support.\n");
432 init_data.asic_id.chip_family = adev->family;
434 init_data.asic_id.pci_revision_id = adev->rev_id;
435 init_data.asic_id.hw_internal_rev = adev->external_rev_id;
437 init_data.asic_id.vram_width = adev->gmc.vram_width;
438 /* TODO: initialize init_data.asic_id.vram_type here!!!! */
439 init_data.asic_id.atombios_base_address =
440 adev->mode_info.atom_context->bios;
442 init_data.driver = adev;
444 adev->dm.cgs_device = amdgpu_cgs_create_device(adev);
446 if (!adev->dm.cgs_device) {
447 DRM_ERROR("amdgpu: failed to create cgs device.\n");
451 init_data.cgs_device = adev->dm.cgs_device;
453 init_data.dce_environment = DCE_ENV_PRODUCTION_DRV;
456 * TODO debug why this doesn't work on Raven
458 if (adev->flags & AMD_IS_APU &&
459 adev->asic_type >= CHIP_CARRIZO &&
460 adev->asic_type < CHIP_RAVEN)
461 init_data.flags.gpu_vm_support = true;
463 if (amdgpu_dc_feature_mask & DC_FBC_MASK)
464 init_data.flags.fbc_support = true;
466 /* Display Core create. */
467 adev->dm.dc = dc_create(&init_data);
470 DRM_INFO("Display Core initialized with v%s!\n", DC_VER);
472 DRM_INFO("Display Core failed to initialize with v%s!\n", DC_VER);
476 adev->dm.freesync_module = mod_freesync_create(adev->dm.dc);
477 if (!adev->dm.freesync_module) {
479 "amdgpu: failed to initialize freesync_module.\n");
481 DRM_DEBUG_DRIVER("amdgpu: freesync_module init done %p.\n",
482 adev->dm.freesync_module);
484 amdgpu_dm_init_color_mod();
486 if (amdgpu_dm_initialize_drm_device(adev)) {
488 "amdgpu: failed to initialize sw for display support.\n");
492 /* Update the actual used number of crtc */
493 adev->mode_info.num_crtc = adev->dm.display_indexes_num;
495 /* TODO: Add_display_info? */
497 /* TODO use dynamic cursor width */
498 adev->ddev->mode_config.cursor_width = adev->dm.dc->caps.max_cursor_size;
499 adev->ddev->mode_config.cursor_height = adev->dm.dc->caps.max_cursor_size;
501 if (drm_vblank_init(adev->ddev, adev->dm.display_indexes_num)) {
503 "amdgpu: failed to initialize sw for display support.\n");
507 #if defined(CONFIG_DEBUG_FS)
508 if (dtn_debugfs_init(adev))
509 DRM_ERROR("amdgpu: failed initialize dtn debugfs support.\n");
512 DRM_DEBUG_DRIVER("KMS initialized.\n");
516 amdgpu_dm_fini(adev);
521 static void amdgpu_dm_fini(struct amdgpu_device *adev)
523 amdgpu_dm_destroy_drm_device(&adev->dm);
525 * TODO: pageflip, vlank interrupt
527 * amdgpu_dm_irq_fini(adev);
530 if (adev->dm.cgs_device) {
531 amdgpu_cgs_destroy_device(adev->dm.cgs_device);
532 adev->dm.cgs_device = NULL;
534 if (adev->dm.freesync_module) {
535 mod_freesync_destroy(adev->dm.freesync_module);
536 adev->dm.freesync_module = NULL;
538 /* DC Destroy TODO: Replace destroy DAL */
540 dc_destroy(&adev->dm.dc);
542 mutex_destroy(&adev->dm.dc_lock);
547 static int load_dmcu_fw(struct amdgpu_device *adev)
549 const char *fw_name_dmcu;
551 const struct dmcu_firmware_header_v1_0 *hdr;
553 switch(adev->asic_type) {
572 fw_name_dmcu = FIRMWARE_RAVEN_DMCU;
575 DRM_ERROR("Unsupported ASIC type: 0x%X\n", adev->asic_type);
579 if (adev->firmware.load_type != AMDGPU_FW_LOAD_PSP) {
580 DRM_DEBUG_KMS("dm: DMCU firmware not supported on direct or SMU loading\n");
584 r = request_firmware_direct(&adev->dm.fw_dmcu, fw_name_dmcu, adev->dev);
586 /* DMCU firmware is not necessary, so don't raise a fuss if it's missing */
587 DRM_DEBUG_KMS("dm: DMCU firmware not found\n");
588 adev->dm.fw_dmcu = NULL;
592 dev_err(adev->dev, "amdgpu_dm: Can't load firmware \"%s\"\n",
597 r = amdgpu_ucode_validate(adev->dm.fw_dmcu);
599 dev_err(adev->dev, "amdgpu_dm: Can't validate firmware \"%s\"\n",
601 release_firmware(adev->dm.fw_dmcu);
602 adev->dm.fw_dmcu = NULL;
606 hdr = (const struct dmcu_firmware_header_v1_0 *)adev->dm.fw_dmcu->data;
607 adev->firmware.ucode[AMDGPU_UCODE_ID_DMCU_ERAM].ucode_id = AMDGPU_UCODE_ID_DMCU_ERAM;
608 adev->firmware.ucode[AMDGPU_UCODE_ID_DMCU_ERAM].fw = adev->dm.fw_dmcu;
609 adev->firmware.fw_size +=
610 ALIGN(le32_to_cpu(hdr->header.ucode_size_bytes) - le32_to_cpu(hdr->intv_size_bytes), PAGE_SIZE);
612 adev->firmware.ucode[AMDGPU_UCODE_ID_DMCU_INTV].ucode_id = AMDGPU_UCODE_ID_DMCU_INTV;
613 adev->firmware.ucode[AMDGPU_UCODE_ID_DMCU_INTV].fw = adev->dm.fw_dmcu;
614 adev->firmware.fw_size +=
615 ALIGN(le32_to_cpu(hdr->intv_size_bytes), PAGE_SIZE);
617 adev->dm.dmcu_fw_version = le32_to_cpu(hdr->header.ucode_version);
619 DRM_DEBUG_KMS("PSP loading DMCU firmware\n");
624 static int dm_sw_init(void *handle)
626 struct amdgpu_device *adev = (struct amdgpu_device *)handle;
628 return load_dmcu_fw(adev);
631 static int dm_sw_fini(void *handle)
633 struct amdgpu_device *adev = (struct amdgpu_device *)handle;
635 if(adev->dm.fw_dmcu) {
636 release_firmware(adev->dm.fw_dmcu);
637 adev->dm.fw_dmcu = NULL;
643 static int detect_mst_link_for_all_connectors(struct drm_device *dev)
645 struct amdgpu_dm_connector *aconnector;
646 struct drm_connector *connector;
649 drm_modeset_lock(&dev->mode_config.connection_mutex, NULL);
651 list_for_each_entry(connector, &dev->mode_config.connector_list, head) {
652 aconnector = to_amdgpu_dm_connector(connector);
653 if (aconnector->dc_link->type == dc_connection_mst_branch &&
654 aconnector->mst_mgr.aux) {
655 DRM_DEBUG_DRIVER("DM_MST: starting TM on aconnector: %p [id: %d]\n",
656 aconnector, aconnector->base.base.id);
658 ret = drm_dp_mst_topology_mgr_set_mst(&aconnector->mst_mgr, true);
660 DRM_ERROR("DM_MST: Failed to start MST\n");
661 ((struct dc_link *)aconnector->dc_link)->type = dc_connection_single;
667 drm_modeset_unlock(&dev->mode_config.connection_mutex);
671 static int dm_late_init(void *handle)
673 struct amdgpu_device *adev = (struct amdgpu_device *)handle;
675 struct dmcu_iram_parameters params;
676 unsigned int linear_lut[16];
678 struct dmcu *dmcu = adev->dm.dc->res_pool->dmcu;
681 for (i = 0; i < 16; i++)
682 linear_lut[i] = 0xFFFF * i / 15;
685 params.backlight_ramping_start = 0xCCCC;
686 params.backlight_ramping_reduction = 0xCCCCCCCC;
687 params.backlight_lut_array_size = 16;
688 params.backlight_lut_array = linear_lut;
690 ret = dmcu_load_iram(dmcu, params);
695 return detect_mst_link_for_all_connectors(adev->ddev);
698 static void s3_handle_mst(struct drm_device *dev, bool suspend)
700 struct amdgpu_dm_connector *aconnector;
701 struct drm_connector *connector;
702 struct drm_dp_mst_topology_mgr *mgr;
704 bool need_hotplug = false;
706 drm_modeset_lock(&dev->mode_config.connection_mutex, NULL);
708 list_for_each_entry(connector, &dev->mode_config.connector_list,
710 aconnector = to_amdgpu_dm_connector(connector);
711 if (aconnector->dc_link->type != dc_connection_mst_branch ||
712 aconnector->mst_port)
715 mgr = &aconnector->mst_mgr;
718 drm_dp_mst_topology_mgr_suspend(mgr);
720 ret = drm_dp_mst_topology_mgr_resume(mgr);
722 drm_dp_mst_topology_mgr_set_mst(mgr, false);
728 drm_modeset_unlock(&dev->mode_config.connection_mutex);
731 drm_kms_helper_hotplug_event(dev);
735 * dm_hw_init() - Initialize DC device
736 * @handle: The base driver device containing the amdpgu_dm device.
738 * Initialize the &struct amdgpu_display_manager device. This involves calling
739 * the initializers of each DM component, then populating the struct with them.
741 * Although the function implies hardware initialization, both hardware and
742 * software are initialized here. Splitting them out to their relevant init
743 * hooks is a future TODO item.
745 * Some notable things that are initialized here:
747 * - Display Core, both software and hardware
748 * - DC modules that we need (freesync and color management)
749 * - DRM software states
750 * - Interrupt sources and handlers
752 * - Debug FS entries, if enabled
754 static int dm_hw_init(void *handle)
756 struct amdgpu_device *adev = (struct amdgpu_device *)handle;
757 /* Create DAL display manager */
758 amdgpu_dm_init(adev);
759 amdgpu_dm_hpd_init(adev);
765 * dm_hw_fini() - Teardown DC device
766 * @handle: The base driver device containing the amdpgu_dm device.
768 * Teardown components within &struct amdgpu_display_manager that require
769 * cleanup. This involves cleaning up the DRM device, DC, and any modules that
770 * were loaded. Also flush IRQ workqueues and disable them.
772 static int dm_hw_fini(void *handle)
774 struct amdgpu_device *adev = (struct amdgpu_device *)handle;
776 amdgpu_dm_hpd_fini(adev);
778 amdgpu_dm_irq_fini(adev);
779 amdgpu_dm_fini(adev);
783 static int dm_suspend(void *handle)
785 struct amdgpu_device *adev = handle;
786 struct amdgpu_display_manager *dm = &adev->dm;
789 s3_handle_mst(adev->ddev, true);
791 amdgpu_dm_irq_suspend(adev);
793 WARN_ON(adev->dm.cached_state);
794 adev->dm.cached_state = drm_atomic_helper_suspend(adev->ddev);
796 dc_set_power_state(dm->dc, DC_ACPI_CM_POWER_STATE_D3);
801 static struct amdgpu_dm_connector *
802 amdgpu_dm_find_first_crtc_matching_connector(struct drm_atomic_state *state,
803 struct drm_crtc *crtc)
806 struct drm_connector_state *new_con_state;
807 struct drm_connector *connector;
808 struct drm_crtc *crtc_from_state;
810 for_each_new_connector_in_state(state, connector, new_con_state, i) {
811 crtc_from_state = new_con_state->crtc;
813 if (crtc_from_state == crtc)
814 return to_amdgpu_dm_connector(connector);
820 static void emulated_link_detect(struct dc_link *link)
822 struct dc_sink_init_data sink_init_data = { 0 };
823 struct display_sink_capability sink_caps = { 0 };
824 enum dc_edid_status edid_status;
825 struct dc_context *dc_ctx = link->ctx;
826 struct dc_sink *sink = NULL;
827 struct dc_sink *prev_sink = NULL;
829 link->type = dc_connection_none;
830 prev_sink = link->local_sink;
832 if (prev_sink != NULL)
833 dc_sink_retain(prev_sink);
835 switch (link->connector_signal) {
836 case SIGNAL_TYPE_HDMI_TYPE_A: {
837 sink_caps.transaction_type = DDC_TRANSACTION_TYPE_I2C;
838 sink_caps.signal = SIGNAL_TYPE_HDMI_TYPE_A;
842 case SIGNAL_TYPE_DVI_SINGLE_LINK: {
843 sink_caps.transaction_type = DDC_TRANSACTION_TYPE_I2C;
844 sink_caps.signal = SIGNAL_TYPE_DVI_SINGLE_LINK;
848 case SIGNAL_TYPE_DVI_DUAL_LINK: {
849 sink_caps.transaction_type = DDC_TRANSACTION_TYPE_I2C;
850 sink_caps.signal = SIGNAL_TYPE_DVI_DUAL_LINK;
854 case SIGNAL_TYPE_LVDS: {
855 sink_caps.transaction_type = DDC_TRANSACTION_TYPE_I2C;
856 sink_caps.signal = SIGNAL_TYPE_LVDS;
860 case SIGNAL_TYPE_EDP: {
861 sink_caps.transaction_type =
862 DDC_TRANSACTION_TYPE_I2C_OVER_AUX;
863 sink_caps.signal = SIGNAL_TYPE_EDP;
867 case SIGNAL_TYPE_DISPLAY_PORT: {
868 sink_caps.transaction_type =
869 DDC_TRANSACTION_TYPE_I2C_OVER_AUX;
870 sink_caps.signal = SIGNAL_TYPE_VIRTUAL;
875 DC_ERROR("Invalid connector type! signal:%d\n",
876 link->connector_signal);
880 sink_init_data.link = link;
881 sink_init_data.sink_signal = sink_caps.signal;
883 sink = dc_sink_create(&sink_init_data);
885 DC_ERROR("Failed to create sink!\n");
889 link->local_sink = sink;
891 edid_status = dm_helpers_read_local_edid(
896 if (edid_status != EDID_OK)
897 DC_ERROR("Failed to read EDID");
901 static int dm_resume(void *handle)
903 struct amdgpu_device *adev = handle;
904 struct drm_device *ddev = adev->ddev;
905 struct amdgpu_display_manager *dm = &adev->dm;
906 struct amdgpu_dm_connector *aconnector;
907 struct drm_connector *connector;
908 struct drm_crtc *crtc;
909 struct drm_crtc_state *new_crtc_state;
910 struct dm_crtc_state *dm_new_crtc_state;
911 struct drm_plane *plane;
912 struct drm_plane_state *new_plane_state;
913 struct dm_plane_state *dm_new_plane_state;
914 enum dc_connection_type new_connection_type = dc_connection_none;
917 /* power on hardware */
918 dc_set_power_state(dm->dc, DC_ACPI_CM_POWER_STATE_D0);
920 /* program HPD filter */
923 /* On resume we need to rewrite the MSTM control bits to enamble MST*/
924 s3_handle_mst(ddev, false);
927 * early enable HPD Rx IRQ, should be done before set mode as short
928 * pulse interrupts are used for MST
930 amdgpu_dm_irq_resume_early(adev);
933 list_for_each_entry(connector, &ddev->mode_config.connector_list, head) {
934 aconnector = to_amdgpu_dm_connector(connector);
937 * this is the case when traversing through already created
938 * MST connectors, should be skipped
940 if (aconnector->mst_port)
943 mutex_lock(&aconnector->hpd_lock);
944 if (!dc_link_detect_sink(aconnector->dc_link, &new_connection_type))
945 DRM_ERROR("KMS: Failed to detect connector\n");
947 if (aconnector->base.force && new_connection_type == dc_connection_none)
948 emulated_link_detect(aconnector->dc_link);
950 dc_link_detect(aconnector->dc_link, DETECT_REASON_HPD);
952 if (aconnector->fake_enable && aconnector->dc_link->local_sink)
953 aconnector->fake_enable = false;
955 aconnector->dc_sink = NULL;
956 amdgpu_dm_update_connector_after_detect(aconnector);
957 mutex_unlock(&aconnector->hpd_lock);
960 /* Force mode set in atomic commit */
961 for_each_new_crtc_in_state(dm->cached_state, crtc, new_crtc_state, i)
962 new_crtc_state->active_changed = true;
965 * atomic_check is expected to create the dc states. We need to release
966 * them here, since they were duplicated as part of the suspend
969 for_each_new_crtc_in_state(dm->cached_state, crtc, new_crtc_state, i) {
970 dm_new_crtc_state = to_dm_crtc_state(new_crtc_state);
971 if (dm_new_crtc_state->stream) {
972 WARN_ON(kref_read(&dm_new_crtc_state->stream->refcount) > 1);
973 dc_stream_release(dm_new_crtc_state->stream);
974 dm_new_crtc_state->stream = NULL;
978 for_each_new_plane_in_state(dm->cached_state, plane, new_plane_state, i) {
979 dm_new_plane_state = to_dm_plane_state(new_plane_state);
980 if (dm_new_plane_state->dc_state) {
981 WARN_ON(kref_read(&dm_new_plane_state->dc_state->refcount) > 1);
982 dc_plane_state_release(dm_new_plane_state->dc_state);
983 dm_new_plane_state->dc_state = NULL;
987 drm_atomic_helper_resume(ddev, dm->cached_state);
989 dm->cached_state = NULL;
991 amdgpu_dm_irq_resume_late(adev);
999 * DM (and consequently DC) is registered in the amdgpu base driver as a IP
1000 * block. When CONFIG_DRM_AMD_DC is enabled, the DM device IP block is added to
1001 * the base driver's device list to be initialized and torn down accordingly.
1003 * The functions to do so are provided as hooks in &struct amd_ip_funcs.
1006 static const struct amd_ip_funcs amdgpu_dm_funcs = {
1008 .early_init = dm_early_init,
1009 .late_init = dm_late_init,
1010 .sw_init = dm_sw_init,
1011 .sw_fini = dm_sw_fini,
1012 .hw_init = dm_hw_init,
1013 .hw_fini = dm_hw_fini,
1014 .suspend = dm_suspend,
1015 .resume = dm_resume,
1016 .is_idle = dm_is_idle,
1017 .wait_for_idle = dm_wait_for_idle,
1018 .check_soft_reset = dm_check_soft_reset,
1019 .soft_reset = dm_soft_reset,
1020 .set_clockgating_state = dm_set_clockgating_state,
1021 .set_powergating_state = dm_set_powergating_state,
1024 const struct amdgpu_ip_block_version dm_ip_block =
1026 .type = AMD_IP_BLOCK_TYPE_DCE,
1030 .funcs = &amdgpu_dm_funcs,
1040 static const struct drm_mode_config_funcs amdgpu_dm_mode_funcs = {
1041 .fb_create = amdgpu_display_user_framebuffer_create,
1042 .output_poll_changed = drm_fb_helper_output_poll_changed,
1043 .atomic_check = amdgpu_dm_atomic_check,
1044 .atomic_commit = amdgpu_dm_atomic_commit,
1047 static struct drm_mode_config_helper_funcs amdgpu_dm_mode_config_helperfuncs = {
1048 .atomic_commit_tail = amdgpu_dm_atomic_commit_tail
1052 amdgpu_dm_update_connector_after_detect(struct amdgpu_dm_connector *aconnector)
1054 struct drm_connector *connector = &aconnector->base;
1055 struct drm_device *dev = connector->dev;
1056 struct dc_sink *sink;
1058 /* MST handled by drm_mst framework */
1059 if (aconnector->mst_mgr.mst_state == true)
1063 sink = aconnector->dc_link->local_sink;
1066 * Edid mgmt connector gets first update only in mode_valid hook and then
1067 * the connector sink is set to either fake or physical sink depends on link status.
1068 * Skip if already done during boot.
1070 if (aconnector->base.force != DRM_FORCE_UNSPECIFIED
1071 && aconnector->dc_em_sink) {
1074 * For S3 resume with headless use eml_sink to fake stream
1075 * because on resume connector->sink is set to NULL
1077 mutex_lock(&dev->mode_config.mutex);
1080 if (aconnector->dc_sink) {
1081 amdgpu_dm_update_freesync_caps(connector, NULL);
1083 * retain and release below are used to
1084 * bump up refcount for sink because the link doesn't point
1085 * to it anymore after disconnect, so on next crtc to connector
1086 * reshuffle by UMD we will get into unwanted dc_sink release
1088 if (aconnector->dc_sink != aconnector->dc_em_sink)
1089 dc_sink_release(aconnector->dc_sink);
1091 aconnector->dc_sink = sink;
1092 amdgpu_dm_update_freesync_caps(connector,
1095 amdgpu_dm_update_freesync_caps(connector, NULL);
1096 if (!aconnector->dc_sink)
1097 aconnector->dc_sink = aconnector->dc_em_sink;
1098 else if (aconnector->dc_sink != aconnector->dc_em_sink)
1099 dc_sink_retain(aconnector->dc_sink);
1102 mutex_unlock(&dev->mode_config.mutex);
1107 * TODO: temporary guard to look for proper fix
1108 * if this sink is MST sink, we should not do anything
1110 if (sink && sink->sink_signal == SIGNAL_TYPE_DISPLAY_PORT_MST)
1113 if (aconnector->dc_sink == sink) {
1115 * We got a DP short pulse (Link Loss, DP CTS, etc...).
1118 DRM_DEBUG_DRIVER("DCHPD: connector_id=%d: dc_sink didn't change.\n",
1119 aconnector->connector_id);
1123 DRM_DEBUG_DRIVER("DCHPD: connector_id=%d: Old sink=%p New sink=%p\n",
1124 aconnector->connector_id, aconnector->dc_sink, sink);
1126 mutex_lock(&dev->mode_config.mutex);
1129 * 1. Update status of the drm connector
1130 * 2. Send an event and let userspace tell us what to do
1134 * TODO: check if we still need the S3 mode update workaround.
1135 * If yes, put it here.
1137 if (aconnector->dc_sink)
1138 amdgpu_dm_update_freesync_caps(connector, NULL);
1140 aconnector->dc_sink = sink;
1141 if (sink->dc_edid.length == 0) {
1142 aconnector->edid = NULL;
1143 drm_dp_cec_unset_edid(&aconnector->dm_dp_aux.aux);
1146 (struct edid *) sink->dc_edid.raw_edid;
1149 drm_connector_update_edid_property(connector,
1151 drm_dp_cec_set_edid(&aconnector->dm_dp_aux.aux,
1154 amdgpu_dm_update_freesync_caps(connector, aconnector->edid);
1157 drm_dp_cec_unset_edid(&aconnector->dm_dp_aux.aux);
1158 amdgpu_dm_update_freesync_caps(connector, NULL);
1159 drm_connector_update_edid_property(connector, NULL);
1160 aconnector->num_modes = 0;
1161 aconnector->dc_sink = NULL;
1162 aconnector->edid = NULL;
1165 mutex_unlock(&dev->mode_config.mutex);
1168 static void handle_hpd_irq(void *param)
1170 struct amdgpu_dm_connector *aconnector = (struct amdgpu_dm_connector *)param;
1171 struct drm_connector *connector = &aconnector->base;
1172 struct drm_device *dev = connector->dev;
1173 enum dc_connection_type new_connection_type = dc_connection_none;
1176 * In case of failure or MST no need to update connector status or notify the OS
1177 * since (for MST case) MST does this in its own context.
1179 mutex_lock(&aconnector->hpd_lock);
1181 if (aconnector->fake_enable)
1182 aconnector->fake_enable = false;
1184 if (!dc_link_detect_sink(aconnector->dc_link, &new_connection_type))
1185 DRM_ERROR("KMS: Failed to detect connector\n");
1187 if (aconnector->base.force && new_connection_type == dc_connection_none) {
1188 emulated_link_detect(aconnector->dc_link);
1191 drm_modeset_lock_all(dev);
1192 dm_restore_drm_connector_state(dev, connector);
1193 drm_modeset_unlock_all(dev);
1195 if (aconnector->base.force == DRM_FORCE_UNSPECIFIED)
1196 drm_kms_helper_hotplug_event(dev);
1198 } else if (dc_link_detect(aconnector->dc_link, DETECT_REASON_HPD)) {
1199 amdgpu_dm_update_connector_after_detect(aconnector);
1202 drm_modeset_lock_all(dev);
1203 dm_restore_drm_connector_state(dev, connector);
1204 drm_modeset_unlock_all(dev);
1206 if (aconnector->base.force == DRM_FORCE_UNSPECIFIED)
1207 drm_kms_helper_hotplug_event(dev);
1209 mutex_unlock(&aconnector->hpd_lock);
1213 static void dm_handle_hpd_rx_irq(struct amdgpu_dm_connector *aconnector)
1215 uint8_t esi[DP_PSR_ERROR_STATUS - DP_SINK_COUNT_ESI] = { 0 };
1217 bool new_irq_handled = false;
1219 int dpcd_bytes_to_read;
1221 const int max_process_count = 30;
1222 int process_count = 0;
1224 const struct dc_link_status *link_status = dc_link_get_status(aconnector->dc_link);
1226 if (link_status->dpcd_caps->dpcd_rev.raw < 0x12) {
1227 dpcd_bytes_to_read = DP_LANE0_1_STATUS - DP_SINK_COUNT;
1228 /* DPCD 0x200 - 0x201 for downstream IRQ */
1229 dpcd_addr = DP_SINK_COUNT;
1231 dpcd_bytes_to_read = DP_PSR_ERROR_STATUS - DP_SINK_COUNT_ESI;
1232 /* DPCD 0x2002 - 0x2005 for downstream IRQ */
1233 dpcd_addr = DP_SINK_COUNT_ESI;
1236 dret = drm_dp_dpcd_read(
1237 &aconnector->dm_dp_aux.aux,
1240 dpcd_bytes_to_read);
1242 while (dret == dpcd_bytes_to_read &&
1243 process_count < max_process_count) {
1249 DRM_DEBUG_DRIVER("ESI %02x %02x %02x\n", esi[0], esi[1], esi[2]);
1250 /* handle HPD short pulse irq */
1251 if (aconnector->mst_mgr.mst_state)
1253 &aconnector->mst_mgr,
1257 if (new_irq_handled) {
1258 /* ACK at DPCD to notify down stream */
1259 const int ack_dpcd_bytes_to_write =
1260 dpcd_bytes_to_read - 1;
1262 for (retry = 0; retry < 3; retry++) {
1265 wret = drm_dp_dpcd_write(
1266 &aconnector->dm_dp_aux.aux,
1269 ack_dpcd_bytes_to_write);
1270 if (wret == ack_dpcd_bytes_to_write)
1274 /* check if there is new irq to be handled */
1275 dret = drm_dp_dpcd_read(
1276 &aconnector->dm_dp_aux.aux,
1279 dpcd_bytes_to_read);
1281 new_irq_handled = false;
1287 if (process_count == max_process_count)
1288 DRM_DEBUG_DRIVER("Loop exceeded max iterations\n");
1291 static void handle_hpd_rx_irq(void *param)
1293 struct amdgpu_dm_connector *aconnector = (struct amdgpu_dm_connector *)param;
1294 struct drm_connector *connector = &aconnector->base;
1295 struct drm_device *dev = connector->dev;
1296 struct dc_link *dc_link = aconnector->dc_link;
1297 bool is_mst_root_connector = aconnector->mst_mgr.mst_state;
1298 enum dc_connection_type new_connection_type = dc_connection_none;
1301 * TODO:Temporary add mutex to protect hpd interrupt not have a gpio
1302 * conflict, after implement i2c helper, this mutex should be
1305 if (dc_link->type != dc_connection_mst_branch)
1306 mutex_lock(&aconnector->hpd_lock);
1308 if (dc_link_handle_hpd_rx_irq(dc_link, NULL, NULL) &&
1309 !is_mst_root_connector) {
1310 /* Downstream Port status changed. */
1311 if (!dc_link_detect_sink(dc_link, &new_connection_type))
1312 DRM_ERROR("KMS: Failed to detect connector\n");
1314 if (aconnector->base.force && new_connection_type == dc_connection_none) {
1315 emulated_link_detect(dc_link);
1317 if (aconnector->fake_enable)
1318 aconnector->fake_enable = false;
1320 amdgpu_dm_update_connector_after_detect(aconnector);
1323 drm_modeset_lock_all(dev);
1324 dm_restore_drm_connector_state(dev, connector);
1325 drm_modeset_unlock_all(dev);
1327 drm_kms_helper_hotplug_event(dev);
1328 } else if (dc_link_detect(dc_link, DETECT_REASON_HPDRX)) {
1330 if (aconnector->fake_enable)
1331 aconnector->fake_enable = false;
1333 amdgpu_dm_update_connector_after_detect(aconnector);
1336 drm_modeset_lock_all(dev);
1337 dm_restore_drm_connector_state(dev, connector);
1338 drm_modeset_unlock_all(dev);
1340 drm_kms_helper_hotplug_event(dev);
1343 if ((dc_link->cur_link_settings.lane_count != LANE_COUNT_UNKNOWN) ||
1344 (dc_link->type == dc_connection_mst_branch))
1345 dm_handle_hpd_rx_irq(aconnector);
1347 if (dc_link->type != dc_connection_mst_branch) {
1348 drm_dp_cec_irq(&aconnector->dm_dp_aux.aux);
1349 mutex_unlock(&aconnector->hpd_lock);
1353 static void register_hpd_handlers(struct amdgpu_device *adev)
1355 struct drm_device *dev = adev->ddev;
1356 struct drm_connector *connector;
1357 struct amdgpu_dm_connector *aconnector;
1358 const struct dc_link *dc_link;
1359 struct dc_interrupt_params int_params = {0};
1361 int_params.requested_polarity = INTERRUPT_POLARITY_DEFAULT;
1362 int_params.current_polarity = INTERRUPT_POLARITY_DEFAULT;
1364 list_for_each_entry(connector,
1365 &dev->mode_config.connector_list, head) {
1367 aconnector = to_amdgpu_dm_connector(connector);
1368 dc_link = aconnector->dc_link;
1370 if (DC_IRQ_SOURCE_INVALID != dc_link->irq_source_hpd) {
1371 int_params.int_context = INTERRUPT_LOW_IRQ_CONTEXT;
1372 int_params.irq_source = dc_link->irq_source_hpd;
1374 amdgpu_dm_irq_register_interrupt(adev, &int_params,
1376 (void *) aconnector);
1379 if (DC_IRQ_SOURCE_INVALID != dc_link->irq_source_hpd_rx) {
1381 /* Also register for DP short pulse (hpd_rx). */
1382 int_params.int_context = INTERRUPT_LOW_IRQ_CONTEXT;
1383 int_params.irq_source = dc_link->irq_source_hpd_rx;
1385 amdgpu_dm_irq_register_interrupt(adev, &int_params,
1387 (void *) aconnector);
1392 /* Register IRQ sources and initialize IRQ callbacks */
1393 static int dce110_register_irq_handlers(struct amdgpu_device *adev)
1395 struct dc *dc = adev->dm.dc;
1396 struct common_irq_params *c_irq_params;
1397 struct dc_interrupt_params int_params = {0};
1400 unsigned client_id = AMDGPU_IRQ_CLIENTID_LEGACY;
1402 if (adev->asic_type == CHIP_VEGA10 ||
1403 adev->asic_type == CHIP_VEGA12 ||
1404 adev->asic_type == CHIP_VEGA20 ||
1405 adev->asic_type == CHIP_RAVEN)
1406 client_id = SOC15_IH_CLIENTID_DCE;
1408 int_params.requested_polarity = INTERRUPT_POLARITY_DEFAULT;
1409 int_params.current_polarity = INTERRUPT_POLARITY_DEFAULT;
1412 * Actions of amdgpu_irq_add_id():
1413 * 1. Register a set() function with base driver.
1414 * Base driver will call set() function to enable/disable an
1415 * interrupt in DC hardware.
1416 * 2. Register amdgpu_dm_irq_handler().
1417 * Base driver will call amdgpu_dm_irq_handler() for ALL interrupts
1418 * coming from DC hardware.
1419 * amdgpu_dm_irq_handler() will re-direct the interrupt to DC
1420 * for acknowledging and handling. */
1422 /* Use VBLANK interrupt */
1423 for (i = VISLANDS30_IV_SRCID_D1_VERTICAL_INTERRUPT0; i <= VISLANDS30_IV_SRCID_D6_VERTICAL_INTERRUPT0; i++) {
1424 r = amdgpu_irq_add_id(adev, client_id, i, &adev->crtc_irq);
1426 DRM_ERROR("Failed to add crtc irq id!\n");
1430 int_params.int_context = INTERRUPT_HIGH_IRQ_CONTEXT;
1431 int_params.irq_source =
1432 dc_interrupt_to_irq_source(dc, i, 0);
1434 c_irq_params = &adev->dm.vblank_params[int_params.irq_source - DC_IRQ_SOURCE_VBLANK1];
1436 c_irq_params->adev = adev;
1437 c_irq_params->irq_src = int_params.irq_source;
1439 amdgpu_dm_irq_register_interrupt(adev, &int_params,
1440 dm_crtc_high_irq, c_irq_params);
1443 /* Use GRPH_PFLIP interrupt */
1444 for (i = VISLANDS30_IV_SRCID_D1_GRPH_PFLIP;
1445 i <= VISLANDS30_IV_SRCID_D6_GRPH_PFLIP; i += 2) {
1446 r = amdgpu_irq_add_id(adev, client_id, i, &adev->pageflip_irq);
1448 DRM_ERROR("Failed to add page flip irq id!\n");
1452 int_params.int_context = INTERRUPT_HIGH_IRQ_CONTEXT;
1453 int_params.irq_source =
1454 dc_interrupt_to_irq_source(dc, i, 0);
1456 c_irq_params = &adev->dm.pflip_params[int_params.irq_source - DC_IRQ_SOURCE_PFLIP_FIRST];
1458 c_irq_params->adev = adev;
1459 c_irq_params->irq_src = int_params.irq_source;
1461 amdgpu_dm_irq_register_interrupt(adev, &int_params,
1462 dm_pflip_high_irq, c_irq_params);
1467 r = amdgpu_irq_add_id(adev, client_id,
1468 VISLANDS30_IV_SRCID_HOTPLUG_DETECT_A, &adev->hpd_irq);
1470 DRM_ERROR("Failed to add hpd irq id!\n");
1474 register_hpd_handlers(adev);
1479 #if defined(CONFIG_DRM_AMD_DC_DCN1_0)
1480 /* Register IRQ sources and initialize IRQ callbacks */
1481 static int dcn10_register_irq_handlers(struct amdgpu_device *adev)
1483 struct dc *dc = adev->dm.dc;
1484 struct common_irq_params *c_irq_params;
1485 struct dc_interrupt_params int_params = {0};
1489 int_params.requested_polarity = INTERRUPT_POLARITY_DEFAULT;
1490 int_params.current_polarity = INTERRUPT_POLARITY_DEFAULT;
1493 * Actions of amdgpu_irq_add_id():
1494 * 1. Register a set() function with base driver.
1495 * Base driver will call set() function to enable/disable an
1496 * interrupt in DC hardware.
1497 * 2. Register amdgpu_dm_irq_handler().
1498 * Base driver will call amdgpu_dm_irq_handler() for ALL interrupts
1499 * coming from DC hardware.
1500 * amdgpu_dm_irq_handler() will re-direct the interrupt to DC
1501 * for acknowledging and handling.
1504 /* Use VSTARTUP interrupt */
1505 for (i = DCN_1_0__SRCID__DC_D1_OTG_VSTARTUP;
1506 i <= DCN_1_0__SRCID__DC_D1_OTG_VSTARTUP + adev->mode_info.num_crtc - 1;
1508 r = amdgpu_irq_add_id(adev, SOC15_IH_CLIENTID_DCE, i, &adev->crtc_irq);
1511 DRM_ERROR("Failed to add crtc irq id!\n");
1515 int_params.int_context = INTERRUPT_HIGH_IRQ_CONTEXT;
1516 int_params.irq_source =
1517 dc_interrupt_to_irq_source(dc, i, 0);
1519 c_irq_params = &adev->dm.vblank_params[int_params.irq_source - DC_IRQ_SOURCE_VBLANK1];
1521 c_irq_params->adev = adev;
1522 c_irq_params->irq_src = int_params.irq_source;
1524 amdgpu_dm_irq_register_interrupt(adev, &int_params,
1525 dm_crtc_high_irq, c_irq_params);
1528 /* Use GRPH_PFLIP interrupt */
1529 for (i = DCN_1_0__SRCID__HUBP0_FLIP_INTERRUPT;
1530 i <= DCN_1_0__SRCID__HUBP0_FLIP_INTERRUPT + adev->mode_info.num_crtc - 1;
1532 r = amdgpu_irq_add_id(adev, SOC15_IH_CLIENTID_DCE, i, &adev->pageflip_irq);
1534 DRM_ERROR("Failed to add page flip irq id!\n");
1538 int_params.int_context = INTERRUPT_HIGH_IRQ_CONTEXT;
1539 int_params.irq_source =
1540 dc_interrupt_to_irq_source(dc, i, 0);
1542 c_irq_params = &adev->dm.pflip_params[int_params.irq_source - DC_IRQ_SOURCE_PFLIP_FIRST];
1544 c_irq_params->adev = adev;
1545 c_irq_params->irq_src = int_params.irq_source;
1547 amdgpu_dm_irq_register_interrupt(adev, &int_params,
1548 dm_pflip_high_irq, c_irq_params);
1553 r = amdgpu_irq_add_id(adev, SOC15_IH_CLIENTID_DCE, DCN_1_0__SRCID__DC_HPD1_INT,
1556 DRM_ERROR("Failed to add hpd irq id!\n");
1560 register_hpd_handlers(adev);
1567 * Acquires the lock for the atomic state object and returns
1568 * the new atomic state.
1570 * This should only be called during atomic check.
1572 static int dm_atomic_get_state(struct drm_atomic_state *state,
1573 struct dm_atomic_state **dm_state)
1575 struct drm_device *dev = state->dev;
1576 struct amdgpu_device *adev = dev->dev_private;
1577 struct amdgpu_display_manager *dm = &adev->dm;
1578 struct drm_private_state *priv_state;
1584 ret = drm_modeset_lock(&dm->atomic_obj_lock, state->acquire_ctx);
1588 priv_state = drm_atomic_get_private_obj_state(state, &dm->atomic_obj);
1589 if (IS_ERR(priv_state))
1590 return PTR_ERR(priv_state);
1592 *dm_state = to_dm_atomic_state(priv_state);
1597 struct dm_atomic_state *
1598 dm_atomic_get_new_state(struct drm_atomic_state *state)
1600 struct drm_device *dev = state->dev;
1601 struct amdgpu_device *adev = dev->dev_private;
1602 struct amdgpu_display_manager *dm = &adev->dm;
1603 struct drm_private_obj *obj;
1604 struct drm_private_state *new_obj_state;
1607 for_each_new_private_obj_in_state(state, obj, new_obj_state, i) {
1608 if (obj->funcs == dm->atomic_obj.funcs)
1609 return to_dm_atomic_state(new_obj_state);
1615 struct dm_atomic_state *
1616 dm_atomic_get_old_state(struct drm_atomic_state *state)
1618 struct drm_device *dev = state->dev;
1619 struct amdgpu_device *adev = dev->dev_private;
1620 struct amdgpu_display_manager *dm = &adev->dm;
1621 struct drm_private_obj *obj;
1622 struct drm_private_state *old_obj_state;
1625 for_each_old_private_obj_in_state(state, obj, old_obj_state, i) {
1626 if (obj->funcs == dm->atomic_obj.funcs)
1627 return to_dm_atomic_state(old_obj_state);
1633 static struct drm_private_state *
1634 dm_atomic_duplicate_state(struct drm_private_obj *obj)
1636 struct dm_atomic_state *old_state, *new_state;
1638 new_state = kzalloc(sizeof(*new_state), GFP_KERNEL);
1642 __drm_atomic_helper_private_obj_duplicate_state(obj, &new_state->base);
1644 new_state->context = dc_create_state();
1645 if (!new_state->context) {
1650 old_state = to_dm_atomic_state(obj->state);
1651 if (old_state && old_state->context)
1652 dc_resource_state_copy_construct(old_state->context,
1653 new_state->context);
1655 return &new_state->base;
1658 static void dm_atomic_destroy_state(struct drm_private_obj *obj,
1659 struct drm_private_state *state)
1661 struct dm_atomic_state *dm_state = to_dm_atomic_state(state);
1663 if (dm_state && dm_state->context)
1664 dc_release_state(dm_state->context);
1669 static struct drm_private_state_funcs dm_atomic_state_funcs = {
1670 .atomic_duplicate_state = dm_atomic_duplicate_state,
1671 .atomic_destroy_state = dm_atomic_destroy_state,
1674 static int amdgpu_dm_mode_config_init(struct amdgpu_device *adev)
1676 struct dm_atomic_state *state;
1679 adev->mode_info.mode_config_initialized = true;
1681 adev->ddev->mode_config.funcs = (void *)&amdgpu_dm_mode_funcs;
1682 adev->ddev->mode_config.helper_private = &amdgpu_dm_mode_config_helperfuncs;
1684 adev->ddev->mode_config.max_width = 16384;
1685 adev->ddev->mode_config.max_height = 16384;
1687 adev->ddev->mode_config.preferred_depth = 24;
1688 adev->ddev->mode_config.prefer_shadow = 1;
1689 /* indicates support for immediate flip */
1690 adev->ddev->mode_config.async_page_flip = true;
1692 adev->ddev->mode_config.fb_base = adev->gmc.aper_base;
1694 drm_modeset_lock_init(&adev->dm.atomic_obj_lock);
1696 state = kzalloc(sizeof(*state), GFP_KERNEL);
1700 state->context = dc_create_state();
1701 if (!state->context) {
1706 dc_resource_state_copy_construct_current(adev->dm.dc, state->context);
1708 drm_atomic_private_obj_init(&adev->dm.atomic_obj,
1710 &dm_atomic_state_funcs);
1712 r = amdgpu_display_modeset_create_props(adev);
1719 #define AMDGPU_DM_DEFAULT_MIN_BACKLIGHT 12
1720 #define AMDGPU_DM_DEFAULT_MAX_BACKLIGHT 255
1722 #if defined(CONFIG_BACKLIGHT_CLASS_DEVICE) ||\
1723 defined(CONFIG_BACKLIGHT_CLASS_DEVICE_MODULE)
1725 static void amdgpu_dm_update_backlight_caps(struct amdgpu_display_manager *dm)
1727 #if defined(CONFIG_ACPI)
1728 struct amdgpu_dm_backlight_caps caps;
1730 if (dm->backlight_caps.caps_valid)
1733 amdgpu_acpi_get_backlight_caps(dm->adev, &caps);
1734 if (caps.caps_valid) {
1735 dm->backlight_caps.min_input_signal = caps.min_input_signal;
1736 dm->backlight_caps.max_input_signal = caps.max_input_signal;
1737 dm->backlight_caps.caps_valid = true;
1739 dm->backlight_caps.min_input_signal =
1740 AMDGPU_DM_DEFAULT_MIN_BACKLIGHT;
1741 dm->backlight_caps.max_input_signal =
1742 AMDGPU_DM_DEFAULT_MAX_BACKLIGHT;
1745 dm->backlight_caps.min_input_signal = AMDGPU_DM_DEFAULT_MIN_BACKLIGHT;
1746 dm->backlight_caps.max_input_signal = AMDGPU_DM_DEFAULT_MAX_BACKLIGHT;
1750 static int amdgpu_dm_backlight_update_status(struct backlight_device *bd)
1752 struct amdgpu_display_manager *dm = bl_get_data(bd);
1753 struct amdgpu_dm_backlight_caps caps;
1754 uint32_t brightness = bd->props.brightness;
1756 amdgpu_dm_update_backlight_caps(dm);
1757 caps = dm->backlight_caps;
1759 * The brightness input is in the range 0-255
1760 * It needs to be rescaled to be between the
1761 * requested min and max input signal
1763 * It also needs to be scaled up by 0x101 to
1764 * match the DC interface which has a range of
1770 * (caps.max_input_signal - caps.min_input_signal)
1771 / AMDGPU_MAX_BL_LEVEL
1772 + caps.min_input_signal * 0x101;
1774 if (dc_link_set_backlight_level(dm->backlight_link,
1781 static int amdgpu_dm_backlight_get_brightness(struct backlight_device *bd)
1783 struct amdgpu_display_manager *dm = bl_get_data(bd);
1784 int ret = dc_link_get_backlight_level(dm->backlight_link);
1786 if (ret == DC_ERROR_UNEXPECTED)
1787 return bd->props.brightness;
1791 static const struct backlight_ops amdgpu_dm_backlight_ops = {
1792 .get_brightness = amdgpu_dm_backlight_get_brightness,
1793 .update_status = amdgpu_dm_backlight_update_status,
1797 amdgpu_dm_register_backlight_device(struct amdgpu_display_manager *dm)
1800 struct backlight_properties props = { 0 };
1802 amdgpu_dm_update_backlight_caps(dm);
1804 props.max_brightness = AMDGPU_MAX_BL_LEVEL;
1805 props.brightness = AMDGPU_MAX_BL_LEVEL;
1806 props.type = BACKLIGHT_RAW;
1808 snprintf(bl_name, sizeof(bl_name), "amdgpu_bl%d",
1809 dm->adev->ddev->primary->index);
1811 dm->backlight_dev = backlight_device_register(bl_name,
1812 dm->adev->ddev->dev,
1814 &amdgpu_dm_backlight_ops,
1817 if (IS_ERR(dm->backlight_dev))
1818 DRM_ERROR("DM: Backlight registration failed!\n");
1820 DRM_DEBUG_DRIVER("DM: Registered Backlight device: %s\n", bl_name);
1825 static int initialize_plane(struct amdgpu_display_manager *dm,
1826 struct amdgpu_mode_info *mode_info,
1829 struct drm_plane *plane;
1830 unsigned long possible_crtcs;
1833 plane = kzalloc(sizeof(struct drm_plane), GFP_KERNEL);
1834 mode_info->planes[plane_id] = plane;
1837 DRM_ERROR("KMS: Failed to allocate plane\n");
1840 plane->type = mode_info->plane_type[plane_id];
1843 * HACK: IGT tests expect that each plane can only have
1844 * one possible CRTC. For now, set one CRTC for each
1845 * plane that is not an underlay, but still allow multiple
1846 * CRTCs for underlay planes.
1848 possible_crtcs = 1 << plane_id;
1849 if (plane_id >= dm->dc->caps.max_streams)
1850 possible_crtcs = 0xff;
1852 ret = amdgpu_dm_plane_init(dm, mode_info->planes[plane_id], possible_crtcs);
1855 DRM_ERROR("KMS: Failed to initialize plane\n");
1863 static void register_backlight_device(struct amdgpu_display_manager *dm,
1864 struct dc_link *link)
1866 #if defined(CONFIG_BACKLIGHT_CLASS_DEVICE) ||\
1867 defined(CONFIG_BACKLIGHT_CLASS_DEVICE_MODULE)
1869 if ((link->connector_signal & (SIGNAL_TYPE_EDP | SIGNAL_TYPE_LVDS)) &&
1870 link->type != dc_connection_none) {
1872 * Event if registration failed, we should continue with
1873 * DM initialization because not having a backlight control
1874 * is better then a black screen.
1876 amdgpu_dm_register_backlight_device(dm);
1878 if (dm->backlight_dev)
1879 dm->backlight_link = link;
1886 * In this architecture, the association
1887 * connector -> encoder -> crtc
1888 * id not really requried. The crtc and connector will hold the
1889 * display_index as an abstraction to use with DAL component
1891 * Returns 0 on success
1893 static int amdgpu_dm_initialize_drm_device(struct amdgpu_device *adev)
1895 struct amdgpu_display_manager *dm = &adev->dm;
1897 struct amdgpu_dm_connector *aconnector = NULL;
1898 struct amdgpu_encoder *aencoder = NULL;
1899 struct amdgpu_mode_info *mode_info = &adev->mode_info;
1901 int32_t total_overlay_planes, total_primary_planes;
1902 enum dc_connection_type new_connection_type = dc_connection_none;
1904 link_cnt = dm->dc->caps.max_links;
1905 if (amdgpu_dm_mode_config_init(dm->adev)) {
1906 DRM_ERROR("DM: Failed to initialize mode config\n");
1910 /* Identify the number of planes to be initialized */
1911 total_overlay_planes = dm->dc->caps.max_slave_planes;
1912 total_primary_planes = dm->dc->caps.max_planes - dm->dc->caps.max_slave_planes;
1914 /* First initialize overlay planes, index starting after primary planes */
1915 for (i = (total_overlay_planes - 1); i >= 0; i--) {
1916 if (initialize_plane(dm, mode_info, (total_primary_planes + i))) {
1917 DRM_ERROR("KMS: Failed to initialize overlay plane\n");
1922 /* Initialize primary planes */
1923 for (i = (total_primary_planes - 1); i >= 0; i--) {
1924 if (initialize_plane(dm, mode_info, i)) {
1925 DRM_ERROR("KMS: Failed to initialize primary plane\n");
1930 for (i = 0; i < dm->dc->caps.max_streams; i++)
1931 if (amdgpu_dm_crtc_init(dm, mode_info->planes[i], i)) {
1932 DRM_ERROR("KMS: Failed to initialize crtc\n");
1936 dm->display_indexes_num = dm->dc->caps.max_streams;
1938 /* loops over all connectors on the board */
1939 for (i = 0; i < link_cnt; i++) {
1940 struct dc_link *link = NULL;
1942 if (i > AMDGPU_DM_MAX_DISPLAY_INDEX) {
1944 "KMS: Cannot support more than %d display indexes\n",
1945 AMDGPU_DM_MAX_DISPLAY_INDEX);
1949 aconnector = kzalloc(sizeof(*aconnector), GFP_KERNEL);
1953 aencoder = kzalloc(sizeof(*aencoder), GFP_KERNEL);
1957 if (amdgpu_dm_encoder_init(dm->ddev, aencoder, i)) {
1958 DRM_ERROR("KMS: Failed to initialize encoder\n");
1962 if (amdgpu_dm_connector_init(dm, aconnector, i, aencoder)) {
1963 DRM_ERROR("KMS: Failed to initialize connector\n");
1967 link = dc_get_link_at_index(dm->dc, i);
1969 if (!dc_link_detect_sink(link, &new_connection_type))
1970 DRM_ERROR("KMS: Failed to detect connector\n");
1972 if (aconnector->base.force && new_connection_type == dc_connection_none) {
1973 emulated_link_detect(link);
1974 amdgpu_dm_update_connector_after_detect(aconnector);
1976 } else if (dc_link_detect(link, DETECT_REASON_BOOT)) {
1977 amdgpu_dm_update_connector_after_detect(aconnector);
1978 register_backlight_device(dm, link);
1984 /* Software is initialized. Now we can register interrupt handlers. */
1985 switch (adev->asic_type) {
1995 case CHIP_POLARIS11:
1996 case CHIP_POLARIS10:
1997 case CHIP_POLARIS12:
2002 if (dce110_register_irq_handlers(dm->adev)) {
2003 DRM_ERROR("DM: Failed to initialize IRQ\n");
2007 #if defined(CONFIG_DRM_AMD_DC_DCN1_0)
2009 if (dcn10_register_irq_handlers(dm->adev)) {
2010 DRM_ERROR("DM: Failed to initialize IRQ\n");
2016 DRM_ERROR("Unsupported ASIC type: 0x%X\n", adev->asic_type);
2020 if (adev->asic_type != CHIP_CARRIZO && adev->asic_type != CHIP_STONEY)
2021 dm->dc->debug.disable_stutter = amdgpu_pp_feature_mask & PP_STUTTER_MODE ? false : true;
2027 for (i = 0; i < dm->dc->caps.max_planes; i++)
2028 kfree(mode_info->planes[i]);
2032 static void amdgpu_dm_destroy_drm_device(struct amdgpu_display_manager *dm)
2034 drm_mode_config_cleanup(dm->ddev);
2035 drm_atomic_private_obj_fini(&dm->atomic_obj);
2039 /******************************************************************************
2040 * amdgpu_display_funcs functions
2041 *****************************************************************************/
2044 * dm_bandwidth_update - program display watermarks
2046 * @adev: amdgpu_device pointer
2048 * Calculate and program the display watermarks and line buffer allocation.
2050 static void dm_bandwidth_update(struct amdgpu_device *adev)
2052 /* TODO: implement later */
2055 static const struct amdgpu_display_funcs dm_display_funcs = {
2056 .bandwidth_update = dm_bandwidth_update, /* called unconditionally */
2057 .vblank_get_counter = dm_vblank_get_counter,/* called unconditionally */
2058 .backlight_set_level = NULL, /* never called for DC */
2059 .backlight_get_level = NULL, /* never called for DC */
2060 .hpd_sense = NULL,/* called unconditionally */
2061 .hpd_set_polarity = NULL, /* called unconditionally */
2062 .hpd_get_gpio_reg = NULL, /* VBIOS parsing. DAL does it. */
2063 .page_flip_get_scanoutpos =
2064 dm_crtc_get_scanoutpos,/* called unconditionally */
2065 .add_encoder = NULL, /* VBIOS parsing. DAL does it. */
2066 .add_connector = NULL, /* VBIOS parsing. DAL does it. */
2069 #if defined(CONFIG_DEBUG_KERNEL_DC)
2071 static ssize_t s3_debug_store(struct device *device,
2072 struct device_attribute *attr,
2078 struct pci_dev *pdev = to_pci_dev(device);
2079 struct drm_device *drm_dev = pci_get_drvdata(pdev);
2080 struct amdgpu_device *adev = drm_dev->dev_private;
2082 ret = kstrtoint(buf, 0, &s3_state);
2087 drm_kms_helper_hotplug_event(adev->ddev);
2092 return ret == 0 ? count : 0;
2095 DEVICE_ATTR_WO(s3_debug);
2099 static int dm_early_init(void *handle)
2101 struct amdgpu_device *adev = (struct amdgpu_device *)handle;
2103 switch (adev->asic_type) {
2106 adev->mode_info.num_crtc = 6;
2107 adev->mode_info.num_hpd = 6;
2108 adev->mode_info.num_dig = 6;
2109 adev->mode_info.plane_type = dm_plane_type_default;
2112 adev->mode_info.num_crtc = 4;
2113 adev->mode_info.num_hpd = 6;
2114 adev->mode_info.num_dig = 7;
2115 adev->mode_info.plane_type = dm_plane_type_default;
2119 adev->mode_info.num_crtc = 2;
2120 adev->mode_info.num_hpd = 6;
2121 adev->mode_info.num_dig = 6;
2122 adev->mode_info.plane_type = dm_plane_type_default;
2126 adev->mode_info.num_crtc = 6;
2127 adev->mode_info.num_hpd = 6;
2128 adev->mode_info.num_dig = 7;
2129 adev->mode_info.plane_type = dm_plane_type_default;
2132 adev->mode_info.num_crtc = 3;
2133 adev->mode_info.num_hpd = 6;
2134 adev->mode_info.num_dig = 9;
2135 adev->mode_info.plane_type = dm_plane_type_carizzo;
2138 adev->mode_info.num_crtc = 2;
2139 adev->mode_info.num_hpd = 6;
2140 adev->mode_info.num_dig = 9;
2141 adev->mode_info.plane_type = dm_plane_type_stoney;
2143 case CHIP_POLARIS11:
2144 case CHIP_POLARIS12:
2145 adev->mode_info.num_crtc = 5;
2146 adev->mode_info.num_hpd = 5;
2147 adev->mode_info.num_dig = 5;
2148 adev->mode_info.plane_type = dm_plane_type_default;
2150 case CHIP_POLARIS10:
2152 adev->mode_info.num_crtc = 6;
2153 adev->mode_info.num_hpd = 6;
2154 adev->mode_info.num_dig = 6;
2155 adev->mode_info.plane_type = dm_plane_type_default;
2160 adev->mode_info.num_crtc = 6;
2161 adev->mode_info.num_hpd = 6;
2162 adev->mode_info.num_dig = 6;
2163 adev->mode_info.plane_type = dm_plane_type_default;
2165 #if defined(CONFIG_DRM_AMD_DC_DCN1_0)
2167 adev->mode_info.num_crtc = 4;
2168 adev->mode_info.num_hpd = 4;
2169 adev->mode_info.num_dig = 4;
2170 adev->mode_info.plane_type = dm_plane_type_default;
2174 DRM_ERROR("Unsupported ASIC type: 0x%X\n", adev->asic_type);
2178 amdgpu_dm_set_irq_funcs(adev);
2180 if (adev->mode_info.funcs == NULL)
2181 adev->mode_info.funcs = &dm_display_funcs;
2184 * Note: Do NOT change adev->audio_endpt_rreg and
2185 * adev->audio_endpt_wreg because they are initialised in
2186 * amdgpu_device_init()
2188 #if defined(CONFIG_DEBUG_KERNEL_DC)
2191 &dev_attr_s3_debug);
2197 static bool modeset_required(struct drm_crtc_state *crtc_state,
2198 struct dc_stream_state *new_stream,
2199 struct dc_stream_state *old_stream)
2201 if (!drm_atomic_crtc_needs_modeset(crtc_state))
2204 if (!crtc_state->enable)
2207 return crtc_state->active;
2210 static bool modereset_required(struct drm_crtc_state *crtc_state)
2212 if (!drm_atomic_crtc_needs_modeset(crtc_state))
2215 return !crtc_state->enable || !crtc_state->active;
2218 static void amdgpu_dm_encoder_destroy(struct drm_encoder *encoder)
2220 drm_encoder_cleanup(encoder);
2224 static const struct drm_encoder_funcs amdgpu_dm_encoder_funcs = {
2225 .destroy = amdgpu_dm_encoder_destroy,
2228 static bool fill_rects_from_plane_state(const struct drm_plane_state *state,
2229 struct dc_plane_state *plane_state)
2231 plane_state->src_rect.x = state->src_x >> 16;
2232 plane_state->src_rect.y = state->src_y >> 16;
2233 /* we ignore the mantissa for now and do not deal with floating pixels :( */
2234 plane_state->src_rect.width = state->src_w >> 16;
2236 if (plane_state->src_rect.width == 0)
2239 plane_state->src_rect.height = state->src_h >> 16;
2240 if (plane_state->src_rect.height == 0)
2243 plane_state->dst_rect.x = state->crtc_x;
2244 plane_state->dst_rect.y = state->crtc_y;
2246 if (state->crtc_w == 0)
2249 plane_state->dst_rect.width = state->crtc_w;
2251 if (state->crtc_h == 0)
2254 plane_state->dst_rect.height = state->crtc_h;
2256 plane_state->clip_rect = plane_state->dst_rect;
2258 switch (state->rotation & DRM_MODE_ROTATE_MASK) {
2259 case DRM_MODE_ROTATE_0:
2260 plane_state->rotation = ROTATION_ANGLE_0;
2262 case DRM_MODE_ROTATE_90:
2263 plane_state->rotation = ROTATION_ANGLE_90;
2265 case DRM_MODE_ROTATE_180:
2266 plane_state->rotation = ROTATION_ANGLE_180;
2268 case DRM_MODE_ROTATE_270:
2269 plane_state->rotation = ROTATION_ANGLE_270;
2272 plane_state->rotation = ROTATION_ANGLE_0;
2278 static int get_fb_info(const struct amdgpu_framebuffer *amdgpu_fb,
2279 uint64_t *tiling_flags)
2281 struct amdgpu_bo *rbo = gem_to_amdgpu_bo(amdgpu_fb->base.obj[0]);
2282 int r = amdgpu_bo_reserve(rbo, false);
2285 /* Don't show error message when returning -ERESTARTSYS */
2286 if (r != -ERESTARTSYS)
2287 DRM_ERROR("Unable to reserve buffer: %d\n", r);
2292 amdgpu_bo_get_tiling_flags(rbo, tiling_flags);
2294 amdgpu_bo_unreserve(rbo);
2299 static int fill_plane_attributes_from_fb(struct amdgpu_device *adev,
2300 struct dc_plane_state *plane_state,
2301 const struct amdgpu_framebuffer *amdgpu_fb)
2303 uint64_t tiling_flags;
2304 unsigned int awidth;
2305 const struct drm_framebuffer *fb = &amdgpu_fb->base;
2307 struct drm_format_name_buf format_name;
2316 switch (fb->format->format) {
2318 plane_state->format = SURFACE_PIXEL_FORMAT_GRPH_PALETA_256_COLORS;
2320 case DRM_FORMAT_RGB565:
2321 plane_state->format = SURFACE_PIXEL_FORMAT_GRPH_RGB565;
2323 case DRM_FORMAT_XRGB8888:
2324 case DRM_FORMAT_ARGB8888:
2325 plane_state->format = SURFACE_PIXEL_FORMAT_GRPH_ARGB8888;
2327 case DRM_FORMAT_XRGB2101010:
2328 case DRM_FORMAT_ARGB2101010:
2329 plane_state->format = SURFACE_PIXEL_FORMAT_GRPH_ARGB2101010;
2331 case DRM_FORMAT_XBGR2101010:
2332 case DRM_FORMAT_ABGR2101010:
2333 plane_state->format = SURFACE_PIXEL_FORMAT_GRPH_ABGR2101010;
2335 case DRM_FORMAT_XBGR8888:
2336 case DRM_FORMAT_ABGR8888:
2337 plane_state->format = SURFACE_PIXEL_FORMAT_GRPH_ABGR8888;
2339 case DRM_FORMAT_NV21:
2340 plane_state->format = SURFACE_PIXEL_FORMAT_VIDEO_420_YCbCr;
2342 case DRM_FORMAT_NV12:
2343 plane_state->format = SURFACE_PIXEL_FORMAT_VIDEO_420_YCrCb;
2346 DRM_ERROR("Unsupported screen format %s\n",
2347 drm_get_format_name(fb->format->format, &format_name));
2351 if (plane_state->format < SURFACE_PIXEL_FORMAT_VIDEO_BEGIN) {
2352 plane_state->address.type = PLN_ADDR_TYPE_GRAPHICS;
2353 plane_state->plane_size.grph.surface_size.x = 0;
2354 plane_state->plane_size.grph.surface_size.y = 0;
2355 plane_state->plane_size.grph.surface_size.width = fb->width;
2356 plane_state->plane_size.grph.surface_size.height = fb->height;
2357 plane_state->plane_size.grph.surface_pitch =
2358 fb->pitches[0] / fb->format->cpp[0];
2359 /* TODO: unhardcode */
2360 plane_state->color_space = COLOR_SPACE_SRGB;
2363 awidth = ALIGN(fb->width, 64);
2364 plane_state->address.type = PLN_ADDR_TYPE_VIDEO_PROGRESSIVE;
2365 plane_state->plane_size.video.luma_size.x = 0;
2366 plane_state->plane_size.video.luma_size.y = 0;
2367 plane_state->plane_size.video.luma_size.width = awidth;
2368 plane_state->plane_size.video.luma_size.height = fb->height;
2369 /* TODO: unhardcode */
2370 plane_state->plane_size.video.luma_pitch = awidth;
2372 plane_state->plane_size.video.chroma_size.x = 0;
2373 plane_state->plane_size.video.chroma_size.y = 0;
2374 plane_state->plane_size.video.chroma_size.width = awidth;
2375 plane_state->plane_size.video.chroma_size.height = fb->height;
2376 plane_state->plane_size.video.chroma_pitch = awidth / 2;
2378 /* TODO: unhardcode */
2379 plane_state->color_space = COLOR_SPACE_YCBCR709;
2382 memset(&plane_state->tiling_info, 0, sizeof(plane_state->tiling_info));
2384 /* Fill GFX8 params */
2385 if (AMDGPU_TILING_GET(tiling_flags, ARRAY_MODE) == DC_ARRAY_2D_TILED_THIN1) {
2386 unsigned int bankw, bankh, mtaspect, tile_split, num_banks;
2388 bankw = AMDGPU_TILING_GET(tiling_flags, BANK_WIDTH);
2389 bankh = AMDGPU_TILING_GET(tiling_flags, BANK_HEIGHT);
2390 mtaspect = AMDGPU_TILING_GET(tiling_flags, MACRO_TILE_ASPECT);
2391 tile_split = AMDGPU_TILING_GET(tiling_flags, TILE_SPLIT);
2392 num_banks = AMDGPU_TILING_GET(tiling_flags, NUM_BANKS);
2394 /* XXX fix me for VI */
2395 plane_state->tiling_info.gfx8.num_banks = num_banks;
2396 plane_state->tiling_info.gfx8.array_mode =
2397 DC_ARRAY_2D_TILED_THIN1;
2398 plane_state->tiling_info.gfx8.tile_split = tile_split;
2399 plane_state->tiling_info.gfx8.bank_width = bankw;
2400 plane_state->tiling_info.gfx8.bank_height = bankh;
2401 plane_state->tiling_info.gfx8.tile_aspect = mtaspect;
2402 plane_state->tiling_info.gfx8.tile_mode =
2403 DC_ADDR_SURF_MICRO_TILING_DISPLAY;
2404 } else if (AMDGPU_TILING_GET(tiling_flags, ARRAY_MODE)
2405 == DC_ARRAY_1D_TILED_THIN1) {
2406 plane_state->tiling_info.gfx8.array_mode = DC_ARRAY_1D_TILED_THIN1;
2409 plane_state->tiling_info.gfx8.pipe_config =
2410 AMDGPU_TILING_GET(tiling_flags, PIPE_CONFIG);
2412 if (adev->asic_type == CHIP_VEGA10 ||
2413 adev->asic_type == CHIP_VEGA12 ||
2414 adev->asic_type == CHIP_VEGA20 ||
2415 adev->asic_type == CHIP_RAVEN) {
2416 /* Fill GFX9 params */
2417 plane_state->tiling_info.gfx9.num_pipes =
2418 adev->gfx.config.gb_addr_config_fields.num_pipes;
2419 plane_state->tiling_info.gfx9.num_banks =
2420 adev->gfx.config.gb_addr_config_fields.num_banks;
2421 plane_state->tiling_info.gfx9.pipe_interleave =
2422 adev->gfx.config.gb_addr_config_fields.pipe_interleave_size;
2423 plane_state->tiling_info.gfx9.num_shader_engines =
2424 adev->gfx.config.gb_addr_config_fields.num_se;
2425 plane_state->tiling_info.gfx9.max_compressed_frags =
2426 adev->gfx.config.gb_addr_config_fields.max_compress_frags;
2427 plane_state->tiling_info.gfx9.num_rb_per_se =
2428 adev->gfx.config.gb_addr_config_fields.num_rb_per_se;
2429 plane_state->tiling_info.gfx9.swizzle =
2430 AMDGPU_TILING_GET(tiling_flags, SWIZZLE_MODE);
2431 plane_state->tiling_info.gfx9.shaderEnable = 1;
2434 plane_state->visible = true;
2435 plane_state->scaling_quality.h_taps_c = 0;
2436 plane_state->scaling_quality.v_taps_c = 0;
2438 /* is this needed? is plane_state zeroed at allocation? */
2439 plane_state->scaling_quality.h_taps = 0;
2440 plane_state->scaling_quality.v_taps = 0;
2441 plane_state->stereo_format = PLANE_STEREO_FORMAT_NONE;
2447 static int fill_plane_attributes(struct amdgpu_device *adev,
2448 struct dc_plane_state *dc_plane_state,
2449 struct drm_plane_state *plane_state,
2450 struct drm_crtc_state *crtc_state)
2452 const struct amdgpu_framebuffer *amdgpu_fb =
2453 to_amdgpu_framebuffer(plane_state->fb);
2454 const struct drm_crtc *crtc = plane_state->crtc;
2457 if (!fill_rects_from_plane_state(plane_state, dc_plane_state))
2460 ret = fill_plane_attributes_from_fb(
2461 crtc->dev->dev_private,
2469 * Always set input transfer function, since plane state is refreshed
2472 ret = amdgpu_dm_set_degamma_lut(crtc_state, dc_plane_state);
2474 dc_transfer_func_release(dc_plane_state->in_transfer_func);
2475 dc_plane_state->in_transfer_func = NULL;
2481 static void update_stream_scaling_settings(const struct drm_display_mode *mode,
2482 const struct dm_connector_state *dm_state,
2483 struct dc_stream_state *stream)
2485 enum amdgpu_rmx_type rmx_type;
2487 struct rect src = { 0 }; /* viewport in composition space*/
2488 struct rect dst = { 0 }; /* stream addressable area */
2490 /* no mode. nothing to be done */
2494 /* Full screen scaling by default */
2495 src.width = mode->hdisplay;
2496 src.height = mode->vdisplay;
2497 dst.width = stream->timing.h_addressable;
2498 dst.height = stream->timing.v_addressable;
2501 rmx_type = dm_state->scaling;
2502 if (rmx_type == RMX_ASPECT || rmx_type == RMX_OFF) {
2503 if (src.width * dst.height <
2504 src.height * dst.width) {
2505 /* height needs less upscaling/more downscaling */
2506 dst.width = src.width *
2507 dst.height / src.height;
2509 /* width needs less upscaling/more downscaling */
2510 dst.height = src.height *
2511 dst.width / src.width;
2513 } else if (rmx_type == RMX_CENTER) {
2517 dst.x = (stream->timing.h_addressable - dst.width) / 2;
2518 dst.y = (stream->timing.v_addressable - dst.height) / 2;
2520 if (dm_state->underscan_enable) {
2521 dst.x += dm_state->underscan_hborder / 2;
2522 dst.y += dm_state->underscan_vborder / 2;
2523 dst.width -= dm_state->underscan_hborder;
2524 dst.height -= dm_state->underscan_vborder;
2531 DRM_DEBUG_DRIVER("Destination Rectangle x:%d y:%d width:%d height:%d\n",
2532 dst.x, dst.y, dst.width, dst.height);
2536 static enum dc_color_depth
2537 convert_color_depth_from_display_info(const struct drm_connector *connector)
2539 struct dm_connector_state *dm_conn_state =
2540 to_dm_connector_state(connector->state);
2541 uint32_t bpc = connector->display_info.bpc;
2543 /* TODO: Remove this when there's support for max_bpc in drm */
2544 if (dm_conn_state && bpc > dm_conn_state->max_bpc)
2545 /* Round down to nearest even number. */
2546 bpc = dm_conn_state->max_bpc - (dm_conn_state->max_bpc & 1);
2551 * Temporary Work around, DRM doesn't parse color depth for
2552 * EDID revision before 1.4
2553 * TODO: Fix edid parsing
2555 return COLOR_DEPTH_888;
2557 return COLOR_DEPTH_666;
2559 return COLOR_DEPTH_888;
2561 return COLOR_DEPTH_101010;
2563 return COLOR_DEPTH_121212;
2565 return COLOR_DEPTH_141414;
2567 return COLOR_DEPTH_161616;
2569 return COLOR_DEPTH_UNDEFINED;
2573 static enum dc_aspect_ratio
2574 get_aspect_ratio(const struct drm_display_mode *mode_in)
2576 /* 1-1 mapping, since both enums follow the HDMI spec. */
2577 return (enum dc_aspect_ratio) mode_in->picture_aspect_ratio;
2580 static enum dc_color_space
2581 get_output_color_space(const struct dc_crtc_timing *dc_crtc_timing)
2583 enum dc_color_space color_space = COLOR_SPACE_SRGB;
2585 switch (dc_crtc_timing->pixel_encoding) {
2586 case PIXEL_ENCODING_YCBCR422:
2587 case PIXEL_ENCODING_YCBCR444:
2588 case PIXEL_ENCODING_YCBCR420:
2591 * 27030khz is the separation point between HDTV and SDTV
2592 * according to HDMI spec, we use YCbCr709 and YCbCr601
2595 if (dc_crtc_timing->pix_clk_khz > 27030) {
2596 if (dc_crtc_timing->flags.Y_ONLY)
2598 COLOR_SPACE_YCBCR709_LIMITED;
2600 color_space = COLOR_SPACE_YCBCR709;
2602 if (dc_crtc_timing->flags.Y_ONLY)
2604 COLOR_SPACE_YCBCR601_LIMITED;
2606 color_space = COLOR_SPACE_YCBCR601;
2611 case PIXEL_ENCODING_RGB:
2612 color_space = COLOR_SPACE_SRGB;
2623 static void reduce_mode_colour_depth(struct dc_crtc_timing *timing_out)
2625 if (timing_out->display_color_depth <= COLOR_DEPTH_888)
2628 timing_out->display_color_depth--;
2631 static void adjust_colour_depth_from_display_info(struct dc_crtc_timing *timing_out,
2632 const struct drm_display_info *info)
2635 if (timing_out->display_color_depth <= COLOR_DEPTH_888)
2638 normalized_clk = timing_out->pix_clk_khz;
2639 /* YCbCr 4:2:0 requires additional adjustment of 1/2 */
2640 if (timing_out->pixel_encoding == PIXEL_ENCODING_YCBCR420)
2641 normalized_clk /= 2;
2642 /* Adjusting pix clock following on HDMI spec based on colour depth */
2643 switch (timing_out->display_color_depth) {
2644 case COLOR_DEPTH_101010:
2645 normalized_clk = (normalized_clk * 30) / 24;
2647 case COLOR_DEPTH_121212:
2648 normalized_clk = (normalized_clk * 36) / 24;
2650 case COLOR_DEPTH_161616:
2651 normalized_clk = (normalized_clk * 48) / 24;
2656 if (normalized_clk <= info->max_tmds_clock)
2658 reduce_mode_colour_depth(timing_out);
2660 } while (timing_out->display_color_depth > COLOR_DEPTH_888);
2665 fill_stream_properties_from_drm_display_mode(struct dc_stream_state *stream,
2666 const struct drm_display_mode *mode_in,
2667 const struct drm_connector *connector,
2668 const struct dc_stream_state *old_stream)
2670 struct dc_crtc_timing *timing_out = &stream->timing;
2671 const struct drm_display_info *info = &connector->display_info;
2673 memset(timing_out, 0, sizeof(struct dc_crtc_timing));
2675 timing_out->h_border_left = 0;
2676 timing_out->h_border_right = 0;
2677 timing_out->v_border_top = 0;
2678 timing_out->v_border_bottom = 0;
2679 /* TODO: un-hardcode */
2680 if (drm_mode_is_420_only(info, mode_in)
2681 && stream->sink->sink_signal == SIGNAL_TYPE_HDMI_TYPE_A)
2682 timing_out->pixel_encoding = PIXEL_ENCODING_YCBCR420;
2683 else if ((connector->display_info.color_formats & DRM_COLOR_FORMAT_YCRCB444)
2684 && stream->sink->sink_signal == SIGNAL_TYPE_HDMI_TYPE_A)
2685 timing_out->pixel_encoding = PIXEL_ENCODING_YCBCR444;
2687 timing_out->pixel_encoding = PIXEL_ENCODING_RGB;
2689 timing_out->timing_3d_format = TIMING_3D_FORMAT_NONE;
2690 timing_out->display_color_depth = convert_color_depth_from_display_info(
2692 timing_out->scan_type = SCANNING_TYPE_NODATA;
2693 timing_out->hdmi_vic = 0;
2696 timing_out->vic = old_stream->timing.vic;
2697 timing_out->flags.HSYNC_POSITIVE_POLARITY = old_stream->timing.flags.HSYNC_POSITIVE_POLARITY;
2698 timing_out->flags.VSYNC_POSITIVE_POLARITY = old_stream->timing.flags.VSYNC_POSITIVE_POLARITY;
2700 timing_out->vic = drm_match_cea_mode(mode_in);
2701 if (mode_in->flags & DRM_MODE_FLAG_PHSYNC)
2702 timing_out->flags.HSYNC_POSITIVE_POLARITY = 1;
2703 if (mode_in->flags & DRM_MODE_FLAG_PVSYNC)
2704 timing_out->flags.VSYNC_POSITIVE_POLARITY = 1;
2707 timing_out->h_addressable = mode_in->crtc_hdisplay;
2708 timing_out->h_total = mode_in->crtc_htotal;
2709 timing_out->h_sync_width =
2710 mode_in->crtc_hsync_end - mode_in->crtc_hsync_start;
2711 timing_out->h_front_porch =
2712 mode_in->crtc_hsync_start - mode_in->crtc_hdisplay;
2713 timing_out->v_total = mode_in->crtc_vtotal;
2714 timing_out->v_addressable = mode_in->crtc_vdisplay;
2715 timing_out->v_front_porch =
2716 mode_in->crtc_vsync_start - mode_in->crtc_vdisplay;
2717 timing_out->v_sync_width =
2718 mode_in->crtc_vsync_end - mode_in->crtc_vsync_start;
2719 timing_out->pix_clk_khz = mode_in->crtc_clock;
2720 timing_out->aspect_ratio = get_aspect_ratio(mode_in);
2722 stream->output_color_space = get_output_color_space(timing_out);
2724 stream->out_transfer_func->type = TF_TYPE_PREDEFINED;
2725 stream->out_transfer_func->tf = TRANSFER_FUNCTION_SRGB;
2726 if (stream->sink->sink_signal == SIGNAL_TYPE_HDMI_TYPE_A)
2727 adjust_colour_depth_from_display_info(timing_out, info);
2730 static void fill_audio_info(struct audio_info *audio_info,
2731 const struct drm_connector *drm_connector,
2732 const struct dc_sink *dc_sink)
2735 int cea_revision = 0;
2736 const struct dc_edid_caps *edid_caps = &dc_sink->edid_caps;
2738 audio_info->manufacture_id = edid_caps->manufacturer_id;
2739 audio_info->product_id = edid_caps->product_id;
2741 cea_revision = drm_connector->display_info.cea_rev;
2743 strscpy(audio_info->display_name,
2744 edid_caps->display_name,
2745 AUDIO_INFO_DISPLAY_NAME_SIZE_IN_CHARS);
2747 if (cea_revision >= 3) {
2748 audio_info->mode_count = edid_caps->audio_mode_count;
2750 for (i = 0; i < audio_info->mode_count; ++i) {
2751 audio_info->modes[i].format_code =
2752 (enum audio_format_code)
2753 (edid_caps->audio_modes[i].format_code);
2754 audio_info->modes[i].channel_count =
2755 edid_caps->audio_modes[i].channel_count;
2756 audio_info->modes[i].sample_rates.all =
2757 edid_caps->audio_modes[i].sample_rate;
2758 audio_info->modes[i].sample_size =
2759 edid_caps->audio_modes[i].sample_size;
2763 audio_info->flags.all = edid_caps->speaker_flags;
2765 /* TODO: We only check for the progressive mode, check for interlace mode too */
2766 if (drm_connector->latency_present[0]) {
2767 audio_info->video_latency = drm_connector->video_latency[0];
2768 audio_info->audio_latency = drm_connector->audio_latency[0];
2771 /* TODO: For DP, video and audio latency should be calculated from DPCD caps */
2776 copy_crtc_timing_for_drm_display_mode(const struct drm_display_mode *src_mode,
2777 struct drm_display_mode *dst_mode)
2779 dst_mode->crtc_hdisplay = src_mode->crtc_hdisplay;
2780 dst_mode->crtc_vdisplay = src_mode->crtc_vdisplay;
2781 dst_mode->crtc_clock = src_mode->crtc_clock;
2782 dst_mode->crtc_hblank_start = src_mode->crtc_hblank_start;
2783 dst_mode->crtc_hblank_end = src_mode->crtc_hblank_end;
2784 dst_mode->crtc_hsync_start = src_mode->crtc_hsync_start;
2785 dst_mode->crtc_hsync_end = src_mode->crtc_hsync_end;
2786 dst_mode->crtc_htotal = src_mode->crtc_htotal;
2787 dst_mode->crtc_hskew = src_mode->crtc_hskew;
2788 dst_mode->crtc_vblank_start = src_mode->crtc_vblank_start;
2789 dst_mode->crtc_vblank_end = src_mode->crtc_vblank_end;
2790 dst_mode->crtc_vsync_start = src_mode->crtc_vsync_start;
2791 dst_mode->crtc_vsync_end = src_mode->crtc_vsync_end;
2792 dst_mode->crtc_vtotal = src_mode->crtc_vtotal;
2796 decide_crtc_timing_for_drm_display_mode(struct drm_display_mode *drm_mode,
2797 const struct drm_display_mode *native_mode,
2800 if (scale_enabled) {
2801 copy_crtc_timing_for_drm_display_mode(native_mode, drm_mode);
2802 } else if (native_mode->clock == drm_mode->clock &&
2803 native_mode->htotal == drm_mode->htotal &&
2804 native_mode->vtotal == drm_mode->vtotal) {
2805 copy_crtc_timing_for_drm_display_mode(native_mode, drm_mode);
2807 /* no scaling nor amdgpu inserted, no need to patch */
2811 static struct dc_sink *
2812 create_fake_sink(struct amdgpu_dm_connector *aconnector)
2814 struct dc_sink_init_data sink_init_data = { 0 };
2815 struct dc_sink *sink = NULL;
2816 sink_init_data.link = aconnector->dc_link;
2817 sink_init_data.sink_signal = aconnector->dc_link->connector_signal;
2819 sink = dc_sink_create(&sink_init_data);
2821 DRM_ERROR("Failed to create sink!\n");
2824 sink->sink_signal = SIGNAL_TYPE_VIRTUAL;
2829 static void set_multisync_trigger_params(
2830 struct dc_stream_state *stream)
2832 if (stream->triggered_crtc_reset.enabled) {
2833 stream->triggered_crtc_reset.event = CRTC_EVENT_VSYNC_RISING;
2834 stream->triggered_crtc_reset.delay = TRIGGER_DELAY_NEXT_LINE;
2838 static void set_master_stream(struct dc_stream_state *stream_set[],
2841 int j, highest_rfr = 0, master_stream = 0;
2843 for (j = 0; j < stream_count; j++) {
2844 if (stream_set[j] && stream_set[j]->triggered_crtc_reset.enabled) {
2845 int refresh_rate = 0;
2847 refresh_rate = (stream_set[j]->timing.pix_clk_khz*1000)/
2848 (stream_set[j]->timing.h_total*stream_set[j]->timing.v_total);
2849 if (refresh_rate > highest_rfr) {
2850 highest_rfr = refresh_rate;
2855 for (j = 0; j < stream_count; j++) {
2857 stream_set[j]->triggered_crtc_reset.event_source = stream_set[master_stream];
2861 static void dm_enable_per_frame_crtc_master_sync(struct dc_state *context)
2865 if (context->stream_count < 2)
2867 for (i = 0; i < context->stream_count ; i++) {
2868 if (!context->streams[i])
2871 * TODO: add a function to read AMD VSDB bits and set
2872 * crtc_sync_master.multi_sync_enabled flag
2873 * For now it's set to false
2875 set_multisync_trigger_params(context->streams[i]);
2877 set_master_stream(context->streams, context->stream_count);
2880 static struct dc_stream_state *
2881 create_stream_for_sink(struct amdgpu_dm_connector *aconnector,
2882 const struct drm_display_mode *drm_mode,
2883 const struct dm_connector_state *dm_state,
2884 const struct dc_stream_state *old_stream)
2886 struct drm_display_mode *preferred_mode = NULL;
2887 struct drm_connector *drm_connector;
2888 struct dc_stream_state *stream = NULL;
2889 struct drm_display_mode mode = *drm_mode;
2890 bool native_mode_found = false;
2891 bool scale = dm_state ? (dm_state->scaling != RMX_OFF) : false;
2893 int preferred_refresh = 0;
2895 struct dc_sink *sink = NULL;
2896 if (aconnector == NULL) {
2897 DRM_ERROR("aconnector is NULL!\n");
2901 drm_connector = &aconnector->base;
2903 if (!aconnector->dc_sink) {
2904 if (!aconnector->mst_port) {
2905 sink = create_fake_sink(aconnector);
2910 sink = aconnector->dc_sink;
2913 stream = dc_create_stream_for_sink(sink);
2915 if (stream == NULL) {
2916 DRM_ERROR("Failed to create stream for sink!\n");
2920 list_for_each_entry(preferred_mode, &aconnector->base.modes, head) {
2921 /* Search for preferred mode */
2922 if (preferred_mode->type & DRM_MODE_TYPE_PREFERRED) {
2923 native_mode_found = true;
2927 if (!native_mode_found)
2928 preferred_mode = list_first_entry_or_null(
2929 &aconnector->base.modes,
2930 struct drm_display_mode,
2933 mode_refresh = drm_mode_vrefresh(&mode);
2935 if (preferred_mode == NULL) {
2937 * This may not be an error, the use case is when we have no
2938 * usermode calls to reset and set mode upon hotplug. In this
2939 * case, we call set mode ourselves to restore the previous mode
2940 * and the modelist may not be filled in in time.
2942 DRM_DEBUG_DRIVER("No preferred mode found\n");
2944 decide_crtc_timing_for_drm_display_mode(
2945 &mode, preferred_mode,
2946 dm_state ? (dm_state->scaling != RMX_OFF) : false);
2947 preferred_refresh = drm_mode_vrefresh(preferred_mode);
2951 drm_mode_set_crtcinfo(&mode, 0);
2954 * If scaling is enabled and refresh rate didn't change
2955 * we copy the vic and polarities of the old timings
2957 if (!scale || mode_refresh != preferred_refresh)
2958 fill_stream_properties_from_drm_display_mode(stream,
2959 &mode, &aconnector->base, NULL);
2961 fill_stream_properties_from_drm_display_mode(stream,
2962 &mode, &aconnector->base, old_stream);
2964 update_stream_scaling_settings(&mode, dm_state, stream);
2967 &stream->audio_info,
2971 update_stream_signal(stream);
2973 if (dm_state && dm_state->freesync_capable)
2974 stream->ignore_msa_timing_param = true;
2977 if (sink && sink->sink_signal == SIGNAL_TYPE_VIRTUAL && aconnector->base.force != DRM_FORCE_ON)
2978 dc_sink_release(sink);
2983 static void amdgpu_dm_crtc_destroy(struct drm_crtc *crtc)
2985 drm_crtc_cleanup(crtc);
2989 static void dm_crtc_destroy_state(struct drm_crtc *crtc,