2 * Copyright 2015 Advanced Micro Devices, Inc.
4 * Permission is hereby granted, free of charge, to any person obtaining a
5 * copy of this software and associated documentation files (the "Software"),
6 * to deal in the Software without restriction, including without limitation
7 * the rights to use, copy, modify, merge, publish, distribute, sublicense,
8 * and/or sell copies of the Software, and to permit persons to whom the
9 * Software is furnished to do so, subject to the following conditions:
11 * The above copyright notice and this permission notice shall be included in
12 * all copies or substantial portions of the Software.
14 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
15 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
16 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
17 * THE COPYRIGHT HOLDER(S) OR AUTHOR(S) BE LIABLE FOR ANY CLAIM, DAMAGES OR
18 * OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE,
19 * ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
20 * OTHER DEALINGS IN THE SOFTWARE.
26 /* The caprices of the preprocessor require that this be declared right here */
27 #define CREATE_TRACE_POINTS
29 #include "dm_services_types.h"
31 #include "link_enc_cfg.h"
32 #include "dc/inc/core_types.h"
33 #include "dal_asic_id.h"
34 #include "dmub/dmub_srv.h"
35 #include "dc/inc/hw/dmcu.h"
36 #include "dc/inc/hw/abm.h"
37 #include "dc/dc_dmub_srv.h"
38 #include "dc/dc_edid_parser.h"
39 #include "dc/dc_stat.h"
40 #include "amdgpu_dm_trace.h"
41 #include "dpcd_defs.h"
42 #include "link/protocols/link_dpcd.h"
43 #include "link_service_types.h"
44 #include "link/protocols/link_dp_capability.h"
45 #include "link/protocols/link_ddc.h"
49 #include "amdgpu_display.h"
50 #include "amdgpu_ucode.h"
52 #include "amdgpu_dm.h"
53 #include "amdgpu_dm_plane.h"
54 #include "amdgpu_dm_crtc.h"
55 #include "amdgpu_dm_hdcp.h"
56 #include <drm/display/drm_hdcp_helper.h>
57 #include "amdgpu_pm.h"
58 #include "amdgpu_atombios.h"
60 #include "amd_shared.h"
61 #include "amdgpu_dm_irq.h"
62 #include "dm_helpers.h"
63 #include "amdgpu_dm_mst_types.h"
64 #if defined(CONFIG_DEBUG_FS)
65 #include "amdgpu_dm_debugfs.h"
67 #include "amdgpu_dm_psr.h"
68 #include "amdgpu_dm_replay.h"
70 #include "ivsrcid/ivsrcid_vislands30.h"
72 #include <linux/backlight.h>
73 #include <linux/module.h>
74 #include <linux/moduleparam.h>
75 #include <linux/types.h>
76 #include <linux/pm_runtime.h>
77 #include <linux/pci.h>
78 #include <linux/firmware.h>
79 #include <linux/component.h>
80 #include <linux/dmi.h>
82 #include <drm/display/drm_dp_mst_helper.h>
83 #include <drm/display/drm_hdmi_helper.h>
84 #include <drm/drm_atomic.h>
85 #include <drm/drm_atomic_uapi.h>
86 #include <drm/drm_atomic_helper.h>
87 #include <drm/drm_blend.h>
88 #include <drm/drm_fourcc.h>
89 #include <drm/drm_edid.h>
90 #include <drm/drm_vblank.h>
91 #include <drm/drm_audio_component.h>
92 #include <drm/drm_gem_atomic_helper.h>
93 #include <drm/drm_plane_helper.h>
95 #include <acpi/video.h>
97 #include "ivsrcid/dcn/irqsrcs_dcn_1_0.h"
99 #include "dcn/dcn_1_0_offset.h"
100 #include "dcn/dcn_1_0_sh_mask.h"
101 #include "soc15_hw_ip.h"
102 #include "soc15_common.h"
103 #include "vega10_ip_offset.h"
105 #include "gc/gc_11_0_0_offset.h"
106 #include "gc/gc_11_0_0_sh_mask.h"
108 #include "modules/inc/mod_freesync.h"
109 #include "modules/power/power_helpers.h"
111 #define FIRMWARE_RENOIR_DMUB "amdgpu/renoir_dmcub.bin"
112 MODULE_FIRMWARE(FIRMWARE_RENOIR_DMUB);
113 #define FIRMWARE_SIENNA_CICHLID_DMUB "amdgpu/sienna_cichlid_dmcub.bin"
114 MODULE_FIRMWARE(FIRMWARE_SIENNA_CICHLID_DMUB);
115 #define FIRMWARE_NAVY_FLOUNDER_DMUB "amdgpu/navy_flounder_dmcub.bin"
116 MODULE_FIRMWARE(FIRMWARE_NAVY_FLOUNDER_DMUB);
117 #define FIRMWARE_GREEN_SARDINE_DMUB "amdgpu/green_sardine_dmcub.bin"
118 MODULE_FIRMWARE(FIRMWARE_GREEN_SARDINE_DMUB);
119 #define FIRMWARE_VANGOGH_DMUB "amdgpu/vangogh_dmcub.bin"
120 MODULE_FIRMWARE(FIRMWARE_VANGOGH_DMUB);
121 #define FIRMWARE_DIMGREY_CAVEFISH_DMUB "amdgpu/dimgrey_cavefish_dmcub.bin"
122 MODULE_FIRMWARE(FIRMWARE_DIMGREY_CAVEFISH_DMUB);
123 #define FIRMWARE_BEIGE_GOBY_DMUB "amdgpu/beige_goby_dmcub.bin"
124 MODULE_FIRMWARE(FIRMWARE_BEIGE_GOBY_DMUB);
125 #define FIRMWARE_YELLOW_CARP_DMUB "amdgpu/yellow_carp_dmcub.bin"
126 MODULE_FIRMWARE(FIRMWARE_YELLOW_CARP_DMUB);
127 #define FIRMWARE_DCN_314_DMUB "amdgpu/dcn_3_1_4_dmcub.bin"
128 MODULE_FIRMWARE(FIRMWARE_DCN_314_DMUB);
129 #define FIRMWARE_DCN_315_DMUB "amdgpu/dcn_3_1_5_dmcub.bin"
130 MODULE_FIRMWARE(FIRMWARE_DCN_315_DMUB);
131 #define FIRMWARE_DCN316_DMUB "amdgpu/dcn_3_1_6_dmcub.bin"
132 MODULE_FIRMWARE(FIRMWARE_DCN316_DMUB);
134 #define FIRMWARE_DCN_V3_2_0_DMCUB "amdgpu/dcn_3_2_0_dmcub.bin"
135 MODULE_FIRMWARE(FIRMWARE_DCN_V3_2_0_DMCUB);
136 #define FIRMWARE_DCN_V3_2_1_DMCUB "amdgpu/dcn_3_2_1_dmcub.bin"
137 MODULE_FIRMWARE(FIRMWARE_DCN_V3_2_1_DMCUB);
139 #define FIRMWARE_RAVEN_DMCU "amdgpu/raven_dmcu.bin"
140 MODULE_FIRMWARE(FIRMWARE_RAVEN_DMCU);
142 #define FIRMWARE_NAVI12_DMCU "amdgpu/navi12_dmcu.bin"
143 MODULE_FIRMWARE(FIRMWARE_NAVI12_DMCU);
145 #define FIRMWARE_DCN_35_DMUB "amdgpu/dcn_3_5_dmcub.bin"
146 MODULE_FIRMWARE(FIRMWARE_DCN_35_DMUB);
148 /* Number of bytes in PSP header for firmware. */
149 #define PSP_HEADER_BYTES 0x100
151 /* Number of bytes in PSP footer for firmware. */
152 #define PSP_FOOTER_BYTES 0x100
157 * The AMDgpu display manager, **amdgpu_dm** (or even simpler,
158 * **dm**) sits between DRM and DC. It acts as a liaison, converting DRM
159 * requests into DC requests, and DC responses into DRM responses.
161 * The root control structure is &struct amdgpu_display_manager.
164 /* basic init/fini API */
165 static int amdgpu_dm_init(struct amdgpu_device *adev);
166 static void amdgpu_dm_fini(struct amdgpu_device *adev);
167 static bool is_freesync_video_mode(const struct drm_display_mode *mode, struct amdgpu_dm_connector *aconnector);
169 static enum drm_mode_subconnector get_subconnector_type(struct dc_link *link)
171 switch (link->dpcd_caps.dongle_type) {
172 case DISPLAY_DONGLE_NONE:
173 return DRM_MODE_SUBCONNECTOR_Native;
174 case DISPLAY_DONGLE_DP_VGA_CONVERTER:
175 return DRM_MODE_SUBCONNECTOR_VGA;
176 case DISPLAY_DONGLE_DP_DVI_CONVERTER:
177 case DISPLAY_DONGLE_DP_DVI_DONGLE:
178 return DRM_MODE_SUBCONNECTOR_DVID;
179 case DISPLAY_DONGLE_DP_HDMI_CONVERTER:
180 case DISPLAY_DONGLE_DP_HDMI_DONGLE:
181 return DRM_MODE_SUBCONNECTOR_HDMIA;
182 case DISPLAY_DONGLE_DP_HDMI_MISMATCHED_DONGLE:
184 return DRM_MODE_SUBCONNECTOR_Unknown;
188 static void update_subconnector_property(struct amdgpu_dm_connector *aconnector)
190 struct dc_link *link = aconnector->dc_link;
191 struct drm_connector *connector = &aconnector->base;
192 enum drm_mode_subconnector subconnector = DRM_MODE_SUBCONNECTOR_Unknown;
194 if (connector->connector_type != DRM_MODE_CONNECTOR_DisplayPort)
197 if (aconnector->dc_sink)
198 subconnector = get_subconnector_type(link);
200 drm_object_property_set_value(&connector->base,
201 connector->dev->mode_config.dp_subconnector_property,
206 * initializes drm_device display related structures, based on the information
207 * provided by DAL. The drm strcutures are: drm_crtc, drm_connector,
208 * drm_encoder, drm_mode_config
210 * Returns 0 on success
212 static int amdgpu_dm_initialize_drm_device(struct amdgpu_device *adev);
213 /* removes and deallocates the drm structures, created by the above function */
214 static void amdgpu_dm_destroy_drm_device(struct amdgpu_display_manager *dm);
216 static int amdgpu_dm_connector_init(struct amdgpu_display_manager *dm,
217 struct amdgpu_dm_connector *amdgpu_dm_connector,
219 struct amdgpu_encoder *amdgpu_encoder);
220 static int amdgpu_dm_encoder_init(struct drm_device *dev,
221 struct amdgpu_encoder *aencoder,
222 uint32_t link_index);
224 static int amdgpu_dm_connector_get_modes(struct drm_connector *connector);
226 static void amdgpu_dm_atomic_commit_tail(struct drm_atomic_state *state);
228 static int amdgpu_dm_atomic_check(struct drm_device *dev,
229 struct drm_atomic_state *state);
231 static void handle_hpd_irq_helper(struct amdgpu_dm_connector *aconnector);
232 static void handle_hpd_rx_irq(void *param);
235 is_timing_unchanged_for_freesync(struct drm_crtc_state *old_crtc_state,
236 struct drm_crtc_state *new_crtc_state);
238 * dm_vblank_get_counter
241 * Get counter for number of vertical blanks
244 * struct amdgpu_device *adev - [in] desired amdgpu device
245 * int disp_idx - [in] which CRTC to get the counter from
248 * Counter for vertical blanks
250 static u32 dm_vblank_get_counter(struct amdgpu_device *adev, int crtc)
252 struct amdgpu_crtc *acrtc = NULL;
254 if (crtc >= adev->mode_info.num_crtc)
257 acrtc = adev->mode_info.crtcs[crtc];
259 if (!acrtc->dm_irq_params.stream) {
260 DRM_ERROR("dc_stream_state is NULL for crtc '%d'!\n",
265 return dc_stream_get_vblank_counter(acrtc->dm_irq_params.stream);
268 static int dm_crtc_get_scanoutpos(struct amdgpu_device *adev, int crtc,
269 u32 *vbl, u32 *position)
271 u32 v_blank_start, v_blank_end, h_position, v_position;
272 struct amdgpu_crtc *acrtc = NULL;
274 if ((crtc < 0) || (crtc >= adev->mode_info.num_crtc))
277 acrtc = adev->mode_info.crtcs[crtc];
279 if (!acrtc->dm_irq_params.stream) {
280 DRM_ERROR("dc_stream_state is NULL for crtc '%d'!\n",
286 * TODO rework base driver to use values directly.
287 * for now parse it back into reg-format
289 dc_stream_get_scanoutpos(acrtc->dm_irq_params.stream,
295 *position = v_position | (h_position << 16);
296 *vbl = v_blank_start | (v_blank_end << 16);
301 static bool dm_is_idle(void *handle)
307 static int dm_wait_for_idle(void *handle)
313 static bool dm_check_soft_reset(void *handle)
318 static int dm_soft_reset(void *handle)
324 static struct amdgpu_crtc *
325 get_crtc_by_otg_inst(struct amdgpu_device *adev,
328 struct drm_device *dev = adev_to_drm(adev);
329 struct drm_crtc *crtc;
330 struct amdgpu_crtc *amdgpu_crtc;
332 if (WARN_ON(otg_inst == -1))
333 return adev->mode_info.crtcs[0];
335 list_for_each_entry(crtc, &dev->mode_config.crtc_list, head) {
336 amdgpu_crtc = to_amdgpu_crtc(crtc);
338 if (amdgpu_crtc->otg_inst == otg_inst)
345 static inline bool is_dc_timing_adjust_needed(struct dm_crtc_state *old_state,
346 struct dm_crtc_state *new_state)
348 if (new_state->freesync_config.state == VRR_STATE_ACTIVE_FIXED)
350 else if (amdgpu_dm_crtc_vrr_active(old_state) != amdgpu_dm_crtc_vrr_active(new_state))
356 static inline void reverse_planes_order(struct dc_surface_update *array_of_surface_update,
361 for (i = 0, j = planes_count - 1; i < j; i++, j--)
362 swap(array_of_surface_update[i], array_of_surface_update[j]);
366 * update_planes_and_stream_adapter() - Send planes to be updated in DC
368 * DC has a generic way to update planes and stream via
369 * dc_update_planes_and_stream function; however, DM might need some
370 * adjustments and preparation before calling it. This function is a wrapper
371 * for the dc_update_planes_and_stream that does any required configuration
372 * before passing control to DC.
374 * @dc: Display Core control structure
375 * @update_type: specify whether it is FULL/MEDIUM/FAST update
376 * @planes_count: planes count to update
377 * @stream: stream state
378 * @stream_update: stream update
379 * @array_of_surface_update: dc surface update pointer
382 static inline bool update_planes_and_stream_adapter(struct dc *dc,
385 struct dc_stream_state *stream,
386 struct dc_stream_update *stream_update,
387 struct dc_surface_update *array_of_surface_update)
389 reverse_planes_order(array_of_surface_update, planes_count);
392 * Previous frame finished and HW is ready for optimization.
394 if (update_type == UPDATE_TYPE_FAST)
395 dc_post_update_surfaces_to_stream(dc);
397 return dc_update_planes_and_stream(dc,
398 array_of_surface_update,
405 * dm_pflip_high_irq() - Handle pageflip interrupt
406 * @interrupt_params: ignored
408 * Handles the pageflip interrupt by notifying all interested parties
409 * that the pageflip has been completed.
411 static void dm_pflip_high_irq(void *interrupt_params)
413 struct amdgpu_crtc *amdgpu_crtc;
414 struct common_irq_params *irq_params = interrupt_params;
415 struct amdgpu_device *adev = irq_params->adev;
416 struct drm_device *dev = adev_to_drm(adev);
418 struct drm_pending_vblank_event *e;
419 u32 vpos, hpos, v_blank_start, v_blank_end;
422 amdgpu_crtc = get_crtc_by_otg_inst(adev, irq_params->irq_src - IRQ_TYPE_PFLIP);
424 /* IRQ could occur when in initial stage */
425 /* TODO work and BO cleanup */
426 if (amdgpu_crtc == NULL) {
427 drm_dbg_state(dev, "CRTC is null, returning.\n");
431 spin_lock_irqsave(&adev_to_drm(adev)->event_lock, flags);
433 if (amdgpu_crtc->pflip_status != AMDGPU_FLIP_SUBMITTED) {
435 "amdgpu_crtc->pflip_status = %d != AMDGPU_FLIP_SUBMITTED(%d) on crtc:%d[%p]\n",
436 amdgpu_crtc->pflip_status, AMDGPU_FLIP_SUBMITTED,
437 amdgpu_crtc->crtc_id, amdgpu_crtc);
438 spin_unlock_irqrestore(&adev_to_drm(adev)->event_lock, flags);
442 /* page flip completed. */
443 e = amdgpu_crtc->event;
444 amdgpu_crtc->event = NULL;
448 vrr_active = amdgpu_dm_crtc_vrr_active_irq(amdgpu_crtc);
450 /* Fixed refresh rate, or VRR scanout position outside front-porch? */
452 !dc_stream_get_scanoutpos(amdgpu_crtc->dm_irq_params.stream, &v_blank_start,
453 &v_blank_end, &hpos, &vpos) ||
454 (vpos < v_blank_start)) {
455 /* Update to correct count and vblank timestamp if racing with
456 * vblank irq. This also updates to the correct vblank timestamp
457 * even in VRR mode, as scanout is past the front-porch atm.
459 drm_crtc_accurate_vblank_count(&amdgpu_crtc->base);
461 /* Wake up userspace by sending the pageflip event with proper
462 * count and timestamp of vblank of flip completion.
465 drm_crtc_send_vblank_event(&amdgpu_crtc->base, e);
467 /* Event sent, so done with vblank for this flip */
468 drm_crtc_vblank_put(&amdgpu_crtc->base);
471 /* VRR active and inside front-porch: vblank count and
472 * timestamp for pageflip event will only be up to date after
473 * drm_crtc_handle_vblank() has been executed from late vblank
474 * irq handler after start of back-porch (vline 0). We queue the
475 * pageflip event for send-out by drm_crtc_handle_vblank() with
476 * updated timestamp and count, once it runs after us.
478 * We need to open-code this instead of using the helper
479 * drm_crtc_arm_vblank_event(), as that helper would
480 * call drm_crtc_accurate_vblank_count(), which we must
481 * not call in VRR mode while we are in front-porch!
484 /* sequence will be replaced by real count during send-out. */
485 e->sequence = drm_crtc_vblank_count(&amdgpu_crtc->base);
486 e->pipe = amdgpu_crtc->crtc_id;
488 list_add_tail(&e->base.link, &adev_to_drm(adev)->vblank_event_list);
492 /* Keep track of vblank of this flip for flip throttling. We use the
493 * cooked hw counter, as that one incremented at start of this vblank
494 * of pageflip completion, so last_flip_vblank is the forbidden count
495 * for queueing new pageflips if vsync + VRR is enabled.
497 amdgpu_crtc->dm_irq_params.last_flip_vblank =
498 amdgpu_get_vblank_counter_kms(&amdgpu_crtc->base);
500 amdgpu_crtc->pflip_status = AMDGPU_FLIP_NONE;
501 spin_unlock_irqrestore(&adev_to_drm(adev)->event_lock, flags);
504 "crtc:%d[%p], pflip_stat:AMDGPU_FLIP_NONE, vrr[%d]-fp %d\n",
505 amdgpu_crtc->crtc_id, amdgpu_crtc, vrr_active, (int)!e);
508 static void dm_vupdate_high_irq(void *interrupt_params)
510 struct common_irq_params *irq_params = interrupt_params;
511 struct amdgpu_device *adev = irq_params->adev;
512 struct amdgpu_crtc *acrtc;
513 struct drm_device *drm_dev;
514 struct drm_vblank_crtc *vblank;
515 ktime_t frame_duration_ns, previous_timestamp;
519 acrtc = get_crtc_by_otg_inst(adev, irq_params->irq_src - IRQ_TYPE_VUPDATE);
522 vrr_active = amdgpu_dm_crtc_vrr_active_irq(acrtc);
523 drm_dev = acrtc->base.dev;
524 vblank = &drm_dev->vblank[acrtc->base.index];
525 previous_timestamp = atomic64_read(&irq_params->previous_timestamp);
526 frame_duration_ns = vblank->time - previous_timestamp;
528 if (frame_duration_ns > 0) {
529 trace_amdgpu_refresh_rate_track(acrtc->base.index,
531 ktime_divns(NSEC_PER_SEC, frame_duration_ns));
532 atomic64_set(&irq_params->previous_timestamp, vblank->time);
536 "crtc:%d, vupdate-vrr:%d\n", acrtc->crtc_id,
539 /* Core vblank handling is done here after end of front-porch in
540 * vrr mode, as vblank timestamping will give valid results
541 * while now done after front-porch. This will also deliver
542 * page-flip completion events that have been queued to us
543 * if a pageflip happened inside front-porch.
546 amdgpu_dm_crtc_handle_vblank(acrtc);
548 /* BTR processing for pre-DCE12 ASICs */
549 if (acrtc->dm_irq_params.stream &&
550 adev->family < AMDGPU_FAMILY_AI) {
551 spin_lock_irqsave(&adev_to_drm(adev)->event_lock, flags);
552 mod_freesync_handle_v_update(
553 adev->dm.freesync_module,
554 acrtc->dm_irq_params.stream,
555 &acrtc->dm_irq_params.vrr_params);
557 dc_stream_adjust_vmin_vmax(
559 acrtc->dm_irq_params.stream,
560 &acrtc->dm_irq_params.vrr_params.adjust);
561 spin_unlock_irqrestore(&adev_to_drm(adev)->event_lock, flags);
568 * dm_crtc_high_irq() - Handles CRTC interrupt
569 * @interrupt_params: used for determining the CRTC instance
571 * Handles the CRTC/VSYNC interrupt by notfying DRM's VBLANK
574 static void dm_crtc_high_irq(void *interrupt_params)
576 struct common_irq_params *irq_params = interrupt_params;
577 struct amdgpu_device *adev = irq_params->adev;
578 struct amdgpu_crtc *acrtc;
582 acrtc = get_crtc_by_otg_inst(adev, irq_params->irq_src - IRQ_TYPE_VBLANK);
586 vrr_active = amdgpu_dm_crtc_vrr_active_irq(acrtc);
588 drm_dbg_vbl(adev_to_drm(adev),
589 "crtc:%d, vupdate-vrr:%d, planes:%d\n", acrtc->crtc_id,
590 vrr_active, acrtc->dm_irq_params.active_planes);
593 * Core vblank handling at start of front-porch is only possible
594 * in non-vrr mode, as only there vblank timestamping will give
595 * valid results while done in front-porch. Otherwise defer it
596 * to dm_vupdate_high_irq after end of front-porch.
599 amdgpu_dm_crtc_handle_vblank(acrtc);
602 * Following stuff must happen at start of vblank, for crc
603 * computation and below-the-range btr support in vrr mode.
605 amdgpu_dm_crtc_handle_crc_irq(&acrtc->base);
607 /* BTR updates need to happen before VUPDATE on Vega and above. */
608 if (adev->family < AMDGPU_FAMILY_AI)
611 spin_lock_irqsave(&adev_to_drm(adev)->event_lock, flags);
613 if (acrtc->dm_irq_params.stream &&
614 acrtc->dm_irq_params.vrr_params.supported &&
615 acrtc->dm_irq_params.freesync_config.state ==
616 VRR_STATE_ACTIVE_VARIABLE) {
617 mod_freesync_handle_v_update(adev->dm.freesync_module,
618 acrtc->dm_irq_params.stream,
619 &acrtc->dm_irq_params.vrr_params);
621 dc_stream_adjust_vmin_vmax(adev->dm.dc, acrtc->dm_irq_params.stream,
622 &acrtc->dm_irq_params.vrr_params.adjust);
626 * If there aren't any active_planes then DCH HUBP may be clock-gated.
627 * In that case, pageflip completion interrupts won't fire and pageflip
628 * completion events won't get delivered. Prevent this by sending
629 * pending pageflip events from here if a flip is still pending.
631 * If any planes are enabled, use dm_pflip_high_irq() instead, to
632 * avoid race conditions between flip programming and completion,
633 * which could cause too early flip completion events.
635 if (adev->family >= AMDGPU_FAMILY_RV &&
636 acrtc->pflip_status == AMDGPU_FLIP_SUBMITTED &&
637 acrtc->dm_irq_params.active_planes == 0) {
639 drm_crtc_send_vblank_event(&acrtc->base, acrtc->event);
641 drm_crtc_vblank_put(&acrtc->base);
643 acrtc->pflip_status = AMDGPU_FLIP_NONE;
646 spin_unlock_irqrestore(&adev_to_drm(adev)->event_lock, flags);
649 #if defined(CONFIG_DRM_AMD_SECURE_DISPLAY)
651 * dm_dcn_vertical_interrupt0_high_irq() - Handles OTG Vertical interrupt0 for
652 * DCN generation ASICs
653 * @interrupt_params: interrupt parameters
655 * Used to set crc window/read out crc value at vertical line 0 position
657 static void dm_dcn_vertical_interrupt0_high_irq(void *interrupt_params)
659 struct common_irq_params *irq_params = interrupt_params;
660 struct amdgpu_device *adev = irq_params->adev;
661 struct amdgpu_crtc *acrtc;
663 acrtc = get_crtc_by_otg_inst(adev, irq_params->irq_src - IRQ_TYPE_VLINE0);
668 amdgpu_dm_crtc_handle_crc_window_irq(&acrtc->base);
670 #endif /* CONFIG_DRM_AMD_SECURE_DISPLAY */
673 * dmub_aux_setconfig_callback - Callback for AUX or SET_CONFIG command.
674 * @adev: amdgpu_device pointer
675 * @notify: dmub notification structure
677 * Dmub AUX or SET_CONFIG command completion processing callback
678 * Copies dmub notification to DM which is to be read by AUX command.
679 * issuing thread and also signals the event to wake up the thread.
681 static void dmub_aux_setconfig_callback(struct amdgpu_device *adev,
682 struct dmub_notification *notify)
684 if (adev->dm.dmub_notify)
685 memcpy(adev->dm.dmub_notify, notify, sizeof(struct dmub_notification));
686 if (notify->type == DMUB_NOTIFICATION_AUX_REPLY)
687 complete(&adev->dm.dmub_aux_transfer_done);
691 * dmub_hpd_callback - DMUB HPD interrupt processing callback.
692 * @adev: amdgpu_device pointer
693 * @notify: dmub notification structure
695 * Dmub Hpd interrupt processing callback. Gets displayindex through the
696 * ink index and calls helper to do the processing.
698 static void dmub_hpd_callback(struct amdgpu_device *adev,
699 struct dmub_notification *notify)
701 struct amdgpu_dm_connector *aconnector;
702 struct amdgpu_dm_connector *hpd_aconnector = NULL;
703 struct drm_connector *connector;
704 struct drm_connector_list_iter iter;
705 struct dc_link *link;
707 struct drm_device *dev;
712 if (notify == NULL) {
713 DRM_ERROR("DMUB HPD callback notification was NULL");
717 if (notify->link_index > adev->dm.dc->link_count) {
718 DRM_ERROR("DMUB HPD index (%u)is abnormal", notify->link_index);
722 link_index = notify->link_index;
723 link = adev->dm.dc->links[link_index];
726 drm_connector_list_iter_begin(dev, &iter);
727 drm_for_each_connector_iter(connector, &iter) {
728 aconnector = to_amdgpu_dm_connector(connector);
729 if (link && aconnector->dc_link == link) {
730 if (notify->type == DMUB_NOTIFICATION_HPD)
731 DRM_INFO("DMUB HPD callback: link_index=%u\n", link_index);
732 else if (notify->type == DMUB_NOTIFICATION_HPD_IRQ)
733 DRM_INFO("DMUB HPD IRQ callback: link_index=%u\n", link_index);
735 DRM_WARN("DMUB Unknown HPD callback type %d, link_index=%u\n",
736 notify->type, link_index);
738 hpd_aconnector = aconnector;
742 drm_connector_list_iter_end(&iter);
744 if (hpd_aconnector) {
745 if (notify->type == DMUB_NOTIFICATION_HPD)
746 handle_hpd_irq_helper(hpd_aconnector);
747 else if (notify->type == DMUB_NOTIFICATION_HPD_IRQ)
748 handle_hpd_rx_irq(hpd_aconnector);
753 * register_dmub_notify_callback - Sets callback for DMUB notify
754 * @adev: amdgpu_device pointer
755 * @type: Type of dmub notification
756 * @callback: Dmub interrupt callback function
757 * @dmub_int_thread_offload: offload indicator
759 * API to register a dmub callback handler for a dmub notification
760 * Also sets indicator whether callback processing to be offloaded.
761 * to dmub interrupt handling thread
762 * Return: true if successfully registered, false if there is existing registration
764 static bool register_dmub_notify_callback(struct amdgpu_device *adev,
765 enum dmub_notification_type type,
766 dmub_notify_interrupt_callback_t callback,
767 bool dmub_int_thread_offload)
769 if (callback != NULL && type < ARRAY_SIZE(adev->dm.dmub_thread_offload)) {
770 adev->dm.dmub_callback[type] = callback;
771 adev->dm.dmub_thread_offload[type] = dmub_int_thread_offload;
778 static void dm_handle_hpd_work(struct work_struct *work)
780 struct dmub_hpd_work *dmub_hpd_wrk;
782 dmub_hpd_wrk = container_of(work, struct dmub_hpd_work, handle_hpd_work);
784 if (!dmub_hpd_wrk->dmub_notify) {
785 DRM_ERROR("dmub_hpd_wrk dmub_notify is NULL");
789 if (dmub_hpd_wrk->dmub_notify->type < ARRAY_SIZE(dmub_hpd_wrk->adev->dm.dmub_callback)) {
790 dmub_hpd_wrk->adev->dm.dmub_callback[dmub_hpd_wrk->dmub_notify->type](dmub_hpd_wrk->adev,
791 dmub_hpd_wrk->dmub_notify);
794 kfree(dmub_hpd_wrk->dmub_notify);
799 #define DMUB_TRACE_MAX_READ 64
801 * dm_dmub_outbox1_low_irq() - Handles Outbox interrupt
802 * @interrupt_params: used for determining the Outbox instance
804 * Handles the Outbox Interrupt
807 static void dm_dmub_outbox1_low_irq(void *interrupt_params)
809 struct dmub_notification notify;
810 struct common_irq_params *irq_params = interrupt_params;
811 struct amdgpu_device *adev = irq_params->adev;
812 struct amdgpu_display_manager *dm = &adev->dm;
813 struct dmcub_trace_buf_entry entry = { 0 };
815 struct dmub_hpd_work *dmub_hpd_wrk;
816 struct dc_link *plink = NULL;
818 if (dc_enable_dmub_notifications(adev->dm.dc) &&
819 irq_params->irq_src == DC_IRQ_SOURCE_DMCUB_OUTBOX) {
822 dc_stat_get_dmub_notification(adev->dm.dc, ¬ify);
823 if (notify.type >= ARRAY_SIZE(dm->dmub_thread_offload)) {
824 DRM_ERROR("DM: notify type %d invalid!", notify.type);
827 if (!dm->dmub_callback[notify.type]) {
828 DRM_DEBUG_DRIVER("DMUB notification skipped, no handler: type=%d\n", notify.type);
831 if (dm->dmub_thread_offload[notify.type] == true) {
832 dmub_hpd_wrk = kzalloc(sizeof(*dmub_hpd_wrk), GFP_ATOMIC);
834 DRM_ERROR("Failed to allocate dmub_hpd_wrk");
837 dmub_hpd_wrk->dmub_notify = kmemdup(¬ify, sizeof(struct dmub_notification),
839 if (!dmub_hpd_wrk->dmub_notify) {
841 DRM_ERROR("Failed to allocate dmub_hpd_wrk->dmub_notify");
844 INIT_WORK(&dmub_hpd_wrk->handle_hpd_work, dm_handle_hpd_work);
845 dmub_hpd_wrk->adev = adev;
846 if (notify.type == DMUB_NOTIFICATION_HPD) {
847 plink = adev->dm.dc->links[notify.link_index];
850 notify.hpd_status == DP_HPD_PLUG;
853 queue_work(adev->dm.delayed_hpd_wq, &dmub_hpd_wrk->handle_hpd_work);
855 dm->dmub_callback[notify.type](adev, ¬ify);
857 } while (notify.pending_notification);
862 if (dc_dmub_srv_get_dmub_outbox0_msg(dm->dc, &entry)) {
863 trace_amdgpu_dmub_trace_high_irq(entry.trace_code, entry.tick_count,
864 entry.param0, entry.param1);
866 DRM_DEBUG_DRIVER("trace_code:%u, tick_count:%u, param0:%u, param1:%u\n",
867 entry.trace_code, entry.tick_count, entry.param0, entry.param1);
873 } while (count <= DMUB_TRACE_MAX_READ);
875 if (count > DMUB_TRACE_MAX_READ)
876 DRM_DEBUG_DRIVER("Warning : count > DMUB_TRACE_MAX_READ");
879 static int dm_set_clockgating_state(void *handle,
880 enum amd_clockgating_state state)
885 static int dm_set_powergating_state(void *handle,
886 enum amd_powergating_state state)
891 /* Prototypes of private functions */
892 static int dm_early_init(void *handle);
894 /* Allocate memory for FBC compressed data */
895 static void amdgpu_dm_fbc_init(struct drm_connector *connector)
897 struct drm_device *dev = connector->dev;
898 struct amdgpu_device *adev = drm_to_adev(dev);
899 struct dm_compressor_info *compressor = &adev->dm.compressor;
900 struct amdgpu_dm_connector *aconn = to_amdgpu_dm_connector(connector);
901 struct drm_display_mode *mode;
902 unsigned long max_size = 0;
904 if (adev->dm.dc->fbc_compressor == NULL)
907 if (aconn->dc_link->connector_signal != SIGNAL_TYPE_EDP)
910 if (compressor->bo_ptr)
914 list_for_each_entry(mode, &connector->modes, head) {
915 if (max_size < mode->htotal * mode->vtotal)
916 max_size = mode->htotal * mode->vtotal;
920 int r = amdgpu_bo_create_kernel(adev, max_size * 4, PAGE_SIZE,
921 AMDGPU_GEM_DOMAIN_GTT, &compressor->bo_ptr,
922 &compressor->gpu_addr, &compressor->cpu_addr);
925 DRM_ERROR("DM: Failed to initialize FBC\n");
927 adev->dm.dc->ctx->fbc_gpu_addr = compressor->gpu_addr;
928 DRM_INFO("DM: FBC alloc %lu\n", max_size*4);
935 static int amdgpu_dm_audio_component_get_eld(struct device *kdev, int port,
936 int pipe, bool *enabled,
937 unsigned char *buf, int max_bytes)
939 struct drm_device *dev = dev_get_drvdata(kdev);
940 struct amdgpu_device *adev = drm_to_adev(dev);
941 struct drm_connector *connector;
942 struct drm_connector_list_iter conn_iter;
943 struct amdgpu_dm_connector *aconnector;
948 mutex_lock(&adev->dm.audio_lock);
950 drm_connector_list_iter_begin(dev, &conn_iter);
951 drm_for_each_connector_iter(connector, &conn_iter) {
952 aconnector = to_amdgpu_dm_connector(connector);
953 if (aconnector->audio_inst != port)
957 ret = drm_eld_size(connector->eld);
958 memcpy(buf, connector->eld, min(max_bytes, ret));
962 drm_connector_list_iter_end(&conn_iter);
964 mutex_unlock(&adev->dm.audio_lock);
966 DRM_DEBUG_KMS("Get ELD : idx=%d ret=%d en=%d\n", port, ret, *enabled);
971 static const struct drm_audio_component_ops amdgpu_dm_audio_component_ops = {
972 .get_eld = amdgpu_dm_audio_component_get_eld,
975 static int amdgpu_dm_audio_component_bind(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;
982 acomp->ops = &amdgpu_dm_audio_component_ops;
984 adev->dm.audio_component = acomp;
989 static void amdgpu_dm_audio_component_unbind(struct device *kdev,
990 struct device *hda_kdev, void *data)
992 struct drm_device *dev = dev_get_drvdata(kdev);
993 struct amdgpu_device *adev = drm_to_adev(dev);
994 struct drm_audio_component *acomp = data;
998 adev->dm.audio_component = NULL;
1001 static const struct component_ops amdgpu_dm_audio_component_bind_ops = {
1002 .bind = amdgpu_dm_audio_component_bind,
1003 .unbind = amdgpu_dm_audio_component_unbind,
1006 static int amdgpu_dm_audio_init(struct amdgpu_device *adev)
1013 adev->mode_info.audio.enabled = true;
1015 adev->mode_info.audio.num_pins = adev->dm.dc->res_pool->audio_count;
1017 for (i = 0; i < adev->mode_info.audio.num_pins; i++) {
1018 adev->mode_info.audio.pin[i].channels = -1;
1019 adev->mode_info.audio.pin[i].rate = -1;
1020 adev->mode_info.audio.pin[i].bits_per_sample = -1;
1021 adev->mode_info.audio.pin[i].status_bits = 0;
1022 adev->mode_info.audio.pin[i].category_code = 0;
1023 adev->mode_info.audio.pin[i].connected = false;
1024 adev->mode_info.audio.pin[i].id =
1025 adev->dm.dc->res_pool->audios[i]->inst;
1026 adev->mode_info.audio.pin[i].offset = 0;
1029 ret = component_add(adev->dev, &amdgpu_dm_audio_component_bind_ops);
1033 adev->dm.audio_registered = true;
1038 static void amdgpu_dm_audio_fini(struct amdgpu_device *adev)
1043 if (!adev->mode_info.audio.enabled)
1046 if (adev->dm.audio_registered) {
1047 component_del(adev->dev, &amdgpu_dm_audio_component_bind_ops);
1048 adev->dm.audio_registered = false;
1051 /* TODO: Disable audio? */
1053 adev->mode_info.audio.enabled = false;
1056 static void amdgpu_dm_audio_eld_notify(struct amdgpu_device *adev, int pin)
1058 struct drm_audio_component *acomp = adev->dm.audio_component;
1060 if (acomp && acomp->audio_ops && acomp->audio_ops->pin_eld_notify) {
1061 DRM_DEBUG_KMS("Notify ELD: %d\n", pin);
1063 acomp->audio_ops->pin_eld_notify(acomp->audio_ops->audio_ptr,
1068 static int dm_dmub_hw_init(struct amdgpu_device *adev)
1070 const struct dmcub_firmware_header_v1_0 *hdr;
1071 struct dmub_srv *dmub_srv = adev->dm.dmub_srv;
1072 struct dmub_srv_fb_info *fb_info = adev->dm.dmub_fb_info;
1073 const struct firmware *dmub_fw = adev->dm.dmub_fw;
1074 struct dmcu *dmcu = adev->dm.dc->res_pool->dmcu;
1075 struct abm *abm = adev->dm.dc->res_pool->abm;
1076 struct dc_context *ctx = adev->dm.dc->ctx;
1077 struct dmub_srv_hw_params hw_params;
1078 enum dmub_status status;
1079 const unsigned char *fw_inst_const, *fw_bss_data;
1080 u32 i, fw_inst_const_size, fw_bss_data_size;
1081 bool has_hw_support;
1084 /* DMUB isn't supported on the ASIC. */
1088 DRM_ERROR("No framebuffer info for DMUB service.\n");
1093 /* Firmware required for DMUB support. */
1094 DRM_ERROR("No firmware provided for DMUB.\n");
1098 /* initialize register offsets for ASICs with runtime initialization available */
1099 if (dmub_srv->hw_funcs.init_reg_offsets)
1100 dmub_srv->hw_funcs.init_reg_offsets(dmub_srv, ctx);
1102 status = dmub_srv_has_hw_support(dmub_srv, &has_hw_support);
1103 if (status != DMUB_STATUS_OK) {
1104 DRM_ERROR("Error checking HW support for DMUB: %d\n", status);
1108 if (!has_hw_support) {
1109 DRM_INFO("DMUB unsupported on ASIC\n");
1113 /* Reset DMCUB if it was previously running - before we overwrite its memory. */
1114 status = dmub_srv_hw_reset(dmub_srv);
1115 if (status != DMUB_STATUS_OK)
1116 DRM_WARN("Error resetting DMUB HW: %d\n", status);
1118 hdr = (const struct dmcub_firmware_header_v1_0 *)dmub_fw->data;
1120 fw_inst_const = dmub_fw->data +
1121 le32_to_cpu(hdr->header.ucode_array_offset_bytes) +
1124 fw_bss_data = dmub_fw->data +
1125 le32_to_cpu(hdr->header.ucode_array_offset_bytes) +
1126 le32_to_cpu(hdr->inst_const_bytes);
1128 /* Copy firmware and bios info into FB memory. */
1129 fw_inst_const_size = le32_to_cpu(hdr->inst_const_bytes) -
1130 PSP_HEADER_BYTES - PSP_FOOTER_BYTES;
1132 fw_bss_data_size = le32_to_cpu(hdr->bss_data_bytes);
1134 /* if adev->firmware.load_type == AMDGPU_FW_LOAD_PSP,
1135 * amdgpu_ucode_init_single_fw will load dmub firmware
1136 * fw_inst_const part to cw0; otherwise, the firmware back door load
1137 * will be done by dm_dmub_hw_init
1139 if (adev->firmware.load_type != AMDGPU_FW_LOAD_PSP) {
1140 memcpy(fb_info->fb[DMUB_WINDOW_0_INST_CONST].cpu_addr, fw_inst_const,
1141 fw_inst_const_size);
1144 if (fw_bss_data_size)
1145 memcpy(fb_info->fb[DMUB_WINDOW_2_BSS_DATA].cpu_addr,
1146 fw_bss_data, fw_bss_data_size);
1148 /* Copy firmware bios info into FB memory. */
1149 memcpy(fb_info->fb[DMUB_WINDOW_3_VBIOS].cpu_addr, adev->bios,
1152 /* Reset regions that need to be reset. */
1153 memset(fb_info->fb[DMUB_WINDOW_4_MAILBOX].cpu_addr, 0,
1154 fb_info->fb[DMUB_WINDOW_4_MAILBOX].size);
1156 memset(fb_info->fb[DMUB_WINDOW_5_TRACEBUFF].cpu_addr, 0,
1157 fb_info->fb[DMUB_WINDOW_5_TRACEBUFF].size);
1159 memset(fb_info->fb[DMUB_WINDOW_6_FW_STATE].cpu_addr, 0,
1160 fb_info->fb[DMUB_WINDOW_6_FW_STATE].size);
1162 /* Initialize hardware. */
1163 memset(&hw_params, 0, sizeof(hw_params));
1164 hw_params.fb_base = adev->gmc.fb_start;
1165 hw_params.fb_offset = adev->vm_manager.vram_base_offset;
1167 /* backdoor load firmware and trigger dmub running */
1168 if (adev->firmware.load_type != AMDGPU_FW_LOAD_PSP)
1169 hw_params.load_inst_const = true;
1172 hw_params.psp_version = dmcu->psp_version;
1174 for (i = 0; i < fb_info->num_fb; ++i)
1175 hw_params.fb[i] = &fb_info->fb[i];
1177 switch (amdgpu_ip_version(adev, DCE_HWIP, 0)) {
1178 case IP_VERSION(3, 1, 3):
1179 case IP_VERSION(3, 1, 4):
1180 case IP_VERSION(3, 5, 0):
1181 hw_params.dpia_supported = true;
1182 hw_params.disable_dpia = adev->dm.dc->debug.dpia_debug.bits.disable_dpia;
1188 status = dmub_srv_hw_init(dmub_srv, &hw_params);
1189 if (status != DMUB_STATUS_OK) {
1190 DRM_ERROR("Error initializing DMUB HW: %d\n", status);
1194 /* Wait for firmware load to finish. */
1195 status = dmub_srv_wait_for_auto_load(dmub_srv, 100000);
1196 if (status != DMUB_STATUS_OK)
1197 DRM_WARN("Wait for DMUB auto-load failed: %d\n", status);
1199 /* Init DMCU and ABM if available. */
1201 dmcu->funcs->dmcu_init(dmcu);
1202 abm->dmcu_is_running = dmcu->funcs->is_dmcu_initialized(dmcu);
1205 if (!adev->dm.dc->ctx->dmub_srv)
1206 adev->dm.dc->ctx->dmub_srv = dc_dmub_srv_create(adev->dm.dc, dmub_srv);
1207 if (!adev->dm.dc->ctx->dmub_srv) {
1208 DRM_ERROR("Couldn't allocate DC DMUB server!\n");
1212 DRM_INFO("DMUB hardware initialized: version=0x%08X\n",
1213 adev->dm.dmcub_fw_version);
1218 static void dm_dmub_hw_resume(struct amdgpu_device *adev)
1220 struct dmub_srv *dmub_srv = adev->dm.dmub_srv;
1221 enum dmub_status status;
1225 /* DMUB isn't supported on the ASIC. */
1229 status = dmub_srv_is_hw_init(dmub_srv, &init);
1230 if (status != DMUB_STATUS_OK)
1231 DRM_WARN("DMUB hardware init check failed: %d\n", status);
1233 if (status == DMUB_STATUS_OK && init) {
1234 /* Wait for firmware load to finish. */
1235 status = dmub_srv_wait_for_auto_load(dmub_srv, 100000);
1236 if (status != DMUB_STATUS_OK)
1237 DRM_WARN("Wait for DMUB auto-load failed: %d\n", status);
1239 /* Perform the full hardware initialization. */
1240 dm_dmub_hw_init(adev);
1244 static void mmhub_read_system_context(struct amdgpu_device *adev, struct dc_phy_addr_space_config *pa_config)
1247 u32 logical_addr_low;
1248 u32 logical_addr_high;
1249 u32 agp_base, agp_bot, agp_top;
1250 PHYSICAL_ADDRESS_LOC page_table_start, page_table_end, page_table_base;
1252 memset(pa_config, 0, sizeof(*pa_config));
1255 agp_bot = adev->gmc.agp_start >> 24;
1256 agp_top = adev->gmc.agp_end >> 24;
1258 /* AGP aperture is disabled */
1259 if (agp_bot > agp_top) {
1260 logical_addr_low = adev->gmc.fb_start >> 18;
1261 if (adev->apu_flags & AMD_APU_IS_RAVEN2)
1263 * Raven2 has a HW issue that it is unable to use the vram which
1264 * is out of MC_VM_SYSTEM_APERTURE_HIGH_ADDR. So here is the
1265 * workaround that increase system aperture high address (add 1)
1266 * to get rid of the VM fault and hardware hang.
1268 logical_addr_high = (adev->gmc.fb_end >> 18) + 0x1;
1270 logical_addr_high = adev->gmc.fb_end >> 18;
1272 logical_addr_low = min(adev->gmc.fb_start, adev->gmc.agp_start) >> 18;
1273 if (adev->apu_flags & AMD_APU_IS_RAVEN2)
1275 * Raven2 has a HW issue that it is unable to use the vram which
1276 * is out of MC_VM_SYSTEM_APERTURE_HIGH_ADDR. So here is the
1277 * workaround that increase system aperture high address (add 1)
1278 * to get rid of the VM fault and hardware hang.
1280 logical_addr_high = max((adev->gmc.fb_end >> 18) + 0x1, adev->gmc.agp_end >> 18);
1282 logical_addr_high = max(adev->gmc.fb_end, adev->gmc.agp_end) >> 18;
1285 pt_base = amdgpu_gmc_pd_addr(adev->gart.bo);
1287 page_table_start.high_part = upper_32_bits(adev->gmc.gart_start >>
1288 AMDGPU_GPU_PAGE_SHIFT);
1289 page_table_start.low_part = lower_32_bits(adev->gmc.gart_start >>
1290 AMDGPU_GPU_PAGE_SHIFT);
1291 page_table_end.high_part = upper_32_bits(adev->gmc.gart_end >>
1292 AMDGPU_GPU_PAGE_SHIFT);
1293 page_table_end.low_part = lower_32_bits(adev->gmc.gart_end >>
1294 AMDGPU_GPU_PAGE_SHIFT);
1295 page_table_base.high_part = upper_32_bits(pt_base);
1296 page_table_base.low_part = lower_32_bits(pt_base);
1298 pa_config->system_aperture.start_addr = (uint64_t)logical_addr_low << 18;
1299 pa_config->system_aperture.end_addr = (uint64_t)logical_addr_high << 18;
1301 pa_config->system_aperture.agp_base = (uint64_t)agp_base << 24;
1302 pa_config->system_aperture.agp_bot = (uint64_t)agp_bot << 24;
1303 pa_config->system_aperture.agp_top = (uint64_t)agp_top << 24;
1305 pa_config->system_aperture.fb_base = adev->gmc.fb_start;
1306 pa_config->system_aperture.fb_offset = adev->vm_manager.vram_base_offset;
1307 pa_config->system_aperture.fb_top = adev->gmc.fb_end;
1309 pa_config->gart_config.page_table_start_addr = page_table_start.quad_part << 12;
1310 pa_config->gart_config.page_table_end_addr = page_table_end.quad_part << 12;
1311 pa_config->gart_config.page_table_base_addr = page_table_base.quad_part;
1313 pa_config->is_hvm_enabled = adev->mode_info.gpu_vm_support;
1317 static void force_connector_state(
1318 struct amdgpu_dm_connector *aconnector,
1319 enum drm_connector_force force_state)
1321 struct drm_connector *connector = &aconnector->base;
1323 mutex_lock(&connector->dev->mode_config.mutex);
1324 aconnector->base.force = force_state;
1325 mutex_unlock(&connector->dev->mode_config.mutex);
1327 mutex_lock(&aconnector->hpd_lock);
1328 drm_kms_helper_connector_hotplug_event(connector);
1329 mutex_unlock(&aconnector->hpd_lock);
1332 static void dm_handle_hpd_rx_offload_work(struct work_struct *work)
1334 struct hpd_rx_irq_offload_work *offload_work;
1335 struct amdgpu_dm_connector *aconnector;
1336 struct dc_link *dc_link;
1337 struct amdgpu_device *adev;
1338 enum dc_connection_type new_connection_type = dc_connection_none;
1339 unsigned long flags;
1340 union test_response test_response;
1342 memset(&test_response, 0, sizeof(test_response));
1344 offload_work = container_of(work, struct hpd_rx_irq_offload_work, work);
1345 aconnector = offload_work->offload_wq->aconnector;
1348 DRM_ERROR("Can't retrieve aconnector in hpd_rx_irq_offload_work");
1352 adev = drm_to_adev(aconnector->base.dev);
1353 dc_link = aconnector->dc_link;
1355 mutex_lock(&aconnector->hpd_lock);
1356 if (!dc_link_detect_connection_type(dc_link, &new_connection_type))
1357 DRM_ERROR("KMS: Failed to detect connector\n");
1358 mutex_unlock(&aconnector->hpd_lock);
1360 if (new_connection_type == dc_connection_none)
1363 if (amdgpu_in_reset(adev))
1366 if (offload_work->data.bytes.device_service_irq.bits.UP_REQ_MSG_RDY ||
1367 offload_work->data.bytes.device_service_irq.bits.DOWN_REP_MSG_RDY) {
1368 dm_handle_mst_sideband_msg_ready_event(&aconnector->mst_mgr, DOWN_OR_UP_MSG_RDY_EVENT);
1369 spin_lock_irqsave(&offload_work->offload_wq->offload_lock, flags);
1370 offload_work->offload_wq->is_handling_mst_msg_rdy_event = false;
1371 spin_unlock_irqrestore(&offload_work->offload_wq->offload_lock, flags);
1375 mutex_lock(&adev->dm.dc_lock);
1376 if (offload_work->data.bytes.device_service_irq.bits.AUTOMATED_TEST) {
1377 dc_link_dp_handle_automated_test(dc_link);
1379 if (aconnector->timing_changed) {
1380 /* force connector disconnect and reconnect */
1381 force_connector_state(aconnector, DRM_FORCE_OFF);
1383 force_connector_state(aconnector, DRM_FORCE_UNSPECIFIED);
1386 test_response.bits.ACK = 1;
1388 core_link_write_dpcd(
1392 sizeof(test_response));
1393 } else if ((dc_link->connector_signal != SIGNAL_TYPE_EDP) &&
1394 dc_link_check_link_loss_status(dc_link, &offload_work->data) &&
1395 dc_link_dp_allow_hpd_rx_irq(dc_link)) {
1396 /* offload_work->data is from handle_hpd_rx_irq->
1397 * schedule_hpd_rx_offload_work.this is defer handle
1398 * for hpd short pulse. upon here, link status may be
1399 * changed, need get latest link status from dpcd
1400 * registers. if link status is good, skip run link
1403 union hpd_irq_data irq_data;
1405 memset(&irq_data, 0, sizeof(irq_data));
1407 /* before dc_link_dp_handle_link_loss, allow new link lost handle
1408 * request be added to work queue if link lost at end of dc_link_
1409 * dp_handle_link_loss
1411 spin_lock_irqsave(&offload_work->offload_wq->offload_lock, flags);
1412 offload_work->offload_wq->is_handling_link_loss = false;
1413 spin_unlock_irqrestore(&offload_work->offload_wq->offload_lock, flags);
1415 if ((dc_link_dp_read_hpd_rx_irq_data(dc_link, &irq_data) == DC_OK) &&
1416 dc_link_check_link_loss_status(dc_link, &irq_data))
1417 dc_link_dp_handle_link_loss(dc_link);
1419 mutex_unlock(&adev->dm.dc_lock);
1422 kfree(offload_work);
1426 static struct hpd_rx_irq_offload_work_queue *hpd_rx_irq_create_workqueue(struct dc *dc)
1428 int max_caps = dc->caps.max_links;
1430 struct hpd_rx_irq_offload_work_queue *hpd_rx_offload_wq = NULL;
1432 hpd_rx_offload_wq = kcalloc(max_caps, sizeof(*hpd_rx_offload_wq), GFP_KERNEL);
1434 if (!hpd_rx_offload_wq)
1438 for (i = 0; i < max_caps; i++) {
1439 hpd_rx_offload_wq[i].wq =
1440 create_singlethread_workqueue("amdgpu_dm_hpd_rx_offload_wq");
1442 if (hpd_rx_offload_wq[i].wq == NULL) {
1443 DRM_ERROR("create amdgpu_dm_hpd_rx_offload_wq fail!");
1447 spin_lock_init(&hpd_rx_offload_wq[i].offload_lock);
1450 return hpd_rx_offload_wq;
1453 for (i = 0; i < max_caps; i++) {
1454 if (hpd_rx_offload_wq[i].wq)
1455 destroy_workqueue(hpd_rx_offload_wq[i].wq);
1457 kfree(hpd_rx_offload_wq);
1461 struct amdgpu_stutter_quirk {
1469 static const struct amdgpu_stutter_quirk amdgpu_stutter_quirk_list[] = {
1470 /* https://bugzilla.kernel.org/show_bug.cgi?id=214417 */
1471 { 0x1002, 0x15dd, 0x1002, 0x15dd, 0xc8 },
1475 static bool dm_should_disable_stutter(struct pci_dev *pdev)
1477 const struct amdgpu_stutter_quirk *p = amdgpu_stutter_quirk_list;
1479 while (p && p->chip_device != 0) {
1480 if (pdev->vendor == p->chip_vendor &&
1481 pdev->device == p->chip_device &&
1482 pdev->subsystem_vendor == p->subsys_vendor &&
1483 pdev->subsystem_device == p->subsys_device &&
1484 pdev->revision == p->revision) {
1492 static const struct dmi_system_id hpd_disconnect_quirk_table[] = {
1495 DMI_MATCH(DMI_SYS_VENDOR, "Dell Inc."),
1496 DMI_MATCH(DMI_PRODUCT_NAME, "Precision 3660"),
1501 DMI_MATCH(DMI_SYS_VENDOR, "Dell Inc."),
1502 DMI_MATCH(DMI_PRODUCT_NAME, "Precision 3260"),
1507 DMI_MATCH(DMI_SYS_VENDOR, "Dell Inc."),
1508 DMI_MATCH(DMI_PRODUCT_NAME, "Precision 3460"),
1513 DMI_MATCH(DMI_SYS_VENDOR, "Dell Inc."),
1514 DMI_MATCH(DMI_PRODUCT_NAME, "OptiPlex Tower Plus 7010"),
1519 DMI_MATCH(DMI_SYS_VENDOR, "Dell Inc."),
1520 DMI_MATCH(DMI_PRODUCT_NAME, "OptiPlex Tower 7010"),
1525 DMI_MATCH(DMI_SYS_VENDOR, "Dell Inc."),
1526 DMI_MATCH(DMI_PRODUCT_NAME, "OptiPlex SFF Plus 7010"),
1531 DMI_MATCH(DMI_SYS_VENDOR, "Dell Inc."),
1532 DMI_MATCH(DMI_PRODUCT_NAME, "OptiPlex SFF 7010"),
1537 DMI_MATCH(DMI_SYS_VENDOR, "Dell Inc."),
1538 DMI_MATCH(DMI_PRODUCT_NAME, "OptiPlex Micro Plus 7010"),
1543 DMI_MATCH(DMI_SYS_VENDOR, "Dell Inc."),
1544 DMI_MATCH(DMI_PRODUCT_NAME, "OptiPlex Micro 7010"),
1548 /* TODO: refactor this from a fixed table to a dynamic option */
1551 static void retrieve_dmi_info(struct amdgpu_display_manager *dm)
1553 const struct dmi_system_id *dmi_id;
1555 dm->aux_hpd_discon_quirk = false;
1557 dmi_id = dmi_first_match(hpd_disconnect_quirk_table);
1559 dm->aux_hpd_discon_quirk = true;
1560 DRM_INFO("aux_hpd_discon_quirk attached\n");
1564 static int amdgpu_dm_init(struct amdgpu_device *adev)
1566 struct dc_init_data init_data;
1567 struct dc_callback_init init_params;
1570 adev->dm.ddev = adev_to_drm(adev);
1571 adev->dm.adev = adev;
1573 /* Zero all the fields */
1574 memset(&init_data, 0, sizeof(init_data));
1575 memset(&init_params, 0, sizeof(init_params));
1577 mutex_init(&adev->dm.dpia_aux_lock);
1578 mutex_init(&adev->dm.dc_lock);
1579 mutex_init(&adev->dm.audio_lock);
1581 if (amdgpu_dm_irq_init(adev)) {
1582 DRM_ERROR("amdgpu: failed to initialize DM IRQ support.\n");
1586 init_data.asic_id.chip_family = adev->family;
1588 init_data.asic_id.pci_revision_id = adev->pdev->revision;
1589 init_data.asic_id.hw_internal_rev = adev->external_rev_id;
1590 init_data.asic_id.chip_id = adev->pdev->device;
1592 init_data.asic_id.vram_width = adev->gmc.vram_width;
1593 /* TODO: initialize init_data.asic_id.vram_type here!!!! */
1594 init_data.asic_id.atombios_base_address =
1595 adev->mode_info.atom_context->bios;
1597 init_data.driver = adev;
1599 adev->dm.cgs_device = amdgpu_cgs_create_device(adev);
1601 if (!adev->dm.cgs_device) {
1602 DRM_ERROR("amdgpu: failed to create cgs device.\n");
1606 init_data.cgs_device = adev->dm.cgs_device;
1608 init_data.dce_environment = DCE_ENV_PRODUCTION_DRV;
1610 switch (amdgpu_ip_version(adev, DCE_HWIP, 0)) {
1611 case IP_VERSION(2, 1, 0):
1612 switch (adev->dm.dmcub_fw_version) {
1613 case 0: /* development */
1614 case 0x1: /* linux-firmware.git hash 6d9f399 */
1615 case 0x01000000: /* linux-firmware.git hash 9a0b0f4 */
1616 init_data.flags.disable_dmcu = false;
1619 init_data.flags.disable_dmcu = true;
1622 case IP_VERSION(2, 0, 3):
1623 init_data.flags.disable_dmcu = true;
1629 /* APU support S/G display by default except:
1630 * ASICs before Carrizo,
1631 * RAVEN1 (Users reported stability issue)
1634 if (adev->asic_type < CHIP_CARRIZO) {
1635 init_data.flags.gpu_vm_support = false;
1636 } else if (adev->asic_type == CHIP_RAVEN) {
1637 if (adev->apu_flags & AMD_APU_IS_RAVEN)
1638 init_data.flags.gpu_vm_support = false;
1640 init_data.flags.gpu_vm_support = (amdgpu_sg_display != 0);
1642 init_data.flags.gpu_vm_support = (amdgpu_sg_display != 0) && (adev->flags & AMD_IS_APU);
1645 adev->mode_info.gpu_vm_support = init_data.flags.gpu_vm_support;
1647 if (amdgpu_dc_feature_mask & DC_FBC_MASK)
1648 init_data.flags.fbc_support = true;
1650 if (amdgpu_dc_feature_mask & DC_MULTI_MON_PP_MCLK_SWITCH_MASK)
1651 init_data.flags.multi_mon_pp_mclk_switch = true;
1653 if (amdgpu_dc_feature_mask & DC_DISABLE_FRACTIONAL_PWM_MASK)
1654 init_data.flags.disable_fractional_pwm = true;
1656 if (amdgpu_dc_feature_mask & DC_EDP_NO_POWER_SEQUENCING)
1657 init_data.flags.edp_no_power_sequencing = true;
1659 if (amdgpu_dc_feature_mask & DC_DISABLE_LTTPR_DP1_4A)
1660 init_data.flags.allow_lttpr_non_transparent_mode.bits.DP1_4A = true;
1661 if (amdgpu_dc_feature_mask & DC_DISABLE_LTTPR_DP2_0)
1662 init_data.flags.allow_lttpr_non_transparent_mode.bits.DP2_0 = true;
1664 init_data.flags.seamless_boot_edp_requested = false;
1666 if (amdgpu_device_seamless_boot_supported(adev)) {
1667 init_data.flags.seamless_boot_edp_requested = true;
1668 init_data.flags.allow_seamless_boot_optimization = true;
1669 DRM_INFO("Seamless boot condition check passed\n");
1672 init_data.flags.enable_mipi_converter_optimization = true;
1674 init_data.dcn_reg_offsets = adev->reg_offset[DCE_HWIP][0];
1675 init_data.nbio_reg_offsets = adev->reg_offset[NBIO_HWIP][0];
1676 init_data.clk_reg_offsets = adev->reg_offset[CLK_HWIP][0];
1678 INIT_LIST_HEAD(&adev->dm.da_list);
1680 retrieve_dmi_info(&adev->dm);
1682 /* Display Core create. */
1683 adev->dm.dc = dc_create(&init_data);
1686 DRM_INFO("Display Core v%s initialized on %s\n", DC_VER,
1687 dce_version_to_string(adev->dm.dc->ctx->dce_version));
1689 DRM_INFO("Display Core failed to initialize with v%s!\n", DC_VER);
1693 if (amdgpu_dc_debug_mask & DC_DISABLE_PIPE_SPLIT) {
1694 adev->dm.dc->debug.force_single_disp_pipe_split = false;
1695 adev->dm.dc->debug.pipe_split_policy = MPC_SPLIT_AVOID;
1698 if (adev->asic_type != CHIP_CARRIZO && adev->asic_type != CHIP_STONEY)
1699 adev->dm.dc->debug.disable_stutter = amdgpu_pp_feature_mask & PP_STUTTER_MODE ? false : true;
1700 if (dm_should_disable_stutter(adev->pdev))
1701 adev->dm.dc->debug.disable_stutter = true;
1703 if (amdgpu_dc_debug_mask & DC_DISABLE_STUTTER)
1704 adev->dm.dc->debug.disable_stutter = true;
1706 if (amdgpu_dc_debug_mask & DC_DISABLE_DSC)
1707 adev->dm.dc->debug.disable_dsc = true;
1709 if (amdgpu_dc_debug_mask & DC_DISABLE_CLOCK_GATING)
1710 adev->dm.dc->debug.disable_clock_gate = true;
1712 if (amdgpu_dc_debug_mask & DC_FORCE_SUBVP_MCLK_SWITCH)
1713 adev->dm.dc->debug.force_subvp_mclk_switch = true;
1715 adev->dm.dc->debug.visual_confirm = amdgpu_dc_visual_confirm;
1717 /* TODO: Remove after DP2 receiver gets proper support of Cable ID feature */
1718 adev->dm.dc->debug.ignore_cable_id = true;
1720 /* TODO: There is a new drm mst change where the freedom of
1721 * vc_next_start_slot update is revoked/moved into drm, instead of in
1722 * driver. This forces us to make sure to get vc_next_start_slot updated
1723 * in drm function each time without considering if mst_state is active
1724 * or not. Otherwise, next time hotplug will give wrong start_slot
1725 * number. We are implementing a temporary solution to even notify drm
1726 * mst deallocation when link is no longer of MST type when uncommitting
1727 * the stream so we will have more time to work on a proper solution.
1728 * Ideally when dm_helpers_dp_mst_stop_top_mgr message is triggered, we
1729 * should notify drm to do a complete "reset" of its states and stop
1730 * calling further drm mst functions when link is no longer of an MST
1731 * type. This could happen when we unplug an MST hubs/displays. When
1732 * uncommit stream comes later after unplug, we should just reset
1733 * hardware states only.
1735 adev->dm.dc->debug.temp_mst_deallocation_sequence = true;
1737 if (adev->dm.dc->caps.dp_hdmi21_pcon_support)
1738 DRM_INFO("DP-HDMI FRL PCON supported\n");
1740 r = dm_dmub_hw_init(adev);
1742 DRM_ERROR("DMUB interface failed to initialize: status=%d\n", r);
1746 dc_hardware_init(adev->dm.dc);
1748 adev->dm.hpd_rx_offload_wq = hpd_rx_irq_create_workqueue(adev->dm.dc);
1749 if (!adev->dm.hpd_rx_offload_wq) {
1750 DRM_ERROR("amdgpu: failed to create hpd rx offload workqueue.\n");
1754 if ((adev->flags & AMD_IS_APU) && (adev->asic_type >= CHIP_CARRIZO)) {
1755 struct dc_phy_addr_space_config pa_config;
1757 mmhub_read_system_context(adev, &pa_config);
1759 // Call the DC init_memory func
1760 dc_setup_system_context(adev->dm.dc, &pa_config);
1763 adev->dm.freesync_module = mod_freesync_create(adev->dm.dc);
1764 if (!adev->dm.freesync_module) {
1766 "amdgpu: failed to initialize freesync_module.\n");
1768 DRM_DEBUG_DRIVER("amdgpu: freesync_module init done %p.\n",
1769 adev->dm.freesync_module);
1771 amdgpu_dm_init_color_mod();
1773 if (adev->dm.dc->caps.max_links > 0) {
1774 adev->dm.vblank_control_workqueue =
1775 create_singlethread_workqueue("dm_vblank_control_workqueue");
1776 if (!adev->dm.vblank_control_workqueue)
1777 DRM_ERROR("amdgpu: failed to initialize vblank_workqueue.\n");
1780 if (adev->dm.dc->caps.max_links > 0 && adev->family >= AMDGPU_FAMILY_RV) {
1781 adev->dm.hdcp_workqueue = hdcp_create_workqueue(adev, &init_params.cp_psp, adev->dm.dc);
1783 if (!adev->dm.hdcp_workqueue)
1784 DRM_ERROR("amdgpu: failed to initialize hdcp_workqueue.\n");
1786 DRM_DEBUG_DRIVER("amdgpu: hdcp_workqueue init done %p.\n", adev->dm.hdcp_workqueue);
1788 dc_init_callbacks(adev->dm.dc, &init_params);
1790 if (dc_is_dmub_outbox_supported(adev->dm.dc)) {
1791 init_completion(&adev->dm.dmub_aux_transfer_done);
1792 adev->dm.dmub_notify = kzalloc(sizeof(struct dmub_notification), GFP_KERNEL);
1793 if (!adev->dm.dmub_notify) {
1794 DRM_INFO("amdgpu: fail to allocate adev->dm.dmub_notify");
1798 adev->dm.delayed_hpd_wq = create_singlethread_workqueue("amdgpu_dm_hpd_wq");
1799 if (!adev->dm.delayed_hpd_wq) {
1800 DRM_ERROR("amdgpu: failed to create hpd offload workqueue.\n");
1804 amdgpu_dm_outbox_init(adev);
1805 if (!register_dmub_notify_callback(adev, DMUB_NOTIFICATION_AUX_REPLY,
1806 dmub_aux_setconfig_callback, false)) {
1807 DRM_ERROR("amdgpu: fail to register dmub aux callback");
1810 if (!register_dmub_notify_callback(adev, DMUB_NOTIFICATION_HPD, dmub_hpd_callback, true)) {
1811 DRM_ERROR("amdgpu: fail to register dmub hpd callback");
1814 if (!register_dmub_notify_callback(adev, DMUB_NOTIFICATION_HPD_IRQ, dmub_hpd_callback, true)) {
1815 DRM_ERROR("amdgpu: fail to register dmub hpd callback");
1820 /* Enable outbox notification only after IRQ handlers are registered and DMUB is alive.
1821 * It is expected that DMUB will resend any pending notifications at this point, for
1822 * example HPD from DPIA.
1824 if (dc_is_dmub_outbox_supported(adev->dm.dc)) {
1825 dc_enable_dmub_outbox(adev->dm.dc);
1827 /* DPIA trace goes to dmesg logs only if outbox is enabled */
1828 if (amdgpu_dc_debug_mask & DC_ENABLE_DPIA_TRACE)
1829 dc_dmub_srv_enable_dpia_trace(adev->dm.dc);
1832 if (amdgpu_dm_initialize_drm_device(adev)) {
1834 "amdgpu: failed to initialize sw for display support.\n");
1838 /* create fake encoders for MST */
1839 dm_dp_create_fake_mst_encoders(adev);
1841 /* TODO: Add_display_info? */
1843 /* TODO use dynamic cursor width */
1844 adev_to_drm(adev)->mode_config.cursor_width = adev->dm.dc->caps.max_cursor_size;
1845 adev_to_drm(adev)->mode_config.cursor_height = adev->dm.dc->caps.max_cursor_size;
1847 if (drm_vblank_init(adev_to_drm(adev), adev->dm.display_indexes_num)) {
1849 "amdgpu: failed to initialize sw for display support.\n");
1853 #if defined(CONFIG_DRM_AMD_SECURE_DISPLAY)
1854 adev->dm.secure_display_ctxs = amdgpu_dm_crtc_secure_display_create_contexts(adev);
1855 if (!adev->dm.secure_display_ctxs)
1856 DRM_ERROR("amdgpu: failed to initialize secure display contexts.\n");
1859 DRM_DEBUG_DRIVER("KMS initialized.\n");
1863 amdgpu_dm_fini(adev);
1868 static int amdgpu_dm_early_fini(void *handle)
1870 struct amdgpu_device *adev = (struct amdgpu_device *)handle;
1872 amdgpu_dm_audio_fini(adev);
1877 static void amdgpu_dm_fini(struct amdgpu_device *adev)
1881 if (adev->dm.vblank_control_workqueue) {
1882 destroy_workqueue(adev->dm.vblank_control_workqueue);
1883 adev->dm.vblank_control_workqueue = NULL;
1886 amdgpu_dm_destroy_drm_device(&adev->dm);
1888 #if defined(CONFIG_DRM_AMD_SECURE_DISPLAY)
1889 if (adev->dm.secure_display_ctxs) {
1890 for (i = 0; i < adev->mode_info.num_crtc; i++) {
1891 if (adev->dm.secure_display_ctxs[i].crtc) {
1892 flush_work(&adev->dm.secure_display_ctxs[i].notify_ta_work);
1893 flush_work(&adev->dm.secure_display_ctxs[i].forward_roi_work);
1896 kfree(adev->dm.secure_display_ctxs);
1897 adev->dm.secure_display_ctxs = NULL;
1900 if (adev->dm.hdcp_workqueue) {
1901 hdcp_destroy(&adev->dev->kobj, adev->dm.hdcp_workqueue);
1902 adev->dm.hdcp_workqueue = NULL;
1906 dc_deinit_callbacks(adev->dm.dc);
1909 dc_dmub_srv_destroy(&adev->dm.dc->ctx->dmub_srv);
1911 if (dc_enable_dmub_notifications(adev->dm.dc)) {
1912 kfree(adev->dm.dmub_notify);
1913 adev->dm.dmub_notify = NULL;
1914 destroy_workqueue(adev->dm.delayed_hpd_wq);
1915 adev->dm.delayed_hpd_wq = NULL;
1918 if (adev->dm.dmub_bo)
1919 amdgpu_bo_free_kernel(&adev->dm.dmub_bo,
1920 &adev->dm.dmub_bo_gpu_addr,
1921 &adev->dm.dmub_bo_cpu_addr);
1923 if (adev->dm.hpd_rx_offload_wq) {
1924 for (i = 0; i < adev->dm.dc->caps.max_links; i++) {
1925 if (adev->dm.hpd_rx_offload_wq[i].wq) {
1926 destroy_workqueue(adev->dm.hpd_rx_offload_wq[i].wq);
1927 adev->dm.hpd_rx_offload_wq[i].wq = NULL;
1931 kfree(adev->dm.hpd_rx_offload_wq);
1932 adev->dm.hpd_rx_offload_wq = NULL;
1935 /* DC Destroy TODO: Replace destroy DAL */
1937 dc_destroy(&adev->dm.dc);
1939 * TODO: pageflip, vlank interrupt
1941 * amdgpu_dm_irq_fini(adev);
1944 if (adev->dm.cgs_device) {
1945 amdgpu_cgs_destroy_device(adev->dm.cgs_device);
1946 adev->dm.cgs_device = NULL;
1948 if (adev->dm.freesync_module) {
1949 mod_freesync_destroy(adev->dm.freesync_module);
1950 adev->dm.freesync_module = NULL;
1953 mutex_destroy(&adev->dm.audio_lock);
1954 mutex_destroy(&adev->dm.dc_lock);
1955 mutex_destroy(&adev->dm.dpia_aux_lock);
1958 static int load_dmcu_fw(struct amdgpu_device *adev)
1960 const char *fw_name_dmcu = NULL;
1962 const struct dmcu_firmware_header_v1_0 *hdr;
1964 switch (adev->asic_type) {
1965 #if defined(CONFIG_DRM_AMD_DC_SI)
1980 case CHIP_POLARIS11:
1981 case CHIP_POLARIS10:
1982 case CHIP_POLARIS12:
1989 fw_name_dmcu = FIRMWARE_NAVI12_DMCU;
1992 if (ASICREV_IS_PICASSO(adev->external_rev_id))
1993 fw_name_dmcu = FIRMWARE_RAVEN_DMCU;
1994 else if (ASICREV_IS_RAVEN2(adev->external_rev_id))
1995 fw_name_dmcu = FIRMWARE_RAVEN_DMCU;
2000 switch (amdgpu_ip_version(adev, DCE_HWIP, 0)) {
2001 case IP_VERSION(2, 0, 2):
2002 case IP_VERSION(2, 0, 3):
2003 case IP_VERSION(2, 0, 0):
2004 case IP_VERSION(2, 1, 0):
2005 case IP_VERSION(3, 0, 0):
2006 case IP_VERSION(3, 0, 2):
2007 case IP_VERSION(3, 0, 3):
2008 case IP_VERSION(3, 0, 1):
2009 case IP_VERSION(3, 1, 2):
2010 case IP_VERSION(3, 1, 3):
2011 case IP_VERSION(3, 1, 4):
2012 case IP_VERSION(3, 1, 5):
2013 case IP_VERSION(3, 1, 6):
2014 case IP_VERSION(3, 2, 0):
2015 case IP_VERSION(3, 2, 1):
2016 case IP_VERSION(3, 5, 0):
2021 DRM_ERROR("Unsupported ASIC type: 0x%X\n", adev->asic_type);
2025 if (adev->firmware.load_type != AMDGPU_FW_LOAD_PSP) {
2026 DRM_DEBUG_KMS("dm: DMCU firmware not supported on direct or SMU loading\n");
2030 r = amdgpu_ucode_request(adev, &adev->dm.fw_dmcu, fw_name_dmcu);
2032 /* DMCU firmware is not necessary, so don't raise a fuss if it's missing */
2033 DRM_DEBUG_KMS("dm: DMCU firmware not found\n");
2034 adev->dm.fw_dmcu = NULL;
2038 dev_err(adev->dev, "amdgpu_dm: Can't validate firmware \"%s\"\n",
2040 amdgpu_ucode_release(&adev->dm.fw_dmcu);
2044 hdr = (const struct dmcu_firmware_header_v1_0 *)adev->dm.fw_dmcu->data;
2045 adev->firmware.ucode[AMDGPU_UCODE_ID_DMCU_ERAM].ucode_id = AMDGPU_UCODE_ID_DMCU_ERAM;
2046 adev->firmware.ucode[AMDGPU_UCODE_ID_DMCU_ERAM].fw = adev->dm.fw_dmcu;
2047 adev->firmware.fw_size +=
2048 ALIGN(le32_to_cpu(hdr->header.ucode_size_bytes) - le32_to_cpu(hdr->intv_size_bytes), PAGE_SIZE);
2050 adev->firmware.ucode[AMDGPU_UCODE_ID_DMCU_INTV].ucode_id = AMDGPU_UCODE_ID_DMCU_INTV;
2051 adev->firmware.ucode[AMDGPU_UCODE_ID_DMCU_INTV].fw = adev->dm.fw_dmcu;
2052 adev->firmware.fw_size +=
2053 ALIGN(le32_to_cpu(hdr->intv_size_bytes), PAGE_SIZE);
2055 adev->dm.dmcu_fw_version = le32_to_cpu(hdr->header.ucode_version);
2057 DRM_DEBUG_KMS("PSP loading DMCU firmware\n");
2062 static uint32_t amdgpu_dm_dmub_reg_read(void *ctx, uint32_t address)
2064 struct amdgpu_device *adev = ctx;
2066 return dm_read_reg(adev->dm.dc->ctx, address);
2069 static void amdgpu_dm_dmub_reg_write(void *ctx, uint32_t address,
2072 struct amdgpu_device *adev = ctx;
2074 return dm_write_reg(adev->dm.dc->ctx, address, value);
2077 static int dm_dmub_sw_init(struct amdgpu_device *adev)
2079 struct dmub_srv_create_params create_params;
2080 struct dmub_srv_region_params region_params;
2081 struct dmub_srv_region_info region_info;
2082 struct dmub_srv_memory_params memory_params;
2083 struct dmub_srv_fb_info *fb_info;
2084 struct dmub_srv *dmub_srv;
2085 const struct dmcub_firmware_header_v1_0 *hdr;
2086 enum dmub_asic dmub_asic;
2087 enum dmub_status status;
2090 switch (amdgpu_ip_version(adev, DCE_HWIP, 0)) {
2091 case IP_VERSION(2, 1, 0):
2092 dmub_asic = DMUB_ASIC_DCN21;
2094 case IP_VERSION(3, 0, 0):
2095 dmub_asic = DMUB_ASIC_DCN30;
2097 case IP_VERSION(3, 0, 1):
2098 dmub_asic = DMUB_ASIC_DCN301;
2100 case IP_VERSION(3, 0, 2):
2101 dmub_asic = DMUB_ASIC_DCN302;
2103 case IP_VERSION(3, 0, 3):
2104 dmub_asic = DMUB_ASIC_DCN303;
2106 case IP_VERSION(3, 1, 2):
2107 case IP_VERSION(3, 1, 3):
2108 dmub_asic = (adev->external_rev_id == YELLOW_CARP_B0) ? DMUB_ASIC_DCN31B : DMUB_ASIC_DCN31;
2110 case IP_VERSION(3, 1, 4):
2111 dmub_asic = DMUB_ASIC_DCN314;
2113 case IP_VERSION(3, 1, 5):
2114 dmub_asic = DMUB_ASIC_DCN315;
2116 case IP_VERSION(3, 1, 6):
2117 dmub_asic = DMUB_ASIC_DCN316;
2119 case IP_VERSION(3, 2, 0):
2120 dmub_asic = DMUB_ASIC_DCN32;
2122 case IP_VERSION(3, 2, 1):
2123 dmub_asic = DMUB_ASIC_DCN321;
2125 case IP_VERSION(3, 5, 0):
2126 dmub_asic = DMUB_ASIC_DCN35;
2129 /* ASIC doesn't support DMUB. */
2133 hdr = (const struct dmcub_firmware_header_v1_0 *)adev->dm.dmub_fw->data;
2134 adev->dm.dmcub_fw_version = le32_to_cpu(hdr->header.ucode_version);
2136 if (adev->firmware.load_type == AMDGPU_FW_LOAD_PSP) {
2137 adev->firmware.ucode[AMDGPU_UCODE_ID_DMCUB].ucode_id =
2138 AMDGPU_UCODE_ID_DMCUB;
2139 adev->firmware.ucode[AMDGPU_UCODE_ID_DMCUB].fw =
2141 adev->firmware.fw_size +=
2142 ALIGN(le32_to_cpu(hdr->inst_const_bytes), PAGE_SIZE);
2144 DRM_INFO("Loading DMUB firmware via PSP: version=0x%08X\n",
2145 adev->dm.dmcub_fw_version);
2149 adev->dm.dmub_srv = kzalloc(sizeof(*adev->dm.dmub_srv), GFP_KERNEL);
2150 dmub_srv = adev->dm.dmub_srv;
2153 DRM_ERROR("Failed to allocate DMUB service!\n");
2157 memset(&create_params, 0, sizeof(create_params));
2158 create_params.user_ctx = adev;
2159 create_params.funcs.reg_read = amdgpu_dm_dmub_reg_read;
2160 create_params.funcs.reg_write = amdgpu_dm_dmub_reg_write;
2161 create_params.asic = dmub_asic;
2163 /* Create the DMUB service. */
2164 status = dmub_srv_create(dmub_srv, &create_params);
2165 if (status != DMUB_STATUS_OK) {
2166 DRM_ERROR("Error creating DMUB service: %d\n", status);
2170 /* Calculate the size of all the regions for the DMUB service. */
2171 memset(®ion_params, 0, sizeof(region_params));
2173 region_params.inst_const_size = le32_to_cpu(hdr->inst_const_bytes) -
2174 PSP_HEADER_BYTES - PSP_FOOTER_BYTES;
2175 region_params.bss_data_size = le32_to_cpu(hdr->bss_data_bytes);
2176 region_params.vbios_size = adev->bios_size;
2177 region_params.fw_bss_data = region_params.bss_data_size ?
2178 adev->dm.dmub_fw->data +
2179 le32_to_cpu(hdr->header.ucode_array_offset_bytes) +
2180 le32_to_cpu(hdr->inst_const_bytes) : NULL;
2181 region_params.fw_inst_const =
2182 adev->dm.dmub_fw->data +
2183 le32_to_cpu(hdr->header.ucode_array_offset_bytes) +
2185 region_params.is_mailbox_in_inbox = false;
2187 status = dmub_srv_calc_region_info(dmub_srv, ®ion_params,
2190 if (status != DMUB_STATUS_OK) {
2191 DRM_ERROR("Error calculating DMUB region info: %d\n", status);
2196 * Allocate a framebuffer based on the total size of all the regions.
2197 * TODO: Move this into GART.
2199 r = amdgpu_bo_create_kernel(adev, region_info.fb_size, PAGE_SIZE,
2200 AMDGPU_GEM_DOMAIN_VRAM |
2201 AMDGPU_GEM_DOMAIN_GTT,
2203 &adev->dm.dmub_bo_gpu_addr,
2204 &adev->dm.dmub_bo_cpu_addr);
2208 /* Rebase the regions on the framebuffer address. */
2209 memset(&memory_params, 0, sizeof(memory_params));
2210 memory_params.cpu_fb_addr = adev->dm.dmub_bo_cpu_addr;
2211 memory_params.gpu_fb_addr = adev->dm.dmub_bo_gpu_addr;
2212 memory_params.region_info = ®ion_info;
2214 adev->dm.dmub_fb_info =
2215 kzalloc(sizeof(*adev->dm.dmub_fb_info), GFP_KERNEL);
2216 fb_info = adev->dm.dmub_fb_info;
2220 "Failed to allocate framebuffer info for DMUB service!\n");
2224 status = dmub_srv_calc_mem_info(dmub_srv, &memory_params, fb_info);
2225 if (status != DMUB_STATUS_OK) {
2226 DRM_ERROR("Error calculating DMUB FB info: %d\n", status);
2233 static int dm_sw_init(void *handle)
2235 struct amdgpu_device *adev = (struct amdgpu_device *)handle;
2238 r = dm_dmub_sw_init(adev);
2242 return load_dmcu_fw(adev);
2245 static int dm_sw_fini(void *handle)
2247 struct amdgpu_device *adev = (struct amdgpu_device *)handle;
2249 kfree(adev->dm.dmub_fb_info);
2250 adev->dm.dmub_fb_info = NULL;
2252 if (adev->dm.dmub_srv) {
2253 dmub_srv_destroy(adev->dm.dmub_srv);
2254 adev->dm.dmub_srv = NULL;
2257 amdgpu_ucode_release(&adev->dm.dmub_fw);
2258 amdgpu_ucode_release(&adev->dm.fw_dmcu);
2263 static int detect_mst_link_for_all_connectors(struct drm_device *dev)
2265 struct amdgpu_dm_connector *aconnector;
2266 struct drm_connector *connector;
2267 struct drm_connector_list_iter iter;
2270 drm_connector_list_iter_begin(dev, &iter);
2271 drm_for_each_connector_iter(connector, &iter) {
2272 aconnector = to_amdgpu_dm_connector(connector);
2273 if (aconnector->dc_link->type == dc_connection_mst_branch &&
2274 aconnector->mst_mgr.aux) {
2275 DRM_DEBUG_DRIVER("DM_MST: starting TM on aconnector: %p [id: %d]\n",
2277 aconnector->base.base.id);
2279 ret = drm_dp_mst_topology_mgr_set_mst(&aconnector->mst_mgr, true);
2281 DRM_ERROR("DM_MST: Failed to start MST\n");
2282 aconnector->dc_link->type =
2283 dc_connection_single;
2284 ret = dm_helpers_dp_mst_stop_top_mgr(aconnector->dc_link->ctx,
2285 aconnector->dc_link);
2290 drm_connector_list_iter_end(&iter);
2295 static int dm_late_init(void *handle)
2297 struct amdgpu_device *adev = (struct amdgpu_device *)handle;
2299 struct dmcu_iram_parameters params;
2300 unsigned int linear_lut[16];
2302 struct dmcu *dmcu = NULL;
2304 dmcu = adev->dm.dc->res_pool->dmcu;
2306 for (i = 0; i < 16; i++)
2307 linear_lut[i] = 0xFFFF * i / 15;
2310 params.backlight_ramping_override = false;
2311 params.backlight_ramping_start = 0xCCCC;
2312 params.backlight_ramping_reduction = 0xCCCCCCCC;
2313 params.backlight_lut_array_size = 16;
2314 params.backlight_lut_array = linear_lut;
2316 /* Min backlight level after ABM reduction, Don't allow below 1%
2317 * 0xFFFF x 0.01 = 0x28F
2319 params.min_abm_backlight = 0x28F;
2320 /* In the case where abm is implemented on dmcub,
2321 * dmcu object will be null.
2322 * ABM 2.4 and up are implemented on dmcub.
2325 if (!dmcu_load_iram(dmcu, params))
2327 } else if (adev->dm.dc->ctx->dmub_srv) {
2328 struct dc_link *edp_links[MAX_NUM_EDP];
2331 dc_get_edp_links(adev->dm.dc, edp_links, &edp_num);
2332 for (i = 0; i < edp_num; i++) {
2333 if (!dmub_init_abm_config(adev->dm.dc->res_pool, params, i))
2338 return detect_mst_link_for_all_connectors(adev_to_drm(adev));
2341 static void resume_mst_branch_status(struct drm_dp_mst_topology_mgr *mgr)
2347 mutex_lock(&mgr->lock);
2348 if (!mgr->mst_primary)
2351 if (drm_dp_read_dpcd_caps(mgr->aux, mgr->dpcd) < 0) {
2352 drm_dbg_kms(mgr->dev, "dpcd read failed - undocked during suspend?\n");
2356 ret = drm_dp_dpcd_writeb(mgr->aux, DP_MSTM_CTRL,
2359 DP_UPSTREAM_IS_SRC);
2361 drm_dbg_kms(mgr->dev, "mst write failed - undocked during suspend?\n");
2365 /* Some hubs forget their guids after they resume */
2366 ret = drm_dp_dpcd_read(mgr->aux, DP_GUID, guid, 16);
2368 drm_dbg_kms(mgr->dev, "dpcd read failed - undocked during suspend?\n");
2372 if (memchr_inv(guid, 0, 16) == NULL) {
2373 tmp64 = get_jiffies_64();
2374 memcpy(&guid[0], &tmp64, sizeof(u64));
2375 memcpy(&guid[8], &tmp64, sizeof(u64));
2377 ret = drm_dp_dpcd_write(mgr->aux, DP_GUID, guid, 16);
2380 drm_dbg_kms(mgr->dev, "check mstb guid failed - undocked during suspend?\n");
2385 memcpy(mgr->mst_primary->guid, guid, 16);
2388 mutex_unlock(&mgr->lock);
2391 static void s3_handle_mst(struct drm_device *dev, bool suspend)
2393 struct amdgpu_dm_connector *aconnector;
2394 struct drm_connector *connector;
2395 struct drm_connector_list_iter iter;
2396 struct drm_dp_mst_topology_mgr *mgr;
2398 drm_connector_list_iter_begin(dev, &iter);
2399 drm_for_each_connector_iter(connector, &iter) {
2400 aconnector = to_amdgpu_dm_connector(connector);
2401 if (aconnector->dc_link->type != dc_connection_mst_branch ||
2402 aconnector->mst_root)
2405 mgr = &aconnector->mst_mgr;
2408 drm_dp_mst_topology_mgr_suspend(mgr);
2410 /* if extended timeout is supported in hardware,
2411 * default to LTTPR timeout (3.2ms) first as a W/A for DP link layer
2412 * CTS 4.2.1.1 regression introduced by CTS specs requirement update.
2414 try_to_configure_aux_timeout(aconnector->dc_link->ddc, LINK_AUX_DEFAULT_LTTPR_TIMEOUT_PERIOD);
2415 if (!dp_is_lttpr_present(aconnector->dc_link))
2416 try_to_configure_aux_timeout(aconnector->dc_link->ddc, LINK_AUX_DEFAULT_TIMEOUT_PERIOD);
2418 /* TODO: move resume_mst_branch_status() into drm mst resume again
2419 * once topology probing work is pulled out from mst resume into mst
2420 * resume 2nd step. mst resume 2nd step should be called after old
2421 * state getting restored (i.e. drm_atomic_helper_resume()).
2423 resume_mst_branch_status(mgr);
2426 drm_connector_list_iter_end(&iter);
2429 static int amdgpu_dm_smu_write_watermarks_table(struct amdgpu_device *adev)
2433 /* This interface is for dGPU Navi1x.Linux dc-pplib interface depends
2434 * on window driver dc implementation.
2435 * For Navi1x, clock settings of dcn watermarks are fixed. the settings
2436 * should be passed to smu during boot up and resume from s3.
2437 * boot up: dc calculate dcn watermark clock settings within dc_create,
2438 * dcn20_resource_construct
2439 * then call pplib functions below to pass the settings to smu:
2440 * smu_set_watermarks_for_clock_ranges
2441 * smu_set_watermarks_table
2442 * navi10_set_watermarks_table
2443 * smu_write_watermarks_table
2445 * For Renoir, clock settings of dcn watermark are also fixed values.
2446 * dc has implemented different flow for window driver:
2447 * dc_hardware_init / dc_set_power_state
2452 * smu_set_watermarks_for_clock_ranges
2453 * renoir_set_watermarks_table
2454 * smu_write_watermarks_table
2457 * dc_hardware_init -> amdgpu_dm_init
2458 * dc_set_power_state --> dm_resume
2460 * therefore, this function apply to navi10/12/14 but not Renoir
2463 switch (amdgpu_ip_version(adev, DCE_HWIP, 0)) {
2464 case IP_VERSION(2, 0, 2):
2465 case IP_VERSION(2, 0, 0):
2471 ret = amdgpu_dpm_write_watermarks_table(adev);
2473 DRM_ERROR("Failed to update WMTABLE!\n");
2481 * dm_hw_init() - Initialize DC device
2482 * @handle: The base driver device containing the amdgpu_dm device.
2484 * Initialize the &struct amdgpu_display_manager device. This involves calling
2485 * the initializers of each DM component, then populating the struct with them.
2487 * Although the function implies hardware initialization, both hardware and
2488 * software are initialized here. Splitting them out to their relevant init
2489 * hooks is a future TODO item.
2491 * Some notable things that are initialized here:
2493 * - Display Core, both software and hardware
2494 * - DC modules that we need (freesync and color management)
2495 * - DRM software states
2496 * - Interrupt sources and handlers
2498 * - Debug FS entries, if enabled
2500 static int dm_hw_init(void *handle)
2502 struct amdgpu_device *adev = (struct amdgpu_device *)handle;
2503 /* Create DAL display manager */
2504 amdgpu_dm_init(adev);
2505 amdgpu_dm_hpd_init(adev);
2511 * dm_hw_fini() - Teardown DC device
2512 * @handle: The base driver device containing the amdgpu_dm device.
2514 * Teardown components within &struct amdgpu_display_manager that require
2515 * cleanup. This involves cleaning up the DRM device, DC, and any modules that
2516 * were loaded. Also flush IRQ workqueues and disable them.
2518 static int dm_hw_fini(void *handle)
2520 struct amdgpu_device *adev = (struct amdgpu_device *)handle;
2522 amdgpu_dm_hpd_fini(adev);
2524 amdgpu_dm_irq_fini(adev);
2525 amdgpu_dm_fini(adev);
2530 static void dm_gpureset_toggle_interrupts(struct amdgpu_device *adev,
2531 struct dc_state *state, bool enable)
2533 enum dc_irq_source irq_source;
2534 struct amdgpu_crtc *acrtc;
2538 for (i = 0; i < state->stream_count; i++) {
2539 acrtc = get_crtc_by_otg_inst(
2540 adev, state->stream_status[i].primary_otg_inst);
2542 if (acrtc && state->stream_status[i].plane_count != 0) {
2543 irq_source = IRQ_TYPE_PFLIP + acrtc->otg_inst;
2544 rc = dc_interrupt_set(adev->dm.dc, irq_source, enable) ? 0 : -EBUSY;
2546 DRM_WARN("Failed to %s pflip interrupts\n",
2547 enable ? "enable" : "disable");
2550 if (amdgpu_dm_crtc_vrr_active(to_dm_crtc_state(acrtc->base.state)))
2551 rc = amdgpu_dm_crtc_set_vupdate_irq(&acrtc->base, true);
2553 rc = amdgpu_dm_crtc_set_vupdate_irq(&acrtc->base, false);
2556 DRM_WARN("Failed to %sable vupdate interrupt\n", enable ? "en" : "dis");
2558 irq_source = IRQ_TYPE_VBLANK + acrtc->otg_inst;
2559 /* During gpu-reset we disable and then enable vblank irq, so
2560 * don't use amdgpu_irq_get/put() to avoid refcount change.
2562 if (!dc_interrupt_set(adev->dm.dc, irq_source, enable))
2563 DRM_WARN("Failed to %sable vblank interrupt\n", enable ? "en" : "dis");
2569 static enum dc_status amdgpu_dm_commit_zero_streams(struct dc *dc)
2571 struct dc_state *context = NULL;
2572 enum dc_status res = DC_ERROR_UNEXPECTED;
2574 struct dc_stream_state *del_streams[MAX_PIPES];
2575 int del_streams_count = 0;
2577 memset(del_streams, 0, sizeof(del_streams));
2579 context = dc_create_state(dc);
2580 if (context == NULL)
2581 goto context_alloc_fail;
2583 dc_resource_state_copy_construct_current(dc, context);
2585 /* First remove from context all streams */
2586 for (i = 0; i < context->stream_count; i++) {
2587 struct dc_stream_state *stream = context->streams[i];
2589 del_streams[del_streams_count++] = stream;
2592 /* Remove all planes for removed streams and then remove the streams */
2593 for (i = 0; i < del_streams_count; i++) {
2594 if (!dc_rem_all_planes_for_stream(dc, del_streams[i], context)) {
2595 res = DC_FAIL_DETACH_SURFACES;
2599 res = dc_remove_stream_from_ctx(dc, context, del_streams[i]);
2604 res = dc_commit_streams(dc, context->streams, context->stream_count);
2607 dc_release_state(context);
2613 static void hpd_rx_irq_work_suspend(struct amdgpu_display_manager *dm)
2617 if (dm->hpd_rx_offload_wq) {
2618 for (i = 0; i < dm->dc->caps.max_links; i++)
2619 flush_workqueue(dm->hpd_rx_offload_wq[i].wq);
2623 static int dm_suspend(void *handle)
2625 struct amdgpu_device *adev = handle;
2626 struct amdgpu_display_manager *dm = &adev->dm;
2629 if (amdgpu_in_reset(adev)) {
2630 mutex_lock(&dm->dc_lock);
2632 dc_allow_idle_optimizations(adev->dm.dc, false);
2634 dm->cached_dc_state = dc_copy_state(dm->dc->current_state);
2636 dm_gpureset_toggle_interrupts(adev, dm->cached_dc_state, false);
2638 amdgpu_dm_commit_zero_streams(dm->dc);
2640 amdgpu_dm_irq_suspend(adev);
2642 hpd_rx_irq_work_suspend(dm);
2647 WARN_ON(adev->dm.cached_state);
2648 adev->dm.cached_state = drm_atomic_helper_suspend(adev_to_drm(adev));
2649 if (IS_ERR(adev->dm.cached_state))
2650 return PTR_ERR(adev->dm.cached_state);
2652 s3_handle_mst(adev_to_drm(adev), true);
2654 amdgpu_dm_irq_suspend(adev);
2656 hpd_rx_irq_work_suspend(dm);
2658 dc_set_power_state(dm->dc, DC_ACPI_CM_POWER_STATE_D3);
2663 struct amdgpu_dm_connector *
2664 amdgpu_dm_find_first_crtc_matching_connector(struct drm_atomic_state *state,
2665 struct drm_crtc *crtc)
2668 struct drm_connector_state *new_con_state;
2669 struct drm_connector *connector;
2670 struct drm_crtc *crtc_from_state;
2672 for_each_new_connector_in_state(state, connector, new_con_state, i) {
2673 crtc_from_state = new_con_state->crtc;
2675 if (crtc_from_state == crtc)
2676 return to_amdgpu_dm_connector(connector);
2682 static void emulated_link_detect(struct dc_link *link)
2684 struct dc_sink_init_data sink_init_data = { 0 };
2685 struct display_sink_capability sink_caps = { 0 };
2686 enum dc_edid_status edid_status;
2687 struct dc_context *dc_ctx = link->ctx;
2688 struct drm_device *dev = adev_to_drm(dc_ctx->driver_context);
2689 struct dc_sink *sink = NULL;
2690 struct dc_sink *prev_sink = NULL;
2692 link->type = dc_connection_none;
2693 prev_sink = link->local_sink;
2696 dc_sink_release(prev_sink);
2698 switch (link->connector_signal) {
2699 case SIGNAL_TYPE_HDMI_TYPE_A: {
2700 sink_caps.transaction_type = DDC_TRANSACTION_TYPE_I2C;
2701 sink_caps.signal = SIGNAL_TYPE_HDMI_TYPE_A;
2705 case SIGNAL_TYPE_DVI_SINGLE_LINK: {
2706 sink_caps.transaction_type = DDC_TRANSACTION_TYPE_I2C;
2707 sink_caps.signal = SIGNAL_TYPE_DVI_SINGLE_LINK;
2711 case SIGNAL_TYPE_DVI_DUAL_LINK: {
2712 sink_caps.transaction_type = DDC_TRANSACTION_TYPE_I2C;
2713 sink_caps.signal = SIGNAL_TYPE_DVI_DUAL_LINK;
2717 case SIGNAL_TYPE_LVDS: {
2718 sink_caps.transaction_type = DDC_TRANSACTION_TYPE_I2C;
2719 sink_caps.signal = SIGNAL_TYPE_LVDS;
2723 case SIGNAL_TYPE_EDP: {
2724 sink_caps.transaction_type =
2725 DDC_TRANSACTION_TYPE_I2C_OVER_AUX;
2726 sink_caps.signal = SIGNAL_TYPE_EDP;
2730 case SIGNAL_TYPE_DISPLAY_PORT: {
2731 sink_caps.transaction_type =
2732 DDC_TRANSACTION_TYPE_I2C_OVER_AUX;
2733 sink_caps.signal = SIGNAL_TYPE_VIRTUAL;
2738 drm_err(dev, "Invalid connector type! signal:%d\n",
2739 link->connector_signal);
2743 sink_init_data.link = link;
2744 sink_init_data.sink_signal = sink_caps.signal;
2746 sink = dc_sink_create(&sink_init_data);
2748 drm_err(dev, "Failed to create sink!\n");
2752 /* dc_sink_create returns a new reference */
2753 link->local_sink = sink;
2755 edid_status = dm_helpers_read_local_edid(
2760 if (edid_status != EDID_OK)
2761 drm_err(dev, "Failed to read EDID\n");
2765 static void dm_gpureset_commit_state(struct dc_state *dc_state,
2766 struct amdgpu_display_manager *dm)
2769 struct dc_surface_update surface_updates[MAX_SURFACES];
2770 struct dc_plane_info plane_infos[MAX_SURFACES];
2771 struct dc_scaling_info scaling_infos[MAX_SURFACES];
2772 struct dc_flip_addrs flip_addrs[MAX_SURFACES];
2773 struct dc_stream_update stream_update;
2777 bundle = kzalloc(sizeof(*bundle), GFP_KERNEL);
2780 drm_err(dm->ddev, "Failed to allocate update bundle\n");
2784 for (k = 0; k < dc_state->stream_count; k++) {
2785 bundle->stream_update.stream = dc_state->streams[k];
2787 for (m = 0; m < dc_state->stream_status->plane_count; m++) {
2788 bundle->surface_updates[m].surface =
2789 dc_state->stream_status->plane_states[m];
2790 bundle->surface_updates[m].surface->force_full_update =
2794 update_planes_and_stream_adapter(dm->dc,
2796 dc_state->stream_status->plane_count,
2797 dc_state->streams[k],
2798 &bundle->stream_update,
2799 bundle->surface_updates);
2806 static int dm_resume(void *handle)
2808 struct amdgpu_device *adev = handle;
2809 struct drm_device *ddev = adev_to_drm(adev);
2810 struct amdgpu_display_manager *dm = &adev->dm;
2811 struct amdgpu_dm_connector *aconnector;
2812 struct drm_connector *connector;
2813 struct drm_connector_list_iter iter;
2814 struct drm_crtc *crtc;
2815 struct drm_crtc_state *new_crtc_state;
2816 struct dm_crtc_state *dm_new_crtc_state;
2817 struct drm_plane *plane;
2818 struct drm_plane_state *new_plane_state;
2819 struct dm_plane_state *dm_new_plane_state;
2820 struct dm_atomic_state *dm_state = to_dm_atomic_state(dm->atomic_obj.state);
2821 enum dc_connection_type new_connection_type = dc_connection_none;
2822 struct dc_state *dc_state;
2824 bool need_hotplug = false;
2826 if (dm->dc->caps.ips_support) {
2827 dc_dmub_srv_exit_low_power_state(dm->dc);
2830 if (amdgpu_in_reset(adev)) {
2831 dc_state = dm->cached_dc_state;
2834 * The dc->current_state is backed up into dm->cached_dc_state
2835 * before we commit 0 streams.
2837 * DC will clear link encoder assignments on the real state
2838 * but the changes won't propagate over to the copy we made
2839 * before the 0 streams commit.
2841 * DC expects that link encoder assignments are *not* valid
2842 * when committing a state, so as a workaround we can copy
2843 * off of the current state.
2845 * We lose the previous assignments, but we had already
2846 * commit 0 streams anyway.
2848 link_enc_cfg_copy(adev->dm.dc->current_state, dc_state);
2850 r = dm_dmub_hw_init(adev);
2852 DRM_ERROR("DMUB interface failed to initialize: status=%d\n", r);
2854 dc_set_power_state(dm->dc, DC_ACPI_CM_POWER_STATE_D0);
2858 amdgpu_dm_irq_resume_early(adev);
2860 for (i = 0; i < dc_state->stream_count; i++) {
2861 dc_state->streams[i]->mode_changed = true;
2862 for (j = 0; j < dc_state->stream_status[i].plane_count; j++) {
2863 dc_state->stream_status[i].plane_states[j]->update_flags.raw
2868 if (dc_is_dmub_outbox_supported(adev->dm.dc)) {
2869 amdgpu_dm_outbox_init(adev);
2870 dc_enable_dmub_outbox(adev->dm.dc);
2873 WARN_ON(!dc_commit_streams(dm->dc, dc_state->streams, dc_state->stream_count));
2875 dm_gpureset_commit_state(dm->cached_dc_state, dm);
2877 dm_gpureset_toggle_interrupts(adev, dm->cached_dc_state, true);
2879 dc_release_state(dm->cached_dc_state);
2880 dm->cached_dc_state = NULL;
2882 amdgpu_dm_irq_resume_late(adev);
2884 mutex_unlock(&dm->dc_lock);
2888 /* Recreate dc_state - DC invalidates it when setting power state to S3. */
2889 dc_release_state(dm_state->context);
2890 dm_state->context = dc_create_state(dm->dc);
2891 /* TODO: Remove dc_state->dccg, use dc->dccg directly. */
2892 dc_resource_state_construct(dm->dc, dm_state->context);
2894 /* Before powering on DC we need to re-initialize DMUB. */
2895 dm_dmub_hw_resume(adev);
2897 /* Re-enable outbox interrupts for DPIA. */
2898 if (dc_is_dmub_outbox_supported(adev->dm.dc)) {
2899 amdgpu_dm_outbox_init(adev);
2900 dc_enable_dmub_outbox(adev->dm.dc);
2903 /* power on hardware */
2904 dc_set_power_state(dm->dc, DC_ACPI_CM_POWER_STATE_D0);
2906 /* program HPD filter */
2910 * early enable HPD Rx IRQ, should be done before set mode as short
2911 * pulse interrupts are used for MST
2913 amdgpu_dm_irq_resume_early(adev);
2915 /* On resume we need to rewrite the MSTM control bits to enable MST*/
2916 s3_handle_mst(ddev, false);
2919 drm_connector_list_iter_begin(ddev, &iter);
2920 drm_for_each_connector_iter(connector, &iter) {
2921 aconnector = to_amdgpu_dm_connector(connector);
2923 if (!aconnector->dc_link)
2927 * this is the case when traversing through already created end sink
2928 * MST connectors, should be skipped
2930 if (aconnector && aconnector->mst_root)
2933 mutex_lock(&aconnector->hpd_lock);
2934 if (!dc_link_detect_connection_type(aconnector->dc_link, &new_connection_type))
2935 DRM_ERROR("KMS: Failed to detect connector\n");
2937 if (aconnector->base.force && new_connection_type == dc_connection_none) {
2938 emulated_link_detect(aconnector->dc_link);
2940 mutex_lock(&dm->dc_lock);
2941 dc_link_detect(aconnector->dc_link, DETECT_REASON_HPD);
2942 mutex_unlock(&dm->dc_lock);
2945 if (aconnector->fake_enable && aconnector->dc_link->local_sink)
2946 aconnector->fake_enable = false;
2948 if (aconnector->dc_sink)
2949 dc_sink_release(aconnector->dc_sink);
2950 aconnector->dc_sink = NULL;
2951 amdgpu_dm_update_connector_after_detect(aconnector);
2952 mutex_unlock(&aconnector->hpd_lock);
2954 drm_connector_list_iter_end(&iter);
2956 /* Force mode set in atomic commit */
2957 for_each_new_crtc_in_state(dm->cached_state, crtc, new_crtc_state, i)
2958 new_crtc_state->active_changed = true;
2961 * atomic_check is expected to create the dc states. We need to release
2962 * them here, since they were duplicated as part of the suspend
2965 for_each_new_crtc_in_state(dm->cached_state, crtc, new_crtc_state, i) {
2966 dm_new_crtc_state = to_dm_crtc_state(new_crtc_state);
2967 if (dm_new_crtc_state->stream) {
2968 WARN_ON(kref_read(&dm_new_crtc_state->stream->refcount) > 1);
2969 dc_stream_release(dm_new_crtc_state->stream);
2970 dm_new_crtc_state->stream = NULL;
2974 for_each_new_plane_in_state(dm->cached_state, plane, new_plane_state, i) {
2975 dm_new_plane_state = to_dm_plane_state(new_plane_state);
2976 if (dm_new_plane_state->dc_state) {
2977 WARN_ON(kref_read(&dm_new_plane_state->dc_state->refcount) > 1);
2978 dc_plane_state_release(dm_new_plane_state->dc_state);
2979 dm_new_plane_state->dc_state = NULL;
2983 drm_atomic_helper_resume(ddev, dm->cached_state);
2985 dm->cached_state = NULL;
2987 /* Do mst topology probing after resuming cached state*/
2988 drm_connector_list_iter_begin(ddev, &iter);
2989 drm_for_each_connector_iter(connector, &iter) {
2990 aconnector = to_amdgpu_dm_connector(connector);
2991 if (aconnector->dc_link->type != dc_connection_mst_branch ||
2992 aconnector->mst_root)
2995 ret = drm_dp_mst_topology_mgr_resume(&aconnector->mst_mgr, true);
2998 dm_helpers_dp_mst_stop_top_mgr(aconnector->dc_link->ctx,
2999 aconnector->dc_link);
3000 need_hotplug = true;
3003 drm_connector_list_iter_end(&iter);
3006 drm_kms_helper_hotplug_event(ddev);
3008 amdgpu_dm_irq_resume_late(adev);
3010 amdgpu_dm_smu_write_watermarks_table(adev);
3018 * DM (and consequently DC) is registered in the amdgpu base driver as a IP
3019 * block. When CONFIG_DRM_AMD_DC is enabled, the DM device IP block is added to
3020 * the base driver's device list to be initialized and torn down accordingly.
3022 * The functions to do so are provided as hooks in &struct amd_ip_funcs.
3025 static const struct amd_ip_funcs amdgpu_dm_funcs = {
3027 .early_init = dm_early_init,
3028 .late_init = dm_late_init,
3029 .sw_init = dm_sw_init,
3030 .sw_fini = dm_sw_fini,
3031 .early_fini = amdgpu_dm_early_fini,
3032 .hw_init = dm_hw_init,
3033 .hw_fini = dm_hw_fini,
3034 .suspend = dm_suspend,
3035 .resume = dm_resume,
3036 .is_idle = dm_is_idle,
3037 .wait_for_idle = dm_wait_for_idle,
3038 .check_soft_reset = dm_check_soft_reset,
3039 .soft_reset = dm_soft_reset,
3040 .set_clockgating_state = dm_set_clockgating_state,
3041 .set_powergating_state = dm_set_powergating_state,
3044 const struct amdgpu_ip_block_version dm_ip_block = {
3045 .type = AMD_IP_BLOCK_TYPE_DCE,
3049 .funcs = &amdgpu_dm_funcs,
3059 static const struct drm_mode_config_funcs amdgpu_dm_mode_funcs = {
3060 .fb_create = amdgpu_display_user_framebuffer_create,
3061 .get_format_info = amdgpu_dm_plane_get_format_info,
3062 .atomic_check = amdgpu_dm_atomic_check,
3063 .atomic_commit = drm_atomic_helper_commit,
3066 static struct drm_mode_config_helper_funcs amdgpu_dm_mode_config_helperfuncs = {
3067 .atomic_commit_tail = amdgpu_dm_atomic_commit_tail,
3068 .atomic_commit_setup = drm_dp_mst_atomic_setup_commit,
3071 static void update_connector_ext_caps(struct amdgpu_dm_connector *aconnector)
3073 struct amdgpu_dm_backlight_caps *caps;
3074 struct drm_connector *conn_base;
3075 struct amdgpu_device *adev;
3076 struct drm_luminance_range_info *luminance_range;
3078 if (aconnector->bl_idx == -1 ||
3079 aconnector->dc_link->connector_signal != SIGNAL_TYPE_EDP)
3082 conn_base = &aconnector->base;
3083 adev = drm_to_adev(conn_base->dev);
3085 caps = &adev->dm.backlight_caps[aconnector->bl_idx];
3086 caps->ext_caps = &aconnector->dc_link->dpcd_sink_ext_caps;
3087 caps->aux_support = false;
3089 if (caps->ext_caps->bits.oled == 1
3092 * caps->ext_caps->bits.sdr_aux_backlight_control == 1 ||
3093 * caps->ext_caps->bits.hdr_aux_backlight_control == 1
3095 caps->aux_support = true;
3097 if (amdgpu_backlight == 0)
3098 caps->aux_support = false;
3099 else if (amdgpu_backlight == 1)
3100 caps->aux_support = true;
3102 luminance_range = &conn_base->display_info.luminance_range;
3104 if (luminance_range->max_luminance) {
3105 caps->aux_min_input_signal = luminance_range->min_luminance;
3106 caps->aux_max_input_signal = luminance_range->max_luminance;
3108 caps->aux_min_input_signal = 0;
3109 caps->aux_max_input_signal = 512;
3113 void amdgpu_dm_update_connector_after_detect(
3114 struct amdgpu_dm_connector *aconnector)
3116 struct drm_connector *connector = &aconnector->base;
3117 struct drm_device *dev = connector->dev;
3118 struct dc_sink *sink;
3120 /* MST handled by drm_mst framework */
3121 if (aconnector->mst_mgr.mst_state == true)
3124 sink = aconnector->dc_link->local_sink;
3126 dc_sink_retain(sink);
3129 * Edid mgmt connector gets first update only in mode_valid hook and then
3130 * the connector sink is set to either fake or physical sink depends on link status.
3131 * Skip if already done during boot.
3133 if (aconnector->base.force != DRM_FORCE_UNSPECIFIED
3134 && aconnector->dc_em_sink) {
3137 * For S3 resume with headless use eml_sink to fake stream
3138 * because on resume connector->sink is set to NULL
3140 mutex_lock(&dev->mode_config.mutex);
3143 if (aconnector->dc_sink) {
3144 amdgpu_dm_update_freesync_caps(connector, NULL);
3146 * retain and release below are used to
3147 * bump up refcount for sink because the link doesn't point
3148 * to it anymore after disconnect, so on next crtc to connector
3149 * reshuffle by UMD we will get into unwanted dc_sink release
3151 dc_sink_release(aconnector->dc_sink);
3153 aconnector->dc_sink = sink;
3154 dc_sink_retain(aconnector->dc_sink);
3155 amdgpu_dm_update_freesync_caps(connector,
3158 amdgpu_dm_update_freesync_caps(connector, NULL);
3159 if (!aconnector->dc_sink) {
3160 aconnector->dc_sink = aconnector->dc_em_sink;
3161 dc_sink_retain(aconnector->dc_sink);
3165 mutex_unlock(&dev->mode_config.mutex);
3168 dc_sink_release(sink);
3173 * TODO: temporary guard to look for proper fix
3174 * if this sink is MST sink, we should not do anything
3176 if (sink && sink->sink_signal == SIGNAL_TYPE_DISPLAY_PORT_MST) {
3177 dc_sink_release(sink);
3181 if (aconnector->dc_sink == sink) {
3183 * We got a DP short pulse (Link Loss, DP CTS, etc...).
3186 DRM_DEBUG_DRIVER("DCHPD: connector_id=%d: dc_sink didn't change.\n",
3187 aconnector->connector_id);
3189 dc_sink_release(sink);
3193 DRM_DEBUG_DRIVER("DCHPD: connector_id=%d: Old sink=%p New sink=%p\n",
3194 aconnector->connector_id, aconnector->dc_sink, sink);
3196 mutex_lock(&dev->mode_config.mutex);
3199 * 1. Update status of the drm connector
3200 * 2. Send an event and let userspace tell us what to do
3204 * TODO: check if we still need the S3 mode update workaround.
3205 * If yes, put it here.
3207 if (aconnector->dc_sink) {
3208 amdgpu_dm_update_freesync_caps(connector, NULL);
3209 dc_sink_release(aconnector->dc_sink);
3212 aconnector->dc_sink = sink;
3213 dc_sink_retain(aconnector->dc_sink);
3214 if (sink->dc_edid.length == 0) {
3215 aconnector->edid = NULL;
3216 if (aconnector->dc_link->aux_mode) {
3217 drm_dp_cec_unset_edid(
3218 &aconnector->dm_dp_aux.aux);
3222 (struct edid *)sink->dc_edid.raw_edid;
3224 if (aconnector->dc_link->aux_mode)
3225 drm_dp_cec_set_edid(&aconnector->dm_dp_aux.aux,
3229 if (!aconnector->timing_requested) {
3230 aconnector->timing_requested =
3231 kzalloc(sizeof(struct dc_crtc_timing), GFP_KERNEL);
3232 if (!aconnector->timing_requested)
3234 "failed to create aconnector->requested_timing\n");
3237 drm_connector_update_edid_property(connector, aconnector->edid);
3238 amdgpu_dm_update_freesync_caps(connector, aconnector->edid);
3239 update_connector_ext_caps(aconnector);
3241 drm_dp_cec_unset_edid(&aconnector->dm_dp_aux.aux);
3242 amdgpu_dm_update_freesync_caps(connector, NULL);
3243 drm_connector_update_edid_property(connector, NULL);
3244 aconnector->num_modes = 0;
3245 dc_sink_release(aconnector->dc_sink);
3246 aconnector->dc_sink = NULL;
3247 aconnector->edid = NULL;
3248 kfree(aconnector->timing_requested);
3249 aconnector->timing_requested = NULL;
3250 /* Set CP to DESIRED if it was ENABLED, so we can re-enable it again on hotplug */
3251 if (connector->state->content_protection == DRM_MODE_CONTENT_PROTECTION_ENABLED)
3252 connector->state->content_protection = DRM_MODE_CONTENT_PROTECTION_DESIRED;
3255 mutex_unlock(&dev->mode_config.mutex);
3257 update_subconnector_property(aconnector);
3260 dc_sink_release(sink);
3263 static void handle_hpd_irq_helper(struct amdgpu_dm_connector *aconnector)
3265 struct drm_connector *connector = &aconnector->base;
3266 struct drm_device *dev = connector->dev;
3267 enum dc_connection_type new_connection_type = dc_connection_none;
3268 struct amdgpu_device *adev = drm_to_adev(dev);
3269 struct dm_connector_state *dm_con_state = to_dm_connector_state(connector->state);
3272 if (adev->dm.disable_hpd_irq)
3276 * In case of failure or MST no need to update connector status or notify the OS
3277 * since (for MST case) MST does this in its own context.
3279 mutex_lock(&aconnector->hpd_lock);
3281 if (adev->dm.hdcp_workqueue) {
3282 hdcp_reset_display(adev->dm.hdcp_workqueue, aconnector->dc_link->link_index);
3283 dm_con_state->update_hdcp = true;
3285 if (aconnector->fake_enable)
3286 aconnector->fake_enable = false;
3288 aconnector->timing_changed = false;
3290 if (!dc_link_detect_connection_type(aconnector->dc_link, &new_connection_type))
3291 DRM_ERROR("KMS: Failed to detect connector\n");
3293 if (aconnector->base.force && new_connection_type == dc_connection_none) {
3294 emulated_link_detect(aconnector->dc_link);
3296 drm_modeset_lock_all(dev);
3297 dm_restore_drm_connector_state(dev, connector);
3298 drm_modeset_unlock_all(dev);
3300 if (aconnector->base.force == DRM_FORCE_UNSPECIFIED)
3301 drm_kms_helper_connector_hotplug_event(connector);
3303 mutex_lock(&adev->dm.dc_lock);
3304 ret = dc_link_detect(aconnector->dc_link, DETECT_REASON_HPD);
3305 mutex_unlock(&adev->dm.dc_lock);
3307 amdgpu_dm_update_connector_after_detect(aconnector);
3309 drm_modeset_lock_all(dev);
3310 dm_restore_drm_connector_state(dev, connector);
3311 drm_modeset_unlock_all(dev);
3313 if (aconnector->base.force == DRM_FORCE_UNSPECIFIED)
3314 drm_kms_helper_connector_hotplug_event(connector);
3317 mutex_unlock(&aconnector->hpd_lock);
3321 static void handle_hpd_irq(void *param)
3323 struct amdgpu_dm_connector *aconnector = (struct amdgpu_dm_connector *)param;
3325 handle_hpd_irq_helper(aconnector);
3329 static void schedule_hpd_rx_offload_work(struct hpd_rx_irq_offload_work_queue *offload_wq,
3330 union hpd_irq_data hpd_irq_data)
3332 struct hpd_rx_irq_offload_work *offload_work =
3333 kzalloc(sizeof(*offload_work), GFP_KERNEL);
3335 if (!offload_work) {
3336 DRM_ERROR("Failed to allocate hpd_rx_irq_offload_work.\n");
3340 INIT_WORK(&offload_work->work, dm_handle_hpd_rx_offload_work);
3341 offload_work->data = hpd_irq_data;
3342 offload_work->offload_wq = offload_wq;
3344 queue_work(offload_wq->wq, &offload_work->work);
3345 DRM_DEBUG_KMS("queue work to handle hpd_rx offload work");
3348 static void handle_hpd_rx_irq(void *param)
3350 struct amdgpu_dm_connector *aconnector = (struct amdgpu_dm_connector *)param;
3351 struct drm_connector *connector = &aconnector->base;
3352 struct drm_device *dev = connector->dev;
3353 struct dc_link *dc_link = aconnector->dc_link;
3354 bool is_mst_root_connector = aconnector->mst_mgr.mst_state;
3355 bool result = false;
3356 enum dc_connection_type new_connection_type = dc_connection_none;
3357 struct amdgpu_device *adev = drm_to_adev(dev);
3358 union hpd_irq_data hpd_irq_data;
3359 bool link_loss = false;
3360 bool has_left_work = false;
3361 int idx = dc_link->link_index;
3362 struct hpd_rx_irq_offload_work_queue *offload_wq = &adev->dm.hpd_rx_offload_wq[idx];
3364 memset(&hpd_irq_data, 0, sizeof(hpd_irq_data));
3366 if (adev->dm.disable_hpd_irq)
3370 * TODO:Temporary add mutex to protect hpd interrupt not have a gpio
3371 * conflict, after implement i2c helper, this mutex should be
3374 mutex_lock(&aconnector->hpd_lock);
3376 result = dc_link_handle_hpd_rx_irq(dc_link, &hpd_irq_data,
3377 &link_loss, true, &has_left_work);
3382 if (hpd_irq_data.bytes.device_service_irq.bits.AUTOMATED_TEST) {
3383 schedule_hpd_rx_offload_work(offload_wq, hpd_irq_data);
3387 if (dc_link_dp_allow_hpd_rx_irq(dc_link)) {
3388 if (hpd_irq_data.bytes.device_service_irq.bits.UP_REQ_MSG_RDY ||
3389 hpd_irq_data.bytes.device_service_irq.bits.DOWN_REP_MSG_RDY) {
3393 * DOWN_REP_MSG_RDY is also handled by polling method
3394 * mgr->cbs->poll_hpd_irq()
3396 spin_lock(&offload_wq->offload_lock);
3397 skip = offload_wq->is_handling_mst_msg_rdy_event;
3400 offload_wq->is_handling_mst_msg_rdy_event = true;
3402 spin_unlock(&offload_wq->offload_lock);
3405 schedule_hpd_rx_offload_work(offload_wq, hpd_irq_data);
3413 spin_lock(&offload_wq->offload_lock);
3414 skip = offload_wq->is_handling_link_loss;
3417 offload_wq->is_handling_link_loss = true;
3419 spin_unlock(&offload_wq->offload_lock);
3422 schedule_hpd_rx_offload_work(offload_wq, hpd_irq_data);
3429 if (result && !is_mst_root_connector) {
3430 /* Downstream Port status changed. */
3431 if (!dc_link_detect_connection_type(dc_link, &new_connection_type))
3432 DRM_ERROR("KMS: Failed to detect connector\n");
3434 if (aconnector->base.force && new_connection_type == dc_connection_none) {
3435 emulated_link_detect(dc_link);
3437 if (aconnector->fake_enable)
3438 aconnector->fake_enable = false;
3440 amdgpu_dm_update_connector_after_detect(aconnector);
3443 drm_modeset_lock_all(dev);
3444 dm_restore_drm_connector_state(dev, connector);
3445 drm_modeset_unlock_all(dev);
3447 drm_kms_helper_connector_hotplug_event(connector);
3451 mutex_lock(&adev->dm.dc_lock);
3452 ret = dc_link_detect(dc_link, DETECT_REASON_HPDRX);
3453 mutex_unlock(&adev->dm.dc_lock);
3456 if (aconnector->fake_enable)
3457 aconnector->fake_enable = false;
3459 amdgpu_dm_update_connector_after_detect(aconnector);
3461 drm_modeset_lock_all(dev);
3462 dm_restore_drm_connector_state(dev, connector);
3463 drm_modeset_unlock_all(dev);
3465 drm_kms_helper_connector_hotplug_event(connector);
3469 if (hpd_irq_data.bytes.device_service_irq.bits.CP_IRQ) {
3470 if (adev->dm.hdcp_workqueue)
3471 hdcp_handle_cpirq(adev->dm.hdcp_workqueue, aconnector->base.index);
3474 if (dc_link->type != dc_connection_mst_branch)
3475 drm_dp_cec_irq(&aconnector->dm_dp_aux.aux);
3477 mutex_unlock(&aconnector->hpd_lock);
3480 static void register_hpd_handlers(struct amdgpu_device *adev)
3482 struct drm_device *dev = adev_to_drm(adev);
3483 struct drm_connector *connector;
3484 struct amdgpu_dm_connector *aconnector;
3485 const struct dc_link *dc_link;
3486 struct dc_interrupt_params int_params = {0};
3488 int_params.requested_polarity = INTERRUPT_POLARITY_DEFAULT;
3489 int_params.current_polarity = INTERRUPT_POLARITY_DEFAULT;
3491 list_for_each_entry(connector,
3492 &dev->mode_config.connector_list, head) {
3494 aconnector = to_amdgpu_dm_connector(connector);
3495 dc_link = aconnector->dc_link;
3497 if (dc_link->irq_source_hpd != DC_IRQ_SOURCE_INVALID) {
3498 int_params.int_context = INTERRUPT_LOW_IRQ_CONTEXT;
3499 int_params.irq_source = dc_link->irq_source_hpd;
3501 amdgpu_dm_irq_register_interrupt(adev, &int_params,
3503 (void *) aconnector);
3506 if (dc_link->irq_source_hpd_rx != DC_IRQ_SOURCE_INVALID) {
3508 /* Also register for DP short pulse (hpd_rx). */
3509 int_params.int_context = INTERRUPT_LOW_IRQ_CONTEXT;
3510 int_params.irq_source = dc_link->irq_source_hpd_rx;
3512 amdgpu_dm_irq_register_interrupt(adev, &int_params,
3514 (void *) aconnector);
3517 if (adev->dm.hpd_rx_offload_wq)
3518 adev->dm.hpd_rx_offload_wq[connector->index].aconnector =
3523 #if defined(CONFIG_DRM_AMD_DC_SI)
3524 /* Register IRQ sources and initialize IRQ callbacks */
3525 static int dce60_register_irq_handlers(struct amdgpu_device *adev)
3527 struct dc *dc = adev->dm.dc;
3528 struct common_irq_params *c_irq_params;
3529 struct dc_interrupt_params int_params = {0};
3532 unsigned int client_id = AMDGPU_IRQ_CLIENTID_LEGACY;
3534 int_params.requested_polarity = INTERRUPT_POLARITY_DEFAULT;
3535 int_params.current_polarity = INTERRUPT_POLARITY_DEFAULT;
3538 * Actions of amdgpu_irq_add_id():
3539 * 1. Register a set() function with base driver.
3540 * Base driver will call set() function to enable/disable an
3541 * interrupt in DC hardware.
3542 * 2. Register amdgpu_dm_irq_handler().
3543 * Base driver will call amdgpu_dm_irq_handler() for ALL interrupts
3544 * coming from DC hardware.
3545 * amdgpu_dm_irq_handler() will re-direct the interrupt to DC
3546 * for acknowledging and handling.
3549 /* Use VBLANK interrupt */
3550 for (i = 0; i < adev->mode_info.num_crtc; i++) {
3551 r = amdgpu_irq_add_id(adev, client_id, i + 1, &adev->crtc_irq);
3553 DRM_ERROR("Failed to add crtc irq id!\n");
3557 int_params.int_context = INTERRUPT_HIGH_IRQ_CONTEXT;
3558 int_params.irq_source =
3559 dc_interrupt_to_irq_source(dc, i + 1, 0);
3561 c_irq_params = &adev->dm.vblank_params[int_params.irq_source - DC_IRQ_SOURCE_VBLANK1];
3563 c_irq_params->adev = adev;
3564 c_irq_params->irq_src = int_params.irq_source;
3566 amdgpu_dm_irq_register_interrupt(adev, &int_params,
3567 dm_crtc_high_irq, c_irq_params);
3570 /* Use GRPH_PFLIP interrupt */
3571 for (i = VISLANDS30_IV_SRCID_D1_GRPH_PFLIP;
3572 i <= VISLANDS30_IV_SRCID_D6_GRPH_PFLIP; i += 2) {
3573 r = amdgpu_irq_add_id(adev, client_id, i, &adev->pageflip_irq);
3575 DRM_ERROR("Failed to add page flip irq id!\n");
3579 int_params.int_context = INTERRUPT_HIGH_IRQ_CONTEXT;
3580 int_params.irq_source =
3581 dc_interrupt_to_irq_source(dc, i, 0);
3583 c_irq_params = &adev->dm.pflip_params[int_params.irq_source - DC_IRQ_SOURCE_PFLIP_FIRST];
3585 c_irq_params->adev = adev;
3586 c_irq_params->irq_src = int_params.irq_source;
3588 amdgpu_dm_irq_register_interrupt(adev, &int_params,
3589 dm_pflip_high_irq, c_irq_params);
3594 r = amdgpu_irq_add_id(adev, client_id,
3595 VISLANDS30_IV_SRCID_HOTPLUG_DETECT_A, &adev->hpd_irq);
3597 DRM_ERROR("Failed to add hpd irq id!\n");
3601 register_hpd_handlers(adev);
3607 /* Register IRQ sources and initialize IRQ callbacks */
3608 static int dce110_register_irq_handlers(struct amdgpu_device *adev)
3610 struct dc *dc = adev->dm.dc;
3611 struct common_irq_params *c_irq_params;
3612 struct dc_interrupt_params int_params = {0};
3615 unsigned int client_id = AMDGPU_IRQ_CLIENTID_LEGACY;
3617 if (adev->family >= AMDGPU_FAMILY_AI)
3618 client_id = SOC15_IH_CLIENTID_DCE;
3620 int_params.requested_polarity = INTERRUPT_POLARITY_DEFAULT;
3621 int_params.current_polarity = INTERRUPT_POLARITY_DEFAULT;
3624 * Actions of amdgpu_irq_add_id():
3625 * 1. Register a set() function with base driver.
3626 * Base driver will call set() function to enable/disable an
3627 * interrupt in DC hardware.
3628 * 2. Register amdgpu_dm_irq_handler().
3629 * Base driver will call amdgpu_dm_irq_handler() for ALL interrupts
3630 * coming from DC hardware.
3631 * amdgpu_dm_irq_handler() will re-direct the interrupt to DC
3632 * for acknowledging and handling.
3635 /* Use VBLANK interrupt */
3636 for (i = VISLANDS30_IV_SRCID_D1_VERTICAL_INTERRUPT0; i <= VISLANDS30_IV_SRCID_D6_VERTICAL_INTERRUPT0; i++) {
3637 r = amdgpu_irq_add_id(adev, client_id, i, &adev->crtc_irq);
3639 DRM_ERROR("Failed to add crtc irq id!\n");
3643 int_params.int_context = INTERRUPT_HIGH_IRQ_CONTEXT;
3644 int_params.irq_source =
3645 dc_interrupt_to_irq_source(dc, i, 0);
3647 c_irq_params = &adev->dm.vblank_params[int_params.irq_source - DC_IRQ_SOURCE_VBLANK1];
3649 c_irq_params->adev = adev;
3650 c_irq_params->irq_src = int_params.irq_source;
3652 amdgpu_dm_irq_register_interrupt(adev, &int_params,
3653 dm_crtc_high_irq, c_irq_params);
3656 /* Use VUPDATE interrupt */
3657 for (i = VISLANDS30_IV_SRCID_D1_V_UPDATE_INT; i <= VISLANDS30_IV_SRCID_D6_V_UPDATE_INT; i += 2) {
3658 r = amdgpu_irq_add_id(adev, client_id, i, &adev->vupdate_irq);
3660 DRM_ERROR("Failed to add vupdate irq id!\n");
3664 int_params.int_context = INTERRUPT_HIGH_IRQ_CONTEXT;
3665 int_params.irq_source =
3666 dc_interrupt_to_irq_source(dc, i, 0);
3668 c_irq_params = &adev->dm.vupdate_params[int_params.irq_source - DC_IRQ_SOURCE_VUPDATE1];
3670 c_irq_params->adev = adev;
3671 c_irq_params->irq_src = int_params.irq_source;
3673 amdgpu_dm_irq_register_interrupt(adev, &int_params,
3674 dm_vupdate_high_irq, c_irq_params);
3677 /* Use GRPH_PFLIP interrupt */
3678 for (i = VISLANDS30_IV_SRCID_D1_GRPH_PFLIP;
3679 i <= VISLANDS30_IV_SRCID_D6_GRPH_PFLIP; i += 2) {
3680 r = amdgpu_irq_add_id(adev, client_id, i, &adev->pageflip_irq);
3682 DRM_ERROR("Failed to add page flip irq id!\n");
3686 int_params.int_context = INTERRUPT_HIGH_IRQ_CONTEXT;
3687 int_params.irq_source =
3688 dc_interrupt_to_irq_source(dc, i, 0);
3690 c_irq_params = &adev->dm.pflip_params[int_params.irq_source - DC_IRQ_SOURCE_PFLIP_FIRST];
3692 c_irq_params->adev = adev;
3693 c_irq_params->irq_src = int_params.irq_source;
3695 amdgpu_dm_irq_register_interrupt(adev, &int_params,
3696 dm_pflip_high_irq, c_irq_params);
3701 r = amdgpu_irq_add_id(adev, client_id,
3702 VISLANDS30_IV_SRCID_HOTPLUG_DETECT_A, &adev->hpd_irq);
3704 DRM_ERROR("Failed to add hpd irq id!\n");
3708 register_hpd_handlers(adev);
3713 /* Register IRQ sources and initialize IRQ callbacks */
3714 static int dcn10_register_irq_handlers(struct amdgpu_device *adev)
3716 struct dc *dc = adev->dm.dc;
3717 struct common_irq_params *c_irq_params;
3718 struct dc_interrupt_params int_params = {0};
3721 #if defined(CONFIG_DRM_AMD_SECURE_DISPLAY)
3722 static const unsigned int vrtl_int_srcid[] = {
3723 DCN_1_0__SRCID__OTG1_VERTICAL_INTERRUPT0_CONTROL,
3724 DCN_1_0__SRCID__OTG2_VERTICAL_INTERRUPT0_CONTROL,
3725 DCN_1_0__SRCID__OTG3_VERTICAL_INTERRUPT0_CONTROL,
3726 DCN_1_0__SRCID__OTG4_VERTICAL_INTERRUPT0_CONTROL,
3727 DCN_1_0__SRCID__OTG5_VERTICAL_INTERRUPT0_CONTROL,
3728 DCN_1_0__SRCID__OTG6_VERTICAL_INTERRUPT0_CONTROL
3732 int_params.requested_polarity = INTERRUPT_POLARITY_DEFAULT;
3733 int_params.current_polarity = INTERRUPT_POLARITY_DEFAULT;
3736 * Actions of amdgpu_irq_add_id():
3737 * 1. Register a set() function with base driver.
3738 * Base driver will call set() function to enable/disable an
3739 * interrupt in DC hardware.
3740 * 2. Register amdgpu_dm_irq_handler().
3741 * Base driver will call amdgpu_dm_irq_handler() for ALL interrupts
3742 * coming from DC hardware.
3743 * amdgpu_dm_irq_handler() will re-direct the interrupt to DC
3744 * for acknowledging and handling.
3747 /* Use VSTARTUP interrupt */
3748 for (i = DCN_1_0__SRCID__DC_D1_OTG_VSTARTUP;
3749 i <= DCN_1_0__SRCID__DC_D1_OTG_VSTARTUP + adev->mode_info.num_crtc - 1;
3751 r = amdgpu_irq_add_id(adev, SOC15_IH_CLIENTID_DCE, i, &adev->crtc_irq);
3754 DRM_ERROR("Failed to add crtc irq id!\n");
3758 int_params.int_context = INTERRUPT_HIGH_IRQ_CONTEXT;
3759 int_params.irq_source =
3760 dc_interrupt_to_irq_source(dc, i, 0);
3762 c_irq_params = &adev->dm.vblank_params[int_params.irq_source - DC_IRQ_SOURCE_VBLANK1];
3764 c_irq_params->adev = adev;
3765 c_irq_params->irq_src = int_params.irq_source;
3767 amdgpu_dm_irq_register_interrupt(
3768 adev, &int_params, dm_crtc_high_irq, c_irq_params);
3771 /* Use otg vertical line interrupt */
3772 #if defined(CONFIG_DRM_AMD_SECURE_DISPLAY)
3773 for (i = 0; i <= adev->mode_info.num_crtc - 1; i++) {
3774 r = amdgpu_irq_add_id(adev, SOC15_IH_CLIENTID_DCE,
3775 vrtl_int_srcid[i], &adev->vline0_irq);
3778 DRM_ERROR("Failed to add vline0 irq id!\n");
3782 int_params.int_context = INTERRUPT_HIGH_IRQ_CONTEXT;
3783 int_params.irq_source =
3784 dc_interrupt_to_irq_source(dc, vrtl_int_srcid[i], 0);
3786 if (int_params.irq_source == DC_IRQ_SOURCE_INVALID) {
3787 DRM_ERROR("Failed to register vline0 irq %d!\n", vrtl_int_srcid[i]);
3791 c_irq_params = &adev->dm.vline0_params[int_params.irq_source
3792 - DC_IRQ_SOURCE_DC1_VLINE0];
3794 c_irq_params->adev = adev;
3795 c_irq_params->irq_src = int_params.irq_source;
3797 amdgpu_dm_irq_register_interrupt(adev, &int_params,
3798 dm_dcn_vertical_interrupt0_high_irq, c_irq_params);
3802 /* Use VUPDATE_NO_LOCK interrupt on DCN, which seems to correspond to
3803 * the regular VUPDATE interrupt on DCE. We want DC_IRQ_SOURCE_VUPDATEx
3804 * to trigger at end of each vblank, regardless of state of the lock,
3805 * matching DCE behaviour.
3807 for (i = DCN_1_0__SRCID__OTG0_IHC_V_UPDATE_NO_LOCK_INTERRUPT;
3808 i <= DCN_1_0__SRCID__OTG0_IHC_V_UPDATE_NO_LOCK_INTERRUPT + adev->mode_info.num_crtc - 1;
3810 r = amdgpu_irq_add_id(adev, SOC15_IH_CLIENTID_DCE, i, &adev->vupdate_irq);
3813 DRM_ERROR("Failed to add vupdate irq id!\n");
3817 int_params.int_context = INTERRUPT_HIGH_IRQ_CONTEXT;
3818 int_params.irq_source =
3819 dc_interrupt_to_irq_source(dc, i, 0);
3821 c_irq_params = &adev->dm.vupdate_params[int_params.irq_source - DC_IRQ_SOURCE_VUPDATE1];
3823 c_irq_params->adev = adev;
3824 c_irq_params->irq_src = int_params.irq_source;
3826 amdgpu_dm_irq_register_interrupt(adev, &int_params,
3827 dm_vupdate_high_irq, c_irq_params);
3830 /* Use GRPH_PFLIP interrupt */
3831 for (i = DCN_1_0__SRCID__HUBP0_FLIP_INTERRUPT;
3832 i <= DCN_1_0__SRCID__HUBP0_FLIP_INTERRUPT + dc->caps.max_otg_num - 1;
3834 r = amdgpu_irq_add_id(adev, SOC15_IH_CLIENTID_DCE, i, &adev->pageflip_irq);
3836 DRM_ERROR("Failed to add page flip irq id!\n");
3840 int_params.int_context = INTERRUPT_HIGH_IRQ_CONTEXT;
3841 int_params.irq_source =
3842 dc_interrupt_to_irq_source(dc, i, 0);
3844 c_irq_params = &adev->dm.pflip_params[int_params.irq_source - DC_IRQ_SOURCE_PFLIP_FIRST];
3846 c_irq_params->adev = adev;
3847 c_irq_params->irq_src = int_params.irq_source;
3849 amdgpu_dm_irq_register_interrupt(adev, &int_params,
3850 dm_pflip_high_irq, c_irq_params);
3855 r = amdgpu_irq_add_id(adev, SOC15_IH_CLIENTID_DCE, DCN_1_0__SRCID__DC_HPD1_INT,
3858 DRM_ERROR("Failed to add hpd irq id!\n");
3862 register_hpd_handlers(adev);
3866 /* Register Outbox IRQ sources and initialize IRQ callbacks */
3867 static int register_outbox_irq_handlers(struct amdgpu_device *adev)
3869 struct dc *dc = adev->dm.dc;
3870 struct common_irq_params *c_irq_params;
3871 struct dc_interrupt_params int_params = {0};
3874 int_params.requested_polarity = INTERRUPT_POLARITY_DEFAULT;
3875 int_params.current_polarity = INTERRUPT_POLARITY_DEFAULT;
3877 r = amdgpu_irq_add_id(adev, SOC15_IH_CLIENTID_DCE, DCN_1_0__SRCID__DMCUB_OUTBOX_LOW_PRIORITY_READY_INT,
3878 &adev->dmub_outbox_irq);
3880 DRM_ERROR("Failed to add outbox irq id!\n");
3884 if (dc->ctx->dmub_srv) {
3885 i = DCN_1_0__SRCID__DMCUB_OUTBOX_LOW_PRIORITY_READY_INT;
3886 int_params.int_context = INTERRUPT_LOW_IRQ_CONTEXT;
3887 int_params.irq_source =
3888 dc_interrupt_to_irq_source(dc, i, 0);
3890 c_irq_params = &adev->dm.dmub_outbox_params[0];
3892 c_irq_params->adev = adev;
3893 c_irq_params->irq_src = int_params.irq_source;
3895 amdgpu_dm_irq_register_interrupt(adev, &int_params,
3896 dm_dmub_outbox1_low_irq, c_irq_params);
3903 * Acquires the lock for the atomic state object and returns
3904 * the new atomic state.
3906 * This should only be called during atomic check.
3908 int dm_atomic_get_state(struct drm_atomic_state *state,
3909 struct dm_atomic_state **dm_state)
3911 struct drm_device *dev = state->dev;
3912 struct amdgpu_device *adev = drm_to_adev(dev);
3913 struct amdgpu_display_manager *dm = &adev->dm;
3914 struct drm_private_state *priv_state;
3919 priv_state = drm_atomic_get_private_obj_state(state, &dm->atomic_obj);
3920 if (IS_ERR(priv_state))
3921 return PTR_ERR(priv_state);
3923 *dm_state = to_dm_atomic_state(priv_state);
3928 static struct dm_atomic_state *
3929 dm_atomic_get_new_state(struct drm_atomic_state *state)
3931 struct drm_device *dev = state->dev;
3932 struct amdgpu_device *adev = drm_to_adev(dev);
3933 struct amdgpu_display_manager *dm = &adev->dm;
3934 struct drm_private_obj *obj;
3935 struct drm_private_state *new_obj_state;
3938 for_each_new_private_obj_in_state(state, obj, new_obj_state, i) {
3939 if (obj->funcs == dm->atomic_obj.funcs)
3940 return to_dm_atomic_state(new_obj_state);
3946 static struct drm_private_state *
3947 dm_atomic_duplicate_state(struct drm_private_obj *obj)
3949 struct dm_atomic_state *old_state, *new_state;
3951 new_state = kzalloc(sizeof(*new_state), GFP_KERNEL);
3955 __drm_atomic_helper_private_obj_duplicate_state(obj, &new_state->base);
3957 old_state = to_dm_atomic_state(obj->state);
3959 if (old_state && old_state->context)
3960 new_state->context = dc_copy_state(old_state->context);
3962 if (!new_state->context) {
3967 return &new_state->base;
3970 static void dm_atomic_destroy_state(struct drm_private_obj *obj,
3971 struct drm_private_state *state)
3973 struct dm_atomic_state *dm_state = to_dm_atomic_state(state);
3975 if (dm_state && dm_state->context)
3976 dc_release_state(dm_state->context);
3981 static struct drm_private_state_funcs dm_atomic_state_funcs = {
3982 .atomic_duplicate_state = dm_atomic_duplicate_state,
3983 .atomic_destroy_state = dm_atomic_destroy_state,
3986 static int amdgpu_dm_mode_config_init(struct amdgpu_device *adev)
3988 struct dm_atomic_state *state;
3991 adev->mode_info.mode_config_initialized = true;
3993 adev_to_drm(adev)->mode_config.funcs = (void *)&amdgpu_dm_mode_funcs;
3994 adev_to_drm(adev)->mode_config.helper_private = &amdgpu_dm_mode_config_helperfuncs;
3996 adev_to_drm(adev)->mode_config.max_width = 16384;
3997 adev_to_drm(adev)->mode_config.max_height = 16384;
3999 adev_to_drm(adev)->mode_config.preferred_depth = 24;
4000 if (adev->asic_type == CHIP_HAWAII)
4001 /* disable prefer shadow for now due to hibernation issues */
4002 adev_to_drm(adev)->mode_config.prefer_shadow = 0;
4004 adev_to_drm(adev)->mode_config.prefer_shadow = 1;
4005 /* indicates support for immediate flip */
4006 adev_to_drm(adev)->mode_config.async_page_flip = true;
4008 state = kzalloc(sizeof(*state), GFP_KERNEL);
4012 state->context = dc_create_state(adev->dm.dc);
4013 if (!state->context) {
4018 dc_resource_state_copy_construct_current(adev->dm.dc, state->context);
4020 drm_atomic_private_obj_init(adev_to_drm(adev),
4021 &adev->dm.atomic_obj,
4023 &dm_atomic_state_funcs);
4025 r = amdgpu_display_modeset_create_props(adev);
4027 dc_release_state(state->context);
4032 r = amdgpu_dm_audio_init(adev);
4034 dc_release_state(state->context);
4042 #define AMDGPU_DM_DEFAULT_MIN_BACKLIGHT 12
4043 #define AMDGPU_DM_DEFAULT_MAX_BACKLIGHT 255
4044 #define AUX_BL_DEFAULT_TRANSITION_TIME_MS 50
4046 static void amdgpu_dm_update_backlight_caps(struct amdgpu_display_manager *dm,
4049 #if defined(CONFIG_ACPI)
4050 struct amdgpu_dm_backlight_caps caps;
4052 memset(&caps, 0, sizeof(caps));
4054 if (dm->backlight_caps[bl_idx].caps_valid)
4057 amdgpu_acpi_get_backlight_caps(&caps);
4058 if (caps.caps_valid) {
4059 dm->backlight_caps[bl_idx].caps_valid = true;
4060 if (caps.aux_support)
4062 dm->backlight_caps[bl_idx].min_input_signal = caps.min_input_signal;
4063 dm->backlight_caps[bl_idx].max_input_signal = caps.max_input_signal;
4065 dm->backlight_caps[bl_idx].min_input_signal =
4066 AMDGPU_DM_DEFAULT_MIN_BACKLIGHT;
4067 dm->backlight_caps[bl_idx].max_input_signal =
4068 AMDGPU_DM_DEFAULT_MAX_BACKLIGHT;
4071 if (dm->backlight_caps[bl_idx].aux_support)
4074 dm->backlight_caps[bl_idx].min_input_signal = AMDGPU_DM_DEFAULT_MIN_BACKLIGHT;
4075 dm->backlight_caps[bl_idx].max_input_signal = AMDGPU_DM_DEFAULT_MAX_BACKLIGHT;
4079 static int get_brightness_range(const struct amdgpu_dm_backlight_caps *caps,
4080 unsigned int *min, unsigned int *max)
4085 if (caps->aux_support) {
4086 // Firmware limits are in nits, DC API wants millinits.
4087 *max = 1000 * caps->aux_max_input_signal;
4088 *min = 1000 * caps->aux_min_input_signal;
4090 // Firmware limits are 8-bit, PWM control is 16-bit.
4091 *max = 0x101 * caps->max_input_signal;
4092 *min = 0x101 * caps->min_input_signal;
4097 static u32 convert_brightness_from_user(const struct amdgpu_dm_backlight_caps *caps,
4098 uint32_t brightness)
4100 unsigned int min, max;
4102 if (!get_brightness_range(caps, &min, &max))
4105 // Rescale 0..255 to min..max
4106 return min + DIV_ROUND_CLOSEST((max - min) * brightness,
4107 AMDGPU_MAX_BL_LEVEL);
4110 static u32 convert_brightness_to_user(const struct amdgpu_dm_backlight_caps *caps,
4111 uint32_t brightness)
4113 unsigned int min, max;
4115 if (!get_brightness_range(caps, &min, &max))
4118 if (brightness < min)
4120 // Rescale min..max to 0..255
4121 return DIV_ROUND_CLOSEST(AMDGPU_MAX_BL_LEVEL * (brightness - min),
4125 static void amdgpu_dm_backlight_set_level(struct amdgpu_display_manager *dm,
4127 u32 user_brightness)
4129 struct amdgpu_dm_backlight_caps caps;
4130 struct dc_link *link;
4134 amdgpu_dm_update_backlight_caps(dm, bl_idx);
4135 caps = dm->backlight_caps[bl_idx];
4137 dm->brightness[bl_idx] = user_brightness;
4138 /* update scratch register */
4140 amdgpu_atombios_scratch_regs_set_backlight_level(dm->adev, dm->brightness[bl_idx]);
4141 brightness = convert_brightness_from_user(&caps, dm->brightness[bl_idx]);
4142 link = (struct dc_link *)dm->backlight_link[bl_idx];
4144 /* Change brightness based on AUX property */
4145 if (caps.aux_support) {
4146 rc = dc_link_set_backlight_level_nits(link, true, brightness,
4147 AUX_BL_DEFAULT_TRANSITION_TIME_MS);
4149 DRM_DEBUG("DM: Failed to update backlight via AUX on eDP[%d]\n", bl_idx);
4151 rc = dc_link_set_backlight_level(link, brightness, 0);
4153 DRM_DEBUG("DM: Failed to update backlight on eDP[%d]\n", bl_idx);
4157 dm->actual_brightness[bl_idx] = user_brightness;
4160 static int amdgpu_dm_backlight_update_status(struct backlight_device *bd)
4162 struct amdgpu_display_manager *dm = bl_get_data(bd);
4165 for (i = 0; i < dm->num_of_edps; i++) {
4166 if (bd == dm->backlight_dev[i])
4169 if (i >= AMDGPU_DM_MAX_NUM_EDP)
4171 amdgpu_dm_backlight_set_level(dm, i, bd->props.brightness);
4176 static u32 amdgpu_dm_backlight_get_level(struct amdgpu_display_manager *dm,
4180 struct amdgpu_dm_backlight_caps caps;
4181 struct dc_link *link = (struct dc_link *)dm->backlight_link[bl_idx];
4183 amdgpu_dm_update_backlight_caps(dm, bl_idx);
4184 caps = dm->backlight_caps[bl_idx];
4186 if (caps.aux_support) {
4190 rc = dc_link_get_backlight_level_nits(link, &avg, &peak);
4192 return dm->brightness[bl_idx];
4193 return convert_brightness_to_user(&caps, avg);
4196 ret = dc_link_get_backlight_level(link);
4198 if (ret == DC_ERROR_UNEXPECTED)
4199 return dm->brightness[bl_idx];
4201 return convert_brightness_to_user(&caps, ret);
4204 static int amdgpu_dm_backlight_get_brightness(struct backlight_device *bd)
4206 struct amdgpu_display_manager *dm = bl_get_data(bd);
4209 for (i = 0; i < dm->num_of_edps; i++) {
4210 if (bd == dm->backlight_dev[i])
4213 if (i >= AMDGPU_DM_MAX_NUM_EDP)
4215 return amdgpu_dm_backlight_get_level(dm, i);
4218 static const struct backlight_ops amdgpu_dm_backlight_ops = {
4219 .options = BL_CORE_SUSPENDRESUME,
4220 .get_brightness = amdgpu_dm_backlight_get_brightness,
4221 .update_status = amdgpu_dm_backlight_update_status,
4225 amdgpu_dm_register_backlight_device(struct amdgpu_dm_connector *aconnector)
4227 struct drm_device *drm = aconnector->base.dev;
4228 struct amdgpu_display_manager *dm = &drm_to_adev(drm)->dm;
4229 struct backlight_properties props = { 0 };
4232 if (aconnector->bl_idx == -1)
4235 if (!acpi_video_backlight_use_native()) {
4236 drm_info(drm, "Skipping amdgpu DM backlight registration\n");
4237 /* Try registering an ACPI video backlight device instead. */
4238 acpi_video_register_backlight();
4242 props.max_brightness = AMDGPU_MAX_BL_LEVEL;
4243 props.brightness = AMDGPU_MAX_BL_LEVEL;
4244 props.type = BACKLIGHT_RAW;
4246 snprintf(bl_name, sizeof(bl_name), "amdgpu_bl%d",
4247 drm->primary->index + aconnector->bl_idx);
4249 dm->backlight_dev[aconnector->bl_idx] =
4250 backlight_device_register(bl_name, aconnector->base.kdev, dm,
4251 &amdgpu_dm_backlight_ops, &props);
4253 if (IS_ERR(dm->backlight_dev[aconnector->bl_idx])) {
4254 DRM_ERROR("DM: Backlight registration failed!\n");
4255 dm->backlight_dev[aconnector->bl_idx] = NULL;
4257 DRM_DEBUG_DRIVER("DM: Registered Backlight device: %s\n", bl_name);
4260 static int initialize_plane(struct amdgpu_display_manager *dm,
4261 struct amdgpu_mode_info *mode_info, int plane_id,
4262 enum drm_plane_type plane_type,
4263 const struct dc_plane_cap *plane_cap)
4265 struct drm_plane *plane;
4266 unsigned long possible_crtcs;
4269 plane = kzalloc(sizeof(struct drm_plane), GFP_KERNEL);
4271 DRM_ERROR("KMS: Failed to allocate plane\n");
4274 plane->type = plane_type;
4277 * HACK: IGT tests expect that the primary plane for a CRTC
4278 * can only have one possible CRTC. Only expose support for
4279 * any CRTC if they're not going to be used as a primary plane
4280 * for a CRTC - like overlay or underlay planes.
4282 possible_crtcs = 1 << plane_id;
4283 if (plane_id >= dm->dc->caps.max_streams)
4284 possible_crtcs = 0xff;
4286 ret = amdgpu_dm_plane_init(dm, plane, possible_crtcs, plane_cap);
4289 DRM_ERROR("KMS: Failed to initialize plane\n");
4295 mode_info->planes[plane_id] = plane;
4301 static void setup_backlight_device(struct amdgpu_display_manager *dm,
4302 struct amdgpu_dm_connector *aconnector)
4304 struct dc_link *link = aconnector->dc_link;
4305 int bl_idx = dm->num_of_edps;
4307 if (!(link->connector_signal & (SIGNAL_TYPE_EDP | SIGNAL_TYPE_LVDS)) ||
4308 link->type == dc_connection_none)
4311 if (dm->num_of_edps >= AMDGPU_DM_MAX_NUM_EDP) {
4312 drm_warn(adev_to_drm(dm->adev), "Too much eDP connections, skipping backlight setup for additional eDPs\n");
4316 aconnector->bl_idx = bl_idx;
4318 amdgpu_dm_update_backlight_caps(dm, bl_idx);
4319 dm->brightness[bl_idx] = AMDGPU_MAX_BL_LEVEL;
4320 dm->backlight_link[bl_idx] = link;
4323 update_connector_ext_caps(aconnector);
4326 static void amdgpu_set_panel_orientation(struct drm_connector *connector);
4329 * In this architecture, the association
4330 * connector -> encoder -> crtc
4331 * id not really requried. The crtc and connector will hold the
4332 * display_index as an abstraction to use with DAL component
4334 * Returns 0 on success
4336 static int amdgpu_dm_initialize_drm_device(struct amdgpu_device *adev)
4338 struct amdgpu_display_manager *dm = &adev->dm;
4340 struct amdgpu_dm_connector *aconnector = NULL;
4341 struct amdgpu_encoder *aencoder = NULL;
4342 struct amdgpu_mode_info *mode_info = &adev->mode_info;
4345 enum dc_connection_type new_connection_type = dc_connection_none;
4346 const struct dc_plane_cap *plane;
4347 bool psr_feature_enabled = false;
4348 bool replay_feature_enabled = false;
4349 int max_overlay = dm->dc->caps.max_slave_planes;
4351 dm->display_indexes_num = dm->dc->caps.max_streams;
4352 /* Update the actual used number of crtc */
4353 adev->mode_info.num_crtc = adev->dm.display_indexes_num;
4355 amdgpu_dm_set_irq_funcs(adev);
4357 link_cnt = dm->dc->caps.max_links;
4358 if (amdgpu_dm_mode_config_init(dm->adev)) {
4359 DRM_ERROR("DM: Failed to initialize mode config\n");
4363 /* There is one primary plane per CRTC */
4364 primary_planes = dm->dc->caps.max_streams;
4365 ASSERT(primary_planes <= AMDGPU_MAX_PLANES);
4368 * Initialize primary planes, implicit planes for legacy IOCTLS.
4369 * Order is reversed to match iteration order in atomic check.
4371 for (i = (primary_planes - 1); i >= 0; i--) {
4372 plane = &dm->dc->caps.planes[i];
4374 if (initialize_plane(dm, mode_info, i,
4375 DRM_PLANE_TYPE_PRIMARY, plane)) {
4376 DRM_ERROR("KMS: Failed to initialize primary plane\n");
4382 * Initialize overlay planes, index starting after primary planes.
4383 * These planes have a higher DRM index than the primary planes since
4384 * they should be considered as having a higher z-order.
4385 * Order is reversed to match iteration order in atomic check.
4387 * Only support DCN for now, and only expose one so we don't encourage
4388 * userspace to use up all the pipes.
4390 for (i = 0; i < dm->dc->caps.max_planes; ++i) {
4391 struct dc_plane_cap *plane = &dm->dc->caps.planes[i];
4393 /* Do not create overlay if MPO disabled */
4394 if (amdgpu_dc_debug_mask & DC_DISABLE_MPO)
4397 if (plane->type != DC_PLANE_TYPE_DCN_UNIVERSAL)
4400 if (!plane->pixel_format_support.argb8888)
4403 if (max_overlay-- == 0)
4406 if (initialize_plane(dm, NULL, primary_planes + i,
4407 DRM_PLANE_TYPE_OVERLAY, plane)) {
4408 DRM_ERROR("KMS: Failed to initialize overlay plane\n");
4413 for (i = 0; i < dm->dc->caps.max_streams; i++)
4414 if (amdgpu_dm_crtc_init(dm, mode_info->planes[i], i)) {
4415 DRM_ERROR("KMS: Failed to initialize crtc\n");
4419 /* Use Outbox interrupt */
4420 switch (amdgpu_ip_version(adev, DCE_HWIP, 0)) {
4421 case IP_VERSION(3, 0, 0):
4422 case IP_VERSION(3, 1, 2):
4423 case IP_VERSION(3, 1, 3):
4424 case IP_VERSION(3, 1, 4):
4425 case IP_VERSION(3, 1, 5):
4426 case IP_VERSION(3, 1, 6):
4427 case IP_VERSION(3, 2, 0):
4428 case IP_VERSION(3, 2, 1):
4429 case IP_VERSION(2, 1, 0):
4430 case IP_VERSION(3, 5, 0):
4431 if (register_outbox_irq_handlers(dm->adev)) {
4432 DRM_ERROR("DM: Failed to initialize IRQ\n");
4437 DRM_DEBUG_KMS("Unsupported DCN IP version for outbox: 0x%X\n",
4438 amdgpu_ip_version(adev, DCE_HWIP, 0));
4441 /* Determine whether to enable PSR support by default. */
4442 if (!(amdgpu_dc_debug_mask & DC_DISABLE_PSR)) {
4443 switch (amdgpu_ip_version(adev, DCE_HWIP, 0)) {
4444 case IP_VERSION(3, 1, 2):
4445 case IP_VERSION(3, 1, 3):
4446 case IP_VERSION(3, 1, 4):
4447 case IP_VERSION(3, 1, 5):
4448 case IP_VERSION(3, 1, 6):
4449 case IP_VERSION(3, 2, 0):
4450 case IP_VERSION(3, 2, 1):
4451 case IP_VERSION(3, 5, 0):
4452 psr_feature_enabled = true;
4455 psr_feature_enabled = amdgpu_dc_feature_mask & DC_PSR_MASK;
4460 if (!(amdgpu_dc_debug_mask & DC_DISABLE_REPLAY)) {
4461 switch (adev->ip_versions[DCE_HWIP][0]) {
4462 case IP_VERSION(3, 1, 4):
4463 case IP_VERSION(3, 1, 5):
4464 case IP_VERSION(3, 1, 6):
4465 case IP_VERSION(3, 2, 0):
4466 case IP_VERSION(3, 2, 1):
4467 replay_feature_enabled = true;
4470 replay_feature_enabled = amdgpu_dc_feature_mask & DC_REPLAY_MASK;
4474 /* loops over all connectors on the board */
4475 for (i = 0; i < link_cnt; i++) {
4476 struct dc_link *link = NULL;
4478 if (i > AMDGPU_DM_MAX_DISPLAY_INDEX) {
4480 "KMS: Cannot support more than %d display indexes\n",
4481 AMDGPU_DM_MAX_DISPLAY_INDEX);
4485 aconnector = kzalloc(sizeof(*aconnector), GFP_KERNEL);
4489 aencoder = kzalloc(sizeof(*aencoder), GFP_KERNEL);
4493 if (amdgpu_dm_encoder_init(dm->ddev, aencoder, i)) {
4494 DRM_ERROR("KMS: Failed to initialize encoder\n");
4498 if (amdgpu_dm_connector_init(dm, aconnector, i, aencoder)) {
4499 DRM_ERROR("KMS: Failed to initialize connector\n");
4503 link = dc_get_link_at_index(dm->dc, i);
4505 if (!dc_link_detect_connection_type(link, &new_connection_type))
4506 DRM_ERROR("KMS: Failed to detect connector\n");
4508 if (aconnector->base.force && new_connection_type == dc_connection_none) {
4509 emulated_link_detect(link);
4510 amdgpu_dm_update_connector_after_detect(aconnector);
4514 mutex_lock(&dm->dc_lock);
4515 ret = dc_link_detect(link, DETECT_REASON_BOOT);
4516 mutex_unlock(&dm->dc_lock);
4519 amdgpu_dm_update_connector_after_detect(aconnector);
4520 setup_backlight_device(dm, aconnector);
4523 * Disable psr if replay can be enabled
4525 if (replay_feature_enabled && amdgpu_dm_setup_replay(link, aconnector))
4526 psr_feature_enabled = false;
4528 if (psr_feature_enabled)
4529 amdgpu_dm_set_psr_caps(link);
4531 /* TODO: Fix vblank control helpers to delay PSR entry to allow this when
4532 * PSR is also supported.
4534 if (link->psr_settings.psr_feature_enabled)
4535 adev_to_drm(adev)->vblank_disable_immediate = false;
4538 amdgpu_set_panel_orientation(&aconnector->base);
4541 /* Software is initialized. Now we can register interrupt handlers. */
4542 switch (adev->asic_type) {
4543 #if defined(CONFIG_DRM_AMD_DC_SI)
4548 if (dce60_register_irq_handlers(dm->adev)) {
4549 DRM_ERROR("DM: Failed to initialize IRQ\n");
4563 case CHIP_POLARIS11:
4564 case CHIP_POLARIS10:
4565 case CHIP_POLARIS12:
4570 if (dce110_register_irq_handlers(dm->adev)) {
4571 DRM_ERROR("DM: Failed to initialize IRQ\n");
4576 switch (amdgpu_ip_version(adev, DCE_HWIP, 0)) {
4577 case IP_VERSION(1, 0, 0):
4578 case IP_VERSION(1, 0, 1):
4579 case IP_VERSION(2, 0, 2):
4580 case IP_VERSION(2, 0, 3):
4581 case IP_VERSION(2, 0, 0):
4582 case IP_VERSION(2, 1, 0):
4583 case IP_VERSION(3, 0, 0):
4584 case IP_VERSION(3, 0, 2):
4585 case IP_VERSION(3, 0, 3):
4586 case IP_VERSION(3, 0, 1):
4587 case IP_VERSION(3, 1, 2):
4588 case IP_VERSION(3, 1, 3):
4589 case IP_VERSION(3, 1, 4):
4590 case IP_VERSION(3, 1, 5):
4591 case IP_VERSION(3, 1, 6):
4592 case IP_VERSION(3, 2, 0):
4593 case IP_VERSION(3, 2, 1):
4594 case IP_VERSION(3, 5, 0):
4595 if (dcn10_register_irq_handlers(dm->adev)) {
4596 DRM_ERROR("DM: Failed to initialize IRQ\n");
4601 DRM_ERROR("Unsupported DCE IP versions: 0x%X\n",
4602 amdgpu_ip_version(adev, DCE_HWIP, 0));
4616 static void amdgpu_dm_destroy_drm_device(struct amdgpu_display_manager *dm)
4618 drm_atomic_private_obj_fini(&dm->atomic_obj);
4621 /******************************************************************************
4622 * amdgpu_display_funcs functions
4623 *****************************************************************************/
4626 * dm_bandwidth_update - program display watermarks
4628 * @adev: amdgpu_device pointer
4630 * Calculate and program the display watermarks and line buffer allocation.
4632 static void dm_bandwidth_update(struct amdgpu_device *adev)
4634 /* TODO: implement later */
4637 static const struct amdgpu_display_funcs dm_display_funcs = {
4638 .bandwidth_update = dm_bandwidth_update, /* called unconditionally */
4639 .vblank_get_counter = dm_vblank_get_counter,/* called unconditionally */
4640 .backlight_set_level = NULL, /* never called for DC */
4641 .backlight_get_level = NULL, /* never called for DC */
4642 .hpd_sense = NULL,/* called unconditionally */
4643 .hpd_set_polarity = NULL, /* called unconditionally */
4644 .hpd_get_gpio_reg = NULL, /* VBIOS parsing. DAL does it. */
4645 .page_flip_get_scanoutpos =
4646 dm_crtc_get_scanoutpos,/* called unconditionally */
4647 .add_encoder = NULL, /* VBIOS parsing. DAL does it. */
4648 .add_connector = NULL, /* VBIOS parsing. DAL does it. */
4651 #if defined(CONFIG_DEBUG_KERNEL_DC)
4653 static ssize_t s3_debug_store(struct device *device,
4654 struct device_attribute *attr,
4660 struct drm_device *drm_dev = dev_get_drvdata(device);
4661 struct amdgpu_device *adev = drm_to_adev(drm_dev);
4663 ret = kstrtoint(buf, 0, &s3_state);
4668 drm_kms_helper_hotplug_event(adev_to_drm(adev));
4673 return ret == 0 ? count : 0;
4676 DEVICE_ATTR_WO(s3_debug);
4680 static int dm_init_microcode(struct amdgpu_device *adev)
4685 switch (amdgpu_ip_version(adev, DCE_HWIP, 0)) {
4686 case IP_VERSION(2, 1, 0):
4687 fw_name_dmub = FIRMWARE_RENOIR_DMUB;
4688 if (ASICREV_IS_GREEN_SARDINE(adev->external_rev_id))
4689 fw_name_dmub = FIRMWARE_GREEN_SARDINE_DMUB;
4691 case IP_VERSION(3, 0, 0):
4692 if (amdgpu_ip_version(adev, GC_HWIP, 0) == IP_VERSION(10, 3, 0))
4693 fw_name_dmub = FIRMWARE_SIENNA_CICHLID_DMUB;
4695 fw_name_dmub = FIRMWARE_NAVY_FLOUNDER_DMUB;
4697 case IP_VERSION(3, 0, 1):
4698 fw_name_dmub = FIRMWARE_VANGOGH_DMUB;
4700 case IP_VERSION(3, 0, 2):
4701 fw_name_dmub = FIRMWARE_DIMGREY_CAVEFISH_DMUB;
4703 case IP_VERSION(3, 0, 3):
4704 fw_name_dmub = FIRMWARE_BEIGE_GOBY_DMUB;
4706 case IP_VERSION(3, 1, 2):
4707 case IP_VERSION(3, 1, 3):
4708 fw_name_dmub = FIRMWARE_YELLOW_CARP_DMUB;
4710 case IP_VERSION(3, 1, 4):
4711 fw_name_dmub = FIRMWARE_DCN_314_DMUB;
4713 case IP_VERSION(3, 1, 5):
4714 fw_name_dmub = FIRMWARE_DCN_315_DMUB;
4716 case IP_VERSION(3, 1, 6):
4717 fw_name_dmub = FIRMWARE_DCN316_DMUB;
4719 case IP_VERSION(3, 2, 0):
4720 fw_name_dmub = FIRMWARE_DCN_V3_2_0_DMCUB;
4722 case IP_VERSION(3, 2, 1):
4723 fw_name_dmub = FIRMWARE_DCN_V3_2_1_DMCUB;
4725 case IP_VERSION(3, 5, 0):
4726 fw_name_dmub = FIRMWARE_DCN_35_DMUB;
4729 /* ASIC doesn't support DMUB. */
4732 r = amdgpu_ucode_request(adev, &adev->dm.dmub_fw, fw_name_dmub);
4736 static int dm_early_init(void *handle)
4738 struct amdgpu_device *adev = (struct amdgpu_device *)handle;
4739 struct amdgpu_mode_info *mode_info = &adev->mode_info;
4740 struct atom_context *ctx = mode_info->atom_context;
4741 int index = GetIndexIntoMasterTable(DATA, Object_Header);
4744 /* if there is no object header, skip DM */
4745 if (!amdgpu_atom_parse_data_header(ctx, index, NULL, NULL, NULL, &data_offset)) {
4746 adev->harvest_ip_mask |= AMD_HARVEST_IP_DMU_MASK;
4747 dev_info(adev->dev, "No object header, skipping DM\n");
4751 switch (adev->asic_type) {
4752 #if defined(CONFIG_DRM_AMD_DC_SI)
4756 adev->mode_info.num_crtc = 6;
4757 adev->mode_info.num_hpd = 6;
4758 adev->mode_info.num_dig = 6;
4761 adev->mode_info.num_crtc = 2;
4762 adev->mode_info.num_hpd = 2;
4763 adev->mode_info.num_dig = 2;
4768 adev->mode_info.num_crtc = 6;
4769 adev->mode_info.num_hpd = 6;
4770 adev->mode_info.num_dig = 6;
4773 adev->mode_info.num_crtc = 4;
4774 adev->mode_info.num_hpd = 6;
4775 adev->mode_info.num_dig = 7;
4779 adev->mode_info.num_crtc = 2;
4780 adev->mode_info.num_hpd = 6;
4781 adev->mode_info.num_dig = 6;
4785 adev->mode_info.num_crtc = 6;
4786 adev->mode_info.num_hpd = 6;
4787 adev->mode_info.num_dig = 7;
4790 adev->mode_info.num_crtc = 3;
4791 adev->mode_info.num_hpd = 6;
4792 adev->mode_info.num_dig = 9;
4795 adev->mode_info.num_crtc = 2;
4796 adev->mode_info.num_hpd = 6;
4797 adev->mode_info.num_dig = 9;
4799 case CHIP_POLARIS11:
4800 case CHIP_POLARIS12:
4801 adev->mode_info.num_crtc = 5;
4802 adev->mode_info.num_hpd = 5;
4803 adev->mode_info.num_dig = 5;
4805 case CHIP_POLARIS10:
4807 adev->mode_info.num_crtc = 6;
4808 adev->mode_info.num_hpd = 6;
4809 adev->mode_info.num_dig = 6;
4814 adev->mode_info.num_crtc = 6;
4815 adev->mode_info.num_hpd = 6;
4816 adev->mode_info.num_dig = 6;
4820 switch (amdgpu_ip_version(adev, DCE_HWIP, 0)) {
4821 case IP_VERSION(2, 0, 2):
4822 case IP_VERSION(3, 0, 0):
4823 adev->mode_info.num_crtc = 6;
4824 adev->mode_info.num_hpd = 6;
4825 adev->mode_info.num_dig = 6;
4827 case IP_VERSION(2, 0, 0):
4828 case IP_VERSION(3, 0, 2):
4829 adev->mode_info.num_crtc = 5;
4830 adev->mode_info.num_hpd = 5;
4831 adev->mode_info.num_dig = 5;
4833 case IP_VERSION(2, 0, 3):
4834 case IP_VERSION(3, 0, 3):
4835 adev->mode_info.num_crtc = 2;
4836 adev->mode_info.num_hpd = 2;
4837 adev->mode_info.num_dig = 2;
4839 case IP_VERSION(1, 0, 0):
4840 case IP_VERSION(1, 0, 1):
4841 case IP_VERSION(3, 0, 1):
4842 case IP_VERSION(2, 1, 0):
4843 case IP_VERSION(3, 1, 2):
4844 case IP_VERSION(3, 1, 3):
4845 case IP_VERSION(3, 1, 4):
4846 case IP_VERSION(3, 1, 5):
4847 case IP_VERSION(3, 1, 6):
4848 case IP_VERSION(3, 2, 0):
4849 case IP_VERSION(3, 2, 1):
4850 case IP_VERSION(3, 5, 0):
4851 adev->mode_info.num_crtc = 4;
4852 adev->mode_info.num_hpd = 4;
4853 adev->mode_info.num_dig = 4;
4856 DRM_ERROR("Unsupported DCE IP versions: 0x%x\n",
4857 amdgpu_ip_version(adev, DCE_HWIP, 0));
4863 if (adev->mode_info.funcs == NULL)
4864 adev->mode_info.funcs = &dm_display_funcs;
4867 * Note: Do NOT change adev->audio_endpt_rreg and
4868 * adev->audio_endpt_wreg because they are initialised in
4869 * amdgpu_device_init()
4871 #if defined(CONFIG_DEBUG_KERNEL_DC)
4873 adev_to_drm(adev)->dev,
4874 &dev_attr_s3_debug);
4876 adev->dc_enabled = true;
4878 return dm_init_microcode(adev);
4881 static bool modereset_required(struct drm_crtc_state *crtc_state)
4883 return !crtc_state->active && drm_atomic_crtc_needs_modeset(crtc_state);
4886 static void amdgpu_dm_encoder_destroy(struct drm_encoder *encoder)
4888 drm_encoder_cleanup(encoder);
4892 static const struct drm_encoder_funcs amdgpu_dm_encoder_funcs = {
4893 .destroy = amdgpu_dm_encoder_destroy,
4897 fill_plane_color_attributes(const struct drm_plane_state *plane_state,
4898 const enum surface_pixel_format format,
4899 enum dc_color_space *color_space)
4903 *color_space = COLOR_SPACE_SRGB;
4905 /* DRM color properties only affect non-RGB formats. */
4906 if (format < SURFACE_PIXEL_FORMAT_VIDEO_BEGIN)
4909 full_range = (plane_state->color_range == DRM_COLOR_YCBCR_FULL_RANGE);
4911 switch (plane_state->color_encoding) {
4912 case DRM_COLOR_YCBCR_BT601:
4914 *color_space = COLOR_SPACE_YCBCR601;
4916 *color_space = COLOR_SPACE_YCBCR601_LIMITED;
4919 case DRM_COLOR_YCBCR_BT709:
4921 *color_space = COLOR_SPACE_YCBCR709;
4923 *color_space = COLOR_SPACE_YCBCR709_LIMITED;
4926 case DRM_COLOR_YCBCR_BT2020:
4928 *color_space = COLOR_SPACE_2020_YCBCR;
4941 fill_dc_plane_info_and_addr(struct amdgpu_device *adev,
4942 const struct drm_plane_state *plane_state,
4943 const u64 tiling_flags,
4944 struct dc_plane_info *plane_info,
4945 struct dc_plane_address *address,
4947 bool force_disable_dcc)
4949 const struct drm_framebuffer *fb = plane_state->fb;
4950 const struct amdgpu_framebuffer *afb =
4951 to_amdgpu_framebuffer(plane_state->fb);
4954 memset(plane_info, 0, sizeof(*plane_info));
4956 switch (fb->format->format) {
4958 plane_info->format =
4959 SURFACE_PIXEL_FORMAT_GRPH_PALETA_256_COLORS;
4961 case DRM_FORMAT_RGB565:
4962 plane_info->format = SURFACE_PIXEL_FORMAT_GRPH_RGB565;
4964 case DRM_FORMAT_XRGB8888:
4965 case DRM_FORMAT_ARGB8888:
4966 plane_info->format = SURFACE_PIXEL_FORMAT_GRPH_ARGB8888;
4968 case DRM_FORMAT_XRGB2101010:
4969 case DRM_FORMAT_ARGB2101010:
4970 plane_info->format = SURFACE_PIXEL_FORMAT_GRPH_ARGB2101010;
4972 case DRM_FORMAT_XBGR2101010:
4973 case DRM_FORMAT_ABGR2101010:
4974 plane_info->format = SURFACE_PIXEL_FORMAT_GRPH_ABGR2101010;
4976 case DRM_FORMAT_XBGR8888:
4977 case DRM_FORMAT_ABGR8888:
4978 plane_info->format = SURFACE_PIXEL_FORMAT_GRPH_ABGR8888;
4980 case DRM_FORMAT_NV21:
4981 plane_info->format = SURFACE_PIXEL_FORMAT_VIDEO_420_YCbCr;
4983 case DRM_FORMAT_NV12:
4984 plane_info->format = SURFACE_PIXEL_FORMAT_VIDEO_420_YCrCb;
4986 case DRM_FORMAT_P010:
4987 plane_info->format = SURFACE_PIXEL_FORMAT_VIDEO_420_10bpc_YCrCb;
4989 case DRM_FORMAT_XRGB16161616F:
4990 case DRM_FORMAT_ARGB16161616F:
4991 plane_info->format = SURFACE_PIXEL_FORMAT_GRPH_ARGB16161616F;
4993 case DRM_FORMAT_XBGR16161616F:
4994 case DRM_FORMAT_ABGR16161616F:
4995 plane_info->format = SURFACE_PIXEL_FORMAT_GRPH_ABGR16161616F;
4997 case DRM_FORMAT_XRGB16161616:
4998 case DRM_FORMAT_ARGB16161616:
4999 plane_info->format = SURFACE_PIXEL_FORMAT_GRPH_ARGB16161616;
5001 case DRM_FORMAT_XBGR16161616:
5002 case DRM_FORMAT_ABGR16161616:
5003 plane_info->format = SURFACE_PIXEL_FORMAT_GRPH_ABGR16161616;
5007 "Unsupported screen format %p4cc\n",
5008 &fb->format->format);
5012 switch (plane_state->rotation & DRM_MODE_ROTATE_MASK) {
5013 case DRM_MODE_ROTATE_0:
5014 plane_info->rotation = ROTATION_ANGLE_0;
5016 case DRM_MODE_ROTATE_90:
5017 plane_info->rotation = ROTATION_ANGLE_90;
5019 case DRM_MODE_ROTATE_180:
5020 plane_info->rotation = ROTATION_ANGLE_180;
5022 case DRM_MODE_ROTATE_270:
5023 plane_info->rotation = ROTATION_ANGLE_270;
5026 plane_info->rotation = ROTATION_ANGLE_0;
5031 plane_info->visible = true;
5032 plane_info->stereo_format = PLANE_STEREO_FORMAT_NONE;
5034 plane_info->layer_index = plane_state->normalized_zpos;
5036 ret = fill_plane_color_attributes(plane_state, plane_info->format,
5037 &plane_info->color_space);
5041 ret = amdgpu_dm_plane_fill_plane_buffer_attributes(adev, afb, plane_info->format,
5042 plane_info->rotation, tiling_flags,
5043 &plane_info->tiling_info,
5044 &plane_info->plane_size,
5045 &plane_info->dcc, address,
5046 tmz_surface, force_disable_dcc);
5050 amdgpu_dm_plane_fill_blending_from_plane_state(
5051 plane_state, &plane_info->per_pixel_alpha, &plane_info->pre_multiplied_alpha,
5052 &plane_info->global_alpha, &plane_info->global_alpha_value);
5057 static int fill_dc_plane_attributes(struct amdgpu_device *adev,
5058 struct dc_plane_state *dc_plane_state,
5059 struct drm_plane_state *plane_state,
5060 struct drm_crtc_state *crtc_state)
5062 struct dm_crtc_state *dm_crtc_state = to_dm_crtc_state(crtc_state);
5063 struct amdgpu_framebuffer *afb = (struct amdgpu_framebuffer *)plane_state->fb;
5064 struct dc_scaling_info scaling_info;
5065 struct dc_plane_info plane_info;
5067 bool force_disable_dcc = false;
5069 ret = amdgpu_dm_plane_fill_dc_scaling_info(adev, plane_state, &scaling_info);
5073 dc_plane_state->src_rect = scaling_info.src_rect;
5074 dc_plane_state->dst_rect = scaling_info.dst_rect;
5075 dc_plane_state->clip_rect = scaling_info.clip_rect;
5076 dc_plane_state->scaling_quality = scaling_info.scaling_quality;
5078 force_disable_dcc = adev->asic_type == CHIP_RAVEN && adev->in_suspend;
5079 ret = fill_dc_plane_info_and_addr(adev, plane_state,
5082 &dc_plane_state->address,
5088 dc_plane_state->format = plane_info.format;
5089 dc_plane_state->color_space = plane_info.color_space;
5090 dc_plane_state->format = plane_info.format;
5091 dc_plane_state->plane_size = plane_info.plane_size;
5092 dc_plane_state->rotation = plane_info.rotation;
5093 dc_plane_state->horizontal_mirror = plane_info.horizontal_mirror;
5094 dc_plane_state->stereo_format = plane_info.stereo_format;
5095 dc_plane_state->tiling_info = plane_info.tiling_info;
5096 dc_plane_state->visible = plane_info.visible;
5097 dc_plane_state->per_pixel_alpha = plane_info.per_pixel_alpha;
5098 dc_plane_state->pre_multiplied_alpha = plane_info.pre_multiplied_alpha;
5099 dc_plane_state->global_alpha = plane_info.global_alpha;
5100 dc_plane_state->global_alpha_value = plane_info.global_alpha_value;
5101 dc_plane_state->dcc = plane_info.dcc;
5102 dc_plane_state->layer_index = plane_info.layer_index;
5103 dc_plane_state->flip_int_enabled = true;
5106 * Always set input transfer function, since plane state is refreshed
5109 ret = amdgpu_dm_update_plane_color_mgmt(dm_crtc_state, dc_plane_state);
5116 static inline void fill_dc_dirty_rect(struct drm_plane *plane,
5117 struct rect *dirty_rect, int32_t x,
5118 s32 y, s32 width, s32 height,
5121 WARN_ON(*i >= DC_MAX_DIRTY_RECTS);
5125 dirty_rect->width = width;
5126 dirty_rect->height = height;
5130 "[PLANE:%d] PSR FFU dirty rect size (%d, %d)\n",
5131 plane->base.id, width, height);
5134 "[PLANE:%d] PSR SU dirty rect at (%d, %d) size (%d, %d)",
5135 plane->base.id, x, y, width, height);
5141 * fill_dc_dirty_rects() - Fill DC dirty regions for PSR selective updates
5143 * @plane: DRM plane containing dirty regions that need to be flushed to the eDP
5145 * @old_plane_state: Old state of @plane
5146 * @new_plane_state: New state of @plane
5147 * @crtc_state: New state of CRTC connected to the @plane
5148 * @flip_addrs: DC flip tracking struct, which also tracts dirty rects
5149 * @dirty_regions_changed: dirty regions changed
5151 * For PSR SU, DC informs the DMUB uController of dirty rectangle regions
5152 * (referred to as "damage clips" in DRM nomenclature) that require updating on
5153 * the eDP remote buffer. The responsibility of specifying the dirty regions is
5156 * A damage-aware DRM client should fill the FB_DAMAGE_CLIPS property on the
5157 * plane with regions that require flushing to the eDP remote buffer. In
5158 * addition, certain use cases - such as cursor and multi-plane overlay (MPO) -
5159 * implicitly provide damage clips without any client support via the plane
5162 static void fill_dc_dirty_rects(struct drm_plane *plane,
5163 struct drm_plane_state *old_plane_state,
5164 struct drm_plane_state *new_plane_state,
5165 struct drm_crtc_state *crtc_state,
5166 struct dc_flip_addrs *flip_addrs,
5167 bool *dirty_regions_changed)
5169 struct dm_crtc_state *dm_crtc_state = to_dm_crtc_state(crtc_state);
5170 struct rect *dirty_rects = flip_addrs->dirty_rects;
5172 struct drm_mode_rect *clips;
5176 *dirty_regions_changed = false;
5179 * Cursor plane has it's own dirty rect update interface. See
5180 * dcn10_dmub_update_cursor_data and dmub_cmd_update_cursor_info_data
5182 if (plane->type == DRM_PLANE_TYPE_CURSOR)
5185 if (new_plane_state->rotation != DRM_MODE_ROTATE_0)
5188 num_clips = drm_plane_get_damage_clips_count(new_plane_state);
5189 clips = drm_plane_get_damage_clips(new_plane_state);
5191 if (!dm_crtc_state->mpo_requested) {
5192 if (!num_clips || num_clips > DC_MAX_DIRTY_RECTS)
5195 for (; flip_addrs->dirty_rect_count < num_clips; clips++)
5196 fill_dc_dirty_rect(new_plane_state->plane,
5197 &dirty_rects[flip_addrs->dirty_rect_count],
5198 clips->x1, clips->y1,
5199 clips->x2 - clips->x1, clips->y2 - clips->y1,
5200 &flip_addrs->dirty_rect_count,
5206 * MPO is requested. Add entire plane bounding box to dirty rects if
5207 * flipped to or damaged.
5209 * If plane is moved or resized, also add old bounding box to dirty
5212 fb_changed = old_plane_state->fb->base.id !=
5213 new_plane_state->fb->base.id;
5214 bb_changed = (old_plane_state->crtc_x != new_plane_state->crtc_x ||
5215 old_plane_state->crtc_y != new_plane_state->crtc_y ||
5216 old_plane_state->crtc_w != new_plane_state->crtc_w ||
5217 old_plane_state->crtc_h != new_plane_state->crtc_h);
5220 "[PLANE:%d] PSR bb_changed:%d fb_changed:%d num_clips:%d\n",
5221 new_plane_state->plane->base.id,
5222 bb_changed, fb_changed, num_clips);
5224 *dirty_regions_changed = bb_changed;
5226 if ((num_clips + (bb_changed ? 2 : 0)) > DC_MAX_DIRTY_RECTS)
5230 fill_dc_dirty_rect(new_plane_state->plane, &dirty_rects[i],
5231 new_plane_state->crtc_x,
5232 new_plane_state->crtc_y,
5233 new_plane_state->crtc_w,
5234 new_plane_state->crtc_h, &i, false);
5236 /* Add old plane bounding-box if plane is moved or resized */
5237 fill_dc_dirty_rect(new_plane_state->plane, &dirty_rects[i],
5238 old_plane_state->crtc_x,
5239 old_plane_state->crtc_y,
5240 old_plane_state->crtc_w,
5241 old_plane_state->crtc_h, &i, false);
5245 for (; i < num_clips; clips++)
5246 fill_dc_dirty_rect(new_plane_state->plane,
5247 &dirty_rects[i], clips->x1,
5248 clips->y1, clips->x2 - clips->x1,
5249 clips->y2 - clips->y1, &i, false);
5250 } else if (fb_changed && !bb_changed) {
5251 fill_dc_dirty_rect(new_plane_state->plane, &dirty_rects[i],
5252 new_plane_state->crtc_x,
5253 new_plane_state->crtc_y,
5254 new_plane_state->crtc_w,
5255 new_plane_state->crtc_h, &i, false);
5258 flip_addrs->dirty_rect_count = i;
5262 fill_dc_dirty_rect(new_plane_state->plane, &dirty_rects[0], 0, 0,
5263 dm_crtc_state->base.mode.crtc_hdisplay,
5264 dm_crtc_state->base.mode.crtc_vdisplay,
5265 &flip_addrs->dirty_rect_count, true);
5268 static void update_stream_scaling_settings(const struct drm_display_mode *mode,
5269 const struct dm_connector_state *dm_state,
5270 struct dc_stream_state *stream)
5272 enum amdgpu_rmx_type rmx_type;
5274 struct rect src = { 0 }; /* viewport in composition space*/
5275 struct rect dst = { 0 }; /* stream addressable area */
5277 /* no mode. nothing to be done */
5281 /* Full screen scaling by default */
5282 src.width = mode->hdisplay;
5283 src.height = mode->vdisplay;
5284 dst.width = stream->timing.h_addressable;
5285 dst.height = stream->timing.v_addressable;
5288 rmx_type = dm_state->scaling;
5289 if (rmx_type == RMX_ASPECT || rmx_type == RMX_OFF) {
5290 if (src.width * dst.height <
5291 src.height * dst.width) {
5292 /* height needs less upscaling/more downscaling */
5293 dst.width = src.width *
5294 dst.height / src.height;
5296 /* width needs less upscaling/more downscaling */
5297 dst.height = src.height *
5298 dst.width / src.width;
5300 } else if (rmx_type == RMX_CENTER) {
5304 dst.x = (stream->timing.h_addressable - dst.width) / 2;
5305 dst.y = (stream->timing.v_addressable - dst.height) / 2;
5307 if (dm_state->underscan_enable) {
5308 dst.x += dm_state->underscan_hborder / 2;
5309 dst.y += dm_state->underscan_vborder / 2;
5310 dst.width -= dm_state->underscan_hborder;
5311 dst.height -= dm_state->underscan_vborder;
5318 DRM_DEBUG_KMS("Destination Rectangle x:%d y:%d width:%d height:%d\n",
5319 dst.x, dst.y, dst.width, dst.height);
5323 static enum dc_color_depth
5324 convert_color_depth_from_display_info(const struct drm_connector *connector,
5325 bool is_y420, int requested_bpc)
5332 /* Cap display bpc based on HDMI 2.0 HF-VSDB */
5333 if (connector->display_info.hdmi.y420_dc_modes & DRM_EDID_YCBCR420_DC_48)
5335 else if (connector->display_info.hdmi.y420_dc_modes & DRM_EDID_YCBCR420_DC_36)
5337 else if (connector->display_info.hdmi.y420_dc_modes & DRM_EDID_YCBCR420_DC_30)
5340 bpc = (uint8_t)connector->display_info.bpc;
5341 /* Assume 8 bpc by default if no bpc is specified. */
5342 bpc = bpc ? bpc : 8;
5345 if (requested_bpc > 0) {
5347 * Cap display bpc based on the user requested value.
5349 * The value for state->max_bpc may not correctly updated
5350 * depending on when the connector gets added to the state
5351 * or if this was called outside of atomic check, so it
5352 * can't be used directly.
5354 bpc = min_t(u8, bpc, requested_bpc);
5356 /* Round down to the nearest even number. */
5357 bpc = bpc - (bpc & 1);
5363 * Temporary Work around, DRM doesn't parse color depth for
5364 * EDID revision before 1.4
5365 * TODO: Fix edid parsing
5367 return COLOR_DEPTH_888;
5369 return COLOR_DEPTH_666;
5371 return COLOR_DEPTH_888;
5373 return COLOR_DEPTH_101010;
5375 return COLOR_DEPTH_121212;
5377 return COLOR_DEPTH_141414;
5379 return COLOR_DEPTH_161616;
5381 return COLOR_DEPTH_UNDEFINED;
5385 static enum dc_aspect_ratio
5386 get_aspect_ratio(const struct drm_display_mode *mode_in)
5388 /* 1-1 mapping, since both enums follow the HDMI spec. */
5389 return (enum dc_aspect_ratio) mode_in->picture_aspect_ratio;
5392 static enum dc_color_space
5393 get_output_color_space(const struct dc_crtc_timing *dc_crtc_timing,
5394 const struct drm_connector_state *connector_state)
5396 enum dc_color_space color_space = COLOR_SPACE_SRGB;
5398 switch (connector_state->colorspace) {
5399 case DRM_MODE_COLORIMETRY_BT601_YCC:
5400 if (dc_crtc_timing->flags.Y_ONLY)
5401 color_space = COLOR_SPACE_YCBCR601_LIMITED;
5403 color_space = COLOR_SPACE_YCBCR601;
5405 case DRM_MODE_COLORIMETRY_BT709_YCC:
5406 if (dc_crtc_timing->flags.Y_ONLY)
5407 color_space = COLOR_SPACE_YCBCR709_LIMITED;
5409 color_space = COLOR_SPACE_YCBCR709;
5411 case DRM_MODE_COLORIMETRY_OPRGB:
5412 color_space = COLOR_SPACE_ADOBERGB;
5414 case DRM_MODE_COLORIMETRY_BT2020_RGB:
5415 case DRM_MODE_COLORIMETRY_BT2020_YCC:
5416 if (dc_crtc_timing->pixel_encoding == PIXEL_ENCODING_RGB)
5417 color_space = COLOR_SPACE_2020_RGB_FULLRANGE;
5419 color_space = COLOR_SPACE_2020_YCBCR;
5421 case DRM_MODE_COLORIMETRY_DEFAULT: // ITU601
5423 if (dc_crtc_timing->pixel_encoding == PIXEL_ENCODING_RGB) {
5424 color_space = COLOR_SPACE_SRGB;
5426 * 27030khz is the separation point between HDTV and SDTV
5427 * according to HDMI spec, we use YCbCr709 and YCbCr601
5430 } else if (dc_crtc_timing->pix_clk_100hz > 270300) {
5431 if (dc_crtc_timing->flags.Y_ONLY)
5433 COLOR_SPACE_YCBCR709_LIMITED;
5435 color_space = COLOR_SPACE_YCBCR709;
5437 if (dc_crtc_timing->flags.Y_ONLY)
5439 COLOR_SPACE_YCBCR601_LIMITED;
5441 color_space = COLOR_SPACE_YCBCR601;
5449 static enum display_content_type
5450 get_output_content_type(const struct drm_connector_state *connector_state)
5452 switch (connector_state->content_type) {
5454 case DRM_MODE_CONTENT_TYPE_NO_DATA:
5455 return DISPLAY_CONTENT_TYPE_NO_DATA;
5456 case DRM_MODE_CONTENT_TYPE_GRAPHICS:
5457 return DISPLAY_CONTENT_TYPE_GRAPHICS;
5458 case DRM_MODE_CONTENT_TYPE_PHOTO:
5459 return DISPLAY_CONTENT_TYPE_PHOTO;
5460 case DRM_MODE_CONTENT_TYPE_CINEMA:
5461 return DISPLAY_CONTENT_TYPE_CINEMA;
5462 case DRM_MODE_CONTENT_TYPE_GAME:
5463 return DISPLAY_CONTENT_TYPE_GAME;
5467 static bool adjust_colour_depth_from_display_info(
5468 struct dc_crtc_timing *timing_out,
5469 const struct drm_display_info *info)
5471 enum dc_color_depth depth = timing_out->display_color_depth;
5475 normalized_clk = timing_out->pix_clk_100hz / 10;
5476 /* YCbCr 4:2:0 requires additional adjustment of 1/2 */
5477 if (timing_out->pixel_encoding == PIXEL_ENCODING_YCBCR420)
5478 normalized_clk /= 2;
5479 /* Adjusting pix clock following on HDMI spec based on colour depth */
5481 case COLOR_DEPTH_888:
5483 case COLOR_DEPTH_101010:
5484 normalized_clk = (normalized_clk * 30) / 24;
5486 case COLOR_DEPTH_121212:
5487 normalized_clk = (normalized_clk * 36) / 24;
5489 case COLOR_DEPTH_161616:
5490 normalized_clk = (normalized_clk * 48) / 24;
5493 /* The above depths are the only ones valid for HDMI. */
5496 if (normalized_clk <= info->max_tmds_clock) {
5497 timing_out->display_color_depth = depth;
5500 } while (--depth > COLOR_DEPTH_666);
5504 static void fill_stream_properties_from_drm_display_mode(
5505 struct dc_stream_state *stream,
5506 const struct drm_display_mode *mode_in,
5507 const struct drm_connector *connector,
5508 const struct drm_connector_state *connector_state,
5509 const struct dc_stream_state *old_stream,
5512 struct dc_crtc_timing *timing_out = &stream->timing;
5513 const struct drm_display_info *info = &connector->display_info;
5514 struct amdgpu_dm_connector *aconnector = to_amdgpu_dm_connector(connector);
5515 struct hdmi_vendor_infoframe hv_frame;
5516 struct hdmi_avi_infoframe avi_frame;
5518 memset(&hv_frame, 0, sizeof(hv_frame));
5519 memset(&avi_frame, 0, sizeof(avi_frame));
5521 timing_out->h_border_left = 0;
5522 timing_out->h_border_right = 0;
5523 timing_out->v_border_top = 0;
5524 timing_out->v_border_bottom = 0;
5525 /* TODO: un-hardcode */
5526 if (drm_mode_is_420_only(info, mode_in)
5527 && stream->signal == SIGNAL_TYPE_HDMI_TYPE_A)
5528 timing_out->pixel_encoding = PIXEL_ENCODING_YCBCR420;
5529 else if (drm_mode_is_420_also(info, mode_in)
5530 && aconnector->force_yuv420_output)
5531 timing_out->pixel_encoding = PIXEL_ENCODING_YCBCR420;
5532 else if ((connector->display_info.color_formats & DRM_COLOR_FORMAT_YCBCR444)
5533 && stream->signal == SIGNAL_TYPE_HDMI_TYPE_A)
5534 timing_out->pixel_encoding = PIXEL_ENCODING_YCBCR444;
5536 timing_out->pixel_encoding = PIXEL_ENCODING_RGB;
5538 timing_out->timing_3d_format = TIMING_3D_FORMAT_NONE;
5539 timing_out->display_color_depth = convert_color_depth_from_display_info(
5541 (timing_out->pixel_encoding == PIXEL_ENCODING_YCBCR420),
5543 timing_out->scan_type = SCANNING_TYPE_NODATA;
5544 timing_out->hdmi_vic = 0;
5547 timing_out->vic = old_stream->timing.vic;
5548 timing_out->flags.HSYNC_POSITIVE_POLARITY = old_stream->timing.flags.HSYNC_POSITIVE_POLARITY;
5549 timing_out->flags.VSYNC_POSITIVE_POLARITY = old_stream->timing.flags.VSYNC_POSITIVE_POLARITY;
5551 timing_out->vic = drm_match_cea_mode(mode_in);
5552 if (mode_in->flags & DRM_MODE_FLAG_PHSYNC)
5553 timing_out->flags.HSYNC_POSITIVE_POLARITY = 1;
5554 if (mode_in->flags & DRM_MODE_FLAG_PVSYNC)
5555 timing_out->flags.VSYNC_POSITIVE_POLARITY = 1;
5558 if (stream->signal == SIGNAL_TYPE_HDMI_TYPE_A) {
5559 drm_hdmi_avi_infoframe_from_display_mode(&avi_frame, (struct drm_connector *)connector, mode_in);
5560 timing_out->vic = avi_frame.video_code;
5561 drm_hdmi_vendor_infoframe_from_display_mode(&hv_frame, (struct drm_connector *)connector, mode_in);
5562 timing_out->hdmi_vic = hv_frame.vic;
5565 if (is_freesync_video_mode(mode_in, aconnector)) {
5566 timing_out->h_addressable = mode_in->hdisplay;
5567 timing_out->h_total = mode_in->htotal;
5568 timing_out->h_sync_width = mode_in->hsync_end - mode_in->hsync_start;
5569 timing_out->h_front_porch = mode_in->hsync_start - mode_in->hdisplay;
5570 timing_out->v_total = mode_in->vtotal;
5571 timing_out->v_addressable = mode_in->vdisplay;
5572 timing_out->v_front_porch = mode_in->vsync_start - mode_in->vdisplay;
5573 timing_out->v_sync_width = mode_in->vsync_end - mode_in->vsync_start;
5574 timing_out->pix_clk_100hz = mode_in->clock * 10;
5576 timing_out->h_addressable = mode_in->crtc_hdisplay;
5577 timing_out->h_total = mode_in->crtc_htotal;
5578 timing_out->h_sync_width = mode_in->crtc_hsync_end - mode_in->crtc_hsync_start;
5579 timing_out->h_front_porch = mode_in->crtc_hsync_start - mode_in->crtc_hdisplay;
5580 timing_out->v_total = mode_in->crtc_vtotal;
5581 timing_out->v_addressable = mode_in->crtc_vdisplay;
5582 timing_out->v_front_porch = mode_in->crtc_vsync_start - mode_in->crtc_vdisplay;
5583 timing_out->v_sync_width = mode_in->crtc_vsync_end - mode_in->crtc_vsync_start;
5584 timing_out->pix_clk_100hz = mode_in->crtc_clock * 10;
5587 timing_out->aspect_ratio = get_aspect_ratio(mode_in);
5589 stream->out_transfer_func->type = TF_TYPE_PREDEFINED;
5590 stream->out_transfer_func->tf = TRANSFER_FUNCTION_SRGB;
5591 if (stream->signal == SIGNAL_TYPE_HDMI_TYPE_A) {
5592 if (!adjust_colour_depth_from_display_info(timing_out, info) &&
5593 drm_mode_is_420_also(info, mode_in) &&
5594 timing_out->pixel_encoding != PIXEL_ENCODING_YCBCR420) {
5595 timing_out->pixel_encoding = PIXEL_ENCODING_YCBCR420;
5596 adjust_colour_depth_from_display_info(timing_out, info);
5600 stream->output_color_space = get_output_color_space(timing_out, connector_state);
5601 stream->content_type = get_output_content_type(connector_state);
5604 static void fill_audio_info(struct audio_info *audio_info,
5605 const struct drm_connector *drm_connector,
5606 const struct dc_sink *dc_sink)
5609 int cea_revision = 0;
5610 const struct dc_edid_caps *edid_caps = &dc_sink->edid_caps;
5612 audio_info->manufacture_id = edid_caps->manufacturer_id;
5613 audio_info->product_id = edid_caps->product_id;
5615 cea_revision = drm_connector->display_info.cea_rev;
5617 strscpy(audio_info->display_name,
5618 edid_caps->display_name,
5619 AUDIO_INFO_DISPLAY_NAME_SIZE_IN_CHARS);
5621 if (cea_revision >= 3) {
5622 audio_info->mode_count = edid_caps->audio_mode_count;
5624 for (i = 0; i < audio_info->mode_count; ++i) {
5625 audio_info->modes[i].format_code =
5626 (enum audio_format_code)
5627 (edid_caps->audio_modes[i].format_code);
5628 audio_info->modes[i].channel_count =
5629 edid_caps->audio_modes[i].channel_count;
5630 audio_info->modes[i].sample_rates.all =
5631 edid_caps->audio_modes[i].sample_rate;
5632 audio_info->modes[i].sample_size =
5633 edid_caps->audio_modes[i].sample_size;
5637 audio_info->flags.all = edid_caps->speaker_flags;
5639 /* TODO: We only check for the progressive mode, check for interlace mode too */
5640 if (drm_connector->latency_present[0]) {
5641 audio_info->video_latency = drm_connector->video_latency[0];
5642 audio_info->audio_latency = drm_connector->audio_latency[0];
5645 /* TODO: For DP, video and audio latency should be calculated from DPCD caps */
5650 copy_crtc_timing_for_drm_display_mode(const struct drm_display_mode *src_mode,
5651 struct drm_display_mode *dst_mode)
5653 dst_mode->crtc_hdisplay = src_mode->crtc_hdisplay;
5654 dst_mode->crtc_vdisplay = src_mode->crtc_vdisplay;
5655 dst_mode->crtc_clock = src_mode->crtc_clock;
5656 dst_mode->crtc_hblank_start = src_mode->crtc_hblank_start;
5657 dst_mode->crtc_hblank_end = src_mode->crtc_hblank_end;
5658 dst_mode->crtc_hsync_start = src_mode->crtc_hsync_start;
5659 dst_mode->crtc_hsync_end = src_mode->crtc_hsync_end;
5660 dst_mode->crtc_htotal = src_mode->crtc_htotal;
5661 dst_mode->crtc_hskew = src_mode->crtc_hskew;
5662 dst_mode->crtc_vblank_start = src_mode->crtc_vblank_start;
5663 dst_mode->crtc_vblank_end = src_mode->crtc_vblank_end;
5664 dst_mode->crtc_vsync_start = src_mode->crtc_vsync_start;
5665 dst_mode->crtc_vsync_end = src_mode->crtc_vsync_end;
5666 dst_mode->crtc_vtotal = src_mode->crtc_vtotal;
5670 decide_crtc_timing_for_drm_display_mode(struct drm_display_mode *drm_mode,
5671 const struct drm_display_mode *native_mode,
5674 if (scale_enabled) {
5675 copy_crtc_timing_for_drm_display_mode(native_mode, drm_mode);
5676 } else if (native_mode->clock == drm_mode->clock &&
5677 native_mode->htotal == drm_mode->htotal &&
5678 native_mode->vtotal == drm_mode->vtotal) {
5679 copy_crtc_timing_for_drm_display_mode(native_mode, drm_mode);
5681 /* no scaling nor amdgpu inserted, no need to patch */
5685 static struct dc_sink *
5686 create_fake_sink(struct amdgpu_dm_connector *aconnector)
5688 struct dc_sink_init_data sink_init_data = { 0 };
5689 struct dc_sink *sink = NULL;
5691 sink_init_data.link = aconnector->dc_link;
5692 sink_init_data.sink_signal = aconnector->dc_link->connector_signal;
5694 sink = dc_sink_create(&sink_init_data);
5696 DRM_ERROR("Failed to create sink!\n");
5699 sink->sink_signal = SIGNAL_TYPE_VIRTUAL;
5704 static void set_multisync_trigger_params(
5705 struct dc_stream_state *stream)
5707 struct dc_stream_state *master = NULL;
5709 if (stream->triggered_crtc_reset.enabled) {
5710 master = stream->triggered_crtc_reset.event_source;
5711 stream->triggered_crtc_reset.event =
5712 master->timing.flags.VSYNC_POSITIVE_POLARITY ?
5713 CRTC_EVENT_VSYNC_RISING : CRTC_EVENT_VSYNC_FALLING;
5714 stream->triggered_crtc_reset.delay = TRIGGER_DELAY_NEXT_PIXEL;
5718 static void set_master_stream(struct dc_stream_state *stream_set[],
5721 int j, highest_rfr = 0, master_stream = 0;
5723 for (j = 0; j < stream_count; j++) {
5724 if (stream_set[j] && stream_set[j]->triggered_crtc_reset.enabled) {
5725 int refresh_rate = 0;
5727 refresh_rate = (stream_set[j]->timing.pix_clk_100hz*100)/
5728 (stream_set[j]->timing.h_total*stream_set[j]->timing.v_total);
5729 if (refresh_rate > highest_rfr) {
5730 highest_rfr = refresh_rate;
5735 for (j = 0; j < stream_count; j++) {
5737 stream_set[j]->triggered_crtc_reset.event_source = stream_set[master_stream];
5741 static void dm_enable_per_frame_crtc_master_sync(struct dc_state *context)
5744 struct dc_stream_state *stream;
5746 if (context->stream_count < 2)
5748 for (i = 0; i < context->stream_count ; i++) {
5749 if (!context->streams[i])
5752 * TODO: add a function to read AMD VSDB bits and set
5753 * crtc_sync_master.multi_sync_enabled flag
5754 * For now it's set to false
5758 set_master_stream(context->streams, context->stream_count);
5760 for (i = 0; i < context->stream_count ; i++) {
5761 stream = context->streams[i];
5766 set_multisync_trigger_params(stream);
5771 * DOC: FreeSync Video
5773 * When a userspace application wants to play a video, the content follows a
5774 * standard format definition that usually specifies the FPS for that format.
5775 * The below list illustrates some video format and the expected FPS,
5778 * - TV/NTSC (23.976 FPS)
5781 * - TV/NTSC (29.97 FPS)
5782 * - TV/NTSC (30 FPS)
5783 * - Cinema HFR (48 FPS)
5785 * - Commonly used (60 FPS)
5786 * - Multiples of 24 (48,72,96 FPS)
5788 * The list of standards video format is not huge and can be added to the
5789 * connector modeset list beforehand. With that, userspace can leverage
5790 * FreeSync to extends the front porch in order to attain the target refresh
5791 * rate. Such a switch will happen seamlessly, without screen blanking or
5792 * reprogramming of the output in any other way. If the userspace requests a
5793 * modesetting change compatible with FreeSync modes that only differ in the
5794 * refresh rate, DC will skip the full update and avoid blink during the
5795 * transition. For example, the video player can change the modesetting from
5796 * 60Hz to 30Hz for playing TV/NTSC content when it goes full screen without
5797 * causing any display blink. This same concept can be applied to a mode
5800 static struct drm_display_mode *
5801 get_highest_refresh_rate_mode(struct amdgpu_dm_connector *aconnector,
5802 bool use_probed_modes)
5804 struct drm_display_mode *m, *m_pref = NULL;
5805 u16 current_refresh, highest_refresh;
5806 struct list_head *list_head = use_probed_modes ?
5807 &aconnector->base.probed_modes :
5808 &aconnector->base.modes;
5810 if (aconnector->freesync_vid_base.clock != 0)
5811 return &aconnector->freesync_vid_base;
5813 /* Find the preferred mode */
5814 list_for_each_entry(m, list_head, head) {
5815 if (m->type & DRM_MODE_TYPE_PREFERRED) {
5822 /* Probably an EDID with no preferred mode. Fallback to first entry */
5823 m_pref = list_first_entry_or_null(
5824 &aconnector->base.modes, struct drm_display_mode, head);
5826 DRM_DEBUG_DRIVER("No preferred mode found in EDID\n");
5831 highest_refresh = drm_mode_vrefresh(m_pref);
5834 * Find the mode with highest refresh rate with same resolution.
5835 * For some monitors, preferred mode is not the mode with highest
5836 * supported refresh rate.
5838 list_for_each_entry(m, list_head, head) {
5839 current_refresh = drm_mode_vrefresh(m);
5841 if (m->hdisplay == m_pref->hdisplay &&
5842 m->vdisplay == m_pref->vdisplay &&
5843 highest_refresh < current_refresh) {
5844 highest_refresh = current_refresh;
5849 drm_mode_copy(&aconnector->freesync_vid_base, m_pref);
5853 static bool is_freesync_video_mode(const struct drm_display_mode *mode,
5854 struct amdgpu_dm_connector *aconnector)
5856 struct drm_display_mode *high_mode;
5859 high_mode = get_highest_refresh_rate_mode(aconnector, false);
5860 if (!high_mode || !mode)
5863 timing_diff = high_mode->vtotal - mode->vtotal;
5865 if (high_mode->clock == 0 || high_mode->clock != mode->clock ||
5866 high_mode->hdisplay != mode->hdisplay ||
5867 high_mode->vdisplay != mode->vdisplay ||
5868 high_mode->hsync_start != mode->hsync_start ||
5869 high_mode->hsync_end != mode->hsync_end ||
5870 high_mode->htotal != mode->htotal ||
5871 high_mode->hskew != mode->hskew ||
5872 high_mode->vscan != mode->vscan ||
5873 high_mode->vsync_start - mode->vsync_start != timing_diff ||
5874 high_mode->vsync_end - mode->vsync_end != timing_diff)
5880 static void update_dsc_caps(struct amdgpu_dm_connector *aconnector,
5881 struct dc_sink *sink, struct dc_stream_state *stream,
5882 struct dsc_dec_dpcd_caps *dsc_caps)
5884 stream->timing.flags.DSC = 0;
5885 dsc_caps->is_dsc_supported = false;
5887 if (aconnector->dc_link && (sink->sink_signal == SIGNAL_TYPE_DISPLAY_PORT ||
5888 sink->sink_signal == SIGNAL_TYPE_EDP)) {
5889 if (sink->link->dpcd_caps.dongle_type == DISPLAY_DONGLE_NONE ||
5890 sink->link->dpcd_caps.dongle_type == DISPLAY_DONGLE_DP_HDMI_CONVERTER)
5891 dc_dsc_parse_dsc_dpcd(aconnector->dc_link->ctx->dc,
5892 aconnector->dc_link->dpcd_caps.dsc_caps.dsc_basic_caps.raw,
5893 aconnector->dc_link->dpcd_caps.dsc_caps.dsc_branch_decoder_caps.raw,
5899 static void apply_dsc_policy_for_edp(struct amdgpu_dm_connector *aconnector,
5900 struct dc_sink *sink, struct dc_stream_state *stream,
5901 struct dsc_dec_dpcd_caps *dsc_caps,
5902 uint32_t max_dsc_target_bpp_limit_override)
5904 const struct dc_link_settings *verified_link_cap = NULL;
5905 u32 link_bw_in_kbps;
5906 u32 edp_min_bpp_x16, edp_max_bpp_x16;
5907 struct dc *dc = sink->ctx->dc;
5908 struct dc_dsc_bw_range bw_range = {0};
5909 struct dc_dsc_config dsc_cfg = {0};
5910 struct dc_dsc_config_options dsc_options = {0};
5912 dc_dsc_get_default_config_option(dc, &dsc_options);
5913 dsc_options.max_target_bpp_limit_override_x16 = max_dsc_target_bpp_limit_override * 16;
5915 verified_link_cap = dc_link_get_link_cap(stream->link);
5916 link_bw_in_kbps = dc_link_bandwidth_kbps(stream->link, verified_link_cap);
5917 edp_min_bpp_x16 = 8 * 16;
5918 edp_max_bpp_x16 = 8 * 16;
5920 if (edp_max_bpp_x16 > dsc_caps->edp_max_bits_per_pixel)
5921 edp_max_bpp_x16 = dsc_caps->edp_max_bits_per_pixel;
5923 if (edp_max_bpp_x16 < edp_min_bpp_x16)
5924 edp_min_bpp_x16 = edp_max_bpp_x16;
5926 if (dc_dsc_compute_bandwidth_range(dc->res_pool->dscs[0],
5927 dc->debug.dsc_min_slice_height_override,
5928 edp_min_bpp_x16, edp_max_bpp_x16,
5931 dc_link_get_highest_encoding_format(aconnector->dc_link),
5934 if (bw_range.max_kbps < link_bw_in_kbps) {
5935 if (dc_dsc_compute_config(dc->res_pool->dscs[0],
5940 dc_link_get_highest_encoding_format(aconnector->dc_link),
5942 stream->timing.dsc_cfg = dsc_cfg;
5943 stream->timing.flags.DSC = 1;
5944 stream->timing.dsc_cfg.bits_per_pixel = edp_max_bpp_x16;
5950 if (dc_dsc_compute_config(dc->res_pool->dscs[0],
5955 dc_link_get_highest_encoding_format(aconnector->dc_link),
5957 stream->timing.dsc_cfg = dsc_cfg;
5958 stream->timing.flags.DSC = 1;
5963 static void apply_dsc_policy_for_stream(struct amdgpu_dm_connector *aconnector,
5964 struct dc_sink *sink, struct dc_stream_state *stream,
5965 struct dsc_dec_dpcd_caps *dsc_caps)
5967 struct drm_connector *drm_connector = &aconnector->base;
5968 u32 link_bandwidth_kbps;
5969 struct dc *dc = sink->ctx->dc;
5970 u32 max_supported_bw_in_kbps, timing_bw_in_kbps;
5971 u32 dsc_max_supported_bw_in_kbps;
5972 u32 max_dsc_target_bpp_limit_override =
5973 drm_connector->display_info.max_dsc_bpp;
5974 struct dc_dsc_config_options dsc_options = {0};
5976 dc_dsc_get_default_config_option(dc, &dsc_options);
5977 dsc_options.max_target_bpp_limit_override_x16 = max_dsc_target_bpp_limit_override * 16;
5979 link_bandwidth_kbps = dc_link_bandwidth_kbps(aconnector->dc_link,
5980 dc_link_get_link_cap(aconnector->dc_link));
5982 /* Set DSC policy according to dsc_clock_en */
5983 dc_dsc_policy_set_enable_dsc_when_not_needed(
5984 aconnector->dsc_settings.dsc_force_enable == DSC_CLK_FORCE_ENABLE);
5986 if (aconnector->dc_link && sink->sink_signal == SIGNAL_TYPE_EDP &&
5987 !aconnector->dc_link->panel_config.dsc.disable_dsc_edp &&
5988 dc->caps.edp_dsc_support && aconnector->dsc_settings.dsc_force_enable != DSC_CLK_FORCE_DISABLE) {
5990 apply_dsc_policy_for_edp(aconnector, sink, stream, dsc_caps, max_dsc_target_bpp_limit_override);
5992 } else if (aconnector->dc_link && sink->sink_signal == SIGNAL_TYPE_DISPLAY_PORT) {
5993 if (sink->link->dpcd_caps.dongle_type == DISPLAY_DONGLE_NONE) {
5994 if (dc_dsc_compute_config(aconnector->dc_link->ctx->dc->res_pool->dscs[0],
5997 link_bandwidth_kbps,
5999 dc_link_get_highest_encoding_format(aconnector->dc_link),
6000 &stream->timing.dsc_cfg)) {
6001 stream->timing.flags.DSC = 1;
6002 DRM_DEBUG_DRIVER("%s: [%s] DSC is selected from SST RX\n", __func__, drm_connector->name);
6004 } else if (sink->link->dpcd_caps.dongle_type == DISPLAY_DONGLE_DP_HDMI_CONVERTER) {
6005 timing_bw_in_kbps = dc_bandwidth_in_kbps_from_timing(&stream->timing,
6006 dc_link_get_highest_encoding_format(aconnector->dc_link));
6007 max_supported_bw_in_kbps = link_bandwidth_kbps;
6008 dsc_max_supported_bw_in_kbps = link_bandwidth_kbps;
6010 if (timing_bw_in_kbps > max_supported_bw_in_kbps &&
6011 max_supported_bw_in_kbps > 0 &&
6012 dsc_max_supported_bw_in_kbps > 0)
6013 if (dc_dsc_compute_config(aconnector->dc_link->ctx->dc->res_pool->dscs[0],
6016 dsc_max_supported_bw_in_kbps,
6018 dc_link_get_highest_encoding_format(aconnector->dc_link),
6019 &stream->timing.dsc_cfg)) {
6020 stream->timing.flags.DSC = 1;
6021 DRM_DEBUG_DRIVER("%s: [%s] DSC is selected from DP-HDMI PCON\n",
6022 __func__, drm_connector->name);
6027 /* Overwrite the stream flag if DSC is enabled through debugfs */
6028 if (aconnector->dsc_settings.dsc_force_enable == DSC_CLK_FORCE_ENABLE)
6029 stream->timing.flags.DSC = 1;
6031 if (stream->timing.flags.DSC && aconnector->dsc_settings.dsc_num_slices_h)
6032 stream->timing.dsc_cfg.num_slices_h = aconnector->dsc_settings.dsc_num_slices_h;
6034 if (stream->timing.flags.DSC && aconnector->dsc_settings.dsc_num_slices_v)
6035 stream->timing.dsc_cfg.num_slices_v = aconnector->dsc_settings.dsc_num_slices_v;
6037 if (stream->timing.flags.DSC && aconnector->dsc_settings.dsc_bits_per_pixel)
6038 stream->timing.dsc_cfg.bits_per_pixel = aconnector->dsc_settings.dsc_bits_per_pixel;
6041 static struct dc_stream_state *
6042 create_stream_for_sink(struct amdgpu_dm_connector *aconnector,
6043 const struct drm_display_mode *drm_mode,
6044 const struct dm_connector_state *dm_state,
6045 const struct dc_stream_state *old_stream,
6048 struct drm_display_mode *preferred_mode = NULL;
6049 struct drm_connector *drm_connector;
6050 const struct drm_connector_state *con_state = &dm_state->base;
6051 struct dc_stream_state *stream = NULL;
6052 struct drm_display_mode mode;
6053 struct drm_display_mode saved_mode;
6054 struct drm_display_mode *freesync_mode = NULL;
6055 bool native_mode_found = false;
6056 bool recalculate_timing = false;
6057 bool scale = dm_state->scaling != RMX_OFF;
6059 int preferred_refresh = 0;
6060 enum color_transfer_func tf = TRANSFER_FUNC_UNKNOWN;
6061 struct dsc_dec_dpcd_caps dsc_caps;
6063 struct dc_sink *sink = NULL;
6065 drm_mode_init(&mode, drm_mode);
6066 memset(&saved_mode, 0, sizeof(saved_mode));
6068 if (aconnector == NULL) {
6069 DRM_ERROR("aconnector is NULL!\n");
6073 drm_connector = &aconnector->base;
6075 if (!aconnector->dc_sink) {
6076 sink = create_fake_sink(aconnector);
6080 sink = aconnector->dc_sink;
6081 dc_sink_retain(sink);
6084 stream = dc_create_stream_for_sink(sink);
6086 if (stream == NULL) {
6087 DRM_ERROR("Failed to create stream for sink!\n");
6091 stream->dm_stream_context = aconnector;
6093 stream->timing.flags.LTE_340MCSC_SCRAMBLE =
6094 drm_connector->display_info.hdmi.scdc.scrambling.low_rates;
6096 list_for_each_entry(preferred_mode, &aconnector->base.modes, head) {
6097 /* Search for preferred mode */
6098 if (preferred_mode->type & DRM_MODE_TYPE_PREFERRED) {
6099 native_mode_found = true;
6103 if (!native_mode_found)
6104 preferred_mode = list_first_entry_or_null(
6105 &aconnector->base.modes,
6106 struct drm_display_mode,
6109 mode_refresh = drm_mode_vrefresh(&mode);
6111 if (preferred_mode == NULL) {
6113 * This may not be an error, the use case is when we have no
6114 * usermode calls to reset and set mode upon hotplug. In this
6115 * case, we call set mode ourselves to restore the previous mode
6116 * and the modelist may not be filled in time.
6118 DRM_DEBUG_DRIVER("No preferred mode found\n");
6120 recalculate_timing = is_freesync_video_mode(&mode, aconnector);
6121 if (recalculate_timing) {
6122 freesync_mode = get_highest_refresh_rate_mode(aconnector, false);
6123 drm_mode_copy(&saved_mode, &mode);
6124 drm_mode_copy(&mode, freesync_mode);
6126 decide_crtc_timing_for_drm_display_mode(
6127 &mode, preferred_mode, scale);
6129 preferred_refresh = drm_mode_vrefresh(preferred_mode);
6133 if (recalculate_timing)
6134 drm_mode_set_crtcinfo(&saved_mode, 0);
6137 * If scaling is enabled and refresh rate didn't change
6138 * we copy the vic and polarities of the old timings
6140 if (!scale || mode_refresh != preferred_refresh)
6141 fill_stream_properties_from_drm_display_mode(
6142 stream, &mode, &aconnector->base, con_state, NULL,
6145 fill_stream_properties_from_drm_display_mode(
6146 stream, &mode, &aconnector->base, con_state, old_stream,
6149 if (aconnector->timing_changed) {
6150 drm_dbg(aconnector->base.dev,
6151 "overriding timing for automated test, bpc %d, changing to %d\n",
6152 stream->timing.display_color_depth,
6153 aconnector->timing_requested->display_color_depth);
6154 stream->timing = *aconnector->timing_requested;
6157 /* SST DSC determination policy */
6158 update_dsc_caps(aconnector, sink, stream, &dsc_caps);
6159 if (aconnector->dsc_settings.dsc_force_enable != DSC_CLK_FORCE_DISABLE && dsc_caps.is_dsc_supported)
6160 apply_dsc_policy_for_stream(aconnector, sink, stream, &dsc_caps);
6162 update_stream_scaling_settings(&mode, dm_state, stream);
6165 &stream->audio_info,
6169 update_stream_signal(stream, sink);
6171 if (stream->signal == SIGNAL_TYPE_HDMI_TYPE_A)
6172 mod_build_hf_vsif_infopacket(stream, &stream->vsp_infopacket);
6173 else if (stream->signal == SIGNAL_TYPE_DISPLAY_PORT ||
6174 stream->signal == SIGNAL_TYPE_DISPLAY_PORT_MST ||
6175 stream->signal == SIGNAL_TYPE_EDP) {
6177 // should decide stream support vsc sdp colorimetry capability
6178 // before building vsc info packet
6180 stream->use_vsc_sdp_for_colorimetry = false;
6181 if (aconnector->dc_sink->sink_signal == SIGNAL_TYPE_DISPLAY_PORT_MST) {
6182 stream->use_vsc_sdp_for_colorimetry =
6183 aconnector->dc_sink->is_vsc_sdp_colorimetry_supported;
6185 if (stream->link->dpcd_caps.dprx_feature.bits.VSC_SDP_COLORIMETRY_SUPPORTED)
6186 stream->use_vsc_sdp_for_colorimetry = true;
6188 if (stream->out_transfer_func->tf == TRANSFER_FUNCTION_GAMMA22)
6189 tf = TRANSFER_FUNC_GAMMA_22;
6190 mod_build_vsc_infopacket(stream, &stream->vsc_infopacket, stream->output_color_space, tf);
6192 if (stream->link->psr_settings.psr_feature_enabled)
6193 aconnector->psr_skip_count = AMDGPU_DM_PSR_ENTRY_DELAY;
6196 dc_sink_release(sink);
6201 static enum drm_connector_status
6202 amdgpu_dm_connector_detect(struct drm_connector *connector, bool force)
6205 struct amdgpu_dm_connector *aconnector = to_amdgpu_dm_connector(connector);
6209 * 1. This interface is NOT called in context of HPD irq.
6210 * 2. This interface *is called* in context of user-mode ioctl. Which
6211 * makes it a bad place for *any* MST-related activity.
6214 if (aconnector->base.force == DRM_FORCE_UNSPECIFIED &&
6215 !aconnector->fake_enable)
6216 connected = (aconnector->dc_sink != NULL);
6218 connected = (aconnector->base.force == DRM_FORCE_ON ||
6219 aconnector->base.force == DRM_FORCE_ON_DIGITAL);
6221 update_subconnector_property(aconnector);
6223 return (connected ? connector_status_connected :
6224 connector_status_disconnected);
6227 int amdgpu_dm_connector_atomic_set_property(struct drm_connector *connector,
6228 struct drm_connector_state *connector_state,
6229 struct drm_property *property,
6232 struct drm_device *dev = connector->dev;
6233 struct amdgpu_device *adev = drm_to_adev(dev);
6234 struct dm_connector_state *dm_old_state =
6235 to_dm_connector_state(connector->state);
6236 struct dm_connector_state *dm_new_state =
6237 to_dm_connector_state(connector_state);
6241 if (property == dev->mode_config.scaling_mode_property) {
6242 enum amdgpu_rmx_type rmx_type;
6245 case DRM_MODE_SCALE_CENTER:
6246 rmx_type = RMX_CENTER;
6248 case DRM_MODE_SCALE_ASPECT:
6249 rmx_type = RMX_ASPECT;
6251 case DRM_MODE_SCALE_FULLSCREEN:
6252 rmx_type = RMX_FULL;
6254 case DRM_MODE_SCALE_NONE:
6260 if (dm_old_state->scaling == rmx_type)
6263 dm_new_state->scaling = rmx_type;
6265 } else if (property == adev->mode_info.underscan_hborder_property) {
6266 dm_new_state->underscan_hborder = val;
6268 } else if (property == adev->mode_info.underscan_vborder_property) {
6269 dm_new_state->underscan_vborder = val;
6271 } else if (property == adev->mode_info.underscan_property) {
6272 dm_new_state->underscan_enable = val;
6274 } else if (property == adev->mode_info.abm_level_property) {
6275 dm_new_state->abm_level = val ?: ABM_LEVEL_IMMEDIATE_DISABLE;
6282 int amdgpu_dm_connector_atomic_get_property(struct drm_connector *connector,
6283 const struct drm_connector_state *state,
6284 struct drm_property *property,
6287 struct drm_device *dev = connector->dev;
6288 struct amdgpu_device *adev = drm_to_adev(dev);
6289 struct dm_connector_state *dm_state =
6290 to_dm_connector_state(state);
6293 if (property == dev->mode_config.scaling_mode_property) {
6294 switch (dm_state->scaling) {
6296 *val = DRM_MODE_SCALE_CENTER;
6299 *val = DRM_MODE_SCALE_ASPECT;
6302 *val = DRM_MODE_SCALE_FULLSCREEN;
6306 *val = DRM_MODE_SCALE_NONE;
6310 } else if (property == adev->mode_info.underscan_hborder_property) {
6311 *val = dm_state->underscan_hborder;
6313 } else if (property == adev->mode_info.underscan_vborder_property) {
6314 *val = dm_state->underscan_vborder;
6316 } else if (property == adev->mode_info.underscan_property) {
6317 *val = dm_state->underscan_enable;
6319 } else if (property == adev->mode_info.abm_level_property) {
6320 *val = (dm_state->abm_level != ABM_LEVEL_IMMEDIATE_DISABLE) ?
6321 dm_state->abm_level : 0;
6328 static void amdgpu_dm_connector_unregister(struct drm_connector *connector)
6330 struct amdgpu_dm_connector *amdgpu_dm_connector = to_amdgpu_dm_connector(connector);
6332 drm_dp_aux_unregister(&amdgpu_dm_connector->dm_dp_aux.aux);
6335 static void amdgpu_dm_connector_destroy(struct drm_connector *connector)
6337 struct amdgpu_dm_connector *aconnector = to_amdgpu_dm_connector(connector);
6338 struct amdgpu_device *adev = drm_to_adev(connector->dev);
6339 struct amdgpu_display_manager *dm = &adev->dm;
6342 * Call only if mst_mgr was initialized before since it's not done
6343 * for all connector types.
6345 if (aconnector->mst_mgr.dev)
6346 drm_dp_mst_topology_mgr_destroy(&aconnector->mst_mgr);
6348 if (aconnector->bl_idx != -1) {
6349 backlight_device_unregister(dm->backlight_dev[aconnector->bl_idx]);
6350 dm->backlight_dev[aconnector->bl_idx] = NULL;
6353 if (aconnector->dc_em_sink)
6354 dc_sink_release(aconnector->dc_em_sink);
6355 aconnector->dc_em_sink = NULL;
6356 if (aconnector->dc_sink)
6357 dc_sink_release(aconnector->dc_sink);
6358 aconnector->dc_sink = NULL;
6360 drm_dp_cec_unregister_connector(&aconnector->dm_dp_aux.aux);
6361 drm_connector_unregister(connector);
6362 drm_connector_cleanup(connector);
6363 if (aconnector->i2c) {
6364 i2c_del_adapter(&aconnector->i2c->base);
6365 kfree(aconnector->i2c);
6367 kfree(aconnector->dm_dp_aux.aux.name);
6372 void amdgpu_dm_connector_funcs_reset(struct drm_connector *connector)
6374 struct dm_connector_state *state =
6375 to_dm_connector_state(connector->state);
6377 if (connector->state)
6378 __drm_atomic_helper_connector_destroy_state(connector->state);
6382 state = kzalloc(sizeof(*state), GFP_KERNEL);
6385 state->scaling = RMX_OFF;
6386 state->underscan_enable = false;
6387 state->underscan_hborder = 0;
6388 state->underscan_vborder = 0;
6389 state->base.max_requested_bpc = 8;
6390 state->vcpi_slots = 0;
6393 if (connector->connector_type == DRM_MODE_CONNECTOR_eDP)
6394 state->abm_level = amdgpu_dm_abm_level ?:
6395 ABM_LEVEL_IMMEDIATE_DISABLE;
6397 __drm_atomic_helper_connector_reset(connector, &state->base);
6401 struct drm_connector_state *
6402 amdgpu_dm_connector_atomic_duplicate_state(struct drm_connector *connector)
6404 struct dm_connector_state *state =
6405 to_dm_connector_state(connector->state);
6407 struct dm_connector_state *new_state =
6408 kmemdup(state, sizeof(*state), GFP_KERNEL);
6413 __drm_atomic_helper_connector_duplicate_state(connector, &new_state->base);
6415 new_state->freesync_capable = state->freesync_capable;
6416 new_state->abm_level = state->abm_level;
6417 new_state->scaling = state->scaling;
6418 new_state->underscan_enable = state->underscan_enable;
6419 new_state->underscan_hborder = state->underscan_hborder;
6420 new_state->underscan_vborder = state->underscan_vborder;
6421 new_state->vcpi_slots = state->vcpi_slots;
6422 new_state->pbn = state->pbn;
6423 return &new_state->base;
6427 amdgpu_dm_connector_late_register(struct drm_connector *connector)
6429 struct amdgpu_dm_connector *amdgpu_dm_connector =
6430 to_amdgpu_dm_connector(connector);
6433 amdgpu_dm_register_backlight_device(amdgpu_dm_connector);
6435 if ((connector->connector_type == DRM_MODE_CONNECTOR_DisplayPort) ||
6436 (connector->connector_type == DRM_MODE_CONNECTOR_eDP)) {
6437 amdgpu_dm_connector->dm_dp_aux.aux.dev = connector->kdev;
6438 r = drm_dp_aux_register(&amdgpu_dm_connector->dm_dp_aux.aux);
6443 #if defined(CONFIG_DEBUG_FS)
6444 connector_debugfs_init(amdgpu_dm_connector);
6450 static void amdgpu_dm_connector_funcs_force(struct drm_connector *connector)
6452 struct amdgpu_dm_connector *aconnector = to_amdgpu_dm_connector(connector);
6453 struct amdgpu_connector *amdgpu_connector = to_amdgpu_connector(connector);
6454 struct dc_link *dc_link = aconnector->dc_link;
6455 struct dc_sink *dc_em_sink = aconnector->dc_em_sink;
6459 * Note: drm_get_edid gets edid in the following order:
6460 * 1) override EDID if set via edid_override debugfs,
6461 * 2) firmware EDID if set via edid_firmware module parameter
6462 * 3) regular DDC read.
6464 edid = drm_get_edid(connector, &amdgpu_connector->ddc_bus->aux.ddc);
6466 DRM_ERROR("No EDID found on connector: %s.\n", connector->name);
6470 aconnector->edid = edid;
6472 /* Update emulated (virtual) sink's EDID */
6473 if (dc_em_sink && dc_link) {
6474 memset(&dc_em_sink->edid_caps, 0, sizeof(struct dc_edid_caps));
6475 memmove(dc_em_sink->dc_edid.raw_edid, edid, (edid->extensions + 1) * EDID_LENGTH);
6476 dm_helpers_parse_edid_caps(
6478 &dc_em_sink->dc_edid,
6479 &dc_em_sink->edid_caps);
6483 static const struct drm_connector_funcs amdgpu_dm_connector_funcs = {
6484 .reset = amdgpu_dm_connector_funcs_reset,
6485 .detect = amdgpu_dm_connector_detect,
6486 .fill_modes = drm_helper_probe_single_connector_modes,
6487 .destroy = amdgpu_dm_connector_destroy,
6488 .atomic_duplicate_state = amdgpu_dm_connector_atomic_duplicate_state,
6489 .atomic_destroy_state = drm_atomic_helper_connector_destroy_state,
6490 .atomic_set_property = amdgpu_dm_connector_atomic_set_property,
6491 .atomic_get_property = amdgpu_dm_connector_atomic_get_property,
6492 .late_register = amdgpu_dm_connector_late_register,
6493 .early_unregister = amdgpu_dm_connector_unregister,
6494 .force = amdgpu_dm_connector_funcs_force
6497 static int get_modes(struct drm_connector *connector)
6499 return amdgpu_dm_connector_get_modes(connector);
6502 static void create_eml_sink(struct amdgpu_dm_connector *aconnector)
6504 struct drm_connector *connector = &aconnector->base;
6505 struct amdgpu_connector *amdgpu_connector = to_amdgpu_connector(&aconnector->base);
6506 struct dc_sink_init_data init_params = {
6507 .link = aconnector->dc_link,
6508 .sink_signal = SIGNAL_TYPE_VIRTUAL
6513 * Note: drm_get_edid gets edid in the following order:
6514 * 1) override EDID if set via edid_override debugfs,
6515 * 2) firmware EDID if set via edid_firmware module parameter
6516 * 3) regular DDC read.
6518 edid = drm_get_edid(connector, &amdgpu_connector->ddc_bus->aux.ddc);
6520 DRM_ERROR("No EDID found on connector: %s.\n", connector->name);
6524 if (drm_detect_hdmi_monitor(edid))
6525 init_params.sink_signal = SIGNAL_TYPE_HDMI_TYPE_A;
6527 aconnector->edid = edid;
6529 aconnector->dc_em_sink = dc_link_add_remote_sink(
6530 aconnector->dc_link,
6532 (edid->extensions + 1) * EDID_LENGTH,
6535 if (aconnector->base.force == DRM_FORCE_ON) {
6536 aconnector->dc_sink = aconnector->dc_link->local_sink ?
6537 aconnector->dc_link->local_sink :
6538 aconnector->dc_em_sink;
6539 dc_sink_retain(aconnector->dc_sink);
6543 static void handle_edid_mgmt(struct amdgpu_dm_connector *aconnector)
6545 struct dc_link *link = (struct dc_link *)aconnector->dc_link;
6548 * In case of headless boot with force on for DP managed connector
6549 * Those settings have to be != 0 to get initial modeset
6551 if (link->connector_signal == SIGNAL_TYPE_DISPLAY_PORT) {
6552 link->verified_link_cap.lane_count = LANE_COUNT_FOUR;
6553 link->verified_link_cap.link_rate = LINK_RATE_HIGH2;
6556 create_eml_sink(aconnector);
6559 static enum dc_status dm_validate_stream_and_context(struct dc *dc,
6560 struct dc_stream_state *stream)
6562 enum dc_status dc_result = DC_ERROR_UNEXPECTED;
6563 struct dc_plane_state *dc_plane_state = NULL;
6564 struct dc_state *dc_state = NULL;
6569 dc_plane_state = dc_create_plane_state(dc);
6570 if (!dc_plane_state)
6573 dc_state = dc_create_state(dc);
6577 /* populate stream to plane */
6578 dc_plane_state->src_rect.height = stream->src.height;
6579 dc_plane_state->src_rect.width = stream->src.width;
6580 dc_plane_state->dst_rect.height = stream->src.height;
6581 dc_plane_state->dst_rect.width = stream->src.width;
6582 dc_plane_state->clip_rect.height = stream->src.height;
6583 dc_plane_state->clip_rect.width = stream->src.width;
6584 dc_plane_state->plane_size.surface_pitch = ((stream->src.width + 255) / 256) * 256;
6585 dc_plane_state->plane_size.surface_size.height = stream->src.height;
6586 dc_plane_state->plane_size.surface_size.width = stream->src.width;
6587 dc_plane_state->plane_size.chroma_size.height = stream->src.height;
6588 dc_plane_state->plane_size.chroma_size.width = stream->src.width;
6589 dc_plane_state->format = SURFACE_PIXEL_FORMAT_GRPH_ARGB8888;
6590 dc_plane_state->tiling_info.gfx9.swizzle = DC_SW_UNKNOWN;
6591 dc_plane_state->rotation = ROTATION_ANGLE_0;
6592 dc_plane_state->is_tiling_rotated = false;
6593 dc_plane_state->tiling_info.gfx8.array_mode = DC_ARRAY_LINEAR_GENERAL;
6595 dc_result = dc_validate_stream(dc, stream);
6596 if (dc_result == DC_OK)
6597 dc_result = dc_validate_plane(dc, dc_plane_state);
6599 if (dc_result == DC_OK)
6600 dc_result = dc_add_stream_to_ctx(dc, dc_state, stream);
6602 if (dc_result == DC_OK && !dc_add_plane_to_context(
6607 dc_result = DC_FAIL_ATTACH_SURFACES;
6609 if (dc_result == DC_OK)
6610 dc_result = dc_validate_global_state(dc, dc_state, true);
6614 dc_release_state(dc_state);
6617 dc_plane_state_release(dc_plane_state);
6622 struct dc_stream_state *
6623 create_validate_stream_for_sink(struct amdgpu_dm_connector *aconnector,
6624 const struct drm_display_mode *drm_mode,
6625 const struct dm_connector_state *dm_state,
6626 const struct dc_stream_state *old_stream)
6628 struct drm_connector *connector = &aconnector->base;
6629 struct amdgpu_device *adev = drm_to_adev(connector->dev);
6630 struct dc_stream_state *stream;
6631 const struct drm_connector_state *drm_state = dm_state ? &dm_state->base : NULL;
6632 int requested_bpc = drm_state ? drm_state->max_requested_bpc : 8;
6633 enum dc_status dc_result = DC_OK;
6636 stream = create_stream_for_sink(aconnector, drm_mode,
6637 dm_state, old_stream,
6639 if (stream == NULL) {
6640 DRM_ERROR("Failed to create stream for sink!\n");
6644 dc_result = dc_validate_stream(adev->dm.dc, stream);
6645 if (dc_result == DC_OK && stream->signal == SIGNAL_TYPE_DISPLAY_PORT_MST)
6646 dc_result = dm_dp_mst_is_port_support_mode(aconnector, stream);
6648 if (dc_result == DC_OK)
6649 dc_result = dm_validate_stream_and_context(adev->dm.dc, stream);
6651 if (dc_result != DC_OK) {
6652 DRM_DEBUG_KMS("Mode %dx%d (clk %d) failed DC validation with error %d (%s)\n",
6657 dc_status_to_str(dc_result));
6659 dc_stream_release(stream);
6661 requested_bpc -= 2; /* lower bpc to retry validation */
6664 } while (stream == NULL && requested_bpc >= 6);
6666 if (dc_result == DC_FAIL_ENC_VALIDATE && !aconnector->force_yuv420_output) {
6667 DRM_DEBUG_KMS("Retry forcing YCbCr420 encoding\n");
6669 aconnector->force_yuv420_output = true;
6670 stream = create_validate_stream_for_sink(aconnector, drm_mode,
6671 dm_state, old_stream);
6672 aconnector->force_yuv420_output = false;
6678 enum drm_mode_status amdgpu_dm_connector_mode_valid(struct drm_connector *connector,
6679 struct drm_display_mode *mode)
6681 int result = MODE_ERROR;
6682 struct dc_sink *dc_sink;
6683 /* TODO: Unhardcode stream count */
6684 struct dc_stream_state *stream;
6685 struct amdgpu_dm_connector *aconnector = to_amdgpu_dm_connector(connector);
6687 if ((mode->flags & DRM_MODE_FLAG_INTERLACE) ||
6688 (mode->flags & DRM_MODE_FLAG_DBLSCAN))
6692 * Only run this the first time mode_valid is called to initilialize
6695 if (aconnector->base.force != DRM_FORCE_UNSPECIFIED &&
6696 !aconnector->dc_em_sink)
6697 handle_edid_mgmt(aconnector);
6699 dc_sink = to_amdgpu_dm_connector(connector)->dc_sink;
6701 if (dc_sink == NULL && aconnector->base.force != DRM_FORCE_ON_DIGITAL &&
6702 aconnector->base.force != DRM_FORCE_ON) {
6703 DRM_ERROR("dc_sink is NULL!\n");
6707 drm_mode_set_crtcinfo(mode, 0);
6709 stream = create_validate_stream_for_sink(aconnector, mode,
6710 to_dm_connector_state(connector->state),
6713 dc_stream_release(stream);
6718 /* TODO: error handling*/
6722 static int fill_hdr_info_packet(const struct drm_connector_state *state,
6723 struct dc_info_packet *out)
6725 struct hdmi_drm_infoframe frame;
6726 unsigned char buf[30]; /* 26 + 4 */
6730 memset(out, 0, sizeof(*out));
6732 if (!state->hdr_output_metadata)
6735 ret = drm_hdmi_infoframe_set_hdr_metadata(&frame, state);
6739 len = hdmi_drm_infoframe_pack_only(&frame, buf, sizeof(buf));
6743 /* Static metadata is a fixed 26 bytes + 4 byte header. */
6747 /* Prepare the infopacket for DC. */
6748 switch (state->connector->connector_type) {
6749 case DRM_MODE_CONNECTOR_HDMIA:
6750 out->hb0 = 0x87; /* type */
6751 out->hb1 = 0x01; /* version */
6752 out->hb2 = 0x1A; /* length */
6753 out->sb[0] = buf[3]; /* checksum */
6757 case DRM_MODE_CONNECTOR_DisplayPort:
6758 case DRM_MODE_CONNECTOR_eDP:
6759 out->hb0 = 0x00; /* sdp id, zero */
6760 out->hb1 = 0x87; /* type */
6761 out->hb2 = 0x1D; /* payload len - 1 */
6762 out->hb3 = (0x13 << 2); /* sdp version */
6763 out->sb[0] = 0x01; /* version */
6764 out->sb[1] = 0x1A; /* length */
6772 memcpy(&out->sb[i], &buf[4], 26);
6775 print_hex_dump(KERN_DEBUG, "HDR SB:", DUMP_PREFIX_NONE, 16, 1, out->sb,
6776 sizeof(out->sb), false);
6782 amdgpu_dm_connector_atomic_check(struct drm_connector *conn,
6783 struct drm_atomic_state *state)
6785 struct drm_connector_state *new_con_state =
6786 drm_atomic_get_new_connector_state(state, conn);
6787 struct drm_connector_state *old_con_state =
6788 drm_atomic_get_old_connector_state(state, conn);
6789 struct drm_crtc *crtc = new_con_state->crtc;
6790 struct drm_crtc_state *new_crtc_state;
6791 struct amdgpu_dm_connector *aconn = to_amdgpu_dm_connector(conn);
6794 trace_amdgpu_dm_connector_atomic_check(new_con_state);
6796 if (conn->connector_type == DRM_MODE_CONNECTOR_DisplayPort) {
6797 ret = drm_dp_mst_root_conn_atomic_check(new_con_state, &aconn->mst_mgr);
6805 if (new_con_state->colorspace != old_con_state->colorspace) {
6806 new_crtc_state = drm_atomic_get_crtc_state(state, crtc);
6807 if (IS_ERR(new_crtc_state))
6808 return PTR_ERR(new_crtc_state);
6810 new_crtc_state->mode_changed = true;
6813 if (new_con_state->content_type != old_con_state->content_type) {
6814 new_crtc_state = drm_atomic_get_crtc_state(state, crtc);
6815 if (IS_ERR(new_crtc_state))
6816 return PTR_ERR(new_crtc_state);
6818 new_crtc_state->mode_changed = true;
6821 if (!drm_connector_atomic_hdr_metadata_equal(old_con_state, new_con_state)) {
6822 struct dc_info_packet hdr_infopacket;
6824 ret = fill_hdr_info_packet(new_con_state, &hdr_infopacket);
6828 new_crtc_state = drm_atomic_get_crtc_state(state, crtc);
6829 if (IS_ERR(new_crtc_state))
6830 return PTR_ERR(new_crtc_state);
6833 * DC considers the stream backends changed if the
6834 * static metadata changes. Forcing the modeset also
6835 * gives a simple way for userspace to switch from
6836 * 8bpc to 10bpc when setting the metadata to enter
6839 * Changing the static metadata after it's been
6840 * set is permissible, however. So only force a
6841 * modeset if we're entering or exiting HDR.
6843 new_crtc_state->mode_changed = new_crtc_state->mode_changed ||
6844 !old_con_state->hdr_output_metadata ||
6845 !new_con_state->hdr_output_metadata;
6851 static const struct drm_connector_helper_funcs
6852 amdgpu_dm_connector_helper_funcs = {
6854 * If hotplugging a second bigger display in FB Con mode, bigger resolution
6855 * modes will be filtered by drm_mode_validate_size(), and those modes
6856 * are missing after user start lightdm. So we need to renew modes list.
6857 * in get_modes call back, not just return the modes count
6859 .get_modes = get_modes,
6860 .mode_valid = amdgpu_dm_connector_mode_valid,
6861 .atomic_check = amdgpu_dm_connector_atomic_check,
6864 static void dm_encoder_helper_disable(struct drm_encoder *encoder)
6869 int convert_dc_color_depth_into_bpc(enum dc_color_depth display_color_depth)
6871 switch (display_color_depth) {
6872 case COLOR_DEPTH_666:
6874 case COLOR_DEPTH_888:
6876 case COLOR_DEPTH_101010:
6878 case COLOR_DEPTH_121212:
6880 case COLOR_DEPTH_141414:
6882 case COLOR_DEPTH_161616:
6890 static int dm_encoder_helper_atomic_check(struct drm_encoder *encoder,
6891 struct drm_crtc_state *crtc_state,
6892 struct drm_connector_state *conn_state)
6894 struct drm_atomic_state *state = crtc_state->state;
6895 struct drm_connector *connector = conn_state->connector;
6896 struct amdgpu_dm_connector *aconnector = to_amdgpu_dm_connector(connector);
6897 struct dm_connector_state *dm_new_connector_state = to_dm_connector_state(conn_state);
6898 const struct drm_display_mode *adjusted_mode = &crtc_state->adjusted_mode;
6899 struct drm_dp_mst_topology_mgr *mst_mgr;
6900 struct drm_dp_mst_port *mst_port;
6901 struct drm_dp_mst_topology_state *mst_state;
6902 enum dc_color_depth color_depth;
6904 bool is_y420 = false;
6906 if (!aconnector->mst_output_port)
6909 mst_port = aconnector->mst_output_port;
6910 mst_mgr = &aconnector->mst_root->mst_mgr;
6912 if (!crtc_state->connectors_changed && !crtc_state->mode_changed)
6915 mst_state = drm_atomic_get_mst_topology_state(state, mst_mgr);
6916 if (IS_ERR(mst_state))
6917 return PTR_ERR(mst_state);
6919 mst_state->pbn_div = dm_mst_get_pbn_divider(aconnector->mst_root->dc_link);
6921 if (!state->duplicated) {
6922 int max_bpc = conn_state->max_requested_bpc;
6924 is_y420 = drm_mode_is_420_also(&connector->display_info, adjusted_mode) &&
6925 aconnector->force_yuv420_output;
6926 color_depth = convert_color_depth_from_display_info(connector,
6929 bpp = convert_dc_color_depth_into_bpc(color_depth) * 3;
6930 clock = adjusted_mode->clock;
6931 dm_new_connector_state->pbn = drm_dp_calc_pbn_mode(clock, bpp, false);
6934 dm_new_connector_state->vcpi_slots =
6935 drm_dp_atomic_find_time_slots(state, mst_mgr, mst_port,
6936 dm_new_connector_state->pbn);
6937 if (dm_new_connector_state->vcpi_slots < 0) {
6938 DRM_DEBUG_ATOMIC("failed finding vcpi slots: %d\n", (int)dm_new_connector_state->vcpi_slots);
6939 return dm_new_connector_state->vcpi_slots;
6944 const struct drm_encoder_helper_funcs amdgpu_dm_encoder_helper_funcs = {
6945 .disable = dm_encoder_helper_disable,
6946 .atomic_check = dm_encoder_helper_atomic_check
6949 static int dm_update_mst_vcpi_slots_for_dsc(struct drm_atomic_state *state,
6950 struct dc_state *dc_state,
6951 struct dsc_mst_fairness_vars *vars)
6953 struct dc_stream_state *stream = NULL;
6954 struct drm_connector *connector;
6955 struct drm_connector_state *new_con_state;
6956 struct amdgpu_dm_connector *aconnector;
6957 struct dm_connector_state *dm_conn_state;
6959 int vcpi, pbn_div, pbn, slot_num = 0;
6961 for_each_new_connector_in_state(state, connector, new_con_state, i) {
6963 aconnector = to_amdgpu_dm_connector(connector);
6965 if (!aconnector->mst_output_port)
6968 if (!new_con_state || !new_con_state->crtc)
6971 dm_conn_state = to_dm_connector_state(new_con_state);
6973 for (j = 0; j < dc_state->stream_count; j++) {
6974 stream = dc_state->streams[j];
6978 if ((struct amdgpu_dm_connector *)stream->dm_stream_context == aconnector)
6987 pbn_div = dm_mst_get_pbn_divider(stream->link);
6988 /* pbn is calculated by compute_mst_dsc_configs_for_state*/
6989 for (j = 0; j < dc_state->stream_count; j++) {
6990 if (vars[j].aconnector == aconnector) {
6996 if (j == dc_state->stream_count)
6999 slot_num = DIV_ROUND_UP(pbn, pbn_div);
7001 if (stream->timing.flags.DSC != 1) {
7002 dm_conn_state->pbn = pbn;
7003 dm_conn_state->vcpi_slots = slot_num;
7005 ret = drm_dp_mst_atomic_enable_dsc(state, aconnector->mst_output_port,
7006 dm_conn_state->pbn, false);
7013 vcpi = drm_dp_mst_atomic_enable_dsc(state, aconnector->mst_output_port, pbn, true);
7017 dm_conn_state->pbn = pbn;
7018 dm_conn_state->vcpi_slots = vcpi;
7023 static int to_drm_connector_type(enum signal_type st)
7026 case SIGNAL_TYPE_HDMI_TYPE_A:
7027 return DRM_MODE_CONNECTOR_HDMIA;
7028 case SIGNAL_TYPE_EDP:
7029 return DRM_MODE_CONNECTOR_eDP;
7030 case SIGNAL_TYPE_LVDS:
7031 return DRM_MODE_CONNECTOR_LVDS;
7032 case SIGNAL_TYPE_RGB:
7033 return DRM_MODE_CONNECTOR_VGA;
7034 case SIGNAL_TYPE_DISPLAY_PORT:
7035 case SIGNAL_TYPE_DISPLAY_PORT_MST:
7036 return DRM_MODE_CONNECTOR_DisplayPort;
7037 case SIGNAL_TYPE_DVI_DUAL_LINK:
7038 case SIGNAL_TYPE_DVI_SINGLE_LINK:
7039 return DRM_MODE_CONNECTOR_DVID;
7040 case SIGNAL_TYPE_VIRTUAL:
7041 return DRM_MODE_CONNECTOR_VIRTUAL;
7044 return DRM_MODE_CONNECTOR_Unknown;
7048 static struct drm_encoder *amdgpu_dm_connector_to_encoder(struct drm_connector *connector)
7050 struct drm_encoder *encoder;
7052 /* There is only one encoder per connector */
7053 drm_connector_for_each_possible_encoder(connector, encoder)
7059 static void amdgpu_dm_get_native_mode(struct drm_connector *connector)
7061 struct drm_encoder *encoder;
7062 struct amdgpu_encoder *amdgpu_encoder;
7064 encoder = amdgpu_dm_connector_to_encoder(connector);
7066 if (encoder == NULL)
7069 amdgpu_encoder = to_amdgpu_encoder(encoder);
7071 amdgpu_encoder->native_mode.clock = 0;
7073 if (!list_empty(&connector->probed_modes)) {
7074 struct drm_display_mode *preferred_mode = NULL;
7076 list_for_each_entry(preferred_mode,
7077 &connector->probed_modes,
7079 if (preferred_mode->type & DRM_MODE_TYPE_PREFERRED)
7080 amdgpu_encoder->native_mode = *preferred_mode;
7088 static struct drm_display_mode *
7089 amdgpu_dm_create_common_mode(struct drm_encoder *encoder,
7091 int hdisplay, int vdisplay)
7093 struct drm_device *dev = encoder->dev;
7094 struct amdgpu_encoder *amdgpu_encoder = to_amdgpu_encoder(encoder);
7095 struct drm_display_mode *mode = NULL;
7096 struct drm_display_mode *native_mode = &amdgpu_encoder->native_mode;
7098 mode = drm_mode_duplicate(dev, native_mode);
7103 mode->hdisplay = hdisplay;
7104 mode->vdisplay = vdisplay;
7105 mode->type &= ~DRM_MODE_TYPE_PREFERRED;
7106 strscpy(mode->name, name, DRM_DISPLAY_MODE_LEN);
7112 static void amdgpu_dm_connector_add_common_modes(struct drm_encoder *encoder,
7113 struct drm_connector *connector)
7115 struct amdgpu_encoder *amdgpu_encoder = to_amdgpu_encoder(encoder);
7116 struct drm_display_mode *mode = NULL;
7117 struct drm_display_mode *native_mode = &amdgpu_encoder->native_mode;
7118 struct amdgpu_dm_connector *amdgpu_dm_connector =
7119 to_amdgpu_dm_connector(connector);
7123 char name[DRM_DISPLAY_MODE_LEN];
7126 } common_modes[] = {
7127 { "640x480", 640, 480},
7128 { "800x600", 800, 600},
7129 { "1024x768", 1024, 768},
7130 { "1280x720", 1280, 720},
7131 { "1280x800", 1280, 800},
7132 {"1280x1024", 1280, 1024},
7133 { "1440x900", 1440, 900},
7134 {"1680x1050", 1680, 1050},
7135 {"1600x1200", 1600, 1200},
7136 {"1920x1080", 1920, 1080},
7137 {"1920x1200", 1920, 1200}
7140 n = ARRAY_SIZE(common_modes);
7142 for (i = 0; i < n; i++) {
7143 struct drm_display_mode *curmode = NULL;
7144 bool mode_existed = false;
7146 if (common_modes[i].w > native_mode->hdisplay ||
7147 common_modes[i].h > native_mode->vdisplay ||
7148 (common_modes[i].w == native_mode->hdisplay &&
7149 common_modes[i].h == native_mode->vdisplay))
7152 list_for_each_entry(curmode, &connector->probed_modes, head) {
7153 if (common_modes[i].w == curmode->hdisplay &&
7154 common_modes[i].h == curmode->vdisplay) {
7155 mode_existed = true;
7163 mode = amdgpu_dm_create_common_mode(encoder,
7164 common_modes[i].name, common_modes[i].w,
7169 drm_mode_probed_add(connector, mode);
7170 amdgpu_dm_connector->num_modes++;
7174 static void amdgpu_set_panel_orientation(struct drm_connector *connector)
7176 struct drm_encoder *encoder;
7177 struct amdgpu_encoder *amdgpu_encoder;
7178 const struct drm_display_mode *native_mode;
7180 if (connector->connector_type != DRM_MODE_CONNECTOR_eDP &&
7181 connector->connector_type != DRM_MODE_CONNECTOR_LVDS)
7184 mutex_lock(&connector->dev->mode_config.mutex);
7185 amdgpu_dm_connector_get_modes(connector);
7186 mutex_unlock(&connector->dev->mode_config.mutex);
7188 encoder = amdgpu_dm_connector_to_encoder(connector);
7192 amdgpu_encoder = to_amdgpu_encoder(encoder);
7194 native_mode = &amdgpu_encoder->native_mode;
7195 if (native_mode->hdisplay == 0 || native_mode->vdisplay == 0)
7198 drm_connector_set_panel_orientation_with_quirk(connector,
7199 DRM_MODE_PANEL_ORIENTATION_UNKNOWN,
7200 native_mode->hdisplay,
7201 native_mode->vdisplay);
7204 static void amdgpu_dm_connector_ddc_get_modes(struct drm_connector *connector,
7207 struct amdgpu_dm_connector *amdgpu_dm_connector =
7208 to_amdgpu_dm_connector(connector);
7211 /* empty probed_modes */
7212 INIT_LIST_HEAD(&connector->probed_modes);
7213 amdgpu_dm_connector->num_modes =
7214 drm_add_edid_modes(connector, edid);
7216 /* sorting the probed modes before calling function
7217 * amdgpu_dm_get_native_mode() since EDID can have
7218 * more than one preferred mode. The modes that are
7219 * later in the probed mode list could be of higher
7220 * and preferred resolution. For example, 3840x2160
7221 * resolution in base EDID preferred timing and 4096x2160
7222 * preferred resolution in DID extension block later.
7224 drm_mode_sort(&connector->probed_modes);
7225 amdgpu_dm_get_native_mode(connector);
7227 /* Freesync capabilities are reset by calling
7228 * drm_add_edid_modes() and need to be
7231 amdgpu_dm_update_freesync_caps(connector, edid);
7233 amdgpu_dm_connector->num_modes = 0;
7237 static bool is_duplicate_mode(struct amdgpu_dm_connector *aconnector,
7238 struct drm_display_mode *mode)
7240 struct drm_display_mode *m;
7242 list_for_each_entry(m, &aconnector->base.probed_modes, head) {
7243 if (drm_mode_equal(m, mode))
7250 static uint add_fs_modes(struct amdgpu_dm_connector *aconnector)
7252 const struct drm_display_mode *m;
7253 struct drm_display_mode *new_mode;
7255 u32 new_modes_count = 0;
7257 /* Standard FPS values
7266 * 60 - Commonly used
7267 * 48,72,96,120 - Multiples of 24
7269 static const u32 common_rates[] = {
7270 23976, 24000, 25000, 29970, 30000,
7271 48000, 50000, 60000, 72000, 96000, 120000
7275 * Find mode with highest refresh rate with the same resolution
7276 * as the preferred mode. Some monitors report a preferred mode
7277 * with lower resolution than the highest refresh rate supported.
7280 m = get_highest_refresh_rate_mode(aconnector, true);
7284 for (i = 0; i < ARRAY_SIZE(common_rates); i++) {
7285 u64 target_vtotal, target_vtotal_diff;
7288 if (drm_mode_vrefresh(m) * 1000 < common_rates[i])
7291 if (common_rates[i] < aconnector->min_vfreq * 1000 ||
7292 common_rates[i] > aconnector->max_vfreq * 1000)
7295 num = (unsigned long long)m->clock * 1000 * 1000;
7296 den = common_rates[i] * (unsigned long long)m->htotal;
7297 target_vtotal = div_u64(num, den);
7298 target_vtotal_diff = target_vtotal - m->vtotal;
7300 /* Check for illegal modes */
7301 if (m->vsync_start + target_vtotal_diff < m->vdisplay ||
7302 m->vsync_end + target_vtotal_diff < m->vsync_start ||
7303 m->vtotal + target_vtotal_diff < m->vsync_end)
7306 new_mode = drm_mode_duplicate(aconnector->base.dev, m);
7310 new_mode->vtotal += (u16)target_vtotal_diff;
7311 new_mode->vsync_start += (u16)target_vtotal_diff;
7312 new_mode->vsync_end += (u16)target_vtotal_diff;
7313 new_mode->type &= ~DRM_MODE_TYPE_PREFERRED;
7314 new_mode->type |= DRM_MODE_TYPE_DRIVER;
7316 if (!is_duplicate_mode(aconnector, new_mode)) {
7317 drm_mode_probed_add(&aconnector->base, new_mode);
7318 new_modes_count += 1;
7320 drm_mode_destroy(aconnector->base.dev, new_mode);
7323 return new_modes_count;
7326 static void amdgpu_dm_connector_add_freesync_modes(struct drm_connector *connector,
7329 struct amdgpu_dm_connector *amdgpu_dm_connector =
7330 to_amdgpu_dm_connector(connector);
7335 if (amdgpu_dm_connector->max_vfreq - amdgpu_dm_connector->min_vfreq > 10)
7336 amdgpu_dm_connector->num_modes +=
7337 add_fs_modes(amdgpu_dm_connector);
7340 static int amdgpu_dm_connector_get_modes(struct drm_connector *connector)
7342 struct amdgpu_dm_connector *amdgpu_dm_connector =
7343 to_amdgpu_dm_connector(connector);
7344 struct drm_encoder *encoder;
7345 struct edid *edid = amdgpu_dm_connector->edid;
7346 struct dc_link_settings *verified_link_cap =
7347 &amdgpu_dm_connector->dc_link->verified_link_cap;
7348 const struct dc *dc = amdgpu_dm_connector->dc_link->dc;
7350 encoder = amdgpu_dm_connector_to_encoder(connector);
7352 if (!drm_edid_is_valid(edid)) {
7353 amdgpu_dm_connector->num_modes =
7354 drm_add_modes_noedid(connector, 640, 480);
7355 if (dc->link_srv->dp_get_encoding_format(verified_link_cap) == DP_128b_132b_ENCODING)
7356 amdgpu_dm_connector->num_modes +=
7357 drm_add_modes_noedid(connector, 1920, 1080);
7359 amdgpu_dm_connector_ddc_get_modes(connector, edid);
7360 amdgpu_dm_connector_add_common_modes(encoder, connector);
7361 amdgpu_dm_connector_add_freesync_modes(connector, edid);
7363 amdgpu_dm_fbc_init(connector);
7365 return amdgpu_dm_connector->num_modes;
7368 static const u32 supported_colorspaces =
7369 BIT(DRM_MODE_COLORIMETRY_BT709_YCC) |
7370 BIT(DRM_MODE_COLORIMETRY_OPRGB) |
7371 BIT(DRM_MODE_COLORIMETRY_BT2020_RGB) |
7372 BIT(DRM_MODE_COLORIMETRY_BT2020_YCC);
7374 void amdgpu_dm_connector_init_helper(struct amdgpu_display_manager *dm,
7375 struct amdgpu_dm_connector *aconnector,
7377 struct dc_link *link,
7380 struct amdgpu_device *adev = drm_to_adev(dm->ddev);
7383 * Some of the properties below require access to state, like bpc.
7384 * Allocate some default initial connector state with our reset helper.
7386 if (aconnector->base.funcs->reset)
7387 aconnector->base.funcs->reset(&aconnector->base);
7389 aconnector->connector_id = link_index;
7390 aconnector->bl_idx = -1;
7391 aconnector->dc_link = link;
7392 aconnector->base.interlace_allowed = false;
7393 aconnector->base.doublescan_allowed = false;
7394 aconnector->base.stereo_allowed = false;
7395 aconnector->base.dpms = DRM_MODE_DPMS_OFF;
7396 aconnector->hpd.hpd = AMDGPU_HPD_NONE; /* not used */
7397 aconnector->audio_inst = -1;
7398 aconnector->pack_sdp_v1_3 = false;
7399 aconnector->as_type = ADAPTIVE_SYNC_TYPE_NONE;
7400 memset(&aconnector->vsdb_info, 0, sizeof(aconnector->vsdb_info));
7401 mutex_init(&aconnector->hpd_lock);
7402 mutex_init(&aconnector->handle_mst_msg_ready);
7405 * configure support HPD hot plug connector_>polled default value is 0
7406 * which means HPD hot plug not supported
7408 switch (connector_type) {
7409 case DRM_MODE_CONNECTOR_HDMIA:
7410 aconnector->base.polled = DRM_CONNECTOR_POLL_HPD;
7411 aconnector->base.ycbcr_420_allowed =
7412 link->link_enc->features.hdmi_ycbcr420_supported ? true : false;
7414 case DRM_MODE_CONNECTOR_DisplayPort:
7415 aconnector->base.polled = DRM_CONNECTOR_POLL_HPD;
7416 link->link_enc = link_enc_cfg_get_link_enc(link);
7417 ASSERT(link->link_enc);
7419 aconnector->base.ycbcr_420_allowed =
7420 link->link_enc->features.dp_ycbcr420_supported ? true : false;
7422 case DRM_MODE_CONNECTOR_DVID:
7423 aconnector->base.polled = DRM_CONNECTOR_POLL_HPD;
7429 drm_object_attach_property(&aconnector->base.base,
7430 dm->ddev->mode_config.scaling_mode_property,
7431 DRM_MODE_SCALE_NONE);
7433 drm_object_attach_property(&aconnector->base.base,
7434 adev->mode_info.underscan_property,
7436 drm_object_attach_property(&aconnector->base.base,
7437 adev->mode_info.underscan_hborder_property,
7439 drm_object_attach_property(&aconnector->base.base,
7440 adev->mode_info.underscan_vborder_property,
7443 if (!aconnector->mst_root)
7444 drm_connector_attach_max_bpc_property(&aconnector->base, 8, 16);
7446 aconnector->base.state->max_bpc = 16;
7447 aconnector->base.state->max_requested_bpc = aconnector->base.state->max_bpc;
7449 if (connector_type == DRM_MODE_CONNECTOR_eDP &&
7450 (dc_is_dmcu_initialized(adev->dm.dc) || adev->dm.dc->ctx->dmub_srv)) {
7451 drm_object_attach_property(&aconnector->base.base,
7452 adev->mode_info.abm_level_property, 0);
7455 if (connector_type == DRM_MODE_CONNECTOR_HDMIA) {
7456 /* Content Type is currently only implemented for HDMI. */
7457 drm_connector_attach_content_type_property(&aconnector->base);
7460 if (connector_type == DRM_MODE_CONNECTOR_HDMIA) {
7461 if (!drm_mode_create_hdmi_colorspace_property(&aconnector->base, supported_colorspaces))
7462 drm_connector_attach_colorspace_property(&aconnector->base);
7463 } else if ((connector_type == DRM_MODE_CONNECTOR_DisplayPort && !aconnector->mst_root) ||
7464 connector_type == DRM_MODE_CONNECTOR_eDP) {
7465 if (!drm_mode_create_dp_colorspace_property(&aconnector->base, supported_colorspaces))
7466 drm_connector_attach_colorspace_property(&aconnector->base);
7469 if (connector_type == DRM_MODE_CONNECTOR_HDMIA ||
7470 connector_type == DRM_MODE_CONNECTOR_DisplayPort ||
7471 connector_type == DRM_MODE_CONNECTOR_eDP) {
7472 drm_connector_attach_hdr_output_metadata_property(&aconnector->base);
7474 if (!aconnector->mst_root)
7475 drm_connector_attach_vrr_capable_property(&aconnector->base);
7477 if (adev->dm.hdcp_workqueue)
7478 drm_connector_attach_content_protection_property(&aconnector->base, true);
7482 static int amdgpu_dm_i2c_xfer(struct i2c_adapter *i2c_adap,
7483 struct i2c_msg *msgs, int num)
7485 struct amdgpu_i2c_adapter *i2c = i2c_get_adapdata(i2c_adap);
7486 struct ddc_service *ddc_service = i2c->ddc_service;
7487 struct i2c_command cmd;
7491 if (!ddc_service->ddc_pin || !ddc_service->ddc_pin->hw_info.hw_supported)
7494 cmd.payloads = kcalloc(num, sizeof(struct i2c_payload), GFP_KERNEL);
7499 cmd.number_of_payloads = num;
7500 cmd.engine = I2C_COMMAND_ENGINE_DEFAULT;
7503 for (i = 0; i < num; i++) {
7504 cmd.payloads[i].write = !(msgs[i].flags & I2C_M_RD);
7505 cmd.payloads[i].address = msgs[i].addr;
7506 cmd.payloads[i].length = msgs[i].len;
7507 cmd.payloads[i].data = msgs[i].buf;
7511 ddc_service->ctx->dc,
7512 ddc_service->link->link_index,
7516 kfree(cmd.payloads);
7520 static u32 amdgpu_dm_i2c_func(struct i2c_adapter *adap)
7522 return I2C_FUNC_I2C | I2C_FUNC_SMBUS_EMUL;
7525 static const struct i2c_algorithm amdgpu_dm_i2c_algo = {
7526 .master_xfer = amdgpu_dm_i2c_xfer,
7527 .functionality = amdgpu_dm_i2c_func,
7530 static struct amdgpu_i2c_adapter *
7531 create_i2c(struct ddc_service *ddc_service,
7535 struct amdgpu_device *adev = ddc_service->ctx->driver_context;
7536 struct amdgpu_i2c_adapter *i2c;
7538 i2c = kzalloc(sizeof(struct amdgpu_i2c_adapter), GFP_KERNEL);
7541 i2c->base.owner = THIS_MODULE;
7542 i2c->base.class = I2C_CLASS_DDC;
7543 i2c->base.dev.parent = &adev->pdev->dev;
7544 i2c->base.algo = &amdgpu_dm_i2c_algo;
7545 snprintf(i2c->base.name, sizeof(i2c->base.name), "AMDGPU DM i2c hw bus %d", link_index);
7546 i2c_set_adapdata(&i2c->base, i2c);
7547 i2c->ddc_service = ddc_service;
7554 * Note: this function assumes that dc_link_detect() was called for the
7555 * dc_link which will be represented by this aconnector.
7557 static int amdgpu_dm_connector_init(struct amdgpu_display_manager *dm,
7558 struct amdgpu_dm_connector *aconnector,
7560 struct amdgpu_encoder *aencoder)
7564 struct dc *dc = dm->dc;
7565 struct dc_link *link = dc_get_link_at_index(dc, link_index);
7566 struct amdgpu_i2c_adapter *i2c;
7568 link->priv = aconnector;
7571 i2c = create_i2c(link->ddc, link->link_index, &res);
7573 DRM_ERROR("Failed to create i2c adapter data\n");
7577 aconnector->i2c = i2c;
7578 res = i2c_add_adapter(&i2c->base);
7581 DRM_ERROR("Failed to register hw i2c %d\n", link->link_index);
7585 connector_type = to_drm_connector_type(link->connector_signal);
7587 res = drm_connector_init_with_ddc(
7590 &amdgpu_dm_connector_funcs,
7595 DRM_ERROR("connector_init failed\n");
7596 aconnector->connector_id = -1;
7600 drm_connector_helper_add(
7602 &amdgpu_dm_connector_helper_funcs);
7604 amdgpu_dm_connector_init_helper(
7611 drm_connector_attach_encoder(
7612 &aconnector->base, &aencoder->base);
7614 if (connector_type == DRM_MODE_CONNECTOR_DisplayPort
7615 || connector_type == DRM_MODE_CONNECTOR_eDP)
7616 amdgpu_dm_initialize_dp_connector(dm, aconnector, link->link_index);
7621 aconnector->i2c = NULL;
7626 int amdgpu_dm_get_encoder_crtc_mask(struct amdgpu_device *adev)
7628 switch (adev->mode_info.num_crtc) {
7645 static int amdgpu_dm_encoder_init(struct drm_device *dev,
7646 struct amdgpu_encoder *aencoder,
7647 uint32_t link_index)
7649 struct amdgpu_device *adev = drm_to_adev(dev);
7651 int res = drm_encoder_init(dev,
7653 &amdgpu_dm_encoder_funcs,
7654 DRM_MODE_ENCODER_TMDS,
7657 aencoder->base.possible_crtcs = amdgpu_dm_get_encoder_crtc_mask(adev);
7660 aencoder->encoder_id = link_index;
7662 aencoder->encoder_id = -1;
7664 drm_encoder_helper_add(&aencoder->base, &amdgpu_dm_encoder_helper_funcs);
7669 static void manage_dm_interrupts(struct amdgpu_device *adev,
7670 struct amdgpu_crtc *acrtc,
7674 * We have no guarantee that the frontend index maps to the same
7675 * backend index - some even map to more than one.
7677 * TODO: Use a different interrupt or check DC itself for the mapping.
7680 amdgpu_display_crtc_idx_to_irq_type(
7685 drm_crtc_vblank_on(&acrtc->base);
7688 &adev->pageflip_irq,
7690 #if defined(CONFIG_DRM_AMD_SECURE_DISPLAY)
7697 #if defined(CONFIG_DRM_AMD_SECURE_DISPLAY)
7705 &adev->pageflip_irq,
7707 drm_crtc_vblank_off(&acrtc->base);
7711 static void dm_update_pflip_irq_state(struct amdgpu_device *adev,
7712 struct amdgpu_crtc *acrtc)
7715 amdgpu_display_crtc_idx_to_irq_type(adev, acrtc->crtc_id);
7718 * This reads the current state for the IRQ and force reapplies
7719 * the setting to hardware.
7721 amdgpu_irq_update(adev, &adev->pageflip_irq, irq_type);
7725 is_scaling_state_different(const struct dm_connector_state *dm_state,
7726 const struct dm_connector_state *old_dm_state)
7728 if (dm_state->scaling != old_dm_state->scaling)
7730 if (!dm_state->underscan_enable && old_dm_state->underscan_enable) {
7731 if (old_dm_state->underscan_hborder != 0 && old_dm_state->underscan_vborder != 0)
7733 } else if (dm_state->underscan_enable && !old_dm_state->underscan_enable) {
7734 if (dm_state->underscan_hborder != 0 && dm_state->underscan_vborder != 0)
7736 } else if (dm_state->underscan_hborder != old_dm_state->underscan_hborder ||
7737 dm_state->underscan_vborder != old_dm_state->underscan_vborder)
7742 static bool is_content_protection_different(struct drm_crtc_state *new_crtc_state,
7743 struct drm_crtc_state *old_crtc_state,
7744 struct drm_connector_state *new_conn_state,
7745 struct drm_connector_state *old_conn_state,
7746 const struct drm_connector *connector,
7747 struct hdcp_workqueue *hdcp_w)
7749 struct amdgpu_dm_connector *aconnector = to_amdgpu_dm_connector(connector);
7750 struct dm_connector_state *dm_con_state = to_dm_connector_state(connector->state);
7752 pr_debug("[HDCP_DM] connector->index: %x connect_status: %x dpms: %x\n",
7753 connector->index, connector->status, connector->dpms);
7754 pr_debug("[HDCP_DM] state protection old: %x new: %x\n",
7755 old_conn_state->content_protection, new_conn_state->content_protection);
7758 pr_debug("[HDCP_DM] old crtc en: %x a: %x m: %x a-chg: %x c-chg: %x\n",
7759 old_crtc_state->enable,
7760 old_crtc_state->active,
7761 old_crtc_state->mode_changed,
7762 old_crtc_state->active_changed,
7763 old_crtc_state->connectors_changed);
7766 pr_debug("[HDCP_DM] NEW crtc en: %x a: %x m: %x a-chg: %x c-chg: %x\n",
7767 new_crtc_state->enable,
7768 new_crtc_state->active,
7769 new_crtc_state->mode_changed,
7770 new_crtc_state->active_changed,
7771 new_crtc_state->connectors_changed);
7773 /* hdcp content type change */
7774 if (old_conn_state->hdcp_content_type != new_conn_state->hdcp_content_type &&
7775 new_conn_state->content_protection != DRM_MODE_CONTENT_PROTECTION_UNDESIRED) {
7776 new_conn_state->content_protection = DRM_MODE_CONTENT_PROTECTION_DESIRED;
7777 pr_debug("[HDCP_DM] Type0/1 change %s :true\n", __func__);
7781 /* CP is being re enabled, ignore this */
7782 if (old_conn_state->content_protection == DRM_MODE_CONTENT_PROTECTION_ENABLED &&
7783 new_conn_state->content_protection == DRM_MODE_CONTENT_PROTECTION_DESIRED) {
7784 if (new_crtc_state && new_crtc_state->mode_changed) {
7785 new_conn_state->content_protection = DRM_MODE_CONTENT_PROTECTION_DESIRED;
7786 pr_debug("[HDCP_DM] ENABLED->DESIRED & mode_changed %s :true\n", __func__);
7789 new_conn_state->content_protection = DRM_MODE_CONTENT_PROTECTION_ENABLED;
7790 pr_debug("[HDCP_DM] ENABLED -> DESIRED %s :false\n", __func__);
7794 /* S3 resume case, since old state will always be 0 (UNDESIRED) and the restored state will be ENABLED
7796 * Handles: UNDESIRED -> ENABLED
7798 if (old_conn_state->content_protection == DRM_MODE_CONTENT_PROTECTION_UNDESIRED &&
7799 new_conn_state->content_protection == DRM_MODE_CONTENT_PROTECTION_ENABLED)
7800 new_conn_state->content_protection = DRM_MODE_CONTENT_PROTECTION_DESIRED;
7802 /* Stream removed and re-enabled
7804 * Can sometimes overlap with the HPD case,
7805 * thus set update_hdcp to false to avoid
7806 * setting HDCP multiple times.
7808 * Handles: DESIRED -> DESIRED (Special case)
7810 if (!(old_conn_state->crtc && old_conn_state->crtc->enabled) &&
7811 new_conn_state->crtc && new_conn_state->crtc->enabled &&
7812 connector->state->content_protection == DRM_MODE_CONTENT_PROTECTION_DESIRED) {
7813 dm_con_state->update_hdcp = false;
7814 pr_debug("[HDCP_DM] DESIRED->DESIRED (Stream removed and re-enabled) %s :true\n",
7819 /* Hot-plug, headless s3, dpms
7821 * Only start HDCP if the display is connected/enabled.
7822 * update_hdcp flag will be set to false until the next
7825 * Handles: DESIRED -> DESIRED (Special case)
7827 if (dm_con_state->update_hdcp &&
7828 new_conn_state->content_protection == DRM_MODE_CONTENT_PROTECTION_DESIRED &&
7829 connector->dpms == DRM_MODE_DPMS_ON && aconnector->dc_sink != NULL) {
7830 dm_con_state->update_hdcp = false;
7831 pr_debug("[HDCP_DM] DESIRED->DESIRED (Hot-plug, headless s3, dpms) %s :true\n",
7836 if (old_conn_state->content_protection == new_conn_state->content_protection) {
7837 if (new_conn_state->content_protection >= DRM_MODE_CONTENT_PROTECTION_DESIRED) {
7838 if (new_crtc_state && new_crtc_state->mode_changed) {
7839 pr_debug("[HDCP_DM] DESIRED->DESIRED or ENABLE->ENABLE mode_change %s :true\n",
7843 pr_debug("[HDCP_DM] DESIRED->DESIRED & ENABLE->ENABLE %s :false\n",
7848 pr_debug("[HDCP_DM] UNDESIRED->UNDESIRED %s :false\n", __func__);
7852 if (new_conn_state->content_protection != DRM_MODE_CONTENT_PROTECTION_ENABLED) {
7853 pr_debug("[HDCP_DM] UNDESIRED->DESIRED or DESIRED->UNDESIRED or ENABLED->UNDESIRED %s :true\n",
7858 pr_debug("[HDCP_DM] DESIRED->ENABLED %s :false\n", __func__);
7862 static void remove_stream(struct amdgpu_device *adev,
7863 struct amdgpu_crtc *acrtc,
7864 struct dc_stream_state *stream)
7866 /* this is the update mode case */
7868 acrtc->otg_inst = -1;
7869 acrtc->enabled = false;
7872 static void prepare_flip_isr(struct amdgpu_crtc *acrtc)
7875 assert_spin_locked(&acrtc->base.dev->event_lock);
7876 WARN_ON(acrtc->event);
7878 acrtc->event = acrtc->base.state->event;
7880 /* Set the flip status */
7881 acrtc->pflip_status = AMDGPU_FLIP_SUBMITTED;
7883 /* Mark this event as consumed */
7884 acrtc->base.state->event = NULL;
7886 drm_dbg_state(acrtc->base.dev,
7887 "crtc:%d, pflip_stat:AMDGPU_FLIP_SUBMITTED\n",
7891 static void update_freesync_state_on_stream(
7892 struct amdgpu_display_manager *dm,
7893 struct dm_crtc_state *new_crtc_state,
7894 struct dc_stream_state *new_stream,
7895 struct dc_plane_state *surface,
7896 u32 flip_timestamp_in_us)
7898 struct mod_vrr_params vrr_params;
7899 struct dc_info_packet vrr_infopacket = {0};
7900 struct amdgpu_device *adev = dm->adev;
7901 struct amdgpu_crtc *acrtc = to_amdgpu_crtc(new_crtc_state->base.crtc);
7902 unsigned long flags;
7903 bool pack_sdp_v1_3 = false;
7904 struct amdgpu_dm_connector *aconn;
7905 enum vrr_packet_type packet_type = PACKET_TYPE_VRR;
7911 * TODO: Determine why min/max totals and vrefresh can be 0 here.
7912 * For now it's sufficient to just guard against these conditions.
7915 if (!new_stream->timing.h_total || !new_stream->timing.v_total)
7918 spin_lock_irqsave(&adev_to_drm(adev)->event_lock, flags);
7919 vrr_params = acrtc->dm_irq_params.vrr_params;
7922 mod_freesync_handle_preflip(
7923 dm->freesync_module,
7926 flip_timestamp_in_us,
7929 if (adev->family < AMDGPU_FAMILY_AI &&
7930 amdgpu_dm_crtc_vrr_active(new_crtc_state)) {
7931 mod_freesync_handle_v_update(dm->freesync_module,
7932 new_stream, &vrr_params);
7934 /* Need to call this before the frame ends. */
7935 dc_stream_adjust_vmin_vmax(dm->dc,
7936 new_crtc_state->stream,
7937 &vrr_params.adjust);
7941 aconn = (struct amdgpu_dm_connector *)new_stream->dm_stream_context;
7943 if (aconn && (aconn->as_type == FREESYNC_TYPE_PCON_IN_WHITELIST || aconn->vsdb_info.replay_mode)) {
7944 pack_sdp_v1_3 = aconn->pack_sdp_v1_3;
7946 if (aconn->vsdb_info.amd_vsdb_version == 1)
7947 packet_type = PACKET_TYPE_FS_V1;
7948 else if (aconn->vsdb_info.amd_vsdb_version == 2)
7949 packet_type = PACKET_TYPE_FS_V2;
7950 else if (aconn->vsdb_info.amd_vsdb_version == 3)
7951 packet_type = PACKET_TYPE_FS_V3;
7953 mod_build_adaptive_sync_infopacket(new_stream, aconn->as_type, NULL,
7954 &new_stream->adaptive_sync_infopacket);
7957 mod_freesync_build_vrr_infopacket(
7958 dm->freesync_module,
7962 TRANSFER_FUNC_UNKNOWN,
7966 new_crtc_state->freesync_vrr_info_changed |=
7967 (memcmp(&new_crtc_state->vrr_infopacket,
7969 sizeof(vrr_infopacket)) != 0);
7971 acrtc->dm_irq_params.vrr_params = vrr_params;
7972 new_crtc_state->vrr_infopacket = vrr_infopacket;
7974 new_stream->vrr_infopacket = vrr_infopacket;
7975 new_stream->allow_freesync = mod_freesync_get_freesync_enabled(&vrr_params);
7977 if (new_crtc_state->freesync_vrr_info_changed)
7978 DRM_DEBUG_KMS("VRR packet update: crtc=%u enabled=%d state=%d",
7979 new_crtc_state->base.crtc->base.id,
7980 (int)new_crtc_state->base.vrr_enabled,
7981 (int)vrr_params.state);
7983 spin_unlock_irqrestore(&adev_to_drm(adev)->event_lock, flags);
7986 static void update_stream_irq_parameters(
7987 struct amdgpu_display_manager *dm,
7988 struct dm_crtc_state *new_crtc_state)
7990 struct dc_stream_state *new_stream = new_crtc_state->stream;
7991 struct mod_vrr_params vrr_params;
7992 struct mod_freesync_config config = new_crtc_state->freesync_config;
7993 struct amdgpu_device *adev = dm->adev;
7994 struct amdgpu_crtc *acrtc = to_amdgpu_crtc(new_crtc_state->base.crtc);
7995 unsigned long flags;
8001 * TODO: Determine why min/max totals and vrefresh can be 0 here.
8002 * For now it's sufficient to just guard against these conditions.
8004 if (!new_stream->timing.h_total || !new_stream->timing.v_total)
8007 spin_lock_irqsave(&adev_to_drm(adev)->event_lock, flags);
8008 vrr_params = acrtc->dm_irq_params.vrr_params;
8010 if (new_crtc_state->vrr_supported &&
8011 config.min_refresh_in_uhz &&
8012 config.max_refresh_in_uhz) {
8014 * if freesync compatible mode was set, config.state will be set
8017 if (config.state == VRR_STATE_ACTIVE_FIXED && config.fixed_refresh_in_uhz &&
8018 (!drm_atomic_crtc_needs_modeset(&new_crtc_state->base) ||
8019 new_crtc_state->freesync_config.state == VRR_STATE_ACTIVE_FIXED)) {
8020 vrr_params.max_refresh_in_uhz = config.max_refresh_in_uhz;
8021 vrr_params.min_refresh_in_uhz = config.min_refresh_in_uhz;
8022 vrr_params.fixed_refresh_in_uhz = config.fixed_refresh_in_uhz;
8023 vrr_params.state = VRR_STATE_ACTIVE_FIXED;
8025 config.state = new_crtc_state->base.vrr_enabled ?
8026 VRR_STATE_ACTIVE_VARIABLE :
8030 config.state = VRR_STATE_UNSUPPORTED;
8033 mod_freesync_build_vrr_params(dm->freesync_module,
8035 &config, &vrr_params);
8037 new_crtc_state->freesync_config = config;
8038 /* Copy state for access from DM IRQ handler */
8039 acrtc->dm_irq_params.freesync_config = config;
8040 acrtc->dm_irq_params.active_planes = new_crtc_state->active_planes;
8041 acrtc->dm_irq_params.vrr_params = vrr_params;
8042 spin_unlock_irqrestore(&adev_to_drm(adev)->event_lock, flags);
8045 static void amdgpu_dm_handle_vrr_transition(struct dm_crtc_state *old_state,
8046 struct dm_crtc_state *new_state)
8048 bool old_vrr_active = amdgpu_dm_crtc_vrr_active(old_state);
8049 bool new_vrr_active = amdgpu_dm_crtc_vrr_active(new_state);
8051 if (!old_vrr_active && new_vrr_active) {
8052 /* Transition VRR inactive -> active:
8053 * While VRR is active, we must not disable vblank irq, as a
8054 * reenable after disable would compute bogus vblank/pflip
8055 * timestamps if it likely happened inside display front-porch.
8057 * We also need vupdate irq for the actual core vblank handling
8060 WARN_ON(amdgpu_dm_crtc_set_vupdate_irq(new_state->base.crtc, true) != 0);
8061 WARN_ON(drm_crtc_vblank_get(new_state->base.crtc) != 0);
8062 DRM_DEBUG_DRIVER("%s: crtc=%u VRR off->on: Get vblank ref\n",
8063 __func__, new_state->base.crtc->base.id);
8064 } else if (old_vrr_active && !new_vrr_active) {
8065 /* Transition VRR active -> inactive:
8066 * Allow vblank irq disable again for fixed refresh rate.
8068 WARN_ON(amdgpu_dm_crtc_set_vupdate_irq(new_state->base.crtc, false) != 0);
8069 drm_crtc_vblank_put(new_state->base.crtc);
8070 DRM_DEBUG_DRIVER("%s: crtc=%u VRR on->off: Drop vblank ref\n",
8071 __func__, new_state->base.crtc->base.id);
8075 static void amdgpu_dm_commit_cursors(struct drm_atomic_state *state)
8077 struct drm_plane *plane;
8078 struct drm_plane_state *old_plane_state;
8082 * TODO: Make this per-stream so we don't issue redundant updates for
8083 * commits with multiple streams.
8085 for_each_old_plane_in_state(state, plane, old_plane_state, i)
8086 if (plane->type == DRM_PLANE_TYPE_CURSOR)
8087 amdgpu_dm_plane_handle_cursor_update(plane, old_plane_state);
8090 static inline uint32_t get_mem_type(struct drm_framebuffer *fb)
8092 struct amdgpu_bo *abo = gem_to_amdgpu_bo(fb->obj[0]);
8094 return abo->tbo.resource ? abo->tbo.resource->mem_type : 0;
8097 static void amdgpu_dm_commit_planes(struct drm_atomic_state *state,
8098 struct drm_device *dev,
8099 struct amdgpu_display_manager *dm,
8100 struct drm_crtc *pcrtc,
8101 bool wait_for_vblank)
8104 u64 timestamp_ns = ktime_get_ns();
8105 struct drm_plane *plane;
8106 struct drm_plane_state *old_plane_state, *new_plane_state;
8107 struct amdgpu_crtc *acrtc_attach = to_amdgpu_crtc(pcrtc);
8108 struct drm_crtc_state *new_pcrtc_state =
8109 drm_atomic_get_new_crtc_state(state, pcrtc);
8110 struct dm_crtc_state *acrtc_state = to_dm_crtc_state(new_pcrtc_state);
8111 struct dm_crtc_state *dm_old_crtc_state =
8112 to_dm_crtc_state(drm_atomic_get_old_crtc_state(state, pcrtc));
8113 int planes_count = 0, vpos, hpos;
8114 unsigned long flags;
8115 u32 target_vblank, last_flip_vblank;
8116 bool vrr_active = amdgpu_dm_crtc_vrr_active(acrtc_state);
8117 bool cursor_update = false;
8118 bool pflip_present = false;
8119 bool dirty_rects_changed = false;
8121 struct dc_surface_update surface_updates[MAX_SURFACES];
8122 struct dc_plane_info plane_infos[MAX_SURFACES];
8123 struct dc_scaling_info scaling_infos[MAX_SURFACES];
8124 struct dc_flip_addrs flip_addrs[MAX_SURFACES];
8125 struct dc_stream_update stream_update;
8128 bundle = kzalloc(sizeof(*bundle), GFP_KERNEL);
8131 drm_err(dev, "Failed to allocate update bundle\n");
8136 * Disable the cursor first if we're disabling all the planes.
8137 * It'll remain on the screen after the planes are re-enabled
8140 if (acrtc_state->active_planes == 0)
8141 amdgpu_dm_commit_cursors(state);
8143 /* update planes when needed */
8144 for_each_oldnew_plane_in_state(state, plane, old_plane_state, new_plane_state, i) {
8145 struct drm_crtc *crtc = new_plane_state->crtc;
8146 struct drm_crtc_state *new_crtc_state;
8147 struct drm_framebuffer *fb = new_plane_state->fb;
8148 struct amdgpu_framebuffer *afb = (struct amdgpu_framebuffer *)fb;
8149 bool plane_needs_flip;
8150 struct dc_plane_state *dc_plane;
8151 struct dm_plane_state *dm_new_plane_state = to_dm_plane_state(new_plane_state);
8153 /* Cursor plane is handled after stream updates */
8154 if (plane->type == DRM_PLANE_TYPE_CURSOR) {
8155 if ((fb && crtc == pcrtc) ||
8156 (old_plane_state->fb && old_plane_state->crtc == pcrtc))
8157 cursor_update = true;
8162 if (!fb || !crtc || pcrtc != crtc)
8165 new_crtc_state = drm_atomic_get_new_crtc_state(state, crtc);
8166 if (!new_crtc_state->active)
8169 dc_plane = dm_new_plane_state->dc_state;
8173 bundle->surface_updates[planes_count].surface = dc_plane;
8174 if (new_pcrtc_state->color_mgmt_changed) {
8175 bundle->surface_updates[planes_count].gamma = dc_plane->gamma_correction;
8176 bundle->surface_updates[planes_count].in_transfer_func = dc_plane->in_transfer_func;
8177 bundle->surface_updates[planes_count].gamut_remap_matrix = &dc_plane->gamut_remap_matrix;
8180 amdgpu_dm_plane_fill_dc_scaling_info(dm->adev, new_plane_state,
8181 &bundle->scaling_infos[planes_count]);
8183 bundle->surface_updates[planes_count].scaling_info =
8184 &bundle->scaling_infos[planes_count];
8186 plane_needs_flip = old_plane_state->fb && new_plane_state->fb;
8188 pflip_present = pflip_present || plane_needs_flip;
8190 if (!plane_needs_flip) {
8195 fill_dc_plane_info_and_addr(
8196 dm->adev, new_plane_state,
8198 &bundle->plane_infos[planes_count],
8199 &bundle->flip_addrs[planes_count].address,
8200 afb->tmz_surface, false);
8202 drm_dbg_state(state->dev, "plane: id=%d dcc_en=%d\n",
8203 new_plane_state->plane->index,
8204 bundle->plane_infos[planes_count].dcc.enable);
8206 bundle->surface_updates[planes_count].plane_info =
8207 &bundle->plane_infos[planes_count];
8209 if (acrtc_state->stream->link->psr_settings.psr_feature_enabled ||
8210 acrtc_state->stream->link->replay_settings.replay_feature_enabled) {
8211 fill_dc_dirty_rects(plane, old_plane_state,
8212 new_plane_state, new_crtc_state,
8213 &bundle->flip_addrs[planes_count],
8214 &dirty_rects_changed);
8217 * If the dirty regions changed, PSR-SU need to be disabled temporarily
8218 * and enabled it again after dirty regions are stable to avoid video glitch.
8219 * PSR-SU will be enabled in vblank_control_worker() if user pause the video
8220 * during the PSR-SU was disabled.
8222 if (acrtc_state->stream->link->psr_settings.psr_version >= DC_PSR_VERSION_SU_1 &&
8223 acrtc_attach->dm_irq_params.allow_psr_entry &&
8224 #ifdef CONFIG_DRM_AMD_SECURE_DISPLAY
8225 !amdgpu_dm_crc_window_is_activated(acrtc_state->base.crtc) &&
8227 dirty_rects_changed) {
8228 mutex_lock(&dm->dc_lock);
8229 acrtc_state->stream->link->psr_settings.psr_dirty_rects_change_timestamp_ns =
8231 if (acrtc_state->stream->link->psr_settings.psr_allow_active)
8232 amdgpu_dm_psr_disable(acrtc_state->stream);
8233 mutex_unlock(&dm->dc_lock);
8238 * Only allow immediate flips for fast updates that don't
8239 * change memory domain, FB pitch, DCC state, rotation or
8242 * dm_crtc_helper_atomic_check() only accepts async flips with
8245 if (crtc->state->async_flip &&
8246 (acrtc_state->update_type != UPDATE_TYPE_FAST ||
8247 get_mem_type(old_plane_state->fb) != get_mem_type(fb)))
8248 drm_warn_once(state->dev,
8249 "[PLANE:%d:%s] async flip with non-fast update\n",
8250 plane->base.id, plane->name);
8252 bundle->flip_addrs[planes_count].flip_immediate =
8253 crtc->state->async_flip &&
8254 acrtc_state->update_type == UPDATE_TYPE_FAST &&
8255 get_mem_type(old_plane_state->fb) == get_mem_type(fb);
8257 timestamp_ns = ktime_get_ns();
8258 bundle->flip_addrs[planes_count].flip_timestamp_in_us = div_u64(timestamp_ns, 1000);
8259 bundle->surface_updates[planes_count].flip_addr = &bundle->flip_addrs[planes_count];
8260 bundle->surface_updates[planes_count].surface = dc_plane;
8262 if (!bundle->surface_updates[planes_count].surface) {
8263 DRM_ERROR("No surface for CRTC: id=%d\n",
8264 acrtc_attach->crtc_id);
8268 if (plane == pcrtc->primary)
8269 update_freesync_state_on_stream(
8272 acrtc_state->stream,
8274 bundle->flip_addrs[planes_count].flip_timestamp_in_us);
8276 drm_dbg_state(state->dev, "%s Flipping to hi: 0x%x, low: 0x%x\n",
8278 bundle->flip_addrs[planes_count].address.grph.addr.high_part,
8279 bundle->flip_addrs[planes_count].address.grph.addr.low_part);
8285 if (pflip_present) {
8287 /* Use old throttling in non-vrr fixed refresh rate mode
8288 * to keep flip scheduling based on target vblank counts
8289 * working in a backwards compatible way, e.g., for
8290 * clients using the GLX_OML_sync_control extension or
8291 * DRI3/Present extension with defined target_msc.
8293 last_flip_vblank = amdgpu_get_vblank_counter_kms(pcrtc);
8295 /* For variable refresh rate mode only:
8296 * Get vblank of last completed flip to avoid > 1 vrr
8297 * flips per video frame by use of throttling, but allow
8298 * flip programming anywhere in the possibly large
8299 * variable vrr vblank interval for fine-grained flip
8300 * timing control and more opportunity to avoid stutter
8301 * on late submission of flips.
8303 spin_lock_irqsave(&pcrtc->dev->event_lock, flags);
8304 last_flip_vblank = acrtc_attach->dm_irq_params.last_flip_vblank;
8305 spin_unlock_irqrestore(&pcrtc->dev->event_lock, flags);
8308 target_vblank = last_flip_vblank + wait_for_vblank;
8311 * Wait until we're out of the vertical blank period before the one
8312 * targeted by the flip
8314 while ((acrtc_attach->enabled &&
8315 (amdgpu_display_get_crtc_scanoutpos(dm->ddev, acrtc_attach->crtc_id,
8316 0, &vpos, &hpos, NULL,
8317 NULL, &pcrtc->hwmode)
8318 & (DRM_SCANOUTPOS_VALID | DRM_SCANOUTPOS_IN_VBLANK)) ==
8319 (DRM_SCANOUTPOS_VALID | DRM_SCANOUTPOS_IN_VBLANK) &&
8320 (int)(target_vblank -
8321 amdgpu_get_vblank_counter_kms(pcrtc)) > 0)) {
8322 usleep_range(1000, 1100);
8326 * Prepare the flip event for the pageflip interrupt to handle.
8328 * This only works in the case where we've already turned on the
8329 * appropriate hardware blocks (eg. HUBP) so in the transition case
8330 * from 0 -> n planes we have to skip a hardware generated event
8331 * and rely on sending it from software.
8333 if (acrtc_attach->base.state->event &&
8334 acrtc_state->active_planes > 0) {
8335 drm_crtc_vblank_get(pcrtc);
8337 spin_lock_irqsave(&pcrtc->dev->event_lock, flags);
8339 WARN_ON(acrtc_attach->pflip_status != AMDGPU_FLIP_NONE);
8340 prepare_flip_isr(acrtc_attach);
8342 spin_unlock_irqrestore(&pcrtc->dev->event_lock, flags);
8345 if (acrtc_state->stream) {
8346 if (acrtc_state->freesync_vrr_info_changed)
8347 bundle->stream_update.vrr_infopacket =
8348 &acrtc_state->stream->vrr_infopacket;
8350 } else if (cursor_update && acrtc_state->active_planes > 0 &&
8351 acrtc_attach->base.state->event) {
8352 drm_crtc_vblank_get(pcrtc);
8354 spin_lock_irqsave(&pcrtc->dev->event_lock, flags);
8356 acrtc_attach->event = acrtc_attach->base.state->event;
8357 acrtc_attach->base.state->event = NULL;
8359 spin_unlock_irqrestore(&pcrtc->dev->event_lock, flags);
8362 /* Update the planes if changed or disable if we don't have any. */
8363 if ((planes_count || acrtc_state->active_planes == 0) &&
8364 acrtc_state->stream) {
8366 * If PSR or idle optimizations are enabled then flush out
8367 * any pending work before hardware programming.
8369 if (dm->vblank_control_workqueue)
8370 flush_workqueue(dm->vblank_control_workqueue);
8372 bundle->stream_update.stream = acrtc_state->stream;
8373 if (new_pcrtc_state->mode_changed) {
8374 bundle->stream_update.src = acrtc_state->stream->src;
8375 bundle->stream_update.dst = acrtc_state->stream->dst;
8378 if (new_pcrtc_state->color_mgmt_changed) {
8380 * TODO: This isn't fully correct since we've actually
8381 * already modified the stream in place.
8383 bundle->stream_update.gamut_remap =
8384 &acrtc_state->stream->gamut_remap_matrix;
8385 bundle->stream_update.output_csc_transform =
8386 &acrtc_state->stream->csc_color_matrix;
8387 bundle->stream_update.out_transfer_func =
8388 acrtc_state->stream->out_transfer_func;
8391 acrtc_state->stream->abm_level = acrtc_state->abm_level;
8392 if (acrtc_state->abm_level != dm_old_crtc_state->abm_level)
8393 bundle->stream_update.abm_level = &acrtc_state->abm_level;
8395 mutex_lock(&dm->dc_lock);
8396 if ((acrtc_state->update_type > UPDATE_TYPE_FAST) &&
8397 acrtc_state->stream->link->psr_settings.psr_allow_active)
8398 amdgpu_dm_psr_disable(acrtc_state->stream);
8399 mutex_unlock(&dm->dc_lock);
8402 * If FreeSync state on the stream has changed then we need to
8403 * re-adjust the min/max bounds now that DC doesn't handle this
8404 * as part of commit.
8406 if (is_dc_timing_adjust_needed(dm_old_crtc_state, acrtc_state)) {
8407 spin_lock_irqsave(&pcrtc->dev->event_lock, flags);
8408 dc_stream_adjust_vmin_vmax(
8409 dm->dc, acrtc_state->stream,
8410 &acrtc_attach->dm_irq_params.vrr_params.adjust);
8411 spin_unlock_irqrestore(&pcrtc->dev->event_lock, flags);
8413 mutex_lock(&dm->dc_lock);
8414 update_planes_and_stream_adapter(dm->dc,
8415 acrtc_state->update_type,
8417 acrtc_state->stream,
8418 &bundle->stream_update,
8419 bundle->surface_updates);
8422 * Enable or disable the interrupts on the backend.
8424 * Most pipes are put into power gating when unused.
8426 * When power gating is enabled on a pipe we lose the
8427 * interrupt enablement state when power gating is disabled.
8429 * So we need to update the IRQ control state in hardware
8430 * whenever the pipe turns on (since it could be previously
8431 * power gated) or off (since some pipes can't be power gated
8434 if (dm_old_crtc_state->active_planes != acrtc_state->active_planes)
8435 dm_update_pflip_irq_state(drm_to_adev(dev),
8438 if ((acrtc_state->update_type > UPDATE_TYPE_FAST) &&
8439 acrtc_state->stream->link->psr_settings.psr_version != DC_PSR_VERSION_UNSUPPORTED &&
8440 !acrtc_state->stream->link->psr_settings.psr_feature_enabled)
8441 amdgpu_dm_link_setup_psr(acrtc_state->stream);
8443 /* Decrement skip count when PSR is enabled and we're doing fast updates. */
8444 if (acrtc_state->update_type == UPDATE_TYPE_FAST &&
8445 acrtc_state->stream->link->psr_settings.psr_feature_enabled) {
8446 struct amdgpu_dm_connector *aconn =
8447 (struct amdgpu_dm_connector *)acrtc_state->stream->dm_stream_context;
8449 if (aconn->psr_skip_count > 0)
8450 aconn->psr_skip_count--;
8452 /* Allow PSR when skip count is 0. */
8453 acrtc_attach->dm_irq_params.allow_psr_entry = !aconn->psr_skip_count;
8456 * If sink supports PSR SU, there is no need to rely on
8457 * a vblank event disable request to enable PSR. PSR SU
8458 * can be enabled immediately once OS demonstrates an
8459 * adequate number of fast atomic commits to notify KMD
8460 * of update events. See `vblank_control_worker()`.
8462 if (acrtc_state->stream->link->psr_settings.psr_version >= DC_PSR_VERSION_SU_1 &&
8463 acrtc_attach->dm_irq_params.allow_psr_entry &&
8464 #ifdef CONFIG_DRM_AMD_SECURE_DISPLAY
8465 !amdgpu_dm_crc_window_is_activated(acrtc_state->base.crtc) &&
8467 !acrtc_state->stream->link->psr_settings.psr_allow_active &&
8469 acrtc_state->stream->link->psr_settings.psr_dirty_rects_change_timestamp_ns) >
8471 amdgpu_dm_psr_enable(acrtc_state->stream);
8473 acrtc_attach->dm_irq_params.allow_psr_entry = false;
8476 mutex_unlock(&dm->dc_lock);
8480 * Update cursor state *after* programming all the planes.
8481 * This avoids redundant programming in the case where we're going
8482 * to be disabling a single plane - those pipes are being disabled.
8484 if (acrtc_state->active_planes)
8485 amdgpu_dm_commit_cursors(state);
8491 static void amdgpu_dm_commit_audio(struct drm_device *dev,
8492 struct drm_atomic_state *state)
8494 struct amdgpu_device *adev = drm_to_adev(dev);
8495 struct amdgpu_dm_connector *aconnector;
8496 struct drm_connector *connector;
8497 struct drm_connector_state *old_con_state, *new_con_state;
8498 struct drm_crtc_state *new_crtc_state;
8499 struct dm_crtc_state *new_dm_crtc_state;
8500 const struct dc_stream_status *status;
8503 /* Notify device removals. */
8504 for_each_oldnew_connector_in_state(state, connector, old_con_state, new_con_state, i) {
8505 if (old_con_state->crtc != new_con_state->crtc) {
8506 /* CRTC changes require notification. */
8510 if (!new_con_state->crtc)
8513 new_crtc_state = drm_atomic_get_new_crtc_state(
8514 state, new_con_state->crtc);
8516 if (!new_crtc_state)
8519 if (!drm_atomic_crtc_needs_modeset(new_crtc_state))
8523 aconnector = to_amdgpu_dm_connector(connector);
8525 mutex_lock(&adev->dm.audio_lock);
8526 inst = aconnector->audio_inst;
8527 aconnector->audio_inst = -1;
8528 mutex_unlock(&adev->dm.audio_lock);
8530 amdgpu_dm_audio_eld_notify(adev, inst);
8533 /* Notify audio device additions. */
8534 for_each_new_connector_in_state(state, connector, new_con_state, i) {
8535 if (!new_con_state->crtc)
8538 new_crtc_state = drm_atomic_get_new_crtc_state(
8539 state, new_con_state->crtc);
8541 if (!new_crtc_state)
8544 if (!drm_atomic_crtc_needs_modeset(new_crtc_state))
8547 new_dm_crtc_state = to_dm_crtc_state(new_crtc_state);
8548 if (!new_dm_crtc_state->stream)
8551 status = dc_stream_get_status(new_dm_crtc_state->stream);
8555 aconnector = to_amdgpu_dm_connector(connector);
8557 mutex_lock(&adev->dm.audio_lock);
8558 inst = status->audio_inst;
8559 aconnector->audio_inst = inst;
8560 mutex_unlock(&adev->dm.audio_lock);
8562 amdgpu_dm_audio_eld_notify(adev, inst);
8567 * amdgpu_dm_crtc_copy_transient_flags - copy mirrored flags from DRM to DC
8568 * @crtc_state: the DRM CRTC state
8569 * @stream_state: the DC stream state.
8571 * Copy the mirrored transient state flags from DRM, to DC. It is used to bring
8572 * a dc_stream_state's flags in sync with a drm_crtc_state's flags.
8574 static void amdgpu_dm_crtc_copy_transient_flags(struct drm_crtc_state *crtc_state,
8575 struct dc_stream_state *stream_state)
8577 stream_state->mode_changed = drm_atomic_crtc_needs_modeset(crtc_state);
8580 static void amdgpu_dm_commit_streams(struct drm_atomic_state *state,
8581 struct dc_state *dc_state)
8583 struct drm_device *dev = state->dev;
8584 struct amdgpu_device *adev = drm_to_adev(dev);
8585 struct amdgpu_display_manager *dm = &adev->dm;
8586 struct drm_crtc *crtc;
8587 struct drm_crtc_state *old_crtc_state, *new_crtc_state;
8588 struct dm_crtc_state *dm_old_crtc_state, *dm_new_crtc_state;
8589 bool mode_set_reset_required = false;
8592 for_each_oldnew_crtc_in_state(state, crtc, old_crtc_state,
8593 new_crtc_state, i) {
8594 struct amdgpu_crtc *acrtc = to_amdgpu_crtc(crtc);
8596 dm_old_crtc_state = to_dm_crtc_state(old_crtc_state);
8598 if (old_crtc_state->active &&
8599 (!new_crtc_state->active ||
8600 drm_atomic_crtc_needs_modeset(new_crtc_state))) {
8601 manage_dm_interrupts(adev, acrtc, false);
8602 dc_stream_release(dm_old_crtc_state->stream);
8606 drm_atomic_helper_calc_timestamping_constants(state);
8608 /* update changed items */
8609 for_each_oldnew_crtc_in_state(state, crtc, old_crtc_state, new_crtc_state, i) {
8610 struct amdgpu_crtc *acrtc = to_amdgpu_crtc(crtc);
8612 dm_new_crtc_state = to_dm_crtc_state(new_crtc_state);
8613 dm_old_crtc_state = to_dm_crtc_state(old_crtc_state);
8615 drm_dbg_state(state->dev,
8616 "amdgpu_crtc id:%d crtc_state_flags: enable:%d, active:%d, planes_changed:%d, mode_changed:%d,active_changed:%d,connectors_changed:%d\n",
8618 new_crtc_state->enable,
8619 new_crtc_state->active,
8620 new_crtc_state->planes_changed,
8621 new_crtc_state->mode_changed,
8622 new_crtc_state->active_changed,
8623 new_crtc_state->connectors_changed);
8625 /* Disable cursor if disabling crtc */
8626 if (old_crtc_state->active && !new_crtc_state->active) {
8627 struct dc_cursor_position position;
8629 memset(&position, 0, sizeof(position));
8630 mutex_lock(&dm->dc_lock);
8631 dc_stream_set_cursor_position(dm_old_crtc_state->stream, &position);
8632 mutex_unlock(&dm->dc_lock);
8635 /* Copy all transient state flags into dc state */
8636 if (dm_new_crtc_state->stream) {
8637 amdgpu_dm_crtc_copy_transient_flags(&dm_new_crtc_state->base,
8638 dm_new_crtc_state->stream);
8641 /* handles headless hotplug case, updating new_state and
8642 * aconnector as needed
8645 if (amdgpu_dm_crtc_modeset_required(new_crtc_state, dm_new_crtc_state->stream, dm_old_crtc_state->stream)) {
8647 DRM_DEBUG_ATOMIC("Atomic commit: SET crtc id %d: [%p]\n", acrtc->crtc_id, acrtc);
8649 if (!dm_new_crtc_state->stream) {
8651 * this could happen because of issues with
8652 * userspace notifications delivery.
8653 * In this case userspace tries to set mode on
8654 * display which is disconnected in fact.
8655 * dc_sink is NULL in this case on aconnector.
8656 * We expect reset mode will come soon.
8658 * This can also happen when unplug is done
8659 * during resume sequence ended
8661 * In this case, we want to pretend we still
8662 * have a sink to keep the pipe running so that
8663 * hw state is consistent with the sw state
8665 DRM_DEBUG_DRIVER("%s: Failed to create new stream for crtc %d\n",
8666 __func__, acrtc->base.base.id);
8670 if (dm_old_crtc_state->stream)
8671 remove_stream(adev, acrtc, dm_old_crtc_state->stream);
8673 pm_runtime_get_noresume(dev->dev);
8675 acrtc->enabled = true;
8676 acrtc->hw_mode = new_crtc_state->mode;
8677 crtc->hwmode = new_crtc_state->mode;
8678 mode_set_reset_required = true;
8679 } else if (modereset_required(new_crtc_state)) {
8680 DRM_DEBUG_ATOMIC("Atomic commit: RESET. crtc id %d:[%p]\n", acrtc->crtc_id, acrtc);
8681 /* i.e. reset mode */
8682 if (dm_old_crtc_state->stream)
8683 remove_stream(adev, acrtc, dm_old_crtc_state->stream);
8685 mode_set_reset_required = true;
8687 } /* for_each_crtc_in_state() */
8689 /* if there mode set or reset, disable eDP PSR */
8690 if (mode_set_reset_required) {
8691 if (dm->vblank_control_workqueue)
8692 flush_workqueue(dm->vblank_control_workqueue);
8694 amdgpu_dm_psr_disable_all(dm);
8697 dm_enable_per_frame_crtc_master_sync(dc_state);
8698 mutex_lock(&dm->dc_lock);
8699 WARN_ON(!dc_commit_streams(dm->dc, dc_state->streams, dc_state->stream_count));
8701 /* Allow idle optimization when vblank count is 0 for display off */
8702 if (dm->active_vblank_irq_count == 0)
8703 dc_allow_idle_optimizations(dm->dc, true);
8704 mutex_unlock(&dm->dc_lock);
8706 for_each_new_crtc_in_state(state, crtc, new_crtc_state, i) {
8707 struct amdgpu_crtc *acrtc = to_amdgpu_crtc(crtc);
8709 dm_new_crtc_state = to_dm_crtc_state(new_crtc_state);
8711 if (dm_new_crtc_state->stream != NULL) {
8712 const struct dc_stream_status *status =
8713 dc_stream_get_status(dm_new_crtc_state->stream);
8716 status = dc_stream_get_status_from_state(dc_state,
8717 dm_new_crtc_state->stream);
8720 "got no status for stream %p on acrtc%p\n",
8721 dm_new_crtc_state->stream, acrtc);
8723 acrtc->otg_inst = status->primary_otg_inst;
8729 * amdgpu_dm_atomic_commit_tail() - AMDgpu DM's commit tail implementation.
8730 * @state: The atomic state to commit
8732 * This will tell DC to commit the constructed DC state from atomic_check,
8733 * programming the hardware. Any failures here implies a hardware failure, since
8734 * atomic check should have filtered anything non-kosher.
8736 static void amdgpu_dm_atomic_commit_tail(struct drm_atomic_state *state)
8738 struct drm_device *dev = state->dev;
8739 struct amdgpu_device *adev = drm_to_adev(dev);
8740 struct amdgpu_display_manager *dm = &adev->dm;
8741 struct dm_atomic_state *dm_state;
8742 struct dc_state *dc_state = NULL;
8744 struct drm_crtc *crtc;
8745 struct drm_crtc_state *old_crtc_state, *new_crtc_state;
8746 unsigned long flags;
8747 bool wait_for_vblank = true;
8748 struct drm_connector *connector;
8749 struct drm_connector_state *old_con_state, *new_con_state;
8750 struct dm_crtc_state *dm_old_crtc_state, *dm_new_crtc_state;
8751 int crtc_disable_count = 0;
8753 trace_amdgpu_dm_atomic_commit_tail_begin(state);
8755 if (dm->dc->caps.ips_support) {
8756 for_each_oldnew_connector_in_state(state, connector, old_con_state, new_con_state, i) {
8757 if (new_con_state->crtc &&
8758 new_con_state->crtc->state->active &&
8759 drm_atomic_crtc_needs_modeset(new_con_state->crtc->state)) {
8760 dc_dmub_srv_exit_low_power_state(dm->dc);
8766 drm_atomic_helper_update_legacy_modeset_state(dev, state);
8767 drm_dp_mst_atomic_wait_for_dependencies(state);
8769 dm_state = dm_atomic_get_new_state(state);
8770 if (dm_state && dm_state->context) {
8771 dc_state = dm_state->context;
8772 amdgpu_dm_commit_streams(state, dc_state);
8775 for_each_oldnew_connector_in_state(state, connector, old_con_state, new_con_state, i) {
8776 struct dm_connector_state *dm_new_con_state = to_dm_connector_state(new_con_state);
8777 struct amdgpu_crtc *acrtc = to_amdgpu_crtc(dm_new_con_state->base.crtc);
8778 struct amdgpu_dm_connector *aconnector = to_amdgpu_dm_connector(connector);
8780 if (!adev->dm.hdcp_workqueue)
8783 pr_debug("[HDCP_DM] -------------- i : %x ----------\n", i);
8788 pr_debug("[HDCP_DM] connector->index: %x connect_status: %x dpms: %x\n",
8789 connector->index, connector->status, connector->dpms);
8790 pr_debug("[HDCP_DM] state protection old: %x new: %x\n",
8791 old_con_state->content_protection, new_con_state->content_protection);
8793 if (aconnector->dc_sink) {
8794 if (aconnector->dc_sink->sink_signal != SIGNAL_TYPE_VIRTUAL &&
8795 aconnector->dc_sink->sink_signal != SIGNAL_TYPE_NONE) {
8796 pr_debug("[HDCP_DM] pipe_ctx dispname=%s\n",
8797 aconnector->dc_sink->edid_caps.display_name);
8801 new_crtc_state = NULL;
8802 old_crtc_state = NULL;
8805 new_crtc_state = drm_atomic_get_new_crtc_state(state, &acrtc->base);
8806 old_crtc_state = drm_atomic_get_old_crtc_state(state, &acrtc->base);
8810 pr_debug("old crtc en: %x a: %x m: %x a-chg: %x c-chg: %x\n",
8811 old_crtc_state->enable,
8812 old_crtc_state->active,
8813 old_crtc_state->mode_changed,
8814 old_crtc_state->active_changed,
8815 old_crtc_state->connectors_changed);
8818 pr_debug("NEW crtc en: %x a: %x m: %x a-chg: %x c-chg: %x\n",
8819 new_crtc_state->enable,
8820 new_crtc_state->active,
8821 new_crtc_state->mode_changed,
8822 new_crtc_state->active_changed,
8823 new_crtc_state->connectors_changed);
8826 for_each_oldnew_connector_in_state(state, connector, old_con_state, new_con_state, i) {
8827 struct dm_connector_state *dm_new_con_state = to_dm_connector_state(new_con_state);
8828 struct amdgpu_crtc *acrtc = to_amdgpu_crtc(dm_new_con_state->base.crtc);
8829 struct amdgpu_dm_connector *aconnector = to_amdgpu_dm_connector(connector);
8831 if (!adev->dm.hdcp_workqueue)
8834 new_crtc_state = NULL;
8835 old_crtc_state = NULL;
8838 new_crtc_state = drm_atomic_get_new_crtc_state(state, &acrtc->base);
8839 old_crtc_state = drm_atomic_get_old_crtc_state(state, &acrtc->base);
8842 dm_new_crtc_state = to_dm_crtc_state(new_crtc_state);
8844 if (dm_new_crtc_state && dm_new_crtc_state->stream == NULL &&
8845 connector->state->content_protection == DRM_MODE_CONTENT_PROTECTION_ENABLED) {
8846 hdcp_reset_display(adev->dm.hdcp_workqueue, aconnector->dc_link->link_index);
8847 new_con_state->content_protection = DRM_MODE_CONTENT_PROTECTION_DESIRED;
8848 dm_new_con_state->update_hdcp = true;
8852 if (is_content_protection_different(new_crtc_state, old_crtc_state, new_con_state,
8853 old_con_state, connector, adev->dm.hdcp_workqueue)) {
8854 /* when display is unplugged from mst hub, connctor will
8855 * be destroyed within dm_dp_mst_connector_destroy. connector
8856 * hdcp perperties, like type, undesired, desired, enabled,
8857 * will be lost. So, save hdcp properties into hdcp_work within
8858 * amdgpu_dm_atomic_commit_tail. if the same display is
8859 * plugged back with same display index, its hdcp properties
8860 * will be retrieved from hdcp_work within dm_dp_mst_get_modes
8863 bool enable_encryption = false;
8865 if (new_con_state->content_protection == DRM_MODE_CONTENT_PROTECTION_DESIRED)
8866 enable_encryption = true;
8868 if (aconnector->dc_link && aconnector->dc_sink &&
8869 aconnector->dc_link->type == dc_connection_mst_branch) {
8870 struct hdcp_workqueue *hdcp_work = adev->dm.hdcp_workqueue;
8871 struct hdcp_workqueue *hdcp_w =
8872 &hdcp_work[aconnector->dc_link->link_index];
8874 hdcp_w->hdcp_content_type[connector->index] =
8875 new_con_state->hdcp_content_type;
8876 hdcp_w->content_protection[connector->index] =
8877 new_con_state->content_protection;
8880 if (new_crtc_state && new_crtc_state->mode_changed &&
8881 new_con_state->content_protection >= DRM_MODE_CONTENT_PROTECTION_DESIRED)
8882 enable_encryption = true;
8884 DRM_INFO("[HDCP_DM] hdcp_update_display enable_encryption = %x\n", enable_encryption);
8886 hdcp_update_display(
8887 adev->dm.hdcp_workqueue, aconnector->dc_link->link_index, aconnector,
8888 new_con_state->hdcp_content_type, enable_encryption);
8892 /* Handle connector state changes */
8893 for_each_oldnew_connector_in_state(state, connector, old_con_state, new_con_state, i) {
8894 struct dm_connector_state *dm_new_con_state = to_dm_connector_state(new_con_state);
8895 struct dm_connector_state *dm_old_con_state = to_dm_connector_state(old_con_state);
8896 struct amdgpu_crtc *acrtc = to_amdgpu_crtc(dm_new_con_state->base.crtc);
8897 struct dc_surface_update *dummy_updates;
8898 struct dc_stream_update stream_update;
8899 struct dc_info_packet hdr_packet;
8900 struct dc_stream_status *status = NULL;
8901 bool abm_changed, hdr_changed, scaling_changed;
8903 memset(&stream_update, 0, sizeof(stream_update));
8906 new_crtc_state = drm_atomic_get_new_crtc_state(state, &acrtc->base);
8907 old_crtc_state = drm_atomic_get_old_crtc_state(state, &acrtc->base);
8910 /* Skip any modesets/resets */
8911 if (!acrtc || drm_atomic_crtc_needs_modeset(new_crtc_state))
8914 dm_new_crtc_state = to_dm_crtc_state(new_crtc_state);
8915 dm_old_crtc_state = to_dm_crtc_state(old_crtc_state);
8917 scaling_changed = is_scaling_state_different(dm_new_con_state,
8920 abm_changed = dm_new_crtc_state->abm_level !=
8921 dm_old_crtc_state->abm_level;
8924 !drm_connector_atomic_hdr_metadata_equal(old_con_state, new_con_state);
8926 if (!scaling_changed && !abm_changed && !hdr_changed)
8929 stream_update.stream = dm_new_crtc_state->stream;
8930 if (scaling_changed) {
8931 update_stream_scaling_settings(&dm_new_con_state->base.crtc->mode,
8932 dm_new_con_state, dm_new_crtc_state->stream);
8934 stream_update.src = dm_new_crtc_state->stream->src;
8935 stream_update.dst = dm_new_crtc_state->stream->dst;
8939 dm_new_crtc_state->stream->abm_level = dm_new_crtc_state->abm_level;
8941 stream_update.abm_level = &dm_new_crtc_state->abm_level;
8945 fill_hdr_info_packet(new_con_state, &hdr_packet);
8946 stream_update.hdr_static_metadata = &hdr_packet;
8949 status = dc_stream_get_status(dm_new_crtc_state->stream);
8951 if (WARN_ON(!status))
8954 WARN_ON(!status->plane_count);
8957 * TODO: DC refuses to perform stream updates without a dc_surface_update.
8958 * Here we create an empty update on each plane.
8959 * To fix this, DC should permit updating only stream properties.
8961 dummy_updates = kzalloc(sizeof(struct dc_surface_update) * MAX_SURFACES, GFP_ATOMIC);
8962 for (j = 0; j < status->plane_count; j++)
8963 dummy_updates[j].surface = status->plane_states[0];
8966 mutex_lock(&dm->dc_lock);
8967 dc_update_planes_and_stream(dm->dc,
8969 status->plane_count,
8970 dm_new_crtc_state->stream,
8972 mutex_unlock(&dm->dc_lock);
8973 kfree(dummy_updates);
8977 * Enable interrupts for CRTCs that are newly enabled or went through
8978 * a modeset. It was intentionally deferred until after the front end
8979 * state was modified to wait until the OTG was on and so the IRQ
8980 * handlers didn't access stale or invalid state.
8982 for_each_oldnew_crtc_in_state(state, crtc, old_crtc_state, new_crtc_state, i) {
8983 struct amdgpu_crtc *acrtc = to_amdgpu_crtc(crtc);
8984 #ifdef CONFIG_DEBUG_FS
8985 enum amdgpu_dm_pipe_crc_source cur_crc_src;
8987 /* Count number of newly disabled CRTCs for dropping PM refs later. */
8988 if (old_crtc_state->active && !new_crtc_state->active)
8989 crtc_disable_count++;
8991 dm_new_crtc_state = to_dm_crtc_state(new_crtc_state);
8992 dm_old_crtc_state = to_dm_crtc_state(old_crtc_state);
8994 /* For freesync config update on crtc state and params for irq */
8995 update_stream_irq_parameters(dm, dm_new_crtc_state);
8997 #ifdef CONFIG_DEBUG_FS
8998 spin_lock_irqsave(&adev_to_drm(adev)->event_lock, flags);
8999 cur_crc_src = acrtc->dm_irq_params.crc_src;
9000 spin_unlock_irqrestore(&adev_to_drm(adev)->event_lock, flags);
9003 if (new_crtc_state->active &&
9004 (!old_crtc_state->active ||
9005 drm_atomic_crtc_needs_modeset(new_crtc_state))) {
9006 dc_stream_retain(dm_new_crtc_state->stream);
9007 acrtc->dm_irq_params.stream = dm_new_crtc_state->stream;
9008 manage_dm_interrupts(adev, acrtc, true);
9010 /* Handle vrr on->off / off->on transitions */
9011 amdgpu_dm_handle_vrr_transition(dm_old_crtc_state, dm_new_crtc_state);
9013 #ifdef CONFIG_DEBUG_FS
9014 if (new_crtc_state->active &&
9015 (!old_crtc_state->active ||
9016 drm_atomic_crtc_needs_modeset(new_crtc_state))) {
9018 * Frontend may have changed so reapply the CRC capture
9019 * settings for the stream.
9021 if (amdgpu_dm_is_valid_crc_source(cur_crc_src)) {
9022 #if defined(CONFIG_DRM_AMD_SECURE_DISPLAY)
9023 if (amdgpu_dm_crc_window_is_activated(crtc)) {
9024 spin_lock_irqsave(&adev_to_drm(adev)->event_lock, flags);
9025 acrtc->dm_irq_params.window_param.update_win = true;
9028 * It takes 2 frames for HW to stably generate CRC when
9029 * resuming from suspend, so we set skip_frame_cnt 2.
9031 acrtc->dm_irq_params.window_param.skip_frame_cnt = 2;
9032 spin_unlock_irqrestore(&adev_to_drm(adev)->event_lock, flags);
9035 if (amdgpu_dm_crtc_configure_crc_source(
9036 crtc, dm_new_crtc_state, cur_crc_src))
9037 DRM_DEBUG_DRIVER("Failed to configure crc source");
9043 for_each_new_crtc_in_state(state, crtc, new_crtc_state, j)
9044 if (new_crtc_state->async_flip)
9045 wait_for_vblank = false;
9047 /* update planes when needed per crtc*/
9048 for_each_new_crtc_in_state(state, crtc, new_crtc_state, j) {
9049 dm_new_crtc_state = to_dm_crtc_state(new_crtc_state);
9051 if (dm_new_crtc_state->stream)
9052 amdgpu_dm_commit_planes(state, dev, dm, crtc, wait_for_vblank);
9055 /* Update audio instances for each connector. */
9056 amdgpu_dm_commit_audio(dev, state);
9058 /* restore the backlight level */
9059 for (i = 0; i < dm->num_of_edps; i++) {
9060 if (dm->backlight_dev[i] &&
9061 (dm->actual_brightness[i] != dm->brightness[i]))
9062 amdgpu_dm_backlight_set_level(dm, i, dm->brightness[i]);
9066 * send vblank event on all events not handled in flip and
9067 * mark consumed event for drm_atomic_helper_commit_hw_done
9069 spin_lock_irqsave(&adev_to_drm(adev)->event_lock, flags);
9070 for_each_new_crtc_in_state(state, crtc, new_crtc_state, i) {
9072 if (new_crtc_state->event)
9073 drm_send_event_locked(dev, &new_crtc_state->event->base);
9075 new_crtc_state->event = NULL;
9077 spin_unlock_irqrestore(&adev_to_drm(adev)->event_lock, flags);
9079 /* Signal HW programming completion */
9080 drm_atomic_helper_commit_hw_done(state);
9082 if (wait_for_vblank)
9083 drm_atomic_helper_wait_for_flip_done(dev, state);
9085 drm_atomic_helper_cleanup_planes(dev, state);
9087 /* Don't free the memory if we are hitting this as part of suspend.
9088 * This way we don't free any memory during suspend; see
9089 * amdgpu_bo_free_kernel(). The memory will be freed in the first
9090 * non-suspend modeset or when the driver is torn down.
9092 if (!adev->in_suspend) {
9093 /* return the stolen vga memory back to VRAM */
9094 if (!adev->mman.keep_stolen_vga_memory)
9095 amdgpu_bo_free_kernel(&adev->mman.stolen_vga_memory, NULL, NULL);
9096 amdgpu_bo_free_kernel(&adev->mman.stolen_extended_memory, NULL, NULL);
9100 * Finally, drop a runtime PM reference for each newly disabled CRTC,
9101 * so we can put the GPU into runtime suspend if we're not driving any
9104 for (i = 0; i < crtc_disable_count; i++)
9105 pm_runtime_put_autosuspend(dev->dev);
9106 pm_runtime_mark_last_busy(dev->dev);
9109 static int dm_force_atomic_commit(struct drm_connector *connector)
9112 struct drm_device *ddev = connector->dev;
9113 struct drm_atomic_state *state = drm_atomic_state_alloc(ddev);
9114 struct amdgpu_crtc *disconnected_acrtc = to_amdgpu_crtc(connector->encoder->crtc);
9115 struct drm_plane *plane = disconnected_acrtc->base.primary;
9116 struct drm_connector_state *conn_state;
9117 struct drm_crtc_state *crtc_state;
9118 struct drm_plane_state *plane_state;
9123 state->acquire_ctx = ddev->mode_config.acquire_ctx;
9125 /* Construct an atomic state to restore previous display setting */
9128 * Attach connectors to drm_atomic_state
9130 conn_state = drm_atomic_get_connector_state(state, connector);
9132 ret = PTR_ERR_OR_ZERO(conn_state);
9136 /* Attach crtc to drm_atomic_state*/
9137 crtc_state = drm_atomic_get_crtc_state(state, &disconnected_acrtc->base);
9139 ret = PTR_ERR_OR_ZERO(crtc_state);
9143 /* force a restore */
9144 crtc_state->mode_changed = true;
9146 /* Attach plane to drm_atomic_state */
9147 plane_state = drm_atomic_get_plane_state(state, plane);
9149 ret = PTR_ERR_OR_ZERO(plane_state);
9153 /* Call commit internally with the state we just constructed */
9154 ret = drm_atomic_commit(state);
9157 drm_atomic_state_put(state);
9159 DRM_ERROR("Restoring old state failed with %i\n", ret);
9165 * This function handles all cases when set mode does not come upon hotplug.
9166 * This includes when a display is unplugged then plugged back into the
9167 * same port and when running without usermode desktop manager supprot
9169 void dm_restore_drm_connector_state(struct drm_device *dev,
9170 struct drm_connector *connector)
9172 struct amdgpu_dm_connector *aconnector = to_amdgpu_dm_connector(connector);
9173 struct amdgpu_crtc *disconnected_acrtc;
9174 struct dm_crtc_state *acrtc_state;
9176 if (!aconnector->dc_sink || !connector->state || !connector->encoder)
9179 disconnected_acrtc = to_amdgpu_crtc(connector->encoder->crtc);
9180 if (!disconnected_acrtc)
9183 acrtc_state = to_dm_crtc_state(disconnected_acrtc->base.state);
9184 if (!acrtc_state->stream)
9188 * If the previous sink is not released and different from the current,
9189 * we deduce we are in a state where we can not rely on usermode call
9190 * to turn on the display, so we do it here
9192 if (acrtc_state->stream->sink != aconnector->dc_sink)
9193 dm_force_atomic_commit(&aconnector->base);
9197 * Grabs all modesetting locks to serialize against any blocking commits,
9198 * Waits for completion of all non blocking commits.
9200 static int do_aquire_global_lock(struct drm_device *dev,
9201 struct drm_atomic_state *state)
9203 struct drm_crtc *crtc;
9204 struct drm_crtc_commit *commit;
9208 * Adding all modeset locks to aquire_ctx will
9209 * ensure that when the framework release it the
9210 * extra locks we are locking here will get released to
9212 ret = drm_modeset_lock_all_ctx(dev, state->acquire_ctx);
9216 list_for_each_entry(crtc, &dev->mode_config.crtc_list, head) {
9217 spin_lock(&crtc->commit_lock);
9218 commit = list_first_entry_or_null(&crtc->commit_list,
9219 struct drm_crtc_commit, commit_entry);
9221 drm_crtc_commit_get(commit);
9222 spin_unlock(&crtc->commit_lock);
9228 * Make sure all pending HW programming completed and
9231 ret = wait_for_completion_interruptible_timeout(&commit->hw_done, 10*HZ);
9234 ret = wait_for_completion_interruptible_timeout(
9235 &commit->flip_done, 10*HZ);
9238 DRM_ERROR("[CRTC:%d:%s] hw_done or flip_done timed out\n",
9239 crtc->base.id, crtc->name);
9241 drm_crtc_commit_put(commit);
9244 return ret < 0 ? ret : 0;
9247 static void get_freesync_config_for_crtc(
9248 struct dm_crtc_state *new_crtc_state,
9249 struct dm_connector_state *new_con_state)
9251 struct mod_freesync_config config = {0};
9252 struct amdgpu_dm_connector *aconnector =
9253 to_amdgpu_dm_connector(new_con_state->base.connector);
9254 struct drm_display_mode *mode = &new_crtc_state->base.mode;
9255 int vrefresh = drm_mode_vrefresh(mode);
9256 bool fs_vid_mode = false;
9258 new_crtc_state->vrr_supported = new_con_state->freesync_capable &&
9259 vrefresh >= aconnector->min_vfreq &&
9260 vrefresh <= aconnector->max_vfreq;
9262 if (new_crtc_state->vrr_supported) {
9263 new_crtc_state->stream->ignore_msa_timing_param = true;
9264 fs_vid_mode = new_crtc_state->freesync_config.state == VRR_STATE_ACTIVE_FIXED;
9266 config.min_refresh_in_uhz = aconnector->min_vfreq * 1000000;
9267 config.max_refresh_in_uhz = aconnector->max_vfreq * 1000000;
9268 config.vsif_supported = true;
9272 config.state = VRR_STATE_ACTIVE_FIXED;
9273 config.fixed_refresh_in_uhz = new_crtc_state->freesync_config.fixed_refresh_in_uhz;
9275 } else if (new_crtc_state->base.vrr_enabled) {
9276 config.state = VRR_STATE_ACTIVE_VARIABLE;
9278 config.state = VRR_STATE_INACTIVE;
9282 new_crtc_state->freesync_config = config;
9285 static void reset_freesync_config_for_crtc(
9286 struct dm_crtc_state *new_crtc_state)
9288 new_crtc_state->vrr_supported = false;
9290 memset(&new_crtc_state->vrr_infopacket, 0,
9291 sizeof(new_crtc_state->vrr_infopacket));
9295 is_timing_unchanged_for_freesync(struct drm_crtc_state *old_crtc_state,
9296 struct drm_crtc_state *new_crtc_state)
9298 const struct drm_display_mode *old_mode, *new_mode;
9300 if (!old_crtc_state || !new_crtc_state)
9303 old_mode = &old_crtc_state->mode;
9304 new_mode = &new_crtc_state->mode;
9306 if (old_mode->clock == new_mode->clock &&
9307 old_mode->hdisplay == new_mode->hdisplay &&
9308 old_mode->vdisplay == new_mode->vdisplay &&
9309 old_mode->htotal == new_mode->htotal &&
9310 old_mode->vtotal != new_mode->vtotal &&
9311 old_mode->hsync_start == new_mode->hsync_start &&
9312 old_mode->vsync_start != new_mode->vsync_start &&
9313 old_mode->hsync_end == new_mode->hsync_end &&
9314 old_mode->vsync_end != new_mode->vsync_end &&
9315 old_mode->hskew == new_mode->hskew &&
9316 old_mode->vscan == new_mode->vscan &&
9317 (old_mode->vsync_end - old_mode->vsync_start) ==
9318 (new_mode->vsync_end - new_mode->vsync_start))
9324 static void set_freesync_fixed_config(struct dm_crtc_state *dm_new_crtc_state)
9327 struct drm_crtc_state *new_crtc_state = &dm_new_crtc_state->base;
9329 dm_new_crtc_state->freesync_config.state = VRR_STATE_ACTIVE_FIXED;
9331 num = (unsigned long long)new_crtc_state->mode.clock * 1000 * 1000000;
9332 den = (unsigned long long)new_crtc_state->mode.htotal *
9333 (unsigned long long)new_crtc_state->mode.vtotal;
9335 res = div_u64(num, den);
9336 dm_new_crtc_state->freesync_config.fixed_refresh_in_uhz = res;
9339 static int dm_update_crtc_state(struct amdgpu_display_manager *dm,
9340 struct drm_atomic_state *state,
9341 struct drm_crtc *crtc,
9342 struct drm_crtc_state *old_crtc_state,
9343 struct drm_crtc_state *new_crtc_state,
9345 bool *lock_and_validation_needed)
9347 struct dm_atomic_state *dm_state = NULL;
9348 struct dm_crtc_state *dm_old_crtc_state, *dm_new_crtc_state;
9349 struct dc_stream_state *new_stream;
9353 * TODO Move this code into dm_crtc_atomic_check once we get rid of dc_validation_set
9354 * update changed items
9356 struct amdgpu_crtc *acrtc = NULL;
9357 struct amdgpu_dm_connector *aconnector = NULL;
9358 struct drm_connector_state *drm_new_conn_state = NULL, *drm_old_conn_state = NULL;
9359 struct dm_connector_state *dm_new_conn_state = NULL, *dm_old_conn_state = NULL;
9363 dm_old_crtc_state = to_dm_crtc_state(old_crtc_state);
9364 dm_new_crtc_state = to_dm_crtc_state(new_crtc_state);
9365 acrtc = to_amdgpu_crtc(crtc);
9366 aconnector = amdgpu_dm_find_first_crtc_matching_connector(state, crtc);
9368 /* TODO This hack should go away */
9369 if (aconnector && enable) {
9370 /* Make sure fake sink is created in plug-in scenario */
9371 drm_new_conn_state = drm_atomic_get_new_connector_state(state,
9373 drm_old_conn_state = drm_atomic_get_old_connector_state(state,
9376 if (IS_ERR(drm_new_conn_state)) {
9377 ret = PTR_ERR_OR_ZERO(drm_new_conn_state);
9381 dm_new_conn_state = to_dm_connector_state(drm_new_conn_state);
9382 dm_old_conn_state = to_dm_connector_state(drm_old_conn_state);
9384 if (!drm_atomic_crtc_needs_modeset(new_crtc_state))
9387 new_stream = create_validate_stream_for_sink(aconnector,
9388 &new_crtc_state->mode,
9390 dm_old_crtc_state->stream);
9393 * we can have no stream on ACTION_SET if a display
9394 * was disconnected during S3, in this case it is not an
9395 * error, the OS will be updated after detection, and
9396 * will do the right thing on next atomic commit
9400 DRM_DEBUG_DRIVER("%s: Failed to create new stream for crtc %d\n",
9401 __func__, acrtc->base.base.id);
9407 * TODO: Check VSDB bits to decide whether this should
9408 * be enabled or not.
9410 new_stream->triggered_crtc_reset.enabled =
9411 dm->force_timing_sync;
9413 dm_new_crtc_state->abm_level = dm_new_conn_state->abm_level;
9415 ret = fill_hdr_info_packet(drm_new_conn_state,
9416 &new_stream->hdr_static_metadata);
9421 * If we already removed the old stream from the context
9422 * (and set the new stream to NULL) then we can't reuse
9423 * the old stream even if the stream and scaling are unchanged.
9424 * We'll hit the BUG_ON and black screen.
9426 * TODO: Refactor this function to allow this check to work
9427 * in all conditions.
9429 if (dm_new_crtc_state->stream &&
9430 is_timing_unchanged_for_freesync(new_crtc_state, old_crtc_state))
9433 if (dm_new_crtc_state->stream &&
9434 dc_is_stream_unchanged(new_stream, dm_old_crtc_state->stream) &&
9435 dc_is_stream_scaling_unchanged(new_stream, dm_old_crtc_state->stream)) {
9436 new_crtc_state->mode_changed = false;
9437 DRM_DEBUG_DRIVER("Mode change not required, setting mode_changed to %d",
9438 new_crtc_state->mode_changed);
9442 /* mode_changed flag may get updated above, need to check again */
9443 if (!drm_atomic_crtc_needs_modeset(new_crtc_state))
9446 drm_dbg_state(state->dev,
9447 "amdgpu_crtc id:%d crtc_state_flags: enable:%d, active:%d, planes_changed:%d, mode_changed:%d,active_changed:%d,connectors_changed:%d\n",
9449 new_crtc_state->enable,
9450 new_crtc_state->active,
9451 new_crtc_state->planes_changed,
9452 new_crtc_state->mode_changed,
9453 new_crtc_state->active_changed,
9454 new_crtc_state->connectors_changed);
9456 /* Remove stream for any changed/disabled CRTC */
9459 if (!dm_old_crtc_state->stream)
9462 /* Unset freesync video if it was active before */
9463 if (dm_old_crtc_state->freesync_config.state == VRR_STATE_ACTIVE_FIXED) {
9464 dm_new_crtc_state->freesync_config.state = VRR_STATE_INACTIVE;
9465 dm_new_crtc_state->freesync_config.fixed_refresh_in_uhz = 0;
9468 /* Now check if we should set freesync video mode */
9469 if (dm_new_crtc_state->stream &&
9470 dc_is_stream_unchanged(new_stream, dm_old_crtc_state->stream) &&
9471 dc_is_stream_scaling_unchanged(new_stream, dm_old_crtc_state->stream) &&
9472 is_timing_unchanged_for_freesync(new_crtc_state,
9474 new_crtc_state->mode_changed = false;
9476 "Mode change not required for front porch change, setting mode_changed to %d",
9477 new_crtc_state->mode_changed);
9479 set_freesync_fixed_config(dm_new_crtc_state);
9482 } else if (aconnector &&
9483 is_freesync_video_mode(&new_crtc_state->mode,
9485 struct drm_display_mode *high_mode;
9487 high_mode = get_highest_refresh_rate_mode(aconnector, false);
9488 if (!drm_mode_equal(&new_crtc_state->mode, high_mode))
9489 set_freesync_fixed_config(dm_new_crtc_state);
9492 ret = dm_atomic_get_state(state, &dm_state);
9496 DRM_DEBUG_DRIVER("Disabling DRM crtc: %d\n",
9499 /* i.e. reset mode */
9500 if (dc_remove_stream_from_ctx(
9503 dm_old_crtc_state->stream) != DC_OK) {
9508 dc_stream_release(dm_old_crtc_state->stream);
9509 dm_new_crtc_state->stream = NULL;
9511 reset_freesync_config_for_crtc(dm_new_crtc_state);
9513 *lock_and_validation_needed = true;
9515 } else {/* Add stream for any updated/enabled CRTC */
9517 * Quick fix to prevent NULL pointer on new_stream when
9518 * added MST connectors not found in existing crtc_state in the chained mode
9519 * TODO: need to dig out the root cause of that
9524 if (modereset_required(new_crtc_state))
9527 if (amdgpu_dm_crtc_modeset_required(new_crtc_state, new_stream,
9528 dm_old_crtc_state->stream)) {
9530 WARN_ON(dm_new_crtc_state->stream);
9532 ret = dm_atomic_get_state(state, &dm_state);
9536 dm_new_crtc_state->stream = new_stream;
9538 dc_stream_retain(new_stream);
9540 DRM_DEBUG_ATOMIC("Enabling DRM crtc: %d\n",
9543 if (dc_add_stream_to_ctx(
9546 dm_new_crtc_state->stream) != DC_OK) {
9551 *lock_and_validation_needed = true;
9556 /* Release extra reference */
9558 dc_stream_release(new_stream);
9561 * We want to do dc stream updates that do not require a
9562 * full modeset below.
9564 if (!(enable && aconnector && new_crtc_state->active))
9567 * Given above conditions, the dc state cannot be NULL because:
9568 * 1. We're in the process of enabling CRTCs (just been added
9569 * to the dc context, or already is on the context)
9570 * 2. Has a valid connector attached, and
9571 * 3. Is currently active and enabled.
9572 * => The dc stream state currently exists.
9574 BUG_ON(dm_new_crtc_state->stream == NULL);
9576 /* Scaling or underscan settings */
9577 if (is_scaling_state_different(dm_old_conn_state, dm_new_conn_state) ||
9578 drm_atomic_crtc_needs_modeset(new_crtc_state))
9579 update_stream_scaling_settings(
9580 &new_crtc_state->mode, dm_new_conn_state, dm_new_crtc_state->stream);
9583 dm_new_crtc_state->abm_level = dm_new_conn_state->abm_level;
9586 * Color management settings. We also update color properties
9587 * when a modeset is needed, to ensure it gets reprogrammed.
9589 if (dm_new_crtc_state->base.color_mgmt_changed ||
9590 drm_atomic_crtc_needs_modeset(new_crtc_state)) {
9591 ret = amdgpu_dm_update_crtc_color_mgmt(dm_new_crtc_state);
9596 /* Update Freesync settings. */
9597 get_freesync_config_for_crtc(dm_new_crtc_state,
9604 dc_stream_release(new_stream);
9608 static bool should_reset_plane(struct drm_atomic_state *state,
9609 struct drm_plane *plane,
9610 struct drm_plane_state *old_plane_state,
9611 struct drm_plane_state *new_plane_state)
9613 struct drm_plane *other;
9614 struct drm_plane_state *old_other_state, *new_other_state;
9615 struct drm_crtc_state *new_crtc_state;
9616 struct amdgpu_device *adev = drm_to_adev(plane->dev);
9620 * TODO: Remove this hack for all asics once it proves that the
9621 * fast updates works fine on DCN3.2+.
9623 if (adev->ip_versions[DCE_HWIP][0] < IP_VERSION(3, 2, 0) && state->allow_modeset)
9626 /* Exit early if we know that we're adding or removing the plane. */
9627 if (old_plane_state->crtc != new_plane_state->crtc)
9630 /* old crtc == new_crtc == NULL, plane not in context. */
9631 if (!new_plane_state->crtc)
9635 drm_atomic_get_new_crtc_state(state, new_plane_state->crtc);
9637 if (!new_crtc_state)
9640 /* CRTC Degamma changes currently require us to recreate planes. */
9641 if (new_crtc_state->color_mgmt_changed)
9644 if (drm_atomic_crtc_needs_modeset(new_crtc_state))
9648 * If there are any new primary or overlay planes being added or
9649 * removed then the z-order can potentially change. To ensure
9650 * correct z-order and pipe acquisition the current DC architecture
9651 * requires us to remove and recreate all existing planes.
9653 * TODO: Come up with a more elegant solution for this.
9655 for_each_oldnew_plane_in_state(state, other, old_other_state, new_other_state, i) {
9656 struct amdgpu_framebuffer *old_afb, *new_afb;
9658 if (other->type == DRM_PLANE_TYPE_CURSOR)
9661 if (old_other_state->crtc != new_plane_state->crtc &&
9662 new_other_state->crtc != new_plane_state->crtc)
9665 if (old_other_state->crtc != new_other_state->crtc)
9668 /* Src/dst size and scaling updates. */
9669 if (old_other_state->src_w != new_other_state->src_w ||
9670 old_other_state->src_h != new_other_state->src_h ||
9671 old_other_state->crtc_w != new_other_state->crtc_w ||
9672 old_other_state->crtc_h != new_other_state->crtc_h)
9675 /* Rotation / mirroring updates. */
9676 if (old_other_state->rotation != new_other_state->rotation)
9679 /* Blending updates. */
9680 if (old_other_state->pixel_blend_mode !=
9681 new_other_state->pixel_blend_mode)
9684 /* Alpha updates. */
9685 if (old_other_state->alpha != new_other_state->alpha)
9688 /* Colorspace changes. */
9689 if (old_other_state->color_range != new_other_state->color_range ||
9690 old_other_state->color_encoding != new_other_state->color_encoding)
9693 /* Framebuffer checks fall at the end. */
9694 if (!old_other_state->fb || !new_other_state->fb)
9697 /* Pixel format changes can require bandwidth updates. */
9698 if (old_other_state->fb->format != new_other_state->fb->format)
9701 old_afb = (struct amdgpu_framebuffer *)old_other_state->fb;
9702 new_afb = (struct amdgpu_framebuffer *)new_other_state->fb;
9704 /* Tiling and DCC changes also require bandwidth updates. */
9705 if (old_afb->tiling_flags != new_afb->tiling_flags ||
9706 old_afb->base.modifier != new_afb->base.modifier)
9713 static int dm_check_cursor_fb(struct amdgpu_crtc *new_acrtc,
9714 struct drm_plane_state *new_plane_state,
9715 struct drm_framebuffer *fb)
9717 struct amdgpu_device *adev = drm_to_adev(new_acrtc->base.dev);
9718 struct amdgpu_framebuffer *afb = to_amdgpu_framebuffer(fb);
9722 if (fb->width > new_acrtc->max_cursor_width ||
9723 fb->height > new_acrtc->max_cursor_height) {
9724 DRM_DEBUG_ATOMIC("Bad cursor FB size %dx%d\n",
9725 new_plane_state->fb->width,
9726 new_plane_state->fb->height);
9729 if (new_plane_state->src_w != fb->width << 16 ||
9730 new_plane_state->src_h != fb->height << 16) {
9731 DRM_DEBUG_ATOMIC("Cropping not supported for cursor plane\n");
9735 /* Pitch in pixels */
9736 pitch = fb->pitches[0] / fb->format->cpp[0];
9738 if (fb->width != pitch) {
9739 DRM_DEBUG_ATOMIC("Cursor FB width %d doesn't match pitch %d",
9748 /* FB pitch is supported by cursor plane */
9751 DRM_DEBUG_ATOMIC("Bad cursor FB pitch %d px\n", pitch);
9755 /* Core DRM takes care of checking FB modifiers, so we only need to
9756 * check tiling flags when the FB doesn't have a modifier.
9758 if (!(fb->flags & DRM_MODE_FB_MODIFIERS)) {
9759 if (adev->family < AMDGPU_FAMILY_AI) {
9760 linear = AMDGPU_TILING_GET(afb->tiling_flags, ARRAY_MODE) != DC_ARRAY_2D_TILED_THIN1 &&
9761 AMDGPU_TILING_GET(afb->tiling_flags, ARRAY_MODE) != DC_ARRAY_1D_TILED_THIN1 &&
9762 AMDGPU_TILING_GET(afb->tiling_flags, MICRO_TILE_MODE) == 0;
9764 linear = AMDGPU_TILING_GET(afb->tiling_flags, SWIZZLE_MODE) == 0;
9767 DRM_DEBUG_ATOMIC("Cursor FB not linear");
9775 static int dm_update_plane_state(struct dc *dc,
9776 struct drm_atomic_state *state,
9777 struct drm_plane *plane,
9778 struct drm_plane_state *old_plane_state,
9779 struct drm_plane_state *new_plane_state,
9781 bool *lock_and_validation_needed,
9782 bool *is_top_most_overlay)
9785 struct dm_atomic_state *dm_state = NULL;
9786 struct drm_crtc *new_plane_crtc, *old_plane_crtc;
9787 struct drm_crtc_state *old_crtc_state, *new_crtc_state;
9788 struct dm_crtc_state *dm_new_crtc_state, *dm_old_crtc_state;
9789 struct dm_plane_state *dm_new_plane_state, *dm_old_plane_state;
9790 struct amdgpu_crtc *new_acrtc;
9795 new_plane_crtc = new_plane_state->crtc;
9796 old_plane_crtc = old_plane_state->crtc;
9797 dm_new_plane_state = to_dm_plane_state(new_plane_state);
9798 dm_old_plane_state = to_dm_plane_state(old_plane_state);
9800 if (plane->type == DRM_PLANE_TYPE_CURSOR) {
9801 if (!enable || !new_plane_crtc ||
9802 drm_atomic_plane_disabling(plane->state, new_plane_state))
9805 new_acrtc = to_amdgpu_crtc(new_plane_crtc);
9807 if (new_plane_state->src_x != 0 || new_plane_state->src_y != 0) {
9808 DRM_DEBUG_ATOMIC("Cropping not supported for cursor plane\n");
9812 if (new_plane_state->fb) {
9813 ret = dm_check_cursor_fb(new_acrtc, new_plane_state,
9814 new_plane_state->fb);
9822 needs_reset = should_reset_plane(state, plane, old_plane_state,
9825 /* Remove any changed/removed planes */
9830 if (!old_plane_crtc)
9833 old_crtc_state = drm_atomic_get_old_crtc_state(
9834 state, old_plane_crtc);
9835 dm_old_crtc_state = to_dm_crtc_state(old_crtc_state);
9837 if (!dm_old_crtc_state->stream)
9840 DRM_DEBUG_ATOMIC("Disabling DRM plane: %d on DRM crtc %d\n",
9841 plane->base.id, old_plane_crtc->base.id);
9843 ret = dm_atomic_get_state(state, &dm_state);
9847 if (!dc_remove_plane_from_context(
9849 dm_old_crtc_state->stream,
9850 dm_old_plane_state->dc_state,
9851 dm_state->context)) {
9856 if (dm_old_plane_state->dc_state)
9857 dc_plane_state_release(dm_old_plane_state->dc_state);
9859 dm_new_plane_state->dc_state = NULL;
9861 *lock_and_validation_needed = true;
9863 } else { /* Add new planes */
9864 struct dc_plane_state *dc_new_plane_state;
9866 if (drm_atomic_plane_disabling(plane->state, new_plane_state))
9869 if (!new_plane_crtc)
9872 new_crtc_state = drm_atomic_get_new_crtc_state(state, new_plane_crtc);
9873 dm_new_crtc_state = to_dm_crtc_state(new_crtc_state);
9875 if (!dm_new_crtc_state->stream)
9881 ret = amdgpu_dm_plane_helper_check_state(new_plane_state, new_crtc_state);
9885 WARN_ON(dm_new_plane_state->dc_state);
9887 dc_new_plane_state = dc_create_plane_state(dc);
9888 if (!dc_new_plane_state)
9891 /* Block top most plane from being a video plane */
9892 if (plane->type == DRM_PLANE_TYPE_OVERLAY) {
9893 if (amdgpu_dm_plane_is_video_format(new_plane_state->fb->format->format) && *is_top_most_overlay)
9896 *is_top_most_overlay = false;
9899 DRM_DEBUG_ATOMIC("Enabling DRM plane: %d on DRM crtc %d\n",
9900 plane->base.id, new_plane_crtc->base.id);
9902 ret = fill_dc_plane_attributes(
9903 drm_to_adev(new_plane_crtc->dev),
9908 dc_plane_state_release(dc_new_plane_state);
9912 ret = dm_atomic_get_state(state, &dm_state);
9914 dc_plane_state_release(dc_new_plane_state);
9919 * Any atomic check errors that occur after this will
9920 * not need a release. The plane state will be attached
9921 * to the stream, and therefore part of the atomic
9922 * state. It'll be released when the atomic state is
9925 if (!dc_add_plane_to_context(
9927 dm_new_crtc_state->stream,
9929 dm_state->context)) {
9931 dc_plane_state_release(dc_new_plane_state);
9935 dm_new_plane_state->dc_state = dc_new_plane_state;
9937 dm_new_crtc_state->mpo_requested |= (plane->type == DRM_PLANE_TYPE_OVERLAY);
9939 /* Tell DC to do a full surface update every time there
9940 * is a plane change. Inefficient, but works for now.
9942 dm_new_plane_state->dc_state->update_flags.bits.full_update = 1;
9944 *lock_and_validation_needed = true;
9951 static void dm_get_oriented_plane_size(struct drm_plane_state *plane_state,
9952 int *src_w, int *src_h)
9954 switch (plane_state->rotation & DRM_MODE_ROTATE_MASK) {
9955 case DRM_MODE_ROTATE_90:
9956 case DRM_MODE_ROTATE_270:
9957 *src_w = plane_state->src_h >> 16;
9958 *src_h = plane_state->src_w >> 16;
9960 case DRM_MODE_ROTATE_0:
9961 case DRM_MODE_ROTATE_180:
9963 *src_w = plane_state->src_w >> 16;
9964 *src_h = plane_state->src_h >> 16;
9970 dm_get_plane_scale(struct drm_plane_state *plane_state,
9971 int *out_plane_scale_w, int *out_plane_scale_h)
9973 int plane_src_w, plane_src_h;
9975 dm_get_oriented_plane_size(plane_state, &plane_src_w, &plane_src_h);
9976 *out_plane_scale_w = plane_state->crtc_w * 1000 / plane_src_w;
9977 *out_plane_scale_h = plane_state->crtc_h * 1000 / plane_src_h;
9980 static int dm_check_crtc_cursor(struct drm_atomic_state *state,
9981 struct drm_crtc *crtc,
9982 struct drm_crtc_state *new_crtc_state)
9984 struct drm_plane *cursor = crtc->cursor, *plane, *underlying;
9985 struct drm_plane_state *old_plane_state, *new_plane_state;
9986 struct drm_plane_state *new_cursor_state, *new_underlying_state;
9988 int cursor_scale_w, cursor_scale_h, underlying_scale_w, underlying_scale_h;
9989 bool any_relevant_change = false;
9991 /* On DCE and DCN there is no dedicated hardware cursor plane. We get a
9992 * cursor per pipe but it's going to inherit the scaling and
9993 * positioning from the underlying pipe. Check the cursor plane's
9994 * blending properties match the underlying planes'.
9997 /* If no plane was enabled or changed scaling, no need to check again */
9998 for_each_oldnew_plane_in_state(state, plane, old_plane_state, new_plane_state, i) {
9999 int new_scale_w, new_scale_h, old_scale_w, old_scale_h;
10001 if (!new_plane_state || !new_plane_state->fb || new_plane_state->crtc != crtc)
10004 if (!old_plane_state || !old_plane_state->fb || old_plane_state->crtc != crtc) {
10005 any_relevant_change = true;
10009 if (new_plane_state->fb == old_plane_state->fb &&
10010 new_plane_state->crtc_w == old_plane_state->crtc_w &&
10011 new_plane_state->crtc_h == old_plane_state->crtc_h)
10014 dm_get_plane_scale(new_plane_state, &new_scale_w, &new_scale_h);
10015 dm_get_plane_scale(old_plane_state, &old_scale_w, &old_scale_h);
10017 if (new_scale_w != old_scale_w || new_scale_h != old_scale_h) {
10018 any_relevant_change = true;
10023 if (!any_relevant_change)
10026 new_cursor_state = drm_atomic_get_plane_state(state, cursor);
10027 if (IS_ERR(new_cursor_state))
10028 return PTR_ERR(new_cursor_state);
10030 if (!new_cursor_state->fb)
10033 dm_get_plane_scale(new_cursor_state, &cursor_scale_w, &cursor_scale_h);
10035 /* Need to check all enabled planes, even if this commit doesn't change
10038 i = drm_atomic_add_affected_planes(state, crtc);
10042 for_each_new_plane_in_state_reverse(state, underlying, new_underlying_state, i) {
10043 /* Narrow down to non-cursor planes on the same CRTC as the cursor */
10044 if (new_underlying_state->crtc != crtc || underlying == crtc->cursor)
10047 /* Ignore disabled planes */
10048 if (!new_underlying_state->fb)
10051 dm_get_plane_scale(new_underlying_state,
10052 &underlying_scale_w, &underlying_scale_h);
10054 if (cursor_scale_w != underlying_scale_w ||
10055 cursor_scale_h != underlying_scale_h) {
10056 drm_dbg_atomic(crtc->dev,
10057 "Cursor [PLANE:%d:%s] scaling doesn't match underlying [PLANE:%d:%s]\n",
10058 cursor->base.id, cursor->name, underlying->base.id, underlying->name);
10062 /* If this plane covers the whole CRTC, no need to check planes underneath */
10063 if (new_underlying_state->crtc_x <= 0 &&
10064 new_underlying_state->crtc_y <= 0 &&
10065 new_underlying_state->crtc_x + new_underlying_state->crtc_w >= new_crtc_state->mode.hdisplay &&
10066 new_underlying_state->crtc_y + new_underlying_state->crtc_h >= new_crtc_state->mode.vdisplay)
10073 static int add_affected_mst_dsc_crtcs(struct drm_atomic_state *state, struct drm_crtc *crtc)
10075 struct drm_connector *connector;
10076 struct drm_connector_state *conn_state, *old_conn_state;
10077 struct amdgpu_dm_connector *aconnector = NULL;
10080 for_each_oldnew_connector_in_state(state, connector, old_conn_state, conn_state, i) {
10081 if (!conn_state->crtc)
10082 conn_state = old_conn_state;
10084 if (conn_state->crtc != crtc)
10087 aconnector = to_amdgpu_dm_connector(connector);
10088 if (!aconnector->mst_output_port || !aconnector->mst_root)
10097 return drm_dp_mst_add_affected_dsc_crtcs(state, &aconnector->mst_root->mst_mgr);
10101 * amdgpu_dm_atomic_check() - Atomic check implementation for AMDgpu DM.
10103 * @dev: The DRM device
10104 * @state: The atomic state to commit
10106 * Validate that the given atomic state is programmable by DC into hardware.
10107 * This involves constructing a &struct dc_state reflecting the new hardware
10108 * state we wish to commit, then querying DC to see if it is programmable. It's
10109 * important not to modify the existing DC state. Otherwise, atomic_check
10110 * may unexpectedly commit hardware changes.
10112 * When validating the DC state, it's important that the right locks are
10113 * acquired. For full updates case which removes/adds/updates streams on one
10114 * CRTC while flipping on another CRTC, acquiring global lock will guarantee
10115 * that any such full update commit will wait for completion of any outstanding
10116 * flip using DRMs synchronization events.
10118 * Note that DM adds the affected connectors for all CRTCs in state, when that
10119 * might not seem necessary. This is because DC stream creation requires the
10120 * DC sink, which is tied to the DRM connector state. Cleaning this up should
10121 * be possible but non-trivial - a possible TODO item.
10123 * Return: -Error code if validation failed.
10125 static int amdgpu_dm_atomic_check(struct drm_device *dev,
10126 struct drm_atomic_state *state)
10128 struct amdgpu_device *adev = drm_to_adev(dev);
10129 struct dm_atomic_state *dm_state = NULL;
10130 struct dc *dc = adev->dm.dc;
10131 struct drm_connector *connector;
10132 struct drm_connector_state *old_con_state, *new_con_state;
10133 struct drm_crtc *crtc;
10134 struct drm_crtc_state *old_crtc_state, *new_crtc_state;
10135 struct drm_plane *plane;
10136 struct drm_plane_state *old_plane_state, *new_plane_state;
10137 enum dc_status status;
10139 bool lock_and_validation_needed = false;
10140 bool is_top_most_overlay = true;
10141 struct dm_crtc_state *dm_old_crtc_state, *dm_new_crtc_state;
10142 struct drm_dp_mst_topology_mgr *mgr;
10143 struct drm_dp_mst_topology_state *mst_state;
10144 struct dsc_mst_fairness_vars vars[MAX_PIPES];
10146 trace_amdgpu_dm_atomic_check_begin(state);
10148 ret = drm_atomic_helper_check_modeset(dev, state);
10150 DRM_DEBUG_DRIVER("drm_atomic_helper_check_modeset() failed\n");
10154 /* Check connector changes */
10155 for_each_oldnew_connector_in_state(state, connector, old_con_state, new_con_state, i) {
10156 struct dm_connector_state *dm_old_con_state = to_dm_connector_state(old_con_state);
10157 struct dm_connector_state *dm_new_con_state = to_dm_connector_state(new_con_state);
10159 /* Skip connectors that are disabled or part of modeset already. */
10160 if (!new_con_state->crtc)
10163 new_crtc_state = drm_atomic_get_crtc_state(state, new_con_state->crtc);
10164 if (IS_ERR(new_crtc_state)) {
10165 DRM_DEBUG_DRIVER("drm_atomic_get_crtc_state() failed\n");
10166 ret = PTR_ERR(new_crtc_state);
10170 if (dm_old_con_state->abm_level != dm_new_con_state->abm_level ||
10171 dm_old_con_state->scaling != dm_new_con_state->scaling)
10172 new_crtc_state->connectors_changed = true;
10175 if (dc_resource_is_dsc_encoding_supported(dc)) {
10176 for_each_oldnew_crtc_in_state(state, crtc, old_crtc_state, new_crtc_state, i) {
10177 if (drm_atomic_crtc_needs_modeset(new_crtc_state)) {
10178 ret = add_affected_mst_dsc_crtcs(state, crtc);
10180 DRM_DEBUG_DRIVER("add_affected_mst_dsc_crtcs() failed\n");
10186 for_each_oldnew_crtc_in_state(state, crtc, old_crtc_state, new_crtc_state, i) {
10187 dm_old_crtc_state = to_dm_crtc_state(old_crtc_state);
10189 if (!drm_atomic_crtc_needs_modeset(new_crtc_state) &&
10190 !new_crtc_state->color_mgmt_changed &&
10191 old_crtc_state->vrr_enabled == new_crtc_state->vrr_enabled &&
10192 dm_old_crtc_state->dsc_force_changed == false)
10195 ret = amdgpu_dm_verify_lut_sizes(new_crtc_state);
10197 DRM_DEBUG_DRIVER("amdgpu_dm_verify_lut_sizes() failed\n");
10201 if (!new_crtc_state->enable)
10204 ret = drm_atomic_add_affected_connectors(state, crtc);
10206 DRM_DEBUG_DRIVER("drm_atomic_add_affected_connectors() failed\n");
10210 ret = drm_atomic_add_affected_planes(state, crtc);
10212 DRM_DEBUG_DRIVER("drm_atomic_add_affected_planes() failed\n");
10216 if (dm_old_crtc_state->dsc_force_changed)
10217 new_crtc_state->mode_changed = true;
10221 * Add all primary and overlay planes on the CRTC to the state
10222 * whenever a plane is enabled to maintain correct z-ordering
10223 * and to enable fast surface updates.
10225 drm_for_each_crtc(crtc, dev) {
10226 bool modified = false;
10228 for_each_oldnew_plane_in_state(state, plane, old_plane_state, new_plane_state, i) {
10229 if (plane->type == DRM_PLANE_TYPE_CURSOR)
10232 if (new_plane_state->crtc == crtc ||
10233 old_plane_state->crtc == crtc) {
10242 drm_for_each_plane_mask(plane, state->dev, crtc->state->plane_mask) {
10243 if (plane->type == DRM_PLANE_TYPE_CURSOR)
10247 drm_atomic_get_plane_state(state, plane);
10249 if (IS_ERR(new_plane_state)) {
10250 ret = PTR_ERR(new_plane_state);
10251 DRM_DEBUG_DRIVER("new_plane_state is BAD\n");
10258 * DC consults the zpos (layer_index in DC terminology) to determine the
10259 * hw plane on which to enable the hw cursor (see
10260 * `dcn10_can_pipe_disable_cursor`). By now, all modified planes are in
10261 * atomic state, so call drm helper to normalize zpos.
10263 ret = drm_atomic_normalize_zpos(dev, state);
10265 drm_dbg(dev, "drm_atomic_normalize_zpos() failed\n");
10269 /* Remove exiting planes if they are modified */
10270 for_each_oldnew_plane_in_state_reverse(state, plane, old_plane_state, new_plane_state, i) {
10271 if (old_plane_state->fb && new_plane_state->fb &&
10272 get_mem_type(old_plane_state->fb) !=
10273 get_mem_type(new_plane_state->fb))
10274 lock_and_validation_needed = true;
10276 ret = dm_update_plane_state(dc, state, plane,
10280 &lock_and_validation_needed,
10281 &is_top_most_overlay);
10283 DRM_DEBUG_DRIVER("dm_update_plane_state() failed\n");
10288 /* Disable all crtcs which require disable */
10289 for_each_oldnew_crtc_in_state(state, crtc, old_crtc_state, new_crtc_state, i) {
10290 ret = dm_update_crtc_state(&adev->dm, state, crtc,
10294 &lock_and_validation_needed);
10296 DRM_DEBUG_DRIVER("DISABLE: dm_update_crtc_state() failed\n");
10301 /* Enable all crtcs which require enable */
10302 for_each_oldnew_crtc_in_state(state, crtc, old_crtc_state, new_crtc_state, i) {
10303 ret = dm_update_crtc_state(&adev->dm, state, crtc,
10307 &lock_and_validation_needed);
10309 DRM_DEBUG_DRIVER("ENABLE: dm_update_crtc_state() failed\n");
10314 /* Add new/modified planes */
10315 for_each_oldnew_plane_in_state_reverse(state, plane, old_plane_state, new_plane_state, i) {
10316 ret = dm_update_plane_state(dc, state, plane,
10320 &lock_and_validation_needed,
10321 &is_top_most_overlay);
10323 DRM_DEBUG_DRIVER("dm_update_plane_state() failed\n");
10328 if (dc_resource_is_dsc_encoding_supported(dc)) {
10329 ret = pre_validate_dsc(state, &dm_state, vars);
10334 /* Run this here since we want to validate the streams we created */
10335 ret = drm_atomic_helper_check_planes(dev, state);
10337 DRM_DEBUG_DRIVER("drm_atomic_helper_check_planes() failed\n");
10341 for_each_new_crtc_in_state(state, crtc, new_crtc_state, i) {
10342 dm_new_crtc_state = to_dm_crtc_state(new_crtc_state);
10343 if (dm_new_crtc_state->mpo_requested)
10344 DRM_DEBUG_DRIVER("MPO enablement requested on crtc:[%p]\n", crtc);
10347 /* Check cursor planes scaling */
10348 for_each_new_crtc_in_state(state, crtc, new_crtc_state, i) {
10349 ret = dm_check_crtc_cursor(state, crtc, new_crtc_state);
10351 DRM_DEBUG_DRIVER("dm_check_crtc_cursor() failed\n");
10356 if (state->legacy_cursor_update) {
10358 * This is a fast cursor update coming from the plane update
10359 * helper, check if it can be done asynchronously for better
10362 state->async_update =
10363 !drm_atomic_helper_async_check(dev, state);
10366 * Skip the remaining global validation if this is an async
10367 * update. Cursor updates can be done without affecting
10368 * state or bandwidth calcs and this avoids the performance
10369 * penalty of locking the private state object and
10370 * allocating a new dc_state.
10372 if (state->async_update)
10376 /* Check scaling and underscan changes*/
10377 /* TODO Removed scaling changes validation due to inability to commit
10378 * new stream into context w\o causing full reset. Need to
10379 * decide how to handle.
10381 for_each_oldnew_connector_in_state(state, connector, old_con_state, new_con_state, i) {
10382 struct dm_connector_state *dm_old_con_state = to_dm_connector_state(old_con_state);
10383 struct dm_connector_state *dm_new_con_state = to_dm_connector_state(new_con_state);
10384 struct amdgpu_crtc *acrtc = to_amdgpu_crtc(dm_new_con_state->base.crtc);
10386 /* Skip any modesets/resets */
10387 if (!acrtc || drm_atomic_crtc_needs_modeset(
10388 drm_atomic_get_new_crtc_state(state, &acrtc->base)))
10391 /* Skip any thing not scale or underscan changes */
10392 if (!is_scaling_state_different(dm_new_con_state, dm_old_con_state))
10395 lock_and_validation_needed = true;
10398 /* set the slot info for each mst_state based on the link encoding format */
10399 for_each_new_mst_mgr_in_state(state, mgr, mst_state, i) {
10400 struct amdgpu_dm_connector *aconnector;
10401 struct drm_connector *connector;
10402 struct drm_connector_list_iter iter;
10403 u8 link_coding_cap;
10405 drm_connector_list_iter_begin(dev, &iter);
10406 drm_for_each_connector_iter(connector, &iter) {
10407 if (connector->index == mst_state->mgr->conn_base_id) {
10408 aconnector = to_amdgpu_dm_connector(connector);
10409 link_coding_cap = dc_link_dp_mst_decide_link_encoding_format(aconnector->dc_link);
10410 drm_dp_mst_update_slots(mst_state, link_coding_cap);
10415 drm_connector_list_iter_end(&iter);
10419 * Streams and planes are reset when there are changes that affect
10420 * bandwidth. Anything that affects bandwidth needs to go through
10421 * DC global validation to ensure that the configuration can be applied
10424 * We have to currently stall out here in atomic_check for outstanding
10425 * commits to finish in this case because our IRQ handlers reference
10426 * DRM state directly - we can end up disabling interrupts too early
10429 * TODO: Remove this stall and drop DM state private objects.
10431 if (lock_and_validation_needed) {
10432 ret = dm_atomic_get_state(state, &dm_state);
10434 DRM_DEBUG_DRIVER("dm_atomic_get_state() failed\n");
10438 ret = do_aquire_global_lock(dev, state);
10440 DRM_DEBUG_DRIVER("do_aquire_global_lock() failed\n");
10444 ret = compute_mst_dsc_configs_for_state(state, dm_state->context, vars);
10446 DRM_DEBUG_DRIVER("compute_mst_dsc_configs_for_state() failed\n");
10451 ret = dm_update_mst_vcpi_slots_for_dsc(state, dm_state->context, vars);
10453 DRM_DEBUG_DRIVER("dm_update_mst_vcpi_slots_for_dsc() failed\n");
10458 * Perform validation of MST topology in the state:
10459 * We need to perform MST atomic check before calling
10460 * dc_validate_global_state(), or there is a chance
10461 * to get stuck in an infinite loop and hang eventually.
10463 ret = drm_dp_mst_atomic_check(state);
10465 DRM_DEBUG_DRIVER("drm_dp_mst_atomic_check() failed\n");
10468 status = dc_validate_global_state(dc, dm_state->context, true);
10469 if (status != DC_OK) {
10470 DRM_DEBUG_DRIVER("DC global validation failure: %s (%d)",
10471 dc_status_to_str(status), status);
10477 * The commit is a fast update. Fast updates shouldn't change
10478 * the DC context, affect global validation, and can have their
10479 * commit work done in parallel with other commits not touching
10480 * the same resource. If we have a new DC context as part of
10481 * the DM atomic state from validation we need to free it and
10482 * retain the existing one instead.
10484 * Furthermore, since the DM atomic state only contains the DC
10485 * context and can safely be annulled, we can free the state
10486 * and clear the associated private object now to free
10487 * some memory and avoid a possible use-after-free later.
10490 for (i = 0; i < state->num_private_objs; i++) {
10491 struct drm_private_obj *obj = state->private_objs[i].ptr;
10493 if (obj->funcs == adev->dm.atomic_obj.funcs) {
10494 int j = state->num_private_objs-1;
10496 dm_atomic_destroy_state(obj,
10497 state->private_objs[i].state);
10499 /* If i is not at the end of the array then the
10500 * last element needs to be moved to where i was
10501 * before the array can safely be truncated.
10504 state->private_objs[i] =
10505 state->private_objs[j];
10507 state->private_objs[j].ptr = NULL;
10508 state->private_objs[j].state = NULL;
10509 state->private_objs[j].old_state = NULL;
10510 state->private_objs[j].new_state = NULL;
10512 state->num_private_objs = j;
10518 /* Store the overall update type for use later in atomic check. */
10519 for_each_new_crtc_in_state(state, crtc, new_crtc_state, i) {
10520 struct dm_crtc_state *dm_new_crtc_state =
10521 to_dm_crtc_state(new_crtc_state);
10524 * Only allow async flips for fast updates that don't change
10525 * the FB pitch, the DCC state, rotation, etc.
10527 if (new_crtc_state->async_flip && lock_and_validation_needed) {
10528 drm_dbg_atomic(crtc->dev,
10529 "[CRTC:%d:%s] async flips are only supported for fast updates\n",
10530 crtc->base.id, crtc->name);
10535 dm_new_crtc_state->update_type = lock_and_validation_needed ?
10536 UPDATE_TYPE_FULL : UPDATE_TYPE_FAST;
10539 /* Must be success */
10542 trace_amdgpu_dm_atomic_check_finish(state, ret);
10547 if (ret == -EDEADLK)
10548 DRM_DEBUG_DRIVER("Atomic check stopped to avoid deadlock.\n");
10549 else if (ret == -EINTR || ret == -EAGAIN || ret == -ERESTARTSYS)
10550 DRM_DEBUG_DRIVER("Atomic check stopped due to signal.\n");
10552 DRM_DEBUG_DRIVER("Atomic check failed with err: %d\n", ret);
10554 trace_amdgpu_dm_atomic_check_finish(state, ret);
10559 static bool is_dp_capable_without_timing_msa(struct dc *dc,
10560 struct amdgpu_dm_connector *amdgpu_dm_connector)
10563 bool capable = false;
10565 if (amdgpu_dm_connector->dc_link &&
10566 dm_helpers_dp_read_dpcd(
10568 amdgpu_dm_connector->dc_link,
10569 DP_DOWN_STREAM_PORT_COUNT,
10571 sizeof(dpcd_data))) {
10572 capable = (dpcd_data & DP_MSA_TIMING_PAR_IGNORED) ? true:false;
10578 static bool dm_edid_parser_send_cea(struct amdgpu_display_manager *dm,
10579 unsigned int offset,
10580 unsigned int total_length,
10582 unsigned int length,
10583 struct amdgpu_hdmi_vsdb_info *vsdb)
10586 union dmub_rb_cmd cmd;
10587 struct dmub_cmd_send_edid_cea *input;
10588 struct dmub_cmd_edid_cea_output *output;
10590 if (length > DMUB_EDID_CEA_DATA_CHUNK_BYTES)
10593 memset(&cmd, 0, sizeof(cmd));
10595 input = &cmd.edid_cea.data.input;
10597 cmd.edid_cea.header.type = DMUB_CMD__EDID_CEA;
10598 cmd.edid_cea.header.sub_type = 0;
10599 cmd.edid_cea.header.payload_bytes =
10600 sizeof(cmd.edid_cea) - sizeof(cmd.edid_cea.header);
10601 input->offset = offset;
10602 input->length = length;
10603 input->cea_total_length = total_length;
10604 memcpy(input->payload, data, length);
10606 res = dm_execute_dmub_cmd(dm->dc->ctx, &cmd, DM_DMUB_WAIT_TYPE_WAIT_WITH_REPLY);
10608 DRM_ERROR("EDID CEA parser failed\n");
10612 output = &cmd.edid_cea.data.output;
10614 if (output->type == DMUB_CMD__EDID_CEA_ACK) {
10615 if (!output->ack.success) {
10616 DRM_ERROR("EDID CEA ack failed at offset %d\n",
10617 output->ack.offset);
10619 } else if (output->type == DMUB_CMD__EDID_CEA_AMD_VSDB) {
10620 if (!output->amd_vsdb.vsdb_found)
10623 vsdb->freesync_supported = output->amd_vsdb.freesync_supported;
10624 vsdb->amd_vsdb_version = output->amd_vsdb.amd_vsdb_version;
10625 vsdb->min_refresh_rate_hz = output->amd_vsdb.min_frame_rate;
10626 vsdb->max_refresh_rate_hz = output->amd_vsdb.max_frame_rate;
10628 DRM_WARN("Unknown EDID CEA parser results\n");
10635 static bool parse_edid_cea_dmcu(struct amdgpu_display_manager *dm,
10636 u8 *edid_ext, int len,
10637 struct amdgpu_hdmi_vsdb_info *vsdb_info)
10641 /* send extension block to DMCU for parsing */
10642 for (i = 0; i < len; i += 8) {
10646 /* send 8 bytes a time */
10647 if (!dc_edid_parser_send_cea(dm->dc, i, len, &edid_ext[i], 8))
10651 /* EDID block sent completed, expect result */
10652 int version, min_rate, max_rate;
10654 res = dc_edid_parser_recv_amd_vsdb(dm->dc, &version, &min_rate, &max_rate);
10656 /* amd vsdb found */
10657 vsdb_info->freesync_supported = 1;
10658 vsdb_info->amd_vsdb_version = version;
10659 vsdb_info->min_refresh_rate_hz = min_rate;
10660 vsdb_info->max_refresh_rate_hz = max_rate;
10668 res = dc_edid_parser_recv_cea_ack(dm->dc, &offset);
10676 static bool parse_edid_cea_dmub(struct amdgpu_display_manager *dm,
10677 u8 *edid_ext, int len,
10678 struct amdgpu_hdmi_vsdb_info *vsdb_info)
10682 /* send extension block to DMCU for parsing */
10683 for (i = 0; i < len; i += 8) {
10684 /* send 8 bytes a time */
10685 if (!dm_edid_parser_send_cea(dm, i, len, &edid_ext[i], 8, vsdb_info))
10689 return vsdb_info->freesync_supported;
10692 static bool parse_edid_cea(struct amdgpu_dm_connector *aconnector,
10693 u8 *edid_ext, int len,
10694 struct amdgpu_hdmi_vsdb_info *vsdb_info)
10696 struct amdgpu_device *adev = drm_to_adev(aconnector->base.dev);
10699 mutex_lock(&adev->dm.dc_lock);
10700 if (adev->dm.dmub_srv)
10701 ret = parse_edid_cea_dmub(&adev->dm, edid_ext, len, vsdb_info);
10703 ret = parse_edid_cea_dmcu(&adev->dm, edid_ext, len, vsdb_info);
10704 mutex_unlock(&adev->dm.dc_lock);
10708 static int parse_amd_vsdb(struct amdgpu_dm_connector *aconnector,
10709 struct edid *edid, struct amdgpu_hdmi_vsdb_info *vsdb_info)
10711 u8 *edid_ext = NULL;
10715 if (edid == NULL || edid->extensions == 0)
10718 /* Find DisplayID extension */
10719 for (i = 0; i < edid->extensions; i++) {
10720 edid_ext = (void *)(edid + (i + 1));
10721 if (edid_ext[0] == DISPLAYID_EXT)
10725 while (j < EDID_LENGTH) {
10726 struct amd_vsdb_block *amd_vsdb = (struct amd_vsdb_block *)&edid_ext[j];
10727 unsigned int ieeeId = (amd_vsdb->ieee_id[2] << 16) | (amd_vsdb->ieee_id[1] << 8) | (amd_vsdb->ieee_id[0]);
10729 if (ieeeId == HDMI_AMD_VENDOR_SPECIFIC_DATA_BLOCK_IEEE_REGISTRATION_ID &&
10730 amd_vsdb->version == HDMI_AMD_VENDOR_SPECIFIC_DATA_BLOCK_VERSION_3) {
10731 vsdb_info->replay_mode = (amd_vsdb->feature_caps & AMD_VSDB_VERSION_3_FEATURECAP_REPLAYMODE) ? true : false;
10732 vsdb_info->amd_vsdb_version = HDMI_AMD_VENDOR_SPECIFIC_DATA_BLOCK_VERSION_3;
10733 DRM_DEBUG_KMS("Panel supports Replay Mode: %d\n", vsdb_info->replay_mode);
10743 static int parse_hdmi_amd_vsdb(struct amdgpu_dm_connector *aconnector,
10744 struct edid *edid, struct amdgpu_hdmi_vsdb_info *vsdb_info)
10746 u8 *edid_ext = NULL;
10748 bool valid_vsdb_found = false;
10750 /*----- drm_find_cea_extension() -----*/
10751 /* No EDID or EDID extensions */
10752 if (edid == NULL || edid->extensions == 0)
10755 /* Find CEA extension */
10756 for (i = 0; i < edid->extensions; i++) {
10757 edid_ext = (uint8_t *)edid + EDID_LENGTH * (i + 1);
10758 if (edid_ext[0] == CEA_EXT)
10762 if (i == edid->extensions)
10765 /*----- cea_db_offsets() -----*/
10766 if (edid_ext[0] != CEA_EXT)
10769 valid_vsdb_found = parse_edid_cea(aconnector, edid_ext, EDID_LENGTH, vsdb_info);
10771 return valid_vsdb_found ? i : -ENODEV;
10775 * amdgpu_dm_update_freesync_caps - Update Freesync capabilities
10777 * @connector: Connector to query.
10778 * @edid: EDID from monitor
10780 * Amdgpu supports Freesync in DP and HDMI displays, and it is required to keep
10781 * track of some of the display information in the internal data struct used by
10782 * amdgpu_dm. This function checks which type of connector we need to set the
10783 * FreeSync parameters.
10785 void amdgpu_dm_update_freesync_caps(struct drm_connector *connector,
10789 struct detailed_timing *timing;
10790 struct detailed_non_pixel *data;
10791 struct detailed_data_monitor_range *range;
10792 struct amdgpu_dm_connector *amdgpu_dm_connector =
10793 to_amdgpu_dm_connector(connector);
10794 struct dm_connector_state *dm_con_state = NULL;
10795 struct dc_sink *sink;
10797 struct drm_device *dev = connector->dev;
10798 struct amdgpu_device *adev = drm_to_adev(dev);
10799 struct amdgpu_hdmi_vsdb_info vsdb_info = {0};
10800 bool freesync_capable = false;
10801 enum adaptive_sync_type as_type = ADAPTIVE_SYNC_TYPE_NONE;
10803 if (!connector->state) {
10804 DRM_ERROR("%s - Connector has no state", __func__);
10808 sink = amdgpu_dm_connector->dc_sink ?
10809 amdgpu_dm_connector->dc_sink :
10810 amdgpu_dm_connector->dc_em_sink;
10812 if (!edid || !sink) {
10813 dm_con_state = to_dm_connector_state(connector->state);
10815 amdgpu_dm_connector->min_vfreq = 0;
10816 amdgpu_dm_connector->max_vfreq = 0;
10817 amdgpu_dm_connector->pixel_clock_mhz = 0;
10818 connector->display_info.monitor_range.min_vfreq = 0;
10819 connector->display_info.monitor_range.max_vfreq = 0;
10820 freesync_capable = false;
10825 dm_con_state = to_dm_connector_state(connector->state);
10827 if (!adev->dm.freesync_module)
10830 if (sink->sink_signal == SIGNAL_TYPE_DISPLAY_PORT
10831 || sink->sink_signal == SIGNAL_TYPE_EDP) {
10832 bool edid_check_required = false;
10835 edid_check_required = is_dp_capable_without_timing_msa(
10837 amdgpu_dm_connector);
10840 if (edid_check_required == true && (edid->version > 1 ||
10841 (edid->version == 1 && edid->revision > 1))) {
10842 for (i = 0; i < 4; i++) {
10844 timing = &edid->detailed_timings[i];
10845 data = &timing->data.other_data;
10846 range = &data->data.range;
10848 * Check if monitor has continuous frequency mode
10850 if (data->type != EDID_DETAIL_MONITOR_RANGE)
10853 * Check for flag range limits only. If flag == 1 then
10854 * no additional timing information provided.
10855 * Default GTF, GTF Secondary curve and CVT are not
10858 if (range->flags != 1)
10861 amdgpu_dm_connector->min_vfreq = range->min_vfreq;
10862 amdgpu_dm_connector->max_vfreq = range->max_vfreq;
10863 amdgpu_dm_connector->pixel_clock_mhz =
10864 range->pixel_clock_mhz * 10;
10866 connector->display_info.monitor_range.min_vfreq = range->min_vfreq;
10867 connector->display_info.monitor_range.max_vfreq = range->max_vfreq;
10872 if (amdgpu_dm_connector->max_vfreq -
10873 amdgpu_dm_connector->min_vfreq > 10) {
10875 freesync_capable = true;
10878 parse_amd_vsdb(amdgpu_dm_connector, edid, &vsdb_info);
10880 if (vsdb_info.replay_mode) {
10881 amdgpu_dm_connector->vsdb_info.replay_mode = vsdb_info.replay_mode;
10882 amdgpu_dm_connector->vsdb_info.amd_vsdb_version = vsdb_info.amd_vsdb_version;
10883 amdgpu_dm_connector->as_type = ADAPTIVE_SYNC_TYPE_EDP;
10886 } else if (edid && sink->sink_signal == SIGNAL_TYPE_HDMI_TYPE_A) {
10887 i = parse_hdmi_amd_vsdb(amdgpu_dm_connector, edid, &vsdb_info);
10888 if (i >= 0 && vsdb_info.freesync_supported) {
10889 timing = &edid->detailed_timings[i];
10890 data = &timing->data.other_data;
10892 amdgpu_dm_connector->min_vfreq = vsdb_info.min_refresh_rate_hz;
10893 amdgpu_dm_connector->max_vfreq = vsdb_info.max_refresh_rate_hz;
10894 if (amdgpu_dm_connector->max_vfreq - amdgpu_dm_connector->min_vfreq > 10)
10895 freesync_capable = true;
10897 connector->display_info.monitor_range.min_vfreq = vsdb_info.min_refresh_rate_hz;
10898 connector->display_info.monitor_range.max_vfreq = vsdb_info.max_refresh_rate_hz;
10902 as_type = dm_get_adaptive_sync_support_type(amdgpu_dm_connector->dc_link);
10904 if (as_type == FREESYNC_TYPE_PCON_IN_WHITELIST) {
10905 i = parse_hdmi_amd_vsdb(amdgpu_dm_connector, edid, &vsdb_info);
10906 if (i >= 0 && vsdb_info.freesync_supported && vsdb_info.amd_vsdb_version > 0) {
10908 amdgpu_dm_connector->pack_sdp_v1_3 = true;
10909 amdgpu_dm_connector->as_type = as_type;
10910 amdgpu_dm_connector->vsdb_info = vsdb_info;
10912 amdgpu_dm_connector->min_vfreq = vsdb_info.min_refresh_rate_hz;
10913 amdgpu_dm_connector->max_vfreq = vsdb_info.max_refresh_rate_hz;
10914 if (amdgpu_dm_connector->max_vfreq - amdgpu_dm_connector->min_vfreq > 10)
10915 freesync_capable = true;
10917 connector->display_info.monitor_range.min_vfreq = vsdb_info.min_refresh_rate_hz;
10918 connector->display_info.monitor_range.max_vfreq = vsdb_info.max_refresh_rate_hz;
10924 dm_con_state->freesync_capable = freesync_capable;
10926 if (connector->vrr_capable_property)
10927 drm_connector_set_vrr_capable_property(connector,
10931 void amdgpu_dm_trigger_timing_sync(struct drm_device *dev)
10933 struct amdgpu_device *adev = drm_to_adev(dev);
10934 struct dc *dc = adev->dm.dc;
10937 mutex_lock(&adev->dm.dc_lock);
10938 if (dc->current_state) {
10939 for (i = 0; i < dc->current_state->stream_count; ++i)
10940 dc->current_state->streams[i]
10941 ->triggered_crtc_reset.enabled =
10942 adev->dm.force_timing_sync;
10944 dm_enable_per_frame_crtc_master_sync(dc->current_state);
10945 dc_trigger_sync(dc, dc->current_state);
10947 mutex_unlock(&adev->dm.dc_lock);
10950 void dm_write_reg_func(const struct dc_context *ctx, uint32_t address,
10951 u32 value, const char *func_name)
10953 #ifdef DM_CHECK_ADDR_0
10954 if (address == 0) {
10955 drm_err(adev_to_drm(ctx->driver_context),
10956 "invalid register write. address = 0");
10960 cgs_write_register(ctx->cgs_device, address, value);
10961 trace_amdgpu_dc_wreg(&ctx->perf_trace->write_count, address, value);
10964 uint32_t dm_read_reg_func(const struct dc_context *ctx, uint32_t address,
10965 const char *func_name)
10968 #ifdef DM_CHECK_ADDR_0
10969 if (address == 0) {
10970 drm_err(adev_to_drm(ctx->driver_context),
10971 "invalid register read; address = 0\n");
10976 if (ctx->dmub_srv &&
10977 ctx->dmub_srv->reg_helper_offload.gather_in_progress &&
10978 !ctx->dmub_srv->reg_helper_offload.should_burst_write) {
10983 value = cgs_read_register(ctx->cgs_device, address);
10985 trace_amdgpu_dc_rreg(&ctx->perf_trace->read_count, address, value);
10990 int amdgpu_dm_process_dmub_aux_transfer_sync(
10991 struct dc_context *ctx,
10992 unsigned int link_index,
10993 struct aux_payload *payload,
10994 enum aux_return_code_type *operation_result)
10996 struct amdgpu_device *adev = ctx->driver_context;
10997 struct dmub_notification *p_notify = adev->dm.dmub_notify;
11000 mutex_lock(&adev->dm.dpia_aux_lock);
11001 if (!dc_process_dmub_aux_transfer_async(ctx->dc, link_index, payload)) {
11002 *operation_result = AUX_RET_ERROR_ENGINE_ACQUIRE;
11006 if (!wait_for_completion_timeout(&adev->dm.dmub_aux_transfer_done, 10 * HZ)) {
11007 DRM_ERROR("wait_for_completion_timeout timeout!");
11008 *operation_result = AUX_RET_ERROR_TIMEOUT;
11012 if (p_notify->result != AUX_RET_SUCCESS) {
11014 * Transient states before tunneling is enabled could
11015 * lead to this error. We can ignore this for now.
11017 if (p_notify->result != AUX_RET_ERROR_PROTOCOL_ERROR) {
11018 DRM_WARN("DPIA AUX failed on 0x%x(%d), error %d\n",
11019 payload->address, payload->length,
11022 *operation_result = AUX_RET_ERROR_INVALID_REPLY;
11027 payload->reply[0] = adev->dm.dmub_notify->aux_reply.command;
11028 if (!payload->write && p_notify->aux_reply.length &&
11029 (payload->reply[0] == AUX_TRANSACTION_REPLY_AUX_ACK)) {
11031 if (payload->length != p_notify->aux_reply.length) {
11032 DRM_WARN("invalid read length %d from DPIA AUX 0x%x(%d)!\n",
11033 p_notify->aux_reply.length,
11034 payload->address, payload->length);
11035 *operation_result = AUX_RET_ERROR_INVALID_REPLY;
11039 memcpy(payload->data, p_notify->aux_reply.data,
11040 p_notify->aux_reply.length);
11044 ret = p_notify->aux_reply.length;
11045 *operation_result = p_notify->result;
11047 reinit_completion(&adev->dm.dmub_aux_transfer_done);
11048 mutex_unlock(&adev->dm.dpia_aux_lock);
11052 int amdgpu_dm_process_dmub_set_config_sync(
11053 struct dc_context *ctx,
11054 unsigned int link_index,
11055 struct set_config_cmd_payload *payload,
11056 enum set_config_status *operation_result)
11058 struct amdgpu_device *adev = ctx->driver_context;
11059 bool is_cmd_complete;
11062 mutex_lock(&adev->dm.dpia_aux_lock);
11063 is_cmd_complete = dc_process_dmub_set_config_async(ctx->dc,
11064 link_index, payload, adev->dm.dmub_notify);
11066 if (is_cmd_complete || wait_for_completion_timeout(&adev->dm.dmub_aux_transfer_done, 10 * HZ)) {
11068 *operation_result = adev->dm.dmub_notify->sc_status;
11070 DRM_ERROR("wait_for_completion_timeout timeout!");
11072 *operation_result = SET_CONFIG_UNKNOWN_ERROR;
11075 if (!is_cmd_complete)
11076 reinit_completion(&adev->dm.dmub_aux_transfer_done);
11077 mutex_unlock(&adev->dm.dpia_aux_lock);
11081 bool dm_execute_dmub_cmd(const struct dc_context *ctx, union dmub_rb_cmd *cmd, enum dm_dmub_wait_type wait_type)
11083 return dc_dmub_srv_cmd_run(ctx->dmub_srv, cmd, wait_type);
11086 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)
11088 return dc_dmub_srv_cmd_run_list(ctx->dmub_srv, count, cmd, wait_type);