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 "link_enc_cfg.h"
32 #include "dc/inc/core_types.h"
33 #include "dal_asic_id.h"
34 #include "dmub/dmub_srv.h"
35 #include "dc/inc/hw/dmcu.h"
36 #include "dc/inc/hw/abm.h"
37 #include "dc/dc_dmub_srv.h"
38 #include "dc/dc_edid_parser.h"
39 #include "dc/dc_stat.h"
40 #include "amdgpu_dm_trace.h"
41 #include "dpcd_defs.h"
42 #include "link/protocols/link_dpcd.h"
43 #include "link_service_types.h"
44 #include "link/protocols/link_dp_capability.h"
45 #include "link/protocols/link_ddc.h"
49 #include "amdgpu_display.h"
50 #include "amdgpu_ucode.h"
52 #include "amdgpu_dm.h"
53 #include "amdgpu_dm_plane.h"
54 #include "amdgpu_dm_crtc.h"
55 #include "amdgpu_dm_hdcp.h"
56 #include <drm/display/drm_hdcp_helper.h>
57 #include "amdgpu_pm.h"
58 #include "amdgpu_atombios.h"
60 #include "amd_shared.h"
61 #include "amdgpu_dm_irq.h"
62 #include "dm_helpers.h"
63 #include "amdgpu_dm_mst_types.h"
64 #if defined(CONFIG_DEBUG_FS)
65 #include "amdgpu_dm_debugfs.h"
67 #include "amdgpu_dm_psr.h"
68 #include "amdgpu_dm_replay.h"
70 #include "ivsrcid/ivsrcid_vislands30.h"
72 #include <linux/backlight.h>
73 #include <linux/module.h>
74 #include <linux/moduleparam.h>
75 #include <linux/types.h>
76 #include <linux/pm_runtime.h>
77 #include <linux/pci.h>
78 #include <linux/firmware.h>
79 #include <linux/component.h>
80 #include <linux/dmi.h>
82 #include <drm/display/drm_dp_mst_helper.h>
83 #include <drm/display/drm_hdmi_helper.h>
84 #include <drm/drm_atomic.h>
85 #include <drm/drm_atomic_uapi.h>
86 #include <drm/drm_atomic_helper.h>
87 #include <drm/drm_blend.h>
88 #include <drm/drm_fourcc.h>
89 #include <drm/drm_edid.h>
90 #include <drm/drm_vblank.h>
91 #include <drm/drm_audio_component.h>
92 #include <drm/drm_gem_atomic_helper.h>
93 #include <drm/drm_plane_helper.h>
95 #include <acpi/video.h>
97 #include "ivsrcid/dcn/irqsrcs_dcn_1_0.h"
99 #include "dcn/dcn_1_0_offset.h"
100 #include "dcn/dcn_1_0_sh_mask.h"
101 #include "soc15_hw_ip.h"
102 #include "soc15_common.h"
103 #include "vega10_ip_offset.h"
105 #include "gc/gc_11_0_0_offset.h"
106 #include "gc/gc_11_0_0_sh_mask.h"
108 #include "modules/inc/mod_freesync.h"
109 #include "modules/power/power_helpers.h"
111 #define FIRMWARE_RENOIR_DMUB "amdgpu/renoir_dmcub.bin"
112 MODULE_FIRMWARE(FIRMWARE_RENOIR_DMUB);
113 #define FIRMWARE_SIENNA_CICHLID_DMUB "amdgpu/sienna_cichlid_dmcub.bin"
114 MODULE_FIRMWARE(FIRMWARE_SIENNA_CICHLID_DMUB);
115 #define FIRMWARE_NAVY_FLOUNDER_DMUB "amdgpu/navy_flounder_dmcub.bin"
116 MODULE_FIRMWARE(FIRMWARE_NAVY_FLOUNDER_DMUB);
117 #define FIRMWARE_GREEN_SARDINE_DMUB "amdgpu/green_sardine_dmcub.bin"
118 MODULE_FIRMWARE(FIRMWARE_GREEN_SARDINE_DMUB);
119 #define FIRMWARE_VANGOGH_DMUB "amdgpu/vangogh_dmcub.bin"
120 MODULE_FIRMWARE(FIRMWARE_VANGOGH_DMUB);
121 #define FIRMWARE_DIMGREY_CAVEFISH_DMUB "amdgpu/dimgrey_cavefish_dmcub.bin"
122 MODULE_FIRMWARE(FIRMWARE_DIMGREY_CAVEFISH_DMUB);
123 #define FIRMWARE_BEIGE_GOBY_DMUB "amdgpu/beige_goby_dmcub.bin"
124 MODULE_FIRMWARE(FIRMWARE_BEIGE_GOBY_DMUB);
125 #define FIRMWARE_YELLOW_CARP_DMUB "amdgpu/yellow_carp_dmcub.bin"
126 MODULE_FIRMWARE(FIRMWARE_YELLOW_CARP_DMUB);
127 #define FIRMWARE_DCN_314_DMUB "amdgpu/dcn_3_1_4_dmcub.bin"
128 MODULE_FIRMWARE(FIRMWARE_DCN_314_DMUB);
129 #define FIRMWARE_DCN_315_DMUB "amdgpu/dcn_3_1_5_dmcub.bin"
130 MODULE_FIRMWARE(FIRMWARE_DCN_315_DMUB);
131 #define FIRMWARE_DCN316_DMUB "amdgpu/dcn_3_1_6_dmcub.bin"
132 MODULE_FIRMWARE(FIRMWARE_DCN316_DMUB);
134 #define FIRMWARE_DCN_V3_2_0_DMCUB "amdgpu/dcn_3_2_0_dmcub.bin"
135 MODULE_FIRMWARE(FIRMWARE_DCN_V3_2_0_DMCUB);
136 #define FIRMWARE_DCN_V3_2_1_DMCUB "amdgpu/dcn_3_2_1_dmcub.bin"
137 MODULE_FIRMWARE(FIRMWARE_DCN_V3_2_1_DMCUB);
139 #define FIRMWARE_RAVEN_DMCU "amdgpu/raven_dmcu.bin"
140 MODULE_FIRMWARE(FIRMWARE_RAVEN_DMCU);
142 #define FIRMWARE_NAVI12_DMCU "amdgpu/navi12_dmcu.bin"
143 MODULE_FIRMWARE(FIRMWARE_NAVI12_DMCU);
145 /* Number of bytes in PSP header for firmware. */
146 #define PSP_HEADER_BYTES 0x100
148 /* Number of bytes in PSP footer for firmware. */
149 #define PSP_FOOTER_BYTES 0x100
154 * The AMDgpu display manager, **amdgpu_dm** (or even simpler,
155 * **dm**) sits between DRM and DC. It acts as a liaison, converting DRM
156 * requests into DC requests, and DC responses into DRM responses.
158 * The root control structure is &struct amdgpu_display_manager.
161 /* basic init/fini API */
162 static int amdgpu_dm_init(struct amdgpu_device *adev);
163 static void amdgpu_dm_fini(struct amdgpu_device *adev);
164 static bool is_freesync_video_mode(const struct drm_display_mode *mode, struct amdgpu_dm_connector *aconnector);
166 static enum drm_mode_subconnector get_subconnector_type(struct dc_link *link)
168 switch (link->dpcd_caps.dongle_type) {
169 case DISPLAY_DONGLE_NONE:
170 return DRM_MODE_SUBCONNECTOR_Native;
171 case DISPLAY_DONGLE_DP_VGA_CONVERTER:
172 return DRM_MODE_SUBCONNECTOR_VGA;
173 case DISPLAY_DONGLE_DP_DVI_CONVERTER:
174 case DISPLAY_DONGLE_DP_DVI_DONGLE:
175 return DRM_MODE_SUBCONNECTOR_DVID;
176 case DISPLAY_DONGLE_DP_HDMI_CONVERTER:
177 case DISPLAY_DONGLE_DP_HDMI_DONGLE:
178 return DRM_MODE_SUBCONNECTOR_HDMIA;
179 case DISPLAY_DONGLE_DP_HDMI_MISMATCHED_DONGLE:
181 return DRM_MODE_SUBCONNECTOR_Unknown;
185 static void update_subconnector_property(struct amdgpu_dm_connector *aconnector)
187 struct dc_link *link = aconnector->dc_link;
188 struct drm_connector *connector = &aconnector->base;
189 enum drm_mode_subconnector subconnector = DRM_MODE_SUBCONNECTOR_Unknown;
191 if (connector->connector_type != DRM_MODE_CONNECTOR_DisplayPort)
194 if (aconnector->dc_sink)
195 subconnector = get_subconnector_type(link);
197 drm_object_property_set_value(&connector->base,
198 connector->dev->mode_config.dp_subconnector_property,
203 * initializes drm_device display related structures, based on the information
204 * provided by DAL. The drm strcutures are: drm_crtc, drm_connector,
205 * drm_encoder, drm_mode_config
207 * Returns 0 on success
209 static int amdgpu_dm_initialize_drm_device(struct amdgpu_device *adev);
210 /* removes and deallocates the drm structures, created by the above function */
211 static void amdgpu_dm_destroy_drm_device(struct amdgpu_display_manager *dm);
213 static int amdgpu_dm_connector_init(struct amdgpu_display_manager *dm,
214 struct amdgpu_dm_connector *amdgpu_dm_connector,
216 struct amdgpu_encoder *amdgpu_encoder);
217 static int amdgpu_dm_encoder_init(struct drm_device *dev,
218 struct amdgpu_encoder *aencoder,
219 uint32_t link_index);
221 static int amdgpu_dm_connector_get_modes(struct drm_connector *connector);
223 static void amdgpu_dm_atomic_commit_tail(struct drm_atomic_state *state);
225 static int amdgpu_dm_atomic_check(struct drm_device *dev,
226 struct drm_atomic_state *state);
228 static void handle_hpd_irq_helper(struct amdgpu_dm_connector *aconnector);
229 static void handle_hpd_rx_irq(void *param);
232 is_timing_unchanged_for_freesync(struct drm_crtc_state *old_crtc_state,
233 struct drm_crtc_state *new_crtc_state);
235 * dm_vblank_get_counter
238 * Get counter for number of vertical blanks
241 * struct amdgpu_device *adev - [in] desired amdgpu device
242 * int disp_idx - [in] which CRTC to get the counter from
245 * Counter for vertical blanks
247 static u32 dm_vblank_get_counter(struct amdgpu_device *adev, int crtc)
249 struct amdgpu_crtc *acrtc = NULL;
251 if (crtc >= adev->mode_info.num_crtc)
254 acrtc = adev->mode_info.crtcs[crtc];
256 if (!acrtc->dm_irq_params.stream) {
257 DRM_ERROR("dc_stream_state is NULL for crtc '%d'!\n",
262 return dc_stream_get_vblank_counter(acrtc->dm_irq_params.stream);
265 static int dm_crtc_get_scanoutpos(struct amdgpu_device *adev, int crtc,
266 u32 *vbl, u32 *position)
268 u32 v_blank_start, v_blank_end, h_position, v_position;
269 struct amdgpu_crtc *acrtc = NULL;
271 if ((crtc < 0) || (crtc >= adev->mode_info.num_crtc))
274 acrtc = adev->mode_info.crtcs[crtc];
276 if (!acrtc->dm_irq_params.stream) {
277 DRM_ERROR("dc_stream_state is NULL for crtc '%d'!\n",
283 * TODO rework base driver to use values directly.
284 * for now parse it back into reg-format
286 dc_stream_get_scanoutpos(acrtc->dm_irq_params.stream,
292 *position = v_position | (h_position << 16);
293 *vbl = v_blank_start | (v_blank_end << 16);
298 static bool dm_is_idle(void *handle)
304 static int dm_wait_for_idle(void *handle)
310 static bool dm_check_soft_reset(void *handle)
315 static int dm_soft_reset(void *handle)
321 static struct amdgpu_crtc *
322 get_crtc_by_otg_inst(struct amdgpu_device *adev,
325 struct drm_device *dev = adev_to_drm(adev);
326 struct drm_crtc *crtc;
327 struct amdgpu_crtc *amdgpu_crtc;
329 if (WARN_ON(otg_inst == -1))
330 return adev->mode_info.crtcs[0];
332 list_for_each_entry(crtc, &dev->mode_config.crtc_list, head) {
333 amdgpu_crtc = to_amdgpu_crtc(crtc);
335 if (amdgpu_crtc->otg_inst == otg_inst)
342 static inline bool is_dc_timing_adjust_needed(struct dm_crtc_state *old_state,
343 struct dm_crtc_state *new_state)
345 if (new_state->freesync_config.state == VRR_STATE_ACTIVE_FIXED)
347 else if (amdgpu_dm_crtc_vrr_active(old_state) != amdgpu_dm_crtc_vrr_active(new_state))
353 static inline void reverse_planes_order(struct dc_surface_update *array_of_surface_update,
358 for (i = 0, j = planes_count - 1; i < j; i++, j--)
359 swap(array_of_surface_update[i], array_of_surface_update[j]);
363 * update_planes_and_stream_adapter() - Send planes to be updated in DC
365 * DC has a generic way to update planes and stream via
366 * dc_update_planes_and_stream function; however, DM might need some
367 * adjustments and preparation before calling it. This function is a wrapper
368 * for the dc_update_planes_and_stream that does any required configuration
369 * before passing control to DC.
371 * @dc: Display Core control structure
372 * @update_type: specify whether it is FULL/MEDIUM/FAST update
373 * @planes_count: planes count to update
374 * @stream: stream state
375 * @stream_update: stream update
376 * @array_of_surface_update: dc surface update pointer
379 static inline bool update_planes_and_stream_adapter(struct dc *dc,
382 struct dc_stream_state *stream,
383 struct dc_stream_update *stream_update,
384 struct dc_surface_update *array_of_surface_update)
386 reverse_planes_order(array_of_surface_update, planes_count);
389 * Previous frame finished and HW is ready for optimization.
391 if (update_type == UPDATE_TYPE_FAST)
392 dc_post_update_surfaces_to_stream(dc);
394 return dc_update_planes_and_stream(dc,
395 array_of_surface_update,
402 * dm_pflip_high_irq() - Handle pageflip interrupt
403 * @interrupt_params: ignored
405 * Handles the pageflip interrupt by notifying all interested parties
406 * that the pageflip has been completed.
408 static void dm_pflip_high_irq(void *interrupt_params)
410 struct amdgpu_crtc *amdgpu_crtc;
411 struct common_irq_params *irq_params = interrupt_params;
412 struct amdgpu_device *adev = irq_params->adev;
414 struct drm_pending_vblank_event *e;
415 u32 vpos, hpos, v_blank_start, v_blank_end;
418 amdgpu_crtc = get_crtc_by_otg_inst(adev, irq_params->irq_src - IRQ_TYPE_PFLIP);
420 /* IRQ could occur when in initial stage */
421 /* TODO work and BO cleanup */
422 if (amdgpu_crtc == NULL) {
423 DC_LOG_PFLIP("CRTC is null, returning.\n");
427 spin_lock_irqsave(&adev_to_drm(adev)->event_lock, flags);
429 if (amdgpu_crtc->pflip_status != AMDGPU_FLIP_SUBMITTED) {
430 DC_LOG_PFLIP("amdgpu_crtc->pflip_status = %d !=AMDGPU_FLIP_SUBMITTED(%d) on crtc:%d[%p]\n",
431 amdgpu_crtc->pflip_status,
432 AMDGPU_FLIP_SUBMITTED,
433 amdgpu_crtc->crtc_id,
435 spin_unlock_irqrestore(&adev_to_drm(adev)->event_lock, flags);
439 /* page flip completed. */
440 e = amdgpu_crtc->event;
441 amdgpu_crtc->event = NULL;
445 vrr_active = amdgpu_dm_crtc_vrr_active_irq(amdgpu_crtc);
447 /* Fixed refresh rate, or VRR scanout position outside front-porch? */
449 !dc_stream_get_scanoutpos(amdgpu_crtc->dm_irq_params.stream, &v_blank_start,
450 &v_blank_end, &hpos, &vpos) ||
451 (vpos < v_blank_start)) {
452 /* Update to correct count and vblank timestamp if racing with
453 * vblank irq. This also updates to the correct vblank timestamp
454 * even in VRR mode, as scanout is past the front-porch atm.
456 drm_crtc_accurate_vblank_count(&amdgpu_crtc->base);
458 /* Wake up userspace by sending the pageflip event with proper
459 * count and timestamp of vblank of flip completion.
462 drm_crtc_send_vblank_event(&amdgpu_crtc->base, e);
464 /* Event sent, so done with vblank for this flip */
465 drm_crtc_vblank_put(&amdgpu_crtc->base);
468 /* VRR active and inside front-porch: vblank count and
469 * timestamp for pageflip event will only be up to date after
470 * drm_crtc_handle_vblank() has been executed from late vblank
471 * irq handler after start of back-porch (vline 0). We queue the
472 * pageflip event for send-out by drm_crtc_handle_vblank() with
473 * updated timestamp and count, once it runs after us.
475 * We need to open-code this instead of using the helper
476 * drm_crtc_arm_vblank_event(), as that helper would
477 * call drm_crtc_accurate_vblank_count(), which we must
478 * not call in VRR mode while we are in front-porch!
481 /* sequence will be replaced by real count during send-out. */
482 e->sequence = drm_crtc_vblank_count(&amdgpu_crtc->base);
483 e->pipe = amdgpu_crtc->crtc_id;
485 list_add_tail(&e->base.link, &adev_to_drm(adev)->vblank_event_list);
489 /* Keep track of vblank of this flip for flip throttling. We use the
490 * cooked hw counter, as that one incremented at start of this vblank
491 * of pageflip completion, so last_flip_vblank is the forbidden count
492 * for queueing new pageflips if vsync + VRR is enabled.
494 amdgpu_crtc->dm_irq_params.last_flip_vblank =
495 amdgpu_get_vblank_counter_kms(&amdgpu_crtc->base);
497 amdgpu_crtc->pflip_status = AMDGPU_FLIP_NONE;
498 spin_unlock_irqrestore(&adev_to_drm(adev)->event_lock, flags);
500 DC_LOG_PFLIP("crtc:%d[%p], pflip_stat:AMDGPU_FLIP_NONE, vrr[%d]-fp %d\n",
501 amdgpu_crtc->crtc_id, amdgpu_crtc,
502 vrr_active, (int) !e);
505 static void dm_vupdate_high_irq(void *interrupt_params)
507 struct common_irq_params *irq_params = interrupt_params;
508 struct amdgpu_device *adev = irq_params->adev;
509 struct amdgpu_crtc *acrtc;
510 struct drm_device *drm_dev;
511 struct drm_vblank_crtc *vblank;
512 ktime_t frame_duration_ns, previous_timestamp;
516 acrtc = get_crtc_by_otg_inst(adev, irq_params->irq_src - IRQ_TYPE_VUPDATE);
519 vrr_active = amdgpu_dm_crtc_vrr_active_irq(acrtc);
520 drm_dev = acrtc->base.dev;
521 vblank = &drm_dev->vblank[acrtc->base.index];
522 previous_timestamp = atomic64_read(&irq_params->previous_timestamp);
523 frame_duration_ns = vblank->time - previous_timestamp;
525 if (frame_duration_ns > 0) {
526 trace_amdgpu_refresh_rate_track(acrtc->base.index,
528 ktime_divns(NSEC_PER_SEC, frame_duration_ns));
529 atomic64_set(&irq_params->previous_timestamp, vblank->time);
532 DC_LOG_VBLANK("crtc:%d, vupdate-vrr:%d\n",
536 /* Core vblank handling is done here after end of front-porch in
537 * vrr mode, as vblank timestamping will give valid results
538 * while now done after front-porch. This will also deliver
539 * page-flip completion events that have been queued to us
540 * if a pageflip happened inside front-porch.
543 amdgpu_dm_crtc_handle_vblank(acrtc);
545 /* BTR processing for pre-DCE12 ASICs */
546 if (acrtc->dm_irq_params.stream &&
547 adev->family < AMDGPU_FAMILY_AI) {
548 spin_lock_irqsave(&adev_to_drm(adev)->event_lock, flags);
549 mod_freesync_handle_v_update(
550 adev->dm.freesync_module,
551 acrtc->dm_irq_params.stream,
552 &acrtc->dm_irq_params.vrr_params);
554 dc_stream_adjust_vmin_vmax(
556 acrtc->dm_irq_params.stream,
557 &acrtc->dm_irq_params.vrr_params.adjust);
558 spin_unlock_irqrestore(&adev_to_drm(adev)->event_lock, flags);
565 * dm_crtc_high_irq() - Handles CRTC interrupt
566 * @interrupt_params: used for determining the CRTC instance
568 * Handles the CRTC/VSYNC interrupt by notfying DRM's VBLANK
571 static void dm_crtc_high_irq(void *interrupt_params)
573 struct common_irq_params *irq_params = interrupt_params;
574 struct amdgpu_device *adev = irq_params->adev;
575 struct amdgpu_crtc *acrtc;
579 acrtc = get_crtc_by_otg_inst(adev, irq_params->irq_src - IRQ_TYPE_VBLANK);
583 vrr_active = amdgpu_dm_crtc_vrr_active_irq(acrtc);
585 DC_LOG_VBLANK("crtc:%d, vupdate-vrr:%d, planes:%d\n", acrtc->crtc_id,
586 vrr_active, acrtc->dm_irq_params.active_planes);
589 * Core vblank handling at start of front-porch is only possible
590 * in non-vrr mode, as only there vblank timestamping will give
591 * valid results while done in front-porch. Otherwise defer it
592 * to dm_vupdate_high_irq after end of front-porch.
595 amdgpu_dm_crtc_handle_vblank(acrtc);
598 * Following stuff must happen at start of vblank, for crc
599 * computation and below-the-range btr support in vrr mode.
601 amdgpu_dm_crtc_handle_crc_irq(&acrtc->base);
603 /* BTR updates need to happen before VUPDATE on Vega and above. */
604 if (adev->family < AMDGPU_FAMILY_AI)
607 spin_lock_irqsave(&adev_to_drm(adev)->event_lock, flags);
609 if (acrtc->dm_irq_params.stream &&
610 acrtc->dm_irq_params.vrr_params.supported &&
611 acrtc->dm_irq_params.freesync_config.state ==
612 VRR_STATE_ACTIVE_VARIABLE) {
613 mod_freesync_handle_v_update(adev->dm.freesync_module,
614 acrtc->dm_irq_params.stream,
615 &acrtc->dm_irq_params.vrr_params);
617 dc_stream_adjust_vmin_vmax(adev->dm.dc, acrtc->dm_irq_params.stream,
618 &acrtc->dm_irq_params.vrr_params.adjust);
622 * If there aren't any active_planes then DCH HUBP may be clock-gated.
623 * In that case, pageflip completion interrupts won't fire and pageflip
624 * completion events won't get delivered. Prevent this by sending
625 * pending pageflip events from here if a flip is still pending.
627 * If any planes are enabled, use dm_pflip_high_irq() instead, to
628 * avoid race conditions between flip programming and completion,
629 * which could cause too early flip completion events.
631 if (adev->family >= AMDGPU_FAMILY_RV &&
632 acrtc->pflip_status == AMDGPU_FLIP_SUBMITTED &&
633 acrtc->dm_irq_params.active_planes == 0) {
635 drm_crtc_send_vblank_event(&acrtc->base, acrtc->event);
637 drm_crtc_vblank_put(&acrtc->base);
639 acrtc->pflip_status = AMDGPU_FLIP_NONE;
642 spin_unlock_irqrestore(&adev_to_drm(adev)->event_lock, flags);
645 #if defined(CONFIG_DRM_AMD_SECURE_DISPLAY)
647 * dm_dcn_vertical_interrupt0_high_irq() - Handles OTG Vertical interrupt0 for
648 * DCN generation ASICs
649 * @interrupt_params: interrupt parameters
651 * Used to set crc window/read out crc value at vertical line 0 position
653 static void dm_dcn_vertical_interrupt0_high_irq(void *interrupt_params)
655 struct common_irq_params *irq_params = interrupt_params;
656 struct amdgpu_device *adev = irq_params->adev;
657 struct amdgpu_crtc *acrtc;
659 acrtc = get_crtc_by_otg_inst(adev, irq_params->irq_src - IRQ_TYPE_VLINE0);
664 amdgpu_dm_crtc_handle_crc_window_irq(&acrtc->base);
666 #endif /* CONFIG_DRM_AMD_SECURE_DISPLAY */
669 * dmub_aux_setconfig_callback - Callback for AUX or SET_CONFIG command.
670 * @adev: amdgpu_device pointer
671 * @notify: dmub notification structure
673 * Dmub AUX or SET_CONFIG command completion processing callback
674 * Copies dmub notification to DM which is to be read by AUX command.
675 * issuing thread and also signals the event to wake up the thread.
677 static void dmub_aux_setconfig_callback(struct amdgpu_device *adev,
678 struct dmub_notification *notify)
680 if (adev->dm.dmub_notify)
681 memcpy(adev->dm.dmub_notify, notify, sizeof(struct dmub_notification));
682 if (notify->type == DMUB_NOTIFICATION_AUX_REPLY)
683 complete(&adev->dm.dmub_aux_transfer_done);
687 * dmub_hpd_callback - DMUB HPD interrupt processing callback.
688 * @adev: amdgpu_device pointer
689 * @notify: dmub notification structure
691 * Dmub Hpd interrupt processing callback. Gets displayindex through the
692 * ink index and calls helper to do the processing.
694 static void dmub_hpd_callback(struct amdgpu_device *adev,
695 struct dmub_notification *notify)
697 struct amdgpu_dm_connector *aconnector;
698 struct amdgpu_dm_connector *hpd_aconnector = NULL;
699 struct drm_connector *connector;
700 struct drm_connector_list_iter iter;
701 struct dc_link *link;
703 struct drm_device *dev;
708 if (notify == NULL) {
709 DRM_ERROR("DMUB HPD callback notification was NULL");
713 if (notify->link_index > adev->dm.dc->link_count) {
714 DRM_ERROR("DMUB HPD index (%u)is abnormal", notify->link_index);
718 link_index = notify->link_index;
719 link = adev->dm.dc->links[link_index];
722 drm_connector_list_iter_begin(dev, &iter);
723 drm_for_each_connector_iter(connector, &iter) {
724 aconnector = to_amdgpu_dm_connector(connector);
725 if (link && aconnector->dc_link == link) {
726 if (notify->type == DMUB_NOTIFICATION_HPD)
727 DRM_INFO("DMUB HPD callback: link_index=%u\n", link_index);
728 else if (notify->type == DMUB_NOTIFICATION_HPD_IRQ)
729 DRM_INFO("DMUB HPD IRQ callback: link_index=%u\n", link_index);
731 DRM_WARN("DMUB Unknown HPD callback type %d, link_index=%u\n",
732 notify->type, link_index);
734 hpd_aconnector = aconnector;
738 drm_connector_list_iter_end(&iter);
740 if (hpd_aconnector) {
741 if (notify->type == DMUB_NOTIFICATION_HPD)
742 handle_hpd_irq_helper(hpd_aconnector);
743 else if (notify->type == DMUB_NOTIFICATION_HPD_IRQ)
744 handle_hpd_rx_irq(hpd_aconnector);
749 * register_dmub_notify_callback - Sets callback for DMUB notify
750 * @adev: amdgpu_device pointer
751 * @type: Type of dmub notification
752 * @callback: Dmub interrupt callback function
753 * @dmub_int_thread_offload: offload indicator
755 * API to register a dmub callback handler for a dmub notification
756 * Also sets indicator whether callback processing to be offloaded.
757 * to dmub interrupt handling thread
758 * Return: true if successfully registered, false if there is existing registration
760 static bool register_dmub_notify_callback(struct amdgpu_device *adev,
761 enum dmub_notification_type type,
762 dmub_notify_interrupt_callback_t callback,
763 bool dmub_int_thread_offload)
765 if (callback != NULL && type < ARRAY_SIZE(adev->dm.dmub_thread_offload)) {
766 adev->dm.dmub_callback[type] = callback;
767 adev->dm.dmub_thread_offload[type] = dmub_int_thread_offload;
774 static void dm_handle_hpd_work(struct work_struct *work)
776 struct dmub_hpd_work *dmub_hpd_wrk;
778 dmub_hpd_wrk = container_of(work, struct dmub_hpd_work, handle_hpd_work);
780 if (!dmub_hpd_wrk->dmub_notify) {
781 DRM_ERROR("dmub_hpd_wrk dmub_notify is NULL");
785 if (dmub_hpd_wrk->dmub_notify->type < ARRAY_SIZE(dmub_hpd_wrk->adev->dm.dmub_callback)) {
786 dmub_hpd_wrk->adev->dm.dmub_callback[dmub_hpd_wrk->dmub_notify->type](dmub_hpd_wrk->adev,
787 dmub_hpd_wrk->dmub_notify);
790 kfree(dmub_hpd_wrk->dmub_notify);
795 #define DMUB_TRACE_MAX_READ 64
797 * dm_dmub_outbox1_low_irq() - Handles Outbox interrupt
798 * @interrupt_params: used for determining the Outbox instance
800 * Handles the Outbox Interrupt
803 static void dm_dmub_outbox1_low_irq(void *interrupt_params)
805 struct dmub_notification notify;
806 struct common_irq_params *irq_params = interrupt_params;
807 struct amdgpu_device *adev = irq_params->adev;
808 struct amdgpu_display_manager *dm = &adev->dm;
809 struct dmcub_trace_buf_entry entry = { 0 };
811 struct dmub_hpd_work *dmub_hpd_wrk;
812 struct dc_link *plink = NULL;
814 if (dc_enable_dmub_notifications(adev->dm.dc) &&
815 irq_params->irq_src == DC_IRQ_SOURCE_DMCUB_OUTBOX) {
818 dc_stat_get_dmub_notification(adev->dm.dc, ¬ify);
819 if (notify.type >= ARRAY_SIZE(dm->dmub_thread_offload)) {
820 DRM_ERROR("DM: notify type %d invalid!", notify.type);
823 if (!dm->dmub_callback[notify.type]) {
824 DRM_DEBUG_DRIVER("DMUB notification skipped, no handler: type=%d\n", notify.type);
827 if (dm->dmub_thread_offload[notify.type] == true) {
828 dmub_hpd_wrk = kzalloc(sizeof(*dmub_hpd_wrk), GFP_ATOMIC);
830 DRM_ERROR("Failed to allocate dmub_hpd_wrk");
833 dmub_hpd_wrk->dmub_notify = kmemdup(¬ify, sizeof(struct dmub_notification),
835 if (!dmub_hpd_wrk->dmub_notify) {
837 DRM_ERROR("Failed to allocate dmub_hpd_wrk->dmub_notify");
840 INIT_WORK(&dmub_hpd_wrk->handle_hpd_work, dm_handle_hpd_work);
841 dmub_hpd_wrk->adev = adev;
842 if (notify.type == DMUB_NOTIFICATION_HPD) {
843 plink = adev->dm.dc->links[notify.link_index];
846 notify.hpd_status == DP_HPD_PLUG;
849 queue_work(adev->dm.delayed_hpd_wq, &dmub_hpd_wrk->handle_hpd_work);
851 dm->dmub_callback[notify.type](adev, ¬ify);
853 } while (notify.pending_notification);
858 if (dc_dmub_srv_get_dmub_outbox0_msg(dm->dc, &entry)) {
859 trace_amdgpu_dmub_trace_high_irq(entry.trace_code, entry.tick_count,
860 entry.param0, entry.param1);
862 DRM_DEBUG_DRIVER("trace_code:%u, tick_count:%u, param0:%u, param1:%u\n",
863 entry.trace_code, entry.tick_count, entry.param0, entry.param1);
869 } while (count <= DMUB_TRACE_MAX_READ);
871 if (count > DMUB_TRACE_MAX_READ)
872 DRM_DEBUG_DRIVER("Warning : count > DMUB_TRACE_MAX_READ");
875 static int dm_set_clockgating_state(void *handle,
876 enum amd_clockgating_state state)
881 static int dm_set_powergating_state(void *handle,
882 enum amd_powergating_state state)
887 /* Prototypes of private functions */
888 static int dm_early_init(void *handle);
890 /* Allocate memory for FBC compressed data */
891 static void amdgpu_dm_fbc_init(struct drm_connector *connector)
893 struct drm_device *dev = connector->dev;
894 struct amdgpu_device *adev = drm_to_adev(dev);
895 struct dm_compressor_info *compressor = &adev->dm.compressor;
896 struct amdgpu_dm_connector *aconn = to_amdgpu_dm_connector(connector);
897 struct drm_display_mode *mode;
898 unsigned long max_size = 0;
900 if (adev->dm.dc->fbc_compressor == NULL)
903 if (aconn->dc_link->connector_signal != SIGNAL_TYPE_EDP)
906 if (compressor->bo_ptr)
910 list_for_each_entry(mode, &connector->modes, head) {
911 if (max_size < mode->htotal * mode->vtotal)
912 max_size = mode->htotal * mode->vtotal;
916 int r = amdgpu_bo_create_kernel(adev, max_size * 4, PAGE_SIZE,
917 AMDGPU_GEM_DOMAIN_GTT, &compressor->bo_ptr,
918 &compressor->gpu_addr, &compressor->cpu_addr);
921 DRM_ERROR("DM: Failed to initialize FBC\n");
923 adev->dm.dc->ctx->fbc_gpu_addr = compressor->gpu_addr;
924 DRM_INFO("DM: FBC alloc %lu\n", max_size*4);
931 static int amdgpu_dm_audio_component_get_eld(struct device *kdev, int port,
932 int pipe, bool *enabled,
933 unsigned char *buf, int max_bytes)
935 struct drm_device *dev = dev_get_drvdata(kdev);
936 struct amdgpu_device *adev = drm_to_adev(dev);
937 struct drm_connector *connector;
938 struct drm_connector_list_iter conn_iter;
939 struct amdgpu_dm_connector *aconnector;
944 mutex_lock(&adev->dm.audio_lock);
946 drm_connector_list_iter_begin(dev, &conn_iter);
947 drm_for_each_connector_iter(connector, &conn_iter) {
948 aconnector = to_amdgpu_dm_connector(connector);
949 if (aconnector->audio_inst != port)
953 ret = drm_eld_size(connector->eld);
954 memcpy(buf, connector->eld, min(max_bytes, ret));
958 drm_connector_list_iter_end(&conn_iter);
960 mutex_unlock(&adev->dm.audio_lock);
962 DRM_DEBUG_KMS("Get ELD : idx=%d ret=%d en=%d\n", port, ret, *enabled);
967 static const struct drm_audio_component_ops amdgpu_dm_audio_component_ops = {
968 .get_eld = amdgpu_dm_audio_component_get_eld,
971 static int amdgpu_dm_audio_component_bind(struct device *kdev,
972 struct device *hda_kdev, void *data)
974 struct drm_device *dev = dev_get_drvdata(kdev);
975 struct amdgpu_device *adev = drm_to_adev(dev);
976 struct drm_audio_component *acomp = data;
978 acomp->ops = &amdgpu_dm_audio_component_ops;
980 adev->dm.audio_component = acomp;
985 static void amdgpu_dm_audio_component_unbind(struct device *kdev,
986 struct device *hda_kdev, void *data)
988 struct drm_device *dev = dev_get_drvdata(kdev);
989 struct amdgpu_device *adev = drm_to_adev(dev);
990 struct drm_audio_component *acomp = data;
994 adev->dm.audio_component = NULL;
997 static const struct component_ops amdgpu_dm_audio_component_bind_ops = {
998 .bind = amdgpu_dm_audio_component_bind,
999 .unbind = amdgpu_dm_audio_component_unbind,
1002 static int amdgpu_dm_audio_init(struct amdgpu_device *adev)
1009 adev->mode_info.audio.enabled = true;
1011 adev->mode_info.audio.num_pins = adev->dm.dc->res_pool->audio_count;
1013 for (i = 0; i < adev->mode_info.audio.num_pins; i++) {
1014 adev->mode_info.audio.pin[i].channels = -1;
1015 adev->mode_info.audio.pin[i].rate = -1;
1016 adev->mode_info.audio.pin[i].bits_per_sample = -1;
1017 adev->mode_info.audio.pin[i].status_bits = 0;
1018 adev->mode_info.audio.pin[i].category_code = 0;
1019 adev->mode_info.audio.pin[i].connected = false;
1020 adev->mode_info.audio.pin[i].id =
1021 adev->dm.dc->res_pool->audios[i]->inst;
1022 adev->mode_info.audio.pin[i].offset = 0;
1025 ret = component_add(adev->dev, &amdgpu_dm_audio_component_bind_ops);
1029 adev->dm.audio_registered = true;
1034 static void amdgpu_dm_audio_fini(struct amdgpu_device *adev)
1039 if (!adev->mode_info.audio.enabled)
1042 if (adev->dm.audio_registered) {
1043 component_del(adev->dev, &amdgpu_dm_audio_component_bind_ops);
1044 adev->dm.audio_registered = false;
1047 /* TODO: Disable audio? */
1049 adev->mode_info.audio.enabled = false;
1052 static void amdgpu_dm_audio_eld_notify(struct amdgpu_device *adev, int pin)
1054 struct drm_audio_component *acomp = adev->dm.audio_component;
1056 if (acomp && acomp->audio_ops && acomp->audio_ops->pin_eld_notify) {
1057 DRM_DEBUG_KMS("Notify ELD: %d\n", pin);
1059 acomp->audio_ops->pin_eld_notify(acomp->audio_ops->audio_ptr,
1064 static int dm_dmub_hw_init(struct amdgpu_device *adev)
1066 const struct dmcub_firmware_header_v1_0 *hdr;
1067 struct dmub_srv *dmub_srv = adev->dm.dmub_srv;
1068 struct dmub_srv_fb_info *fb_info = adev->dm.dmub_fb_info;
1069 const struct firmware *dmub_fw = adev->dm.dmub_fw;
1070 struct dmcu *dmcu = adev->dm.dc->res_pool->dmcu;
1071 struct abm *abm = adev->dm.dc->res_pool->abm;
1072 struct dmub_srv_hw_params hw_params;
1073 enum dmub_status status;
1074 const unsigned char *fw_inst_const, *fw_bss_data;
1075 u32 i, fw_inst_const_size, fw_bss_data_size;
1076 bool has_hw_support;
1079 /* DMUB isn't supported on the ASIC. */
1083 DRM_ERROR("No framebuffer info for DMUB service.\n");
1088 /* Firmware required for DMUB support. */
1089 DRM_ERROR("No firmware provided for DMUB.\n");
1093 status = dmub_srv_has_hw_support(dmub_srv, &has_hw_support);
1094 if (status != DMUB_STATUS_OK) {
1095 DRM_ERROR("Error checking HW support for DMUB: %d\n", status);
1099 if (!has_hw_support) {
1100 DRM_INFO("DMUB unsupported on ASIC\n");
1104 /* Reset DMCUB if it was previously running - before we overwrite its memory. */
1105 status = dmub_srv_hw_reset(dmub_srv);
1106 if (status != DMUB_STATUS_OK)
1107 DRM_WARN("Error resetting DMUB HW: %d\n", status);
1109 hdr = (const struct dmcub_firmware_header_v1_0 *)dmub_fw->data;
1111 fw_inst_const = dmub_fw->data +
1112 le32_to_cpu(hdr->header.ucode_array_offset_bytes) +
1115 fw_bss_data = dmub_fw->data +
1116 le32_to_cpu(hdr->header.ucode_array_offset_bytes) +
1117 le32_to_cpu(hdr->inst_const_bytes);
1119 /* Copy firmware and bios info into FB memory. */
1120 fw_inst_const_size = le32_to_cpu(hdr->inst_const_bytes) -
1121 PSP_HEADER_BYTES - PSP_FOOTER_BYTES;
1123 fw_bss_data_size = le32_to_cpu(hdr->bss_data_bytes);
1125 /* if adev->firmware.load_type == AMDGPU_FW_LOAD_PSP,
1126 * amdgpu_ucode_init_single_fw will load dmub firmware
1127 * fw_inst_const part to cw0; otherwise, the firmware back door load
1128 * will be done by dm_dmub_hw_init
1130 if (adev->firmware.load_type != AMDGPU_FW_LOAD_PSP) {
1131 memcpy(fb_info->fb[DMUB_WINDOW_0_INST_CONST].cpu_addr, fw_inst_const,
1132 fw_inst_const_size);
1135 if (fw_bss_data_size)
1136 memcpy(fb_info->fb[DMUB_WINDOW_2_BSS_DATA].cpu_addr,
1137 fw_bss_data, fw_bss_data_size);
1139 /* Copy firmware bios info into FB memory. */
1140 memcpy(fb_info->fb[DMUB_WINDOW_3_VBIOS].cpu_addr, adev->bios,
1143 /* Reset regions that need to be reset. */
1144 memset(fb_info->fb[DMUB_WINDOW_4_MAILBOX].cpu_addr, 0,
1145 fb_info->fb[DMUB_WINDOW_4_MAILBOX].size);
1147 memset(fb_info->fb[DMUB_WINDOW_5_TRACEBUFF].cpu_addr, 0,
1148 fb_info->fb[DMUB_WINDOW_5_TRACEBUFF].size);
1150 memset(fb_info->fb[DMUB_WINDOW_6_FW_STATE].cpu_addr, 0,
1151 fb_info->fb[DMUB_WINDOW_6_FW_STATE].size);
1153 /* Initialize hardware. */
1154 memset(&hw_params, 0, sizeof(hw_params));
1155 hw_params.fb_base = adev->gmc.fb_start;
1156 hw_params.fb_offset = adev->vm_manager.vram_base_offset;
1158 /* backdoor load firmware and trigger dmub running */
1159 if (adev->firmware.load_type != AMDGPU_FW_LOAD_PSP)
1160 hw_params.load_inst_const = true;
1163 hw_params.psp_version = dmcu->psp_version;
1165 for (i = 0; i < fb_info->num_fb; ++i)
1166 hw_params.fb[i] = &fb_info->fb[i];
1168 switch (adev->ip_versions[DCE_HWIP][0]) {
1169 case IP_VERSION(3, 1, 3):
1170 case IP_VERSION(3, 1, 4):
1171 hw_params.dpia_supported = true;
1172 hw_params.disable_dpia = adev->dm.dc->debug.dpia_debug.bits.disable_dpia;
1178 status = dmub_srv_hw_init(dmub_srv, &hw_params);
1179 if (status != DMUB_STATUS_OK) {
1180 DRM_ERROR("Error initializing DMUB HW: %d\n", status);
1184 /* Wait for firmware load to finish. */
1185 status = dmub_srv_wait_for_auto_load(dmub_srv, 100000);
1186 if (status != DMUB_STATUS_OK)
1187 DRM_WARN("Wait for DMUB auto-load failed: %d\n", status);
1189 /* Init DMCU and ABM if available. */
1191 dmcu->funcs->dmcu_init(dmcu);
1192 abm->dmcu_is_running = dmcu->funcs->is_dmcu_initialized(dmcu);
1195 if (!adev->dm.dc->ctx->dmub_srv)
1196 adev->dm.dc->ctx->dmub_srv = dc_dmub_srv_create(adev->dm.dc, dmub_srv);
1197 if (!adev->dm.dc->ctx->dmub_srv) {
1198 DRM_ERROR("Couldn't allocate DC DMUB server!\n");
1202 DRM_INFO("DMUB hardware initialized: version=0x%08X\n",
1203 adev->dm.dmcub_fw_version);
1208 static void dm_dmub_hw_resume(struct amdgpu_device *adev)
1210 struct dmub_srv *dmub_srv = adev->dm.dmub_srv;
1211 enum dmub_status status;
1215 /* DMUB isn't supported on the ASIC. */
1219 status = dmub_srv_is_hw_init(dmub_srv, &init);
1220 if (status != DMUB_STATUS_OK)
1221 DRM_WARN("DMUB hardware init check failed: %d\n", status);
1223 if (status == DMUB_STATUS_OK && init) {
1224 /* Wait for firmware load to finish. */
1225 status = dmub_srv_wait_for_auto_load(dmub_srv, 100000);
1226 if (status != DMUB_STATUS_OK)
1227 DRM_WARN("Wait for DMUB auto-load failed: %d\n", status);
1229 /* Perform the full hardware initialization. */
1230 dm_dmub_hw_init(adev);
1234 static void mmhub_read_system_context(struct amdgpu_device *adev, struct dc_phy_addr_space_config *pa_config)
1237 u32 logical_addr_low;
1238 u32 logical_addr_high;
1239 u32 agp_base, agp_bot, agp_top;
1240 PHYSICAL_ADDRESS_LOC page_table_start, page_table_end, page_table_base;
1242 memset(pa_config, 0, sizeof(*pa_config));
1245 agp_bot = adev->gmc.agp_start >> 24;
1246 agp_top = adev->gmc.agp_end >> 24;
1248 /* AGP aperture is disabled */
1249 if (agp_bot == agp_top) {
1250 logical_addr_low = adev->gmc.fb_start >> 18;
1251 if (adev->apu_flags & AMD_APU_IS_RAVEN2)
1253 * Raven2 has a HW issue that it is unable to use the vram which
1254 * is out of MC_VM_SYSTEM_APERTURE_HIGH_ADDR. So here is the
1255 * workaround that increase system aperture high address (add 1)
1256 * to get rid of the VM fault and hardware hang.
1258 logical_addr_high = (adev->gmc.fb_end >> 18) + 0x1;
1260 logical_addr_high = adev->gmc.fb_end >> 18;
1262 logical_addr_low = min(adev->gmc.fb_start, adev->gmc.agp_start) >> 18;
1263 if (adev->apu_flags & AMD_APU_IS_RAVEN2)
1265 * Raven2 has a HW issue that it is unable to use the vram which
1266 * is out of MC_VM_SYSTEM_APERTURE_HIGH_ADDR. So here is the
1267 * workaround that increase system aperture high address (add 1)
1268 * to get rid of the VM fault and hardware hang.
1270 logical_addr_high = max((adev->gmc.fb_end >> 18) + 0x1, adev->gmc.agp_end >> 18);
1272 logical_addr_high = max(adev->gmc.fb_end, adev->gmc.agp_end) >> 18;
1275 pt_base = amdgpu_gmc_pd_addr(adev->gart.bo);
1277 page_table_start.high_part = upper_32_bits(adev->gmc.gart_start >>
1278 AMDGPU_GPU_PAGE_SHIFT);
1279 page_table_start.low_part = lower_32_bits(adev->gmc.gart_start >>
1280 AMDGPU_GPU_PAGE_SHIFT);
1281 page_table_end.high_part = upper_32_bits(adev->gmc.gart_end >>
1282 AMDGPU_GPU_PAGE_SHIFT);
1283 page_table_end.low_part = lower_32_bits(adev->gmc.gart_end >>
1284 AMDGPU_GPU_PAGE_SHIFT);
1285 page_table_base.high_part = upper_32_bits(pt_base);
1286 page_table_base.low_part = lower_32_bits(pt_base);
1288 pa_config->system_aperture.start_addr = (uint64_t)logical_addr_low << 18;
1289 pa_config->system_aperture.end_addr = (uint64_t)logical_addr_high << 18;
1291 pa_config->system_aperture.agp_base = (uint64_t)agp_base << 24;
1292 pa_config->system_aperture.agp_bot = (uint64_t)agp_bot << 24;
1293 pa_config->system_aperture.agp_top = (uint64_t)agp_top << 24;
1295 pa_config->system_aperture.fb_base = adev->gmc.fb_start;
1296 pa_config->system_aperture.fb_offset = adev->vm_manager.vram_base_offset;
1297 pa_config->system_aperture.fb_top = adev->gmc.fb_end;
1299 pa_config->gart_config.page_table_start_addr = page_table_start.quad_part << 12;
1300 pa_config->gart_config.page_table_end_addr = page_table_end.quad_part << 12;
1301 pa_config->gart_config.page_table_base_addr = page_table_base.quad_part;
1303 pa_config->is_hvm_enabled = adev->mode_info.gpu_vm_support;
1307 static void force_connector_state(
1308 struct amdgpu_dm_connector *aconnector,
1309 enum drm_connector_force force_state)
1311 struct drm_connector *connector = &aconnector->base;
1313 mutex_lock(&connector->dev->mode_config.mutex);
1314 aconnector->base.force = force_state;
1315 mutex_unlock(&connector->dev->mode_config.mutex);
1317 mutex_lock(&aconnector->hpd_lock);
1318 drm_kms_helper_connector_hotplug_event(connector);
1319 mutex_unlock(&aconnector->hpd_lock);
1322 static void dm_handle_hpd_rx_offload_work(struct work_struct *work)
1324 struct hpd_rx_irq_offload_work *offload_work;
1325 struct amdgpu_dm_connector *aconnector;
1326 struct dc_link *dc_link;
1327 struct amdgpu_device *adev;
1328 enum dc_connection_type new_connection_type = dc_connection_none;
1329 unsigned long flags;
1330 union test_response test_response;
1332 memset(&test_response, 0, sizeof(test_response));
1334 offload_work = container_of(work, struct hpd_rx_irq_offload_work, work);
1335 aconnector = offload_work->offload_wq->aconnector;
1338 DRM_ERROR("Can't retrieve aconnector in hpd_rx_irq_offload_work");
1342 adev = drm_to_adev(aconnector->base.dev);
1343 dc_link = aconnector->dc_link;
1345 mutex_lock(&aconnector->hpd_lock);
1346 if (!dc_link_detect_connection_type(dc_link, &new_connection_type))
1347 DRM_ERROR("KMS: Failed to detect connector\n");
1348 mutex_unlock(&aconnector->hpd_lock);
1350 if (new_connection_type == dc_connection_none)
1353 if (amdgpu_in_reset(adev))
1356 if (offload_work->data.bytes.device_service_irq.bits.UP_REQ_MSG_RDY ||
1357 offload_work->data.bytes.device_service_irq.bits.DOWN_REP_MSG_RDY) {
1358 dm_handle_mst_sideband_msg_ready_event(&aconnector->mst_mgr, DOWN_OR_UP_MSG_RDY_EVENT);
1359 spin_lock_irqsave(&offload_work->offload_wq->offload_lock, flags);
1360 offload_work->offload_wq->is_handling_mst_msg_rdy_event = false;
1361 spin_unlock_irqrestore(&offload_work->offload_wq->offload_lock, flags);
1365 mutex_lock(&adev->dm.dc_lock);
1366 if (offload_work->data.bytes.device_service_irq.bits.AUTOMATED_TEST) {
1367 dc_link_dp_handle_automated_test(dc_link);
1369 if (aconnector->timing_changed) {
1370 /* force connector disconnect and reconnect */
1371 force_connector_state(aconnector, DRM_FORCE_OFF);
1373 force_connector_state(aconnector, DRM_FORCE_UNSPECIFIED);
1376 test_response.bits.ACK = 1;
1378 core_link_write_dpcd(
1382 sizeof(test_response));
1383 } else if ((dc_link->connector_signal != SIGNAL_TYPE_EDP) &&
1384 dc_link_check_link_loss_status(dc_link, &offload_work->data) &&
1385 dc_link_dp_allow_hpd_rx_irq(dc_link)) {
1386 /* offload_work->data is from handle_hpd_rx_irq->
1387 * schedule_hpd_rx_offload_work.this is defer handle
1388 * for hpd short pulse. upon here, link status may be
1389 * changed, need get latest link status from dpcd
1390 * registers. if link status is good, skip run link
1393 union hpd_irq_data irq_data;
1395 memset(&irq_data, 0, sizeof(irq_data));
1397 /* before dc_link_dp_handle_link_loss, allow new link lost handle
1398 * request be added to work queue if link lost at end of dc_link_
1399 * dp_handle_link_loss
1401 spin_lock_irqsave(&offload_work->offload_wq->offload_lock, flags);
1402 offload_work->offload_wq->is_handling_link_loss = false;
1403 spin_unlock_irqrestore(&offload_work->offload_wq->offload_lock, flags);
1405 if ((dc_link_dp_read_hpd_rx_irq_data(dc_link, &irq_data) == DC_OK) &&
1406 dc_link_check_link_loss_status(dc_link, &irq_data))
1407 dc_link_dp_handle_link_loss(dc_link);
1409 mutex_unlock(&adev->dm.dc_lock);
1412 kfree(offload_work);
1416 static struct hpd_rx_irq_offload_work_queue *hpd_rx_irq_create_workqueue(struct dc *dc)
1418 int max_caps = dc->caps.max_links;
1420 struct hpd_rx_irq_offload_work_queue *hpd_rx_offload_wq = NULL;
1422 hpd_rx_offload_wq = kcalloc(max_caps, sizeof(*hpd_rx_offload_wq), GFP_KERNEL);
1424 if (!hpd_rx_offload_wq)
1428 for (i = 0; i < max_caps; i++) {
1429 hpd_rx_offload_wq[i].wq =
1430 create_singlethread_workqueue("amdgpu_dm_hpd_rx_offload_wq");
1432 if (hpd_rx_offload_wq[i].wq == NULL) {
1433 DRM_ERROR("create amdgpu_dm_hpd_rx_offload_wq fail!");
1437 spin_lock_init(&hpd_rx_offload_wq[i].offload_lock);
1440 return hpd_rx_offload_wq;
1443 for (i = 0; i < max_caps; i++) {
1444 if (hpd_rx_offload_wq[i].wq)
1445 destroy_workqueue(hpd_rx_offload_wq[i].wq);
1447 kfree(hpd_rx_offload_wq);
1451 struct amdgpu_stutter_quirk {
1459 static const struct amdgpu_stutter_quirk amdgpu_stutter_quirk_list[] = {
1460 /* https://bugzilla.kernel.org/show_bug.cgi?id=214417 */
1461 { 0x1002, 0x15dd, 0x1002, 0x15dd, 0xc8 },
1465 static bool dm_should_disable_stutter(struct pci_dev *pdev)
1467 const struct amdgpu_stutter_quirk *p = amdgpu_stutter_quirk_list;
1469 while (p && p->chip_device != 0) {
1470 if (pdev->vendor == p->chip_vendor &&
1471 pdev->device == p->chip_device &&
1472 pdev->subsystem_vendor == p->subsys_vendor &&
1473 pdev->subsystem_device == p->subsys_device &&
1474 pdev->revision == p->revision) {
1482 static const struct dmi_system_id hpd_disconnect_quirk_table[] = {
1485 DMI_MATCH(DMI_SYS_VENDOR, "Dell Inc."),
1486 DMI_MATCH(DMI_PRODUCT_NAME, "Precision 3660"),
1491 DMI_MATCH(DMI_SYS_VENDOR, "Dell Inc."),
1492 DMI_MATCH(DMI_PRODUCT_NAME, "Precision 3260"),
1497 DMI_MATCH(DMI_SYS_VENDOR, "Dell Inc."),
1498 DMI_MATCH(DMI_PRODUCT_NAME, "Precision 3460"),
1503 DMI_MATCH(DMI_SYS_VENDOR, "Dell Inc."),
1504 DMI_MATCH(DMI_PRODUCT_NAME, "OptiPlex Tower Plus 7010"),
1509 DMI_MATCH(DMI_SYS_VENDOR, "Dell Inc."),
1510 DMI_MATCH(DMI_PRODUCT_NAME, "OptiPlex Tower 7010"),
1515 DMI_MATCH(DMI_SYS_VENDOR, "Dell Inc."),
1516 DMI_MATCH(DMI_PRODUCT_NAME, "OptiPlex SFF Plus 7010"),
1521 DMI_MATCH(DMI_SYS_VENDOR, "Dell Inc."),
1522 DMI_MATCH(DMI_PRODUCT_NAME, "OptiPlex SFF 7010"),
1527 DMI_MATCH(DMI_SYS_VENDOR, "Dell Inc."),
1528 DMI_MATCH(DMI_PRODUCT_NAME, "OptiPlex Micro Plus 7010"),
1533 DMI_MATCH(DMI_SYS_VENDOR, "Dell Inc."),
1534 DMI_MATCH(DMI_PRODUCT_NAME, "OptiPlex Micro 7010"),
1538 /* TODO: refactor this from a fixed table to a dynamic option */
1541 static void retrieve_dmi_info(struct amdgpu_display_manager *dm)
1543 const struct dmi_system_id *dmi_id;
1545 dm->aux_hpd_discon_quirk = false;
1547 dmi_id = dmi_first_match(hpd_disconnect_quirk_table);
1549 dm->aux_hpd_discon_quirk = true;
1550 DRM_INFO("aux_hpd_discon_quirk attached\n");
1554 static int amdgpu_dm_init(struct amdgpu_device *adev)
1556 struct dc_init_data init_data;
1557 struct dc_callback_init init_params;
1560 adev->dm.ddev = adev_to_drm(adev);
1561 adev->dm.adev = adev;
1563 /* Zero all the fields */
1564 memset(&init_data, 0, sizeof(init_data));
1565 memset(&init_params, 0, sizeof(init_params));
1567 mutex_init(&adev->dm.dpia_aux_lock);
1568 mutex_init(&adev->dm.dc_lock);
1569 mutex_init(&adev->dm.audio_lock);
1571 if (amdgpu_dm_irq_init(adev)) {
1572 DRM_ERROR("amdgpu: failed to initialize DM IRQ support.\n");
1576 init_data.asic_id.chip_family = adev->family;
1578 init_data.asic_id.pci_revision_id = adev->pdev->revision;
1579 init_data.asic_id.hw_internal_rev = adev->external_rev_id;
1580 init_data.asic_id.chip_id = adev->pdev->device;
1582 init_data.asic_id.vram_width = adev->gmc.vram_width;
1583 /* TODO: initialize init_data.asic_id.vram_type here!!!! */
1584 init_data.asic_id.atombios_base_address =
1585 adev->mode_info.atom_context->bios;
1587 init_data.driver = adev;
1589 adev->dm.cgs_device = amdgpu_cgs_create_device(adev);
1591 if (!adev->dm.cgs_device) {
1592 DRM_ERROR("amdgpu: failed to create cgs device.\n");
1596 init_data.cgs_device = adev->dm.cgs_device;
1598 init_data.dce_environment = DCE_ENV_PRODUCTION_DRV;
1600 switch (adev->ip_versions[DCE_HWIP][0]) {
1601 case IP_VERSION(2, 1, 0):
1602 switch (adev->dm.dmcub_fw_version) {
1603 case 0: /* development */
1604 case 0x1: /* linux-firmware.git hash 6d9f399 */
1605 case 0x01000000: /* linux-firmware.git hash 9a0b0f4 */
1606 init_data.flags.disable_dmcu = false;
1609 init_data.flags.disable_dmcu = true;
1612 case IP_VERSION(2, 0, 3):
1613 init_data.flags.disable_dmcu = true;
1619 switch (adev->asic_type) {
1622 init_data.flags.gpu_vm_support = true;
1625 switch (adev->ip_versions[DCE_HWIP][0]) {
1626 case IP_VERSION(1, 0, 0):
1627 case IP_VERSION(1, 0, 1):
1628 /* enable S/G on PCO and RV2 */
1629 if ((adev->apu_flags & AMD_APU_IS_RAVEN2) ||
1630 (adev->apu_flags & AMD_APU_IS_PICASSO))
1631 init_data.flags.gpu_vm_support = true;
1633 case IP_VERSION(2, 1, 0):
1634 case IP_VERSION(3, 0, 1):
1635 case IP_VERSION(3, 1, 2):
1636 case IP_VERSION(3, 1, 3):
1637 case IP_VERSION(3, 1, 4):
1638 case IP_VERSION(3, 1, 5):
1639 case IP_VERSION(3, 1, 6):
1640 init_data.flags.gpu_vm_support = true;
1647 if (init_data.flags.gpu_vm_support &&
1648 (amdgpu_sg_display == 0))
1649 init_data.flags.gpu_vm_support = false;
1651 if (init_data.flags.gpu_vm_support)
1652 adev->mode_info.gpu_vm_support = true;
1654 if (amdgpu_dc_feature_mask & DC_FBC_MASK)
1655 init_data.flags.fbc_support = true;
1657 if (amdgpu_dc_feature_mask & DC_MULTI_MON_PP_MCLK_SWITCH_MASK)
1658 init_data.flags.multi_mon_pp_mclk_switch = true;
1660 if (amdgpu_dc_feature_mask & DC_DISABLE_FRACTIONAL_PWM_MASK)
1661 init_data.flags.disable_fractional_pwm = true;
1663 if (amdgpu_dc_feature_mask & DC_EDP_NO_POWER_SEQUENCING)
1664 init_data.flags.edp_no_power_sequencing = true;
1666 if (amdgpu_dc_feature_mask & DC_DISABLE_LTTPR_DP1_4A)
1667 init_data.flags.allow_lttpr_non_transparent_mode.bits.DP1_4A = true;
1668 if (amdgpu_dc_feature_mask & DC_DISABLE_LTTPR_DP2_0)
1669 init_data.flags.allow_lttpr_non_transparent_mode.bits.DP2_0 = true;
1671 init_data.flags.seamless_boot_edp_requested = false;
1673 if (check_seamless_boot_capability(adev)) {
1674 init_data.flags.seamless_boot_edp_requested = true;
1675 init_data.flags.allow_seamless_boot_optimization = true;
1676 DRM_INFO("Seamless boot condition check passed\n");
1679 init_data.flags.enable_mipi_converter_optimization = true;
1681 init_data.dcn_reg_offsets = adev->reg_offset[DCE_HWIP][0];
1682 init_data.nbio_reg_offsets = adev->reg_offset[NBIO_HWIP][0];
1684 INIT_LIST_HEAD(&adev->dm.da_list);
1686 retrieve_dmi_info(&adev->dm);
1688 /* Display Core create. */
1689 adev->dm.dc = dc_create(&init_data);
1692 DRM_INFO("Display Core v%s initialized on %s\n", DC_VER,
1693 dce_version_to_string(adev->dm.dc->ctx->dce_version));
1695 DRM_INFO("Display Core failed to initialize with v%s!\n", DC_VER);
1699 if (amdgpu_dc_debug_mask & DC_DISABLE_PIPE_SPLIT) {
1700 adev->dm.dc->debug.force_single_disp_pipe_split = false;
1701 adev->dm.dc->debug.pipe_split_policy = MPC_SPLIT_AVOID;
1704 if (adev->asic_type != CHIP_CARRIZO && adev->asic_type != CHIP_STONEY)
1705 adev->dm.dc->debug.disable_stutter = amdgpu_pp_feature_mask & PP_STUTTER_MODE ? false : true;
1706 if (dm_should_disable_stutter(adev->pdev))
1707 adev->dm.dc->debug.disable_stutter = true;
1709 if (amdgpu_dc_debug_mask & DC_DISABLE_STUTTER)
1710 adev->dm.dc->debug.disable_stutter = true;
1712 if (amdgpu_dc_debug_mask & DC_DISABLE_DSC)
1713 adev->dm.dc->debug.disable_dsc = true;
1715 if (amdgpu_dc_debug_mask & DC_DISABLE_CLOCK_GATING)
1716 adev->dm.dc->debug.disable_clock_gate = true;
1718 if (amdgpu_dc_debug_mask & DC_FORCE_SUBVP_MCLK_SWITCH)
1719 adev->dm.dc->debug.force_subvp_mclk_switch = true;
1721 adev->dm.dc->debug.visual_confirm = amdgpu_dc_visual_confirm;
1723 /* TODO: Remove after DP2 receiver gets proper support of Cable ID feature */
1724 adev->dm.dc->debug.ignore_cable_id = true;
1726 /* TODO: There is a new drm mst change where the freedom of
1727 * vc_next_start_slot update is revoked/moved into drm, instead of in
1728 * driver. This forces us to make sure to get vc_next_start_slot updated
1729 * in drm function each time without considering if mst_state is active
1730 * or not. Otherwise, next time hotplug will give wrong start_slot
1731 * number. We are implementing a temporary solution to even notify drm
1732 * mst deallocation when link is no longer of MST type when uncommitting
1733 * the stream so we will have more time to work on a proper solution.
1734 * Ideally when dm_helpers_dp_mst_stop_top_mgr message is triggered, we
1735 * should notify drm to do a complete "reset" of its states and stop
1736 * calling further drm mst functions when link is no longer of an MST
1737 * type. This could happen when we unplug an MST hubs/displays. When
1738 * uncommit stream comes later after unplug, we should just reset
1739 * hardware states only.
1741 adev->dm.dc->debug.temp_mst_deallocation_sequence = true;
1743 if (adev->dm.dc->caps.dp_hdmi21_pcon_support)
1744 DRM_INFO("DP-HDMI FRL PCON supported\n");
1746 r = dm_dmub_hw_init(adev);
1748 DRM_ERROR("DMUB interface failed to initialize: status=%d\n", r);
1752 dc_hardware_init(adev->dm.dc);
1754 adev->dm.hpd_rx_offload_wq = hpd_rx_irq_create_workqueue(adev->dm.dc);
1755 if (!adev->dm.hpd_rx_offload_wq) {
1756 DRM_ERROR("amdgpu: failed to create hpd rx offload workqueue.\n");
1760 if ((adev->flags & AMD_IS_APU) && (adev->asic_type >= CHIP_CARRIZO)) {
1761 struct dc_phy_addr_space_config pa_config;
1763 mmhub_read_system_context(adev, &pa_config);
1765 // Call the DC init_memory func
1766 dc_setup_system_context(adev->dm.dc, &pa_config);
1769 adev->dm.freesync_module = mod_freesync_create(adev->dm.dc);
1770 if (!adev->dm.freesync_module) {
1772 "amdgpu: failed to initialize freesync_module.\n");
1774 DRM_DEBUG_DRIVER("amdgpu: freesync_module init done %p.\n",
1775 adev->dm.freesync_module);
1777 amdgpu_dm_init_color_mod();
1779 if (adev->dm.dc->caps.max_links > 0) {
1780 adev->dm.vblank_control_workqueue =
1781 create_singlethread_workqueue("dm_vblank_control_workqueue");
1782 if (!adev->dm.vblank_control_workqueue)
1783 DRM_ERROR("amdgpu: failed to initialize vblank_workqueue.\n");
1786 if (adev->dm.dc->caps.max_links > 0 && adev->family >= AMDGPU_FAMILY_RV) {
1787 adev->dm.hdcp_workqueue = hdcp_create_workqueue(adev, &init_params.cp_psp, adev->dm.dc);
1789 if (!adev->dm.hdcp_workqueue)
1790 DRM_ERROR("amdgpu: failed to initialize hdcp_workqueue.\n");
1792 DRM_DEBUG_DRIVER("amdgpu: hdcp_workqueue init done %p.\n", adev->dm.hdcp_workqueue);
1794 dc_init_callbacks(adev->dm.dc, &init_params);
1796 if (dc_is_dmub_outbox_supported(adev->dm.dc)) {
1797 init_completion(&adev->dm.dmub_aux_transfer_done);
1798 adev->dm.dmub_notify = kzalloc(sizeof(struct dmub_notification), GFP_KERNEL);
1799 if (!adev->dm.dmub_notify) {
1800 DRM_INFO("amdgpu: fail to allocate adev->dm.dmub_notify");
1804 adev->dm.delayed_hpd_wq = create_singlethread_workqueue("amdgpu_dm_hpd_wq");
1805 if (!adev->dm.delayed_hpd_wq) {
1806 DRM_ERROR("amdgpu: failed to create hpd offload workqueue.\n");
1810 amdgpu_dm_outbox_init(adev);
1811 if (!register_dmub_notify_callback(adev, DMUB_NOTIFICATION_AUX_REPLY,
1812 dmub_aux_setconfig_callback, false)) {
1813 DRM_ERROR("amdgpu: fail to register dmub aux callback");
1816 if (!register_dmub_notify_callback(adev, DMUB_NOTIFICATION_HPD, dmub_hpd_callback, true)) {
1817 DRM_ERROR("amdgpu: fail to register dmub hpd callback");
1820 if (!register_dmub_notify_callback(adev, DMUB_NOTIFICATION_HPD_IRQ, dmub_hpd_callback, true)) {
1821 DRM_ERROR("amdgpu: fail to register dmub hpd callback");
1826 /* Enable outbox notification only after IRQ handlers are registered and DMUB is alive.
1827 * It is expected that DMUB will resend any pending notifications at this point, for
1828 * example HPD from DPIA.
1830 if (dc_is_dmub_outbox_supported(adev->dm.dc)) {
1831 dc_enable_dmub_outbox(adev->dm.dc);
1833 /* DPIA trace goes to dmesg logs only if outbox is enabled */
1834 if (amdgpu_dc_debug_mask & DC_ENABLE_DPIA_TRACE)
1835 dc_dmub_srv_enable_dpia_trace(adev->dm.dc);
1838 if (amdgpu_dm_initialize_drm_device(adev)) {
1840 "amdgpu: failed to initialize sw for display support.\n");
1844 /* create fake encoders for MST */
1845 dm_dp_create_fake_mst_encoders(adev);
1847 /* TODO: Add_display_info? */
1849 /* TODO use dynamic cursor width */
1850 adev_to_drm(adev)->mode_config.cursor_width = adev->dm.dc->caps.max_cursor_size;
1851 adev_to_drm(adev)->mode_config.cursor_height = adev->dm.dc->caps.max_cursor_size;
1853 if (drm_vblank_init(adev_to_drm(adev), adev->dm.display_indexes_num)) {
1855 "amdgpu: failed to initialize sw for display support.\n");
1859 #if defined(CONFIG_DRM_AMD_SECURE_DISPLAY)
1860 adev->dm.secure_display_ctxs = amdgpu_dm_crtc_secure_display_create_contexts(adev);
1861 if (!adev->dm.secure_display_ctxs)
1862 DRM_ERROR("amdgpu: failed to initialize secure display contexts.\n");
1865 DRM_DEBUG_DRIVER("KMS initialized.\n");
1869 amdgpu_dm_fini(adev);
1874 static int amdgpu_dm_early_fini(void *handle)
1876 struct amdgpu_device *adev = (struct amdgpu_device *)handle;
1878 amdgpu_dm_audio_fini(adev);
1883 static void amdgpu_dm_fini(struct amdgpu_device *adev)
1887 if (adev->dm.vblank_control_workqueue) {
1888 destroy_workqueue(adev->dm.vblank_control_workqueue);
1889 adev->dm.vblank_control_workqueue = NULL;
1892 amdgpu_dm_destroy_drm_device(&adev->dm);
1894 #if defined(CONFIG_DRM_AMD_SECURE_DISPLAY)
1895 if (adev->dm.secure_display_ctxs) {
1896 for (i = 0; i < adev->mode_info.num_crtc; i++) {
1897 if (adev->dm.secure_display_ctxs[i].crtc) {
1898 flush_work(&adev->dm.secure_display_ctxs[i].notify_ta_work);
1899 flush_work(&adev->dm.secure_display_ctxs[i].forward_roi_work);
1902 kfree(adev->dm.secure_display_ctxs);
1903 adev->dm.secure_display_ctxs = NULL;
1906 if (adev->dm.hdcp_workqueue) {
1907 hdcp_destroy(&adev->dev->kobj, adev->dm.hdcp_workqueue);
1908 adev->dm.hdcp_workqueue = NULL;
1912 dc_deinit_callbacks(adev->dm.dc);
1915 dc_dmub_srv_destroy(&adev->dm.dc->ctx->dmub_srv);
1917 if (dc_enable_dmub_notifications(adev->dm.dc)) {
1918 kfree(adev->dm.dmub_notify);
1919 adev->dm.dmub_notify = NULL;
1920 destroy_workqueue(adev->dm.delayed_hpd_wq);
1921 adev->dm.delayed_hpd_wq = NULL;
1924 if (adev->dm.dmub_bo)
1925 amdgpu_bo_free_kernel(&adev->dm.dmub_bo,
1926 &adev->dm.dmub_bo_gpu_addr,
1927 &adev->dm.dmub_bo_cpu_addr);
1929 if (adev->dm.hpd_rx_offload_wq) {
1930 for (i = 0; i < adev->dm.dc->caps.max_links; i++) {
1931 if (adev->dm.hpd_rx_offload_wq[i].wq) {
1932 destroy_workqueue(adev->dm.hpd_rx_offload_wq[i].wq);
1933 adev->dm.hpd_rx_offload_wq[i].wq = NULL;
1937 kfree(adev->dm.hpd_rx_offload_wq);
1938 adev->dm.hpd_rx_offload_wq = NULL;
1941 /* DC Destroy TODO: Replace destroy DAL */
1943 dc_destroy(&adev->dm.dc);
1945 * TODO: pageflip, vlank interrupt
1947 * amdgpu_dm_irq_fini(adev);
1950 if (adev->dm.cgs_device) {
1951 amdgpu_cgs_destroy_device(adev->dm.cgs_device);
1952 adev->dm.cgs_device = NULL;
1954 if (adev->dm.freesync_module) {
1955 mod_freesync_destroy(adev->dm.freesync_module);
1956 adev->dm.freesync_module = NULL;
1959 mutex_destroy(&adev->dm.audio_lock);
1960 mutex_destroy(&adev->dm.dc_lock);
1961 mutex_destroy(&adev->dm.dpia_aux_lock);
1964 static int load_dmcu_fw(struct amdgpu_device *adev)
1966 const char *fw_name_dmcu = NULL;
1968 const struct dmcu_firmware_header_v1_0 *hdr;
1970 switch (adev->asic_type) {
1971 #if defined(CONFIG_DRM_AMD_DC_SI)
1986 case CHIP_POLARIS11:
1987 case CHIP_POLARIS10:
1988 case CHIP_POLARIS12:
1995 fw_name_dmcu = FIRMWARE_NAVI12_DMCU;
1998 if (ASICREV_IS_PICASSO(adev->external_rev_id))
1999 fw_name_dmcu = FIRMWARE_RAVEN_DMCU;
2000 else if (ASICREV_IS_RAVEN2(adev->external_rev_id))
2001 fw_name_dmcu = FIRMWARE_RAVEN_DMCU;
2006 switch (adev->ip_versions[DCE_HWIP][0]) {
2007 case IP_VERSION(2, 0, 2):
2008 case IP_VERSION(2, 0, 3):
2009 case IP_VERSION(2, 0, 0):
2010 case IP_VERSION(2, 1, 0):
2011 case IP_VERSION(3, 0, 0):
2012 case IP_VERSION(3, 0, 2):
2013 case IP_VERSION(3, 0, 3):
2014 case IP_VERSION(3, 0, 1):
2015 case IP_VERSION(3, 1, 2):
2016 case IP_VERSION(3, 1, 3):
2017 case IP_VERSION(3, 1, 4):
2018 case IP_VERSION(3, 1, 5):
2019 case IP_VERSION(3, 1, 6):
2020 case IP_VERSION(3, 2, 0):
2021 case IP_VERSION(3, 2, 1):
2026 DRM_ERROR("Unsupported ASIC type: 0x%X\n", adev->asic_type);
2030 if (adev->firmware.load_type != AMDGPU_FW_LOAD_PSP) {
2031 DRM_DEBUG_KMS("dm: DMCU firmware not supported on direct or SMU loading\n");
2035 r = amdgpu_ucode_request(adev, &adev->dm.fw_dmcu, fw_name_dmcu);
2037 /* DMCU firmware is not necessary, so don't raise a fuss if it's missing */
2038 DRM_DEBUG_KMS("dm: DMCU firmware not found\n");
2039 adev->dm.fw_dmcu = NULL;
2043 dev_err(adev->dev, "amdgpu_dm: Can't validate firmware \"%s\"\n",
2045 amdgpu_ucode_release(&adev->dm.fw_dmcu);
2049 hdr = (const struct dmcu_firmware_header_v1_0 *)adev->dm.fw_dmcu->data;
2050 adev->firmware.ucode[AMDGPU_UCODE_ID_DMCU_ERAM].ucode_id = AMDGPU_UCODE_ID_DMCU_ERAM;
2051 adev->firmware.ucode[AMDGPU_UCODE_ID_DMCU_ERAM].fw = adev->dm.fw_dmcu;
2052 adev->firmware.fw_size +=
2053 ALIGN(le32_to_cpu(hdr->header.ucode_size_bytes) - le32_to_cpu(hdr->intv_size_bytes), PAGE_SIZE);
2055 adev->firmware.ucode[AMDGPU_UCODE_ID_DMCU_INTV].ucode_id = AMDGPU_UCODE_ID_DMCU_INTV;
2056 adev->firmware.ucode[AMDGPU_UCODE_ID_DMCU_INTV].fw = adev->dm.fw_dmcu;
2057 adev->firmware.fw_size +=
2058 ALIGN(le32_to_cpu(hdr->intv_size_bytes), PAGE_SIZE);
2060 adev->dm.dmcu_fw_version = le32_to_cpu(hdr->header.ucode_version);
2062 DRM_DEBUG_KMS("PSP loading DMCU firmware\n");
2067 static uint32_t amdgpu_dm_dmub_reg_read(void *ctx, uint32_t address)
2069 struct amdgpu_device *adev = ctx;
2071 return dm_read_reg(adev->dm.dc->ctx, address);
2074 static void amdgpu_dm_dmub_reg_write(void *ctx, uint32_t address,
2077 struct amdgpu_device *adev = ctx;
2079 return dm_write_reg(adev->dm.dc->ctx, address, value);
2082 static int dm_dmub_sw_init(struct amdgpu_device *adev)
2084 struct dmub_srv_create_params create_params;
2085 struct dmub_srv_region_params region_params;
2086 struct dmub_srv_region_info region_info;
2087 struct dmub_srv_memory_params memory_params;
2088 struct dmub_srv_fb_info *fb_info;
2089 struct dmub_srv *dmub_srv;
2090 const struct dmcub_firmware_header_v1_0 *hdr;
2091 enum dmub_asic dmub_asic;
2092 enum dmub_status status;
2095 switch (adev->ip_versions[DCE_HWIP][0]) {
2096 case IP_VERSION(2, 1, 0):
2097 dmub_asic = DMUB_ASIC_DCN21;
2099 case IP_VERSION(3, 0, 0):
2100 dmub_asic = DMUB_ASIC_DCN30;
2102 case IP_VERSION(3, 0, 1):
2103 dmub_asic = DMUB_ASIC_DCN301;
2105 case IP_VERSION(3, 0, 2):
2106 dmub_asic = DMUB_ASIC_DCN302;
2108 case IP_VERSION(3, 0, 3):
2109 dmub_asic = DMUB_ASIC_DCN303;
2111 case IP_VERSION(3, 1, 2):
2112 case IP_VERSION(3, 1, 3):
2113 dmub_asic = (adev->external_rev_id == YELLOW_CARP_B0) ? DMUB_ASIC_DCN31B : DMUB_ASIC_DCN31;
2115 case IP_VERSION(3, 1, 4):
2116 dmub_asic = DMUB_ASIC_DCN314;
2118 case IP_VERSION(3, 1, 5):
2119 dmub_asic = DMUB_ASIC_DCN315;
2121 case IP_VERSION(3, 1, 6):
2122 dmub_asic = DMUB_ASIC_DCN316;
2124 case IP_VERSION(3, 2, 0):
2125 dmub_asic = DMUB_ASIC_DCN32;
2127 case IP_VERSION(3, 2, 1):
2128 dmub_asic = DMUB_ASIC_DCN321;
2131 /* ASIC doesn't support DMUB. */
2135 hdr = (const struct dmcub_firmware_header_v1_0 *)adev->dm.dmub_fw->data;
2136 adev->dm.dmcub_fw_version = le32_to_cpu(hdr->header.ucode_version);
2138 if (adev->firmware.load_type == AMDGPU_FW_LOAD_PSP) {
2139 adev->firmware.ucode[AMDGPU_UCODE_ID_DMCUB].ucode_id =
2140 AMDGPU_UCODE_ID_DMCUB;
2141 adev->firmware.ucode[AMDGPU_UCODE_ID_DMCUB].fw =
2143 adev->firmware.fw_size +=
2144 ALIGN(le32_to_cpu(hdr->inst_const_bytes), PAGE_SIZE);
2146 DRM_INFO("Loading DMUB firmware via PSP: version=0x%08X\n",
2147 adev->dm.dmcub_fw_version);
2151 adev->dm.dmub_srv = kzalloc(sizeof(*adev->dm.dmub_srv), GFP_KERNEL);
2152 dmub_srv = adev->dm.dmub_srv;
2155 DRM_ERROR("Failed to allocate DMUB service!\n");
2159 memset(&create_params, 0, sizeof(create_params));
2160 create_params.user_ctx = adev;
2161 create_params.funcs.reg_read = amdgpu_dm_dmub_reg_read;
2162 create_params.funcs.reg_write = amdgpu_dm_dmub_reg_write;
2163 create_params.asic = dmub_asic;
2165 /* Create the DMUB service. */
2166 status = dmub_srv_create(dmub_srv, &create_params);
2167 if (status != DMUB_STATUS_OK) {
2168 DRM_ERROR("Error creating DMUB service: %d\n", status);
2172 /* Calculate the size of all the regions for the DMUB service. */
2173 memset(®ion_params, 0, sizeof(region_params));
2175 region_params.inst_const_size = le32_to_cpu(hdr->inst_const_bytes) -
2176 PSP_HEADER_BYTES - PSP_FOOTER_BYTES;
2177 region_params.bss_data_size = le32_to_cpu(hdr->bss_data_bytes);
2178 region_params.vbios_size = adev->bios_size;
2179 region_params.fw_bss_data = region_params.bss_data_size ?
2180 adev->dm.dmub_fw->data +
2181 le32_to_cpu(hdr->header.ucode_array_offset_bytes) +
2182 le32_to_cpu(hdr->inst_const_bytes) : NULL;
2183 region_params.fw_inst_const =
2184 adev->dm.dmub_fw->data +
2185 le32_to_cpu(hdr->header.ucode_array_offset_bytes) +
2187 region_params.is_mailbox_in_inbox = false;
2189 status = dmub_srv_calc_region_info(dmub_srv, ®ion_params,
2192 if (status != DMUB_STATUS_OK) {
2193 DRM_ERROR("Error calculating DMUB region info: %d\n", status);
2198 * Allocate a framebuffer based on the total size of all the regions.
2199 * TODO: Move this into GART.
2201 r = amdgpu_bo_create_kernel(adev, region_info.fb_size, PAGE_SIZE,
2202 AMDGPU_GEM_DOMAIN_VRAM |
2203 AMDGPU_GEM_DOMAIN_GTT,
2205 &adev->dm.dmub_bo_gpu_addr,
2206 &adev->dm.dmub_bo_cpu_addr);
2210 /* Rebase the regions on the framebuffer address. */
2211 memset(&memory_params, 0, sizeof(memory_params));
2212 memory_params.cpu_fb_addr = adev->dm.dmub_bo_cpu_addr;
2213 memory_params.gpu_fb_addr = adev->dm.dmub_bo_gpu_addr;
2214 memory_params.region_info = ®ion_info;
2216 adev->dm.dmub_fb_info =
2217 kzalloc(sizeof(*adev->dm.dmub_fb_info), GFP_KERNEL);
2218 fb_info = adev->dm.dmub_fb_info;
2222 "Failed to allocate framebuffer info for DMUB service!\n");
2226 status = dmub_srv_calc_mem_info(dmub_srv, &memory_params, fb_info);
2227 if (status != DMUB_STATUS_OK) {
2228 DRM_ERROR("Error calculating DMUB FB info: %d\n", status);
2235 static int dm_sw_init(void *handle)
2237 struct amdgpu_device *adev = (struct amdgpu_device *)handle;
2240 r = dm_dmub_sw_init(adev);
2244 return load_dmcu_fw(adev);
2247 static int dm_sw_fini(void *handle)
2249 struct amdgpu_device *adev = (struct amdgpu_device *)handle;
2251 kfree(adev->dm.dmub_fb_info);
2252 adev->dm.dmub_fb_info = NULL;
2254 if (adev->dm.dmub_srv) {
2255 dmub_srv_destroy(adev->dm.dmub_srv);
2256 adev->dm.dmub_srv = NULL;
2259 amdgpu_ucode_release(&adev->dm.dmub_fw);
2260 amdgpu_ucode_release(&adev->dm.fw_dmcu);
2265 static int detect_mst_link_for_all_connectors(struct drm_device *dev)
2267 struct amdgpu_dm_connector *aconnector;
2268 struct drm_connector *connector;
2269 struct drm_connector_list_iter iter;
2272 drm_connector_list_iter_begin(dev, &iter);
2273 drm_for_each_connector_iter(connector, &iter) {
2274 aconnector = to_amdgpu_dm_connector(connector);
2275 if (aconnector->dc_link->type == dc_connection_mst_branch &&
2276 aconnector->mst_mgr.aux) {
2277 DRM_DEBUG_DRIVER("DM_MST: starting TM on aconnector: %p [id: %d]\n",
2279 aconnector->base.base.id);
2281 ret = drm_dp_mst_topology_mgr_set_mst(&aconnector->mst_mgr, true);
2283 DRM_ERROR("DM_MST: Failed to start MST\n");
2284 aconnector->dc_link->type =
2285 dc_connection_single;
2286 ret = dm_helpers_dp_mst_stop_top_mgr(aconnector->dc_link->ctx,
2287 aconnector->dc_link);
2292 drm_connector_list_iter_end(&iter);
2297 static int dm_late_init(void *handle)
2299 struct amdgpu_device *adev = (struct amdgpu_device *)handle;
2301 struct dmcu_iram_parameters params;
2302 unsigned int linear_lut[16];
2304 struct dmcu *dmcu = NULL;
2306 dmcu = adev->dm.dc->res_pool->dmcu;
2308 for (i = 0; i < 16; i++)
2309 linear_lut[i] = 0xFFFF * i / 15;
2312 params.backlight_ramping_override = false;
2313 params.backlight_ramping_start = 0xCCCC;
2314 params.backlight_ramping_reduction = 0xCCCCCCCC;
2315 params.backlight_lut_array_size = 16;
2316 params.backlight_lut_array = linear_lut;
2318 /* Min backlight level after ABM reduction, Don't allow below 1%
2319 * 0xFFFF x 0.01 = 0x28F
2321 params.min_abm_backlight = 0x28F;
2322 /* In the case where abm is implemented on dmcub,
2323 * dmcu object will be null.
2324 * ABM 2.4 and up are implemented on dmcub.
2327 if (!dmcu_load_iram(dmcu, params))
2329 } else if (adev->dm.dc->ctx->dmub_srv) {
2330 struct dc_link *edp_links[MAX_NUM_EDP];
2333 dc_get_edp_links(adev->dm.dc, edp_links, &edp_num);
2334 for (i = 0; i < edp_num; i++) {
2335 if (!dmub_init_abm_config(adev->dm.dc->res_pool, params, i))
2340 return detect_mst_link_for_all_connectors(adev_to_drm(adev));
2343 static void resume_mst_branch_status(struct drm_dp_mst_topology_mgr *mgr)
2349 mutex_lock(&mgr->lock);
2350 if (!mgr->mst_primary)
2353 if (drm_dp_read_dpcd_caps(mgr->aux, mgr->dpcd) < 0) {
2354 drm_dbg_kms(mgr->dev, "dpcd read failed - undocked during suspend?\n");
2358 ret = drm_dp_dpcd_writeb(mgr->aux, DP_MSTM_CTRL,
2361 DP_UPSTREAM_IS_SRC);
2363 drm_dbg_kms(mgr->dev, "mst write failed - undocked during suspend?\n");
2367 /* Some hubs forget their guids after they resume */
2368 ret = drm_dp_dpcd_read(mgr->aux, DP_GUID, guid, 16);
2370 drm_dbg_kms(mgr->dev, "dpcd read failed - undocked during suspend?\n");
2374 if (memchr_inv(guid, 0, 16) == NULL) {
2375 tmp64 = get_jiffies_64();
2376 memcpy(&guid[0], &tmp64, sizeof(u64));
2377 memcpy(&guid[8], &tmp64, sizeof(u64));
2379 ret = drm_dp_dpcd_write(mgr->aux, DP_GUID, guid, 16);
2382 drm_dbg_kms(mgr->dev, "check mstb guid failed - undocked during suspend?\n");
2387 memcpy(mgr->mst_primary->guid, guid, 16);
2390 mutex_unlock(&mgr->lock);
2393 static void s3_handle_mst(struct drm_device *dev, bool suspend)
2395 struct amdgpu_dm_connector *aconnector;
2396 struct drm_connector *connector;
2397 struct drm_connector_list_iter iter;
2398 struct drm_dp_mst_topology_mgr *mgr;
2400 drm_connector_list_iter_begin(dev, &iter);
2401 drm_for_each_connector_iter(connector, &iter) {
2402 aconnector = to_amdgpu_dm_connector(connector);
2403 if (aconnector->dc_link->type != dc_connection_mst_branch ||
2404 aconnector->mst_root)
2407 mgr = &aconnector->mst_mgr;
2410 drm_dp_mst_topology_mgr_suspend(mgr);
2412 /* if extended timeout is supported in hardware,
2413 * default to LTTPR timeout (3.2ms) first as a W/A for DP link layer
2414 * CTS 4.2.1.1 regression introduced by CTS specs requirement update.
2416 try_to_configure_aux_timeout(aconnector->dc_link->ddc, LINK_AUX_DEFAULT_LTTPR_TIMEOUT_PERIOD);
2417 if (!dp_is_lttpr_present(aconnector->dc_link))
2418 try_to_configure_aux_timeout(aconnector->dc_link->ddc, LINK_AUX_DEFAULT_TIMEOUT_PERIOD);
2420 /* TODO: move resume_mst_branch_status() into drm mst resume again
2421 * once topology probing work is pulled out from mst resume into mst
2422 * resume 2nd step. mst resume 2nd step should be called after old
2423 * state getting restored (i.e. drm_atomic_helper_resume()).
2425 resume_mst_branch_status(mgr);
2428 drm_connector_list_iter_end(&iter);
2431 static int amdgpu_dm_smu_write_watermarks_table(struct amdgpu_device *adev)
2435 /* This interface is for dGPU Navi1x.Linux dc-pplib interface depends
2436 * on window driver dc implementation.
2437 * For Navi1x, clock settings of dcn watermarks are fixed. the settings
2438 * should be passed to smu during boot up and resume from s3.
2439 * boot up: dc calculate dcn watermark clock settings within dc_create,
2440 * dcn20_resource_construct
2441 * then call pplib functions below to pass the settings to smu:
2442 * smu_set_watermarks_for_clock_ranges
2443 * smu_set_watermarks_table
2444 * navi10_set_watermarks_table
2445 * smu_write_watermarks_table
2447 * For Renoir, clock settings of dcn watermark are also fixed values.
2448 * dc has implemented different flow for window driver:
2449 * dc_hardware_init / dc_set_power_state
2454 * smu_set_watermarks_for_clock_ranges
2455 * renoir_set_watermarks_table
2456 * smu_write_watermarks_table
2459 * dc_hardware_init -> amdgpu_dm_init
2460 * dc_set_power_state --> dm_resume
2462 * therefore, this function apply to navi10/12/14 but not Renoir
2465 switch (adev->ip_versions[DCE_HWIP][0]) {
2466 case IP_VERSION(2, 0, 2):
2467 case IP_VERSION(2, 0, 0):
2473 ret = amdgpu_dpm_write_watermarks_table(adev);
2475 DRM_ERROR("Failed to update WMTABLE!\n");
2483 * dm_hw_init() - Initialize DC device
2484 * @handle: The base driver device containing the amdgpu_dm device.
2486 * Initialize the &struct amdgpu_display_manager device. This involves calling
2487 * the initializers of each DM component, then populating the struct with them.
2489 * Although the function implies hardware initialization, both hardware and
2490 * software are initialized here. Splitting them out to their relevant init
2491 * hooks is a future TODO item.
2493 * Some notable things that are initialized here:
2495 * - Display Core, both software and hardware
2496 * - DC modules that we need (freesync and color management)
2497 * - DRM software states
2498 * - Interrupt sources and handlers
2500 * - Debug FS entries, if enabled
2502 static int dm_hw_init(void *handle)
2504 struct amdgpu_device *adev = (struct amdgpu_device *)handle;
2505 /* Create DAL display manager */
2506 amdgpu_dm_init(adev);
2507 amdgpu_dm_hpd_init(adev);
2513 * dm_hw_fini() - Teardown DC device
2514 * @handle: The base driver device containing the amdgpu_dm device.
2516 * Teardown components within &struct amdgpu_display_manager that require
2517 * cleanup. This involves cleaning up the DRM device, DC, and any modules that
2518 * were loaded. Also flush IRQ workqueues and disable them.
2520 static int dm_hw_fini(void *handle)
2522 struct amdgpu_device *adev = (struct amdgpu_device *)handle;
2524 amdgpu_dm_hpd_fini(adev);
2526 amdgpu_dm_irq_fini(adev);
2527 amdgpu_dm_fini(adev);
2532 static void dm_gpureset_toggle_interrupts(struct amdgpu_device *adev,
2533 struct dc_state *state, bool enable)
2535 enum dc_irq_source irq_source;
2536 struct amdgpu_crtc *acrtc;
2540 for (i = 0; i < state->stream_count; i++) {
2541 acrtc = get_crtc_by_otg_inst(
2542 adev, state->stream_status[i].primary_otg_inst);
2544 if (acrtc && state->stream_status[i].plane_count != 0) {
2545 irq_source = IRQ_TYPE_PFLIP + acrtc->otg_inst;
2546 rc = dc_interrupt_set(adev->dm.dc, irq_source, enable) ? 0 : -EBUSY;
2548 DRM_WARN("Failed to %s pflip interrupts\n",
2549 enable ? "enable" : "disable");
2552 if (amdgpu_dm_crtc_vrr_active(to_dm_crtc_state(acrtc->base.state)))
2553 rc = amdgpu_dm_crtc_set_vupdate_irq(&acrtc->base, true);
2555 rc = amdgpu_dm_crtc_set_vupdate_irq(&acrtc->base, false);
2558 DRM_WARN("Failed to %sable vupdate interrupt\n", enable ? "en" : "dis");
2560 irq_source = IRQ_TYPE_VBLANK + acrtc->otg_inst;
2561 /* During gpu-reset we disable and then enable vblank irq, so
2562 * don't use amdgpu_irq_get/put() to avoid refcount change.
2564 if (!dc_interrupt_set(adev->dm.dc, irq_source, enable))
2565 DRM_WARN("Failed to %sable vblank interrupt\n", enable ? "en" : "dis");
2571 static enum dc_status amdgpu_dm_commit_zero_streams(struct dc *dc)
2573 struct dc_state *context = NULL;
2574 enum dc_status res = DC_ERROR_UNEXPECTED;
2576 struct dc_stream_state *del_streams[MAX_PIPES];
2577 int del_streams_count = 0;
2579 memset(del_streams, 0, sizeof(del_streams));
2581 context = dc_create_state(dc);
2582 if (context == NULL)
2583 goto context_alloc_fail;
2585 dc_resource_state_copy_construct_current(dc, context);
2587 /* First remove from context all streams */
2588 for (i = 0; i < context->stream_count; i++) {
2589 struct dc_stream_state *stream = context->streams[i];
2591 del_streams[del_streams_count++] = stream;
2594 /* Remove all planes for removed streams and then remove the streams */
2595 for (i = 0; i < del_streams_count; i++) {
2596 if (!dc_rem_all_planes_for_stream(dc, del_streams[i], context)) {
2597 res = DC_FAIL_DETACH_SURFACES;
2601 res = dc_remove_stream_from_ctx(dc, context, del_streams[i]);
2606 res = dc_commit_streams(dc, context->streams, context->stream_count);
2609 dc_release_state(context);
2615 static void hpd_rx_irq_work_suspend(struct amdgpu_display_manager *dm)
2619 if (dm->hpd_rx_offload_wq) {
2620 for (i = 0; i < dm->dc->caps.max_links; i++)
2621 flush_workqueue(dm->hpd_rx_offload_wq[i].wq);
2625 static int dm_suspend(void *handle)
2627 struct amdgpu_device *adev = handle;
2628 struct amdgpu_display_manager *dm = &adev->dm;
2631 if (amdgpu_in_reset(adev)) {
2632 mutex_lock(&dm->dc_lock);
2634 dc_allow_idle_optimizations(adev->dm.dc, false);
2636 dm->cached_dc_state = dc_copy_state(dm->dc->current_state);
2638 dm_gpureset_toggle_interrupts(adev, dm->cached_dc_state, false);
2640 amdgpu_dm_commit_zero_streams(dm->dc);
2642 amdgpu_dm_irq_suspend(adev);
2644 hpd_rx_irq_work_suspend(dm);
2649 WARN_ON(adev->dm.cached_state);
2650 adev->dm.cached_state = drm_atomic_helper_suspend(adev_to_drm(adev));
2652 s3_handle_mst(adev_to_drm(adev), true);
2654 amdgpu_dm_irq_suspend(adev);
2656 hpd_rx_irq_work_suspend(dm);
2658 dc_set_power_state(dm->dc, DC_ACPI_CM_POWER_STATE_D3);
2663 struct amdgpu_dm_connector *
2664 amdgpu_dm_find_first_crtc_matching_connector(struct drm_atomic_state *state,
2665 struct drm_crtc *crtc)
2668 struct drm_connector_state *new_con_state;
2669 struct drm_connector *connector;
2670 struct drm_crtc *crtc_from_state;
2672 for_each_new_connector_in_state(state, connector, new_con_state, i) {
2673 crtc_from_state = new_con_state->crtc;
2675 if (crtc_from_state == crtc)
2676 return to_amdgpu_dm_connector(connector);
2682 static void emulated_link_detect(struct dc_link *link)
2684 struct dc_sink_init_data sink_init_data = { 0 };
2685 struct display_sink_capability sink_caps = { 0 };
2686 enum dc_edid_status edid_status;
2687 struct dc_context *dc_ctx = link->ctx;
2688 struct dc_sink *sink = NULL;
2689 struct dc_sink *prev_sink = NULL;
2691 link->type = dc_connection_none;
2692 prev_sink = link->local_sink;
2695 dc_sink_release(prev_sink);
2697 switch (link->connector_signal) {
2698 case SIGNAL_TYPE_HDMI_TYPE_A: {
2699 sink_caps.transaction_type = DDC_TRANSACTION_TYPE_I2C;
2700 sink_caps.signal = SIGNAL_TYPE_HDMI_TYPE_A;
2704 case SIGNAL_TYPE_DVI_SINGLE_LINK: {
2705 sink_caps.transaction_type = DDC_TRANSACTION_TYPE_I2C;
2706 sink_caps.signal = SIGNAL_TYPE_DVI_SINGLE_LINK;
2710 case SIGNAL_TYPE_DVI_DUAL_LINK: {
2711 sink_caps.transaction_type = DDC_TRANSACTION_TYPE_I2C;
2712 sink_caps.signal = SIGNAL_TYPE_DVI_DUAL_LINK;
2716 case SIGNAL_TYPE_LVDS: {
2717 sink_caps.transaction_type = DDC_TRANSACTION_TYPE_I2C;
2718 sink_caps.signal = SIGNAL_TYPE_LVDS;
2722 case SIGNAL_TYPE_EDP: {
2723 sink_caps.transaction_type =
2724 DDC_TRANSACTION_TYPE_I2C_OVER_AUX;
2725 sink_caps.signal = SIGNAL_TYPE_EDP;
2729 case SIGNAL_TYPE_DISPLAY_PORT: {
2730 sink_caps.transaction_type =
2731 DDC_TRANSACTION_TYPE_I2C_OVER_AUX;
2732 sink_caps.signal = SIGNAL_TYPE_VIRTUAL;
2737 DC_ERROR("Invalid connector type! signal:%d\n",
2738 link->connector_signal);
2742 sink_init_data.link = link;
2743 sink_init_data.sink_signal = sink_caps.signal;
2745 sink = dc_sink_create(&sink_init_data);
2747 DC_ERROR("Failed to create sink!\n");
2751 /* dc_sink_create returns a new reference */
2752 link->local_sink = sink;
2754 edid_status = dm_helpers_read_local_edid(
2759 if (edid_status != EDID_OK)
2760 DC_ERROR("Failed to read EDID");
2764 static void dm_gpureset_commit_state(struct dc_state *dc_state,
2765 struct amdgpu_display_manager *dm)
2768 struct dc_surface_update surface_updates[MAX_SURFACES];
2769 struct dc_plane_info plane_infos[MAX_SURFACES];
2770 struct dc_scaling_info scaling_infos[MAX_SURFACES];
2771 struct dc_flip_addrs flip_addrs[MAX_SURFACES];
2772 struct dc_stream_update stream_update;
2776 bundle = kzalloc(sizeof(*bundle), GFP_KERNEL);
2779 dm_error("Failed to allocate update bundle\n");
2783 for (k = 0; k < dc_state->stream_count; k++) {
2784 bundle->stream_update.stream = dc_state->streams[k];
2786 for (m = 0; m < dc_state->stream_status->plane_count; m++) {
2787 bundle->surface_updates[m].surface =
2788 dc_state->stream_status->plane_states[m];
2789 bundle->surface_updates[m].surface->force_full_update =
2793 update_planes_and_stream_adapter(dm->dc,
2795 dc_state->stream_status->plane_count,
2796 dc_state->streams[k],
2797 &bundle->stream_update,
2798 bundle->surface_updates);
2805 static int dm_resume(void *handle)
2807 struct amdgpu_device *adev = handle;
2808 struct drm_device *ddev = adev_to_drm(adev);
2809 struct amdgpu_display_manager *dm = &adev->dm;
2810 struct amdgpu_dm_connector *aconnector;
2811 struct drm_connector *connector;
2812 struct drm_connector_list_iter iter;
2813 struct drm_crtc *crtc;
2814 struct drm_crtc_state *new_crtc_state;
2815 struct dm_crtc_state *dm_new_crtc_state;
2816 struct drm_plane *plane;
2817 struct drm_plane_state *new_plane_state;
2818 struct dm_plane_state *dm_new_plane_state;
2819 struct dm_atomic_state *dm_state = to_dm_atomic_state(dm->atomic_obj.state);
2820 enum dc_connection_type new_connection_type = dc_connection_none;
2821 struct dc_state *dc_state;
2823 bool need_hotplug = false;
2825 if (amdgpu_in_reset(adev)) {
2826 dc_state = dm->cached_dc_state;
2829 * The dc->current_state is backed up into dm->cached_dc_state
2830 * before we commit 0 streams.
2832 * DC will clear link encoder assignments on the real state
2833 * but the changes won't propagate over to the copy we made
2834 * before the 0 streams commit.
2836 * DC expects that link encoder assignments are *not* valid
2837 * when committing a state, so as a workaround we can copy
2838 * off of the current state.
2840 * We lose the previous assignments, but we had already
2841 * commit 0 streams anyway.
2843 link_enc_cfg_copy(adev->dm.dc->current_state, dc_state);
2845 r = dm_dmub_hw_init(adev);
2847 DRM_ERROR("DMUB interface failed to initialize: status=%d\n", r);
2849 dc_set_power_state(dm->dc, DC_ACPI_CM_POWER_STATE_D0);
2852 amdgpu_dm_irq_resume_early(adev);
2854 for (i = 0; i < dc_state->stream_count; i++) {
2855 dc_state->streams[i]->mode_changed = true;
2856 for (j = 0; j < dc_state->stream_status[i].plane_count; j++) {
2857 dc_state->stream_status[i].plane_states[j]->update_flags.raw
2862 if (dc_is_dmub_outbox_supported(adev->dm.dc)) {
2863 amdgpu_dm_outbox_init(adev);
2864 dc_enable_dmub_outbox(adev->dm.dc);
2867 WARN_ON(!dc_commit_streams(dm->dc, dc_state->streams, dc_state->stream_count));
2869 dm_gpureset_commit_state(dm->cached_dc_state, dm);
2871 dm_gpureset_toggle_interrupts(adev, dm->cached_dc_state, true);
2873 dc_release_state(dm->cached_dc_state);
2874 dm->cached_dc_state = NULL;
2876 amdgpu_dm_irq_resume_late(adev);
2878 mutex_unlock(&dm->dc_lock);
2882 /* Recreate dc_state - DC invalidates it when setting power state to S3. */
2883 dc_release_state(dm_state->context);
2884 dm_state->context = dc_create_state(dm->dc);
2885 /* TODO: Remove dc_state->dccg, use dc->dccg directly. */
2886 dc_resource_state_construct(dm->dc, dm_state->context);
2888 /* Before powering on DC we need to re-initialize DMUB. */
2889 dm_dmub_hw_resume(adev);
2891 /* Re-enable outbox interrupts for DPIA. */
2892 if (dc_is_dmub_outbox_supported(adev->dm.dc)) {
2893 amdgpu_dm_outbox_init(adev);
2894 dc_enable_dmub_outbox(adev->dm.dc);
2897 /* power on hardware */
2898 dc_set_power_state(dm->dc, DC_ACPI_CM_POWER_STATE_D0);
2900 /* program HPD filter */
2904 * early enable HPD Rx IRQ, should be done before set mode as short
2905 * pulse interrupts are used for MST
2907 amdgpu_dm_irq_resume_early(adev);
2909 /* On resume we need to rewrite the MSTM control bits to enable MST*/
2910 s3_handle_mst(ddev, false);
2913 drm_connector_list_iter_begin(ddev, &iter);
2914 drm_for_each_connector_iter(connector, &iter) {
2915 aconnector = to_amdgpu_dm_connector(connector);
2917 if (!aconnector->dc_link)
2921 * this is the case when traversing through already created end sink
2922 * MST connectors, should be skipped
2924 if (aconnector && aconnector->mst_root)
2927 mutex_lock(&aconnector->hpd_lock);
2928 if (!dc_link_detect_connection_type(aconnector->dc_link, &new_connection_type))
2929 DRM_ERROR("KMS: Failed to detect connector\n");
2931 if (aconnector->base.force && new_connection_type == dc_connection_none) {
2932 emulated_link_detect(aconnector->dc_link);
2934 mutex_lock(&dm->dc_lock);
2935 dc_link_detect(aconnector->dc_link, DETECT_REASON_HPD);
2936 mutex_unlock(&dm->dc_lock);
2939 if (aconnector->fake_enable && aconnector->dc_link->local_sink)
2940 aconnector->fake_enable = false;
2942 if (aconnector->dc_sink)
2943 dc_sink_release(aconnector->dc_sink);
2944 aconnector->dc_sink = NULL;
2945 amdgpu_dm_update_connector_after_detect(aconnector);
2946 mutex_unlock(&aconnector->hpd_lock);
2948 drm_connector_list_iter_end(&iter);
2950 /* Force mode set in atomic commit */
2951 for_each_new_crtc_in_state(dm->cached_state, crtc, new_crtc_state, i)
2952 new_crtc_state->active_changed = true;
2955 * atomic_check is expected to create the dc states. We need to release
2956 * them here, since they were duplicated as part of the suspend
2959 for_each_new_crtc_in_state(dm->cached_state, crtc, new_crtc_state, i) {
2960 dm_new_crtc_state = to_dm_crtc_state(new_crtc_state);
2961 if (dm_new_crtc_state->stream) {
2962 WARN_ON(kref_read(&dm_new_crtc_state->stream->refcount) > 1);
2963 dc_stream_release(dm_new_crtc_state->stream);
2964 dm_new_crtc_state->stream = NULL;
2968 for_each_new_plane_in_state(dm->cached_state, plane, new_plane_state, i) {
2969 dm_new_plane_state = to_dm_plane_state(new_plane_state);
2970 if (dm_new_plane_state->dc_state) {
2971 WARN_ON(kref_read(&dm_new_plane_state->dc_state->refcount) > 1);
2972 dc_plane_state_release(dm_new_plane_state->dc_state);
2973 dm_new_plane_state->dc_state = NULL;
2977 drm_atomic_helper_resume(ddev, dm->cached_state);
2979 dm->cached_state = NULL;
2981 /* Do mst topology probing after resuming cached state*/
2982 drm_connector_list_iter_begin(ddev, &iter);
2983 drm_for_each_connector_iter(connector, &iter) {
2984 aconnector = to_amdgpu_dm_connector(connector);
2985 if (aconnector->dc_link->type != dc_connection_mst_branch ||
2986 aconnector->mst_root)
2989 ret = drm_dp_mst_topology_mgr_resume(&aconnector->mst_mgr, true);
2992 dm_helpers_dp_mst_stop_top_mgr(aconnector->dc_link->ctx,
2993 aconnector->dc_link);
2994 need_hotplug = true;
2997 drm_connector_list_iter_end(&iter);
3000 drm_kms_helper_hotplug_event(ddev);
3002 amdgpu_dm_irq_resume_late(adev);
3004 amdgpu_dm_smu_write_watermarks_table(adev);
3012 * DM (and consequently DC) is registered in the amdgpu base driver as a IP
3013 * block. When CONFIG_DRM_AMD_DC is enabled, the DM device IP block is added to
3014 * the base driver's device list to be initialized and torn down accordingly.
3016 * The functions to do so are provided as hooks in &struct amd_ip_funcs.
3019 static const struct amd_ip_funcs amdgpu_dm_funcs = {
3021 .early_init = dm_early_init,
3022 .late_init = dm_late_init,
3023 .sw_init = dm_sw_init,
3024 .sw_fini = dm_sw_fini,
3025 .early_fini = amdgpu_dm_early_fini,
3026 .hw_init = dm_hw_init,
3027 .hw_fini = dm_hw_fini,
3028 .suspend = dm_suspend,
3029 .resume = dm_resume,
3030 .is_idle = dm_is_idle,
3031 .wait_for_idle = dm_wait_for_idle,
3032 .check_soft_reset = dm_check_soft_reset,
3033 .soft_reset = dm_soft_reset,
3034 .set_clockgating_state = dm_set_clockgating_state,
3035 .set_powergating_state = dm_set_powergating_state,
3038 const struct amdgpu_ip_block_version dm_ip_block = {
3039 .type = AMD_IP_BLOCK_TYPE_DCE,
3043 .funcs = &amdgpu_dm_funcs,
3053 static const struct drm_mode_config_funcs amdgpu_dm_mode_funcs = {
3054 .fb_create = amdgpu_display_user_framebuffer_create,
3055 .get_format_info = amdgpu_dm_plane_get_format_info,
3056 .atomic_check = amdgpu_dm_atomic_check,
3057 .atomic_commit = drm_atomic_helper_commit,
3060 static struct drm_mode_config_helper_funcs amdgpu_dm_mode_config_helperfuncs = {
3061 .atomic_commit_tail = amdgpu_dm_atomic_commit_tail,
3062 .atomic_commit_setup = drm_dp_mst_atomic_setup_commit,
3065 static void update_connector_ext_caps(struct amdgpu_dm_connector *aconnector)
3067 struct amdgpu_dm_backlight_caps *caps;
3068 struct drm_connector *conn_base;
3069 struct amdgpu_device *adev;
3070 struct drm_luminance_range_info *luminance_range;
3072 if (aconnector->bl_idx == -1 ||
3073 aconnector->dc_link->connector_signal != SIGNAL_TYPE_EDP)
3076 conn_base = &aconnector->base;
3077 adev = drm_to_adev(conn_base->dev);
3079 caps = &adev->dm.backlight_caps[aconnector->bl_idx];
3080 caps->ext_caps = &aconnector->dc_link->dpcd_sink_ext_caps;
3081 caps->aux_support = false;
3083 if (caps->ext_caps->bits.oled == 1
3086 * caps->ext_caps->bits.sdr_aux_backlight_control == 1 ||
3087 * caps->ext_caps->bits.hdr_aux_backlight_control == 1
3089 caps->aux_support = true;
3091 if (amdgpu_backlight == 0)
3092 caps->aux_support = false;
3093 else if (amdgpu_backlight == 1)
3094 caps->aux_support = true;
3096 luminance_range = &conn_base->display_info.luminance_range;
3098 if (luminance_range->max_luminance) {
3099 caps->aux_min_input_signal = luminance_range->min_luminance;
3100 caps->aux_max_input_signal = luminance_range->max_luminance;
3102 caps->aux_min_input_signal = 0;
3103 caps->aux_max_input_signal = 512;
3107 void amdgpu_dm_update_connector_after_detect(
3108 struct amdgpu_dm_connector *aconnector)
3110 struct drm_connector *connector = &aconnector->base;
3111 struct drm_device *dev = connector->dev;
3112 struct dc_sink *sink;
3114 /* MST handled by drm_mst framework */
3115 if (aconnector->mst_mgr.mst_state == true)
3118 sink = aconnector->dc_link->local_sink;
3120 dc_sink_retain(sink);
3123 * Edid mgmt connector gets first update only in mode_valid hook and then
3124 * the connector sink is set to either fake or physical sink depends on link status.
3125 * Skip if already done during boot.
3127 if (aconnector->base.force != DRM_FORCE_UNSPECIFIED
3128 && aconnector->dc_em_sink) {
3131 * For S3 resume with headless use eml_sink to fake stream
3132 * because on resume connector->sink is set to NULL
3134 mutex_lock(&dev->mode_config.mutex);
3137 if (aconnector->dc_sink) {
3138 amdgpu_dm_update_freesync_caps(connector, NULL);
3140 * retain and release below are used to
3141 * bump up refcount for sink because the link doesn't point
3142 * to it anymore after disconnect, so on next crtc to connector
3143 * reshuffle by UMD we will get into unwanted dc_sink release
3145 dc_sink_release(aconnector->dc_sink);
3147 aconnector->dc_sink = sink;
3148 dc_sink_retain(aconnector->dc_sink);
3149 amdgpu_dm_update_freesync_caps(connector,
3152 amdgpu_dm_update_freesync_caps(connector, NULL);
3153 if (!aconnector->dc_sink) {
3154 aconnector->dc_sink = aconnector->dc_em_sink;
3155 dc_sink_retain(aconnector->dc_sink);
3159 mutex_unlock(&dev->mode_config.mutex);
3162 dc_sink_release(sink);
3167 * TODO: temporary guard to look for proper fix
3168 * if this sink is MST sink, we should not do anything
3170 if (sink && sink->sink_signal == SIGNAL_TYPE_DISPLAY_PORT_MST) {
3171 dc_sink_release(sink);
3175 if (aconnector->dc_sink == sink) {
3177 * We got a DP short pulse (Link Loss, DP CTS, etc...).
3180 DRM_DEBUG_DRIVER("DCHPD: connector_id=%d: dc_sink didn't change.\n",
3181 aconnector->connector_id);
3183 dc_sink_release(sink);
3187 DRM_DEBUG_DRIVER("DCHPD: connector_id=%d: Old sink=%p New sink=%p\n",
3188 aconnector->connector_id, aconnector->dc_sink, sink);
3190 mutex_lock(&dev->mode_config.mutex);
3193 * 1. Update status of the drm connector
3194 * 2. Send an event and let userspace tell us what to do
3198 * TODO: check if we still need the S3 mode update workaround.
3199 * If yes, put it here.
3201 if (aconnector->dc_sink) {
3202 amdgpu_dm_update_freesync_caps(connector, NULL);
3203 dc_sink_release(aconnector->dc_sink);
3206 aconnector->dc_sink = sink;
3207 dc_sink_retain(aconnector->dc_sink);
3208 if (sink->dc_edid.length == 0) {
3209 aconnector->edid = NULL;
3210 if (aconnector->dc_link->aux_mode) {
3211 drm_dp_cec_unset_edid(
3212 &aconnector->dm_dp_aux.aux);
3216 (struct edid *)sink->dc_edid.raw_edid;
3218 if (aconnector->dc_link->aux_mode)
3219 drm_dp_cec_set_edid(&aconnector->dm_dp_aux.aux,
3223 if (!aconnector->timing_requested) {
3224 aconnector->timing_requested =
3225 kzalloc(sizeof(struct dc_crtc_timing), GFP_KERNEL);
3226 if (!aconnector->timing_requested)
3227 dm_error("failed to create aconnector->requested_timing\n");
3230 drm_connector_update_edid_property(connector, aconnector->edid);
3231 amdgpu_dm_update_freesync_caps(connector, aconnector->edid);
3232 update_connector_ext_caps(aconnector);
3234 drm_dp_cec_unset_edid(&aconnector->dm_dp_aux.aux);
3235 amdgpu_dm_update_freesync_caps(connector, NULL);
3236 drm_connector_update_edid_property(connector, NULL);
3237 aconnector->num_modes = 0;
3238 dc_sink_release(aconnector->dc_sink);
3239 aconnector->dc_sink = NULL;
3240 aconnector->edid = NULL;
3241 kfree(aconnector->timing_requested);
3242 aconnector->timing_requested = NULL;
3243 /* Set CP to DESIRED if it was ENABLED, so we can re-enable it again on hotplug */
3244 if (connector->state->content_protection == DRM_MODE_CONTENT_PROTECTION_ENABLED)
3245 connector->state->content_protection = DRM_MODE_CONTENT_PROTECTION_DESIRED;
3248 mutex_unlock(&dev->mode_config.mutex);
3250 update_subconnector_property(aconnector);
3253 dc_sink_release(sink);
3256 static void handle_hpd_irq_helper(struct amdgpu_dm_connector *aconnector)
3258 struct drm_connector *connector = &aconnector->base;
3259 struct drm_device *dev = connector->dev;
3260 enum dc_connection_type new_connection_type = dc_connection_none;
3261 struct amdgpu_device *adev = drm_to_adev(dev);
3262 struct dm_connector_state *dm_con_state = to_dm_connector_state(connector->state);
3265 if (adev->dm.disable_hpd_irq)
3269 * In case of failure or MST no need to update connector status or notify the OS
3270 * since (for MST case) MST does this in its own context.
3272 mutex_lock(&aconnector->hpd_lock);
3274 if (adev->dm.hdcp_workqueue) {
3275 hdcp_reset_display(adev->dm.hdcp_workqueue, aconnector->dc_link->link_index);
3276 dm_con_state->update_hdcp = true;
3278 if (aconnector->fake_enable)
3279 aconnector->fake_enable = false;
3281 aconnector->timing_changed = false;
3283 if (!dc_link_detect_connection_type(aconnector->dc_link, &new_connection_type))
3284 DRM_ERROR("KMS: Failed to detect connector\n");
3286 if (aconnector->base.force && new_connection_type == dc_connection_none) {
3287 emulated_link_detect(aconnector->dc_link);
3289 drm_modeset_lock_all(dev);
3290 dm_restore_drm_connector_state(dev, connector);
3291 drm_modeset_unlock_all(dev);
3293 if (aconnector->base.force == DRM_FORCE_UNSPECIFIED)
3294 drm_kms_helper_connector_hotplug_event(connector);
3296 mutex_lock(&adev->dm.dc_lock);
3297 ret = dc_link_detect(aconnector->dc_link, DETECT_REASON_HPD);
3298 mutex_unlock(&adev->dm.dc_lock);
3300 amdgpu_dm_update_connector_after_detect(aconnector);
3302 drm_modeset_lock_all(dev);
3303 dm_restore_drm_connector_state(dev, connector);
3304 drm_modeset_unlock_all(dev);
3306 if (aconnector->base.force == DRM_FORCE_UNSPECIFIED)
3307 drm_kms_helper_connector_hotplug_event(connector);
3310 mutex_unlock(&aconnector->hpd_lock);
3314 static void handle_hpd_irq(void *param)
3316 struct amdgpu_dm_connector *aconnector = (struct amdgpu_dm_connector *)param;
3318 handle_hpd_irq_helper(aconnector);
3322 static void schedule_hpd_rx_offload_work(struct hpd_rx_irq_offload_work_queue *offload_wq,
3323 union hpd_irq_data hpd_irq_data)
3325 struct hpd_rx_irq_offload_work *offload_work =
3326 kzalloc(sizeof(*offload_work), GFP_KERNEL);
3328 if (!offload_work) {
3329 DRM_ERROR("Failed to allocate hpd_rx_irq_offload_work.\n");
3333 INIT_WORK(&offload_work->work, dm_handle_hpd_rx_offload_work);
3334 offload_work->data = hpd_irq_data;
3335 offload_work->offload_wq = offload_wq;
3337 queue_work(offload_wq->wq, &offload_work->work);
3338 DRM_DEBUG_KMS("queue work to handle hpd_rx offload work");
3341 static void handle_hpd_rx_irq(void *param)
3343 struct amdgpu_dm_connector *aconnector = (struct amdgpu_dm_connector *)param;
3344 struct drm_connector *connector = &aconnector->base;
3345 struct drm_device *dev = connector->dev;
3346 struct dc_link *dc_link = aconnector->dc_link;
3347 bool is_mst_root_connector = aconnector->mst_mgr.mst_state;
3348 bool result = false;
3349 enum dc_connection_type new_connection_type = dc_connection_none;
3350 struct amdgpu_device *adev = drm_to_adev(dev);
3351 union hpd_irq_data hpd_irq_data;
3352 bool link_loss = false;
3353 bool has_left_work = false;
3354 int idx = dc_link->link_index;
3355 struct hpd_rx_irq_offload_work_queue *offload_wq = &adev->dm.hpd_rx_offload_wq[idx];
3357 memset(&hpd_irq_data, 0, sizeof(hpd_irq_data));
3359 if (adev->dm.disable_hpd_irq)
3363 * TODO:Temporary add mutex to protect hpd interrupt not have a gpio
3364 * conflict, after implement i2c helper, this mutex should be
3367 mutex_lock(&aconnector->hpd_lock);
3369 result = dc_link_handle_hpd_rx_irq(dc_link, &hpd_irq_data,
3370 &link_loss, true, &has_left_work);
3375 if (hpd_irq_data.bytes.device_service_irq.bits.AUTOMATED_TEST) {
3376 schedule_hpd_rx_offload_work(offload_wq, hpd_irq_data);
3380 if (dc_link_dp_allow_hpd_rx_irq(dc_link)) {
3381 if (hpd_irq_data.bytes.device_service_irq.bits.UP_REQ_MSG_RDY ||
3382 hpd_irq_data.bytes.device_service_irq.bits.DOWN_REP_MSG_RDY) {
3386 * DOWN_REP_MSG_RDY is also handled by polling method
3387 * mgr->cbs->poll_hpd_irq()
3389 spin_lock(&offload_wq->offload_lock);
3390 skip = offload_wq->is_handling_mst_msg_rdy_event;
3393 offload_wq->is_handling_mst_msg_rdy_event = true;
3395 spin_unlock(&offload_wq->offload_lock);
3398 schedule_hpd_rx_offload_work(offload_wq, hpd_irq_data);
3406 spin_lock(&offload_wq->offload_lock);
3407 skip = offload_wq->is_handling_link_loss;
3410 offload_wq->is_handling_link_loss = true;
3412 spin_unlock(&offload_wq->offload_lock);
3415 schedule_hpd_rx_offload_work(offload_wq, hpd_irq_data);
3422 if (result && !is_mst_root_connector) {
3423 /* Downstream Port status changed. */
3424 if (!dc_link_detect_connection_type(dc_link, &new_connection_type))
3425 DRM_ERROR("KMS: Failed to detect connector\n");
3427 if (aconnector->base.force && new_connection_type == dc_connection_none) {
3428 emulated_link_detect(dc_link);
3430 if (aconnector->fake_enable)
3431 aconnector->fake_enable = false;
3433 amdgpu_dm_update_connector_after_detect(aconnector);
3436 drm_modeset_lock_all(dev);
3437 dm_restore_drm_connector_state(dev, connector);
3438 drm_modeset_unlock_all(dev);
3440 drm_kms_helper_connector_hotplug_event(connector);
3444 mutex_lock(&adev->dm.dc_lock);
3445 ret = dc_link_detect(dc_link, DETECT_REASON_HPDRX);
3446 mutex_unlock(&adev->dm.dc_lock);
3449 if (aconnector->fake_enable)
3450 aconnector->fake_enable = false;
3452 amdgpu_dm_update_connector_after_detect(aconnector);
3454 drm_modeset_lock_all(dev);
3455 dm_restore_drm_connector_state(dev, connector);
3456 drm_modeset_unlock_all(dev);
3458 drm_kms_helper_connector_hotplug_event(connector);
3462 if (hpd_irq_data.bytes.device_service_irq.bits.CP_IRQ) {
3463 if (adev->dm.hdcp_workqueue)
3464 hdcp_handle_cpirq(adev->dm.hdcp_workqueue, aconnector->base.index);
3467 if (dc_link->type != dc_connection_mst_branch)
3468 drm_dp_cec_irq(&aconnector->dm_dp_aux.aux);
3470 mutex_unlock(&aconnector->hpd_lock);
3473 static void register_hpd_handlers(struct amdgpu_device *adev)
3475 struct drm_device *dev = adev_to_drm(adev);
3476 struct drm_connector *connector;
3477 struct amdgpu_dm_connector *aconnector;
3478 const struct dc_link *dc_link;
3479 struct dc_interrupt_params int_params = {0};
3481 int_params.requested_polarity = INTERRUPT_POLARITY_DEFAULT;
3482 int_params.current_polarity = INTERRUPT_POLARITY_DEFAULT;
3484 list_for_each_entry(connector,
3485 &dev->mode_config.connector_list, head) {
3487 aconnector = to_amdgpu_dm_connector(connector);
3488 dc_link = aconnector->dc_link;
3490 if (dc_link->irq_source_hpd != DC_IRQ_SOURCE_INVALID) {
3491 int_params.int_context = INTERRUPT_LOW_IRQ_CONTEXT;
3492 int_params.irq_source = dc_link->irq_source_hpd;
3494 amdgpu_dm_irq_register_interrupt(adev, &int_params,
3496 (void *) aconnector);
3499 if (dc_link->irq_source_hpd_rx != DC_IRQ_SOURCE_INVALID) {
3501 /* Also register for DP short pulse (hpd_rx). */
3502 int_params.int_context = INTERRUPT_LOW_IRQ_CONTEXT;
3503 int_params.irq_source = dc_link->irq_source_hpd_rx;
3505 amdgpu_dm_irq_register_interrupt(adev, &int_params,
3507 (void *) aconnector);
3510 if (adev->dm.hpd_rx_offload_wq)
3511 adev->dm.hpd_rx_offload_wq[connector->index].aconnector =
3516 #if defined(CONFIG_DRM_AMD_DC_SI)
3517 /* Register IRQ sources and initialize IRQ callbacks */
3518 static int dce60_register_irq_handlers(struct amdgpu_device *adev)
3520 struct dc *dc = adev->dm.dc;
3521 struct common_irq_params *c_irq_params;
3522 struct dc_interrupt_params int_params = {0};
3525 unsigned int client_id = AMDGPU_IRQ_CLIENTID_LEGACY;
3527 int_params.requested_polarity = INTERRUPT_POLARITY_DEFAULT;
3528 int_params.current_polarity = INTERRUPT_POLARITY_DEFAULT;
3531 * Actions of amdgpu_irq_add_id():
3532 * 1. Register a set() function with base driver.
3533 * Base driver will call set() function to enable/disable an
3534 * interrupt in DC hardware.
3535 * 2. Register amdgpu_dm_irq_handler().
3536 * Base driver will call amdgpu_dm_irq_handler() for ALL interrupts
3537 * coming from DC hardware.
3538 * amdgpu_dm_irq_handler() will re-direct the interrupt to DC
3539 * for acknowledging and handling.
3542 /* Use VBLANK interrupt */
3543 for (i = 0; i < adev->mode_info.num_crtc; i++) {
3544 r = amdgpu_irq_add_id(adev, client_id, i + 1, &adev->crtc_irq);
3546 DRM_ERROR("Failed to add crtc irq id!\n");
3550 int_params.int_context = INTERRUPT_HIGH_IRQ_CONTEXT;
3551 int_params.irq_source =
3552 dc_interrupt_to_irq_source(dc, i + 1, 0);
3554 c_irq_params = &adev->dm.vblank_params[int_params.irq_source - DC_IRQ_SOURCE_VBLANK1];
3556 c_irq_params->adev = adev;
3557 c_irq_params->irq_src = int_params.irq_source;
3559 amdgpu_dm_irq_register_interrupt(adev, &int_params,
3560 dm_crtc_high_irq, c_irq_params);
3563 /* Use GRPH_PFLIP interrupt */
3564 for (i = VISLANDS30_IV_SRCID_D1_GRPH_PFLIP;
3565 i <= VISLANDS30_IV_SRCID_D6_GRPH_PFLIP; i += 2) {
3566 r = amdgpu_irq_add_id(adev, client_id, i, &adev->pageflip_irq);
3568 DRM_ERROR("Failed to add page flip irq id!\n");
3572 int_params.int_context = INTERRUPT_HIGH_IRQ_CONTEXT;
3573 int_params.irq_source =
3574 dc_interrupt_to_irq_source(dc, i, 0);
3576 c_irq_params = &adev->dm.pflip_params[int_params.irq_source - DC_IRQ_SOURCE_PFLIP_FIRST];
3578 c_irq_params->adev = adev;
3579 c_irq_params->irq_src = int_params.irq_source;
3581 amdgpu_dm_irq_register_interrupt(adev, &int_params,
3582 dm_pflip_high_irq, c_irq_params);
3587 r = amdgpu_irq_add_id(adev, client_id,
3588 VISLANDS30_IV_SRCID_HOTPLUG_DETECT_A, &adev->hpd_irq);
3590 DRM_ERROR("Failed to add hpd irq id!\n");
3594 register_hpd_handlers(adev);
3600 /* Register IRQ sources and initialize IRQ callbacks */
3601 static int dce110_register_irq_handlers(struct amdgpu_device *adev)
3603 struct dc *dc = adev->dm.dc;
3604 struct common_irq_params *c_irq_params;
3605 struct dc_interrupt_params int_params = {0};
3608 unsigned int client_id = AMDGPU_IRQ_CLIENTID_LEGACY;
3610 if (adev->family >= AMDGPU_FAMILY_AI)
3611 client_id = SOC15_IH_CLIENTID_DCE;
3613 int_params.requested_polarity = INTERRUPT_POLARITY_DEFAULT;
3614 int_params.current_polarity = INTERRUPT_POLARITY_DEFAULT;
3617 * Actions of amdgpu_irq_add_id():
3618 * 1. Register a set() function with base driver.
3619 * Base driver will call set() function to enable/disable an
3620 * interrupt in DC hardware.
3621 * 2. Register amdgpu_dm_irq_handler().
3622 * Base driver will call amdgpu_dm_irq_handler() for ALL interrupts
3623 * coming from DC hardware.
3624 * amdgpu_dm_irq_handler() will re-direct the interrupt to DC
3625 * for acknowledging and handling.
3628 /* Use VBLANK interrupt */
3629 for (i = VISLANDS30_IV_SRCID_D1_VERTICAL_INTERRUPT0; i <= VISLANDS30_IV_SRCID_D6_VERTICAL_INTERRUPT0; i++) {
3630 r = amdgpu_irq_add_id(adev, client_id, i, &adev->crtc_irq);
3632 DRM_ERROR("Failed to add crtc irq id!\n");
3636 int_params.int_context = INTERRUPT_HIGH_IRQ_CONTEXT;
3637 int_params.irq_source =
3638 dc_interrupt_to_irq_source(dc, i, 0);
3640 c_irq_params = &adev->dm.vblank_params[int_params.irq_source - DC_IRQ_SOURCE_VBLANK1];
3642 c_irq_params->adev = adev;
3643 c_irq_params->irq_src = int_params.irq_source;
3645 amdgpu_dm_irq_register_interrupt(adev, &int_params,
3646 dm_crtc_high_irq, c_irq_params);
3649 /* Use VUPDATE interrupt */
3650 for (i = VISLANDS30_IV_SRCID_D1_V_UPDATE_INT; i <= VISLANDS30_IV_SRCID_D6_V_UPDATE_INT; i += 2) {
3651 r = amdgpu_irq_add_id(adev, client_id, i, &adev->vupdate_irq);
3653 DRM_ERROR("Failed to add vupdate irq id!\n");
3657 int_params.int_context = INTERRUPT_HIGH_IRQ_CONTEXT;
3658 int_params.irq_source =
3659 dc_interrupt_to_irq_source(dc, i, 0);
3661 c_irq_params = &adev->dm.vupdate_params[int_params.irq_source - DC_IRQ_SOURCE_VUPDATE1];
3663 c_irq_params->adev = adev;
3664 c_irq_params->irq_src = int_params.irq_source;
3666 amdgpu_dm_irq_register_interrupt(adev, &int_params,
3667 dm_vupdate_high_irq, c_irq_params);
3670 /* Use GRPH_PFLIP interrupt */
3671 for (i = VISLANDS30_IV_SRCID_D1_GRPH_PFLIP;
3672 i <= VISLANDS30_IV_SRCID_D6_GRPH_PFLIP; i += 2) {
3673 r = amdgpu_irq_add_id(adev, client_id, i, &adev->pageflip_irq);
3675 DRM_ERROR("Failed to add page flip irq id!\n");
3679 int_params.int_context = INTERRUPT_HIGH_IRQ_CONTEXT;
3680 int_params.irq_source =
3681 dc_interrupt_to_irq_source(dc, i, 0);
3683 c_irq_params = &adev->dm.pflip_params[int_params.irq_source - DC_IRQ_SOURCE_PFLIP_FIRST];
3685 c_irq_params->adev = adev;
3686 c_irq_params->irq_src = int_params.irq_source;
3688 amdgpu_dm_irq_register_interrupt(adev, &int_params,
3689 dm_pflip_high_irq, c_irq_params);
3694 r = amdgpu_irq_add_id(adev, client_id,
3695 VISLANDS30_IV_SRCID_HOTPLUG_DETECT_A, &adev->hpd_irq);
3697 DRM_ERROR("Failed to add hpd irq id!\n");
3701 register_hpd_handlers(adev);
3706 /* Register IRQ sources and initialize IRQ callbacks */
3707 static int dcn10_register_irq_handlers(struct amdgpu_device *adev)
3709 struct dc *dc = adev->dm.dc;
3710 struct common_irq_params *c_irq_params;
3711 struct dc_interrupt_params int_params = {0};
3714 #if defined(CONFIG_DRM_AMD_SECURE_DISPLAY)
3715 static const unsigned int vrtl_int_srcid[] = {
3716 DCN_1_0__SRCID__OTG1_VERTICAL_INTERRUPT0_CONTROL,
3717 DCN_1_0__SRCID__OTG2_VERTICAL_INTERRUPT0_CONTROL,
3718 DCN_1_0__SRCID__OTG3_VERTICAL_INTERRUPT0_CONTROL,
3719 DCN_1_0__SRCID__OTG4_VERTICAL_INTERRUPT0_CONTROL,
3720 DCN_1_0__SRCID__OTG5_VERTICAL_INTERRUPT0_CONTROL,
3721 DCN_1_0__SRCID__OTG6_VERTICAL_INTERRUPT0_CONTROL
3725 int_params.requested_polarity = INTERRUPT_POLARITY_DEFAULT;
3726 int_params.current_polarity = INTERRUPT_POLARITY_DEFAULT;
3729 * Actions of amdgpu_irq_add_id():
3730 * 1. Register a set() function with base driver.
3731 * Base driver will call set() function to enable/disable an
3732 * interrupt in DC hardware.
3733 * 2. Register amdgpu_dm_irq_handler().
3734 * Base driver will call amdgpu_dm_irq_handler() for ALL interrupts
3735 * coming from DC hardware.
3736 * amdgpu_dm_irq_handler() will re-direct the interrupt to DC
3737 * for acknowledging and handling.
3740 /* Use VSTARTUP interrupt */
3741 for (i = DCN_1_0__SRCID__DC_D1_OTG_VSTARTUP;
3742 i <= DCN_1_0__SRCID__DC_D1_OTG_VSTARTUP + adev->mode_info.num_crtc - 1;
3744 r = amdgpu_irq_add_id(adev, SOC15_IH_CLIENTID_DCE, i, &adev->crtc_irq);
3747 DRM_ERROR("Failed to add crtc irq id!\n");
3751 int_params.int_context = INTERRUPT_HIGH_IRQ_CONTEXT;
3752 int_params.irq_source =
3753 dc_interrupt_to_irq_source(dc, i, 0);
3755 c_irq_params = &adev->dm.vblank_params[int_params.irq_source - DC_IRQ_SOURCE_VBLANK1];
3757 c_irq_params->adev = adev;
3758 c_irq_params->irq_src = int_params.irq_source;
3760 amdgpu_dm_irq_register_interrupt(
3761 adev, &int_params, dm_crtc_high_irq, c_irq_params);
3764 /* Use otg vertical line interrupt */
3765 #if defined(CONFIG_DRM_AMD_SECURE_DISPLAY)
3766 for (i = 0; i <= adev->mode_info.num_crtc - 1; i++) {
3767 r = amdgpu_irq_add_id(adev, SOC15_IH_CLIENTID_DCE,
3768 vrtl_int_srcid[i], &adev->vline0_irq);
3771 DRM_ERROR("Failed to add vline0 irq id!\n");
3775 int_params.int_context = INTERRUPT_HIGH_IRQ_CONTEXT;
3776 int_params.irq_source =
3777 dc_interrupt_to_irq_source(dc, vrtl_int_srcid[i], 0);
3779 if (int_params.irq_source == DC_IRQ_SOURCE_INVALID) {
3780 DRM_ERROR("Failed to register vline0 irq %d!\n", vrtl_int_srcid[i]);
3784 c_irq_params = &adev->dm.vline0_params[int_params.irq_source
3785 - DC_IRQ_SOURCE_DC1_VLINE0];
3787 c_irq_params->adev = adev;
3788 c_irq_params->irq_src = int_params.irq_source;
3790 amdgpu_dm_irq_register_interrupt(adev, &int_params,
3791 dm_dcn_vertical_interrupt0_high_irq, c_irq_params);
3795 /* Use VUPDATE_NO_LOCK interrupt on DCN, which seems to correspond to
3796 * the regular VUPDATE interrupt on DCE. We want DC_IRQ_SOURCE_VUPDATEx
3797 * to trigger at end of each vblank, regardless of state of the lock,
3798 * matching DCE behaviour.
3800 for (i = DCN_1_0__SRCID__OTG0_IHC_V_UPDATE_NO_LOCK_INTERRUPT;
3801 i <= DCN_1_0__SRCID__OTG0_IHC_V_UPDATE_NO_LOCK_INTERRUPT + adev->mode_info.num_crtc - 1;
3803 r = amdgpu_irq_add_id(adev, SOC15_IH_CLIENTID_DCE, i, &adev->vupdate_irq);
3806 DRM_ERROR("Failed to add vupdate irq id!\n");
3810 int_params.int_context = INTERRUPT_HIGH_IRQ_CONTEXT;
3811 int_params.irq_source =
3812 dc_interrupt_to_irq_source(dc, i, 0);
3814 c_irq_params = &adev->dm.vupdate_params[int_params.irq_source - DC_IRQ_SOURCE_VUPDATE1];
3816 c_irq_params->adev = adev;
3817 c_irq_params->irq_src = int_params.irq_source;
3819 amdgpu_dm_irq_register_interrupt(adev, &int_params,
3820 dm_vupdate_high_irq, c_irq_params);
3823 /* Use GRPH_PFLIP interrupt */
3824 for (i = DCN_1_0__SRCID__HUBP0_FLIP_INTERRUPT;
3825 i <= DCN_1_0__SRCID__HUBP0_FLIP_INTERRUPT + dc->caps.max_otg_num - 1;
3827 r = amdgpu_irq_add_id(adev, SOC15_IH_CLIENTID_DCE, i, &adev->pageflip_irq);
3829 DRM_ERROR("Failed to add page flip irq id!\n");
3833 int_params.int_context = INTERRUPT_HIGH_IRQ_CONTEXT;
3834 int_params.irq_source =
3835 dc_interrupt_to_irq_source(dc, i, 0);
3837 c_irq_params = &adev->dm.pflip_params[int_params.irq_source - DC_IRQ_SOURCE_PFLIP_FIRST];
3839 c_irq_params->adev = adev;
3840 c_irq_params->irq_src = int_params.irq_source;
3842 amdgpu_dm_irq_register_interrupt(adev, &int_params,
3843 dm_pflip_high_irq, c_irq_params);
3848 r = amdgpu_irq_add_id(adev, SOC15_IH_CLIENTID_DCE, DCN_1_0__SRCID__DC_HPD1_INT,
3851 DRM_ERROR("Failed to add hpd irq id!\n");
3855 register_hpd_handlers(adev);
3859 /* Register Outbox IRQ sources and initialize IRQ callbacks */
3860 static int register_outbox_irq_handlers(struct amdgpu_device *adev)
3862 struct dc *dc = adev->dm.dc;
3863 struct common_irq_params *c_irq_params;
3864 struct dc_interrupt_params int_params = {0};
3867 int_params.requested_polarity = INTERRUPT_POLARITY_DEFAULT;
3868 int_params.current_polarity = INTERRUPT_POLARITY_DEFAULT;
3870 r = amdgpu_irq_add_id(adev, SOC15_IH_CLIENTID_DCE, DCN_1_0__SRCID__DMCUB_OUTBOX_LOW_PRIORITY_READY_INT,
3871 &adev->dmub_outbox_irq);
3873 DRM_ERROR("Failed to add outbox irq id!\n");
3877 if (dc->ctx->dmub_srv) {
3878 i = DCN_1_0__SRCID__DMCUB_OUTBOX_LOW_PRIORITY_READY_INT;
3879 int_params.int_context = INTERRUPT_LOW_IRQ_CONTEXT;
3880 int_params.irq_source =
3881 dc_interrupt_to_irq_source(dc, i, 0);
3883 c_irq_params = &adev->dm.dmub_outbox_params[0];
3885 c_irq_params->adev = adev;
3886 c_irq_params->irq_src = int_params.irq_source;
3888 amdgpu_dm_irq_register_interrupt(adev, &int_params,
3889 dm_dmub_outbox1_low_irq, c_irq_params);
3896 * Acquires the lock for the atomic state object and returns
3897 * the new atomic state.
3899 * This should only be called during atomic check.
3901 int dm_atomic_get_state(struct drm_atomic_state *state,
3902 struct dm_atomic_state **dm_state)
3904 struct drm_device *dev = state->dev;
3905 struct amdgpu_device *adev = drm_to_adev(dev);
3906 struct amdgpu_display_manager *dm = &adev->dm;
3907 struct drm_private_state *priv_state;
3912 priv_state = drm_atomic_get_private_obj_state(state, &dm->atomic_obj);
3913 if (IS_ERR(priv_state))
3914 return PTR_ERR(priv_state);
3916 *dm_state = to_dm_atomic_state(priv_state);
3921 static struct dm_atomic_state *
3922 dm_atomic_get_new_state(struct drm_atomic_state *state)
3924 struct drm_device *dev = state->dev;
3925 struct amdgpu_device *adev = drm_to_adev(dev);
3926 struct amdgpu_display_manager *dm = &adev->dm;
3927 struct drm_private_obj *obj;
3928 struct drm_private_state *new_obj_state;
3931 for_each_new_private_obj_in_state(state, obj, new_obj_state, i) {
3932 if (obj->funcs == dm->atomic_obj.funcs)
3933 return to_dm_atomic_state(new_obj_state);
3939 static struct drm_private_state *
3940 dm_atomic_duplicate_state(struct drm_private_obj *obj)
3942 struct dm_atomic_state *old_state, *new_state;
3944 new_state = kzalloc(sizeof(*new_state), GFP_KERNEL);
3948 __drm_atomic_helper_private_obj_duplicate_state(obj, &new_state->base);
3950 old_state = to_dm_atomic_state(obj->state);
3952 if (old_state && old_state->context)
3953 new_state->context = dc_copy_state(old_state->context);
3955 if (!new_state->context) {
3960 return &new_state->base;
3963 static void dm_atomic_destroy_state(struct drm_private_obj *obj,
3964 struct drm_private_state *state)
3966 struct dm_atomic_state *dm_state = to_dm_atomic_state(state);
3968 if (dm_state && dm_state->context)
3969 dc_release_state(dm_state->context);
3974 static struct drm_private_state_funcs dm_atomic_state_funcs = {
3975 .atomic_duplicate_state = dm_atomic_duplicate_state,
3976 .atomic_destroy_state = dm_atomic_destroy_state,
3979 static int amdgpu_dm_mode_config_init(struct amdgpu_device *adev)
3981 struct dm_atomic_state *state;
3984 adev->mode_info.mode_config_initialized = true;
3986 adev_to_drm(adev)->mode_config.funcs = (void *)&amdgpu_dm_mode_funcs;
3987 adev_to_drm(adev)->mode_config.helper_private = &amdgpu_dm_mode_config_helperfuncs;
3989 adev_to_drm(adev)->mode_config.max_width = 16384;
3990 adev_to_drm(adev)->mode_config.max_height = 16384;
3992 adev_to_drm(adev)->mode_config.preferred_depth = 24;
3993 if (adev->asic_type == CHIP_HAWAII)
3994 /* disable prefer shadow for now due to hibernation issues */
3995 adev_to_drm(adev)->mode_config.prefer_shadow = 0;
3997 adev_to_drm(adev)->mode_config.prefer_shadow = 1;
3998 /* indicates support for immediate flip */
3999 adev_to_drm(adev)->mode_config.async_page_flip = true;
4001 state = kzalloc(sizeof(*state), GFP_KERNEL);
4005 state->context = dc_create_state(adev->dm.dc);
4006 if (!state->context) {
4011 dc_resource_state_copy_construct_current(adev->dm.dc, state->context);
4013 drm_atomic_private_obj_init(adev_to_drm(adev),
4014 &adev->dm.atomic_obj,
4016 &dm_atomic_state_funcs);
4018 r = amdgpu_display_modeset_create_props(adev);
4020 dc_release_state(state->context);
4025 r = amdgpu_dm_audio_init(adev);
4027 dc_release_state(state->context);
4035 #define AMDGPU_DM_DEFAULT_MIN_BACKLIGHT 12
4036 #define AMDGPU_DM_DEFAULT_MAX_BACKLIGHT 255
4037 #define AUX_BL_DEFAULT_TRANSITION_TIME_MS 50
4039 static void amdgpu_dm_update_backlight_caps(struct amdgpu_display_manager *dm,
4042 #if defined(CONFIG_ACPI)
4043 struct amdgpu_dm_backlight_caps caps;
4045 memset(&caps, 0, sizeof(caps));
4047 if (dm->backlight_caps[bl_idx].caps_valid)
4050 amdgpu_acpi_get_backlight_caps(&caps);
4051 if (caps.caps_valid) {
4052 dm->backlight_caps[bl_idx].caps_valid = true;
4053 if (caps.aux_support)
4055 dm->backlight_caps[bl_idx].min_input_signal = caps.min_input_signal;
4056 dm->backlight_caps[bl_idx].max_input_signal = caps.max_input_signal;
4058 dm->backlight_caps[bl_idx].min_input_signal =
4059 AMDGPU_DM_DEFAULT_MIN_BACKLIGHT;
4060 dm->backlight_caps[bl_idx].max_input_signal =
4061 AMDGPU_DM_DEFAULT_MAX_BACKLIGHT;
4064 if (dm->backlight_caps[bl_idx].aux_support)
4067 dm->backlight_caps[bl_idx].min_input_signal = AMDGPU_DM_DEFAULT_MIN_BACKLIGHT;
4068 dm->backlight_caps[bl_idx].max_input_signal = AMDGPU_DM_DEFAULT_MAX_BACKLIGHT;
4072 static int get_brightness_range(const struct amdgpu_dm_backlight_caps *caps,
4073 unsigned int *min, unsigned int *max)
4078 if (caps->aux_support) {
4079 // Firmware limits are in nits, DC API wants millinits.
4080 *max = 1000 * caps->aux_max_input_signal;
4081 *min = 1000 * caps->aux_min_input_signal;
4083 // Firmware limits are 8-bit, PWM control is 16-bit.
4084 *max = 0x101 * caps->max_input_signal;
4085 *min = 0x101 * caps->min_input_signal;
4090 static u32 convert_brightness_from_user(const struct amdgpu_dm_backlight_caps *caps,
4091 uint32_t brightness)
4093 unsigned int min, max;
4095 if (!get_brightness_range(caps, &min, &max))
4098 // Rescale 0..255 to min..max
4099 return min + DIV_ROUND_CLOSEST((max - min) * brightness,
4100 AMDGPU_MAX_BL_LEVEL);
4103 static u32 convert_brightness_to_user(const struct amdgpu_dm_backlight_caps *caps,
4104 uint32_t brightness)
4106 unsigned int min, max;
4108 if (!get_brightness_range(caps, &min, &max))
4111 if (brightness < min)
4113 // Rescale min..max to 0..255
4114 return DIV_ROUND_CLOSEST(AMDGPU_MAX_BL_LEVEL * (brightness - min),
4118 static void amdgpu_dm_backlight_set_level(struct amdgpu_display_manager *dm,
4120 u32 user_brightness)
4122 struct amdgpu_dm_backlight_caps caps;
4123 struct dc_link *link;
4127 amdgpu_dm_update_backlight_caps(dm, bl_idx);
4128 caps = dm->backlight_caps[bl_idx];
4130 dm->brightness[bl_idx] = user_brightness;
4131 /* update scratch register */
4133 amdgpu_atombios_scratch_regs_set_backlight_level(dm->adev, dm->brightness[bl_idx]);
4134 brightness = convert_brightness_from_user(&caps, dm->brightness[bl_idx]);
4135 link = (struct dc_link *)dm->backlight_link[bl_idx];
4137 /* Change brightness based on AUX property */
4138 if (caps.aux_support) {
4139 rc = dc_link_set_backlight_level_nits(link, true, brightness,
4140 AUX_BL_DEFAULT_TRANSITION_TIME_MS);
4142 DRM_DEBUG("DM: Failed to update backlight via AUX on eDP[%d]\n", bl_idx);
4144 rc = dc_link_set_backlight_level(link, brightness, 0);
4146 DRM_DEBUG("DM: Failed to update backlight on eDP[%d]\n", bl_idx);
4150 dm->actual_brightness[bl_idx] = user_brightness;
4153 static int amdgpu_dm_backlight_update_status(struct backlight_device *bd)
4155 struct amdgpu_display_manager *dm = bl_get_data(bd);
4158 for (i = 0; i < dm->num_of_edps; i++) {
4159 if (bd == dm->backlight_dev[i])
4162 if (i >= AMDGPU_DM_MAX_NUM_EDP)
4164 amdgpu_dm_backlight_set_level(dm, i, bd->props.brightness);
4169 static u32 amdgpu_dm_backlight_get_level(struct amdgpu_display_manager *dm,
4173 struct amdgpu_dm_backlight_caps caps;
4174 struct dc_link *link = (struct dc_link *)dm->backlight_link[bl_idx];
4176 amdgpu_dm_update_backlight_caps(dm, bl_idx);
4177 caps = dm->backlight_caps[bl_idx];
4179 if (caps.aux_support) {
4183 rc = dc_link_get_backlight_level_nits(link, &avg, &peak);
4185 return dm->brightness[bl_idx];
4186 return convert_brightness_to_user(&caps, avg);
4189 ret = dc_link_get_backlight_level(link);
4191 if (ret == DC_ERROR_UNEXPECTED)
4192 return dm->brightness[bl_idx];
4194 return convert_brightness_to_user(&caps, ret);
4197 static int amdgpu_dm_backlight_get_brightness(struct backlight_device *bd)
4199 struct amdgpu_display_manager *dm = bl_get_data(bd);
4202 for (i = 0; i < dm->num_of_edps; i++) {
4203 if (bd == dm->backlight_dev[i])
4206 if (i >= AMDGPU_DM_MAX_NUM_EDP)
4208 return amdgpu_dm_backlight_get_level(dm, i);
4211 static const struct backlight_ops amdgpu_dm_backlight_ops = {
4212 .options = BL_CORE_SUSPENDRESUME,
4213 .get_brightness = amdgpu_dm_backlight_get_brightness,
4214 .update_status = amdgpu_dm_backlight_update_status,
4218 amdgpu_dm_register_backlight_device(struct amdgpu_dm_connector *aconnector)
4220 struct drm_device *drm = aconnector->base.dev;
4221 struct amdgpu_display_manager *dm = &drm_to_adev(drm)->dm;
4222 struct backlight_properties props = { 0 };
4225 if (aconnector->bl_idx == -1)
4228 if (!acpi_video_backlight_use_native()) {
4229 drm_info(drm, "Skipping amdgpu DM backlight registration\n");
4230 /* Try registering an ACPI video backlight device instead. */
4231 acpi_video_register_backlight();
4235 props.max_brightness = AMDGPU_MAX_BL_LEVEL;
4236 props.brightness = AMDGPU_MAX_BL_LEVEL;
4237 props.type = BACKLIGHT_RAW;
4239 snprintf(bl_name, sizeof(bl_name), "amdgpu_bl%d",
4240 drm->primary->index + aconnector->bl_idx);
4242 dm->backlight_dev[aconnector->bl_idx] =
4243 backlight_device_register(bl_name, aconnector->base.kdev, dm,
4244 &amdgpu_dm_backlight_ops, &props);
4246 if (IS_ERR(dm->backlight_dev[aconnector->bl_idx])) {
4247 DRM_ERROR("DM: Backlight registration failed!\n");
4248 dm->backlight_dev[aconnector->bl_idx] = NULL;
4250 DRM_DEBUG_DRIVER("DM: Registered Backlight device: %s\n", bl_name);
4253 static int initialize_plane(struct amdgpu_display_manager *dm,
4254 struct amdgpu_mode_info *mode_info, int plane_id,
4255 enum drm_plane_type plane_type,
4256 const struct dc_plane_cap *plane_cap)
4258 struct drm_plane *plane;
4259 unsigned long possible_crtcs;
4262 plane = kzalloc(sizeof(struct drm_plane), GFP_KERNEL);
4264 DRM_ERROR("KMS: Failed to allocate plane\n");
4267 plane->type = plane_type;
4270 * HACK: IGT tests expect that the primary plane for a CRTC
4271 * can only have one possible CRTC. Only expose support for
4272 * any CRTC if they're not going to be used as a primary plane
4273 * for a CRTC - like overlay or underlay planes.
4275 possible_crtcs = 1 << plane_id;
4276 if (plane_id >= dm->dc->caps.max_streams)
4277 possible_crtcs = 0xff;
4279 ret = amdgpu_dm_plane_init(dm, plane, possible_crtcs, plane_cap);
4282 DRM_ERROR("KMS: Failed to initialize plane\n");
4288 mode_info->planes[plane_id] = plane;
4294 static void setup_backlight_device(struct amdgpu_display_manager *dm,
4295 struct amdgpu_dm_connector *aconnector)
4297 struct dc_link *link = aconnector->dc_link;
4298 int bl_idx = dm->num_of_edps;
4300 if (!(link->connector_signal & (SIGNAL_TYPE_EDP | SIGNAL_TYPE_LVDS)) ||
4301 link->type == dc_connection_none)
4304 if (dm->num_of_edps >= AMDGPU_DM_MAX_NUM_EDP) {
4305 drm_warn(adev_to_drm(dm->adev), "Too much eDP connections, skipping backlight setup for additional eDPs\n");
4309 aconnector->bl_idx = bl_idx;
4311 amdgpu_dm_update_backlight_caps(dm, bl_idx);
4312 dm->brightness[bl_idx] = AMDGPU_MAX_BL_LEVEL;
4313 dm->backlight_link[bl_idx] = link;
4316 update_connector_ext_caps(aconnector);
4319 static void amdgpu_set_panel_orientation(struct drm_connector *connector);
4322 * In this architecture, the association
4323 * connector -> encoder -> crtc
4324 * id not really requried. The crtc and connector will hold the
4325 * display_index as an abstraction to use with DAL component
4327 * Returns 0 on success
4329 static int amdgpu_dm_initialize_drm_device(struct amdgpu_device *adev)
4331 struct amdgpu_display_manager *dm = &adev->dm;
4333 struct amdgpu_dm_connector *aconnector = NULL;
4334 struct amdgpu_encoder *aencoder = NULL;
4335 struct amdgpu_mode_info *mode_info = &adev->mode_info;
4338 enum dc_connection_type new_connection_type = dc_connection_none;
4339 const struct dc_plane_cap *plane;
4340 bool psr_feature_enabled = false;
4341 bool replay_feature_enabled = false;
4342 int max_overlay = dm->dc->caps.max_slave_planes;
4344 dm->display_indexes_num = dm->dc->caps.max_streams;
4345 /* Update the actual used number of crtc */
4346 adev->mode_info.num_crtc = adev->dm.display_indexes_num;
4348 amdgpu_dm_set_irq_funcs(adev);
4350 link_cnt = dm->dc->caps.max_links;
4351 if (amdgpu_dm_mode_config_init(dm->adev)) {
4352 DRM_ERROR("DM: Failed to initialize mode config\n");
4356 /* There is one primary plane per CRTC */
4357 primary_planes = dm->dc->caps.max_streams;
4358 ASSERT(primary_planes <= AMDGPU_MAX_PLANES);
4361 * Initialize primary planes, implicit planes for legacy IOCTLS.
4362 * Order is reversed to match iteration order in atomic check.
4364 for (i = (primary_planes - 1); i >= 0; i--) {
4365 plane = &dm->dc->caps.planes[i];
4367 if (initialize_plane(dm, mode_info, i,
4368 DRM_PLANE_TYPE_PRIMARY, plane)) {
4369 DRM_ERROR("KMS: Failed to initialize primary plane\n");
4375 * Initialize overlay planes, index starting after primary planes.
4376 * These planes have a higher DRM index than the primary planes since
4377 * they should be considered as having a higher z-order.
4378 * Order is reversed to match iteration order in atomic check.
4380 * Only support DCN for now, and only expose one so we don't encourage
4381 * userspace to use up all the pipes.
4383 for (i = 0; i < dm->dc->caps.max_planes; ++i) {
4384 struct dc_plane_cap *plane = &dm->dc->caps.planes[i];
4386 /* Do not create overlay if MPO disabled */
4387 if (amdgpu_dc_debug_mask & DC_DISABLE_MPO)
4390 if (plane->type != DC_PLANE_TYPE_DCN_UNIVERSAL)
4393 if (!plane->pixel_format_support.argb8888)
4396 if (max_overlay-- == 0)
4399 if (initialize_plane(dm, NULL, primary_planes + i,
4400 DRM_PLANE_TYPE_OVERLAY, plane)) {
4401 DRM_ERROR("KMS: Failed to initialize overlay plane\n");
4406 for (i = 0; i < dm->dc->caps.max_streams; i++)
4407 if (amdgpu_dm_crtc_init(dm, mode_info->planes[i], i)) {
4408 DRM_ERROR("KMS: Failed to initialize crtc\n");
4412 /* Use Outbox interrupt */
4413 switch (adev->ip_versions[DCE_HWIP][0]) {
4414 case IP_VERSION(3, 0, 0):
4415 case IP_VERSION(3, 1, 2):
4416 case IP_VERSION(3, 1, 3):
4417 case IP_VERSION(3, 1, 4):
4418 case IP_VERSION(3, 1, 5):
4419 case IP_VERSION(3, 1, 6):
4420 case IP_VERSION(3, 2, 0):
4421 case IP_VERSION(3, 2, 1):
4422 case IP_VERSION(2, 1, 0):
4423 if (register_outbox_irq_handlers(dm->adev)) {
4424 DRM_ERROR("DM: Failed to initialize IRQ\n");
4429 DRM_DEBUG_KMS("Unsupported DCN IP version for outbox: 0x%X\n",
4430 adev->ip_versions[DCE_HWIP][0]);
4433 /* Determine whether to enable PSR support by default. */
4434 if (!(amdgpu_dc_debug_mask & DC_DISABLE_PSR)) {
4435 switch (adev->ip_versions[DCE_HWIP][0]) {
4436 case IP_VERSION(3, 1, 2):
4437 case IP_VERSION(3, 1, 3):
4438 case IP_VERSION(3, 1, 4):
4439 case IP_VERSION(3, 1, 5):
4440 case IP_VERSION(3, 1, 6):
4441 case IP_VERSION(3, 2, 0):
4442 case IP_VERSION(3, 2, 1):
4443 psr_feature_enabled = true;
4446 psr_feature_enabled = amdgpu_dc_feature_mask & DC_PSR_MASK;
4451 if (!(amdgpu_dc_debug_mask & DC_DISABLE_REPLAY)) {
4452 switch (adev->ip_versions[DCE_HWIP][0]) {
4453 case IP_VERSION(3, 1, 4):
4454 case IP_VERSION(3, 1, 5):
4455 case IP_VERSION(3, 1, 6):
4456 case IP_VERSION(3, 2, 0):
4457 case IP_VERSION(3, 2, 1):
4458 replay_feature_enabled = true;
4461 replay_feature_enabled = amdgpu_dc_feature_mask & DC_REPLAY_MASK;
4465 /* loops over all connectors on the board */
4466 for (i = 0; i < link_cnt; i++) {
4467 struct dc_link *link = NULL;
4469 if (i > AMDGPU_DM_MAX_DISPLAY_INDEX) {
4471 "KMS: Cannot support more than %d display indexes\n",
4472 AMDGPU_DM_MAX_DISPLAY_INDEX);
4476 aconnector = kzalloc(sizeof(*aconnector), GFP_KERNEL);
4480 aencoder = kzalloc(sizeof(*aencoder), GFP_KERNEL);
4484 if (amdgpu_dm_encoder_init(dm->ddev, aencoder, i)) {
4485 DRM_ERROR("KMS: Failed to initialize encoder\n");
4489 if (amdgpu_dm_connector_init(dm, aconnector, i, aencoder)) {
4490 DRM_ERROR("KMS: Failed to initialize connector\n");
4494 link = dc_get_link_at_index(dm->dc, i);
4496 if (!dc_link_detect_connection_type(link, &new_connection_type))
4497 DRM_ERROR("KMS: Failed to detect connector\n");
4499 if (aconnector->base.force && new_connection_type == dc_connection_none) {
4500 emulated_link_detect(link);
4501 amdgpu_dm_update_connector_after_detect(aconnector);
4505 mutex_lock(&dm->dc_lock);
4506 ret = dc_link_detect(link, DETECT_REASON_BOOT);
4507 mutex_unlock(&dm->dc_lock);
4510 amdgpu_dm_update_connector_after_detect(aconnector);
4511 setup_backlight_device(dm, aconnector);
4514 * Disable psr if replay can be enabled
4516 if (replay_feature_enabled && amdgpu_dm_setup_replay(link, aconnector))
4517 psr_feature_enabled = false;
4519 if (psr_feature_enabled)
4520 amdgpu_dm_set_psr_caps(link);
4522 /* TODO: Fix vblank control helpers to delay PSR entry to allow this when
4523 * PSR is also supported.
4525 if (link->psr_settings.psr_feature_enabled)
4526 adev_to_drm(adev)->vblank_disable_immediate = false;
4529 amdgpu_set_panel_orientation(&aconnector->base);
4532 /* Software is initialized. Now we can register interrupt handlers. */
4533 switch (adev->asic_type) {
4534 #if defined(CONFIG_DRM_AMD_DC_SI)
4539 if (dce60_register_irq_handlers(dm->adev)) {
4540 DRM_ERROR("DM: Failed to initialize IRQ\n");
4554 case CHIP_POLARIS11:
4555 case CHIP_POLARIS10:
4556 case CHIP_POLARIS12:
4561 if (dce110_register_irq_handlers(dm->adev)) {
4562 DRM_ERROR("DM: Failed to initialize IRQ\n");
4567 switch (adev->ip_versions[DCE_HWIP][0]) {
4568 case IP_VERSION(1, 0, 0):
4569 case IP_VERSION(1, 0, 1):
4570 case IP_VERSION(2, 0, 2):
4571 case IP_VERSION(2, 0, 3):
4572 case IP_VERSION(2, 0, 0):
4573 case IP_VERSION(2, 1, 0):
4574 case IP_VERSION(3, 0, 0):
4575 case IP_VERSION(3, 0, 2):
4576 case IP_VERSION(3, 0, 3):
4577 case IP_VERSION(3, 0, 1):
4578 case IP_VERSION(3, 1, 2):
4579 case IP_VERSION(3, 1, 3):
4580 case IP_VERSION(3, 1, 4):
4581 case IP_VERSION(3, 1, 5):
4582 case IP_VERSION(3, 1, 6):
4583 case IP_VERSION(3, 2, 0):
4584 case IP_VERSION(3, 2, 1):
4585 if (dcn10_register_irq_handlers(dm->adev)) {
4586 DRM_ERROR("DM: Failed to initialize IRQ\n");
4591 DRM_ERROR("Unsupported DCE IP versions: 0x%X\n",
4592 adev->ip_versions[DCE_HWIP][0]);
4606 static void amdgpu_dm_destroy_drm_device(struct amdgpu_display_manager *dm)
4608 drm_atomic_private_obj_fini(&dm->atomic_obj);
4611 /******************************************************************************
4612 * amdgpu_display_funcs functions
4613 *****************************************************************************/
4616 * dm_bandwidth_update - program display watermarks
4618 * @adev: amdgpu_device pointer
4620 * Calculate and program the display watermarks and line buffer allocation.
4622 static void dm_bandwidth_update(struct amdgpu_device *adev)
4624 /* TODO: implement later */
4627 static const struct amdgpu_display_funcs dm_display_funcs = {
4628 .bandwidth_update = dm_bandwidth_update, /* called unconditionally */
4629 .vblank_get_counter = dm_vblank_get_counter,/* called unconditionally */
4630 .backlight_set_level = NULL, /* never called for DC */
4631 .backlight_get_level = NULL, /* never called for DC */
4632 .hpd_sense = NULL,/* called unconditionally */
4633 .hpd_set_polarity = NULL, /* called unconditionally */
4634 .hpd_get_gpio_reg = NULL, /* VBIOS parsing. DAL does it. */
4635 .page_flip_get_scanoutpos =
4636 dm_crtc_get_scanoutpos,/* called unconditionally */
4637 .add_encoder = NULL, /* VBIOS parsing. DAL does it. */
4638 .add_connector = NULL, /* VBIOS parsing. DAL does it. */
4641 #if defined(CONFIG_DEBUG_KERNEL_DC)
4643 static ssize_t s3_debug_store(struct device *device,
4644 struct device_attribute *attr,
4650 struct drm_device *drm_dev = dev_get_drvdata(device);
4651 struct amdgpu_device *adev = drm_to_adev(drm_dev);
4653 ret = kstrtoint(buf, 0, &s3_state);
4658 drm_kms_helper_hotplug_event(adev_to_drm(adev));
4663 return ret == 0 ? count : 0;
4666 DEVICE_ATTR_WO(s3_debug);
4670 static int dm_init_microcode(struct amdgpu_device *adev)
4675 switch (adev->ip_versions[DCE_HWIP][0]) {
4676 case IP_VERSION(2, 1, 0):
4677 fw_name_dmub = FIRMWARE_RENOIR_DMUB;
4678 if (ASICREV_IS_GREEN_SARDINE(adev->external_rev_id))
4679 fw_name_dmub = FIRMWARE_GREEN_SARDINE_DMUB;
4681 case IP_VERSION(3, 0, 0):
4682 if (adev->ip_versions[GC_HWIP][0] == IP_VERSION(10, 3, 0))
4683 fw_name_dmub = FIRMWARE_SIENNA_CICHLID_DMUB;
4685 fw_name_dmub = FIRMWARE_NAVY_FLOUNDER_DMUB;
4687 case IP_VERSION(3, 0, 1):
4688 fw_name_dmub = FIRMWARE_VANGOGH_DMUB;
4690 case IP_VERSION(3, 0, 2):
4691 fw_name_dmub = FIRMWARE_DIMGREY_CAVEFISH_DMUB;
4693 case IP_VERSION(3, 0, 3):
4694 fw_name_dmub = FIRMWARE_BEIGE_GOBY_DMUB;
4696 case IP_VERSION(3, 1, 2):
4697 case IP_VERSION(3, 1, 3):
4698 fw_name_dmub = FIRMWARE_YELLOW_CARP_DMUB;
4700 case IP_VERSION(3, 1, 4):
4701 fw_name_dmub = FIRMWARE_DCN_314_DMUB;
4703 case IP_VERSION(3, 1, 5):
4704 fw_name_dmub = FIRMWARE_DCN_315_DMUB;
4706 case IP_VERSION(3, 1, 6):
4707 fw_name_dmub = FIRMWARE_DCN316_DMUB;
4709 case IP_VERSION(3, 2, 0):
4710 fw_name_dmub = FIRMWARE_DCN_V3_2_0_DMCUB;
4712 case IP_VERSION(3, 2, 1):
4713 fw_name_dmub = FIRMWARE_DCN_V3_2_1_DMCUB;
4716 /* ASIC doesn't support DMUB. */
4719 r = amdgpu_ucode_request(adev, &adev->dm.dmub_fw, fw_name_dmub);
4721 DRM_ERROR("DMUB firmware loading failed: %d\n", r);
4725 static int dm_early_init(void *handle)
4727 struct amdgpu_device *adev = (struct amdgpu_device *)handle;
4728 struct amdgpu_mode_info *mode_info = &adev->mode_info;
4729 struct atom_context *ctx = mode_info->atom_context;
4730 int index = GetIndexIntoMasterTable(DATA, Object_Header);
4733 /* if there is no object header, skip DM */
4734 if (!amdgpu_atom_parse_data_header(ctx, index, NULL, NULL, NULL, &data_offset)) {
4735 adev->harvest_ip_mask |= AMD_HARVEST_IP_DMU_MASK;
4736 dev_info(adev->dev, "No object header, skipping DM\n");
4740 switch (adev->asic_type) {
4741 #if defined(CONFIG_DRM_AMD_DC_SI)
4745 adev->mode_info.num_crtc = 6;
4746 adev->mode_info.num_hpd = 6;
4747 adev->mode_info.num_dig = 6;
4750 adev->mode_info.num_crtc = 2;
4751 adev->mode_info.num_hpd = 2;
4752 adev->mode_info.num_dig = 2;
4757 adev->mode_info.num_crtc = 6;
4758 adev->mode_info.num_hpd = 6;
4759 adev->mode_info.num_dig = 6;
4762 adev->mode_info.num_crtc = 4;
4763 adev->mode_info.num_hpd = 6;
4764 adev->mode_info.num_dig = 7;
4768 adev->mode_info.num_crtc = 2;
4769 adev->mode_info.num_hpd = 6;
4770 adev->mode_info.num_dig = 6;
4774 adev->mode_info.num_crtc = 6;
4775 adev->mode_info.num_hpd = 6;
4776 adev->mode_info.num_dig = 7;
4779 adev->mode_info.num_crtc = 3;
4780 adev->mode_info.num_hpd = 6;
4781 adev->mode_info.num_dig = 9;
4784 adev->mode_info.num_crtc = 2;
4785 adev->mode_info.num_hpd = 6;
4786 adev->mode_info.num_dig = 9;
4788 case CHIP_POLARIS11:
4789 case CHIP_POLARIS12:
4790 adev->mode_info.num_crtc = 5;
4791 adev->mode_info.num_hpd = 5;
4792 adev->mode_info.num_dig = 5;
4794 case CHIP_POLARIS10:
4796 adev->mode_info.num_crtc = 6;
4797 adev->mode_info.num_hpd = 6;
4798 adev->mode_info.num_dig = 6;
4803 adev->mode_info.num_crtc = 6;
4804 adev->mode_info.num_hpd = 6;
4805 adev->mode_info.num_dig = 6;
4809 switch (adev->ip_versions[DCE_HWIP][0]) {
4810 case IP_VERSION(2, 0, 2):
4811 case IP_VERSION(3, 0, 0):
4812 adev->mode_info.num_crtc = 6;
4813 adev->mode_info.num_hpd = 6;
4814 adev->mode_info.num_dig = 6;
4816 case IP_VERSION(2, 0, 0):
4817 case IP_VERSION(3, 0, 2):
4818 adev->mode_info.num_crtc = 5;
4819 adev->mode_info.num_hpd = 5;
4820 adev->mode_info.num_dig = 5;
4822 case IP_VERSION(2, 0, 3):
4823 case IP_VERSION(3, 0, 3):
4824 adev->mode_info.num_crtc = 2;
4825 adev->mode_info.num_hpd = 2;
4826 adev->mode_info.num_dig = 2;
4828 case IP_VERSION(1, 0, 0):
4829 case IP_VERSION(1, 0, 1):
4830 case IP_VERSION(3, 0, 1):
4831 case IP_VERSION(2, 1, 0):
4832 case IP_VERSION(3, 1, 2):
4833 case IP_VERSION(3, 1, 3):
4834 case IP_VERSION(3, 1, 4):
4835 case IP_VERSION(3, 1, 5):
4836 case IP_VERSION(3, 1, 6):
4837 case IP_VERSION(3, 2, 0):
4838 case IP_VERSION(3, 2, 1):
4839 adev->mode_info.num_crtc = 4;
4840 adev->mode_info.num_hpd = 4;
4841 adev->mode_info.num_dig = 4;
4844 DRM_ERROR("Unsupported DCE IP versions: 0x%x\n",
4845 adev->ip_versions[DCE_HWIP][0]);
4851 if (adev->mode_info.funcs == NULL)
4852 adev->mode_info.funcs = &dm_display_funcs;
4855 * Note: Do NOT change adev->audio_endpt_rreg and
4856 * adev->audio_endpt_wreg because they are initialised in
4857 * amdgpu_device_init()
4859 #if defined(CONFIG_DEBUG_KERNEL_DC)
4861 adev_to_drm(adev)->dev,
4862 &dev_attr_s3_debug);
4864 adev->dc_enabled = true;
4866 return dm_init_microcode(adev);
4869 static bool modereset_required(struct drm_crtc_state *crtc_state)
4871 return !crtc_state->active && drm_atomic_crtc_needs_modeset(crtc_state);
4874 static void amdgpu_dm_encoder_destroy(struct drm_encoder *encoder)
4876 drm_encoder_cleanup(encoder);
4880 static const struct drm_encoder_funcs amdgpu_dm_encoder_funcs = {
4881 .destroy = amdgpu_dm_encoder_destroy,
4885 fill_plane_color_attributes(const struct drm_plane_state *plane_state,
4886 const enum surface_pixel_format format,
4887 enum dc_color_space *color_space)
4891 *color_space = COLOR_SPACE_SRGB;
4893 /* DRM color properties only affect non-RGB formats. */
4894 if (format < SURFACE_PIXEL_FORMAT_VIDEO_BEGIN)
4897 full_range = (plane_state->color_range == DRM_COLOR_YCBCR_FULL_RANGE);
4899 switch (plane_state->color_encoding) {
4900 case DRM_COLOR_YCBCR_BT601:
4902 *color_space = COLOR_SPACE_YCBCR601;
4904 *color_space = COLOR_SPACE_YCBCR601_LIMITED;
4907 case DRM_COLOR_YCBCR_BT709:
4909 *color_space = COLOR_SPACE_YCBCR709;
4911 *color_space = COLOR_SPACE_YCBCR709_LIMITED;
4914 case DRM_COLOR_YCBCR_BT2020:
4916 *color_space = COLOR_SPACE_2020_YCBCR;
4929 fill_dc_plane_info_and_addr(struct amdgpu_device *adev,
4930 const struct drm_plane_state *plane_state,
4931 const u64 tiling_flags,
4932 struct dc_plane_info *plane_info,
4933 struct dc_plane_address *address,
4935 bool force_disable_dcc)
4937 const struct drm_framebuffer *fb = plane_state->fb;
4938 const struct amdgpu_framebuffer *afb =
4939 to_amdgpu_framebuffer(plane_state->fb);
4942 memset(plane_info, 0, sizeof(*plane_info));
4944 switch (fb->format->format) {
4946 plane_info->format =
4947 SURFACE_PIXEL_FORMAT_GRPH_PALETA_256_COLORS;
4949 case DRM_FORMAT_RGB565:
4950 plane_info->format = SURFACE_PIXEL_FORMAT_GRPH_RGB565;
4952 case DRM_FORMAT_XRGB8888:
4953 case DRM_FORMAT_ARGB8888:
4954 plane_info->format = SURFACE_PIXEL_FORMAT_GRPH_ARGB8888;
4956 case DRM_FORMAT_XRGB2101010:
4957 case DRM_FORMAT_ARGB2101010:
4958 plane_info->format = SURFACE_PIXEL_FORMAT_GRPH_ARGB2101010;
4960 case DRM_FORMAT_XBGR2101010:
4961 case DRM_FORMAT_ABGR2101010:
4962 plane_info->format = SURFACE_PIXEL_FORMAT_GRPH_ABGR2101010;
4964 case DRM_FORMAT_XBGR8888:
4965 case DRM_FORMAT_ABGR8888:
4966 plane_info->format = SURFACE_PIXEL_FORMAT_GRPH_ABGR8888;
4968 case DRM_FORMAT_NV21:
4969 plane_info->format = SURFACE_PIXEL_FORMAT_VIDEO_420_YCbCr;
4971 case DRM_FORMAT_NV12:
4972 plane_info->format = SURFACE_PIXEL_FORMAT_VIDEO_420_YCrCb;
4974 case DRM_FORMAT_P010:
4975 plane_info->format = SURFACE_PIXEL_FORMAT_VIDEO_420_10bpc_YCrCb;
4977 case DRM_FORMAT_XRGB16161616F:
4978 case DRM_FORMAT_ARGB16161616F:
4979 plane_info->format = SURFACE_PIXEL_FORMAT_GRPH_ARGB16161616F;
4981 case DRM_FORMAT_XBGR16161616F:
4982 case DRM_FORMAT_ABGR16161616F:
4983 plane_info->format = SURFACE_PIXEL_FORMAT_GRPH_ABGR16161616F;
4985 case DRM_FORMAT_XRGB16161616:
4986 case DRM_FORMAT_ARGB16161616:
4987 plane_info->format = SURFACE_PIXEL_FORMAT_GRPH_ARGB16161616;
4989 case DRM_FORMAT_XBGR16161616:
4990 case DRM_FORMAT_ABGR16161616:
4991 plane_info->format = SURFACE_PIXEL_FORMAT_GRPH_ABGR16161616;
4995 "Unsupported screen format %p4cc\n",
4996 &fb->format->format);
5000 switch (plane_state->rotation & DRM_MODE_ROTATE_MASK) {
5001 case DRM_MODE_ROTATE_0:
5002 plane_info->rotation = ROTATION_ANGLE_0;
5004 case DRM_MODE_ROTATE_90:
5005 plane_info->rotation = ROTATION_ANGLE_90;
5007 case DRM_MODE_ROTATE_180:
5008 plane_info->rotation = ROTATION_ANGLE_180;
5010 case DRM_MODE_ROTATE_270:
5011 plane_info->rotation = ROTATION_ANGLE_270;
5014 plane_info->rotation = ROTATION_ANGLE_0;
5019 plane_info->visible = true;
5020 plane_info->stereo_format = PLANE_STEREO_FORMAT_NONE;
5022 plane_info->layer_index = plane_state->normalized_zpos;
5024 ret = fill_plane_color_attributes(plane_state, plane_info->format,
5025 &plane_info->color_space);
5029 ret = amdgpu_dm_plane_fill_plane_buffer_attributes(adev, afb, plane_info->format,
5030 plane_info->rotation, tiling_flags,
5031 &plane_info->tiling_info,
5032 &plane_info->plane_size,
5033 &plane_info->dcc, address,
5034 tmz_surface, force_disable_dcc);
5038 amdgpu_dm_plane_fill_blending_from_plane_state(
5039 plane_state, &plane_info->per_pixel_alpha, &plane_info->pre_multiplied_alpha,
5040 &plane_info->global_alpha, &plane_info->global_alpha_value);
5045 static int fill_dc_plane_attributes(struct amdgpu_device *adev,
5046 struct dc_plane_state *dc_plane_state,
5047 struct drm_plane_state *plane_state,
5048 struct drm_crtc_state *crtc_state)
5050 struct dm_crtc_state *dm_crtc_state = to_dm_crtc_state(crtc_state);
5051 struct amdgpu_framebuffer *afb = (struct amdgpu_framebuffer *)plane_state->fb;
5052 struct dc_scaling_info scaling_info;
5053 struct dc_plane_info plane_info;
5055 bool force_disable_dcc = false;
5057 ret = amdgpu_dm_plane_fill_dc_scaling_info(adev, plane_state, &scaling_info);
5061 dc_plane_state->src_rect = scaling_info.src_rect;
5062 dc_plane_state->dst_rect = scaling_info.dst_rect;
5063 dc_plane_state->clip_rect = scaling_info.clip_rect;
5064 dc_plane_state->scaling_quality = scaling_info.scaling_quality;
5066 force_disable_dcc = adev->asic_type == CHIP_RAVEN && adev->in_suspend;
5067 ret = fill_dc_plane_info_and_addr(adev, plane_state,
5070 &dc_plane_state->address,
5076 dc_plane_state->format = plane_info.format;
5077 dc_plane_state->color_space = plane_info.color_space;
5078 dc_plane_state->format = plane_info.format;
5079 dc_plane_state->plane_size = plane_info.plane_size;
5080 dc_plane_state->rotation = plane_info.rotation;
5081 dc_plane_state->horizontal_mirror = plane_info.horizontal_mirror;
5082 dc_plane_state->stereo_format = plane_info.stereo_format;
5083 dc_plane_state->tiling_info = plane_info.tiling_info;
5084 dc_plane_state->visible = plane_info.visible;
5085 dc_plane_state->per_pixel_alpha = plane_info.per_pixel_alpha;
5086 dc_plane_state->pre_multiplied_alpha = plane_info.pre_multiplied_alpha;
5087 dc_plane_state->global_alpha = plane_info.global_alpha;
5088 dc_plane_state->global_alpha_value = plane_info.global_alpha_value;
5089 dc_plane_state->dcc = plane_info.dcc;
5090 dc_plane_state->layer_index = plane_info.layer_index;
5091 dc_plane_state->flip_int_enabled = true;
5094 * Always set input transfer function, since plane state is refreshed
5097 ret = amdgpu_dm_update_plane_color_mgmt(dm_crtc_state, dc_plane_state);
5104 static inline void fill_dc_dirty_rect(struct drm_plane *plane,
5105 struct rect *dirty_rect, int32_t x,
5106 s32 y, s32 width, s32 height,
5109 WARN_ON(*i >= DC_MAX_DIRTY_RECTS);
5113 dirty_rect->width = width;
5114 dirty_rect->height = height;
5118 "[PLANE:%d] PSR FFU dirty rect size (%d, %d)\n",
5119 plane->base.id, width, height);
5122 "[PLANE:%d] PSR SU dirty rect at (%d, %d) size (%d, %d)",
5123 plane->base.id, x, y, width, height);
5129 * fill_dc_dirty_rects() - Fill DC dirty regions for PSR selective updates
5131 * @plane: DRM plane containing dirty regions that need to be flushed to the eDP
5133 * @old_plane_state: Old state of @plane
5134 * @new_plane_state: New state of @plane
5135 * @crtc_state: New state of CRTC connected to the @plane
5136 * @flip_addrs: DC flip tracking struct, which also tracts dirty rects
5137 * @dirty_regions_changed: dirty regions changed
5139 * For PSR SU, DC informs the DMUB uController of dirty rectangle regions
5140 * (referred to as "damage clips" in DRM nomenclature) that require updating on
5141 * the eDP remote buffer. The responsibility of specifying the dirty regions is
5144 * A damage-aware DRM client should fill the FB_DAMAGE_CLIPS property on the
5145 * plane with regions that require flushing to the eDP remote buffer. In
5146 * addition, certain use cases - such as cursor and multi-plane overlay (MPO) -
5147 * implicitly provide damage clips without any client support via the plane
5150 static void fill_dc_dirty_rects(struct drm_plane *plane,
5151 struct drm_plane_state *old_plane_state,
5152 struct drm_plane_state *new_plane_state,
5153 struct drm_crtc_state *crtc_state,
5154 struct dc_flip_addrs *flip_addrs,
5155 bool *dirty_regions_changed)
5157 struct dm_crtc_state *dm_crtc_state = to_dm_crtc_state(crtc_state);
5158 struct rect *dirty_rects = flip_addrs->dirty_rects;
5160 struct drm_mode_rect *clips;
5164 *dirty_regions_changed = false;
5167 * Cursor plane has it's own dirty rect update interface. See
5168 * dcn10_dmub_update_cursor_data and dmub_cmd_update_cursor_info_data
5170 if (plane->type == DRM_PLANE_TYPE_CURSOR)
5173 if (new_plane_state->rotation != DRM_MODE_ROTATE_0)
5176 num_clips = drm_plane_get_damage_clips_count(new_plane_state);
5177 clips = drm_plane_get_damage_clips(new_plane_state);
5179 if (!dm_crtc_state->mpo_requested) {
5180 if (!num_clips || num_clips > DC_MAX_DIRTY_RECTS)
5183 for (; flip_addrs->dirty_rect_count < num_clips; clips++)
5184 fill_dc_dirty_rect(new_plane_state->plane,
5185 &dirty_rects[flip_addrs->dirty_rect_count],
5186 clips->x1, clips->y1,
5187 clips->x2 - clips->x1, clips->y2 - clips->y1,
5188 &flip_addrs->dirty_rect_count,
5194 * MPO is requested. Add entire plane bounding box to dirty rects if
5195 * flipped to or damaged.
5197 * If plane is moved or resized, also add old bounding box to dirty
5200 fb_changed = old_plane_state->fb->base.id !=
5201 new_plane_state->fb->base.id;
5202 bb_changed = (old_plane_state->crtc_x != new_plane_state->crtc_x ||
5203 old_plane_state->crtc_y != new_plane_state->crtc_y ||
5204 old_plane_state->crtc_w != new_plane_state->crtc_w ||
5205 old_plane_state->crtc_h != new_plane_state->crtc_h);
5208 "[PLANE:%d] PSR bb_changed:%d fb_changed:%d num_clips:%d\n",
5209 new_plane_state->plane->base.id,
5210 bb_changed, fb_changed, num_clips);
5212 *dirty_regions_changed = bb_changed;
5214 if ((num_clips + (bb_changed ? 2 : 0)) > DC_MAX_DIRTY_RECTS)
5218 fill_dc_dirty_rect(new_plane_state->plane, &dirty_rects[i],
5219 new_plane_state->crtc_x,
5220 new_plane_state->crtc_y,
5221 new_plane_state->crtc_w,
5222 new_plane_state->crtc_h, &i, false);
5224 /* Add old plane bounding-box if plane is moved or resized */
5225 fill_dc_dirty_rect(new_plane_state->plane, &dirty_rects[i],
5226 old_plane_state->crtc_x,
5227 old_plane_state->crtc_y,
5228 old_plane_state->crtc_w,
5229 old_plane_state->crtc_h, &i, false);
5233 for (; i < num_clips; clips++)
5234 fill_dc_dirty_rect(new_plane_state->plane,
5235 &dirty_rects[i], clips->x1,
5236 clips->y1, clips->x2 - clips->x1,
5237 clips->y2 - clips->y1, &i, false);
5238 } else if (fb_changed && !bb_changed) {
5239 fill_dc_dirty_rect(new_plane_state->plane, &dirty_rects[i],
5240 new_plane_state->crtc_x,
5241 new_plane_state->crtc_y,
5242 new_plane_state->crtc_w,
5243 new_plane_state->crtc_h, &i, false);
5246 flip_addrs->dirty_rect_count = i;
5250 fill_dc_dirty_rect(new_plane_state->plane, &dirty_rects[0], 0, 0,
5251 dm_crtc_state->base.mode.crtc_hdisplay,
5252 dm_crtc_state->base.mode.crtc_vdisplay,
5253 &flip_addrs->dirty_rect_count, true);
5256 static void update_stream_scaling_settings(const struct drm_display_mode *mode,
5257 const struct dm_connector_state *dm_state,
5258 struct dc_stream_state *stream)
5260 enum amdgpu_rmx_type rmx_type;
5262 struct rect src = { 0 }; /* viewport in composition space*/
5263 struct rect dst = { 0 }; /* stream addressable area */
5265 /* no mode. nothing to be done */
5269 /* Full screen scaling by default */
5270 src.width = mode->hdisplay;
5271 src.height = mode->vdisplay;
5272 dst.width = stream->timing.h_addressable;
5273 dst.height = stream->timing.v_addressable;
5276 rmx_type = dm_state->scaling;
5277 if (rmx_type == RMX_ASPECT || rmx_type == RMX_OFF) {
5278 if (src.width * dst.height <
5279 src.height * dst.width) {
5280 /* height needs less upscaling/more downscaling */
5281 dst.width = src.width *
5282 dst.height / src.height;
5284 /* width needs less upscaling/more downscaling */
5285 dst.height = src.height *
5286 dst.width / src.width;
5288 } else if (rmx_type == RMX_CENTER) {
5292 dst.x = (stream->timing.h_addressable - dst.width) / 2;
5293 dst.y = (stream->timing.v_addressable - dst.height) / 2;
5295 if (dm_state->underscan_enable) {
5296 dst.x += dm_state->underscan_hborder / 2;
5297 dst.y += dm_state->underscan_vborder / 2;
5298 dst.width -= dm_state->underscan_hborder;
5299 dst.height -= dm_state->underscan_vborder;
5306 DRM_DEBUG_KMS("Destination Rectangle x:%d y:%d width:%d height:%d\n",
5307 dst.x, dst.y, dst.width, dst.height);
5311 static enum dc_color_depth
5312 convert_color_depth_from_display_info(const struct drm_connector *connector,
5313 bool is_y420, int requested_bpc)
5320 /* Cap display bpc based on HDMI 2.0 HF-VSDB */
5321 if (connector->display_info.hdmi.y420_dc_modes & DRM_EDID_YCBCR420_DC_48)
5323 else if (connector->display_info.hdmi.y420_dc_modes & DRM_EDID_YCBCR420_DC_36)
5325 else if (connector->display_info.hdmi.y420_dc_modes & DRM_EDID_YCBCR420_DC_30)
5328 bpc = (uint8_t)connector->display_info.bpc;
5329 /* Assume 8 bpc by default if no bpc is specified. */
5330 bpc = bpc ? bpc : 8;
5333 if (requested_bpc > 0) {
5335 * Cap display bpc based on the user requested value.
5337 * The value for state->max_bpc may not correctly updated
5338 * depending on when the connector gets added to the state
5339 * or if this was called outside of atomic check, so it
5340 * can't be used directly.
5342 bpc = min_t(u8, bpc, requested_bpc);
5344 /* Round down to the nearest even number. */
5345 bpc = bpc - (bpc & 1);
5351 * Temporary Work around, DRM doesn't parse color depth for
5352 * EDID revision before 1.4
5353 * TODO: Fix edid parsing
5355 return COLOR_DEPTH_888;
5357 return COLOR_DEPTH_666;
5359 return COLOR_DEPTH_888;
5361 return COLOR_DEPTH_101010;
5363 return COLOR_DEPTH_121212;
5365 return COLOR_DEPTH_141414;
5367 return COLOR_DEPTH_161616;
5369 return COLOR_DEPTH_UNDEFINED;
5373 static enum dc_aspect_ratio
5374 get_aspect_ratio(const struct drm_display_mode *mode_in)
5376 /* 1-1 mapping, since both enums follow the HDMI spec. */
5377 return (enum dc_aspect_ratio) mode_in->picture_aspect_ratio;
5380 static enum dc_color_space
5381 get_output_color_space(const struct dc_crtc_timing *dc_crtc_timing,
5382 const struct drm_connector_state *connector_state)
5384 enum dc_color_space color_space = COLOR_SPACE_SRGB;
5386 switch (connector_state->colorspace) {
5387 case DRM_MODE_COLORIMETRY_BT601_YCC:
5388 if (dc_crtc_timing->flags.Y_ONLY)
5389 color_space = COLOR_SPACE_YCBCR601_LIMITED;
5391 color_space = COLOR_SPACE_YCBCR601;
5393 case DRM_MODE_COLORIMETRY_BT709_YCC:
5394 if (dc_crtc_timing->flags.Y_ONLY)
5395 color_space = COLOR_SPACE_YCBCR709_LIMITED;
5397 color_space = COLOR_SPACE_YCBCR709;
5399 case DRM_MODE_COLORIMETRY_OPRGB:
5400 color_space = COLOR_SPACE_ADOBERGB;
5402 case DRM_MODE_COLORIMETRY_BT2020_RGB:
5403 case DRM_MODE_COLORIMETRY_BT2020_YCC:
5404 if (dc_crtc_timing->pixel_encoding == PIXEL_ENCODING_RGB)
5405 color_space = COLOR_SPACE_2020_RGB_FULLRANGE;
5407 color_space = COLOR_SPACE_2020_YCBCR;
5409 case DRM_MODE_COLORIMETRY_DEFAULT: // ITU601
5411 if (dc_crtc_timing->pixel_encoding == PIXEL_ENCODING_RGB) {
5412 color_space = COLOR_SPACE_SRGB;
5414 * 27030khz is the separation point between HDTV and SDTV
5415 * according to HDMI spec, we use YCbCr709 and YCbCr601
5418 } else if (dc_crtc_timing->pix_clk_100hz > 270300) {
5419 if (dc_crtc_timing->flags.Y_ONLY)
5421 COLOR_SPACE_YCBCR709_LIMITED;
5423 color_space = COLOR_SPACE_YCBCR709;
5425 if (dc_crtc_timing->flags.Y_ONLY)
5427 COLOR_SPACE_YCBCR601_LIMITED;
5429 color_space = COLOR_SPACE_YCBCR601;
5437 static bool adjust_colour_depth_from_display_info(
5438 struct dc_crtc_timing *timing_out,
5439 const struct drm_display_info *info)
5441 enum dc_color_depth depth = timing_out->display_color_depth;
5445 normalized_clk = timing_out->pix_clk_100hz / 10;
5446 /* YCbCr 4:2:0 requires additional adjustment of 1/2 */
5447 if (timing_out->pixel_encoding == PIXEL_ENCODING_YCBCR420)
5448 normalized_clk /= 2;
5449 /* Adjusting pix clock following on HDMI spec based on colour depth */
5451 case COLOR_DEPTH_888:
5453 case COLOR_DEPTH_101010:
5454 normalized_clk = (normalized_clk * 30) / 24;
5456 case COLOR_DEPTH_121212:
5457 normalized_clk = (normalized_clk * 36) / 24;
5459 case COLOR_DEPTH_161616:
5460 normalized_clk = (normalized_clk * 48) / 24;
5463 /* The above depths are the only ones valid for HDMI. */
5466 if (normalized_clk <= info->max_tmds_clock) {
5467 timing_out->display_color_depth = depth;
5470 } while (--depth > COLOR_DEPTH_666);
5474 static void fill_stream_properties_from_drm_display_mode(
5475 struct dc_stream_state *stream,
5476 const struct drm_display_mode *mode_in,
5477 const struct drm_connector *connector,
5478 const struct drm_connector_state *connector_state,
5479 const struct dc_stream_state *old_stream,
5482 struct dc_crtc_timing *timing_out = &stream->timing;
5483 const struct drm_display_info *info = &connector->display_info;
5484 struct amdgpu_dm_connector *aconnector = to_amdgpu_dm_connector(connector);
5485 struct hdmi_vendor_infoframe hv_frame;
5486 struct hdmi_avi_infoframe avi_frame;
5488 memset(&hv_frame, 0, sizeof(hv_frame));
5489 memset(&avi_frame, 0, sizeof(avi_frame));
5491 timing_out->h_border_left = 0;
5492 timing_out->h_border_right = 0;
5493 timing_out->v_border_top = 0;
5494 timing_out->v_border_bottom = 0;
5495 /* TODO: un-hardcode */
5496 if (drm_mode_is_420_only(info, mode_in)
5497 && stream->signal == SIGNAL_TYPE_HDMI_TYPE_A)
5498 timing_out->pixel_encoding = PIXEL_ENCODING_YCBCR420;
5499 else if (drm_mode_is_420_also(info, mode_in)
5500 && aconnector->force_yuv420_output)
5501 timing_out->pixel_encoding = PIXEL_ENCODING_YCBCR420;
5502 else if ((connector->display_info.color_formats & DRM_COLOR_FORMAT_YCBCR444)
5503 && stream->signal == SIGNAL_TYPE_HDMI_TYPE_A)
5504 timing_out->pixel_encoding = PIXEL_ENCODING_YCBCR444;
5506 timing_out->pixel_encoding = PIXEL_ENCODING_RGB;
5508 timing_out->timing_3d_format = TIMING_3D_FORMAT_NONE;
5509 timing_out->display_color_depth = convert_color_depth_from_display_info(
5511 (timing_out->pixel_encoding == PIXEL_ENCODING_YCBCR420),
5513 timing_out->scan_type = SCANNING_TYPE_NODATA;
5514 timing_out->hdmi_vic = 0;
5517 timing_out->vic = old_stream->timing.vic;
5518 timing_out->flags.HSYNC_POSITIVE_POLARITY = old_stream->timing.flags.HSYNC_POSITIVE_POLARITY;
5519 timing_out->flags.VSYNC_POSITIVE_POLARITY = old_stream->timing.flags.VSYNC_POSITIVE_POLARITY;
5521 timing_out->vic = drm_match_cea_mode(mode_in);
5522 if (mode_in->flags & DRM_MODE_FLAG_PHSYNC)
5523 timing_out->flags.HSYNC_POSITIVE_POLARITY = 1;
5524 if (mode_in->flags & DRM_MODE_FLAG_PVSYNC)
5525 timing_out->flags.VSYNC_POSITIVE_POLARITY = 1;
5528 if (stream->signal == SIGNAL_TYPE_HDMI_TYPE_A) {
5529 drm_hdmi_avi_infoframe_from_display_mode(&avi_frame, (struct drm_connector *)connector, mode_in);
5530 timing_out->vic = avi_frame.video_code;
5531 drm_hdmi_vendor_infoframe_from_display_mode(&hv_frame, (struct drm_connector *)connector, mode_in);
5532 timing_out->hdmi_vic = hv_frame.vic;
5535 if (is_freesync_video_mode(mode_in, aconnector)) {
5536 timing_out->h_addressable = mode_in->hdisplay;
5537 timing_out->h_total = mode_in->htotal;
5538 timing_out->h_sync_width = mode_in->hsync_end - mode_in->hsync_start;
5539 timing_out->h_front_porch = mode_in->hsync_start - mode_in->hdisplay;
5540 timing_out->v_total = mode_in->vtotal;
5541 timing_out->v_addressable = mode_in->vdisplay;
5542 timing_out->v_front_porch = mode_in->vsync_start - mode_in->vdisplay;
5543 timing_out->v_sync_width = mode_in->vsync_end - mode_in->vsync_start;
5544 timing_out->pix_clk_100hz = mode_in->clock * 10;
5546 timing_out->h_addressable = mode_in->crtc_hdisplay;
5547 timing_out->h_total = mode_in->crtc_htotal;
5548 timing_out->h_sync_width = mode_in->crtc_hsync_end - mode_in->crtc_hsync_start;
5549 timing_out->h_front_porch = mode_in->crtc_hsync_start - mode_in->crtc_hdisplay;
5550 timing_out->v_total = mode_in->crtc_vtotal;
5551 timing_out->v_addressable = mode_in->crtc_vdisplay;
5552 timing_out->v_front_porch = mode_in->crtc_vsync_start - mode_in->crtc_vdisplay;
5553 timing_out->v_sync_width = mode_in->crtc_vsync_end - mode_in->crtc_vsync_start;
5554 timing_out->pix_clk_100hz = mode_in->crtc_clock * 10;
5557 timing_out->aspect_ratio = get_aspect_ratio(mode_in);
5559 stream->out_transfer_func->type = TF_TYPE_PREDEFINED;
5560 stream->out_transfer_func->tf = TRANSFER_FUNCTION_SRGB;
5561 if (stream->signal == SIGNAL_TYPE_HDMI_TYPE_A) {
5562 if (!adjust_colour_depth_from_display_info(timing_out, info) &&
5563 drm_mode_is_420_also(info, mode_in) &&
5564 timing_out->pixel_encoding != PIXEL_ENCODING_YCBCR420) {
5565 timing_out->pixel_encoding = PIXEL_ENCODING_YCBCR420;
5566 adjust_colour_depth_from_display_info(timing_out, info);
5570 stream->output_color_space = get_output_color_space(timing_out, connector_state);
5573 static void fill_audio_info(struct audio_info *audio_info,
5574 const struct drm_connector *drm_connector,
5575 const struct dc_sink *dc_sink)
5578 int cea_revision = 0;
5579 const struct dc_edid_caps *edid_caps = &dc_sink->edid_caps;
5581 audio_info->manufacture_id = edid_caps->manufacturer_id;
5582 audio_info->product_id = edid_caps->product_id;
5584 cea_revision = drm_connector->display_info.cea_rev;
5586 strscpy(audio_info->display_name,
5587 edid_caps->display_name,
5588 AUDIO_INFO_DISPLAY_NAME_SIZE_IN_CHARS);
5590 if (cea_revision >= 3) {
5591 audio_info->mode_count = edid_caps->audio_mode_count;
5593 for (i = 0; i < audio_info->mode_count; ++i) {
5594 audio_info->modes[i].format_code =
5595 (enum audio_format_code)
5596 (edid_caps->audio_modes[i].format_code);
5597 audio_info->modes[i].channel_count =
5598 edid_caps->audio_modes[i].channel_count;
5599 audio_info->modes[i].sample_rates.all =
5600 edid_caps->audio_modes[i].sample_rate;
5601 audio_info->modes[i].sample_size =
5602 edid_caps->audio_modes[i].sample_size;
5606 audio_info->flags.all = edid_caps->speaker_flags;
5608 /* TODO: We only check for the progressive mode, check for interlace mode too */
5609 if (drm_connector->latency_present[0]) {
5610 audio_info->video_latency = drm_connector->video_latency[0];
5611 audio_info->audio_latency = drm_connector->audio_latency[0];
5614 /* TODO: For DP, video and audio latency should be calculated from DPCD caps */
5619 copy_crtc_timing_for_drm_display_mode(const struct drm_display_mode *src_mode,
5620 struct drm_display_mode *dst_mode)
5622 dst_mode->crtc_hdisplay = src_mode->crtc_hdisplay;
5623 dst_mode->crtc_vdisplay = src_mode->crtc_vdisplay;
5624 dst_mode->crtc_clock = src_mode->crtc_clock;
5625 dst_mode->crtc_hblank_start = src_mode->crtc_hblank_start;
5626 dst_mode->crtc_hblank_end = src_mode->crtc_hblank_end;
5627 dst_mode->crtc_hsync_start = src_mode->crtc_hsync_start;
5628 dst_mode->crtc_hsync_end = src_mode->crtc_hsync_end;
5629 dst_mode->crtc_htotal = src_mode->crtc_htotal;
5630 dst_mode->crtc_hskew = src_mode->crtc_hskew;
5631 dst_mode->crtc_vblank_start = src_mode->crtc_vblank_start;
5632 dst_mode->crtc_vblank_end = src_mode->crtc_vblank_end;
5633 dst_mode->crtc_vsync_start = src_mode->crtc_vsync_start;
5634 dst_mode->crtc_vsync_end = src_mode->crtc_vsync_end;
5635 dst_mode->crtc_vtotal = src_mode->crtc_vtotal;
5639 decide_crtc_timing_for_drm_display_mode(struct drm_display_mode *drm_mode,
5640 const struct drm_display_mode *native_mode,
5643 if (scale_enabled) {
5644 copy_crtc_timing_for_drm_display_mode(native_mode, drm_mode);
5645 } else if (native_mode->clock == drm_mode->clock &&
5646 native_mode->htotal == drm_mode->htotal &&
5647 native_mode->vtotal == drm_mode->vtotal) {
5648 copy_crtc_timing_for_drm_display_mode(native_mode, drm_mode);
5650 /* no scaling nor amdgpu inserted, no need to patch */
5654 static struct dc_sink *
5655 create_fake_sink(struct amdgpu_dm_connector *aconnector)
5657 struct dc_sink_init_data sink_init_data = { 0 };
5658 struct dc_sink *sink = NULL;
5660 sink_init_data.link = aconnector->dc_link;
5661 sink_init_data.sink_signal = aconnector->dc_link->connector_signal;
5663 sink = dc_sink_create(&sink_init_data);
5665 DRM_ERROR("Failed to create sink!\n");
5668 sink->sink_signal = SIGNAL_TYPE_VIRTUAL;
5673 static void set_multisync_trigger_params(
5674 struct dc_stream_state *stream)
5676 struct dc_stream_state *master = NULL;
5678 if (stream->triggered_crtc_reset.enabled) {
5679 master = stream->triggered_crtc_reset.event_source;
5680 stream->triggered_crtc_reset.event =
5681 master->timing.flags.VSYNC_POSITIVE_POLARITY ?
5682 CRTC_EVENT_VSYNC_RISING : CRTC_EVENT_VSYNC_FALLING;
5683 stream->triggered_crtc_reset.delay = TRIGGER_DELAY_NEXT_PIXEL;
5687 static void set_master_stream(struct dc_stream_state *stream_set[],
5690 int j, highest_rfr = 0, master_stream = 0;
5692 for (j = 0; j < stream_count; j++) {
5693 if (stream_set[j] && stream_set[j]->triggered_crtc_reset.enabled) {
5694 int refresh_rate = 0;
5696 refresh_rate = (stream_set[j]->timing.pix_clk_100hz*100)/
5697 (stream_set[j]->timing.h_total*stream_set[j]->timing.v_total);
5698 if (refresh_rate > highest_rfr) {
5699 highest_rfr = refresh_rate;
5704 for (j = 0; j < stream_count; j++) {
5706 stream_set[j]->triggered_crtc_reset.event_source = stream_set[master_stream];
5710 static void dm_enable_per_frame_crtc_master_sync(struct dc_state *context)
5713 struct dc_stream_state *stream;
5715 if (context->stream_count < 2)
5717 for (i = 0; i < context->stream_count ; i++) {
5718 if (!context->streams[i])
5721 * TODO: add a function to read AMD VSDB bits and set
5722 * crtc_sync_master.multi_sync_enabled flag
5723 * For now it's set to false
5727 set_master_stream(context->streams, context->stream_count);
5729 for (i = 0; i < context->stream_count ; i++) {
5730 stream = context->streams[i];
5735 set_multisync_trigger_params(stream);
5740 * DOC: FreeSync Video
5742 * When a userspace application wants to play a video, the content follows a
5743 * standard format definition that usually specifies the FPS for that format.
5744 * The below list illustrates some video format and the expected FPS,
5747 * - TV/NTSC (23.976 FPS)
5750 * - TV/NTSC (29.97 FPS)
5751 * - TV/NTSC (30 FPS)
5752 * - Cinema HFR (48 FPS)
5754 * - Commonly used (60 FPS)
5755 * - Multiples of 24 (48,72,96 FPS)
5757 * The list of standards video format is not huge and can be added to the
5758 * connector modeset list beforehand. With that, userspace can leverage
5759 * FreeSync to extends the front porch in order to attain the target refresh
5760 * rate. Such a switch will happen seamlessly, without screen blanking or
5761 * reprogramming of the output in any other way. If the userspace requests a
5762 * modesetting change compatible with FreeSync modes that only differ in the
5763 * refresh rate, DC will skip the full update and avoid blink during the
5764 * transition. For example, the video player can change the modesetting from
5765 * 60Hz to 30Hz for playing TV/NTSC content when it goes full screen without
5766 * causing any display blink. This same concept can be applied to a mode
5769 static struct drm_display_mode *
5770 get_highest_refresh_rate_mode(struct amdgpu_dm_connector *aconnector,
5771 bool use_probed_modes)
5773 struct drm_display_mode *m, *m_pref = NULL;
5774 u16 current_refresh, highest_refresh;
5775 struct list_head *list_head = use_probed_modes ?
5776 &aconnector->base.probed_modes :
5777 &aconnector->base.modes;
5779 if (aconnector->freesync_vid_base.clock != 0)
5780 return &aconnector->freesync_vid_base;
5782 /* Find the preferred mode */
5783 list_for_each_entry(m, list_head, head) {
5784 if (m->type & DRM_MODE_TYPE_PREFERRED) {
5791 /* Probably an EDID with no preferred mode. Fallback to first entry */
5792 m_pref = list_first_entry_or_null(
5793 &aconnector->base.modes, struct drm_display_mode, head);
5795 DRM_DEBUG_DRIVER("No preferred mode found in EDID\n");
5800 highest_refresh = drm_mode_vrefresh(m_pref);
5803 * Find the mode with highest refresh rate with same resolution.
5804 * For some monitors, preferred mode is not the mode with highest
5805 * supported refresh rate.
5807 list_for_each_entry(m, list_head, head) {
5808 current_refresh = drm_mode_vrefresh(m);
5810 if (m->hdisplay == m_pref->hdisplay &&
5811 m->vdisplay == m_pref->vdisplay &&
5812 highest_refresh < current_refresh) {
5813 highest_refresh = current_refresh;
5818 drm_mode_copy(&aconnector->freesync_vid_base, m_pref);
5822 static bool is_freesync_video_mode(const struct drm_display_mode *mode,
5823 struct amdgpu_dm_connector *aconnector)
5825 struct drm_display_mode *high_mode;
5828 high_mode = get_highest_refresh_rate_mode(aconnector, false);
5829 if (!high_mode || !mode)
5832 timing_diff = high_mode->vtotal - mode->vtotal;
5834 if (high_mode->clock == 0 || high_mode->clock != mode->clock ||
5835 high_mode->hdisplay != mode->hdisplay ||
5836 high_mode->vdisplay != mode->vdisplay ||
5837 high_mode->hsync_start != mode->hsync_start ||
5838 high_mode->hsync_end != mode->hsync_end ||
5839 high_mode->htotal != mode->htotal ||
5840 high_mode->hskew != mode->hskew ||
5841 high_mode->vscan != mode->vscan ||
5842 high_mode->vsync_start - mode->vsync_start != timing_diff ||
5843 high_mode->vsync_end - mode->vsync_end != timing_diff)
5849 static void update_dsc_caps(struct amdgpu_dm_connector *aconnector,
5850 struct dc_sink *sink, struct dc_stream_state *stream,
5851 struct dsc_dec_dpcd_caps *dsc_caps)
5853 stream->timing.flags.DSC = 0;
5854 dsc_caps->is_dsc_supported = false;
5856 if (aconnector->dc_link && (sink->sink_signal == SIGNAL_TYPE_DISPLAY_PORT ||
5857 sink->sink_signal == SIGNAL_TYPE_EDP)) {
5858 if (sink->link->dpcd_caps.dongle_type == DISPLAY_DONGLE_NONE ||
5859 sink->link->dpcd_caps.dongle_type == DISPLAY_DONGLE_DP_HDMI_CONVERTER)
5860 dc_dsc_parse_dsc_dpcd(aconnector->dc_link->ctx->dc,
5861 aconnector->dc_link->dpcd_caps.dsc_caps.dsc_basic_caps.raw,
5862 aconnector->dc_link->dpcd_caps.dsc_caps.dsc_branch_decoder_caps.raw,
5868 static void apply_dsc_policy_for_edp(struct amdgpu_dm_connector *aconnector,
5869 struct dc_sink *sink, struct dc_stream_state *stream,
5870 struct dsc_dec_dpcd_caps *dsc_caps,
5871 uint32_t max_dsc_target_bpp_limit_override)
5873 const struct dc_link_settings *verified_link_cap = NULL;
5874 u32 link_bw_in_kbps;
5875 u32 edp_min_bpp_x16, edp_max_bpp_x16;
5876 struct dc *dc = sink->ctx->dc;
5877 struct dc_dsc_bw_range bw_range = {0};
5878 struct dc_dsc_config dsc_cfg = {0};
5879 struct dc_dsc_config_options dsc_options = {0};
5881 dc_dsc_get_default_config_option(dc, &dsc_options);
5882 dsc_options.max_target_bpp_limit_override_x16 = max_dsc_target_bpp_limit_override * 16;
5884 verified_link_cap = dc_link_get_link_cap(stream->link);
5885 link_bw_in_kbps = dc_link_bandwidth_kbps(stream->link, verified_link_cap);
5886 edp_min_bpp_x16 = 8 * 16;
5887 edp_max_bpp_x16 = 8 * 16;
5889 if (edp_max_bpp_x16 > dsc_caps->edp_max_bits_per_pixel)
5890 edp_max_bpp_x16 = dsc_caps->edp_max_bits_per_pixel;
5892 if (edp_max_bpp_x16 < edp_min_bpp_x16)
5893 edp_min_bpp_x16 = edp_max_bpp_x16;
5895 if (dc_dsc_compute_bandwidth_range(dc->res_pool->dscs[0],
5896 dc->debug.dsc_min_slice_height_override,
5897 edp_min_bpp_x16, edp_max_bpp_x16,
5900 dc_link_get_highest_encoding_format(aconnector->dc_link),
5903 if (bw_range.max_kbps < link_bw_in_kbps) {
5904 if (dc_dsc_compute_config(dc->res_pool->dscs[0],
5909 dc_link_get_highest_encoding_format(aconnector->dc_link),
5911 stream->timing.dsc_cfg = dsc_cfg;
5912 stream->timing.flags.DSC = 1;
5913 stream->timing.dsc_cfg.bits_per_pixel = edp_max_bpp_x16;
5919 if (dc_dsc_compute_config(dc->res_pool->dscs[0],
5924 dc_link_get_highest_encoding_format(aconnector->dc_link),
5926 stream->timing.dsc_cfg = dsc_cfg;
5927 stream->timing.flags.DSC = 1;
5932 static void apply_dsc_policy_for_stream(struct amdgpu_dm_connector *aconnector,
5933 struct dc_sink *sink, struct dc_stream_state *stream,
5934 struct dsc_dec_dpcd_caps *dsc_caps)
5936 struct drm_connector *drm_connector = &aconnector->base;
5937 u32 link_bandwidth_kbps;
5938 struct dc *dc = sink->ctx->dc;
5939 u32 max_supported_bw_in_kbps, timing_bw_in_kbps;
5940 u32 dsc_max_supported_bw_in_kbps;
5941 u32 max_dsc_target_bpp_limit_override =
5942 drm_connector->display_info.max_dsc_bpp;
5943 struct dc_dsc_config_options dsc_options = {0};
5945 dc_dsc_get_default_config_option(dc, &dsc_options);
5946 dsc_options.max_target_bpp_limit_override_x16 = max_dsc_target_bpp_limit_override * 16;
5948 link_bandwidth_kbps = dc_link_bandwidth_kbps(aconnector->dc_link,
5949 dc_link_get_link_cap(aconnector->dc_link));
5951 /* Set DSC policy according to dsc_clock_en */
5952 dc_dsc_policy_set_enable_dsc_when_not_needed(
5953 aconnector->dsc_settings.dsc_force_enable == DSC_CLK_FORCE_ENABLE);
5955 if (aconnector->dc_link && sink->sink_signal == SIGNAL_TYPE_EDP &&
5956 !aconnector->dc_link->panel_config.dsc.disable_dsc_edp &&
5957 dc->caps.edp_dsc_support && aconnector->dsc_settings.dsc_force_enable != DSC_CLK_FORCE_DISABLE) {
5959 apply_dsc_policy_for_edp(aconnector, sink, stream, dsc_caps, max_dsc_target_bpp_limit_override);
5961 } else if (aconnector->dc_link && sink->sink_signal == SIGNAL_TYPE_DISPLAY_PORT) {
5962 if (sink->link->dpcd_caps.dongle_type == DISPLAY_DONGLE_NONE) {
5963 if (dc_dsc_compute_config(aconnector->dc_link->ctx->dc->res_pool->dscs[0],
5966 link_bandwidth_kbps,
5968 dc_link_get_highest_encoding_format(aconnector->dc_link),
5969 &stream->timing.dsc_cfg)) {
5970 stream->timing.flags.DSC = 1;
5971 DRM_DEBUG_DRIVER("%s: [%s] DSC is selected from SST RX\n", __func__, drm_connector->name);
5973 } else if (sink->link->dpcd_caps.dongle_type == DISPLAY_DONGLE_DP_HDMI_CONVERTER) {
5974 timing_bw_in_kbps = dc_bandwidth_in_kbps_from_timing(&stream->timing,
5975 dc_link_get_highest_encoding_format(aconnector->dc_link));
5976 max_supported_bw_in_kbps = link_bandwidth_kbps;
5977 dsc_max_supported_bw_in_kbps = link_bandwidth_kbps;
5979 if (timing_bw_in_kbps > max_supported_bw_in_kbps &&
5980 max_supported_bw_in_kbps > 0 &&
5981 dsc_max_supported_bw_in_kbps > 0)
5982 if (dc_dsc_compute_config(aconnector->dc_link->ctx->dc->res_pool->dscs[0],
5985 dsc_max_supported_bw_in_kbps,
5987 dc_link_get_highest_encoding_format(aconnector->dc_link),
5988 &stream->timing.dsc_cfg)) {
5989 stream->timing.flags.DSC = 1;
5990 DRM_DEBUG_DRIVER("%s: [%s] DSC is selected from DP-HDMI PCON\n",
5991 __func__, drm_connector->name);
5996 /* Overwrite the stream flag if DSC is enabled through debugfs */
5997 if (aconnector->dsc_settings.dsc_force_enable == DSC_CLK_FORCE_ENABLE)
5998 stream->timing.flags.DSC = 1;
6000 if (stream->timing.flags.DSC && aconnector->dsc_settings.dsc_num_slices_h)
6001 stream->timing.dsc_cfg.num_slices_h = aconnector->dsc_settings.dsc_num_slices_h;
6003 if (stream->timing.flags.DSC && aconnector->dsc_settings.dsc_num_slices_v)
6004 stream->timing.dsc_cfg.num_slices_v = aconnector->dsc_settings.dsc_num_slices_v;
6006 if (stream->timing.flags.DSC && aconnector->dsc_settings.dsc_bits_per_pixel)
6007 stream->timing.dsc_cfg.bits_per_pixel = aconnector->dsc_settings.dsc_bits_per_pixel;
6010 static struct dc_stream_state *
6011 create_stream_for_sink(struct amdgpu_dm_connector *aconnector,
6012 const struct drm_display_mode *drm_mode,
6013 const struct dm_connector_state *dm_state,
6014 const struct dc_stream_state *old_stream,
6017 struct drm_display_mode *preferred_mode = NULL;
6018 struct drm_connector *drm_connector;
6019 const struct drm_connector_state *con_state = &dm_state->base;
6020 struct dc_stream_state *stream = NULL;
6021 struct drm_display_mode mode;
6022 struct drm_display_mode saved_mode;
6023 struct drm_display_mode *freesync_mode = NULL;
6024 bool native_mode_found = false;
6025 bool recalculate_timing = false;
6026 bool scale = dm_state->scaling != RMX_OFF;
6028 int preferred_refresh = 0;
6029 enum color_transfer_func tf = TRANSFER_FUNC_UNKNOWN;
6030 struct dsc_dec_dpcd_caps dsc_caps;
6032 struct dc_sink *sink = NULL;
6034 drm_mode_init(&mode, drm_mode);
6035 memset(&saved_mode, 0, sizeof(saved_mode));
6037 if (aconnector == NULL) {
6038 DRM_ERROR("aconnector is NULL!\n");
6042 drm_connector = &aconnector->base;
6044 if (!aconnector->dc_sink) {
6045 sink = create_fake_sink(aconnector);
6049 sink = aconnector->dc_sink;
6050 dc_sink_retain(sink);
6053 stream = dc_create_stream_for_sink(sink);
6055 if (stream == NULL) {
6056 DRM_ERROR("Failed to create stream for sink!\n");
6060 stream->dm_stream_context = aconnector;
6062 stream->timing.flags.LTE_340MCSC_SCRAMBLE =
6063 drm_connector->display_info.hdmi.scdc.scrambling.low_rates;
6065 list_for_each_entry(preferred_mode, &aconnector->base.modes, head) {
6066 /* Search for preferred mode */
6067 if (preferred_mode->type & DRM_MODE_TYPE_PREFERRED) {
6068 native_mode_found = true;
6072 if (!native_mode_found)
6073 preferred_mode = list_first_entry_or_null(
6074 &aconnector->base.modes,
6075 struct drm_display_mode,
6078 mode_refresh = drm_mode_vrefresh(&mode);
6080 if (preferred_mode == NULL) {
6082 * This may not be an error, the use case is when we have no
6083 * usermode calls to reset and set mode upon hotplug. In this
6084 * case, we call set mode ourselves to restore the previous mode
6085 * and the modelist may not be filled in time.
6087 DRM_DEBUG_DRIVER("No preferred mode found\n");
6089 recalculate_timing = is_freesync_video_mode(&mode, aconnector);
6090 if (recalculate_timing) {
6091 freesync_mode = get_highest_refresh_rate_mode(aconnector, false);
6092 drm_mode_copy(&saved_mode, &mode);
6093 drm_mode_copy(&mode, freesync_mode);
6095 decide_crtc_timing_for_drm_display_mode(
6096 &mode, preferred_mode, scale);
6098 preferred_refresh = drm_mode_vrefresh(preferred_mode);
6102 if (recalculate_timing)
6103 drm_mode_set_crtcinfo(&saved_mode, 0);
6106 * If scaling is enabled and refresh rate didn't change
6107 * we copy the vic and polarities of the old timings
6109 if (!scale || mode_refresh != preferred_refresh)
6110 fill_stream_properties_from_drm_display_mode(
6111 stream, &mode, &aconnector->base, con_state, NULL,
6114 fill_stream_properties_from_drm_display_mode(
6115 stream, &mode, &aconnector->base, con_state, old_stream,
6118 if (aconnector->timing_changed) {
6119 DC_LOG_DEBUG("%s: overriding timing for automated test, bpc %d, changing to %d\n",
6121 stream->timing.display_color_depth,
6122 aconnector->timing_requested->display_color_depth);
6123 stream->timing = *aconnector->timing_requested;
6126 /* SST DSC determination policy */
6127 update_dsc_caps(aconnector, sink, stream, &dsc_caps);
6128 if (aconnector->dsc_settings.dsc_force_enable != DSC_CLK_FORCE_DISABLE && dsc_caps.is_dsc_supported)
6129 apply_dsc_policy_for_stream(aconnector, sink, stream, &dsc_caps);
6131 update_stream_scaling_settings(&mode, dm_state, stream);
6134 &stream->audio_info,
6138 update_stream_signal(stream, sink);
6140 if (stream->signal == SIGNAL_TYPE_HDMI_TYPE_A)
6141 mod_build_hf_vsif_infopacket(stream, &stream->vsp_infopacket);
6142 else if (stream->signal == SIGNAL_TYPE_DISPLAY_PORT ||
6143 stream->signal == SIGNAL_TYPE_DISPLAY_PORT_MST ||
6144 stream->signal == SIGNAL_TYPE_EDP) {
6146 // should decide stream support vsc sdp colorimetry capability
6147 // before building vsc info packet
6149 stream->use_vsc_sdp_for_colorimetry = false;
6150 if (aconnector->dc_sink->sink_signal == SIGNAL_TYPE_DISPLAY_PORT_MST) {
6151 stream->use_vsc_sdp_for_colorimetry =
6152 aconnector->dc_sink->is_vsc_sdp_colorimetry_supported;
6154 if (stream->link->dpcd_caps.dprx_feature.bits.VSC_SDP_COLORIMETRY_SUPPORTED)
6155 stream->use_vsc_sdp_for_colorimetry = true;
6157 if (stream->out_transfer_func->tf == TRANSFER_FUNCTION_GAMMA22)
6158 tf = TRANSFER_FUNC_GAMMA_22;
6159 mod_build_vsc_infopacket(stream, &stream->vsc_infopacket, stream->output_color_space, tf);
6161 if (stream->link->psr_settings.psr_feature_enabled)
6162 aconnector->psr_skip_count = AMDGPU_DM_PSR_ENTRY_DELAY;
6165 dc_sink_release(sink);
6170 static enum drm_connector_status
6171 amdgpu_dm_connector_detect(struct drm_connector *connector, bool force)
6174 struct amdgpu_dm_connector *aconnector = to_amdgpu_dm_connector(connector);
6178 * 1. This interface is NOT called in context of HPD irq.
6179 * 2. This interface *is called* in context of user-mode ioctl. Which
6180 * makes it a bad place for *any* MST-related activity.
6183 if (aconnector->base.force == DRM_FORCE_UNSPECIFIED &&
6184 !aconnector->fake_enable)
6185 connected = (aconnector->dc_sink != NULL);
6187 connected = (aconnector->base.force == DRM_FORCE_ON ||
6188 aconnector->base.force == DRM_FORCE_ON_DIGITAL);
6190 update_subconnector_property(aconnector);
6192 return (connected ? connector_status_connected :
6193 connector_status_disconnected);
6196 int amdgpu_dm_connector_atomic_set_property(struct drm_connector *connector,
6197 struct drm_connector_state *connector_state,
6198 struct drm_property *property,
6201 struct drm_device *dev = connector->dev;
6202 struct amdgpu_device *adev = drm_to_adev(dev);
6203 struct dm_connector_state *dm_old_state =
6204 to_dm_connector_state(connector->state);
6205 struct dm_connector_state *dm_new_state =
6206 to_dm_connector_state(connector_state);
6210 if (property == dev->mode_config.scaling_mode_property) {
6211 enum amdgpu_rmx_type rmx_type;
6214 case DRM_MODE_SCALE_CENTER:
6215 rmx_type = RMX_CENTER;
6217 case DRM_MODE_SCALE_ASPECT:
6218 rmx_type = RMX_ASPECT;
6220 case DRM_MODE_SCALE_FULLSCREEN:
6221 rmx_type = RMX_FULL;
6223 case DRM_MODE_SCALE_NONE:
6229 if (dm_old_state->scaling == rmx_type)
6232 dm_new_state->scaling = rmx_type;
6234 } else if (property == adev->mode_info.underscan_hborder_property) {
6235 dm_new_state->underscan_hborder = val;
6237 } else if (property == adev->mode_info.underscan_vborder_property) {
6238 dm_new_state->underscan_vborder = val;
6240 } else if (property == adev->mode_info.underscan_property) {
6241 dm_new_state->underscan_enable = val;
6243 } else if (property == adev->mode_info.abm_level_property) {
6244 dm_new_state->abm_level = val ?: ABM_LEVEL_IMMEDIATE_DISABLE;
6251 int amdgpu_dm_connector_atomic_get_property(struct drm_connector *connector,
6252 const struct drm_connector_state *state,
6253 struct drm_property *property,
6256 struct drm_device *dev = connector->dev;
6257 struct amdgpu_device *adev = drm_to_adev(dev);
6258 struct dm_connector_state *dm_state =
6259 to_dm_connector_state(state);
6262 if (property == dev->mode_config.scaling_mode_property) {
6263 switch (dm_state->scaling) {
6265 *val = DRM_MODE_SCALE_CENTER;
6268 *val = DRM_MODE_SCALE_ASPECT;
6271 *val = DRM_MODE_SCALE_FULLSCREEN;
6275 *val = DRM_MODE_SCALE_NONE;
6279 } else if (property == adev->mode_info.underscan_hborder_property) {
6280 *val = dm_state->underscan_hborder;
6282 } else if (property == adev->mode_info.underscan_vborder_property) {
6283 *val = dm_state->underscan_vborder;
6285 } else if (property == adev->mode_info.underscan_property) {
6286 *val = dm_state->underscan_enable;
6288 } else if (property == adev->mode_info.abm_level_property) {
6289 *val = (dm_state->abm_level != ABM_LEVEL_IMMEDIATE_DISABLE) ?
6290 dm_state->abm_level : 0;
6297 static void amdgpu_dm_connector_unregister(struct drm_connector *connector)
6299 struct amdgpu_dm_connector *amdgpu_dm_connector = to_amdgpu_dm_connector(connector);
6301 drm_dp_aux_unregister(&amdgpu_dm_connector->dm_dp_aux.aux);
6304 static void amdgpu_dm_connector_destroy(struct drm_connector *connector)
6306 struct amdgpu_dm_connector *aconnector = to_amdgpu_dm_connector(connector);
6307 struct amdgpu_device *adev = drm_to_adev(connector->dev);
6308 struct amdgpu_display_manager *dm = &adev->dm;
6311 * Call only if mst_mgr was initialized before since it's not done
6312 * for all connector types.
6314 if (aconnector->mst_mgr.dev)
6315 drm_dp_mst_topology_mgr_destroy(&aconnector->mst_mgr);
6317 if (aconnector->bl_idx != -1) {
6318 backlight_device_unregister(dm->backlight_dev[aconnector->bl_idx]);
6319 dm->backlight_dev[aconnector->bl_idx] = NULL;
6322 if (aconnector->dc_em_sink)
6323 dc_sink_release(aconnector->dc_em_sink);
6324 aconnector->dc_em_sink = NULL;
6325 if (aconnector->dc_sink)
6326 dc_sink_release(aconnector->dc_sink);
6327 aconnector->dc_sink = NULL;
6329 drm_dp_cec_unregister_connector(&aconnector->dm_dp_aux.aux);
6330 drm_connector_unregister(connector);
6331 drm_connector_cleanup(connector);
6332 if (aconnector->i2c) {
6333 i2c_del_adapter(&aconnector->i2c->base);
6334 kfree(aconnector->i2c);
6336 kfree(aconnector->dm_dp_aux.aux.name);
6341 void amdgpu_dm_connector_funcs_reset(struct drm_connector *connector)
6343 struct dm_connector_state *state =
6344 to_dm_connector_state(connector->state);
6346 if (connector->state)
6347 __drm_atomic_helper_connector_destroy_state(connector->state);
6351 state = kzalloc(sizeof(*state), GFP_KERNEL);
6354 state->scaling = RMX_OFF;
6355 state->underscan_enable = false;
6356 state->underscan_hborder = 0;
6357 state->underscan_vborder = 0;
6358 state->base.max_requested_bpc = 8;
6359 state->vcpi_slots = 0;
6362 if (connector->connector_type == DRM_MODE_CONNECTOR_eDP)
6363 state->abm_level = amdgpu_dm_abm_level ?:
6364 ABM_LEVEL_IMMEDIATE_DISABLE;
6366 __drm_atomic_helper_connector_reset(connector, &state->base);
6370 struct drm_connector_state *
6371 amdgpu_dm_connector_atomic_duplicate_state(struct drm_connector *connector)
6373 struct dm_connector_state *state =
6374 to_dm_connector_state(connector->state);
6376 struct dm_connector_state *new_state =
6377 kmemdup(state, sizeof(*state), GFP_KERNEL);
6382 __drm_atomic_helper_connector_duplicate_state(connector, &new_state->base);
6384 new_state->freesync_capable = state->freesync_capable;
6385 new_state->abm_level = state->abm_level;
6386 new_state->scaling = state->scaling;
6387 new_state->underscan_enable = state->underscan_enable;
6388 new_state->underscan_hborder = state->underscan_hborder;
6389 new_state->underscan_vborder = state->underscan_vborder;
6390 new_state->vcpi_slots = state->vcpi_slots;
6391 new_state->pbn = state->pbn;
6392 return &new_state->base;
6396 amdgpu_dm_connector_late_register(struct drm_connector *connector)
6398 struct amdgpu_dm_connector *amdgpu_dm_connector =
6399 to_amdgpu_dm_connector(connector);
6402 amdgpu_dm_register_backlight_device(amdgpu_dm_connector);
6404 if ((connector->connector_type == DRM_MODE_CONNECTOR_DisplayPort) ||
6405 (connector->connector_type == DRM_MODE_CONNECTOR_eDP)) {
6406 amdgpu_dm_connector->dm_dp_aux.aux.dev = connector->kdev;
6407 r = drm_dp_aux_register(&amdgpu_dm_connector->dm_dp_aux.aux);
6412 #if defined(CONFIG_DEBUG_FS)
6413 connector_debugfs_init(amdgpu_dm_connector);
6419 static void amdgpu_dm_connector_funcs_force(struct drm_connector *connector)
6421 struct amdgpu_dm_connector *aconnector = to_amdgpu_dm_connector(connector);
6422 struct dc_link *dc_link = aconnector->dc_link;
6423 struct dc_sink *dc_em_sink = aconnector->dc_em_sink;
6426 if (!connector->edid_override)
6429 drm_edid_override_connector_update(&aconnector->base);
6430 edid = aconnector->base.edid_blob_ptr->data;
6431 aconnector->edid = edid;
6433 /* Update emulated (virtual) sink's EDID */
6434 if (dc_em_sink && dc_link) {
6435 memset(&dc_em_sink->edid_caps, 0, sizeof(struct dc_edid_caps));
6436 memmove(dc_em_sink->dc_edid.raw_edid, edid, (edid->extensions + 1) * EDID_LENGTH);
6437 dm_helpers_parse_edid_caps(
6439 &dc_em_sink->dc_edid,
6440 &dc_em_sink->edid_caps);
6444 static const struct drm_connector_funcs amdgpu_dm_connector_funcs = {
6445 .reset = amdgpu_dm_connector_funcs_reset,
6446 .detect = amdgpu_dm_connector_detect,
6447 .fill_modes = drm_helper_probe_single_connector_modes,
6448 .destroy = amdgpu_dm_connector_destroy,
6449 .atomic_duplicate_state = amdgpu_dm_connector_atomic_duplicate_state,
6450 .atomic_destroy_state = drm_atomic_helper_connector_destroy_state,
6451 .atomic_set_property = amdgpu_dm_connector_atomic_set_property,
6452 .atomic_get_property = amdgpu_dm_connector_atomic_get_property,
6453 .late_register = amdgpu_dm_connector_late_register,
6454 .early_unregister = amdgpu_dm_connector_unregister,
6455 .force = amdgpu_dm_connector_funcs_force
6458 static int get_modes(struct drm_connector *connector)
6460 return amdgpu_dm_connector_get_modes(connector);
6463 static void create_eml_sink(struct amdgpu_dm_connector *aconnector)
6465 struct dc_sink_init_data init_params = {
6466 .link = aconnector->dc_link,
6467 .sink_signal = SIGNAL_TYPE_VIRTUAL
6471 if (!aconnector->base.edid_blob_ptr) {
6472 /* if connector->edid_override valid, pass
6473 * it to edid_override to edid_blob_ptr
6476 drm_edid_override_connector_update(&aconnector->base);
6478 if (!aconnector->base.edid_blob_ptr) {
6479 DRM_ERROR("No EDID firmware found on connector: %s ,forcing to OFF!\n",
6480 aconnector->base.name);
6482 aconnector->base.force = DRM_FORCE_OFF;
6487 edid = (struct edid *) aconnector->base.edid_blob_ptr->data;
6489 aconnector->edid = edid;
6491 aconnector->dc_em_sink = dc_link_add_remote_sink(
6492 aconnector->dc_link,
6494 (edid->extensions + 1) * EDID_LENGTH,
6497 if (aconnector->base.force == DRM_FORCE_ON) {
6498 aconnector->dc_sink = aconnector->dc_link->local_sink ?
6499 aconnector->dc_link->local_sink :
6500 aconnector->dc_em_sink;
6501 dc_sink_retain(aconnector->dc_sink);
6505 static void handle_edid_mgmt(struct amdgpu_dm_connector *aconnector)
6507 struct dc_link *link = (struct dc_link *)aconnector->dc_link;
6510 * In case of headless boot with force on for DP managed connector
6511 * Those settings have to be != 0 to get initial modeset
6513 if (link->connector_signal == SIGNAL_TYPE_DISPLAY_PORT) {
6514 link->verified_link_cap.lane_count = LANE_COUNT_FOUR;
6515 link->verified_link_cap.link_rate = LINK_RATE_HIGH2;
6518 create_eml_sink(aconnector);
6521 static enum dc_status dm_validate_stream_and_context(struct dc *dc,
6522 struct dc_stream_state *stream)
6524 enum dc_status dc_result = DC_ERROR_UNEXPECTED;
6525 struct dc_plane_state *dc_plane_state = NULL;
6526 struct dc_state *dc_state = NULL;
6531 dc_plane_state = dc_create_plane_state(dc);
6532 if (!dc_plane_state)
6535 dc_state = dc_create_state(dc);
6539 /* populate stream to plane */
6540 dc_plane_state->src_rect.height = stream->src.height;
6541 dc_plane_state->src_rect.width = stream->src.width;
6542 dc_plane_state->dst_rect.height = stream->src.height;
6543 dc_plane_state->dst_rect.width = stream->src.width;
6544 dc_plane_state->clip_rect.height = stream->src.height;
6545 dc_plane_state->clip_rect.width = stream->src.width;
6546 dc_plane_state->plane_size.surface_pitch = ((stream->src.width + 255) / 256) * 256;
6547 dc_plane_state->plane_size.surface_size.height = stream->src.height;
6548 dc_plane_state->plane_size.surface_size.width = stream->src.width;
6549 dc_plane_state->plane_size.chroma_size.height = stream->src.height;
6550 dc_plane_state->plane_size.chroma_size.width = stream->src.width;
6551 dc_plane_state->format = SURFACE_PIXEL_FORMAT_GRPH_ARGB8888;
6552 dc_plane_state->tiling_info.gfx9.swizzle = DC_SW_UNKNOWN;
6553 dc_plane_state->rotation = ROTATION_ANGLE_0;
6554 dc_plane_state->is_tiling_rotated = false;
6555 dc_plane_state->tiling_info.gfx8.array_mode = DC_ARRAY_LINEAR_GENERAL;
6557 dc_result = dc_validate_stream(dc, stream);
6558 if (dc_result == DC_OK)
6559 dc_result = dc_validate_plane(dc, dc_plane_state);
6561 if (dc_result == DC_OK)
6562 dc_result = dc_add_stream_to_ctx(dc, dc_state, stream);
6564 if (dc_result == DC_OK && !dc_add_plane_to_context(
6569 dc_result = DC_FAIL_ATTACH_SURFACES;
6571 if (dc_result == DC_OK)
6572 dc_result = dc_validate_global_state(dc, dc_state, true);
6576 dc_release_state(dc_state);
6579 dc_plane_state_release(dc_plane_state);
6584 struct dc_stream_state *
6585 create_validate_stream_for_sink(struct amdgpu_dm_connector *aconnector,
6586 const struct drm_display_mode *drm_mode,
6587 const struct dm_connector_state *dm_state,
6588 const struct dc_stream_state *old_stream)
6590 struct drm_connector *connector = &aconnector->base;
6591 struct amdgpu_device *adev = drm_to_adev(connector->dev);
6592 struct dc_stream_state *stream;
6593 const struct drm_connector_state *drm_state = dm_state ? &dm_state->base : NULL;
6594 int requested_bpc = drm_state ? drm_state->max_requested_bpc : 8;
6595 enum dc_status dc_result = DC_OK;
6598 stream = create_stream_for_sink(aconnector, drm_mode,
6599 dm_state, old_stream,
6601 if (stream == NULL) {
6602 DRM_ERROR("Failed to create stream for sink!\n");
6606 dc_result = dc_validate_stream(adev->dm.dc, stream);
6607 if (dc_result == DC_OK && stream->signal == SIGNAL_TYPE_DISPLAY_PORT_MST)
6608 dc_result = dm_dp_mst_is_port_support_mode(aconnector, stream);
6610 if (dc_result == DC_OK)
6611 dc_result = dm_validate_stream_and_context(adev->dm.dc, stream);
6613 if (dc_result != DC_OK) {
6614 DRM_DEBUG_KMS("Mode %dx%d (clk %d) failed DC validation with error %d (%s)\n",
6619 dc_status_to_str(dc_result));
6621 dc_stream_release(stream);
6623 requested_bpc -= 2; /* lower bpc to retry validation */
6626 } while (stream == NULL && requested_bpc >= 6);
6628 if (dc_result == DC_FAIL_ENC_VALIDATE && !aconnector->force_yuv420_output) {
6629 DRM_DEBUG_KMS("Retry forcing YCbCr420 encoding\n");
6631 aconnector->force_yuv420_output = true;
6632 stream = create_validate_stream_for_sink(aconnector, drm_mode,
6633 dm_state, old_stream);
6634 aconnector->force_yuv420_output = false;
6640 enum drm_mode_status amdgpu_dm_connector_mode_valid(struct drm_connector *connector,
6641 struct drm_display_mode *mode)
6643 int result = MODE_ERROR;
6644 struct dc_sink *dc_sink;
6645 /* TODO: Unhardcode stream count */
6646 struct dc_stream_state *stream;
6647 struct amdgpu_dm_connector *aconnector = to_amdgpu_dm_connector(connector);
6649 if ((mode->flags & DRM_MODE_FLAG_INTERLACE) ||
6650 (mode->flags & DRM_MODE_FLAG_DBLSCAN))
6654 * Only run this the first time mode_valid is called to initilialize
6657 if (aconnector->base.force != DRM_FORCE_UNSPECIFIED &&
6658 !aconnector->dc_em_sink)
6659 handle_edid_mgmt(aconnector);
6661 dc_sink = to_amdgpu_dm_connector(connector)->dc_sink;
6663 if (dc_sink == NULL && aconnector->base.force != DRM_FORCE_ON_DIGITAL &&
6664 aconnector->base.force != DRM_FORCE_ON) {
6665 DRM_ERROR("dc_sink is NULL!\n");
6669 drm_mode_set_crtcinfo(mode, 0);
6671 stream = create_validate_stream_for_sink(aconnector, mode,
6672 to_dm_connector_state(connector->state),
6675 dc_stream_release(stream);
6680 /* TODO: error handling*/
6684 static int fill_hdr_info_packet(const struct drm_connector_state *state,
6685 struct dc_info_packet *out)
6687 struct hdmi_drm_infoframe frame;
6688 unsigned char buf[30]; /* 26 + 4 */
6692 memset(out, 0, sizeof(*out));
6694 if (!state->hdr_output_metadata)
6697 ret = drm_hdmi_infoframe_set_hdr_metadata(&frame, state);
6701 len = hdmi_drm_infoframe_pack_only(&frame, buf, sizeof(buf));
6705 /* Static metadata is a fixed 26 bytes + 4 byte header. */
6709 /* Prepare the infopacket for DC. */
6710 switch (state->connector->connector_type) {
6711 case DRM_MODE_CONNECTOR_HDMIA:
6712 out->hb0 = 0x87; /* type */
6713 out->hb1 = 0x01; /* version */
6714 out->hb2 = 0x1A; /* length */
6715 out->sb[0] = buf[3]; /* checksum */
6719 case DRM_MODE_CONNECTOR_DisplayPort:
6720 case DRM_MODE_CONNECTOR_eDP:
6721 out->hb0 = 0x00; /* sdp id, zero */
6722 out->hb1 = 0x87; /* type */
6723 out->hb2 = 0x1D; /* payload len - 1 */
6724 out->hb3 = (0x13 << 2); /* sdp version */
6725 out->sb[0] = 0x01; /* version */
6726 out->sb[1] = 0x1A; /* length */
6734 memcpy(&out->sb[i], &buf[4], 26);
6737 print_hex_dump(KERN_DEBUG, "HDR SB:", DUMP_PREFIX_NONE, 16, 1, out->sb,
6738 sizeof(out->sb), false);
6744 amdgpu_dm_connector_atomic_check(struct drm_connector *conn,
6745 struct drm_atomic_state *state)
6747 struct drm_connector_state *new_con_state =
6748 drm_atomic_get_new_connector_state(state, conn);
6749 struct drm_connector_state *old_con_state =
6750 drm_atomic_get_old_connector_state(state, conn);
6751 struct drm_crtc *crtc = new_con_state->crtc;
6752 struct drm_crtc_state *new_crtc_state;
6753 struct amdgpu_dm_connector *aconn = to_amdgpu_dm_connector(conn);
6756 trace_amdgpu_dm_connector_atomic_check(new_con_state);
6758 if (conn->connector_type == DRM_MODE_CONNECTOR_DisplayPort) {
6759 ret = drm_dp_mst_root_conn_atomic_check(new_con_state, &aconn->mst_mgr);
6767 if (new_con_state->colorspace != old_con_state->colorspace) {
6768 new_crtc_state = drm_atomic_get_crtc_state(state, crtc);
6769 if (IS_ERR(new_crtc_state))
6770 return PTR_ERR(new_crtc_state);
6772 new_crtc_state->mode_changed = true;
6775 if (!drm_connector_atomic_hdr_metadata_equal(old_con_state, new_con_state)) {
6776 struct dc_info_packet hdr_infopacket;
6778 ret = fill_hdr_info_packet(new_con_state, &hdr_infopacket);
6782 new_crtc_state = drm_atomic_get_crtc_state(state, crtc);
6783 if (IS_ERR(new_crtc_state))
6784 return PTR_ERR(new_crtc_state);
6787 * DC considers the stream backends changed if the
6788 * static metadata changes. Forcing the modeset also
6789 * gives a simple way for userspace to switch from
6790 * 8bpc to 10bpc when setting the metadata to enter
6793 * Changing the static metadata after it's been
6794 * set is permissible, however. So only force a
6795 * modeset if we're entering or exiting HDR.
6797 new_crtc_state->mode_changed = new_crtc_state->mode_changed ||
6798 !old_con_state->hdr_output_metadata ||
6799 !new_con_state->hdr_output_metadata;
6805 static const struct drm_connector_helper_funcs
6806 amdgpu_dm_connector_helper_funcs = {
6808 * If hotplugging a second bigger display in FB Con mode, bigger resolution
6809 * modes will be filtered by drm_mode_validate_size(), and those modes
6810 * are missing after user start lightdm. So we need to renew modes list.
6811 * in get_modes call back, not just return the modes count
6813 .get_modes = get_modes,
6814 .mode_valid = amdgpu_dm_connector_mode_valid,
6815 .atomic_check = amdgpu_dm_connector_atomic_check,
6818 static void dm_encoder_helper_disable(struct drm_encoder *encoder)
6823 int convert_dc_color_depth_into_bpc(enum dc_color_depth display_color_depth)
6825 switch (display_color_depth) {
6826 case COLOR_DEPTH_666:
6828 case COLOR_DEPTH_888:
6830 case COLOR_DEPTH_101010:
6832 case COLOR_DEPTH_121212:
6834 case COLOR_DEPTH_141414:
6836 case COLOR_DEPTH_161616:
6844 static int dm_encoder_helper_atomic_check(struct drm_encoder *encoder,
6845 struct drm_crtc_state *crtc_state,
6846 struct drm_connector_state *conn_state)
6848 struct drm_atomic_state *state = crtc_state->state;
6849 struct drm_connector *connector = conn_state->connector;
6850 struct amdgpu_dm_connector *aconnector = to_amdgpu_dm_connector(connector);
6851 struct dm_connector_state *dm_new_connector_state = to_dm_connector_state(conn_state);
6852 const struct drm_display_mode *adjusted_mode = &crtc_state->adjusted_mode;
6853 struct drm_dp_mst_topology_mgr *mst_mgr;
6854 struct drm_dp_mst_port *mst_port;
6855 struct drm_dp_mst_topology_state *mst_state;
6856 enum dc_color_depth color_depth;
6858 bool is_y420 = false;
6860 if (!aconnector->mst_output_port)
6863 mst_port = aconnector->mst_output_port;
6864 mst_mgr = &aconnector->mst_root->mst_mgr;
6866 if (!crtc_state->connectors_changed && !crtc_state->mode_changed)
6869 mst_state = drm_atomic_get_mst_topology_state(state, mst_mgr);
6870 if (IS_ERR(mst_state))
6871 return PTR_ERR(mst_state);
6873 mst_state->pbn_div = dm_mst_get_pbn_divider(aconnector->mst_root->dc_link);
6875 if (!state->duplicated) {
6876 int max_bpc = conn_state->max_requested_bpc;
6878 is_y420 = drm_mode_is_420_also(&connector->display_info, adjusted_mode) &&
6879 aconnector->force_yuv420_output;
6880 color_depth = convert_color_depth_from_display_info(connector,
6883 bpp = convert_dc_color_depth_into_bpc(color_depth) * 3;
6884 clock = adjusted_mode->clock;
6885 dm_new_connector_state->pbn = drm_dp_calc_pbn_mode(clock, bpp, false);
6888 dm_new_connector_state->vcpi_slots =
6889 drm_dp_atomic_find_time_slots(state, mst_mgr, mst_port,
6890 dm_new_connector_state->pbn);
6891 if (dm_new_connector_state->vcpi_slots < 0) {
6892 DRM_DEBUG_ATOMIC("failed finding vcpi slots: %d\n", (int)dm_new_connector_state->vcpi_slots);
6893 return dm_new_connector_state->vcpi_slots;
6898 const struct drm_encoder_helper_funcs amdgpu_dm_encoder_helper_funcs = {
6899 .disable = dm_encoder_helper_disable,
6900 .atomic_check = dm_encoder_helper_atomic_check
6903 static int dm_update_mst_vcpi_slots_for_dsc(struct drm_atomic_state *state,
6904 struct dc_state *dc_state,
6905 struct dsc_mst_fairness_vars *vars)
6907 struct dc_stream_state *stream = NULL;
6908 struct drm_connector *connector;
6909 struct drm_connector_state *new_con_state;
6910 struct amdgpu_dm_connector *aconnector;
6911 struct dm_connector_state *dm_conn_state;
6913 int vcpi, pbn_div, pbn, slot_num = 0;
6915 for_each_new_connector_in_state(state, connector, new_con_state, i) {
6917 aconnector = to_amdgpu_dm_connector(connector);
6919 if (!aconnector->mst_output_port)
6922 if (!new_con_state || !new_con_state->crtc)
6925 dm_conn_state = to_dm_connector_state(new_con_state);
6927 for (j = 0; j < dc_state->stream_count; j++) {
6928 stream = dc_state->streams[j];
6932 if ((struct amdgpu_dm_connector *)stream->dm_stream_context == aconnector)
6941 pbn_div = dm_mst_get_pbn_divider(stream->link);
6942 /* pbn is calculated by compute_mst_dsc_configs_for_state*/
6943 for (j = 0; j < dc_state->stream_count; j++) {
6944 if (vars[j].aconnector == aconnector) {
6950 if (j == dc_state->stream_count)
6953 slot_num = DIV_ROUND_UP(pbn, pbn_div);
6955 if (stream->timing.flags.DSC != 1) {
6956 dm_conn_state->pbn = pbn;
6957 dm_conn_state->vcpi_slots = slot_num;
6959 ret = drm_dp_mst_atomic_enable_dsc(state, aconnector->mst_output_port,
6960 dm_conn_state->pbn, false);
6967 vcpi = drm_dp_mst_atomic_enable_dsc(state, aconnector->mst_output_port, pbn, true);
6971 dm_conn_state->pbn = pbn;
6972 dm_conn_state->vcpi_slots = vcpi;
6977 static int to_drm_connector_type(enum signal_type st)
6980 case SIGNAL_TYPE_HDMI_TYPE_A:
6981 return DRM_MODE_CONNECTOR_HDMIA;
6982 case SIGNAL_TYPE_EDP:
6983 return DRM_MODE_CONNECTOR_eDP;
6984 case SIGNAL_TYPE_LVDS:
6985 return DRM_MODE_CONNECTOR_LVDS;
6986 case SIGNAL_TYPE_RGB:
6987 return DRM_MODE_CONNECTOR_VGA;
6988 case SIGNAL_TYPE_DISPLAY_PORT:
6989 case SIGNAL_TYPE_DISPLAY_PORT_MST:
6990 return DRM_MODE_CONNECTOR_DisplayPort;
6991 case SIGNAL_TYPE_DVI_DUAL_LINK:
6992 case SIGNAL_TYPE_DVI_SINGLE_LINK:
6993 return DRM_MODE_CONNECTOR_DVID;
6994 case SIGNAL_TYPE_VIRTUAL:
6995 return DRM_MODE_CONNECTOR_VIRTUAL;
6998 return DRM_MODE_CONNECTOR_Unknown;
7002 static struct drm_encoder *amdgpu_dm_connector_to_encoder(struct drm_connector *connector)
7004 struct drm_encoder *encoder;
7006 /* There is only one encoder per connector */
7007 drm_connector_for_each_possible_encoder(connector, encoder)
7013 static void amdgpu_dm_get_native_mode(struct drm_connector *connector)
7015 struct drm_encoder *encoder;
7016 struct amdgpu_encoder *amdgpu_encoder;
7018 encoder = amdgpu_dm_connector_to_encoder(connector);
7020 if (encoder == NULL)
7023 amdgpu_encoder = to_amdgpu_encoder(encoder);
7025 amdgpu_encoder->native_mode.clock = 0;
7027 if (!list_empty(&connector->probed_modes)) {
7028 struct drm_display_mode *preferred_mode = NULL;
7030 list_for_each_entry(preferred_mode,
7031 &connector->probed_modes,
7033 if (preferred_mode->type & DRM_MODE_TYPE_PREFERRED)
7034 amdgpu_encoder->native_mode = *preferred_mode;
7042 static struct drm_display_mode *
7043 amdgpu_dm_create_common_mode(struct drm_encoder *encoder,
7045 int hdisplay, int vdisplay)
7047 struct drm_device *dev = encoder->dev;
7048 struct amdgpu_encoder *amdgpu_encoder = to_amdgpu_encoder(encoder);
7049 struct drm_display_mode *mode = NULL;
7050 struct drm_display_mode *native_mode = &amdgpu_encoder->native_mode;
7052 mode = drm_mode_duplicate(dev, native_mode);
7057 mode->hdisplay = hdisplay;
7058 mode->vdisplay = vdisplay;
7059 mode->type &= ~DRM_MODE_TYPE_PREFERRED;
7060 strscpy(mode->name, name, DRM_DISPLAY_MODE_LEN);
7066 static void amdgpu_dm_connector_add_common_modes(struct drm_encoder *encoder,
7067 struct drm_connector *connector)
7069 struct amdgpu_encoder *amdgpu_encoder = to_amdgpu_encoder(encoder);
7070 struct drm_display_mode *mode = NULL;
7071 struct drm_display_mode *native_mode = &amdgpu_encoder->native_mode;
7072 struct amdgpu_dm_connector *amdgpu_dm_connector =
7073 to_amdgpu_dm_connector(connector);
7077 char name[DRM_DISPLAY_MODE_LEN];
7080 } common_modes[] = {
7081 { "640x480", 640, 480},
7082 { "800x600", 800, 600},
7083 { "1024x768", 1024, 768},
7084 { "1280x720", 1280, 720},
7085 { "1280x800", 1280, 800},
7086 {"1280x1024", 1280, 1024},
7087 { "1440x900", 1440, 900},
7088 {"1680x1050", 1680, 1050},
7089 {"1600x1200", 1600, 1200},
7090 {"1920x1080", 1920, 1080},
7091 {"1920x1200", 1920, 1200}
7094 n = ARRAY_SIZE(common_modes);
7096 for (i = 0; i < n; i++) {
7097 struct drm_display_mode *curmode = NULL;
7098 bool mode_existed = false;
7100 if (common_modes[i].w > native_mode->hdisplay ||
7101 common_modes[i].h > native_mode->vdisplay ||
7102 (common_modes[i].w == native_mode->hdisplay &&
7103 common_modes[i].h == native_mode->vdisplay))
7106 list_for_each_entry(curmode, &connector->probed_modes, head) {
7107 if (common_modes[i].w == curmode->hdisplay &&
7108 common_modes[i].h == curmode->vdisplay) {
7109 mode_existed = true;
7117 mode = amdgpu_dm_create_common_mode(encoder,
7118 common_modes[i].name, common_modes[i].w,
7123 drm_mode_probed_add(connector, mode);
7124 amdgpu_dm_connector->num_modes++;
7128 static void amdgpu_set_panel_orientation(struct drm_connector *connector)
7130 struct drm_encoder *encoder;
7131 struct amdgpu_encoder *amdgpu_encoder;
7132 const struct drm_display_mode *native_mode;
7134 if (connector->connector_type != DRM_MODE_CONNECTOR_eDP &&
7135 connector->connector_type != DRM_MODE_CONNECTOR_LVDS)
7138 mutex_lock(&connector->dev->mode_config.mutex);
7139 amdgpu_dm_connector_get_modes(connector);
7140 mutex_unlock(&connector->dev->mode_config.mutex);
7142 encoder = amdgpu_dm_connector_to_encoder(connector);
7146 amdgpu_encoder = to_amdgpu_encoder(encoder);
7148 native_mode = &amdgpu_encoder->native_mode;
7149 if (native_mode->hdisplay == 0 || native_mode->vdisplay == 0)
7152 drm_connector_set_panel_orientation_with_quirk(connector,
7153 DRM_MODE_PANEL_ORIENTATION_UNKNOWN,
7154 native_mode->hdisplay,
7155 native_mode->vdisplay);
7158 static void amdgpu_dm_connector_ddc_get_modes(struct drm_connector *connector,
7161 struct amdgpu_dm_connector *amdgpu_dm_connector =
7162 to_amdgpu_dm_connector(connector);
7165 /* empty probed_modes */
7166 INIT_LIST_HEAD(&connector->probed_modes);
7167 amdgpu_dm_connector->num_modes =
7168 drm_add_edid_modes(connector, edid);
7170 /* sorting the probed modes before calling function
7171 * amdgpu_dm_get_native_mode() since EDID can have
7172 * more than one preferred mode. The modes that are
7173 * later in the probed mode list could be of higher
7174 * and preferred resolution. For example, 3840x2160
7175 * resolution in base EDID preferred timing and 4096x2160
7176 * preferred resolution in DID extension block later.
7178 drm_mode_sort(&connector->probed_modes);
7179 amdgpu_dm_get_native_mode(connector);
7181 /* Freesync capabilities are reset by calling
7182 * drm_add_edid_modes() and need to be
7185 amdgpu_dm_update_freesync_caps(connector, edid);
7187 amdgpu_dm_connector->num_modes = 0;
7191 static bool is_duplicate_mode(struct amdgpu_dm_connector *aconnector,
7192 struct drm_display_mode *mode)
7194 struct drm_display_mode *m;
7196 list_for_each_entry(m, &aconnector->base.probed_modes, head) {
7197 if (drm_mode_equal(m, mode))
7204 static uint add_fs_modes(struct amdgpu_dm_connector *aconnector)
7206 const struct drm_display_mode *m;
7207 struct drm_display_mode *new_mode;
7209 u32 new_modes_count = 0;
7211 /* Standard FPS values
7220 * 60 - Commonly used
7221 * 48,72,96,120 - Multiples of 24
7223 static const u32 common_rates[] = {
7224 23976, 24000, 25000, 29970, 30000,
7225 48000, 50000, 60000, 72000, 96000, 120000
7229 * Find mode with highest refresh rate with the same resolution
7230 * as the preferred mode. Some monitors report a preferred mode
7231 * with lower resolution than the highest refresh rate supported.
7234 m = get_highest_refresh_rate_mode(aconnector, true);
7238 for (i = 0; i < ARRAY_SIZE(common_rates); i++) {
7239 u64 target_vtotal, target_vtotal_diff;
7242 if (drm_mode_vrefresh(m) * 1000 < common_rates[i])
7245 if (common_rates[i] < aconnector->min_vfreq * 1000 ||
7246 common_rates[i] > aconnector->max_vfreq * 1000)
7249 num = (unsigned long long)m->clock * 1000 * 1000;
7250 den = common_rates[i] * (unsigned long long)m->htotal;
7251 target_vtotal = div_u64(num, den);
7252 target_vtotal_diff = target_vtotal - m->vtotal;
7254 /* Check for illegal modes */
7255 if (m->vsync_start + target_vtotal_diff < m->vdisplay ||
7256 m->vsync_end + target_vtotal_diff < m->vsync_start ||
7257 m->vtotal + target_vtotal_diff < m->vsync_end)
7260 new_mode = drm_mode_duplicate(aconnector->base.dev, m);
7264 new_mode->vtotal += (u16)target_vtotal_diff;
7265 new_mode->vsync_start += (u16)target_vtotal_diff;
7266 new_mode->vsync_end += (u16)target_vtotal_diff;
7267 new_mode->type &= ~DRM_MODE_TYPE_PREFERRED;
7268 new_mode->type |= DRM_MODE_TYPE_DRIVER;
7270 if (!is_duplicate_mode(aconnector, new_mode)) {
7271 drm_mode_probed_add(&aconnector->base, new_mode);
7272 new_modes_count += 1;
7274 drm_mode_destroy(aconnector->base.dev, new_mode);
7277 return new_modes_count;
7280 static void amdgpu_dm_connector_add_freesync_modes(struct drm_connector *connector,
7283 struct amdgpu_dm_connector *amdgpu_dm_connector =
7284 to_amdgpu_dm_connector(connector);
7289 if (amdgpu_dm_connector->max_vfreq - amdgpu_dm_connector->min_vfreq > 10)
7290 amdgpu_dm_connector->num_modes +=
7291 add_fs_modes(amdgpu_dm_connector);
7294 static int amdgpu_dm_connector_get_modes(struct drm_connector *connector)
7296 struct amdgpu_dm_connector *amdgpu_dm_connector =
7297 to_amdgpu_dm_connector(connector);
7298 struct drm_encoder *encoder;
7299 struct edid *edid = amdgpu_dm_connector->edid;
7300 struct dc_link_settings *verified_link_cap =
7301 &amdgpu_dm_connector->dc_link->verified_link_cap;
7302 const struct dc *dc = amdgpu_dm_connector->dc_link->dc;
7304 encoder = amdgpu_dm_connector_to_encoder(connector);
7306 if (!drm_edid_is_valid(edid)) {
7307 amdgpu_dm_connector->num_modes =
7308 drm_add_modes_noedid(connector, 640, 480);
7309 if (dc->link_srv->dp_get_encoding_format(verified_link_cap) == DP_128b_132b_ENCODING)
7310 amdgpu_dm_connector->num_modes +=
7311 drm_add_modes_noedid(connector, 1920, 1080);
7313 amdgpu_dm_connector_ddc_get_modes(connector, edid);
7314 amdgpu_dm_connector_add_common_modes(encoder, connector);
7315 amdgpu_dm_connector_add_freesync_modes(connector, edid);
7317 amdgpu_dm_fbc_init(connector);
7319 return amdgpu_dm_connector->num_modes;
7322 static const u32 supported_colorspaces =
7323 BIT(DRM_MODE_COLORIMETRY_BT709_YCC) |
7324 BIT(DRM_MODE_COLORIMETRY_OPRGB) |
7325 BIT(DRM_MODE_COLORIMETRY_BT2020_RGB) |
7326 BIT(DRM_MODE_COLORIMETRY_BT2020_YCC);
7328 void amdgpu_dm_connector_init_helper(struct amdgpu_display_manager *dm,
7329 struct amdgpu_dm_connector *aconnector,
7331 struct dc_link *link,
7334 struct amdgpu_device *adev = drm_to_adev(dm->ddev);
7337 * Some of the properties below require access to state, like bpc.
7338 * Allocate some default initial connector state with our reset helper.
7340 if (aconnector->base.funcs->reset)
7341 aconnector->base.funcs->reset(&aconnector->base);
7343 aconnector->connector_id = link_index;
7344 aconnector->bl_idx = -1;
7345 aconnector->dc_link = link;
7346 aconnector->base.interlace_allowed = false;
7347 aconnector->base.doublescan_allowed = false;
7348 aconnector->base.stereo_allowed = false;
7349 aconnector->base.dpms = DRM_MODE_DPMS_OFF;
7350 aconnector->hpd.hpd = AMDGPU_HPD_NONE; /* not used */
7351 aconnector->audio_inst = -1;
7352 aconnector->pack_sdp_v1_3 = false;
7353 aconnector->as_type = ADAPTIVE_SYNC_TYPE_NONE;
7354 memset(&aconnector->vsdb_info, 0, sizeof(aconnector->vsdb_info));
7355 mutex_init(&aconnector->hpd_lock);
7356 mutex_init(&aconnector->handle_mst_msg_ready);
7359 * configure support HPD hot plug connector_>polled default value is 0
7360 * which means HPD hot plug not supported
7362 switch (connector_type) {
7363 case DRM_MODE_CONNECTOR_HDMIA:
7364 aconnector->base.polled = DRM_CONNECTOR_POLL_HPD;
7365 aconnector->base.ycbcr_420_allowed =
7366 link->link_enc->features.hdmi_ycbcr420_supported ? true : false;
7368 case DRM_MODE_CONNECTOR_DisplayPort:
7369 aconnector->base.polled = DRM_CONNECTOR_POLL_HPD;
7370 link->link_enc = link_enc_cfg_get_link_enc(link);
7371 ASSERT(link->link_enc);
7373 aconnector->base.ycbcr_420_allowed =
7374 link->link_enc->features.dp_ycbcr420_supported ? true : false;
7376 case DRM_MODE_CONNECTOR_DVID:
7377 aconnector->base.polled = DRM_CONNECTOR_POLL_HPD;
7383 drm_object_attach_property(&aconnector->base.base,
7384 dm->ddev->mode_config.scaling_mode_property,
7385 DRM_MODE_SCALE_NONE);
7387 drm_object_attach_property(&aconnector->base.base,
7388 adev->mode_info.underscan_property,
7390 drm_object_attach_property(&aconnector->base.base,
7391 adev->mode_info.underscan_hborder_property,
7393 drm_object_attach_property(&aconnector->base.base,
7394 adev->mode_info.underscan_vborder_property,
7397 if (!aconnector->mst_root)
7398 drm_connector_attach_max_bpc_property(&aconnector->base, 8, 16);
7400 aconnector->base.state->max_bpc = 16;
7401 aconnector->base.state->max_requested_bpc = aconnector->base.state->max_bpc;
7403 if (connector_type == DRM_MODE_CONNECTOR_eDP &&
7404 (dc_is_dmcu_initialized(adev->dm.dc) || adev->dm.dc->ctx->dmub_srv)) {
7405 drm_object_attach_property(&aconnector->base.base,
7406 adev->mode_info.abm_level_property, 0);
7409 if (connector_type == DRM_MODE_CONNECTOR_HDMIA) {
7410 if (!drm_mode_create_hdmi_colorspace_property(&aconnector->base, supported_colorspaces))
7411 drm_connector_attach_colorspace_property(&aconnector->base);
7412 } else if ((connector_type == DRM_MODE_CONNECTOR_DisplayPort && !aconnector->mst_root) ||
7413 connector_type == DRM_MODE_CONNECTOR_eDP) {
7414 if (!drm_mode_create_dp_colorspace_property(&aconnector->base, supported_colorspaces))
7415 drm_connector_attach_colorspace_property(&aconnector->base);
7418 if (connector_type == DRM_MODE_CONNECTOR_HDMIA ||
7419 connector_type == DRM_MODE_CONNECTOR_DisplayPort ||
7420 connector_type == DRM_MODE_CONNECTOR_eDP) {
7421 drm_connector_attach_hdr_output_metadata_property(&aconnector->base);
7423 if (!aconnector->mst_root)
7424 drm_connector_attach_vrr_capable_property(&aconnector->base);
7426 if (adev->dm.hdcp_workqueue)
7427 drm_connector_attach_content_protection_property(&aconnector->base, true);
7431 static int amdgpu_dm_i2c_xfer(struct i2c_adapter *i2c_adap,
7432 struct i2c_msg *msgs, int num)
7434 struct amdgpu_i2c_adapter *i2c = i2c_get_adapdata(i2c_adap);
7435 struct ddc_service *ddc_service = i2c->ddc_service;
7436 struct i2c_command cmd;
7440 if (!ddc_service->ddc_pin || !ddc_service->ddc_pin->hw_info.hw_supported)
7443 cmd.payloads = kcalloc(num, sizeof(struct i2c_payload), GFP_KERNEL);
7448 cmd.number_of_payloads = num;
7449 cmd.engine = I2C_COMMAND_ENGINE_DEFAULT;
7452 for (i = 0; i < num; i++) {
7453 cmd.payloads[i].write = !(msgs[i].flags & I2C_M_RD);
7454 cmd.payloads[i].address = msgs[i].addr;
7455 cmd.payloads[i].length = msgs[i].len;
7456 cmd.payloads[i].data = msgs[i].buf;
7460 ddc_service->ctx->dc,
7461 ddc_service->link->link_index,
7465 kfree(cmd.payloads);
7469 static u32 amdgpu_dm_i2c_func(struct i2c_adapter *adap)
7471 return I2C_FUNC_I2C | I2C_FUNC_SMBUS_EMUL;
7474 static const struct i2c_algorithm amdgpu_dm_i2c_algo = {
7475 .master_xfer = amdgpu_dm_i2c_xfer,
7476 .functionality = amdgpu_dm_i2c_func,
7479 static struct amdgpu_i2c_adapter *
7480 create_i2c(struct ddc_service *ddc_service,
7484 struct amdgpu_device *adev = ddc_service->ctx->driver_context;
7485 struct amdgpu_i2c_adapter *i2c;
7487 i2c = kzalloc(sizeof(struct amdgpu_i2c_adapter), GFP_KERNEL);
7490 i2c->base.owner = THIS_MODULE;
7491 i2c->base.class = I2C_CLASS_DDC;
7492 i2c->base.dev.parent = &adev->pdev->dev;
7493 i2c->base.algo = &amdgpu_dm_i2c_algo;
7494 snprintf(i2c->base.name, sizeof(i2c->base.name), "AMDGPU DM i2c hw bus %d", link_index);
7495 i2c_set_adapdata(&i2c->base, i2c);
7496 i2c->ddc_service = ddc_service;
7503 * Note: this function assumes that dc_link_detect() was called for the
7504 * dc_link which will be represented by this aconnector.
7506 static int amdgpu_dm_connector_init(struct amdgpu_display_manager *dm,
7507 struct amdgpu_dm_connector *aconnector,
7509 struct amdgpu_encoder *aencoder)
7513 struct dc *dc = dm->dc;
7514 struct dc_link *link = dc_get_link_at_index(dc, link_index);
7515 struct amdgpu_i2c_adapter *i2c;
7517 link->priv = aconnector;
7520 i2c = create_i2c(link->ddc, link->link_index, &res);
7522 DRM_ERROR("Failed to create i2c adapter data\n");
7526 aconnector->i2c = i2c;
7527 res = i2c_add_adapter(&i2c->base);
7530 DRM_ERROR("Failed to register hw i2c %d\n", link->link_index);
7534 connector_type = to_drm_connector_type(link->connector_signal);
7536 res = drm_connector_init_with_ddc(
7539 &amdgpu_dm_connector_funcs,
7544 DRM_ERROR("connector_init failed\n");
7545 aconnector->connector_id = -1;
7549 drm_connector_helper_add(
7551 &amdgpu_dm_connector_helper_funcs);
7553 amdgpu_dm_connector_init_helper(
7560 drm_connector_attach_encoder(
7561 &aconnector->base, &aencoder->base);
7563 if (connector_type == DRM_MODE_CONNECTOR_DisplayPort
7564 || connector_type == DRM_MODE_CONNECTOR_eDP)
7565 amdgpu_dm_initialize_dp_connector(dm, aconnector, link->link_index);
7570 aconnector->i2c = NULL;
7575 int amdgpu_dm_get_encoder_crtc_mask(struct amdgpu_device *adev)
7577 switch (adev->mode_info.num_crtc) {
7594 static int amdgpu_dm_encoder_init(struct drm_device *dev,
7595 struct amdgpu_encoder *aencoder,
7596 uint32_t link_index)
7598 struct amdgpu_device *adev = drm_to_adev(dev);
7600 int res = drm_encoder_init(dev,
7602 &amdgpu_dm_encoder_funcs,
7603 DRM_MODE_ENCODER_TMDS,
7606 aencoder->base.possible_crtcs = amdgpu_dm_get_encoder_crtc_mask(adev);
7609 aencoder->encoder_id = link_index;
7611 aencoder->encoder_id = -1;
7613 drm_encoder_helper_add(&aencoder->base, &amdgpu_dm_encoder_helper_funcs);
7618 static void manage_dm_interrupts(struct amdgpu_device *adev,
7619 struct amdgpu_crtc *acrtc,
7623 * We have no guarantee that the frontend index maps to the same
7624 * backend index - some even map to more than one.
7626 * TODO: Use a different interrupt or check DC itself for the mapping.
7629 amdgpu_display_crtc_idx_to_irq_type(
7634 drm_crtc_vblank_on(&acrtc->base);
7637 &adev->pageflip_irq,
7639 #if defined(CONFIG_DRM_AMD_SECURE_DISPLAY)
7646 #if defined(CONFIG_DRM_AMD_SECURE_DISPLAY)
7654 &adev->pageflip_irq,
7656 drm_crtc_vblank_off(&acrtc->base);
7660 static void dm_update_pflip_irq_state(struct amdgpu_device *adev,
7661 struct amdgpu_crtc *acrtc)
7664 amdgpu_display_crtc_idx_to_irq_type(adev, acrtc->crtc_id);
7667 * This reads the current state for the IRQ and force reapplies
7668 * the setting to hardware.
7670 amdgpu_irq_update(adev, &adev->pageflip_irq, irq_type);
7674 is_scaling_state_different(const struct dm_connector_state *dm_state,
7675 const struct dm_connector_state *old_dm_state)
7677 if (dm_state->scaling != old_dm_state->scaling)
7679 if (!dm_state->underscan_enable && old_dm_state->underscan_enable) {
7680 if (old_dm_state->underscan_hborder != 0 && old_dm_state->underscan_vborder != 0)
7682 } else if (dm_state->underscan_enable && !old_dm_state->underscan_enable) {
7683 if (dm_state->underscan_hborder != 0 && dm_state->underscan_vborder != 0)
7685 } else if (dm_state->underscan_hborder != old_dm_state->underscan_hborder ||
7686 dm_state->underscan_vborder != old_dm_state->underscan_vborder)
7691 static bool is_content_protection_different(struct drm_crtc_state *new_crtc_state,
7692 struct drm_crtc_state *old_crtc_state,
7693 struct drm_connector_state *new_conn_state,
7694 struct drm_connector_state *old_conn_state,
7695 const struct drm_connector *connector,
7696 struct hdcp_workqueue *hdcp_w)
7698 struct amdgpu_dm_connector *aconnector = to_amdgpu_dm_connector(connector);
7699 struct dm_connector_state *dm_con_state = to_dm_connector_state(connector->state);
7701 pr_debug("[HDCP_DM] connector->index: %x connect_status: %x dpms: %x\n",
7702 connector->index, connector->status, connector->dpms);
7703 pr_debug("[HDCP_DM] state protection old: %x new: %x\n",
7704 old_conn_state->content_protection, new_conn_state->content_protection);
7707 pr_debug("[HDCP_DM] old crtc en: %x a: %x m: %x a-chg: %x c-chg: %x\n",
7708 old_crtc_state->enable,
7709 old_crtc_state->active,
7710 old_crtc_state->mode_changed,
7711 old_crtc_state->active_changed,
7712 old_crtc_state->connectors_changed);
7715 pr_debug("[HDCP_DM] NEW crtc en: %x a: %x m: %x a-chg: %x c-chg: %x\n",
7716 new_crtc_state->enable,
7717 new_crtc_state->active,
7718 new_crtc_state->mode_changed,
7719 new_crtc_state->active_changed,
7720 new_crtc_state->connectors_changed);
7722 /* hdcp content type change */
7723 if (old_conn_state->hdcp_content_type != new_conn_state->hdcp_content_type &&
7724 new_conn_state->content_protection != DRM_MODE_CONTENT_PROTECTION_UNDESIRED) {
7725 new_conn_state->content_protection = DRM_MODE_CONTENT_PROTECTION_DESIRED;
7726 pr_debug("[HDCP_DM] Type0/1 change %s :true\n", __func__);
7730 /* CP is being re enabled, ignore this */
7731 if (old_conn_state->content_protection == DRM_MODE_CONTENT_PROTECTION_ENABLED &&
7732 new_conn_state->content_protection == DRM_MODE_CONTENT_PROTECTION_DESIRED) {
7733 if (new_crtc_state && new_crtc_state->mode_changed) {
7734 new_conn_state->content_protection = DRM_MODE_CONTENT_PROTECTION_DESIRED;
7735 pr_debug("[HDCP_DM] ENABLED->DESIRED & mode_changed %s :true\n", __func__);
7738 new_conn_state->content_protection = DRM_MODE_CONTENT_PROTECTION_ENABLED;
7739 pr_debug("[HDCP_DM] ENABLED -> DESIRED %s :false\n", __func__);
7743 /* S3 resume case, since old state will always be 0 (UNDESIRED) and the restored state will be ENABLED
7745 * Handles: UNDESIRED -> ENABLED
7747 if (old_conn_state->content_protection == DRM_MODE_CONTENT_PROTECTION_UNDESIRED &&
7748 new_conn_state->content_protection == DRM_MODE_CONTENT_PROTECTION_ENABLED)
7749 new_conn_state->content_protection = DRM_MODE_CONTENT_PROTECTION_DESIRED;
7751 /* Stream removed and re-enabled
7753 * Can sometimes overlap with the HPD case,
7754 * thus set update_hdcp to false to avoid
7755 * setting HDCP multiple times.
7757 * Handles: DESIRED -> DESIRED (Special case)
7759 if (!(old_conn_state->crtc && old_conn_state->crtc->enabled) &&
7760 new_conn_state->crtc && new_conn_state->crtc->enabled &&
7761 connector->state->content_protection == DRM_MODE_CONTENT_PROTECTION_DESIRED) {
7762 dm_con_state->update_hdcp = false;
7763 pr_debug("[HDCP_DM] DESIRED->DESIRED (Stream removed and re-enabled) %s :true\n",
7768 /* Hot-plug, headless s3, dpms
7770 * Only start HDCP if the display is connected/enabled.
7771 * update_hdcp flag will be set to false until the next
7774 * Handles: DESIRED -> DESIRED (Special case)
7776 if (dm_con_state->update_hdcp &&
7777 new_conn_state->content_protection == DRM_MODE_CONTENT_PROTECTION_DESIRED &&
7778 connector->dpms == DRM_MODE_DPMS_ON && aconnector->dc_sink != NULL) {
7779 dm_con_state->update_hdcp = false;
7780 pr_debug("[HDCP_DM] DESIRED->DESIRED (Hot-plug, headless s3, dpms) %s :true\n",
7785 if (old_conn_state->content_protection == new_conn_state->content_protection) {
7786 if (new_conn_state->content_protection >= DRM_MODE_CONTENT_PROTECTION_DESIRED) {
7787 if (new_crtc_state && new_crtc_state->mode_changed) {
7788 pr_debug("[HDCP_DM] DESIRED->DESIRED or ENABLE->ENABLE mode_change %s :true\n",
7792 pr_debug("[HDCP_DM] DESIRED->DESIRED & ENABLE->ENABLE %s :false\n",
7797 pr_debug("[HDCP_DM] UNDESIRED->UNDESIRED %s :false\n", __func__);
7801 if (new_conn_state->content_protection != DRM_MODE_CONTENT_PROTECTION_ENABLED) {
7802 pr_debug("[HDCP_DM] UNDESIRED->DESIRED or DESIRED->UNDESIRED or ENABLED->UNDESIRED %s :true\n",
7807 pr_debug("[HDCP_DM] DESIRED->ENABLED %s :false\n", __func__);
7811 static void remove_stream(struct amdgpu_device *adev,
7812 struct amdgpu_crtc *acrtc,
7813 struct dc_stream_state *stream)
7815 /* this is the update mode case */
7817 acrtc->otg_inst = -1;
7818 acrtc->enabled = false;
7821 static void prepare_flip_isr(struct amdgpu_crtc *acrtc)
7824 assert_spin_locked(&acrtc->base.dev->event_lock);
7825 WARN_ON(acrtc->event);
7827 acrtc->event = acrtc->base.state->event;
7829 /* Set the flip status */
7830 acrtc->pflip_status = AMDGPU_FLIP_SUBMITTED;
7832 /* Mark this event as consumed */
7833 acrtc->base.state->event = NULL;
7835 DC_LOG_PFLIP("crtc:%d, pflip_stat:AMDGPU_FLIP_SUBMITTED\n",
7839 static void update_freesync_state_on_stream(
7840 struct amdgpu_display_manager *dm,
7841 struct dm_crtc_state *new_crtc_state,
7842 struct dc_stream_state *new_stream,
7843 struct dc_plane_state *surface,
7844 u32 flip_timestamp_in_us)
7846 struct mod_vrr_params vrr_params;
7847 struct dc_info_packet vrr_infopacket = {0};
7848 struct amdgpu_device *adev = dm->adev;
7849 struct amdgpu_crtc *acrtc = to_amdgpu_crtc(new_crtc_state->base.crtc);
7850 unsigned long flags;
7851 bool pack_sdp_v1_3 = false;
7852 struct amdgpu_dm_connector *aconn;
7853 enum vrr_packet_type packet_type = PACKET_TYPE_VRR;
7859 * TODO: Determine why min/max totals and vrefresh can be 0 here.
7860 * For now it's sufficient to just guard against these conditions.
7863 if (!new_stream->timing.h_total || !new_stream->timing.v_total)
7866 spin_lock_irqsave(&adev_to_drm(adev)->event_lock, flags);
7867 vrr_params = acrtc->dm_irq_params.vrr_params;
7870 mod_freesync_handle_preflip(
7871 dm->freesync_module,
7874 flip_timestamp_in_us,
7877 if (adev->family < AMDGPU_FAMILY_AI &&
7878 amdgpu_dm_crtc_vrr_active(new_crtc_state)) {
7879 mod_freesync_handle_v_update(dm->freesync_module,
7880 new_stream, &vrr_params);
7882 /* Need to call this before the frame ends. */
7883 dc_stream_adjust_vmin_vmax(dm->dc,
7884 new_crtc_state->stream,
7885 &vrr_params.adjust);
7889 aconn = (struct amdgpu_dm_connector *)new_stream->dm_stream_context;
7891 if (aconn && (aconn->as_type == FREESYNC_TYPE_PCON_IN_WHITELIST || aconn->vsdb_info.replay_mode)) {
7892 pack_sdp_v1_3 = aconn->pack_sdp_v1_3;
7894 if (aconn->vsdb_info.amd_vsdb_version == 1)
7895 packet_type = PACKET_TYPE_FS_V1;
7896 else if (aconn->vsdb_info.amd_vsdb_version == 2)
7897 packet_type = PACKET_TYPE_FS_V2;
7898 else if (aconn->vsdb_info.amd_vsdb_version == 3)
7899 packet_type = PACKET_TYPE_FS_V3;
7901 mod_build_adaptive_sync_infopacket(new_stream, aconn->as_type, NULL,
7902 &new_stream->adaptive_sync_infopacket);
7905 mod_freesync_build_vrr_infopacket(
7906 dm->freesync_module,
7910 TRANSFER_FUNC_UNKNOWN,
7914 new_crtc_state->freesync_vrr_info_changed |=
7915 (memcmp(&new_crtc_state->vrr_infopacket,
7917 sizeof(vrr_infopacket)) != 0);
7919 acrtc->dm_irq_params.vrr_params = vrr_params;
7920 new_crtc_state->vrr_infopacket = vrr_infopacket;
7922 new_stream->vrr_infopacket = vrr_infopacket;
7923 new_stream->allow_freesync = mod_freesync_get_freesync_enabled(&vrr_params);
7925 if (new_crtc_state->freesync_vrr_info_changed)
7926 DRM_DEBUG_KMS("VRR packet update: crtc=%u enabled=%d state=%d",
7927 new_crtc_state->base.crtc->base.id,
7928 (int)new_crtc_state->base.vrr_enabled,
7929 (int)vrr_params.state);
7931 spin_unlock_irqrestore(&adev_to_drm(adev)->event_lock, flags);
7934 static void update_stream_irq_parameters(
7935 struct amdgpu_display_manager *dm,
7936 struct dm_crtc_state *new_crtc_state)
7938 struct dc_stream_state *new_stream = new_crtc_state->stream;
7939 struct mod_vrr_params vrr_params;
7940 struct mod_freesync_config config = new_crtc_state->freesync_config;
7941 struct amdgpu_device *adev = dm->adev;
7942 struct amdgpu_crtc *acrtc = to_amdgpu_crtc(new_crtc_state->base.crtc);
7943 unsigned long flags;
7949 * TODO: Determine why min/max totals and vrefresh can be 0 here.
7950 * For now it's sufficient to just guard against these conditions.
7952 if (!new_stream->timing.h_total || !new_stream->timing.v_total)
7955 spin_lock_irqsave(&adev_to_drm(adev)->event_lock, flags);
7956 vrr_params = acrtc->dm_irq_params.vrr_params;
7958 if (new_crtc_state->vrr_supported &&
7959 config.min_refresh_in_uhz &&
7960 config.max_refresh_in_uhz) {
7962 * if freesync compatible mode was set, config.state will be set
7965 if (config.state == VRR_STATE_ACTIVE_FIXED && config.fixed_refresh_in_uhz &&
7966 (!drm_atomic_crtc_needs_modeset(&new_crtc_state->base) ||
7967 new_crtc_state->freesync_config.state == VRR_STATE_ACTIVE_FIXED)) {
7968 vrr_params.max_refresh_in_uhz = config.max_refresh_in_uhz;
7969 vrr_params.min_refresh_in_uhz = config.min_refresh_in_uhz;
7970 vrr_params.fixed_refresh_in_uhz = config.fixed_refresh_in_uhz;
7971 vrr_params.state = VRR_STATE_ACTIVE_FIXED;
7973 config.state = new_crtc_state->base.vrr_enabled ?
7974 VRR_STATE_ACTIVE_VARIABLE :
7978 config.state = VRR_STATE_UNSUPPORTED;
7981 mod_freesync_build_vrr_params(dm->freesync_module,
7983 &config, &vrr_params);
7985 new_crtc_state->freesync_config = config;
7986 /* Copy state for access from DM IRQ handler */
7987 acrtc->dm_irq_params.freesync_config = config;
7988 acrtc->dm_irq_params.active_planes = new_crtc_state->active_planes;
7989 acrtc->dm_irq_params.vrr_params = vrr_params;
7990 spin_unlock_irqrestore(&adev_to_drm(adev)->event_lock, flags);
7993 static void amdgpu_dm_handle_vrr_transition(struct dm_crtc_state *old_state,
7994 struct dm_crtc_state *new_state)
7996 bool old_vrr_active = amdgpu_dm_crtc_vrr_active(old_state);
7997 bool new_vrr_active = amdgpu_dm_crtc_vrr_active(new_state);
7999 if (!old_vrr_active && new_vrr_active) {
8000 /* Transition VRR inactive -> active:
8001 * While VRR is active, we must not disable vblank irq, as a
8002 * reenable after disable would compute bogus vblank/pflip
8003 * timestamps if it likely happened inside display front-porch.
8005 * We also need vupdate irq for the actual core vblank handling
8008 WARN_ON(amdgpu_dm_crtc_set_vupdate_irq(new_state->base.crtc, true) != 0);
8009 WARN_ON(drm_crtc_vblank_get(new_state->base.crtc) != 0);
8010 DRM_DEBUG_DRIVER("%s: crtc=%u VRR off->on: Get vblank ref\n",
8011 __func__, new_state->base.crtc->base.id);
8012 } else if (old_vrr_active && !new_vrr_active) {
8013 /* Transition VRR active -> inactive:
8014 * Allow vblank irq disable again for fixed refresh rate.
8016 WARN_ON(amdgpu_dm_crtc_set_vupdate_irq(new_state->base.crtc, false) != 0);
8017 drm_crtc_vblank_put(new_state->base.crtc);
8018 DRM_DEBUG_DRIVER("%s: crtc=%u VRR on->off: Drop vblank ref\n",
8019 __func__, new_state->base.crtc->base.id);
8023 static void amdgpu_dm_commit_cursors(struct drm_atomic_state *state)
8025 struct drm_plane *plane;
8026 struct drm_plane_state *old_plane_state;
8030 * TODO: Make this per-stream so we don't issue redundant updates for
8031 * commits with multiple streams.
8033 for_each_old_plane_in_state(state, plane, old_plane_state, i)
8034 if (plane->type == DRM_PLANE_TYPE_CURSOR)
8035 amdgpu_dm_plane_handle_cursor_update(plane, old_plane_state);
8038 static inline uint32_t get_mem_type(struct drm_framebuffer *fb)
8040 struct amdgpu_bo *abo = gem_to_amdgpu_bo(fb->obj[0]);
8042 return abo->tbo.resource ? abo->tbo.resource->mem_type : 0;
8045 static void amdgpu_dm_commit_planes(struct drm_atomic_state *state,
8046 struct drm_device *dev,
8047 struct amdgpu_display_manager *dm,
8048 struct drm_crtc *pcrtc,
8049 bool wait_for_vblank)
8052 u64 timestamp_ns = ktime_get_ns();
8053 struct drm_plane *plane;
8054 struct drm_plane_state *old_plane_state, *new_plane_state;
8055 struct amdgpu_crtc *acrtc_attach = to_amdgpu_crtc(pcrtc);
8056 struct drm_crtc_state *new_pcrtc_state =
8057 drm_atomic_get_new_crtc_state(state, pcrtc);
8058 struct dm_crtc_state *acrtc_state = to_dm_crtc_state(new_pcrtc_state);
8059 struct dm_crtc_state *dm_old_crtc_state =
8060 to_dm_crtc_state(drm_atomic_get_old_crtc_state(state, pcrtc));
8061 int planes_count = 0, vpos, hpos;
8062 unsigned long flags;
8063 u32 target_vblank, last_flip_vblank;
8064 bool vrr_active = amdgpu_dm_crtc_vrr_active(acrtc_state);
8065 bool cursor_update = false;
8066 bool pflip_present = false;
8067 bool dirty_rects_changed = false;
8069 struct dc_surface_update surface_updates[MAX_SURFACES];
8070 struct dc_plane_info plane_infos[MAX_SURFACES];
8071 struct dc_scaling_info scaling_infos[MAX_SURFACES];
8072 struct dc_flip_addrs flip_addrs[MAX_SURFACES];
8073 struct dc_stream_update stream_update;
8076 bundle = kzalloc(sizeof(*bundle), GFP_KERNEL);
8079 dm_error("Failed to allocate update bundle\n");
8084 * Disable the cursor first if we're disabling all the planes.
8085 * It'll remain on the screen after the planes are re-enabled
8088 if (acrtc_state->active_planes == 0)
8089 amdgpu_dm_commit_cursors(state);
8091 /* update planes when needed */
8092 for_each_oldnew_plane_in_state(state, plane, old_plane_state, new_plane_state, i) {
8093 struct drm_crtc *crtc = new_plane_state->crtc;
8094 struct drm_crtc_state *new_crtc_state;
8095 struct drm_framebuffer *fb = new_plane_state->fb;
8096 struct amdgpu_framebuffer *afb = (struct amdgpu_framebuffer *)fb;
8097 bool plane_needs_flip;
8098 struct dc_plane_state *dc_plane;
8099 struct dm_plane_state *dm_new_plane_state = to_dm_plane_state(new_plane_state);
8101 /* Cursor plane is handled after stream updates */
8102 if (plane->type == DRM_PLANE_TYPE_CURSOR) {
8103 if ((fb && crtc == pcrtc) ||
8104 (old_plane_state->fb && old_plane_state->crtc == pcrtc))
8105 cursor_update = true;
8110 if (!fb || !crtc || pcrtc != crtc)
8113 new_crtc_state = drm_atomic_get_new_crtc_state(state, crtc);
8114 if (!new_crtc_state->active)
8117 dc_plane = dm_new_plane_state->dc_state;
8121 bundle->surface_updates[planes_count].surface = dc_plane;
8122 if (new_pcrtc_state->color_mgmt_changed) {
8123 bundle->surface_updates[planes_count].gamma = dc_plane->gamma_correction;
8124 bundle->surface_updates[planes_count].in_transfer_func = dc_plane->in_transfer_func;
8125 bundle->surface_updates[planes_count].gamut_remap_matrix = &dc_plane->gamut_remap_matrix;
8128 amdgpu_dm_plane_fill_dc_scaling_info(dm->adev, new_plane_state,
8129 &bundle->scaling_infos[planes_count]);
8131 bundle->surface_updates[planes_count].scaling_info =
8132 &bundle->scaling_infos[planes_count];
8134 plane_needs_flip = old_plane_state->fb && new_plane_state->fb;
8136 pflip_present = pflip_present || plane_needs_flip;
8138 if (!plane_needs_flip) {
8143 fill_dc_plane_info_and_addr(
8144 dm->adev, new_plane_state,
8146 &bundle->plane_infos[planes_count],
8147 &bundle->flip_addrs[planes_count].address,
8148 afb->tmz_surface, false);
8150 drm_dbg_state(state->dev, "plane: id=%d dcc_en=%d\n",
8151 new_plane_state->plane->index,
8152 bundle->plane_infos[planes_count].dcc.enable);
8154 bundle->surface_updates[planes_count].plane_info =
8155 &bundle->plane_infos[planes_count];
8157 if (acrtc_state->stream->link->psr_settings.psr_feature_enabled ||
8158 acrtc_state->stream->link->replay_settings.replay_feature_enabled) {
8159 fill_dc_dirty_rects(plane, old_plane_state,
8160 new_plane_state, new_crtc_state,
8161 &bundle->flip_addrs[planes_count],
8162 &dirty_rects_changed);
8165 * If the dirty regions changed, PSR-SU need to be disabled temporarily
8166 * and enabled it again after dirty regions are stable to avoid video glitch.
8167 * PSR-SU will be enabled in vblank_control_worker() if user pause the video
8168 * during the PSR-SU was disabled.
8170 if (acrtc_state->stream->link->psr_settings.psr_version >= DC_PSR_VERSION_SU_1 &&
8171 acrtc_attach->dm_irq_params.allow_psr_entry &&
8172 #ifdef CONFIG_DRM_AMD_SECURE_DISPLAY
8173 !amdgpu_dm_crc_window_is_activated(acrtc_state->base.crtc) &&
8175 dirty_rects_changed) {
8176 mutex_lock(&dm->dc_lock);
8177 acrtc_state->stream->link->psr_settings.psr_dirty_rects_change_timestamp_ns =
8179 if (acrtc_state->stream->link->psr_settings.psr_allow_active)
8180 amdgpu_dm_psr_disable(acrtc_state->stream);
8181 mutex_unlock(&dm->dc_lock);
8186 * Only allow immediate flips for fast updates that don't
8187 * change memory domain, FB pitch, DCC state, rotation or
8190 * dm_crtc_helper_atomic_check() only accepts async flips with
8193 if (crtc->state->async_flip &&
8194 (acrtc_state->update_type != UPDATE_TYPE_FAST ||
8195 get_mem_type(old_plane_state->fb) != get_mem_type(fb)))
8196 drm_warn_once(state->dev,
8197 "[PLANE:%d:%s] async flip with non-fast update\n",
8198 plane->base.id, plane->name);
8200 bundle->flip_addrs[planes_count].flip_immediate =
8201 crtc->state->async_flip &&
8202 acrtc_state->update_type == UPDATE_TYPE_FAST &&
8203 get_mem_type(old_plane_state->fb) == get_mem_type(fb);
8205 timestamp_ns = ktime_get_ns();
8206 bundle->flip_addrs[planes_count].flip_timestamp_in_us = div_u64(timestamp_ns, 1000);
8207 bundle->surface_updates[planes_count].flip_addr = &bundle->flip_addrs[planes_count];
8208 bundle->surface_updates[planes_count].surface = dc_plane;
8210 if (!bundle->surface_updates[planes_count].surface) {
8211 DRM_ERROR("No surface for CRTC: id=%d\n",
8212 acrtc_attach->crtc_id);
8216 if (plane == pcrtc->primary)
8217 update_freesync_state_on_stream(
8220 acrtc_state->stream,
8222 bundle->flip_addrs[planes_count].flip_timestamp_in_us);
8224 drm_dbg_state(state->dev, "%s Flipping to hi: 0x%x, low: 0x%x\n",
8226 bundle->flip_addrs[planes_count].address.grph.addr.high_part,
8227 bundle->flip_addrs[planes_count].address.grph.addr.low_part);
8233 if (pflip_present) {
8235 /* Use old throttling in non-vrr fixed refresh rate mode
8236 * to keep flip scheduling based on target vblank counts
8237 * working in a backwards compatible way, e.g., for
8238 * clients using the GLX_OML_sync_control extension or
8239 * DRI3/Present extension with defined target_msc.
8241 last_flip_vblank = amdgpu_get_vblank_counter_kms(pcrtc);
8243 /* For variable refresh rate mode only:
8244 * Get vblank of last completed flip to avoid > 1 vrr
8245 * flips per video frame by use of throttling, but allow
8246 * flip programming anywhere in the possibly large
8247 * variable vrr vblank interval for fine-grained flip
8248 * timing control and more opportunity to avoid stutter
8249 * on late submission of flips.
8251 spin_lock_irqsave(&pcrtc->dev->event_lock, flags);
8252 last_flip_vblank = acrtc_attach->dm_irq_params.last_flip_vblank;
8253 spin_unlock_irqrestore(&pcrtc->dev->event_lock, flags);
8256 target_vblank = last_flip_vblank + wait_for_vblank;
8259 * Wait until we're out of the vertical blank period before the one
8260 * targeted by the flip
8262 while ((acrtc_attach->enabled &&
8263 (amdgpu_display_get_crtc_scanoutpos(dm->ddev, acrtc_attach->crtc_id,
8264 0, &vpos, &hpos, NULL,
8265 NULL, &pcrtc->hwmode)
8266 & (DRM_SCANOUTPOS_VALID | DRM_SCANOUTPOS_IN_VBLANK)) ==
8267 (DRM_SCANOUTPOS_VALID | DRM_SCANOUTPOS_IN_VBLANK) &&
8268 (int)(target_vblank -
8269 amdgpu_get_vblank_counter_kms(pcrtc)) > 0)) {
8270 usleep_range(1000, 1100);
8274 * Prepare the flip event for the pageflip interrupt to handle.
8276 * This only works in the case where we've already turned on the
8277 * appropriate hardware blocks (eg. HUBP) so in the transition case
8278 * from 0 -> n planes we have to skip a hardware generated event
8279 * and rely on sending it from software.
8281 if (acrtc_attach->base.state->event &&
8282 acrtc_state->active_planes > 0) {
8283 drm_crtc_vblank_get(pcrtc);
8285 spin_lock_irqsave(&pcrtc->dev->event_lock, flags);
8287 WARN_ON(acrtc_attach->pflip_status != AMDGPU_FLIP_NONE);
8288 prepare_flip_isr(acrtc_attach);
8290 spin_unlock_irqrestore(&pcrtc->dev->event_lock, flags);
8293 if (acrtc_state->stream) {
8294 if (acrtc_state->freesync_vrr_info_changed)
8295 bundle->stream_update.vrr_infopacket =
8296 &acrtc_state->stream->vrr_infopacket;
8298 } else if (cursor_update && acrtc_state->active_planes > 0 &&
8299 acrtc_attach->base.state->event) {
8300 drm_crtc_vblank_get(pcrtc);
8302 spin_lock_irqsave(&pcrtc->dev->event_lock, flags);
8304 acrtc_attach->event = acrtc_attach->base.state->event;
8305 acrtc_attach->base.state->event = NULL;
8307 spin_unlock_irqrestore(&pcrtc->dev->event_lock, flags);
8310 /* Update the planes if changed or disable if we don't have any. */
8311 if ((planes_count || acrtc_state->active_planes == 0) &&
8312 acrtc_state->stream) {
8314 * If PSR or idle optimizations are enabled then flush out
8315 * any pending work before hardware programming.
8317 if (dm->vblank_control_workqueue)
8318 flush_workqueue(dm->vblank_control_workqueue);
8320 bundle->stream_update.stream = acrtc_state->stream;
8321 if (new_pcrtc_state->mode_changed) {
8322 bundle->stream_update.src = acrtc_state->stream->src;
8323 bundle->stream_update.dst = acrtc_state->stream->dst;
8326 if (new_pcrtc_state->color_mgmt_changed) {
8328 * TODO: This isn't fully correct since we've actually
8329 * already modified the stream in place.
8331 bundle->stream_update.gamut_remap =
8332 &acrtc_state->stream->gamut_remap_matrix;
8333 bundle->stream_update.output_csc_transform =
8334 &acrtc_state->stream->csc_color_matrix;
8335 bundle->stream_update.out_transfer_func =
8336 acrtc_state->stream->out_transfer_func;
8339 acrtc_state->stream->abm_level = acrtc_state->abm_level;
8340 if (acrtc_state->abm_level != dm_old_crtc_state->abm_level)
8341 bundle->stream_update.abm_level = &acrtc_state->abm_level;
8343 mutex_lock(&dm->dc_lock);
8344 if ((acrtc_state->update_type > UPDATE_TYPE_FAST) &&
8345 acrtc_state->stream->link->psr_settings.psr_allow_active)
8346 amdgpu_dm_psr_disable(acrtc_state->stream);
8347 mutex_unlock(&dm->dc_lock);
8350 * If FreeSync state on the stream has changed then we need to
8351 * re-adjust the min/max bounds now that DC doesn't handle this
8352 * as part of commit.
8354 if (is_dc_timing_adjust_needed(dm_old_crtc_state, acrtc_state)) {
8355 spin_lock_irqsave(&pcrtc->dev->event_lock, flags);
8356 dc_stream_adjust_vmin_vmax(
8357 dm->dc, acrtc_state->stream,
8358 &acrtc_attach->dm_irq_params.vrr_params.adjust);
8359 spin_unlock_irqrestore(&pcrtc->dev->event_lock, flags);
8361 mutex_lock(&dm->dc_lock);
8362 update_planes_and_stream_adapter(dm->dc,
8363 acrtc_state->update_type,
8365 acrtc_state->stream,
8366 &bundle->stream_update,
8367 bundle->surface_updates);
8370 * Enable or disable the interrupts on the backend.
8372 * Most pipes are put into power gating when unused.
8374 * When power gating is enabled on a pipe we lose the
8375 * interrupt enablement state when power gating is disabled.
8377 * So we need to update the IRQ control state in hardware
8378 * whenever the pipe turns on (since it could be previously
8379 * power gated) or off (since some pipes can't be power gated
8382 if (dm_old_crtc_state->active_planes != acrtc_state->active_planes)
8383 dm_update_pflip_irq_state(drm_to_adev(dev),
8386 if ((acrtc_state->update_type > UPDATE_TYPE_FAST) &&
8387 acrtc_state->stream->link->psr_settings.psr_version != DC_PSR_VERSION_UNSUPPORTED &&
8388 !acrtc_state->stream->link->psr_settings.psr_feature_enabled)
8389 amdgpu_dm_link_setup_psr(acrtc_state->stream);
8391 /* Decrement skip count when PSR is enabled and we're doing fast updates. */
8392 if (acrtc_state->update_type == UPDATE_TYPE_FAST &&
8393 acrtc_state->stream->link->psr_settings.psr_feature_enabled) {
8394 struct amdgpu_dm_connector *aconn =
8395 (struct amdgpu_dm_connector *)acrtc_state->stream->dm_stream_context;
8397 if (aconn->psr_skip_count > 0)
8398 aconn->psr_skip_count--;
8400 /* Allow PSR when skip count is 0. */
8401 acrtc_attach->dm_irq_params.allow_psr_entry = !aconn->psr_skip_count;
8404 * If sink supports PSR SU, there is no need to rely on
8405 * a vblank event disable request to enable PSR. PSR SU
8406 * can be enabled immediately once OS demonstrates an
8407 * adequate number of fast atomic commits to notify KMD
8408 * of update events. See `vblank_control_worker()`.
8410 if (acrtc_state->stream->link->psr_settings.psr_version >= DC_PSR_VERSION_SU_1 &&
8411 acrtc_attach->dm_irq_params.allow_psr_entry &&
8412 #ifdef CONFIG_DRM_AMD_SECURE_DISPLAY
8413 !amdgpu_dm_crc_window_is_activated(acrtc_state->base.crtc) &&
8415 !acrtc_state->stream->link->psr_settings.psr_allow_active &&
8417 acrtc_state->stream->link->psr_settings.psr_dirty_rects_change_timestamp_ns) >
8419 amdgpu_dm_psr_enable(acrtc_state->stream);
8421 acrtc_attach->dm_irq_params.allow_psr_entry = false;
8424 mutex_unlock(&dm->dc_lock);
8428 * Update cursor state *after* programming all the planes.
8429 * This avoids redundant programming in the case where we're going
8430 * to be disabling a single plane - those pipes are being disabled.
8432 if (acrtc_state->active_planes)
8433 amdgpu_dm_commit_cursors(state);
8439 static void amdgpu_dm_commit_audio(struct drm_device *dev,
8440 struct drm_atomic_state *state)
8442 struct amdgpu_device *adev = drm_to_adev(dev);
8443 struct amdgpu_dm_connector *aconnector;
8444 struct drm_connector *connector;
8445 struct drm_connector_state *old_con_state, *new_con_state;
8446 struct drm_crtc_state *new_crtc_state;
8447 struct dm_crtc_state *new_dm_crtc_state;
8448 const struct dc_stream_status *status;
8451 /* Notify device removals. */
8452 for_each_oldnew_connector_in_state(state, connector, old_con_state, new_con_state, i) {
8453 if (old_con_state->crtc != new_con_state->crtc) {
8454 /* CRTC changes require notification. */
8458 if (!new_con_state->crtc)
8461 new_crtc_state = drm_atomic_get_new_crtc_state(
8462 state, new_con_state->crtc);
8464 if (!new_crtc_state)
8467 if (!drm_atomic_crtc_needs_modeset(new_crtc_state))
8471 aconnector = to_amdgpu_dm_connector(connector);
8473 mutex_lock(&adev->dm.audio_lock);
8474 inst = aconnector->audio_inst;
8475 aconnector->audio_inst = -1;
8476 mutex_unlock(&adev->dm.audio_lock);
8478 amdgpu_dm_audio_eld_notify(adev, inst);
8481 /* Notify audio device additions. */
8482 for_each_new_connector_in_state(state, connector, new_con_state, i) {
8483 if (!new_con_state->crtc)
8486 new_crtc_state = drm_atomic_get_new_crtc_state(
8487 state, new_con_state->crtc);
8489 if (!new_crtc_state)
8492 if (!drm_atomic_crtc_needs_modeset(new_crtc_state))
8495 new_dm_crtc_state = to_dm_crtc_state(new_crtc_state);
8496 if (!new_dm_crtc_state->stream)
8499 status = dc_stream_get_status(new_dm_crtc_state->stream);
8503 aconnector = to_amdgpu_dm_connector(connector);
8505 mutex_lock(&adev->dm.audio_lock);
8506 inst = status->audio_inst;
8507 aconnector->audio_inst = inst;
8508 mutex_unlock(&adev->dm.audio_lock);
8510 amdgpu_dm_audio_eld_notify(adev, inst);
8515 * amdgpu_dm_crtc_copy_transient_flags - copy mirrored flags from DRM to DC
8516 * @crtc_state: the DRM CRTC state
8517 * @stream_state: the DC stream state.
8519 * Copy the mirrored transient state flags from DRM, to DC. It is used to bring
8520 * a dc_stream_state's flags in sync with a drm_crtc_state's flags.
8522 static void amdgpu_dm_crtc_copy_transient_flags(struct drm_crtc_state *crtc_state,
8523 struct dc_stream_state *stream_state)
8525 stream_state->mode_changed = drm_atomic_crtc_needs_modeset(crtc_state);
8528 static void amdgpu_dm_commit_streams(struct drm_atomic_state *state,
8529 struct dc_state *dc_state)
8531 struct drm_device *dev = state->dev;
8532 struct amdgpu_device *adev = drm_to_adev(dev);
8533 struct amdgpu_display_manager *dm = &adev->dm;
8534 struct drm_crtc *crtc;
8535 struct drm_crtc_state *old_crtc_state, *new_crtc_state;
8536 struct dm_crtc_state *dm_old_crtc_state, *dm_new_crtc_state;
8537 bool mode_set_reset_required = false;
8540 for_each_oldnew_crtc_in_state(state, crtc, old_crtc_state,
8541 new_crtc_state, i) {
8542 struct amdgpu_crtc *acrtc = to_amdgpu_crtc(crtc);
8544 dm_old_crtc_state = to_dm_crtc_state(old_crtc_state);
8546 if (old_crtc_state->active &&
8547 (!new_crtc_state->active ||
8548 drm_atomic_crtc_needs_modeset(new_crtc_state))) {
8549 manage_dm_interrupts(adev, acrtc, false);
8550 dc_stream_release(dm_old_crtc_state->stream);
8554 drm_atomic_helper_calc_timestamping_constants(state);
8556 /* update changed items */
8557 for_each_oldnew_crtc_in_state(state, crtc, old_crtc_state, new_crtc_state, i) {
8558 struct amdgpu_crtc *acrtc = to_amdgpu_crtc(crtc);
8560 dm_new_crtc_state = to_dm_crtc_state(new_crtc_state);
8561 dm_old_crtc_state = to_dm_crtc_state(old_crtc_state);
8563 drm_dbg_state(state->dev,
8564 "amdgpu_crtc id:%d crtc_state_flags: enable:%d, active:%d, planes_changed:%d, mode_changed:%d,active_changed:%d,connectors_changed:%d\n",
8566 new_crtc_state->enable,
8567 new_crtc_state->active,
8568 new_crtc_state->planes_changed,
8569 new_crtc_state->mode_changed,
8570 new_crtc_state->active_changed,
8571 new_crtc_state->connectors_changed);
8573 /* Disable cursor if disabling crtc */
8574 if (old_crtc_state->active && !new_crtc_state->active) {
8575 struct dc_cursor_position position;
8577 memset(&position, 0, sizeof(position));
8578 mutex_lock(&dm->dc_lock);
8579 dc_stream_set_cursor_position(dm_old_crtc_state->stream, &position);
8580 mutex_unlock(&dm->dc_lock);
8583 /* Copy all transient state flags into dc state */
8584 if (dm_new_crtc_state->stream) {
8585 amdgpu_dm_crtc_copy_transient_flags(&dm_new_crtc_state->base,
8586 dm_new_crtc_state->stream);
8589 /* handles headless hotplug case, updating new_state and
8590 * aconnector as needed
8593 if (amdgpu_dm_crtc_modeset_required(new_crtc_state, dm_new_crtc_state->stream, dm_old_crtc_state->stream)) {
8595 DRM_DEBUG_ATOMIC("Atomic commit: SET crtc id %d: [%p]\n", acrtc->crtc_id, acrtc);
8597 if (!dm_new_crtc_state->stream) {
8599 * this could happen because of issues with
8600 * userspace notifications delivery.
8601 * In this case userspace tries to set mode on
8602 * display which is disconnected in fact.
8603 * dc_sink is NULL in this case on aconnector.
8604 * We expect reset mode will come soon.
8606 * This can also happen when unplug is done
8607 * during resume sequence ended
8609 * In this case, we want to pretend we still
8610 * have a sink to keep the pipe running so that
8611 * hw state is consistent with the sw state
8613 DRM_DEBUG_DRIVER("%s: Failed to create new stream for crtc %d\n",
8614 __func__, acrtc->base.base.id);
8618 if (dm_old_crtc_state->stream)
8619 remove_stream(adev, acrtc, dm_old_crtc_state->stream);
8621 pm_runtime_get_noresume(dev->dev);
8623 acrtc->enabled = true;
8624 acrtc->hw_mode = new_crtc_state->mode;
8625 crtc->hwmode = new_crtc_state->mode;
8626 mode_set_reset_required = true;
8627 } else if (modereset_required(new_crtc_state)) {
8628 DRM_DEBUG_ATOMIC("Atomic commit: RESET. crtc id %d:[%p]\n", acrtc->crtc_id, acrtc);
8629 /* i.e. reset mode */
8630 if (dm_old_crtc_state->stream)
8631 remove_stream(adev, acrtc, dm_old_crtc_state->stream);
8633 mode_set_reset_required = true;
8635 } /* for_each_crtc_in_state() */
8637 /* if there mode set or reset, disable eDP PSR */
8638 if (mode_set_reset_required) {
8639 if (dm->vblank_control_workqueue)
8640 flush_workqueue(dm->vblank_control_workqueue);
8642 amdgpu_dm_psr_disable_all(dm);
8645 dm_enable_per_frame_crtc_master_sync(dc_state);
8646 mutex_lock(&dm->dc_lock);
8647 WARN_ON(!dc_commit_streams(dm->dc, dc_state->streams, dc_state->stream_count));
8649 /* Allow idle optimization when vblank count is 0 for display off */
8650 if (dm->active_vblank_irq_count == 0)
8651 dc_allow_idle_optimizations(dm->dc, true);
8652 mutex_unlock(&dm->dc_lock);
8654 for_each_new_crtc_in_state(state, crtc, new_crtc_state, i) {
8655 struct amdgpu_crtc *acrtc = to_amdgpu_crtc(crtc);
8657 dm_new_crtc_state = to_dm_crtc_state(new_crtc_state);
8659 if (dm_new_crtc_state->stream != NULL) {
8660 const struct dc_stream_status *status =
8661 dc_stream_get_status(dm_new_crtc_state->stream);
8664 status = dc_stream_get_status_from_state(dc_state,
8665 dm_new_crtc_state->stream);
8667 DC_ERR("got no status for stream %p on acrtc%p\n", dm_new_crtc_state->stream, acrtc);
8669 acrtc->otg_inst = status->primary_otg_inst;
8675 * amdgpu_dm_atomic_commit_tail() - AMDgpu DM's commit tail implementation.
8676 * @state: The atomic state to commit
8678 * This will tell DC to commit the constructed DC state from atomic_check,
8679 * programming the hardware. Any failures here implies a hardware failure, since
8680 * atomic check should have filtered anything non-kosher.
8682 static void amdgpu_dm_atomic_commit_tail(struct drm_atomic_state *state)
8684 struct drm_device *dev = state->dev;
8685 struct amdgpu_device *adev = drm_to_adev(dev);
8686 struct amdgpu_display_manager *dm = &adev->dm;
8687 struct dm_atomic_state *dm_state;
8688 struct dc_state *dc_state = NULL;
8690 struct drm_crtc *crtc;
8691 struct drm_crtc_state *old_crtc_state, *new_crtc_state;
8692 unsigned long flags;
8693 bool wait_for_vblank = true;
8694 struct drm_connector *connector;
8695 struct drm_connector_state *old_con_state, *new_con_state;
8696 struct dm_crtc_state *dm_old_crtc_state, *dm_new_crtc_state;
8697 int crtc_disable_count = 0;
8699 trace_amdgpu_dm_atomic_commit_tail_begin(state);
8701 drm_atomic_helper_update_legacy_modeset_state(dev, state);
8702 drm_dp_mst_atomic_wait_for_dependencies(state);
8704 dm_state = dm_atomic_get_new_state(state);
8705 if (dm_state && dm_state->context) {
8706 dc_state = dm_state->context;
8707 amdgpu_dm_commit_streams(state, dc_state);
8710 for_each_oldnew_connector_in_state(state, connector, old_con_state, new_con_state, i) {
8711 struct dm_connector_state *dm_new_con_state = to_dm_connector_state(new_con_state);
8712 struct amdgpu_crtc *acrtc = to_amdgpu_crtc(dm_new_con_state->base.crtc);
8713 struct amdgpu_dm_connector *aconnector = to_amdgpu_dm_connector(connector);
8715 if (!adev->dm.hdcp_workqueue)
8718 pr_debug("[HDCP_DM] -------------- i : %x ----------\n", i);
8723 pr_debug("[HDCP_DM] connector->index: %x connect_status: %x dpms: %x\n",
8724 connector->index, connector->status, connector->dpms);
8725 pr_debug("[HDCP_DM] state protection old: %x new: %x\n",
8726 old_con_state->content_protection, new_con_state->content_protection);
8728 if (aconnector->dc_sink) {
8729 if (aconnector->dc_sink->sink_signal != SIGNAL_TYPE_VIRTUAL &&
8730 aconnector->dc_sink->sink_signal != SIGNAL_TYPE_NONE) {
8731 pr_debug("[HDCP_DM] pipe_ctx dispname=%s\n",
8732 aconnector->dc_sink->edid_caps.display_name);
8736 new_crtc_state = NULL;
8737 old_crtc_state = NULL;
8740 new_crtc_state = drm_atomic_get_new_crtc_state(state, &acrtc->base);
8741 old_crtc_state = drm_atomic_get_old_crtc_state(state, &acrtc->base);
8745 pr_debug("old crtc en: %x a: %x m: %x a-chg: %x c-chg: %x\n",
8746 old_crtc_state->enable,
8747 old_crtc_state->active,
8748 old_crtc_state->mode_changed,
8749 old_crtc_state->active_changed,
8750 old_crtc_state->connectors_changed);
8753 pr_debug("NEW crtc en: %x a: %x m: %x a-chg: %x c-chg: %x\n",
8754 new_crtc_state->enable,
8755 new_crtc_state->active,
8756 new_crtc_state->mode_changed,
8757 new_crtc_state->active_changed,
8758 new_crtc_state->connectors_changed);
8761 for_each_oldnew_connector_in_state(state, connector, old_con_state, new_con_state, i) {
8762 struct dm_connector_state *dm_new_con_state = to_dm_connector_state(new_con_state);
8763 struct amdgpu_crtc *acrtc = to_amdgpu_crtc(dm_new_con_state->base.crtc);
8764 struct amdgpu_dm_connector *aconnector = to_amdgpu_dm_connector(connector);
8766 if (!adev->dm.hdcp_workqueue)
8769 new_crtc_state = NULL;
8770 old_crtc_state = NULL;
8773 new_crtc_state = drm_atomic_get_new_crtc_state(state, &acrtc->base);
8774 old_crtc_state = drm_atomic_get_old_crtc_state(state, &acrtc->base);
8777 dm_new_crtc_state = to_dm_crtc_state(new_crtc_state);
8779 if (dm_new_crtc_state && dm_new_crtc_state->stream == NULL &&
8780 connector->state->content_protection == DRM_MODE_CONTENT_PROTECTION_ENABLED) {
8781 hdcp_reset_display(adev->dm.hdcp_workqueue, aconnector->dc_link->link_index);
8782 new_con_state->content_protection = DRM_MODE_CONTENT_PROTECTION_DESIRED;
8783 dm_new_con_state->update_hdcp = true;
8787 if (is_content_protection_different(new_crtc_state, old_crtc_state, new_con_state,
8788 old_con_state, connector, adev->dm.hdcp_workqueue)) {
8789 /* when display is unplugged from mst hub, connctor will
8790 * be destroyed within dm_dp_mst_connector_destroy. connector
8791 * hdcp perperties, like type, undesired, desired, enabled,
8792 * will be lost. So, save hdcp properties into hdcp_work within
8793 * amdgpu_dm_atomic_commit_tail. if the same display is
8794 * plugged back with same display index, its hdcp properties
8795 * will be retrieved from hdcp_work within dm_dp_mst_get_modes
8798 bool enable_encryption = false;
8800 if (new_con_state->content_protection == DRM_MODE_CONTENT_PROTECTION_DESIRED)
8801 enable_encryption = true;
8803 if (aconnector->dc_link && aconnector->dc_sink &&
8804 aconnector->dc_link->type == dc_connection_mst_branch) {
8805 struct hdcp_workqueue *hdcp_work = adev->dm.hdcp_workqueue;
8806 struct hdcp_workqueue *hdcp_w =
8807 &hdcp_work[aconnector->dc_link->link_index];
8809 hdcp_w->hdcp_content_type[connector->index] =
8810 new_con_state->hdcp_content_type;
8811 hdcp_w->content_protection[connector->index] =
8812 new_con_state->content_protection;
8815 if (new_crtc_state && new_crtc_state->mode_changed &&
8816 new_con_state->content_protection >= DRM_MODE_CONTENT_PROTECTION_DESIRED)
8817 enable_encryption = true;
8819 DRM_INFO("[HDCP_DM] hdcp_update_display enable_encryption = %x\n", enable_encryption);
8821 hdcp_update_display(
8822 adev->dm.hdcp_workqueue, aconnector->dc_link->link_index, aconnector,
8823 new_con_state->hdcp_content_type, enable_encryption);
8827 /* Handle connector state changes */
8828 for_each_oldnew_connector_in_state(state, connector, old_con_state, new_con_state, i) {
8829 struct dm_connector_state *dm_new_con_state = to_dm_connector_state(new_con_state);
8830 struct dm_connector_state *dm_old_con_state = to_dm_connector_state(old_con_state);
8831 struct amdgpu_crtc *acrtc = to_amdgpu_crtc(dm_new_con_state->base.crtc);
8832 struct dc_surface_update *dummy_updates;
8833 struct dc_stream_update stream_update;
8834 struct dc_info_packet hdr_packet;
8835 struct dc_stream_status *status = NULL;
8836 bool abm_changed, hdr_changed, scaling_changed;
8838 memset(&stream_update, 0, sizeof(stream_update));
8841 new_crtc_state = drm_atomic_get_new_crtc_state(state, &acrtc->base);
8842 old_crtc_state = drm_atomic_get_old_crtc_state(state, &acrtc->base);
8845 /* Skip any modesets/resets */
8846 if (!acrtc || drm_atomic_crtc_needs_modeset(new_crtc_state))
8849 dm_new_crtc_state = to_dm_crtc_state(new_crtc_state);
8850 dm_old_crtc_state = to_dm_crtc_state(old_crtc_state);
8852 scaling_changed = is_scaling_state_different(dm_new_con_state,
8855 abm_changed = dm_new_crtc_state->abm_level !=
8856 dm_old_crtc_state->abm_level;
8859 !drm_connector_atomic_hdr_metadata_equal(old_con_state, new_con_state);
8861 if (!scaling_changed && !abm_changed && !hdr_changed)
8864 stream_update.stream = dm_new_crtc_state->stream;
8865 if (scaling_changed) {
8866 update_stream_scaling_settings(&dm_new_con_state->base.crtc->mode,
8867 dm_new_con_state, dm_new_crtc_state->stream);
8869 stream_update.src = dm_new_crtc_state->stream->src;
8870 stream_update.dst = dm_new_crtc_state->stream->dst;
8874 dm_new_crtc_state->stream->abm_level = dm_new_crtc_state->abm_level;
8876 stream_update.abm_level = &dm_new_crtc_state->abm_level;
8880 fill_hdr_info_packet(new_con_state, &hdr_packet);
8881 stream_update.hdr_static_metadata = &hdr_packet;
8884 status = dc_stream_get_status(dm_new_crtc_state->stream);
8886 if (WARN_ON(!status))
8889 WARN_ON(!status->plane_count);
8892 * TODO: DC refuses to perform stream updates without a dc_surface_update.
8893 * Here we create an empty update on each plane.
8894 * To fix this, DC should permit updating only stream properties.
8896 dummy_updates = kzalloc(sizeof(struct dc_surface_update) * MAX_SURFACES, GFP_ATOMIC);
8897 for (j = 0; j < status->plane_count; j++)
8898 dummy_updates[j].surface = status->plane_states[0];
8901 mutex_lock(&dm->dc_lock);
8902 dc_update_planes_and_stream(dm->dc,
8904 status->plane_count,
8905 dm_new_crtc_state->stream,
8907 mutex_unlock(&dm->dc_lock);
8908 kfree(dummy_updates);
8912 * Enable interrupts for CRTCs that are newly enabled or went through
8913 * a modeset. It was intentionally deferred until after the front end
8914 * state was modified to wait until the OTG was on and so the IRQ
8915 * handlers didn't access stale or invalid state.
8917 for_each_oldnew_crtc_in_state(state, crtc, old_crtc_state, new_crtc_state, i) {
8918 struct amdgpu_crtc *acrtc = to_amdgpu_crtc(crtc);
8919 #ifdef CONFIG_DEBUG_FS
8920 enum amdgpu_dm_pipe_crc_source cur_crc_src;
8922 /* Count number of newly disabled CRTCs for dropping PM refs later. */
8923 if (old_crtc_state->active && !new_crtc_state->active)
8924 crtc_disable_count++;
8926 dm_new_crtc_state = to_dm_crtc_state(new_crtc_state);
8927 dm_old_crtc_state = to_dm_crtc_state(old_crtc_state);
8929 /* For freesync config update on crtc state and params for irq */
8930 update_stream_irq_parameters(dm, dm_new_crtc_state);
8932 #ifdef CONFIG_DEBUG_FS
8933 spin_lock_irqsave(&adev_to_drm(adev)->event_lock, flags);
8934 cur_crc_src = acrtc->dm_irq_params.crc_src;
8935 spin_unlock_irqrestore(&adev_to_drm(adev)->event_lock, flags);
8938 if (new_crtc_state->active &&
8939 (!old_crtc_state->active ||
8940 drm_atomic_crtc_needs_modeset(new_crtc_state))) {
8941 dc_stream_retain(dm_new_crtc_state->stream);
8942 acrtc->dm_irq_params.stream = dm_new_crtc_state->stream;
8943 manage_dm_interrupts(adev, acrtc, true);
8945 /* Handle vrr on->off / off->on transitions */
8946 amdgpu_dm_handle_vrr_transition(dm_old_crtc_state, dm_new_crtc_state);
8948 #ifdef CONFIG_DEBUG_FS
8949 if (new_crtc_state->active &&
8950 (!old_crtc_state->active ||
8951 drm_atomic_crtc_needs_modeset(new_crtc_state))) {
8953 * Frontend may have changed so reapply the CRC capture
8954 * settings for the stream.
8956 if (amdgpu_dm_is_valid_crc_source(cur_crc_src)) {
8957 #if defined(CONFIG_DRM_AMD_SECURE_DISPLAY)
8958 if (amdgpu_dm_crc_window_is_activated(crtc)) {
8959 spin_lock_irqsave(&adev_to_drm(adev)->event_lock, flags);
8960 acrtc->dm_irq_params.window_param.update_win = true;
8963 * It takes 2 frames for HW to stably generate CRC when
8964 * resuming from suspend, so we set skip_frame_cnt 2.
8966 acrtc->dm_irq_params.window_param.skip_frame_cnt = 2;
8967 spin_unlock_irqrestore(&adev_to_drm(adev)->event_lock, flags);
8970 if (amdgpu_dm_crtc_configure_crc_source(
8971 crtc, dm_new_crtc_state, cur_crc_src))
8972 DRM_DEBUG_DRIVER("Failed to configure crc source");
8978 for_each_new_crtc_in_state(state, crtc, new_crtc_state, j)
8979 if (new_crtc_state->async_flip)
8980 wait_for_vblank = false;
8982 /* update planes when needed per crtc*/
8983 for_each_new_crtc_in_state(state, crtc, new_crtc_state, j) {
8984 dm_new_crtc_state = to_dm_crtc_state(new_crtc_state);
8986 if (dm_new_crtc_state->stream)
8987 amdgpu_dm_commit_planes(state, dev, dm, crtc, wait_for_vblank);
8990 /* Update audio instances for each connector. */
8991 amdgpu_dm_commit_audio(dev, state);
8993 /* restore the backlight level */
8994 for (i = 0; i < dm->num_of_edps; i++) {
8995 if (dm->backlight_dev[i] &&
8996 (dm->actual_brightness[i] != dm->brightness[i]))
8997 amdgpu_dm_backlight_set_level(dm, i, dm->brightness[i]);
9001 * send vblank event on all events not handled in flip and
9002 * mark consumed event for drm_atomic_helper_commit_hw_done
9004 spin_lock_irqsave(&adev_to_drm(adev)->event_lock, flags);
9005 for_each_new_crtc_in_state(state, crtc, new_crtc_state, i) {
9007 if (new_crtc_state->event)
9008 drm_send_event_locked(dev, &new_crtc_state->event->base);
9010 new_crtc_state->event = NULL;
9012 spin_unlock_irqrestore(&adev_to_drm(adev)->event_lock, flags);
9014 /* Signal HW programming completion */
9015 drm_atomic_helper_commit_hw_done(state);
9017 if (wait_for_vblank)
9018 drm_atomic_helper_wait_for_flip_done(dev, state);
9020 drm_atomic_helper_cleanup_planes(dev, state);
9022 /* Don't free the memory if we are hitting this as part of suspend.
9023 * This way we don't free any memory during suspend; see
9024 * amdgpu_bo_free_kernel(). The memory will be freed in the first
9025 * non-suspend modeset or when the driver is torn down.
9027 if (!adev->in_suspend) {
9028 /* return the stolen vga memory back to VRAM */
9029 if (!adev->mman.keep_stolen_vga_memory)
9030 amdgpu_bo_free_kernel(&adev->mman.stolen_vga_memory, NULL, NULL);
9031 amdgpu_bo_free_kernel(&adev->mman.stolen_extended_memory, NULL, NULL);
9035 * Finally, drop a runtime PM reference for each newly disabled CRTC,
9036 * so we can put the GPU into runtime suspend if we're not driving any
9039 for (i = 0; i < crtc_disable_count; i++)
9040 pm_runtime_put_autosuspend(dev->dev);
9041 pm_runtime_mark_last_busy(dev->dev);
9044 static int dm_force_atomic_commit(struct drm_connector *connector)
9047 struct drm_device *ddev = connector->dev;
9048 struct drm_atomic_state *state = drm_atomic_state_alloc(ddev);
9049 struct amdgpu_crtc *disconnected_acrtc = to_amdgpu_crtc(connector->encoder->crtc);
9050 struct drm_plane *plane = disconnected_acrtc->base.primary;
9051 struct drm_connector_state *conn_state;
9052 struct drm_crtc_state *crtc_state;
9053 struct drm_plane_state *plane_state;
9058 state->acquire_ctx = ddev->mode_config.acquire_ctx;
9060 /* Construct an atomic state to restore previous display setting */
9063 * Attach connectors to drm_atomic_state
9065 conn_state = drm_atomic_get_connector_state(state, connector);
9067 ret = PTR_ERR_OR_ZERO(conn_state);
9071 /* Attach crtc to drm_atomic_state*/
9072 crtc_state = drm_atomic_get_crtc_state(state, &disconnected_acrtc->base);
9074 ret = PTR_ERR_OR_ZERO(crtc_state);
9078 /* force a restore */
9079 crtc_state->mode_changed = true;
9081 /* Attach plane to drm_atomic_state */
9082 plane_state = drm_atomic_get_plane_state(state, plane);
9084 ret = PTR_ERR_OR_ZERO(plane_state);
9088 /* Call commit internally with the state we just constructed */
9089 ret = drm_atomic_commit(state);
9092 drm_atomic_state_put(state);
9094 DRM_ERROR("Restoring old state failed with %i\n", ret);
9100 * This function handles all cases when set mode does not come upon hotplug.
9101 * This includes when a display is unplugged then plugged back into the
9102 * same port and when running without usermode desktop manager supprot
9104 void dm_restore_drm_connector_state(struct drm_device *dev,
9105 struct drm_connector *connector)
9107 struct amdgpu_dm_connector *aconnector = to_amdgpu_dm_connector(connector);
9108 struct amdgpu_crtc *disconnected_acrtc;
9109 struct dm_crtc_state *acrtc_state;
9111 if (!aconnector->dc_sink || !connector->state || !connector->encoder)
9114 disconnected_acrtc = to_amdgpu_crtc(connector->encoder->crtc);
9115 if (!disconnected_acrtc)
9118 acrtc_state = to_dm_crtc_state(disconnected_acrtc->base.state);
9119 if (!acrtc_state->stream)
9123 * If the previous sink is not released and different from the current,
9124 * we deduce we are in a state where we can not rely on usermode call
9125 * to turn on the display, so we do it here
9127 if (acrtc_state->stream->sink != aconnector->dc_sink)
9128 dm_force_atomic_commit(&aconnector->base);
9132 * Grabs all modesetting locks to serialize against any blocking commits,
9133 * Waits for completion of all non blocking commits.
9135 static int do_aquire_global_lock(struct drm_device *dev,
9136 struct drm_atomic_state *state)
9138 struct drm_crtc *crtc;
9139 struct drm_crtc_commit *commit;
9143 * Adding all modeset locks to aquire_ctx will
9144 * ensure that when the framework release it the
9145 * extra locks we are locking here will get released to
9147 ret = drm_modeset_lock_all_ctx(dev, state->acquire_ctx);
9151 list_for_each_entry(crtc, &dev->mode_config.crtc_list, head) {
9152 spin_lock(&crtc->commit_lock);
9153 commit = list_first_entry_or_null(&crtc->commit_list,
9154 struct drm_crtc_commit, commit_entry);
9156 drm_crtc_commit_get(commit);
9157 spin_unlock(&crtc->commit_lock);
9163 * Make sure all pending HW programming completed and
9166 ret = wait_for_completion_interruptible_timeout(&commit->hw_done, 10*HZ);
9169 ret = wait_for_completion_interruptible_timeout(
9170 &commit->flip_done, 10*HZ);
9173 DRM_ERROR("[CRTC:%d:%s] hw_done or flip_done timed out\n",
9174 crtc->base.id, crtc->name);
9176 drm_crtc_commit_put(commit);
9179 return ret < 0 ? ret : 0;
9182 static void get_freesync_config_for_crtc(
9183 struct dm_crtc_state *new_crtc_state,
9184 struct dm_connector_state *new_con_state)
9186 struct mod_freesync_config config = {0};
9187 struct amdgpu_dm_connector *aconnector =
9188 to_amdgpu_dm_connector(new_con_state->base.connector);
9189 struct drm_display_mode *mode = &new_crtc_state->base.mode;
9190 int vrefresh = drm_mode_vrefresh(mode);
9191 bool fs_vid_mode = false;
9193 new_crtc_state->vrr_supported = new_con_state->freesync_capable &&
9194 vrefresh >= aconnector->min_vfreq &&
9195 vrefresh <= aconnector->max_vfreq;
9197 if (new_crtc_state->vrr_supported) {
9198 new_crtc_state->stream->ignore_msa_timing_param = true;
9199 fs_vid_mode = new_crtc_state->freesync_config.state == VRR_STATE_ACTIVE_FIXED;
9201 config.min_refresh_in_uhz = aconnector->min_vfreq * 1000000;
9202 config.max_refresh_in_uhz = aconnector->max_vfreq * 1000000;
9203 config.vsif_supported = true;
9207 config.state = VRR_STATE_ACTIVE_FIXED;
9208 config.fixed_refresh_in_uhz = new_crtc_state->freesync_config.fixed_refresh_in_uhz;
9210 } else if (new_crtc_state->base.vrr_enabled) {
9211 config.state = VRR_STATE_ACTIVE_VARIABLE;
9213 config.state = VRR_STATE_INACTIVE;
9217 new_crtc_state->freesync_config = config;
9220 static void reset_freesync_config_for_crtc(
9221 struct dm_crtc_state *new_crtc_state)
9223 new_crtc_state->vrr_supported = false;
9225 memset(&new_crtc_state->vrr_infopacket, 0,
9226 sizeof(new_crtc_state->vrr_infopacket));
9230 is_timing_unchanged_for_freesync(struct drm_crtc_state *old_crtc_state,
9231 struct drm_crtc_state *new_crtc_state)
9233 const struct drm_display_mode *old_mode, *new_mode;
9235 if (!old_crtc_state || !new_crtc_state)
9238 old_mode = &old_crtc_state->mode;
9239 new_mode = &new_crtc_state->mode;
9241 if (old_mode->clock == new_mode->clock &&
9242 old_mode->hdisplay == new_mode->hdisplay &&
9243 old_mode->vdisplay == new_mode->vdisplay &&
9244 old_mode->htotal == new_mode->htotal &&
9245 old_mode->vtotal != new_mode->vtotal &&
9246 old_mode->hsync_start == new_mode->hsync_start &&
9247 old_mode->vsync_start != new_mode->vsync_start &&
9248 old_mode->hsync_end == new_mode->hsync_end &&
9249 old_mode->vsync_end != new_mode->vsync_end &&
9250 old_mode->hskew == new_mode->hskew &&
9251 old_mode->vscan == new_mode->vscan &&
9252 (old_mode->vsync_end - old_mode->vsync_start) ==
9253 (new_mode->vsync_end - new_mode->vsync_start))
9259 static void set_freesync_fixed_config(struct dm_crtc_state *dm_new_crtc_state)
9262 struct drm_crtc_state *new_crtc_state = &dm_new_crtc_state->base;
9264 dm_new_crtc_state->freesync_config.state = VRR_STATE_ACTIVE_FIXED;
9266 num = (unsigned long long)new_crtc_state->mode.clock * 1000 * 1000000;
9267 den = (unsigned long long)new_crtc_state->mode.htotal *
9268 (unsigned long long)new_crtc_state->mode.vtotal;
9270 res = div_u64(num, den);
9271 dm_new_crtc_state->freesync_config.fixed_refresh_in_uhz = res;
9274 static int dm_update_crtc_state(struct amdgpu_display_manager *dm,
9275 struct drm_atomic_state *state,
9276 struct drm_crtc *crtc,
9277 struct drm_crtc_state *old_crtc_state,
9278 struct drm_crtc_state *new_crtc_state,
9280 bool *lock_and_validation_needed)
9282 struct dm_atomic_state *dm_state = NULL;
9283 struct dm_crtc_state *dm_old_crtc_state, *dm_new_crtc_state;
9284 struct dc_stream_state *new_stream;
9288 * TODO Move this code into dm_crtc_atomic_check once we get rid of dc_validation_set
9289 * update changed items
9291 struct amdgpu_crtc *acrtc = NULL;
9292 struct amdgpu_dm_connector *aconnector = NULL;
9293 struct drm_connector_state *drm_new_conn_state = NULL, *drm_old_conn_state = NULL;
9294 struct dm_connector_state *dm_new_conn_state = NULL, *dm_old_conn_state = NULL;
9298 dm_old_crtc_state = to_dm_crtc_state(old_crtc_state);
9299 dm_new_crtc_state = to_dm_crtc_state(new_crtc_state);
9300 acrtc = to_amdgpu_crtc(crtc);
9301 aconnector = amdgpu_dm_find_first_crtc_matching_connector(state, crtc);
9303 /* TODO This hack should go away */
9304 if (aconnector && enable) {
9305 /* Make sure fake sink is created in plug-in scenario */
9306 drm_new_conn_state = drm_atomic_get_new_connector_state(state,
9308 drm_old_conn_state = drm_atomic_get_old_connector_state(state,
9311 if (IS_ERR(drm_new_conn_state)) {
9312 ret = PTR_ERR_OR_ZERO(drm_new_conn_state);
9316 dm_new_conn_state = to_dm_connector_state(drm_new_conn_state);
9317 dm_old_conn_state = to_dm_connector_state(drm_old_conn_state);
9319 if (!drm_atomic_crtc_needs_modeset(new_crtc_state))
9322 new_stream = create_validate_stream_for_sink(aconnector,
9323 &new_crtc_state->mode,
9325 dm_old_crtc_state->stream);
9328 * we can have no stream on ACTION_SET if a display
9329 * was disconnected during S3, in this case it is not an
9330 * error, the OS will be updated after detection, and
9331 * will do the right thing on next atomic commit
9335 DRM_DEBUG_DRIVER("%s: Failed to create new stream for crtc %d\n",
9336 __func__, acrtc->base.base.id);
9342 * TODO: Check VSDB bits to decide whether this should
9343 * be enabled or not.
9345 new_stream->triggered_crtc_reset.enabled =
9346 dm->force_timing_sync;
9348 dm_new_crtc_state->abm_level = dm_new_conn_state->abm_level;
9350 ret = fill_hdr_info_packet(drm_new_conn_state,
9351 &new_stream->hdr_static_metadata);
9356 * If we already removed the old stream from the context
9357 * (and set the new stream to NULL) then we can't reuse
9358 * the old stream even if the stream and scaling are unchanged.
9359 * We'll hit the BUG_ON and black screen.
9361 * TODO: Refactor this function to allow this check to work
9362 * in all conditions.
9364 if (dm_new_crtc_state->stream &&
9365 is_timing_unchanged_for_freesync(new_crtc_state, old_crtc_state))
9368 if (dm_new_crtc_state->stream &&
9369 dc_is_stream_unchanged(new_stream, dm_old_crtc_state->stream) &&
9370 dc_is_stream_scaling_unchanged(new_stream, dm_old_crtc_state->stream)) {
9371 new_crtc_state->mode_changed = false;
9372 DRM_DEBUG_DRIVER("Mode change not required, setting mode_changed to %d",
9373 new_crtc_state->mode_changed);
9377 /* mode_changed flag may get updated above, need to check again */
9378 if (!drm_atomic_crtc_needs_modeset(new_crtc_state))
9381 drm_dbg_state(state->dev,
9382 "amdgpu_crtc id:%d crtc_state_flags: enable:%d, active:%d, planes_changed:%d, mode_changed:%d,active_changed:%d,connectors_changed:%d\n",
9384 new_crtc_state->enable,
9385 new_crtc_state->active,
9386 new_crtc_state->planes_changed,
9387 new_crtc_state->mode_changed,
9388 new_crtc_state->active_changed,
9389 new_crtc_state->connectors_changed);
9391 /* Remove stream for any changed/disabled CRTC */
9394 if (!dm_old_crtc_state->stream)
9397 /* Unset freesync video if it was active before */
9398 if (dm_old_crtc_state->freesync_config.state == VRR_STATE_ACTIVE_FIXED) {
9399 dm_new_crtc_state->freesync_config.state = VRR_STATE_INACTIVE;
9400 dm_new_crtc_state->freesync_config.fixed_refresh_in_uhz = 0;
9403 /* Now check if we should set freesync video mode */
9404 if (dm_new_crtc_state->stream &&
9405 dc_is_stream_unchanged(new_stream, dm_old_crtc_state->stream) &&
9406 dc_is_stream_scaling_unchanged(new_stream, dm_old_crtc_state->stream) &&
9407 is_timing_unchanged_for_freesync(new_crtc_state,
9409 new_crtc_state->mode_changed = false;
9411 "Mode change not required for front porch change, setting mode_changed to %d",
9412 new_crtc_state->mode_changed);
9414 set_freesync_fixed_config(dm_new_crtc_state);
9417 } else if (aconnector &&
9418 is_freesync_video_mode(&new_crtc_state->mode,
9420 struct drm_display_mode *high_mode;
9422 high_mode = get_highest_refresh_rate_mode(aconnector, false);
9423 if (!drm_mode_equal(&new_crtc_state->mode, high_mode))
9424 set_freesync_fixed_config(dm_new_crtc_state);
9427 ret = dm_atomic_get_state(state, &dm_state);
9431 DRM_DEBUG_DRIVER("Disabling DRM crtc: %d\n",
9434 /* i.e. reset mode */
9435 if (dc_remove_stream_from_ctx(
9438 dm_old_crtc_state->stream) != DC_OK) {
9443 dc_stream_release(dm_old_crtc_state->stream);
9444 dm_new_crtc_state->stream = NULL;
9446 reset_freesync_config_for_crtc(dm_new_crtc_state);
9448 *lock_and_validation_needed = true;
9450 } else {/* Add stream for any updated/enabled CRTC */
9452 * Quick fix to prevent NULL pointer on new_stream when
9453 * added MST connectors not found in existing crtc_state in the chained mode
9454 * TODO: need to dig out the root cause of that
9459 if (modereset_required(new_crtc_state))
9462 if (amdgpu_dm_crtc_modeset_required(new_crtc_state, new_stream,
9463 dm_old_crtc_state->stream)) {
9465 WARN_ON(dm_new_crtc_state->stream);
9467 ret = dm_atomic_get_state(state, &dm_state);
9471 dm_new_crtc_state->stream = new_stream;
9473 dc_stream_retain(new_stream);
9475 DRM_DEBUG_ATOMIC("Enabling DRM crtc: %d\n",
9478 if (dc_add_stream_to_ctx(
9481 dm_new_crtc_state->stream) != DC_OK) {
9486 *lock_and_validation_needed = true;
9491 /* Release extra reference */
9493 dc_stream_release(new_stream);
9496 * We want to do dc stream updates that do not require a
9497 * full modeset below.
9499 if (!(enable && aconnector && new_crtc_state->active))
9502 * Given above conditions, the dc state cannot be NULL because:
9503 * 1. We're in the process of enabling CRTCs (just been added
9504 * to the dc context, or already is on the context)
9505 * 2. Has a valid connector attached, and
9506 * 3. Is currently active and enabled.
9507 * => The dc stream state currently exists.
9509 BUG_ON(dm_new_crtc_state->stream == NULL);
9511 /* Scaling or underscan settings */
9512 if (is_scaling_state_different(dm_old_conn_state, dm_new_conn_state) ||
9513 drm_atomic_crtc_needs_modeset(new_crtc_state))
9514 update_stream_scaling_settings(
9515 &new_crtc_state->mode, dm_new_conn_state, dm_new_crtc_state->stream);
9518 dm_new_crtc_state->abm_level = dm_new_conn_state->abm_level;
9521 * Color management settings. We also update color properties
9522 * when a modeset is needed, to ensure it gets reprogrammed.
9524 if (dm_new_crtc_state->base.color_mgmt_changed ||
9525 drm_atomic_crtc_needs_modeset(new_crtc_state)) {
9526 ret = amdgpu_dm_update_crtc_color_mgmt(dm_new_crtc_state);
9531 /* Update Freesync settings. */
9532 get_freesync_config_for_crtc(dm_new_crtc_state,
9539 dc_stream_release(new_stream);
9543 static bool should_reset_plane(struct drm_atomic_state *state,
9544 struct drm_plane *plane,
9545 struct drm_plane_state *old_plane_state,
9546 struct drm_plane_state *new_plane_state)
9548 struct drm_plane *other;
9549 struct drm_plane_state *old_other_state, *new_other_state;
9550 struct drm_crtc_state *new_crtc_state;
9551 struct amdgpu_device *adev = drm_to_adev(plane->dev);
9555 * TODO: Remove this hack for all asics once it proves that the
9556 * fast updates works fine on DCN3.2+.
9558 if (adev->ip_versions[DCE_HWIP][0] < IP_VERSION(3, 2, 0) && state->allow_modeset)
9561 /* Exit early if we know that we're adding or removing the plane. */
9562 if (old_plane_state->crtc != new_plane_state->crtc)
9565 /* old crtc == new_crtc == NULL, plane not in context. */
9566 if (!new_plane_state->crtc)
9570 drm_atomic_get_new_crtc_state(state, new_plane_state->crtc);
9572 if (!new_crtc_state)
9575 /* CRTC Degamma changes currently require us to recreate planes. */
9576 if (new_crtc_state->color_mgmt_changed)
9579 if (drm_atomic_crtc_needs_modeset(new_crtc_state))
9583 * If there are any new primary or overlay planes being added or
9584 * removed then the z-order can potentially change. To ensure
9585 * correct z-order and pipe acquisition the current DC architecture
9586 * requires us to remove and recreate all existing planes.
9588 * TODO: Come up with a more elegant solution for this.
9590 for_each_oldnew_plane_in_state(state, other, old_other_state, new_other_state, i) {
9591 struct amdgpu_framebuffer *old_afb, *new_afb;
9593 if (other->type == DRM_PLANE_TYPE_CURSOR)
9596 if (old_other_state->crtc != new_plane_state->crtc &&
9597 new_other_state->crtc != new_plane_state->crtc)
9600 if (old_other_state->crtc != new_other_state->crtc)
9603 /* Src/dst size and scaling updates. */
9604 if (old_other_state->src_w != new_other_state->src_w ||
9605 old_other_state->src_h != new_other_state->src_h ||
9606 old_other_state->crtc_w != new_other_state->crtc_w ||
9607 old_other_state->crtc_h != new_other_state->crtc_h)
9610 /* Rotation / mirroring updates. */
9611 if (old_other_state->rotation != new_other_state->rotation)
9614 /* Blending updates. */
9615 if (old_other_state->pixel_blend_mode !=
9616 new_other_state->pixel_blend_mode)
9619 /* Alpha updates. */
9620 if (old_other_state->alpha != new_other_state->alpha)
9623 /* Colorspace changes. */
9624 if (old_other_state->color_range != new_other_state->color_range ||
9625 old_other_state->color_encoding != new_other_state->color_encoding)
9628 /* Framebuffer checks fall at the end. */
9629 if (!old_other_state->fb || !new_other_state->fb)
9632 /* Pixel format changes can require bandwidth updates. */
9633 if (old_other_state->fb->format != new_other_state->fb->format)
9636 old_afb = (struct amdgpu_framebuffer *)old_other_state->fb;
9637 new_afb = (struct amdgpu_framebuffer *)new_other_state->fb;
9639 /* Tiling and DCC changes also require bandwidth updates. */
9640 if (old_afb->tiling_flags != new_afb->tiling_flags ||
9641 old_afb->base.modifier != new_afb->base.modifier)
9648 static int dm_check_cursor_fb(struct amdgpu_crtc *new_acrtc,
9649 struct drm_plane_state *new_plane_state,
9650 struct drm_framebuffer *fb)
9652 struct amdgpu_device *adev = drm_to_adev(new_acrtc->base.dev);
9653 struct amdgpu_framebuffer *afb = to_amdgpu_framebuffer(fb);
9657 if (fb->width > new_acrtc->max_cursor_width ||
9658 fb->height > new_acrtc->max_cursor_height) {
9659 DRM_DEBUG_ATOMIC("Bad cursor FB size %dx%d\n",
9660 new_plane_state->fb->width,
9661 new_plane_state->fb->height);
9664 if (new_plane_state->src_w != fb->width << 16 ||
9665 new_plane_state->src_h != fb->height << 16) {
9666 DRM_DEBUG_ATOMIC("Cropping not supported for cursor plane\n");
9670 /* Pitch in pixels */
9671 pitch = fb->pitches[0] / fb->format->cpp[0];
9673 if (fb->width != pitch) {
9674 DRM_DEBUG_ATOMIC("Cursor FB width %d doesn't match pitch %d",
9683 /* FB pitch is supported by cursor plane */
9686 DRM_DEBUG_ATOMIC("Bad cursor FB pitch %d px\n", pitch);
9690 /* Core DRM takes care of checking FB modifiers, so we only need to
9691 * check tiling flags when the FB doesn't have a modifier.
9693 if (!(fb->flags & DRM_MODE_FB_MODIFIERS)) {
9694 if (adev->family < AMDGPU_FAMILY_AI) {
9695 linear = AMDGPU_TILING_GET(afb->tiling_flags, ARRAY_MODE) != DC_ARRAY_2D_TILED_THIN1 &&
9696 AMDGPU_TILING_GET(afb->tiling_flags, ARRAY_MODE) != DC_ARRAY_1D_TILED_THIN1 &&
9697 AMDGPU_TILING_GET(afb->tiling_flags, MICRO_TILE_MODE) == 0;
9699 linear = AMDGPU_TILING_GET(afb->tiling_flags, SWIZZLE_MODE) == 0;
9702 DRM_DEBUG_ATOMIC("Cursor FB not linear");
9710 static int dm_update_plane_state(struct dc *dc,
9711 struct drm_atomic_state *state,
9712 struct drm_plane *plane,
9713 struct drm_plane_state *old_plane_state,
9714 struct drm_plane_state *new_plane_state,
9716 bool *lock_and_validation_needed,
9717 bool *is_top_most_overlay)
9720 struct dm_atomic_state *dm_state = NULL;
9721 struct drm_crtc *new_plane_crtc, *old_plane_crtc;
9722 struct drm_crtc_state *old_crtc_state, *new_crtc_state;
9723 struct dm_crtc_state *dm_new_crtc_state, *dm_old_crtc_state;
9724 struct dm_plane_state *dm_new_plane_state, *dm_old_plane_state;
9725 struct amdgpu_crtc *new_acrtc;
9730 new_plane_crtc = new_plane_state->crtc;
9731 old_plane_crtc = old_plane_state->crtc;
9732 dm_new_plane_state = to_dm_plane_state(new_plane_state);
9733 dm_old_plane_state = to_dm_plane_state(old_plane_state);
9735 if (plane->type == DRM_PLANE_TYPE_CURSOR) {
9736 if (!enable || !new_plane_crtc ||
9737 drm_atomic_plane_disabling(plane->state, new_plane_state))
9740 new_acrtc = to_amdgpu_crtc(new_plane_crtc);
9742 if (new_plane_state->src_x != 0 || new_plane_state->src_y != 0) {
9743 DRM_DEBUG_ATOMIC("Cropping not supported for cursor plane\n");
9747 if (new_plane_state->fb) {
9748 ret = dm_check_cursor_fb(new_acrtc, new_plane_state,
9749 new_plane_state->fb);
9757 needs_reset = should_reset_plane(state, plane, old_plane_state,
9760 /* Remove any changed/removed planes */
9765 if (!old_plane_crtc)
9768 old_crtc_state = drm_atomic_get_old_crtc_state(
9769 state, old_plane_crtc);
9770 dm_old_crtc_state = to_dm_crtc_state(old_crtc_state);
9772 if (!dm_old_crtc_state->stream)
9775 DRM_DEBUG_ATOMIC("Disabling DRM plane: %d on DRM crtc %d\n",
9776 plane->base.id, old_plane_crtc->base.id);
9778 ret = dm_atomic_get_state(state, &dm_state);
9782 if (!dc_remove_plane_from_context(
9784 dm_old_crtc_state->stream,
9785 dm_old_plane_state->dc_state,
9786 dm_state->context)) {
9791 if (dm_old_plane_state->dc_state)
9792 dc_plane_state_release(dm_old_plane_state->dc_state);
9794 dm_new_plane_state->dc_state = NULL;
9796 *lock_and_validation_needed = true;
9798 } else { /* Add new planes */
9799 struct dc_plane_state *dc_new_plane_state;
9801 if (drm_atomic_plane_disabling(plane->state, new_plane_state))
9804 if (!new_plane_crtc)
9807 new_crtc_state = drm_atomic_get_new_crtc_state(state, new_plane_crtc);
9808 dm_new_crtc_state = to_dm_crtc_state(new_crtc_state);
9810 if (!dm_new_crtc_state->stream)
9816 ret = amdgpu_dm_plane_helper_check_state(new_plane_state, new_crtc_state);
9820 WARN_ON(dm_new_plane_state->dc_state);
9822 dc_new_plane_state = dc_create_plane_state(dc);
9823 if (!dc_new_plane_state)
9826 /* Block top most plane from being a video plane */
9827 if (plane->type == DRM_PLANE_TYPE_OVERLAY) {
9828 if (is_video_format(new_plane_state->fb->format->format) && *is_top_most_overlay)
9831 *is_top_most_overlay = false;
9834 DRM_DEBUG_ATOMIC("Enabling DRM plane: %d on DRM crtc %d\n",
9835 plane->base.id, new_plane_crtc->base.id);
9837 ret = fill_dc_plane_attributes(
9838 drm_to_adev(new_plane_crtc->dev),
9843 dc_plane_state_release(dc_new_plane_state);
9847 ret = dm_atomic_get_state(state, &dm_state);
9849 dc_plane_state_release(dc_new_plane_state);
9854 * Any atomic check errors that occur after this will
9855 * not need a release. The plane state will be attached
9856 * to the stream, and therefore part of the atomic
9857 * state. It'll be released when the atomic state is
9860 if (!dc_add_plane_to_context(
9862 dm_new_crtc_state->stream,
9864 dm_state->context)) {
9866 dc_plane_state_release(dc_new_plane_state);
9870 dm_new_plane_state->dc_state = dc_new_plane_state;
9872 dm_new_crtc_state->mpo_requested |= (plane->type == DRM_PLANE_TYPE_OVERLAY);
9874 /* Tell DC to do a full surface update every time there
9875 * is a plane change. Inefficient, but works for now.
9877 dm_new_plane_state->dc_state->update_flags.bits.full_update = 1;
9879 *lock_and_validation_needed = true;
9886 static void dm_get_oriented_plane_size(struct drm_plane_state *plane_state,
9887 int *src_w, int *src_h)
9889 switch (plane_state->rotation & DRM_MODE_ROTATE_MASK) {
9890 case DRM_MODE_ROTATE_90:
9891 case DRM_MODE_ROTATE_270:
9892 *src_w = plane_state->src_h >> 16;
9893 *src_h = plane_state->src_w >> 16;
9895 case DRM_MODE_ROTATE_0:
9896 case DRM_MODE_ROTATE_180:
9898 *src_w = plane_state->src_w >> 16;
9899 *src_h = plane_state->src_h >> 16;
9905 dm_get_plane_scale(struct drm_plane_state *plane_state,
9906 int *out_plane_scale_w, int *out_plane_scale_h)
9908 int plane_src_w, plane_src_h;
9910 dm_get_oriented_plane_size(plane_state, &plane_src_w, &plane_src_h);
9911 *out_plane_scale_w = plane_state->crtc_w * 1000 / plane_src_w;
9912 *out_plane_scale_h = plane_state->crtc_h * 1000 / plane_src_h;
9915 static int dm_check_crtc_cursor(struct drm_atomic_state *state,
9916 struct drm_crtc *crtc,
9917 struct drm_crtc_state *new_crtc_state)
9919 struct drm_plane *cursor = crtc->cursor, *plane, *underlying;
9920 struct drm_plane_state *old_plane_state, *new_plane_state;
9921 struct drm_plane_state *new_cursor_state, *new_underlying_state;
9923 int cursor_scale_w, cursor_scale_h, underlying_scale_w, underlying_scale_h;
9924 bool any_relevant_change = false;
9926 /* On DCE and DCN there is no dedicated hardware cursor plane. We get a
9927 * cursor per pipe but it's going to inherit the scaling and
9928 * positioning from the underlying pipe. Check the cursor plane's
9929 * blending properties match the underlying planes'.
9932 /* If no plane was enabled or changed scaling, no need to check again */
9933 for_each_oldnew_plane_in_state(state, plane, old_plane_state, new_plane_state, i) {
9934 int new_scale_w, new_scale_h, old_scale_w, old_scale_h;
9936 if (!new_plane_state || !new_plane_state->fb || new_plane_state->crtc != crtc)
9939 if (!old_plane_state || !old_plane_state->fb || old_plane_state->crtc != crtc) {
9940 any_relevant_change = true;
9944 if (new_plane_state->fb == old_plane_state->fb &&
9945 new_plane_state->crtc_w == old_plane_state->crtc_w &&
9946 new_plane_state->crtc_h == old_plane_state->crtc_h)
9949 dm_get_plane_scale(new_plane_state, &new_scale_w, &new_scale_h);
9950 dm_get_plane_scale(old_plane_state, &old_scale_w, &old_scale_h);
9952 if (new_scale_w != old_scale_w || new_scale_h != old_scale_h) {
9953 any_relevant_change = true;
9958 if (!any_relevant_change)
9961 new_cursor_state = drm_atomic_get_plane_state(state, cursor);
9962 if (IS_ERR(new_cursor_state))
9963 return PTR_ERR(new_cursor_state);
9965 if (!new_cursor_state->fb)
9968 dm_get_plane_scale(new_cursor_state, &cursor_scale_w, &cursor_scale_h);
9970 /* Need to check all enabled planes, even if this commit doesn't change
9973 i = drm_atomic_add_affected_planes(state, crtc);
9977 for_each_new_plane_in_state_reverse(state, underlying, new_underlying_state, i) {
9978 /* Narrow down to non-cursor planes on the same CRTC as the cursor */
9979 if (new_underlying_state->crtc != crtc || underlying == crtc->cursor)
9982 /* Ignore disabled planes */
9983 if (!new_underlying_state->fb)
9986 dm_get_plane_scale(new_underlying_state,
9987 &underlying_scale_w, &underlying_scale_h);
9989 if (cursor_scale_w != underlying_scale_w ||
9990 cursor_scale_h != underlying_scale_h) {
9991 drm_dbg_atomic(crtc->dev,
9992 "Cursor [PLANE:%d:%s] scaling doesn't match underlying [PLANE:%d:%s]\n",
9993 cursor->base.id, cursor->name, underlying->base.id, underlying->name);
9997 /* If this plane covers the whole CRTC, no need to check planes underneath */
9998 if (new_underlying_state->crtc_x <= 0 &&
9999 new_underlying_state->crtc_y <= 0 &&
10000 new_underlying_state->crtc_x + new_underlying_state->crtc_w >= new_crtc_state->mode.hdisplay &&
10001 new_underlying_state->crtc_y + new_underlying_state->crtc_h >= new_crtc_state->mode.vdisplay)
10008 static int add_affected_mst_dsc_crtcs(struct drm_atomic_state *state, struct drm_crtc *crtc)
10010 struct drm_connector *connector;
10011 struct drm_connector_state *conn_state, *old_conn_state;
10012 struct amdgpu_dm_connector *aconnector = NULL;
10015 for_each_oldnew_connector_in_state(state, connector, old_conn_state, conn_state, i) {
10016 if (!conn_state->crtc)
10017 conn_state = old_conn_state;
10019 if (conn_state->crtc != crtc)
10022 aconnector = to_amdgpu_dm_connector(connector);
10023 if (!aconnector->mst_output_port || !aconnector->mst_root)
10032 return drm_dp_mst_add_affected_dsc_crtcs(state, &aconnector->mst_root->mst_mgr);
10036 * amdgpu_dm_atomic_check() - Atomic check implementation for AMDgpu DM.
10038 * @dev: The DRM device
10039 * @state: The atomic state to commit
10041 * Validate that the given atomic state is programmable by DC into hardware.
10042 * This involves constructing a &struct dc_state reflecting the new hardware
10043 * state we wish to commit, then querying DC to see if it is programmable. It's
10044 * important not to modify the existing DC state. Otherwise, atomic_check
10045 * may unexpectedly commit hardware changes.
10047 * When validating the DC state, it's important that the right locks are
10048 * acquired. For full updates case which removes/adds/updates streams on one
10049 * CRTC while flipping on another CRTC, acquiring global lock will guarantee
10050 * that any such full update commit will wait for completion of any outstanding
10051 * flip using DRMs synchronization events.
10053 * Note that DM adds the affected connectors for all CRTCs in state, when that
10054 * might not seem necessary. This is because DC stream creation requires the
10055 * DC sink, which is tied to the DRM connector state. Cleaning this up should
10056 * be possible but non-trivial - a possible TODO item.
10058 * Return: -Error code if validation failed.
10060 static int amdgpu_dm_atomic_check(struct drm_device *dev,
10061 struct drm_atomic_state *state)
10063 struct amdgpu_device *adev = drm_to_adev(dev);
10064 struct dm_atomic_state *dm_state = NULL;
10065 struct dc *dc = adev->dm.dc;
10066 struct drm_connector *connector;
10067 struct drm_connector_state *old_con_state, *new_con_state;
10068 struct drm_crtc *crtc;
10069 struct drm_crtc_state *old_crtc_state, *new_crtc_state;
10070 struct drm_plane *plane;
10071 struct drm_plane_state *old_plane_state, *new_plane_state;
10072 enum dc_status status;
10074 bool lock_and_validation_needed = false;
10075 bool is_top_most_overlay = true;
10076 struct dm_crtc_state *dm_old_crtc_state, *dm_new_crtc_state;
10077 struct drm_dp_mst_topology_mgr *mgr;
10078 struct drm_dp_mst_topology_state *mst_state;
10079 struct dsc_mst_fairness_vars vars[MAX_PIPES];
10081 trace_amdgpu_dm_atomic_check_begin(state);
10083 ret = drm_atomic_helper_check_modeset(dev, state);
10085 DRM_DEBUG_DRIVER("drm_atomic_helper_check_modeset() failed\n");
10089 /* Check connector changes */
10090 for_each_oldnew_connector_in_state(state, connector, old_con_state, new_con_state, i) {
10091 struct dm_connector_state *dm_old_con_state = to_dm_connector_state(old_con_state);
10092 struct dm_connector_state *dm_new_con_state = to_dm_connector_state(new_con_state);
10094 /* Skip connectors that are disabled or part of modeset already. */
10095 if (!new_con_state->crtc)
10098 new_crtc_state = drm_atomic_get_crtc_state(state, new_con_state->crtc);
10099 if (IS_ERR(new_crtc_state)) {
10100 DRM_DEBUG_DRIVER("drm_atomic_get_crtc_state() failed\n");
10101 ret = PTR_ERR(new_crtc_state);
10105 if (dm_old_con_state->abm_level != dm_new_con_state->abm_level ||
10106 dm_old_con_state->scaling != dm_new_con_state->scaling)
10107 new_crtc_state->connectors_changed = true;
10110 if (dc_resource_is_dsc_encoding_supported(dc)) {
10111 for_each_oldnew_crtc_in_state(state, crtc, old_crtc_state, new_crtc_state, i) {
10112 if (drm_atomic_crtc_needs_modeset(new_crtc_state)) {
10113 ret = add_affected_mst_dsc_crtcs(state, crtc);
10115 DRM_DEBUG_DRIVER("add_affected_mst_dsc_crtcs() failed\n");
10121 for_each_oldnew_crtc_in_state(state, crtc, old_crtc_state, new_crtc_state, i) {
10122 dm_old_crtc_state = to_dm_crtc_state(old_crtc_state);
10124 if (!drm_atomic_crtc_needs_modeset(new_crtc_state) &&
10125 !new_crtc_state->color_mgmt_changed &&
10126 old_crtc_state->vrr_enabled == new_crtc_state->vrr_enabled &&
10127 dm_old_crtc_state->dsc_force_changed == false)
10130 ret = amdgpu_dm_verify_lut_sizes(new_crtc_state);
10132 DRM_DEBUG_DRIVER("amdgpu_dm_verify_lut_sizes() failed\n");
10136 if (!new_crtc_state->enable)
10139 ret = drm_atomic_add_affected_connectors(state, crtc);
10141 DRM_DEBUG_DRIVER("drm_atomic_add_affected_connectors() failed\n");
10145 ret = drm_atomic_add_affected_planes(state, crtc);
10147 DRM_DEBUG_DRIVER("drm_atomic_add_affected_planes() failed\n");
10151 if (dm_old_crtc_state->dsc_force_changed)
10152 new_crtc_state->mode_changed = true;
10156 * Add all primary and overlay planes on the CRTC to the state
10157 * whenever a plane is enabled to maintain correct z-ordering
10158 * and to enable fast surface updates.
10160 drm_for_each_crtc(crtc, dev) {
10161 bool modified = false;
10163 for_each_oldnew_plane_in_state(state, plane, old_plane_state, new_plane_state, i) {
10164 if (plane->type == DRM_PLANE_TYPE_CURSOR)
10167 if (new_plane_state->crtc == crtc ||
10168 old_plane_state->crtc == crtc) {
10177 drm_for_each_plane_mask(plane, state->dev, crtc->state->plane_mask) {
10178 if (plane->type == DRM_PLANE_TYPE_CURSOR)
10182 drm_atomic_get_plane_state(state, plane);
10184 if (IS_ERR(new_plane_state)) {
10185 ret = PTR_ERR(new_plane_state);
10186 DRM_DEBUG_DRIVER("new_plane_state is BAD\n");
10193 * DC consults the zpos (layer_index in DC terminology) to determine the
10194 * hw plane on which to enable the hw cursor (see
10195 * `dcn10_can_pipe_disable_cursor`). By now, all modified planes are in
10196 * atomic state, so call drm helper to normalize zpos.
10198 ret = drm_atomic_normalize_zpos(dev, state);
10200 drm_dbg(dev, "drm_atomic_normalize_zpos() failed\n");
10204 /* Remove exiting planes if they are modified */
10205 for_each_oldnew_plane_in_state_reverse(state, plane, old_plane_state, new_plane_state, i) {
10206 if (old_plane_state->fb && new_plane_state->fb &&
10207 get_mem_type(old_plane_state->fb) !=
10208 get_mem_type(new_plane_state->fb))
10209 lock_and_validation_needed = true;
10211 ret = dm_update_plane_state(dc, state, plane,
10215 &lock_and_validation_needed,
10216 &is_top_most_overlay);
10218 DRM_DEBUG_DRIVER("dm_update_plane_state() failed\n");
10223 /* Disable all crtcs which require disable */
10224 for_each_oldnew_crtc_in_state(state, crtc, old_crtc_state, new_crtc_state, i) {
10225 ret = dm_update_crtc_state(&adev->dm, state, crtc,
10229 &lock_and_validation_needed);
10231 DRM_DEBUG_DRIVER("DISABLE: dm_update_crtc_state() failed\n");
10236 /* Enable all crtcs which require enable */
10237 for_each_oldnew_crtc_in_state(state, crtc, old_crtc_state, new_crtc_state, i) {
10238 ret = dm_update_crtc_state(&adev->dm, state, crtc,
10242 &lock_and_validation_needed);
10244 DRM_DEBUG_DRIVER("ENABLE: dm_update_crtc_state() failed\n");
10249 /* Add new/modified planes */
10250 for_each_oldnew_plane_in_state_reverse(state, plane, old_plane_state, new_plane_state, i) {
10251 ret = dm_update_plane_state(dc, state, plane,
10255 &lock_and_validation_needed,
10256 &is_top_most_overlay);
10258 DRM_DEBUG_DRIVER("dm_update_plane_state() failed\n");
10263 if (dc_resource_is_dsc_encoding_supported(dc)) {
10264 ret = pre_validate_dsc(state, &dm_state, vars);
10269 /* Run this here since we want to validate the streams we created */
10270 ret = drm_atomic_helper_check_planes(dev, state);
10272 DRM_DEBUG_DRIVER("drm_atomic_helper_check_planes() failed\n");
10276 for_each_new_crtc_in_state(state, crtc, new_crtc_state, i) {
10277 dm_new_crtc_state = to_dm_crtc_state(new_crtc_state);
10278 if (dm_new_crtc_state->mpo_requested)
10279 DRM_DEBUG_DRIVER("MPO enablement requested on crtc:[%p]\n", crtc);
10282 /* Check cursor planes scaling */
10283 for_each_new_crtc_in_state(state, crtc, new_crtc_state, i) {
10284 ret = dm_check_crtc_cursor(state, crtc, new_crtc_state);
10286 DRM_DEBUG_DRIVER("dm_check_crtc_cursor() failed\n");
10291 if (state->legacy_cursor_update) {
10293 * This is a fast cursor update coming from the plane update
10294 * helper, check if it can be done asynchronously for better
10297 state->async_update =
10298 !drm_atomic_helper_async_check(dev, state);
10301 * Skip the remaining global validation if this is an async
10302 * update. Cursor updates can be done without affecting
10303 * state or bandwidth calcs and this avoids the performance
10304 * penalty of locking the private state object and
10305 * allocating a new dc_state.
10307 if (state->async_update)
10311 /* Check scaling and underscan changes*/
10312 /* TODO Removed scaling changes validation due to inability to commit
10313 * new stream into context w\o causing full reset. Need to
10314 * decide how to handle.
10316 for_each_oldnew_connector_in_state(state, connector, old_con_state, new_con_state, i) {
10317 struct dm_connector_state *dm_old_con_state = to_dm_connector_state(old_con_state);
10318 struct dm_connector_state *dm_new_con_state = to_dm_connector_state(new_con_state);
10319 struct amdgpu_crtc *acrtc = to_amdgpu_crtc(dm_new_con_state->base.crtc);
10321 /* Skip any modesets/resets */
10322 if (!acrtc || drm_atomic_crtc_needs_modeset(
10323 drm_atomic_get_new_crtc_state(state, &acrtc->base)))
10326 /* Skip any thing not scale or underscan changes */
10327 if (!is_scaling_state_different(dm_new_con_state, dm_old_con_state))
10330 lock_and_validation_needed = true;
10333 /* set the slot info for each mst_state based on the link encoding format */
10334 for_each_new_mst_mgr_in_state(state, mgr, mst_state, i) {
10335 struct amdgpu_dm_connector *aconnector;
10336 struct drm_connector *connector;
10337 struct drm_connector_list_iter iter;
10338 u8 link_coding_cap;
10340 drm_connector_list_iter_begin(dev, &iter);
10341 drm_for_each_connector_iter(connector, &iter) {
10342 if (connector->index == mst_state->mgr->conn_base_id) {
10343 aconnector = to_amdgpu_dm_connector(connector);
10344 link_coding_cap = dc_link_dp_mst_decide_link_encoding_format(aconnector->dc_link);
10345 drm_dp_mst_update_slots(mst_state, link_coding_cap);
10350 drm_connector_list_iter_end(&iter);
10354 * Streams and planes are reset when there are changes that affect
10355 * bandwidth. Anything that affects bandwidth needs to go through
10356 * DC global validation to ensure that the configuration can be applied
10359 * We have to currently stall out here in atomic_check for outstanding
10360 * commits to finish in this case because our IRQ handlers reference
10361 * DRM state directly - we can end up disabling interrupts too early
10364 * TODO: Remove this stall and drop DM state private objects.
10366 if (lock_and_validation_needed) {
10367 ret = dm_atomic_get_state(state, &dm_state);
10369 DRM_DEBUG_DRIVER("dm_atomic_get_state() failed\n");
10373 ret = do_aquire_global_lock(dev, state);
10375 DRM_DEBUG_DRIVER("do_aquire_global_lock() failed\n");
10379 ret = compute_mst_dsc_configs_for_state(state, dm_state->context, vars);
10381 DRM_DEBUG_DRIVER("compute_mst_dsc_configs_for_state() failed\n");
10386 ret = dm_update_mst_vcpi_slots_for_dsc(state, dm_state->context, vars);
10388 DRM_DEBUG_DRIVER("dm_update_mst_vcpi_slots_for_dsc() failed\n");
10393 * Perform validation of MST topology in the state:
10394 * We need to perform MST atomic check before calling
10395 * dc_validate_global_state(), or there is a chance
10396 * to get stuck in an infinite loop and hang eventually.
10398 ret = drm_dp_mst_atomic_check(state);
10400 DRM_DEBUG_DRIVER("drm_dp_mst_atomic_check() failed\n");
10403 status = dc_validate_global_state(dc, dm_state->context, true);
10404 if (status != DC_OK) {
10405 DRM_DEBUG_DRIVER("DC global validation failure: %s (%d)",
10406 dc_status_to_str(status), status);
10412 * The commit is a fast update. Fast updates shouldn't change
10413 * the DC context, affect global validation, and can have their
10414 * commit work done in parallel with other commits not touching
10415 * the same resource. If we have a new DC context as part of
10416 * the DM atomic state from validation we need to free it and
10417 * retain the existing one instead.
10419 * Furthermore, since the DM atomic state only contains the DC
10420 * context and can safely be annulled, we can free the state
10421 * and clear the associated private object now to free
10422 * some memory and avoid a possible use-after-free later.
10425 for (i = 0; i < state->num_private_objs; i++) {
10426 struct drm_private_obj *obj = state->private_objs[i].ptr;
10428 if (obj->funcs == adev->dm.atomic_obj.funcs) {
10429 int j = state->num_private_objs-1;
10431 dm_atomic_destroy_state(obj,
10432 state->private_objs[i].state);
10434 /* If i is not at the end of the array then the
10435 * last element needs to be moved to where i was
10436 * before the array can safely be truncated.
10439 state->private_objs[i] =
10440 state->private_objs[j];
10442 state->private_objs[j].ptr = NULL;
10443 state->private_objs[j].state = NULL;
10444 state->private_objs[j].old_state = NULL;
10445 state->private_objs[j].new_state = NULL;
10447 state->num_private_objs = j;
10453 /* Store the overall update type for use later in atomic check. */
10454 for_each_new_crtc_in_state(state, crtc, new_crtc_state, i) {
10455 struct dm_crtc_state *dm_new_crtc_state =
10456 to_dm_crtc_state(new_crtc_state);
10459 * Only allow async flips for fast updates that don't change
10460 * the FB pitch, the DCC state, rotation, etc.
10462 if (new_crtc_state->async_flip && lock_and_validation_needed) {
10463 drm_dbg_atomic(crtc->dev,
10464 "[CRTC:%d:%s] async flips are only supported for fast updates\n",
10465 crtc->base.id, crtc->name);
10470 dm_new_crtc_state->update_type = lock_and_validation_needed ?
10471 UPDATE_TYPE_FULL : UPDATE_TYPE_FAST;
10474 /* Must be success */
10477 trace_amdgpu_dm_atomic_check_finish(state, ret);
10482 if (ret == -EDEADLK)
10483 DRM_DEBUG_DRIVER("Atomic check stopped to avoid deadlock.\n");
10484 else if (ret == -EINTR || ret == -EAGAIN || ret == -ERESTARTSYS)
10485 DRM_DEBUG_DRIVER("Atomic check stopped due to signal.\n");
10487 DRM_DEBUG_DRIVER("Atomic check failed with err: %d\n", ret);
10489 trace_amdgpu_dm_atomic_check_finish(state, ret);
10494 static bool is_dp_capable_without_timing_msa(struct dc *dc,
10495 struct amdgpu_dm_connector *amdgpu_dm_connector)
10498 bool capable = false;
10500 if (amdgpu_dm_connector->dc_link &&
10501 dm_helpers_dp_read_dpcd(
10503 amdgpu_dm_connector->dc_link,
10504 DP_DOWN_STREAM_PORT_COUNT,
10506 sizeof(dpcd_data))) {
10507 capable = (dpcd_data & DP_MSA_TIMING_PAR_IGNORED) ? true:false;
10513 static bool dm_edid_parser_send_cea(struct amdgpu_display_manager *dm,
10514 unsigned int offset,
10515 unsigned int total_length,
10517 unsigned int length,
10518 struct amdgpu_hdmi_vsdb_info *vsdb)
10521 union dmub_rb_cmd cmd;
10522 struct dmub_cmd_send_edid_cea *input;
10523 struct dmub_cmd_edid_cea_output *output;
10525 if (length > DMUB_EDID_CEA_DATA_CHUNK_BYTES)
10528 memset(&cmd, 0, sizeof(cmd));
10530 input = &cmd.edid_cea.data.input;
10532 cmd.edid_cea.header.type = DMUB_CMD__EDID_CEA;
10533 cmd.edid_cea.header.sub_type = 0;
10534 cmd.edid_cea.header.payload_bytes =
10535 sizeof(cmd.edid_cea) - sizeof(cmd.edid_cea.header);
10536 input->offset = offset;
10537 input->length = length;
10538 input->cea_total_length = total_length;
10539 memcpy(input->payload, data, length);
10541 res = dm_execute_dmub_cmd(dm->dc->ctx, &cmd, DM_DMUB_WAIT_TYPE_WAIT_WITH_REPLY);
10543 DRM_ERROR("EDID CEA parser failed\n");
10547 output = &cmd.edid_cea.data.output;
10549 if (output->type == DMUB_CMD__EDID_CEA_ACK) {
10550 if (!output->ack.success) {
10551 DRM_ERROR("EDID CEA ack failed at offset %d\n",
10552 output->ack.offset);
10554 } else if (output->type == DMUB_CMD__EDID_CEA_AMD_VSDB) {
10555 if (!output->amd_vsdb.vsdb_found)
10558 vsdb->freesync_supported = output->amd_vsdb.freesync_supported;
10559 vsdb->amd_vsdb_version = output->amd_vsdb.amd_vsdb_version;
10560 vsdb->min_refresh_rate_hz = output->amd_vsdb.min_frame_rate;
10561 vsdb->max_refresh_rate_hz = output->amd_vsdb.max_frame_rate;
10563 DRM_WARN("Unknown EDID CEA parser results\n");
10570 static bool parse_edid_cea_dmcu(struct amdgpu_display_manager *dm,
10571 u8 *edid_ext, int len,
10572 struct amdgpu_hdmi_vsdb_info *vsdb_info)
10576 /* send extension block to DMCU for parsing */
10577 for (i = 0; i < len; i += 8) {
10581 /* send 8 bytes a time */
10582 if (!dc_edid_parser_send_cea(dm->dc, i, len, &edid_ext[i], 8))
10586 /* EDID block sent completed, expect result */
10587 int version, min_rate, max_rate;
10589 res = dc_edid_parser_recv_amd_vsdb(dm->dc, &version, &min_rate, &max_rate);
10591 /* amd vsdb found */
10592 vsdb_info->freesync_supported = 1;
10593 vsdb_info->amd_vsdb_version = version;
10594 vsdb_info->min_refresh_rate_hz = min_rate;
10595 vsdb_info->max_refresh_rate_hz = max_rate;
10603 res = dc_edid_parser_recv_cea_ack(dm->dc, &offset);
10611 static bool parse_edid_cea_dmub(struct amdgpu_display_manager *dm,
10612 u8 *edid_ext, int len,
10613 struct amdgpu_hdmi_vsdb_info *vsdb_info)
10617 /* send extension block to DMCU for parsing */
10618 for (i = 0; i < len; i += 8) {
10619 /* send 8 bytes a time */
10620 if (!dm_edid_parser_send_cea(dm, i, len, &edid_ext[i], 8, vsdb_info))
10624 return vsdb_info->freesync_supported;
10627 static bool parse_edid_cea(struct amdgpu_dm_connector *aconnector,
10628 u8 *edid_ext, int len,
10629 struct amdgpu_hdmi_vsdb_info *vsdb_info)
10631 struct amdgpu_device *adev = drm_to_adev(aconnector->base.dev);
10634 mutex_lock(&adev->dm.dc_lock);
10635 if (adev->dm.dmub_srv)
10636 ret = parse_edid_cea_dmub(&adev->dm, edid_ext, len, vsdb_info);
10638 ret = parse_edid_cea_dmcu(&adev->dm, edid_ext, len, vsdb_info);
10639 mutex_unlock(&adev->dm.dc_lock);
10643 static int parse_amd_vsdb(struct amdgpu_dm_connector *aconnector,
10644 struct edid *edid, struct amdgpu_hdmi_vsdb_info *vsdb_info)
10646 u8 *edid_ext = NULL;
10650 if (edid == NULL || edid->extensions == 0)
10653 /* Find DisplayID extension */
10654 for (i = 0; i < edid->extensions; i++) {
10655 edid_ext = (void *)(edid + (i + 1));
10656 if (edid_ext[0] == DISPLAYID_EXT)
10660 while (j < EDID_LENGTH) {
10661 struct amd_vsdb_block *amd_vsdb = (struct amd_vsdb_block *)&edid_ext[j];
10662 unsigned int ieeeId = (amd_vsdb->ieee_id[2] << 16) | (amd_vsdb->ieee_id[1] << 8) | (amd_vsdb->ieee_id[0]);
10664 if (ieeeId == HDMI_AMD_VENDOR_SPECIFIC_DATA_BLOCK_IEEE_REGISTRATION_ID &&
10665 amd_vsdb->version == HDMI_AMD_VENDOR_SPECIFIC_DATA_BLOCK_VERSION_3) {
10666 vsdb_info->replay_mode = (amd_vsdb->feature_caps & AMD_VSDB_VERSION_3_FEATURECAP_REPLAYMODE) ? true : false;
10667 vsdb_info->amd_vsdb_version = HDMI_AMD_VENDOR_SPECIFIC_DATA_BLOCK_VERSION_3;
10668 DRM_DEBUG_KMS("Panel supports Replay Mode: %d\n", vsdb_info->replay_mode);
10678 static int parse_hdmi_amd_vsdb(struct amdgpu_dm_connector *aconnector,
10679 struct edid *edid, struct amdgpu_hdmi_vsdb_info *vsdb_info)
10681 u8 *edid_ext = NULL;
10683 bool valid_vsdb_found = false;
10685 /*----- drm_find_cea_extension() -----*/
10686 /* No EDID or EDID extensions */
10687 if (edid == NULL || edid->extensions == 0)
10690 /* Find CEA extension */
10691 for (i = 0; i < edid->extensions; i++) {
10692 edid_ext = (uint8_t *)edid + EDID_LENGTH * (i + 1);
10693 if (edid_ext[0] == CEA_EXT)
10697 if (i == edid->extensions)
10700 /*----- cea_db_offsets() -----*/
10701 if (edid_ext[0] != CEA_EXT)
10704 valid_vsdb_found = parse_edid_cea(aconnector, edid_ext, EDID_LENGTH, vsdb_info);
10706 return valid_vsdb_found ? i : -ENODEV;
10710 * amdgpu_dm_update_freesync_caps - Update Freesync capabilities
10712 * @connector: Connector to query.
10713 * @edid: EDID from monitor
10715 * Amdgpu supports Freesync in DP and HDMI displays, and it is required to keep
10716 * track of some of the display information in the internal data struct used by
10717 * amdgpu_dm. This function checks which type of connector we need to set the
10718 * FreeSync parameters.
10720 void amdgpu_dm_update_freesync_caps(struct drm_connector *connector,
10724 struct detailed_timing *timing;
10725 struct detailed_non_pixel *data;
10726 struct detailed_data_monitor_range *range;
10727 struct amdgpu_dm_connector *amdgpu_dm_connector =
10728 to_amdgpu_dm_connector(connector);
10729 struct dm_connector_state *dm_con_state = NULL;
10730 struct dc_sink *sink;
10732 struct drm_device *dev = connector->dev;
10733 struct amdgpu_device *adev = drm_to_adev(dev);
10734 struct amdgpu_hdmi_vsdb_info vsdb_info = {0};
10735 bool freesync_capable = false;
10736 enum adaptive_sync_type as_type = ADAPTIVE_SYNC_TYPE_NONE;
10738 if (!connector->state) {
10739 DRM_ERROR("%s - Connector has no state", __func__);
10743 sink = amdgpu_dm_connector->dc_sink ?
10744 amdgpu_dm_connector->dc_sink :
10745 amdgpu_dm_connector->dc_em_sink;
10747 if (!edid || !sink) {
10748 dm_con_state = to_dm_connector_state(connector->state);
10750 amdgpu_dm_connector->min_vfreq = 0;
10751 amdgpu_dm_connector->max_vfreq = 0;
10752 amdgpu_dm_connector->pixel_clock_mhz = 0;
10753 connector->display_info.monitor_range.min_vfreq = 0;
10754 connector->display_info.monitor_range.max_vfreq = 0;
10755 freesync_capable = false;
10760 dm_con_state = to_dm_connector_state(connector->state);
10762 if (!adev->dm.freesync_module)
10765 if (sink->sink_signal == SIGNAL_TYPE_DISPLAY_PORT
10766 || sink->sink_signal == SIGNAL_TYPE_EDP) {
10767 bool edid_check_required = false;
10770 edid_check_required = is_dp_capable_without_timing_msa(
10772 amdgpu_dm_connector);
10775 if (edid_check_required == true && (edid->version > 1 ||
10776 (edid->version == 1 && edid->revision > 1))) {
10777 for (i = 0; i < 4; i++) {
10779 timing = &edid->detailed_timings[i];
10780 data = &timing->data.other_data;
10781 range = &data->data.range;
10783 * Check if monitor has continuous frequency mode
10785 if (data->type != EDID_DETAIL_MONITOR_RANGE)
10788 * Check for flag range limits only. If flag == 1 then
10789 * no additional timing information provided.
10790 * Default GTF, GTF Secondary curve and CVT are not
10793 if (range->flags != 1)
10796 amdgpu_dm_connector->min_vfreq = range->min_vfreq;
10797 amdgpu_dm_connector->max_vfreq = range->max_vfreq;
10798 amdgpu_dm_connector->pixel_clock_mhz =
10799 range->pixel_clock_mhz * 10;
10801 connector->display_info.monitor_range.min_vfreq = range->min_vfreq;
10802 connector->display_info.monitor_range.max_vfreq = range->max_vfreq;
10807 if (amdgpu_dm_connector->max_vfreq -
10808 amdgpu_dm_connector->min_vfreq > 10) {
10810 freesync_capable = true;
10813 parse_amd_vsdb(amdgpu_dm_connector, edid, &vsdb_info);
10815 if (vsdb_info.replay_mode) {
10816 amdgpu_dm_connector->vsdb_info.replay_mode = vsdb_info.replay_mode;
10817 amdgpu_dm_connector->vsdb_info.amd_vsdb_version = vsdb_info.amd_vsdb_version;
10818 amdgpu_dm_connector->as_type = ADAPTIVE_SYNC_TYPE_EDP;
10821 } else if (edid && sink->sink_signal == SIGNAL_TYPE_HDMI_TYPE_A) {
10822 i = parse_hdmi_amd_vsdb(amdgpu_dm_connector, edid, &vsdb_info);
10823 if (i >= 0 && vsdb_info.freesync_supported) {
10824 timing = &edid->detailed_timings[i];
10825 data = &timing->data.other_data;
10827 amdgpu_dm_connector->min_vfreq = vsdb_info.min_refresh_rate_hz;
10828 amdgpu_dm_connector->max_vfreq = vsdb_info.max_refresh_rate_hz;
10829 if (amdgpu_dm_connector->max_vfreq - amdgpu_dm_connector->min_vfreq > 10)
10830 freesync_capable = true;
10832 connector->display_info.monitor_range.min_vfreq = vsdb_info.min_refresh_rate_hz;
10833 connector->display_info.monitor_range.max_vfreq = vsdb_info.max_refresh_rate_hz;
10837 as_type = dm_get_adaptive_sync_support_type(amdgpu_dm_connector->dc_link);
10839 if (as_type == FREESYNC_TYPE_PCON_IN_WHITELIST) {
10840 i = parse_hdmi_amd_vsdb(amdgpu_dm_connector, edid, &vsdb_info);
10841 if (i >= 0 && vsdb_info.freesync_supported && vsdb_info.amd_vsdb_version > 0) {
10843 amdgpu_dm_connector->pack_sdp_v1_3 = true;
10844 amdgpu_dm_connector->as_type = as_type;
10845 amdgpu_dm_connector->vsdb_info = vsdb_info;
10847 amdgpu_dm_connector->min_vfreq = vsdb_info.min_refresh_rate_hz;
10848 amdgpu_dm_connector->max_vfreq = vsdb_info.max_refresh_rate_hz;
10849 if (amdgpu_dm_connector->max_vfreq - amdgpu_dm_connector->min_vfreq > 10)
10850 freesync_capable = true;
10852 connector->display_info.monitor_range.min_vfreq = vsdb_info.min_refresh_rate_hz;
10853 connector->display_info.monitor_range.max_vfreq = vsdb_info.max_refresh_rate_hz;
10859 dm_con_state->freesync_capable = freesync_capable;
10861 if (connector->vrr_capable_property)
10862 drm_connector_set_vrr_capable_property(connector,
10866 void amdgpu_dm_trigger_timing_sync(struct drm_device *dev)
10868 struct amdgpu_device *adev = drm_to_adev(dev);
10869 struct dc *dc = adev->dm.dc;
10872 mutex_lock(&adev->dm.dc_lock);
10873 if (dc->current_state) {
10874 for (i = 0; i < dc->current_state->stream_count; ++i)
10875 dc->current_state->streams[i]
10876 ->triggered_crtc_reset.enabled =
10877 adev->dm.force_timing_sync;
10879 dm_enable_per_frame_crtc_master_sync(dc->current_state);
10880 dc_trigger_sync(dc, dc->current_state);
10882 mutex_unlock(&adev->dm.dc_lock);
10885 void dm_write_reg_func(const struct dc_context *ctx, uint32_t address,
10886 u32 value, const char *func_name)
10888 #ifdef DM_CHECK_ADDR_0
10889 if (address == 0) {
10890 DC_ERR("invalid register write. address = 0");
10894 cgs_write_register(ctx->cgs_device, address, value);
10895 trace_amdgpu_dc_wreg(&ctx->perf_trace->write_count, address, value);
10898 uint32_t dm_read_reg_func(const struct dc_context *ctx, uint32_t address,
10899 const char *func_name)
10902 #ifdef DM_CHECK_ADDR_0
10903 if (address == 0) {
10904 DC_ERR("invalid register read; address = 0\n");
10909 if (ctx->dmub_srv &&
10910 ctx->dmub_srv->reg_helper_offload.gather_in_progress &&
10911 !ctx->dmub_srv->reg_helper_offload.should_burst_write) {
10916 value = cgs_read_register(ctx->cgs_device, address);
10918 trace_amdgpu_dc_rreg(&ctx->perf_trace->read_count, address, value);
10923 int amdgpu_dm_process_dmub_aux_transfer_sync(
10924 struct dc_context *ctx,
10925 unsigned int link_index,
10926 struct aux_payload *payload,
10927 enum aux_return_code_type *operation_result)
10929 struct amdgpu_device *adev = ctx->driver_context;
10930 struct dmub_notification *p_notify = adev->dm.dmub_notify;
10933 mutex_lock(&adev->dm.dpia_aux_lock);
10934 if (!dc_process_dmub_aux_transfer_async(ctx->dc, link_index, payload)) {
10935 *operation_result = AUX_RET_ERROR_ENGINE_ACQUIRE;
10939 if (!wait_for_completion_timeout(&adev->dm.dmub_aux_transfer_done, 10 * HZ)) {
10940 DRM_ERROR("wait_for_completion_timeout timeout!");
10941 *operation_result = AUX_RET_ERROR_TIMEOUT;
10945 if (p_notify->result != AUX_RET_SUCCESS) {
10947 * Transient states before tunneling is enabled could
10948 * lead to this error. We can ignore this for now.
10950 if (p_notify->result != AUX_RET_ERROR_PROTOCOL_ERROR) {
10951 DRM_WARN("DPIA AUX failed on 0x%x(%d), error %d\n",
10952 payload->address, payload->length,
10955 *operation_result = AUX_RET_ERROR_INVALID_REPLY;
10960 payload->reply[0] = adev->dm.dmub_notify->aux_reply.command;
10961 if (!payload->write && p_notify->aux_reply.length &&
10962 (payload->reply[0] == AUX_TRANSACTION_REPLY_AUX_ACK)) {
10964 if (payload->length != p_notify->aux_reply.length) {
10965 DRM_WARN("invalid read length %d from DPIA AUX 0x%x(%d)!\n",
10966 p_notify->aux_reply.length,
10967 payload->address, payload->length);
10968 *operation_result = AUX_RET_ERROR_INVALID_REPLY;
10972 memcpy(payload->data, p_notify->aux_reply.data,
10973 p_notify->aux_reply.length);
10977 ret = p_notify->aux_reply.length;
10978 *operation_result = p_notify->result;
10980 reinit_completion(&adev->dm.dmub_aux_transfer_done);
10981 mutex_unlock(&adev->dm.dpia_aux_lock);
10985 int amdgpu_dm_process_dmub_set_config_sync(
10986 struct dc_context *ctx,
10987 unsigned int link_index,
10988 struct set_config_cmd_payload *payload,
10989 enum set_config_status *operation_result)
10991 struct amdgpu_device *adev = ctx->driver_context;
10992 bool is_cmd_complete;
10995 mutex_lock(&adev->dm.dpia_aux_lock);
10996 is_cmd_complete = dc_process_dmub_set_config_async(ctx->dc,
10997 link_index, payload, adev->dm.dmub_notify);
10999 if (is_cmd_complete || wait_for_completion_timeout(&adev->dm.dmub_aux_transfer_done, 10 * HZ)) {
11001 *operation_result = adev->dm.dmub_notify->sc_status;
11003 DRM_ERROR("wait_for_completion_timeout timeout!");
11005 *operation_result = SET_CONFIG_UNKNOWN_ERROR;
11008 if (!is_cmd_complete)
11009 reinit_completion(&adev->dm.dmub_aux_transfer_done);
11010 mutex_unlock(&adev->dm.dpia_aux_lock);
11015 * Check whether seamless boot is supported.
11017 * So far we only support seamless boot on CHIP_VANGOGH.
11018 * If everything goes well, we may consider expanding
11019 * seamless boot to other ASICs.
11021 bool check_seamless_boot_capability(struct amdgpu_device *adev)
11023 switch (adev->ip_versions[DCE_HWIP][0]) {
11024 case IP_VERSION(3, 0, 1):
11025 if (!adev->mman.keep_stolen_vga_memory)
11035 bool dm_execute_dmub_cmd(const struct dc_context *ctx, union dmub_rb_cmd *cmd, enum dm_dmub_wait_type wait_type)
11037 return dc_dmub_srv_cmd_run(ctx->dmub_srv, cmd, wait_type);
11040 bool dm_execute_dmub_cmd_list(const struct dc_context *ctx, unsigned int count, union dmub_rb_cmd *cmd, enum dm_dmub_wait_type wait_type)
11042 return dc_dmub_srv_cmd_run_list(ctx->dmub_srv, count, cmd, wait_type);