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"
69 #include "ivsrcid/ivsrcid_vislands30.h"
71 #include <linux/backlight.h>
72 #include <linux/module.h>
73 #include <linux/moduleparam.h>
74 #include <linux/types.h>
75 #include <linux/pm_runtime.h>
76 #include <linux/pci.h>
77 #include <linux/firmware.h>
78 #include <linux/component.h>
79 #include <linux/dmi.h>
81 #include <drm/display/drm_dp_mst_helper.h>
82 #include <drm/display/drm_hdmi_helper.h>
83 #include <drm/drm_atomic.h>
84 #include <drm/drm_atomic_uapi.h>
85 #include <drm/drm_atomic_helper.h>
86 #include <drm/drm_blend.h>
87 #include <drm/drm_fourcc.h>
88 #include <drm/drm_edid.h>
89 #include <drm/drm_vblank.h>
90 #include <drm/drm_audio_component.h>
91 #include <drm/drm_gem_atomic_helper.h>
92 #include <drm/drm_plane_helper.h>
94 #include <acpi/video.h>
96 #include "ivsrcid/dcn/irqsrcs_dcn_1_0.h"
98 #include "dcn/dcn_1_0_offset.h"
99 #include "dcn/dcn_1_0_sh_mask.h"
100 #include "soc15_hw_ip.h"
101 #include "soc15_common.h"
102 #include "vega10_ip_offset.h"
104 #include "gc/gc_11_0_0_offset.h"
105 #include "gc/gc_11_0_0_sh_mask.h"
107 #include "modules/inc/mod_freesync.h"
108 #include "modules/power/power_helpers.h"
110 #define FIRMWARE_RENOIR_DMUB "amdgpu/renoir_dmcub.bin"
111 MODULE_FIRMWARE(FIRMWARE_RENOIR_DMUB);
112 #define FIRMWARE_SIENNA_CICHLID_DMUB "amdgpu/sienna_cichlid_dmcub.bin"
113 MODULE_FIRMWARE(FIRMWARE_SIENNA_CICHLID_DMUB);
114 #define FIRMWARE_NAVY_FLOUNDER_DMUB "amdgpu/navy_flounder_dmcub.bin"
115 MODULE_FIRMWARE(FIRMWARE_NAVY_FLOUNDER_DMUB);
116 #define FIRMWARE_GREEN_SARDINE_DMUB "amdgpu/green_sardine_dmcub.bin"
117 MODULE_FIRMWARE(FIRMWARE_GREEN_SARDINE_DMUB);
118 #define FIRMWARE_VANGOGH_DMUB "amdgpu/vangogh_dmcub.bin"
119 MODULE_FIRMWARE(FIRMWARE_VANGOGH_DMUB);
120 #define FIRMWARE_DIMGREY_CAVEFISH_DMUB "amdgpu/dimgrey_cavefish_dmcub.bin"
121 MODULE_FIRMWARE(FIRMWARE_DIMGREY_CAVEFISH_DMUB);
122 #define FIRMWARE_BEIGE_GOBY_DMUB "amdgpu/beige_goby_dmcub.bin"
123 MODULE_FIRMWARE(FIRMWARE_BEIGE_GOBY_DMUB);
124 #define FIRMWARE_YELLOW_CARP_DMUB "amdgpu/yellow_carp_dmcub.bin"
125 MODULE_FIRMWARE(FIRMWARE_YELLOW_CARP_DMUB);
126 #define FIRMWARE_DCN_314_DMUB "amdgpu/dcn_3_1_4_dmcub.bin"
127 MODULE_FIRMWARE(FIRMWARE_DCN_314_DMUB);
128 #define FIRMWARE_DCN_315_DMUB "amdgpu/dcn_3_1_5_dmcub.bin"
129 MODULE_FIRMWARE(FIRMWARE_DCN_315_DMUB);
130 #define FIRMWARE_DCN316_DMUB "amdgpu/dcn_3_1_6_dmcub.bin"
131 MODULE_FIRMWARE(FIRMWARE_DCN316_DMUB);
133 #define FIRMWARE_DCN_V3_2_0_DMCUB "amdgpu/dcn_3_2_0_dmcub.bin"
134 MODULE_FIRMWARE(FIRMWARE_DCN_V3_2_0_DMCUB);
135 #define FIRMWARE_DCN_V3_2_1_DMCUB "amdgpu/dcn_3_2_1_dmcub.bin"
136 MODULE_FIRMWARE(FIRMWARE_DCN_V3_2_1_DMCUB);
138 #define FIRMWARE_RAVEN_DMCU "amdgpu/raven_dmcu.bin"
139 MODULE_FIRMWARE(FIRMWARE_RAVEN_DMCU);
141 #define FIRMWARE_NAVI12_DMCU "amdgpu/navi12_dmcu.bin"
142 MODULE_FIRMWARE(FIRMWARE_NAVI12_DMCU);
144 /* Number of bytes in PSP header for firmware. */
145 #define PSP_HEADER_BYTES 0x100
147 /* Number of bytes in PSP footer for firmware. */
148 #define PSP_FOOTER_BYTES 0x100
153 * The AMDgpu display manager, **amdgpu_dm** (or even simpler,
154 * **dm**) sits between DRM and DC. It acts as a liaison, converting DRM
155 * requests into DC requests, and DC responses into DRM responses.
157 * The root control structure is &struct amdgpu_display_manager.
160 /* basic init/fini API */
161 static int amdgpu_dm_init(struct amdgpu_device *adev);
162 static void amdgpu_dm_fini(struct amdgpu_device *adev);
163 static bool is_freesync_video_mode(const struct drm_display_mode *mode, struct amdgpu_dm_connector *aconnector);
165 static enum drm_mode_subconnector get_subconnector_type(struct dc_link *link)
167 switch (link->dpcd_caps.dongle_type) {
168 case DISPLAY_DONGLE_NONE:
169 return DRM_MODE_SUBCONNECTOR_Native;
170 case DISPLAY_DONGLE_DP_VGA_CONVERTER:
171 return DRM_MODE_SUBCONNECTOR_VGA;
172 case DISPLAY_DONGLE_DP_DVI_CONVERTER:
173 case DISPLAY_DONGLE_DP_DVI_DONGLE:
174 return DRM_MODE_SUBCONNECTOR_DVID;
175 case DISPLAY_DONGLE_DP_HDMI_CONVERTER:
176 case DISPLAY_DONGLE_DP_HDMI_DONGLE:
177 return DRM_MODE_SUBCONNECTOR_HDMIA;
178 case DISPLAY_DONGLE_DP_HDMI_MISMATCHED_DONGLE:
180 return DRM_MODE_SUBCONNECTOR_Unknown;
184 static void update_subconnector_property(struct amdgpu_dm_connector *aconnector)
186 struct dc_link *link = aconnector->dc_link;
187 struct drm_connector *connector = &aconnector->base;
188 enum drm_mode_subconnector subconnector = DRM_MODE_SUBCONNECTOR_Unknown;
190 if (connector->connector_type != DRM_MODE_CONNECTOR_DisplayPort)
193 if (aconnector->dc_sink)
194 subconnector = get_subconnector_type(link);
196 drm_object_property_set_value(&connector->base,
197 connector->dev->mode_config.dp_subconnector_property,
202 * initializes drm_device display related structures, based on the information
203 * provided by DAL. The drm strcutures are: drm_crtc, drm_connector,
204 * drm_encoder, drm_mode_config
206 * Returns 0 on success
208 static int amdgpu_dm_initialize_drm_device(struct amdgpu_device *adev);
209 /* removes and deallocates the drm structures, created by the above function */
210 static void amdgpu_dm_destroy_drm_device(struct amdgpu_display_manager *dm);
212 static int amdgpu_dm_connector_init(struct amdgpu_display_manager *dm,
213 struct amdgpu_dm_connector *amdgpu_dm_connector,
215 struct amdgpu_encoder *amdgpu_encoder);
216 static int amdgpu_dm_encoder_init(struct drm_device *dev,
217 struct amdgpu_encoder *aencoder,
218 uint32_t link_index);
220 static int amdgpu_dm_connector_get_modes(struct drm_connector *connector);
222 static void amdgpu_dm_atomic_commit_tail(struct drm_atomic_state *state);
224 static int amdgpu_dm_atomic_check(struct drm_device *dev,
225 struct drm_atomic_state *state);
227 static void handle_hpd_irq_helper(struct amdgpu_dm_connector *aconnector);
228 static void handle_hpd_rx_irq(void *param);
231 is_timing_unchanged_for_freesync(struct drm_crtc_state *old_crtc_state,
232 struct drm_crtc_state *new_crtc_state);
234 * dm_vblank_get_counter
237 * Get counter for number of vertical blanks
240 * struct amdgpu_device *adev - [in] desired amdgpu device
241 * int disp_idx - [in] which CRTC to get the counter from
244 * Counter for vertical blanks
246 static u32 dm_vblank_get_counter(struct amdgpu_device *adev, int crtc)
248 if (crtc >= adev->mode_info.num_crtc)
251 struct amdgpu_crtc *acrtc = adev->mode_info.crtcs[crtc];
253 if (acrtc->dm_irq_params.stream == NULL) {
254 DRM_ERROR("dc_stream_state is NULL for crtc '%d'!\n",
259 return dc_stream_get_vblank_counter(acrtc->dm_irq_params.stream);
263 static int dm_crtc_get_scanoutpos(struct amdgpu_device *adev, int crtc,
264 u32 *vbl, u32 *position)
266 u32 v_blank_start, v_blank_end, h_position, v_position;
268 if ((crtc < 0) || (crtc >= adev->mode_info.num_crtc))
271 struct amdgpu_crtc *acrtc = adev->mode_info.crtcs[crtc];
273 if (acrtc->dm_irq_params.stream == NULL) {
274 DRM_ERROR("dc_stream_state is NULL for crtc '%d'!\n",
280 * TODO rework base driver to use values directly.
281 * for now parse it back into reg-format
283 dc_stream_get_scanoutpos(acrtc->dm_irq_params.stream,
289 *position = v_position | (h_position << 16);
290 *vbl = v_blank_start | (v_blank_end << 16);
296 static bool dm_is_idle(void *handle)
302 static int dm_wait_for_idle(void *handle)
308 static bool dm_check_soft_reset(void *handle)
313 static int dm_soft_reset(void *handle)
319 static struct amdgpu_crtc *
320 get_crtc_by_otg_inst(struct amdgpu_device *adev,
323 struct drm_device *dev = adev_to_drm(adev);
324 struct drm_crtc *crtc;
325 struct amdgpu_crtc *amdgpu_crtc;
327 if (WARN_ON(otg_inst == -1))
328 return adev->mode_info.crtcs[0];
330 list_for_each_entry(crtc, &dev->mode_config.crtc_list, head) {
331 amdgpu_crtc = to_amdgpu_crtc(crtc);
333 if (amdgpu_crtc->otg_inst == otg_inst)
340 static inline bool is_dc_timing_adjust_needed(struct dm_crtc_state *old_state,
341 struct dm_crtc_state *new_state)
343 if (new_state->freesync_config.state == VRR_STATE_ACTIVE_FIXED)
345 else if (amdgpu_dm_crtc_vrr_active(old_state) != amdgpu_dm_crtc_vrr_active(new_state))
351 static inline void reverse_planes_order(struct dc_surface_update *array_of_surface_update,
356 for (i = 0, j = planes_count - 1; i < j; i++, j--)
357 swap(array_of_surface_update[i], array_of_surface_update[j]);
361 * update_planes_and_stream_adapter() - Send planes to be updated in DC
363 * DC has a generic way to update planes and stream via
364 * dc_update_planes_and_stream function; however, DM might need some
365 * adjustments and preparation before calling it. This function is a wrapper
366 * for the dc_update_planes_and_stream that does any required configuration
367 * before passing control to DC.
369 static inline bool update_planes_and_stream_adapter(struct dc *dc,
372 struct dc_stream_state *stream,
373 struct dc_stream_update *stream_update,
374 struct dc_surface_update *array_of_surface_update)
376 reverse_planes_order(array_of_surface_update, planes_count);
379 * Previous frame finished and HW is ready for optimization.
381 if (update_type == UPDATE_TYPE_FAST)
382 dc_post_update_surfaces_to_stream(dc);
384 return dc_update_planes_and_stream(dc,
385 array_of_surface_update,
392 * dm_pflip_high_irq() - Handle pageflip interrupt
393 * @interrupt_params: ignored
395 * Handles the pageflip interrupt by notifying all interested parties
396 * that the pageflip has been completed.
398 static void dm_pflip_high_irq(void *interrupt_params)
400 struct amdgpu_crtc *amdgpu_crtc;
401 struct common_irq_params *irq_params = interrupt_params;
402 struct amdgpu_device *adev = irq_params->adev;
404 struct drm_pending_vblank_event *e;
405 u32 vpos, hpos, v_blank_start, v_blank_end;
408 amdgpu_crtc = get_crtc_by_otg_inst(adev, irq_params->irq_src - IRQ_TYPE_PFLIP);
410 /* IRQ could occur when in initial stage */
411 /* TODO work and BO cleanup */
412 if (amdgpu_crtc == NULL) {
413 DC_LOG_PFLIP("CRTC is null, returning.\n");
417 spin_lock_irqsave(&adev_to_drm(adev)->event_lock, flags);
419 if (amdgpu_crtc->pflip_status != AMDGPU_FLIP_SUBMITTED){
420 DC_LOG_PFLIP("amdgpu_crtc->pflip_status = %d !=AMDGPU_FLIP_SUBMITTED(%d) on crtc:%d[%p] \n",
421 amdgpu_crtc->pflip_status,
422 AMDGPU_FLIP_SUBMITTED,
423 amdgpu_crtc->crtc_id,
425 spin_unlock_irqrestore(&adev_to_drm(adev)->event_lock, flags);
429 /* page flip completed. */
430 e = amdgpu_crtc->event;
431 amdgpu_crtc->event = NULL;
435 vrr_active = amdgpu_dm_crtc_vrr_active_irq(amdgpu_crtc);
437 /* Fixed refresh rate, or VRR scanout position outside front-porch? */
439 !dc_stream_get_scanoutpos(amdgpu_crtc->dm_irq_params.stream, &v_blank_start,
440 &v_blank_end, &hpos, &vpos) ||
441 (vpos < v_blank_start)) {
442 /* Update to correct count and vblank timestamp if racing with
443 * vblank irq. This also updates to the correct vblank timestamp
444 * even in VRR mode, as scanout is past the front-porch atm.
446 drm_crtc_accurate_vblank_count(&amdgpu_crtc->base);
448 /* Wake up userspace by sending the pageflip event with proper
449 * count and timestamp of vblank of flip completion.
452 drm_crtc_send_vblank_event(&amdgpu_crtc->base, e);
454 /* Event sent, so done with vblank for this flip */
455 drm_crtc_vblank_put(&amdgpu_crtc->base);
458 /* VRR active and inside front-porch: vblank count and
459 * timestamp for pageflip event will only be up to date after
460 * drm_crtc_handle_vblank() has been executed from late vblank
461 * irq handler after start of back-porch (vline 0). We queue the
462 * pageflip event for send-out by drm_crtc_handle_vblank() with
463 * updated timestamp and count, once it runs after us.
465 * We need to open-code this instead of using the helper
466 * drm_crtc_arm_vblank_event(), as that helper would
467 * call drm_crtc_accurate_vblank_count(), which we must
468 * not call in VRR mode while we are in front-porch!
471 /* sequence will be replaced by real count during send-out. */
472 e->sequence = drm_crtc_vblank_count(&amdgpu_crtc->base);
473 e->pipe = amdgpu_crtc->crtc_id;
475 list_add_tail(&e->base.link, &adev_to_drm(adev)->vblank_event_list);
479 /* Keep track of vblank of this flip for flip throttling. We use the
480 * cooked hw counter, as that one incremented at start of this vblank
481 * of pageflip completion, so last_flip_vblank is the forbidden count
482 * for queueing new pageflips if vsync + VRR is enabled.
484 amdgpu_crtc->dm_irq_params.last_flip_vblank =
485 amdgpu_get_vblank_counter_kms(&amdgpu_crtc->base);
487 amdgpu_crtc->pflip_status = AMDGPU_FLIP_NONE;
488 spin_unlock_irqrestore(&adev_to_drm(adev)->event_lock, flags);
490 DC_LOG_PFLIP("crtc:%d[%p], pflip_stat:AMDGPU_FLIP_NONE, vrr[%d]-fp %d\n",
491 amdgpu_crtc->crtc_id, amdgpu_crtc,
492 vrr_active, (int) !e);
495 static void dm_vupdate_high_irq(void *interrupt_params)
497 struct common_irq_params *irq_params = interrupt_params;
498 struct amdgpu_device *adev = irq_params->adev;
499 struct amdgpu_crtc *acrtc;
500 struct drm_device *drm_dev;
501 struct drm_vblank_crtc *vblank;
502 ktime_t frame_duration_ns, previous_timestamp;
506 acrtc = get_crtc_by_otg_inst(adev, irq_params->irq_src - IRQ_TYPE_VUPDATE);
509 vrr_active = amdgpu_dm_crtc_vrr_active_irq(acrtc);
510 drm_dev = acrtc->base.dev;
511 vblank = &drm_dev->vblank[acrtc->base.index];
512 previous_timestamp = atomic64_read(&irq_params->previous_timestamp);
513 frame_duration_ns = vblank->time - previous_timestamp;
515 if (frame_duration_ns > 0) {
516 trace_amdgpu_refresh_rate_track(acrtc->base.index,
518 ktime_divns(NSEC_PER_SEC, frame_duration_ns));
519 atomic64_set(&irq_params->previous_timestamp, vblank->time);
522 DC_LOG_VBLANK("crtc:%d, vupdate-vrr:%d\n",
526 /* Core vblank handling is done here after end of front-porch in
527 * vrr mode, as vblank timestamping will give valid results
528 * while now done after front-porch. This will also deliver
529 * page-flip completion events that have been queued to us
530 * if a pageflip happened inside front-porch.
533 amdgpu_dm_crtc_handle_vblank(acrtc);
535 /* BTR processing for pre-DCE12 ASICs */
536 if (acrtc->dm_irq_params.stream &&
537 adev->family < AMDGPU_FAMILY_AI) {
538 spin_lock_irqsave(&adev_to_drm(adev)->event_lock, flags);
539 mod_freesync_handle_v_update(
540 adev->dm.freesync_module,
541 acrtc->dm_irq_params.stream,
542 &acrtc->dm_irq_params.vrr_params);
544 dc_stream_adjust_vmin_vmax(
546 acrtc->dm_irq_params.stream,
547 &acrtc->dm_irq_params.vrr_params.adjust);
548 spin_unlock_irqrestore(&adev_to_drm(adev)->event_lock, flags);
555 * dm_crtc_high_irq() - Handles CRTC interrupt
556 * @interrupt_params: used for determining the CRTC instance
558 * Handles the CRTC/VSYNC interrupt by notfying DRM's VBLANK
561 static void dm_crtc_high_irq(void *interrupt_params)
563 struct common_irq_params *irq_params = interrupt_params;
564 struct amdgpu_device *adev = irq_params->adev;
565 struct amdgpu_crtc *acrtc;
569 acrtc = get_crtc_by_otg_inst(adev, irq_params->irq_src - IRQ_TYPE_VBLANK);
573 vrr_active = amdgpu_dm_crtc_vrr_active_irq(acrtc);
575 DC_LOG_VBLANK("crtc:%d, vupdate-vrr:%d, planes:%d\n", acrtc->crtc_id,
576 vrr_active, acrtc->dm_irq_params.active_planes);
579 * Core vblank handling at start of front-porch is only possible
580 * in non-vrr mode, as only there vblank timestamping will give
581 * valid results while done in front-porch. Otherwise defer it
582 * to dm_vupdate_high_irq after end of front-porch.
585 amdgpu_dm_crtc_handle_vblank(acrtc);
588 * Following stuff must happen at start of vblank, for crc
589 * computation and below-the-range btr support in vrr mode.
591 amdgpu_dm_crtc_handle_crc_irq(&acrtc->base);
593 /* BTR updates need to happen before VUPDATE on Vega and above. */
594 if (adev->family < AMDGPU_FAMILY_AI)
597 spin_lock_irqsave(&adev_to_drm(adev)->event_lock, flags);
599 if (acrtc->dm_irq_params.stream &&
600 acrtc->dm_irq_params.vrr_params.supported &&
601 acrtc->dm_irq_params.freesync_config.state ==
602 VRR_STATE_ACTIVE_VARIABLE) {
603 mod_freesync_handle_v_update(adev->dm.freesync_module,
604 acrtc->dm_irq_params.stream,
605 &acrtc->dm_irq_params.vrr_params);
607 dc_stream_adjust_vmin_vmax(adev->dm.dc, acrtc->dm_irq_params.stream,
608 &acrtc->dm_irq_params.vrr_params.adjust);
612 * If there aren't any active_planes then DCH HUBP may be clock-gated.
613 * In that case, pageflip completion interrupts won't fire and pageflip
614 * completion events won't get delivered. Prevent this by sending
615 * pending pageflip events from here if a flip is still pending.
617 * If any planes are enabled, use dm_pflip_high_irq() instead, to
618 * avoid race conditions between flip programming and completion,
619 * which could cause too early flip completion events.
621 if (adev->family >= AMDGPU_FAMILY_RV &&
622 acrtc->pflip_status == AMDGPU_FLIP_SUBMITTED &&
623 acrtc->dm_irq_params.active_planes == 0) {
625 drm_crtc_send_vblank_event(&acrtc->base, acrtc->event);
627 drm_crtc_vblank_put(&acrtc->base);
629 acrtc->pflip_status = AMDGPU_FLIP_NONE;
632 spin_unlock_irqrestore(&adev_to_drm(adev)->event_lock, flags);
635 #if defined(CONFIG_DRM_AMD_SECURE_DISPLAY)
637 * dm_dcn_vertical_interrupt0_high_irq() - Handles OTG Vertical interrupt0 for
638 * DCN generation ASICs
639 * @interrupt_params: interrupt parameters
641 * Used to set crc window/read out crc value at vertical line 0 position
643 static void dm_dcn_vertical_interrupt0_high_irq(void *interrupt_params)
645 struct common_irq_params *irq_params = interrupt_params;
646 struct amdgpu_device *adev = irq_params->adev;
647 struct amdgpu_crtc *acrtc;
649 acrtc = get_crtc_by_otg_inst(adev, irq_params->irq_src - IRQ_TYPE_VLINE0);
654 amdgpu_dm_crtc_handle_crc_window_irq(&acrtc->base);
656 #endif /* CONFIG_DRM_AMD_SECURE_DISPLAY */
659 * dmub_aux_setconfig_callback - Callback for AUX or SET_CONFIG command.
660 * @adev: amdgpu_device pointer
661 * @notify: dmub notification structure
663 * Dmub AUX or SET_CONFIG command completion processing callback
664 * Copies dmub notification to DM which is to be read by AUX command.
665 * issuing thread and also signals the event to wake up the thread.
667 static void dmub_aux_setconfig_callback(struct amdgpu_device *adev,
668 struct dmub_notification *notify)
670 if (adev->dm.dmub_notify)
671 memcpy(adev->dm.dmub_notify, notify, sizeof(struct dmub_notification));
672 if (notify->type == DMUB_NOTIFICATION_AUX_REPLY)
673 complete(&adev->dm.dmub_aux_transfer_done);
677 * dmub_hpd_callback - DMUB HPD interrupt processing callback.
678 * @adev: amdgpu_device pointer
679 * @notify: dmub notification structure
681 * Dmub Hpd interrupt processing callback. Gets displayindex through the
682 * ink index and calls helper to do the processing.
684 static void dmub_hpd_callback(struct amdgpu_device *adev,
685 struct dmub_notification *notify)
687 struct amdgpu_dm_connector *aconnector;
688 struct amdgpu_dm_connector *hpd_aconnector = NULL;
689 struct drm_connector *connector;
690 struct drm_connector_list_iter iter;
691 struct dc_link *link;
693 struct drm_device *dev;
698 if (notify == NULL) {
699 DRM_ERROR("DMUB HPD callback notification was NULL");
703 if (notify->link_index > adev->dm.dc->link_count) {
704 DRM_ERROR("DMUB HPD index (%u)is abnormal", notify->link_index);
708 link_index = notify->link_index;
709 link = adev->dm.dc->links[link_index];
712 drm_connector_list_iter_begin(dev, &iter);
713 drm_for_each_connector_iter(connector, &iter) {
714 aconnector = to_amdgpu_dm_connector(connector);
715 if (link && aconnector->dc_link == link) {
716 if (notify->type == DMUB_NOTIFICATION_HPD)
717 DRM_INFO("DMUB HPD callback: link_index=%u\n", link_index);
718 else if (notify->type == DMUB_NOTIFICATION_HPD_IRQ)
719 DRM_INFO("DMUB HPD IRQ callback: link_index=%u\n", link_index);
721 DRM_WARN("DMUB Unknown HPD callback type %d, link_index=%u\n",
722 notify->type, link_index);
724 hpd_aconnector = aconnector;
728 drm_connector_list_iter_end(&iter);
730 if (hpd_aconnector) {
731 if (notify->type == DMUB_NOTIFICATION_HPD)
732 handle_hpd_irq_helper(hpd_aconnector);
733 else if (notify->type == DMUB_NOTIFICATION_HPD_IRQ)
734 handle_hpd_rx_irq(hpd_aconnector);
739 * register_dmub_notify_callback - Sets callback for DMUB notify
740 * @adev: amdgpu_device pointer
741 * @type: Type of dmub notification
742 * @callback: Dmub interrupt callback function
743 * @dmub_int_thread_offload: offload indicator
745 * API to register a dmub callback handler for a dmub notification
746 * Also sets indicator whether callback processing to be offloaded.
747 * to dmub interrupt handling thread
748 * Return: true if successfully registered, false if there is existing registration
750 static bool register_dmub_notify_callback(struct amdgpu_device *adev,
751 enum dmub_notification_type type,
752 dmub_notify_interrupt_callback_t callback,
753 bool dmub_int_thread_offload)
755 if (callback != NULL && type < ARRAY_SIZE(adev->dm.dmub_thread_offload)) {
756 adev->dm.dmub_callback[type] = callback;
757 adev->dm.dmub_thread_offload[type] = dmub_int_thread_offload;
764 static void dm_handle_hpd_work(struct work_struct *work)
766 struct dmub_hpd_work *dmub_hpd_wrk;
768 dmub_hpd_wrk = container_of(work, struct dmub_hpd_work, handle_hpd_work);
770 if (!dmub_hpd_wrk->dmub_notify) {
771 DRM_ERROR("dmub_hpd_wrk dmub_notify is NULL");
775 if (dmub_hpd_wrk->dmub_notify->type < ARRAY_SIZE(dmub_hpd_wrk->adev->dm.dmub_callback)) {
776 dmub_hpd_wrk->adev->dm.dmub_callback[dmub_hpd_wrk->dmub_notify->type](dmub_hpd_wrk->adev,
777 dmub_hpd_wrk->dmub_notify);
780 kfree(dmub_hpd_wrk->dmub_notify);
785 #define DMUB_TRACE_MAX_READ 64
787 * dm_dmub_outbox1_low_irq() - Handles Outbox interrupt
788 * @interrupt_params: used for determining the Outbox instance
790 * Handles the Outbox Interrupt
793 static void dm_dmub_outbox1_low_irq(void *interrupt_params)
795 struct dmub_notification notify;
796 struct common_irq_params *irq_params = interrupt_params;
797 struct amdgpu_device *adev = irq_params->adev;
798 struct amdgpu_display_manager *dm = &adev->dm;
799 struct dmcub_trace_buf_entry entry = { 0 };
801 struct dmub_hpd_work *dmub_hpd_wrk;
802 struct dc_link *plink = NULL;
804 if (dc_enable_dmub_notifications(adev->dm.dc) &&
805 irq_params->irq_src == DC_IRQ_SOURCE_DMCUB_OUTBOX) {
808 dc_stat_get_dmub_notification(adev->dm.dc, ¬ify);
809 if (notify.type >= ARRAY_SIZE(dm->dmub_thread_offload)) {
810 DRM_ERROR("DM: notify type %d invalid!", notify.type);
813 if (!dm->dmub_callback[notify.type]) {
814 DRM_DEBUG_DRIVER("DMUB notification skipped, no handler: type=%d\n", notify.type);
817 if (dm->dmub_thread_offload[notify.type] == true) {
818 dmub_hpd_wrk = kzalloc(sizeof(*dmub_hpd_wrk), GFP_ATOMIC);
820 DRM_ERROR("Failed to allocate dmub_hpd_wrk");
823 dmub_hpd_wrk->dmub_notify = kmemdup(¬ify, sizeof(struct dmub_notification),
825 if (!dmub_hpd_wrk->dmub_notify) {
827 DRM_ERROR("Failed to allocate dmub_hpd_wrk->dmub_notify");
830 INIT_WORK(&dmub_hpd_wrk->handle_hpd_work, dm_handle_hpd_work);
831 dmub_hpd_wrk->adev = adev;
832 if (notify.type == DMUB_NOTIFICATION_HPD) {
833 plink = adev->dm.dc->links[notify.link_index];
836 notify.hpd_status == DP_HPD_PLUG;
839 queue_work(adev->dm.delayed_hpd_wq, &dmub_hpd_wrk->handle_hpd_work);
841 dm->dmub_callback[notify.type](adev, ¬ify);
843 } while (notify.pending_notification);
848 if (dc_dmub_srv_get_dmub_outbox0_msg(dm->dc, &entry)) {
849 trace_amdgpu_dmub_trace_high_irq(entry.trace_code, entry.tick_count,
850 entry.param0, entry.param1);
852 DRM_DEBUG_DRIVER("trace_code:%u, tick_count:%u, param0:%u, param1:%u\n",
853 entry.trace_code, entry.tick_count, entry.param0, entry.param1);
859 } while (count <= DMUB_TRACE_MAX_READ);
861 if (count > DMUB_TRACE_MAX_READ)
862 DRM_DEBUG_DRIVER("Warning : count > DMUB_TRACE_MAX_READ");
865 static int dm_set_clockgating_state(void *handle,
866 enum amd_clockgating_state state)
871 static int dm_set_powergating_state(void *handle,
872 enum amd_powergating_state state)
877 /* Prototypes of private functions */
878 static int dm_early_init(void* handle);
880 /* Allocate memory for FBC compressed data */
881 static void amdgpu_dm_fbc_init(struct drm_connector *connector)
883 struct drm_device *dev = connector->dev;
884 struct amdgpu_device *adev = drm_to_adev(dev);
885 struct dm_compressor_info *compressor = &adev->dm.compressor;
886 struct amdgpu_dm_connector *aconn = to_amdgpu_dm_connector(connector);
887 struct drm_display_mode *mode;
888 unsigned long max_size = 0;
890 if (adev->dm.dc->fbc_compressor == NULL)
893 if (aconn->dc_link->connector_signal != SIGNAL_TYPE_EDP)
896 if (compressor->bo_ptr)
900 list_for_each_entry(mode, &connector->modes, head) {
901 if (max_size < mode->htotal * mode->vtotal)
902 max_size = mode->htotal * mode->vtotal;
906 int r = amdgpu_bo_create_kernel(adev, max_size * 4, PAGE_SIZE,
907 AMDGPU_GEM_DOMAIN_GTT, &compressor->bo_ptr,
908 &compressor->gpu_addr, &compressor->cpu_addr);
911 DRM_ERROR("DM: Failed to initialize FBC\n");
913 adev->dm.dc->ctx->fbc_gpu_addr = compressor->gpu_addr;
914 DRM_INFO("DM: FBC alloc %lu\n", max_size*4);
921 static int amdgpu_dm_audio_component_get_eld(struct device *kdev, int port,
922 int pipe, bool *enabled,
923 unsigned char *buf, int max_bytes)
925 struct drm_device *dev = dev_get_drvdata(kdev);
926 struct amdgpu_device *adev = drm_to_adev(dev);
927 struct drm_connector *connector;
928 struct drm_connector_list_iter conn_iter;
929 struct amdgpu_dm_connector *aconnector;
934 mutex_lock(&adev->dm.audio_lock);
936 drm_connector_list_iter_begin(dev, &conn_iter);
937 drm_for_each_connector_iter(connector, &conn_iter) {
938 aconnector = to_amdgpu_dm_connector(connector);
939 if (aconnector->audio_inst != port)
943 ret = drm_eld_size(connector->eld);
944 memcpy(buf, connector->eld, min(max_bytes, ret));
948 drm_connector_list_iter_end(&conn_iter);
950 mutex_unlock(&adev->dm.audio_lock);
952 DRM_DEBUG_KMS("Get ELD : idx=%d ret=%d en=%d\n", port, ret, *enabled);
957 static const struct drm_audio_component_ops amdgpu_dm_audio_component_ops = {
958 .get_eld = amdgpu_dm_audio_component_get_eld,
961 static int amdgpu_dm_audio_component_bind(struct device *kdev,
962 struct device *hda_kdev, void *data)
964 struct drm_device *dev = dev_get_drvdata(kdev);
965 struct amdgpu_device *adev = drm_to_adev(dev);
966 struct drm_audio_component *acomp = data;
968 acomp->ops = &amdgpu_dm_audio_component_ops;
970 adev->dm.audio_component = acomp;
975 static void amdgpu_dm_audio_component_unbind(struct device *kdev,
976 struct device *hda_kdev, void *data)
978 struct drm_device *dev = dev_get_drvdata(kdev);
979 struct amdgpu_device *adev = drm_to_adev(dev);
980 struct drm_audio_component *acomp = data;
984 adev->dm.audio_component = NULL;
987 static const struct component_ops amdgpu_dm_audio_component_bind_ops = {
988 .bind = amdgpu_dm_audio_component_bind,
989 .unbind = amdgpu_dm_audio_component_unbind,
992 static int amdgpu_dm_audio_init(struct amdgpu_device *adev)
999 adev->mode_info.audio.enabled = true;
1001 adev->mode_info.audio.num_pins = adev->dm.dc->res_pool->audio_count;
1003 for (i = 0; i < adev->mode_info.audio.num_pins; i++) {
1004 adev->mode_info.audio.pin[i].channels = -1;
1005 adev->mode_info.audio.pin[i].rate = -1;
1006 adev->mode_info.audio.pin[i].bits_per_sample = -1;
1007 adev->mode_info.audio.pin[i].status_bits = 0;
1008 adev->mode_info.audio.pin[i].category_code = 0;
1009 adev->mode_info.audio.pin[i].connected = false;
1010 adev->mode_info.audio.pin[i].id =
1011 adev->dm.dc->res_pool->audios[i]->inst;
1012 adev->mode_info.audio.pin[i].offset = 0;
1015 ret = component_add(adev->dev, &amdgpu_dm_audio_component_bind_ops);
1019 adev->dm.audio_registered = true;
1024 static void amdgpu_dm_audio_fini(struct amdgpu_device *adev)
1029 if (!adev->mode_info.audio.enabled)
1032 if (adev->dm.audio_registered) {
1033 component_del(adev->dev, &amdgpu_dm_audio_component_bind_ops);
1034 adev->dm.audio_registered = false;
1037 /* TODO: Disable audio? */
1039 adev->mode_info.audio.enabled = false;
1042 static void amdgpu_dm_audio_eld_notify(struct amdgpu_device *adev, int pin)
1044 struct drm_audio_component *acomp = adev->dm.audio_component;
1046 if (acomp && acomp->audio_ops && acomp->audio_ops->pin_eld_notify) {
1047 DRM_DEBUG_KMS("Notify ELD: %d\n", pin);
1049 acomp->audio_ops->pin_eld_notify(acomp->audio_ops->audio_ptr,
1054 static int dm_dmub_hw_init(struct amdgpu_device *adev)
1056 const struct dmcub_firmware_header_v1_0 *hdr;
1057 struct dmub_srv *dmub_srv = adev->dm.dmub_srv;
1058 struct dmub_srv_fb_info *fb_info = adev->dm.dmub_fb_info;
1059 const struct firmware *dmub_fw = adev->dm.dmub_fw;
1060 struct dmcu *dmcu = adev->dm.dc->res_pool->dmcu;
1061 struct abm *abm = adev->dm.dc->res_pool->abm;
1062 struct dmub_srv_hw_params hw_params;
1063 enum dmub_status status;
1064 const unsigned char *fw_inst_const, *fw_bss_data;
1065 u32 i, fw_inst_const_size, fw_bss_data_size;
1066 bool has_hw_support;
1069 /* DMUB isn't supported on the ASIC. */
1073 DRM_ERROR("No framebuffer info for DMUB service.\n");
1078 /* Firmware required for DMUB support. */
1079 DRM_ERROR("No firmware provided for DMUB.\n");
1083 status = dmub_srv_has_hw_support(dmub_srv, &has_hw_support);
1084 if (status != DMUB_STATUS_OK) {
1085 DRM_ERROR("Error checking HW support for DMUB: %d\n", status);
1089 if (!has_hw_support) {
1090 DRM_INFO("DMUB unsupported on ASIC\n");
1094 /* Reset DMCUB if it was previously running - before we overwrite its memory. */
1095 status = dmub_srv_hw_reset(dmub_srv);
1096 if (status != DMUB_STATUS_OK)
1097 DRM_WARN("Error resetting DMUB HW: %d\n", status);
1099 hdr = (const struct dmcub_firmware_header_v1_0 *)dmub_fw->data;
1101 fw_inst_const = dmub_fw->data +
1102 le32_to_cpu(hdr->header.ucode_array_offset_bytes) +
1105 fw_bss_data = dmub_fw->data +
1106 le32_to_cpu(hdr->header.ucode_array_offset_bytes) +
1107 le32_to_cpu(hdr->inst_const_bytes);
1109 /* Copy firmware and bios info into FB memory. */
1110 fw_inst_const_size = le32_to_cpu(hdr->inst_const_bytes) -
1111 PSP_HEADER_BYTES - PSP_FOOTER_BYTES;
1113 fw_bss_data_size = le32_to_cpu(hdr->bss_data_bytes);
1115 /* if adev->firmware.load_type == AMDGPU_FW_LOAD_PSP,
1116 * amdgpu_ucode_init_single_fw will load dmub firmware
1117 * fw_inst_const part to cw0; otherwise, the firmware back door load
1118 * will be done by dm_dmub_hw_init
1120 if (adev->firmware.load_type != AMDGPU_FW_LOAD_PSP) {
1121 memcpy(fb_info->fb[DMUB_WINDOW_0_INST_CONST].cpu_addr, fw_inst_const,
1122 fw_inst_const_size);
1125 if (fw_bss_data_size)
1126 memcpy(fb_info->fb[DMUB_WINDOW_2_BSS_DATA].cpu_addr,
1127 fw_bss_data, fw_bss_data_size);
1129 /* Copy firmware bios info into FB memory. */
1130 memcpy(fb_info->fb[DMUB_WINDOW_3_VBIOS].cpu_addr, adev->bios,
1133 /* Reset regions that need to be reset. */
1134 memset(fb_info->fb[DMUB_WINDOW_4_MAILBOX].cpu_addr, 0,
1135 fb_info->fb[DMUB_WINDOW_4_MAILBOX].size);
1137 memset(fb_info->fb[DMUB_WINDOW_5_TRACEBUFF].cpu_addr, 0,
1138 fb_info->fb[DMUB_WINDOW_5_TRACEBUFF].size);
1140 memset(fb_info->fb[DMUB_WINDOW_6_FW_STATE].cpu_addr, 0,
1141 fb_info->fb[DMUB_WINDOW_6_FW_STATE].size);
1143 /* Initialize hardware. */
1144 memset(&hw_params, 0, sizeof(hw_params));
1145 hw_params.fb_base = adev->gmc.fb_start;
1146 hw_params.fb_offset = adev->vm_manager.vram_base_offset;
1148 /* backdoor load firmware and trigger dmub running */
1149 if (adev->firmware.load_type != AMDGPU_FW_LOAD_PSP)
1150 hw_params.load_inst_const = true;
1153 hw_params.psp_version = dmcu->psp_version;
1155 for (i = 0; i < fb_info->num_fb; ++i)
1156 hw_params.fb[i] = &fb_info->fb[i];
1158 switch (adev->ip_versions[DCE_HWIP][0]) {
1159 case IP_VERSION(3, 1, 3):
1160 case IP_VERSION(3, 1, 4):
1161 hw_params.dpia_supported = true;
1162 hw_params.disable_dpia = adev->dm.dc->debug.dpia_debug.bits.disable_dpia;
1168 status = dmub_srv_hw_init(dmub_srv, &hw_params);
1169 if (status != DMUB_STATUS_OK) {
1170 DRM_ERROR("Error initializing DMUB HW: %d\n", status);
1174 /* Wait for firmware load to finish. */
1175 status = dmub_srv_wait_for_auto_load(dmub_srv, 100000);
1176 if (status != DMUB_STATUS_OK)
1177 DRM_WARN("Wait for DMUB auto-load failed: %d\n", status);
1179 /* Init DMCU and ABM if available. */
1181 dmcu->funcs->dmcu_init(dmcu);
1182 abm->dmcu_is_running = dmcu->funcs->is_dmcu_initialized(dmcu);
1185 if (!adev->dm.dc->ctx->dmub_srv)
1186 adev->dm.dc->ctx->dmub_srv = dc_dmub_srv_create(adev->dm.dc, dmub_srv);
1187 if (!adev->dm.dc->ctx->dmub_srv) {
1188 DRM_ERROR("Couldn't allocate DC DMUB server!\n");
1192 DRM_INFO("DMUB hardware initialized: version=0x%08X\n",
1193 adev->dm.dmcub_fw_version);
1198 static void dm_dmub_hw_resume(struct amdgpu_device *adev)
1200 struct dmub_srv *dmub_srv = adev->dm.dmub_srv;
1201 enum dmub_status status;
1205 /* DMUB isn't supported on the ASIC. */
1209 status = dmub_srv_is_hw_init(dmub_srv, &init);
1210 if (status != DMUB_STATUS_OK)
1211 DRM_WARN("DMUB hardware init check failed: %d\n", status);
1213 if (status == DMUB_STATUS_OK && init) {
1214 /* Wait for firmware load to finish. */
1215 status = dmub_srv_wait_for_auto_load(dmub_srv, 100000);
1216 if (status != DMUB_STATUS_OK)
1217 DRM_WARN("Wait for DMUB auto-load failed: %d\n", status);
1219 /* Perform the full hardware initialization. */
1220 dm_dmub_hw_init(adev);
1224 static void mmhub_read_system_context(struct amdgpu_device *adev, struct dc_phy_addr_space_config *pa_config)
1227 u32 logical_addr_low;
1228 u32 logical_addr_high;
1229 u32 agp_base, agp_bot, agp_top;
1230 PHYSICAL_ADDRESS_LOC page_table_start, page_table_end, page_table_base;
1232 memset(pa_config, 0, sizeof(*pa_config));
1235 agp_bot = adev->gmc.agp_start >> 24;
1236 agp_top = adev->gmc.agp_end >> 24;
1238 /* AGP aperture is disabled */
1239 if (agp_bot == agp_top) {
1240 logical_addr_low = adev->gmc.fb_start >> 18;
1241 if (adev->apu_flags & AMD_APU_IS_RAVEN2)
1243 * Raven2 has a HW issue that it is unable to use the vram which
1244 * is out of MC_VM_SYSTEM_APERTURE_HIGH_ADDR. So here is the
1245 * workaround that increase system aperture high address (add 1)
1246 * to get rid of the VM fault and hardware hang.
1248 logical_addr_high = (adev->gmc.fb_end >> 18) + 0x1;
1250 logical_addr_high = adev->gmc.fb_end >> 18;
1252 logical_addr_low = min(adev->gmc.fb_start, adev->gmc.agp_start) >> 18;
1253 if (adev->apu_flags & AMD_APU_IS_RAVEN2)
1255 * Raven2 has a HW issue that it is unable to use the vram which
1256 * is out of MC_VM_SYSTEM_APERTURE_HIGH_ADDR. So here is the
1257 * workaround that increase system aperture high address (add 1)
1258 * to get rid of the VM fault and hardware hang.
1260 logical_addr_high = max((adev->gmc.fb_end >> 18) + 0x1, adev->gmc.agp_end >> 18);
1262 logical_addr_high = max(adev->gmc.fb_end, adev->gmc.agp_end) >> 18;
1265 pt_base = amdgpu_gmc_pd_addr(adev->gart.bo);
1267 page_table_start.high_part = (u32)(adev->gmc.gart_start >> 44) & 0xF;
1268 page_table_start.low_part = (u32)(adev->gmc.gart_start >> 12);
1269 page_table_end.high_part = (u32)(adev->gmc.gart_end >> 44) & 0xF;
1270 page_table_end.low_part = (u32)(adev->gmc.gart_end >> 12);
1271 page_table_base.high_part = upper_32_bits(pt_base) & 0xF;
1272 page_table_base.low_part = lower_32_bits(pt_base);
1274 pa_config->system_aperture.start_addr = (uint64_t)logical_addr_low << 18;
1275 pa_config->system_aperture.end_addr = (uint64_t)logical_addr_high << 18;
1277 pa_config->system_aperture.agp_base = (uint64_t)agp_base << 24 ;
1278 pa_config->system_aperture.agp_bot = (uint64_t)agp_bot << 24;
1279 pa_config->system_aperture.agp_top = (uint64_t)agp_top << 24;
1281 pa_config->system_aperture.fb_base = adev->gmc.fb_start;
1282 pa_config->system_aperture.fb_offset = adev->vm_manager.vram_base_offset;
1283 pa_config->system_aperture.fb_top = adev->gmc.fb_end;
1285 pa_config->gart_config.page_table_start_addr = page_table_start.quad_part << 12;
1286 pa_config->gart_config.page_table_end_addr = page_table_end.quad_part << 12;
1287 pa_config->gart_config.page_table_base_addr = page_table_base.quad_part;
1289 pa_config->is_hvm_enabled = adev->mode_info.gpu_vm_support;
1293 static void force_connector_state(
1294 struct amdgpu_dm_connector *aconnector,
1295 enum drm_connector_force force_state)
1297 struct drm_connector *connector = &aconnector->base;
1299 mutex_lock(&connector->dev->mode_config.mutex);
1300 aconnector->base.force = force_state;
1301 mutex_unlock(&connector->dev->mode_config.mutex);
1303 mutex_lock(&aconnector->hpd_lock);
1304 drm_kms_helper_connector_hotplug_event(connector);
1305 mutex_unlock(&aconnector->hpd_lock);
1308 static void dm_handle_hpd_rx_offload_work(struct work_struct *work)
1310 struct hpd_rx_irq_offload_work *offload_work;
1311 struct amdgpu_dm_connector *aconnector;
1312 struct dc_link *dc_link;
1313 struct amdgpu_device *adev;
1314 enum dc_connection_type new_connection_type = dc_connection_none;
1315 unsigned long flags;
1316 union test_response test_response;
1318 memset(&test_response, 0, sizeof(test_response));
1320 offload_work = container_of(work, struct hpd_rx_irq_offload_work, work);
1321 aconnector = offload_work->offload_wq->aconnector;
1324 DRM_ERROR("Can't retrieve aconnector in hpd_rx_irq_offload_work");
1328 adev = drm_to_adev(aconnector->base.dev);
1329 dc_link = aconnector->dc_link;
1331 mutex_lock(&aconnector->hpd_lock);
1332 if (!dc_link_detect_connection_type(dc_link, &new_connection_type))
1333 DRM_ERROR("KMS: Failed to detect connector\n");
1334 mutex_unlock(&aconnector->hpd_lock);
1336 if (new_connection_type == dc_connection_none)
1339 if (amdgpu_in_reset(adev))
1342 mutex_lock(&adev->dm.dc_lock);
1343 if (offload_work->data.bytes.device_service_irq.bits.AUTOMATED_TEST) {
1344 dc_link_dp_handle_automated_test(dc_link);
1346 if (aconnector->timing_changed) {
1347 /* force connector disconnect and reconnect */
1348 force_connector_state(aconnector, DRM_FORCE_OFF);
1350 force_connector_state(aconnector, DRM_FORCE_UNSPECIFIED);
1353 test_response.bits.ACK = 1;
1355 core_link_write_dpcd(
1359 sizeof(test_response));
1361 else if ((dc_link->connector_signal != SIGNAL_TYPE_EDP) &&
1362 dc_link_check_link_loss_status(dc_link, &offload_work->data) &&
1363 dc_link_dp_allow_hpd_rx_irq(dc_link)) {
1364 /* offload_work->data is from handle_hpd_rx_irq->
1365 * schedule_hpd_rx_offload_work.this is defer handle
1366 * for hpd short pulse. upon here, link status may be
1367 * changed, need get latest link status from dpcd
1368 * registers. if link status is good, skip run link
1371 union hpd_irq_data irq_data;
1373 memset(&irq_data, 0, sizeof(irq_data));
1375 /* before dc_link_dp_handle_link_loss, allow new link lost handle
1376 * request be added to work queue if link lost at end of dc_link_
1377 * dp_handle_link_loss
1379 spin_lock_irqsave(&offload_work->offload_wq->offload_lock, flags);
1380 offload_work->offload_wq->is_handling_link_loss = false;
1381 spin_unlock_irqrestore(&offload_work->offload_wq->offload_lock, flags);
1383 if ((dc_link_dp_read_hpd_rx_irq_data(dc_link, &irq_data) == DC_OK) &&
1384 dc_link_check_link_loss_status(dc_link, &irq_data))
1385 dc_link_dp_handle_link_loss(dc_link);
1387 mutex_unlock(&adev->dm.dc_lock);
1390 kfree(offload_work);
1394 static struct hpd_rx_irq_offload_work_queue *hpd_rx_irq_create_workqueue(struct dc *dc)
1396 int max_caps = dc->caps.max_links;
1398 struct hpd_rx_irq_offload_work_queue *hpd_rx_offload_wq = NULL;
1400 hpd_rx_offload_wq = kcalloc(max_caps, sizeof(*hpd_rx_offload_wq), GFP_KERNEL);
1402 if (!hpd_rx_offload_wq)
1406 for (i = 0; i < max_caps; i++) {
1407 hpd_rx_offload_wq[i].wq =
1408 create_singlethread_workqueue("amdgpu_dm_hpd_rx_offload_wq");
1410 if (hpd_rx_offload_wq[i].wq == NULL) {
1411 DRM_ERROR("create amdgpu_dm_hpd_rx_offload_wq fail!");
1415 spin_lock_init(&hpd_rx_offload_wq[i].offload_lock);
1418 return hpd_rx_offload_wq;
1421 for (i = 0; i < max_caps; i++) {
1422 if (hpd_rx_offload_wq[i].wq)
1423 destroy_workqueue(hpd_rx_offload_wq[i].wq);
1425 kfree(hpd_rx_offload_wq);
1429 struct amdgpu_stutter_quirk {
1437 static const struct amdgpu_stutter_quirk amdgpu_stutter_quirk_list[] = {
1438 /* https://bugzilla.kernel.org/show_bug.cgi?id=214417 */
1439 { 0x1002, 0x15dd, 0x1002, 0x15dd, 0xc8 },
1443 static bool dm_should_disable_stutter(struct pci_dev *pdev)
1445 const struct amdgpu_stutter_quirk *p = amdgpu_stutter_quirk_list;
1447 while (p && p->chip_device != 0) {
1448 if (pdev->vendor == p->chip_vendor &&
1449 pdev->device == p->chip_device &&
1450 pdev->subsystem_vendor == p->subsys_vendor &&
1451 pdev->subsystem_device == p->subsys_device &&
1452 pdev->revision == p->revision) {
1460 static const struct dmi_system_id hpd_disconnect_quirk_table[] = {
1463 DMI_MATCH(DMI_SYS_VENDOR, "Dell Inc."),
1464 DMI_MATCH(DMI_PRODUCT_NAME, "Precision 3660"),
1469 DMI_MATCH(DMI_SYS_VENDOR, "Dell Inc."),
1470 DMI_MATCH(DMI_PRODUCT_NAME, "Precision 3260"),
1475 DMI_MATCH(DMI_SYS_VENDOR, "Dell Inc."),
1476 DMI_MATCH(DMI_PRODUCT_NAME, "Precision 3460"),
1481 DMI_MATCH(DMI_SYS_VENDOR, "Dell Inc."),
1482 DMI_MATCH(DMI_PRODUCT_NAME, "OptiPlex Tower Plus 7010"),
1487 DMI_MATCH(DMI_SYS_VENDOR, "Dell Inc."),
1488 DMI_MATCH(DMI_PRODUCT_NAME, "OptiPlex Tower 7010"),
1493 DMI_MATCH(DMI_SYS_VENDOR, "Dell Inc."),
1494 DMI_MATCH(DMI_PRODUCT_NAME, "OptiPlex SFF Plus 7010"),
1499 DMI_MATCH(DMI_SYS_VENDOR, "Dell Inc."),
1500 DMI_MATCH(DMI_PRODUCT_NAME, "OptiPlex SFF 7010"),
1505 DMI_MATCH(DMI_SYS_VENDOR, "Dell Inc."),
1506 DMI_MATCH(DMI_PRODUCT_NAME, "OptiPlex Micro Plus 7010"),
1511 DMI_MATCH(DMI_SYS_VENDOR, "Dell Inc."),
1512 DMI_MATCH(DMI_PRODUCT_NAME, "OptiPlex Micro 7010"),
1516 /* TODO: refactor this from a fixed table to a dynamic option */
1519 static void retrieve_dmi_info(struct amdgpu_display_manager *dm)
1521 const struct dmi_system_id *dmi_id;
1523 dm->aux_hpd_discon_quirk = false;
1525 dmi_id = dmi_first_match(hpd_disconnect_quirk_table);
1527 dm->aux_hpd_discon_quirk = true;
1528 DRM_INFO("aux_hpd_discon_quirk attached\n");
1532 static int amdgpu_dm_init(struct amdgpu_device *adev)
1534 struct dc_init_data init_data;
1535 struct dc_callback_init init_params;
1538 adev->dm.ddev = adev_to_drm(adev);
1539 adev->dm.adev = adev;
1541 /* Zero all the fields */
1542 memset(&init_data, 0, sizeof(init_data));
1543 memset(&init_params, 0, sizeof(init_params));
1545 mutex_init(&adev->dm.dpia_aux_lock);
1546 mutex_init(&adev->dm.dc_lock);
1547 mutex_init(&adev->dm.audio_lock);
1549 if(amdgpu_dm_irq_init(adev)) {
1550 DRM_ERROR("amdgpu: failed to initialize DM IRQ support.\n");
1554 init_data.asic_id.chip_family = adev->family;
1556 init_data.asic_id.pci_revision_id = adev->pdev->revision;
1557 init_data.asic_id.hw_internal_rev = adev->external_rev_id;
1558 init_data.asic_id.chip_id = adev->pdev->device;
1560 init_data.asic_id.vram_width = adev->gmc.vram_width;
1561 /* TODO: initialize init_data.asic_id.vram_type here!!!! */
1562 init_data.asic_id.atombios_base_address =
1563 adev->mode_info.atom_context->bios;
1565 init_data.driver = adev;
1567 adev->dm.cgs_device = amdgpu_cgs_create_device(adev);
1569 if (!adev->dm.cgs_device) {
1570 DRM_ERROR("amdgpu: failed to create cgs device.\n");
1574 init_data.cgs_device = adev->dm.cgs_device;
1576 init_data.dce_environment = DCE_ENV_PRODUCTION_DRV;
1578 switch (adev->ip_versions[DCE_HWIP][0]) {
1579 case IP_VERSION(2, 1, 0):
1580 switch (adev->dm.dmcub_fw_version) {
1581 case 0: /* development */
1582 case 0x1: /* linux-firmware.git hash 6d9f399 */
1583 case 0x01000000: /* linux-firmware.git hash 9a0b0f4 */
1584 init_data.flags.disable_dmcu = false;
1587 init_data.flags.disable_dmcu = true;
1590 case IP_VERSION(2, 0, 3):
1591 init_data.flags.disable_dmcu = true;
1597 switch (adev->asic_type) {
1600 init_data.flags.gpu_vm_support = true;
1603 switch (adev->ip_versions[DCE_HWIP][0]) {
1604 case IP_VERSION(1, 0, 0):
1605 case IP_VERSION(1, 0, 1):
1606 /* enable S/G on PCO and RV2 */
1607 if ((adev->apu_flags & AMD_APU_IS_RAVEN2) ||
1608 (adev->apu_flags & AMD_APU_IS_PICASSO))
1609 init_data.flags.gpu_vm_support = true;
1611 case IP_VERSION(2, 1, 0):
1612 case IP_VERSION(3, 0, 1):
1613 case IP_VERSION(3, 1, 2):
1614 case IP_VERSION(3, 1, 3):
1615 case IP_VERSION(3, 1, 4):
1616 case IP_VERSION(3, 1, 5):
1617 case IP_VERSION(3, 1, 6):
1618 init_data.flags.gpu_vm_support = true;
1625 if (init_data.flags.gpu_vm_support &&
1626 (amdgpu_sg_display == 0))
1627 init_data.flags.gpu_vm_support = false;
1629 if (init_data.flags.gpu_vm_support)
1630 adev->mode_info.gpu_vm_support = true;
1632 if (amdgpu_dc_feature_mask & DC_FBC_MASK)
1633 init_data.flags.fbc_support = true;
1635 if (amdgpu_dc_feature_mask & DC_MULTI_MON_PP_MCLK_SWITCH_MASK)
1636 init_data.flags.multi_mon_pp_mclk_switch = true;
1638 if (amdgpu_dc_feature_mask & DC_DISABLE_FRACTIONAL_PWM_MASK)
1639 init_data.flags.disable_fractional_pwm = true;
1641 if (amdgpu_dc_feature_mask & DC_EDP_NO_POWER_SEQUENCING)
1642 init_data.flags.edp_no_power_sequencing = true;
1644 if (amdgpu_dc_feature_mask & DC_DISABLE_LTTPR_DP1_4A)
1645 init_data.flags.allow_lttpr_non_transparent_mode.bits.DP1_4A = true;
1646 if (amdgpu_dc_feature_mask & DC_DISABLE_LTTPR_DP2_0)
1647 init_data.flags.allow_lttpr_non_transparent_mode.bits.DP2_0 = true;
1649 init_data.flags.seamless_boot_edp_requested = false;
1651 if (check_seamless_boot_capability(adev)) {
1652 init_data.flags.seamless_boot_edp_requested = true;
1653 init_data.flags.allow_seamless_boot_optimization = true;
1654 DRM_INFO("Seamless boot condition check passed\n");
1657 init_data.flags.enable_mipi_converter_optimization = true;
1659 init_data.dcn_reg_offsets = adev->reg_offset[DCE_HWIP][0];
1660 init_data.nbio_reg_offsets = adev->reg_offset[NBIO_HWIP][0];
1662 INIT_LIST_HEAD(&adev->dm.da_list);
1664 retrieve_dmi_info(&adev->dm);
1666 /* Display Core create. */
1667 adev->dm.dc = dc_create(&init_data);
1670 DRM_INFO("Display Core v%s initialized on %s\n", DC_VER,
1671 dce_version_to_string(adev->dm.dc->ctx->dce_version));
1673 DRM_INFO("Display Core v%s failed to initialize on %s\n", DC_VER,
1674 dce_version_to_string(adev->dm.dc->ctx->dce_version));
1678 if (amdgpu_dc_debug_mask & DC_DISABLE_PIPE_SPLIT) {
1679 adev->dm.dc->debug.force_single_disp_pipe_split = false;
1680 adev->dm.dc->debug.pipe_split_policy = MPC_SPLIT_AVOID;
1683 if (adev->asic_type != CHIP_CARRIZO && adev->asic_type != CHIP_STONEY)
1684 adev->dm.dc->debug.disable_stutter = amdgpu_pp_feature_mask & PP_STUTTER_MODE ? false : true;
1685 if (dm_should_disable_stutter(adev->pdev))
1686 adev->dm.dc->debug.disable_stutter = true;
1688 if (amdgpu_dc_debug_mask & DC_DISABLE_STUTTER)
1689 adev->dm.dc->debug.disable_stutter = true;
1691 if (amdgpu_dc_debug_mask & DC_DISABLE_DSC) {
1692 adev->dm.dc->debug.disable_dsc = true;
1695 if (amdgpu_dc_debug_mask & DC_DISABLE_CLOCK_GATING)
1696 adev->dm.dc->debug.disable_clock_gate = true;
1698 if (amdgpu_dc_debug_mask & DC_FORCE_SUBVP_MCLK_SWITCH)
1699 adev->dm.dc->debug.force_subvp_mclk_switch = true;
1701 adev->dm.dc->debug.visual_confirm = amdgpu_dc_visual_confirm;
1703 /* TODO: Remove after DP2 receiver gets proper support of Cable ID feature */
1704 adev->dm.dc->debug.ignore_cable_id = true;
1706 /* TODO: There is a new drm mst change where the freedom of
1707 * vc_next_start_slot update is revoked/moved into drm, instead of in
1708 * driver. This forces us to make sure to get vc_next_start_slot updated
1709 * in drm function each time without considering if mst_state is active
1710 * or not. Otherwise, next time hotplug will give wrong start_slot
1711 * number. We are implementing a temporary solution to even notify drm
1712 * mst deallocation when link is no longer of MST type when uncommitting
1713 * the stream so we will have more time to work on a proper solution.
1714 * Ideally when dm_helpers_dp_mst_stop_top_mgr message is triggered, we
1715 * should notify drm to do a complete "reset" of its states and stop
1716 * calling further drm mst functions when link is no longer of an MST
1717 * type. This could happen when we unplug an MST hubs/displays. When
1718 * uncommit stream comes later after unplug, we should just reset
1719 * hardware states only.
1721 adev->dm.dc->debug.temp_mst_deallocation_sequence = true;
1723 if (adev->dm.dc->caps.dp_hdmi21_pcon_support)
1724 DRM_INFO("DP-HDMI FRL PCON supported\n");
1726 r = dm_dmub_hw_init(adev);
1728 DRM_ERROR("DMUB interface failed to initialize: status=%d\n", r);
1732 dc_hardware_init(adev->dm.dc);
1734 adev->dm.hpd_rx_offload_wq = hpd_rx_irq_create_workqueue(adev->dm.dc);
1735 if (!adev->dm.hpd_rx_offload_wq) {
1736 DRM_ERROR("amdgpu: failed to create hpd rx offload workqueue.\n");
1740 if ((adev->flags & AMD_IS_APU) && (adev->asic_type >= CHIP_CARRIZO)) {
1741 struct dc_phy_addr_space_config pa_config;
1743 mmhub_read_system_context(adev, &pa_config);
1745 // Call the DC init_memory func
1746 dc_setup_system_context(adev->dm.dc, &pa_config);
1749 adev->dm.freesync_module = mod_freesync_create(adev->dm.dc);
1750 if (!adev->dm.freesync_module) {
1752 "amdgpu: failed to initialize freesync_module.\n");
1754 DRM_DEBUG_DRIVER("amdgpu: freesync_module init done %p.\n",
1755 adev->dm.freesync_module);
1757 amdgpu_dm_init_color_mod();
1759 if (adev->dm.dc->caps.max_links > 0) {
1760 adev->dm.vblank_control_workqueue =
1761 create_singlethread_workqueue("dm_vblank_control_workqueue");
1762 if (!adev->dm.vblank_control_workqueue)
1763 DRM_ERROR("amdgpu: failed to initialize vblank_workqueue.\n");
1766 if (adev->dm.dc->caps.max_links > 0 && adev->family >= AMDGPU_FAMILY_RV) {
1767 adev->dm.hdcp_workqueue = hdcp_create_workqueue(adev, &init_params.cp_psp, adev->dm.dc);
1769 if (!adev->dm.hdcp_workqueue)
1770 DRM_ERROR("amdgpu: failed to initialize hdcp_workqueue.\n");
1772 DRM_DEBUG_DRIVER("amdgpu: hdcp_workqueue init done %p.\n", adev->dm.hdcp_workqueue);
1774 dc_init_callbacks(adev->dm.dc, &init_params);
1776 if (dc_is_dmub_outbox_supported(adev->dm.dc)) {
1777 init_completion(&adev->dm.dmub_aux_transfer_done);
1778 adev->dm.dmub_notify = kzalloc(sizeof(struct dmub_notification), GFP_KERNEL);
1779 if (!adev->dm.dmub_notify) {
1780 DRM_INFO("amdgpu: fail to allocate adev->dm.dmub_notify");
1784 adev->dm.delayed_hpd_wq = create_singlethread_workqueue("amdgpu_dm_hpd_wq");
1785 if (!adev->dm.delayed_hpd_wq) {
1786 DRM_ERROR("amdgpu: failed to create hpd offload workqueue.\n");
1790 amdgpu_dm_outbox_init(adev);
1791 if (!register_dmub_notify_callback(adev, DMUB_NOTIFICATION_AUX_REPLY,
1792 dmub_aux_setconfig_callback, false)) {
1793 DRM_ERROR("amdgpu: fail to register dmub aux callback");
1796 if (!register_dmub_notify_callback(adev, DMUB_NOTIFICATION_HPD, dmub_hpd_callback, true)) {
1797 DRM_ERROR("amdgpu: fail to register dmub hpd callback");
1800 if (!register_dmub_notify_callback(adev, DMUB_NOTIFICATION_HPD_IRQ, dmub_hpd_callback, true)) {
1801 DRM_ERROR("amdgpu: fail to register dmub hpd callback");
1806 /* Enable outbox notification only after IRQ handlers are registered and DMUB is alive.
1807 * It is expected that DMUB will resend any pending notifications at this point, for
1808 * example HPD from DPIA.
1810 if (dc_is_dmub_outbox_supported(adev->dm.dc))
1811 dc_enable_dmub_outbox(adev->dm.dc);
1813 if (amdgpu_dm_initialize_drm_device(adev)) {
1815 "amdgpu: failed to initialize sw for display support.\n");
1819 /* create fake encoders for MST */
1820 dm_dp_create_fake_mst_encoders(adev);
1822 /* TODO: Add_display_info? */
1824 /* TODO use dynamic cursor width */
1825 adev_to_drm(adev)->mode_config.cursor_width = adev->dm.dc->caps.max_cursor_size;
1826 adev_to_drm(adev)->mode_config.cursor_height = adev->dm.dc->caps.max_cursor_size;
1828 if (drm_vblank_init(adev_to_drm(adev), adev->dm.display_indexes_num)) {
1830 "amdgpu: failed to initialize sw for display support.\n");
1834 #if defined(CONFIG_DRM_AMD_SECURE_DISPLAY)
1835 adev->dm.secure_display_ctxs = amdgpu_dm_crtc_secure_display_create_contexts(adev);
1836 if (!adev->dm.secure_display_ctxs)
1837 DRM_ERROR("amdgpu: failed to initialize secure display contexts.\n");
1840 DRM_DEBUG_DRIVER("KMS initialized.\n");
1844 amdgpu_dm_fini(adev);
1849 static int amdgpu_dm_early_fini(void *handle)
1851 struct amdgpu_device *adev = (struct amdgpu_device *)handle;
1853 amdgpu_dm_audio_fini(adev);
1858 static void amdgpu_dm_fini(struct amdgpu_device *adev)
1862 if (adev->dm.vblank_control_workqueue) {
1863 destroy_workqueue(adev->dm.vblank_control_workqueue);
1864 adev->dm.vblank_control_workqueue = NULL;
1867 amdgpu_dm_destroy_drm_device(&adev->dm);
1869 #if defined(CONFIG_DRM_AMD_SECURE_DISPLAY)
1870 if (adev->dm.secure_display_ctxs) {
1871 for (i = 0; i < adev->mode_info.num_crtc; i++) {
1872 if (adev->dm.secure_display_ctxs[i].crtc) {
1873 flush_work(&adev->dm.secure_display_ctxs[i].notify_ta_work);
1874 flush_work(&adev->dm.secure_display_ctxs[i].forward_roi_work);
1877 kfree(adev->dm.secure_display_ctxs);
1878 adev->dm.secure_display_ctxs = NULL;
1881 if (adev->dm.hdcp_workqueue) {
1882 hdcp_destroy(&adev->dev->kobj, adev->dm.hdcp_workqueue);
1883 adev->dm.hdcp_workqueue = NULL;
1887 dc_deinit_callbacks(adev->dm.dc);
1890 dc_dmub_srv_destroy(&adev->dm.dc->ctx->dmub_srv);
1892 if (dc_enable_dmub_notifications(adev->dm.dc)) {
1893 kfree(adev->dm.dmub_notify);
1894 adev->dm.dmub_notify = NULL;
1895 destroy_workqueue(adev->dm.delayed_hpd_wq);
1896 adev->dm.delayed_hpd_wq = NULL;
1899 if (adev->dm.dmub_bo)
1900 amdgpu_bo_free_kernel(&adev->dm.dmub_bo,
1901 &adev->dm.dmub_bo_gpu_addr,
1902 &adev->dm.dmub_bo_cpu_addr);
1904 if (adev->dm.hpd_rx_offload_wq) {
1905 for (i = 0; i < adev->dm.dc->caps.max_links; i++) {
1906 if (adev->dm.hpd_rx_offload_wq[i].wq) {
1907 destroy_workqueue(adev->dm.hpd_rx_offload_wq[i].wq);
1908 adev->dm.hpd_rx_offload_wq[i].wq = NULL;
1912 kfree(adev->dm.hpd_rx_offload_wq);
1913 adev->dm.hpd_rx_offload_wq = NULL;
1916 /* DC Destroy TODO: Replace destroy DAL */
1918 dc_destroy(&adev->dm.dc);
1920 * TODO: pageflip, vlank interrupt
1922 * amdgpu_dm_irq_fini(adev);
1925 if (adev->dm.cgs_device) {
1926 amdgpu_cgs_destroy_device(adev->dm.cgs_device);
1927 adev->dm.cgs_device = NULL;
1929 if (adev->dm.freesync_module) {
1930 mod_freesync_destroy(adev->dm.freesync_module);
1931 adev->dm.freesync_module = NULL;
1934 mutex_destroy(&adev->dm.audio_lock);
1935 mutex_destroy(&adev->dm.dc_lock);
1936 mutex_destroy(&adev->dm.dpia_aux_lock);
1941 static int load_dmcu_fw(struct amdgpu_device *adev)
1943 const char *fw_name_dmcu = NULL;
1945 const struct dmcu_firmware_header_v1_0 *hdr;
1947 switch(adev->asic_type) {
1948 #if defined(CONFIG_DRM_AMD_DC_SI)
1963 case CHIP_POLARIS11:
1964 case CHIP_POLARIS10:
1965 case CHIP_POLARIS12:
1972 fw_name_dmcu = FIRMWARE_NAVI12_DMCU;
1975 if (ASICREV_IS_PICASSO(adev->external_rev_id))
1976 fw_name_dmcu = FIRMWARE_RAVEN_DMCU;
1977 else if (ASICREV_IS_RAVEN2(adev->external_rev_id))
1978 fw_name_dmcu = FIRMWARE_RAVEN_DMCU;
1983 switch (adev->ip_versions[DCE_HWIP][0]) {
1984 case IP_VERSION(2, 0, 2):
1985 case IP_VERSION(2, 0, 3):
1986 case IP_VERSION(2, 0, 0):
1987 case IP_VERSION(2, 1, 0):
1988 case IP_VERSION(3, 0, 0):
1989 case IP_VERSION(3, 0, 2):
1990 case IP_VERSION(3, 0, 3):
1991 case IP_VERSION(3, 0, 1):
1992 case IP_VERSION(3, 1, 2):
1993 case IP_VERSION(3, 1, 3):
1994 case IP_VERSION(3, 1, 4):
1995 case IP_VERSION(3, 1, 5):
1996 case IP_VERSION(3, 1, 6):
1997 case IP_VERSION(3, 2, 0):
1998 case IP_VERSION(3, 2, 1):
2003 DRM_ERROR("Unsupported ASIC type: 0x%X\n", adev->asic_type);
2007 if (adev->firmware.load_type != AMDGPU_FW_LOAD_PSP) {
2008 DRM_DEBUG_KMS("dm: DMCU firmware not supported on direct or SMU loading\n");
2012 r = amdgpu_ucode_request(adev, &adev->dm.fw_dmcu, fw_name_dmcu);
2014 /* DMCU firmware is not necessary, so don't raise a fuss if it's missing */
2015 DRM_DEBUG_KMS("dm: DMCU firmware not found\n");
2016 adev->dm.fw_dmcu = NULL;
2020 dev_err(adev->dev, "amdgpu_dm: Can't validate firmware \"%s\"\n",
2022 amdgpu_ucode_release(&adev->dm.fw_dmcu);
2026 hdr = (const struct dmcu_firmware_header_v1_0 *)adev->dm.fw_dmcu->data;
2027 adev->firmware.ucode[AMDGPU_UCODE_ID_DMCU_ERAM].ucode_id = AMDGPU_UCODE_ID_DMCU_ERAM;
2028 adev->firmware.ucode[AMDGPU_UCODE_ID_DMCU_ERAM].fw = adev->dm.fw_dmcu;
2029 adev->firmware.fw_size +=
2030 ALIGN(le32_to_cpu(hdr->header.ucode_size_bytes) - le32_to_cpu(hdr->intv_size_bytes), PAGE_SIZE);
2032 adev->firmware.ucode[AMDGPU_UCODE_ID_DMCU_INTV].ucode_id = AMDGPU_UCODE_ID_DMCU_INTV;
2033 adev->firmware.ucode[AMDGPU_UCODE_ID_DMCU_INTV].fw = adev->dm.fw_dmcu;
2034 adev->firmware.fw_size +=
2035 ALIGN(le32_to_cpu(hdr->intv_size_bytes), PAGE_SIZE);
2037 adev->dm.dmcu_fw_version = le32_to_cpu(hdr->header.ucode_version);
2039 DRM_DEBUG_KMS("PSP loading DMCU firmware\n");
2044 static uint32_t amdgpu_dm_dmub_reg_read(void *ctx, uint32_t address)
2046 struct amdgpu_device *adev = ctx;
2048 return dm_read_reg(adev->dm.dc->ctx, address);
2051 static void amdgpu_dm_dmub_reg_write(void *ctx, uint32_t address,
2054 struct amdgpu_device *adev = ctx;
2056 return dm_write_reg(adev->dm.dc->ctx, address, value);
2059 static int dm_dmub_sw_init(struct amdgpu_device *adev)
2061 struct dmub_srv_create_params create_params;
2062 struct dmub_srv_region_params region_params;
2063 struct dmub_srv_region_info region_info;
2064 struct dmub_srv_fb_params fb_params;
2065 struct dmub_srv_fb_info *fb_info;
2066 struct dmub_srv *dmub_srv;
2067 const struct dmcub_firmware_header_v1_0 *hdr;
2068 enum dmub_asic dmub_asic;
2069 enum dmub_status status;
2072 switch (adev->ip_versions[DCE_HWIP][0]) {
2073 case IP_VERSION(2, 1, 0):
2074 dmub_asic = DMUB_ASIC_DCN21;
2076 case IP_VERSION(3, 0, 0):
2077 dmub_asic = DMUB_ASIC_DCN30;
2079 case IP_VERSION(3, 0, 1):
2080 dmub_asic = DMUB_ASIC_DCN301;
2082 case IP_VERSION(3, 0, 2):
2083 dmub_asic = DMUB_ASIC_DCN302;
2085 case IP_VERSION(3, 0, 3):
2086 dmub_asic = DMUB_ASIC_DCN303;
2088 case IP_VERSION(3, 1, 2):
2089 case IP_VERSION(3, 1, 3):
2090 dmub_asic = (adev->external_rev_id == YELLOW_CARP_B0) ? DMUB_ASIC_DCN31B : DMUB_ASIC_DCN31;
2092 case IP_VERSION(3, 1, 4):
2093 dmub_asic = DMUB_ASIC_DCN314;
2095 case IP_VERSION(3, 1, 5):
2096 dmub_asic = DMUB_ASIC_DCN315;
2098 case IP_VERSION(3, 1, 6):
2099 dmub_asic = DMUB_ASIC_DCN316;
2101 case IP_VERSION(3, 2, 0):
2102 dmub_asic = DMUB_ASIC_DCN32;
2104 case IP_VERSION(3, 2, 1):
2105 dmub_asic = DMUB_ASIC_DCN321;
2108 /* ASIC doesn't support DMUB. */
2112 hdr = (const struct dmcub_firmware_header_v1_0 *)adev->dm.dmub_fw->data;
2113 adev->dm.dmcub_fw_version = le32_to_cpu(hdr->header.ucode_version);
2115 if (adev->firmware.load_type == AMDGPU_FW_LOAD_PSP) {
2116 adev->firmware.ucode[AMDGPU_UCODE_ID_DMCUB].ucode_id =
2117 AMDGPU_UCODE_ID_DMCUB;
2118 adev->firmware.ucode[AMDGPU_UCODE_ID_DMCUB].fw =
2120 adev->firmware.fw_size +=
2121 ALIGN(le32_to_cpu(hdr->inst_const_bytes), PAGE_SIZE);
2123 DRM_INFO("Loading DMUB firmware via PSP: version=0x%08X\n",
2124 adev->dm.dmcub_fw_version);
2128 adev->dm.dmub_srv = kzalloc(sizeof(*adev->dm.dmub_srv), GFP_KERNEL);
2129 dmub_srv = adev->dm.dmub_srv;
2132 DRM_ERROR("Failed to allocate DMUB service!\n");
2136 memset(&create_params, 0, sizeof(create_params));
2137 create_params.user_ctx = adev;
2138 create_params.funcs.reg_read = amdgpu_dm_dmub_reg_read;
2139 create_params.funcs.reg_write = amdgpu_dm_dmub_reg_write;
2140 create_params.asic = dmub_asic;
2142 /* Create the DMUB service. */
2143 status = dmub_srv_create(dmub_srv, &create_params);
2144 if (status != DMUB_STATUS_OK) {
2145 DRM_ERROR("Error creating DMUB service: %d\n", status);
2149 /* Calculate the size of all the regions for the DMUB service. */
2150 memset(®ion_params, 0, sizeof(region_params));
2152 region_params.inst_const_size = le32_to_cpu(hdr->inst_const_bytes) -
2153 PSP_HEADER_BYTES - PSP_FOOTER_BYTES;
2154 region_params.bss_data_size = le32_to_cpu(hdr->bss_data_bytes);
2155 region_params.vbios_size = adev->bios_size;
2156 region_params.fw_bss_data = region_params.bss_data_size ?
2157 adev->dm.dmub_fw->data +
2158 le32_to_cpu(hdr->header.ucode_array_offset_bytes) +
2159 le32_to_cpu(hdr->inst_const_bytes) : NULL;
2160 region_params.fw_inst_const =
2161 adev->dm.dmub_fw->data +
2162 le32_to_cpu(hdr->header.ucode_array_offset_bytes) +
2165 status = dmub_srv_calc_region_info(dmub_srv, ®ion_params,
2168 if (status != DMUB_STATUS_OK) {
2169 DRM_ERROR("Error calculating DMUB region info: %d\n", status);
2174 * Allocate a framebuffer based on the total size of all the regions.
2175 * TODO: Move this into GART.
2177 r = amdgpu_bo_create_kernel(adev, region_info.fb_size, PAGE_SIZE,
2178 AMDGPU_GEM_DOMAIN_VRAM |
2179 AMDGPU_GEM_DOMAIN_GTT,
2181 &adev->dm.dmub_bo_gpu_addr,
2182 &adev->dm.dmub_bo_cpu_addr);
2186 /* Rebase the regions on the framebuffer address. */
2187 memset(&fb_params, 0, sizeof(fb_params));
2188 fb_params.cpu_addr = adev->dm.dmub_bo_cpu_addr;
2189 fb_params.gpu_addr = adev->dm.dmub_bo_gpu_addr;
2190 fb_params.region_info = ®ion_info;
2192 adev->dm.dmub_fb_info =
2193 kzalloc(sizeof(*adev->dm.dmub_fb_info), GFP_KERNEL);
2194 fb_info = adev->dm.dmub_fb_info;
2198 "Failed to allocate framebuffer info for DMUB service!\n");
2202 status = dmub_srv_calc_fb_info(dmub_srv, &fb_params, fb_info);
2203 if (status != DMUB_STATUS_OK) {
2204 DRM_ERROR("Error calculating DMUB FB info: %d\n", status);
2211 static int dm_sw_init(void *handle)
2213 struct amdgpu_device *adev = (struct amdgpu_device *)handle;
2216 r = dm_dmub_sw_init(adev);
2220 return load_dmcu_fw(adev);
2223 static int dm_sw_fini(void *handle)
2225 struct amdgpu_device *adev = (struct amdgpu_device *)handle;
2227 kfree(adev->dm.dmub_fb_info);
2228 adev->dm.dmub_fb_info = NULL;
2230 if (adev->dm.dmub_srv) {
2231 dmub_srv_destroy(adev->dm.dmub_srv);
2232 adev->dm.dmub_srv = NULL;
2235 amdgpu_ucode_release(&adev->dm.dmub_fw);
2236 amdgpu_ucode_release(&adev->dm.fw_dmcu);
2241 static int detect_mst_link_for_all_connectors(struct drm_device *dev)
2243 struct amdgpu_dm_connector *aconnector;
2244 struct drm_connector *connector;
2245 struct drm_connector_list_iter iter;
2248 drm_connector_list_iter_begin(dev, &iter);
2249 drm_for_each_connector_iter(connector, &iter) {
2250 aconnector = to_amdgpu_dm_connector(connector);
2251 if (aconnector->dc_link->type == dc_connection_mst_branch &&
2252 aconnector->mst_mgr.aux) {
2253 DRM_DEBUG_DRIVER("DM_MST: starting TM on aconnector: %p [id: %d]\n",
2255 aconnector->base.base.id);
2257 ret = drm_dp_mst_topology_mgr_set_mst(&aconnector->mst_mgr, true);
2259 DRM_ERROR("DM_MST: Failed to start MST\n");
2260 aconnector->dc_link->type =
2261 dc_connection_single;
2262 ret = dm_helpers_dp_mst_stop_top_mgr(aconnector->dc_link->ctx,
2263 aconnector->dc_link);
2268 drm_connector_list_iter_end(&iter);
2273 static int dm_late_init(void *handle)
2275 struct amdgpu_device *adev = (struct amdgpu_device *)handle;
2277 struct dmcu_iram_parameters params;
2278 unsigned int linear_lut[16];
2280 struct dmcu *dmcu = NULL;
2282 dmcu = adev->dm.dc->res_pool->dmcu;
2284 for (i = 0; i < 16; i++)
2285 linear_lut[i] = 0xFFFF * i / 15;
2288 params.backlight_ramping_override = false;
2289 params.backlight_ramping_start = 0xCCCC;
2290 params.backlight_ramping_reduction = 0xCCCCCCCC;
2291 params.backlight_lut_array_size = 16;
2292 params.backlight_lut_array = linear_lut;
2294 /* Min backlight level after ABM reduction, Don't allow below 1%
2295 * 0xFFFF x 0.01 = 0x28F
2297 params.min_abm_backlight = 0x28F;
2298 /* In the case where abm is implemented on dmcub,
2299 * dmcu object will be null.
2300 * ABM 2.4 and up are implemented on dmcub.
2303 if (!dmcu_load_iram(dmcu, params))
2305 } else if (adev->dm.dc->ctx->dmub_srv) {
2306 struct dc_link *edp_links[MAX_NUM_EDP];
2309 dc_get_edp_links(adev->dm.dc, edp_links, &edp_num);
2310 for (i = 0; i < edp_num; i++) {
2311 if (!dmub_init_abm_config(adev->dm.dc->res_pool, params, i))
2316 return detect_mst_link_for_all_connectors(adev_to_drm(adev));
2319 static void s3_handle_mst(struct drm_device *dev, bool suspend)
2321 struct amdgpu_dm_connector *aconnector;
2322 struct drm_connector *connector;
2323 struct drm_connector_list_iter iter;
2324 struct drm_dp_mst_topology_mgr *mgr;
2326 bool need_hotplug = false;
2328 drm_connector_list_iter_begin(dev, &iter);
2329 drm_for_each_connector_iter(connector, &iter) {
2330 aconnector = to_amdgpu_dm_connector(connector);
2331 if (aconnector->dc_link->type != dc_connection_mst_branch ||
2332 aconnector->mst_root)
2335 mgr = &aconnector->mst_mgr;
2338 drm_dp_mst_topology_mgr_suspend(mgr);
2340 /* if extended timeout is supported in hardware,
2341 * default to LTTPR timeout (3.2ms) first as a W/A for DP link layer
2342 * CTS 4.2.1.1 regression introduced by CTS specs requirement update.
2344 try_to_configure_aux_timeout(aconnector->dc_link->ddc, LINK_AUX_DEFAULT_LTTPR_TIMEOUT_PERIOD);
2345 if (!dp_is_lttpr_present(aconnector->dc_link))
2346 try_to_configure_aux_timeout(aconnector->dc_link->ddc, LINK_AUX_DEFAULT_TIMEOUT_PERIOD);
2348 ret = drm_dp_mst_topology_mgr_resume(mgr, true);
2350 dm_helpers_dp_mst_stop_top_mgr(aconnector->dc_link->ctx,
2351 aconnector->dc_link);
2352 need_hotplug = true;
2356 drm_connector_list_iter_end(&iter);
2359 drm_kms_helper_hotplug_event(dev);
2362 static int amdgpu_dm_smu_write_watermarks_table(struct amdgpu_device *adev)
2366 /* This interface is for dGPU Navi1x.Linux dc-pplib interface depends
2367 * on window driver dc implementation.
2368 * For Navi1x, clock settings of dcn watermarks are fixed. the settings
2369 * should be passed to smu during boot up and resume from s3.
2370 * boot up: dc calculate dcn watermark clock settings within dc_create,
2371 * dcn20_resource_construct
2372 * then call pplib functions below to pass the settings to smu:
2373 * smu_set_watermarks_for_clock_ranges
2374 * smu_set_watermarks_table
2375 * navi10_set_watermarks_table
2376 * smu_write_watermarks_table
2378 * For Renoir, clock settings of dcn watermark are also fixed values.
2379 * dc has implemented different flow for window driver:
2380 * dc_hardware_init / dc_set_power_state
2385 * smu_set_watermarks_for_clock_ranges
2386 * renoir_set_watermarks_table
2387 * smu_write_watermarks_table
2390 * dc_hardware_init -> amdgpu_dm_init
2391 * dc_set_power_state --> dm_resume
2393 * therefore, this function apply to navi10/12/14 but not Renoir
2396 switch (adev->ip_versions[DCE_HWIP][0]) {
2397 case IP_VERSION(2, 0, 2):
2398 case IP_VERSION(2, 0, 0):
2404 ret = amdgpu_dpm_write_watermarks_table(adev);
2406 DRM_ERROR("Failed to update WMTABLE!\n");
2414 * dm_hw_init() - Initialize DC device
2415 * @handle: The base driver device containing the amdgpu_dm device.
2417 * Initialize the &struct amdgpu_display_manager device. This involves calling
2418 * the initializers of each DM component, then populating the struct with them.
2420 * Although the function implies hardware initialization, both hardware and
2421 * software are initialized here. Splitting them out to their relevant init
2422 * hooks is a future TODO item.
2424 * Some notable things that are initialized here:
2426 * - Display Core, both software and hardware
2427 * - DC modules that we need (freesync and color management)
2428 * - DRM software states
2429 * - Interrupt sources and handlers
2431 * - Debug FS entries, if enabled
2433 static int dm_hw_init(void *handle)
2435 struct amdgpu_device *adev = (struct amdgpu_device *)handle;
2436 /* Create DAL display manager */
2437 amdgpu_dm_init(adev);
2438 amdgpu_dm_hpd_init(adev);
2444 * dm_hw_fini() - Teardown DC device
2445 * @handle: The base driver device containing the amdgpu_dm device.
2447 * Teardown components within &struct amdgpu_display_manager that require
2448 * cleanup. This involves cleaning up the DRM device, DC, and any modules that
2449 * were loaded. Also flush IRQ workqueues and disable them.
2451 static int dm_hw_fini(void *handle)
2453 struct amdgpu_device *adev = (struct amdgpu_device *)handle;
2455 amdgpu_dm_hpd_fini(adev);
2457 amdgpu_dm_irq_fini(adev);
2458 amdgpu_dm_fini(adev);
2463 static void dm_gpureset_toggle_interrupts(struct amdgpu_device *adev,
2464 struct dc_state *state, bool enable)
2466 enum dc_irq_source irq_source;
2467 struct amdgpu_crtc *acrtc;
2471 for (i = 0; i < state->stream_count; i++) {
2472 acrtc = get_crtc_by_otg_inst(
2473 adev, state->stream_status[i].primary_otg_inst);
2475 if (acrtc && state->stream_status[i].plane_count != 0) {
2476 irq_source = IRQ_TYPE_PFLIP + acrtc->otg_inst;
2477 rc = dc_interrupt_set(adev->dm.dc, irq_source, enable) ? 0 : -EBUSY;
2479 DRM_WARN("Failed to %s pflip interrupts\n",
2480 enable ? "enable" : "disable");
2483 if (amdgpu_dm_crtc_vrr_active(to_dm_crtc_state(acrtc->base.state)))
2484 rc = amdgpu_dm_crtc_set_vupdate_irq(&acrtc->base, true);
2486 rc = amdgpu_dm_crtc_set_vupdate_irq(&acrtc->base, false);
2489 DRM_WARN("Failed to %sable vupdate interrupt\n", enable ? "en" : "dis");
2491 irq_source = IRQ_TYPE_VBLANK + acrtc->otg_inst;
2492 /* During gpu-reset we disable and then enable vblank irq, so
2493 * don't use amdgpu_irq_get/put() to avoid refcount change.
2495 if (!dc_interrupt_set(adev->dm.dc, irq_source, enable))
2496 DRM_WARN("Failed to %sable vblank interrupt\n", enable ? "en" : "dis");
2502 static enum dc_status amdgpu_dm_commit_zero_streams(struct dc *dc)
2504 struct dc_state *context = NULL;
2505 enum dc_status res = DC_ERROR_UNEXPECTED;
2507 struct dc_stream_state *del_streams[MAX_PIPES];
2508 int del_streams_count = 0;
2510 memset(del_streams, 0, sizeof(del_streams));
2512 context = dc_create_state(dc);
2513 if (context == NULL)
2514 goto context_alloc_fail;
2516 dc_resource_state_copy_construct_current(dc, context);
2518 /* First remove from context all streams */
2519 for (i = 0; i < context->stream_count; i++) {
2520 struct dc_stream_state *stream = context->streams[i];
2522 del_streams[del_streams_count++] = stream;
2525 /* Remove all planes for removed streams and then remove the streams */
2526 for (i = 0; i < del_streams_count; i++) {
2527 if (!dc_rem_all_planes_for_stream(dc, del_streams[i], context)) {
2528 res = DC_FAIL_DETACH_SURFACES;
2532 res = dc_remove_stream_from_ctx(dc, context, del_streams[i]);
2537 res = dc_commit_streams(dc, context->streams, context->stream_count);
2540 dc_release_state(context);
2546 static void hpd_rx_irq_work_suspend(struct amdgpu_display_manager *dm)
2550 if (dm->hpd_rx_offload_wq) {
2551 for (i = 0; i < dm->dc->caps.max_links; i++)
2552 flush_workqueue(dm->hpd_rx_offload_wq[i].wq);
2556 static int dm_suspend(void *handle)
2558 struct amdgpu_device *adev = handle;
2559 struct amdgpu_display_manager *dm = &adev->dm;
2562 if (amdgpu_in_reset(adev)) {
2563 mutex_lock(&dm->dc_lock);
2565 dc_allow_idle_optimizations(adev->dm.dc, false);
2567 dm->cached_dc_state = dc_copy_state(dm->dc->current_state);
2569 dm_gpureset_toggle_interrupts(adev, dm->cached_dc_state, false);
2571 amdgpu_dm_commit_zero_streams(dm->dc);
2573 amdgpu_dm_irq_suspend(adev);
2575 hpd_rx_irq_work_suspend(dm);
2580 WARN_ON(adev->dm.cached_state);
2581 adev->dm.cached_state = drm_atomic_helper_suspend(adev_to_drm(adev));
2583 s3_handle_mst(adev_to_drm(adev), true);
2585 amdgpu_dm_irq_suspend(adev);
2587 hpd_rx_irq_work_suspend(dm);
2589 dc_set_power_state(dm->dc, DC_ACPI_CM_POWER_STATE_D3);
2594 struct amdgpu_dm_connector *
2595 amdgpu_dm_find_first_crtc_matching_connector(struct drm_atomic_state *state,
2596 struct drm_crtc *crtc)
2599 struct drm_connector_state *new_con_state;
2600 struct drm_connector *connector;
2601 struct drm_crtc *crtc_from_state;
2603 for_each_new_connector_in_state(state, connector, new_con_state, i) {
2604 crtc_from_state = new_con_state->crtc;
2606 if (crtc_from_state == crtc)
2607 return to_amdgpu_dm_connector(connector);
2613 static void emulated_link_detect(struct dc_link *link)
2615 struct dc_sink_init_data sink_init_data = { 0 };
2616 struct display_sink_capability sink_caps = { 0 };
2617 enum dc_edid_status edid_status;
2618 struct dc_context *dc_ctx = link->ctx;
2619 struct dc_sink *sink = NULL;
2620 struct dc_sink *prev_sink = NULL;
2622 link->type = dc_connection_none;
2623 prev_sink = link->local_sink;
2626 dc_sink_release(prev_sink);
2628 switch (link->connector_signal) {
2629 case SIGNAL_TYPE_HDMI_TYPE_A: {
2630 sink_caps.transaction_type = DDC_TRANSACTION_TYPE_I2C;
2631 sink_caps.signal = SIGNAL_TYPE_HDMI_TYPE_A;
2635 case SIGNAL_TYPE_DVI_SINGLE_LINK: {
2636 sink_caps.transaction_type = DDC_TRANSACTION_TYPE_I2C;
2637 sink_caps.signal = SIGNAL_TYPE_DVI_SINGLE_LINK;
2641 case SIGNAL_TYPE_DVI_DUAL_LINK: {
2642 sink_caps.transaction_type = DDC_TRANSACTION_TYPE_I2C;
2643 sink_caps.signal = SIGNAL_TYPE_DVI_DUAL_LINK;
2647 case SIGNAL_TYPE_LVDS: {
2648 sink_caps.transaction_type = DDC_TRANSACTION_TYPE_I2C;
2649 sink_caps.signal = SIGNAL_TYPE_LVDS;
2653 case SIGNAL_TYPE_EDP: {
2654 sink_caps.transaction_type =
2655 DDC_TRANSACTION_TYPE_I2C_OVER_AUX;
2656 sink_caps.signal = SIGNAL_TYPE_EDP;
2660 case SIGNAL_TYPE_DISPLAY_PORT: {
2661 sink_caps.transaction_type =
2662 DDC_TRANSACTION_TYPE_I2C_OVER_AUX;
2663 sink_caps.signal = SIGNAL_TYPE_VIRTUAL;
2668 DC_ERROR("Invalid connector type! signal:%d\n",
2669 link->connector_signal);
2673 sink_init_data.link = link;
2674 sink_init_data.sink_signal = sink_caps.signal;
2676 sink = dc_sink_create(&sink_init_data);
2678 DC_ERROR("Failed to create sink!\n");
2682 /* dc_sink_create returns a new reference */
2683 link->local_sink = sink;
2685 edid_status = dm_helpers_read_local_edid(
2690 if (edid_status != EDID_OK)
2691 DC_ERROR("Failed to read EDID");
2695 static void dm_gpureset_commit_state(struct dc_state *dc_state,
2696 struct amdgpu_display_manager *dm)
2699 struct dc_surface_update surface_updates[MAX_SURFACES];
2700 struct dc_plane_info plane_infos[MAX_SURFACES];
2701 struct dc_scaling_info scaling_infos[MAX_SURFACES];
2702 struct dc_flip_addrs flip_addrs[MAX_SURFACES];
2703 struct dc_stream_update stream_update;
2707 bundle = kzalloc(sizeof(*bundle), GFP_KERNEL);
2710 dm_error("Failed to allocate update bundle\n");
2714 for (k = 0; k < dc_state->stream_count; k++) {
2715 bundle->stream_update.stream = dc_state->streams[k];
2717 for (m = 0; m < dc_state->stream_status->plane_count; m++) {
2718 bundle->surface_updates[m].surface =
2719 dc_state->stream_status->plane_states[m];
2720 bundle->surface_updates[m].surface->force_full_update =
2724 update_planes_and_stream_adapter(dm->dc,
2726 dc_state->stream_status->plane_count,
2727 dc_state->streams[k],
2728 &bundle->stream_update,
2729 bundle->surface_updates);
2738 static int dm_resume(void *handle)
2740 struct amdgpu_device *adev = handle;
2741 struct drm_device *ddev = adev_to_drm(adev);
2742 struct amdgpu_display_manager *dm = &adev->dm;
2743 struct amdgpu_dm_connector *aconnector;
2744 struct drm_connector *connector;
2745 struct drm_connector_list_iter iter;
2746 struct drm_crtc *crtc;
2747 struct drm_crtc_state *new_crtc_state;
2748 struct dm_crtc_state *dm_new_crtc_state;
2749 struct drm_plane *plane;
2750 struct drm_plane_state *new_plane_state;
2751 struct dm_plane_state *dm_new_plane_state;
2752 struct dm_atomic_state *dm_state = to_dm_atomic_state(dm->atomic_obj.state);
2753 enum dc_connection_type new_connection_type = dc_connection_none;
2754 struct dc_state *dc_state;
2757 if (amdgpu_in_reset(adev)) {
2758 dc_state = dm->cached_dc_state;
2761 * The dc->current_state is backed up into dm->cached_dc_state
2762 * before we commit 0 streams.
2764 * DC will clear link encoder assignments on the real state
2765 * but the changes won't propagate over to the copy we made
2766 * before the 0 streams commit.
2768 * DC expects that link encoder assignments are *not* valid
2769 * when committing a state, so as a workaround we can copy
2770 * off of the current state.
2772 * We lose the previous assignments, but we had already
2773 * commit 0 streams anyway.
2775 link_enc_cfg_copy(adev->dm.dc->current_state, dc_state);
2777 r = dm_dmub_hw_init(adev);
2779 DRM_ERROR("DMUB interface failed to initialize: status=%d\n", r);
2781 dc_set_power_state(dm->dc, DC_ACPI_CM_POWER_STATE_D0);
2784 amdgpu_dm_irq_resume_early(adev);
2786 for (i = 0; i < dc_state->stream_count; i++) {
2787 dc_state->streams[i]->mode_changed = true;
2788 for (j = 0; j < dc_state->stream_status[i].plane_count; j++) {
2789 dc_state->stream_status[i].plane_states[j]->update_flags.raw
2794 if (dc_is_dmub_outbox_supported(adev->dm.dc)) {
2795 amdgpu_dm_outbox_init(adev);
2796 dc_enable_dmub_outbox(adev->dm.dc);
2799 WARN_ON(!dc_commit_streams(dm->dc, dc_state->streams, dc_state->stream_count));
2801 dm_gpureset_commit_state(dm->cached_dc_state, dm);
2803 dm_gpureset_toggle_interrupts(adev, dm->cached_dc_state, true);
2805 dc_release_state(dm->cached_dc_state);
2806 dm->cached_dc_state = NULL;
2808 amdgpu_dm_irq_resume_late(adev);
2810 mutex_unlock(&dm->dc_lock);
2814 /* Recreate dc_state - DC invalidates it when setting power state to S3. */
2815 dc_release_state(dm_state->context);
2816 dm_state->context = dc_create_state(dm->dc);
2817 /* TODO: Remove dc_state->dccg, use dc->dccg directly. */
2818 dc_resource_state_construct(dm->dc, dm_state->context);
2820 /* Before powering on DC we need to re-initialize DMUB. */
2821 dm_dmub_hw_resume(adev);
2823 /* Re-enable outbox interrupts for DPIA. */
2824 if (dc_is_dmub_outbox_supported(adev->dm.dc)) {
2825 amdgpu_dm_outbox_init(adev);
2826 dc_enable_dmub_outbox(adev->dm.dc);
2829 /* power on hardware */
2830 dc_set_power_state(dm->dc, DC_ACPI_CM_POWER_STATE_D0);
2832 /* program HPD filter */
2836 * early enable HPD Rx IRQ, should be done before set mode as short
2837 * pulse interrupts are used for MST
2839 amdgpu_dm_irq_resume_early(adev);
2841 /* On resume we need to rewrite the MSTM control bits to enable MST*/
2842 s3_handle_mst(ddev, false);
2845 drm_connector_list_iter_begin(ddev, &iter);
2846 drm_for_each_connector_iter(connector, &iter) {
2847 aconnector = to_amdgpu_dm_connector(connector);
2849 if (!aconnector->dc_link)
2853 * this is the case when traversing through already created
2854 * MST connectors, should be skipped
2856 if (aconnector->dc_link->type == dc_connection_mst_branch)
2859 mutex_lock(&aconnector->hpd_lock);
2860 if (!dc_link_detect_connection_type(aconnector->dc_link, &new_connection_type))
2861 DRM_ERROR("KMS: Failed to detect connector\n");
2863 if (aconnector->base.force && new_connection_type == dc_connection_none) {
2864 emulated_link_detect(aconnector->dc_link);
2866 mutex_lock(&dm->dc_lock);
2867 dc_link_detect(aconnector->dc_link, DETECT_REASON_HPD);
2868 mutex_unlock(&dm->dc_lock);
2871 if (aconnector->fake_enable && aconnector->dc_link->local_sink)
2872 aconnector->fake_enable = false;
2874 if (aconnector->dc_sink)
2875 dc_sink_release(aconnector->dc_sink);
2876 aconnector->dc_sink = NULL;
2877 amdgpu_dm_update_connector_after_detect(aconnector);
2878 mutex_unlock(&aconnector->hpd_lock);
2880 drm_connector_list_iter_end(&iter);
2882 /* Force mode set in atomic commit */
2883 for_each_new_crtc_in_state(dm->cached_state, crtc, new_crtc_state, i)
2884 new_crtc_state->active_changed = true;
2887 * atomic_check is expected to create the dc states. We need to release
2888 * them here, since they were duplicated as part of the suspend
2891 for_each_new_crtc_in_state(dm->cached_state, crtc, new_crtc_state, i) {
2892 dm_new_crtc_state = to_dm_crtc_state(new_crtc_state);
2893 if (dm_new_crtc_state->stream) {
2894 WARN_ON(kref_read(&dm_new_crtc_state->stream->refcount) > 1);
2895 dc_stream_release(dm_new_crtc_state->stream);
2896 dm_new_crtc_state->stream = NULL;
2900 for_each_new_plane_in_state(dm->cached_state, plane, new_plane_state, i) {
2901 dm_new_plane_state = to_dm_plane_state(new_plane_state);
2902 if (dm_new_plane_state->dc_state) {
2903 WARN_ON(kref_read(&dm_new_plane_state->dc_state->refcount) > 1);
2904 dc_plane_state_release(dm_new_plane_state->dc_state);
2905 dm_new_plane_state->dc_state = NULL;
2909 drm_atomic_helper_resume(ddev, dm->cached_state);
2911 dm->cached_state = NULL;
2913 amdgpu_dm_irq_resume_late(adev);
2915 amdgpu_dm_smu_write_watermarks_table(adev);
2923 * DM (and consequently DC) is registered in the amdgpu base driver as a IP
2924 * block. When CONFIG_DRM_AMD_DC is enabled, the DM device IP block is added to
2925 * the base driver's device list to be initialized and torn down accordingly.
2927 * The functions to do so are provided as hooks in &struct amd_ip_funcs.
2930 static const struct amd_ip_funcs amdgpu_dm_funcs = {
2932 .early_init = dm_early_init,
2933 .late_init = dm_late_init,
2934 .sw_init = dm_sw_init,
2935 .sw_fini = dm_sw_fini,
2936 .early_fini = amdgpu_dm_early_fini,
2937 .hw_init = dm_hw_init,
2938 .hw_fini = dm_hw_fini,
2939 .suspend = dm_suspend,
2940 .resume = dm_resume,
2941 .is_idle = dm_is_idle,
2942 .wait_for_idle = dm_wait_for_idle,
2943 .check_soft_reset = dm_check_soft_reset,
2944 .soft_reset = dm_soft_reset,
2945 .set_clockgating_state = dm_set_clockgating_state,
2946 .set_powergating_state = dm_set_powergating_state,
2949 const struct amdgpu_ip_block_version dm_ip_block =
2951 .type = AMD_IP_BLOCK_TYPE_DCE,
2955 .funcs = &amdgpu_dm_funcs,
2965 static const struct drm_mode_config_funcs amdgpu_dm_mode_funcs = {
2966 .fb_create = amdgpu_display_user_framebuffer_create,
2967 .get_format_info = amdgpu_dm_plane_get_format_info,
2968 .atomic_check = amdgpu_dm_atomic_check,
2969 .atomic_commit = drm_atomic_helper_commit,
2972 static struct drm_mode_config_helper_funcs amdgpu_dm_mode_config_helperfuncs = {
2973 .atomic_commit_tail = amdgpu_dm_atomic_commit_tail,
2974 .atomic_commit_setup = drm_dp_mst_atomic_setup_commit,
2977 static void update_connector_ext_caps(struct amdgpu_dm_connector *aconnector)
2979 struct amdgpu_dm_backlight_caps *caps;
2980 struct drm_connector *conn_base;
2981 struct amdgpu_device *adev;
2982 struct drm_luminance_range_info *luminance_range;
2984 if (aconnector->bl_idx == -1 ||
2985 aconnector->dc_link->connector_signal != SIGNAL_TYPE_EDP)
2988 conn_base = &aconnector->base;
2989 adev = drm_to_adev(conn_base->dev);
2991 caps = &adev->dm.backlight_caps[aconnector->bl_idx];
2992 caps->ext_caps = &aconnector->dc_link->dpcd_sink_ext_caps;
2993 caps->aux_support = false;
2995 if (caps->ext_caps->bits.oled == 1 /*||
2996 caps->ext_caps->bits.sdr_aux_backlight_control == 1 ||
2997 caps->ext_caps->bits.hdr_aux_backlight_control == 1*/)
2998 caps->aux_support = true;
3000 if (amdgpu_backlight == 0)
3001 caps->aux_support = false;
3002 else if (amdgpu_backlight == 1)
3003 caps->aux_support = true;
3005 luminance_range = &conn_base->display_info.luminance_range;
3007 if (luminance_range->max_luminance) {
3008 caps->aux_min_input_signal = luminance_range->min_luminance;
3009 caps->aux_max_input_signal = luminance_range->max_luminance;
3011 caps->aux_min_input_signal = 0;
3012 caps->aux_max_input_signal = 512;
3016 void amdgpu_dm_update_connector_after_detect(
3017 struct amdgpu_dm_connector *aconnector)
3019 struct drm_connector *connector = &aconnector->base;
3020 struct drm_device *dev = connector->dev;
3021 struct dc_sink *sink;
3023 /* MST handled by drm_mst framework */
3024 if (aconnector->mst_mgr.mst_state == true)
3027 sink = aconnector->dc_link->local_sink;
3029 dc_sink_retain(sink);
3032 * Edid mgmt connector gets first update only in mode_valid hook and then
3033 * the connector sink is set to either fake or physical sink depends on link status.
3034 * Skip if already done during boot.
3036 if (aconnector->base.force != DRM_FORCE_UNSPECIFIED
3037 && aconnector->dc_em_sink) {
3040 * For S3 resume with headless use eml_sink to fake stream
3041 * because on resume connector->sink is set to NULL
3043 mutex_lock(&dev->mode_config.mutex);
3046 if (aconnector->dc_sink) {
3047 amdgpu_dm_update_freesync_caps(connector, NULL);
3049 * retain and release below are used to
3050 * bump up refcount for sink because the link doesn't point
3051 * to it anymore after disconnect, so on next crtc to connector
3052 * reshuffle by UMD we will get into unwanted dc_sink release
3054 dc_sink_release(aconnector->dc_sink);
3056 aconnector->dc_sink = sink;
3057 dc_sink_retain(aconnector->dc_sink);
3058 amdgpu_dm_update_freesync_caps(connector,
3061 amdgpu_dm_update_freesync_caps(connector, NULL);
3062 if (!aconnector->dc_sink) {
3063 aconnector->dc_sink = aconnector->dc_em_sink;
3064 dc_sink_retain(aconnector->dc_sink);
3068 mutex_unlock(&dev->mode_config.mutex);
3071 dc_sink_release(sink);
3076 * TODO: temporary guard to look for proper fix
3077 * if this sink is MST sink, we should not do anything
3079 if (sink && sink->sink_signal == SIGNAL_TYPE_DISPLAY_PORT_MST) {
3080 dc_sink_release(sink);
3084 if (aconnector->dc_sink == sink) {
3086 * We got a DP short pulse (Link Loss, DP CTS, etc...).
3089 DRM_DEBUG_DRIVER("DCHPD: connector_id=%d: dc_sink didn't change.\n",
3090 aconnector->connector_id);
3092 dc_sink_release(sink);
3096 DRM_DEBUG_DRIVER("DCHPD: connector_id=%d: Old sink=%p New sink=%p\n",
3097 aconnector->connector_id, aconnector->dc_sink, sink);
3099 mutex_lock(&dev->mode_config.mutex);
3102 * 1. Update status of the drm connector
3103 * 2. Send an event and let userspace tell us what to do
3107 * TODO: check if we still need the S3 mode update workaround.
3108 * If yes, put it here.
3110 if (aconnector->dc_sink) {
3111 amdgpu_dm_update_freesync_caps(connector, NULL);
3112 dc_sink_release(aconnector->dc_sink);
3115 aconnector->dc_sink = sink;
3116 dc_sink_retain(aconnector->dc_sink);
3117 if (sink->dc_edid.length == 0) {
3118 aconnector->edid = NULL;
3119 if (aconnector->dc_link->aux_mode) {
3120 drm_dp_cec_unset_edid(
3121 &aconnector->dm_dp_aux.aux);
3125 (struct edid *)sink->dc_edid.raw_edid;
3127 if (aconnector->dc_link->aux_mode)
3128 drm_dp_cec_set_edid(&aconnector->dm_dp_aux.aux,
3132 if (!aconnector->timing_requested) {
3133 aconnector->timing_requested =
3134 kzalloc(sizeof(struct dc_crtc_timing), GFP_KERNEL);
3135 if (!aconnector->timing_requested)
3136 dm_error("failed to create aconnector->requested_timing\n");
3139 drm_connector_update_edid_property(connector, aconnector->edid);
3140 amdgpu_dm_update_freesync_caps(connector, aconnector->edid);
3141 update_connector_ext_caps(aconnector);
3143 drm_dp_cec_unset_edid(&aconnector->dm_dp_aux.aux);
3144 amdgpu_dm_update_freesync_caps(connector, NULL);
3145 drm_connector_update_edid_property(connector, NULL);
3146 aconnector->num_modes = 0;
3147 dc_sink_release(aconnector->dc_sink);
3148 aconnector->dc_sink = NULL;
3149 aconnector->edid = NULL;
3150 kfree(aconnector->timing_requested);
3151 aconnector->timing_requested = NULL;
3152 /* Set CP to DESIRED if it was ENABLED, so we can re-enable it again on hotplug */
3153 if (connector->state->content_protection == DRM_MODE_CONTENT_PROTECTION_ENABLED)
3154 connector->state->content_protection = DRM_MODE_CONTENT_PROTECTION_DESIRED;
3157 mutex_unlock(&dev->mode_config.mutex);
3159 update_subconnector_property(aconnector);
3162 dc_sink_release(sink);
3165 static void handle_hpd_irq_helper(struct amdgpu_dm_connector *aconnector)
3167 struct drm_connector *connector = &aconnector->base;
3168 struct drm_device *dev = connector->dev;
3169 enum dc_connection_type new_connection_type = dc_connection_none;
3170 struct amdgpu_device *adev = drm_to_adev(dev);
3171 struct dm_connector_state *dm_con_state = to_dm_connector_state(connector->state);
3174 if (adev->dm.disable_hpd_irq)
3178 * In case of failure or MST no need to update connector status or notify the OS
3179 * since (for MST case) MST does this in its own context.
3181 mutex_lock(&aconnector->hpd_lock);
3183 if (adev->dm.hdcp_workqueue) {
3184 hdcp_reset_display(adev->dm.hdcp_workqueue, aconnector->dc_link->link_index);
3185 dm_con_state->update_hdcp = true;
3187 if (aconnector->fake_enable)
3188 aconnector->fake_enable = false;
3190 aconnector->timing_changed = false;
3192 if (!dc_link_detect_connection_type(aconnector->dc_link, &new_connection_type))
3193 DRM_ERROR("KMS: Failed to detect connector\n");
3195 if (aconnector->base.force && new_connection_type == dc_connection_none) {
3196 emulated_link_detect(aconnector->dc_link);
3198 drm_modeset_lock_all(dev);
3199 dm_restore_drm_connector_state(dev, connector);
3200 drm_modeset_unlock_all(dev);
3202 if (aconnector->base.force == DRM_FORCE_UNSPECIFIED)
3203 drm_kms_helper_connector_hotplug_event(connector);
3205 mutex_lock(&adev->dm.dc_lock);
3206 ret = dc_link_detect(aconnector->dc_link, DETECT_REASON_HPD);
3207 mutex_unlock(&adev->dm.dc_lock);
3209 amdgpu_dm_update_connector_after_detect(aconnector);
3211 drm_modeset_lock_all(dev);
3212 dm_restore_drm_connector_state(dev, connector);
3213 drm_modeset_unlock_all(dev);
3215 if (aconnector->base.force == DRM_FORCE_UNSPECIFIED)
3216 drm_kms_helper_connector_hotplug_event(connector);
3219 mutex_unlock(&aconnector->hpd_lock);
3223 static void handle_hpd_irq(void *param)
3225 struct amdgpu_dm_connector *aconnector = (struct amdgpu_dm_connector *)param;
3227 handle_hpd_irq_helper(aconnector);
3231 static void dm_handle_mst_sideband_msg(struct amdgpu_dm_connector *aconnector)
3233 u8 esi[DP_PSR_ERROR_STATUS - DP_SINK_COUNT_ESI] = { 0 };
3235 bool new_irq_handled = false;
3237 int dpcd_bytes_to_read;
3239 const int max_process_count = 30;
3240 int process_count = 0;
3242 const struct dc_link_status *link_status = dc_link_get_status(aconnector->dc_link);
3244 if (link_status->dpcd_caps->dpcd_rev.raw < 0x12) {
3245 dpcd_bytes_to_read = DP_LANE0_1_STATUS - DP_SINK_COUNT;
3246 /* DPCD 0x200 - 0x201 for downstream IRQ */
3247 dpcd_addr = DP_SINK_COUNT;
3249 dpcd_bytes_to_read = DP_PSR_ERROR_STATUS - DP_SINK_COUNT_ESI;
3250 /* DPCD 0x2002 - 0x2005 for downstream IRQ */
3251 dpcd_addr = DP_SINK_COUNT_ESI;
3254 dret = drm_dp_dpcd_read(
3255 &aconnector->dm_dp_aux.aux,
3258 dpcd_bytes_to_read);
3260 while (dret == dpcd_bytes_to_read &&
3261 process_count < max_process_count) {
3267 DRM_DEBUG_DRIVER("ESI %02x %02x %02x\n", esi[0], esi[1], esi[2]);
3268 /* handle HPD short pulse irq */
3269 if (aconnector->mst_mgr.mst_state)
3271 &aconnector->mst_mgr,
3275 if (new_irq_handled) {
3276 /* ACK at DPCD to notify down stream */
3277 const int ack_dpcd_bytes_to_write =
3278 dpcd_bytes_to_read - 1;
3280 for (retry = 0; retry < 3; retry++) {
3283 wret = drm_dp_dpcd_write(
3284 &aconnector->dm_dp_aux.aux,
3287 ack_dpcd_bytes_to_write);
3288 if (wret == ack_dpcd_bytes_to_write)
3292 /* check if there is new irq to be handled */
3293 dret = drm_dp_dpcd_read(
3294 &aconnector->dm_dp_aux.aux,
3297 dpcd_bytes_to_read);
3299 new_irq_handled = false;
3305 if (process_count == max_process_count)
3306 DRM_DEBUG_DRIVER("Loop exceeded max iterations\n");
3309 static void schedule_hpd_rx_offload_work(struct hpd_rx_irq_offload_work_queue *offload_wq,
3310 union hpd_irq_data hpd_irq_data)
3312 struct hpd_rx_irq_offload_work *offload_work =
3313 kzalloc(sizeof(*offload_work), GFP_KERNEL);
3315 if (!offload_work) {
3316 DRM_ERROR("Failed to allocate hpd_rx_irq_offload_work.\n");
3320 INIT_WORK(&offload_work->work, dm_handle_hpd_rx_offload_work);
3321 offload_work->data = hpd_irq_data;
3322 offload_work->offload_wq = offload_wq;
3324 queue_work(offload_wq->wq, &offload_work->work);
3325 DRM_DEBUG_KMS("queue work to handle hpd_rx offload work");
3328 static void handle_hpd_rx_irq(void *param)
3330 struct amdgpu_dm_connector *aconnector = (struct amdgpu_dm_connector *)param;
3331 struct drm_connector *connector = &aconnector->base;
3332 struct drm_device *dev = connector->dev;
3333 struct dc_link *dc_link = aconnector->dc_link;
3334 bool is_mst_root_connector = aconnector->mst_mgr.mst_state;
3335 bool result = false;
3336 enum dc_connection_type new_connection_type = dc_connection_none;
3337 struct amdgpu_device *adev = drm_to_adev(dev);
3338 union hpd_irq_data hpd_irq_data;
3339 bool link_loss = false;
3340 bool has_left_work = false;
3341 int idx = dc_link->link_index;
3342 struct hpd_rx_irq_offload_work_queue *offload_wq = &adev->dm.hpd_rx_offload_wq[idx];
3344 memset(&hpd_irq_data, 0, sizeof(hpd_irq_data));
3346 if (adev->dm.disable_hpd_irq)
3350 * TODO:Temporary add mutex to protect hpd interrupt not have a gpio
3351 * conflict, after implement i2c helper, this mutex should be
3354 mutex_lock(&aconnector->hpd_lock);
3356 result = dc_link_handle_hpd_rx_irq(dc_link, &hpd_irq_data,
3357 &link_loss, true, &has_left_work);
3362 if (hpd_irq_data.bytes.device_service_irq.bits.AUTOMATED_TEST) {
3363 schedule_hpd_rx_offload_work(offload_wq, hpd_irq_data);
3367 if (dc_link_dp_allow_hpd_rx_irq(dc_link)) {
3368 if (hpd_irq_data.bytes.device_service_irq.bits.UP_REQ_MSG_RDY ||
3369 hpd_irq_data.bytes.device_service_irq.bits.DOWN_REP_MSG_RDY) {
3370 dm_handle_mst_sideband_msg(aconnector);
3377 spin_lock(&offload_wq->offload_lock);
3378 skip = offload_wq->is_handling_link_loss;
3381 offload_wq->is_handling_link_loss = true;
3383 spin_unlock(&offload_wq->offload_lock);
3386 schedule_hpd_rx_offload_work(offload_wq, hpd_irq_data);
3393 if (result && !is_mst_root_connector) {
3394 /* Downstream Port status changed. */
3395 if (!dc_link_detect_connection_type(dc_link, &new_connection_type))
3396 DRM_ERROR("KMS: Failed to detect connector\n");
3398 if (aconnector->base.force && new_connection_type == dc_connection_none) {
3399 emulated_link_detect(dc_link);
3401 if (aconnector->fake_enable)
3402 aconnector->fake_enable = false;
3404 amdgpu_dm_update_connector_after_detect(aconnector);
3407 drm_modeset_lock_all(dev);
3408 dm_restore_drm_connector_state(dev, connector);
3409 drm_modeset_unlock_all(dev);
3411 drm_kms_helper_connector_hotplug_event(connector);
3415 mutex_lock(&adev->dm.dc_lock);
3416 ret = dc_link_detect(dc_link, DETECT_REASON_HPDRX);
3417 mutex_unlock(&adev->dm.dc_lock);
3420 if (aconnector->fake_enable)
3421 aconnector->fake_enable = false;
3423 amdgpu_dm_update_connector_after_detect(aconnector);
3425 drm_modeset_lock_all(dev);
3426 dm_restore_drm_connector_state(dev, connector);
3427 drm_modeset_unlock_all(dev);
3429 drm_kms_helper_connector_hotplug_event(connector);
3433 if (hpd_irq_data.bytes.device_service_irq.bits.CP_IRQ) {
3434 if (adev->dm.hdcp_workqueue)
3435 hdcp_handle_cpirq(adev->dm.hdcp_workqueue, aconnector->base.index);
3438 if (dc_link->type != dc_connection_mst_branch)
3439 drm_dp_cec_irq(&aconnector->dm_dp_aux.aux);
3441 mutex_unlock(&aconnector->hpd_lock);
3444 static void register_hpd_handlers(struct amdgpu_device *adev)
3446 struct drm_device *dev = adev_to_drm(adev);
3447 struct drm_connector *connector;
3448 struct amdgpu_dm_connector *aconnector;
3449 const struct dc_link *dc_link;
3450 struct dc_interrupt_params int_params = {0};
3452 int_params.requested_polarity = INTERRUPT_POLARITY_DEFAULT;
3453 int_params.current_polarity = INTERRUPT_POLARITY_DEFAULT;
3455 list_for_each_entry(connector,
3456 &dev->mode_config.connector_list, head) {
3458 aconnector = to_amdgpu_dm_connector(connector);
3459 dc_link = aconnector->dc_link;
3461 if (DC_IRQ_SOURCE_INVALID != dc_link->irq_source_hpd) {
3462 int_params.int_context = INTERRUPT_LOW_IRQ_CONTEXT;
3463 int_params.irq_source = dc_link->irq_source_hpd;
3465 amdgpu_dm_irq_register_interrupt(adev, &int_params,
3467 (void *) aconnector);
3470 if (DC_IRQ_SOURCE_INVALID != dc_link->irq_source_hpd_rx) {
3472 /* Also register for DP short pulse (hpd_rx). */
3473 int_params.int_context = INTERRUPT_LOW_IRQ_CONTEXT;
3474 int_params.irq_source = dc_link->irq_source_hpd_rx;
3476 amdgpu_dm_irq_register_interrupt(adev, &int_params,
3478 (void *) aconnector);
3480 if (adev->dm.hpd_rx_offload_wq)
3481 adev->dm.hpd_rx_offload_wq[dc_link->link_index].aconnector =
3487 #if defined(CONFIG_DRM_AMD_DC_SI)
3488 /* Register IRQ sources and initialize IRQ callbacks */
3489 static int dce60_register_irq_handlers(struct amdgpu_device *adev)
3491 struct dc *dc = adev->dm.dc;
3492 struct common_irq_params *c_irq_params;
3493 struct dc_interrupt_params int_params = {0};
3496 unsigned client_id = AMDGPU_IRQ_CLIENTID_LEGACY;
3498 int_params.requested_polarity = INTERRUPT_POLARITY_DEFAULT;
3499 int_params.current_polarity = INTERRUPT_POLARITY_DEFAULT;
3502 * Actions of amdgpu_irq_add_id():
3503 * 1. Register a set() function with base driver.
3504 * Base driver will call set() function to enable/disable an
3505 * interrupt in DC hardware.
3506 * 2. Register amdgpu_dm_irq_handler().
3507 * Base driver will call amdgpu_dm_irq_handler() for ALL interrupts
3508 * coming from DC hardware.
3509 * amdgpu_dm_irq_handler() will re-direct the interrupt to DC
3510 * for acknowledging and handling. */
3512 /* Use VBLANK interrupt */
3513 for (i = 0; i < adev->mode_info.num_crtc; i++) {
3514 r = amdgpu_irq_add_id(adev, client_id, i+1 , &adev->crtc_irq);
3516 DRM_ERROR("Failed to add crtc irq id!\n");
3520 int_params.int_context = INTERRUPT_HIGH_IRQ_CONTEXT;
3521 int_params.irq_source =
3522 dc_interrupt_to_irq_source(dc, i+1 , 0);
3524 c_irq_params = &adev->dm.vblank_params[int_params.irq_source - DC_IRQ_SOURCE_VBLANK1];
3526 c_irq_params->adev = adev;
3527 c_irq_params->irq_src = int_params.irq_source;
3529 amdgpu_dm_irq_register_interrupt(adev, &int_params,
3530 dm_crtc_high_irq, c_irq_params);
3533 /* Use GRPH_PFLIP interrupt */
3534 for (i = VISLANDS30_IV_SRCID_D1_GRPH_PFLIP;
3535 i <= VISLANDS30_IV_SRCID_D6_GRPH_PFLIP; i += 2) {
3536 r = amdgpu_irq_add_id(adev, client_id, i, &adev->pageflip_irq);
3538 DRM_ERROR("Failed to add page flip irq id!\n");
3542 int_params.int_context = INTERRUPT_HIGH_IRQ_CONTEXT;
3543 int_params.irq_source =
3544 dc_interrupt_to_irq_source(dc, i, 0);
3546 c_irq_params = &adev->dm.pflip_params[int_params.irq_source - DC_IRQ_SOURCE_PFLIP_FIRST];
3548 c_irq_params->adev = adev;
3549 c_irq_params->irq_src = int_params.irq_source;
3551 amdgpu_dm_irq_register_interrupt(adev, &int_params,
3552 dm_pflip_high_irq, c_irq_params);
3557 r = amdgpu_irq_add_id(adev, client_id,
3558 VISLANDS30_IV_SRCID_HOTPLUG_DETECT_A, &adev->hpd_irq);
3560 DRM_ERROR("Failed to add hpd irq id!\n");
3564 register_hpd_handlers(adev);
3570 /* Register IRQ sources and initialize IRQ callbacks */
3571 static int dce110_register_irq_handlers(struct amdgpu_device *adev)
3573 struct dc *dc = adev->dm.dc;
3574 struct common_irq_params *c_irq_params;
3575 struct dc_interrupt_params int_params = {0};
3578 unsigned client_id = AMDGPU_IRQ_CLIENTID_LEGACY;
3580 if (adev->family >= AMDGPU_FAMILY_AI)
3581 client_id = SOC15_IH_CLIENTID_DCE;
3583 int_params.requested_polarity = INTERRUPT_POLARITY_DEFAULT;
3584 int_params.current_polarity = INTERRUPT_POLARITY_DEFAULT;
3587 * Actions of amdgpu_irq_add_id():
3588 * 1. Register a set() function with base driver.
3589 * Base driver will call set() function to enable/disable an
3590 * interrupt in DC hardware.
3591 * 2. Register amdgpu_dm_irq_handler().
3592 * Base driver will call amdgpu_dm_irq_handler() for ALL interrupts
3593 * coming from DC hardware.
3594 * amdgpu_dm_irq_handler() will re-direct the interrupt to DC
3595 * for acknowledging and handling. */
3597 /* Use VBLANK interrupt */
3598 for (i = VISLANDS30_IV_SRCID_D1_VERTICAL_INTERRUPT0; i <= VISLANDS30_IV_SRCID_D6_VERTICAL_INTERRUPT0; i++) {
3599 r = amdgpu_irq_add_id(adev, client_id, i, &adev->crtc_irq);
3601 DRM_ERROR("Failed to add crtc irq id!\n");
3605 int_params.int_context = INTERRUPT_HIGH_IRQ_CONTEXT;
3606 int_params.irq_source =
3607 dc_interrupt_to_irq_source(dc, i, 0);
3609 c_irq_params = &adev->dm.vblank_params[int_params.irq_source - DC_IRQ_SOURCE_VBLANK1];
3611 c_irq_params->adev = adev;
3612 c_irq_params->irq_src = int_params.irq_source;
3614 amdgpu_dm_irq_register_interrupt(adev, &int_params,
3615 dm_crtc_high_irq, c_irq_params);
3618 /* Use VUPDATE interrupt */
3619 for (i = VISLANDS30_IV_SRCID_D1_V_UPDATE_INT; i <= VISLANDS30_IV_SRCID_D6_V_UPDATE_INT; i += 2) {
3620 r = amdgpu_irq_add_id(adev, client_id, i, &adev->vupdate_irq);
3622 DRM_ERROR("Failed to add vupdate irq id!\n");
3626 int_params.int_context = INTERRUPT_HIGH_IRQ_CONTEXT;
3627 int_params.irq_source =
3628 dc_interrupt_to_irq_source(dc, i, 0);
3630 c_irq_params = &adev->dm.vupdate_params[int_params.irq_source - DC_IRQ_SOURCE_VUPDATE1];
3632 c_irq_params->adev = adev;
3633 c_irq_params->irq_src = int_params.irq_source;
3635 amdgpu_dm_irq_register_interrupt(adev, &int_params,
3636 dm_vupdate_high_irq, c_irq_params);
3639 /* Use GRPH_PFLIP interrupt */
3640 for (i = VISLANDS30_IV_SRCID_D1_GRPH_PFLIP;
3641 i <= VISLANDS30_IV_SRCID_D6_GRPH_PFLIP; i += 2) {
3642 r = amdgpu_irq_add_id(adev, client_id, i, &adev->pageflip_irq);
3644 DRM_ERROR("Failed to add page flip irq id!\n");
3648 int_params.int_context = INTERRUPT_HIGH_IRQ_CONTEXT;
3649 int_params.irq_source =
3650 dc_interrupt_to_irq_source(dc, i, 0);
3652 c_irq_params = &adev->dm.pflip_params[int_params.irq_source - DC_IRQ_SOURCE_PFLIP_FIRST];
3654 c_irq_params->adev = adev;
3655 c_irq_params->irq_src = int_params.irq_source;
3657 amdgpu_dm_irq_register_interrupt(adev, &int_params,
3658 dm_pflip_high_irq, c_irq_params);
3663 r = amdgpu_irq_add_id(adev, client_id,
3664 VISLANDS30_IV_SRCID_HOTPLUG_DETECT_A, &adev->hpd_irq);
3666 DRM_ERROR("Failed to add hpd irq id!\n");
3670 register_hpd_handlers(adev);
3675 /* Register IRQ sources and initialize IRQ callbacks */
3676 static int dcn10_register_irq_handlers(struct amdgpu_device *adev)
3678 struct dc *dc = adev->dm.dc;
3679 struct common_irq_params *c_irq_params;
3680 struct dc_interrupt_params int_params = {0};
3683 #if defined(CONFIG_DRM_AMD_SECURE_DISPLAY)
3684 static const unsigned int vrtl_int_srcid[] = {
3685 DCN_1_0__SRCID__OTG1_VERTICAL_INTERRUPT0_CONTROL,
3686 DCN_1_0__SRCID__OTG2_VERTICAL_INTERRUPT0_CONTROL,
3687 DCN_1_0__SRCID__OTG3_VERTICAL_INTERRUPT0_CONTROL,
3688 DCN_1_0__SRCID__OTG4_VERTICAL_INTERRUPT0_CONTROL,
3689 DCN_1_0__SRCID__OTG5_VERTICAL_INTERRUPT0_CONTROL,
3690 DCN_1_0__SRCID__OTG6_VERTICAL_INTERRUPT0_CONTROL
3694 int_params.requested_polarity = INTERRUPT_POLARITY_DEFAULT;
3695 int_params.current_polarity = INTERRUPT_POLARITY_DEFAULT;
3698 * Actions of amdgpu_irq_add_id():
3699 * 1. Register a set() function with base driver.
3700 * Base driver will call set() function to enable/disable an
3701 * interrupt in DC hardware.
3702 * 2. Register amdgpu_dm_irq_handler().
3703 * Base driver will call amdgpu_dm_irq_handler() for ALL interrupts
3704 * coming from DC hardware.
3705 * amdgpu_dm_irq_handler() will re-direct the interrupt to DC
3706 * for acknowledging and handling.
3709 /* Use VSTARTUP interrupt */
3710 for (i = DCN_1_0__SRCID__DC_D1_OTG_VSTARTUP;
3711 i <= DCN_1_0__SRCID__DC_D1_OTG_VSTARTUP + adev->mode_info.num_crtc - 1;
3713 r = amdgpu_irq_add_id(adev, SOC15_IH_CLIENTID_DCE, i, &adev->crtc_irq);
3716 DRM_ERROR("Failed to add crtc irq id!\n");
3720 int_params.int_context = INTERRUPT_HIGH_IRQ_CONTEXT;
3721 int_params.irq_source =
3722 dc_interrupt_to_irq_source(dc, i, 0);
3724 c_irq_params = &adev->dm.vblank_params[int_params.irq_source - DC_IRQ_SOURCE_VBLANK1];
3726 c_irq_params->adev = adev;
3727 c_irq_params->irq_src = int_params.irq_source;
3729 amdgpu_dm_irq_register_interrupt(
3730 adev, &int_params, dm_crtc_high_irq, c_irq_params);
3733 /* Use otg vertical line interrupt */
3734 #if defined(CONFIG_DRM_AMD_SECURE_DISPLAY)
3735 for (i = 0; i <= adev->mode_info.num_crtc - 1; i++) {
3736 r = amdgpu_irq_add_id(adev, SOC15_IH_CLIENTID_DCE,
3737 vrtl_int_srcid[i], &adev->vline0_irq);
3740 DRM_ERROR("Failed to add vline0 irq id!\n");
3744 int_params.int_context = INTERRUPT_HIGH_IRQ_CONTEXT;
3745 int_params.irq_source =
3746 dc_interrupt_to_irq_source(dc, vrtl_int_srcid[i], 0);
3748 if (int_params.irq_source == DC_IRQ_SOURCE_INVALID) {
3749 DRM_ERROR("Failed to register vline0 irq %d!\n", vrtl_int_srcid[i]);
3753 c_irq_params = &adev->dm.vline0_params[int_params.irq_source
3754 - DC_IRQ_SOURCE_DC1_VLINE0];
3756 c_irq_params->adev = adev;
3757 c_irq_params->irq_src = int_params.irq_source;
3759 amdgpu_dm_irq_register_interrupt(adev, &int_params,
3760 dm_dcn_vertical_interrupt0_high_irq, c_irq_params);
3764 /* Use VUPDATE_NO_LOCK interrupt on DCN, which seems to correspond to
3765 * the regular VUPDATE interrupt on DCE. We want DC_IRQ_SOURCE_VUPDATEx
3766 * to trigger at end of each vblank, regardless of state of the lock,
3767 * matching DCE behaviour.
3769 for (i = DCN_1_0__SRCID__OTG0_IHC_V_UPDATE_NO_LOCK_INTERRUPT;
3770 i <= DCN_1_0__SRCID__OTG0_IHC_V_UPDATE_NO_LOCK_INTERRUPT + adev->mode_info.num_crtc - 1;
3772 r = amdgpu_irq_add_id(adev, SOC15_IH_CLIENTID_DCE, i, &adev->vupdate_irq);
3775 DRM_ERROR("Failed to add vupdate irq id!\n");
3779 int_params.int_context = INTERRUPT_HIGH_IRQ_CONTEXT;
3780 int_params.irq_source =
3781 dc_interrupt_to_irq_source(dc, i, 0);
3783 c_irq_params = &adev->dm.vupdate_params[int_params.irq_source - DC_IRQ_SOURCE_VUPDATE1];
3785 c_irq_params->adev = adev;
3786 c_irq_params->irq_src = int_params.irq_source;
3788 amdgpu_dm_irq_register_interrupt(adev, &int_params,
3789 dm_vupdate_high_irq, c_irq_params);
3792 /* Use GRPH_PFLIP interrupt */
3793 for (i = DCN_1_0__SRCID__HUBP0_FLIP_INTERRUPT;
3794 i <= DCN_1_0__SRCID__HUBP0_FLIP_INTERRUPT + dc->caps.max_otg_num - 1;
3796 r = amdgpu_irq_add_id(adev, SOC15_IH_CLIENTID_DCE, i, &adev->pageflip_irq);
3798 DRM_ERROR("Failed to add page flip irq id!\n");
3802 int_params.int_context = INTERRUPT_HIGH_IRQ_CONTEXT;
3803 int_params.irq_source =
3804 dc_interrupt_to_irq_source(dc, i, 0);
3806 c_irq_params = &adev->dm.pflip_params[int_params.irq_source - DC_IRQ_SOURCE_PFLIP_FIRST];
3808 c_irq_params->adev = adev;
3809 c_irq_params->irq_src = int_params.irq_source;
3811 amdgpu_dm_irq_register_interrupt(adev, &int_params,
3812 dm_pflip_high_irq, c_irq_params);
3817 r = amdgpu_irq_add_id(adev, SOC15_IH_CLIENTID_DCE, DCN_1_0__SRCID__DC_HPD1_INT,
3820 DRM_ERROR("Failed to add hpd irq id!\n");
3824 register_hpd_handlers(adev);
3828 /* Register Outbox IRQ sources and initialize IRQ callbacks */
3829 static int register_outbox_irq_handlers(struct amdgpu_device *adev)
3831 struct dc *dc = adev->dm.dc;
3832 struct common_irq_params *c_irq_params;
3833 struct dc_interrupt_params int_params = {0};
3836 int_params.requested_polarity = INTERRUPT_POLARITY_DEFAULT;
3837 int_params.current_polarity = INTERRUPT_POLARITY_DEFAULT;
3839 r = amdgpu_irq_add_id(adev, SOC15_IH_CLIENTID_DCE, DCN_1_0__SRCID__DMCUB_OUTBOX_LOW_PRIORITY_READY_INT,
3840 &adev->dmub_outbox_irq);
3842 DRM_ERROR("Failed to add outbox irq id!\n");
3846 if (dc->ctx->dmub_srv) {
3847 i = DCN_1_0__SRCID__DMCUB_OUTBOX_LOW_PRIORITY_READY_INT;
3848 int_params.int_context = INTERRUPT_LOW_IRQ_CONTEXT;
3849 int_params.irq_source =
3850 dc_interrupt_to_irq_source(dc, i, 0);
3852 c_irq_params = &adev->dm.dmub_outbox_params[0];
3854 c_irq_params->adev = adev;
3855 c_irq_params->irq_src = int_params.irq_source;
3857 amdgpu_dm_irq_register_interrupt(adev, &int_params,
3858 dm_dmub_outbox1_low_irq, c_irq_params);
3865 * Acquires the lock for the atomic state object and returns
3866 * the new atomic state.
3868 * This should only be called during atomic check.
3870 int dm_atomic_get_state(struct drm_atomic_state *state,
3871 struct dm_atomic_state **dm_state)
3873 struct drm_device *dev = state->dev;
3874 struct amdgpu_device *adev = drm_to_adev(dev);
3875 struct amdgpu_display_manager *dm = &adev->dm;
3876 struct drm_private_state *priv_state;
3881 priv_state = drm_atomic_get_private_obj_state(state, &dm->atomic_obj);
3882 if (IS_ERR(priv_state))
3883 return PTR_ERR(priv_state);
3885 *dm_state = to_dm_atomic_state(priv_state);
3890 static struct dm_atomic_state *
3891 dm_atomic_get_new_state(struct drm_atomic_state *state)
3893 struct drm_device *dev = state->dev;
3894 struct amdgpu_device *adev = drm_to_adev(dev);
3895 struct amdgpu_display_manager *dm = &adev->dm;
3896 struct drm_private_obj *obj;
3897 struct drm_private_state *new_obj_state;
3900 for_each_new_private_obj_in_state(state, obj, new_obj_state, i) {
3901 if (obj->funcs == dm->atomic_obj.funcs)
3902 return to_dm_atomic_state(new_obj_state);
3908 static struct drm_private_state *
3909 dm_atomic_duplicate_state(struct drm_private_obj *obj)
3911 struct dm_atomic_state *old_state, *new_state;
3913 new_state = kzalloc(sizeof(*new_state), GFP_KERNEL);
3917 __drm_atomic_helper_private_obj_duplicate_state(obj, &new_state->base);
3919 old_state = to_dm_atomic_state(obj->state);
3921 if (old_state && old_state->context)
3922 new_state->context = dc_copy_state(old_state->context);
3924 if (!new_state->context) {
3929 return &new_state->base;
3932 static void dm_atomic_destroy_state(struct drm_private_obj *obj,
3933 struct drm_private_state *state)
3935 struct dm_atomic_state *dm_state = to_dm_atomic_state(state);
3937 if (dm_state && dm_state->context)
3938 dc_release_state(dm_state->context);
3943 static struct drm_private_state_funcs dm_atomic_state_funcs = {
3944 .atomic_duplicate_state = dm_atomic_duplicate_state,
3945 .atomic_destroy_state = dm_atomic_destroy_state,
3948 static int amdgpu_dm_mode_config_init(struct amdgpu_device *adev)
3950 struct dm_atomic_state *state;
3953 adev->mode_info.mode_config_initialized = true;
3955 adev_to_drm(adev)->mode_config.funcs = (void *)&amdgpu_dm_mode_funcs;
3956 adev_to_drm(adev)->mode_config.helper_private = &amdgpu_dm_mode_config_helperfuncs;
3958 adev_to_drm(adev)->mode_config.max_width = 16384;
3959 adev_to_drm(adev)->mode_config.max_height = 16384;
3961 adev_to_drm(adev)->mode_config.preferred_depth = 24;
3962 if (adev->asic_type == CHIP_HAWAII)
3963 /* disable prefer shadow for now due to hibernation issues */
3964 adev_to_drm(adev)->mode_config.prefer_shadow = 0;
3966 adev_to_drm(adev)->mode_config.prefer_shadow = 1;
3967 /* indicates support for immediate flip */
3968 adev_to_drm(adev)->mode_config.async_page_flip = true;
3970 state = kzalloc(sizeof(*state), GFP_KERNEL);
3974 state->context = dc_create_state(adev->dm.dc);
3975 if (!state->context) {
3980 dc_resource_state_copy_construct_current(adev->dm.dc, state->context);
3982 drm_atomic_private_obj_init(adev_to_drm(adev),
3983 &adev->dm.atomic_obj,
3985 &dm_atomic_state_funcs);
3987 r = amdgpu_display_modeset_create_props(adev);
3989 dc_release_state(state->context);
3994 r = amdgpu_dm_audio_init(adev);
3996 dc_release_state(state->context);
4004 #define AMDGPU_DM_DEFAULT_MIN_BACKLIGHT 12
4005 #define AMDGPU_DM_DEFAULT_MAX_BACKLIGHT 255
4006 #define AUX_BL_DEFAULT_TRANSITION_TIME_MS 50
4008 static void amdgpu_dm_update_backlight_caps(struct amdgpu_display_manager *dm,
4011 #if defined(CONFIG_ACPI)
4012 struct amdgpu_dm_backlight_caps caps;
4014 memset(&caps, 0, sizeof(caps));
4016 if (dm->backlight_caps[bl_idx].caps_valid)
4019 amdgpu_acpi_get_backlight_caps(&caps);
4020 if (caps.caps_valid) {
4021 dm->backlight_caps[bl_idx].caps_valid = true;
4022 if (caps.aux_support)
4024 dm->backlight_caps[bl_idx].min_input_signal = caps.min_input_signal;
4025 dm->backlight_caps[bl_idx].max_input_signal = caps.max_input_signal;
4027 dm->backlight_caps[bl_idx].min_input_signal =
4028 AMDGPU_DM_DEFAULT_MIN_BACKLIGHT;
4029 dm->backlight_caps[bl_idx].max_input_signal =
4030 AMDGPU_DM_DEFAULT_MAX_BACKLIGHT;
4033 if (dm->backlight_caps[bl_idx].aux_support)
4036 dm->backlight_caps[bl_idx].min_input_signal = AMDGPU_DM_DEFAULT_MIN_BACKLIGHT;
4037 dm->backlight_caps[bl_idx].max_input_signal = AMDGPU_DM_DEFAULT_MAX_BACKLIGHT;
4041 static int get_brightness_range(const struct amdgpu_dm_backlight_caps *caps,
4042 unsigned *min, unsigned *max)
4047 if (caps->aux_support) {
4048 // Firmware limits are in nits, DC API wants millinits.
4049 *max = 1000 * caps->aux_max_input_signal;
4050 *min = 1000 * caps->aux_min_input_signal;
4052 // Firmware limits are 8-bit, PWM control is 16-bit.
4053 *max = 0x101 * caps->max_input_signal;
4054 *min = 0x101 * caps->min_input_signal;
4059 static u32 convert_brightness_from_user(const struct amdgpu_dm_backlight_caps *caps,
4060 uint32_t brightness)
4064 if (!get_brightness_range(caps, &min, &max))
4067 // Rescale 0..255 to min..max
4068 return min + DIV_ROUND_CLOSEST((max - min) * brightness,
4069 AMDGPU_MAX_BL_LEVEL);
4072 static u32 convert_brightness_to_user(const struct amdgpu_dm_backlight_caps *caps,
4073 uint32_t brightness)
4077 if (!get_brightness_range(caps, &min, &max))
4080 if (brightness < min)
4082 // Rescale min..max to 0..255
4083 return DIV_ROUND_CLOSEST(AMDGPU_MAX_BL_LEVEL * (brightness - min),
4087 static void amdgpu_dm_backlight_set_level(struct amdgpu_display_manager *dm,
4089 u32 user_brightness)
4091 struct amdgpu_dm_backlight_caps caps;
4092 struct dc_link *link;
4096 amdgpu_dm_update_backlight_caps(dm, bl_idx);
4097 caps = dm->backlight_caps[bl_idx];
4099 dm->brightness[bl_idx] = user_brightness;
4100 /* update scratch register */
4102 amdgpu_atombios_scratch_regs_set_backlight_level(dm->adev, dm->brightness[bl_idx]);
4103 brightness = convert_brightness_from_user(&caps, dm->brightness[bl_idx]);
4104 link = (struct dc_link *)dm->backlight_link[bl_idx];
4106 /* Change brightness based on AUX property */
4107 if (caps.aux_support) {
4108 rc = dc_link_set_backlight_level_nits(link, true, brightness,
4109 AUX_BL_DEFAULT_TRANSITION_TIME_MS);
4111 DRM_DEBUG("DM: Failed to update backlight via AUX on eDP[%d]\n", bl_idx);
4113 rc = dc_link_set_backlight_level(link, brightness, 0);
4115 DRM_DEBUG("DM: Failed to update backlight on eDP[%d]\n", bl_idx);
4119 dm->actual_brightness[bl_idx] = user_brightness;
4122 static int amdgpu_dm_backlight_update_status(struct backlight_device *bd)
4124 struct amdgpu_display_manager *dm = bl_get_data(bd);
4127 for (i = 0; i < dm->num_of_edps; i++) {
4128 if (bd == dm->backlight_dev[i])
4131 if (i >= AMDGPU_DM_MAX_NUM_EDP)
4133 amdgpu_dm_backlight_set_level(dm, i, bd->props.brightness);
4138 static u32 amdgpu_dm_backlight_get_level(struct amdgpu_display_manager *dm,
4141 struct amdgpu_dm_backlight_caps caps;
4142 struct dc_link *link = (struct dc_link *)dm->backlight_link[bl_idx];
4144 amdgpu_dm_update_backlight_caps(dm, bl_idx);
4145 caps = dm->backlight_caps[bl_idx];
4147 if (caps.aux_support) {
4151 rc = dc_link_get_backlight_level_nits(link, &avg, &peak);
4153 return dm->brightness[bl_idx];
4154 return convert_brightness_to_user(&caps, avg);
4156 int ret = dc_link_get_backlight_level(link);
4158 if (ret == DC_ERROR_UNEXPECTED)
4159 return dm->brightness[bl_idx];
4160 return convert_brightness_to_user(&caps, ret);
4164 static int amdgpu_dm_backlight_get_brightness(struct backlight_device *bd)
4166 struct amdgpu_display_manager *dm = bl_get_data(bd);
4169 for (i = 0; i < dm->num_of_edps; i++) {
4170 if (bd == dm->backlight_dev[i])
4173 if (i >= AMDGPU_DM_MAX_NUM_EDP)
4175 return amdgpu_dm_backlight_get_level(dm, i);
4178 static const struct backlight_ops amdgpu_dm_backlight_ops = {
4179 .options = BL_CORE_SUSPENDRESUME,
4180 .get_brightness = amdgpu_dm_backlight_get_brightness,
4181 .update_status = amdgpu_dm_backlight_update_status,
4185 amdgpu_dm_register_backlight_device(struct amdgpu_dm_connector *aconnector)
4187 struct drm_device *drm = aconnector->base.dev;
4188 struct amdgpu_display_manager *dm = &drm_to_adev(drm)->dm;
4189 struct backlight_properties props = { 0 };
4192 if (aconnector->bl_idx == -1)
4195 if (!acpi_video_backlight_use_native()) {
4196 drm_info(drm, "Skipping amdgpu DM backlight registration\n");
4197 /* Try registering an ACPI video backlight device instead. */
4198 acpi_video_register_backlight();
4202 props.max_brightness = AMDGPU_MAX_BL_LEVEL;
4203 props.brightness = AMDGPU_MAX_BL_LEVEL;
4204 props.type = BACKLIGHT_RAW;
4206 snprintf(bl_name, sizeof(bl_name), "amdgpu_bl%d",
4207 drm->primary->index + aconnector->bl_idx);
4209 dm->backlight_dev[aconnector->bl_idx] =
4210 backlight_device_register(bl_name, aconnector->base.kdev, dm,
4211 &amdgpu_dm_backlight_ops, &props);
4213 if (IS_ERR(dm->backlight_dev[aconnector->bl_idx])) {
4214 DRM_ERROR("DM: Backlight registration failed!\n");
4215 dm->backlight_dev[aconnector->bl_idx] = NULL;
4217 DRM_DEBUG_DRIVER("DM: Registered Backlight device: %s\n", bl_name);
4220 static int initialize_plane(struct amdgpu_display_manager *dm,
4221 struct amdgpu_mode_info *mode_info, int plane_id,
4222 enum drm_plane_type plane_type,
4223 const struct dc_plane_cap *plane_cap)
4225 struct drm_plane *plane;
4226 unsigned long possible_crtcs;
4229 plane = kzalloc(sizeof(struct drm_plane), GFP_KERNEL);
4231 DRM_ERROR("KMS: Failed to allocate plane\n");
4234 plane->type = plane_type;
4237 * HACK: IGT tests expect that the primary plane for a CRTC
4238 * can only have one possible CRTC. Only expose support for
4239 * any CRTC if they're not going to be used as a primary plane
4240 * for a CRTC - like overlay or underlay planes.
4242 possible_crtcs = 1 << plane_id;
4243 if (plane_id >= dm->dc->caps.max_streams)
4244 possible_crtcs = 0xff;
4246 ret = amdgpu_dm_plane_init(dm, plane, possible_crtcs, plane_cap);
4249 DRM_ERROR("KMS: Failed to initialize plane\n");
4255 mode_info->planes[plane_id] = plane;
4261 static void setup_backlight_device(struct amdgpu_display_manager *dm,
4262 struct amdgpu_dm_connector *aconnector)
4264 struct dc_link *link = aconnector->dc_link;
4265 int bl_idx = dm->num_of_edps;
4267 if (!(link->connector_signal & (SIGNAL_TYPE_EDP | SIGNAL_TYPE_LVDS)) ||
4268 link->type == dc_connection_none)
4271 if (dm->num_of_edps >= AMDGPU_DM_MAX_NUM_EDP) {
4272 drm_warn(adev_to_drm(dm->adev), "Too much eDP connections, skipping backlight setup for additional eDPs\n");
4276 aconnector->bl_idx = bl_idx;
4278 amdgpu_dm_update_backlight_caps(dm, bl_idx);
4279 dm->brightness[bl_idx] = AMDGPU_MAX_BL_LEVEL;
4280 dm->backlight_link[bl_idx] = link;
4283 update_connector_ext_caps(aconnector);
4286 static void amdgpu_set_panel_orientation(struct drm_connector *connector);
4289 * In this architecture, the association
4290 * connector -> encoder -> crtc
4291 * id not really requried. The crtc and connector will hold the
4292 * display_index as an abstraction to use with DAL component
4294 * Returns 0 on success
4296 static int amdgpu_dm_initialize_drm_device(struct amdgpu_device *adev)
4298 struct amdgpu_display_manager *dm = &adev->dm;
4300 struct amdgpu_dm_connector *aconnector = NULL;
4301 struct amdgpu_encoder *aencoder = NULL;
4302 struct amdgpu_mode_info *mode_info = &adev->mode_info;
4305 enum dc_connection_type new_connection_type = dc_connection_none;
4306 const struct dc_plane_cap *plane;
4307 bool psr_feature_enabled = false;
4308 int max_overlay = dm->dc->caps.max_slave_planes;
4310 dm->display_indexes_num = dm->dc->caps.max_streams;
4311 /* Update the actual used number of crtc */
4312 adev->mode_info.num_crtc = adev->dm.display_indexes_num;
4314 amdgpu_dm_set_irq_funcs(adev);
4316 link_cnt = dm->dc->caps.max_links;
4317 if (amdgpu_dm_mode_config_init(dm->adev)) {
4318 DRM_ERROR("DM: Failed to initialize mode config\n");
4322 /* There is one primary plane per CRTC */
4323 primary_planes = dm->dc->caps.max_streams;
4324 ASSERT(primary_planes <= AMDGPU_MAX_PLANES);
4327 * Initialize primary planes, implicit planes for legacy IOCTLS.
4328 * Order is reversed to match iteration order in atomic check.
4330 for (i = (primary_planes - 1); i >= 0; i--) {
4331 plane = &dm->dc->caps.planes[i];
4333 if (initialize_plane(dm, mode_info, i,
4334 DRM_PLANE_TYPE_PRIMARY, plane)) {
4335 DRM_ERROR("KMS: Failed to initialize primary plane\n");
4341 * Initialize overlay planes, index starting after primary planes.
4342 * These planes have a higher DRM index than the primary planes since
4343 * they should be considered as having a higher z-order.
4344 * Order is reversed to match iteration order in atomic check.
4346 * Only support DCN for now, and only expose one so we don't encourage
4347 * userspace to use up all the pipes.
4349 for (i = 0; i < dm->dc->caps.max_planes; ++i) {
4350 struct dc_plane_cap *plane = &dm->dc->caps.planes[i];
4352 /* Do not create overlay if MPO disabled */
4353 if (amdgpu_dc_debug_mask & DC_DISABLE_MPO)
4356 if (plane->type != DC_PLANE_TYPE_DCN_UNIVERSAL)
4359 if (!plane->pixel_format_support.argb8888)
4362 if (max_overlay-- == 0)
4365 if (initialize_plane(dm, NULL, primary_planes + i,
4366 DRM_PLANE_TYPE_OVERLAY, plane)) {
4367 DRM_ERROR("KMS: Failed to initialize overlay plane\n");
4372 for (i = 0; i < dm->dc->caps.max_streams; i++)
4373 if (amdgpu_dm_crtc_init(dm, mode_info->planes[i], i)) {
4374 DRM_ERROR("KMS: Failed to initialize crtc\n");
4378 /* Use Outbox interrupt */
4379 switch (adev->ip_versions[DCE_HWIP][0]) {
4380 case IP_VERSION(3, 0, 0):
4381 case IP_VERSION(3, 1, 2):
4382 case IP_VERSION(3, 1, 3):
4383 case IP_VERSION(3, 1, 4):
4384 case IP_VERSION(3, 1, 5):
4385 case IP_VERSION(3, 1, 6):
4386 case IP_VERSION(3, 2, 0):
4387 case IP_VERSION(3, 2, 1):
4388 case IP_VERSION(2, 1, 0):
4389 if (register_outbox_irq_handlers(dm->adev)) {
4390 DRM_ERROR("DM: Failed to initialize IRQ\n");
4395 DRM_DEBUG_KMS("Unsupported DCN IP version for outbox: 0x%X\n",
4396 adev->ip_versions[DCE_HWIP][0]);
4399 /* Determine whether to enable PSR support by default. */
4400 if (!(amdgpu_dc_debug_mask & DC_DISABLE_PSR)) {
4401 switch (adev->ip_versions[DCE_HWIP][0]) {
4402 case IP_VERSION(3, 1, 2):
4403 case IP_VERSION(3, 1, 3):
4404 case IP_VERSION(3, 1, 4):
4405 case IP_VERSION(3, 1, 5):
4406 case IP_VERSION(3, 1, 6):
4407 case IP_VERSION(3, 2, 0):
4408 case IP_VERSION(3, 2, 1):
4409 psr_feature_enabled = true;
4412 psr_feature_enabled = amdgpu_dc_feature_mask & DC_PSR_MASK;
4417 /* loops over all connectors on the board */
4418 for (i = 0; i < link_cnt; i++) {
4419 struct dc_link *link = NULL;
4421 if (i > AMDGPU_DM_MAX_DISPLAY_INDEX) {
4423 "KMS: Cannot support more than %d display indexes\n",
4424 AMDGPU_DM_MAX_DISPLAY_INDEX);
4428 aconnector = kzalloc(sizeof(*aconnector), GFP_KERNEL);
4432 aencoder = kzalloc(sizeof(*aencoder), GFP_KERNEL);
4436 if (amdgpu_dm_encoder_init(dm->ddev, aencoder, i)) {
4437 DRM_ERROR("KMS: Failed to initialize encoder\n");
4441 if (amdgpu_dm_connector_init(dm, aconnector, i, aencoder)) {
4442 DRM_ERROR("KMS: Failed to initialize connector\n");
4446 link = dc_get_link_at_index(dm->dc, i);
4448 if (!dc_link_detect_connection_type(link, &new_connection_type))
4449 DRM_ERROR("KMS: Failed to detect connector\n");
4451 if (aconnector->base.force && new_connection_type == dc_connection_none) {
4452 emulated_link_detect(link);
4453 amdgpu_dm_update_connector_after_detect(aconnector);
4457 mutex_lock(&dm->dc_lock);
4458 ret = dc_link_detect(link, DETECT_REASON_BOOT);
4459 mutex_unlock(&dm->dc_lock);
4462 amdgpu_dm_update_connector_after_detect(aconnector);
4463 setup_backlight_device(dm, aconnector);
4465 if (psr_feature_enabled)
4466 amdgpu_dm_set_psr_caps(link);
4468 /* TODO: Fix vblank control helpers to delay PSR entry to allow this when
4469 * PSR is also supported.
4471 if (link->psr_settings.psr_feature_enabled)
4472 adev_to_drm(adev)->vblank_disable_immediate = false;
4475 amdgpu_set_panel_orientation(&aconnector->base);
4478 /* If we didn't find a panel, notify the acpi video detection */
4479 if (dm->adev->flags & AMD_IS_APU && dm->num_of_edps == 0)
4480 acpi_video_report_nolcd();
4482 /* Software is initialized. Now we can register interrupt handlers. */
4483 switch (adev->asic_type) {
4484 #if defined(CONFIG_DRM_AMD_DC_SI)
4489 if (dce60_register_irq_handlers(dm->adev)) {
4490 DRM_ERROR("DM: Failed to initialize IRQ\n");
4504 case CHIP_POLARIS11:
4505 case CHIP_POLARIS10:
4506 case CHIP_POLARIS12:
4511 if (dce110_register_irq_handlers(dm->adev)) {
4512 DRM_ERROR("DM: Failed to initialize IRQ\n");
4517 switch (adev->ip_versions[DCE_HWIP][0]) {
4518 case IP_VERSION(1, 0, 0):
4519 case IP_VERSION(1, 0, 1):
4520 case IP_VERSION(2, 0, 2):
4521 case IP_VERSION(2, 0, 3):
4522 case IP_VERSION(2, 0, 0):
4523 case IP_VERSION(2, 1, 0):
4524 case IP_VERSION(3, 0, 0):
4525 case IP_VERSION(3, 0, 2):
4526 case IP_VERSION(3, 0, 3):
4527 case IP_VERSION(3, 0, 1):
4528 case IP_VERSION(3, 1, 2):
4529 case IP_VERSION(3, 1, 3):
4530 case IP_VERSION(3, 1, 4):
4531 case IP_VERSION(3, 1, 5):
4532 case IP_VERSION(3, 1, 6):
4533 case IP_VERSION(3, 2, 0):
4534 case IP_VERSION(3, 2, 1):
4535 if (dcn10_register_irq_handlers(dm->adev)) {
4536 DRM_ERROR("DM: Failed to initialize IRQ\n");
4541 DRM_ERROR("Unsupported DCE IP versions: 0x%X\n",
4542 adev->ip_versions[DCE_HWIP][0]);
4556 static void amdgpu_dm_destroy_drm_device(struct amdgpu_display_manager *dm)
4558 drm_atomic_private_obj_fini(&dm->atomic_obj);
4562 /******************************************************************************
4563 * amdgpu_display_funcs functions
4564 *****************************************************************************/
4567 * dm_bandwidth_update - program display watermarks
4569 * @adev: amdgpu_device pointer
4571 * Calculate and program the display watermarks and line buffer allocation.
4573 static void dm_bandwidth_update(struct amdgpu_device *adev)
4575 /* TODO: implement later */
4578 static const struct amdgpu_display_funcs dm_display_funcs = {
4579 .bandwidth_update = dm_bandwidth_update, /* called unconditionally */
4580 .vblank_get_counter = dm_vblank_get_counter,/* called unconditionally */
4581 .backlight_set_level = NULL, /* never called for DC */
4582 .backlight_get_level = NULL, /* never called for DC */
4583 .hpd_sense = NULL,/* called unconditionally */
4584 .hpd_set_polarity = NULL, /* called unconditionally */
4585 .hpd_get_gpio_reg = NULL, /* VBIOS parsing. DAL does it. */
4586 .page_flip_get_scanoutpos =
4587 dm_crtc_get_scanoutpos,/* called unconditionally */
4588 .add_encoder = NULL, /* VBIOS parsing. DAL does it. */
4589 .add_connector = NULL, /* VBIOS parsing. DAL does it. */
4592 #if defined(CONFIG_DEBUG_KERNEL_DC)
4594 static ssize_t s3_debug_store(struct device *device,
4595 struct device_attribute *attr,
4601 struct drm_device *drm_dev = dev_get_drvdata(device);
4602 struct amdgpu_device *adev = drm_to_adev(drm_dev);
4604 ret = kstrtoint(buf, 0, &s3_state);
4609 drm_kms_helper_hotplug_event(adev_to_drm(adev));
4614 return ret == 0 ? count : 0;
4617 DEVICE_ATTR_WO(s3_debug);
4621 static int dm_init_microcode(struct amdgpu_device *adev)
4626 switch (adev->ip_versions[DCE_HWIP][0]) {
4627 case IP_VERSION(2, 1, 0):
4628 fw_name_dmub = FIRMWARE_RENOIR_DMUB;
4629 if (ASICREV_IS_GREEN_SARDINE(adev->external_rev_id))
4630 fw_name_dmub = FIRMWARE_GREEN_SARDINE_DMUB;
4632 case IP_VERSION(3, 0, 0):
4633 if (adev->ip_versions[GC_HWIP][0] == IP_VERSION(10, 3, 0))
4634 fw_name_dmub = FIRMWARE_SIENNA_CICHLID_DMUB;
4636 fw_name_dmub = FIRMWARE_NAVY_FLOUNDER_DMUB;
4638 case IP_VERSION(3, 0, 1):
4639 fw_name_dmub = FIRMWARE_VANGOGH_DMUB;
4641 case IP_VERSION(3, 0, 2):
4642 fw_name_dmub = FIRMWARE_DIMGREY_CAVEFISH_DMUB;
4644 case IP_VERSION(3, 0, 3):
4645 fw_name_dmub = FIRMWARE_BEIGE_GOBY_DMUB;
4647 case IP_VERSION(3, 1, 2):
4648 case IP_VERSION(3, 1, 3):
4649 fw_name_dmub = FIRMWARE_YELLOW_CARP_DMUB;
4651 case IP_VERSION(3, 1, 4):
4652 fw_name_dmub = FIRMWARE_DCN_314_DMUB;
4654 case IP_VERSION(3, 1, 5):
4655 fw_name_dmub = FIRMWARE_DCN_315_DMUB;
4657 case IP_VERSION(3, 1, 6):
4658 fw_name_dmub = FIRMWARE_DCN316_DMUB;
4660 case IP_VERSION(3, 2, 0):
4661 fw_name_dmub = FIRMWARE_DCN_V3_2_0_DMCUB;
4663 case IP_VERSION(3, 2, 1):
4664 fw_name_dmub = FIRMWARE_DCN_V3_2_1_DMCUB;
4667 /* ASIC doesn't support DMUB. */
4670 r = amdgpu_ucode_request(adev, &adev->dm.dmub_fw, fw_name_dmub);
4672 DRM_ERROR("DMUB firmware loading failed: %d\n", r);
4676 static int dm_early_init(void *handle)
4678 struct amdgpu_device *adev = (struct amdgpu_device *)handle;
4679 struct amdgpu_mode_info *mode_info = &adev->mode_info;
4680 struct atom_context *ctx = mode_info->atom_context;
4681 int index = GetIndexIntoMasterTable(DATA, Object_Header);
4684 /* if there is no object header, skip DM */
4685 if (!amdgpu_atom_parse_data_header(ctx, index, NULL, NULL, NULL, &data_offset)) {
4686 adev->harvest_ip_mask |= AMD_HARVEST_IP_DMU_MASK;
4687 dev_info(adev->dev, "No object header, skipping DM\n");
4691 switch (adev->asic_type) {
4692 #if defined(CONFIG_DRM_AMD_DC_SI)
4696 adev->mode_info.num_crtc = 6;
4697 adev->mode_info.num_hpd = 6;
4698 adev->mode_info.num_dig = 6;
4701 adev->mode_info.num_crtc = 2;
4702 adev->mode_info.num_hpd = 2;
4703 adev->mode_info.num_dig = 2;
4708 adev->mode_info.num_crtc = 6;
4709 adev->mode_info.num_hpd = 6;
4710 adev->mode_info.num_dig = 6;
4713 adev->mode_info.num_crtc = 4;
4714 adev->mode_info.num_hpd = 6;
4715 adev->mode_info.num_dig = 7;
4719 adev->mode_info.num_crtc = 2;
4720 adev->mode_info.num_hpd = 6;
4721 adev->mode_info.num_dig = 6;
4725 adev->mode_info.num_crtc = 6;
4726 adev->mode_info.num_hpd = 6;
4727 adev->mode_info.num_dig = 7;
4730 adev->mode_info.num_crtc = 3;
4731 adev->mode_info.num_hpd = 6;
4732 adev->mode_info.num_dig = 9;
4735 adev->mode_info.num_crtc = 2;
4736 adev->mode_info.num_hpd = 6;
4737 adev->mode_info.num_dig = 9;
4739 case CHIP_POLARIS11:
4740 case CHIP_POLARIS12:
4741 adev->mode_info.num_crtc = 5;
4742 adev->mode_info.num_hpd = 5;
4743 adev->mode_info.num_dig = 5;
4745 case CHIP_POLARIS10:
4747 adev->mode_info.num_crtc = 6;
4748 adev->mode_info.num_hpd = 6;
4749 adev->mode_info.num_dig = 6;
4754 adev->mode_info.num_crtc = 6;
4755 adev->mode_info.num_hpd = 6;
4756 adev->mode_info.num_dig = 6;
4760 switch (adev->ip_versions[DCE_HWIP][0]) {
4761 case IP_VERSION(2, 0, 2):
4762 case IP_VERSION(3, 0, 0):
4763 adev->mode_info.num_crtc = 6;
4764 adev->mode_info.num_hpd = 6;
4765 adev->mode_info.num_dig = 6;
4767 case IP_VERSION(2, 0, 0):
4768 case IP_VERSION(3, 0, 2):
4769 adev->mode_info.num_crtc = 5;
4770 adev->mode_info.num_hpd = 5;
4771 adev->mode_info.num_dig = 5;
4773 case IP_VERSION(2, 0, 3):
4774 case IP_VERSION(3, 0, 3):
4775 adev->mode_info.num_crtc = 2;
4776 adev->mode_info.num_hpd = 2;
4777 adev->mode_info.num_dig = 2;
4779 case IP_VERSION(1, 0, 0):
4780 case IP_VERSION(1, 0, 1):
4781 case IP_VERSION(3, 0, 1):
4782 case IP_VERSION(2, 1, 0):
4783 case IP_VERSION(3, 1, 2):
4784 case IP_VERSION(3, 1, 3):
4785 case IP_VERSION(3, 1, 4):
4786 case IP_VERSION(3, 1, 5):
4787 case IP_VERSION(3, 1, 6):
4788 case IP_VERSION(3, 2, 0):
4789 case IP_VERSION(3, 2, 1):
4790 adev->mode_info.num_crtc = 4;
4791 adev->mode_info.num_hpd = 4;
4792 adev->mode_info.num_dig = 4;
4795 DRM_ERROR("Unsupported DCE IP versions: 0x%x\n",
4796 adev->ip_versions[DCE_HWIP][0]);
4802 if (adev->mode_info.funcs == NULL)
4803 adev->mode_info.funcs = &dm_display_funcs;
4806 * Note: Do NOT change adev->audio_endpt_rreg and
4807 * adev->audio_endpt_wreg because they are initialised in
4808 * amdgpu_device_init()
4810 #if defined(CONFIG_DEBUG_KERNEL_DC)
4812 adev_to_drm(adev)->dev,
4813 &dev_attr_s3_debug);
4815 adev->dc_enabled = true;
4817 return dm_init_microcode(adev);
4820 static bool modereset_required(struct drm_crtc_state *crtc_state)
4822 return !crtc_state->active && drm_atomic_crtc_needs_modeset(crtc_state);
4825 static void amdgpu_dm_encoder_destroy(struct drm_encoder *encoder)
4827 drm_encoder_cleanup(encoder);
4831 static const struct drm_encoder_funcs amdgpu_dm_encoder_funcs = {
4832 .destroy = amdgpu_dm_encoder_destroy,
4836 fill_plane_color_attributes(const struct drm_plane_state *plane_state,
4837 const enum surface_pixel_format format,
4838 enum dc_color_space *color_space)
4842 *color_space = COLOR_SPACE_SRGB;
4844 /* DRM color properties only affect non-RGB formats. */
4845 if (format < SURFACE_PIXEL_FORMAT_VIDEO_BEGIN)
4848 full_range = (plane_state->color_range == DRM_COLOR_YCBCR_FULL_RANGE);
4850 switch (plane_state->color_encoding) {
4851 case DRM_COLOR_YCBCR_BT601:
4853 *color_space = COLOR_SPACE_YCBCR601;
4855 *color_space = COLOR_SPACE_YCBCR601_LIMITED;
4858 case DRM_COLOR_YCBCR_BT709:
4860 *color_space = COLOR_SPACE_YCBCR709;
4862 *color_space = COLOR_SPACE_YCBCR709_LIMITED;
4865 case DRM_COLOR_YCBCR_BT2020:
4867 *color_space = COLOR_SPACE_2020_YCBCR;
4880 fill_dc_plane_info_and_addr(struct amdgpu_device *adev,
4881 const struct drm_plane_state *plane_state,
4882 const u64 tiling_flags,
4883 struct dc_plane_info *plane_info,
4884 struct dc_plane_address *address,
4886 bool force_disable_dcc)
4888 const struct drm_framebuffer *fb = plane_state->fb;
4889 const struct amdgpu_framebuffer *afb =
4890 to_amdgpu_framebuffer(plane_state->fb);
4893 memset(plane_info, 0, sizeof(*plane_info));
4895 switch (fb->format->format) {
4897 plane_info->format =
4898 SURFACE_PIXEL_FORMAT_GRPH_PALETA_256_COLORS;
4900 case DRM_FORMAT_RGB565:
4901 plane_info->format = SURFACE_PIXEL_FORMAT_GRPH_RGB565;
4903 case DRM_FORMAT_XRGB8888:
4904 case DRM_FORMAT_ARGB8888:
4905 plane_info->format = SURFACE_PIXEL_FORMAT_GRPH_ARGB8888;
4907 case DRM_FORMAT_XRGB2101010:
4908 case DRM_FORMAT_ARGB2101010:
4909 plane_info->format = SURFACE_PIXEL_FORMAT_GRPH_ARGB2101010;
4911 case DRM_FORMAT_XBGR2101010:
4912 case DRM_FORMAT_ABGR2101010:
4913 plane_info->format = SURFACE_PIXEL_FORMAT_GRPH_ABGR2101010;
4915 case DRM_FORMAT_XBGR8888:
4916 case DRM_FORMAT_ABGR8888:
4917 plane_info->format = SURFACE_PIXEL_FORMAT_GRPH_ABGR8888;
4919 case DRM_FORMAT_NV21:
4920 plane_info->format = SURFACE_PIXEL_FORMAT_VIDEO_420_YCbCr;
4922 case DRM_FORMAT_NV12:
4923 plane_info->format = SURFACE_PIXEL_FORMAT_VIDEO_420_YCrCb;
4925 case DRM_FORMAT_P010:
4926 plane_info->format = SURFACE_PIXEL_FORMAT_VIDEO_420_10bpc_YCrCb;
4928 case DRM_FORMAT_XRGB16161616F:
4929 case DRM_FORMAT_ARGB16161616F:
4930 plane_info->format = SURFACE_PIXEL_FORMAT_GRPH_ARGB16161616F;
4932 case DRM_FORMAT_XBGR16161616F:
4933 case DRM_FORMAT_ABGR16161616F:
4934 plane_info->format = SURFACE_PIXEL_FORMAT_GRPH_ABGR16161616F;
4936 case DRM_FORMAT_XRGB16161616:
4937 case DRM_FORMAT_ARGB16161616:
4938 plane_info->format = SURFACE_PIXEL_FORMAT_GRPH_ARGB16161616;
4940 case DRM_FORMAT_XBGR16161616:
4941 case DRM_FORMAT_ABGR16161616:
4942 plane_info->format = SURFACE_PIXEL_FORMAT_GRPH_ABGR16161616;
4946 "Unsupported screen format %p4cc\n",
4947 &fb->format->format);
4951 switch (plane_state->rotation & DRM_MODE_ROTATE_MASK) {
4952 case DRM_MODE_ROTATE_0:
4953 plane_info->rotation = ROTATION_ANGLE_0;
4955 case DRM_MODE_ROTATE_90:
4956 plane_info->rotation = ROTATION_ANGLE_90;
4958 case DRM_MODE_ROTATE_180:
4959 plane_info->rotation = ROTATION_ANGLE_180;
4961 case DRM_MODE_ROTATE_270:
4962 plane_info->rotation = ROTATION_ANGLE_270;
4965 plane_info->rotation = ROTATION_ANGLE_0;
4970 plane_info->visible = true;
4971 plane_info->stereo_format = PLANE_STEREO_FORMAT_NONE;
4973 plane_info->layer_index = plane_state->normalized_zpos;
4975 ret = fill_plane_color_attributes(plane_state, plane_info->format,
4976 &plane_info->color_space);
4980 ret = amdgpu_dm_plane_fill_plane_buffer_attributes(adev, afb, plane_info->format,
4981 plane_info->rotation, tiling_flags,
4982 &plane_info->tiling_info,
4983 &plane_info->plane_size,
4984 &plane_info->dcc, address,
4985 tmz_surface, force_disable_dcc);
4989 amdgpu_dm_plane_fill_blending_from_plane_state(
4990 plane_state, &plane_info->per_pixel_alpha, &plane_info->pre_multiplied_alpha,
4991 &plane_info->global_alpha, &plane_info->global_alpha_value);
4996 static int fill_dc_plane_attributes(struct amdgpu_device *adev,
4997 struct dc_plane_state *dc_plane_state,
4998 struct drm_plane_state *plane_state,
4999 struct drm_crtc_state *crtc_state)
5001 struct dm_crtc_state *dm_crtc_state = to_dm_crtc_state(crtc_state);
5002 struct amdgpu_framebuffer *afb = (struct amdgpu_framebuffer *)plane_state->fb;
5003 struct dc_scaling_info scaling_info;
5004 struct dc_plane_info plane_info;
5006 bool force_disable_dcc = false;
5008 ret = amdgpu_dm_plane_fill_dc_scaling_info(adev, plane_state, &scaling_info);
5012 dc_plane_state->src_rect = scaling_info.src_rect;
5013 dc_plane_state->dst_rect = scaling_info.dst_rect;
5014 dc_plane_state->clip_rect = scaling_info.clip_rect;
5015 dc_plane_state->scaling_quality = scaling_info.scaling_quality;
5017 force_disable_dcc = adev->asic_type == CHIP_RAVEN && adev->in_suspend;
5018 ret = fill_dc_plane_info_and_addr(adev, plane_state,
5021 &dc_plane_state->address,
5027 dc_plane_state->format = plane_info.format;
5028 dc_plane_state->color_space = plane_info.color_space;
5029 dc_plane_state->format = plane_info.format;
5030 dc_plane_state->plane_size = plane_info.plane_size;
5031 dc_plane_state->rotation = plane_info.rotation;
5032 dc_plane_state->horizontal_mirror = plane_info.horizontal_mirror;
5033 dc_plane_state->stereo_format = plane_info.stereo_format;
5034 dc_plane_state->tiling_info = plane_info.tiling_info;
5035 dc_plane_state->visible = plane_info.visible;
5036 dc_plane_state->per_pixel_alpha = plane_info.per_pixel_alpha;
5037 dc_plane_state->pre_multiplied_alpha = plane_info.pre_multiplied_alpha;
5038 dc_plane_state->global_alpha = plane_info.global_alpha;
5039 dc_plane_state->global_alpha_value = plane_info.global_alpha_value;
5040 dc_plane_state->dcc = plane_info.dcc;
5041 dc_plane_state->layer_index = plane_info.layer_index;
5042 dc_plane_state->flip_int_enabled = true;
5045 * Always set input transfer function, since plane state is refreshed
5048 ret = amdgpu_dm_update_plane_color_mgmt(dm_crtc_state, dc_plane_state);
5055 static inline void fill_dc_dirty_rect(struct drm_plane *plane,
5056 struct rect *dirty_rect, int32_t x,
5057 s32 y, s32 width, s32 height,
5060 if (*i > DC_MAX_DIRTY_RECTS)
5063 if (*i == DC_MAX_DIRTY_RECTS)
5068 dirty_rect->width = width;
5069 dirty_rect->height = height;
5073 "[PLANE:%d] PSR FFU dirty rect size (%d, %d)\n",
5074 plane->base.id, width, height);
5077 "[PLANE:%d] PSR SU dirty rect at (%d, %d) size (%d, %d)",
5078 plane->base.id, x, y, width, height);
5085 * fill_dc_dirty_rects() - Fill DC dirty regions for PSR selective updates
5087 * @plane: DRM plane containing dirty regions that need to be flushed to the eDP
5089 * @old_plane_state: Old state of @plane
5090 * @new_plane_state: New state of @plane
5091 * @crtc_state: New state of CRTC connected to the @plane
5092 * @flip_addrs: DC flip tracking struct, which also tracts dirty rects
5093 * @dirty_regions_changed: dirty regions changed
5095 * For PSR SU, DC informs the DMUB uController of dirty rectangle regions
5096 * (referred to as "damage clips" in DRM nomenclature) that require updating on
5097 * the eDP remote buffer. The responsibility of specifying the dirty regions is
5100 * A damage-aware DRM client should fill the FB_DAMAGE_CLIPS property on the
5101 * plane with regions that require flushing to the eDP remote buffer. In
5102 * addition, certain use cases - such as cursor and multi-plane overlay (MPO) -
5103 * implicitly provide damage clips without any client support via the plane
5106 static void fill_dc_dirty_rects(struct drm_plane *plane,
5107 struct drm_plane_state *old_plane_state,
5108 struct drm_plane_state *new_plane_state,
5109 struct drm_crtc_state *crtc_state,
5110 struct dc_flip_addrs *flip_addrs,
5111 bool *dirty_regions_changed)
5113 struct dm_crtc_state *dm_crtc_state = to_dm_crtc_state(crtc_state);
5114 struct rect *dirty_rects = flip_addrs->dirty_rects;
5116 struct drm_mode_rect *clips;
5120 *dirty_regions_changed = false;
5123 * Cursor plane has it's own dirty rect update interface. See
5124 * dcn10_dmub_update_cursor_data and dmub_cmd_update_cursor_info_data
5126 if (plane->type == DRM_PLANE_TYPE_CURSOR)
5129 num_clips = drm_plane_get_damage_clips_count(new_plane_state);
5130 clips = drm_plane_get_damage_clips(new_plane_state);
5132 if (!dm_crtc_state->mpo_requested) {
5133 if (!num_clips || num_clips > DC_MAX_DIRTY_RECTS)
5136 for (; flip_addrs->dirty_rect_count < num_clips; clips++)
5137 fill_dc_dirty_rect(new_plane_state->plane,
5138 &dirty_rects[flip_addrs->dirty_rect_count],
5139 clips->x1, clips->y1,
5140 clips->x2 - clips->x1, clips->y2 - clips->y1,
5141 &flip_addrs->dirty_rect_count,
5147 * MPO is requested. Add entire plane bounding box to dirty rects if
5148 * flipped to or damaged.
5150 * If plane is moved or resized, also add old bounding box to dirty
5153 fb_changed = old_plane_state->fb->base.id !=
5154 new_plane_state->fb->base.id;
5155 bb_changed = (old_plane_state->crtc_x != new_plane_state->crtc_x ||
5156 old_plane_state->crtc_y != new_plane_state->crtc_y ||
5157 old_plane_state->crtc_w != new_plane_state->crtc_w ||
5158 old_plane_state->crtc_h != new_plane_state->crtc_h);
5161 "[PLANE:%d] PSR bb_changed:%d fb_changed:%d num_clips:%d\n",
5162 new_plane_state->plane->base.id,
5163 bb_changed, fb_changed, num_clips);
5165 *dirty_regions_changed = bb_changed;
5168 fill_dc_dirty_rect(new_plane_state->plane, &dirty_rects[i],
5169 new_plane_state->crtc_x,
5170 new_plane_state->crtc_y,
5171 new_plane_state->crtc_w,
5172 new_plane_state->crtc_h, &i, false);
5174 /* Add old plane bounding-box if plane is moved or resized */
5175 fill_dc_dirty_rect(new_plane_state->plane, &dirty_rects[i],
5176 old_plane_state->crtc_x,
5177 old_plane_state->crtc_y,
5178 old_plane_state->crtc_w,
5179 old_plane_state->crtc_h, &i, false);
5183 for (; i < num_clips; clips++)
5184 fill_dc_dirty_rect(new_plane_state->plane,
5185 &dirty_rects[i], clips->x1,
5186 clips->y1, clips->x2 - clips->x1,
5187 clips->y2 - clips->y1, &i, false);
5188 } else if (fb_changed && !bb_changed) {
5189 fill_dc_dirty_rect(new_plane_state->plane, &dirty_rects[i],
5190 new_plane_state->crtc_x,
5191 new_plane_state->crtc_y,
5192 new_plane_state->crtc_w,
5193 new_plane_state->crtc_h, &i, false);
5196 if (i > DC_MAX_DIRTY_RECTS)
5199 flip_addrs->dirty_rect_count = i;
5203 fill_dc_dirty_rect(new_plane_state->plane, &dirty_rects[0], 0, 0,
5204 dm_crtc_state->base.mode.crtc_hdisplay,
5205 dm_crtc_state->base.mode.crtc_vdisplay,
5206 &flip_addrs->dirty_rect_count, true);
5209 static void update_stream_scaling_settings(const struct drm_display_mode *mode,
5210 const struct dm_connector_state *dm_state,
5211 struct dc_stream_state *stream)
5213 enum amdgpu_rmx_type rmx_type;
5215 struct rect src = { 0 }; /* viewport in composition space*/
5216 struct rect dst = { 0 }; /* stream addressable area */
5218 /* no mode. nothing to be done */
5222 /* Full screen scaling by default */
5223 src.width = mode->hdisplay;
5224 src.height = mode->vdisplay;
5225 dst.width = stream->timing.h_addressable;
5226 dst.height = stream->timing.v_addressable;
5229 rmx_type = dm_state->scaling;
5230 if (rmx_type == RMX_ASPECT || rmx_type == RMX_OFF) {
5231 if (src.width * dst.height <
5232 src.height * dst.width) {
5233 /* height needs less upscaling/more downscaling */
5234 dst.width = src.width *
5235 dst.height / src.height;
5237 /* width needs less upscaling/more downscaling */
5238 dst.height = src.height *
5239 dst.width / src.width;
5241 } else if (rmx_type == RMX_CENTER) {
5245 dst.x = (stream->timing.h_addressable - dst.width) / 2;
5246 dst.y = (stream->timing.v_addressable - dst.height) / 2;
5248 if (dm_state->underscan_enable) {
5249 dst.x += dm_state->underscan_hborder / 2;
5250 dst.y += dm_state->underscan_vborder / 2;
5251 dst.width -= dm_state->underscan_hborder;
5252 dst.height -= dm_state->underscan_vborder;
5259 DRM_DEBUG_KMS("Destination Rectangle x:%d y:%d width:%d height:%d\n",
5260 dst.x, dst.y, dst.width, dst.height);
5264 static enum dc_color_depth
5265 convert_color_depth_from_display_info(const struct drm_connector *connector,
5266 bool is_y420, int requested_bpc)
5273 /* Cap display bpc based on HDMI 2.0 HF-VSDB */
5274 if (connector->display_info.hdmi.y420_dc_modes & DRM_EDID_YCBCR420_DC_48)
5276 else if (connector->display_info.hdmi.y420_dc_modes & DRM_EDID_YCBCR420_DC_36)
5278 else if (connector->display_info.hdmi.y420_dc_modes & DRM_EDID_YCBCR420_DC_30)
5281 bpc = (uint8_t)connector->display_info.bpc;
5282 /* Assume 8 bpc by default if no bpc is specified. */
5283 bpc = bpc ? bpc : 8;
5286 if (requested_bpc > 0) {
5288 * Cap display bpc based on the user requested value.
5290 * The value for state->max_bpc may not correctly updated
5291 * depending on when the connector gets added to the state
5292 * or if this was called outside of atomic check, so it
5293 * can't be used directly.
5295 bpc = min_t(u8, bpc, requested_bpc);
5297 /* Round down to the nearest even number. */
5298 bpc = bpc - (bpc & 1);
5304 * Temporary Work around, DRM doesn't parse color depth for
5305 * EDID revision before 1.4
5306 * TODO: Fix edid parsing
5308 return COLOR_DEPTH_888;
5310 return COLOR_DEPTH_666;
5312 return COLOR_DEPTH_888;
5314 return COLOR_DEPTH_101010;
5316 return COLOR_DEPTH_121212;
5318 return COLOR_DEPTH_141414;
5320 return COLOR_DEPTH_161616;
5322 return COLOR_DEPTH_UNDEFINED;
5326 static enum dc_aspect_ratio
5327 get_aspect_ratio(const struct drm_display_mode *mode_in)
5329 /* 1-1 mapping, since both enums follow the HDMI spec. */
5330 return (enum dc_aspect_ratio) mode_in->picture_aspect_ratio;
5333 static enum dc_color_space
5334 get_output_color_space(const struct dc_crtc_timing *dc_crtc_timing)
5336 enum dc_color_space color_space = COLOR_SPACE_SRGB;
5338 switch (dc_crtc_timing->pixel_encoding) {
5339 case PIXEL_ENCODING_YCBCR422:
5340 case PIXEL_ENCODING_YCBCR444:
5341 case PIXEL_ENCODING_YCBCR420:
5344 * 27030khz is the separation point between HDTV and SDTV
5345 * according to HDMI spec, we use YCbCr709 and YCbCr601
5348 if (dc_crtc_timing->pix_clk_100hz > 270300) {
5349 if (dc_crtc_timing->flags.Y_ONLY)
5351 COLOR_SPACE_YCBCR709_LIMITED;
5353 color_space = COLOR_SPACE_YCBCR709;
5355 if (dc_crtc_timing->flags.Y_ONLY)
5357 COLOR_SPACE_YCBCR601_LIMITED;
5359 color_space = COLOR_SPACE_YCBCR601;
5364 case PIXEL_ENCODING_RGB:
5365 color_space = COLOR_SPACE_SRGB;
5376 static bool adjust_colour_depth_from_display_info(
5377 struct dc_crtc_timing *timing_out,
5378 const struct drm_display_info *info)
5380 enum dc_color_depth depth = timing_out->display_color_depth;
5383 normalized_clk = timing_out->pix_clk_100hz / 10;
5384 /* YCbCr 4:2:0 requires additional adjustment of 1/2 */
5385 if (timing_out->pixel_encoding == PIXEL_ENCODING_YCBCR420)
5386 normalized_clk /= 2;
5387 /* Adjusting pix clock following on HDMI spec based on colour depth */
5389 case COLOR_DEPTH_888:
5391 case COLOR_DEPTH_101010:
5392 normalized_clk = (normalized_clk * 30) / 24;
5394 case COLOR_DEPTH_121212:
5395 normalized_clk = (normalized_clk * 36) / 24;
5397 case COLOR_DEPTH_161616:
5398 normalized_clk = (normalized_clk * 48) / 24;
5401 /* The above depths are the only ones valid for HDMI. */
5404 if (normalized_clk <= info->max_tmds_clock) {
5405 timing_out->display_color_depth = depth;
5408 } while (--depth > COLOR_DEPTH_666);
5412 static void fill_stream_properties_from_drm_display_mode(
5413 struct dc_stream_state *stream,
5414 const struct drm_display_mode *mode_in,
5415 const struct drm_connector *connector,
5416 const struct drm_connector_state *connector_state,
5417 const struct dc_stream_state *old_stream,
5420 struct dc_crtc_timing *timing_out = &stream->timing;
5421 const struct drm_display_info *info = &connector->display_info;
5422 struct amdgpu_dm_connector *aconnector = to_amdgpu_dm_connector(connector);
5423 struct hdmi_vendor_infoframe hv_frame;
5424 struct hdmi_avi_infoframe avi_frame;
5426 memset(&hv_frame, 0, sizeof(hv_frame));
5427 memset(&avi_frame, 0, sizeof(avi_frame));
5429 timing_out->h_border_left = 0;
5430 timing_out->h_border_right = 0;
5431 timing_out->v_border_top = 0;
5432 timing_out->v_border_bottom = 0;
5433 /* TODO: un-hardcode */
5434 if (drm_mode_is_420_only(info, mode_in)
5435 && stream->signal == SIGNAL_TYPE_HDMI_TYPE_A)
5436 timing_out->pixel_encoding = PIXEL_ENCODING_YCBCR420;
5437 else if (drm_mode_is_420_also(info, mode_in)
5438 && aconnector->force_yuv420_output)
5439 timing_out->pixel_encoding = PIXEL_ENCODING_YCBCR420;
5440 else if ((connector->display_info.color_formats & DRM_COLOR_FORMAT_YCBCR444)
5441 && stream->signal == SIGNAL_TYPE_HDMI_TYPE_A)
5442 timing_out->pixel_encoding = PIXEL_ENCODING_YCBCR444;
5444 timing_out->pixel_encoding = PIXEL_ENCODING_RGB;
5446 timing_out->timing_3d_format = TIMING_3D_FORMAT_NONE;
5447 timing_out->display_color_depth = convert_color_depth_from_display_info(
5449 (timing_out->pixel_encoding == PIXEL_ENCODING_YCBCR420),
5451 timing_out->scan_type = SCANNING_TYPE_NODATA;
5452 timing_out->hdmi_vic = 0;
5455 timing_out->vic = old_stream->timing.vic;
5456 timing_out->flags.HSYNC_POSITIVE_POLARITY = old_stream->timing.flags.HSYNC_POSITIVE_POLARITY;
5457 timing_out->flags.VSYNC_POSITIVE_POLARITY = old_stream->timing.flags.VSYNC_POSITIVE_POLARITY;
5459 timing_out->vic = drm_match_cea_mode(mode_in);
5460 if (mode_in->flags & DRM_MODE_FLAG_PHSYNC)
5461 timing_out->flags.HSYNC_POSITIVE_POLARITY = 1;
5462 if (mode_in->flags & DRM_MODE_FLAG_PVSYNC)
5463 timing_out->flags.VSYNC_POSITIVE_POLARITY = 1;
5466 if (stream->signal == SIGNAL_TYPE_HDMI_TYPE_A) {
5467 drm_hdmi_avi_infoframe_from_display_mode(&avi_frame, (struct drm_connector *)connector, mode_in);
5468 timing_out->vic = avi_frame.video_code;
5469 drm_hdmi_vendor_infoframe_from_display_mode(&hv_frame, (struct drm_connector *)connector, mode_in);
5470 timing_out->hdmi_vic = hv_frame.vic;
5473 if (is_freesync_video_mode(mode_in, aconnector)) {
5474 timing_out->h_addressable = mode_in->hdisplay;
5475 timing_out->h_total = mode_in->htotal;
5476 timing_out->h_sync_width = mode_in->hsync_end - mode_in->hsync_start;
5477 timing_out->h_front_porch = mode_in->hsync_start - mode_in->hdisplay;
5478 timing_out->v_total = mode_in->vtotal;
5479 timing_out->v_addressable = mode_in->vdisplay;
5480 timing_out->v_front_porch = mode_in->vsync_start - mode_in->vdisplay;
5481 timing_out->v_sync_width = mode_in->vsync_end - mode_in->vsync_start;
5482 timing_out->pix_clk_100hz = mode_in->clock * 10;
5484 timing_out->h_addressable = mode_in->crtc_hdisplay;
5485 timing_out->h_total = mode_in->crtc_htotal;
5486 timing_out->h_sync_width = mode_in->crtc_hsync_end - mode_in->crtc_hsync_start;
5487 timing_out->h_front_porch = mode_in->crtc_hsync_start - mode_in->crtc_hdisplay;
5488 timing_out->v_total = mode_in->crtc_vtotal;
5489 timing_out->v_addressable = mode_in->crtc_vdisplay;
5490 timing_out->v_front_porch = mode_in->crtc_vsync_start - mode_in->crtc_vdisplay;
5491 timing_out->v_sync_width = mode_in->crtc_vsync_end - mode_in->crtc_vsync_start;
5492 timing_out->pix_clk_100hz = mode_in->crtc_clock * 10;
5495 timing_out->aspect_ratio = get_aspect_ratio(mode_in);
5497 stream->out_transfer_func->type = TF_TYPE_PREDEFINED;
5498 stream->out_transfer_func->tf = TRANSFER_FUNCTION_SRGB;
5499 if (stream->signal == SIGNAL_TYPE_HDMI_TYPE_A) {
5500 if (!adjust_colour_depth_from_display_info(timing_out, info) &&
5501 drm_mode_is_420_also(info, mode_in) &&
5502 timing_out->pixel_encoding != PIXEL_ENCODING_YCBCR420) {
5503 timing_out->pixel_encoding = PIXEL_ENCODING_YCBCR420;
5504 adjust_colour_depth_from_display_info(timing_out, info);
5508 stream->output_color_space = get_output_color_space(timing_out);
5511 static void fill_audio_info(struct audio_info *audio_info,
5512 const struct drm_connector *drm_connector,
5513 const struct dc_sink *dc_sink)
5516 int cea_revision = 0;
5517 const struct dc_edid_caps *edid_caps = &dc_sink->edid_caps;
5519 audio_info->manufacture_id = edid_caps->manufacturer_id;
5520 audio_info->product_id = edid_caps->product_id;
5522 cea_revision = drm_connector->display_info.cea_rev;
5524 strscpy(audio_info->display_name,
5525 edid_caps->display_name,
5526 AUDIO_INFO_DISPLAY_NAME_SIZE_IN_CHARS);
5528 if (cea_revision >= 3) {
5529 audio_info->mode_count = edid_caps->audio_mode_count;
5531 for (i = 0; i < audio_info->mode_count; ++i) {
5532 audio_info->modes[i].format_code =
5533 (enum audio_format_code)
5534 (edid_caps->audio_modes[i].format_code);
5535 audio_info->modes[i].channel_count =
5536 edid_caps->audio_modes[i].channel_count;
5537 audio_info->modes[i].sample_rates.all =
5538 edid_caps->audio_modes[i].sample_rate;
5539 audio_info->modes[i].sample_size =
5540 edid_caps->audio_modes[i].sample_size;
5544 audio_info->flags.all = edid_caps->speaker_flags;
5546 /* TODO: We only check for the progressive mode, check for interlace mode too */
5547 if (drm_connector->latency_present[0]) {
5548 audio_info->video_latency = drm_connector->video_latency[0];
5549 audio_info->audio_latency = drm_connector->audio_latency[0];
5552 /* TODO: For DP, video and audio latency should be calculated from DPCD caps */
5557 copy_crtc_timing_for_drm_display_mode(const struct drm_display_mode *src_mode,
5558 struct drm_display_mode *dst_mode)
5560 dst_mode->crtc_hdisplay = src_mode->crtc_hdisplay;
5561 dst_mode->crtc_vdisplay = src_mode->crtc_vdisplay;
5562 dst_mode->crtc_clock = src_mode->crtc_clock;
5563 dst_mode->crtc_hblank_start = src_mode->crtc_hblank_start;
5564 dst_mode->crtc_hblank_end = src_mode->crtc_hblank_end;
5565 dst_mode->crtc_hsync_start = src_mode->crtc_hsync_start;
5566 dst_mode->crtc_hsync_end = src_mode->crtc_hsync_end;
5567 dst_mode->crtc_htotal = src_mode->crtc_htotal;
5568 dst_mode->crtc_hskew = src_mode->crtc_hskew;
5569 dst_mode->crtc_vblank_start = src_mode->crtc_vblank_start;
5570 dst_mode->crtc_vblank_end = src_mode->crtc_vblank_end;
5571 dst_mode->crtc_vsync_start = src_mode->crtc_vsync_start;
5572 dst_mode->crtc_vsync_end = src_mode->crtc_vsync_end;
5573 dst_mode->crtc_vtotal = src_mode->crtc_vtotal;
5577 decide_crtc_timing_for_drm_display_mode(struct drm_display_mode *drm_mode,
5578 const struct drm_display_mode *native_mode,
5581 if (scale_enabled) {
5582 copy_crtc_timing_for_drm_display_mode(native_mode, drm_mode);
5583 } else if (native_mode->clock == drm_mode->clock &&
5584 native_mode->htotal == drm_mode->htotal &&
5585 native_mode->vtotal == drm_mode->vtotal) {
5586 copy_crtc_timing_for_drm_display_mode(native_mode, drm_mode);
5588 /* no scaling nor amdgpu inserted, no need to patch */
5592 static struct dc_sink *
5593 create_fake_sink(struct amdgpu_dm_connector *aconnector)
5595 struct dc_sink_init_data sink_init_data = { 0 };
5596 struct dc_sink *sink = NULL;
5597 sink_init_data.link = aconnector->dc_link;
5598 sink_init_data.sink_signal = aconnector->dc_link->connector_signal;
5600 sink = dc_sink_create(&sink_init_data);
5602 DRM_ERROR("Failed to create sink!\n");
5605 sink->sink_signal = SIGNAL_TYPE_VIRTUAL;
5610 static void set_multisync_trigger_params(
5611 struct dc_stream_state *stream)
5613 struct dc_stream_state *master = NULL;
5615 if (stream->triggered_crtc_reset.enabled) {
5616 master = stream->triggered_crtc_reset.event_source;
5617 stream->triggered_crtc_reset.event =
5618 master->timing.flags.VSYNC_POSITIVE_POLARITY ?
5619 CRTC_EVENT_VSYNC_RISING : CRTC_EVENT_VSYNC_FALLING;
5620 stream->triggered_crtc_reset.delay = TRIGGER_DELAY_NEXT_PIXEL;
5624 static void set_master_stream(struct dc_stream_state *stream_set[],
5627 int j, highest_rfr = 0, master_stream = 0;
5629 for (j = 0; j < stream_count; j++) {
5630 if (stream_set[j] && stream_set[j]->triggered_crtc_reset.enabled) {
5631 int refresh_rate = 0;
5633 refresh_rate = (stream_set[j]->timing.pix_clk_100hz*100)/
5634 (stream_set[j]->timing.h_total*stream_set[j]->timing.v_total);
5635 if (refresh_rate > highest_rfr) {
5636 highest_rfr = refresh_rate;
5641 for (j = 0; j < stream_count; j++) {
5643 stream_set[j]->triggered_crtc_reset.event_source = stream_set[master_stream];
5647 static void dm_enable_per_frame_crtc_master_sync(struct dc_state *context)
5650 struct dc_stream_state *stream;
5652 if (context->stream_count < 2)
5654 for (i = 0; i < context->stream_count ; i++) {
5655 if (!context->streams[i])
5658 * TODO: add a function to read AMD VSDB bits and set
5659 * crtc_sync_master.multi_sync_enabled flag
5660 * For now it's set to false
5664 set_master_stream(context->streams, context->stream_count);
5666 for (i = 0; i < context->stream_count ; i++) {
5667 stream = context->streams[i];
5672 set_multisync_trigger_params(stream);
5677 * DOC: FreeSync Video
5679 * When a userspace application wants to play a video, the content follows a
5680 * standard format definition that usually specifies the FPS for that format.
5681 * The below list illustrates some video format and the expected FPS,
5684 * - TV/NTSC (23.976 FPS)
5687 * - TV/NTSC (29.97 FPS)
5688 * - TV/NTSC (30 FPS)
5689 * - Cinema HFR (48 FPS)
5691 * - Commonly used (60 FPS)
5692 * - Multiples of 24 (48,72,96 FPS)
5694 * The list of standards video format is not huge and can be added to the
5695 * connector modeset list beforehand. With that, userspace can leverage
5696 * FreeSync to extends the front porch in order to attain the target refresh
5697 * rate. Such a switch will happen seamlessly, without screen blanking or
5698 * reprogramming of the output in any other way. If the userspace requests a
5699 * modesetting change compatible with FreeSync modes that only differ in the
5700 * refresh rate, DC will skip the full update and avoid blink during the
5701 * transition. For example, the video player can change the modesetting from
5702 * 60Hz to 30Hz for playing TV/NTSC content when it goes full screen without
5703 * causing any display blink. This same concept can be applied to a mode
5706 static struct drm_display_mode *
5707 get_highest_refresh_rate_mode(struct amdgpu_dm_connector *aconnector,
5708 bool use_probed_modes)
5710 struct drm_display_mode *m, *m_pref = NULL;
5711 u16 current_refresh, highest_refresh;
5712 struct list_head *list_head = use_probed_modes ?
5713 &aconnector->base.probed_modes :
5714 &aconnector->base.modes;
5716 if (aconnector->freesync_vid_base.clock != 0)
5717 return &aconnector->freesync_vid_base;
5719 /* Find the preferred mode */
5720 list_for_each_entry (m, list_head, head) {
5721 if (m->type & DRM_MODE_TYPE_PREFERRED) {
5728 /* Probably an EDID with no preferred mode. Fallback to first entry */
5729 m_pref = list_first_entry_or_null(
5730 &aconnector->base.modes, struct drm_display_mode, head);
5732 DRM_DEBUG_DRIVER("No preferred mode found in EDID\n");
5737 highest_refresh = drm_mode_vrefresh(m_pref);
5740 * Find the mode with highest refresh rate with same resolution.
5741 * For some monitors, preferred mode is not the mode with highest
5742 * supported refresh rate.
5744 list_for_each_entry (m, list_head, head) {
5745 current_refresh = drm_mode_vrefresh(m);
5747 if (m->hdisplay == m_pref->hdisplay &&
5748 m->vdisplay == m_pref->vdisplay &&
5749 highest_refresh < current_refresh) {
5750 highest_refresh = current_refresh;
5755 drm_mode_copy(&aconnector->freesync_vid_base, m_pref);
5759 static bool is_freesync_video_mode(const struct drm_display_mode *mode,
5760 struct amdgpu_dm_connector *aconnector)
5762 struct drm_display_mode *high_mode;
5765 high_mode = get_highest_refresh_rate_mode(aconnector, false);
5766 if (!high_mode || !mode)
5769 timing_diff = high_mode->vtotal - mode->vtotal;
5771 if (high_mode->clock == 0 || high_mode->clock != mode->clock ||
5772 high_mode->hdisplay != mode->hdisplay ||
5773 high_mode->vdisplay != mode->vdisplay ||
5774 high_mode->hsync_start != mode->hsync_start ||
5775 high_mode->hsync_end != mode->hsync_end ||
5776 high_mode->htotal != mode->htotal ||
5777 high_mode->hskew != mode->hskew ||
5778 high_mode->vscan != mode->vscan ||
5779 high_mode->vsync_start - mode->vsync_start != timing_diff ||
5780 high_mode->vsync_end - mode->vsync_end != timing_diff)
5786 static void update_dsc_caps(struct amdgpu_dm_connector *aconnector,
5787 struct dc_sink *sink, struct dc_stream_state *stream,
5788 struct dsc_dec_dpcd_caps *dsc_caps)
5790 stream->timing.flags.DSC = 0;
5791 dsc_caps->is_dsc_supported = false;
5793 if (aconnector->dc_link && (sink->sink_signal == SIGNAL_TYPE_DISPLAY_PORT ||
5794 sink->sink_signal == SIGNAL_TYPE_EDP)) {
5795 if (sink->link->dpcd_caps.dongle_type == DISPLAY_DONGLE_NONE ||
5796 sink->link->dpcd_caps.dongle_type == DISPLAY_DONGLE_DP_HDMI_CONVERTER)
5797 dc_dsc_parse_dsc_dpcd(aconnector->dc_link->ctx->dc,
5798 aconnector->dc_link->dpcd_caps.dsc_caps.dsc_basic_caps.raw,
5799 aconnector->dc_link->dpcd_caps.dsc_caps.dsc_branch_decoder_caps.raw,
5805 static void apply_dsc_policy_for_edp(struct amdgpu_dm_connector *aconnector,
5806 struct dc_sink *sink, struct dc_stream_state *stream,
5807 struct dsc_dec_dpcd_caps *dsc_caps,
5808 uint32_t max_dsc_target_bpp_limit_override)
5810 const struct dc_link_settings *verified_link_cap = NULL;
5811 u32 link_bw_in_kbps;
5812 u32 edp_min_bpp_x16, edp_max_bpp_x16;
5813 struct dc *dc = sink->ctx->dc;
5814 struct dc_dsc_bw_range bw_range = {0};
5815 struct dc_dsc_config dsc_cfg = {0};
5816 struct dc_dsc_config_options dsc_options = {0};
5818 dc_dsc_get_default_config_option(dc, &dsc_options);
5819 dsc_options.max_target_bpp_limit_override_x16 = max_dsc_target_bpp_limit_override * 16;
5821 verified_link_cap = dc_link_get_link_cap(stream->link);
5822 link_bw_in_kbps = dc_link_bandwidth_kbps(stream->link, verified_link_cap);
5823 edp_min_bpp_x16 = 8 * 16;
5824 edp_max_bpp_x16 = 8 * 16;
5826 if (edp_max_bpp_x16 > dsc_caps->edp_max_bits_per_pixel)
5827 edp_max_bpp_x16 = dsc_caps->edp_max_bits_per_pixel;
5829 if (edp_max_bpp_x16 < edp_min_bpp_x16)
5830 edp_min_bpp_x16 = edp_max_bpp_x16;
5832 if (dc_dsc_compute_bandwidth_range(dc->res_pool->dscs[0],
5833 dc->debug.dsc_min_slice_height_override,
5834 edp_min_bpp_x16, edp_max_bpp_x16,
5839 if (bw_range.max_kbps < link_bw_in_kbps) {
5840 if (dc_dsc_compute_config(dc->res_pool->dscs[0],
5846 stream->timing.dsc_cfg = dsc_cfg;
5847 stream->timing.flags.DSC = 1;
5848 stream->timing.dsc_cfg.bits_per_pixel = edp_max_bpp_x16;
5854 if (dc_dsc_compute_config(dc->res_pool->dscs[0],
5860 stream->timing.dsc_cfg = dsc_cfg;
5861 stream->timing.flags.DSC = 1;
5866 static void apply_dsc_policy_for_stream(struct amdgpu_dm_connector *aconnector,
5867 struct dc_sink *sink, struct dc_stream_state *stream,
5868 struct dsc_dec_dpcd_caps *dsc_caps)
5870 struct drm_connector *drm_connector = &aconnector->base;
5871 u32 link_bandwidth_kbps;
5872 struct dc *dc = sink->ctx->dc;
5873 u32 max_supported_bw_in_kbps, timing_bw_in_kbps;
5874 u32 dsc_max_supported_bw_in_kbps;
5875 u32 max_dsc_target_bpp_limit_override =
5876 drm_connector->display_info.max_dsc_bpp;
5877 struct dc_dsc_config_options dsc_options = {0};
5879 dc_dsc_get_default_config_option(dc, &dsc_options);
5880 dsc_options.max_target_bpp_limit_override_x16 = max_dsc_target_bpp_limit_override * 16;
5882 link_bandwidth_kbps = dc_link_bandwidth_kbps(aconnector->dc_link,
5883 dc_link_get_link_cap(aconnector->dc_link));
5885 /* Set DSC policy according to dsc_clock_en */
5886 dc_dsc_policy_set_enable_dsc_when_not_needed(
5887 aconnector->dsc_settings.dsc_force_enable == DSC_CLK_FORCE_ENABLE);
5889 if (aconnector->dc_link && sink->sink_signal == SIGNAL_TYPE_EDP &&
5890 !aconnector->dc_link->panel_config.dsc.disable_dsc_edp &&
5891 dc->caps.edp_dsc_support && aconnector->dsc_settings.dsc_force_enable != DSC_CLK_FORCE_DISABLE) {
5893 apply_dsc_policy_for_edp(aconnector, sink, stream, dsc_caps, max_dsc_target_bpp_limit_override);
5895 } else if (aconnector->dc_link && sink->sink_signal == SIGNAL_TYPE_DISPLAY_PORT) {
5896 if (sink->link->dpcd_caps.dongle_type == DISPLAY_DONGLE_NONE) {
5897 if (dc_dsc_compute_config(aconnector->dc_link->ctx->dc->res_pool->dscs[0],
5900 link_bandwidth_kbps,
5902 &stream->timing.dsc_cfg)) {
5903 stream->timing.flags.DSC = 1;
5904 DRM_DEBUG_DRIVER("%s: [%s] DSC is selected from SST RX\n", __func__, drm_connector->name);
5906 } else if (sink->link->dpcd_caps.dongle_type == DISPLAY_DONGLE_DP_HDMI_CONVERTER) {
5907 timing_bw_in_kbps = dc_bandwidth_in_kbps_from_timing(&stream->timing);
5908 max_supported_bw_in_kbps = link_bandwidth_kbps;
5909 dsc_max_supported_bw_in_kbps = link_bandwidth_kbps;
5911 if (timing_bw_in_kbps > max_supported_bw_in_kbps &&
5912 max_supported_bw_in_kbps > 0 &&
5913 dsc_max_supported_bw_in_kbps > 0)
5914 if (dc_dsc_compute_config(aconnector->dc_link->ctx->dc->res_pool->dscs[0],
5917 dsc_max_supported_bw_in_kbps,
5919 &stream->timing.dsc_cfg)) {
5920 stream->timing.flags.DSC = 1;
5921 DRM_DEBUG_DRIVER("%s: [%s] DSC is selected from DP-HDMI PCON\n",
5922 __func__, drm_connector->name);
5927 /* Overwrite the stream flag if DSC is enabled through debugfs */
5928 if (aconnector->dsc_settings.dsc_force_enable == DSC_CLK_FORCE_ENABLE)
5929 stream->timing.flags.DSC = 1;
5931 if (stream->timing.flags.DSC && aconnector->dsc_settings.dsc_num_slices_h)
5932 stream->timing.dsc_cfg.num_slices_h = aconnector->dsc_settings.dsc_num_slices_h;
5934 if (stream->timing.flags.DSC && aconnector->dsc_settings.dsc_num_slices_v)
5935 stream->timing.dsc_cfg.num_slices_v = aconnector->dsc_settings.dsc_num_slices_v;
5937 if (stream->timing.flags.DSC && aconnector->dsc_settings.dsc_bits_per_pixel)
5938 stream->timing.dsc_cfg.bits_per_pixel = aconnector->dsc_settings.dsc_bits_per_pixel;
5941 static struct dc_stream_state *
5942 create_stream_for_sink(struct amdgpu_dm_connector *aconnector,
5943 const struct drm_display_mode *drm_mode,
5944 const struct dm_connector_state *dm_state,
5945 const struct dc_stream_state *old_stream,
5948 struct drm_display_mode *preferred_mode = NULL;
5949 struct drm_connector *drm_connector;
5950 const struct drm_connector_state *con_state =
5951 dm_state ? &dm_state->base : NULL;
5952 struct dc_stream_state *stream = NULL;
5953 struct drm_display_mode mode;
5954 struct drm_display_mode saved_mode;
5955 struct drm_display_mode *freesync_mode = NULL;
5956 bool native_mode_found = false;
5957 bool recalculate_timing = false;
5958 bool scale = dm_state ? (dm_state->scaling != RMX_OFF) : false;
5960 int preferred_refresh = 0;
5961 enum color_transfer_func tf = TRANSFER_FUNC_UNKNOWN;
5962 struct dsc_dec_dpcd_caps dsc_caps;
5964 struct dc_sink *sink = NULL;
5966 drm_mode_init(&mode, drm_mode);
5967 memset(&saved_mode, 0, sizeof(saved_mode));
5969 if (aconnector == NULL) {
5970 DRM_ERROR("aconnector is NULL!\n");
5974 drm_connector = &aconnector->base;
5976 if (!aconnector->dc_sink) {
5977 sink = create_fake_sink(aconnector);
5981 sink = aconnector->dc_sink;
5982 dc_sink_retain(sink);
5985 stream = dc_create_stream_for_sink(sink);
5987 if (stream == NULL) {
5988 DRM_ERROR("Failed to create stream for sink!\n");
5992 stream->dm_stream_context = aconnector;
5994 stream->timing.flags.LTE_340MCSC_SCRAMBLE =
5995 drm_connector->display_info.hdmi.scdc.scrambling.low_rates;
5997 list_for_each_entry(preferred_mode, &aconnector->base.modes, head) {
5998 /* Search for preferred mode */
5999 if (preferred_mode->type & DRM_MODE_TYPE_PREFERRED) {
6000 native_mode_found = true;
6004 if (!native_mode_found)
6005 preferred_mode = list_first_entry_or_null(
6006 &aconnector->base.modes,
6007 struct drm_display_mode,
6010 mode_refresh = drm_mode_vrefresh(&mode);
6012 if (preferred_mode == NULL) {
6014 * This may not be an error, the use case is when we have no
6015 * usermode calls to reset and set mode upon hotplug. In this
6016 * case, we call set mode ourselves to restore the previous mode
6017 * and the modelist may not be filled in in time.
6019 DRM_DEBUG_DRIVER("No preferred mode found\n");
6021 recalculate_timing = amdgpu_freesync_vid_mode &&
6022 is_freesync_video_mode(&mode, aconnector);
6023 if (recalculate_timing) {
6024 freesync_mode = get_highest_refresh_rate_mode(aconnector, false);
6025 drm_mode_copy(&saved_mode, &mode);
6026 drm_mode_copy(&mode, freesync_mode);
6028 decide_crtc_timing_for_drm_display_mode(
6029 &mode, preferred_mode, scale);
6031 preferred_refresh = drm_mode_vrefresh(preferred_mode);
6035 if (recalculate_timing)
6036 drm_mode_set_crtcinfo(&saved_mode, 0);
6038 drm_mode_set_crtcinfo(&mode, 0);
6041 * If scaling is enabled and refresh rate didn't change
6042 * we copy the vic and polarities of the old timings
6044 if (!scale || mode_refresh != preferred_refresh)
6045 fill_stream_properties_from_drm_display_mode(
6046 stream, &mode, &aconnector->base, con_state, NULL,
6049 fill_stream_properties_from_drm_display_mode(
6050 stream, &mode, &aconnector->base, con_state, old_stream,
6053 if (aconnector->timing_changed) {
6054 DC_LOG_DEBUG("%s: overriding timing for automated test, bpc %d, changing to %d\n",
6056 stream->timing.display_color_depth,
6057 aconnector->timing_requested->display_color_depth);
6058 stream->timing = *aconnector->timing_requested;
6061 /* SST DSC determination policy */
6062 update_dsc_caps(aconnector, sink, stream, &dsc_caps);
6063 if (aconnector->dsc_settings.dsc_force_enable != DSC_CLK_FORCE_DISABLE && dsc_caps.is_dsc_supported)
6064 apply_dsc_policy_for_stream(aconnector, sink, stream, &dsc_caps);
6066 update_stream_scaling_settings(&mode, dm_state, stream);
6069 &stream->audio_info,
6073 update_stream_signal(stream, sink);
6075 if (stream->signal == SIGNAL_TYPE_HDMI_TYPE_A)
6076 mod_build_hf_vsif_infopacket(stream, &stream->vsp_infopacket);
6078 if (stream->link->psr_settings.psr_feature_enabled) {
6080 // should decide stream support vsc sdp colorimetry capability
6081 // before building vsc info packet
6083 stream->use_vsc_sdp_for_colorimetry = false;
6084 if (aconnector->dc_sink->sink_signal == SIGNAL_TYPE_DISPLAY_PORT_MST) {
6085 stream->use_vsc_sdp_for_colorimetry =
6086 aconnector->dc_sink->is_vsc_sdp_colorimetry_supported;
6088 if (stream->link->dpcd_caps.dprx_feature.bits.VSC_SDP_COLORIMETRY_SUPPORTED)
6089 stream->use_vsc_sdp_for_colorimetry = true;
6091 if (stream->out_transfer_func->tf == TRANSFER_FUNCTION_GAMMA22)
6092 tf = TRANSFER_FUNC_GAMMA_22;
6093 mod_build_vsc_infopacket(stream, &stream->vsc_infopacket, stream->output_color_space, tf);
6094 aconnector->psr_skip_count = AMDGPU_DM_PSR_ENTRY_DELAY;
6098 dc_sink_release(sink);
6103 static enum drm_connector_status
6104 amdgpu_dm_connector_detect(struct drm_connector *connector, bool force)
6107 struct amdgpu_dm_connector *aconnector = to_amdgpu_dm_connector(connector);
6111 * 1. This interface is NOT called in context of HPD irq.
6112 * 2. This interface *is called* in context of user-mode ioctl. Which
6113 * makes it a bad place for *any* MST-related activity.
6116 if (aconnector->base.force == DRM_FORCE_UNSPECIFIED &&
6117 !aconnector->fake_enable)
6118 connected = (aconnector->dc_sink != NULL);
6120 connected = (aconnector->base.force == DRM_FORCE_ON ||
6121 aconnector->base.force == DRM_FORCE_ON_DIGITAL);
6123 update_subconnector_property(aconnector);
6125 return (connected ? connector_status_connected :
6126 connector_status_disconnected);
6129 int amdgpu_dm_connector_atomic_set_property(struct drm_connector *connector,
6130 struct drm_connector_state *connector_state,
6131 struct drm_property *property,
6134 struct drm_device *dev = connector->dev;
6135 struct amdgpu_device *adev = drm_to_adev(dev);
6136 struct dm_connector_state *dm_old_state =
6137 to_dm_connector_state(connector->state);
6138 struct dm_connector_state *dm_new_state =
6139 to_dm_connector_state(connector_state);
6143 if (property == dev->mode_config.scaling_mode_property) {
6144 enum amdgpu_rmx_type rmx_type;
6147 case DRM_MODE_SCALE_CENTER:
6148 rmx_type = RMX_CENTER;
6150 case DRM_MODE_SCALE_ASPECT:
6151 rmx_type = RMX_ASPECT;
6153 case DRM_MODE_SCALE_FULLSCREEN:
6154 rmx_type = RMX_FULL;
6156 case DRM_MODE_SCALE_NONE:
6162 if (dm_old_state->scaling == rmx_type)
6165 dm_new_state->scaling = rmx_type;
6167 } else if (property == adev->mode_info.underscan_hborder_property) {
6168 dm_new_state->underscan_hborder = val;
6170 } else if (property == adev->mode_info.underscan_vborder_property) {
6171 dm_new_state->underscan_vborder = val;
6173 } else if (property == adev->mode_info.underscan_property) {
6174 dm_new_state->underscan_enable = val;
6176 } else if (property == adev->mode_info.abm_level_property) {
6177 dm_new_state->abm_level = val;
6184 int amdgpu_dm_connector_atomic_get_property(struct drm_connector *connector,
6185 const struct drm_connector_state *state,
6186 struct drm_property *property,
6189 struct drm_device *dev = connector->dev;
6190 struct amdgpu_device *adev = drm_to_adev(dev);
6191 struct dm_connector_state *dm_state =
6192 to_dm_connector_state(state);
6195 if (property == dev->mode_config.scaling_mode_property) {
6196 switch (dm_state->scaling) {
6198 *val = DRM_MODE_SCALE_CENTER;
6201 *val = DRM_MODE_SCALE_ASPECT;
6204 *val = DRM_MODE_SCALE_FULLSCREEN;
6208 *val = DRM_MODE_SCALE_NONE;
6212 } else if (property == adev->mode_info.underscan_hborder_property) {
6213 *val = dm_state->underscan_hborder;
6215 } else if (property == adev->mode_info.underscan_vborder_property) {
6216 *val = dm_state->underscan_vborder;
6218 } else if (property == adev->mode_info.underscan_property) {
6219 *val = dm_state->underscan_enable;
6221 } else if (property == adev->mode_info.abm_level_property) {
6222 *val = dm_state->abm_level;
6229 static void amdgpu_dm_connector_unregister(struct drm_connector *connector)
6231 struct amdgpu_dm_connector *amdgpu_dm_connector = to_amdgpu_dm_connector(connector);
6233 drm_dp_aux_unregister(&amdgpu_dm_connector->dm_dp_aux.aux);
6236 static void amdgpu_dm_connector_destroy(struct drm_connector *connector)
6238 struct amdgpu_dm_connector *aconnector = to_amdgpu_dm_connector(connector);
6239 struct amdgpu_device *adev = drm_to_adev(connector->dev);
6240 struct amdgpu_display_manager *dm = &adev->dm;
6243 * Call only if mst_mgr was initialized before since it's not done
6244 * for all connector types.
6246 if (aconnector->mst_mgr.dev)
6247 drm_dp_mst_topology_mgr_destroy(&aconnector->mst_mgr);
6249 if (aconnector->bl_idx != -1) {
6250 backlight_device_unregister(dm->backlight_dev[aconnector->bl_idx]);
6251 dm->backlight_dev[aconnector->bl_idx] = NULL;
6254 if (aconnector->dc_em_sink)
6255 dc_sink_release(aconnector->dc_em_sink);
6256 aconnector->dc_em_sink = NULL;
6257 if (aconnector->dc_sink)
6258 dc_sink_release(aconnector->dc_sink);
6259 aconnector->dc_sink = NULL;
6261 drm_dp_cec_unregister_connector(&aconnector->dm_dp_aux.aux);
6262 drm_connector_unregister(connector);
6263 drm_connector_cleanup(connector);
6264 if (aconnector->i2c) {
6265 i2c_del_adapter(&aconnector->i2c->base);
6266 kfree(aconnector->i2c);
6268 kfree(aconnector->dm_dp_aux.aux.name);
6273 void amdgpu_dm_connector_funcs_reset(struct drm_connector *connector)
6275 struct dm_connector_state *state =
6276 to_dm_connector_state(connector->state);
6278 if (connector->state)
6279 __drm_atomic_helper_connector_destroy_state(connector->state);
6283 state = kzalloc(sizeof(*state), GFP_KERNEL);
6286 state->scaling = RMX_OFF;
6287 state->underscan_enable = false;
6288 state->underscan_hborder = 0;
6289 state->underscan_vborder = 0;
6290 state->base.max_requested_bpc = 8;
6291 state->vcpi_slots = 0;
6294 if (connector->connector_type == DRM_MODE_CONNECTOR_eDP)
6295 state->abm_level = amdgpu_dm_abm_level;
6297 __drm_atomic_helper_connector_reset(connector, &state->base);
6301 struct drm_connector_state *
6302 amdgpu_dm_connector_atomic_duplicate_state(struct drm_connector *connector)
6304 struct dm_connector_state *state =
6305 to_dm_connector_state(connector->state);
6307 struct dm_connector_state *new_state =
6308 kmemdup(state, sizeof(*state), GFP_KERNEL);
6313 __drm_atomic_helper_connector_duplicate_state(connector, &new_state->base);
6315 new_state->freesync_capable = state->freesync_capable;
6316 new_state->abm_level = state->abm_level;
6317 new_state->scaling = state->scaling;
6318 new_state->underscan_enable = state->underscan_enable;
6319 new_state->underscan_hborder = state->underscan_hborder;
6320 new_state->underscan_vborder = state->underscan_vborder;
6321 new_state->vcpi_slots = state->vcpi_slots;
6322 new_state->pbn = state->pbn;
6323 return &new_state->base;
6327 amdgpu_dm_connector_late_register(struct drm_connector *connector)
6329 struct amdgpu_dm_connector *amdgpu_dm_connector =
6330 to_amdgpu_dm_connector(connector);
6333 amdgpu_dm_register_backlight_device(amdgpu_dm_connector);
6335 if ((connector->connector_type == DRM_MODE_CONNECTOR_DisplayPort) ||
6336 (connector->connector_type == DRM_MODE_CONNECTOR_eDP)) {
6337 amdgpu_dm_connector->dm_dp_aux.aux.dev = connector->kdev;
6338 r = drm_dp_aux_register(&amdgpu_dm_connector->dm_dp_aux.aux);
6343 #if defined(CONFIG_DEBUG_FS)
6344 connector_debugfs_init(amdgpu_dm_connector);
6350 static void amdgpu_dm_connector_funcs_force(struct drm_connector *connector)
6352 struct amdgpu_dm_connector *aconnector = to_amdgpu_dm_connector(connector);
6353 struct dc_link *dc_link = aconnector->dc_link;
6354 struct dc_sink *dc_em_sink = aconnector->dc_em_sink;
6357 if (!connector->edid_override)
6360 drm_edid_override_connector_update(&aconnector->base);
6361 edid = aconnector->base.edid_blob_ptr->data;
6362 aconnector->edid = edid;
6364 /* Update emulated (virtual) sink's EDID */
6365 if (dc_em_sink && dc_link) {
6366 memset(&dc_em_sink->edid_caps, 0, sizeof(struct dc_edid_caps));
6367 memmove(dc_em_sink->dc_edid.raw_edid, edid, (edid->extensions + 1) * EDID_LENGTH);
6368 dm_helpers_parse_edid_caps(
6370 &dc_em_sink->dc_edid,
6371 &dc_em_sink->edid_caps);
6375 static const struct drm_connector_funcs amdgpu_dm_connector_funcs = {
6376 .reset = amdgpu_dm_connector_funcs_reset,
6377 .detect = amdgpu_dm_connector_detect,
6378 .fill_modes = drm_helper_probe_single_connector_modes,
6379 .destroy = amdgpu_dm_connector_destroy,
6380 .atomic_duplicate_state = amdgpu_dm_connector_atomic_duplicate_state,
6381 .atomic_destroy_state = drm_atomic_helper_connector_destroy_state,
6382 .atomic_set_property = amdgpu_dm_connector_atomic_set_property,
6383 .atomic_get_property = amdgpu_dm_connector_atomic_get_property,
6384 .late_register = amdgpu_dm_connector_late_register,
6385 .early_unregister = amdgpu_dm_connector_unregister,
6386 .force = amdgpu_dm_connector_funcs_force
6389 static int get_modes(struct drm_connector *connector)
6391 return amdgpu_dm_connector_get_modes(connector);
6394 static void create_eml_sink(struct amdgpu_dm_connector *aconnector)
6396 struct dc_sink_init_data init_params = {
6397 .link = aconnector->dc_link,
6398 .sink_signal = SIGNAL_TYPE_VIRTUAL
6402 if (!aconnector->base.edid_blob_ptr) {
6403 /* if connector->edid_override valid, pass
6404 * it to edid_override to edid_blob_ptr
6407 drm_edid_override_connector_update(&aconnector->base);
6409 if (!aconnector->base.edid_blob_ptr) {
6410 DRM_ERROR("No EDID firmware found on connector: %s ,forcing to OFF!\n",
6411 aconnector->base.name);
6413 aconnector->base.force = DRM_FORCE_OFF;
6418 edid = (struct edid *) aconnector->base.edid_blob_ptr->data;
6420 aconnector->edid = edid;
6422 aconnector->dc_em_sink = dc_link_add_remote_sink(
6423 aconnector->dc_link,
6425 (edid->extensions + 1) * EDID_LENGTH,
6428 if (aconnector->base.force == DRM_FORCE_ON) {
6429 aconnector->dc_sink = aconnector->dc_link->local_sink ?
6430 aconnector->dc_link->local_sink :
6431 aconnector->dc_em_sink;
6432 dc_sink_retain(aconnector->dc_sink);
6436 static void handle_edid_mgmt(struct amdgpu_dm_connector *aconnector)
6438 struct dc_link *link = (struct dc_link *)aconnector->dc_link;
6441 * In case of headless boot with force on for DP managed connector
6442 * Those settings have to be != 0 to get initial modeset
6444 if (link->connector_signal == SIGNAL_TYPE_DISPLAY_PORT) {
6445 link->verified_link_cap.lane_count = LANE_COUNT_FOUR;
6446 link->verified_link_cap.link_rate = LINK_RATE_HIGH2;
6449 create_eml_sink(aconnector);
6452 static enum dc_status dm_validate_stream_and_context(struct dc *dc,
6453 struct dc_stream_state *stream)
6455 enum dc_status dc_result = DC_ERROR_UNEXPECTED;
6456 struct dc_plane_state *dc_plane_state = NULL;
6457 struct dc_state *dc_state = NULL;
6462 dc_plane_state = dc_create_plane_state(dc);
6463 if (!dc_plane_state)
6466 dc_state = dc_create_state(dc);
6470 /* populate stream to plane */
6471 dc_plane_state->src_rect.height = stream->src.height;
6472 dc_plane_state->src_rect.width = stream->src.width;
6473 dc_plane_state->dst_rect.height = stream->src.height;
6474 dc_plane_state->dst_rect.width = stream->src.width;
6475 dc_plane_state->clip_rect.height = stream->src.height;
6476 dc_plane_state->clip_rect.width = stream->src.width;
6477 dc_plane_state->plane_size.surface_pitch = ((stream->src.width + 255) / 256) * 256;
6478 dc_plane_state->plane_size.surface_size.height = stream->src.height;
6479 dc_plane_state->plane_size.surface_size.width = stream->src.width;
6480 dc_plane_state->plane_size.chroma_size.height = stream->src.height;
6481 dc_plane_state->plane_size.chroma_size.width = stream->src.width;
6482 dc_plane_state->format = SURFACE_PIXEL_FORMAT_GRPH_ARGB8888;
6483 dc_plane_state->tiling_info.gfx9.swizzle = DC_SW_UNKNOWN;
6484 dc_plane_state->rotation = ROTATION_ANGLE_0;
6485 dc_plane_state->is_tiling_rotated = false;
6486 dc_plane_state->tiling_info.gfx8.array_mode = DC_ARRAY_LINEAR_GENERAL;
6488 dc_result = dc_validate_stream(dc, stream);
6489 if (dc_result == DC_OK)
6490 dc_result = dc_validate_plane(dc, dc_plane_state);
6492 if (dc_result == DC_OK)
6493 dc_result = dc_add_stream_to_ctx(dc, dc_state, stream);
6495 if (dc_result == DC_OK && !dc_add_plane_to_context(
6500 dc_result = DC_FAIL_ATTACH_SURFACES;
6502 if (dc_result == DC_OK)
6503 dc_result = dc_validate_global_state(dc, dc_state, true);
6507 dc_release_state(dc_state);
6510 dc_plane_state_release(dc_plane_state);
6515 struct dc_stream_state *
6516 create_validate_stream_for_sink(struct amdgpu_dm_connector *aconnector,
6517 const struct drm_display_mode *drm_mode,
6518 const struct dm_connector_state *dm_state,
6519 const struct dc_stream_state *old_stream)
6521 struct drm_connector *connector = &aconnector->base;
6522 struct amdgpu_device *adev = drm_to_adev(connector->dev);
6523 struct dc_stream_state *stream;
6524 const struct drm_connector_state *drm_state = dm_state ? &dm_state->base : NULL;
6525 int requested_bpc = drm_state ? drm_state->max_requested_bpc : 8;
6526 enum dc_status dc_result = DC_OK;
6529 stream = create_stream_for_sink(aconnector, drm_mode,
6530 dm_state, old_stream,
6532 if (stream == NULL) {
6533 DRM_ERROR("Failed to create stream for sink!\n");
6537 dc_result = dc_validate_stream(adev->dm.dc, stream);
6538 if (dc_result == DC_OK && stream->signal == SIGNAL_TYPE_DISPLAY_PORT_MST)
6539 dc_result = dm_dp_mst_is_port_support_mode(aconnector, stream);
6541 if (dc_result == DC_OK)
6542 dc_result = dm_validate_stream_and_context(adev->dm.dc, stream);
6544 if (dc_result != DC_OK) {
6545 DRM_DEBUG_KMS("Mode %dx%d (clk %d) failed DC validation with error %d (%s)\n",
6550 dc_status_to_str(dc_result));
6552 dc_stream_release(stream);
6554 requested_bpc -= 2; /* lower bpc to retry validation */
6557 } while (stream == NULL && requested_bpc >= 6);
6559 if (dc_result == DC_FAIL_ENC_VALIDATE && !aconnector->force_yuv420_output) {
6560 DRM_DEBUG_KMS("Retry forcing YCbCr420 encoding\n");
6562 aconnector->force_yuv420_output = true;
6563 stream = create_validate_stream_for_sink(aconnector, drm_mode,
6564 dm_state, old_stream);
6565 aconnector->force_yuv420_output = false;
6571 enum drm_mode_status amdgpu_dm_connector_mode_valid(struct drm_connector *connector,
6572 struct drm_display_mode *mode)
6574 int result = MODE_ERROR;
6575 struct dc_sink *dc_sink;
6576 /* TODO: Unhardcode stream count */
6577 struct dc_stream_state *stream;
6578 struct amdgpu_dm_connector *aconnector = to_amdgpu_dm_connector(connector);
6580 if ((mode->flags & DRM_MODE_FLAG_INTERLACE) ||
6581 (mode->flags & DRM_MODE_FLAG_DBLSCAN))
6585 * Only run this the first time mode_valid is called to initilialize
6588 if (aconnector->base.force != DRM_FORCE_UNSPECIFIED &&
6589 !aconnector->dc_em_sink)
6590 handle_edid_mgmt(aconnector);
6592 dc_sink = to_amdgpu_dm_connector(connector)->dc_sink;
6594 if (dc_sink == NULL && aconnector->base.force != DRM_FORCE_ON_DIGITAL &&
6595 aconnector->base.force != DRM_FORCE_ON) {
6596 DRM_ERROR("dc_sink is NULL!\n");
6600 stream = create_validate_stream_for_sink(aconnector, mode, NULL, NULL);
6602 dc_stream_release(stream);
6607 /* TODO: error handling*/
6611 static int fill_hdr_info_packet(const struct drm_connector_state *state,
6612 struct dc_info_packet *out)
6614 struct hdmi_drm_infoframe frame;
6615 unsigned char buf[30]; /* 26 + 4 */
6619 memset(out, 0, sizeof(*out));
6621 if (!state->hdr_output_metadata)
6624 ret = drm_hdmi_infoframe_set_hdr_metadata(&frame, state);
6628 len = hdmi_drm_infoframe_pack_only(&frame, buf, sizeof(buf));
6632 /* Static metadata is a fixed 26 bytes + 4 byte header. */
6636 /* Prepare the infopacket for DC. */
6637 switch (state->connector->connector_type) {
6638 case DRM_MODE_CONNECTOR_HDMIA:
6639 out->hb0 = 0x87; /* type */
6640 out->hb1 = 0x01; /* version */
6641 out->hb2 = 0x1A; /* length */
6642 out->sb[0] = buf[3]; /* checksum */
6646 case DRM_MODE_CONNECTOR_DisplayPort:
6647 case DRM_MODE_CONNECTOR_eDP:
6648 out->hb0 = 0x00; /* sdp id, zero */
6649 out->hb1 = 0x87; /* type */
6650 out->hb2 = 0x1D; /* payload len - 1 */
6651 out->hb3 = (0x13 << 2); /* sdp version */
6652 out->sb[0] = 0x01; /* version */
6653 out->sb[1] = 0x1A; /* length */
6661 memcpy(&out->sb[i], &buf[4], 26);
6664 print_hex_dump(KERN_DEBUG, "HDR SB:", DUMP_PREFIX_NONE, 16, 1, out->sb,
6665 sizeof(out->sb), false);
6671 amdgpu_dm_connector_atomic_check(struct drm_connector *conn,
6672 struct drm_atomic_state *state)
6674 struct drm_connector_state *new_con_state =
6675 drm_atomic_get_new_connector_state(state, conn);
6676 struct drm_connector_state *old_con_state =
6677 drm_atomic_get_old_connector_state(state, conn);
6678 struct drm_crtc *crtc = new_con_state->crtc;
6679 struct drm_crtc_state *new_crtc_state;
6680 struct amdgpu_dm_connector *aconn = to_amdgpu_dm_connector(conn);
6683 trace_amdgpu_dm_connector_atomic_check(new_con_state);
6685 if (conn->connector_type == DRM_MODE_CONNECTOR_DisplayPort) {
6686 ret = drm_dp_mst_root_conn_atomic_check(new_con_state, &aconn->mst_mgr);
6694 if (!drm_connector_atomic_hdr_metadata_equal(old_con_state, new_con_state)) {
6695 struct dc_info_packet hdr_infopacket;
6697 ret = fill_hdr_info_packet(new_con_state, &hdr_infopacket);
6701 new_crtc_state = drm_atomic_get_crtc_state(state, crtc);
6702 if (IS_ERR(new_crtc_state))
6703 return PTR_ERR(new_crtc_state);
6706 * DC considers the stream backends changed if the
6707 * static metadata changes. Forcing the modeset also
6708 * gives a simple way for userspace to switch from
6709 * 8bpc to 10bpc when setting the metadata to enter
6712 * Changing the static metadata after it's been
6713 * set is permissible, however. So only force a
6714 * modeset if we're entering or exiting HDR.
6716 new_crtc_state->mode_changed =
6717 !old_con_state->hdr_output_metadata ||
6718 !new_con_state->hdr_output_metadata;
6724 static const struct drm_connector_helper_funcs
6725 amdgpu_dm_connector_helper_funcs = {
6727 * If hotplugging a second bigger display in FB Con mode, bigger resolution
6728 * modes will be filtered by drm_mode_validate_size(), and those modes
6729 * are missing after user start lightdm. So we need to renew modes list.
6730 * in get_modes call back, not just return the modes count
6732 .get_modes = get_modes,
6733 .mode_valid = amdgpu_dm_connector_mode_valid,
6734 .atomic_check = amdgpu_dm_connector_atomic_check,
6737 static void dm_encoder_helper_disable(struct drm_encoder *encoder)
6742 int convert_dc_color_depth_into_bpc(enum dc_color_depth display_color_depth)
6744 switch (display_color_depth) {
6745 case COLOR_DEPTH_666:
6747 case COLOR_DEPTH_888:
6749 case COLOR_DEPTH_101010:
6751 case COLOR_DEPTH_121212:
6753 case COLOR_DEPTH_141414:
6755 case COLOR_DEPTH_161616:
6763 static int dm_encoder_helper_atomic_check(struct drm_encoder *encoder,
6764 struct drm_crtc_state *crtc_state,
6765 struct drm_connector_state *conn_state)
6767 struct drm_atomic_state *state = crtc_state->state;
6768 struct drm_connector *connector = conn_state->connector;
6769 struct amdgpu_dm_connector *aconnector = to_amdgpu_dm_connector(connector);
6770 struct dm_connector_state *dm_new_connector_state = to_dm_connector_state(conn_state);
6771 const struct drm_display_mode *adjusted_mode = &crtc_state->adjusted_mode;
6772 struct drm_dp_mst_topology_mgr *mst_mgr;
6773 struct drm_dp_mst_port *mst_port;
6774 struct drm_dp_mst_topology_state *mst_state;
6775 enum dc_color_depth color_depth;
6777 bool is_y420 = false;
6779 if (!aconnector->mst_output_port || !aconnector->dc_sink)
6782 mst_port = aconnector->mst_output_port;
6783 mst_mgr = &aconnector->mst_root->mst_mgr;
6785 if (!crtc_state->connectors_changed && !crtc_state->mode_changed)
6788 mst_state = drm_atomic_get_mst_topology_state(state, mst_mgr);
6789 if (IS_ERR(mst_state))
6790 return PTR_ERR(mst_state);
6792 if (!mst_state->pbn_div)
6793 mst_state->pbn_div = dm_mst_get_pbn_divider(aconnector->mst_root->dc_link);
6795 if (!state->duplicated) {
6796 int max_bpc = conn_state->max_requested_bpc;
6797 is_y420 = drm_mode_is_420_also(&connector->display_info, adjusted_mode) &&
6798 aconnector->force_yuv420_output;
6799 color_depth = convert_color_depth_from_display_info(connector,
6802 bpp = convert_dc_color_depth_into_bpc(color_depth) * 3;
6803 clock = adjusted_mode->clock;
6804 dm_new_connector_state->pbn = drm_dp_calc_pbn_mode(clock, bpp, false);
6807 dm_new_connector_state->vcpi_slots =
6808 drm_dp_atomic_find_time_slots(state, mst_mgr, mst_port,
6809 dm_new_connector_state->pbn);
6810 if (dm_new_connector_state->vcpi_slots < 0) {
6811 DRM_DEBUG_ATOMIC("failed finding vcpi slots: %d\n", (int)dm_new_connector_state->vcpi_slots);
6812 return dm_new_connector_state->vcpi_slots;
6817 const struct drm_encoder_helper_funcs amdgpu_dm_encoder_helper_funcs = {
6818 .disable = dm_encoder_helper_disable,
6819 .atomic_check = dm_encoder_helper_atomic_check
6822 static int dm_update_mst_vcpi_slots_for_dsc(struct drm_atomic_state *state,
6823 struct dc_state *dc_state,
6824 struct dsc_mst_fairness_vars *vars)
6826 struct dc_stream_state *stream = NULL;
6827 struct drm_connector *connector;
6828 struct drm_connector_state *new_con_state;
6829 struct amdgpu_dm_connector *aconnector;
6830 struct dm_connector_state *dm_conn_state;
6832 int vcpi, pbn_div, pbn, slot_num = 0;
6834 for_each_new_connector_in_state(state, connector, new_con_state, i) {
6836 aconnector = to_amdgpu_dm_connector(connector);
6838 if (!aconnector->mst_output_port)
6841 if (!new_con_state || !new_con_state->crtc)
6844 dm_conn_state = to_dm_connector_state(new_con_state);
6846 for (j = 0; j < dc_state->stream_count; j++) {
6847 stream = dc_state->streams[j];
6851 if ((struct amdgpu_dm_connector *)stream->dm_stream_context == aconnector)
6860 pbn_div = dm_mst_get_pbn_divider(stream->link);
6861 /* pbn is calculated by compute_mst_dsc_configs_for_state*/
6862 for (j = 0; j < dc_state->stream_count; j++) {
6863 if (vars[j].aconnector == aconnector) {
6869 if (j == dc_state->stream_count)
6872 slot_num = DIV_ROUND_UP(pbn, pbn_div);
6874 if (stream->timing.flags.DSC != 1) {
6875 dm_conn_state->pbn = pbn;
6876 dm_conn_state->vcpi_slots = slot_num;
6878 ret = drm_dp_mst_atomic_enable_dsc(state, aconnector->mst_output_port,
6879 dm_conn_state->pbn, false);
6886 vcpi = drm_dp_mst_atomic_enable_dsc(state, aconnector->mst_output_port, pbn, true);
6890 dm_conn_state->pbn = pbn;
6891 dm_conn_state->vcpi_slots = vcpi;
6896 static int to_drm_connector_type(enum signal_type st)
6899 case SIGNAL_TYPE_HDMI_TYPE_A:
6900 return DRM_MODE_CONNECTOR_HDMIA;
6901 case SIGNAL_TYPE_EDP:
6902 return DRM_MODE_CONNECTOR_eDP;
6903 case SIGNAL_TYPE_LVDS:
6904 return DRM_MODE_CONNECTOR_LVDS;
6905 case SIGNAL_TYPE_RGB:
6906 return DRM_MODE_CONNECTOR_VGA;
6907 case SIGNAL_TYPE_DISPLAY_PORT:
6908 case SIGNAL_TYPE_DISPLAY_PORT_MST:
6909 return DRM_MODE_CONNECTOR_DisplayPort;
6910 case SIGNAL_TYPE_DVI_DUAL_LINK:
6911 case SIGNAL_TYPE_DVI_SINGLE_LINK:
6912 return DRM_MODE_CONNECTOR_DVID;
6913 case SIGNAL_TYPE_VIRTUAL:
6914 return DRM_MODE_CONNECTOR_VIRTUAL;
6917 return DRM_MODE_CONNECTOR_Unknown;
6921 static struct drm_encoder *amdgpu_dm_connector_to_encoder(struct drm_connector *connector)
6923 struct drm_encoder *encoder;
6925 /* There is only one encoder per connector */
6926 drm_connector_for_each_possible_encoder(connector, encoder)
6932 static void amdgpu_dm_get_native_mode(struct drm_connector *connector)
6934 struct drm_encoder *encoder;
6935 struct amdgpu_encoder *amdgpu_encoder;
6937 encoder = amdgpu_dm_connector_to_encoder(connector);
6939 if (encoder == NULL)
6942 amdgpu_encoder = to_amdgpu_encoder(encoder);
6944 amdgpu_encoder->native_mode.clock = 0;
6946 if (!list_empty(&connector->probed_modes)) {
6947 struct drm_display_mode *preferred_mode = NULL;
6949 list_for_each_entry(preferred_mode,
6950 &connector->probed_modes,
6952 if (preferred_mode->type & DRM_MODE_TYPE_PREFERRED)
6953 amdgpu_encoder->native_mode = *preferred_mode;
6961 static struct drm_display_mode *
6962 amdgpu_dm_create_common_mode(struct drm_encoder *encoder,
6964 int hdisplay, int vdisplay)
6966 struct drm_device *dev = encoder->dev;
6967 struct amdgpu_encoder *amdgpu_encoder = to_amdgpu_encoder(encoder);
6968 struct drm_display_mode *mode = NULL;
6969 struct drm_display_mode *native_mode = &amdgpu_encoder->native_mode;
6971 mode = drm_mode_duplicate(dev, native_mode);
6976 mode->hdisplay = hdisplay;
6977 mode->vdisplay = vdisplay;
6978 mode->type &= ~DRM_MODE_TYPE_PREFERRED;
6979 strscpy(mode->name, name, DRM_DISPLAY_MODE_LEN);
6985 static void amdgpu_dm_connector_add_common_modes(struct drm_encoder *encoder,
6986 struct drm_connector *connector)
6988 struct amdgpu_encoder *amdgpu_encoder = to_amdgpu_encoder(encoder);
6989 struct drm_display_mode *mode = NULL;
6990 struct drm_display_mode *native_mode = &amdgpu_encoder->native_mode;
6991 struct amdgpu_dm_connector *amdgpu_dm_connector =
6992 to_amdgpu_dm_connector(connector);
6996 char name[DRM_DISPLAY_MODE_LEN];
6999 } common_modes[] = {
7000 { "640x480", 640, 480},
7001 { "800x600", 800, 600},
7002 { "1024x768", 1024, 768},
7003 { "1280x720", 1280, 720},
7004 { "1280x800", 1280, 800},
7005 {"1280x1024", 1280, 1024},
7006 { "1440x900", 1440, 900},
7007 {"1680x1050", 1680, 1050},
7008 {"1600x1200", 1600, 1200},
7009 {"1920x1080", 1920, 1080},
7010 {"1920x1200", 1920, 1200}
7013 n = ARRAY_SIZE(common_modes);
7015 for (i = 0; i < n; i++) {
7016 struct drm_display_mode *curmode = NULL;
7017 bool mode_existed = false;
7019 if (common_modes[i].w > native_mode->hdisplay ||
7020 common_modes[i].h > native_mode->vdisplay ||
7021 (common_modes[i].w == native_mode->hdisplay &&
7022 common_modes[i].h == native_mode->vdisplay))
7025 list_for_each_entry(curmode, &connector->probed_modes, head) {
7026 if (common_modes[i].w == curmode->hdisplay &&
7027 common_modes[i].h == curmode->vdisplay) {
7028 mode_existed = true;
7036 mode = amdgpu_dm_create_common_mode(encoder,
7037 common_modes[i].name, common_modes[i].w,
7042 drm_mode_probed_add(connector, mode);
7043 amdgpu_dm_connector->num_modes++;
7047 static void amdgpu_set_panel_orientation(struct drm_connector *connector)
7049 struct drm_encoder *encoder;
7050 struct amdgpu_encoder *amdgpu_encoder;
7051 const struct drm_display_mode *native_mode;
7053 if (connector->connector_type != DRM_MODE_CONNECTOR_eDP &&
7054 connector->connector_type != DRM_MODE_CONNECTOR_LVDS)
7057 mutex_lock(&connector->dev->mode_config.mutex);
7058 amdgpu_dm_connector_get_modes(connector);
7059 mutex_unlock(&connector->dev->mode_config.mutex);
7061 encoder = amdgpu_dm_connector_to_encoder(connector);
7065 amdgpu_encoder = to_amdgpu_encoder(encoder);
7067 native_mode = &amdgpu_encoder->native_mode;
7068 if (native_mode->hdisplay == 0 || native_mode->vdisplay == 0)
7071 drm_connector_set_panel_orientation_with_quirk(connector,
7072 DRM_MODE_PANEL_ORIENTATION_UNKNOWN,
7073 native_mode->hdisplay,
7074 native_mode->vdisplay);
7077 static void amdgpu_dm_connector_ddc_get_modes(struct drm_connector *connector,
7080 struct amdgpu_dm_connector *amdgpu_dm_connector =
7081 to_amdgpu_dm_connector(connector);
7084 /* empty probed_modes */
7085 INIT_LIST_HEAD(&connector->probed_modes);
7086 amdgpu_dm_connector->num_modes =
7087 drm_add_edid_modes(connector, edid);
7089 /* sorting the probed modes before calling function
7090 * amdgpu_dm_get_native_mode() since EDID can have
7091 * more than one preferred mode. The modes that are
7092 * later in the probed mode list could be of higher
7093 * and preferred resolution. For example, 3840x2160
7094 * resolution in base EDID preferred timing and 4096x2160
7095 * preferred resolution in DID extension block later.
7097 drm_mode_sort(&connector->probed_modes);
7098 amdgpu_dm_get_native_mode(connector);
7100 /* Freesync capabilities are reset by calling
7101 * drm_add_edid_modes() and need to be
7104 amdgpu_dm_update_freesync_caps(connector, edid);
7106 amdgpu_dm_connector->num_modes = 0;
7110 static bool is_duplicate_mode(struct amdgpu_dm_connector *aconnector,
7111 struct drm_display_mode *mode)
7113 struct drm_display_mode *m;
7115 list_for_each_entry (m, &aconnector->base.probed_modes, head) {
7116 if (drm_mode_equal(m, mode))
7123 static uint add_fs_modes(struct amdgpu_dm_connector *aconnector)
7125 const struct drm_display_mode *m;
7126 struct drm_display_mode *new_mode;
7128 u32 new_modes_count = 0;
7130 /* Standard FPS values
7139 * 60 - Commonly used
7140 * 48,72,96,120 - Multiples of 24
7142 static const u32 common_rates[] = {
7143 23976, 24000, 25000, 29970, 30000,
7144 48000, 50000, 60000, 72000, 96000, 120000
7148 * Find mode with highest refresh rate with the same resolution
7149 * as the preferred mode. Some monitors report a preferred mode
7150 * with lower resolution than the highest refresh rate supported.
7153 m = get_highest_refresh_rate_mode(aconnector, true);
7157 for (i = 0; i < ARRAY_SIZE(common_rates); i++) {
7158 u64 target_vtotal, target_vtotal_diff;
7161 if (drm_mode_vrefresh(m) * 1000 < common_rates[i])
7164 if (common_rates[i] < aconnector->min_vfreq * 1000 ||
7165 common_rates[i] > aconnector->max_vfreq * 1000)
7168 num = (unsigned long long)m->clock * 1000 * 1000;
7169 den = common_rates[i] * (unsigned long long)m->htotal;
7170 target_vtotal = div_u64(num, den);
7171 target_vtotal_diff = target_vtotal - m->vtotal;
7173 /* Check for illegal modes */
7174 if (m->vsync_start + target_vtotal_diff < m->vdisplay ||
7175 m->vsync_end + target_vtotal_diff < m->vsync_start ||
7176 m->vtotal + target_vtotal_diff < m->vsync_end)
7179 new_mode = drm_mode_duplicate(aconnector->base.dev, m);
7183 new_mode->vtotal += (u16)target_vtotal_diff;
7184 new_mode->vsync_start += (u16)target_vtotal_diff;
7185 new_mode->vsync_end += (u16)target_vtotal_diff;
7186 new_mode->type &= ~DRM_MODE_TYPE_PREFERRED;
7187 new_mode->type |= DRM_MODE_TYPE_DRIVER;
7189 if (!is_duplicate_mode(aconnector, new_mode)) {
7190 drm_mode_probed_add(&aconnector->base, new_mode);
7191 new_modes_count += 1;
7193 drm_mode_destroy(aconnector->base.dev, new_mode);
7196 return new_modes_count;
7199 static void amdgpu_dm_connector_add_freesync_modes(struct drm_connector *connector,
7202 struct amdgpu_dm_connector *amdgpu_dm_connector =
7203 to_amdgpu_dm_connector(connector);
7205 if (!(amdgpu_freesync_vid_mode && edid))
7208 if (amdgpu_dm_connector->max_vfreq - amdgpu_dm_connector->min_vfreq > 10)
7209 amdgpu_dm_connector->num_modes +=
7210 add_fs_modes(amdgpu_dm_connector);
7213 static int amdgpu_dm_connector_get_modes(struct drm_connector *connector)
7215 struct amdgpu_dm_connector *amdgpu_dm_connector =
7216 to_amdgpu_dm_connector(connector);
7217 struct drm_encoder *encoder;
7218 struct edid *edid = amdgpu_dm_connector->edid;
7219 struct dc_link_settings *verified_link_cap =
7220 &amdgpu_dm_connector->dc_link->verified_link_cap;
7221 const struct dc *dc = amdgpu_dm_connector->dc_link->dc;
7223 encoder = amdgpu_dm_connector_to_encoder(connector);
7225 if (!drm_edid_is_valid(edid)) {
7226 amdgpu_dm_connector->num_modes =
7227 drm_add_modes_noedid(connector, 640, 480);
7228 if (dc->link_srv->dp_get_encoding_format(verified_link_cap) == DP_128b_132b_ENCODING)
7229 amdgpu_dm_connector->num_modes +=
7230 drm_add_modes_noedid(connector, 1920, 1080);
7232 amdgpu_dm_connector_ddc_get_modes(connector, edid);
7233 amdgpu_dm_connector_add_common_modes(encoder, connector);
7234 amdgpu_dm_connector_add_freesync_modes(connector, edid);
7236 amdgpu_dm_fbc_init(connector);
7238 return amdgpu_dm_connector->num_modes;
7241 void amdgpu_dm_connector_init_helper(struct amdgpu_display_manager *dm,
7242 struct amdgpu_dm_connector *aconnector,
7244 struct dc_link *link,
7247 struct amdgpu_device *adev = drm_to_adev(dm->ddev);
7250 * Some of the properties below require access to state, like bpc.
7251 * Allocate some default initial connector state with our reset helper.
7253 if (aconnector->base.funcs->reset)
7254 aconnector->base.funcs->reset(&aconnector->base);
7256 aconnector->connector_id = link_index;
7257 aconnector->bl_idx = -1;
7258 aconnector->dc_link = link;
7259 aconnector->base.interlace_allowed = false;
7260 aconnector->base.doublescan_allowed = false;
7261 aconnector->base.stereo_allowed = false;
7262 aconnector->base.dpms = DRM_MODE_DPMS_OFF;
7263 aconnector->hpd.hpd = AMDGPU_HPD_NONE; /* not used */
7264 aconnector->audio_inst = -1;
7265 aconnector->pack_sdp_v1_3 = false;
7266 aconnector->as_type = ADAPTIVE_SYNC_TYPE_NONE;
7267 memset(&aconnector->vsdb_info, 0, sizeof(aconnector->vsdb_info));
7268 mutex_init(&aconnector->hpd_lock);
7271 * configure support HPD hot plug connector_>polled default value is 0
7272 * which means HPD hot plug not supported
7274 switch (connector_type) {
7275 case DRM_MODE_CONNECTOR_HDMIA:
7276 aconnector->base.polled = DRM_CONNECTOR_POLL_HPD;
7277 aconnector->base.ycbcr_420_allowed =
7278 link->link_enc->features.hdmi_ycbcr420_supported ? true : false;
7280 case DRM_MODE_CONNECTOR_DisplayPort:
7281 aconnector->base.polled = DRM_CONNECTOR_POLL_HPD;
7282 link->link_enc = link_enc_cfg_get_link_enc(link);
7283 ASSERT(link->link_enc);
7285 aconnector->base.ycbcr_420_allowed =
7286 link->link_enc->features.dp_ycbcr420_supported ? true : false;
7288 case DRM_MODE_CONNECTOR_DVID:
7289 aconnector->base.polled = DRM_CONNECTOR_POLL_HPD;
7295 drm_object_attach_property(&aconnector->base.base,
7296 dm->ddev->mode_config.scaling_mode_property,
7297 DRM_MODE_SCALE_NONE);
7299 drm_object_attach_property(&aconnector->base.base,
7300 adev->mode_info.underscan_property,
7302 drm_object_attach_property(&aconnector->base.base,
7303 adev->mode_info.underscan_hborder_property,
7305 drm_object_attach_property(&aconnector->base.base,
7306 adev->mode_info.underscan_vborder_property,
7309 if (!aconnector->mst_root)
7310 drm_connector_attach_max_bpc_property(&aconnector->base, 8, 16);
7312 aconnector->base.state->max_bpc = 16;
7313 aconnector->base.state->max_requested_bpc = aconnector->base.state->max_bpc;
7315 if (connector_type == DRM_MODE_CONNECTOR_eDP &&
7316 (dc_is_dmcu_initialized(adev->dm.dc) || adev->dm.dc->ctx->dmub_srv)) {
7317 drm_object_attach_property(&aconnector->base.base,
7318 adev->mode_info.abm_level_property, 0);
7321 if (connector_type == DRM_MODE_CONNECTOR_HDMIA ||
7322 connector_type == DRM_MODE_CONNECTOR_DisplayPort ||
7323 connector_type == DRM_MODE_CONNECTOR_eDP) {
7324 drm_connector_attach_hdr_output_metadata_property(&aconnector->base);
7326 if (!aconnector->mst_root)
7327 drm_connector_attach_vrr_capable_property(&aconnector->base);
7329 if (adev->dm.hdcp_workqueue)
7330 drm_connector_attach_content_protection_property(&aconnector->base, true);
7334 static int amdgpu_dm_i2c_xfer(struct i2c_adapter *i2c_adap,
7335 struct i2c_msg *msgs, int num)
7337 struct amdgpu_i2c_adapter *i2c = i2c_get_adapdata(i2c_adap);
7338 struct ddc_service *ddc_service = i2c->ddc_service;
7339 struct i2c_command cmd;
7343 cmd.payloads = kcalloc(num, sizeof(struct i2c_payload), GFP_KERNEL);
7348 cmd.number_of_payloads = num;
7349 cmd.engine = I2C_COMMAND_ENGINE_DEFAULT;
7352 for (i = 0; i < num; i++) {
7353 cmd.payloads[i].write = !(msgs[i].flags & I2C_M_RD);
7354 cmd.payloads[i].address = msgs[i].addr;
7355 cmd.payloads[i].length = msgs[i].len;
7356 cmd.payloads[i].data = msgs[i].buf;
7360 ddc_service->ctx->dc,
7361 ddc_service->link->link_index,
7365 kfree(cmd.payloads);
7369 static u32 amdgpu_dm_i2c_func(struct i2c_adapter *adap)
7371 return I2C_FUNC_I2C | I2C_FUNC_SMBUS_EMUL;
7374 static const struct i2c_algorithm amdgpu_dm_i2c_algo = {
7375 .master_xfer = amdgpu_dm_i2c_xfer,
7376 .functionality = amdgpu_dm_i2c_func,
7379 static struct amdgpu_i2c_adapter *
7380 create_i2c(struct ddc_service *ddc_service,
7384 struct amdgpu_device *adev = ddc_service->ctx->driver_context;
7385 struct amdgpu_i2c_adapter *i2c;
7387 i2c = kzalloc(sizeof(struct amdgpu_i2c_adapter), GFP_KERNEL);
7390 i2c->base.owner = THIS_MODULE;
7391 i2c->base.class = I2C_CLASS_DDC;
7392 i2c->base.dev.parent = &adev->pdev->dev;
7393 i2c->base.algo = &amdgpu_dm_i2c_algo;
7394 snprintf(i2c->base.name, sizeof(i2c->base.name), "AMDGPU DM i2c hw bus %d", link_index);
7395 i2c_set_adapdata(&i2c->base, i2c);
7396 i2c->ddc_service = ddc_service;
7403 * Note: this function assumes that dc_link_detect() was called for the
7404 * dc_link which will be represented by this aconnector.
7406 static int amdgpu_dm_connector_init(struct amdgpu_display_manager *dm,
7407 struct amdgpu_dm_connector *aconnector,
7409 struct amdgpu_encoder *aencoder)
7413 struct dc *dc = dm->dc;
7414 struct dc_link *link = dc_get_link_at_index(dc, link_index);
7415 struct amdgpu_i2c_adapter *i2c;
7417 link->priv = aconnector;
7419 DRM_DEBUG_DRIVER("%s()\n", __func__);
7421 i2c = create_i2c(link->ddc, link->link_index, &res);
7423 DRM_ERROR("Failed to create i2c adapter data\n");
7427 aconnector->i2c = i2c;
7428 res = i2c_add_adapter(&i2c->base);
7431 DRM_ERROR("Failed to register hw i2c %d\n", link->link_index);
7435 connector_type = to_drm_connector_type(link->connector_signal);
7437 res = drm_connector_init_with_ddc(
7440 &amdgpu_dm_connector_funcs,
7445 DRM_ERROR("connector_init failed\n");
7446 aconnector->connector_id = -1;
7450 drm_connector_helper_add(
7452 &amdgpu_dm_connector_helper_funcs);
7454 amdgpu_dm_connector_init_helper(
7461 drm_connector_attach_encoder(
7462 &aconnector->base, &aencoder->base);
7464 if (connector_type == DRM_MODE_CONNECTOR_DisplayPort
7465 || connector_type == DRM_MODE_CONNECTOR_eDP)
7466 amdgpu_dm_initialize_dp_connector(dm, aconnector, link->link_index);
7471 aconnector->i2c = NULL;
7476 int amdgpu_dm_get_encoder_crtc_mask(struct amdgpu_device *adev)
7478 switch (adev->mode_info.num_crtc) {
7495 static int amdgpu_dm_encoder_init(struct drm_device *dev,
7496 struct amdgpu_encoder *aencoder,
7497 uint32_t link_index)
7499 struct amdgpu_device *adev = drm_to_adev(dev);
7501 int res = drm_encoder_init(dev,
7503 &amdgpu_dm_encoder_funcs,
7504 DRM_MODE_ENCODER_TMDS,
7507 aencoder->base.possible_crtcs = amdgpu_dm_get_encoder_crtc_mask(adev);
7510 aencoder->encoder_id = link_index;
7512 aencoder->encoder_id = -1;
7514 drm_encoder_helper_add(&aencoder->base, &amdgpu_dm_encoder_helper_funcs);
7519 static void manage_dm_interrupts(struct amdgpu_device *adev,
7520 struct amdgpu_crtc *acrtc,
7524 * We have no guarantee that the frontend index maps to the same
7525 * backend index - some even map to more than one.
7527 * TODO: Use a different interrupt or check DC itself for the mapping.
7530 amdgpu_display_crtc_idx_to_irq_type(
7535 drm_crtc_vblank_on(&acrtc->base);
7538 &adev->pageflip_irq,
7540 #if defined(CONFIG_DRM_AMD_SECURE_DISPLAY)
7547 #if defined(CONFIG_DRM_AMD_SECURE_DISPLAY)
7555 &adev->pageflip_irq,
7557 drm_crtc_vblank_off(&acrtc->base);
7561 static void dm_update_pflip_irq_state(struct amdgpu_device *adev,
7562 struct amdgpu_crtc *acrtc)
7565 amdgpu_display_crtc_idx_to_irq_type(adev, acrtc->crtc_id);
7568 * This reads the current state for the IRQ and force reapplies
7569 * the setting to hardware.
7571 amdgpu_irq_update(adev, &adev->pageflip_irq, irq_type);
7575 is_scaling_state_different(const struct dm_connector_state *dm_state,
7576 const struct dm_connector_state *old_dm_state)
7578 if (dm_state->scaling != old_dm_state->scaling)
7580 if (!dm_state->underscan_enable && old_dm_state->underscan_enable) {
7581 if (old_dm_state->underscan_hborder != 0 && old_dm_state->underscan_vborder != 0)
7583 } else if (dm_state->underscan_enable && !old_dm_state->underscan_enable) {
7584 if (dm_state->underscan_hborder != 0 && dm_state->underscan_vborder != 0)
7586 } else if (dm_state->underscan_hborder != old_dm_state->underscan_hborder ||
7587 dm_state->underscan_vborder != old_dm_state->underscan_vborder)
7592 static bool is_content_protection_different(struct drm_crtc_state *new_crtc_state,
7593 struct drm_crtc_state *old_crtc_state,
7594 struct drm_connector_state *new_conn_state,
7595 struct drm_connector_state *old_conn_state,
7596 const struct drm_connector *connector,
7597 struct hdcp_workqueue *hdcp_w)
7599 struct amdgpu_dm_connector *aconnector = to_amdgpu_dm_connector(connector);
7600 struct dm_connector_state *dm_con_state = to_dm_connector_state(connector->state);
7602 pr_debug("[HDCP_DM] connector->index: %x connect_status: %x dpms: %x\n",
7603 connector->index, connector->status, connector->dpms);
7604 pr_debug("[HDCP_DM] state protection old: %x new: %x\n",
7605 old_conn_state->content_protection, new_conn_state->content_protection);
7608 pr_debug("[HDCP_DM] old crtc en: %x a: %x m: %x a-chg: %x c-chg: %x\n",
7609 old_crtc_state->enable,
7610 old_crtc_state->active,
7611 old_crtc_state->mode_changed,
7612 old_crtc_state->active_changed,
7613 old_crtc_state->connectors_changed);
7616 pr_debug("[HDCP_DM] NEW crtc en: %x a: %x m: %x a-chg: %x c-chg: %x\n",
7617 new_crtc_state->enable,
7618 new_crtc_state->active,
7619 new_crtc_state->mode_changed,
7620 new_crtc_state->active_changed,
7621 new_crtc_state->connectors_changed);
7623 /* hdcp content type change */
7624 if (old_conn_state->hdcp_content_type != new_conn_state->hdcp_content_type &&
7625 new_conn_state->content_protection != DRM_MODE_CONTENT_PROTECTION_UNDESIRED) {
7626 new_conn_state->content_protection = DRM_MODE_CONTENT_PROTECTION_DESIRED;
7627 pr_debug("[HDCP_DM] Type0/1 change %s :true\n", __func__);
7631 /* CP is being re enabled, ignore this */
7632 if (old_conn_state->content_protection == DRM_MODE_CONTENT_PROTECTION_ENABLED &&
7633 new_conn_state->content_protection == DRM_MODE_CONTENT_PROTECTION_DESIRED) {
7634 if (new_crtc_state && new_crtc_state->mode_changed) {
7635 new_conn_state->content_protection = DRM_MODE_CONTENT_PROTECTION_DESIRED;
7636 pr_debug("[HDCP_DM] ENABLED->DESIRED & mode_changed %s :true\n", __func__);
7639 new_conn_state->content_protection = DRM_MODE_CONTENT_PROTECTION_ENABLED;
7640 pr_debug("[HDCP_DM] ENABLED -> DESIRED %s :false\n", __func__);
7644 /* S3 resume case, since old state will always be 0 (UNDESIRED) and the restored state will be ENABLED
7646 * Handles: UNDESIRED -> ENABLED
7648 if (old_conn_state->content_protection == DRM_MODE_CONTENT_PROTECTION_UNDESIRED &&
7649 new_conn_state->content_protection == DRM_MODE_CONTENT_PROTECTION_ENABLED)
7650 new_conn_state->content_protection = DRM_MODE_CONTENT_PROTECTION_DESIRED;
7652 /* Stream removed and re-enabled
7654 * Can sometimes overlap with the HPD case,
7655 * thus set update_hdcp to false to avoid
7656 * setting HDCP multiple times.
7658 * Handles: DESIRED -> DESIRED (Special case)
7660 if (!(old_conn_state->crtc && old_conn_state->crtc->enabled) &&
7661 new_conn_state->crtc && new_conn_state->crtc->enabled &&
7662 connector->state->content_protection == DRM_MODE_CONTENT_PROTECTION_DESIRED) {
7663 dm_con_state->update_hdcp = false;
7664 pr_debug("[HDCP_DM] DESIRED->DESIRED (Stream removed and re-enabled) %s :true\n",
7669 /* Hot-plug, headless s3, dpms
7671 * Only start HDCP if the display is connected/enabled.
7672 * update_hdcp flag will be set to false until the next
7675 * Handles: DESIRED -> DESIRED (Special case)
7677 if (dm_con_state->update_hdcp &&
7678 new_conn_state->content_protection == DRM_MODE_CONTENT_PROTECTION_DESIRED &&
7679 connector->dpms == DRM_MODE_DPMS_ON && aconnector->dc_sink != NULL) {
7680 dm_con_state->update_hdcp = false;
7681 pr_debug("[HDCP_DM] DESIRED->DESIRED (Hot-plug, headless s3, dpms) %s :true\n",
7686 if (old_conn_state->content_protection == new_conn_state->content_protection) {
7687 if (new_conn_state->content_protection >= DRM_MODE_CONTENT_PROTECTION_DESIRED) {
7688 if (new_crtc_state && new_crtc_state->mode_changed) {
7689 pr_debug("[HDCP_DM] DESIRED->DESIRED or ENABLE->ENABLE mode_change %s :true\n",
7693 pr_debug("[HDCP_DM] DESIRED->DESIRED & ENABLE->ENABLE %s :false\n",
7698 pr_debug("[HDCP_DM] UNDESIRED->UNDESIRED %s :false\n", __func__);
7702 if (new_conn_state->content_protection != DRM_MODE_CONTENT_PROTECTION_ENABLED) {
7703 pr_debug("[HDCP_DM] UNDESIRED->DESIRED or DESIRED->UNDESIRED or ENABLED->UNDESIRED %s :true\n",
7708 pr_debug("[HDCP_DM] DESIRED->ENABLED %s :false\n", __func__);
7712 static void remove_stream(struct amdgpu_device *adev,
7713 struct amdgpu_crtc *acrtc,
7714 struct dc_stream_state *stream)
7716 /* this is the update mode case */
7718 acrtc->otg_inst = -1;
7719 acrtc->enabled = false;
7722 static void prepare_flip_isr(struct amdgpu_crtc *acrtc)
7725 assert_spin_locked(&acrtc->base.dev->event_lock);
7726 WARN_ON(acrtc->event);
7728 acrtc->event = acrtc->base.state->event;
7730 /* Set the flip status */
7731 acrtc->pflip_status = AMDGPU_FLIP_SUBMITTED;
7733 /* Mark this event as consumed */
7734 acrtc->base.state->event = NULL;
7736 DC_LOG_PFLIP("crtc:%d, pflip_stat:AMDGPU_FLIP_SUBMITTED\n",
7740 static void update_freesync_state_on_stream(
7741 struct amdgpu_display_manager *dm,
7742 struct dm_crtc_state *new_crtc_state,
7743 struct dc_stream_state *new_stream,
7744 struct dc_plane_state *surface,
7745 u32 flip_timestamp_in_us)
7747 struct mod_vrr_params vrr_params;
7748 struct dc_info_packet vrr_infopacket = {0};
7749 struct amdgpu_device *adev = dm->adev;
7750 struct amdgpu_crtc *acrtc = to_amdgpu_crtc(new_crtc_state->base.crtc);
7751 unsigned long flags;
7752 bool pack_sdp_v1_3 = false;
7753 struct amdgpu_dm_connector *aconn;
7754 enum vrr_packet_type packet_type = PACKET_TYPE_VRR;
7760 * TODO: Determine why min/max totals and vrefresh can be 0 here.
7761 * For now it's sufficient to just guard against these conditions.
7764 if (!new_stream->timing.h_total || !new_stream->timing.v_total)
7767 spin_lock_irqsave(&adev_to_drm(adev)->event_lock, flags);
7768 vrr_params = acrtc->dm_irq_params.vrr_params;
7771 mod_freesync_handle_preflip(
7772 dm->freesync_module,
7775 flip_timestamp_in_us,
7778 if (adev->family < AMDGPU_FAMILY_AI &&
7779 amdgpu_dm_crtc_vrr_active(new_crtc_state)) {
7780 mod_freesync_handle_v_update(dm->freesync_module,
7781 new_stream, &vrr_params);
7783 /* Need to call this before the frame ends. */
7784 dc_stream_adjust_vmin_vmax(dm->dc,
7785 new_crtc_state->stream,
7786 &vrr_params.adjust);
7790 aconn = (struct amdgpu_dm_connector *)new_stream->dm_stream_context;
7792 if (aconn && aconn->as_type == FREESYNC_TYPE_PCON_IN_WHITELIST) {
7793 pack_sdp_v1_3 = aconn->pack_sdp_v1_3;
7795 if (aconn->vsdb_info.amd_vsdb_version == 1)
7796 packet_type = PACKET_TYPE_FS_V1;
7797 else if (aconn->vsdb_info.amd_vsdb_version == 2)
7798 packet_type = PACKET_TYPE_FS_V2;
7799 else if (aconn->vsdb_info.amd_vsdb_version == 3)
7800 packet_type = PACKET_TYPE_FS_V3;
7802 mod_build_adaptive_sync_infopacket(new_stream, aconn->as_type, NULL,
7803 &new_stream->adaptive_sync_infopacket);
7806 mod_freesync_build_vrr_infopacket(
7807 dm->freesync_module,
7811 TRANSFER_FUNC_UNKNOWN,
7815 new_crtc_state->freesync_vrr_info_changed |=
7816 (memcmp(&new_crtc_state->vrr_infopacket,
7818 sizeof(vrr_infopacket)) != 0);
7820 acrtc->dm_irq_params.vrr_params = vrr_params;
7821 new_crtc_state->vrr_infopacket = vrr_infopacket;
7823 new_stream->vrr_infopacket = vrr_infopacket;
7824 new_stream->allow_freesync = mod_freesync_get_freesync_enabled(&vrr_params);
7826 if (new_crtc_state->freesync_vrr_info_changed)
7827 DRM_DEBUG_KMS("VRR packet update: crtc=%u enabled=%d state=%d",
7828 new_crtc_state->base.crtc->base.id,
7829 (int)new_crtc_state->base.vrr_enabled,
7830 (int)vrr_params.state);
7832 spin_unlock_irqrestore(&adev_to_drm(adev)->event_lock, flags);
7835 static void update_stream_irq_parameters(
7836 struct amdgpu_display_manager *dm,
7837 struct dm_crtc_state *new_crtc_state)
7839 struct dc_stream_state *new_stream = new_crtc_state->stream;
7840 struct mod_vrr_params vrr_params;
7841 struct mod_freesync_config config = new_crtc_state->freesync_config;
7842 struct amdgpu_device *adev = dm->adev;
7843 struct amdgpu_crtc *acrtc = to_amdgpu_crtc(new_crtc_state->base.crtc);
7844 unsigned long flags;
7850 * TODO: Determine why min/max totals and vrefresh can be 0 here.
7851 * For now it's sufficient to just guard against these conditions.
7853 if (!new_stream->timing.h_total || !new_stream->timing.v_total)
7856 spin_lock_irqsave(&adev_to_drm(adev)->event_lock, flags);
7857 vrr_params = acrtc->dm_irq_params.vrr_params;
7859 if (new_crtc_state->vrr_supported &&
7860 config.min_refresh_in_uhz &&
7861 config.max_refresh_in_uhz) {
7863 * if freesync compatible mode was set, config.state will be set
7866 if (config.state == VRR_STATE_ACTIVE_FIXED && config.fixed_refresh_in_uhz &&
7867 (!drm_atomic_crtc_needs_modeset(&new_crtc_state->base) ||
7868 new_crtc_state->freesync_config.state == VRR_STATE_ACTIVE_FIXED)) {
7869 vrr_params.max_refresh_in_uhz = config.max_refresh_in_uhz;
7870 vrr_params.min_refresh_in_uhz = config.min_refresh_in_uhz;
7871 vrr_params.fixed_refresh_in_uhz = config.fixed_refresh_in_uhz;
7872 vrr_params.state = VRR_STATE_ACTIVE_FIXED;
7874 config.state = new_crtc_state->base.vrr_enabled ?
7875 VRR_STATE_ACTIVE_VARIABLE :
7879 config.state = VRR_STATE_UNSUPPORTED;
7882 mod_freesync_build_vrr_params(dm->freesync_module,
7884 &config, &vrr_params);
7886 new_crtc_state->freesync_config = config;
7887 /* Copy state for access from DM IRQ handler */
7888 acrtc->dm_irq_params.freesync_config = config;
7889 acrtc->dm_irq_params.active_planes = new_crtc_state->active_planes;
7890 acrtc->dm_irq_params.vrr_params = vrr_params;
7891 spin_unlock_irqrestore(&adev_to_drm(adev)->event_lock, flags);
7894 static void amdgpu_dm_handle_vrr_transition(struct dm_crtc_state *old_state,
7895 struct dm_crtc_state *new_state)
7897 bool old_vrr_active = amdgpu_dm_crtc_vrr_active(old_state);
7898 bool new_vrr_active = amdgpu_dm_crtc_vrr_active(new_state);
7900 if (!old_vrr_active && new_vrr_active) {
7901 /* Transition VRR inactive -> active:
7902 * While VRR is active, we must not disable vblank irq, as a
7903 * reenable after disable would compute bogus vblank/pflip
7904 * timestamps if it likely happened inside display front-porch.
7906 * We also need vupdate irq for the actual core vblank handling
7909 WARN_ON(amdgpu_dm_crtc_set_vupdate_irq(new_state->base.crtc, true) != 0);
7910 WARN_ON(drm_crtc_vblank_get(new_state->base.crtc) != 0);
7911 DRM_DEBUG_DRIVER("%s: crtc=%u VRR off->on: Get vblank ref\n",
7912 __func__, new_state->base.crtc->base.id);
7913 } else if (old_vrr_active && !new_vrr_active) {
7914 /* Transition VRR active -> inactive:
7915 * Allow vblank irq disable again for fixed refresh rate.
7917 WARN_ON(amdgpu_dm_crtc_set_vupdate_irq(new_state->base.crtc, false) != 0);
7918 drm_crtc_vblank_put(new_state->base.crtc);
7919 DRM_DEBUG_DRIVER("%s: crtc=%u VRR on->off: Drop vblank ref\n",
7920 __func__, new_state->base.crtc->base.id);
7924 static void amdgpu_dm_commit_cursors(struct drm_atomic_state *state)
7926 struct drm_plane *plane;
7927 struct drm_plane_state *old_plane_state;
7931 * TODO: Make this per-stream so we don't issue redundant updates for
7932 * commits with multiple streams.
7934 for_each_old_plane_in_state(state, plane, old_plane_state, i)
7935 if (plane->type == DRM_PLANE_TYPE_CURSOR)
7936 amdgpu_dm_plane_handle_cursor_update(plane, old_plane_state);
7939 static inline uint32_t get_mem_type(struct drm_framebuffer *fb)
7941 struct amdgpu_bo *abo = gem_to_amdgpu_bo(fb->obj[0]);
7943 return abo->tbo.resource ? abo->tbo.resource->mem_type : 0;
7946 static void amdgpu_dm_commit_planes(struct drm_atomic_state *state,
7947 struct dc_state *dc_state,
7948 struct drm_device *dev,
7949 struct amdgpu_display_manager *dm,
7950 struct drm_crtc *pcrtc,
7951 bool wait_for_vblank)
7954 u64 timestamp_ns = ktime_get_ns();
7955 struct drm_plane *plane;
7956 struct drm_plane_state *old_plane_state, *new_plane_state;
7957 struct amdgpu_crtc *acrtc_attach = to_amdgpu_crtc(pcrtc);
7958 struct drm_crtc_state *new_pcrtc_state =
7959 drm_atomic_get_new_crtc_state(state, pcrtc);
7960 struct dm_crtc_state *acrtc_state = to_dm_crtc_state(new_pcrtc_state);
7961 struct dm_crtc_state *dm_old_crtc_state =
7962 to_dm_crtc_state(drm_atomic_get_old_crtc_state(state, pcrtc));
7963 int planes_count = 0, vpos, hpos;
7964 unsigned long flags;
7965 u32 target_vblank, last_flip_vblank;
7966 bool vrr_active = amdgpu_dm_crtc_vrr_active(acrtc_state);
7967 bool cursor_update = false;
7968 bool pflip_present = false;
7969 bool dirty_rects_changed = false;
7971 struct dc_surface_update surface_updates[MAX_SURFACES];
7972 struct dc_plane_info plane_infos[MAX_SURFACES];
7973 struct dc_scaling_info scaling_infos[MAX_SURFACES];
7974 struct dc_flip_addrs flip_addrs[MAX_SURFACES];
7975 struct dc_stream_update stream_update;
7978 bundle = kzalloc(sizeof(*bundle), GFP_KERNEL);
7981 dm_error("Failed to allocate update bundle\n");
7986 * Disable the cursor first if we're disabling all the planes.
7987 * It'll remain on the screen after the planes are re-enabled
7990 if (acrtc_state->active_planes == 0)
7991 amdgpu_dm_commit_cursors(state);
7993 /* update planes when needed */
7994 for_each_oldnew_plane_in_state(state, plane, old_plane_state, new_plane_state, i) {
7995 struct drm_crtc *crtc = new_plane_state->crtc;
7996 struct drm_crtc_state *new_crtc_state;
7997 struct drm_framebuffer *fb = new_plane_state->fb;
7998 struct amdgpu_framebuffer *afb = (struct amdgpu_framebuffer *)fb;
7999 bool plane_needs_flip;
8000 struct dc_plane_state *dc_plane;
8001 struct dm_plane_state *dm_new_plane_state = to_dm_plane_state(new_plane_state);
8003 /* Cursor plane is handled after stream updates */
8004 if (plane->type == DRM_PLANE_TYPE_CURSOR) {
8005 if ((fb && crtc == pcrtc) ||
8006 (old_plane_state->fb && old_plane_state->crtc == pcrtc))
8007 cursor_update = true;
8012 if (!fb || !crtc || pcrtc != crtc)
8015 new_crtc_state = drm_atomic_get_new_crtc_state(state, crtc);
8016 if (!new_crtc_state->active)
8019 dc_plane = dm_new_plane_state->dc_state;
8023 bundle->surface_updates[planes_count].surface = dc_plane;
8024 if (new_pcrtc_state->color_mgmt_changed) {
8025 bundle->surface_updates[planes_count].gamma = dc_plane->gamma_correction;
8026 bundle->surface_updates[planes_count].in_transfer_func = dc_plane->in_transfer_func;
8027 bundle->surface_updates[planes_count].gamut_remap_matrix = &dc_plane->gamut_remap_matrix;
8030 amdgpu_dm_plane_fill_dc_scaling_info(dm->adev, new_plane_state,
8031 &bundle->scaling_infos[planes_count]);
8033 bundle->surface_updates[planes_count].scaling_info =
8034 &bundle->scaling_infos[planes_count];
8036 plane_needs_flip = old_plane_state->fb && new_plane_state->fb;
8038 pflip_present = pflip_present || plane_needs_flip;
8040 if (!plane_needs_flip) {
8045 fill_dc_plane_info_and_addr(
8046 dm->adev, new_plane_state,
8048 &bundle->plane_infos[planes_count],
8049 &bundle->flip_addrs[planes_count].address,
8050 afb->tmz_surface, false);
8052 drm_dbg_state(state->dev, "plane: id=%d dcc_en=%d\n",
8053 new_plane_state->plane->index,
8054 bundle->plane_infos[planes_count].dcc.enable);
8056 bundle->surface_updates[planes_count].plane_info =
8057 &bundle->plane_infos[planes_count];
8059 if (acrtc_state->stream->link->psr_settings.psr_feature_enabled) {
8060 fill_dc_dirty_rects(plane, old_plane_state,
8061 new_plane_state, new_crtc_state,
8062 &bundle->flip_addrs[planes_count],
8063 &dirty_rects_changed);
8066 * If the dirty regions changed, PSR-SU need to be disabled temporarily
8067 * and enabled it again after dirty regions are stable to avoid video glitch.
8068 * PSR-SU will be enabled in vblank_control_worker() if user pause the video
8069 * during the PSR-SU was disabled.
8071 if (acrtc_state->stream->link->psr_settings.psr_version >= DC_PSR_VERSION_SU_1 &&
8072 acrtc_attach->dm_irq_params.allow_psr_entry &&
8073 #ifdef CONFIG_DRM_AMD_SECURE_DISPLAY
8074 !amdgpu_dm_crc_window_is_activated(acrtc_state->base.crtc) &&
8076 dirty_rects_changed) {
8077 mutex_lock(&dm->dc_lock);
8078 acrtc_state->stream->link->psr_settings.psr_dirty_rects_change_timestamp_ns =
8080 if (acrtc_state->stream->link->psr_settings.psr_allow_active)
8081 amdgpu_dm_psr_disable(acrtc_state->stream);
8082 mutex_unlock(&dm->dc_lock);
8087 * Only allow immediate flips for fast updates that don't
8088 * change memory domain, FB pitch, DCC state, rotation or
8091 bundle->flip_addrs[planes_count].flip_immediate =
8092 crtc->state->async_flip &&
8093 acrtc_state->update_type == UPDATE_TYPE_FAST &&
8094 get_mem_type(old_plane_state->fb) == get_mem_type(fb);
8096 timestamp_ns = ktime_get_ns();
8097 bundle->flip_addrs[planes_count].flip_timestamp_in_us = div_u64(timestamp_ns, 1000);
8098 bundle->surface_updates[planes_count].flip_addr = &bundle->flip_addrs[planes_count];
8099 bundle->surface_updates[planes_count].surface = dc_plane;
8101 if (!bundle->surface_updates[planes_count].surface) {
8102 DRM_ERROR("No surface for CRTC: id=%d\n",
8103 acrtc_attach->crtc_id);
8107 if (plane == pcrtc->primary)
8108 update_freesync_state_on_stream(
8111 acrtc_state->stream,
8113 bundle->flip_addrs[planes_count].flip_timestamp_in_us);
8115 drm_dbg_state(state->dev, "%s Flipping to hi: 0x%x, low: 0x%x\n",
8117 bundle->flip_addrs[planes_count].address.grph.addr.high_part,
8118 bundle->flip_addrs[planes_count].address.grph.addr.low_part);
8124 if (pflip_present) {
8126 /* Use old throttling in non-vrr fixed refresh rate mode
8127 * to keep flip scheduling based on target vblank counts
8128 * working in a backwards compatible way, e.g., for
8129 * clients using the GLX_OML_sync_control extension or
8130 * DRI3/Present extension with defined target_msc.
8132 last_flip_vblank = amdgpu_get_vblank_counter_kms(pcrtc);
8135 /* For variable refresh rate mode only:
8136 * Get vblank of last completed flip to avoid > 1 vrr
8137 * flips per video frame by use of throttling, but allow
8138 * flip programming anywhere in the possibly large
8139 * variable vrr vblank interval for fine-grained flip
8140 * timing control and more opportunity to avoid stutter
8141 * on late submission of flips.
8143 spin_lock_irqsave(&pcrtc->dev->event_lock, flags);
8144 last_flip_vblank = acrtc_attach->dm_irq_params.last_flip_vblank;
8145 spin_unlock_irqrestore(&pcrtc->dev->event_lock, flags);
8148 target_vblank = last_flip_vblank + wait_for_vblank;
8151 * Wait until we're out of the vertical blank period before the one
8152 * targeted by the flip
8154 while ((acrtc_attach->enabled &&
8155 (amdgpu_display_get_crtc_scanoutpos(dm->ddev, acrtc_attach->crtc_id,
8156 0, &vpos, &hpos, NULL,
8157 NULL, &pcrtc->hwmode)
8158 & (DRM_SCANOUTPOS_VALID | DRM_SCANOUTPOS_IN_VBLANK)) ==
8159 (DRM_SCANOUTPOS_VALID | DRM_SCANOUTPOS_IN_VBLANK) &&
8160 (int)(target_vblank -
8161 amdgpu_get_vblank_counter_kms(pcrtc)) > 0)) {
8162 usleep_range(1000, 1100);
8166 * Prepare the flip event for the pageflip interrupt to handle.
8168 * This only works in the case where we've already turned on the
8169 * appropriate hardware blocks (eg. HUBP) so in the transition case
8170 * from 0 -> n planes we have to skip a hardware generated event
8171 * and rely on sending it from software.
8173 if (acrtc_attach->base.state->event &&
8174 acrtc_state->active_planes > 0) {
8175 drm_crtc_vblank_get(pcrtc);
8177 spin_lock_irqsave(&pcrtc->dev->event_lock, flags);
8179 WARN_ON(acrtc_attach->pflip_status != AMDGPU_FLIP_NONE);
8180 prepare_flip_isr(acrtc_attach);
8182 spin_unlock_irqrestore(&pcrtc->dev->event_lock, flags);
8185 if (acrtc_state->stream) {
8186 if (acrtc_state->freesync_vrr_info_changed)
8187 bundle->stream_update.vrr_infopacket =
8188 &acrtc_state->stream->vrr_infopacket;
8190 } else if (cursor_update && acrtc_state->active_planes > 0 &&
8191 acrtc_attach->base.state->event) {
8192 drm_crtc_vblank_get(pcrtc);
8194 spin_lock_irqsave(&pcrtc->dev->event_lock, flags);
8196 acrtc_attach->event = acrtc_attach->base.state->event;
8197 acrtc_attach->base.state->event = NULL;
8199 spin_unlock_irqrestore(&pcrtc->dev->event_lock, flags);
8202 /* Update the planes if changed or disable if we don't have any. */
8203 if ((planes_count || acrtc_state->active_planes == 0) &&
8204 acrtc_state->stream) {
8206 * If PSR or idle optimizations are enabled then flush out
8207 * any pending work before hardware programming.
8209 if (dm->vblank_control_workqueue)
8210 flush_workqueue(dm->vblank_control_workqueue);
8212 bundle->stream_update.stream = acrtc_state->stream;
8213 if (new_pcrtc_state->mode_changed) {
8214 bundle->stream_update.src = acrtc_state->stream->src;
8215 bundle->stream_update.dst = acrtc_state->stream->dst;
8218 if (new_pcrtc_state->color_mgmt_changed) {
8220 * TODO: This isn't fully correct since we've actually
8221 * already modified the stream in place.
8223 bundle->stream_update.gamut_remap =
8224 &acrtc_state->stream->gamut_remap_matrix;
8225 bundle->stream_update.output_csc_transform =
8226 &acrtc_state->stream->csc_color_matrix;
8227 bundle->stream_update.out_transfer_func =
8228 acrtc_state->stream->out_transfer_func;
8231 acrtc_state->stream->abm_level = acrtc_state->abm_level;
8232 if (acrtc_state->abm_level != dm_old_crtc_state->abm_level)
8233 bundle->stream_update.abm_level = &acrtc_state->abm_level;
8236 * If FreeSync state on the stream has changed then we need to
8237 * re-adjust the min/max bounds now that DC doesn't handle this
8238 * as part of commit.
8240 if (is_dc_timing_adjust_needed(dm_old_crtc_state, acrtc_state)) {
8241 spin_lock_irqsave(&pcrtc->dev->event_lock, flags);
8242 dc_stream_adjust_vmin_vmax(
8243 dm->dc, acrtc_state->stream,
8244 &acrtc_attach->dm_irq_params.vrr_params.adjust);
8245 spin_unlock_irqrestore(&pcrtc->dev->event_lock, flags);
8247 mutex_lock(&dm->dc_lock);
8248 if ((acrtc_state->update_type > UPDATE_TYPE_FAST) &&
8249 acrtc_state->stream->link->psr_settings.psr_allow_active)
8250 amdgpu_dm_psr_disable(acrtc_state->stream);
8252 update_planes_and_stream_adapter(dm->dc,
8253 acrtc_state->update_type,
8255 acrtc_state->stream,
8256 &bundle->stream_update,
8257 bundle->surface_updates);
8260 * Enable or disable the interrupts on the backend.
8262 * Most pipes are put into power gating when unused.
8264 * When power gating is enabled on a pipe we lose the
8265 * interrupt enablement state when power gating is disabled.
8267 * So we need to update the IRQ control state in hardware
8268 * whenever the pipe turns on (since it could be previously
8269 * power gated) or off (since some pipes can't be power gated
8272 if (dm_old_crtc_state->active_planes != acrtc_state->active_planes)
8273 dm_update_pflip_irq_state(drm_to_adev(dev),
8276 if ((acrtc_state->update_type > UPDATE_TYPE_FAST) &&
8277 acrtc_state->stream->link->psr_settings.psr_version != DC_PSR_VERSION_UNSUPPORTED &&
8278 !acrtc_state->stream->link->psr_settings.psr_feature_enabled)
8279 amdgpu_dm_link_setup_psr(acrtc_state->stream);
8281 /* Decrement skip count when PSR is enabled and we're doing fast updates. */
8282 if (acrtc_state->update_type == UPDATE_TYPE_FAST &&
8283 acrtc_state->stream->link->psr_settings.psr_feature_enabled) {
8284 struct amdgpu_dm_connector *aconn =
8285 (struct amdgpu_dm_connector *)acrtc_state->stream->dm_stream_context;
8287 if (aconn->psr_skip_count > 0)
8288 aconn->psr_skip_count--;
8290 /* Allow PSR when skip count is 0. */
8291 acrtc_attach->dm_irq_params.allow_psr_entry = !aconn->psr_skip_count;
8294 * If sink supports PSR SU, there is no need to rely on
8295 * a vblank event disable request to enable PSR. PSR SU
8296 * can be enabled immediately once OS demonstrates an
8297 * adequate number of fast atomic commits to notify KMD
8298 * of update events. See `vblank_control_worker()`.
8300 if (acrtc_state->stream->link->psr_settings.psr_version >= DC_PSR_VERSION_SU_1 &&
8301 acrtc_attach->dm_irq_params.allow_psr_entry &&
8302 #ifdef CONFIG_DRM_AMD_SECURE_DISPLAY
8303 !amdgpu_dm_crc_window_is_activated(acrtc_state->base.crtc) &&
8305 !acrtc_state->stream->link->psr_settings.psr_allow_active &&
8307 acrtc_state->stream->link->psr_settings.psr_dirty_rects_change_timestamp_ns) >
8309 amdgpu_dm_psr_enable(acrtc_state->stream);
8311 acrtc_attach->dm_irq_params.allow_psr_entry = false;
8314 mutex_unlock(&dm->dc_lock);
8318 * Update cursor state *after* programming all the planes.
8319 * This avoids redundant programming in the case where we're going
8320 * to be disabling a single plane - those pipes are being disabled.
8322 if (acrtc_state->active_planes)
8323 amdgpu_dm_commit_cursors(state);
8329 static void amdgpu_dm_commit_audio(struct drm_device *dev,
8330 struct drm_atomic_state *state)
8332 struct amdgpu_device *adev = drm_to_adev(dev);
8333 struct amdgpu_dm_connector *aconnector;
8334 struct drm_connector *connector;
8335 struct drm_connector_state *old_con_state, *new_con_state;
8336 struct drm_crtc_state *new_crtc_state;
8337 struct dm_crtc_state *new_dm_crtc_state;
8338 const struct dc_stream_status *status;
8341 /* Notify device removals. */
8342 for_each_oldnew_connector_in_state(state, connector, old_con_state, new_con_state, i) {
8343 if (old_con_state->crtc != new_con_state->crtc) {
8344 /* CRTC changes require notification. */
8348 if (!new_con_state->crtc)
8351 new_crtc_state = drm_atomic_get_new_crtc_state(
8352 state, new_con_state->crtc);
8354 if (!new_crtc_state)
8357 if (!drm_atomic_crtc_needs_modeset(new_crtc_state))
8361 aconnector = to_amdgpu_dm_connector(connector);
8363 mutex_lock(&adev->dm.audio_lock);
8364 inst = aconnector->audio_inst;
8365 aconnector->audio_inst = -1;
8366 mutex_unlock(&adev->dm.audio_lock);
8368 amdgpu_dm_audio_eld_notify(adev, inst);
8371 /* Notify audio device additions. */
8372 for_each_new_connector_in_state(state, connector, new_con_state, i) {
8373 if (!new_con_state->crtc)
8376 new_crtc_state = drm_atomic_get_new_crtc_state(
8377 state, new_con_state->crtc);
8379 if (!new_crtc_state)
8382 if (!drm_atomic_crtc_needs_modeset(new_crtc_state))
8385 new_dm_crtc_state = to_dm_crtc_state(new_crtc_state);
8386 if (!new_dm_crtc_state->stream)
8389 status = dc_stream_get_status(new_dm_crtc_state->stream);
8393 aconnector = to_amdgpu_dm_connector(connector);
8395 mutex_lock(&adev->dm.audio_lock);
8396 inst = status->audio_inst;
8397 aconnector->audio_inst = inst;
8398 mutex_unlock(&adev->dm.audio_lock);
8400 amdgpu_dm_audio_eld_notify(adev, inst);
8405 * amdgpu_dm_crtc_copy_transient_flags - copy mirrored flags from DRM to DC
8406 * @crtc_state: the DRM CRTC state
8407 * @stream_state: the DC stream state.
8409 * Copy the mirrored transient state flags from DRM, to DC. It is used to bring
8410 * a dc_stream_state's flags in sync with a drm_crtc_state's flags.
8412 static void amdgpu_dm_crtc_copy_transient_flags(struct drm_crtc_state *crtc_state,
8413 struct dc_stream_state *stream_state)
8415 stream_state->mode_changed = drm_atomic_crtc_needs_modeset(crtc_state);
8419 * amdgpu_dm_atomic_commit_tail() - AMDgpu DM's commit tail implementation.
8420 * @state: The atomic state to commit
8422 * This will tell DC to commit the constructed DC state from atomic_check,
8423 * programming the hardware. Any failures here implies a hardware failure, since
8424 * atomic check should have filtered anything non-kosher.
8426 static void amdgpu_dm_atomic_commit_tail(struct drm_atomic_state *state)
8428 struct drm_device *dev = state->dev;
8429 struct amdgpu_device *adev = drm_to_adev(dev);
8430 struct amdgpu_display_manager *dm = &adev->dm;
8431 struct dm_atomic_state *dm_state;
8432 struct dc_state *dc_state = NULL, *dc_state_temp = NULL;
8434 struct drm_crtc *crtc;
8435 struct drm_crtc_state *old_crtc_state, *new_crtc_state;
8436 unsigned long flags;
8437 bool wait_for_vblank = true;
8438 struct drm_connector *connector;
8439 struct drm_connector_state *old_con_state, *new_con_state;
8440 struct dm_crtc_state *dm_old_crtc_state, *dm_new_crtc_state;
8441 int crtc_disable_count = 0;
8442 bool mode_set_reset_required = false;
8445 trace_amdgpu_dm_atomic_commit_tail_begin(state);
8447 r = drm_atomic_helper_wait_for_fences(dev, state, false);
8449 DRM_ERROR("Waiting for fences timed out!");
8451 drm_atomic_helper_update_legacy_modeset_state(dev, state);
8452 drm_dp_mst_atomic_wait_for_dependencies(state);
8454 dm_state = dm_atomic_get_new_state(state);
8455 if (dm_state && dm_state->context) {
8456 dc_state = dm_state->context;
8458 /* No state changes, retain current state. */
8459 dc_state_temp = dc_create_state(dm->dc);
8460 ASSERT(dc_state_temp);
8461 dc_state = dc_state_temp;
8462 dc_resource_state_copy_construct_current(dm->dc, dc_state);
8465 for_each_oldnew_crtc_in_state (state, crtc, old_crtc_state,
8466 new_crtc_state, i) {
8467 struct amdgpu_crtc *acrtc = to_amdgpu_crtc(crtc);
8469 dm_old_crtc_state = to_dm_crtc_state(old_crtc_state);
8471 if (old_crtc_state->active &&
8472 (!new_crtc_state->active ||
8473 drm_atomic_crtc_needs_modeset(new_crtc_state))) {
8474 manage_dm_interrupts(adev, acrtc, false);
8475 dc_stream_release(dm_old_crtc_state->stream);
8479 drm_atomic_helper_calc_timestamping_constants(state);
8481 /* update changed items */
8482 for_each_oldnew_crtc_in_state(state, crtc, old_crtc_state, new_crtc_state, i) {
8483 struct amdgpu_crtc *acrtc = to_amdgpu_crtc(crtc);
8485 dm_new_crtc_state = to_dm_crtc_state(new_crtc_state);
8486 dm_old_crtc_state = to_dm_crtc_state(old_crtc_state);
8488 drm_dbg_state(state->dev,
8489 "amdgpu_crtc id:%d crtc_state_flags: enable:%d, active:%d, "
8490 "planes_changed:%d, mode_changed:%d,active_changed:%d,"
8491 "connectors_changed:%d\n",
8493 new_crtc_state->enable,
8494 new_crtc_state->active,
8495 new_crtc_state->planes_changed,
8496 new_crtc_state->mode_changed,
8497 new_crtc_state->active_changed,
8498 new_crtc_state->connectors_changed);
8500 /* Disable cursor if disabling crtc */
8501 if (old_crtc_state->active && !new_crtc_state->active) {
8502 struct dc_cursor_position position;
8504 memset(&position, 0, sizeof(position));
8505 mutex_lock(&dm->dc_lock);
8506 dc_stream_set_cursor_position(dm_old_crtc_state->stream, &position);
8507 mutex_unlock(&dm->dc_lock);
8510 /* Copy all transient state flags into dc state */
8511 if (dm_new_crtc_state->stream) {
8512 amdgpu_dm_crtc_copy_transient_flags(&dm_new_crtc_state->base,
8513 dm_new_crtc_state->stream);
8516 /* handles headless hotplug case, updating new_state and
8517 * aconnector as needed
8520 if (amdgpu_dm_crtc_modeset_required(new_crtc_state, dm_new_crtc_state->stream, dm_old_crtc_state->stream)) {
8522 DRM_DEBUG_ATOMIC("Atomic commit: SET crtc id %d: [%p]\n", acrtc->crtc_id, acrtc);
8524 if (!dm_new_crtc_state->stream) {
8526 * this could happen because of issues with
8527 * userspace notifications delivery.
8528 * In this case userspace tries to set mode on
8529 * display which is disconnected in fact.
8530 * dc_sink is NULL in this case on aconnector.
8531 * We expect reset mode will come soon.
8533 * This can also happen when unplug is done
8534 * during resume sequence ended
8536 * In this case, we want to pretend we still
8537 * have a sink to keep the pipe running so that
8538 * hw state is consistent with the sw state
8540 DRM_DEBUG_DRIVER("%s: Failed to create new stream for crtc %d\n",
8541 __func__, acrtc->base.base.id);
8545 if (dm_old_crtc_state->stream)
8546 remove_stream(adev, acrtc, dm_old_crtc_state->stream);
8548 pm_runtime_get_noresume(dev->dev);
8550 acrtc->enabled = true;
8551 acrtc->hw_mode = new_crtc_state->mode;
8552 crtc->hwmode = new_crtc_state->mode;
8553 mode_set_reset_required = true;
8554 } else if (modereset_required(new_crtc_state)) {
8555 DRM_DEBUG_ATOMIC("Atomic commit: RESET. crtc id %d:[%p]\n", acrtc->crtc_id, acrtc);
8556 /* i.e. reset mode */
8557 if (dm_old_crtc_state->stream)
8558 remove_stream(adev, acrtc, dm_old_crtc_state->stream);
8560 mode_set_reset_required = true;
8562 } /* for_each_crtc_in_state() */
8565 /* if there mode set or reset, disable eDP PSR */
8566 if (mode_set_reset_required) {
8567 if (dm->vblank_control_workqueue)
8568 flush_workqueue(dm->vblank_control_workqueue);
8570 amdgpu_dm_psr_disable_all(dm);
8573 dm_enable_per_frame_crtc_master_sync(dc_state);
8574 mutex_lock(&dm->dc_lock);
8575 WARN_ON(!dc_commit_streams(dm->dc, dc_state->streams, dc_state->stream_count));
8577 /* Allow idle optimization when vblank count is 0 for display off */
8578 if (dm->active_vblank_irq_count == 0)
8579 dc_allow_idle_optimizations(dm->dc, true);
8580 mutex_unlock(&dm->dc_lock);
8583 for_each_new_crtc_in_state(state, crtc, new_crtc_state, i) {
8584 struct amdgpu_crtc *acrtc = to_amdgpu_crtc(crtc);
8586 dm_new_crtc_state = to_dm_crtc_state(new_crtc_state);
8588 if (dm_new_crtc_state->stream != NULL) {
8589 const struct dc_stream_status *status =
8590 dc_stream_get_status(dm_new_crtc_state->stream);
8593 status = dc_stream_get_status_from_state(dc_state,
8594 dm_new_crtc_state->stream);
8596 DC_ERR("got no status for stream %p on acrtc%p\n", dm_new_crtc_state->stream, acrtc);
8598 acrtc->otg_inst = status->primary_otg_inst;
8601 for_each_oldnew_connector_in_state(state, connector, old_con_state, new_con_state, i) {
8602 struct dm_connector_state *dm_new_con_state = to_dm_connector_state(new_con_state);
8603 struct amdgpu_crtc *acrtc = to_amdgpu_crtc(dm_new_con_state->base.crtc);
8604 struct amdgpu_dm_connector *aconnector = to_amdgpu_dm_connector(connector);
8606 if (!adev->dm.hdcp_workqueue)
8609 pr_debug("[HDCP_DM] -------------- i : %x ----------\n", i);
8614 pr_debug("[HDCP_DM] connector->index: %x connect_status: %x dpms: %x\n",
8615 connector->index, connector->status, connector->dpms);
8616 pr_debug("[HDCP_DM] state protection old: %x new: %x\n",
8617 old_con_state->content_protection, new_con_state->content_protection);
8619 if (aconnector->dc_sink) {
8620 if (aconnector->dc_sink->sink_signal != SIGNAL_TYPE_VIRTUAL &&
8621 aconnector->dc_sink->sink_signal != SIGNAL_TYPE_NONE) {
8622 pr_debug("[HDCP_DM] pipe_ctx dispname=%s\n",
8623 aconnector->dc_sink->edid_caps.display_name);
8627 new_crtc_state = NULL;
8628 old_crtc_state = NULL;
8631 new_crtc_state = drm_atomic_get_new_crtc_state(state, &acrtc->base);
8632 old_crtc_state = drm_atomic_get_old_crtc_state(state, &acrtc->base);
8636 pr_debug("old crtc en: %x a: %x m: %x a-chg: %x c-chg: %x\n",
8637 old_crtc_state->enable,
8638 old_crtc_state->active,
8639 old_crtc_state->mode_changed,
8640 old_crtc_state->active_changed,
8641 old_crtc_state->connectors_changed);
8644 pr_debug("NEW crtc en: %x a: %x m: %x a-chg: %x c-chg: %x\n",
8645 new_crtc_state->enable,
8646 new_crtc_state->active,
8647 new_crtc_state->mode_changed,
8648 new_crtc_state->active_changed,
8649 new_crtc_state->connectors_changed);
8652 for_each_oldnew_connector_in_state(state, connector, old_con_state, new_con_state, i) {
8653 struct dm_connector_state *dm_new_con_state = to_dm_connector_state(new_con_state);
8654 struct amdgpu_crtc *acrtc = to_amdgpu_crtc(dm_new_con_state->base.crtc);
8655 struct amdgpu_dm_connector *aconnector = to_amdgpu_dm_connector(connector);
8657 if (!adev->dm.hdcp_workqueue)
8660 new_crtc_state = NULL;
8661 old_crtc_state = NULL;
8664 new_crtc_state = drm_atomic_get_new_crtc_state(state, &acrtc->base);
8665 old_crtc_state = drm_atomic_get_old_crtc_state(state, &acrtc->base);
8668 dm_new_crtc_state = to_dm_crtc_state(new_crtc_state);
8670 if (dm_new_crtc_state && dm_new_crtc_state->stream == NULL &&
8671 connector->state->content_protection == DRM_MODE_CONTENT_PROTECTION_ENABLED) {
8672 hdcp_reset_display(adev->dm.hdcp_workqueue, aconnector->dc_link->link_index);
8673 new_con_state->content_protection = DRM_MODE_CONTENT_PROTECTION_DESIRED;
8674 dm_new_con_state->update_hdcp = true;
8678 if (is_content_protection_different(new_crtc_state, old_crtc_state, new_con_state,
8679 old_con_state, connector, adev->dm.hdcp_workqueue)) {
8680 /* when display is unplugged from mst hub, connctor will
8681 * be destroyed within dm_dp_mst_connector_destroy. connector
8682 * hdcp perperties, like type, undesired, desired, enabled,
8683 * will be lost. So, save hdcp properties into hdcp_work within
8684 * amdgpu_dm_atomic_commit_tail. if the same display is
8685 * plugged back with same display index, its hdcp properties
8686 * will be retrieved from hdcp_work within dm_dp_mst_get_modes
8689 bool enable_encryption = false;
8691 if (new_con_state->content_protection == DRM_MODE_CONTENT_PROTECTION_DESIRED)
8692 enable_encryption = true;
8694 if (aconnector->dc_link && aconnector->dc_sink &&
8695 aconnector->dc_link->type == dc_connection_mst_branch) {
8696 struct hdcp_workqueue *hdcp_work = adev->dm.hdcp_workqueue;
8697 struct hdcp_workqueue *hdcp_w =
8698 &hdcp_work[aconnector->dc_link->link_index];
8700 hdcp_w->hdcp_content_type[connector->index] =
8701 new_con_state->hdcp_content_type;
8702 hdcp_w->content_protection[connector->index] =
8703 new_con_state->content_protection;
8706 if (new_crtc_state && new_crtc_state->mode_changed &&
8707 new_con_state->content_protection >= DRM_MODE_CONTENT_PROTECTION_DESIRED)
8708 enable_encryption = true;
8710 DRM_INFO("[HDCP_DM] hdcp_update_display enable_encryption = %x\n", enable_encryption);
8712 hdcp_update_display(
8713 adev->dm.hdcp_workqueue, aconnector->dc_link->link_index, aconnector,
8714 new_con_state->hdcp_content_type, enable_encryption);
8718 /* Handle connector state changes */
8719 for_each_oldnew_connector_in_state(state, connector, old_con_state, new_con_state, i) {
8720 struct dm_connector_state *dm_new_con_state = to_dm_connector_state(new_con_state);
8721 struct dm_connector_state *dm_old_con_state = to_dm_connector_state(old_con_state);
8722 struct amdgpu_crtc *acrtc = to_amdgpu_crtc(dm_new_con_state->base.crtc);
8723 struct dc_surface_update dummy_updates[MAX_SURFACES];
8724 struct dc_stream_update stream_update;
8725 struct dc_info_packet hdr_packet;
8726 struct dc_stream_status *status = NULL;
8727 bool abm_changed, hdr_changed, scaling_changed;
8729 memset(&dummy_updates, 0, sizeof(dummy_updates));
8730 memset(&stream_update, 0, sizeof(stream_update));
8733 new_crtc_state = drm_atomic_get_new_crtc_state(state, &acrtc->base);
8734 old_crtc_state = drm_atomic_get_old_crtc_state(state, &acrtc->base);
8737 /* Skip any modesets/resets */
8738 if (!acrtc || drm_atomic_crtc_needs_modeset(new_crtc_state))
8741 dm_new_crtc_state = to_dm_crtc_state(new_crtc_state);
8742 dm_old_crtc_state = to_dm_crtc_state(old_crtc_state);
8744 scaling_changed = is_scaling_state_different(dm_new_con_state,
8747 abm_changed = dm_new_crtc_state->abm_level !=
8748 dm_old_crtc_state->abm_level;
8751 !drm_connector_atomic_hdr_metadata_equal(old_con_state, new_con_state);
8753 if (!scaling_changed && !abm_changed && !hdr_changed)
8756 stream_update.stream = dm_new_crtc_state->stream;
8757 if (scaling_changed) {
8758 update_stream_scaling_settings(&dm_new_con_state->base.crtc->mode,
8759 dm_new_con_state, dm_new_crtc_state->stream);
8761 stream_update.src = dm_new_crtc_state->stream->src;
8762 stream_update.dst = dm_new_crtc_state->stream->dst;
8766 dm_new_crtc_state->stream->abm_level = dm_new_crtc_state->abm_level;
8768 stream_update.abm_level = &dm_new_crtc_state->abm_level;
8772 fill_hdr_info_packet(new_con_state, &hdr_packet);
8773 stream_update.hdr_static_metadata = &hdr_packet;
8776 status = dc_stream_get_status(dm_new_crtc_state->stream);
8778 if (WARN_ON(!status))
8781 WARN_ON(!status->plane_count);
8784 * TODO: DC refuses to perform stream updates without a dc_surface_update.
8785 * Here we create an empty update on each plane.
8786 * To fix this, DC should permit updating only stream properties.
8788 for (j = 0; j < status->plane_count; j++)
8789 dummy_updates[j].surface = status->plane_states[0];
8792 mutex_lock(&dm->dc_lock);
8793 dc_update_planes_and_stream(dm->dc,
8795 status->plane_count,
8796 dm_new_crtc_state->stream,
8798 mutex_unlock(&dm->dc_lock);
8802 * Enable interrupts for CRTCs that are newly enabled or went through
8803 * a modeset. It was intentionally deferred until after the front end
8804 * state was modified to wait until the OTG was on and so the IRQ
8805 * handlers didn't access stale or invalid state.
8807 for_each_oldnew_crtc_in_state(state, crtc, old_crtc_state, new_crtc_state, i) {
8808 struct amdgpu_crtc *acrtc = to_amdgpu_crtc(crtc);
8809 #ifdef CONFIG_DEBUG_FS
8810 enum amdgpu_dm_pipe_crc_source cur_crc_src;
8812 /* Count number of newly disabled CRTCs for dropping PM refs later. */
8813 if (old_crtc_state->active && !new_crtc_state->active)
8814 crtc_disable_count++;
8816 dm_new_crtc_state = to_dm_crtc_state(new_crtc_state);
8817 dm_old_crtc_state = to_dm_crtc_state(old_crtc_state);
8819 /* For freesync config update on crtc state and params for irq */
8820 update_stream_irq_parameters(dm, dm_new_crtc_state);
8822 #ifdef CONFIG_DEBUG_FS
8823 spin_lock_irqsave(&adev_to_drm(adev)->event_lock, flags);
8824 cur_crc_src = acrtc->dm_irq_params.crc_src;
8825 spin_unlock_irqrestore(&adev_to_drm(adev)->event_lock, flags);
8828 if (new_crtc_state->active &&
8829 (!old_crtc_state->active ||
8830 drm_atomic_crtc_needs_modeset(new_crtc_state))) {
8831 dc_stream_retain(dm_new_crtc_state->stream);
8832 acrtc->dm_irq_params.stream = dm_new_crtc_state->stream;
8833 manage_dm_interrupts(adev, acrtc, true);
8835 /* Handle vrr on->off / off->on transitions */
8836 amdgpu_dm_handle_vrr_transition(dm_old_crtc_state, dm_new_crtc_state);
8838 #ifdef CONFIG_DEBUG_FS
8839 if (new_crtc_state->active &&
8840 (!old_crtc_state->active ||
8841 drm_atomic_crtc_needs_modeset(new_crtc_state))) {
8843 * Frontend may have changed so reapply the CRC capture
8844 * settings for the stream.
8846 if (amdgpu_dm_is_valid_crc_source(cur_crc_src)) {
8847 #if defined(CONFIG_DRM_AMD_SECURE_DISPLAY)
8848 if (amdgpu_dm_crc_window_is_activated(crtc)) {
8849 spin_lock_irqsave(&adev_to_drm(adev)->event_lock, flags);
8850 acrtc->dm_irq_params.window_param.update_win = true;
8853 * It takes 2 frames for HW to stably generate CRC when
8854 * resuming from suspend, so we set skip_frame_cnt 2.
8856 acrtc->dm_irq_params.window_param.skip_frame_cnt = 2;
8857 spin_unlock_irqrestore(&adev_to_drm(adev)->event_lock, flags);
8860 if (amdgpu_dm_crtc_configure_crc_source(
8861 crtc, dm_new_crtc_state, cur_crc_src))
8862 DRM_DEBUG_DRIVER("Failed to configure crc source");
8868 for_each_new_crtc_in_state(state, crtc, new_crtc_state, j)
8869 if (new_crtc_state->async_flip)
8870 wait_for_vblank = false;
8872 /* update planes when needed per crtc*/
8873 for_each_new_crtc_in_state(state, crtc, new_crtc_state, j) {
8874 dm_new_crtc_state = to_dm_crtc_state(new_crtc_state);
8876 if (dm_new_crtc_state->stream)
8877 amdgpu_dm_commit_planes(state, dc_state, dev,
8878 dm, crtc, wait_for_vblank);
8881 /* Update audio instances for each connector. */
8882 amdgpu_dm_commit_audio(dev, state);
8884 /* restore the backlight level */
8885 for (i = 0; i < dm->num_of_edps; i++) {
8886 if (dm->backlight_dev[i] &&
8887 (dm->actual_brightness[i] != dm->brightness[i]))
8888 amdgpu_dm_backlight_set_level(dm, i, dm->brightness[i]);
8892 * send vblank event on all events not handled in flip and
8893 * mark consumed event for drm_atomic_helper_commit_hw_done
8895 spin_lock_irqsave(&adev_to_drm(adev)->event_lock, flags);
8896 for_each_new_crtc_in_state(state, crtc, new_crtc_state, i) {
8898 if (new_crtc_state->event)
8899 drm_send_event_locked(dev, &new_crtc_state->event->base);
8901 new_crtc_state->event = NULL;
8903 spin_unlock_irqrestore(&adev_to_drm(adev)->event_lock, flags);
8905 /* Signal HW programming completion */
8906 drm_atomic_helper_commit_hw_done(state);
8908 if (wait_for_vblank)
8909 drm_atomic_helper_wait_for_flip_done(dev, state);
8911 drm_atomic_helper_cleanup_planes(dev, state);
8913 /* return the stolen vga memory back to VRAM */
8914 if (!adev->mman.keep_stolen_vga_memory)
8915 amdgpu_bo_free_kernel(&adev->mman.stolen_vga_memory, NULL, NULL);
8916 amdgpu_bo_free_kernel(&adev->mman.stolen_extended_memory, NULL, NULL);
8919 * Finally, drop a runtime PM reference for each newly disabled CRTC,
8920 * so we can put the GPU into runtime suspend if we're not driving any
8923 for (i = 0; i < crtc_disable_count; i++)
8924 pm_runtime_put_autosuspend(dev->dev);
8925 pm_runtime_mark_last_busy(dev->dev);
8928 dc_release_state(dc_state_temp);
8931 static int dm_force_atomic_commit(struct drm_connector *connector)
8934 struct drm_device *ddev = connector->dev;
8935 struct drm_atomic_state *state = drm_atomic_state_alloc(ddev);
8936 struct amdgpu_crtc *disconnected_acrtc = to_amdgpu_crtc(connector->encoder->crtc);
8937 struct drm_plane *plane = disconnected_acrtc->base.primary;
8938 struct drm_connector_state *conn_state;
8939 struct drm_crtc_state *crtc_state;
8940 struct drm_plane_state *plane_state;
8945 state->acquire_ctx = ddev->mode_config.acquire_ctx;
8947 /* Construct an atomic state to restore previous display setting */
8950 * Attach connectors to drm_atomic_state
8952 conn_state = drm_atomic_get_connector_state(state, connector);
8954 ret = PTR_ERR_OR_ZERO(conn_state);
8958 /* Attach crtc to drm_atomic_state*/
8959 crtc_state = drm_atomic_get_crtc_state(state, &disconnected_acrtc->base);
8961 ret = PTR_ERR_OR_ZERO(crtc_state);
8965 /* force a restore */
8966 crtc_state->mode_changed = true;
8968 /* Attach plane to drm_atomic_state */
8969 plane_state = drm_atomic_get_plane_state(state, plane);
8971 ret = PTR_ERR_OR_ZERO(plane_state);
8975 /* Call commit internally with the state we just constructed */
8976 ret = drm_atomic_commit(state);
8979 drm_atomic_state_put(state);
8981 DRM_ERROR("Restoring old state failed with %i\n", ret);
8987 * This function handles all cases when set mode does not come upon hotplug.
8988 * This includes when a display is unplugged then plugged back into the
8989 * same port and when running without usermode desktop manager supprot
8991 void dm_restore_drm_connector_state(struct drm_device *dev,
8992 struct drm_connector *connector)
8994 struct amdgpu_dm_connector *aconnector = to_amdgpu_dm_connector(connector);
8995 struct amdgpu_crtc *disconnected_acrtc;
8996 struct dm_crtc_state *acrtc_state;
8998 if (!aconnector->dc_sink || !connector->state || !connector->encoder)
9001 disconnected_acrtc = to_amdgpu_crtc(connector->encoder->crtc);
9002 if (!disconnected_acrtc)
9005 acrtc_state = to_dm_crtc_state(disconnected_acrtc->base.state);
9006 if (!acrtc_state->stream)
9010 * If the previous sink is not released and different from the current,
9011 * we deduce we are in a state where we can not rely on usermode call
9012 * to turn on the display, so we do it here
9014 if (acrtc_state->stream->sink != aconnector->dc_sink)
9015 dm_force_atomic_commit(&aconnector->base);
9019 * Grabs all modesetting locks to serialize against any blocking commits,
9020 * Waits for completion of all non blocking commits.
9022 static int do_aquire_global_lock(struct drm_device *dev,
9023 struct drm_atomic_state *state)
9025 struct drm_crtc *crtc;
9026 struct drm_crtc_commit *commit;
9030 * Adding all modeset locks to aquire_ctx will
9031 * ensure that when the framework release it the
9032 * extra locks we are locking here will get released to
9034 ret = drm_modeset_lock_all_ctx(dev, state->acquire_ctx);
9038 list_for_each_entry(crtc, &dev->mode_config.crtc_list, head) {
9039 spin_lock(&crtc->commit_lock);
9040 commit = list_first_entry_or_null(&crtc->commit_list,
9041 struct drm_crtc_commit, commit_entry);
9043 drm_crtc_commit_get(commit);
9044 spin_unlock(&crtc->commit_lock);
9050 * Make sure all pending HW programming completed and
9053 ret = wait_for_completion_interruptible_timeout(&commit->hw_done, 10*HZ);
9056 ret = wait_for_completion_interruptible_timeout(
9057 &commit->flip_done, 10*HZ);
9060 DRM_ERROR("[CRTC:%d:%s] hw_done or flip_done "
9061 "timed out\n", crtc->base.id, crtc->name);
9063 drm_crtc_commit_put(commit);
9066 return ret < 0 ? ret : 0;
9069 static void get_freesync_config_for_crtc(
9070 struct dm_crtc_state *new_crtc_state,
9071 struct dm_connector_state *new_con_state)
9073 struct mod_freesync_config config = {0};
9074 struct amdgpu_dm_connector *aconnector =
9075 to_amdgpu_dm_connector(new_con_state->base.connector);
9076 struct drm_display_mode *mode = &new_crtc_state->base.mode;
9077 int vrefresh = drm_mode_vrefresh(mode);
9078 bool fs_vid_mode = false;
9080 new_crtc_state->vrr_supported = new_con_state->freesync_capable &&
9081 vrefresh >= aconnector->min_vfreq &&
9082 vrefresh <= aconnector->max_vfreq;
9084 if (new_crtc_state->vrr_supported) {
9085 new_crtc_state->stream->ignore_msa_timing_param = true;
9086 fs_vid_mode = new_crtc_state->freesync_config.state == VRR_STATE_ACTIVE_FIXED;
9088 config.min_refresh_in_uhz = aconnector->min_vfreq * 1000000;
9089 config.max_refresh_in_uhz = aconnector->max_vfreq * 1000000;
9090 config.vsif_supported = true;
9094 config.state = VRR_STATE_ACTIVE_FIXED;
9095 config.fixed_refresh_in_uhz = new_crtc_state->freesync_config.fixed_refresh_in_uhz;
9097 } else if (new_crtc_state->base.vrr_enabled) {
9098 config.state = VRR_STATE_ACTIVE_VARIABLE;
9100 config.state = VRR_STATE_INACTIVE;
9104 new_crtc_state->freesync_config = config;
9107 static void reset_freesync_config_for_crtc(
9108 struct dm_crtc_state *new_crtc_state)
9110 new_crtc_state->vrr_supported = false;
9112 memset(&new_crtc_state->vrr_infopacket, 0,
9113 sizeof(new_crtc_state->vrr_infopacket));
9117 is_timing_unchanged_for_freesync(struct drm_crtc_state *old_crtc_state,
9118 struct drm_crtc_state *new_crtc_state)
9120 const struct drm_display_mode *old_mode, *new_mode;
9122 if (!old_crtc_state || !new_crtc_state)
9125 old_mode = &old_crtc_state->mode;
9126 new_mode = &new_crtc_state->mode;
9128 if (old_mode->clock == new_mode->clock &&
9129 old_mode->hdisplay == new_mode->hdisplay &&
9130 old_mode->vdisplay == new_mode->vdisplay &&
9131 old_mode->htotal == new_mode->htotal &&
9132 old_mode->vtotal != new_mode->vtotal &&
9133 old_mode->hsync_start == new_mode->hsync_start &&
9134 old_mode->vsync_start != new_mode->vsync_start &&
9135 old_mode->hsync_end == new_mode->hsync_end &&
9136 old_mode->vsync_end != new_mode->vsync_end &&
9137 old_mode->hskew == new_mode->hskew &&
9138 old_mode->vscan == new_mode->vscan &&
9139 (old_mode->vsync_end - old_mode->vsync_start) ==
9140 (new_mode->vsync_end - new_mode->vsync_start))
9146 static void set_freesync_fixed_config(struct dm_crtc_state *dm_new_crtc_state) {
9148 struct drm_crtc_state *new_crtc_state = &dm_new_crtc_state->base;
9150 dm_new_crtc_state->freesync_config.state = VRR_STATE_ACTIVE_FIXED;
9152 num = (unsigned long long)new_crtc_state->mode.clock * 1000 * 1000000;
9153 den = (unsigned long long)new_crtc_state->mode.htotal *
9154 (unsigned long long)new_crtc_state->mode.vtotal;
9156 res = div_u64(num, den);
9157 dm_new_crtc_state->freesync_config.fixed_refresh_in_uhz = res;
9160 static int dm_update_crtc_state(struct amdgpu_display_manager *dm,
9161 struct drm_atomic_state *state,
9162 struct drm_crtc *crtc,
9163 struct drm_crtc_state *old_crtc_state,
9164 struct drm_crtc_state *new_crtc_state,
9166 bool *lock_and_validation_needed)
9168 struct dm_atomic_state *dm_state = NULL;
9169 struct dm_crtc_state *dm_old_crtc_state, *dm_new_crtc_state;
9170 struct dc_stream_state *new_stream;
9174 * TODO Move this code into dm_crtc_atomic_check once we get rid of dc_validation_set
9175 * update changed items
9177 struct amdgpu_crtc *acrtc = NULL;
9178 struct amdgpu_dm_connector *aconnector = NULL;
9179 struct drm_connector_state *drm_new_conn_state = NULL, *drm_old_conn_state = NULL;
9180 struct dm_connector_state *dm_new_conn_state = NULL, *dm_old_conn_state = NULL;
9184 dm_old_crtc_state = to_dm_crtc_state(old_crtc_state);
9185 dm_new_crtc_state = to_dm_crtc_state(new_crtc_state);
9186 acrtc = to_amdgpu_crtc(crtc);
9187 aconnector = amdgpu_dm_find_first_crtc_matching_connector(state, crtc);
9189 /* TODO This hack should go away */
9190 if (aconnector && enable) {
9191 /* Make sure fake sink is created in plug-in scenario */
9192 drm_new_conn_state = drm_atomic_get_new_connector_state(state,
9194 drm_old_conn_state = drm_atomic_get_old_connector_state(state,
9197 if (IS_ERR(drm_new_conn_state)) {
9198 ret = PTR_ERR_OR_ZERO(drm_new_conn_state);
9202 dm_new_conn_state = to_dm_connector_state(drm_new_conn_state);
9203 dm_old_conn_state = to_dm_connector_state(drm_old_conn_state);
9205 if (!drm_atomic_crtc_needs_modeset(new_crtc_state))
9208 new_stream = create_validate_stream_for_sink(aconnector,
9209 &new_crtc_state->mode,
9211 dm_old_crtc_state->stream);
9214 * we can have no stream on ACTION_SET if a display
9215 * was disconnected during S3, in this case it is not an
9216 * error, the OS will be updated after detection, and
9217 * will do the right thing on next atomic commit
9221 DRM_DEBUG_DRIVER("%s: Failed to create new stream for crtc %d\n",
9222 __func__, acrtc->base.base.id);
9228 * TODO: Check VSDB bits to decide whether this should
9229 * be enabled or not.
9231 new_stream->triggered_crtc_reset.enabled =
9232 dm->force_timing_sync;
9234 dm_new_crtc_state->abm_level = dm_new_conn_state->abm_level;
9236 ret = fill_hdr_info_packet(drm_new_conn_state,
9237 &new_stream->hdr_static_metadata);
9242 * If we already removed the old stream from the context
9243 * (and set the new stream to NULL) then we can't reuse
9244 * the old stream even if the stream and scaling are unchanged.
9245 * We'll hit the BUG_ON and black screen.
9247 * TODO: Refactor this function to allow this check to work
9248 * in all conditions.
9250 if (amdgpu_freesync_vid_mode &&
9251 dm_new_crtc_state->stream &&
9252 is_timing_unchanged_for_freesync(new_crtc_state, old_crtc_state))
9255 if (dm_new_crtc_state->stream &&
9256 dc_is_stream_unchanged(new_stream, dm_old_crtc_state->stream) &&
9257 dc_is_stream_scaling_unchanged(new_stream, dm_old_crtc_state->stream)) {
9258 new_crtc_state->mode_changed = false;
9259 DRM_DEBUG_DRIVER("Mode change not required, setting mode_changed to %d",
9260 new_crtc_state->mode_changed);
9264 /* mode_changed flag may get updated above, need to check again */
9265 if (!drm_atomic_crtc_needs_modeset(new_crtc_state))
9268 drm_dbg_state(state->dev,
9269 "amdgpu_crtc id:%d crtc_state_flags: enable:%d, active:%d, "
9270 "planes_changed:%d, mode_changed:%d,active_changed:%d,"
9271 "connectors_changed:%d\n",
9273 new_crtc_state->enable,
9274 new_crtc_state->active,
9275 new_crtc_state->planes_changed,
9276 new_crtc_state->mode_changed,
9277 new_crtc_state->active_changed,
9278 new_crtc_state->connectors_changed);
9280 /* Remove stream for any changed/disabled CRTC */
9283 if (!dm_old_crtc_state->stream)
9286 /* Unset freesync video if it was active before */
9287 if (dm_old_crtc_state->freesync_config.state == VRR_STATE_ACTIVE_FIXED) {
9288 dm_new_crtc_state->freesync_config.state = VRR_STATE_INACTIVE;
9289 dm_new_crtc_state->freesync_config.fixed_refresh_in_uhz = 0;
9292 /* Now check if we should set freesync video mode */
9293 if (amdgpu_freesync_vid_mode && dm_new_crtc_state->stream &&
9294 dc_is_stream_unchanged(new_stream, dm_old_crtc_state->stream) &&
9295 dc_is_stream_scaling_unchanged(new_stream, dm_old_crtc_state->stream) &&
9296 is_timing_unchanged_for_freesync(new_crtc_state,
9298 new_crtc_state->mode_changed = false;
9300 "Mode change not required for front porch change, "
9301 "setting mode_changed to %d",
9302 new_crtc_state->mode_changed);
9304 set_freesync_fixed_config(dm_new_crtc_state);
9307 } else if (amdgpu_freesync_vid_mode && aconnector &&
9308 is_freesync_video_mode(&new_crtc_state->mode,
9310 struct drm_display_mode *high_mode;
9312 high_mode = get_highest_refresh_rate_mode(aconnector, false);
9313 if (!drm_mode_equal(&new_crtc_state->mode, high_mode)) {
9314 set_freesync_fixed_config(dm_new_crtc_state);
9318 ret = dm_atomic_get_state(state, &dm_state);
9322 DRM_DEBUG_DRIVER("Disabling DRM crtc: %d\n",
9325 /* i.e. reset mode */
9326 if (dc_remove_stream_from_ctx(
9329 dm_old_crtc_state->stream) != DC_OK) {
9334 dc_stream_release(dm_old_crtc_state->stream);
9335 dm_new_crtc_state->stream = NULL;
9337 reset_freesync_config_for_crtc(dm_new_crtc_state);
9339 *lock_and_validation_needed = true;
9341 } else {/* Add stream for any updated/enabled CRTC */
9343 * Quick fix to prevent NULL pointer on new_stream when
9344 * added MST connectors not found in existing crtc_state in the chained mode
9345 * TODO: need to dig out the root cause of that
9350 if (modereset_required(new_crtc_state))
9353 if (amdgpu_dm_crtc_modeset_required(new_crtc_state, new_stream,
9354 dm_old_crtc_state->stream)) {
9356 WARN_ON(dm_new_crtc_state->stream);
9358 ret = dm_atomic_get_state(state, &dm_state);
9362 dm_new_crtc_state->stream = new_stream;
9364 dc_stream_retain(new_stream);
9366 DRM_DEBUG_ATOMIC("Enabling DRM crtc: %d\n",
9369 if (dc_add_stream_to_ctx(
9372 dm_new_crtc_state->stream) != DC_OK) {
9377 *lock_and_validation_needed = true;
9382 /* Release extra reference */
9384 dc_stream_release(new_stream);
9387 * We want to do dc stream updates that do not require a
9388 * full modeset below.
9390 if (!(enable && aconnector && new_crtc_state->active))
9393 * Given above conditions, the dc state cannot be NULL because:
9394 * 1. We're in the process of enabling CRTCs (just been added
9395 * to the dc context, or already is on the context)
9396 * 2. Has a valid connector attached, and
9397 * 3. Is currently active and enabled.
9398 * => The dc stream state currently exists.
9400 BUG_ON(dm_new_crtc_state->stream == NULL);
9402 /* Scaling or underscan settings */
9403 if (is_scaling_state_different(dm_old_conn_state, dm_new_conn_state) ||
9404 drm_atomic_crtc_needs_modeset(new_crtc_state))
9405 update_stream_scaling_settings(
9406 &new_crtc_state->mode, dm_new_conn_state, dm_new_crtc_state->stream);
9409 dm_new_crtc_state->abm_level = dm_new_conn_state->abm_level;
9412 * Color management settings. We also update color properties
9413 * when a modeset is needed, to ensure it gets reprogrammed.
9415 if (dm_new_crtc_state->base.color_mgmt_changed ||
9416 drm_atomic_crtc_needs_modeset(new_crtc_state)) {
9417 ret = amdgpu_dm_update_crtc_color_mgmt(dm_new_crtc_state);
9422 /* Update Freesync settings. */
9423 get_freesync_config_for_crtc(dm_new_crtc_state,
9430 dc_stream_release(new_stream);
9434 static bool should_reset_plane(struct drm_atomic_state *state,
9435 struct drm_plane *plane,
9436 struct drm_plane_state *old_plane_state,
9437 struct drm_plane_state *new_plane_state)
9439 struct drm_plane *other;
9440 struct drm_plane_state *old_other_state, *new_other_state;
9441 struct drm_crtc_state *new_crtc_state;
9445 * TODO: Remove this hack once the checks below are sufficient
9446 * enough to determine when we need to reset all the planes on
9449 if (state->allow_modeset)
9452 /* Exit early if we know that we're adding or removing the plane. */
9453 if (old_plane_state->crtc != new_plane_state->crtc)
9456 /* old crtc == new_crtc == NULL, plane not in context. */
9457 if (!new_plane_state->crtc)
9461 drm_atomic_get_new_crtc_state(state, new_plane_state->crtc);
9463 if (!new_crtc_state)
9466 /* CRTC Degamma changes currently require us to recreate planes. */
9467 if (new_crtc_state->color_mgmt_changed)
9470 if (drm_atomic_crtc_needs_modeset(new_crtc_state))
9474 * If there are any new primary or overlay planes being added or
9475 * removed then the z-order can potentially change. To ensure
9476 * correct z-order and pipe acquisition the current DC architecture
9477 * requires us to remove and recreate all existing planes.
9479 * TODO: Come up with a more elegant solution for this.
9481 for_each_oldnew_plane_in_state(state, other, old_other_state, new_other_state, i) {
9482 struct amdgpu_framebuffer *old_afb, *new_afb;
9483 if (other->type == DRM_PLANE_TYPE_CURSOR)
9486 if (old_other_state->crtc != new_plane_state->crtc &&
9487 new_other_state->crtc != new_plane_state->crtc)
9490 if (old_other_state->crtc != new_other_state->crtc)
9493 /* Src/dst size and scaling updates. */
9494 if (old_other_state->src_w != new_other_state->src_w ||
9495 old_other_state->src_h != new_other_state->src_h ||
9496 old_other_state->crtc_w != new_other_state->crtc_w ||
9497 old_other_state->crtc_h != new_other_state->crtc_h)
9500 /* Rotation / mirroring updates. */
9501 if (old_other_state->rotation != new_other_state->rotation)
9504 /* Blending updates. */
9505 if (old_other_state->pixel_blend_mode !=
9506 new_other_state->pixel_blend_mode)
9509 /* Alpha updates. */
9510 if (old_other_state->alpha != new_other_state->alpha)
9513 /* Colorspace changes. */
9514 if (old_other_state->color_range != new_other_state->color_range ||
9515 old_other_state->color_encoding != new_other_state->color_encoding)
9518 /* Framebuffer checks fall at the end. */
9519 if (!old_other_state->fb || !new_other_state->fb)
9522 /* Pixel format changes can require bandwidth updates. */
9523 if (old_other_state->fb->format != new_other_state->fb->format)
9526 old_afb = (struct amdgpu_framebuffer *)old_other_state->fb;
9527 new_afb = (struct amdgpu_framebuffer *)new_other_state->fb;
9529 /* Tiling and DCC changes also require bandwidth updates. */
9530 if (old_afb->tiling_flags != new_afb->tiling_flags ||
9531 old_afb->base.modifier != new_afb->base.modifier)
9538 static int dm_check_cursor_fb(struct amdgpu_crtc *new_acrtc,
9539 struct drm_plane_state *new_plane_state,
9540 struct drm_framebuffer *fb)
9542 struct amdgpu_device *adev = drm_to_adev(new_acrtc->base.dev);
9543 struct amdgpu_framebuffer *afb = to_amdgpu_framebuffer(fb);
9547 if (fb->width > new_acrtc->max_cursor_width ||
9548 fb->height > new_acrtc->max_cursor_height) {
9549 DRM_DEBUG_ATOMIC("Bad cursor FB size %dx%d\n",
9550 new_plane_state->fb->width,
9551 new_plane_state->fb->height);
9554 if (new_plane_state->src_w != fb->width << 16 ||
9555 new_plane_state->src_h != fb->height << 16) {
9556 DRM_DEBUG_ATOMIC("Cropping not supported for cursor plane\n");
9560 /* Pitch in pixels */
9561 pitch = fb->pitches[0] / fb->format->cpp[0];
9563 if (fb->width != pitch) {
9564 DRM_DEBUG_ATOMIC("Cursor FB width %d doesn't match pitch %d",
9573 /* FB pitch is supported by cursor plane */
9576 DRM_DEBUG_ATOMIC("Bad cursor FB pitch %d px\n", pitch);
9580 /* Core DRM takes care of checking FB modifiers, so we only need to
9581 * check tiling flags when the FB doesn't have a modifier. */
9582 if (!(fb->flags & DRM_MODE_FB_MODIFIERS)) {
9583 if (adev->family < AMDGPU_FAMILY_AI) {
9584 linear = AMDGPU_TILING_GET(afb->tiling_flags, ARRAY_MODE) != DC_ARRAY_2D_TILED_THIN1 &&
9585 AMDGPU_TILING_GET(afb->tiling_flags, ARRAY_MODE) != DC_ARRAY_1D_TILED_THIN1 &&
9586 AMDGPU_TILING_GET(afb->tiling_flags, MICRO_TILE_MODE) == 0;
9588 linear = AMDGPU_TILING_GET(afb->tiling_flags, SWIZZLE_MODE) == 0;
9591 DRM_DEBUG_ATOMIC("Cursor FB not linear");
9599 static int dm_update_plane_state(struct dc *dc,
9600 struct drm_atomic_state *state,
9601 struct drm_plane *plane,
9602 struct drm_plane_state *old_plane_state,
9603 struct drm_plane_state *new_plane_state,
9605 bool *lock_and_validation_needed,
9606 bool *is_top_most_overlay)
9609 struct dm_atomic_state *dm_state = NULL;
9610 struct drm_crtc *new_plane_crtc, *old_plane_crtc;
9611 struct drm_crtc_state *old_crtc_state, *new_crtc_state;
9612 struct dm_crtc_state *dm_new_crtc_state, *dm_old_crtc_state;
9613 struct dm_plane_state *dm_new_plane_state, *dm_old_plane_state;
9614 struct amdgpu_crtc *new_acrtc;
9619 new_plane_crtc = new_plane_state->crtc;
9620 old_plane_crtc = old_plane_state->crtc;
9621 dm_new_plane_state = to_dm_plane_state(new_plane_state);
9622 dm_old_plane_state = to_dm_plane_state(old_plane_state);
9624 if (plane->type == DRM_PLANE_TYPE_CURSOR) {
9625 if (!enable || !new_plane_crtc ||
9626 drm_atomic_plane_disabling(plane->state, new_plane_state))
9629 new_acrtc = to_amdgpu_crtc(new_plane_crtc);
9631 if (new_plane_state->src_x != 0 || new_plane_state->src_y != 0) {
9632 DRM_DEBUG_ATOMIC("Cropping not supported for cursor plane\n");
9636 if (new_plane_state->fb) {
9637 ret = dm_check_cursor_fb(new_acrtc, new_plane_state,
9638 new_plane_state->fb);
9646 needs_reset = should_reset_plane(state, plane, old_plane_state,
9649 /* Remove any changed/removed planes */
9654 if (!old_plane_crtc)
9657 old_crtc_state = drm_atomic_get_old_crtc_state(
9658 state, old_plane_crtc);
9659 dm_old_crtc_state = to_dm_crtc_state(old_crtc_state);
9661 if (!dm_old_crtc_state->stream)
9664 DRM_DEBUG_ATOMIC("Disabling DRM plane: %d on DRM crtc %d\n",
9665 plane->base.id, old_plane_crtc->base.id);
9667 ret = dm_atomic_get_state(state, &dm_state);
9671 if (!dc_remove_plane_from_context(
9673 dm_old_crtc_state->stream,
9674 dm_old_plane_state->dc_state,
9675 dm_state->context)) {
9680 if (dm_old_plane_state->dc_state)
9681 dc_plane_state_release(dm_old_plane_state->dc_state);
9683 dm_new_plane_state->dc_state = NULL;
9685 *lock_and_validation_needed = true;
9687 } else { /* Add new planes */
9688 struct dc_plane_state *dc_new_plane_state;
9690 if (drm_atomic_plane_disabling(plane->state, new_plane_state))
9693 if (!new_plane_crtc)
9696 new_crtc_state = drm_atomic_get_new_crtc_state(state, new_plane_crtc);
9697 dm_new_crtc_state = to_dm_crtc_state(new_crtc_state);
9699 if (!dm_new_crtc_state->stream)
9705 ret = amdgpu_dm_plane_helper_check_state(new_plane_state, new_crtc_state);
9709 WARN_ON(dm_new_plane_state->dc_state);
9711 dc_new_plane_state = dc_create_plane_state(dc);
9712 if (!dc_new_plane_state)
9715 /* Block top most plane from being a video plane */
9716 if (plane->type == DRM_PLANE_TYPE_OVERLAY) {
9717 if (is_video_format(new_plane_state->fb->format->format) && *is_top_most_overlay)
9720 *is_top_most_overlay = false;
9723 DRM_DEBUG_ATOMIC("Enabling DRM plane: %d on DRM crtc %d\n",
9724 plane->base.id, new_plane_crtc->base.id);
9726 ret = fill_dc_plane_attributes(
9727 drm_to_adev(new_plane_crtc->dev),
9732 dc_plane_state_release(dc_new_plane_state);
9736 ret = dm_atomic_get_state(state, &dm_state);
9738 dc_plane_state_release(dc_new_plane_state);
9743 * Any atomic check errors that occur after this will
9744 * not need a release. The plane state will be attached
9745 * to the stream, and therefore part of the atomic
9746 * state. It'll be released when the atomic state is
9749 if (!dc_add_plane_to_context(
9751 dm_new_crtc_state->stream,
9753 dm_state->context)) {
9755 dc_plane_state_release(dc_new_plane_state);
9759 dm_new_plane_state->dc_state = dc_new_plane_state;
9761 dm_new_crtc_state->mpo_requested |= (plane->type == DRM_PLANE_TYPE_OVERLAY);
9763 /* Tell DC to do a full surface update every time there
9764 * is a plane change. Inefficient, but works for now.
9766 dm_new_plane_state->dc_state->update_flags.bits.full_update = 1;
9768 *lock_and_validation_needed = true;
9775 static void dm_get_oriented_plane_size(struct drm_plane_state *plane_state,
9776 int *src_w, int *src_h)
9778 switch (plane_state->rotation & DRM_MODE_ROTATE_MASK) {
9779 case DRM_MODE_ROTATE_90:
9780 case DRM_MODE_ROTATE_270:
9781 *src_w = plane_state->src_h >> 16;
9782 *src_h = plane_state->src_w >> 16;
9784 case DRM_MODE_ROTATE_0:
9785 case DRM_MODE_ROTATE_180:
9787 *src_w = plane_state->src_w >> 16;
9788 *src_h = plane_state->src_h >> 16;
9793 static int dm_check_crtc_cursor(struct drm_atomic_state *state,
9794 struct drm_crtc *crtc,
9795 struct drm_crtc_state *new_crtc_state)
9797 struct drm_plane *cursor = crtc->cursor, *underlying;
9798 struct drm_plane_state *new_cursor_state, *new_underlying_state;
9800 int cursor_scale_w, cursor_scale_h, underlying_scale_w, underlying_scale_h;
9801 int cursor_src_w, cursor_src_h;
9802 int underlying_src_w, underlying_src_h;
9804 /* On DCE and DCN there is no dedicated hardware cursor plane. We get a
9805 * cursor per pipe but it's going to inherit the scaling and
9806 * positioning from the underlying pipe. Check the cursor plane's
9807 * blending properties match the underlying planes'. */
9809 new_cursor_state = drm_atomic_get_new_plane_state(state, cursor);
9810 if (!new_cursor_state || !new_cursor_state->fb) {
9814 dm_get_oriented_plane_size(new_cursor_state, &cursor_src_w, &cursor_src_h);
9815 cursor_scale_w = new_cursor_state->crtc_w * 1000 / cursor_src_w;
9816 cursor_scale_h = new_cursor_state->crtc_h * 1000 / cursor_src_h;
9818 for_each_new_plane_in_state_reverse(state, underlying, new_underlying_state, i) {
9819 /* Narrow down to non-cursor planes on the same CRTC as the cursor */
9820 if (new_underlying_state->crtc != crtc || underlying == crtc->cursor)
9823 /* Ignore disabled planes */
9824 if (!new_underlying_state->fb)
9827 dm_get_oriented_plane_size(new_underlying_state,
9828 &underlying_src_w, &underlying_src_h);
9829 underlying_scale_w = new_underlying_state->crtc_w * 1000 / underlying_src_w;
9830 underlying_scale_h = new_underlying_state->crtc_h * 1000 / underlying_src_h;
9832 if (cursor_scale_w != underlying_scale_w ||
9833 cursor_scale_h != underlying_scale_h) {
9834 drm_dbg_atomic(crtc->dev,
9835 "Cursor [PLANE:%d:%s] scaling doesn't match underlying [PLANE:%d:%s]\n",
9836 cursor->base.id, cursor->name, underlying->base.id, underlying->name);
9840 /* If this plane covers the whole CRTC, no need to check planes underneath */
9841 if (new_underlying_state->crtc_x <= 0 &&
9842 new_underlying_state->crtc_y <= 0 &&
9843 new_underlying_state->crtc_x + new_underlying_state->crtc_w >= new_crtc_state->mode.hdisplay &&
9844 new_underlying_state->crtc_y + new_underlying_state->crtc_h >= new_crtc_state->mode.vdisplay)
9851 static int add_affected_mst_dsc_crtcs(struct drm_atomic_state *state, struct drm_crtc *crtc)
9853 struct drm_connector *connector;
9854 struct drm_connector_state *conn_state, *old_conn_state;
9855 struct amdgpu_dm_connector *aconnector = NULL;
9857 for_each_oldnew_connector_in_state(state, connector, old_conn_state, conn_state, i) {
9858 if (!conn_state->crtc)
9859 conn_state = old_conn_state;
9861 if (conn_state->crtc != crtc)
9864 aconnector = to_amdgpu_dm_connector(connector);
9865 if (!aconnector->mst_output_port || !aconnector->mst_root)
9874 return drm_dp_mst_add_affected_dsc_crtcs(state, &aconnector->mst_root->mst_mgr);
9878 * amdgpu_dm_atomic_check() - Atomic check implementation for AMDgpu DM.
9880 * @dev: The DRM device
9881 * @state: The atomic state to commit
9883 * Validate that the given atomic state is programmable by DC into hardware.
9884 * This involves constructing a &struct dc_state reflecting the new hardware
9885 * state we wish to commit, then querying DC to see if it is programmable. It's
9886 * important not to modify the existing DC state. Otherwise, atomic_check
9887 * may unexpectedly commit hardware changes.
9889 * When validating the DC state, it's important that the right locks are
9890 * acquired. For full updates case which removes/adds/updates streams on one
9891 * CRTC while flipping on another CRTC, acquiring global lock will guarantee
9892 * that any such full update commit will wait for completion of any outstanding
9893 * flip using DRMs synchronization events.
9895 * Note that DM adds the affected connectors for all CRTCs in state, when that
9896 * might not seem necessary. This is because DC stream creation requires the
9897 * DC sink, which is tied to the DRM connector state. Cleaning this up should
9898 * be possible but non-trivial - a possible TODO item.
9900 * Return: -Error code if validation failed.
9902 static int amdgpu_dm_atomic_check(struct drm_device *dev,
9903 struct drm_atomic_state *state)
9905 struct amdgpu_device *adev = drm_to_adev(dev);
9906 struct dm_atomic_state *dm_state = NULL;
9907 struct dc *dc = adev->dm.dc;
9908 struct drm_connector *connector;
9909 struct drm_connector_state *old_con_state, *new_con_state;
9910 struct drm_crtc *crtc;
9911 struct drm_crtc_state *old_crtc_state, *new_crtc_state;
9912 struct drm_plane *plane;
9913 struct drm_plane_state *old_plane_state, *new_plane_state;
9914 enum dc_status status;
9916 bool lock_and_validation_needed = false;
9917 bool is_top_most_overlay = true;
9918 struct dm_crtc_state *dm_old_crtc_state, *dm_new_crtc_state;
9919 struct drm_dp_mst_topology_mgr *mgr;
9920 struct drm_dp_mst_topology_state *mst_state;
9921 struct dsc_mst_fairness_vars vars[MAX_PIPES];
9923 trace_amdgpu_dm_atomic_check_begin(state);
9925 ret = drm_atomic_helper_check_modeset(dev, state);
9927 DRM_DEBUG_DRIVER("drm_atomic_helper_check_modeset() failed\n");
9931 /* Check connector changes */
9932 for_each_oldnew_connector_in_state(state, connector, old_con_state, new_con_state, i) {
9933 struct dm_connector_state *dm_old_con_state = to_dm_connector_state(old_con_state);
9934 struct dm_connector_state *dm_new_con_state = to_dm_connector_state(new_con_state);
9936 /* Skip connectors that are disabled or part of modeset already. */
9937 if (!new_con_state->crtc)
9940 new_crtc_state = drm_atomic_get_crtc_state(state, new_con_state->crtc);
9941 if (IS_ERR(new_crtc_state)) {
9942 DRM_DEBUG_DRIVER("drm_atomic_get_crtc_state() failed\n");
9943 ret = PTR_ERR(new_crtc_state);
9947 if (dm_old_con_state->abm_level != dm_new_con_state->abm_level ||
9948 dm_old_con_state->scaling != dm_new_con_state->scaling)
9949 new_crtc_state->connectors_changed = true;
9952 if (dc_resource_is_dsc_encoding_supported(dc)) {
9953 for_each_oldnew_crtc_in_state(state, crtc, old_crtc_state, new_crtc_state, i) {
9954 if (drm_atomic_crtc_needs_modeset(new_crtc_state)) {
9955 ret = add_affected_mst_dsc_crtcs(state, crtc);
9957 DRM_DEBUG_DRIVER("add_affected_mst_dsc_crtcs() failed\n");
9963 for_each_oldnew_crtc_in_state(state, crtc, old_crtc_state, new_crtc_state, i) {
9964 dm_old_crtc_state = to_dm_crtc_state(old_crtc_state);
9966 if (!drm_atomic_crtc_needs_modeset(new_crtc_state) &&
9967 !new_crtc_state->color_mgmt_changed &&
9968 old_crtc_state->vrr_enabled == new_crtc_state->vrr_enabled &&
9969 dm_old_crtc_state->dsc_force_changed == false)
9972 ret = amdgpu_dm_verify_lut_sizes(new_crtc_state);
9974 DRM_DEBUG_DRIVER("amdgpu_dm_verify_lut_sizes() failed\n");
9978 if (!new_crtc_state->enable)
9981 ret = drm_atomic_add_affected_connectors(state, crtc);
9983 DRM_DEBUG_DRIVER("drm_atomic_add_affected_connectors() failed\n");
9987 ret = drm_atomic_add_affected_planes(state, crtc);
9989 DRM_DEBUG_DRIVER("drm_atomic_add_affected_planes() failed\n");
9993 if (dm_old_crtc_state->dsc_force_changed)
9994 new_crtc_state->mode_changed = true;
9998 * Add all primary and overlay planes on the CRTC to the state
9999 * whenever a plane is enabled to maintain correct z-ordering
10000 * and to enable fast surface updates.
10002 drm_for_each_crtc(crtc, dev) {
10003 bool modified = false;
10005 for_each_oldnew_plane_in_state(state, plane, old_plane_state, new_plane_state, i) {
10006 if (plane->type == DRM_PLANE_TYPE_CURSOR)
10009 if (new_plane_state->crtc == crtc ||
10010 old_plane_state->crtc == crtc) {
10019 drm_for_each_plane_mask(plane, state->dev, crtc->state->plane_mask) {
10020 if (plane->type == DRM_PLANE_TYPE_CURSOR)
10024 drm_atomic_get_plane_state(state, plane);
10026 if (IS_ERR(new_plane_state)) {
10027 ret = PTR_ERR(new_plane_state);
10028 DRM_DEBUG_DRIVER("new_plane_state is BAD\n");
10035 * DC consults the zpos (layer_index in DC terminology) to determine the
10036 * hw plane on which to enable the hw cursor (see
10037 * `dcn10_can_pipe_disable_cursor`). By now, all modified planes are in
10038 * atomic state, so call drm helper to normalize zpos.
10040 ret = drm_atomic_normalize_zpos(dev, state);
10042 drm_dbg(dev, "drm_atomic_normalize_zpos() failed\n");
10046 /* Remove exiting planes if they are modified */
10047 for_each_oldnew_plane_in_state_reverse(state, plane, old_plane_state, new_plane_state, i) {
10048 ret = dm_update_plane_state(dc, state, plane,
10052 &lock_and_validation_needed,
10053 &is_top_most_overlay);
10055 DRM_DEBUG_DRIVER("dm_update_plane_state() failed\n");
10060 /* Disable all crtcs which require disable */
10061 for_each_oldnew_crtc_in_state(state, crtc, old_crtc_state, new_crtc_state, i) {
10062 ret = dm_update_crtc_state(&adev->dm, state, crtc,
10066 &lock_and_validation_needed);
10068 DRM_DEBUG_DRIVER("DISABLE: dm_update_crtc_state() failed\n");
10073 /* Enable all crtcs which require enable */
10074 for_each_oldnew_crtc_in_state(state, crtc, old_crtc_state, new_crtc_state, i) {
10075 ret = dm_update_crtc_state(&adev->dm, state, crtc,
10079 &lock_and_validation_needed);
10081 DRM_DEBUG_DRIVER("ENABLE: dm_update_crtc_state() failed\n");
10086 /* Add new/modified planes */
10087 for_each_oldnew_plane_in_state_reverse(state, plane, old_plane_state, new_plane_state, i) {
10088 ret = dm_update_plane_state(dc, state, plane,
10092 &lock_and_validation_needed,
10093 &is_top_most_overlay);
10095 DRM_DEBUG_DRIVER("dm_update_plane_state() failed\n");
10100 if (dc_resource_is_dsc_encoding_supported(dc)) {
10101 ret = pre_validate_dsc(state, &dm_state, vars);
10106 /* Run this here since we want to validate the streams we created */
10107 ret = drm_atomic_helper_check_planes(dev, state);
10109 DRM_DEBUG_DRIVER("drm_atomic_helper_check_planes() failed\n");
10113 for_each_new_crtc_in_state(state, crtc, new_crtc_state, i) {
10114 dm_new_crtc_state = to_dm_crtc_state(new_crtc_state);
10115 if (dm_new_crtc_state->mpo_requested)
10116 DRM_DEBUG_DRIVER("MPO enablement requested on crtc:[%p]\n", crtc);
10119 /* Check cursor planes scaling */
10120 for_each_new_crtc_in_state(state, crtc, new_crtc_state, i) {
10121 ret = dm_check_crtc_cursor(state, crtc, new_crtc_state);
10123 DRM_DEBUG_DRIVER("dm_check_crtc_cursor() failed\n");
10128 if (state->legacy_cursor_update) {
10130 * This is a fast cursor update coming from the plane update
10131 * helper, check if it can be done asynchronously for better
10134 state->async_update =
10135 !drm_atomic_helper_async_check(dev, state);
10138 * Skip the remaining global validation if this is an async
10139 * update. Cursor updates can be done without affecting
10140 * state or bandwidth calcs and this avoids the performance
10141 * penalty of locking the private state object and
10142 * allocating a new dc_state.
10144 if (state->async_update)
10148 /* Check scaling and underscan changes*/
10149 /* TODO Removed scaling changes validation due to inability to commit
10150 * new stream into context w\o causing full reset. Need to
10151 * decide how to handle.
10153 for_each_oldnew_connector_in_state(state, connector, old_con_state, new_con_state, i) {
10154 struct dm_connector_state *dm_old_con_state = to_dm_connector_state(old_con_state);
10155 struct dm_connector_state *dm_new_con_state = to_dm_connector_state(new_con_state);
10156 struct amdgpu_crtc *acrtc = to_amdgpu_crtc(dm_new_con_state->base.crtc);
10158 /* Skip any modesets/resets */
10159 if (!acrtc || drm_atomic_crtc_needs_modeset(
10160 drm_atomic_get_new_crtc_state(state, &acrtc->base)))
10163 /* Skip any thing not scale or underscan changes */
10164 if (!is_scaling_state_different(dm_new_con_state, dm_old_con_state))
10167 lock_and_validation_needed = true;
10170 /* set the slot info for each mst_state based on the link encoding format */
10171 for_each_new_mst_mgr_in_state(state, mgr, mst_state, i) {
10172 struct amdgpu_dm_connector *aconnector;
10173 struct drm_connector *connector;
10174 struct drm_connector_list_iter iter;
10175 u8 link_coding_cap;
10177 drm_connector_list_iter_begin(dev, &iter);
10178 drm_for_each_connector_iter(connector, &iter) {
10179 if (connector->index == mst_state->mgr->conn_base_id) {
10180 aconnector = to_amdgpu_dm_connector(connector);
10181 link_coding_cap = dc_link_dp_mst_decide_link_encoding_format(aconnector->dc_link);
10182 drm_dp_mst_update_slots(mst_state, link_coding_cap);
10187 drm_connector_list_iter_end(&iter);
10191 * Streams and planes are reset when there are changes that affect
10192 * bandwidth. Anything that affects bandwidth needs to go through
10193 * DC global validation to ensure that the configuration can be applied
10196 * We have to currently stall out here in atomic_check for outstanding
10197 * commits to finish in this case because our IRQ handlers reference
10198 * DRM state directly - we can end up disabling interrupts too early
10201 * TODO: Remove this stall and drop DM state private objects.
10203 if (lock_and_validation_needed) {
10204 ret = dm_atomic_get_state(state, &dm_state);
10206 DRM_DEBUG_DRIVER("dm_atomic_get_state() failed\n");
10210 ret = do_aquire_global_lock(dev, state);
10212 DRM_DEBUG_DRIVER("do_aquire_global_lock() failed\n");
10216 ret = compute_mst_dsc_configs_for_state(state, dm_state->context, vars);
10218 DRM_DEBUG_DRIVER("compute_mst_dsc_configs_for_state() failed\n");
10223 ret = dm_update_mst_vcpi_slots_for_dsc(state, dm_state->context, vars);
10225 DRM_DEBUG_DRIVER("dm_update_mst_vcpi_slots_for_dsc() failed\n");
10230 * Perform validation of MST topology in the state:
10231 * We need to perform MST atomic check before calling
10232 * dc_validate_global_state(), or there is a chance
10233 * to get stuck in an infinite loop and hang eventually.
10235 ret = drm_dp_mst_atomic_check(state);
10237 DRM_DEBUG_DRIVER("drm_dp_mst_atomic_check() failed\n");
10240 status = dc_validate_global_state(dc, dm_state->context, true);
10241 if (status != DC_OK) {
10242 DRM_DEBUG_DRIVER("DC global validation failure: %s (%d)",
10243 dc_status_to_str(status), status);
10249 * The commit is a fast update. Fast updates shouldn't change
10250 * the DC context, affect global validation, and can have their
10251 * commit work done in parallel with other commits not touching
10252 * the same resource. If we have a new DC context as part of
10253 * the DM atomic state from validation we need to free it and
10254 * retain the existing one instead.
10256 * Furthermore, since the DM atomic state only contains the DC
10257 * context and can safely be annulled, we can free the state
10258 * and clear the associated private object now to free
10259 * some memory and avoid a possible use-after-free later.
10262 for (i = 0; i < state->num_private_objs; i++) {
10263 struct drm_private_obj *obj = state->private_objs[i].ptr;
10265 if (obj->funcs == adev->dm.atomic_obj.funcs) {
10266 int j = state->num_private_objs-1;
10268 dm_atomic_destroy_state(obj,
10269 state->private_objs[i].state);
10271 /* If i is not at the end of the array then the
10272 * last element needs to be moved to where i was
10273 * before the array can safely be truncated.
10276 state->private_objs[i] =
10277 state->private_objs[j];
10279 state->private_objs[j].ptr = NULL;
10280 state->private_objs[j].state = NULL;
10281 state->private_objs[j].old_state = NULL;
10282 state->private_objs[j].new_state = NULL;
10284 state->num_private_objs = j;
10290 /* Store the overall update type for use later in atomic check. */
10291 for_each_new_crtc_in_state (state, crtc, new_crtc_state, i) {
10292 struct dm_crtc_state *dm_new_crtc_state =
10293 to_dm_crtc_state(new_crtc_state);
10295 dm_new_crtc_state->update_type = lock_and_validation_needed ?
10300 /* Must be success */
10303 trace_amdgpu_dm_atomic_check_finish(state, ret);
10308 if (ret == -EDEADLK)
10309 DRM_DEBUG_DRIVER("Atomic check stopped to avoid deadlock.\n");
10310 else if (ret == -EINTR || ret == -EAGAIN || ret == -ERESTARTSYS)
10311 DRM_DEBUG_DRIVER("Atomic check stopped due to signal.\n");
10313 DRM_DEBUG_DRIVER("Atomic check failed with err: %d \n", ret);
10315 trace_amdgpu_dm_atomic_check_finish(state, ret);
10320 static bool is_dp_capable_without_timing_msa(struct dc *dc,
10321 struct amdgpu_dm_connector *amdgpu_dm_connector)
10324 bool capable = false;
10326 if (amdgpu_dm_connector->dc_link &&
10327 dm_helpers_dp_read_dpcd(
10329 amdgpu_dm_connector->dc_link,
10330 DP_DOWN_STREAM_PORT_COUNT,
10332 sizeof(dpcd_data))) {
10333 capable = (dpcd_data & DP_MSA_TIMING_PAR_IGNORED) ? true:false;
10339 static bool dm_edid_parser_send_cea(struct amdgpu_display_manager *dm,
10340 unsigned int offset,
10341 unsigned int total_length,
10343 unsigned int length,
10344 struct amdgpu_hdmi_vsdb_info *vsdb)
10347 union dmub_rb_cmd cmd;
10348 struct dmub_cmd_send_edid_cea *input;
10349 struct dmub_cmd_edid_cea_output *output;
10351 if (length > DMUB_EDID_CEA_DATA_CHUNK_BYTES)
10354 memset(&cmd, 0, sizeof(cmd));
10356 input = &cmd.edid_cea.data.input;
10358 cmd.edid_cea.header.type = DMUB_CMD__EDID_CEA;
10359 cmd.edid_cea.header.sub_type = 0;
10360 cmd.edid_cea.header.payload_bytes =
10361 sizeof(cmd.edid_cea) - sizeof(cmd.edid_cea.header);
10362 input->offset = offset;
10363 input->length = length;
10364 input->cea_total_length = total_length;
10365 memcpy(input->payload, data, length);
10367 res = dm_execute_dmub_cmd(dm->dc->ctx, &cmd, DM_DMUB_WAIT_TYPE_WAIT_WITH_REPLY);
10369 DRM_ERROR("EDID CEA parser failed\n");
10373 output = &cmd.edid_cea.data.output;
10375 if (output->type == DMUB_CMD__EDID_CEA_ACK) {
10376 if (!output->ack.success) {
10377 DRM_ERROR("EDID CEA ack failed at offset %d\n",
10378 output->ack.offset);
10380 } else if (output->type == DMUB_CMD__EDID_CEA_AMD_VSDB) {
10381 if (!output->amd_vsdb.vsdb_found)
10384 vsdb->freesync_supported = output->amd_vsdb.freesync_supported;
10385 vsdb->amd_vsdb_version = output->amd_vsdb.amd_vsdb_version;
10386 vsdb->min_refresh_rate_hz = output->amd_vsdb.min_frame_rate;
10387 vsdb->max_refresh_rate_hz = output->amd_vsdb.max_frame_rate;
10389 DRM_WARN("Unknown EDID CEA parser results\n");
10396 static bool parse_edid_cea_dmcu(struct amdgpu_display_manager *dm,
10397 u8 *edid_ext, int len,
10398 struct amdgpu_hdmi_vsdb_info *vsdb_info)
10402 /* send extension block to DMCU for parsing */
10403 for (i = 0; i < len; i += 8) {
10407 /* send 8 bytes a time */
10408 if (!dc_edid_parser_send_cea(dm->dc, i, len, &edid_ext[i], 8))
10412 /* EDID block sent completed, expect result */
10413 int version, min_rate, max_rate;
10415 res = dc_edid_parser_recv_amd_vsdb(dm->dc, &version, &min_rate, &max_rate);
10417 /* amd vsdb found */
10418 vsdb_info->freesync_supported = 1;
10419 vsdb_info->amd_vsdb_version = version;
10420 vsdb_info->min_refresh_rate_hz = min_rate;
10421 vsdb_info->max_refresh_rate_hz = max_rate;
10429 res = dc_edid_parser_recv_cea_ack(dm->dc, &offset);
10437 static bool parse_edid_cea_dmub(struct amdgpu_display_manager *dm,
10438 u8 *edid_ext, int len,
10439 struct amdgpu_hdmi_vsdb_info *vsdb_info)
10443 /* send extension block to DMCU for parsing */
10444 for (i = 0; i < len; i += 8) {
10445 /* send 8 bytes a time */
10446 if (!dm_edid_parser_send_cea(dm, i, len, &edid_ext[i], 8, vsdb_info))
10450 return vsdb_info->freesync_supported;
10453 static bool parse_edid_cea(struct amdgpu_dm_connector *aconnector,
10454 u8 *edid_ext, int len,
10455 struct amdgpu_hdmi_vsdb_info *vsdb_info)
10457 struct amdgpu_device *adev = drm_to_adev(aconnector->base.dev);
10460 mutex_lock(&adev->dm.dc_lock);
10461 if (adev->dm.dmub_srv)
10462 ret = parse_edid_cea_dmub(&adev->dm, edid_ext, len, vsdb_info);
10464 ret = parse_edid_cea_dmcu(&adev->dm, edid_ext, len, vsdb_info);
10465 mutex_unlock(&adev->dm.dc_lock);
10469 static int parse_hdmi_amd_vsdb(struct amdgpu_dm_connector *aconnector,
10470 struct edid *edid, struct amdgpu_hdmi_vsdb_info *vsdb_info)
10472 u8 *edid_ext = NULL;
10474 bool valid_vsdb_found = false;
10476 /*----- drm_find_cea_extension() -----*/
10477 /* No EDID or EDID extensions */
10478 if (edid == NULL || edid->extensions == 0)
10481 /* Find CEA extension */
10482 for (i = 0; i < edid->extensions; i++) {
10483 edid_ext = (uint8_t *)edid + EDID_LENGTH * (i + 1);
10484 if (edid_ext[0] == CEA_EXT)
10488 if (i == edid->extensions)
10491 /*----- cea_db_offsets() -----*/
10492 if (edid_ext[0] != CEA_EXT)
10495 valid_vsdb_found = parse_edid_cea(aconnector, edid_ext, EDID_LENGTH, vsdb_info);
10497 return valid_vsdb_found ? i : -ENODEV;
10501 * amdgpu_dm_update_freesync_caps - Update Freesync capabilities
10503 * @connector: Connector to query.
10504 * @edid: EDID from monitor
10506 * Amdgpu supports Freesync in DP and HDMI displays, and it is required to keep
10507 * track of some of the display information in the internal data struct used by
10508 * amdgpu_dm. This function checks which type of connector we need to set the
10509 * FreeSync parameters.
10511 void amdgpu_dm_update_freesync_caps(struct drm_connector *connector,
10515 struct detailed_timing *timing;
10516 struct detailed_non_pixel *data;
10517 struct detailed_data_monitor_range *range;
10518 struct amdgpu_dm_connector *amdgpu_dm_connector =
10519 to_amdgpu_dm_connector(connector);
10520 struct dm_connector_state *dm_con_state = NULL;
10521 struct dc_sink *sink;
10523 struct drm_device *dev = connector->dev;
10524 struct amdgpu_device *adev = drm_to_adev(dev);
10525 struct amdgpu_hdmi_vsdb_info vsdb_info = {0};
10526 bool freesync_capable = false;
10527 enum adaptive_sync_type as_type = ADAPTIVE_SYNC_TYPE_NONE;
10529 if (!connector->state) {
10530 DRM_ERROR("%s - Connector has no state", __func__);
10534 sink = amdgpu_dm_connector->dc_sink ?
10535 amdgpu_dm_connector->dc_sink :
10536 amdgpu_dm_connector->dc_em_sink;
10538 if (!edid || !sink) {
10539 dm_con_state = to_dm_connector_state(connector->state);
10541 amdgpu_dm_connector->min_vfreq = 0;
10542 amdgpu_dm_connector->max_vfreq = 0;
10543 amdgpu_dm_connector->pixel_clock_mhz = 0;
10544 connector->display_info.monitor_range.min_vfreq = 0;
10545 connector->display_info.monitor_range.max_vfreq = 0;
10546 freesync_capable = false;
10551 dm_con_state = to_dm_connector_state(connector->state);
10553 if (!adev->dm.freesync_module)
10556 if (sink->sink_signal == SIGNAL_TYPE_DISPLAY_PORT
10557 || sink->sink_signal == SIGNAL_TYPE_EDP) {
10558 bool edid_check_required = false;
10561 edid_check_required = is_dp_capable_without_timing_msa(
10563 amdgpu_dm_connector);
10566 if (edid_check_required == true && (edid->version > 1 ||
10567 (edid->version == 1 && edid->revision > 1))) {
10568 for (i = 0; i < 4; i++) {
10570 timing = &edid->detailed_timings[i];
10571 data = &timing->data.other_data;
10572 range = &data->data.range;
10574 * Check if monitor has continuous frequency mode
10576 if (data->type != EDID_DETAIL_MONITOR_RANGE)
10579 * Check for flag range limits only. If flag == 1 then
10580 * no additional timing information provided.
10581 * Default GTF, GTF Secondary curve and CVT are not
10584 if (range->flags != 1)
10587 amdgpu_dm_connector->min_vfreq = range->min_vfreq;
10588 amdgpu_dm_connector->max_vfreq = range->max_vfreq;
10589 amdgpu_dm_connector->pixel_clock_mhz =
10590 range->pixel_clock_mhz * 10;
10592 connector->display_info.monitor_range.min_vfreq = range->min_vfreq;
10593 connector->display_info.monitor_range.max_vfreq = range->max_vfreq;
10598 if (amdgpu_dm_connector->max_vfreq -
10599 amdgpu_dm_connector->min_vfreq > 10) {
10601 freesync_capable = true;
10604 } else if (edid && sink->sink_signal == SIGNAL_TYPE_HDMI_TYPE_A) {
10605 i = parse_hdmi_amd_vsdb(amdgpu_dm_connector, edid, &vsdb_info);
10606 if (i >= 0 && vsdb_info.freesync_supported) {
10607 timing = &edid->detailed_timings[i];
10608 data = &timing->data.other_data;
10610 amdgpu_dm_connector->min_vfreq = vsdb_info.min_refresh_rate_hz;
10611 amdgpu_dm_connector->max_vfreq = vsdb_info.max_refresh_rate_hz;
10612 if (amdgpu_dm_connector->max_vfreq - amdgpu_dm_connector->min_vfreq > 10)
10613 freesync_capable = true;
10615 connector->display_info.monitor_range.min_vfreq = vsdb_info.min_refresh_rate_hz;
10616 connector->display_info.monitor_range.max_vfreq = vsdb_info.max_refresh_rate_hz;
10620 as_type = dm_get_adaptive_sync_support_type(amdgpu_dm_connector->dc_link);
10622 if (as_type == FREESYNC_TYPE_PCON_IN_WHITELIST) {
10623 i = parse_hdmi_amd_vsdb(amdgpu_dm_connector, edid, &vsdb_info);
10624 if (i >= 0 && vsdb_info.freesync_supported && vsdb_info.amd_vsdb_version > 0) {
10626 amdgpu_dm_connector->pack_sdp_v1_3 = true;
10627 amdgpu_dm_connector->as_type = as_type;
10628 amdgpu_dm_connector->vsdb_info = vsdb_info;
10630 amdgpu_dm_connector->min_vfreq = vsdb_info.min_refresh_rate_hz;
10631 amdgpu_dm_connector->max_vfreq = vsdb_info.max_refresh_rate_hz;
10632 if (amdgpu_dm_connector->max_vfreq - amdgpu_dm_connector->min_vfreq > 10)
10633 freesync_capable = true;
10635 connector->display_info.monitor_range.min_vfreq = vsdb_info.min_refresh_rate_hz;
10636 connector->display_info.monitor_range.max_vfreq = vsdb_info.max_refresh_rate_hz;
10642 dm_con_state->freesync_capable = freesync_capable;
10644 if (connector->vrr_capable_property)
10645 drm_connector_set_vrr_capable_property(connector,
10649 void amdgpu_dm_trigger_timing_sync(struct drm_device *dev)
10651 struct amdgpu_device *adev = drm_to_adev(dev);
10652 struct dc *dc = adev->dm.dc;
10655 mutex_lock(&adev->dm.dc_lock);
10656 if (dc->current_state) {
10657 for (i = 0; i < dc->current_state->stream_count; ++i)
10658 dc->current_state->streams[i]
10659 ->triggered_crtc_reset.enabled =
10660 adev->dm.force_timing_sync;
10662 dm_enable_per_frame_crtc_master_sync(dc->current_state);
10663 dc_trigger_sync(dc, dc->current_state);
10665 mutex_unlock(&adev->dm.dc_lock);
10668 void dm_write_reg_func(const struct dc_context *ctx, uint32_t address,
10669 u32 value, const char *func_name)
10671 #ifdef DM_CHECK_ADDR_0
10672 if (address == 0) {
10673 DC_ERR("invalid register write. address = 0");
10677 cgs_write_register(ctx->cgs_device, address, value);
10678 trace_amdgpu_dc_wreg(&ctx->perf_trace->write_count, address, value);
10681 uint32_t dm_read_reg_func(const struct dc_context *ctx, uint32_t address,
10682 const char *func_name)
10685 #ifdef DM_CHECK_ADDR_0
10686 if (address == 0) {
10687 DC_ERR("invalid register read; address = 0\n");
10692 if (ctx->dmub_srv &&
10693 ctx->dmub_srv->reg_helper_offload.gather_in_progress &&
10694 !ctx->dmub_srv->reg_helper_offload.should_burst_write) {
10699 value = cgs_read_register(ctx->cgs_device, address);
10701 trace_amdgpu_dc_rreg(&ctx->perf_trace->read_count, address, value);
10706 int amdgpu_dm_process_dmub_aux_transfer_sync(
10707 struct dc_context *ctx,
10708 unsigned int link_index,
10709 struct aux_payload *payload,
10710 enum aux_return_code_type *operation_result)
10712 struct amdgpu_device *adev = ctx->driver_context;
10713 struct dmub_notification *p_notify = adev->dm.dmub_notify;
10716 mutex_lock(&adev->dm.dpia_aux_lock);
10717 if (!dc_process_dmub_aux_transfer_async(ctx->dc, link_index, payload)) {
10718 *operation_result = AUX_RET_ERROR_ENGINE_ACQUIRE;
10722 if (!wait_for_completion_timeout(&adev->dm.dmub_aux_transfer_done, 10 * HZ)) {
10723 DRM_ERROR("wait_for_completion_timeout timeout!");
10724 *operation_result = AUX_RET_ERROR_TIMEOUT;
10728 if (p_notify->result != AUX_RET_SUCCESS) {
10730 * Transient states before tunneling is enabled could
10731 * lead to this error. We can ignore this for now.
10733 if (p_notify->result != AUX_RET_ERROR_PROTOCOL_ERROR) {
10734 DRM_WARN("DPIA AUX failed on 0x%x(%d), error %d\n",
10735 payload->address, payload->length,
10738 *operation_result = AUX_RET_ERROR_INVALID_REPLY;
10743 payload->reply[0] = adev->dm.dmub_notify->aux_reply.command;
10744 if (!payload->write && p_notify->aux_reply.length &&
10745 (payload->reply[0] == AUX_TRANSACTION_REPLY_AUX_ACK)) {
10747 if (payload->length != p_notify->aux_reply.length) {
10748 DRM_WARN("invalid read length %d from DPIA AUX 0x%x(%d)!\n",
10749 p_notify->aux_reply.length,
10750 payload->address, payload->length);
10751 *operation_result = AUX_RET_ERROR_INVALID_REPLY;
10755 memcpy(payload->data, p_notify->aux_reply.data,
10756 p_notify->aux_reply.length);
10760 ret = p_notify->aux_reply.length;
10761 *operation_result = p_notify->result;
10763 reinit_completion(&adev->dm.dmub_aux_transfer_done);
10764 mutex_unlock(&adev->dm.dpia_aux_lock);
10768 int amdgpu_dm_process_dmub_set_config_sync(
10769 struct dc_context *ctx,
10770 unsigned int link_index,
10771 struct set_config_cmd_payload *payload,
10772 enum set_config_status *operation_result)
10774 struct amdgpu_device *adev = ctx->driver_context;
10775 bool is_cmd_complete;
10778 mutex_lock(&adev->dm.dpia_aux_lock);
10779 is_cmd_complete = dc_process_dmub_set_config_async(ctx->dc,
10780 link_index, payload, adev->dm.dmub_notify);
10782 if (is_cmd_complete || wait_for_completion_timeout(&adev->dm.dmub_aux_transfer_done, 10 * HZ)) {
10784 *operation_result = adev->dm.dmub_notify->sc_status;
10786 DRM_ERROR("wait_for_completion_timeout timeout!");
10788 *operation_result = SET_CONFIG_UNKNOWN_ERROR;
10791 if (!is_cmd_complete)
10792 reinit_completion(&adev->dm.dmub_aux_transfer_done);
10793 mutex_unlock(&adev->dm.dpia_aux_lock);
10798 * Check whether seamless boot is supported.
10800 * So far we only support seamless boot on CHIP_VANGOGH.
10801 * If everything goes well, we may consider expanding
10802 * seamless boot to other ASICs.
10804 bool check_seamless_boot_capability(struct amdgpu_device *adev)
10806 switch (adev->ip_versions[DCE_HWIP][0]) {
10807 case IP_VERSION(3, 0, 1):
10808 if (!adev->mman.keep_stolen_vga_memory)
10818 bool dm_execute_dmub_cmd(const struct dc_context *ctx, union dmub_rb_cmd *cmd, enum dm_dmub_wait_type wait_type)
10820 return dc_dmub_srv_cmd_run(ctx->dmub_srv, cmd, wait_type);
10823 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)
10825 return dc_dmub_srv_cmd_run_list(ctx->dmub_srv, count, cmd, wait_type);