xref: /linux/drivers/gpu/drm/amd/display/amdgpu_dm/amdgpu_dm.c (revision 3cc808e3239cf566b3d3b15cf2beee066b60f241)
1 /*
2  * Copyright 2015 Advanced Micro Devices, Inc.
3  *
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:
10  *
11  * The above copyright notice and this permission notice shall be included in
12  * all copies or substantial portions of the Software.
13  *
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.
21  *
22  * Authors: AMD
23  *
24  */
25 
26 /* The caprices of the preprocessor require that this be declared right here */
27 #define CREATE_TRACE_POINTS
28 
29 #include "dm_services_types.h"
30 #include "dc.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"
46 
47 #include "vid.h"
48 #include "amdgpu.h"
49 #include "amdgpu_display.h"
50 #include "amdgpu_ucode.h"
51 #include "atom.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"
59 
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"
66 #endif
67 #include "amdgpu_dm_psr.h"
68 #include "amdgpu_dm_replay.h"
69 
70 #include "ivsrcid/ivsrcid_vislands30.h"
71 
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>
81 
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_fixed.h>
89 #include <drm/drm_fourcc.h>
90 #include <drm/drm_edid.h>
91 #include <drm/drm_eld.h>
92 #include <drm/drm_vblank.h>
93 #include <drm/drm_audio_component.h>
94 #include <drm/drm_gem_atomic_helper.h>
95 #include <drm/drm_plane_helper.h>
96 
97 #include <acpi/video.h>
98 
99 #include "ivsrcid/dcn/irqsrcs_dcn_1_0.h"
100 
101 #include "dcn/dcn_1_0_offset.h"
102 #include "dcn/dcn_1_0_sh_mask.h"
103 #include "soc15_hw_ip.h"
104 #include "soc15_common.h"
105 #include "vega10_ip_offset.h"
106 
107 #include "gc/gc_11_0_0_offset.h"
108 #include "gc/gc_11_0_0_sh_mask.h"
109 
110 #include "modules/inc/mod_freesync.h"
111 #include "modules/power/power_helpers.h"
112 
113 #define FIRMWARE_RENOIR_DMUB "amdgpu/renoir_dmcub.bin"
114 MODULE_FIRMWARE(FIRMWARE_RENOIR_DMUB);
115 #define FIRMWARE_SIENNA_CICHLID_DMUB "amdgpu/sienna_cichlid_dmcub.bin"
116 MODULE_FIRMWARE(FIRMWARE_SIENNA_CICHLID_DMUB);
117 #define FIRMWARE_NAVY_FLOUNDER_DMUB "amdgpu/navy_flounder_dmcub.bin"
118 MODULE_FIRMWARE(FIRMWARE_NAVY_FLOUNDER_DMUB);
119 #define FIRMWARE_GREEN_SARDINE_DMUB "amdgpu/green_sardine_dmcub.bin"
120 MODULE_FIRMWARE(FIRMWARE_GREEN_SARDINE_DMUB);
121 #define FIRMWARE_VANGOGH_DMUB "amdgpu/vangogh_dmcub.bin"
122 MODULE_FIRMWARE(FIRMWARE_VANGOGH_DMUB);
123 #define FIRMWARE_DIMGREY_CAVEFISH_DMUB "amdgpu/dimgrey_cavefish_dmcub.bin"
124 MODULE_FIRMWARE(FIRMWARE_DIMGREY_CAVEFISH_DMUB);
125 #define FIRMWARE_BEIGE_GOBY_DMUB "amdgpu/beige_goby_dmcub.bin"
126 MODULE_FIRMWARE(FIRMWARE_BEIGE_GOBY_DMUB);
127 #define FIRMWARE_YELLOW_CARP_DMUB "amdgpu/yellow_carp_dmcub.bin"
128 MODULE_FIRMWARE(FIRMWARE_YELLOW_CARP_DMUB);
129 #define FIRMWARE_DCN_314_DMUB "amdgpu/dcn_3_1_4_dmcub.bin"
130 MODULE_FIRMWARE(FIRMWARE_DCN_314_DMUB);
131 #define FIRMWARE_DCN_315_DMUB "amdgpu/dcn_3_1_5_dmcub.bin"
132 MODULE_FIRMWARE(FIRMWARE_DCN_315_DMUB);
133 #define FIRMWARE_DCN316_DMUB "amdgpu/dcn_3_1_6_dmcub.bin"
134 MODULE_FIRMWARE(FIRMWARE_DCN316_DMUB);
135 
136 #define FIRMWARE_DCN_V3_2_0_DMCUB "amdgpu/dcn_3_2_0_dmcub.bin"
137 MODULE_FIRMWARE(FIRMWARE_DCN_V3_2_0_DMCUB);
138 #define FIRMWARE_DCN_V3_2_1_DMCUB "amdgpu/dcn_3_2_1_dmcub.bin"
139 MODULE_FIRMWARE(FIRMWARE_DCN_V3_2_1_DMCUB);
140 
141 #define FIRMWARE_RAVEN_DMCU		"amdgpu/raven_dmcu.bin"
142 MODULE_FIRMWARE(FIRMWARE_RAVEN_DMCU);
143 
144 #define FIRMWARE_NAVI12_DMCU            "amdgpu/navi12_dmcu.bin"
145 MODULE_FIRMWARE(FIRMWARE_NAVI12_DMCU);
146 
147 #define FIRMWARE_DCN_35_DMUB "amdgpu/dcn_3_5_dmcub.bin"
148 MODULE_FIRMWARE(FIRMWARE_DCN_35_DMUB);
149 
150 /* Number of bytes in PSP header for firmware. */
151 #define PSP_HEADER_BYTES 0x100
152 
153 /* Number of bytes in PSP footer for firmware. */
154 #define PSP_FOOTER_BYTES 0x100
155 
156 /**
157  * DOC: overview
158  *
159  * The AMDgpu display manager, **amdgpu_dm** (or even simpler,
160  * **dm**) sits between DRM and DC. It acts as a liaison, converting DRM
161  * requests into DC requests, and DC responses into DRM responses.
162  *
163  * The root control structure is &struct amdgpu_display_manager.
164  */
165 
166 /* basic init/fini API */
167 static int amdgpu_dm_init(struct amdgpu_device *adev);
168 static void amdgpu_dm_fini(struct amdgpu_device *adev);
169 static bool is_freesync_video_mode(const struct drm_display_mode *mode, struct amdgpu_dm_connector *aconnector);
170 
171 static enum drm_mode_subconnector get_subconnector_type(struct dc_link *link)
172 {
173 	switch (link->dpcd_caps.dongle_type) {
174 	case DISPLAY_DONGLE_NONE:
175 		return DRM_MODE_SUBCONNECTOR_Native;
176 	case DISPLAY_DONGLE_DP_VGA_CONVERTER:
177 		return DRM_MODE_SUBCONNECTOR_VGA;
178 	case DISPLAY_DONGLE_DP_DVI_CONVERTER:
179 	case DISPLAY_DONGLE_DP_DVI_DONGLE:
180 		return DRM_MODE_SUBCONNECTOR_DVID;
181 	case DISPLAY_DONGLE_DP_HDMI_CONVERTER:
182 	case DISPLAY_DONGLE_DP_HDMI_DONGLE:
183 		return DRM_MODE_SUBCONNECTOR_HDMIA;
184 	case DISPLAY_DONGLE_DP_HDMI_MISMATCHED_DONGLE:
185 	default:
186 		return DRM_MODE_SUBCONNECTOR_Unknown;
187 	}
188 }
189 
190 static void update_subconnector_property(struct amdgpu_dm_connector *aconnector)
191 {
192 	struct dc_link *link = aconnector->dc_link;
193 	struct drm_connector *connector = &aconnector->base;
194 	enum drm_mode_subconnector subconnector = DRM_MODE_SUBCONNECTOR_Unknown;
195 
196 	if (connector->connector_type != DRM_MODE_CONNECTOR_DisplayPort)
197 		return;
198 
199 	if (aconnector->dc_sink)
200 		subconnector = get_subconnector_type(link);
201 
202 	drm_object_property_set_value(&connector->base,
203 			connector->dev->mode_config.dp_subconnector_property,
204 			subconnector);
205 }
206 
207 /*
208  * initializes drm_device display related structures, based on the information
209  * provided by DAL. The drm strcutures are: drm_crtc, drm_connector,
210  * drm_encoder, drm_mode_config
211  *
212  * Returns 0 on success
213  */
214 static int amdgpu_dm_initialize_drm_device(struct amdgpu_device *adev);
215 /* removes and deallocates the drm structures, created by the above function */
216 static void amdgpu_dm_destroy_drm_device(struct amdgpu_display_manager *dm);
217 
218 static int amdgpu_dm_connector_init(struct amdgpu_display_manager *dm,
219 				    struct amdgpu_dm_connector *amdgpu_dm_connector,
220 				    u32 link_index,
221 				    struct amdgpu_encoder *amdgpu_encoder);
222 static int amdgpu_dm_encoder_init(struct drm_device *dev,
223 				  struct amdgpu_encoder *aencoder,
224 				  uint32_t link_index);
225 
226 static int amdgpu_dm_connector_get_modes(struct drm_connector *connector);
227 
228 static void amdgpu_dm_atomic_commit_tail(struct drm_atomic_state *state);
229 
230 static int amdgpu_dm_atomic_check(struct drm_device *dev,
231 				  struct drm_atomic_state *state);
232 
233 static void handle_hpd_irq_helper(struct amdgpu_dm_connector *aconnector);
234 static void handle_hpd_rx_irq(void *param);
235 
236 static bool
237 is_timing_unchanged_for_freesync(struct drm_crtc_state *old_crtc_state,
238 				 struct drm_crtc_state *new_crtc_state);
239 /*
240  * dm_vblank_get_counter
241  *
242  * @brief
243  * Get counter for number of vertical blanks
244  *
245  * @param
246  * struct amdgpu_device *adev - [in] desired amdgpu device
247  * int disp_idx - [in] which CRTC to get the counter from
248  *
249  * @return
250  * Counter for vertical blanks
251  */
252 static u32 dm_vblank_get_counter(struct amdgpu_device *adev, int crtc)
253 {
254 	struct amdgpu_crtc *acrtc = NULL;
255 
256 	if (crtc >= adev->mode_info.num_crtc)
257 		return 0;
258 
259 	acrtc = adev->mode_info.crtcs[crtc];
260 
261 	if (!acrtc->dm_irq_params.stream) {
262 		DRM_ERROR("dc_stream_state is NULL for crtc '%d'!\n",
263 			  crtc);
264 		return 0;
265 	}
266 
267 	return dc_stream_get_vblank_counter(acrtc->dm_irq_params.stream);
268 }
269 
270 static int dm_crtc_get_scanoutpos(struct amdgpu_device *adev, int crtc,
271 				  u32 *vbl, u32 *position)
272 {
273 	u32 v_blank_start, v_blank_end, h_position, v_position;
274 	struct amdgpu_crtc *acrtc = NULL;
275 
276 	if ((crtc < 0) || (crtc >= adev->mode_info.num_crtc))
277 		return -EINVAL;
278 
279 	acrtc = adev->mode_info.crtcs[crtc];
280 
281 	if (!acrtc->dm_irq_params.stream) {
282 		DRM_ERROR("dc_stream_state is NULL for crtc '%d'!\n",
283 			  crtc);
284 		return 0;
285 	}
286 
287 	/*
288 	 * TODO rework base driver to use values directly.
289 	 * for now parse it back into reg-format
290 	 */
291 	dc_stream_get_scanoutpos(acrtc->dm_irq_params.stream,
292 				 &v_blank_start,
293 				 &v_blank_end,
294 				 &h_position,
295 				 &v_position);
296 
297 	*position = v_position | (h_position << 16);
298 	*vbl = v_blank_start | (v_blank_end << 16);
299 
300 	return 0;
301 }
302 
303 static bool dm_is_idle(void *handle)
304 {
305 	/* XXX todo */
306 	return true;
307 }
308 
309 static int dm_wait_for_idle(void *handle)
310 {
311 	/* XXX todo */
312 	return 0;
313 }
314 
315 static bool dm_check_soft_reset(void *handle)
316 {
317 	return false;
318 }
319 
320 static int dm_soft_reset(void *handle)
321 {
322 	/* XXX todo */
323 	return 0;
324 }
325 
326 static struct amdgpu_crtc *
327 get_crtc_by_otg_inst(struct amdgpu_device *adev,
328 		     int otg_inst)
329 {
330 	struct drm_device *dev = adev_to_drm(adev);
331 	struct drm_crtc *crtc;
332 	struct amdgpu_crtc *amdgpu_crtc;
333 
334 	if (WARN_ON(otg_inst == -1))
335 		return adev->mode_info.crtcs[0];
336 
337 	list_for_each_entry(crtc, &dev->mode_config.crtc_list, head) {
338 		amdgpu_crtc = to_amdgpu_crtc(crtc);
339 
340 		if (amdgpu_crtc->otg_inst == otg_inst)
341 			return amdgpu_crtc;
342 	}
343 
344 	return NULL;
345 }
346 
347 static inline bool is_dc_timing_adjust_needed(struct dm_crtc_state *old_state,
348 					      struct dm_crtc_state *new_state)
349 {
350 	if (new_state->freesync_config.state ==  VRR_STATE_ACTIVE_FIXED)
351 		return true;
352 	else if (amdgpu_dm_crtc_vrr_active(old_state) != amdgpu_dm_crtc_vrr_active(new_state))
353 		return true;
354 	else
355 		return false;
356 }
357 
358 static inline void reverse_planes_order(struct dc_surface_update *array_of_surface_update,
359 					int planes_count)
360 {
361 	int i, j;
362 
363 	for (i = 0, j = planes_count - 1; i < j; i++, j--)
364 		swap(array_of_surface_update[i], array_of_surface_update[j]);
365 }
366 
367 /**
368  * update_planes_and_stream_adapter() - Send planes to be updated in DC
369  *
370  * DC has a generic way to update planes and stream via
371  * dc_update_planes_and_stream function; however, DM might need some
372  * adjustments and preparation before calling it. This function is a wrapper
373  * for the dc_update_planes_and_stream that does any required configuration
374  * before passing control to DC.
375  *
376  * @dc: Display Core control structure
377  * @update_type: specify whether it is FULL/MEDIUM/FAST update
378  * @planes_count: planes count to update
379  * @stream: stream state
380  * @stream_update: stream update
381  * @array_of_surface_update: dc surface update pointer
382  *
383  */
384 static inline bool update_planes_and_stream_adapter(struct dc *dc,
385 						    int update_type,
386 						    int planes_count,
387 						    struct dc_stream_state *stream,
388 						    struct dc_stream_update *stream_update,
389 						    struct dc_surface_update *array_of_surface_update)
390 {
391 	reverse_planes_order(array_of_surface_update, planes_count);
392 
393 	/*
394 	 * Previous frame finished and HW is ready for optimization.
395 	 */
396 	if (update_type == UPDATE_TYPE_FAST)
397 		dc_post_update_surfaces_to_stream(dc);
398 
399 	return dc_update_planes_and_stream(dc,
400 					   array_of_surface_update,
401 					   planes_count,
402 					   stream,
403 					   stream_update);
404 }
405 
406 /**
407  * dm_pflip_high_irq() - Handle pageflip interrupt
408  * @interrupt_params: ignored
409  *
410  * Handles the pageflip interrupt by notifying all interested parties
411  * that the pageflip has been completed.
412  */
413 static void dm_pflip_high_irq(void *interrupt_params)
414 {
415 	struct amdgpu_crtc *amdgpu_crtc;
416 	struct common_irq_params *irq_params = interrupt_params;
417 	struct amdgpu_device *adev = irq_params->adev;
418 	struct drm_device *dev = adev_to_drm(adev);
419 	unsigned long flags;
420 	struct drm_pending_vblank_event *e;
421 	u32 vpos, hpos, v_blank_start, v_blank_end;
422 	bool vrr_active;
423 
424 	amdgpu_crtc = get_crtc_by_otg_inst(adev, irq_params->irq_src - IRQ_TYPE_PFLIP);
425 
426 	/* IRQ could occur when in initial stage */
427 	/* TODO work and BO cleanup */
428 	if (amdgpu_crtc == NULL) {
429 		drm_dbg_state(dev, "CRTC is null, returning.\n");
430 		return;
431 	}
432 
433 	spin_lock_irqsave(&adev_to_drm(adev)->event_lock, flags);
434 
435 	if (amdgpu_crtc->pflip_status != AMDGPU_FLIP_SUBMITTED) {
436 		drm_dbg_state(dev,
437 			      "amdgpu_crtc->pflip_status = %d != AMDGPU_FLIP_SUBMITTED(%d) on crtc:%d[%p]\n",
438 			      amdgpu_crtc->pflip_status, AMDGPU_FLIP_SUBMITTED,
439 			      amdgpu_crtc->crtc_id, amdgpu_crtc);
440 		spin_unlock_irqrestore(&adev_to_drm(adev)->event_lock, flags);
441 		return;
442 	}
443 
444 	/* page flip completed. */
445 	e = amdgpu_crtc->event;
446 	amdgpu_crtc->event = NULL;
447 
448 	WARN_ON(!e);
449 
450 	vrr_active = amdgpu_dm_crtc_vrr_active_irq(amdgpu_crtc);
451 
452 	/* Fixed refresh rate, or VRR scanout position outside front-porch? */
453 	if (!vrr_active ||
454 	    !dc_stream_get_scanoutpos(amdgpu_crtc->dm_irq_params.stream, &v_blank_start,
455 				      &v_blank_end, &hpos, &vpos) ||
456 	    (vpos < v_blank_start)) {
457 		/* Update to correct count and vblank timestamp if racing with
458 		 * vblank irq. This also updates to the correct vblank timestamp
459 		 * even in VRR mode, as scanout is past the front-porch atm.
460 		 */
461 		drm_crtc_accurate_vblank_count(&amdgpu_crtc->base);
462 
463 		/* Wake up userspace by sending the pageflip event with proper
464 		 * count and timestamp of vblank of flip completion.
465 		 */
466 		if (e) {
467 			drm_crtc_send_vblank_event(&amdgpu_crtc->base, e);
468 
469 			/* Event sent, so done with vblank for this flip */
470 			drm_crtc_vblank_put(&amdgpu_crtc->base);
471 		}
472 	} else if (e) {
473 		/* VRR active and inside front-porch: vblank count and
474 		 * timestamp for pageflip event will only be up to date after
475 		 * drm_crtc_handle_vblank() has been executed from late vblank
476 		 * irq handler after start of back-porch (vline 0). We queue the
477 		 * pageflip event for send-out by drm_crtc_handle_vblank() with
478 		 * updated timestamp and count, once it runs after us.
479 		 *
480 		 * We need to open-code this instead of using the helper
481 		 * drm_crtc_arm_vblank_event(), as that helper would
482 		 * call drm_crtc_accurate_vblank_count(), which we must
483 		 * not call in VRR mode while we are in front-porch!
484 		 */
485 
486 		/* sequence will be replaced by real count during send-out. */
487 		e->sequence = drm_crtc_vblank_count(&amdgpu_crtc->base);
488 		e->pipe = amdgpu_crtc->crtc_id;
489 
490 		list_add_tail(&e->base.link, &adev_to_drm(adev)->vblank_event_list);
491 		e = NULL;
492 	}
493 
494 	/* Keep track of vblank of this flip for flip throttling. We use the
495 	 * cooked hw counter, as that one incremented at start of this vblank
496 	 * of pageflip completion, so last_flip_vblank is the forbidden count
497 	 * for queueing new pageflips if vsync + VRR is enabled.
498 	 */
499 	amdgpu_crtc->dm_irq_params.last_flip_vblank =
500 		amdgpu_get_vblank_counter_kms(&amdgpu_crtc->base);
501 
502 	amdgpu_crtc->pflip_status = AMDGPU_FLIP_NONE;
503 	spin_unlock_irqrestore(&adev_to_drm(adev)->event_lock, flags);
504 
505 	drm_dbg_state(dev,
506 		      "crtc:%d[%p], pflip_stat:AMDGPU_FLIP_NONE, vrr[%d]-fp %d\n",
507 		      amdgpu_crtc->crtc_id, amdgpu_crtc, vrr_active, (int)!e);
508 }
509 
510 static void dm_vupdate_high_irq(void *interrupt_params)
511 {
512 	struct common_irq_params *irq_params = interrupt_params;
513 	struct amdgpu_device *adev = irq_params->adev;
514 	struct amdgpu_crtc *acrtc;
515 	struct drm_device *drm_dev;
516 	struct drm_vblank_crtc *vblank;
517 	ktime_t frame_duration_ns, previous_timestamp;
518 	unsigned long flags;
519 	int vrr_active;
520 
521 	acrtc = get_crtc_by_otg_inst(adev, irq_params->irq_src - IRQ_TYPE_VUPDATE);
522 
523 	if (acrtc) {
524 		vrr_active = amdgpu_dm_crtc_vrr_active_irq(acrtc);
525 		drm_dev = acrtc->base.dev;
526 		vblank = &drm_dev->vblank[acrtc->base.index];
527 		previous_timestamp = atomic64_read(&irq_params->previous_timestamp);
528 		frame_duration_ns = vblank->time - previous_timestamp;
529 
530 		if (frame_duration_ns > 0) {
531 			trace_amdgpu_refresh_rate_track(acrtc->base.index,
532 						frame_duration_ns,
533 						ktime_divns(NSEC_PER_SEC, frame_duration_ns));
534 			atomic64_set(&irq_params->previous_timestamp, vblank->time);
535 		}
536 
537 		drm_dbg_vbl(drm_dev,
538 			    "crtc:%d, vupdate-vrr:%d\n", acrtc->crtc_id,
539 			    vrr_active);
540 
541 		/* Core vblank handling is done here after end of front-porch in
542 		 * vrr mode, as vblank timestamping will give valid results
543 		 * while now done after front-porch. This will also deliver
544 		 * page-flip completion events that have been queued to us
545 		 * if a pageflip happened inside front-porch.
546 		 */
547 		if (vrr_active) {
548 			amdgpu_dm_crtc_handle_vblank(acrtc);
549 
550 			/* BTR processing for pre-DCE12 ASICs */
551 			if (acrtc->dm_irq_params.stream &&
552 			    adev->family < AMDGPU_FAMILY_AI) {
553 				spin_lock_irqsave(&adev_to_drm(adev)->event_lock, flags);
554 				mod_freesync_handle_v_update(
555 				    adev->dm.freesync_module,
556 				    acrtc->dm_irq_params.stream,
557 				    &acrtc->dm_irq_params.vrr_params);
558 
559 				dc_stream_adjust_vmin_vmax(
560 				    adev->dm.dc,
561 				    acrtc->dm_irq_params.stream,
562 				    &acrtc->dm_irq_params.vrr_params.adjust);
563 				spin_unlock_irqrestore(&adev_to_drm(adev)->event_lock, flags);
564 			}
565 		}
566 	}
567 }
568 
569 /**
570  * dm_crtc_high_irq() - Handles CRTC interrupt
571  * @interrupt_params: used for determining the CRTC instance
572  *
573  * Handles the CRTC/VSYNC interrupt by notfying DRM's VBLANK
574  * event handler.
575  */
576 static void dm_crtc_high_irq(void *interrupt_params)
577 {
578 	struct common_irq_params *irq_params = interrupt_params;
579 	struct amdgpu_device *adev = irq_params->adev;
580 	struct amdgpu_crtc *acrtc;
581 	unsigned long flags;
582 	int vrr_active;
583 
584 	acrtc = get_crtc_by_otg_inst(adev, irq_params->irq_src - IRQ_TYPE_VBLANK);
585 	if (!acrtc)
586 		return;
587 
588 	vrr_active = amdgpu_dm_crtc_vrr_active_irq(acrtc);
589 
590 	drm_dbg_vbl(adev_to_drm(adev),
591 		    "crtc:%d, vupdate-vrr:%d, planes:%d\n", acrtc->crtc_id,
592 		    vrr_active, acrtc->dm_irq_params.active_planes);
593 
594 	/**
595 	 * Core vblank handling at start of front-porch is only possible
596 	 * in non-vrr mode, as only there vblank timestamping will give
597 	 * valid results while done in front-porch. Otherwise defer it
598 	 * to dm_vupdate_high_irq after end of front-porch.
599 	 */
600 	if (!vrr_active)
601 		amdgpu_dm_crtc_handle_vblank(acrtc);
602 
603 	/**
604 	 * Following stuff must happen at start of vblank, for crc
605 	 * computation and below-the-range btr support in vrr mode.
606 	 */
607 	amdgpu_dm_crtc_handle_crc_irq(&acrtc->base);
608 
609 	/* BTR updates need to happen before VUPDATE on Vega and above. */
610 	if (adev->family < AMDGPU_FAMILY_AI)
611 		return;
612 
613 	spin_lock_irqsave(&adev_to_drm(adev)->event_lock, flags);
614 
615 	if (acrtc->dm_irq_params.stream &&
616 	    acrtc->dm_irq_params.vrr_params.supported &&
617 	    acrtc->dm_irq_params.freesync_config.state ==
618 		    VRR_STATE_ACTIVE_VARIABLE) {
619 		mod_freesync_handle_v_update(adev->dm.freesync_module,
620 					     acrtc->dm_irq_params.stream,
621 					     &acrtc->dm_irq_params.vrr_params);
622 
623 		dc_stream_adjust_vmin_vmax(adev->dm.dc, acrtc->dm_irq_params.stream,
624 					   &acrtc->dm_irq_params.vrr_params.adjust);
625 	}
626 
627 	/*
628 	 * If there aren't any active_planes then DCH HUBP may be clock-gated.
629 	 * In that case, pageflip completion interrupts won't fire and pageflip
630 	 * completion events won't get delivered. Prevent this by sending
631 	 * pending pageflip events from here if a flip is still pending.
632 	 *
633 	 * If any planes are enabled, use dm_pflip_high_irq() instead, to
634 	 * avoid race conditions between flip programming and completion,
635 	 * which could cause too early flip completion events.
636 	 */
637 	if (adev->family >= AMDGPU_FAMILY_RV &&
638 	    acrtc->pflip_status == AMDGPU_FLIP_SUBMITTED &&
639 	    acrtc->dm_irq_params.active_planes == 0) {
640 		if (acrtc->event) {
641 			drm_crtc_send_vblank_event(&acrtc->base, acrtc->event);
642 			acrtc->event = NULL;
643 			drm_crtc_vblank_put(&acrtc->base);
644 		}
645 		acrtc->pflip_status = AMDGPU_FLIP_NONE;
646 	}
647 
648 	spin_unlock_irqrestore(&adev_to_drm(adev)->event_lock, flags);
649 }
650 
651 #if defined(CONFIG_DRM_AMD_SECURE_DISPLAY)
652 /**
653  * dm_dcn_vertical_interrupt0_high_irq() - Handles OTG Vertical interrupt0 for
654  * DCN generation ASICs
655  * @interrupt_params: interrupt parameters
656  *
657  * Used to set crc window/read out crc value at vertical line 0 position
658  */
659 static void dm_dcn_vertical_interrupt0_high_irq(void *interrupt_params)
660 {
661 	struct common_irq_params *irq_params = interrupt_params;
662 	struct amdgpu_device *adev = irq_params->adev;
663 	struct amdgpu_crtc *acrtc;
664 
665 	acrtc = get_crtc_by_otg_inst(adev, irq_params->irq_src - IRQ_TYPE_VLINE0);
666 
667 	if (!acrtc)
668 		return;
669 
670 	amdgpu_dm_crtc_handle_crc_window_irq(&acrtc->base);
671 }
672 #endif /* CONFIG_DRM_AMD_SECURE_DISPLAY */
673 
674 /**
675  * dmub_aux_setconfig_callback - Callback for AUX or SET_CONFIG command.
676  * @adev: amdgpu_device pointer
677  * @notify: dmub notification structure
678  *
679  * Dmub AUX or SET_CONFIG command completion processing callback
680  * Copies dmub notification to DM which is to be read by AUX command.
681  * issuing thread and also signals the event to wake up the thread.
682  */
683 static void dmub_aux_setconfig_callback(struct amdgpu_device *adev,
684 					struct dmub_notification *notify)
685 {
686 	if (adev->dm.dmub_notify)
687 		memcpy(adev->dm.dmub_notify, notify, sizeof(struct dmub_notification));
688 	if (notify->type == DMUB_NOTIFICATION_AUX_REPLY)
689 		complete(&adev->dm.dmub_aux_transfer_done);
690 }
691 
692 /**
693  * dmub_hpd_callback - DMUB HPD interrupt processing callback.
694  * @adev: amdgpu_device pointer
695  * @notify: dmub notification structure
696  *
697  * Dmub Hpd interrupt processing callback. Gets displayindex through the
698  * ink index and calls helper to do the processing.
699  */
700 static void dmub_hpd_callback(struct amdgpu_device *adev,
701 			      struct dmub_notification *notify)
702 {
703 	struct amdgpu_dm_connector *aconnector;
704 	struct amdgpu_dm_connector *hpd_aconnector = NULL;
705 	struct drm_connector *connector;
706 	struct drm_connector_list_iter iter;
707 	struct dc_link *link;
708 	u8 link_index = 0;
709 	struct drm_device *dev;
710 
711 	if (adev == NULL)
712 		return;
713 
714 	if (notify == NULL) {
715 		DRM_ERROR("DMUB HPD callback notification was NULL");
716 		return;
717 	}
718 
719 	if (notify->link_index > adev->dm.dc->link_count) {
720 		DRM_ERROR("DMUB HPD index (%u)is abnormal", notify->link_index);
721 		return;
722 	}
723 
724 	link_index = notify->link_index;
725 	link = adev->dm.dc->links[link_index];
726 	dev = adev->dm.ddev;
727 
728 	drm_connector_list_iter_begin(dev, &iter);
729 	drm_for_each_connector_iter(connector, &iter) {
730 		aconnector = to_amdgpu_dm_connector(connector);
731 		if (link && aconnector->dc_link == link) {
732 			if (notify->type == DMUB_NOTIFICATION_HPD)
733 				DRM_INFO("DMUB HPD callback: link_index=%u\n", link_index);
734 			else if (notify->type == DMUB_NOTIFICATION_HPD_IRQ)
735 				DRM_INFO("DMUB HPD IRQ callback: link_index=%u\n", link_index);
736 			else
737 				DRM_WARN("DMUB Unknown HPD callback type %d, link_index=%u\n",
738 						notify->type, link_index);
739 
740 			hpd_aconnector = aconnector;
741 			break;
742 		}
743 	}
744 	drm_connector_list_iter_end(&iter);
745 
746 	if (hpd_aconnector) {
747 		if (notify->type == DMUB_NOTIFICATION_HPD)
748 			handle_hpd_irq_helper(hpd_aconnector);
749 		else if (notify->type == DMUB_NOTIFICATION_HPD_IRQ)
750 			handle_hpd_rx_irq(hpd_aconnector);
751 	}
752 }
753 
754 /**
755  * register_dmub_notify_callback - Sets callback for DMUB notify
756  * @adev: amdgpu_device pointer
757  * @type: Type of dmub notification
758  * @callback: Dmub interrupt callback function
759  * @dmub_int_thread_offload: offload indicator
760  *
761  * API to register a dmub callback handler for a dmub notification
762  * Also sets indicator whether callback processing to be offloaded.
763  * to dmub interrupt handling thread
764  * Return: true if successfully registered, false if there is existing registration
765  */
766 static bool register_dmub_notify_callback(struct amdgpu_device *adev,
767 					  enum dmub_notification_type type,
768 					  dmub_notify_interrupt_callback_t callback,
769 					  bool dmub_int_thread_offload)
770 {
771 	if (callback != NULL && type < ARRAY_SIZE(adev->dm.dmub_thread_offload)) {
772 		adev->dm.dmub_callback[type] = callback;
773 		adev->dm.dmub_thread_offload[type] = dmub_int_thread_offload;
774 	} else
775 		return false;
776 
777 	return true;
778 }
779 
780 static void dm_handle_hpd_work(struct work_struct *work)
781 {
782 	struct dmub_hpd_work *dmub_hpd_wrk;
783 
784 	dmub_hpd_wrk = container_of(work, struct dmub_hpd_work, handle_hpd_work);
785 
786 	if (!dmub_hpd_wrk->dmub_notify) {
787 		DRM_ERROR("dmub_hpd_wrk dmub_notify is NULL");
788 		return;
789 	}
790 
791 	if (dmub_hpd_wrk->dmub_notify->type < ARRAY_SIZE(dmub_hpd_wrk->adev->dm.dmub_callback)) {
792 		dmub_hpd_wrk->adev->dm.dmub_callback[dmub_hpd_wrk->dmub_notify->type](dmub_hpd_wrk->adev,
793 		dmub_hpd_wrk->dmub_notify);
794 	}
795 
796 	kfree(dmub_hpd_wrk->dmub_notify);
797 	kfree(dmub_hpd_wrk);
798 
799 }
800 
801 #define DMUB_TRACE_MAX_READ 64
802 /**
803  * dm_dmub_outbox1_low_irq() - Handles Outbox interrupt
804  * @interrupt_params: used for determining the Outbox instance
805  *
806  * Handles the Outbox Interrupt
807  * event handler.
808  */
809 static void dm_dmub_outbox1_low_irq(void *interrupt_params)
810 {
811 	struct dmub_notification notify;
812 	struct common_irq_params *irq_params = interrupt_params;
813 	struct amdgpu_device *adev = irq_params->adev;
814 	struct amdgpu_display_manager *dm = &adev->dm;
815 	struct dmcub_trace_buf_entry entry = { 0 };
816 	u32 count = 0;
817 	struct dmub_hpd_work *dmub_hpd_wrk;
818 	struct dc_link *plink = NULL;
819 
820 	if (dc_enable_dmub_notifications(adev->dm.dc) &&
821 		irq_params->irq_src == DC_IRQ_SOURCE_DMCUB_OUTBOX) {
822 
823 		do {
824 			dc_stat_get_dmub_notification(adev->dm.dc, &notify);
825 			if (notify.type >= ARRAY_SIZE(dm->dmub_thread_offload)) {
826 				DRM_ERROR("DM: notify type %d invalid!", notify.type);
827 				continue;
828 			}
829 			if (!dm->dmub_callback[notify.type]) {
830 				DRM_DEBUG_DRIVER("DMUB notification skipped, no handler: type=%d\n", notify.type);
831 				continue;
832 			}
833 			if (dm->dmub_thread_offload[notify.type] == true) {
834 				dmub_hpd_wrk = kzalloc(sizeof(*dmub_hpd_wrk), GFP_ATOMIC);
835 				if (!dmub_hpd_wrk) {
836 					DRM_ERROR("Failed to allocate dmub_hpd_wrk");
837 					return;
838 				}
839 				dmub_hpd_wrk->dmub_notify = kmemdup(&notify, sizeof(struct dmub_notification),
840 								    GFP_ATOMIC);
841 				if (!dmub_hpd_wrk->dmub_notify) {
842 					kfree(dmub_hpd_wrk);
843 					DRM_ERROR("Failed to allocate dmub_hpd_wrk->dmub_notify");
844 					return;
845 				}
846 				INIT_WORK(&dmub_hpd_wrk->handle_hpd_work, dm_handle_hpd_work);
847 				dmub_hpd_wrk->adev = adev;
848 				if (notify.type == DMUB_NOTIFICATION_HPD) {
849 					plink = adev->dm.dc->links[notify.link_index];
850 					if (plink) {
851 						plink->hpd_status =
852 							notify.hpd_status == DP_HPD_PLUG;
853 					}
854 				}
855 				queue_work(adev->dm.delayed_hpd_wq, &dmub_hpd_wrk->handle_hpd_work);
856 			} else {
857 				dm->dmub_callback[notify.type](adev, &notify);
858 			}
859 		} while (notify.pending_notification);
860 	}
861 
862 
863 	do {
864 		if (dc_dmub_srv_get_dmub_outbox0_msg(dm->dc, &entry)) {
865 			trace_amdgpu_dmub_trace_high_irq(entry.trace_code, entry.tick_count,
866 							entry.param0, entry.param1);
867 
868 			DRM_DEBUG_DRIVER("trace_code:%u, tick_count:%u, param0:%u, param1:%u\n",
869 				 entry.trace_code, entry.tick_count, entry.param0, entry.param1);
870 		} else
871 			break;
872 
873 		count++;
874 
875 	} while (count <= DMUB_TRACE_MAX_READ);
876 
877 	if (count > DMUB_TRACE_MAX_READ)
878 		DRM_DEBUG_DRIVER("Warning : count > DMUB_TRACE_MAX_READ");
879 }
880 
881 static int dm_set_clockgating_state(void *handle,
882 		  enum amd_clockgating_state state)
883 {
884 	return 0;
885 }
886 
887 static int dm_set_powergating_state(void *handle,
888 		  enum amd_powergating_state state)
889 {
890 	return 0;
891 }
892 
893 /* Prototypes of private functions */
894 static int dm_early_init(void *handle);
895 
896 /* Allocate memory for FBC compressed data  */
897 static void amdgpu_dm_fbc_init(struct drm_connector *connector)
898 {
899 	struct drm_device *dev = connector->dev;
900 	struct amdgpu_device *adev = drm_to_adev(dev);
901 	struct dm_compressor_info *compressor = &adev->dm.compressor;
902 	struct amdgpu_dm_connector *aconn = to_amdgpu_dm_connector(connector);
903 	struct drm_display_mode *mode;
904 	unsigned long max_size = 0;
905 
906 	if (adev->dm.dc->fbc_compressor == NULL)
907 		return;
908 
909 	if (aconn->dc_link->connector_signal != SIGNAL_TYPE_EDP)
910 		return;
911 
912 	if (compressor->bo_ptr)
913 		return;
914 
915 
916 	list_for_each_entry(mode, &connector->modes, head) {
917 		if (max_size < mode->htotal * mode->vtotal)
918 			max_size = mode->htotal * mode->vtotal;
919 	}
920 
921 	if (max_size) {
922 		int r = amdgpu_bo_create_kernel(adev, max_size * 4, PAGE_SIZE,
923 			    AMDGPU_GEM_DOMAIN_GTT, &compressor->bo_ptr,
924 			    &compressor->gpu_addr, &compressor->cpu_addr);
925 
926 		if (r)
927 			DRM_ERROR("DM: Failed to initialize FBC\n");
928 		else {
929 			adev->dm.dc->ctx->fbc_gpu_addr = compressor->gpu_addr;
930 			DRM_INFO("DM: FBC alloc %lu\n", max_size*4);
931 		}
932 
933 	}
934 
935 }
936 
937 static int amdgpu_dm_audio_component_get_eld(struct device *kdev, int port,
938 					  int pipe, bool *enabled,
939 					  unsigned char *buf, int max_bytes)
940 {
941 	struct drm_device *dev = dev_get_drvdata(kdev);
942 	struct amdgpu_device *adev = drm_to_adev(dev);
943 	struct drm_connector *connector;
944 	struct drm_connector_list_iter conn_iter;
945 	struct amdgpu_dm_connector *aconnector;
946 	int ret = 0;
947 
948 	*enabled = false;
949 
950 	mutex_lock(&adev->dm.audio_lock);
951 
952 	drm_connector_list_iter_begin(dev, &conn_iter);
953 	drm_for_each_connector_iter(connector, &conn_iter) {
954 		aconnector = to_amdgpu_dm_connector(connector);
955 		if (aconnector->audio_inst != port)
956 			continue;
957 
958 		*enabled = true;
959 		ret = drm_eld_size(connector->eld);
960 		memcpy(buf, connector->eld, min(max_bytes, ret));
961 
962 		break;
963 	}
964 	drm_connector_list_iter_end(&conn_iter);
965 
966 	mutex_unlock(&adev->dm.audio_lock);
967 
968 	DRM_DEBUG_KMS("Get ELD : idx=%d ret=%d en=%d\n", port, ret, *enabled);
969 
970 	return ret;
971 }
972 
973 static const struct drm_audio_component_ops amdgpu_dm_audio_component_ops = {
974 	.get_eld = amdgpu_dm_audio_component_get_eld,
975 };
976 
977 static int amdgpu_dm_audio_component_bind(struct device *kdev,
978 				       struct device *hda_kdev, void *data)
979 {
980 	struct drm_device *dev = dev_get_drvdata(kdev);
981 	struct amdgpu_device *adev = drm_to_adev(dev);
982 	struct drm_audio_component *acomp = data;
983 
984 	acomp->ops = &amdgpu_dm_audio_component_ops;
985 	acomp->dev = kdev;
986 	adev->dm.audio_component = acomp;
987 
988 	return 0;
989 }
990 
991 static void amdgpu_dm_audio_component_unbind(struct device *kdev,
992 					  struct device *hda_kdev, void *data)
993 {
994 	struct drm_device *dev = dev_get_drvdata(kdev);
995 	struct amdgpu_device *adev = drm_to_adev(dev);
996 	struct drm_audio_component *acomp = data;
997 
998 	acomp->ops = NULL;
999 	acomp->dev = NULL;
1000 	adev->dm.audio_component = NULL;
1001 }
1002 
1003 static const struct component_ops amdgpu_dm_audio_component_bind_ops = {
1004 	.bind	= amdgpu_dm_audio_component_bind,
1005 	.unbind	= amdgpu_dm_audio_component_unbind,
1006 };
1007 
1008 static int amdgpu_dm_audio_init(struct amdgpu_device *adev)
1009 {
1010 	int i, ret;
1011 
1012 	if (!amdgpu_audio)
1013 		return 0;
1014 
1015 	adev->mode_info.audio.enabled = true;
1016 
1017 	adev->mode_info.audio.num_pins = adev->dm.dc->res_pool->audio_count;
1018 
1019 	for (i = 0; i < adev->mode_info.audio.num_pins; i++) {
1020 		adev->mode_info.audio.pin[i].channels = -1;
1021 		adev->mode_info.audio.pin[i].rate = -1;
1022 		adev->mode_info.audio.pin[i].bits_per_sample = -1;
1023 		adev->mode_info.audio.pin[i].status_bits = 0;
1024 		adev->mode_info.audio.pin[i].category_code = 0;
1025 		adev->mode_info.audio.pin[i].connected = false;
1026 		adev->mode_info.audio.pin[i].id =
1027 			adev->dm.dc->res_pool->audios[i]->inst;
1028 		adev->mode_info.audio.pin[i].offset = 0;
1029 	}
1030 
1031 	ret = component_add(adev->dev, &amdgpu_dm_audio_component_bind_ops);
1032 	if (ret < 0)
1033 		return ret;
1034 
1035 	adev->dm.audio_registered = true;
1036 
1037 	return 0;
1038 }
1039 
1040 static void amdgpu_dm_audio_fini(struct amdgpu_device *adev)
1041 {
1042 	if (!amdgpu_audio)
1043 		return;
1044 
1045 	if (!adev->mode_info.audio.enabled)
1046 		return;
1047 
1048 	if (adev->dm.audio_registered) {
1049 		component_del(adev->dev, &amdgpu_dm_audio_component_bind_ops);
1050 		adev->dm.audio_registered = false;
1051 	}
1052 
1053 	/* TODO: Disable audio? */
1054 
1055 	adev->mode_info.audio.enabled = false;
1056 }
1057 
1058 static  void amdgpu_dm_audio_eld_notify(struct amdgpu_device *adev, int pin)
1059 {
1060 	struct drm_audio_component *acomp = adev->dm.audio_component;
1061 
1062 	if (acomp && acomp->audio_ops && acomp->audio_ops->pin_eld_notify) {
1063 		DRM_DEBUG_KMS("Notify ELD: %d\n", pin);
1064 
1065 		acomp->audio_ops->pin_eld_notify(acomp->audio_ops->audio_ptr,
1066 						 pin, -1);
1067 	}
1068 }
1069 
1070 static int dm_dmub_hw_init(struct amdgpu_device *adev)
1071 {
1072 	const struct dmcub_firmware_header_v1_0 *hdr;
1073 	struct dmub_srv *dmub_srv = adev->dm.dmub_srv;
1074 	struct dmub_srv_fb_info *fb_info = adev->dm.dmub_fb_info;
1075 	const struct firmware *dmub_fw = adev->dm.dmub_fw;
1076 	struct dmcu *dmcu = adev->dm.dc->res_pool->dmcu;
1077 	struct abm *abm = adev->dm.dc->res_pool->abm;
1078 	struct dc_context *ctx = adev->dm.dc->ctx;
1079 	struct dmub_srv_hw_params hw_params;
1080 	enum dmub_status status;
1081 	const unsigned char *fw_inst_const, *fw_bss_data;
1082 	u32 i, fw_inst_const_size, fw_bss_data_size;
1083 	bool has_hw_support;
1084 
1085 	if (!dmub_srv)
1086 		/* DMUB isn't supported on the ASIC. */
1087 		return 0;
1088 
1089 	if (!fb_info) {
1090 		DRM_ERROR("No framebuffer info for DMUB service.\n");
1091 		return -EINVAL;
1092 	}
1093 
1094 	if (!dmub_fw) {
1095 		/* Firmware required for DMUB support. */
1096 		DRM_ERROR("No firmware provided for DMUB.\n");
1097 		return -EINVAL;
1098 	}
1099 
1100 	/* initialize register offsets for ASICs with runtime initialization available */
1101 	if (dmub_srv->hw_funcs.init_reg_offsets)
1102 		dmub_srv->hw_funcs.init_reg_offsets(dmub_srv, ctx);
1103 
1104 	status = dmub_srv_has_hw_support(dmub_srv, &has_hw_support);
1105 	if (status != DMUB_STATUS_OK) {
1106 		DRM_ERROR("Error checking HW support for DMUB: %d\n", status);
1107 		return -EINVAL;
1108 	}
1109 
1110 	if (!has_hw_support) {
1111 		DRM_INFO("DMUB unsupported on ASIC\n");
1112 		return 0;
1113 	}
1114 
1115 	/* Reset DMCUB if it was previously running - before we overwrite its memory. */
1116 	status = dmub_srv_hw_reset(dmub_srv);
1117 	if (status != DMUB_STATUS_OK)
1118 		DRM_WARN("Error resetting DMUB HW: %d\n", status);
1119 
1120 	hdr = (const struct dmcub_firmware_header_v1_0 *)dmub_fw->data;
1121 
1122 	fw_inst_const = dmub_fw->data +
1123 			le32_to_cpu(hdr->header.ucode_array_offset_bytes) +
1124 			PSP_HEADER_BYTES;
1125 
1126 	fw_bss_data = dmub_fw->data +
1127 		      le32_to_cpu(hdr->header.ucode_array_offset_bytes) +
1128 		      le32_to_cpu(hdr->inst_const_bytes);
1129 
1130 	/* Copy firmware and bios info into FB memory. */
1131 	fw_inst_const_size = le32_to_cpu(hdr->inst_const_bytes) -
1132 			     PSP_HEADER_BYTES - PSP_FOOTER_BYTES;
1133 
1134 	fw_bss_data_size = le32_to_cpu(hdr->bss_data_bytes);
1135 
1136 	/* if adev->firmware.load_type == AMDGPU_FW_LOAD_PSP,
1137 	 * amdgpu_ucode_init_single_fw will load dmub firmware
1138 	 * fw_inst_const part to cw0; otherwise, the firmware back door load
1139 	 * will be done by dm_dmub_hw_init
1140 	 */
1141 	if (adev->firmware.load_type != AMDGPU_FW_LOAD_PSP) {
1142 		memcpy(fb_info->fb[DMUB_WINDOW_0_INST_CONST].cpu_addr, fw_inst_const,
1143 				fw_inst_const_size);
1144 	}
1145 
1146 	if (fw_bss_data_size)
1147 		memcpy(fb_info->fb[DMUB_WINDOW_2_BSS_DATA].cpu_addr,
1148 		       fw_bss_data, fw_bss_data_size);
1149 
1150 	/* Copy firmware bios info into FB memory. */
1151 	memcpy(fb_info->fb[DMUB_WINDOW_3_VBIOS].cpu_addr, adev->bios,
1152 	       adev->bios_size);
1153 
1154 	/* Reset regions that need to be reset. */
1155 	memset(fb_info->fb[DMUB_WINDOW_4_MAILBOX].cpu_addr, 0,
1156 	fb_info->fb[DMUB_WINDOW_4_MAILBOX].size);
1157 
1158 	memset(fb_info->fb[DMUB_WINDOW_5_TRACEBUFF].cpu_addr, 0,
1159 	       fb_info->fb[DMUB_WINDOW_5_TRACEBUFF].size);
1160 
1161 	memset(fb_info->fb[DMUB_WINDOW_6_FW_STATE].cpu_addr, 0,
1162 	       fb_info->fb[DMUB_WINDOW_6_FW_STATE].size);
1163 
1164 	/* Initialize hardware. */
1165 	memset(&hw_params, 0, sizeof(hw_params));
1166 	hw_params.fb_base = adev->gmc.fb_start;
1167 	hw_params.fb_offset = adev->vm_manager.vram_base_offset;
1168 
1169 	/* backdoor load firmware and trigger dmub running */
1170 	if (adev->firmware.load_type != AMDGPU_FW_LOAD_PSP)
1171 		hw_params.load_inst_const = true;
1172 
1173 	if (dmcu)
1174 		hw_params.psp_version = dmcu->psp_version;
1175 
1176 	for (i = 0; i < fb_info->num_fb; ++i)
1177 		hw_params.fb[i] = &fb_info->fb[i];
1178 
1179 	switch (amdgpu_ip_version(adev, DCE_HWIP, 0)) {
1180 	case IP_VERSION(3, 1, 3):
1181 	case IP_VERSION(3, 1, 4):
1182 	case IP_VERSION(3, 5, 0):
1183 		hw_params.dpia_supported = true;
1184 		hw_params.disable_dpia = adev->dm.dc->debug.dpia_debug.bits.disable_dpia;
1185 		break;
1186 	default:
1187 		break;
1188 	}
1189 
1190 	status = dmub_srv_hw_init(dmub_srv, &hw_params);
1191 	if (status != DMUB_STATUS_OK) {
1192 		DRM_ERROR("Error initializing DMUB HW: %d\n", status);
1193 		return -EINVAL;
1194 	}
1195 
1196 	/* Wait for firmware load to finish. */
1197 	status = dmub_srv_wait_for_auto_load(dmub_srv, 100000);
1198 	if (status != DMUB_STATUS_OK)
1199 		DRM_WARN("Wait for DMUB auto-load failed: %d\n", status);
1200 
1201 	/* Init DMCU and ABM if available. */
1202 	if (dmcu && abm) {
1203 		dmcu->funcs->dmcu_init(dmcu);
1204 		abm->dmcu_is_running = dmcu->funcs->is_dmcu_initialized(dmcu);
1205 	}
1206 
1207 	if (!adev->dm.dc->ctx->dmub_srv)
1208 		adev->dm.dc->ctx->dmub_srv = dc_dmub_srv_create(adev->dm.dc, dmub_srv);
1209 	if (!adev->dm.dc->ctx->dmub_srv) {
1210 		DRM_ERROR("Couldn't allocate DC DMUB server!\n");
1211 		return -ENOMEM;
1212 	}
1213 
1214 	DRM_INFO("DMUB hardware initialized: version=0x%08X\n",
1215 		 adev->dm.dmcub_fw_version);
1216 
1217 	return 0;
1218 }
1219 
1220 static void dm_dmub_hw_resume(struct amdgpu_device *adev)
1221 {
1222 	struct dmub_srv *dmub_srv = adev->dm.dmub_srv;
1223 	enum dmub_status status;
1224 	bool init;
1225 
1226 	if (!dmub_srv) {
1227 		/* DMUB isn't supported on the ASIC. */
1228 		return;
1229 	}
1230 
1231 	status = dmub_srv_is_hw_init(dmub_srv, &init);
1232 	if (status != DMUB_STATUS_OK)
1233 		DRM_WARN("DMUB hardware init check failed: %d\n", status);
1234 
1235 	if (status == DMUB_STATUS_OK && init) {
1236 		/* Wait for firmware load to finish. */
1237 		status = dmub_srv_wait_for_auto_load(dmub_srv, 100000);
1238 		if (status != DMUB_STATUS_OK)
1239 			DRM_WARN("Wait for DMUB auto-load failed: %d\n", status);
1240 	} else {
1241 		/* Perform the full hardware initialization. */
1242 		dm_dmub_hw_init(adev);
1243 	}
1244 }
1245 
1246 static void mmhub_read_system_context(struct amdgpu_device *adev, struct dc_phy_addr_space_config *pa_config)
1247 {
1248 	u64 pt_base;
1249 	u32 logical_addr_low;
1250 	u32 logical_addr_high;
1251 	u32 agp_base, agp_bot, agp_top;
1252 	PHYSICAL_ADDRESS_LOC page_table_start, page_table_end, page_table_base;
1253 
1254 	memset(pa_config, 0, sizeof(*pa_config));
1255 
1256 	agp_base = 0;
1257 	agp_bot = adev->gmc.agp_start >> 24;
1258 	agp_top = adev->gmc.agp_end >> 24;
1259 
1260 	/* AGP aperture is disabled */
1261 	if (agp_bot > agp_top) {
1262 		logical_addr_low = adev->gmc.fb_start >> 18;
1263 		if (adev->apu_flags & AMD_APU_IS_RAVEN2)
1264 			/*
1265 			 * Raven2 has a HW issue that it is unable to use the vram which
1266 			 * is out of MC_VM_SYSTEM_APERTURE_HIGH_ADDR. So here is the
1267 			 * workaround that increase system aperture high address (add 1)
1268 			 * to get rid of the VM fault and hardware hang.
1269 			 */
1270 			logical_addr_high = (adev->gmc.fb_end >> 18) + 0x1;
1271 		else
1272 			logical_addr_high = adev->gmc.fb_end >> 18;
1273 	} else {
1274 		logical_addr_low = min(adev->gmc.fb_start, adev->gmc.agp_start) >> 18;
1275 		if (adev->apu_flags & AMD_APU_IS_RAVEN2)
1276 			/*
1277 			 * Raven2 has a HW issue that it is unable to use the vram which
1278 			 * is out of MC_VM_SYSTEM_APERTURE_HIGH_ADDR. So here is the
1279 			 * workaround that increase system aperture high address (add 1)
1280 			 * to get rid of the VM fault and hardware hang.
1281 			 */
1282 			logical_addr_high = max((adev->gmc.fb_end >> 18) + 0x1, adev->gmc.agp_end >> 18);
1283 		else
1284 			logical_addr_high = max(adev->gmc.fb_end, adev->gmc.agp_end) >> 18;
1285 	}
1286 
1287 	pt_base = amdgpu_gmc_pd_addr(adev->gart.bo);
1288 
1289 	page_table_start.high_part = upper_32_bits(adev->gmc.gart_start >>
1290 						   AMDGPU_GPU_PAGE_SHIFT);
1291 	page_table_start.low_part = lower_32_bits(adev->gmc.gart_start >>
1292 						  AMDGPU_GPU_PAGE_SHIFT);
1293 	page_table_end.high_part = upper_32_bits(adev->gmc.gart_end >>
1294 						 AMDGPU_GPU_PAGE_SHIFT);
1295 	page_table_end.low_part = lower_32_bits(adev->gmc.gart_end >>
1296 						AMDGPU_GPU_PAGE_SHIFT);
1297 	page_table_base.high_part = upper_32_bits(pt_base);
1298 	page_table_base.low_part = lower_32_bits(pt_base);
1299 
1300 	pa_config->system_aperture.start_addr = (uint64_t)logical_addr_low << 18;
1301 	pa_config->system_aperture.end_addr = (uint64_t)logical_addr_high << 18;
1302 
1303 	pa_config->system_aperture.agp_base = (uint64_t)agp_base << 24;
1304 	pa_config->system_aperture.agp_bot = (uint64_t)agp_bot << 24;
1305 	pa_config->system_aperture.agp_top = (uint64_t)agp_top << 24;
1306 
1307 	pa_config->system_aperture.fb_base = adev->gmc.fb_start;
1308 	pa_config->system_aperture.fb_offset = adev->vm_manager.vram_base_offset;
1309 	pa_config->system_aperture.fb_top = adev->gmc.fb_end;
1310 
1311 	pa_config->gart_config.page_table_start_addr = page_table_start.quad_part << 12;
1312 	pa_config->gart_config.page_table_end_addr = page_table_end.quad_part << 12;
1313 	pa_config->gart_config.page_table_base_addr = page_table_base.quad_part;
1314 
1315 	pa_config->is_hvm_enabled = adev->mode_info.gpu_vm_support;
1316 
1317 }
1318 
1319 static void force_connector_state(
1320 	struct amdgpu_dm_connector *aconnector,
1321 	enum drm_connector_force force_state)
1322 {
1323 	struct drm_connector *connector = &aconnector->base;
1324 
1325 	mutex_lock(&connector->dev->mode_config.mutex);
1326 	aconnector->base.force = force_state;
1327 	mutex_unlock(&connector->dev->mode_config.mutex);
1328 
1329 	mutex_lock(&aconnector->hpd_lock);
1330 	drm_kms_helper_connector_hotplug_event(connector);
1331 	mutex_unlock(&aconnector->hpd_lock);
1332 }
1333 
1334 static void dm_handle_hpd_rx_offload_work(struct work_struct *work)
1335 {
1336 	struct hpd_rx_irq_offload_work *offload_work;
1337 	struct amdgpu_dm_connector *aconnector;
1338 	struct dc_link *dc_link;
1339 	struct amdgpu_device *adev;
1340 	enum dc_connection_type new_connection_type = dc_connection_none;
1341 	unsigned long flags;
1342 	union test_response test_response;
1343 
1344 	memset(&test_response, 0, sizeof(test_response));
1345 
1346 	offload_work = container_of(work, struct hpd_rx_irq_offload_work, work);
1347 	aconnector = offload_work->offload_wq->aconnector;
1348 
1349 	if (!aconnector) {
1350 		DRM_ERROR("Can't retrieve aconnector in hpd_rx_irq_offload_work");
1351 		goto skip;
1352 	}
1353 
1354 	adev = drm_to_adev(aconnector->base.dev);
1355 	dc_link = aconnector->dc_link;
1356 
1357 	mutex_lock(&aconnector->hpd_lock);
1358 	if (!dc_link_detect_connection_type(dc_link, &new_connection_type))
1359 		DRM_ERROR("KMS: Failed to detect connector\n");
1360 	mutex_unlock(&aconnector->hpd_lock);
1361 
1362 	if (new_connection_type == dc_connection_none)
1363 		goto skip;
1364 
1365 	if (amdgpu_in_reset(adev))
1366 		goto skip;
1367 
1368 	if (offload_work->data.bytes.device_service_irq.bits.UP_REQ_MSG_RDY ||
1369 		offload_work->data.bytes.device_service_irq.bits.DOWN_REP_MSG_RDY) {
1370 		dm_handle_mst_sideband_msg_ready_event(&aconnector->mst_mgr, DOWN_OR_UP_MSG_RDY_EVENT);
1371 		spin_lock_irqsave(&offload_work->offload_wq->offload_lock, flags);
1372 		offload_work->offload_wq->is_handling_mst_msg_rdy_event = false;
1373 		spin_unlock_irqrestore(&offload_work->offload_wq->offload_lock, flags);
1374 		goto skip;
1375 	}
1376 
1377 	mutex_lock(&adev->dm.dc_lock);
1378 	if (offload_work->data.bytes.device_service_irq.bits.AUTOMATED_TEST) {
1379 		dc_link_dp_handle_automated_test(dc_link);
1380 
1381 		if (aconnector->timing_changed) {
1382 			/* force connector disconnect and reconnect */
1383 			force_connector_state(aconnector, DRM_FORCE_OFF);
1384 			msleep(100);
1385 			force_connector_state(aconnector, DRM_FORCE_UNSPECIFIED);
1386 		}
1387 
1388 		test_response.bits.ACK = 1;
1389 
1390 		core_link_write_dpcd(
1391 		dc_link,
1392 		DP_TEST_RESPONSE,
1393 		&test_response.raw,
1394 		sizeof(test_response));
1395 	} else if ((dc_link->connector_signal != SIGNAL_TYPE_EDP) &&
1396 			dc_link_check_link_loss_status(dc_link, &offload_work->data) &&
1397 			dc_link_dp_allow_hpd_rx_irq(dc_link)) {
1398 		/* offload_work->data is from handle_hpd_rx_irq->
1399 		 * schedule_hpd_rx_offload_work.this is defer handle
1400 		 * for hpd short pulse. upon here, link status may be
1401 		 * changed, need get latest link status from dpcd
1402 		 * registers. if link status is good, skip run link
1403 		 * training again.
1404 		 */
1405 		union hpd_irq_data irq_data;
1406 
1407 		memset(&irq_data, 0, sizeof(irq_data));
1408 
1409 		/* before dc_link_dp_handle_link_loss, allow new link lost handle
1410 		 * request be added to work queue if link lost at end of dc_link_
1411 		 * dp_handle_link_loss
1412 		 */
1413 		spin_lock_irqsave(&offload_work->offload_wq->offload_lock, flags);
1414 		offload_work->offload_wq->is_handling_link_loss = false;
1415 		spin_unlock_irqrestore(&offload_work->offload_wq->offload_lock, flags);
1416 
1417 		if ((dc_link_dp_read_hpd_rx_irq_data(dc_link, &irq_data) == DC_OK) &&
1418 			dc_link_check_link_loss_status(dc_link, &irq_data))
1419 			dc_link_dp_handle_link_loss(dc_link);
1420 	}
1421 	mutex_unlock(&adev->dm.dc_lock);
1422 
1423 skip:
1424 	kfree(offload_work);
1425 
1426 }
1427 
1428 static struct hpd_rx_irq_offload_work_queue *hpd_rx_irq_create_workqueue(struct dc *dc)
1429 {
1430 	int max_caps = dc->caps.max_links;
1431 	int i = 0;
1432 	struct hpd_rx_irq_offload_work_queue *hpd_rx_offload_wq = NULL;
1433 
1434 	hpd_rx_offload_wq = kcalloc(max_caps, sizeof(*hpd_rx_offload_wq), GFP_KERNEL);
1435 
1436 	if (!hpd_rx_offload_wq)
1437 		return NULL;
1438 
1439 
1440 	for (i = 0; i < max_caps; i++) {
1441 		hpd_rx_offload_wq[i].wq =
1442 				    create_singlethread_workqueue("amdgpu_dm_hpd_rx_offload_wq");
1443 
1444 		if (hpd_rx_offload_wq[i].wq == NULL) {
1445 			DRM_ERROR("create amdgpu_dm_hpd_rx_offload_wq fail!");
1446 			goto out_err;
1447 		}
1448 
1449 		spin_lock_init(&hpd_rx_offload_wq[i].offload_lock);
1450 	}
1451 
1452 	return hpd_rx_offload_wq;
1453 
1454 out_err:
1455 	for (i = 0; i < max_caps; i++) {
1456 		if (hpd_rx_offload_wq[i].wq)
1457 			destroy_workqueue(hpd_rx_offload_wq[i].wq);
1458 	}
1459 	kfree(hpd_rx_offload_wq);
1460 	return NULL;
1461 }
1462 
1463 struct amdgpu_stutter_quirk {
1464 	u16 chip_vendor;
1465 	u16 chip_device;
1466 	u16 subsys_vendor;
1467 	u16 subsys_device;
1468 	u8 revision;
1469 };
1470 
1471 static const struct amdgpu_stutter_quirk amdgpu_stutter_quirk_list[] = {
1472 	/* https://bugzilla.kernel.org/show_bug.cgi?id=214417 */
1473 	{ 0x1002, 0x15dd, 0x1002, 0x15dd, 0xc8 },
1474 	{ 0, 0, 0, 0, 0 },
1475 };
1476 
1477 static bool dm_should_disable_stutter(struct pci_dev *pdev)
1478 {
1479 	const struct amdgpu_stutter_quirk *p = amdgpu_stutter_quirk_list;
1480 
1481 	while (p && p->chip_device != 0) {
1482 		if (pdev->vendor == p->chip_vendor &&
1483 		    pdev->device == p->chip_device &&
1484 		    pdev->subsystem_vendor == p->subsys_vendor &&
1485 		    pdev->subsystem_device == p->subsys_device &&
1486 		    pdev->revision == p->revision) {
1487 			return true;
1488 		}
1489 		++p;
1490 	}
1491 	return false;
1492 }
1493 
1494 static const struct dmi_system_id hpd_disconnect_quirk_table[] = {
1495 	{
1496 		.matches = {
1497 			DMI_MATCH(DMI_SYS_VENDOR, "Dell Inc."),
1498 			DMI_MATCH(DMI_PRODUCT_NAME, "Precision 3660"),
1499 		},
1500 	},
1501 	{
1502 		.matches = {
1503 			DMI_MATCH(DMI_SYS_VENDOR, "Dell Inc."),
1504 			DMI_MATCH(DMI_PRODUCT_NAME, "Precision 3260"),
1505 		},
1506 	},
1507 	{
1508 		.matches = {
1509 			DMI_MATCH(DMI_SYS_VENDOR, "Dell Inc."),
1510 			DMI_MATCH(DMI_PRODUCT_NAME, "Precision 3460"),
1511 		},
1512 	},
1513 	{
1514 		.matches = {
1515 			DMI_MATCH(DMI_SYS_VENDOR, "Dell Inc."),
1516 			DMI_MATCH(DMI_PRODUCT_NAME, "OptiPlex Tower Plus 7010"),
1517 		},
1518 	},
1519 	{
1520 		.matches = {
1521 			DMI_MATCH(DMI_SYS_VENDOR, "Dell Inc."),
1522 			DMI_MATCH(DMI_PRODUCT_NAME, "OptiPlex Tower 7010"),
1523 		},
1524 	},
1525 	{
1526 		.matches = {
1527 			DMI_MATCH(DMI_SYS_VENDOR, "Dell Inc."),
1528 			DMI_MATCH(DMI_PRODUCT_NAME, "OptiPlex SFF Plus 7010"),
1529 		},
1530 	},
1531 	{
1532 		.matches = {
1533 			DMI_MATCH(DMI_SYS_VENDOR, "Dell Inc."),
1534 			DMI_MATCH(DMI_PRODUCT_NAME, "OptiPlex SFF 7010"),
1535 		},
1536 	},
1537 	{
1538 		.matches = {
1539 			DMI_MATCH(DMI_SYS_VENDOR, "Dell Inc."),
1540 			DMI_MATCH(DMI_PRODUCT_NAME, "OptiPlex Micro Plus 7010"),
1541 		},
1542 	},
1543 	{
1544 		.matches = {
1545 			DMI_MATCH(DMI_SYS_VENDOR, "Dell Inc."),
1546 			DMI_MATCH(DMI_PRODUCT_NAME, "OptiPlex Micro 7010"),
1547 		},
1548 	},
1549 	{}
1550 	/* TODO: refactor this from a fixed table to a dynamic option */
1551 };
1552 
1553 static void retrieve_dmi_info(struct amdgpu_display_manager *dm)
1554 {
1555 	const struct dmi_system_id *dmi_id;
1556 
1557 	dm->aux_hpd_discon_quirk = false;
1558 
1559 	dmi_id = dmi_first_match(hpd_disconnect_quirk_table);
1560 	if (dmi_id) {
1561 		dm->aux_hpd_discon_quirk = true;
1562 		DRM_INFO("aux_hpd_discon_quirk attached\n");
1563 	}
1564 }
1565 
1566 static int amdgpu_dm_init(struct amdgpu_device *adev)
1567 {
1568 	struct dc_init_data init_data;
1569 	struct dc_callback_init init_params;
1570 	int r;
1571 
1572 	adev->dm.ddev = adev_to_drm(adev);
1573 	adev->dm.adev = adev;
1574 
1575 	/* Zero all the fields */
1576 	memset(&init_data, 0, sizeof(init_data));
1577 	memset(&init_params, 0, sizeof(init_params));
1578 
1579 	mutex_init(&adev->dm.dpia_aux_lock);
1580 	mutex_init(&adev->dm.dc_lock);
1581 	mutex_init(&adev->dm.audio_lock);
1582 
1583 	if (amdgpu_dm_irq_init(adev)) {
1584 		DRM_ERROR("amdgpu: failed to initialize DM IRQ support.\n");
1585 		goto error;
1586 	}
1587 
1588 	init_data.asic_id.chip_family = adev->family;
1589 
1590 	init_data.asic_id.pci_revision_id = adev->pdev->revision;
1591 	init_data.asic_id.hw_internal_rev = adev->external_rev_id;
1592 	init_data.asic_id.chip_id = adev->pdev->device;
1593 
1594 	init_data.asic_id.vram_width = adev->gmc.vram_width;
1595 	/* TODO: initialize init_data.asic_id.vram_type here!!!! */
1596 	init_data.asic_id.atombios_base_address =
1597 		adev->mode_info.atom_context->bios;
1598 
1599 	init_data.driver = adev;
1600 
1601 	adev->dm.cgs_device = amdgpu_cgs_create_device(adev);
1602 
1603 	if (!adev->dm.cgs_device) {
1604 		DRM_ERROR("amdgpu: failed to create cgs device.\n");
1605 		goto error;
1606 	}
1607 
1608 	init_data.cgs_device = adev->dm.cgs_device;
1609 
1610 	init_data.dce_environment = DCE_ENV_PRODUCTION_DRV;
1611 
1612 	switch (amdgpu_ip_version(adev, DCE_HWIP, 0)) {
1613 	case IP_VERSION(2, 1, 0):
1614 		switch (adev->dm.dmcub_fw_version) {
1615 		case 0: /* development */
1616 		case 0x1: /* linux-firmware.git hash 6d9f399 */
1617 		case 0x01000000: /* linux-firmware.git hash 9a0b0f4 */
1618 			init_data.flags.disable_dmcu = false;
1619 			break;
1620 		default:
1621 			init_data.flags.disable_dmcu = true;
1622 		}
1623 		break;
1624 	case IP_VERSION(2, 0, 3):
1625 		init_data.flags.disable_dmcu = true;
1626 		break;
1627 	default:
1628 		break;
1629 	}
1630 
1631 	/* APU support S/G display by default except:
1632 	 * ASICs before Carrizo,
1633 	 * RAVEN1 (Users reported stability issue)
1634 	 */
1635 
1636 	if (adev->asic_type < CHIP_CARRIZO) {
1637 		init_data.flags.gpu_vm_support = false;
1638 	} else if (adev->asic_type == CHIP_RAVEN) {
1639 		if (adev->apu_flags & AMD_APU_IS_RAVEN)
1640 			init_data.flags.gpu_vm_support = false;
1641 		else
1642 			init_data.flags.gpu_vm_support = (amdgpu_sg_display != 0);
1643 	} else {
1644 		init_data.flags.gpu_vm_support = (amdgpu_sg_display != 0) && (adev->flags & AMD_IS_APU);
1645 	}
1646 
1647 	adev->mode_info.gpu_vm_support = init_data.flags.gpu_vm_support;
1648 
1649 	if (amdgpu_dc_feature_mask & DC_FBC_MASK)
1650 		init_data.flags.fbc_support = true;
1651 
1652 	if (amdgpu_dc_feature_mask & DC_MULTI_MON_PP_MCLK_SWITCH_MASK)
1653 		init_data.flags.multi_mon_pp_mclk_switch = true;
1654 
1655 	if (amdgpu_dc_feature_mask & DC_DISABLE_FRACTIONAL_PWM_MASK)
1656 		init_data.flags.disable_fractional_pwm = true;
1657 
1658 	if (amdgpu_dc_feature_mask & DC_EDP_NO_POWER_SEQUENCING)
1659 		init_data.flags.edp_no_power_sequencing = true;
1660 
1661 	if (amdgpu_dc_feature_mask & DC_DISABLE_LTTPR_DP1_4A)
1662 		init_data.flags.allow_lttpr_non_transparent_mode.bits.DP1_4A = true;
1663 	if (amdgpu_dc_feature_mask & DC_DISABLE_LTTPR_DP2_0)
1664 		init_data.flags.allow_lttpr_non_transparent_mode.bits.DP2_0 = true;
1665 
1666 	init_data.flags.seamless_boot_edp_requested = false;
1667 
1668 	if (amdgpu_device_seamless_boot_supported(adev)) {
1669 		init_data.flags.seamless_boot_edp_requested = true;
1670 		init_data.flags.allow_seamless_boot_optimization = true;
1671 		DRM_INFO("Seamless boot condition check passed\n");
1672 	}
1673 
1674 	init_data.flags.enable_mipi_converter_optimization = true;
1675 
1676 	init_data.dcn_reg_offsets = adev->reg_offset[DCE_HWIP][0];
1677 	init_data.nbio_reg_offsets = adev->reg_offset[NBIO_HWIP][0];
1678 	init_data.clk_reg_offsets = adev->reg_offset[CLK_HWIP][0];
1679 
1680 	INIT_LIST_HEAD(&adev->dm.da_list);
1681 
1682 	retrieve_dmi_info(&adev->dm);
1683 
1684 	/* Display Core create. */
1685 	adev->dm.dc = dc_create(&init_data);
1686 
1687 	if (adev->dm.dc) {
1688 		DRM_INFO("Display Core v%s initialized on %s\n", DC_VER,
1689 			 dce_version_to_string(adev->dm.dc->ctx->dce_version));
1690 	} else {
1691 		DRM_INFO("Display Core failed to initialize with v%s!\n", DC_VER);
1692 		goto error;
1693 	}
1694 
1695 	if (amdgpu_dc_debug_mask & DC_DISABLE_PIPE_SPLIT) {
1696 		adev->dm.dc->debug.force_single_disp_pipe_split = false;
1697 		adev->dm.dc->debug.pipe_split_policy = MPC_SPLIT_AVOID;
1698 	}
1699 
1700 	if (adev->asic_type != CHIP_CARRIZO && adev->asic_type != CHIP_STONEY)
1701 		adev->dm.dc->debug.disable_stutter = amdgpu_pp_feature_mask & PP_STUTTER_MODE ? false : true;
1702 	if (dm_should_disable_stutter(adev->pdev))
1703 		adev->dm.dc->debug.disable_stutter = true;
1704 
1705 	if (amdgpu_dc_debug_mask & DC_DISABLE_STUTTER)
1706 		adev->dm.dc->debug.disable_stutter = true;
1707 
1708 	if (amdgpu_dc_debug_mask & DC_DISABLE_DSC)
1709 		adev->dm.dc->debug.disable_dsc = true;
1710 
1711 	if (amdgpu_dc_debug_mask & DC_DISABLE_CLOCK_GATING)
1712 		adev->dm.dc->debug.disable_clock_gate = true;
1713 
1714 	if (amdgpu_dc_debug_mask & DC_FORCE_SUBVP_MCLK_SWITCH)
1715 		adev->dm.dc->debug.force_subvp_mclk_switch = true;
1716 
1717 	adev->dm.dc->debug.visual_confirm = amdgpu_dc_visual_confirm;
1718 
1719 	/* TODO: Remove after DP2 receiver gets proper support of Cable ID feature */
1720 	adev->dm.dc->debug.ignore_cable_id = true;
1721 
1722 	/* TODO: There is a new drm mst change where the freedom of
1723 	 * vc_next_start_slot update is revoked/moved into drm, instead of in
1724 	 * driver. This forces us to make sure to get vc_next_start_slot updated
1725 	 * in drm function each time without considering if mst_state is active
1726 	 * or not. Otherwise, next time hotplug will give wrong start_slot
1727 	 * number. We are implementing a temporary solution to even notify drm
1728 	 * mst deallocation when link is no longer of MST type when uncommitting
1729 	 * the stream so we will have more time to work on a proper solution.
1730 	 * Ideally when dm_helpers_dp_mst_stop_top_mgr message is triggered, we
1731 	 * should notify drm to do a complete "reset" of its states and stop
1732 	 * calling further drm mst functions when link is no longer of an MST
1733 	 * type. This could happen when we unplug an MST hubs/displays. When
1734 	 * uncommit stream comes later after unplug, we should just reset
1735 	 * hardware states only.
1736 	 */
1737 	adev->dm.dc->debug.temp_mst_deallocation_sequence = true;
1738 
1739 	if (adev->dm.dc->caps.dp_hdmi21_pcon_support)
1740 		DRM_INFO("DP-HDMI FRL PCON supported\n");
1741 
1742 	r = dm_dmub_hw_init(adev);
1743 	if (r) {
1744 		DRM_ERROR("DMUB interface failed to initialize: status=%d\n", r);
1745 		goto error;
1746 	}
1747 
1748 	dc_hardware_init(adev->dm.dc);
1749 
1750 	adev->dm.hpd_rx_offload_wq = hpd_rx_irq_create_workqueue(adev->dm.dc);
1751 	if (!adev->dm.hpd_rx_offload_wq) {
1752 		DRM_ERROR("amdgpu: failed to create hpd rx offload workqueue.\n");
1753 		goto error;
1754 	}
1755 
1756 	if ((adev->flags & AMD_IS_APU) && (adev->asic_type >= CHIP_CARRIZO)) {
1757 		struct dc_phy_addr_space_config pa_config;
1758 
1759 		mmhub_read_system_context(adev, &pa_config);
1760 
1761 		// Call the DC init_memory func
1762 		dc_setup_system_context(adev->dm.dc, &pa_config);
1763 	}
1764 
1765 	adev->dm.freesync_module = mod_freesync_create(adev->dm.dc);
1766 	if (!adev->dm.freesync_module) {
1767 		DRM_ERROR(
1768 		"amdgpu: failed to initialize freesync_module.\n");
1769 	} else
1770 		DRM_DEBUG_DRIVER("amdgpu: freesync_module init done %p.\n",
1771 				adev->dm.freesync_module);
1772 
1773 	amdgpu_dm_init_color_mod();
1774 
1775 	if (adev->dm.dc->caps.max_links > 0) {
1776 		adev->dm.vblank_control_workqueue =
1777 			create_singlethread_workqueue("dm_vblank_control_workqueue");
1778 		if (!adev->dm.vblank_control_workqueue)
1779 			DRM_ERROR("amdgpu: failed to initialize vblank_workqueue.\n");
1780 	}
1781 
1782 	if (adev->dm.dc->caps.max_links > 0 && adev->family >= AMDGPU_FAMILY_RV) {
1783 		adev->dm.hdcp_workqueue = hdcp_create_workqueue(adev, &init_params.cp_psp, adev->dm.dc);
1784 
1785 		if (!adev->dm.hdcp_workqueue)
1786 			DRM_ERROR("amdgpu: failed to initialize hdcp_workqueue.\n");
1787 		else
1788 			DRM_DEBUG_DRIVER("amdgpu: hdcp_workqueue init done %p.\n", adev->dm.hdcp_workqueue);
1789 
1790 		dc_init_callbacks(adev->dm.dc, &init_params);
1791 	}
1792 	if (dc_is_dmub_outbox_supported(adev->dm.dc)) {
1793 		init_completion(&adev->dm.dmub_aux_transfer_done);
1794 		adev->dm.dmub_notify = kzalloc(sizeof(struct dmub_notification), GFP_KERNEL);
1795 		if (!adev->dm.dmub_notify) {
1796 			DRM_INFO("amdgpu: fail to allocate adev->dm.dmub_notify");
1797 			goto error;
1798 		}
1799 
1800 		adev->dm.delayed_hpd_wq = create_singlethread_workqueue("amdgpu_dm_hpd_wq");
1801 		if (!adev->dm.delayed_hpd_wq) {
1802 			DRM_ERROR("amdgpu: failed to create hpd offload workqueue.\n");
1803 			goto error;
1804 		}
1805 
1806 		amdgpu_dm_outbox_init(adev);
1807 		if (!register_dmub_notify_callback(adev, DMUB_NOTIFICATION_AUX_REPLY,
1808 			dmub_aux_setconfig_callback, false)) {
1809 			DRM_ERROR("amdgpu: fail to register dmub aux callback");
1810 			goto error;
1811 		}
1812 		if (!register_dmub_notify_callback(adev, DMUB_NOTIFICATION_HPD, dmub_hpd_callback, true)) {
1813 			DRM_ERROR("amdgpu: fail to register dmub hpd callback");
1814 			goto error;
1815 		}
1816 		if (!register_dmub_notify_callback(adev, DMUB_NOTIFICATION_HPD_IRQ, dmub_hpd_callback, true)) {
1817 			DRM_ERROR("amdgpu: fail to register dmub hpd callback");
1818 			goto error;
1819 		}
1820 	}
1821 
1822 	/* Enable outbox notification only after IRQ handlers are registered and DMUB is alive.
1823 	 * It is expected that DMUB will resend any pending notifications at this point, for
1824 	 * example HPD from DPIA.
1825 	 */
1826 	if (dc_is_dmub_outbox_supported(adev->dm.dc)) {
1827 		dc_enable_dmub_outbox(adev->dm.dc);
1828 
1829 		/* DPIA trace goes to dmesg logs only if outbox is enabled */
1830 		if (amdgpu_dc_debug_mask & DC_ENABLE_DPIA_TRACE)
1831 			dc_dmub_srv_enable_dpia_trace(adev->dm.dc);
1832 	}
1833 
1834 	if (amdgpu_dm_initialize_drm_device(adev)) {
1835 		DRM_ERROR(
1836 		"amdgpu: failed to initialize sw for display support.\n");
1837 		goto error;
1838 	}
1839 
1840 	/* create fake encoders for MST */
1841 	dm_dp_create_fake_mst_encoders(adev);
1842 
1843 	/* TODO: Add_display_info? */
1844 
1845 	/* TODO use dynamic cursor width */
1846 	adev_to_drm(adev)->mode_config.cursor_width = adev->dm.dc->caps.max_cursor_size;
1847 	adev_to_drm(adev)->mode_config.cursor_height = adev->dm.dc->caps.max_cursor_size;
1848 
1849 	if (drm_vblank_init(adev_to_drm(adev), adev->dm.display_indexes_num)) {
1850 		DRM_ERROR(
1851 		"amdgpu: failed to initialize sw for display support.\n");
1852 		goto error;
1853 	}
1854 
1855 #if defined(CONFIG_DRM_AMD_SECURE_DISPLAY)
1856 	adev->dm.secure_display_ctxs = amdgpu_dm_crtc_secure_display_create_contexts(adev);
1857 	if (!adev->dm.secure_display_ctxs)
1858 		DRM_ERROR("amdgpu: failed to initialize secure display contexts.\n");
1859 #endif
1860 
1861 	DRM_DEBUG_DRIVER("KMS initialized.\n");
1862 
1863 	return 0;
1864 error:
1865 	amdgpu_dm_fini(adev);
1866 
1867 	return -EINVAL;
1868 }
1869 
1870 static int amdgpu_dm_early_fini(void *handle)
1871 {
1872 	struct amdgpu_device *adev = (struct amdgpu_device *)handle;
1873 
1874 	amdgpu_dm_audio_fini(adev);
1875 
1876 	return 0;
1877 }
1878 
1879 static void amdgpu_dm_fini(struct amdgpu_device *adev)
1880 {
1881 	int i;
1882 
1883 	if (adev->dm.vblank_control_workqueue) {
1884 		destroy_workqueue(adev->dm.vblank_control_workqueue);
1885 		adev->dm.vblank_control_workqueue = NULL;
1886 	}
1887 
1888 	amdgpu_dm_destroy_drm_device(&adev->dm);
1889 
1890 #if defined(CONFIG_DRM_AMD_SECURE_DISPLAY)
1891 	if (adev->dm.secure_display_ctxs) {
1892 		for (i = 0; i < adev->mode_info.num_crtc; i++) {
1893 			if (adev->dm.secure_display_ctxs[i].crtc) {
1894 				flush_work(&adev->dm.secure_display_ctxs[i].notify_ta_work);
1895 				flush_work(&adev->dm.secure_display_ctxs[i].forward_roi_work);
1896 			}
1897 		}
1898 		kfree(adev->dm.secure_display_ctxs);
1899 		adev->dm.secure_display_ctxs = NULL;
1900 	}
1901 #endif
1902 	if (adev->dm.hdcp_workqueue) {
1903 		hdcp_destroy(&adev->dev->kobj, adev->dm.hdcp_workqueue);
1904 		adev->dm.hdcp_workqueue = NULL;
1905 	}
1906 
1907 	if (adev->dm.dc)
1908 		dc_deinit_callbacks(adev->dm.dc);
1909 
1910 	if (adev->dm.dc)
1911 		dc_dmub_srv_destroy(&adev->dm.dc->ctx->dmub_srv);
1912 
1913 	if (dc_enable_dmub_notifications(adev->dm.dc)) {
1914 		kfree(adev->dm.dmub_notify);
1915 		adev->dm.dmub_notify = NULL;
1916 		destroy_workqueue(adev->dm.delayed_hpd_wq);
1917 		adev->dm.delayed_hpd_wq = NULL;
1918 	}
1919 
1920 	if (adev->dm.dmub_bo)
1921 		amdgpu_bo_free_kernel(&adev->dm.dmub_bo,
1922 				      &adev->dm.dmub_bo_gpu_addr,
1923 				      &adev->dm.dmub_bo_cpu_addr);
1924 
1925 	if (adev->dm.hpd_rx_offload_wq) {
1926 		for (i = 0; i < adev->dm.dc->caps.max_links; i++) {
1927 			if (adev->dm.hpd_rx_offload_wq[i].wq) {
1928 				destroy_workqueue(adev->dm.hpd_rx_offload_wq[i].wq);
1929 				adev->dm.hpd_rx_offload_wq[i].wq = NULL;
1930 			}
1931 		}
1932 
1933 		kfree(adev->dm.hpd_rx_offload_wq);
1934 		adev->dm.hpd_rx_offload_wq = NULL;
1935 	}
1936 
1937 	/* DC Destroy TODO: Replace destroy DAL */
1938 	if (adev->dm.dc)
1939 		dc_destroy(&adev->dm.dc);
1940 	/*
1941 	 * TODO: pageflip, vlank interrupt
1942 	 *
1943 	 * amdgpu_dm_irq_fini(adev);
1944 	 */
1945 
1946 	if (adev->dm.cgs_device) {
1947 		amdgpu_cgs_destroy_device(adev->dm.cgs_device);
1948 		adev->dm.cgs_device = NULL;
1949 	}
1950 	if (adev->dm.freesync_module) {
1951 		mod_freesync_destroy(adev->dm.freesync_module);
1952 		adev->dm.freesync_module = NULL;
1953 	}
1954 
1955 	mutex_destroy(&adev->dm.audio_lock);
1956 	mutex_destroy(&adev->dm.dc_lock);
1957 	mutex_destroy(&adev->dm.dpia_aux_lock);
1958 }
1959 
1960 static int load_dmcu_fw(struct amdgpu_device *adev)
1961 {
1962 	const char *fw_name_dmcu = NULL;
1963 	int r;
1964 	const struct dmcu_firmware_header_v1_0 *hdr;
1965 
1966 	switch (adev->asic_type) {
1967 #if defined(CONFIG_DRM_AMD_DC_SI)
1968 	case CHIP_TAHITI:
1969 	case CHIP_PITCAIRN:
1970 	case CHIP_VERDE:
1971 	case CHIP_OLAND:
1972 #endif
1973 	case CHIP_BONAIRE:
1974 	case CHIP_HAWAII:
1975 	case CHIP_KAVERI:
1976 	case CHIP_KABINI:
1977 	case CHIP_MULLINS:
1978 	case CHIP_TONGA:
1979 	case CHIP_FIJI:
1980 	case CHIP_CARRIZO:
1981 	case CHIP_STONEY:
1982 	case CHIP_POLARIS11:
1983 	case CHIP_POLARIS10:
1984 	case CHIP_POLARIS12:
1985 	case CHIP_VEGAM:
1986 	case CHIP_VEGA10:
1987 	case CHIP_VEGA12:
1988 	case CHIP_VEGA20:
1989 		return 0;
1990 	case CHIP_NAVI12:
1991 		fw_name_dmcu = FIRMWARE_NAVI12_DMCU;
1992 		break;
1993 	case CHIP_RAVEN:
1994 		if (ASICREV_IS_PICASSO(adev->external_rev_id))
1995 			fw_name_dmcu = FIRMWARE_RAVEN_DMCU;
1996 		else if (ASICREV_IS_RAVEN2(adev->external_rev_id))
1997 			fw_name_dmcu = FIRMWARE_RAVEN_DMCU;
1998 		else
1999 			return 0;
2000 		break;
2001 	default:
2002 		switch (amdgpu_ip_version(adev, DCE_HWIP, 0)) {
2003 		case IP_VERSION(2, 0, 2):
2004 		case IP_VERSION(2, 0, 3):
2005 		case IP_VERSION(2, 0, 0):
2006 		case IP_VERSION(2, 1, 0):
2007 		case IP_VERSION(3, 0, 0):
2008 		case IP_VERSION(3, 0, 2):
2009 		case IP_VERSION(3, 0, 3):
2010 		case IP_VERSION(3, 0, 1):
2011 		case IP_VERSION(3, 1, 2):
2012 		case IP_VERSION(3, 1, 3):
2013 		case IP_VERSION(3, 1, 4):
2014 		case IP_VERSION(3, 1, 5):
2015 		case IP_VERSION(3, 1, 6):
2016 		case IP_VERSION(3, 2, 0):
2017 		case IP_VERSION(3, 2, 1):
2018 		case IP_VERSION(3, 5, 0):
2019 			return 0;
2020 		default:
2021 			break;
2022 		}
2023 		DRM_ERROR("Unsupported ASIC type: 0x%X\n", adev->asic_type);
2024 		return -EINVAL;
2025 	}
2026 
2027 	if (adev->firmware.load_type != AMDGPU_FW_LOAD_PSP) {
2028 		DRM_DEBUG_KMS("dm: DMCU firmware not supported on direct or SMU loading\n");
2029 		return 0;
2030 	}
2031 
2032 	r = amdgpu_ucode_request(adev, &adev->dm.fw_dmcu, fw_name_dmcu);
2033 	if (r == -ENODEV) {
2034 		/* DMCU firmware is not necessary, so don't raise a fuss if it's missing */
2035 		DRM_DEBUG_KMS("dm: DMCU firmware not found\n");
2036 		adev->dm.fw_dmcu = NULL;
2037 		return 0;
2038 	}
2039 	if (r) {
2040 		dev_err(adev->dev, "amdgpu_dm: Can't validate firmware \"%s\"\n",
2041 			fw_name_dmcu);
2042 		amdgpu_ucode_release(&adev->dm.fw_dmcu);
2043 		return r;
2044 	}
2045 
2046 	hdr = (const struct dmcu_firmware_header_v1_0 *)adev->dm.fw_dmcu->data;
2047 	adev->firmware.ucode[AMDGPU_UCODE_ID_DMCU_ERAM].ucode_id = AMDGPU_UCODE_ID_DMCU_ERAM;
2048 	adev->firmware.ucode[AMDGPU_UCODE_ID_DMCU_ERAM].fw = adev->dm.fw_dmcu;
2049 	adev->firmware.fw_size +=
2050 		ALIGN(le32_to_cpu(hdr->header.ucode_size_bytes) - le32_to_cpu(hdr->intv_size_bytes), PAGE_SIZE);
2051 
2052 	adev->firmware.ucode[AMDGPU_UCODE_ID_DMCU_INTV].ucode_id = AMDGPU_UCODE_ID_DMCU_INTV;
2053 	adev->firmware.ucode[AMDGPU_UCODE_ID_DMCU_INTV].fw = adev->dm.fw_dmcu;
2054 	adev->firmware.fw_size +=
2055 		ALIGN(le32_to_cpu(hdr->intv_size_bytes), PAGE_SIZE);
2056 
2057 	adev->dm.dmcu_fw_version = le32_to_cpu(hdr->header.ucode_version);
2058 
2059 	DRM_DEBUG_KMS("PSP loading DMCU firmware\n");
2060 
2061 	return 0;
2062 }
2063 
2064 static uint32_t amdgpu_dm_dmub_reg_read(void *ctx, uint32_t address)
2065 {
2066 	struct amdgpu_device *adev = ctx;
2067 
2068 	return dm_read_reg(adev->dm.dc->ctx, address);
2069 }
2070 
2071 static void amdgpu_dm_dmub_reg_write(void *ctx, uint32_t address,
2072 				     uint32_t value)
2073 {
2074 	struct amdgpu_device *adev = ctx;
2075 
2076 	return dm_write_reg(adev->dm.dc->ctx, address, value);
2077 }
2078 
2079 static int dm_dmub_sw_init(struct amdgpu_device *adev)
2080 {
2081 	struct dmub_srv_create_params create_params;
2082 	struct dmub_srv_region_params region_params;
2083 	struct dmub_srv_region_info region_info;
2084 	struct dmub_srv_memory_params memory_params;
2085 	struct dmub_srv_fb_info *fb_info;
2086 	struct dmub_srv *dmub_srv;
2087 	const struct dmcub_firmware_header_v1_0 *hdr;
2088 	enum dmub_asic dmub_asic;
2089 	enum dmub_status status;
2090 	int r;
2091 
2092 	switch (amdgpu_ip_version(adev, DCE_HWIP, 0)) {
2093 	case IP_VERSION(2, 1, 0):
2094 		dmub_asic = DMUB_ASIC_DCN21;
2095 		break;
2096 	case IP_VERSION(3, 0, 0):
2097 		dmub_asic = DMUB_ASIC_DCN30;
2098 		break;
2099 	case IP_VERSION(3, 0, 1):
2100 		dmub_asic = DMUB_ASIC_DCN301;
2101 		break;
2102 	case IP_VERSION(3, 0, 2):
2103 		dmub_asic = DMUB_ASIC_DCN302;
2104 		break;
2105 	case IP_VERSION(3, 0, 3):
2106 		dmub_asic = DMUB_ASIC_DCN303;
2107 		break;
2108 	case IP_VERSION(3, 1, 2):
2109 	case IP_VERSION(3, 1, 3):
2110 		dmub_asic = (adev->external_rev_id == YELLOW_CARP_B0) ? DMUB_ASIC_DCN31B : DMUB_ASIC_DCN31;
2111 		break;
2112 	case IP_VERSION(3, 1, 4):
2113 		dmub_asic = DMUB_ASIC_DCN314;
2114 		break;
2115 	case IP_VERSION(3, 1, 5):
2116 		dmub_asic = DMUB_ASIC_DCN315;
2117 		break;
2118 	case IP_VERSION(3, 1, 6):
2119 		dmub_asic = DMUB_ASIC_DCN316;
2120 		break;
2121 	case IP_VERSION(3, 2, 0):
2122 		dmub_asic = DMUB_ASIC_DCN32;
2123 		break;
2124 	case IP_VERSION(3, 2, 1):
2125 		dmub_asic = DMUB_ASIC_DCN321;
2126 		break;
2127 	case IP_VERSION(3, 5, 0):
2128 		dmub_asic = DMUB_ASIC_DCN35;
2129 		break;
2130 	default:
2131 		/* ASIC doesn't support DMUB. */
2132 		return 0;
2133 	}
2134 
2135 	hdr = (const struct dmcub_firmware_header_v1_0 *)adev->dm.dmub_fw->data;
2136 	adev->dm.dmcub_fw_version = le32_to_cpu(hdr->header.ucode_version);
2137 
2138 	if (adev->firmware.load_type == AMDGPU_FW_LOAD_PSP) {
2139 		adev->firmware.ucode[AMDGPU_UCODE_ID_DMCUB].ucode_id =
2140 			AMDGPU_UCODE_ID_DMCUB;
2141 		adev->firmware.ucode[AMDGPU_UCODE_ID_DMCUB].fw =
2142 			adev->dm.dmub_fw;
2143 		adev->firmware.fw_size +=
2144 			ALIGN(le32_to_cpu(hdr->inst_const_bytes), PAGE_SIZE);
2145 
2146 		DRM_INFO("Loading DMUB firmware via PSP: version=0x%08X\n",
2147 			 adev->dm.dmcub_fw_version);
2148 	}
2149 
2150 
2151 	adev->dm.dmub_srv = kzalloc(sizeof(*adev->dm.dmub_srv), GFP_KERNEL);
2152 	dmub_srv = adev->dm.dmub_srv;
2153 
2154 	if (!dmub_srv) {
2155 		DRM_ERROR("Failed to allocate DMUB service!\n");
2156 		return -ENOMEM;
2157 	}
2158 
2159 	memset(&create_params, 0, sizeof(create_params));
2160 	create_params.user_ctx = adev;
2161 	create_params.funcs.reg_read = amdgpu_dm_dmub_reg_read;
2162 	create_params.funcs.reg_write = amdgpu_dm_dmub_reg_write;
2163 	create_params.asic = dmub_asic;
2164 
2165 	/* Create the DMUB service. */
2166 	status = dmub_srv_create(dmub_srv, &create_params);
2167 	if (status != DMUB_STATUS_OK) {
2168 		DRM_ERROR("Error creating DMUB service: %d\n", status);
2169 		return -EINVAL;
2170 	}
2171 
2172 	/* Calculate the size of all the regions for the DMUB service. */
2173 	memset(&region_params, 0, sizeof(region_params));
2174 
2175 	region_params.inst_const_size = le32_to_cpu(hdr->inst_const_bytes) -
2176 					PSP_HEADER_BYTES - PSP_FOOTER_BYTES;
2177 	region_params.bss_data_size = le32_to_cpu(hdr->bss_data_bytes);
2178 	region_params.vbios_size = adev->bios_size;
2179 	region_params.fw_bss_data = region_params.bss_data_size ?
2180 		adev->dm.dmub_fw->data +
2181 		le32_to_cpu(hdr->header.ucode_array_offset_bytes) +
2182 		le32_to_cpu(hdr->inst_const_bytes) : NULL;
2183 	region_params.fw_inst_const =
2184 		adev->dm.dmub_fw->data +
2185 		le32_to_cpu(hdr->header.ucode_array_offset_bytes) +
2186 		PSP_HEADER_BYTES;
2187 	region_params.is_mailbox_in_inbox = false;
2188 
2189 	status = dmub_srv_calc_region_info(dmub_srv, &region_params,
2190 					   &region_info);
2191 
2192 	if (status != DMUB_STATUS_OK) {
2193 		DRM_ERROR("Error calculating DMUB region info: %d\n", status);
2194 		return -EINVAL;
2195 	}
2196 
2197 	/*
2198 	 * Allocate a framebuffer based on the total size of all the regions.
2199 	 * TODO: Move this into GART.
2200 	 */
2201 	r = amdgpu_bo_create_kernel(adev, region_info.fb_size, PAGE_SIZE,
2202 				    AMDGPU_GEM_DOMAIN_VRAM |
2203 				    AMDGPU_GEM_DOMAIN_GTT,
2204 				    &adev->dm.dmub_bo,
2205 				    &adev->dm.dmub_bo_gpu_addr,
2206 				    &adev->dm.dmub_bo_cpu_addr);
2207 	if (r)
2208 		return r;
2209 
2210 	/* Rebase the regions on the framebuffer address. */
2211 	memset(&memory_params, 0, sizeof(memory_params));
2212 	memory_params.cpu_fb_addr = adev->dm.dmub_bo_cpu_addr;
2213 	memory_params.gpu_fb_addr = adev->dm.dmub_bo_gpu_addr;
2214 	memory_params.region_info = &region_info;
2215 
2216 	adev->dm.dmub_fb_info =
2217 		kzalloc(sizeof(*adev->dm.dmub_fb_info), GFP_KERNEL);
2218 	fb_info = adev->dm.dmub_fb_info;
2219 
2220 	if (!fb_info) {
2221 		DRM_ERROR(
2222 			"Failed to allocate framebuffer info for DMUB service!\n");
2223 		return -ENOMEM;
2224 	}
2225 
2226 	status = dmub_srv_calc_mem_info(dmub_srv, &memory_params, fb_info);
2227 	if (status != DMUB_STATUS_OK) {
2228 		DRM_ERROR("Error calculating DMUB FB info: %d\n", status);
2229 		return -EINVAL;
2230 	}
2231 
2232 	return 0;
2233 }
2234 
2235 static int dm_sw_init(void *handle)
2236 {
2237 	struct amdgpu_device *adev = (struct amdgpu_device *)handle;
2238 	int r;
2239 
2240 	r = dm_dmub_sw_init(adev);
2241 	if (r)
2242 		return r;
2243 
2244 	return load_dmcu_fw(adev);
2245 }
2246 
2247 static int dm_sw_fini(void *handle)
2248 {
2249 	struct amdgpu_device *adev = (struct amdgpu_device *)handle;
2250 
2251 	kfree(adev->dm.dmub_fb_info);
2252 	adev->dm.dmub_fb_info = NULL;
2253 
2254 	if (adev->dm.dmub_srv) {
2255 		dmub_srv_destroy(adev->dm.dmub_srv);
2256 		adev->dm.dmub_srv = NULL;
2257 	}
2258 
2259 	amdgpu_ucode_release(&adev->dm.dmub_fw);
2260 	amdgpu_ucode_release(&adev->dm.fw_dmcu);
2261 
2262 	return 0;
2263 }
2264 
2265 static int detect_mst_link_for_all_connectors(struct drm_device *dev)
2266 {
2267 	struct amdgpu_dm_connector *aconnector;
2268 	struct drm_connector *connector;
2269 	struct drm_connector_list_iter iter;
2270 	int ret = 0;
2271 
2272 	drm_connector_list_iter_begin(dev, &iter);
2273 	drm_for_each_connector_iter(connector, &iter) {
2274 		aconnector = to_amdgpu_dm_connector(connector);
2275 		if (aconnector->dc_link->type == dc_connection_mst_branch &&
2276 		    aconnector->mst_mgr.aux) {
2277 			DRM_DEBUG_DRIVER("DM_MST: starting TM on aconnector: %p [id: %d]\n",
2278 					 aconnector,
2279 					 aconnector->base.base.id);
2280 
2281 			ret = drm_dp_mst_topology_mgr_set_mst(&aconnector->mst_mgr, true);
2282 			if (ret < 0) {
2283 				DRM_ERROR("DM_MST: Failed to start MST\n");
2284 				aconnector->dc_link->type =
2285 					dc_connection_single;
2286 				ret = dm_helpers_dp_mst_stop_top_mgr(aconnector->dc_link->ctx,
2287 								     aconnector->dc_link);
2288 				break;
2289 			}
2290 		}
2291 	}
2292 	drm_connector_list_iter_end(&iter);
2293 
2294 	return ret;
2295 }
2296 
2297 static int dm_late_init(void *handle)
2298 {
2299 	struct amdgpu_device *adev = (struct amdgpu_device *)handle;
2300 
2301 	struct dmcu_iram_parameters params;
2302 	unsigned int linear_lut[16];
2303 	int i;
2304 	struct dmcu *dmcu = NULL;
2305 
2306 	dmcu = adev->dm.dc->res_pool->dmcu;
2307 
2308 	for (i = 0; i < 16; i++)
2309 		linear_lut[i] = 0xFFFF * i / 15;
2310 
2311 	params.set = 0;
2312 	params.backlight_ramping_override = false;
2313 	params.backlight_ramping_start = 0xCCCC;
2314 	params.backlight_ramping_reduction = 0xCCCCCCCC;
2315 	params.backlight_lut_array_size = 16;
2316 	params.backlight_lut_array = linear_lut;
2317 
2318 	/* Min backlight level after ABM reduction,  Don't allow below 1%
2319 	 * 0xFFFF x 0.01 = 0x28F
2320 	 */
2321 	params.min_abm_backlight = 0x28F;
2322 	/* In the case where abm is implemented on dmcub,
2323 	 * dmcu object will be null.
2324 	 * ABM 2.4 and up are implemented on dmcub.
2325 	 */
2326 	if (dmcu) {
2327 		if (!dmcu_load_iram(dmcu, params))
2328 			return -EINVAL;
2329 	} else if (adev->dm.dc->ctx->dmub_srv) {
2330 		struct dc_link *edp_links[MAX_NUM_EDP];
2331 		int edp_num;
2332 
2333 		dc_get_edp_links(adev->dm.dc, edp_links, &edp_num);
2334 		for (i = 0; i < edp_num; i++) {
2335 			if (!dmub_init_abm_config(adev->dm.dc->res_pool, params, i))
2336 				return -EINVAL;
2337 		}
2338 	}
2339 
2340 	return detect_mst_link_for_all_connectors(adev_to_drm(adev));
2341 }
2342 
2343 static void resume_mst_branch_status(struct drm_dp_mst_topology_mgr *mgr)
2344 {
2345 	int ret;
2346 	u8 guid[16];
2347 	u64 tmp64;
2348 
2349 	mutex_lock(&mgr->lock);
2350 	if (!mgr->mst_primary)
2351 		goto out_fail;
2352 
2353 	if (drm_dp_read_dpcd_caps(mgr->aux, mgr->dpcd) < 0) {
2354 		drm_dbg_kms(mgr->dev, "dpcd read failed - undocked during suspend?\n");
2355 		goto out_fail;
2356 	}
2357 
2358 	ret = drm_dp_dpcd_writeb(mgr->aux, DP_MSTM_CTRL,
2359 				 DP_MST_EN |
2360 				 DP_UP_REQ_EN |
2361 				 DP_UPSTREAM_IS_SRC);
2362 	if (ret < 0) {
2363 		drm_dbg_kms(mgr->dev, "mst write failed - undocked during suspend?\n");
2364 		goto out_fail;
2365 	}
2366 
2367 	/* Some hubs forget their guids after they resume */
2368 	ret = drm_dp_dpcd_read(mgr->aux, DP_GUID, guid, 16);
2369 	if (ret != 16) {
2370 		drm_dbg_kms(mgr->dev, "dpcd read failed - undocked during suspend?\n");
2371 		goto out_fail;
2372 	}
2373 
2374 	if (memchr_inv(guid, 0, 16) == NULL) {
2375 		tmp64 = get_jiffies_64();
2376 		memcpy(&guid[0], &tmp64, sizeof(u64));
2377 		memcpy(&guid[8], &tmp64, sizeof(u64));
2378 
2379 		ret = drm_dp_dpcd_write(mgr->aux, DP_GUID, guid, 16);
2380 
2381 		if (ret != 16) {
2382 			drm_dbg_kms(mgr->dev, "check mstb guid failed - undocked during suspend?\n");
2383 			goto out_fail;
2384 		}
2385 	}
2386 
2387 	memcpy(mgr->mst_primary->guid, guid, 16);
2388 
2389 out_fail:
2390 	mutex_unlock(&mgr->lock);
2391 }
2392 
2393 static void s3_handle_mst(struct drm_device *dev, bool suspend)
2394 {
2395 	struct amdgpu_dm_connector *aconnector;
2396 	struct drm_connector *connector;
2397 	struct drm_connector_list_iter iter;
2398 	struct drm_dp_mst_topology_mgr *mgr;
2399 
2400 	drm_connector_list_iter_begin(dev, &iter);
2401 	drm_for_each_connector_iter(connector, &iter) {
2402 		aconnector = to_amdgpu_dm_connector(connector);
2403 		if (aconnector->dc_link->type != dc_connection_mst_branch ||
2404 		    aconnector->mst_root)
2405 			continue;
2406 
2407 		mgr = &aconnector->mst_mgr;
2408 
2409 		if (suspend) {
2410 			drm_dp_mst_topology_mgr_suspend(mgr);
2411 		} else {
2412 			/* if extended timeout is supported in hardware,
2413 			 * default to LTTPR timeout (3.2ms) first as a W/A for DP link layer
2414 			 * CTS 4.2.1.1 regression introduced by CTS specs requirement update.
2415 			 */
2416 			try_to_configure_aux_timeout(aconnector->dc_link->ddc, LINK_AUX_DEFAULT_LTTPR_TIMEOUT_PERIOD);
2417 			if (!dp_is_lttpr_present(aconnector->dc_link))
2418 				try_to_configure_aux_timeout(aconnector->dc_link->ddc, LINK_AUX_DEFAULT_TIMEOUT_PERIOD);
2419 
2420 			/* TODO: move resume_mst_branch_status() into drm mst resume again
2421 			 * once topology probing work is pulled out from mst resume into mst
2422 			 * resume 2nd step. mst resume 2nd step should be called after old
2423 			 * state getting restored (i.e. drm_atomic_helper_resume()).
2424 			 */
2425 			resume_mst_branch_status(mgr);
2426 		}
2427 	}
2428 	drm_connector_list_iter_end(&iter);
2429 }
2430 
2431 static int amdgpu_dm_smu_write_watermarks_table(struct amdgpu_device *adev)
2432 {
2433 	int ret = 0;
2434 
2435 	/* This interface is for dGPU Navi1x.Linux dc-pplib interface depends
2436 	 * on window driver dc implementation.
2437 	 * For Navi1x, clock settings of dcn watermarks are fixed. the settings
2438 	 * should be passed to smu during boot up and resume from s3.
2439 	 * boot up: dc calculate dcn watermark clock settings within dc_create,
2440 	 * dcn20_resource_construct
2441 	 * then call pplib functions below to pass the settings to smu:
2442 	 * smu_set_watermarks_for_clock_ranges
2443 	 * smu_set_watermarks_table
2444 	 * navi10_set_watermarks_table
2445 	 * smu_write_watermarks_table
2446 	 *
2447 	 * For Renoir, clock settings of dcn watermark are also fixed values.
2448 	 * dc has implemented different flow for window driver:
2449 	 * dc_hardware_init / dc_set_power_state
2450 	 * dcn10_init_hw
2451 	 * notify_wm_ranges
2452 	 * set_wm_ranges
2453 	 * -- Linux
2454 	 * smu_set_watermarks_for_clock_ranges
2455 	 * renoir_set_watermarks_table
2456 	 * smu_write_watermarks_table
2457 	 *
2458 	 * For Linux,
2459 	 * dc_hardware_init -> amdgpu_dm_init
2460 	 * dc_set_power_state --> dm_resume
2461 	 *
2462 	 * therefore, this function apply to navi10/12/14 but not Renoir
2463 	 * *
2464 	 */
2465 	switch (amdgpu_ip_version(adev, DCE_HWIP, 0)) {
2466 	case IP_VERSION(2, 0, 2):
2467 	case IP_VERSION(2, 0, 0):
2468 		break;
2469 	default:
2470 		return 0;
2471 	}
2472 
2473 	ret = amdgpu_dpm_write_watermarks_table(adev);
2474 	if (ret) {
2475 		DRM_ERROR("Failed to update WMTABLE!\n");
2476 		return ret;
2477 	}
2478 
2479 	return 0;
2480 }
2481 
2482 /**
2483  * dm_hw_init() - Initialize DC device
2484  * @handle: The base driver device containing the amdgpu_dm device.
2485  *
2486  * Initialize the &struct amdgpu_display_manager device. This involves calling
2487  * the initializers of each DM component, then populating the struct with them.
2488  *
2489  * Although the function implies hardware initialization, both hardware and
2490  * software are initialized here. Splitting them out to their relevant init
2491  * hooks is a future TODO item.
2492  *
2493  * Some notable things that are initialized here:
2494  *
2495  * - Display Core, both software and hardware
2496  * - DC modules that we need (freesync and color management)
2497  * - DRM software states
2498  * - Interrupt sources and handlers
2499  * - Vblank support
2500  * - Debug FS entries, if enabled
2501  */
2502 static int dm_hw_init(void *handle)
2503 {
2504 	struct amdgpu_device *adev = (struct amdgpu_device *)handle;
2505 	/* Create DAL display manager */
2506 	amdgpu_dm_init(adev);
2507 	amdgpu_dm_hpd_init(adev);
2508 
2509 	return 0;
2510 }
2511 
2512 /**
2513  * dm_hw_fini() - Teardown DC device
2514  * @handle: The base driver device containing the amdgpu_dm device.
2515  *
2516  * Teardown components within &struct amdgpu_display_manager that require
2517  * cleanup. This involves cleaning up the DRM device, DC, and any modules that
2518  * were loaded. Also flush IRQ workqueues and disable them.
2519  */
2520 static int dm_hw_fini(void *handle)
2521 {
2522 	struct amdgpu_device *adev = (struct amdgpu_device *)handle;
2523 
2524 	amdgpu_dm_hpd_fini(adev);
2525 
2526 	amdgpu_dm_irq_fini(adev);
2527 	amdgpu_dm_fini(adev);
2528 	return 0;
2529 }
2530 
2531 
2532 static void dm_gpureset_toggle_interrupts(struct amdgpu_device *adev,
2533 				 struct dc_state *state, bool enable)
2534 {
2535 	enum dc_irq_source irq_source;
2536 	struct amdgpu_crtc *acrtc;
2537 	int rc = -EBUSY;
2538 	int i = 0;
2539 
2540 	for (i = 0; i < state->stream_count; i++) {
2541 		acrtc = get_crtc_by_otg_inst(
2542 				adev, state->stream_status[i].primary_otg_inst);
2543 
2544 		if (acrtc && state->stream_status[i].plane_count != 0) {
2545 			irq_source = IRQ_TYPE_PFLIP + acrtc->otg_inst;
2546 			rc = dc_interrupt_set(adev->dm.dc, irq_source, enable) ? 0 : -EBUSY;
2547 			if (rc)
2548 				DRM_WARN("Failed to %s pflip interrupts\n",
2549 					 enable ? "enable" : "disable");
2550 
2551 			if (enable) {
2552 				if (amdgpu_dm_crtc_vrr_active(to_dm_crtc_state(acrtc->base.state)))
2553 					rc = amdgpu_dm_crtc_set_vupdate_irq(&acrtc->base, true);
2554 			} else
2555 				rc = amdgpu_dm_crtc_set_vupdate_irq(&acrtc->base, false);
2556 
2557 			if (rc)
2558 				DRM_WARN("Failed to %sable vupdate interrupt\n", enable ? "en" : "dis");
2559 
2560 			irq_source = IRQ_TYPE_VBLANK + acrtc->otg_inst;
2561 			/* During gpu-reset we disable and then enable vblank irq, so
2562 			 * don't use amdgpu_irq_get/put() to avoid refcount change.
2563 			 */
2564 			if (!dc_interrupt_set(adev->dm.dc, irq_source, enable))
2565 				DRM_WARN("Failed to %sable vblank interrupt\n", enable ? "en" : "dis");
2566 		}
2567 	}
2568 
2569 }
2570 
2571 static enum dc_status amdgpu_dm_commit_zero_streams(struct dc *dc)
2572 {
2573 	struct dc_state *context = NULL;
2574 	enum dc_status res = DC_ERROR_UNEXPECTED;
2575 	int i;
2576 	struct dc_stream_state *del_streams[MAX_PIPES];
2577 	int del_streams_count = 0;
2578 
2579 	memset(del_streams, 0, sizeof(del_streams));
2580 
2581 	context = dc_create_state(dc);
2582 	if (context == NULL)
2583 		goto context_alloc_fail;
2584 
2585 	dc_resource_state_copy_construct_current(dc, context);
2586 
2587 	/* First remove from context all streams */
2588 	for (i = 0; i < context->stream_count; i++) {
2589 		struct dc_stream_state *stream = context->streams[i];
2590 
2591 		del_streams[del_streams_count++] = stream;
2592 	}
2593 
2594 	/* Remove all planes for removed streams and then remove the streams */
2595 	for (i = 0; i < del_streams_count; i++) {
2596 		if (!dc_rem_all_planes_for_stream(dc, del_streams[i], context)) {
2597 			res = DC_FAIL_DETACH_SURFACES;
2598 			goto fail;
2599 		}
2600 
2601 		res = dc_remove_stream_from_ctx(dc, context, del_streams[i]);
2602 		if (res != DC_OK)
2603 			goto fail;
2604 	}
2605 
2606 	res = dc_commit_streams(dc, context->streams, context->stream_count);
2607 
2608 fail:
2609 	dc_release_state(context);
2610 
2611 context_alloc_fail:
2612 	return res;
2613 }
2614 
2615 static void hpd_rx_irq_work_suspend(struct amdgpu_display_manager *dm)
2616 {
2617 	int i;
2618 
2619 	if (dm->hpd_rx_offload_wq) {
2620 		for (i = 0; i < dm->dc->caps.max_links; i++)
2621 			flush_workqueue(dm->hpd_rx_offload_wq[i].wq);
2622 	}
2623 }
2624 
2625 static int dm_suspend(void *handle)
2626 {
2627 	struct amdgpu_device *adev = handle;
2628 	struct amdgpu_display_manager *dm = &adev->dm;
2629 	int ret = 0;
2630 
2631 	if (amdgpu_in_reset(adev)) {
2632 		mutex_lock(&dm->dc_lock);
2633 
2634 		dc_allow_idle_optimizations(adev->dm.dc, false);
2635 
2636 		dm->cached_dc_state = dc_copy_state(dm->dc->current_state);
2637 
2638 		dm_gpureset_toggle_interrupts(adev, dm->cached_dc_state, false);
2639 
2640 		amdgpu_dm_commit_zero_streams(dm->dc);
2641 
2642 		amdgpu_dm_irq_suspend(adev);
2643 
2644 		hpd_rx_irq_work_suspend(dm);
2645 
2646 		return ret;
2647 	}
2648 
2649 	WARN_ON(adev->dm.cached_state);
2650 	adev->dm.cached_state = drm_atomic_helper_suspend(adev_to_drm(adev));
2651 	if (IS_ERR(adev->dm.cached_state))
2652 		return PTR_ERR(adev->dm.cached_state);
2653 
2654 	s3_handle_mst(adev_to_drm(adev), true);
2655 
2656 	amdgpu_dm_irq_suspend(adev);
2657 
2658 	hpd_rx_irq_work_suspend(dm);
2659 
2660 	dc_set_power_state(dm->dc, DC_ACPI_CM_POWER_STATE_D3);
2661 
2662 	return 0;
2663 }
2664 
2665 struct amdgpu_dm_connector *
2666 amdgpu_dm_find_first_crtc_matching_connector(struct drm_atomic_state *state,
2667 					     struct drm_crtc *crtc)
2668 {
2669 	u32 i;
2670 	struct drm_connector_state *new_con_state;
2671 	struct drm_connector *connector;
2672 	struct drm_crtc *crtc_from_state;
2673 
2674 	for_each_new_connector_in_state(state, connector, new_con_state, i) {
2675 		crtc_from_state = new_con_state->crtc;
2676 
2677 		if (crtc_from_state == crtc)
2678 			return to_amdgpu_dm_connector(connector);
2679 	}
2680 
2681 	return NULL;
2682 }
2683 
2684 static void emulated_link_detect(struct dc_link *link)
2685 {
2686 	struct dc_sink_init_data sink_init_data = { 0 };
2687 	struct display_sink_capability sink_caps = { 0 };
2688 	enum dc_edid_status edid_status;
2689 	struct dc_context *dc_ctx = link->ctx;
2690 	struct drm_device *dev = adev_to_drm(dc_ctx->driver_context);
2691 	struct dc_sink *sink = NULL;
2692 	struct dc_sink *prev_sink = NULL;
2693 
2694 	link->type = dc_connection_none;
2695 	prev_sink = link->local_sink;
2696 
2697 	if (prev_sink)
2698 		dc_sink_release(prev_sink);
2699 
2700 	switch (link->connector_signal) {
2701 	case SIGNAL_TYPE_HDMI_TYPE_A: {
2702 		sink_caps.transaction_type = DDC_TRANSACTION_TYPE_I2C;
2703 		sink_caps.signal = SIGNAL_TYPE_HDMI_TYPE_A;
2704 		break;
2705 	}
2706 
2707 	case SIGNAL_TYPE_DVI_SINGLE_LINK: {
2708 		sink_caps.transaction_type = DDC_TRANSACTION_TYPE_I2C;
2709 		sink_caps.signal = SIGNAL_TYPE_DVI_SINGLE_LINK;
2710 		break;
2711 	}
2712 
2713 	case SIGNAL_TYPE_DVI_DUAL_LINK: {
2714 		sink_caps.transaction_type = DDC_TRANSACTION_TYPE_I2C;
2715 		sink_caps.signal = SIGNAL_TYPE_DVI_DUAL_LINK;
2716 		break;
2717 	}
2718 
2719 	case SIGNAL_TYPE_LVDS: {
2720 		sink_caps.transaction_type = DDC_TRANSACTION_TYPE_I2C;
2721 		sink_caps.signal = SIGNAL_TYPE_LVDS;
2722 		break;
2723 	}
2724 
2725 	case SIGNAL_TYPE_EDP: {
2726 		sink_caps.transaction_type =
2727 			DDC_TRANSACTION_TYPE_I2C_OVER_AUX;
2728 		sink_caps.signal = SIGNAL_TYPE_EDP;
2729 		break;
2730 	}
2731 
2732 	case SIGNAL_TYPE_DISPLAY_PORT: {
2733 		sink_caps.transaction_type =
2734 			DDC_TRANSACTION_TYPE_I2C_OVER_AUX;
2735 		sink_caps.signal = SIGNAL_TYPE_VIRTUAL;
2736 		break;
2737 	}
2738 
2739 	default:
2740 		drm_err(dev, "Invalid connector type! signal:%d\n",
2741 			link->connector_signal);
2742 		return;
2743 	}
2744 
2745 	sink_init_data.link = link;
2746 	sink_init_data.sink_signal = sink_caps.signal;
2747 
2748 	sink = dc_sink_create(&sink_init_data);
2749 	if (!sink) {
2750 		drm_err(dev, "Failed to create sink!\n");
2751 		return;
2752 	}
2753 
2754 	/* dc_sink_create returns a new reference */
2755 	link->local_sink = sink;
2756 
2757 	edid_status = dm_helpers_read_local_edid(
2758 			link->ctx,
2759 			link,
2760 			sink);
2761 
2762 	if (edid_status != EDID_OK)
2763 		drm_err(dev, "Failed to read EDID\n");
2764 
2765 }
2766 
2767 static void dm_gpureset_commit_state(struct dc_state *dc_state,
2768 				     struct amdgpu_display_manager *dm)
2769 {
2770 	struct {
2771 		struct dc_surface_update surface_updates[MAX_SURFACES];
2772 		struct dc_plane_info plane_infos[MAX_SURFACES];
2773 		struct dc_scaling_info scaling_infos[MAX_SURFACES];
2774 		struct dc_flip_addrs flip_addrs[MAX_SURFACES];
2775 		struct dc_stream_update stream_update;
2776 	} *bundle;
2777 	int k, m;
2778 
2779 	bundle = kzalloc(sizeof(*bundle), GFP_KERNEL);
2780 
2781 	if (!bundle) {
2782 		drm_err(dm->ddev, "Failed to allocate update bundle\n");
2783 		goto cleanup;
2784 	}
2785 
2786 	for (k = 0; k < dc_state->stream_count; k++) {
2787 		bundle->stream_update.stream = dc_state->streams[k];
2788 
2789 		for (m = 0; m < dc_state->stream_status->plane_count; m++) {
2790 			bundle->surface_updates[m].surface =
2791 				dc_state->stream_status->plane_states[m];
2792 			bundle->surface_updates[m].surface->force_full_update =
2793 				true;
2794 		}
2795 
2796 		update_planes_and_stream_adapter(dm->dc,
2797 					 UPDATE_TYPE_FULL,
2798 					 dc_state->stream_status->plane_count,
2799 					 dc_state->streams[k],
2800 					 &bundle->stream_update,
2801 					 bundle->surface_updates);
2802 	}
2803 
2804 cleanup:
2805 	kfree(bundle);
2806 }
2807 
2808 static int dm_resume(void *handle)
2809 {
2810 	struct amdgpu_device *adev = handle;
2811 	struct drm_device *ddev = adev_to_drm(adev);
2812 	struct amdgpu_display_manager *dm = &adev->dm;
2813 	struct amdgpu_dm_connector *aconnector;
2814 	struct drm_connector *connector;
2815 	struct drm_connector_list_iter iter;
2816 	struct drm_crtc *crtc;
2817 	struct drm_crtc_state *new_crtc_state;
2818 	struct dm_crtc_state *dm_new_crtc_state;
2819 	struct drm_plane *plane;
2820 	struct drm_plane_state *new_plane_state;
2821 	struct dm_plane_state *dm_new_plane_state;
2822 	struct dm_atomic_state *dm_state = to_dm_atomic_state(dm->atomic_obj.state);
2823 	enum dc_connection_type new_connection_type = dc_connection_none;
2824 	struct dc_state *dc_state;
2825 	int i, r, j, ret;
2826 	bool need_hotplug = false;
2827 
2828 	if (dm->dc->caps.ips_support) {
2829 		dc_dmub_srv_exit_low_power_state(dm->dc);
2830 	}
2831 
2832 	if (amdgpu_in_reset(adev)) {
2833 		dc_state = dm->cached_dc_state;
2834 
2835 		/*
2836 		 * The dc->current_state is backed up into dm->cached_dc_state
2837 		 * before we commit 0 streams.
2838 		 *
2839 		 * DC will clear link encoder assignments on the real state
2840 		 * but the changes won't propagate over to the copy we made
2841 		 * before the 0 streams commit.
2842 		 *
2843 		 * DC expects that link encoder assignments are *not* valid
2844 		 * when committing a state, so as a workaround we can copy
2845 		 * off of the current state.
2846 		 *
2847 		 * We lose the previous assignments, but we had already
2848 		 * commit 0 streams anyway.
2849 		 */
2850 		link_enc_cfg_copy(adev->dm.dc->current_state, dc_state);
2851 
2852 		r = dm_dmub_hw_init(adev);
2853 		if (r)
2854 			DRM_ERROR("DMUB interface failed to initialize: status=%d\n", r);
2855 
2856 		dc_set_power_state(dm->dc, DC_ACPI_CM_POWER_STATE_D0);
2857 
2858 		dc_resume(dm->dc);
2859 
2860 		amdgpu_dm_irq_resume_early(adev);
2861 
2862 		for (i = 0; i < dc_state->stream_count; i++) {
2863 			dc_state->streams[i]->mode_changed = true;
2864 			for (j = 0; j < dc_state->stream_status[i].plane_count; j++) {
2865 				dc_state->stream_status[i].plane_states[j]->update_flags.raw
2866 					= 0xffffffff;
2867 			}
2868 		}
2869 
2870 		if (dc_is_dmub_outbox_supported(adev->dm.dc)) {
2871 			amdgpu_dm_outbox_init(adev);
2872 			dc_enable_dmub_outbox(adev->dm.dc);
2873 		}
2874 
2875 		WARN_ON(!dc_commit_streams(dm->dc, dc_state->streams, dc_state->stream_count));
2876 
2877 		dm_gpureset_commit_state(dm->cached_dc_state, dm);
2878 
2879 		dm_gpureset_toggle_interrupts(adev, dm->cached_dc_state, true);
2880 
2881 		dc_release_state(dm->cached_dc_state);
2882 		dm->cached_dc_state = NULL;
2883 
2884 		amdgpu_dm_irq_resume_late(adev);
2885 
2886 		mutex_unlock(&dm->dc_lock);
2887 
2888 		return 0;
2889 	}
2890 	/* Recreate dc_state - DC invalidates it when setting power state to S3. */
2891 	dc_release_state(dm_state->context);
2892 	dm_state->context = dc_create_state(dm->dc);
2893 	/* TODO: Remove dc_state->dccg, use dc->dccg directly. */
2894 	dc_resource_state_construct(dm->dc, dm_state->context);
2895 
2896 	/* Before powering on DC we need to re-initialize DMUB. */
2897 	dm_dmub_hw_resume(adev);
2898 
2899 	/* Re-enable outbox interrupts for DPIA. */
2900 	if (dc_is_dmub_outbox_supported(adev->dm.dc)) {
2901 		amdgpu_dm_outbox_init(adev);
2902 		dc_enable_dmub_outbox(adev->dm.dc);
2903 	}
2904 
2905 	/* power on hardware */
2906 	dc_set_power_state(dm->dc, DC_ACPI_CM_POWER_STATE_D0);
2907 
2908 	/* program HPD filter */
2909 	dc_resume(dm->dc);
2910 
2911 	/*
2912 	 * early enable HPD Rx IRQ, should be done before set mode as short
2913 	 * pulse interrupts are used for MST
2914 	 */
2915 	amdgpu_dm_irq_resume_early(adev);
2916 
2917 	/* On resume we need to rewrite the MSTM control bits to enable MST*/
2918 	s3_handle_mst(ddev, false);
2919 
2920 	/* Do detection*/
2921 	drm_connector_list_iter_begin(ddev, &iter);
2922 	drm_for_each_connector_iter(connector, &iter) {
2923 		aconnector = to_amdgpu_dm_connector(connector);
2924 
2925 		if (!aconnector->dc_link)
2926 			continue;
2927 
2928 		/*
2929 		 * this is the case when traversing through already created end sink
2930 		 * MST connectors, should be skipped
2931 		 */
2932 		if (aconnector && aconnector->mst_root)
2933 			continue;
2934 
2935 		mutex_lock(&aconnector->hpd_lock);
2936 		if (!dc_link_detect_connection_type(aconnector->dc_link, &new_connection_type))
2937 			DRM_ERROR("KMS: Failed to detect connector\n");
2938 
2939 		if (aconnector->base.force && new_connection_type == dc_connection_none) {
2940 			emulated_link_detect(aconnector->dc_link);
2941 		} else {
2942 			mutex_lock(&dm->dc_lock);
2943 			dc_link_detect(aconnector->dc_link, DETECT_REASON_HPD);
2944 			mutex_unlock(&dm->dc_lock);
2945 		}
2946 
2947 		if (aconnector->fake_enable && aconnector->dc_link->local_sink)
2948 			aconnector->fake_enable = false;
2949 
2950 		if (aconnector->dc_sink)
2951 			dc_sink_release(aconnector->dc_sink);
2952 		aconnector->dc_sink = NULL;
2953 		amdgpu_dm_update_connector_after_detect(aconnector);
2954 		mutex_unlock(&aconnector->hpd_lock);
2955 	}
2956 	drm_connector_list_iter_end(&iter);
2957 
2958 	/* Force mode set in atomic commit */
2959 	for_each_new_crtc_in_state(dm->cached_state, crtc, new_crtc_state, i)
2960 		new_crtc_state->active_changed = true;
2961 
2962 	/*
2963 	 * atomic_check is expected to create the dc states. We need to release
2964 	 * them here, since they were duplicated as part of the suspend
2965 	 * procedure.
2966 	 */
2967 	for_each_new_crtc_in_state(dm->cached_state, crtc, new_crtc_state, i) {
2968 		dm_new_crtc_state = to_dm_crtc_state(new_crtc_state);
2969 		if (dm_new_crtc_state->stream) {
2970 			WARN_ON(kref_read(&dm_new_crtc_state->stream->refcount) > 1);
2971 			dc_stream_release(dm_new_crtc_state->stream);
2972 			dm_new_crtc_state->stream = NULL;
2973 		}
2974 	}
2975 
2976 	for_each_new_plane_in_state(dm->cached_state, plane, new_plane_state, i) {
2977 		dm_new_plane_state = to_dm_plane_state(new_plane_state);
2978 		if (dm_new_plane_state->dc_state) {
2979 			WARN_ON(kref_read(&dm_new_plane_state->dc_state->refcount) > 1);
2980 			dc_plane_state_release(dm_new_plane_state->dc_state);
2981 			dm_new_plane_state->dc_state = NULL;
2982 		}
2983 	}
2984 
2985 	drm_atomic_helper_resume(ddev, dm->cached_state);
2986 
2987 	dm->cached_state = NULL;
2988 
2989 	/* Do mst topology probing after resuming cached state*/
2990 	drm_connector_list_iter_begin(ddev, &iter);
2991 	drm_for_each_connector_iter(connector, &iter) {
2992 		aconnector = to_amdgpu_dm_connector(connector);
2993 		if (aconnector->dc_link->type != dc_connection_mst_branch ||
2994 		    aconnector->mst_root)
2995 			continue;
2996 
2997 		ret = drm_dp_mst_topology_mgr_resume(&aconnector->mst_mgr, true);
2998 
2999 		if (ret < 0) {
3000 			dm_helpers_dp_mst_stop_top_mgr(aconnector->dc_link->ctx,
3001 					aconnector->dc_link);
3002 			need_hotplug = true;
3003 		}
3004 	}
3005 	drm_connector_list_iter_end(&iter);
3006 
3007 	if (need_hotplug)
3008 		drm_kms_helper_hotplug_event(ddev);
3009 
3010 	amdgpu_dm_irq_resume_late(adev);
3011 
3012 	amdgpu_dm_smu_write_watermarks_table(adev);
3013 
3014 	return 0;
3015 }
3016 
3017 /**
3018  * DOC: DM Lifecycle
3019  *
3020  * DM (and consequently DC) is registered in the amdgpu base driver as a IP
3021  * block. When CONFIG_DRM_AMD_DC is enabled, the DM device IP block is added to
3022  * the base driver's device list to be initialized and torn down accordingly.
3023  *
3024  * The functions to do so are provided as hooks in &struct amd_ip_funcs.
3025  */
3026 
3027 static const struct amd_ip_funcs amdgpu_dm_funcs = {
3028 	.name = "dm",
3029 	.early_init = dm_early_init,
3030 	.late_init = dm_late_init,
3031 	.sw_init = dm_sw_init,
3032 	.sw_fini = dm_sw_fini,
3033 	.early_fini = amdgpu_dm_early_fini,
3034 	.hw_init = dm_hw_init,
3035 	.hw_fini = dm_hw_fini,
3036 	.suspend = dm_suspend,
3037 	.resume = dm_resume,
3038 	.is_idle = dm_is_idle,
3039 	.wait_for_idle = dm_wait_for_idle,
3040 	.check_soft_reset = dm_check_soft_reset,
3041 	.soft_reset = dm_soft_reset,
3042 	.set_clockgating_state = dm_set_clockgating_state,
3043 	.set_powergating_state = dm_set_powergating_state,
3044 };
3045 
3046 const struct amdgpu_ip_block_version dm_ip_block = {
3047 	.type = AMD_IP_BLOCK_TYPE_DCE,
3048 	.major = 1,
3049 	.minor = 0,
3050 	.rev = 0,
3051 	.funcs = &amdgpu_dm_funcs,
3052 };
3053 
3054 
3055 /**
3056  * DOC: atomic
3057  *
3058  * *WIP*
3059  */
3060 
3061 static const struct drm_mode_config_funcs amdgpu_dm_mode_funcs = {
3062 	.fb_create = amdgpu_display_user_framebuffer_create,
3063 	.get_format_info = amdgpu_dm_plane_get_format_info,
3064 	.atomic_check = amdgpu_dm_atomic_check,
3065 	.atomic_commit = drm_atomic_helper_commit,
3066 };
3067 
3068 static struct drm_mode_config_helper_funcs amdgpu_dm_mode_config_helperfuncs = {
3069 	.atomic_commit_tail = amdgpu_dm_atomic_commit_tail,
3070 	.atomic_commit_setup = drm_dp_mst_atomic_setup_commit,
3071 };
3072 
3073 static void update_connector_ext_caps(struct amdgpu_dm_connector *aconnector)
3074 {
3075 	struct amdgpu_dm_backlight_caps *caps;
3076 	struct drm_connector *conn_base;
3077 	struct amdgpu_device *adev;
3078 	struct drm_luminance_range_info *luminance_range;
3079 
3080 	if (aconnector->bl_idx == -1 ||
3081 	    aconnector->dc_link->connector_signal != SIGNAL_TYPE_EDP)
3082 		return;
3083 
3084 	conn_base = &aconnector->base;
3085 	adev = drm_to_adev(conn_base->dev);
3086 
3087 	caps = &adev->dm.backlight_caps[aconnector->bl_idx];
3088 	caps->ext_caps = &aconnector->dc_link->dpcd_sink_ext_caps;
3089 	caps->aux_support = false;
3090 
3091 	if (caps->ext_caps->bits.oled == 1
3092 	    /*
3093 	     * ||
3094 	     * caps->ext_caps->bits.sdr_aux_backlight_control == 1 ||
3095 	     * caps->ext_caps->bits.hdr_aux_backlight_control == 1
3096 	     */)
3097 		caps->aux_support = true;
3098 
3099 	if (amdgpu_backlight == 0)
3100 		caps->aux_support = false;
3101 	else if (amdgpu_backlight == 1)
3102 		caps->aux_support = true;
3103 
3104 	luminance_range = &conn_base->display_info.luminance_range;
3105 
3106 	if (luminance_range->max_luminance) {
3107 		caps->aux_min_input_signal = luminance_range->min_luminance;
3108 		caps->aux_max_input_signal = luminance_range->max_luminance;
3109 	} else {
3110 		caps->aux_min_input_signal = 0;
3111 		caps->aux_max_input_signal = 512;
3112 	}
3113 }
3114 
3115 void amdgpu_dm_update_connector_after_detect(
3116 		struct amdgpu_dm_connector *aconnector)
3117 {
3118 	struct drm_connector *connector = &aconnector->base;
3119 	struct drm_device *dev = connector->dev;
3120 	struct dc_sink *sink;
3121 
3122 	/* MST handled by drm_mst framework */
3123 	if (aconnector->mst_mgr.mst_state == true)
3124 		return;
3125 
3126 	sink = aconnector->dc_link->local_sink;
3127 	if (sink)
3128 		dc_sink_retain(sink);
3129 
3130 	/*
3131 	 * Edid mgmt connector gets first update only in mode_valid hook and then
3132 	 * the connector sink is set to either fake or physical sink depends on link status.
3133 	 * Skip if already done during boot.
3134 	 */
3135 	if (aconnector->base.force != DRM_FORCE_UNSPECIFIED
3136 			&& aconnector->dc_em_sink) {
3137 
3138 		/*
3139 		 * For S3 resume with headless use eml_sink to fake stream
3140 		 * because on resume connector->sink is set to NULL
3141 		 */
3142 		mutex_lock(&dev->mode_config.mutex);
3143 
3144 		if (sink) {
3145 			if (aconnector->dc_sink) {
3146 				amdgpu_dm_update_freesync_caps(connector, NULL);
3147 				/*
3148 				 * retain and release below are used to
3149 				 * bump up refcount for sink because the link doesn't point
3150 				 * to it anymore after disconnect, so on next crtc to connector
3151 				 * reshuffle by UMD we will get into unwanted dc_sink release
3152 				 */
3153 				dc_sink_release(aconnector->dc_sink);
3154 			}
3155 			aconnector->dc_sink = sink;
3156 			dc_sink_retain(aconnector->dc_sink);
3157 			amdgpu_dm_update_freesync_caps(connector,
3158 					aconnector->edid);
3159 		} else {
3160 			amdgpu_dm_update_freesync_caps(connector, NULL);
3161 			if (!aconnector->dc_sink) {
3162 				aconnector->dc_sink = aconnector->dc_em_sink;
3163 				dc_sink_retain(aconnector->dc_sink);
3164 			}
3165 		}
3166 
3167 		mutex_unlock(&dev->mode_config.mutex);
3168 
3169 		if (sink)
3170 			dc_sink_release(sink);
3171 		return;
3172 	}
3173 
3174 	/*
3175 	 * TODO: temporary guard to look for proper fix
3176 	 * if this sink is MST sink, we should not do anything
3177 	 */
3178 	if (sink && sink->sink_signal == SIGNAL_TYPE_DISPLAY_PORT_MST) {
3179 		dc_sink_release(sink);
3180 		return;
3181 	}
3182 
3183 	if (aconnector->dc_sink == sink) {
3184 		/*
3185 		 * We got a DP short pulse (Link Loss, DP CTS, etc...).
3186 		 * Do nothing!!
3187 		 */
3188 		DRM_DEBUG_DRIVER("DCHPD: connector_id=%d: dc_sink didn't change.\n",
3189 				aconnector->connector_id);
3190 		if (sink)
3191 			dc_sink_release(sink);
3192 		return;
3193 	}
3194 
3195 	DRM_DEBUG_DRIVER("DCHPD: connector_id=%d: Old sink=%p New sink=%p\n",
3196 		aconnector->connector_id, aconnector->dc_sink, sink);
3197 
3198 	mutex_lock(&dev->mode_config.mutex);
3199 
3200 	/*
3201 	 * 1. Update status of the drm connector
3202 	 * 2. Send an event and let userspace tell us what to do
3203 	 */
3204 	if (sink) {
3205 		/*
3206 		 * TODO: check if we still need the S3 mode update workaround.
3207 		 * If yes, put it here.
3208 		 */
3209 		if (aconnector->dc_sink) {
3210 			amdgpu_dm_update_freesync_caps(connector, NULL);
3211 			dc_sink_release(aconnector->dc_sink);
3212 		}
3213 
3214 		aconnector->dc_sink = sink;
3215 		dc_sink_retain(aconnector->dc_sink);
3216 		if (sink->dc_edid.length == 0) {
3217 			aconnector->edid = NULL;
3218 			if (aconnector->dc_link->aux_mode) {
3219 				drm_dp_cec_unset_edid(
3220 					&aconnector->dm_dp_aux.aux);
3221 			}
3222 		} else {
3223 			aconnector->edid =
3224 				(struct edid *)sink->dc_edid.raw_edid;
3225 
3226 			if (aconnector->dc_link->aux_mode)
3227 				drm_dp_cec_set_edid(&aconnector->dm_dp_aux.aux,
3228 						    aconnector->edid);
3229 		}
3230 
3231 		if (!aconnector->timing_requested) {
3232 			aconnector->timing_requested =
3233 				kzalloc(sizeof(struct dc_crtc_timing), GFP_KERNEL);
3234 			if (!aconnector->timing_requested)
3235 				drm_err(dev,
3236 					"failed to create aconnector->requested_timing\n");
3237 		}
3238 
3239 		drm_connector_update_edid_property(connector, aconnector->edid);
3240 		amdgpu_dm_update_freesync_caps(connector, aconnector->edid);
3241 		update_connector_ext_caps(aconnector);
3242 	} else {
3243 		drm_dp_cec_unset_edid(&aconnector->dm_dp_aux.aux);
3244 		amdgpu_dm_update_freesync_caps(connector, NULL);
3245 		drm_connector_update_edid_property(connector, NULL);
3246 		aconnector->num_modes = 0;
3247 		dc_sink_release(aconnector->dc_sink);
3248 		aconnector->dc_sink = NULL;
3249 		aconnector->edid = NULL;
3250 		kfree(aconnector->timing_requested);
3251 		aconnector->timing_requested = NULL;
3252 		/* Set CP to DESIRED if it was ENABLED, so we can re-enable it again on hotplug */
3253 		if (connector->state->content_protection == DRM_MODE_CONTENT_PROTECTION_ENABLED)
3254 			connector->state->content_protection = DRM_MODE_CONTENT_PROTECTION_DESIRED;
3255 	}
3256 
3257 	mutex_unlock(&dev->mode_config.mutex);
3258 
3259 	update_subconnector_property(aconnector);
3260 
3261 	if (sink)
3262 		dc_sink_release(sink);
3263 }
3264 
3265 static void handle_hpd_irq_helper(struct amdgpu_dm_connector *aconnector)
3266 {
3267 	struct drm_connector *connector = &aconnector->base;
3268 	struct drm_device *dev = connector->dev;
3269 	enum dc_connection_type new_connection_type = dc_connection_none;
3270 	struct amdgpu_device *adev = drm_to_adev(dev);
3271 	struct dm_connector_state *dm_con_state = to_dm_connector_state(connector->state);
3272 	bool ret = false;
3273 
3274 	if (adev->dm.disable_hpd_irq)
3275 		return;
3276 
3277 	/*
3278 	 * In case of failure or MST no need to update connector status or notify the OS
3279 	 * since (for MST case) MST does this in its own context.
3280 	 */
3281 	mutex_lock(&aconnector->hpd_lock);
3282 
3283 	if (adev->dm.hdcp_workqueue) {
3284 		hdcp_reset_display(adev->dm.hdcp_workqueue, aconnector->dc_link->link_index);
3285 		dm_con_state->update_hdcp = true;
3286 	}
3287 	if (aconnector->fake_enable)
3288 		aconnector->fake_enable = false;
3289 
3290 	aconnector->timing_changed = false;
3291 
3292 	if (!dc_link_detect_connection_type(aconnector->dc_link, &new_connection_type))
3293 		DRM_ERROR("KMS: Failed to detect connector\n");
3294 
3295 	if (aconnector->base.force && new_connection_type == dc_connection_none) {
3296 		emulated_link_detect(aconnector->dc_link);
3297 
3298 		drm_modeset_lock_all(dev);
3299 		dm_restore_drm_connector_state(dev, connector);
3300 		drm_modeset_unlock_all(dev);
3301 
3302 		if (aconnector->base.force == DRM_FORCE_UNSPECIFIED)
3303 			drm_kms_helper_connector_hotplug_event(connector);
3304 	} else {
3305 		mutex_lock(&adev->dm.dc_lock);
3306 		ret = dc_link_detect(aconnector->dc_link, DETECT_REASON_HPD);
3307 		mutex_unlock(&adev->dm.dc_lock);
3308 		if (ret) {
3309 			amdgpu_dm_update_connector_after_detect(aconnector);
3310 
3311 			drm_modeset_lock_all(dev);
3312 			dm_restore_drm_connector_state(dev, connector);
3313 			drm_modeset_unlock_all(dev);
3314 
3315 			if (aconnector->base.force == DRM_FORCE_UNSPECIFIED)
3316 				drm_kms_helper_connector_hotplug_event(connector);
3317 		}
3318 	}
3319 	mutex_unlock(&aconnector->hpd_lock);
3320 
3321 }
3322 
3323 static void handle_hpd_irq(void *param)
3324 {
3325 	struct amdgpu_dm_connector *aconnector = (struct amdgpu_dm_connector *)param;
3326 
3327 	handle_hpd_irq_helper(aconnector);
3328 
3329 }
3330 
3331 static void schedule_hpd_rx_offload_work(struct hpd_rx_irq_offload_work_queue *offload_wq,
3332 							union hpd_irq_data hpd_irq_data)
3333 {
3334 	struct hpd_rx_irq_offload_work *offload_work =
3335 				kzalloc(sizeof(*offload_work), GFP_KERNEL);
3336 
3337 	if (!offload_work) {
3338 		DRM_ERROR("Failed to allocate hpd_rx_irq_offload_work.\n");
3339 		return;
3340 	}
3341 
3342 	INIT_WORK(&offload_work->work, dm_handle_hpd_rx_offload_work);
3343 	offload_work->data = hpd_irq_data;
3344 	offload_work->offload_wq = offload_wq;
3345 
3346 	queue_work(offload_wq->wq, &offload_work->work);
3347 	DRM_DEBUG_KMS("queue work to handle hpd_rx offload work");
3348 }
3349 
3350 static void handle_hpd_rx_irq(void *param)
3351 {
3352 	struct amdgpu_dm_connector *aconnector = (struct amdgpu_dm_connector *)param;
3353 	struct drm_connector *connector = &aconnector->base;
3354 	struct drm_device *dev = connector->dev;
3355 	struct dc_link *dc_link = aconnector->dc_link;
3356 	bool is_mst_root_connector = aconnector->mst_mgr.mst_state;
3357 	bool result = false;
3358 	enum dc_connection_type new_connection_type = dc_connection_none;
3359 	struct amdgpu_device *adev = drm_to_adev(dev);
3360 	union hpd_irq_data hpd_irq_data;
3361 	bool link_loss = false;
3362 	bool has_left_work = false;
3363 	int idx = dc_link->link_index;
3364 	struct hpd_rx_irq_offload_work_queue *offload_wq = &adev->dm.hpd_rx_offload_wq[idx];
3365 
3366 	memset(&hpd_irq_data, 0, sizeof(hpd_irq_data));
3367 
3368 	if (adev->dm.disable_hpd_irq)
3369 		return;
3370 
3371 	/*
3372 	 * TODO:Temporary add mutex to protect hpd interrupt not have a gpio
3373 	 * conflict, after implement i2c helper, this mutex should be
3374 	 * retired.
3375 	 */
3376 	mutex_lock(&aconnector->hpd_lock);
3377 
3378 	result = dc_link_handle_hpd_rx_irq(dc_link, &hpd_irq_data,
3379 						&link_loss, true, &has_left_work);
3380 
3381 	if (!has_left_work)
3382 		goto out;
3383 
3384 	if (hpd_irq_data.bytes.device_service_irq.bits.AUTOMATED_TEST) {
3385 		schedule_hpd_rx_offload_work(offload_wq, hpd_irq_data);
3386 		goto out;
3387 	}
3388 
3389 	if (dc_link_dp_allow_hpd_rx_irq(dc_link)) {
3390 		if (hpd_irq_data.bytes.device_service_irq.bits.UP_REQ_MSG_RDY ||
3391 			hpd_irq_data.bytes.device_service_irq.bits.DOWN_REP_MSG_RDY) {
3392 			bool skip = false;
3393 
3394 			/*
3395 			 * DOWN_REP_MSG_RDY is also handled by polling method
3396 			 * mgr->cbs->poll_hpd_irq()
3397 			 */
3398 			spin_lock(&offload_wq->offload_lock);
3399 			skip = offload_wq->is_handling_mst_msg_rdy_event;
3400 
3401 			if (!skip)
3402 				offload_wq->is_handling_mst_msg_rdy_event = true;
3403 
3404 			spin_unlock(&offload_wq->offload_lock);
3405 
3406 			if (!skip)
3407 				schedule_hpd_rx_offload_work(offload_wq, hpd_irq_data);
3408 
3409 			goto out;
3410 		}
3411 
3412 		if (link_loss) {
3413 			bool skip = false;
3414 
3415 			spin_lock(&offload_wq->offload_lock);
3416 			skip = offload_wq->is_handling_link_loss;
3417 
3418 			if (!skip)
3419 				offload_wq->is_handling_link_loss = true;
3420 
3421 			spin_unlock(&offload_wq->offload_lock);
3422 
3423 			if (!skip)
3424 				schedule_hpd_rx_offload_work(offload_wq, hpd_irq_data);
3425 
3426 			goto out;
3427 		}
3428 	}
3429 
3430 out:
3431 	if (result && !is_mst_root_connector) {
3432 		/* Downstream Port status changed. */
3433 		if (!dc_link_detect_connection_type(dc_link, &new_connection_type))
3434 			DRM_ERROR("KMS: Failed to detect connector\n");
3435 
3436 		if (aconnector->base.force && new_connection_type == dc_connection_none) {
3437 			emulated_link_detect(dc_link);
3438 
3439 			if (aconnector->fake_enable)
3440 				aconnector->fake_enable = false;
3441 
3442 			amdgpu_dm_update_connector_after_detect(aconnector);
3443 
3444 
3445 			drm_modeset_lock_all(dev);
3446 			dm_restore_drm_connector_state(dev, connector);
3447 			drm_modeset_unlock_all(dev);
3448 
3449 			drm_kms_helper_connector_hotplug_event(connector);
3450 		} else {
3451 			bool ret = false;
3452 
3453 			mutex_lock(&adev->dm.dc_lock);
3454 			ret = dc_link_detect(dc_link, DETECT_REASON_HPDRX);
3455 			mutex_unlock(&adev->dm.dc_lock);
3456 
3457 			if (ret) {
3458 				if (aconnector->fake_enable)
3459 					aconnector->fake_enable = false;
3460 
3461 				amdgpu_dm_update_connector_after_detect(aconnector);
3462 
3463 				drm_modeset_lock_all(dev);
3464 				dm_restore_drm_connector_state(dev, connector);
3465 				drm_modeset_unlock_all(dev);
3466 
3467 				drm_kms_helper_connector_hotplug_event(connector);
3468 			}
3469 		}
3470 	}
3471 	if (hpd_irq_data.bytes.device_service_irq.bits.CP_IRQ) {
3472 		if (adev->dm.hdcp_workqueue)
3473 			hdcp_handle_cpirq(adev->dm.hdcp_workqueue,  aconnector->base.index);
3474 	}
3475 
3476 	if (dc_link->type != dc_connection_mst_branch)
3477 		drm_dp_cec_irq(&aconnector->dm_dp_aux.aux);
3478 
3479 	mutex_unlock(&aconnector->hpd_lock);
3480 }
3481 
3482 static void register_hpd_handlers(struct amdgpu_device *adev)
3483 {
3484 	struct drm_device *dev = adev_to_drm(adev);
3485 	struct drm_connector *connector;
3486 	struct amdgpu_dm_connector *aconnector;
3487 	const struct dc_link *dc_link;
3488 	struct dc_interrupt_params int_params = {0};
3489 
3490 	int_params.requested_polarity = INTERRUPT_POLARITY_DEFAULT;
3491 	int_params.current_polarity = INTERRUPT_POLARITY_DEFAULT;
3492 
3493 	list_for_each_entry(connector,
3494 			&dev->mode_config.connector_list, head)	{
3495 
3496 		aconnector = to_amdgpu_dm_connector(connector);
3497 		dc_link = aconnector->dc_link;
3498 
3499 		if (dc_link->irq_source_hpd != DC_IRQ_SOURCE_INVALID) {
3500 			int_params.int_context = INTERRUPT_LOW_IRQ_CONTEXT;
3501 			int_params.irq_source = dc_link->irq_source_hpd;
3502 
3503 			amdgpu_dm_irq_register_interrupt(adev, &int_params,
3504 					handle_hpd_irq,
3505 					(void *) aconnector);
3506 		}
3507 
3508 		if (dc_link->irq_source_hpd_rx != DC_IRQ_SOURCE_INVALID) {
3509 
3510 			/* Also register for DP short pulse (hpd_rx). */
3511 			int_params.int_context = INTERRUPT_LOW_IRQ_CONTEXT;
3512 			int_params.irq_source =	dc_link->irq_source_hpd_rx;
3513 
3514 			amdgpu_dm_irq_register_interrupt(adev, &int_params,
3515 					handle_hpd_rx_irq,
3516 					(void *) aconnector);
3517 		}
3518 
3519 		if (adev->dm.hpd_rx_offload_wq)
3520 			adev->dm.hpd_rx_offload_wq[connector->index].aconnector =
3521 				aconnector;
3522 	}
3523 }
3524 
3525 #if defined(CONFIG_DRM_AMD_DC_SI)
3526 /* Register IRQ sources and initialize IRQ callbacks */
3527 static int dce60_register_irq_handlers(struct amdgpu_device *adev)
3528 {
3529 	struct dc *dc = adev->dm.dc;
3530 	struct common_irq_params *c_irq_params;
3531 	struct dc_interrupt_params int_params = {0};
3532 	int r;
3533 	int i;
3534 	unsigned int client_id = AMDGPU_IRQ_CLIENTID_LEGACY;
3535 
3536 	int_params.requested_polarity = INTERRUPT_POLARITY_DEFAULT;
3537 	int_params.current_polarity = INTERRUPT_POLARITY_DEFAULT;
3538 
3539 	/*
3540 	 * Actions of amdgpu_irq_add_id():
3541 	 * 1. Register a set() function with base driver.
3542 	 *    Base driver will call set() function to enable/disable an
3543 	 *    interrupt in DC hardware.
3544 	 * 2. Register amdgpu_dm_irq_handler().
3545 	 *    Base driver will call amdgpu_dm_irq_handler() for ALL interrupts
3546 	 *    coming from DC hardware.
3547 	 *    amdgpu_dm_irq_handler() will re-direct the interrupt to DC
3548 	 *    for acknowledging and handling.
3549 	 */
3550 
3551 	/* Use VBLANK interrupt */
3552 	for (i = 0; i < adev->mode_info.num_crtc; i++) {
3553 		r = amdgpu_irq_add_id(adev, client_id, i + 1, &adev->crtc_irq);
3554 		if (r) {
3555 			DRM_ERROR("Failed to add crtc irq id!\n");
3556 			return r;
3557 		}
3558 
3559 		int_params.int_context = INTERRUPT_HIGH_IRQ_CONTEXT;
3560 		int_params.irq_source =
3561 			dc_interrupt_to_irq_source(dc, i + 1, 0);
3562 
3563 		c_irq_params = &adev->dm.vblank_params[int_params.irq_source - DC_IRQ_SOURCE_VBLANK1];
3564 
3565 		c_irq_params->adev = adev;
3566 		c_irq_params->irq_src = int_params.irq_source;
3567 
3568 		amdgpu_dm_irq_register_interrupt(adev, &int_params,
3569 				dm_crtc_high_irq, c_irq_params);
3570 	}
3571 
3572 	/* Use GRPH_PFLIP interrupt */
3573 	for (i = VISLANDS30_IV_SRCID_D1_GRPH_PFLIP;
3574 			i <= VISLANDS30_IV_SRCID_D6_GRPH_PFLIP; i += 2) {
3575 		r = amdgpu_irq_add_id(adev, client_id, i, &adev->pageflip_irq);
3576 		if (r) {
3577 			DRM_ERROR("Failed to add page flip irq id!\n");
3578 			return r;
3579 		}
3580 
3581 		int_params.int_context = INTERRUPT_HIGH_IRQ_CONTEXT;
3582 		int_params.irq_source =
3583 			dc_interrupt_to_irq_source(dc, i, 0);
3584 
3585 		c_irq_params = &adev->dm.pflip_params[int_params.irq_source - DC_IRQ_SOURCE_PFLIP_FIRST];
3586 
3587 		c_irq_params->adev = adev;
3588 		c_irq_params->irq_src = int_params.irq_source;
3589 
3590 		amdgpu_dm_irq_register_interrupt(adev, &int_params,
3591 				dm_pflip_high_irq, c_irq_params);
3592 
3593 	}
3594 
3595 	/* HPD */
3596 	r = amdgpu_irq_add_id(adev, client_id,
3597 			VISLANDS30_IV_SRCID_HOTPLUG_DETECT_A, &adev->hpd_irq);
3598 	if (r) {
3599 		DRM_ERROR("Failed to add hpd irq id!\n");
3600 		return r;
3601 	}
3602 
3603 	register_hpd_handlers(adev);
3604 
3605 	return 0;
3606 }
3607 #endif
3608 
3609 /* Register IRQ sources and initialize IRQ callbacks */
3610 static int dce110_register_irq_handlers(struct amdgpu_device *adev)
3611 {
3612 	struct dc *dc = adev->dm.dc;
3613 	struct common_irq_params *c_irq_params;
3614 	struct dc_interrupt_params int_params = {0};
3615 	int r;
3616 	int i;
3617 	unsigned int client_id = AMDGPU_IRQ_CLIENTID_LEGACY;
3618 
3619 	if (adev->family >= AMDGPU_FAMILY_AI)
3620 		client_id = SOC15_IH_CLIENTID_DCE;
3621 
3622 	int_params.requested_polarity = INTERRUPT_POLARITY_DEFAULT;
3623 	int_params.current_polarity = INTERRUPT_POLARITY_DEFAULT;
3624 
3625 	/*
3626 	 * Actions of amdgpu_irq_add_id():
3627 	 * 1. Register a set() function with base driver.
3628 	 *    Base driver will call set() function to enable/disable an
3629 	 *    interrupt in DC hardware.
3630 	 * 2. Register amdgpu_dm_irq_handler().
3631 	 *    Base driver will call amdgpu_dm_irq_handler() for ALL interrupts
3632 	 *    coming from DC hardware.
3633 	 *    amdgpu_dm_irq_handler() will re-direct the interrupt to DC
3634 	 *    for acknowledging and handling.
3635 	 */
3636 
3637 	/* Use VBLANK interrupt */
3638 	for (i = VISLANDS30_IV_SRCID_D1_VERTICAL_INTERRUPT0; i <= VISLANDS30_IV_SRCID_D6_VERTICAL_INTERRUPT0; i++) {
3639 		r = amdgpu_irq_add_id(adev, client_id, i, &adev->crtc_irq);
3640 		if (r) {
3641 			DRM_ERROR("Failed to add crtc irq id!\n");
3642 			return r;
3643 		}
3644 
3645 		int_params.int_context = INTERRUPT_HIGH_IRQ_CONTEXT;
3646 		int_params.irq_source =
3647 			dc_interrupt_to_irq_source(dc, i, 0);
3648 
3649 		c_irq_params = &adev->dm.vblank_params[int_params.irq_source - DC_IRQ_SOURCE_VBLANK1];
3650 
3651 		c_irq_params->adev = adev;
3652 		c_irq_params->irq_src = int_params.irq_source;
3653 
3654 		amdgpu_dm_irq_register_interrupt(adev, &int_params,
3655 				dm_crtc_high_irq, c_irq_params);
3656 	}
3657 
3658 	/* Use VUPDATE interrupt */
3659 	for (i = VISLANDS30_IV_SRCID_D1_V_UPDATE_INT; i <= VISLANDS30_IV_SRCID_D6_V_UPDATE_INT; i += 2) {
3660 		r = amdgpu_irq_add_id(adev, client_id, i, &adev->vupdate_irq);
3661 		if (r) {
3662 			DRM_ERROR("Failed to add vupdate irq id!\n");
3663 			return r;
3664 		}
3665 
3666 		int_params.int_context = INTERRUPT_HIGH_IRQ_CONTEXT;
3667 		int_params.irq_source =
3668 			dc_interrupt_to_irq_source(dc, i, 0);
3669 
3670 		c_irq_params = &adev->dm.vupdate_params[int_params.irq_source - DC_IRQ_SOURCE_VUPDATE1];
3671 
3672 		c_irq_params->adev = adev;
3673 		c_irq_params->irq_src = int_params.irq_source;
3674 
3675 		amdgpu_dm_irq_register_interrupt(adev, &int_params,
3676 				dm_vupdate_high_irq, c_irq_params);
3677 	}
3678 
3679 	/* Use GRPH_PFLIP interrupt */
3680 	for (i = VISLANDS30_IV_SRCID_D1_GRPH_PFLIP;
3681 			i <= VISLANDS30_IV_SRCID_D6_GRPH_PFLIP; i += 2) {
3682 		r = amdgpu_irq_add_id(adev, client_id, i, &adev->pageflip_irq);
3683 		if (r) {
3684 			DRM_ERROR("Failed to add page flip irq id!\n");
3685 			return r;
3686 		}
3687 
3688 		int_params.int_context = INTERRUPT_HIGH_IRQ_CONTEXT;
3689 		int_params.irq_source =
3690 			dc_interrupt_to_irq_source(dc, i, 0);
3691 
3692 		c_irq_params = &adev->dm.pflip_params[int_params.irq_source - DC_IRQ_SOURCE_PFLIP_FIRST];
3693 
3694 		c_irq_params->adev = adev;
3695 		c_irq_params->irq_src = int_params.irq_source;
3696 
3697 		amdgpu_dm_irq_register_interrupt(adev, &int_params,
3698 				dm_pflip_high_irq, c_irq_params);
3699 
3700 	}
3701 
3702 	/* HPD */
3703 	r = amdgpu_irq_add_id(adev, client_id,
3704 			VISLANDS30_IV_SRCID_HOTPLUG_DETECT_A, &adev->hpd_irq);
3705 	if (r) {
3706 		DRM_ERROR("Failed to add hpd irq id!\n");
3707 		return r;
3708 	}
3709 
3710 	register_hpd_handlers(adev);
3711 
3712 	return 0;
3713 }
3714 
3715 /* Register IRQ sources and initialize IRQ callbacks */
3716 static int dcn10_register_irq_handlers(struct amdgpu_device *adev)
3717 {
3718 	struct dc *dc = adev->dm.dc;
3719 	struct common_irq_params *c_irq_params;
3720 	struct dc_interrupt_params int_params = {0};
3721 	int r;
3722 	int i;
3723 #if defined(CONFIG_DRM_AMD_SECURE_DISPLAY)
3724 	static const unsigned int vrtl_int_srcid[] = {
3725 		DCN_1_0__SRCID__OTG1_VERTICAL_INTERRUPT0_CONTROL,
3726 		DCN_1_0__SRCID__OTG2_VERTICAL_INTERRUPT0_CONTROL,
3727 		DCN_1_0__SRCID__OTG3_VERTICAL_INTERRUPT0_CONTROL,
3728 		DCN_1_0__SRCID__OTG4_VERTICAL_INTERRUPT0_CONTROL,
3729 		DCN_1_0__SRCID__OTG5_VERTICAL_INTERRUPT0_CONTROL,
3730 		DCN_1_0__SRCID__OTG6_VERTICAL_INTERRUPT0_CONTROL
3731 	};
3732 #endif
3733 
3734 	int_params.requested_polarity = INTERRUPT_POLARITY_DEFAULT;
3735 	int_params.current_polarity = INTERRUPT_POLARITY_DEFAULT;
3736 
3737 	/*
3738 	 * Actions of amdgpu_irq_add_id():
3739 	 * 1. Register a set() function with base driver.
3740 	 *    Base driver will call set() function to enable/disable an
3741 	 *    interrupt in DC hardware.
3742 	 * 2. Register amdgpu_dm_irq_handler().
3743 	 *    Base driver will call amdgpu_dm_irq_handler() for ALL interrupts
3744 	 *    coming from DC hardware.
3745 	 *    amdgpu_dm_irq_handler() will re-direct the interrupt to DC
3746 	 *    for acknowledging and handling.
3747 	 */
3748 
3749 	/* Use VSTARTUP interrupt */
3750 	for (i = DCN_1_0__SRCID__DC_D1_OTG_VSTARTUP;
3751 			i <= DCN_1_0__SRCID__DC_D1_OTG_VSTARTUP + adev->mode_info.num_crtc - 1;
3752 			i++) {
3753 		r = amdgpu_irq_add_id(adev, SOC15_IH_CLIENTID_DCE, i, &adev->crtc_irq);
3754 
3755 		if (r) {
3756 			DRM_ERROR("Failed to add crtc irq id!\n");
3757 			return r;
3758 		}
3759 
3760 		int_params.int_context = INTERRUPT_HIGH_IRQ_CONTEXT;
3761 		int_params.irq_source =
3762 			dc_interrupt_to_irq_source(dc, i, 0);
3763 
3764 		c_irq_params = &adev->dm.vblank_params[int_params.irq_source - DC_IRQ_SOURCE_VBLANK1];
3765 
3766 		c_irq_params->adev = adev;
3767 		c_irq_params->irq_src = int_params.irq_source;
3768 
3769 		amdgpu_dm_irq_register_interrupt(
3770 			adev, &int_params, dm_crtc_high_irq, c_irq_params);
3771 	}
3772 
3773 	/* Use otg vertical line interrupt */
3774 #if defined(CONFIG_DRM_AMD_SECURE_DISPLAY)
3775 	for (i = 0; i <= adev->mode_info.num_crtc - 1; i++) {
3776 		r = amdgpu_irq_add_id(adev, SOC15_IH_CLIENTID_DCE,
3777 				vrtl_int_srcid[i], &adev->vline0_irq);
3778 
3779 		if (r) {
3780 			DRM_ERROR("Failed to add vline0 irq id!\n");
3781 			return r;
3782 		}
3783 
3784 		int_params.int_context = INTERRUPT_HIGH_IRQ_CONTEXT;
3785 		int_params.irq_source =
3786 			dc_interrupt_to_irq_source(dc, vrtl_int_srcid[i], 0);
3787 
3788 		if (int_params.irq_source == DC_IRQ_SOURCE_INVALID) {
3789 			DRM_ERROR("Failed to register vline0 irq %d!\n", vrtl_int_srcid[i]);
3790 			break;
3791 		}
3792 
3793 		c_irq_params = &adev->dm.vline0_params[int_params.irq_source
3794 					- DC_IRQ_SOURCE_DC1_VLINE0];
3795 
3796 		c_irq_params->adev = adev;
3797 		c_irq_params->irq_src = int_params.irq_source;
3798 
3799 		amdgpu_dm_irq_register_interrupt(adev, &int_params,
3800 				dm_dcn_vertical_interrupt0_high_irq, c_irq_params);
3801 	}
3802 #endif
3803 
3804 	/* Use VUPDATE_NO_LOCK interrupt on DCN, which seems to correspond to
3805 	 * the regular VUPDATE interrupt on DCE. We want DC_IRQ_SOURCE_VUPDATEx
3806 	 * to trigger at end of each vblank, regardless of state of the lock,
3807 	 * matching DCE behaviour.
3808 	 */
3809 	for (i = DCN_1_0__SRCID__OTG0_IHC_V_UPDATE_NO_LOCK_INTERRUPT;
3810 	     i <= DCN_1_0__SRCID__OTG0_IHC_V_UPDATE_NO_LOCK_INTERRUPT + adev->mode_info.num_crtc - 1;
3811 	     i++) {
3812 		r = amdgpu_irq_add_id(adev, SOC15_IH_CLIENTID_DCE, i, &adev->vupdate_irq);
3813 
3814 		if (r) {
3815 			DRM_ERROR("Failed to add vupdate irq id!\n");
3816 			return r;
3817 		}
3818 
3819 		int_params.int_context = INTERRUPT_HIGH_IRQ_CONTEXT;
3820 		int_params.irq_source =
3821 			dc_interrupt_to_irq_source(dc, i, 0);
3822 
3823 		c_irq_params = &adev->dm.vupdate_params[int_params.irq_source - DC_IRQ_SOURCE_VUPDATE1];
3824 
3825 		c_irq_params->adev = adev;
3826 		c_irq_params->irq_src = int_params.irq_source;
3827 
3828 		amdgpu_dm_irq_register_interrupt(adev, &int_params,
3829 				dm_vupdate_high_irq, c_irq_params);
3830 	}
3831 
3832 	/* Use GRPH_PFLIP interrupt */
3833 	for (i = DCN_1_0__SRCID__HUBP0_FLIP_INTERRUPT;
3834 			i <= DCN_1_0__SRCID__HUBP0_FLIP_INTERRUPT + dc->caps.max_otg_num - 1;
3835 			i++) {
3836 		r = amdgpu_irq_add_id(adev, SOC15_IH_CLIENTID_DCE, i, &adev->pageflip_irq);
3837 		if (r) {
3838 			DRM_ERROR("Failed to add page flip irq id!\n");
3839 			return r;
3840 		}
3841 
3842 		int_params.int_context = INTERRUPT_HIGH_IRQ_CONTEXT;
3843 		int_params.irq_source =
3844 			dc_interrupt_to_irq_source(dc, i, 0);
3845 
3846 		c_irq_params = &adev->dm.pflip_params[int_params.irq_source - DC_IRQ_SOURCE_PFLIP_FIRST];
3847 
3848 		c_irq_params->adev = adev;
3849 		c_irq_params->irq_src = int_params.irq_source;
3850 
3851 		amdgpu_dm_irq_register_interrupt(adev, &int_params,
3852 				dm_pflip_high_irq, c_irq_params);
3853 
3854 	}
3855 
3856 	/* HPD */
3857 	r = amdgpu_irq_add_id(adev, SOC15_IH_CLIENTID_DCE, DCN_1_0__SRCID__DC_HPD1_INT,
3858 			&adev->hpd_irq);
3859 	if (r) {
3860 		DRM_ERROR("Failed to add hpd irq id!\n");
3861 		return r;
3862 	}
3863 
3864 	register_hpd_handlers(adev);
3865 
3866 	return 0;
3867 }
3868 /* Register Outbox IRQ sources and initialize IRQ callbacks */
3869 static int register_outbox_irq_handlers(struct amdgpu_device *adev)
3870 {
3871 	struct dc *dc = adev->dm.dc;
3872 	struct common_irq_params *c_irq_params;
3873 	struct dc_interrupt_params int_params = {0};
3874 	int r, i;
3875 
3876 	int_params.requested_polarity = INTERRUPT_POLARITY_DEFAULT;
3877 	int_params.current_polarity = INTERRUPT_POLARITY_DEFAULT;
3878 
3879 	r = amdgpu_irq_add_id(adev, SOC15_IH_CLIENTID_DCE, DCN_1_0__SRCID__DMCUB_OUTBOX_LOW_PRIORITY_READY_INT,
3880 			&adev->dmub_outbox_irq);
3881 	if (r) {
3882 		DRM_ERROR("Failed to add outbox irq id!\n");
3883 		return r;
3884 	}
3885 
3886 	if (dc->ctx->dmub_srv) {
3887 		i = DCN_1_0__SRCID__DMCUB_OUTBOX_LOW_PRIORITY_READY_INT;
3888 		int_params.int_context = INTERRUPT_LOW_IRQ_CONTEXT;
3889 		int_params.irq_source =
3890 		dc_interrupt_to_irq_source(dc, i, 0);
3891 
3892 		c_irq_params = &adev->dm.dmub_outbox_params[0];
3893 
3894 		c_irq_params->adev = adev;
3895 		c_irq_params->irq_src = int_params.irq_source;
3896 
3897 		amdgpu_dm_irq_register_interrupt(adev, &int_params,
3898 				dm_dmub_outbox1_low_irq, c_irq_params);
3899 	}
3900 
3901 	return 0;
3902 }
3903 
3904 /*
3905  * Acquires the lock for the atomic state object and returns
3906  * the new atomic state.
3907  *
3908  * This should only be called during atomic check.
3909  */
3910 int dm_atomic_get_state(struct drm_atomic_state *state,
3911 			struct dm_atomic_state **dm_state)
3912 {
3913 	struct drm_device *dev = state->dev;
3914 	struct amdgpu_device *adev = drm_to_adev(dev);
3915 	struct amdgpu_display_manager *dm = &adev->dm;
3916 	struct drm_private_state *priv_state;
3917 
3918 	if (*dm_state)
3919 		return 0;
3920 
3921 	priv_state = drm_atomic_get_private_obj_state(state, &dm->atomic_obj);
3922 	if (IS_ERR(priv_state))
3923 		return PTR_ERR(priv_state);
3924 
3925 	*dm_state = to_dm_atomic_state(priv_state);
3926 
3927 	return 0;
3928 }
3929 
3930 static struct dm_atomic_state *
3931 dm_atomic_get_new_state(struct drm_atomic_state *state)
3932 {
3933 	struct drm_device *dev = state->dev;
3934 	struct amdgpu_device *adev = drm_to_adev(dev);
3935 	struct amdgpu_display_manager *dm = &adev->dm;
3936 	struct drm_private_obj *obj;
3937 	struct drm_private_state *new_obj_state;
3938 	int i;
3939 
3940 	for_each_new_private_obj_in_state(state, obj, new_obj_state, i) {
3941 		if (obj->funcs == dm->atomic_obj.funcs)
3942 			return to_dm_atomic_state(new_obj_state);
3943 	}
3944 
3945 	return NULL;
3946 }
3947 
3948 static struct drm_private_state *
3949 dm_atomic_duplicate_state(struct drm_private_obj *obj)
3950 {
3951 	struct dm_atomic_state *old_state, *new_state;
3952 
3953 	new_state = kzalloc(sizeof(*new_state), GFP_KERNEL);
3954 	if (!new_state)
3955 		return NULL;
3956 
3957 	__drm_atomic_helper_private_obj_duplicate_state(obj, &new_state->base);
3958 
3959 	old_state = to_dm_atomic_state(obj->state);
3960 
3961 	if (old_state && old_state->context)
3962 		new_state->context = dc_copy_state(old_state->context);
3963 
3964 	if (!new_state->context) {
3965 		kfree(new_state);
3966 		return NULL;
3967 	}
3968 
3969 	return &new_state->base;
3970 }
3971 
3972 static void dm_atomic_destroy_state(struct drm_private_obj *obj,
3973 				    struct drm_private_state *state)
3974 {
3975 	struct dm_atomic_state *dm_state = to_dm_atomic_state(state);
3976 
3977 	if (dm_state && dm_state->context)
3978 		dc_release_state(dm_state->context);
3979 
3980 	kfree(dm_state);
3981 }
3982 
3983 static struct drm_private_state_funcs dm_atomic_state_funcs = {
3984 	.atomic_duplicate_state = dm_atomic_duplicate_state,
3985 	.atomic_destroy_state = dm_atomic_destroy_state,
3986 };
3987 
3988 static int amdgpu_dm_mode_config_init(struct amdgpu_device *adev)
3989 {
3990 	struct dm_atomic_state *state;
3991 	int r;
3992 
3993 	adev->mode_info.mode_config_initialized = true;
3994 
3995 	adev_to_drm(adev)->mode_config.funcs = (void *)&amdgpu_dm_mode_funcs;
3996 	adev_to_drm(adev)->mode_config.helper_private = &amdgpu_dm_mode_config_helperfuncs;
3997 
3998 	adev_to_drm(adev)->mode_config.max_width = 16384;
3999 	adev_to_drm(adev)->mode_config.max_height = 16384;
4000 
4001 	adev_to_drm(adev)->mode_config.preferred_depth = 24;
4002 	if (adev->asic_type == CHIP_HAWAII)
4003 		/* disable prefer shadow for now due to hibernation issues */
4004 		adev_to_drm(adev)->mode_config.prefer_shadow = 0;
4005 	else
4006 		adev_to_drm(adev)->mode_config.prefer_shadow = 1;
4007 	/* indicates support for immediate flip */
4008 	adev_to_drm(adev)->mode_config.async_page_flip = true;
4009 
4010 	state = kzalloc(sizeof(*state), GFP_KERNEL);
4011 	if (!state)
4012 		return -ENOMEM;
4013 
4014 	state->context = dc_create_state(adev->dm.dc);
4015 	if (!state->context) {
4016 		kfree(state);
4017 		return -ENOMEM;
4018 	}
4019 
4020 	dc_resource_state_copy_construct_current(adev->dm.dc, state->context);
4021 
4022 	drm_atomic_private_obj_init(adev_to_drm(adev),
4023 				    &adev->dm.atomic_obj,
4024 				    &state->base,
4025 				    &dm_atomic_state_funcs);
4026 
4027 	r = amdgpu_display_modeset_create_props(adev);
4028 	if (r) {
4029 		dc_release_state(state->context);
4030 		kfree(state);
4031 		return r;
4032 	}
4033 
4034 	r = amdgpu_dm_audio_init(adev);
4035 	if (r) {
4036 		dc_release_state(state->context);
4037 		kfree(state);
4038 		return r;
4039 	}
4040 
4041 	return 0;
4042 }
4043 
4044 #define AMDGPU_DM_DEFAULT_MIN_BACKLIGHT 12
4045 #define AMDGPU_DM_DEFAULT_MAX_BACKLIGHT 255
4046 #define AUX_BL_DEFAULT_TRANSITION_TIME_MS 50
4047 
4048 static void amdgpu_dm_update_backlight_caps(struct amdgpu_display_manager *dm,
4049 					    int bl_idx)
4050 {
4051 #if defined(CONFIG_ACPI)
4052 	struct amdgpu_dm_backlight_caps caps;
4053 
4054 	memset(&caps, 0, sizeof(caps));
4055 
4056 	if (dm->backlight_caps[bl_idx].caps_valid)
4057 		return;
4058 
4059 	amdgpu_acpi_get_backlight_caps(&caps);
4060 	if (caps.caps_valid) {
4061 		dm->backlight_caps[bl_idx].caps_valid = true;
4062 		if (caps.aux_support)
4063 			return;
4064 		dm->backlight_caps[bl_idx].min_input_signal = caps.min_input_signal;
4065 		dm->backlight_caps[bl_idx].max_input_signal = caps.max_input_signal;
4066 	} else {
4067 		dm->backlight_caps[bl_idx].min_input_signal =
4068 				AMDGPU_DM_DEFAULT_MIN_BACKLIGHT;
4069 		dm->backlight_caps[bl_idx].max_input_signal =
4070 				AMDGPU_DM_DEFAULT_MAX_BACKLIGHT;
4071 	}
4072 #else
4073 	if (dm->backlight_caps[bl_idx].aux_support)
4074 		return;
4075 
4076 	dm->backlight_caps[bl_idx].min_input_signal = AMDGPU_DM_DEFAULT_MIN_BACKLIGHT;
4077 	dm->backlight_caps[bl_idx].max_input_signal = AMDGPU_DM_DEFAULT_MAX_BACKLIGHT;
4078 #endif
4079 }
4080 
4081 static int get_brightness_range(const struct amdgpu_dm_backlight_caps *caps,
4082 				unsigned int *min, unsigned int *max)
4083 {
4084 	if (!caps)
4085 		return 0;
4086 
4087 	if (caps->aux_support) {
4088 		// Firmware limits are in nits, DC API wants millinits.
4089 		*max = 1000 * caps->aux_max_input_signal;
4090 		*min = 1000 * caps->aux_min_input_signal;
4091 	} else {
4092 		// Firmware limits are 8-bit, PWM control is 16-bit.
4093 		*max = 0x101 * caps->max_input_signal;
4094 		*min = 0x101 * caps->min_input_signal;
4095 	}
4096 	return 1;
4097 }
4098 
4099 static u32 convert_brightness_from_user(const struct amdgpu_dm_backlight_caps *caps,
4100 					uint32_t brightness)
4101 {
4102 	unsigned int min, max;
4103 
4104 	if (!get_brightness_range(caps, &min, &max))
4105 		return brightness;
4106 
4107 	// Rescale 0..255 to min..max
4108 	return min + DIV_ROUND_CLOSEST((max - min) * brightness,
4109 				       AMDGPU_MAX_BL_LEVEL);
4110 }
4111 
4112 static u32 convert_brightness_to_user(const struct amdgpu_dm_backlight_caps *caps,
4113 				      uint32_t brightness)
4114 {
4115 	unsigned int min, max;
4116 
4117 	if (!get_brightness_range(caps, &min, &max))
4118 		return brightness;
4119 
4120 	if (brightness < min)
4121 		return 0;
4122 	// Rescale min..max to 0..255
4123 	return DIV_ROUND_CLOSEST(AMDGPU_MAX_BL_LEVEL * (brightness - min),
4124 				 max - min);
4125 }
4126 
4127 static void amdgpu_dm_backlight_set_level(struct amdgpu_display_manager *dm,
4128 					 int bl_idx,
4129 					 u32 user_brightness)
4130 {
4131 	struct amdgpu_dm_backlight_caps caps;
4132 	struct dc_link *link;
4133 	u32 brightness;
4134 	bool rc;
4135 
4136 	amdgpu_dm_update_backlight_caps(dm, bl_idx);
4137 	caps = dm->backlight_caps[bl_idx];
4138 
4139 	dm->brightness[bl_idx] = user_brightness;
4140 	/* update scratch register */
4141 	if (bl_idx == 0)
4142 		amdgpu_atombios_scratch_regs_set_backlight_level(dm->adev, dm->brightness[bl_idx]);
4143 	brightness = convert_brightness_from_user(&caps, dm->brightness[bl_idx]);
4144 	link = (struct dc_link *)dm->backlight_link[bl_idx];
4145 
4146 	/* Change brightness based on AUX property */
4147 	if (caps.aux_support) {
4148 		rc = dc_link_set_backlight_level_nits(link, true, brightness,
4149 						      AUX_BL_DEFAULT_TRANSITION_TIME_MS);
4150 		if (!rc)
4151 			DRM_DEBUG("DM: Failed to update backlight via AUX on eDP[%d]\n", bl_idx);
4152 	} else {
4153 		rc = dc_link_set_backlight_level(link, brightness, 0);
4154 		if (!rc)
4155 			DRM_DEBUG("DM: Failed to update backlight on eDP[%d]\n", bl_idx);
4156 	}
4157 
4158 	if (rc)
4159 		dm->actual_brightness[bl_idx] = user_brightness;
4160 }
4161 
4162 static int amdgpu_dm_backlight_update_status(struct backlight_device *bd)
4163 {
4164 	struct amdgpu_display_manager *dm = bl_get_data(bd);
4165 	int i;
4166 
4167 	for (i = 0; i < dm->num_of_edps; i++) {
4168 		if (bd == dm->backlight_dev[i])
4169 			break;
4170 	}
4171 	if (i >= AMDGPU_DM_MAX_NUM_EDP)
4172 		i = 0;
4173 	amdgpu_dm_backlight_set_level(dm, i, bd->props.brightness);
4174 
4175 	return 0;
4176 }
4177 
4178 static u32 amdgpu_dm_backlight_get_level(struct amdgpu_display_manager *dm,
4179 					 int bl_idx)
4180 {
4181 	int ret;
4182 	struct amdgpu_dm_backlight_caps caps;
4183 	struct dc_link *link = (struct dc_link *)dm->backlight_link[bl_idx];
4184 
4185 	amdgpu_dm_update_backlight_caps(dm, bl_idx);
4186 	caps = dm->backlight_caps[bl_idx];
4187 
4188 	if (caps.aux_support) {
4189 		u32 avg, peak;
4190 		bool rc;
4191 
4192 		rc = dc_link_get_backlight_level_nits(link, &avg, &peak);
4193 		if (!rc)
4194 			return dm->brightness[bl_idx];
4195 		return convert_brightness_to_user(&caps, avg);
4196 	}
4197 
4198 	ret = dc_link_get_backlight_level(link);
4199 
4200 	if (ret == DC_ERROR_UNEXPECTED)
4201 		return dm->brightness[bl_idx];
4202 
4203 	return convert_brightness_to_user(&caps, ret);
4204 }
4205 
4206 static int amdgpu_dm_backlight_get_brightness(struct backlight_device *bd)
4207 {
4208 	struct amdgpu_display_manager *dm = bl_get_data(bd);
4209 	int i;
4210 
4211 	for (i = 0; i < dm->num_of_edps; i++) {
4212 		if (bd == dm->backlight_dev[i])
4213 			break;
4214 	}
4215 	if (i >= AMDGPU_DM_MAX_NUM_EDP)
4216 		i = 0;
4217 	return amdgpu_dm_backlight_get_level(dm, i);
4218 }
4219 
4220 static const struct backlight_ops amdgpu_dm_backlight_ops = {
4221 	.options = BL_CORE_SUSPENDRESUME,
4222 	.get_brightness = amdgpu_dm_backlight_get_brightness,
4223 	.update_status	= amdgpu_dm_backlight_update_status,
4224 };
4225 
4226 static void
4227 amdgpu_dm_register_backlight_device(struct amdgpu_dm_connector *aconnector)
4228 {
4229 	struct drm_device *drm = aconnector->base.dev;
4230 	struct amdgpu_display_manager *dm = &drm_to_adev(drm)->dm;
4231 	struct backlight_properties props = { 0 };
4232 	char bl_name[16];
4233 
4234 	if (aconnector->bl_idx == -1)
4235 		return;
4236 
4237 	if (!acpi_video_backlight_use_native()) {
4238 		drm_info(drm, "Skipping amdgpu DM backlight registration\n");
4239 		/* Try registering an ACPI video backlight device instead. */
4240 		acpi_video_register_backlight();
4241 		return;
4242 	}
4243 
4244 	props.max_brightness = AMDGPU_MAX_BL_LEVEL;
4245 	props.brightness = AMDGPU_MAX_BL_LEVEL;
4246 	props.type = BACKLIGHT_RAW;
4247 
4248 	snprintf(bl_name, sizeof(bl_name), "amdgpu_bl%d",
4249 		 drm->primary->index + aconnector->bl_idx);
4250 
4251 	dm->backlight_dev[aconnector->bl_idx] =
4252 		backlight_device_register(bl_name, aconnector->base.kdev, dm,
4253 					  &amdgpu_dm_backlight_ops, &props);
4254 
4255 	if (IS_ERR(dm->backlight_dev[aconnector->bl_idx])) {
4256 		DRM_ERROR("DM: Backlight registration failed!\n");
4257 		dm->backlight_dev[aconnector->bl_idx] = NULL;
4258 	} else
4259 		DRM_DEBUG_DRIVER("DM: Registered Backlight device: %s\n", bl_name);
4260 }
4261 
4262 static int initialize_plane(struct amdgpu_display_manager *dm,
4263 			    struct amdgpu_mode_info *mode_info, int plane_id,
4264 			    enum drm_plane_type plane_type,
4265 			    const struct dc_plane_cap *plane_cap)
4266 {
4267 	struct drm_plane *plane;
4268 	unsigned long possible_crtcs;
4269 	int ret = 0;
4270 
4271 	plane = kzalloc(sizeof(struct drm_plane), GFP_KERNEL);
4272 	if (!plane) {
4273 		DRM_ERROR("KMS: Failed to allocate plane\n");
4274 		return -ENOMEM;
4275 	}
4276 	plane->type = plane_type;
4277 
4278 	/*
4279 	 * HACK: IGT tests expect that the primary plane for a CRTC
4280 	 * can only have one possible CRTC. Only expose support for
4281 	 * any CRTC if they're not going to be used as a primary plane
4282 	 * for a CRTC - like overlay or underlay planes.
4283 	 */
4284 	possible_crtcs = 1 << plane_id;
4285 	if (plane_id >= dm->dc->caps.max_streams)
4286 		possible_crtcs = 0xff;
4287 
4288 	ret = amdgpu_dm_plane_init(dm, plane, possible_crtcs, plane_cap);
4289 
4290 	if (ret) {
4291 		DRM_ERROR("KMS: Failed to initialize plane\n");
4292 		kfree(plane);
4293 		return ret;
4294 	}
4295 
4296 	if (mode_info)
4297 		mode_info->planes[plane_id] = plane;
4298 
4299 	return ret;
4300 }
4301 
4302 
4303 static void setup_backlight_device(struct amdgpu_display_manager *dm,
4304 				   struct amdgpu_dm_connector *aconnector)
4305 {
4306 	struct dc_link *link = aconnector->dc_link;
4307 	int bl_idx = dm->num_of_edps;
4308 
4309 	if (!(link->connector_signal & (SIGNAL_TYPE_EDP | SIGNAL_TYPE_LVDS)) ||
4310 	    link->type == dc_connection_none)
4311 		return;
4312 
4313 	if (dm->num_of_edps >= AMDGPU_DM_MAX_NUM_EDP) {
4314 		drm_warn(adev_to_drm(dm->adev), "Too much eDP connections, skipping backlight setup for additional eDPs\n");
4315 		return;
4316 	}
4317 
4318 	aconnector->bl_idx = bl_idx;
4319 
4320 	amdgpu_dm_update_backlight_caps(dm, bl_idx);
4321 	dm->brightness[bl_idx] = AMDGPU_MAX_BL_LEVEL;
4322 	dm->backlight_link[bl_idx] = link;
4323 	dm->num_of_edps++;
4324 
4325 	update_connector_ext_caps(aconnector);
4326 }
4327 
4328 static void amdgpu_set_panel_orientation(struct drm_connector *connector);
4329 
4330 /*
4331  * In this architecture, the association
4332  * connector -> encoder -> crtc
4333  * id not really requried. The crtc and connector will hold the
4334  * display_index as an abstraction to use with DAL component
4335  *
4336  * Returns 0 on success
4337  */
4338 static int amdgpu_dm_initialize_drm_device(struct amdgpu_device *adev)
4339 {
4340 	struct amdgpu_display_manager *dm = &adev->dm;
4341 	s32 i;
4342 	struct amdgpu_dm_connector *aconnector = NULL;
4343 	struct amdgpu_encoder *aencoder = NULL;
4344 	struct amdgpu_mode_info *mode_info = &adev->mode_info;
4345 	u32 link_cnt;
4346 	s32 primary_planes;
4347 	enum dc_connection_type new_connection_type = dc_connection_none;
4348 	const struct dc_plane_cap *plane;
4349 	bool psr_feature_enabled = false;
4350 	bool replay_feature_enabled = false;
4351 	int max_overlay = dm->dc->caps.max_slave_planes;
4352 
4353 	dm->display_indexes_num = dm->dc->caps.max_streams;
4354 	/* Update the actual used number of crtc */
4355 	adev->mode_info.num_crtc = adev->dm.display_indexes_num;
4356 
4357 	amdgpu_dm_set_irq_funcs(adev);
4358 
4359 	link_cnt = dm->dc->caps.max_links;
4360 	if (amdgpu_dm_mode_config_init(dm->adev)) {
4361 		DRM_ERROR("DM: Failed to initialize mode config\n");
4362 		return -EINVAL;
4363 	}
4364 
4365 	/* There is one primary plane per CRTC */
4366 	primary_planes = dm->dc->caps.max_streams;
4367 	ASSERT(primary_planes <= AMDGPU_MAX_PLANES);
4368 
4369 	/*
4370 	 * Initialize primary planes, implicit planes for legacy IOCTLS.
4371 	 * Order is reversed to match iteration order in atomic check.
4372 	 */
4373 	for (i = (primary_planes - 1); i >= 0; i--) {
4374 		plane = &dm->dc->caps.planes[i];
4375 
4376 		if (initialize_plane(dm, mode_info, i,
4377 				     DRM_PLANE_TYPE_PRIMARY, plane)) {
4378 			DRM_ERROR("KMS: Failed to initialize primary plane\n");
4379 			goto fail;
4380 		}
4381 	}
4382 
4383 	/*
4384 	 * Initialize overlay planes, index starting after primary planes.
4385 	 * These planes have a higher DRM index than the primary planes since
4386 	 * they should be considered as having a higher z-order.
4387 	 * Order is reversed to match iteration order in atomic check.
4388 	 *
4389 	 * Only support DCN for now, and only expose one so we don't encourage
4390 	 * userspace to use up all the pipes.
4391 	 */
4392 	for (i = 0; i < dm->dc->caps.max_planes; ++i) {
4393 		struct dc_plane_cap *plane = &dm->dc->caps.planes[i];
4394 
4395 		/* Do not create overlay if MPO disabled */
4396 		if (amdgpu_dc_debug_mask & DC_DISABLE_MPO)
4397 			break;
4398 
4399 		if (plane->type != DC_PLANE_TYPE_DCN_UNIVERSAL)
4400 			continue;
4401 
4402 		if (!plane->pixel_format_support.argb8888)
4403 			continue;
4404 
4405 		if (max_overlay-- == 0)
4406 			break;
4407 
4408 		if (initialize_plane(dm, NULL, primary_planes + i,
4409 				     DRM_PLANE_TYPE_OVERLAY, plane)) {
4410 			DRM_ERROR("KMS: Failed to initialize overlay plane\n");
4411 			goto fail;
4412 		}
4413 	}
4414 
4415 	for (i = 0; i < dm->dc->caps.max_streams; i++)
4416 		if (amdgpu_dm_crtc_init(dm, mode_info->planes[i], i)) {
4417 			DRM_ERROR("KMS: Failed to initialize crtc\n");
4418 			goto fail;
4419 		}
4420 
4421 	/* Use Outbox interrupt */
4422 	switch (amdgpu_ip_version(adev, DCE_HWIP, 0)) {
4423 	case IP_VERSION(3, 0, 0):
4424 	case IP_VERSION(3, 1, 2):
4425 	case IP_VERSION(3, 1, 3):
4426 	case IP_VERSION(3, 1, 4):
4427 	case IP_VERSION(3, 1, 5):
4428 	case IP_VERSION(3, 1, 6):
4429 	case IP_VERSION(3, 2, 0):
4430 	case IP_VERSION(3, 2, 1):
4431 	case IP_VERSION(2, 1, 0):
4432 	case IP_VERSION(3, 5, 0):
4433 		if (register_outbox_irq_handlers(dm->adev)) {
4434 			DRM_ERROR("DM: Failed to initialize IRQ\n");
4435 			goto fail;
4436 		}
4437 		break;
4438 	default:
4439 		DRM_DEBUG_KMS("Unsupported DCN IP version for outbox: 0x%X\n",
4440 			      amdgpu_ip_version(adev, DCE_HWIP, 0));
4441 	}
4442 
4443 	/* Determine whether to enable PSR support by default. */
4444 	if (!(amdgpu_dc_debug_mask & DC_DISABLE_PSR)) {
4445 		switch (amdgpu_ip_version(adev, DCE_HWIP, 0)) {
4446 		case IP_VERSION(3, 1, 2):
4447 		case IP_VERSION(3, 1, 3):
4448 		case IP_VERSION(3, 1, 4):
4449 		case IP_VERSION(3, 1, 5):
4450 		case IP_VERSION(3, 1, 6):
4451 		case IP_VERSION(3, 2, 0):
4452 		case IP_VERSION(3, 2, 1):
4453 		case IP_VERSION(3, 5, 0):
4454 			psr_feature_enabled = true;
4455 			break;
4456 		default:
4457 			psr_feature_enabled = amdgpu_dc_feature_mask & DC_PSR_MASK;
4458 			break;
4459 		}
4460 	}
4461 
4462 	if (!(amdgpu_dc_debug_mask & DC_DISABLE_REPLAY)) {
4463 		switch (adev->ip_versions[DCE_HWIP][0]) {
4464 		case IP_VERSION(3, 1, 4):
4465 		case IP_VERSION(3, 1, 5):
4466 		case IP_VERSION(3, 1, 6):
4467 		case IP_VERSION(3, 2, 0):
4468 		case IP_VERSION(3, 2, 1):
4469 			replay_feature_enabled = true;
4470 			break;
4471 		default:
4472 			replay_feature_enabled = amdgpu_dc_feature_mask & DC_REPLAY_MASK;
4473 			break;
4474 		}
4475 	}
4476 	/* loops over all connectors on the board */
4477 	for (i = 0; i < link_cnt; i++) {
4478 		struct dc_link *link = NULL;
4479 
4480 		if (i > AMDGPU_DM_MAX_DISPLAY_INDEX) {
4481 			DRM_ERROR(
4482 				"KMS: Cannot support more than %d display indexes\n",
4483 					AMDGPU_DM_MAX_DISPLAY_INDEX);
4484 			continue;
4485 		}
4486 
4487 		aconnector = kzalloc(sizeof(*aconnector), GFP_KERNEL);
4488 		if (!aconnector)
4489 			goto fail;
4490 
4491 		aencoder = kzalloc(sizeof(*aencoder), GFP_KERNEL);
4492 		if (!aencoder)
4493 			goto fail;
4494 
4495 		if (amdgpu_dm_encoder_init(dm->ddev, aencoder, i)) {
4496 			DRM_ERROR("KMS: Failed to initialize encoder\n");
4497 			goto fail;
4498 		}
4499 
4500 		if (amdgpu_dm_connector_init(dm, aconnector, i, aencoder)) {
4501 			DRM_ERROR("KMS: Failed to initialize connector\n");
4502 			goto fail;
4503 		}
4504 
4505 		link = dc_get_link_at_index(dm->dc, i);
4506 
4507 		if (!dc_link_detect_connection_type(link, &new_connection_type))
4508 			DRM_ERROR("KMS: Failed to detect connector\n");
4509 
4510 		if (aconnector->base.force && new_connection_type == dc_connection_none) {
4511 			emulated_link_detect(link);
4512 			amdgpu_dm_update_connector_after_detect(aconnector);
4513 		} else {
4514 			bool ret = false;
4515 
4516 			mutex_lock(&dm->dc_lock);
4517 			ret = dc_link_detect(link, DETECT_REASON_BOOT);
4518 			mutex_unlock(&dm->dc_lock);
4519 
4520 			if (ret) {
4521 				amdgpu_dm_update_connector_after_detect(aconnector);
4522 				setup_backlight_device(dm, aconnector);
4523 
4524 				/*
4525 				 * Disable psr if replay can be enabled
4526 				 */
4527 				if (replay_feature_enabled && amdgpu_dm_setup_replay(link, aconnector))
4528 					psr_feature_enabled = false;
4529 
4530 				if (psr_feature_enabled)
4531 					amdgpu_dm_set_psr_caps(link);
4532 
4533 				/* TODO: Fix vblank control helpers to delay PSR entry to allow this when
4534 				 * PSR is also supported.
4535 				 */
4536 				if (link->psr_settings.psr_feature_enabled)
4537 					adev_to_drm(adev)->vblank_disable_immediate = false;
4538 			}
4539 		}
4540 		amdgpu_set_panel_orientation(&aconnector->base);
4541 	}
4542 
4543 	/* Software is initialized. Now we can register interrupt handlers. */
4544 	switch (adev->asic_type) {
4545 #if defined(CONFIG_DRM_AMD_DC_SI)
4546 	case CHIP_TAHITI:
4547 	case CHIP_PITCAIRN:
4548 	case CHIP_VERDE:
4549 	case CHIP_OLAND:
4550 		if (dce60_register_irq_handlers(dm->adev)) {
4551 			DRM_ERROR("DM: Failed to initialize IRQ\n");
4552 			goto fail;
4553 		}
4554 		break;
4555 #endif
4556 	case CHIP_BONAIRE:
4557 	case CHIP_HAWAII:
4558 	case CHIP_KAVERI:
4559 	case CHIP_KABINI:
4560 	case CHIP_MULLINS:
4561 	case CHIP_TONGA:
4562 	case CHIP_FIJI:
4563 	case CHIP_CARRIZO:
4564 	case CHIP_STONEY:
4565 	case CHIP_POLARIS11:
4566 	case CHIP_POLARIS10:
4567 	case CHIP_POLARIS12:
4568 	case CHIP_VEGAM:
4569 	case CHIP_VEGA10:
4570 	case CHIP_VEGA12:
4571 	case CHIP_VEGA20:
4572 		if (dce110_register_irq_handlers(dm->adev)) {
4573 			DRM_ERROR("DM: Failed to initialize IRQ\n");
4574 			goto fail;
4575 		}
4576 		break;
4577 	default:
4578 		switch (amdgpu_ip_version(adev, DCE_HWIP, 0)) {
4579 		case IP_VERSION(1, 0, 0):
4580 		case IP_VERSION(1, 0, 1):
4581 		case IP_VERSION(2, 0, 2):
4582 		case IP_VERSION(2, 0, 3):
4583 		case IP_VERSION(2, 0, 0):
4584 		case IP_VERSION(2, 1, 0):
4585 		case IP_VERSION(3, 0, 0):
4586 		case IP_VERSION(3, 0, 2):
4587 		case IP_VERSION(3, 0, 3):
4588 		case IP_VERSION(3, 0, 1):
4589 		case IP_VERSION(3, 1, 2):
4590 		case IP_VERSION(3, 1, 3):
4591 		case IP_VERSION(3, 1, 4):
4592 		case IP_VERSION(3, 1, 5):
4593 		case IP_VERSION(3, 1, 6):
4594 		case IP_VERSION(3, 2, 0):
4595 		case IP_VERSION(3, 2, 1):
4596 		case IP_VERSION(3, 5, 0):
4597 			if (dcn10_register_irq_handlers(dm->adev)) {
4598 				DRM_ERROR("DM: Failed to initialize IRQ\n");
4599 				goto fail;
4600 			}
4601 			break;
4602 		default:
4603 			DRM_ERROR("Unsupported DCE IP versions: 0x%X\n",
4604 					amdgpu_ip_version(adev, DCE_HWIP, 0));
4605 			goto fail;
4606 		}
4607 		break;
4608 	}
4609 
4610 	return 0;
4611 fail:
4612 	kfree(aencoder);
4613 	kfree(aconnector);
4614 
4615 	return -EINVAL;
4616 }
4617 
4618 static void amdgpu_dm_destroy_drm_device(struct amdgpu_display_manager *dm)
4619 {
4620 	drm_atomic_private_obj_fini(&dm->atomic_obj);
4621 }
4622 
4623 /******************************************************************************
4624  * amdgpu_display_funcs functions
4625  *****************************************************************************/
4626 
4627 /*
4628  * dm_bandwidth_update - program display watermarks
4629  *
4630  * @adev: amdgpu_device pointer
4631  *
4632  * Calculate and program the display watermarks and line buffer allocation.
4633  */
4634 static void dm_bandwidth_update(struct amdgpu_device *adev)
4635 {
4636 	/* TODO: implement later */
4637 }
4638 
4639 static const struct amdgpu_display_funcs dm_display_funcs = {
4640 	.bandwidth_update = dm_bandwidth_update, /* called unconditionally */
4641 	.vblank_get_counter = dm_vblank_get_counter,/* called unconditionally */
4642 	.backlight_set_level = NULL, /* never called for DC */
4643 	.backlight_get_level = NULL, /* never called for DC */
4644 	.hpd_sense = NULL,/* called unconditionally */
4645 	.hpd_set_polarity = NULL, /* called unconditionally */
4646 	.hpd_get_gpio_reg = NULL, /* VBIOS parsing. DAL does it. */
4647 	.page_flip_get_scanoutpos =
4648 		dm_crtc_get_scanoutpos,/* called unconditionally */
4649 	.add_encoder = NULL, /* VBIOS parsing. DAL does it. */
4650 	.add_connector = NULL, /* VBIOS parsing. DAL does it. */
4651 };
4652 
4653 #if defined(CONFIG_DEBUG_KERNEL_DC)
4654 
4655 static ssize_t s3_debug_store(struct device *device,
4656 			      struct device_attribute *attr,
4657 			      const char *buf,
4658 			      size_t count)
4659 {
4660 	int ret;
4661 	int s3_state;
4662 	struct drm_device *drm_dev = dev_get_drvdata(device);
4663 	struct amdgpu_device *adev = drm_to_adev(drm_dev);
4664 
4665 	ret = kstrtoint(buf, 0, &s3_state);
4666 
4667 	if (ret == 0) {
4668 		if (s3_state) {
4669 			dm_resume(adev);
4670 			drm_kms_helper_hotplug_event(adev_to_drm(adev));
4671 		} else
4672 			dm_suspend(adev);
4673 	}
4674 
4675 	return ret == 0 ? count : 0;
4676 }
4677 
4678 DEVICE_ATTR_WO(s3_debug);
4679 
4680 #endif
4681 
4682 static int dm_init_microcode(struct amdgpu_device *adev)
4683 {
4684 	char *fw_name_dmub;
4685 	int r;
4686 
4687 	switch (amdgpu_ip_version(adev, DCE_HWIP, 0)) {
4688 	case IP_VERSION(2, 1, 0):
4689 		fw_name_dmub = FIRMWARE_RENOIR_DMUB;
4690 		if (ASICREV_IS_GREEN_SARDINE(adev->external_rev_id))
4691 			fw_name_dmub = FIRMWARE_GREEN_SARDINE_DMUB;
4692 		break;
4693 	case IP_VERSION(3, 0, 0):
4694 		if (amdgpu_ip_version(adev, GC_HWIP, 0) == IP_VERSION(10, 3, 0))
4695 			fw_name_dmub = FIRMWARE_SIENNA_CICHLID_DMUB;
4696 		else
4697 			fw_name_dmub = FIRMWARE_NAVY_FLOUNDER_DMUB;
4698 		break;
4699 	case IP_VERSION(3, 0, 1):
4700 		fw_name_dmub = FIRMWARE_VANGOGH_DMUB;
4701 		break;
4702 	case IP_VERSION(3, 0, 2):
4703 		fw_name_dmub = FIRMWARE_DIMGREY_CAVEFISH_DMUB;
4704 		break;
4705 	case IP_VERSION(3, 0, 3):
4706 		fw_name_dmub = FIRMWARE_BEIGE_GOBY_DMUB;
4707 		break;
4708 	case IP_VERSION(3, 1, 2):
4709 	case IP_VERSION(3, 1, 3):
4710 		fw_name_dmub = FIRMWARE_YELLOW_CARP_DMUB;
4711 		break;
4712 	case IP_VERSION(3, 1, 4):
4713 		fw_name_dmub = FIRMWARE_DCN_314_DMUB;
4714 		break;
4715 	case IP_VERSION(3, 1, 5):
4716 		fw_name_dmub = FIRMWARE_DCN_315_DMUB;
4717 		break;
4718 	case IP_VERSION(3, 1, 6):
4719 		fw_name_dmub = FIRMWARE_DCN316_DMUB;
4720 		break;
4721 	case IP_VERSION(3, 2, 0):
4722 		fw_name_dmub = FIRMWARE_DCN_V3_2_0_DMCUB;
4723 		break;
4724 	case IP_VERSION(3, 2, 1):
4725 		fw_name_dmub = FIRMWARE_DCN_V3_2_1_DMCUB;
4726 		break;
4727 	case IP_VERSION(3, 5, 0):
4728 		fw_name_dmub = FIRMWARE_DCN_35_DMUB;
4729 		break;
4730 	default:
4731 		/* ASIC doesn't support DMUB. */
4732 		return 0;
4733 	}
4734 	r = amdgpu_ucode_request(adev, &adev->dm.dmub_fw, fw_name_dmub);
4735 	return r;
4736 }
4737 
4738 static int dm_early_init(void *handle)
4739 {
4740 	struct amdgpu_device *adev = (struct amdgpu_device *)handle;
4741 	struct amdgpu_mode_info *mode_info = &adev->mode_info;
4742 	struct atom_context *ctx = mode_info->atom_context;
4743 	int index = GetIndexIntoMasterTable(DATA, Object_Header);
4744 	u16 data_offset;
4745 
4746 	/* if there is no object header, skip DM */
4747 	if (!amdgpu_atom_parse_data_header(ctx, index, NULL, NULL, NULL, &data_offset)) {
4748 		adev->harvest_ip_mask |= AMD_HARVEST_IP_DMU_MASK;
4749 		dev_info(adev->dev, "No object header, skipping DM\n");
4750 		return -ENOENT;
4751 	}
4752 
4753 	switch (adev->asic_type) {
4754 #if defined(CONFIG_DRM_AMD_DC_SI)
4755 	case CHIP_TAHITI:
4756 	case CHIP_PITCAIRN:
4757 	case CHIP_VERDE:
4758 		adev->mode_info.num_crtc = 6;
4759 		adev->mode_info.num_hpd = 6;
4760 		adev->mode_info.num_dig = 6;
4761 		break;
4762 	case CHIP_OLAND:
4763 		adev->mode_info.num_crtc = 2;
4764 		adev->mode_info.num_hpd = 2;
4765 		adev->mode_info.num_dig = 2;
4766 		break;
4767 #endif
4768 	case CHIP_BONAIRE:
4769 	case CHIP_HAWAII:
4770 		adev->mode_info.num_crtc = 6;
4771 		adev->mode_info.num_hpd = 6;
4772 		adev->mode_info.num_dig = 6;
4773 		break;
4774 	case CHIP_KAVERI:
4775 		adev->mode_info.num_crtc = 4;
4776 		adev->mode_info.num_hpd = 6;
4777 		adev->mode_info.num_dig = 7;
4778 		break;
4779 	case CHIP_KABINI:
4780 	case CHIP_MULLINS:
4781 		adev->mode_info.num_crtc = 2;
4782 		adev->mode_info.num_hpd = 6;
4783 		adev->mode_info.num_dig = 6;
4784 		break;
4785 	case CHIP_FIJI:
4786 	case CHIP_TONGA:
4787 		adev->mode_info.num_crtc = 6;
4788 		adev->mode_info.num_hpd = 6;
4789 		adev->mode_info.num_dig = 7;
4790 		break;
4791 	case CHIP_CARRIZO:
4792 		adev->mode_info.num_crtc = 3;
4793 		adev->mode_info.num_hpd = 6;
4794 		adev->mode_info.num_dig = 9;
4795 		break;
4796 	case CHIP_STONEY:
4797 		adev->mode_info.num_crtc = 2;
4798 		adev->mode_info.num_hpd = 6;
4799 		adev->mode_info.num_dig = 9;
4800 		break;
4801 	case CHIP_POLARIS11:
4802 	case CHIP_POLARIS12:
4803 		adev->mode_info.num_crtc = 5;
4804 		adev->mode_info.num_hpd = 5;
4805 		adev->mode_info.num_dig = 5;
4806 		break;
4807 	case CHIP_POLARIS10:
4808 	case CHIP_VEGAM:
4809 		adev->mode_info.num_crtc = 6;
4810 		adev->mode_info.num_hpd = 6;
4811 		adev->mode_info.num_dig = 6;
4812 		break;
4813 	case CHIP_VEGA10:
4814 	case CHIP_VEGA12:
4815 	case CHIP_VEGA20:
4816 		adev->mode_info.num_crtc = 6;
4817 		adev->mode_info.num_hpd = 6;
4818 		adev->mode_info.num_dig = 6;
4819 		break;
4820 	default:
4821 
4822 		switch (amdgpu_ip_version(adev, DCE_HWIP, 0)) {
4823 		case IP_VERSION(2, 0, 2):
4824 		case IP_VERSION(3, 0, 0):
4825 			adev->mode_info.num_crtc = 6;
4826 			adev->mode_info.num_hpd = 6;
4827 			adev->mode_info.num_dig = 6;
4828 			break;
4829 		case IP_VERSION(2, 0, 0):
4830 		case IP_VERSION(3, 0, 2):
4831 			adev->mode_info.num_crtc = 5;
4832 			adev->mode_info.num_hpd = 5;
4833 			adev->mode_info.num_dig = 5;
4834 			break;
4835 		case IP_VERSION(2, 0, 3):
4836 		case IP_VERSION(3, 0, 3):
4837 			adev->mode_info.num_crtc = 2;
4838 			adev->mode_info.num_hpd = 2;
4839 			adev->mode_info.num_dig = 2;
4840 			break;
4841 		case IP_VERSION(1, 0, 0):
4842 		case IP_VERSION(1, 0, 1):
4843 		case IP_VERSION(3, 0, 1):
4844 		case IP_VERSION(2, 1, 0):
4845 		case IP_VERSION(3, 1, 2):
4846 		case IP_VERSION(3, 1, 3):
4847 		case IP_VERSION(3, 1, 4):
4848 		case IP_VERSION(3, 1, 5):
4849 		case IP_VERSION(3, 1, 6):
4850 		case IP_VERSION(3, 2, 0):
4851 		case IP_VERSION(3, 2, 1):
4852 		case IP_VERSION(3, 5, 0):
4853 			adev->mode_info.num_crtc = 4;
4854 			adev->mode_info.num_hpd = 4;
4855 			adev->mode_info.num_dig = 4;
4856 			break;
4857 		default:
4858 			DRM_ERROR("Unsupported DCE IP versions: 0x%x\n",
4859 					amdgpu_ip_version(adev, DCE_HWIP, 0));
4860 			return -EINVAL;
4861 		}
4862 		break;
4863 	}
4864 
4865 	if (adev->mode_info.funcs == NULL)
4866 		adev->mode_info.funcs = &dm_display_funcs;
4867 
4868 	/*
4869 	 * Note: Do NOT change adev->audio_endpt_rreg and
4870 	 * adev->audio_endpt_wreg because they are initialised in
4871 	 * amdgpu_device_init()
4872 	 */
4873 #if defined(CONFIG_DEBUG_KERNEL_DC)
4874 	device_create_file(
4875 		adev_to_drm(adev)->dev,
4876 		&dev_attr_s3_debug);
4877 #endif
4878 	adev->dc_enabled = true;
4879 
4880 	return dm_init_microcode(adev);
4881 }
4882 
4883 static bool modereset_required(struct drm_crtc_state *crtc_state)
4884 {
4885 	return !crtc_state->active && drm_atomic_crtc_needs_modeset(crtc_state);
4886 }
4887 
4888 static void amdgpu_dm_encoder_destroy(struct drm_encoder *encoder)
4889 {
4890 	drm_encoder_cleanup(encoder);
4891 	kfree(encoder);
4892 }
4893 
4894 static const struct drm_encoder_funcs amdgpu_dm_encoder_funcs = {
4895 	.destroy = amdgpu_dm_encoder_destroy,
4896 };
4897 
4898 static int
4899 fill_plane_color_attributes(const struct drm_plane_state *plane_state,
4900 			    const enum surface_pixel_format format,
4901 			    enum dc_color_space *color_space)
4902 {
4903 	bool full_range;
4904 
4905 	*color_space = COLOR_SPACE_SRGB;
4906 
4907 	/* DRM color properties only affect non-RGB formats. */
4908 	if (format < SURFACE_PIXEL_FORMAT_VIDEO_BEGIN)
4909 		return 0;
4910 
4911 	full_range = (plane_state->color_range == DRM_COLOR_YCBCR_FULL_RANGE);
4912 
4913 	switch (plane_state->color_encoding) {
4914 	case DRM_COLOR_YCBCR_BT601:
4915 		if (full_range)
4916 			*color_space = COLOR_SPACE_YCBCR601;
4917 		else
4918 			*color_space = COLOR_SPACE_YCBCR601_LIMITED;
4919 		break;
4920 
4921 	case DRM_COLOR_YCBCR_BT709:
4922 		if (full_range)
4923 			*color_space = COLOR_SPACE_YCBCR709;
4924 		else
4925 			*color_space = COLOR_SPACE_YCBCR709_LIMITED;
4926 		break;
4927 
4928 	case DRM_COLOR_YCBCR_BT2020:
4929 		if (full_range)
4930 			*color_space = COLOR_SPACE_2020_YCBCR;
4931 		else
4932 			return -EINVAL;
4933 		break;
4934 
4935 	default:
4936 		return -EINVAL;
4937 	}
4938 
4939 	return 0;
4940 }
4941 
4942 static int
4943 fill_dc_plane_info_and_addr(struct amdgpu_device *adev,
4944 			    const struct drm_plane_state *plane_state,
4945 			    const u64 tiling_flags,
4946 			    struct dc_plane_info *plane_info,
4947 			    struct dc_plane_address *address,
4948 			    bool tmz_surface,
4949 			    bool force_disable_dcc)
4950 {
4951 	const struct drm_framebuffer *fb = plane_state->fb;
4952 	const struct amdgpu_framebuffer *afb =
4953 		to_amdgpu_framebuffer(plane_state->fb);
4954 	int ret;
4955 
4956 	memset(plane_info, 0, sizeof(*plane_info));
4957 
4958 	switch (fb->format->format) {
4959 	case DRM_FORMAT_C8:
4960 		plane_info->format =
4961 			SURFACE_PIXEL_FORMAT_GRPH_PALETA_256_COLORS;
4962 		break;
4963 	case DRM_FORMAT_RGB565:
4964 		plane_info->format = SURFACE_PIXEL_FORMAT_GRPH_RGB565;
4965 		break;
4966 	case DRM_FORMAT_XRGB8888:
4967 	case DRM_FORMAT_ARGB8888:
4968 		plane_info->format = SURFACE_PIXEL_FORMAT_GRPH_ARGB8888;
4969 		break;
4970 	case DRM_FORMAT_XRGB2101010:
4971 	case DRM_FORMAT_ARGB2101010:
4972 		plane_info->format = SURFACE_PIXEL_FORMAT_GRPH_ARGB2101010;
4973 		break;
4974 	case DRM_FORMAT_XBGR2101010:
4975 	case DRM_FORMAT_ABGR2101010:
4976 		plane_info->format = SURFACE_PIXEL_FORMAT_GRPH_ABGR2101010;
4977 		break;
4978 	case DRM_FORMAT_XBGR8888:
4979 	case DRM_FORMAT_ABGR8888:
4980 		plane_info->format = SURFACE_PIXEL_FORMAT_GRPH_ABGR8888;
4981 		break;
4982 	case DRM_FORMAT_NV21:
4983 		plane_info->format = SURFACE_PIXEL_FORMAT_VIDEO_420_YCbCr;
4984 		break;
4985 	case DRM_FORMAT_NV12:
4986 		plane_info->format = SURFACE_PIXEL_FORMAT_VIDEO_420_YCrCb;
4987 		break;
4988 	case DRM_FORMAT_P010:
4989 		plane_info->format = SURFACE_PIXEL_FORMAT_VIDEO_420_10bpc_YCrCb;
4990 		break;
4991 	case DRM_FORMAT_XRGB16161616F:
4992 	case DRM_FORMAT_ARGB16161616F:
4993 		plane_info->format = SURFACE_PIXEL_FORMAT_GRPH_ARGB16161616F;
4994 		break;
4995 	case DRM_FORMAT_XBGR16161616F:
4996 	case DRM_FORMAT_ABGR16161616F:
4997 		plane_info->format = SURFACE_PIXEL_FORMAT_GRPH_ABGR16161616F;
4998 		break;
4999 	case DRM_FORMAT_XRGB16161616:
5000 	case DRM_FORMAT_ARGB16161616:
5001 		plane_info->format = SURFACE_PIXEL_FORMAT_GRPH_ARGB16161616;
5002 		break;
5003 	case DRM_FORMAT_XBGR16161616:
5004 	case DRM_FORMAT_ABGR16161616:
5005 		plane_info->format = SURFACE_PIXEL_FORMAT_GRPH_ABGR16161616;
5006 		break;
5007 	default:
5008 		DRM_ERROR(
5009 			"Unsupported screen format %p4cc\n",
5010 			&fb->format->format);
5011 		return -EINVAL;
5012 	}
5013 
5014 	switch (plane_state->rotation & DRM_MODE_ROTATE_MASK) {
5015 	case DRM_MODE_ROTATE_0:
5016 		plane_info->rotation = ROTATION_ANGLE_0;
5017 		break;
5018 	case DRM_MODE_ROTATE_90:
5019 		plane_info->rotation = ROTATION_ANGLE_90;
5020 		break;
5021 	case DRM_MODE_ROTATE_180:
5022 		plane_info->rotation = ROTATION_ANGLE_180;
5023 		break;
5024 	case DRM_MODE_ROTATE_270:
5025 		plane_info->rotation = ROTATION_ANGLE_270;
5026 		break;
5027 	default:
5028 		plane_info->rotation = ROTATION_ANGLE_0;
5029 		break;
5030 	}
5031 
5032 
5033 	plane_info->visible = true;
5034 	plane_info->stereo_format = PLANE_STEREO_FORMAT_NONE;
5035 
5036 	plane_info->layer_index = plane_state->normalized_zpos;
5037 
5038 	ret = fill_plane_color_attributes(plane_state, plane_info->format,
5039 					  &plane_info->color_space);
5040 	if (ret)
5041 		return ret;
5042 
5043 	ret = amdgpu_dm_plane_fill_plane_buffer_attributes(adev, afb, plane_info->format,
5044 					   plane_info->rotation, tiling_flags,
5045 					   &plane_info->tiling_info,
5046 					   &plane_info->plane_size,
5047 					   &plane_info->dcc, address,
5048 					   tmz_surface, force_disable_dcc);
5049 	if (ret)
5050 		return ret;
5051 
5052 	amdgpu_dm_plane_fill_blending_from_plane_state(
5053 		plane_state, &plane_info->per_pixel_alpha, &plane_info->pre_multiplied_alpha,
5054 		&plane_info->global_alpha, &plane_info->global_alpha_value);
5055 
5056 	return 0;
5057 }
5058 
5059 static int fill_dc_plane_attributes(struct amdgpu_device *adev,
5060 				    struct dc_plane_state *dc_plane_state,
5061 				    struct drm_plane_state *plane_state,
5062 				    struct drm_crtc_state *crtc_state)
5063 {
5064 	struct dm_crtc_state *dm_crtc_state = to_dm_crtc_state(crtc_state);
5065 	struct amdgpu_framebuffer *afb = (struct amdgpu_framebuffer *)plane_state->fb;
5066 	struct dc_scaling_info scaling_info;
5067 	struct dc_plane_info plane_info;
5068 	int ret;
5069 	bool force_disable_dcc = false;
5070 
5071 	ret = amdgpu_dm_plane_fill_dc_scaling_info(adev, plane_state, &scaling_info);
5072 	if (ret)
5073 		return ret;
5074 
5075 	dc_plane_state->src_rect = scaling_info.src_rect;
5076 	dc_plane_state->dst_rect = scaling_info.dst_rect;
5077 	dc_plane_state->clip_rect = scaling_info.clip_rect;
5078 	dc_plane_state->scaling_quality = scaling_info.scaling_quality;
5079 
5080 	force_disable_dcc = adev->asic_type == CHIP_RAVEN && adev->in_suspend;
5081 	ret = fill_dc_plane_info_and_addr(adev, plane_state,
5082 					  afb->tiling_flags,
5083 					  &plane_info,
5084 					  &dc_plane_state->address,
5085 					  afb->tmz_surface,
5086 					  force_disable_dcc);
5087 	if (ret)
5088 		return ret;
5089 
5090 	dc_plane_state->format = plane_info.format;
5091 	dc_plane_state->color_space = plane_info.color_space;
5092 	dc_plane_state->format = plane_info.format;
5093 	dc_plane_state->plane_size = plane_info.plane_size;
5094 	dc_plane_state->rotation = plane_info.rotation;
5095 	dc_plane_state->horizontal_mirror = plane_info.horizontal_mirror;
5096 	dc_plane_state->stereo_format = plane_info.stereo_format;
5097 	dc_plane_state->tiling_info = plane_info.tiling_info;
5098 	dc_plane_state->visible = plane_info.visible;
5099 	dc_plane_state->per_pixel_alpha = plane_info.per_pixel_alpha;
5100 	dc_plane_state->pre_multiplied_alpha = plane_info.pre_multiplied_alpha;
5101 	dc_plane_state->global_alpha = plane_info.global_alpha;
5102 	dc_plane_state->global_alpha_value = plane_info.global_alpha_value;
5103 	dc_plane_state->dcc = plane_info.dcc;
5104 	dc_plane_state->layer_index = plane_info.layer_index;
5105 	dc_plane_state->flip_int_enabled = true;
5106 
5107 	/*
5108 	 * Always set input transfer function, since plane state is refreshed
5109 	 * every time.
5110 	 */
5111 	ret = amdgpu_dm_update_plane_color_mgmt(dm_crtc_state, dc_plane_state);
5112 	if (ret)
5113 		return ret;
5114 
5115 	return 0;
5116 }
5117 
5118 static inline void fill_dc_dirty_rect(struct drm_plane *plane,
5119 				      struct rect *dirty_rect, int32_t x,
5120 				      s32 y, s32 width, s32 height,
5121 				      int *i, bool ffu)
5122 {
5123 	WARN_ON(*i >= DC_MAX_DIRTY_RECTS);
5124 
5125 	dirty_rect->x = x;
5126 	dirty_rect->y = y;
5127 	dirty_rect->width = width;
5128 	dirty_rect->height = height;
5129 
5130 	if (ffu)
5131 		drm_dbg(plane->dev,
5132 			"[PLANE:%d] PSR FFU dirty rect size (%d, %d)\n",
5133 			plane->base.id, width, height);
5134 	else
5135 		drm_dbg(plane->dev,
5136 			"[PLANE:%d] PSR SU dirty rect at (%d, %d) size (%d, %d)",
5137 			plane->base.id, x, y, width, height);
5138 
5139 	(*i)++;
5140 }
5141 
5142 /**
5143  * fill_dc_dirty_rects() - Fill DC dirty regions for PSR selective updates
5144  *
5145  * @plane: DRM plane containing dirty regions that need to be flushed to the eDP
5146  *         remote fb
5147  * @old_plane_state: Old state of @plane
5148  * @new_plane_state: New state of @plane
5149  * @crtc_state: New state of CRTC connected to the @plane
5150  * @flip_addrs: DC flip tracking struct, which also tracts dirty rects
5151  * @dirty_regions_changed: dirty regions changed
5152  *
5153  * For PSR SU, DC informs the DMUB uController of dirty rectangle regions
5154  * (referred to as "damage clips" in DRM nomenclature) that require updating on
5155  * the eDP remote buffer. The responsibility of specifying the dirty regions is
5156  * amdgpu_dm's.
5157  *
5158  * A damage-aware DRM client should fill the FB_DAMAGE_CLIPS property on the
5159  * plane with regions that require flushing to the eDP remote buffer. In
5160  * addition, certain use cases - such as cursor and multi-plane overlay (MPO) -
5161  * implicitly provide damage clips without any client support via the plane
5162  * bounds.
5163  */
5164 static void fill_dc_dirty_rects(struct drm_plane *plane,
5165 				struct drm_plane_state *old_plane_state,
5166 				struct drm_plane_state *new_plane_state,
5167 				struct drm_crtc_state *crtc_state,
5168 				struct dc_flip_addrs *flip_addrs,
5169 				bool *dirty_regions_changed)
5170 {
5171 	struct dm_crtc_state *dm_crtc_state = to_dm_crtc_state(crtc_state);
5172 	struct rect *dirty_rects = flip_addrs->dirty_rects;
5173 	u32 num_clips;
5174 	struct drm_mode_rect *clips;
5175 	bool bb_changed;
5176 	bool fb_changed;
5177 	u32 i = 0;
5178 	*dirty_regions_changed = false;
5179 
5180 	/*
5181 	 * Cursor plane has it's own dirty rect update interface. See
5182 	 * dcn10_dmub_update_cursor_data and dmub_cmd_update_cursor_info_data
5183 	 */
5184 	if (plane->type == DRM_PLANE_TYPE_CURSOR)
5185 		return;
5186 
5187 	num_clips = drm_plane_get_damage_clips_count(new_plane_state);
5188 	clips = drm_plane_get_damage_clips(new_plane_state);
5189 
5190 	if (!dm_crtc_state->mpo_requested) {
5191 		if (!num_clips || num_clips > DC_MAX_DIRTY_RECTS)
5192 			goto ffu;
5193 
5194 		for (; flip_addrs->dirty_rect_count < num_clips; clips++)
5195 			fill_dc_dirty_rect(new_plane_state->plane,
5196 					   &dirty_rects[flip_addrs->dirty_rect_count],
5197 					   clips->x1, clips->y1,
5198 					   clips->x2 - clips->x1, clips->y2 - clips->y1,
5199 					   &flip_addrs->dirty_rect_count,
5200 					   false);
5201 		return;
5202 	}
5203 
5204 	/*
5205 	 * MPO is requested. Add entire plane bounding box to dirty rects if
5206 	 * flipped to or damaged.
5207 	 *
5208 	 * If plane is moved or resized, also add old bounding box to dirty
5209 	 * rects.
5210 	 */
5211 	fb_changed = old_plane_state->fb->base.id !=
5212 		     new_plane_state->fb->base.id;
5213 	bb_changed = (old_plane_state->crtc_x != new_plane_state->crtc_x ||
5214 		      old_plane_state->crtc_y != new_plane_state->crtc_y ||
5215 		      old_plane_state->crtc_w != new_plane_state->crtc_w ||
5216 		      old_plane_state->crtc_h != new_plane_state->crtc_h);
5217 
5218 	drm_dbg(plane->dev,
5219 		"[PLANE:%d] PSR bb_changed:%d fb_changed:%d num_clips:%d\n",
5220 		new_plane_state->plane->base.id,
5221 		bb_changed, fb_changed, num_clips);
5222 
5223 	*dirty_regions_changed = bb_changed;
5224 
5225 	if ((num_clips + (bb_changed ? 2 : 0)) > DC_MAX_DIRTY_RECTS)
5226 		goto ffu;
5227 
5228 	if (bb_changed) {
5229 		fill_dc_dirty_rect(new_plane_state->plane, &dirty_rects[i],
5230 				   new_plane_state->crtc_x,
5231 				   new_plane_state->crtc_y,
5232 				   new_plane_state->crtc_w,
5233 				   new_plane_state->crtc_h, &i, false);
5234 
5235 		/* Add old plane bounding-box if plane is moved or resized */
5236 		fill_dc_dirty_rect(new_plane_state->plane, &dirty_rects[i],
5237 				   old_plane_state->crtc_x,
5238 				   old_plane_state->crtc_y,
5239 				   old_plane_state->crtc_w,
5240 				   old_plane_state->crtc_h, &i, false);
5241 	}
5242 
5243 	if (num_clips) {
5244 		for (; i < num_clips; clips++)
5245 			fill_dc_dirty_rect(new_plane_state->plane,
5246 					   &dirty_rects[i], clips->x1,
5247 					   clips->y1, clips->x2 - clips->x1,
5248 					   clips->y2 - clips->y1, &i, false);
5249 	} else if (fb_changed && !bb_changed) {
5250 		fill_dc_dirty_rect(new_plane_state->plane, &dirty_rects[i],
5251 				   new_plane_state->crtc_x,
5252 				   new_plane_state->crtc_y,
5253 				   new_plane_state->crtc_w,
5254 				   new_plane_state->crtc_h, &i, false);
5255 	}
5256 
5257 	flip_addrs->dirty_rect_count = i;
5258 	return;
5259 
5260 ffu:
5261 	fill_dc_dirty_rect(new_plane_state->plane, &dirty_rects[0], 0, 0,
5262 			   dm_crtc_state->base.mode.crtc_hdisplay,
5263 			   dm_crtc_state->base.mode.crtc_vdisplay,
5264 			   &flip_addrs->dirty_rect_count, true);
5265 }
5266 
5267 static void update_stream_scaling_settings(const struct drm_display_mode *mode,
5268 					   const struct dm_connector_state *dm_state,
5269 					   struct dc_stream_state *stream)
5270 {
5271 	enum amdgpu_rmx_type rmx_type;
5272 
5273 	struct rect src = { 0 }; /* viewport in composition space*/
5274 	struct rect dst = { 0 }; /* stream addressable area */
5275 
5276 	/* no mode. nothing to be done */
5277 	if (!mode)
5278 		return;
5279 
5280 	/* Full screen scaling by default */
5281 	src.width = mode->hdisplay;
5282 	src.height = mode->vdisplay;
5283 	dst.width = stream->timing.h_addressable;
5284 	dst.height = stream->timing.v_addressable;
5285 
5286 	if (dm_state) {
5287 		rmx_type = dm_state->scaling;
5288 		if (rmx_type == RMX_ASPECT || rmx_type == RMX_OFF) {
5289 			if (src.width * dst.height <
5290 					src.height * dst.width) {
5291 				/* height needs less upscaling/more downscaling */
5292 				dst.width = src.width *
5293 						dst.height / src.height;
5294 			} else {
5295 				/* width needs less upscaling/more downscaling */
5296 				dst.height = src.height *
5297 						dst.width / src.width;
5298 			}
5299 		} else if (rmx_type == RMX_CENTER) {
5300 			dst = src;
5301 		}
5302 
5303 		dst.x = (stream->timing.h_addressable - dst.width) / 2;
5304 		dst.y = (stream->timing.v_addressable - dst.height) / 2;
5305 
5306 		if (dm_state->underscan_enable) {
5307 			dst.x += dm_state->underscan_hborder / 2;
5308 			dst.y += dm_state->underscan_vborder / 2;
5309 			dst.width -= dm_state->underscan_hborder;
5310 			dst.height -= dm_state->underscan_vborder;
5311 		}
5312 	}
5313 
5314 	stream->src = src;
5315 	stream->dst = dst;
5316 
5317 	DRM_DEBUG_KMS("Destination Rectangle x:%d  y:%d  width:%d  height:%d\n",
5318 		      dst.x, dst.y, dst.width, dst.height);
5319 
5320 }
5321 
5322 static enum dc_color_depth
5323 convert_color_depth_from_display_info(const struct drm_connector *connector,
5324 				      bool is_y420, int requested_bpc)
5325 {
5326 	u8 bpc;
5327 
5328 	if (is_y420) {
5329 		bpc = 8;
5330 
5331 		/* Cap display bpc based on HDMI 2.0 HF-VSDB */
5332 		if (connector->display_info.hdmi.y420_dc_modes & DRM_EDID_YCBCR420_DC_48)
5333 			bpc = 16;
5334 		else if (connector->display_info.hdmi.y420_dc_modes & DRM_EDID_YCBCR420_DC_36)
5335 			bpc = 12;
5336 		else if (connector->display_info.hdmi.y420_dc_modes & DRM_EDID_YCBCR420_DC_30)
5337 			bpc = 10;
5338 	} else {
5339 		bpc = (uint8_t)connector->display_info.bpc;
5340 		/* Assume 8 bpc by default if no bpc is specified. */
5341 		bpc = bpc ? bpc : 8;
5342 	}
5343 
5344 	if (requested_bpc > 0) {
5345 		/*
5346 		 * Cap display bpc based on the user requested value.
5347 		 *
5348 		 * The value for state->max_bpc may not correctly updated
5349 		 * depending on when the connector gets added to the state
5350 		 * or if this was called outside of atomic check, so it
5351 		 * can't be used directly.
5352 		 */
5353 		bpc = min_t(u8, bpc, requested_bpc);
5354 
5355 		/* Round down to the nearest even number. */
5356 		bpc = bpc - (bpc & 1);
5357 	}
5358 
5359 	switch (bpc) {
5360 	case 0:
5361 		/*
5362 		 * Temporary Work around, DRM doesn't parse color depth for
5363 		 * EDID revision before 1.4
5364 		 * TODO: Fix edid parsing
5365 		 */
5366 		return COLOR_DEPTH_888;
5367 	case 6:
5368 		return COLOR_DEPTH_666;
5369 	case 8:
5370 		return COLOR_DEPTH_888;
5371 	case 10:
5372 		return COLOR_DEPTH_101010;
5373 	case 12:
5374 		return COLOR_DEPTH_121212;
5375 	case 14:
5376 		return COLOR_DEPTH_141414;
5377 	case 16:
5378 		return COLOR_DEPTH_161616;
5379 	default:
5380 		return COLOR_DEPTH_UNDEFINED;
5381 	}
5382 }
5383 
5384 static enum dc_aspect_ratio
5385 get_aspect_ratio(const struct drm_display_mode *mode_in)
5386 {
5387 	/* 1-1 mapping, since both enums follow the HDMI spec. */
5388 	return (enum dc_aspect_ratio) mode_in->picture_aspect_ratio;
5389 }
5390 
5391 static enum dc_color_space
5392 get_output_color_space(const struct dc_crtc_timing *dc_crtc_timing,
5393 		       const struct drm_connector_state *connector_state)
5394 {
5395 	enum dc_color_space color_space = COLOR_SPACE_SRGB;
5396 
5397 	switch (connector_state->colorspace) {
5398 	case DRM_MODE_COLORIMETRY_BT601_YCC:
5399 		if (dc_crtc_timing->flags.Y_ONLY)
5400 			color_space = COLOR_SPACE_YCBCR601_LIMITED;
5401 		else
5402 			color_space = COLOR_SPACE_YCBCR601;
5403 		break;
5404 	case DRM_MODE_COLORIMETRY_BT709_YCC:
5405 		if (dc_crtc_timing->flags.Y_ONLY)
5406 			color_space = COLOR_SPACE_YCBCR709_LIMITED;
5407 		else
5408 			color_space = COLOR_SPACE_YCBCR709;
5409 		break;
5410 	case DRM_MODE_COLORIMETRY_OPRGB:
5411 		color_space = COLOR_SPACE_ADOBERGB;
5412 		break;
5413 	case DRM_MODE_COLORIMETRY_BT2020_RGB:
5414 	case DRM_MODE_COLORIMETRY_BT2020_YCC:
5415 		if (dc_crtc_timing->pixel_encoding == PIXEL_ENCODING_RGB)
5416 			color_space = COLOR_SPACE_2020_RGB_FULLRANGE;
5417 		else
5418 			color_space = COLOR_SPACE_2020_YCBCR;
5419 		break;
5420 	case DRM_MODE_COLORIMETRY_DEFAULT: // ITU601
5421 	default:
5422 		if (dc_crtc_timing->pixel_encoding == PIXEL_ENCODING_RGB) {
5423 			color_space = COLOR_SPACE_SRGB;
5424 		/*
5425 		 * 27030khz is the separation point between HDTV and SDTV
5426 		 * according to HDMI spec, we use YCbCr709 and YCbCr601
5427 		 * respectively
5428 		 */
5429 		} else if (dc_crtc_timing->pix_clk_100hz > 270300) {
5430 			if (dc_crtc_timing->flags.Y_ONLY)
5431 				color_space =
5432 					COLOR_SPACE_YCBCR709_LIMITED;
5433 			else
5434 				color_space = COLOR_SPACE_YCBCR709;
5435 		} else {
5436 			if (dc_crtc_timing->flags.Y_ONLY)
5437 				color_space =
5438 					COLOR_SPACE_YCBCR601_LIMITED;
5439 			else
5440 				color_space = COLOR_SPACE_YCBCR601;
5441 		}
5442 		break;
5443 	}
5444 
5445 	return color_space;
5446 }
5447 
5448 static enum display_content_type
5449 get_output_content_type(const struct drm_connector_state *connector_state)
5450 {
5451 	switch (connector_state->content_type) {
5452 	default:
5453 	case DRM_MODE_CONTENT_TYPE_NO_DATA:
5454 		return DISPLAY_CONTENT_TYPE_NO_DATA;
5455 	case DRM_MODE_CONTENT_TYPE_GRAPHICS:
5456 		return DISPLAY_CONTENT_TYPE_GRAPHICS;
5457 	case DRM_MODE_CONTENT_TYPE_PHOTO:
5458 		return DISPLAY_CONTENT_TYPE_PHOTO;
5459 	case DRM_MODE_CONTENT_TYPE_CINEMA:
5460 		return DISPLAY_CONTENT_TYPE_CINEMA;
5461 	case DRM_MODE_CONTENT_TYPE_GAME:
5462 		return DISPLAY_CONTENT_TYPE_GAME;
5463 	}
5464 }
5465 
5466 static bool adjust_colour_depth_from_display_info(
5467 	struct dc_crtc_timing *timing_out,
5468 	const struct drm_display_info *info)
5469 {
5470 	enum dc_color_depth depth = timing_out->display_color_depth;
5471 	int normalized_clk;
5472 
5473 	do {
5474 		normalized_clk = timing_out->pix_clk_100hz / 10;
5475 		/* YCbCr 4:2:0 requires additional adjustment of 1/2 */
5476 		if (timing_out->pixel_encoding == PIXEL_ENCODING_YCBCR420)
5477 			normalized_clk /= 2;
5478 		/* Adjusting pix clock following on HDMI spec based on colour depth */
5479 		switch (depth) {
5480 		case COLOR_DEPTH_888:
5481 			break;
5482 		case COLOR_DEPTH_101010:
5483 			normalized_clk = (normalized_clk * 30) / 24;
5484 			break;
5485 		case COLOR_DEPTH_121212:
5486 			normalized_clk = (normalized_clk * 36) / 24;
5487 			break;
5488 		case COLOR_DEPTH_161616:
5489 			normalized_clk = (normalized_clk * 48) / 24;
5490 			break;
5491 		default:
5492 			/* The above depths are the only ones valid for HDMI. */
5493 			return false;
5494 		}
5495 		if (normalized_clk <= info->max_tmds_clock) {
5496 			timing_out->display_color_depth = depth;
5497 			return true;
5498 		}
5499 	} while (--depth > COLOR_DEPTH_666);
5500 	return false;
5501 }
5502 
5503 static void fill_stream_properties_from_drm_display_mode(
5504 	struct dc_stream_state *stream,
5505 	const struct drm_display_mode *mode_in,
5506 	const struct drm_connector *connector,
5507 	const struct drm_connector_state *connector_state,
5508 	const struct dc_stream_state *old_stream,
5509 	int requested_bpc)
5510 {
5511 	struct dc_crtc_timing *timing_out = &stream->timing;
5512 	const struct drm_display_info *info = &connector->display_info;
5513 	struct amdgpu_dm_connector *aconnector = to_amdgpu_dm_connector(connector);
5514 	struct hdmi_vendor_infoframe hv_frame;
5515 	struct hdmi_avi_infoframe avi_frame;
5516 
5517 	memset(&hv_frame, 0, sizeof(hv_frame));
5518 	memset(&avi_frame, 0, sizeof(avi_frame));
5519 
5520 	timing_out->h_border_left = 0;
5521 	timing_out->h_border_right = 0;
5522 	timing_out->v_border_top = 0;
5523 	timing_out->v_border_bottom = 0;
5524 	/* TODO: un-hardcode */
5525 	if (drm_mode_is_420_only(info, mode_in)
5526 			&& stream->signal == SIGNAL_TYPE_HDMI_TYPE_A)
5527 		timing_out->pixel_encoding = PIXEL_ENCODING_YCBCR420;
5528 	else if (drm_mode_is_420_also(info, mode_in)
5529 			&& aconnector->force_yuv420_output)
5530 		timing_out->pixel_encoding = PIXEL_ENCODING_YCBCR420;
5531 	else if ((connector->display_info.color_formats & DRM_COLOR_FORMAT_YCBCR444)
5532 			&& stream->signal == SIGNAL_TYPE_HDMI_TYPE_A)
5533 		timing_out->pixel_encoding = PIXEL_ENCODING_YCBCR444;
5534 	else
5535 		timing_out->pixel_encoding = PIXEL_ENCODING_RGB;
5536 
5537 	timing_out->timing_3d_format = TIMING_3D_FORMAT_NONE;
5538 	timing_out->display_color_depth = convert_color_depth_from_display_info(
5539 		connector,
5540 		(timing_out->pixel_encoding == PIXEL_ENCODING_YCBCR420),
5541 		requested_bpc);
5542 	timing_out->scan_type = SCANNING_TYPE_NODATA;
5543 	timing_out->hdmi_vic = 0;
5544 
5545 	if (old_stream) {
5546 		timing_out->vic = old_stream->timing.vic;
5547 		timing_out->flags.HSYNC_POSITIVE_POLARITY = old_stream->timing.flags.HSYNC_POSITIVE_POLARITY;
5548 		timing_out->flags.VSYNC_POSITIVE_POLARITY = old_stream->timing.flags.VSYNC_POSITIVE_POLARITY;
5549 	} else {
5550 		timing_out->vic = drm_match_cea_mode(mode_in);
5551 		if (mode_in->flags & DRM_MODE_FLAG_PHSYNC)
5552 			timing_out->flags.HSYNC_POSITIVE_POLARITY = 1;
5553 		if (mode_in->flags & DRM_MODE_FLAG_PVSYNC)
5554 			timing_out->flags.VSYNC_POSITIVE_POLARITY = 1;
5555 	}
5556 
5557 	if (stream->signal == SIGNAL_TYPE_HDMI_TYPE_A) {
5558 		drm_hdmi_avi_infoframe_from_display_mode(&avi_frame, (struct drm_connector *)connector, mode_in);
5559 		timing_out->vic = avi_frame.video_code;
5560 		drm_hdmi_vendor_infoframe_from_display_mode(&hv_frame, (struct drm_connector *)connector, mode_in);
5561 		timing_out->hdmi_vic = hv_frame.vic;
5562 	}
5563 
5564 	if (is_freesync_video_mode(mode_in, aconnector)) {
5565 		timing_out->h_addressable = mode_in->hdisplay;
5566 		timing_out->h_total = mode_in->htotal;
5567 		timing_out->h_sync_width = mode_in->hsync_end - mode_in->hsync_start;
5568 		timing_out->h_front_porch = mode_in->hsync_start - mode_in->hdisplay;
5569 		timing_out->v_total = mode_in->vtotal;
5570 		timing_out->v_addressable = mode_in->vdisplay;
5571 		timing_out->v_front_porch = mode_in->vsync_start - mode_in->vdisplay;
5572 		timing_out->v_sync_width = mode_in->vsync_end - mode_in->vsync_start;
5573 		timing_out->pix_clk_100hz = mode_in->clock * 10;
5574 	} else {
5575 		timing_out->h_addressable = mode_in->crtc_hdisplay;
5576 		timing_out->h_total = mode_in->crtc_htotal;
5577 		timing_out->h_sync_width = mode_in->crtc_hsync_end - mode_in->crtc_hsync_start;
5578 		timing_out->h_front_porch = mode_in->crtc_hsync_start - mode_in->crtc_hdisplay;
5579 		timing_out->v_total = mode_in->crtc_vtotal;
5580 		timing_out->v_addressable = mode_in->crtc_vdisplay;
5581 		timing_out->v_front_porch = mode_in->crtc_vsync_start - mode_in->crtc_vdisplay;
5582 		timing_out->v_sync_width = mode_in->crtc_vsync_end - mode_in->crtc_vsync_start;
5583 		timing_out->pix_clk_100hz = mode_in->crtc_clock * 10;
5584 	}
5585 
5586 	timing_out->aspect_ratio = get_aspect_ratio(mode_in);
5587 
5588 	stream->out_transfer_func->type = TF_TYPE_PREDEFINED;
5589 	stream->out_transfer_func->tf = TRANSFER_FUNCTION_SRGB;
5590 	if (stream->signal == SIGNAL_TYPE_HDMI_TYPE_A) {
5591 		if (!adjust_colour_depth_from_display_info(timing_out, info) &&
5592 		    drm_mode_is_420_also(info, mode_in) &&
5593 		    timing_out->pixel_encoding != PIXEL_ENCODING_YCBCR420) {
5594 			timing_out->pixel_encoding = PIXEL_ENCODING_YCBCR420;
5595 			adjust_colour_depth_from_display_info(timing_out, info);
5596 		}
5597 	}
5598 
5599 	stream->output_color_space = get_output_color_space(timing_out, connector_state);
5600 	stream->content_type = get_output_content_type(connector_state);
5601 }
5602 
5603 static void fill_audio_info(struct audio_info *audio_info,
5604 			    const struct drm_connector *drm_connector,
5605 			    const struct dc_sink *dc_sink)
5606 {
5607 	int i = 0;
5608 	int cea_revision = 0;
5609 	const struct dc_edid_caps *edid_caps = &dc_sink->edid_caps;
5610 
5611 	audio_info->manufacture_id = edid_caps->manufacturer_id;
5612 	audio_info->product_id = edid_caps->product_id;
5613 
5614 	cea_revision = drm_connector->display_info.cea_rev;
5615 
5616 	strscpy(audio_info->display_name,
5617 		edid_caps->display_name,
5618 		AUDIO_INFO_DISPLAY_NAME_SIZE_IN_CHARS);
5619 
5620 	if (cea_revision >= 3) {
5621 		audio_info->mode_count = edid_caps->audio_mode_count;
5622 
5623 		for (i = 0; i < audio_info->mode_count; ++i) {
5624 			audio_info->modes[i].format_code =
5625 					(enum audio_format_code)
5626 					(edid_caps->audio_modes[i].format_code);
5627 			audio_info->modes[i].channel_count =
5628 					edid_caps->audio_modes[i].channel_count;
5629 			audio_info->modes[i].sample_rates.all =
5630 					edid_caps->audio_modes[i].sample_rate;
5631 			audio_info->modes[i].sample_size =
5632 					edid_caps->audio_modes[i].sample_size;
5633 		}
5634 	}
5635 
5636 	audio_info->flags.all = edid_caps->speaker_flags;
5637 
5638 	/* TODO: We only check for the progressive mode, check for interlace mode too */
5639 	if (drm_connector->latency_present[0]) {
5640 		audio_info->video_latency = drm_connector->video_latency[0];
5641 		audio_info->audio_latency = drm_connector->audio_latency[0];
5642 	}
5643 
5644 	/* TODO: For DP, video and audio latency should be calculated from DPCD caps */
5645 
5646 }
5647 
5648 static void
5649 copy_crtc_timing_for_drm_display_mode(const struct drm_display_mode *src_mode,
5650 				      struct drm_display_mode *dst_mode)
5651 {
5652 	dst_mode->crtc_hdisplay = src_mode->crtc_hdisplay;
5653 	dst_mode->crtc_vdisplay = src_mode->crtc_vdisplay;
5654 	dst_mode->crtc_clock = src_mode->crtc_clock;
5655 	dst_mode->crtc_hblank_start = src_mode->crtc_hblank_start;
5656 	dst_mode->crtc_hblank_end = src_mode->crtc_hblank_end;
5657 	dst_mode->crtc_hsync_start =  src_mode->crtc_hsync_start;
5658 	dst_mode->crtc_hsync_end = src_mode->crtc_hsync_end;
5659 	dst_mode->crtc_htotal = src_mode->crtc_htotal;
5660 	dst_mode->crtc_hskew = src_mode->crtc_hskew;
5661 	dst_mode->crtc_vblank_start = src_mode->crtc_vblank_start;
5662 	dst_mode->crtc_vblank_end = src_mode->crtc_vblank_end;
5663 	dst_mode->crtc_vsync_start = src_mode->crtc_vsync_start;
5664 	dst_mode->crtc_vsync_end = src_mode->crtc_vsync_end;
5665 	dst_mode->crtc_vtotal = src_mode->crtc_vtotal;
5666 }
5667 
5668 static void
5669 decide_crtc_timing_for_drm_display_mode(struct drm_display_mode *drm_mode,
5670 					const struct drm_display_mode *native_mode,
5671 					bool scale_enabled)
5672 {
5673 	if (scale_enabled) {
5674 		copy_crtc_timing_for_drm_display_mode(native_mode, drm_mode);
5675 	} else if (native_mode->clock == drm_mode->clock &&
5676 			native_mode->htotal == drm_mode->htotal &&
5677 			native_mode->vtotal == drm_mode->vtotal) {
5678 		copy_crtc_timing_for_drm_display_mode(native_mode, drm_mode);
5679 	} else {
5680 		/* no scaling nor amdgpu inserted, no need to patch */
5681 	}
5682 }
5683 
5684 static struct dc_sink *
5685 create_fake_sink(struct amdgpu_dm_connector *aconnector)
5686 {
5687 	struct dc_sink_init_data sink_init_data = { 0 };
5688 	struct dc_sink *sink = NULL;
5689 
5690 	sink_init_data.link = aconnector->dc_link;
5691 	sink_init_data.sink_signal = aconnector->dc_link->connector_signal;
5692 
5693 	sink = dc_sink_create(&sink_init_data);
5694 	if (!sink) {
5695 		DRM_ERROR("Failed to create sink!\n");
5696 		return NULL;
5697 	}
5698 	sink->sink_signal = SIGNAL_TYPE_VIRTUAL;
5699 
5700 	return sink;
5701 }
5702 
5703 static void set_multisync_trigger_params(
5704 		struct dc_stream_state *stream)
5705 {
5706 	struct dc_stream_state *master = NULL;
5707 
5708 	if (stream->triggered_crtc_reset.enabled) {
5709 		master = stream->triggered_crtc_reset.event_source;
5710 		stream->triggered_crtc_reset.event =
5711 			master->timing.flags.VSYNC_POSITIVE_POLARITY ?
5712 			CRTC_EVENT_VSYNC_RISING : CRTC_EVENT_VSYNC_FALLING;
5713 		stream->triggered_crtc_reset.delay = TRIGGER_DELAY_NEXT_PIXEL;
5714 	}
5715 }
5716 
5717 static void set_master_stream(struct dc_stream_state *stream_set[],
5718 			      int stream_count)
5719 {
5720 	int j, highest_rfr = 0, master_stream = 0;
5721 
5722 	for (j = 0;  j < stream_count; j++) {
5723 		if (stream_set[j] && stream_set[j]->triggered_crtc_reset.enabled) {
5724 			int refresh_rate = 0;
5725 
5726 			refresh_rate = (stream_set[j]->timing.pix_clk_100hz*100)/
5727 				(stream_set[j]->timing.h_total*stream_set[j]->timing.v_total);
5728 			if (refresh_rate > highest_rfr) {
5729 				highest_rfr = refresh_rate;
5730 				master_stream = j;
5731 			}
5732 		}
5733 	}
5734 	for (j = 0;  j < stream_count; j++) {
5735 		if (stream_set[j])
5736 			stream_set[j]->triggered_crtc_reset.event_source = stream_set[master_stream];
5737 	}
5738 }
5739 
5740 static void dm_enable_per_frame_crtc_master_sync(struct dc_state *context)
5741 {
5742 	int i = 0;
5743 	struct dc_stream_state *stream;
5744 
5745 	if (context->stream_count < 2)
5746 		return;
5747 	for (i = 0; i < context->stream_count ; i++) {
5748 		if (!context->streams[i])
5749 			continue;
5750 		/*
5751 		 * TODO: add a function to read AMD VSDB bits and set
5752 		 * crtc_sync_master.multi_sync_enabled flag
5753 		 * For now it's set to false
5754 		 */
5755 	}
5756 
5757 	set_master_stream(context->streams, context->stream_count);
5758 
5759 	for (i = 0; i < context->stream_count ; i++) {
5760 		stream = context->streams[i];
5761 
5762 		if (!stream)
5763 			continue;
5764 
5765 		set_multisync_trigger_params(stream);
5766 	}
5767 }
5768 
5769 /**
5770  * DOC: FreeSync Video
5771  *
5772  * When a userspace application wants to play a video, the content follows a
5773  * standard format definition that usually specifies the FPS for that format.
5774  * The below list illustrates some video format and the expected FPS,
5775  * respectively:
5776  *
5777  * - TV/NTSC (23.976 FPS)
5778  * - Cinema (24 FPS)
5779  * - TV/PAL (25 FPS)
5780  * - TV/NTSC (29.97 FPS)
5781  * - TV/NTSC (30 FPS)
5782  * - Cinema HFR (48 FPS)
5783  * - TV/PAL (50 FPS)
5784  * - Commonly used (60 FPS)
5785  * - Multiples of 24 (48,72,96 FPS)
5786  *
5787  * The list of standards video format is not huge and can be added to the
5788  * connector modeset list beforehand. With that, userspace can leverage
5789  * FreeSync to extends the front porch in order to attain the target refresh
5790  * rate. Such a switch will happen seamlessly, without screen blanking or
5791  * reprogramming of the output in any other way. If the userspace requests a
5792  * modesetting change compatible with FreeSync modes that only differ in the
5793  * refresh rate, DC will skip the full update and avoid blink during the
5794  * transition. For example, the video player can change the modesetting from
5795  * 60Hz to 30Hz for playing TV/NTSC content when it goes full screen without
5796  * causing any display blink. This same concept can be applied to a mode
5797  * setting change.
5798  */
5799 static struct drm_display_mode *
5800 get_highest_refresh_rate_mode(struct amdgpu_dm_connector *aconnector,
5801 		bool use_probed_modes)
5802 {
5803 	struct drm_display_mode *m, *m_pref = NULL;
5804 	u16 current_refresh, highest_refresh;
5805 	struct list_head *list_head = use_probed_modes ?
5806 		&aconnector->base.probed_modes :
5807 		&aconnector->base.modes;
5808 
5809 	if (aconnector->freesync_vid_base.clock != 0)
5810 		return &aconnector->freesync_vid_base;
5811 
5812 	/* Find the preferred mode */
5813 	list_for_each_entry(m, list_head, head) {
5814 		if (m->type & DRM_MODE_TYPE_PREFERRED) {
5815 			m_pref = m;
5816 			break;
5817 		}
5818 	}
5819 
5820 	if (!m_pref) {
5821 		/* Probably an EDID with no preferred mode. Fallback to first entry */
5822 		m_pref = list_first_entry_or_null(
5823 				&aconnector->base.modes, struct drm_display_mode, head);
5824 		if (!m_pref) {
5825 			DRM_DEBUG_DRIVER("No preferred mode found in EDID\n");
5826 			return NULL;
5827 		}
5828 	}
5829 
5830 	highest_refresh = drm_mode_vrefresh(m_pref);
5831 
5832 	/*
5833 	 * Find the mode with highest refresh rate with same resolution.
5834 	 * For some monitors, preferred mode is not the mode with highest
5835 	 * supported refresh rate.
5836 	 */
5837 	list_for_each_entry(m, list_head, head) {
5838 		current_refresh  = drm_mode_vrefresh(m);
5839 
5840 		if (m->hdisplay == m_pref->hdisplay &&
5841 		    m->vdisplay == m_pref->vdisplay &&
5842 		    highest_refresh < current_refresh) {
5843 			highest_refresh = current_refresh;
5844 			m_pref = m;
5845 		}
5846 	}
5847 
5848 	drm_mode_copy(&aconnector->freesync_vid_base, m_pref);
5849 	return m_pref;
5850 }
5851 
5852 static bool is_freesync_video_mode(const struct drm_display_mode *mode,
5853 		struct amdgpu_dm_connector *aconnector)
5854 {
5855 	struct drm_display_mode *high_mode;
5856 	int timing_diff;
5857 
5858 	high_mode = get_highest_refresh_rate_mode(aconnector, false);
5859 	if (!high_mode || !mode)
5860 		return false;
5861 
5862 	timing_diff = high_mode->vtotal - mode->vtotal;
5863 
5864 	if (high_mode->clock == 0 || high_mode->clock != mode->clock ||
5865 	    high_mode->hdisplay != mode->hdisplay ||
5866 	    high_mode->vdisplay != mode->vdisplay ||
5867 	    high_mode->hsync_start != mode->hsync_start ||
5868 	    high_mode->hsync_end != mode->hsync_end ||
5869 	    high_mode->htotal != mode->htotal ||
5870 	    high_mode->hskew != mode->hskew ||
5871 	    high_mode->vscan != mode->vscan ||
5872 	    high_mode->vsync_start - mode->vsync_start != timing_diff ||
5873 	    high_mode->vsync_end - mode->vsync_end != timing_diff)
5874 		return false;
5875 	else
5876 		return true;
5877 }
5878 
5879 static void update_dsc_caps(struct amdgpu_dm_connector *aconnector,
5880 			    struct dc_sink *sink, struct dc_stream_state *stream,
5881 			    struct dsc_dec_dpcd_caps *dsc_caps)
5882 {
5883 	stream->timing.flags.DSC = 0;
5884 	dsc_caps->is_dsc_supported = false;
5885 
5886 	if (aconnector->dc_link && (sink->sink_signal == SIGNAL_TYPE_DISPLAY_PORT ||
5887 	    sink->sink_signal == SIGNAL_TYPE_EDP)) {
5888 		if (sink->link->dpcd_caps.dongle_type == DISPLAY_DONGLE_NONE ||
5889 			sink->link->dpcd_caps.dongle_type == DISPLAY_DONGLE_DP_HDMI_CONVERTER)
5890 			dc_dsc_parse_dsc_dpcd(aconnector->dc_link->ctx->dc,
5891 				aconnector->dc_link->dpcd_caps.dsc_caps.dsc_basic_caps.raw,
5892 				aconnector->dc_link->dpcd_caps.dsc_caps.dsc_branch_decoder_caps.raw,
5893 				dsc_caps);
5894 	}
5895 }
5896 
5897 
5898 static void apply_dsc_policy_for_edp(struct amdgpu_dm_connector *aconnector,
5899 				    struct dc_sink *sink, struct dc_stream_state *stream,
5900 				    struct dsc_dec_dpcd_caps *dsc_caps,
5901 				    uint32_t max_dsc_target_bpp_limit_override)
5902 {
5903 	const struct dc_link_settings *verified_link_cap = NULL;
5904 	u32 link_bw_in_kbps;
5905 	u32 edp_min_bpp_x16, edp_max_bpp_x16;
5906 	struct dc *dc = sink->ctx->dc;
5907 	struct dc_dsc_bw_range bw_range = {0};
5908 	struct dc_dsc_config dsc_cfg = {0};
5909 	struct dc_dsc_config_options dsc_options = {0};
5910 
5911 	dc_dsc_get_default_config_option(dc, &dsc_options);
5912 	dsc_options.max_target_bpp_limit_override_x16 = max_dsc_target_bpp_limit_override * 16;
5913 
5914 	verified_link_cap = dc_link_get_link_cap(stream->link);
5915 	link_bw_in_kbps = dc_link_bandwidth_kbps(stream->link, verified_link_cap);
5916 	edp_min_bpp_x16 = 8 * 16;
5917 	edp_max_bpp_x16 = 8 * 16;
5918 
5919 	if (edp_max_bpp_x16 > dsc_caps->edp_max_bits_per_pixel)
5920 		edp_max_bpp_x16 = dsc_caps->edp_max_bits_per_pixel;
5921 
5922 	if (edp_max_bpp_x16 < edp_min_bpp_x16)
5923 		edp_min_bpp_x16 = edp_max_bpp_x16;
5924 
5925 	if (dc_dsc_compute_bandwidth_range(dc->res_pool->dscs[0],
5926 				dc->debug.dsc_min_slice_height_override,
5927 				edp_min_bpp_x16, edp_max_bpp_x16,
5928 				dsc_caps,
5929 				&stream->timing,
5930 				dc_link_get_highest_encoding_format(aconnector->dc_link),
5931 				&bw_range)) {
5932 
5933 		if (bw_range.max_kbps < link_bw_in_kbps) {
5934 			if (dc_dsc_compute_config(dc->res_pool->dscs[0],
5935 					dsc_caps,
5936 					&dsc_options,
5937 					0,
5938 					&stream->timing,
5939 					dc_link_get_highest_encoding_format(aconnector->dc_link),
5940 					&dsc_cfg)) {
5941 				stream->timing.dsc_cfg = dsc_cfg;
5942 				stream->timing.flags.DSC = 1;
5943 				stream->timing.dsc_cfg.bits_per_pixel = edp_max_bpp_x16;
5944 			}
5945 			return;
5946 		}
5947 	}
5948 
5949 	if (dc_dsc_compute_config(dc->res_pool->dscs[0],
5950 				dsc_caps,
5951 				&dsc_options,
5952 				link_bw_in_kbps,
5953 				&stream->timing,
5954 				dc_link_get_highest_encoding_format(aconnector->dc_link),
5955 				&dsc_cfg)) {
5956 		stream->timing.dsc_cfg = dsc_cfg;
5957 		stream->timing.flags.DSC = 1;
5958 	}
5959 }
5960 
5961 
5962 static void apply_dsc_policy_for_stream(struct amdgpu_dm_connector *aconnector,
5963 					struct dc_sink *sink, struct dc_stream_state *stream,
5964 					struct dsc_dec_dpcd_caps *dsc_caps)
5965 {
5966 	struct drm_connector *drm_connector = &aconnector->base;
5967 	u32 link_bandwidth_kbps;
5968 	struct dc *dc = sink->ctx->dc;
5969 	u32 max_supported_bw_in_kbps, timing_bw_in_kbps;
5970 	u32 dsc_max_supported_bw_in_kbps;
5971 	u32 max_dsc_target_bpp_limit_override =
5972 		drm_connector->display_info.max_dsc_bpp;
5973 	struct dc_dsc_config_options dsc_options = {0};
5974 
5975 	dc_dsc_get_default_config_option(dc, &dsc_options);
5976 	dsc_options.max_target_bpp_limit_override_x16 = max_dsc_target_bpp_limit_override * 16;
5977 
5978 	link_bandwidth_kbps = dc_link_bandwidth_kbps(aconnector->dc_link,
5979 							dc_link_get_link_cap(aconnector->dc_link));
5980 
5981 	/* Set DSC policy according to dsc_clock_en */
5982 	dc_dsc_policy_set_enable_dsc_when_not_needed(
5983 		aconnector->dsc_settings.dsc_force_enable == DSC_CLK_FORCE_ENABLE);
5984 
5985 	if (aconnector->dc_link && sink->sink_signal == SIGNAL_TYPE_EDP &&
5986 	    !aconnector->dc_link->panel_config.dsc.disable_dsc_edp &&
5987 	    dc->caps.edp_dsc_support && aconnector->dsc_settings.dsc_force_enable != DSC_CLK_FORCE_DISABLE) {
5988 
5989 		apply_dsc_policy_for_edp(aconnector, sink, stream, dsc_caps, max_dsc_target_bpp_limit_override);
5990 
5991 	} else if (aconnector->dc_link && sink->sink_signal == SIGNAL_TYPE_DISPLAY_PORT) {
5992 		if (sink->link->dpcd_caps.dongle_type == DISPLAY_DONGLE_NONE) {
5993 			if (dc_dsc_compute_config(aconnector->dc_link->ctx->dc->res_pool->dscs[0],
5994 						dsc_caps,
5995 						&dsc_options,
5996 						link_bandwidth_kbps,
5997 						&stream->timing,
5998 						dc_link_get_highest_encoding_format(aconnector->dc_link),
5999 						&stream->timing.dsc_cfg)) {
6000 				stream->timing.flags.DSC = 1;
6001 				DRM_DEBUG_DRIVER("%s: [%s] DSC is selected from SST RX\n", __func__, drm_connector->name);
6002 			}
6003 		} else if (sink->link->dpcd_caps.dongle_type == DISPLAY_DONGLE_DP_HDMI_CONVERTER) {
6004 			timing_bw_in_kbps = dc_bandwidth_in_kbps_from_timing(&stream->timing,
6005 					dc_link_get_highest_encoding_format(aconnector->dc_link));
6006 			max_supported_bw_in_kbps = link_bandwidth_kbps;
6007 			dsc_max_supported_bw_in_kbps = link_bandwidth_kbps;
6008 
6009 			if (timing_bw_in_kbps > max_supported_bw_in_kbps &&
6010 					max_supported_bw_in_kbps > 0 &&
6011 					dsc_max_supported_bw_in_kbps > 0)
6012 				if (dc_dsc_compute_config(aconnector->dc_link->ctx->dc->res_pool->dscs[0],
6013 						dsc_caps,
6014 						&dsc_options,
6015 						dsc_max_supported_bw_in_kbps,
6016 						&stream->timing,
6017 						dc_link_get_highest_encoding_format(aconnector->dc_link),
6018 						&stream->timing.dsc_cfg)) {
6019 					stream->timing.flags.DSC = 1;
6020 					DRM_DEBUG_DRIVER("%s: [%s] DSC is selected from DP-HDMI PCON\n",
6021 									 __func__, drm_connector->name);
6022 				}
6023 		}
6024 	}
6025 
6026 	/* Overwrite the stream flag if DSC is enabled through debugfs */
6027 	if (aconnector->dsc_settings.dsc_force_enable == DSC_CLK_FORCE_ENABLE)
6028 		stream->timing.flags.DSC = 1;
6029 
6030 	if (stream->timing.flags.DSC && aconnector->dsc_settings.dsc_num_slices_h)
6031 		stream->timing.dsc_cfg.num_slices_h = aconnector->dsc_settings.dsc_num_slices_h;
6032 
6033 	if (stream->timing.flags.DSC && aconnector->dsc_settings.dsc_num_slices_v)
6034 		stream->timing.dsc_cfg.num_slices_v = aconnector->dsc_settings.dsc_num_slices_v;
6035 
6036 	if (stream->timing.flags.DSC && aconnector->dsc_settings.dsc_bits_per_pixel)
6037 		stream->timing.dsc_cfg.bits_per_pixel = aconnector->dsc_settings.dsc_bits_per_pixel;
6038 }
6039 
6040 static struct dc_stream_state *
6041 create_stream_for_sink(struct amdgpu_dm_connector *aconnector,
6042 		       const struct drm_display_mode *drm_mode,
6043 		       const struct dm_connector_state *dm_state,
6044 		       const struct dc_stream_state *old_stream,
6045 		       int requested_bpc)
6046 {
6047 	struct drm_display_mode *preferred_mode = NULL;
6048 	struct drm_connector *drm_connector;
6049 	const struct drm_connector_state *con_state = &dm_state->base;
6050 	struct dc_stream_state *stream = NULL;
6051 	struct drm_display_mode mode;
6052 	struct drm_display_mode saved_mode;
6053 	struct drm_display_mode *freesync_mode = NULL;
6054 	bool native_mode_found = false;
6055 	bool recalculate_timing = false;
6056 	bool scale = dm_state->scaling != RMX_OFF;
6057 	int mode_refresh;
6058 	int preferred_refresh = 0;
6059 	enum color_transfer_func tf = TRANSFER_FUNC_UNKNOWN;
6060 	struct dsc_dec_dpcd_caps dsc_caps;
6061 
6062 	struct dc_sink *sink = NULL;
6063 
6064 	drm_mode_init(&mode, drm_mode);
6065 	memset(&saved_mode, 0, sizeof(saved_mode));
6066 
6067 	if (aconnector == NULL) {
6068 		DRM_ERROR("aconnector is NULL!\n");
6069 		return stream;
6070 	}
6071 
6072 	drm_connector = &aconnector->base;
6073 
6074 	if (!aconnector->dc_sink) {
6075 		sink = create_fake_sink(aconnector);
6076 		if (!sink)
6077 			return stream;
6078 	} else {
6079 		sink = aconnector->dc_sink;
6080 		dc_sink_retain(sink);
6081 	}
6082 
6083 	stream = dc_create_stream_for_sink(sink);
6084 
6085 	if (stream == NULL) {
6086 		DRM_ERROR("Failed to create stream for sink!\n");
6087 		goto finish;
6088 	}
6089 
6090 	stream->dm_stream_context = aconnector;
6091 
6092 	stream->timing.flags.LTE_340MCSC_SCRAMBLE =
6093 		drm_connector->display_info.hdmi.scdc.scrambling.low_rates;
6094 
6095 	list_for_each_entry(preferred_mode, &aconnector->base.modes, head) {
6096 		/* Search for preferred mode */
6097 		if (preferred_mode->type & DRM_MODE_TYPE_PREFERRED) {
6098 			native_mode_found = true;
6099 			break;
6100 		}
6101 	}
6102 	if (!native_mode_found)
6103 		preferred_mode = list_first_entry_or_null(
6104 				&aconnector->base.modes,
6105 				struct drm_display_mode,
6106 				head);
6107 
6108 	mode_refresh = drm_mode_vrefresh(&mode);
6109 
6110 	if (preferred_mode == NULL) {
6111 		/*
6112 		 * This may not be an error, the use case is when we have no
6113 		 * usermode calls to reset and set mode upon hotplug. In this
6114 		 * case, we call set mode ourselves to restore the previous mode
6115 		 * and the modelist may not be filled in time.
6116 		 */
6117 		DRM_DEBUG_DRIVER("No preferred mode found\n");
6118 	} else {
6119 		recalculate_timing = is_freesync_video_mode(&mode, aconnector);
6120 		if (recalculate_timing) {
6121 			freesync_mode = get_highest_refresh_rate_mode(aconnector, false);
6122 			drm_mode_copy(&saved_mode, &mode);
6123 			drm_mode_copy(&mode, freesync_mode);
6124 		} else {
6125 			decide_crtc_timing_for_drm_display_mode(
6126 					&mode, preferred_mode, scale);
6127 
6128 			preferred_refresh = drm_mode_vrefresh(preferred_mode);
6129 		}
6130 	}
6131 
6132 	if (recalculate_timing)
6133 		drm_mode_set_crtcinfo(&saved_mode, 0);
6134 
6135 	/*
6136 	 * If scaling is enabled and refresh rate didn't change
6137 	 * we copy the vic and polarities of the old timings
6138 	 */
6139 	if (!scale || mode_refresh != preferred_refresh)
6140 		fill_stream_properties_from_drm_display_mode(
6141 			stream, &mode, &aconnector->base, con_state, NULL,
6142 			requested_bpc);
6143 	else
6144 		fill_stream_properties_from_drm_display_mode(
6145 			stream, &mode, &aconnector->base, con_state, old_stream,
6146 			requested_bpc);
6147 
6148 	if (aconnector->timing_changed) {
6149 		drm_dbg(aconnector->base.dev,
6150 			"overriding timing for automated test, bpc %d, changing to %d\n",
6151 			stream->timing.display_color_depth,
6152 			aconnector->timing_requested->display_color_depth);
6153 		stream->timing = *aconnector->timing_requested;
6154 	}
6155 
6156 	/* SST DSC determination policy */
6157 	update_dsc_caps(aconnector, sink, stream, &dsc_caps);
6158 	if (aconnector->dsc_settings.dsc_force_enable != DSC_CLK_FORCE_DISABLE && dsc_caps.is_dsc_supported)
6159 		apply_dsc_policy_for_stream(aconnector, sink, stream, &dsc_caps);
6160 
6161 	update_stream_scaling_settings(&mode, dm_state, stream);
6162 
6163 	fill_audio_info(
6164 		&stream->audio_info,
6165 		drm_connector,
6166 		sink);
6167 
6168 	update_stream_signal(stream, sink);
6169 
6170 	if (stream->signal == SIGNAL_TYPE_HDMI_TYPE_A)
6171 		mod_build_hf_vsif_infopacket(stream, &stream->vsp_infopacket);
6172 
6173 	if (stream->link->psr_settings.psr_feature_enabled || stream->link->replay_settings.replay_feature_enabled) {
6174 		//
6175 		// should decide stream support vsc sdp colorimetry capability
6176 		// before building vsc info packet
6177 		//
6178 		stream->use_vsc_sdp_for_colorimetry = false;
6179 		if (aconnector->dc_sink->sink_signal == SIGNAL_TYPE_DISPLAY_PORT_MST) {
6180 			stream->use_vsc_sdp_for_colorimetry =
6181 				aconnector->dc_sink->is_vsc_sdp_colorimetry_supported;
6182 		} else {
6183 			if (stream->link->dpcd_caps.dprx_feature.bits.VSC_SDP_COLORIMETRY_SUPPORTED)
6184 				stream->use_vsc_sdp_for_colorimetry = true;
6185 		}
6186 		if (stream->out_transfer_func->tf == TRANSFER_FUNCTION_GAMMA22)
6187 			tf = TRANSFER_FUNC_GAMMA_22;
6188 		mod_build_vsc_infopacket(stream, &stream->vsc_infopacket, stream->output_color_space, tf);
6189 		aconnector->psr_skip_count = AMDGPU_DM_PSR_ENTRY_DELAY;
6190 
6191 	}
6192 finish:
6193 	dc_sink_release(sink);
6194 
6195 	return stream;
6196 }
6197 
6198 static enum drm_connector_status
6199 amdgpu_dm_connector_detect(struct drm_connector *connector, bool force)
6200 {
6201 	bool connected;
6202 	struct amdgpu_dm_connector *aconnector = to_amdgpu_dm_connector(connector);
6203 
6204 	/*
6205 	 * Notes:
6206 	 * 1. This interface is NOT called in context of HPD irq.
6207 	 * 2. This interface *is called* in context of user-mode ioctl. Which
6208 	 * makes it a bad place for *any* MST-related activity.
6209 	 */
6210 
6211 	if (aconnector->base.force == DRM_FORCE_UNSPECIFIED &&
6212 	    !aconnector->fake_enable)
6213 		connected = (aconnector->dc_sink != NULL);
6214 	else
6215 		connected = (aconnector->base.force == DRM_FORCE_ON ||
6216 				aconnector->base.force == DRM_FORCE_ON_DIGITAL);
6217 
6218 	update_subconnector_property(aconnector);
6219 
6220 	return (connected ? connector_status_connected :
6221 			connector_status_disconnected);
6222 }
6223 
6224 int amdgpu_dm_connector_atomic_set_property(struct drm_connector *connector,
6225 					    struct drm_connector_state *connector_state,
6226 					    struct drm_property *property,
6227 					    uint64_t val)
6228 {
6229 	struct drm_device *dev = connector->dev;
6230 	struct amdgpu_device *adev = drm_to_adev(dev);
6231 	struct dm_connector_state *dm_old_state =
6232 		to_dm_connector_state(connector->state);
6233 	struct dm_connector_state *dm_new_state =
6234 		to_dm_connector_state(connector_state);
6235 
6236 	int ret = -EINVAL;
6237 
6238 	if (property == dev->mode_config.scaling_mode_property) {
6239 		enum amdgpu_rmx_type rmx_type;
6240 
6241 		switch (val) {
6242 		case DRM_MODE_SCALE_CENTER:
6243 			rmx_type = RMX_CENTER;
6244 			break;
6245 		case DRM_MODE_SCALE_ASPECT:
6246 			rmx_type = RMX_ASPECT;
6247 			break;
6248 		case DRM_MODE_SCALE_FULLSCREEN:
6249 			rmx_type = RMX_FULL;
6250 			break;
6251 		case DRM_MODE_SCALE_NONE:
6252 		default:
6253 			rmx_type = RMX_OFF;
6254 			break;
6255 		}
6256 
6257 		if (dm_old_state->scaling == rmx_type)
6258 			return 0;
6259 
6260 		dm_new_state->scaling = rmx_type;
6261 		ret = 0;
6262 	} else if (property == adev->mode_info.underscan_hborder_property) {
6263 		dm_new_state->underscan_hborder = val;
6264 		ret = 0;
6265 	} else if (property == adev->mode_info.underscan_vborder_property) {
6266 		dm_new_state->underscan_vborder = val;
6267 		ret = 0;
6268 	} else if (property == adev->mode_info.underscan_property) {
6269 		dm_new_state->underscan_enable = val;
6270 		ret = 0;
6271 	} else if (property == adev->mode_info.abm_level_property) {
6272 		dm_new_state->abm_level = val;
6273 		ret = 0;
6274 	}
6275 
6276 	return ret;
6277 }
6278 
6279 int amdgpu_dm_connector_atomic_get_property(struct drm_connector *connector,
6280 					    const struct drm_connector_state *state,
6281 					    struct drm_property *property,
6282 					    uint64_t *val)
6283 {
6284 	struct drm_device *dev = connector->dev;
6285 	struct amdgpu_device *adev = drm_to_adev(dev);
6286 	struct dm_connector_state *dm_state =
6287 		to_dm_connector_state(state);
6288 	int ret = -EINVAL;
6289 
6290 	if (property == dev->mode_config.scaling_mode_property) {
6291 		switch (dm_state->scaling) {
6292 		case RMX_CENTER:
6293 			*val = DRM_MODE_SCALE_CENTER;
6294 			break;
6295 		case RMX_ASPECT:
6296 			*val = DRM_MODE_SCALE_ASPECT;
6297 			break;
6298 		case RMX_FULL:
6299 			*val = DRM_MODE_SCALE_FULLSCREEN;
6300 			break;
6301 		case RMX_OFF:
6302 		default:
6303 			*val = DRM_MODE_SCALE_NONE;
6304 			break;
6305 		}
6306 		ret = 0;
6307 	} else if (property == adev->mode_info.underscan_hborder_property) {
6308 		*val = dm_state->underscan_hborder;
6309 		ret = 0;
6310 	} else if (property == adev->mode_info.underscan_vborder_property) {
6311 		*val = dm_state->underscan_vborder;
6312 		ret = 0;
6313 	} else if (property == adev->mode_info.underscan_property) {
6314 		*val = dm_state->underscan_enable;
6315 		ret = 0;
6316 	} else if (property == adev->mode_info.abm_level_property) {
6317 		*val = dm_state->abm_level;
6318 		ret = 0;
6319 	}
6320 
6321 	return ret;
6322 }
6323 
6324 static void amdgpu_dm_connector_unregister(struct drm_connector *connector)
6325 {
6326 	struct amdgpu_dm_connector *amdgpu_dm_connector = to_amdgpu_dm_connector(connector);
6327 
6328 	drm_dp_aux_unregister(&amdgpu_dm_connector->dm_dp_aux.aux);
6329 }
6330 
6331 static void amdgpu_dm_connector_destroy(struct drm_connector *connector)
6332 {
6333 	struct amdgpu_dm_connector *aconnector = to_amdgpu_dm_connector(connector);
6334 	struct amdgpu_device *adev = drm_to_adev(connector->dev);
6335 	struct amdgpu_display_manager *dm = &adev->dm;
6336 
6337 	/*
6338 	 * Call only if mst_mgr was initialized before since it's not done
6339 	 * for all connector types.
6340 	 */
6341 	if (aconnector->mst_mgr.dev)
6342 		drm_dp_mst_topology_mgr_destroy(&aconnector->mst_mgr);
6343 
6344 	if (aconnector->bl_idx != -1) {
6345 		backlight_device_unregister(dm->backlight_dev[aconnector->bl_idx]);
6346 		dm->backlight_dev[aconnector->bl_idx] = NULL;
6347 	}
6348 
6349 	if (aconnector->dc_em_sink)
6350 		dc_sink_release(aconnector->dc_em_sink);
6351 	aconnector->dc_em_sink = NULL;
6352 	if (aconnector->dc_sink)
6353 		dc_sink_release(aconnector->dc_sink);
6354 	aconnector->dc_sink = NULL;
6355 
6356 	drm_dp_cec_unregister_connector(&aconnector->dm_dp_aux.aux);
6357 	drm_connector_unregister(connector);
6358 	drm_connector_cleanup(connector);
6359 	if (aconnector->i2c) {
6360 		i2c_del_adapter(&aconnector->i2c->base);
6361 		kfree(aconnector->i2c);
6362 	}
6363 	kfree(aconnector->dm_dp_aux.aux.name);
6364 
6365 	kfree(connector);
6366 }
6367 
6368 void amdgpu_dm_connector_funcs_reset(struct drm_connector *connector)
6369 {
6370 	struct dm_connector_state *state =
6371 		to_dm_connector_state(connector->state);
6372 
6373 	if (connector->state)
6374 		__drm_atomic_helper_connector_destroy_state(connector->state);
6375 
6376 	kfree(state);
6377 
6378 	state = kzalloc(sizeof(*state), GFP_KERNEL);
6379 
6380 	if (state) {
6381 		state->scaling = RMX_OFF;
6382 		state->underscan_enable = false;
6383 		state->underscan_hborder = 0;
6384 		state->underscan_vborder = 0;
6385 		state->base.max_requested_bpc = 8;
6386 		state->vcpi_slots = 0;
6387 		state->pbn = 0;
6388 
6389 		if (connector->connector_type == DRM_MODE_CONNECTOR_eDP)
6390 			state->abm_level = amdgpu_dm_abm_level;
6391 
6392 		__drm_atomic_helper_connector_reset(connector, &state->base);
6393 	}
6394 }
6395 
6396 struct drm_connector_state *
6397 amdgpu_dm_connector_atomic_duplicate_state(struct drm_connector *connector)
6398 {
6399 	struct dm_connector_state *state =
6400 		to_dm_connector_state(connector->state);
6401 
6402 	struct dm_connector_state *new_state =
6403 			kmemdup(state, sizeof(*state), GFP_KERNEL);
6404 
6405 	if (!new_state)
6406 		return NULL;
6407 
6408 	__drm_atomic_helper_connector_duplicate_state(connector, &new_state->base);
6409 
6410 	new_state->freesync_capable = state->freesync_capable;
6411 	new_state->abm_level = state->abm_level;
6412 	new_state->scaling = state->scaling;
6413 	new_state->underscan_enable = state->underscan_enable;
6414 	new_state->underscan_hborder = state->underscan_hborder;
6415 	new_state->underscan_vborder = state->underscan_vborder;
6416 	new_state->vcpi_slots = state->vcpi_slots;
6417 	new_state->pbn = state->pbn;
6418 	return &new_state->base;
6419 }
6420 
6421 static int
6422 amdgpu_dm_connector_late_register(struct drm_connector *connector)
6423 {
6424 	struct amdgpu_dm_connector *amdgpu_dm_connector =
6425 		to_amdgpu_dm_connector(connector);
6426 	int r;
6427 
6428 	amdgpu_dm_register_backlight_device(amdgpu_dm_connector);
6429 
6430 	if ((connector->connector_type == DRM_MODE_CONNECTOR_DisplayPort) ||
6431 	    (connector->connector_type == DRM_MODE_CONNECTOR_eDP)) {
6432 		amdgpu_dm_connector->dm_dp_aux.aux.dev = connector->kdev;
6433 		r = drm_dp_aux_register(&amdgpu_dm_connector->dm_dp_aux.aux);
6434 		if (r)
6435 			return r;
6436 	}
6437 
6438 #if defined(CONFIG_DEBUG_FS)
6439 	connector_debugfs_init(amdgpu_dm_connector);
6440 #endif
6441 
6442 	return 0;
6443 }
6444 
6445 static void amdgpu_dm_connector_funcs_force(struct drm_connector *connector)
6446 {
6447 	struct amdgpu_dm_connector *aconnector = to_amdgpu_dm_connector(connector);
6448 	struct amdgpu_connector *amdgpu_connector = to_amdgpu_connector(connector);
6449 	struct dc_link *dc_link = aconnector->dc_link;
6450 	struct dc_sink *dc_em_sink = aconnector->dc_em_sink;
6451 	struct edid *edid;
6452 
6453 	/*
6454 	 * Note: drm_get_edid gets edid in the following order:
6455 	 * 1) override EDID if set via edid_override debugfs,
6456 	 * 2) firmware EDID if set via edid_firmware module parameter
6457 	 * 3) regular DDC read.
6458 	 */
6459 	edid = drm_get_edid(connector, &amdgpu_connector->ddc_bus->aux.ddc);
6460 	if (!edid) {
6461 		DRM_ERROR("No EDID found on connector: %s.\n", connector->name);
6462 		return;
6463 	}
6464 
6465 	aconnector->edid = edid;
6466 
6467 	/* Update emulated (virtual) sink's EDID */
6468 	if (dc_em_sink && dc_link) {
6469 		memset(&dc_em_sink->edid_caps, 0, sizeof(struct dc_edid_caps));
6470 		memmove(dc_em_sink->dc_edid.raw_edid, edid, (edid->extensions + 1) * EDID_LENGTH);
6471 		dm_helpers_parse_edid_caps(
6472 			dc_link,
6473 			&dc_em_sink->dc_edid,
6474 			&dc_em_sink->edid_caps);
6475 	}
6476 }
6477 
6478 static const struct drm_connector_funcs amdgpu_dm_connector_funcs = {
6479 	.reset = amdgpu_dm_connector_funcs_reset,
6480 	.detect = amdgpu_dm_connector_detect,
6481 	.fill_modes = drm_helper_probe_single_connector_modes,
6482 	.destroy = amdgpu_dm_connector_destroy,
6483 	.atomic_duplicate_state = amdgpu_dm_connector_atomic_duplicate_state,
6484 	.atomic_destroy_state = drm_atomic_helper_connector_destroy_state,
6485 	.atomic_set_property = amdgpu_dm_connector_atomic_set_property,
6486 	.atomic_get_property = amdgpu_dm_connector_atomic_get_property,
6487 	.late_register = amdgpu_dm_connector_late_register,
6488 	.early_unregister = amdgpu_dm_connector_unregister,
6489 	.force = amdgpu_dm_connector_funcs_force
6490 };
6491 
6492 static int get_modes(struct drm_connector *connector)
6493 {
6494 	return amdgpu_dm_connector_get_modes(connector);
6495 }
6496 
6497 static void create_eml_sink(struct amdgpu_dm_connector *aconnector)
6498 {
6499 	struct drm_connector *connector = &aconnector->base;
6500 	struct amdgpu_connector *amdgpu_connector = to_amdgpu_connector(&aconnector->base);
6501 	struct dc_sink_init_data init_params = {
6502 			.link = aconnector->dc_link,
6503 			.sink_signal = SIGNAL_TYPE_VIRTUAL
6504 	};
6505 	struct edid *edid;
6506 
6507 	/*
6508 	 * Note: drm_get_edid gets edid in the following order:
6509 	 * 1) override EDID if set via edid_override debugfs,
6510 	 * 2) firmware EDID if set via edid_firmware module parameter
6511 	 * 3) regular DDC read.
6512 	 */
6513 	edid = drm_get_edid(connector, &amdgpu_connector->ddc_bus->aux.ddc);
6514 	if (!edid) {
6515 		DRM_ERROR("No EDID found on connector: %s.\n", connector->name);
6516 		return;
6517 	}
6518 
6519 	if (drm_detect_hdmi_monitor(edid))
6520 		init_params.sink_signal = SIGNAL_TYPE_HDMI_TYPE_A;
6521 
6522 	aconnector->edid = edid;
6523 
6524 	aconnector->dc_em_sink = dc_link_add_remote_sink(
6525 		aconnector->dc_link,
6526 		(uint8_t *)edid,
6527 		(edid->extensions + 1) * EDID_LENGTH,
6528 		&init_params);
6529 
6530 	if (aconnector->base.force == DRM_FORCE_ON) {
6531 		aconnector->dc_sink = aconnector->dc_link->local_sink ?
6532 		aconnector->dc_link->local_sink :
6533 		aconnector->dc_em_sink;
6534 		dc_sink_retain(aconnector->dc_sink);
6535 	}
6536 }
6537 
6538 static void handle_edid_mgmt(struct amdgpu_dm_connector *aconnector)
6539 {
6540 	struct dc_link *link = (struct dc_link *)aconnector->dc_link;
6541 
6542 	/*
6543 	 * In case of headless boot with force on for DP managed connector
6544 	 * Those settings have to be != 0 to get initial modeset
6545 	 */
6546 	if (link->connector_signal == SIGNAL_TYPE_DISPLAY_PORT) {
6547 		link->verified_link_cap.lane_count = LANE_COUNT_FOUR;
6548 		link->verified_link_cap.link_rate = LINK_RATE_HIGH2;
6549 	}
6550 
6551 	create_eml_sink(aconnector);
6552 }
6553 
6554 static enum dc_status dm_validate_stream_and_context(struct dc *dc,
6555 						struct dc_stream_state *stream)
6556 {
6557 	enum dc_status dc_result = DC_ERROR_UNEXPECTED;
6558 	struct dc_plane_state *dc_plane_state = NULL;
6559 	struct dc_state *dc_state = NULL;
6560 
6561 	if (!stream)
6562 		goto cleanup;
6563 
6564 	dc_plane_state = dc_create_plane_state(dc);
6565 	if (!dc_plane_state)
6566 		goto cleanup;
6567 
6568 	dc_state = dc_create_state(dc);
6569 	if (!dc_state)
6570 		goto cleanup;
6571 
6572 	/* populate stream to plane */
6573 	dc_plane_state->src_rect.height  = stream->src.height;
6574 	dc_plane_state->src_rect.width   = stream->src.width;
6575 	dc_plane_state->dst_rect.height  = stream->src.height;
6576 	dc_plane_state->dst_rect.width   = stream->src.width;
6577 	dc_plane_state->clip_rect.height = stream->src.height;
6578 	dc_plane_state->clip_rect.width  = stream->src.width;
6579 	dc_plane_state->plane_size.surface_pitch = ((stream->src.width + 255) / 256) * 256;
6580 	dc_plane_state->plane_size.surface_size.height = stream->src.height;
6581 	dc_plane_state->plane_size.surface_size.width  = stream->src.width;
6582 	dc_plane_state->plane_size.chroma_size.height  = stream->src.height;
6583 	dc_plane_state->plane_size.chroma_size.width   = stream->src.width;
6584 	dc_plane_state->format = SURFACE_PIXEL_FORMAT_GRPH_ARGB8888;
6585 	dc_plane_state->tiling_info.gfx9.swizzle = DC_SW_UNKNOWN;
6586 	dc_plane_state->rotation = ROTATION_ANGLE_0;
6587 	dc_plane_state->is_tiling_rotated = false;
6588 	dc_plane_state->tiling_info.gfx8.array_mode = DC_ARRAY_LINEAR_GENERAL;
6589 
6590 	dc_result = dc_validate_stream(dc, stream);
6591 	if (dc_result == DC_OK)
6592 		dc_result = dc_validate_plane(dc, dc_plane_state);
6593 
6594 	if (dc_result == DC_OK)
6595 		dc_result = dc_add_stream_to_ctx(dc, dc_state, stream);
6596 
6597 	if (dc_result == DC_OK && !dc_add_plane_to_context(
6598 						dc,
6599 						stream,
6600 						dc_plane_state,
6601 						dc_state))
6602 		dc_result = DC_FAIL_ATTACH_SURFACES;
6603 
6604 	if (dc_result == DC_OK)
6605 		dc_result = dc_validate_global_state(dc, dc_state, true);
6606 
6607 cleanup:
6608 	if (dc_state)
6609 		dc_release_state(dc_state);
6610 
6611 	if (dc_plane_state)
6612 		dc_plane_state_release(dc_plane_state);
6613 
6614 	return dc_result;
6615 }
6616 
6617 struct dc_stream_state *
6618 create_validate_stream_for_sink(struct amdgpu_dm_connector *aconnector,
6619 				const struct drm_display_mode *drm_mode,
6620 				const struct dm_connector_state *dm_state,
6621 				const struct dc_stream_state *old_stream)
6622 {
6623 	struct drm_connector *connector = &aconnector->base;
6624 	struct amdgpu_device *adev = drm_to_adev(connector->dev);
6625 	struct dc_stream_state *stream;
6626 	const struct drm_connector_state *drm_state = dm_state ? &dm_state->base : NULL;
6627 	int requested_bpc = drm_state ? drm_state->max_requested_bpc : 8;
6628 	enum dc_status dc_result = DC_OK;
6629 
6630 	do {
6631 		stream = create_stream_for_sink(aconnector, drm_mode,
6632 						dm_state, old_stream,
6633 						requested_bpc);
6634 		if (stream == NULL) {
6635 			DRM_ERROR("Failed to create stream for sink!\n");
6636 			break;
6637 		}
6638 
6639 		dc_result = dc_validate_stream(adev->dm.dc, stream);
6640 		if (dc_result == DC_OK && stream->signal == SIGNAL_TYPE_DISPLAY_PORT_MST)
6641 			dc_result = dm_dp_mst_is_port_support_mode(aconnector, stream);
6642 
6643 		if (dc_result == DC_OK)
6644 			dc_result = dm_validate_stream_and_context(adev->dm.dc, stream);
6645 
6646 		if (dc_result != DC_OK) {
6647 			DRM_DEBUG_KMS("Mode %dx%d (clk %d) failed DC validation with error %d (%s)\n",
6648 				      drm_mode->hdisplay,
6649 				      drm_mode->vdisplay,
6650 				      drm_mode->clock,
6651 				      dc_result,
6652 				      dc_status_to_str(dc_result));
6653 
6654 			dc_stream_release(stream);
6655 			stream = NULL;
6656 			requested_bpc -= 2; /* lower bpc to retry validation */
6657 		}
6658 
6659 	} while (stream == NULL && requested_bpc >= 6);
6660 
6661 	if (dc_result == DC_FAIL_ENC_VALIDATE && !aconnector->force_yuv420_output) {
6662 		DRM_DEBUG_KMS("Retry forcing YCbCr420 encoding\n");
6663 
6664 		aconnector->force_yuv420_output = true;
6665 		stream = create_validate_stream_for_sink(aconnector, drm_mode,
6666 						dm_state, old_stream);
6667 		aconnector->force_yuv420_output = false;
6668 	}
6669 
6670 	return stream;
6671 }
6672 
6673 enum drm_mode_status amdgpu_dm_connector_mode_valid(struct drm_connector *connector,
6674 				   struct drm_display_mode *mode)
6675 {
6676 	int result = MODE_ERROR;
6677 	struct dc_sink *dc_sink;
6678 	/* TODO: Unhardcode stream count */
6679 	struct dc_stream_state *stream;
6680 	struct amdgpu_dm_connector *aconnector = to_amdgpu_dm_connector(connector);
6681 
6682 	if ((mode->flags & DRM_MODE_FLAG_INTERLACE) ||
6683 			(mode->flags & DRM_MODE_FLAG_DBLSCAN))
6684 		return result;
6685 
6686 	/*
6687 	 * Only run this the first time mode_valid is called to initilialize
6688 	 * EDID mgmt
6689 	 */
6690 	if (aconnector->base.force != DRM_FORCE_UNSPECIFIED &&
6691 		!aconnector->dc_em_sink)
6692 		handle_edid_mgmt(aconnector);
6693 
6694 	dc_sink = to_amdgpu_dm_connector(connector)->dc_sink;
6695 
6696 	if (dc_sink == NULL && aconnector->base.force != DRM_FORCE_ON_DIGITAL &&
6697 				aconnector->base.force != DRM_FORCE_ON) {
6698 		DRM_ERROR("dc_sink is NULL!\n");
6699 		goto fail;
6700 	}
6701 
6702 	drm_mode_set_crtcinfo(mode, 0);
6703 
6704 	stream = create_validate_stream_for_sink(aconnector, mode,
6705 						 to_dm_connector_state(connector->state),
6706 						 NULL);
6707 	if (stream) {
6708 		dc_stream_release(stream);
6709 		result = MODE_OK;
6710 	}
6711 
6712 fail:
6713 	/* TODO: error handling*/
6714 	return result;
6715 }
6716 
6717 static int fill_hdr_info_packet(const struct drm_connector_state *state,
6718 				struct dc_info_packet *out)
6719 {
6720 	struct hdmi_drm_infoframe frame;
6721 	unsigned char buf[30]; /* 26 + 4 */
6722 	ssize_t len;
6723 	int ret, i;
6724 
6725 	memset(out, 0, sizeof(*out));
6726 
6727 	if (!state->hdr_output_metadata)
6728 		return 0;
6729 
6730 	ret = drm_hdmi_infoframe_set_hdr_metadata(&frame, state);
6731 	if (ret)
6732 		return ret;
6733 
6734 	len = hdmi_drm_infoframe_pack_only(&frame, buf, sizeof(buf));
6735 	if (len < 0)
6736 		return (int)len;
6737 
6738 	/* Static metadata is a fixed 26 bytes + 4 byte header. */
6739 	if (len != 30)
6740 		return -EINVAL;
6741 
6742 	/* Prepare the infopacket for DC. */
6743 	switch (state->connector->connector_type) {
6744 	case DRM_MODE_CONNECTOR_HDMIA:
6745 		out->hb0 = 0x87; /* type */
6746 		out->hb1 = 0x01; /* version */
6747 		out->hb2 = 0x1A; /* length */
6748 		out->sb[0] = buf[3]; /* checksum */
6749 		i = 1;
6750 		break;
6751 
6752 	case DRM_MODE_CONNECTOR_DisplayPort:
6753 	case DRM_MODE_CONNECTOR_eDP:
6754 		out->hb0 = 0x00; /* sdp id, zero */
6755 		out->hb1 = 0x87; /* type */
6756 		out->hb2 = 0x1D; /* payload len - 1 */
6757 		out->hb3 = (0x13 << 2); /* sdp version */
6758 		out->sb[0] = 0x01; /* version */
6759 		out->sb[1] = 0x1A; /* length */
6760 		i = 2;
6761 		break;
6762 
6763 	default:
6764 		return -EINVAL;
6765 	}
6766 
6767 	memcpy(&out->sb[i], &buf[4], 26);
6768 	out->valid = true;
6769 
6770 	print_hex_dump(KERN_DEBUG, "HDR SB:", DUMP_PREFIX_NONE, 16, 1, out->sb,
6771 		       sizeof(out->sb), false);
6772 
6773 	return 0;
6774 }
6775 
6776 static int
6777 amdgpu_dm_connector_atomic_check(struct drm_connector *conn,
6778 				 struct drm_atomic_state *state)
6779 {
6780 	struct drm_connector_state *new_con_state =
6781 		drm_atomic_get_new_connector_state(state, conn);
6782 	struct drm_connector_state *old_con_state =
6783 		drm_atomic_get_old_connector_state(state, conn);
6784 	struct drm_crtc *crtc = new_con_state->crtc;
6785 	struct drm_crtc_state *new_crtc_state;
6786 	struct amdgpu_dm_connector *aconn = to_amdgpu_dm_connector(conn);
6787 	int ret;
6788 
6789 	trace_amdgpu_dm_connector_atomic_check(new_con_state);
6790 
6791 	if (conn->connector_type == DRM_MODE_CONNECTOR_DisplayPort) {
6792 		ret = drm_dp_mst_root_conn_atomic_check(new_con_state, &aconn->mst_mgr);
6793 		if (ret < 0)
6794 			return ret;
6795 	}
6796 
6797 	if (!crtc)
6798 		return 0;
6799 
6800 	if (new_con_state->colorspace != old_con_state->colorspace) {
6801 		new_crtc_state = drm_atomic_get_crtc_state(state, crtc);
6802 		if (IS_ERR(new_crtc_state))
6803 			return PTR_ERR(new_crtc_state);
6804 
6805 		new_crtc_state->mode_changed = true;
6806 	}
6807 
6808 	if (new_con_state->content_type != old_con_state->content_type) {
6809 		new_crtc_state = drm_atomic_get_crtc_state(state, crtc);
6810 		if (IS_ERR(new_crtc_state))
6811 			return PTR_ERR(new_crtc_state);
6812 
6813 		new_crtc_state->mode_changed = true;
6814 	}
6815 
6816 	if (!drm_connector_atomic_hdr_metadata_equal(old_con_state, new_con_state)) {
6817 		struct dc_info_packet hdr_infopacket;
6818 
6819 		ret = fill_hdr_info_packet(new_con_state, &hdr_infopacket);
6820 		if (ret)
6821 			return ret;
6822 
6823 		new_crtc_state = drm_atomic_get_crtc_state(state, crtc);
6824 		if (IS_ERR(new_crtc_state))
6825 			return PTR_ERR(new_crtc_state);
6826 
6827 		/*
6828 		 * DC considers the stream backends changed if the
6829 		 * static metadata changes. Forcing the modeset also
6830 		 * gives a simple way for userspace to switch from
6831 		 * 8bpc to 10bpc when setting the metadata to enter
6832 		 * or exit HDR.
6833 		 *
6834 		 * Changing the static metadata after it's been
6835 		 * set is permissible, however. So only force a
6836 		 * modeset if we're entering or exiting HDR.
6837 		 */
6838 		new_crtc_state->mode_changed = new_crtc_state->mode_changed ||
6839 			!old_con_state->hdr_output_metadata ||
6840 			!new_con_state->hdr_output_metadata;
6841 	}
6842 
6843 	return 0;
6844 }
6845 
6846 static const struct drm_connector_helper_funcs
6847 amdgpu_dm_connector_helper_funcs = {
6848 	/*
6849 	 * If hotplugging a second bigger display in FB Con mode, bigger resolution
6850 	 * modes will be filtered by drm_mode_validate_size(), and those modes
6851 	 * are missing after user start lightdm. So we need to renew modes list.
6852 	 * in get_modes call back, not just return the modes count
6853 	 */
6854 	.get_modes = get_modes,
6855 	.mode_valid = amdgpu_dm_connector_mode_valid,
6856 	.atomic_check = amdgpu_dm_connector_atomic_check,
6857 };
6858 
6859 static void dm_encoder_helper_disable(struct drm_encoder *encoder)
6860 {
6861 
6862 }
6863 
6864 int convert_dc_color_depth_into_bpc(enum dc_color_depth display_color_depth)
6865 {
6866 	switch (display_color_depth) {
6867 	case COLOR_DEPTH_666:
6868 		return 6;
6869 	case COLOR_DEPTH_888:
6870 		return 8;
6871 	case COLOR_DEPTH_101010:
6872 		return 10;
6873 	case COLOR_DEPTH_121212:
6874 		return 12;
6875 	case COLOR_DEPTH_141414:
6876 		return 14;
6877 	case COLOR_DEPTH_161616:
6878 		return 16;
6879 	default:
6880 		break;
6881 	}
6882 	return 0;
6883 }
6884 
6885 static int dm_encoder_helper_atomic_check(struct drm_encoder *encoder,
6886 					  struct drm_crtc_state *crtc_state,
6887 					  struct drm_connector_state *conn_state)
6888 {
6889 	struct drm_atomic_state *state = crtc_state->state;
6890 	struct drm_connector *connector = conn_state->connector;
6891 	struct amdgpu_dm_connector *aconnector = to_amdgpu_dm_connector(connector);
6892 	struct dm_connector_state *dm_new_connector_state = to_dm_connector_state(conn_state);
6893 	const struct drm_display_mode *adjusted_mode = &crtc_state->adjusted_mode;
6894 	struct drm_dp_mst_topology_mgr *mst_mgr;
6895 	struct drm_dp_mst_port *mst_port;
6896 	struct drm_dp_mst_topology_state *mst_state;
6897 	enum dc_color_depth color_depth;
6898 	int clock, bpp = 0;
6899 	bool is_y420 = false;
6900 
6901 	if (!aconnector->mst_output_port)
6902 		return 0;
6903 
6904 	mst_port = aconnector->mst_output_port;
6905 	mst_mgr = &aconnector->mst_root->mst_mgr;
6906 
6907 	if (!crtc_state->connectors_changed && !crtc_state->mode_changed)
6908 		return 0;
6909 
6910 	mst_state = drm_atomic_get_mst_topology_state(state, mst_mgr);
6911 	if (IS_ERR(mst_state))
6912 		return PTR_ERR(mst_state);
6913 
6914 	if (!mst_state->pbn_div.full)
6915 		mst_state->pbn_div.full = dfixed_const(dm_mst_get_pbn_divider(aconnector->mst_root->dc_link));
6916 
6917 	if (!state->duplicated) {
6918 		int max_bpc = conn_state->max_requested_bpc;
6919 
6920 		is_y420 = drm_mode_is_420_also(&connector->display_info, adjusted_mode) &&
6921 			  aconnector->force_yuv420_output;
6922 		color_depth = convert_color_depth_from_display_info(connector,
6923 								    is_y420,
6924 								    max_bpc);
6925 		bpp = convert_dc_color_depth_into_bpc(color_depth) * 3;
6926 		clock = adjusted_mode->clock;
6927 		dm_new_connector_state->pbn = drm_dp_calc_pbn_mode(clock, bpp << 4);
6928 	}
6929 
6930 	dm_new_connector_state->vcpi_slots =
6931 		drm_dp_atomic_find_time_slots(state, mst_mgr, mst_port,
6932 					      dm_new_connector_state->pbn);
6933 	if (dm_new_connector_state->vcpi_slots < 0) {
6934 		DRM_DEBUG_ATOMIC("failed finding vcpi slots: %d\n", (int)dm_new_connector_state->vcpi_slots);
6935 		return dm_new_connector_state->vcpi_slots;
6936 	}
6937 	return 0;
6938 }
6939 
6940 const struct drm_encoder_helper_funcs amdgpu_dm_encoder_helper_funcs = {
6941 	.disable = dm_encoder_helper_disable,
6942 	.atomic_check = dm_encoder_helper_atomic_check
6943 };
6944 
6945 static int dm_update_mst_vcpi_slots_for_dsc(struct drm_atomic_state *state,
6946 					    struct dc_state *dc_state,
6947 					    struct dsc_mst_fairness_vars *vars)
6948 {
6949 	struct dc_stream_state *stream = NULL;
6950 	struct drm_connector *connector;
6951 	struct drm_connector_state *new_con_state;
6952 	struct amdgpu_dm_connector *aconnector;
6953 	struct dm_connector_state *dm_conn_state;
6954 	int i, j, ret;
6955 	int vcpi, pbn_div, pbn, slot_num = 0;
6956 
6957 	for_each_new_connector_in_state(state, connector, new_con_state, i) {
6958 
6959 		aconnector = to_amdgpu_dm_connector(connector);
6960 
6961 		if (!aconnector->mst_output_port)
6962 			continue;
6963 
6964 		if (!new_con_state || !new_con_state->crtc)
6965 			continue;
6966 
6967 		dm_conn_state = to_dm_connector_state(new_con_state);
6968 
6969 		for (j = 0; j < dc_state->stream_count; j++) {
6970 			stream = dc_state->streams[j];
6971 			if (!stream)
6972 				continue;
6973 
6974 			if ((struct amdgpu_dm_connector *)stream->dm_stream_context == aconnector)
6975 				break;
6976 
6977 			stream = NULL;
6978 		}
6979 
6980 		if (!stream)
6981 			continue;
6982 
6983 		pbn_div = dm_mst_get_pbn_divider(stream->link);
6984 		/* pbn is calculated by compute_mst_dsc_configs_for_state*/
6985 		for (j = 0; j < dc_state->stream_count; j++) {
6986 			if (vars[j].aconnector == aconnector) {
6987 				pbn = vars[j].pbn;
6988 				break;
6989 			}
6990 		}
6991 
6992 		if (j == dc_state->stream_count)
6993 			continue;
6994 
6995 		slot_num = DIV_ROUND_UP(pbn, pbn_div);
6996 
6997 		if (stream->timing.flags.DSC != 1) {
6998 			dm_conn_state->pbn = pbn;
6999 			dm_conn_state->vcpi_slots = slot_num;
7000 
7001 			ret = drm_dp_mst_atomic_enable_dsc(state, aconnector->mst_output_port,
7002 							   dm_conn_state->pbn, false);
7003 			if (ret < 0)
7004 				return ret;
7005 
7006 			continue;
7007 		}
7008 
7009 		vcpi = drm_dp_mst_atomic_enable_dsc(state, aconnector->mst_output_port, pbn, true);
7010 		if (vcpi < 0)
7011 			return vcpi;
7012 
7013 		dm_conn_state->pbn = pbn;
7014 		dm_conn_state->vcpi_slots = vcpi;
7015 	}
7016 	return 0;
7017 }
7018 
7019 static int to_drm_connector_type(enum signal_type st)
7020 {
7021 	switch (st) {
7022 	case SIGNAL_TYPE_HDMI_TYPE_A:
7023 		return DRM_MODE_CONNECTOR_HDMIA;
7024 	case SIGNAL_TYPE_EDP:
7025 		return DRM_MODE_CONNECTOR_eDP;
7026 	case SIGNAL_TYPE_LVDS:
7027 		return DRM_MODE_CONNECTOR_LVDS;
7028 	case SIGNAL_TYPE_RGB:
7029 		return DRM_MODE_CONNECTOR_VGA;
7030 	case SIGNAL_TYPE_DISPLAY_PORT:
7031 	case SIGNAL_TYPE_DISPLAY_PORT_MST:
7032 		return DRM_MODE_CONNECTOR_DisplayPort;
7033 	case SIGNAL_TYPE_DVI_DUAL_LINK:
7034 	case SIGNAL_TYPE_DVI_SINGLE_LINK:
7035 		return DRM_MODE_CONNECTOR_DVID;
7036 	case SIGNAL_TYPE_VIRTUAL:
7037 		return DRM_MODE_CONNECTOR_VIRTUAL;
7038 
7039 	default:
7040 		return DRM_MODE_CONNECTOR_Unknown;
7041 	}
7042 }
7043 
7044 static struct drm_encoder *amdgpu_dm_connector_to_encoder(struct drm_connector *connector)
7045 {
7046 	struct drm_encoder *encoder;
7047 
7048 	/* There is only one encoder per connector */
7049 	drm_connector_for_each_possible_encoder(connector, encoder)
7050 		return encoder;
7051 
7052 	return NULL;
7053 }
7054 
7055 static void amdgpu_dm_get_native_mode(struct drm_connector *connector)
7056 {
7057 	struct drm_encoder *encoder;
7058 	struct amdgpu_encoder *amdgpu_encoder;
7059 
7060 	encoder = amdgpu_dm_connector_to_encoder(connector);
7061 
7062 	if (encoder == NULL)
7063 		return;
7064 
7065 	amdgpu_encoder = to_amdgpu_encoder(encoder);
7066 
7067 	amdgpu_encoder->native_mode.clock = 0;
7068 
7069 	if (!list_empty(&connector->probed_modes)) {
7070 		struct drm_display_mode *preferred_mode = NULL;
7071 
7072 		list_for_each_entry(preferred_mode,
7073 				    &connector->probed_modes,
7074 				    head) {
7075 			if (preferred_mode->type & DRM_MODE_TYPE_PREFERRED)
7076 				amdgpu_encoder->native_mode = *preferred_mode;
7077 
7078 			break;
7079 		}
7080 
7081 	}
7082 }
7083 
7084 static struct drm_display_mode *
7085 amdgpu_dm_create_common_mode(struct drm_encoder *encoder,
7086 			     char *name,
7087 			     int hdisplay, int vdisplay)
7088 {
7089 	struct drm_device *dev = encoder->dev;
7090 	struct amdgpu_encoder *amdgpu_encoder = to_amdgpu_encoder(encoder);
7091 	struct drm_display_mode *mode = NULL;
7092 	struct drm_display_mode *native_mode = &amdgpu_encoder->native_mode;
7093 
7094 	mode = drm_mode_duplicate(dev, native_mode);
7095 
7096 	if (mode == NULL)
7097 		return NULL;
7098 
7099 	mode->hdisplay = hdisplay;
7100 	mode->vdisplay = vdisplay;
7101 	mode->type &= ~DRM_MODE_TYPE_PREFERRED;
7102 	strscpy(mode->name, name, DRM_DISPLAY_MODE_LEN);
7103 
7104 	return mode;
7105 
7106 }
7107 
7108 static void amdgpu_dm_connector_add_common_modes(struct drm_encoder *encoder,
7109 						 struct drm_connector *connector)
7110 {
7111 	struct amdgpu_encoder *amdgpu_encoder = to_amdgpu_encoder(encoder);
7112 	struct drm_display_mode *mode = NULL;
7113 	struct drm_display_mode *native_mode = &amdgpu_encoder->native_mode;
7114 	struct amdgpu_dm_connector *amdgpu_dm_connector =
7115 				to_amdgpu_dm_connector(connector);
7116 	int i;
7117 	int n;
7118 	struct mode_size {
7119 		char name[DRM_DISPLAY_MODE_LEN];
7120 		int w;
7121 		int h;
7122 	} common_modes[] = {
7123 		{  "640x480",  640,  480},
7124 		{  "800x600",  800,  600},
7125 		{ "1024x768", 1024,  768},
7126 		{ "1280x720", 1280,  720},
7127 		{ "1280x800", 1280,  800},
7128 		{"1280x1024", 1280, 1024},
7129 		{ "1440x900", 1440,  900},
7130 		{"1680x1050", 1680, 1050},
7131 		{"1600x1200", 1600, 1200},
7132 		{"1920x1080", 1920, 1080},
7133 		{"1920x1200", 1920, 1200}
7134 	};
7135 
7136 	n = ARRAY_SIZE(common_modes);
7137 
7138 	for (i = 0; i < n; i++) {
7139 		struct drm_display_mode *curmode = NULL;
7140 		bool mode_existed = false;
7141 
7142 		if (common_modes[i].w > native_mode->hdisplay ||
7143 		    common_modes[i].h > native_mode->vdisplay ||
7144 		   (common_modes[i].w == native_mode->hdisplay &&
7145 		    common_modes[i].h == native_mode->vdisplay))
7146 			continue;
7147 
7148 		list_for_each_entry(curmode, &connector->probed_modes, head) {
7149 			if (common_modes[i].w == curmode->hdisplay &&
7150 			    common_modes[i].h == curmode->vdisplay) {
7151 				mode_existed = true;
7152 				break;
7153 			}
7154 		}
7155 
7156 		if (mode_existed)
7157 			continue;
7158 
7159 		mode = amdgpu_dm_create_common_mode(encoder,
7160 				common_modes[i].name, common_modes[i].w,
7161 				common_modes[i].h);
7162 		if (!mode)
7163 			continue;
7164 
7165 		drm_mode_probed_add(connector, mode);
7166 		amdgpu_dm_connector->num_modes++;
7167 	}
7168 }
7169 
7170 static void amdgpu_set_panel_orientation(struct drm_connector *connector)
7171 {
7172 	struct drm_encoder *encoder;
7173 	struct amdgpu_encoder *amdgpu_encoder;
7174 	const struct drm_display_mode *native_mode;
7175 
7176 	if (connector->connector_type != DRM_MODE_CONNECTOR_eDP &&
7177 	    connector->connector_type != DRM_MODE_CONNECTOR_LVDS)
7178 		return;
7179 
7180 	mutex_lock(&connector->dev->mode_config.mutex);
7181 	amdgpu_dm_connector_get_modes(connector);
7182 	mutex_unlock(&connector->dev->mode_config.mutex);
7183 
7184 	encoder = amdgpu_dm_connector_to_encoder(connector);
7185 	if (!encoder)
7186 		return;
7187 
7188 	amdgpu_encoder = to_amdgpu_encoder(encoder);
7189 
7190 	native_mode = &amdgpu_encoder->native_mode;
7191 	if (native_mode->hdisplay == 0 || native_mode->vdisplay == 0)
7192 		return;
7193 
7194 	drm_connector_set_panel_orientation_with_quirk(connector,
7195 						       DRM_MODE_PANEL_ORIENTATION_UNKNOWN,
7196 						       native_mode->hdisplay,
7197 						       native_mode->vdisplay);
7198 }
7199 
7200 static void amdgpu_dm_connector_ddc_get_modes(struct drm_connector *connector,
7201 					      struct edid *edid)
7202 {
7203 	struct amdgpu_dm_connector *amdgpu_dm_connector =
7204 			to_amdgpu_dm_connector(connector);
7205 
7206 	if (edid) {
7207 		/* empty probed_modes */
7208 		INIT_LIST_HEAD(&connector->probed_modes);
7209 		amdgpu_dm_connector->num_modes =
7210 				drm_add_edid_modes(connector, edid);
7211 
7212 		/* sorting the probed modes before calling function
7213 		 * amdgpu_dm_get_native_mode() since EDID can have
7214 		 * more than one preferred mode. The modes that are
7215 		 * later in the probed mode list could be of higher
7216 		 * and preferred resolution. For example, 3840x2160
7217 		 * resolution in base EDID preferred timing and 4096x2160
7218 		 * preferred resolution in DID extension block later.
7219 		 */
7220 		drm_mode_sort(&connector->probed_modes);
7221 		amdgpu_dm_get_native_mode(connector);
7222 
7223 		/* Freesync capabilities are reset by calling
7224 		 * drm_add_edid_modes() and need to be
7225 		 * restored here.
7226 		 */
7227 		amdgpu_dm_update_freesync_caps(connector, edid);
7228 	} else {
7229 		amdgpu_dm_connector->num_modes = 0;
7230 	}
7231 }
7232 
7233 static bool is_duplicate_mode(struct amdgpu_dm_connector *aconnector,
7234 			      struct drm_display_mode *mode)
7235 {
7236 	struct drm_display_mode *m;
7237 
7238 	list_for_each_entry(m, &aconnector->base.probed_modes, head) {
7239 		if (drm_mode_equal(m, mode))
7240 			return true;
7241 	}
7242 
7243 	return false;
7244 }
7245 
7246 static uint add_fs_modes(struct amdgpu_dm_connector *aconnector)
7247 {
7248 	const struct drm_display_mode *m;
7249 	struct drm_display_mode *new_mode;
7250 	uint i;
7251 	u32 new_modes_count = 0;
7252 
7253 	/* Standard FPS values
7254 	 *
7255 	 * 23.976       - TV/NTSC
7256 	 * 24           - Cinema
7257 	 * 25           - TV/PAL
7258 	 * 29.97        - TV/NTSC
7259 	 * 30           - TV/NTSC
7260 	 * 48           - Cinema HFR
7261 	 * 50           - TV/PAL
7262 	 * 60           - Commonly used
7263 	 * 48,72,96,120 - Multiples of 24
7264 	 */
7265 	static const u32 common_rates[] = {
7266 		23976, 24000, 25000, 29970, 30000,
7267 		48000, 50000, 60000, 72000, 96000, 120000
7268 	};
7269 
7270 	/*
7271 	 * Find mode with highest refresh rate with the same resolution
7272 	 * as the preferred mode. Some monitors report a preferred mode
7273 	 * with lower resolution than the highest refresh rate supported.
7274 	 */
7275 
7276 	m = get_highest_refresh_rate_mode(aconnector, true);
7277 	if (!m)
7278 		return 0;
7279 
7280 	for (i = 0; i < ARRAY_SIZE(common_rates); i++) {
7281 		u64 target_vtotal, target_vtotal_diff;
7282 		u64 num, den;
7283 
7284 		if (drm_mode_vrefresh(m) * 1000 < common_rates[i])
7285 			continue;
7286 
7287 		if (common_rates[i] < aconnector->min_vfreq * 1000 ||
7288 		    common_rates[i] > aconnector->max_vfreq * 1000)
7289 			continue;
7290 
7291 		num = (unsigned long long)m->clock * 1000 * 1000;
7292 		den = common_rates[i] * (unsigned long long)m->htotal;
7293 		target_vtotal = div_u64(num, den);
7294 		target_vtotal_diff = target_vtotal - m->vtotal;
7295 
7296 		/* Check for illegal modes */
7297 		if (m->vsync_start + target_vtotal_diff < m->vdisplay ||
7298 		    m->vsync_end + target_vtotal_diff < m->vsync_start ||
7299 		    m->vtotal + target_vtotal_diff < m->vsync_end)
7300 			continue;
7301 
7302 		new_mode = drm_mode_duplicate(aconnector->base.dev, m);
7303 		if (!new_mode)
7304 			goto out;
7305 
7306 		new_mode->vtotal += (u16)target_vtotal_diff;
7307 		new_mode->vsync_start += (u16)target_vtotal_diff;
7308 		new_mode->vsync_end += (u16)target_vtotal_diff;
7309 		new_mode->type &= ~DRM_MODE_TYPE_PREFERRED;
7310 		new_mode->type |= DRM_MODE_TYPE_DRIVER;
7311 
7312 		if (!is_duplicate_mode(aconnector, new_mode)) {
7313 			drm_mode_probed_add(&aconnector->base, new_mode);
7314 			new_modes_count += 1;
7315 		} else
7316 			drm_mode_destroy(aconnector->base.dev, new_mode);
7317 	}
7318  out:
7319 	return new_modes_count;
7320 }
7321 
7322 static void amdgpu_dm_connector_add_freesync_modes(struct drm_connector *connector,
7323 						   struct edid *edid)
7324 {
7325 	struct amdgpu_dm_connector *amdgpu_dm_connector =
7326 		to_amdgpu_dm_connector(connector);
7327 
7328 	if (!edid)
7329 		return;
7330 
7331 	if (amdgpu_dm_connector->max_vfreq - amdgpu_dm_connector->min_vfreq > 10)
7332 		amdgpu_dm_connector->num_modes +=
7333 			add_fs_modes(amdgpu_dm_connector);
7334 }
7335 
7336 static int amdgpu_dm_connector_get_modes(struct drm_connector *connector)
7337 {
7338 	struct amdgpu_dm_connector *amdgpu_dm_connector =
7339 			to_amdgpu_dm_connector(connector);
7340 	struct drm_encoder *encoder;
7341 	struct edid *edid = amdgpu_dm_connector->edid;
7342 	struct dc_link_settings *verified_link_cap =
7343 			&amdgpu_dm_connector->dc_link->verified_link_cap;
7344 	const struct dc *dc = amdgpu_dm_connector->dc_link->dc;
7345 
7346 	encoder = amdgpu_dm_connector_to_encoder(connector);
7347 
7348 	if (!drm_edid_is_valid(edid)) {
7349 		amdgpu_dm_connector->num_modes =
7350 				drm_add_modes_noedid(connector, 640, 480);
7351 		if (dc->link_srv->dp_get_encoding_format(verified_link_cap) == DP_128b_132b_ENCODING)
7352 			amdgpu_dm_connector->num_modes +=
7353 				drm_add_modes_noedid(connector, 1920, 1080);
7354 	} else {
7355 		amdgpu_dm_connector_ddc_get_modes(connector, edid);
7356 		amdgpu_dm_connector_add_common_modes(encoder, connector);
7357 		amdgpu_dm_connector_add_freesync_modes(connector, edid);
7358 	}
7359 	amdgpu_dm_fbc_init(connector);
7360 
7361 	return amdgpu_dm_connector->num_modes;
7362 }
7363 
7364 static const u32 supported_colorspaces =
7365 	BIT(DRM_MODE_COLORIMETRY_BT709_YCC) |
7366 	BIT(DRM_MODE_COLORIMETRY_OPRGB) |
7367 	BIT(DRM_MODE_COLORIMETRY_BT2020_RGB) |
7368 	BIT(DRM_MODE_COLORIMETRY_BT2020_YCC);
7369 
7370 void amdgpu_dm_connector_init_helper(struct amdgpu_display_manager *dm,
7371 				     struct amdgpu_dm_connector *aconnector,
7372 				     int connector_type,
7373 				     struct dc_link *link,
7374 				     int link_index)
7375 {
7376 	struct amdgpu_device *adev = drm_to_adev(dm->ddev);
7377 
7378 	/*
7379 	 * Some of the properties below require access to state, like bpc.
7380 	 * Allocate some default initial connector state with our reset helper.
7381 	 */
7382 	if (aconnector->base.funcs->reset)
7383 		aconnector->base.funcs->reset(&aconnector->base);
7384 
7385 	aconnector->connector_id = link_index;
7386 	aconnector->bl_idx = -1;
7387 	aconnector->dc_link = link;
7388 	aconnector->base.interlace_allowed = false;
7389 	aconnector->base.doublescan_allowed = false;
7390 	aconnector->base.stereo_allowed = false;
7391 	aconnector->base.dpms = DRM_MODE_DPMS_OFF;
7392 	aconnector->hpd.hpd = AMDGPU_HPD_NONE; /* not used */
7393 	aconnector->audio_inst = -1;
7394 	aconnector->pack_sdp_v1_3 = false;
7395 	aconnector->as_type = ADAPTIVE_SYNC_TYPE_NONE;
7396 	memset(&aconnector->vsdb_info, 0, sizeof(aconnector->vsdb_info));
7397 	mutex_init(&aconnector->hpd_lock);
7398 	mutex_init(&aconnector->handle_mst_msg_ready);
7399 
7400 	/*
7401 	 * configure support HPD hot plug connector_>polled default value is 0
7402 	 * which means HPD hot plug not supported
7403 	 */
7404 	switch (connector_type) {
7405 	case DRM_MODE_CONNECTOR_HDMIA:
7406 		aconnector->base.polled = DRM_CONNECTOR_POLL_HPD;
7407 		aconnector->base.ycbcr_420_allowed =
7408 			link->link_enc->features.hdmi_ycbcr420_supported ? true : false;
7409 		break;
7410 	case DRM_MODE_CONNECTOR_DisplayPort:
7411 		aconnector->base.polled = DRM_CONNECTOR_POLL_HPD;
7412 		link->link_enc = link_enc_cfg_get_link_enc(link);
7413 		ASSERT(link->link_enc);
7414 		if (link->link_enc)
7415 			aconnector->base.ycbcr_420_allowed =
7416 			link->link_enc->features.dp_ycbcr420_supported ? true : false;
7417 		break;
7418 	case DRM_MODE_CONNECTOR_DVID:
7419 		aconnector->base.polled = DRM_CONNECTOR_POLL_HPD;
7420 		break;
7421 	default:
7422 		break;
7423 	}
7424 
7425 	drm_object_attach_property(&aconnector->base.base,
7426 				dm->ddev->mode_config.scaling_mode_property,
7427 				DRM_MODE_SCALE_NONE);
7428 
7429 	drm_object_attach_property(&aconnector->base.base,
7430 				adev->mode_info.underscan_property,
7431 				UNDERSCAN_OFF);
7432 	drm_object_attach_property(&aconnector->base.base,
7433 				adev->mode_info.underscan_hborder_property,
7434 				0);
7435 	drm_object_attach_property(&aconnector->base.base,
7436 				adev->mode_info.underscan_vborder_property,
7437 				0);
7438 
7439 	if (!aconnector->mst_root)
7440 		drm_connector_attach_max_bpc_property(&aconnector->base, 8, 16);
7441 
7442 	aconnector->base.state->max_bpc = 16;
7443 	aconnector->base.state->max_requested_bpc = aconnector->base.state->max_bpc;
7444 
7445 	if (connector_type == DRM_MODE_CONNECTOR_eDP &&
7446 	    (dc_is_dmcu_initialized(adev->dm.dc) || adev->dm.dc->ctx->dmub_srv)) {
7447 		drm_object_attach_property(&aconnector->base.base,
7448 				adev->mode_info.abm_level_property, 0);
7449 	}
7450 
7451 	if (connector_type == DRM_MODE_CONNECTOR_HDMIA) {
7452 		/* Content Type is currently only implemented for HDMI. */
7453 		drm_connector_attach_content_type_property(&aconnector->base);
7454 	}
7455 
7456 	if (connector_type == DRM_MODE_CONNECTOR_HDMIA) {
7457 		if (!drm_mode_create_hdmi_colorspace_property(&aconnector->base, supported_colorspaces))
7458 			drm_connector_attach_colorspace_property(&aconnector->base);
7459 	} else if ((connector_type == DRM_MODE_CONNECTOR_DisplayPort && !aconnector->mst_root) ||
7460 		   connector_type == DRM_MODE_CONNECTOR_eDP) {
7461 		if (!drm_mode_create_dp_colorspace_property(&aconnector->base, supported_colorspaces))
7462 			drm_connector_attach_colorspace_property(&aconnector->base);
7463 	}
7464 
7465 	if (connector_type == DRM_MODE_CONNECTOR_HDMIA ||
7466 	    connector_type == DRM_MODE_CONNECTOR_DisplayPort ||
7467 	    connector_type == DRM_MODE_CONNECTOR_eDP) {
7468 		drm_connector_attach_hdr_output_metadata_property(&aconnector->base);
7469 
7470 		if (!aconnector->mst_root)
7471 			drm_connector_attach_vrr_capable_property(&aconnector->base);
7472 
7473 		if (adev->dm.hdcp_workqueue)
7474 			drm_connector_attach_content_protection_property(&aconnector->base, true);
7475 	}
7476 }
7477 
7478 static int amdgpu_dm_i2c_xfer(struct i2c_adapter *i2c_adap,
7479 			      struct i2c_msg *msgs, int num)
7480 {
7481 	struct amdgpu_i2c_adapter *i2c = i2c_get_adapdata(i2c_adap);
7482 	struct ddc_service *ddc_service = i2c->ddc_service;
7483 	struct i2c_command cmd;
7484 	int i;
7485 	int result = -EIO;
7486 
7487 	if (!ddc_service->ddc_pin || !ddc_service->ddc_pin->hw_info.hw_supported)
7488 		return result;
7489 
7490 	cmd.payloads = kcalloc(num, sizeof(struct i2c_payload), GFP_KERNEL);
7491 
7492 	if (!cmd.payloads)
7493 		return result;
7494 
7495 	cmd.number_of_payloads = num;
7496 	cmd.engine = I2C_COMMAND_ENGINE_DEFAULT;
7497 	cmd.speed = 100;
7498 
7499 	for (i = 0; i < num; i++) {
7500 		cmd.payloads[i].write = !(msgs[i].flags & I2C_M_RD);
7501 		cmd.payloads[i].address = msgs[i].addr;
7502 		cmd.payloads[i].length = msgs[i].len;
7503 		cmd.payloads[i].data = msgs[i].buf;
7504 	}
7505 
7506 	if (dc_submit_i2c(
7507 			ddc_service->ctx->dc,
7508 			ddc_service->link->link_index,
7509 			&cmd))
7510 		result = num;
7511 
7512 	kfree(cmd.payloads);
7513 	return result;
7514 }
7515 
7516 static u32 amdgpu_dm_i2c_func(struct i2c_adapter *adap)
7517 {
7518 	return I2C_FUNC_I2C | I2C_FUNC_SMBUS_EMUL;
7519 }
7520 
7521 static const struct i2c_algorithm amdgpu_dm_i2c_algo = {
7522 	.master_xfer = amdgpu_dm_i2c_xfer,
7523 	.functionality = amdgpu_dm_i2c_func,
7524 };
7525 
7526 static struct amdgpu_i2c_adapter *
7527 create_i2c(struct ddc_service *ddc_service,
7528 	   int link_index,
7529 	   int *res)
7530 {
7531 	struct amdgpu_device *adev = ddc_service->ctx->driver_context;
7532 	struct amdgpu_i2c_adapter *i2c;
7533 
7534 	i2c = kzalloc(sizeof(struct amdgpu_i2c_adapter), GFP_KERNEL);
7535 	if (!i2c)
7536 		return NULL;
7537 	i2c->base.owner = THIS_MODULE;
7538 	i2c->base.class = I2C_CLASS_DDC;
7539 	i2c->base.dev.parent = &adev->pdev->dev;
7540 	i2c->base.algo = &amdgpu_dm_i2c_algo;
7541 	snprintf(i2c->base.name, sizeof(i2c->base.name), "AMDGPU DM i2c hw bus %d", link_index);
7542 	i2c_set_adapdata(&i2c->base, i2c);
7543 	i2c->ddc_service = ddc_service;
7544 
7545 	return i2c;
7546 }
7547 
7548 
7549 /*
7550  * Note: this function assumes that dc_link_detect() was called for the
7551  * dc_link which will be represented by this aconnector.
7552  */
7553 static int amdgpu_dm_connector_init(struct amdgpu_display_manager *dm,
7554 				    struct amdgpu_dm_connector *aconnector,
7555 				    u32 link_index,
7556 				    struct amdgpu_encoder *aencoder)
7557 {
7558 	int res = 0;
7559 	int connector_type;
7560 	struct dc *dc = dm->dc;
7561 	struct dc_link *link = dc_get_link_at_index(dc, link_index);
7562 	struct amdgpu_i2c_adapter *i2c;
7563 
7564 	link->priv = aconnector;
7565 
7566 
7567 	i2c = create_i2c(link->ddc, link->link_index, &res);
7568 	if (!i2c) {
7569 		DRM_ERROR("Failed to create i2c adapter data\n");
7570 		return -ENOMEM;
7571 	}
7572 
7573 	aconnector->i2c = i2c;
7574 	res = i2c_add_adapter(&i2c->base);
7575 
7576 	if (res) {
7577 		DRM_ERROR("Failed to register hw i2c %d\n", link->link_index);
7578 		goto out_free;
7579 	}
7580 
7581 	connector_type = to_drm_connector_type(link->connector_signal);
7582 
7583 	res = drm_connector_init_with_ddc(
7584 			dm->ddev,
7585 			&aconnector->base,
7586 			&amdgpu_dm_connector_funcs,
7587 			connector_type,
7588 			&i2c->base);
7589 
7590 	if (res) {
7591 		DRM_ERROR("connector_init failed\n");
7592 		aconnector->connector_id = -1;
7593 		goto out_free;
7594 	}
7595 
7596 	drm_connector_helper_add(
7597 			&aconnector->base,
7598 			&amdgpu_dm_connector_helper_funcs);
7599 
7600 	amdgpu_dm_connector_init_helper(
7601 		dm,
7602 		aconnector,
7603 		connector_type,
7604 		link,
7605 		link_index);
7606 
7607 	drm_connector_attach_encoder(
7608 		&aconnector->base, &aencoder->base);
7609 
7610 	if (connector_type == DRM_MODE_CONNECTOR_DisplayPort
7611 		|| connector_type == DRM_MODE_CONNECTOR_eDP)
7612 		amdgpu_dm_initialize_dp_connector(dm, aconnector, link->link_index);
7613 
7614 out_free:
7615 	if (res) {
7616 		kfree(i2c);
7617 		aconnector->i2c = NULL;
7618 	}
7619 	return res;
7620 }
7621 
7622 int amdgpu_dm_get_encoder_crtc_mask(struct amdgpu_device *adev)
7623 {
7624 	switch (adev->mode_info.num_crtc) {
7625 	case 1:
7626 		return 0x1;
7627 	case 2:
7628 		return 0x3;
7629 	case 3:
7630 		return 0x7;
7631 	case 4:
7632 		return 0xf;
7633 	case 5:
7634 		return 0x1f;
7635 	case 6:
7636 	default:
7637 		return 0x3f;
7638 	}
7639 }
7640 
7641 static int amdgpu_dm_encoder_init(struct drm_device *dev,
7642 				  struct amdgpu_encoder *aencoder,
7643 				  uint32_t link_index)
7644 {
7645 	struct amdgpu_device *adev = drm_to_adev(dev);
7646 
7647 	int res = drm_encoder_init(dev,
7648 				   &aencoder->base,
7649 				   &amdgpu_dm_encoder_funcs,
7650 				   DRM_MODE_ENCODER_TMDS,
7651 				   NULL);
7652 
7653 	aencoder->base.possible_crtcs = amdgpu_dm_get_encoder_crtc_mask(adev);
7654 
7655 	if (!res)
7656 		aencoder->encoder_id = link_index;
7657 	else
7658 		aencoder->encoder_id = -1;
7659 
7660 	drm_encoder_helper_add(&aencoder->base, &amdgpu_dm_encoder_helper_funcs);
7661 
7662 	return res;
7663 }
7664 
7665 static void manage_dm_interrupts(struct amdgpu_device *adev,
7666 				 struct amdgpu_crtc *acrtc,
7667 				 bool enable)
7668 {
7669 	/*
7670 	 * We have no guarantee that the frontend index maps to the same
7671 	 * backend index - some even map to more than one.
7672 	 *
7673 	 * TODO: Use a different interrupt or check DC itself for the mapping.
7674 	 */
7675 	int irq_type =
7676 		amdgpu_display_crtc_idx_to_irq_type(
7677 			adev,
7678 			acrtc->crtc_id);
7679 
7680 	if (enable) {
7681 		drm_crtc_vblank_on(&acrtc->base);
7682 		amdgpu_irq_get(
7683 			adev,
7684 			&adev->pageflip_irq,
7685 			irq_type);
7686 #if defined(CONFIG_DRM_AMD_SECURE_DISPLAY)
7687 		amdgpu_irq_get(
7688 			adev,
7689 			&adev->vline0_irq,
7690 			irq_type);
7691 #endif
7692 	} else {
7693 #if defined(CONFIG_DRM_AMD_SECURE_DISPLAY)
7694 		amdgpu_irq_put(
7695 			adev,
7696 			&adev->vline0_irq,
7697 			irq_type);
7698 #endif
7699 		amdgpu_irq_put(
7700 			adev,
7701 			&adev->pageflip_irq,
7702 			irq_type);
7703 		drm_crtc_vblank_off(&acrtc->base);
7704 	}
7705 }
7706 
7707 static void dm_update_pflip_irq_state(struct amdgpu_device *adev,
7708 				      struct amdgpu_crtc *acrtc)
7709 {
7710 	int irq_type =
7711 		amdgpu_display_crtc_idx_to_irq_type(adev, acrtc->crtc_id);
7712 
7713 	/**
7714 	 * This reads the current state for the IRQ and force reapplies
7715 	 * the setting to hardware.
7716 	 */
7717 	amdgpu_irq_update(adev, &adev->pageflip_irq, irq_type);
7718 }
7719 
7720 static bool
7721 is_scaling_state_different(const struct dm_connector_state *dm_state,
7722 			   const struct dm_connector_state *old_dm_state)
7723 {
7724 	if (dm_state->scaling != old_dm_state->scaling)
7725 		return true;
7726 	if (!dm_state->underscan_enable && old_dm_state->underscan_enable) {
7727 		if (old_dm_state->underscan_hborder != 0 && old_dm_state->underscan_vborder != 0)
7728 			return true;
7729 	} else  if (dm_state->underscan_enable && !old_dm_state->underscan_enable) {
7730 		if (dm_state->underscan_hborder != 0 && dm_state->underscan_vborder != 0)
7731 			return true;
7732 	} else if (dm_state->underscan_hborder != old_dm_state->underscan_hborder ||
7733 		   dm_state->underscan_vborder != old_dm_state->underscan_vborder)
7734 		return true;
7735 	return false;
7736 }
7737 
7738 static bool is_content_protection_different(struct drm_crtc_state *new_crtc_state,
7739 					    struct drm_crtc_state *old_crtc_state,
7740 					    struct drm_connector_state *new_conn_state,
7741 					    struct drm_connector_state *old_conn_state,
7742 					    const struct drm_connector *connector,
7743 					    struct hdcp_workqueue *hdcp_w)
7744 {
7745 	struct amdgpu_dm_connector *aconnector = to_amdgpu_dm_connector(connector);
7746 	struct dm_connector_state *dm_con_state = to_dm_connector_state(connector->state);
7747 
7748 	pr_debug("[HDCP_DM] connector->index: %x connect_status: %x dpms: %x\n",
7749 		connector->index, connector->status, connector->dpms);
7750 	pr_debug("[HDCP_DM] state protection old: %x new: %x\n",
7751 		old_conn_state->content_protection, new_conn_state->content_protection);
7752 
7753 	if (old_crtc_state)
7754 		pr_debug("[HDCP_DM] old crtc en: %x a: %x m: %x a-chg: %x c-chg: %x\n",
7755 		old_crtc_state->enable,
7756 		old_crtc_state->active,
7757 		old_crtc_state->mode_changed,
7758 		old_crtc_state->active_changed,
7759 		old_crtc_state->connectors_changed);
7760 
7761 	if (new_crtc_state)
7762 		pr_debug("[HDCP_DM] NEW crtc en: %x a: %x m: %x a-chg: %x c-chg: %x\n",
7763 		new_crtc_state->enable,
7764 		new_crtc_state->active,
7765 		new_crtc_state->mode_changed,
7766 		new_crtc_state->active_changed,
7767 		new_crtc_state->connectors_changed);
7768 
7769 	/* hdcp content type change */
7770 	if (old_conn_state->hdcp_content_type != new_conn_state->hdcp_content_type &&
7771 	    new_conn_state->content_protection != DRM_MODE_CONTENT_PROTECTION_UNDESIRED) {
7772 		new_conn_state->content_protection = DRM_MODE_CONTENT_PROTECTION_DESIRED;
7773 		pr_debug("[HDCP_DM] Type0/1 change %s :true\n", __func__);
7774 		return true;
7775 	}
7776 
7777 	/* CP is being re enabled, ignore this */
7778 	if (old_conn_state->content_protection == DRM_MODE_CONTENT_PROTECTION_ENABLED &&
7779 	    new_conn_state->content_protection == DRM_MODE_CONTENT_PROTECTION_DESIRED) {
7780 		if (new_crtc_state && new_crtc_state->mode_changed) {
7781 			new_conn_state->content_protection = DRM_MODE_CONTENT_PROTECTION_DESIRED;
7782 			pr_debug("[HDCP_DM] ENABLED->DESIRED & mode_changed %s :true\n", __func__);
7783 			return true;
7784 		}
7785 		new_conn_state->content_protection = DRM_MODE_CONTENT_PROTECTION_ENABLED;
7786 		pr_debug("[HDCP_DM] ENABLED -> DESIRED %s :false\n", __func__);
7787 		return false;
7788 	}
7789 
7790 	/* S3 resume case, since old state will always be 0 (UNDESIRED) and the restored state will be ENABLED
7791 	 *
7792 	 * Handles:	UNDESIRED -> ENABLED
7793 	 */
7794 	if (old_conn_state->content_protection == DRM_MODE_CONTENT_PROTECTION_UNDESIRED &&
7795 	    new_conn_state->content_protection == DRM_MODE_CONTENT_PROTECTION_ENABLED)
7796 		new_conn_state->content_protection = DRM_MODE_CONTENT_PROTECTION_DESIRED;
7797 
7798 	/* Stream removed and re-enabled
7799 	 *
7800 	 * Can sometimes overlap with the HPD case,
7801 	 * thus set update_hdcp to false to avoid
7802 	 * setting HDCP multiple times.
7803 	 *
7804 	 * Handles:	DESIRED -> DESIRED (Special case)
7805 	 */
7806 	if (!(old_conn_state->crtc && old_conn_state->crtc->enabled) &&
7807 		new_conn_state->crtc && new_conn_state->crtc->enabled &&
7808 		connector->state->content_protection == DRM_MODE_CONTENT_PROTECTION_DESIRED) {
7809 		dm_con_state->update_hdcp = false;
7810 		pr_debug("[HDCP_DM] DESIRED->DESIRED (Stream removed and re-enabled) %s :true\n",
7811 			__func__);
7812 		return true;
7813 	}
7814 
7815 	/* Hot-plug, headless s3, dpms
7816 	 *
7817 	 * Only start HDCP if the display is connected/enabled.
7818 	 * update_hdcp flag will be set to false until the next
7819 	 * HPD comes in.
7820 	 *
7821 	 * Handles:	DESIRED -> DESIRED (Special case)
7822 	 */
7823 	if (dm_con_state->update_hdcp &&
7824 	new_conn_state->content_protection == DRM_MODE_CONTENT_PROTECTION_DESIRED &&
7825 	connector->dpms == DRM_MODE_DPMS_ON && aconnector->dc_sink != NULL) {
7826 		dm_con_state->update_hdcp = false;
7827 		pr_debug("[HDCP_DM] DESIRED->DESIRED (Hot-plug, headless s3, dpms) %s :true\n",
7828 			__func__);
7829 		return true;
7830 	}
7831 
7832 	if (old_conn_state->content_protection == new_conn_state->content_protection) {
7833 		if (new_conn_state->content_protection >= DRM_MODE_CONTENT_PROTECTION_DESIRED) {
7834 			if (new_crtc_state && new_crtc_state->mode_changed) {
7835 				pr_debug("[HDCP_DM] DESIRED->DESIRED or ENABLE->ENABLE mode_change %s :true\n",
7836 					__func__);
7837 				return true;
7838 			}
7839 			pr_debug("[HDCP_DM] DESIRED->DESIRED & ENABLE->ENABLE %s :false\n",
7840 				__func__);
7841 			return false;
7842 		}
7843 
7844 		pr_debug("[HDCP_DM] UNDESIRED->UNDESIRED %s :false\n", __func__);
7845 		return false;
7846 	}
7847 
7848 	if (new_conn_state->content_protection != DRM_MODE_CONTENT_PROTECTION_ENABLED) {
7849 		pr_debug("[HDCP_DM] UNDESIRED->DESIRED or DESIRED->UNDESIRED or ENABLED->UNDESIRED %s :true\n",
7850 			__func__);
7851 		return true;
7852 	}
7853 
7854 	pr_debug("[HDCP_DM] DESIRED->ENABLED %s :false\n", __func__);
7855 	return false;
7856 }
7857 
7858 static void remove_stream(struct amdgpu_device *adev,
7859 			  struct amdgpu_crtc *acrtc,
7860 			  struct dc_stream_state *stream)
7861 {
7862 	/* this is the update mode case */
7863 
7864 	acrtc->otg_inst = -1;
7865 	acrtc->enabled = false;
7866 }
7867 
7868 static void prepare_flip_isr(struct amdgpu_crtc *acrtc)
7869 {
7870 
7871 	assert_spin_locked(&acrtc->base.dev->event_lock);
7872 	WARN_ON(acrtc->event);
7873 
7874 	acrtc->event = acrtc->base.state->event;
7875 
7876 	/* Set the flip status */
7877 	acrtc->pflip_status = AMDGPU_FLIP_SUBMITTED;
7878 
7879 	/* Mark this event as consumed */
7880 	acrtc->base.state->event = NULL;
7881 
7882 	drm_dbg_state(acrtc->base.dev,
7883 		      "crtc:%d, pflip_stat:AMDGPU_FLIP_SUBMITTED\n",
7884 		      acrtc->crtc_id);
7885 }
7886 
7887 static void update_freesync_state_on_stream(
7888 	struct amdgpu_display_manager *dm,
7889 	struct dm_crtc_state *new_crtc_state,
7890 	struct dc_stream_state *new_stream,
7891 	struct dc_plane_state *surface,
7892 	u32 flip_timestamp_in_us)
7893 {
7894 	struct mod_vrr_params vrr_params;
7895 	struct dc_info_packet vrr_infopacket = {0};
7896 	struct amdgpu_device *adev = dm->adev;
7897 	struct amdgpu_crtc *acrtc = to_amdgpu_crtc(new_crtc_state->base.crtc);
7898 	unsigned long flags;
7899 	bool pack_sdp_v1_3 = false;
7900 	struct amdgpu_dm_connector *aconn;
7901 	enum vrr_packet_type packet_type = PACKET_TYPE_VRR;
7902 
7903 	if (!new_stream)
7904 		return;
7905 
7906 	/*
7907 	 * TODO: Determine why min/max totals and vrefresh can be 0 here.
7908 	 * For now it's sufficient to just guard against these conditions.
7909 	 */
7910 
7911 	if (!new_stream->timing.h_total || !new_stream->timing.v_total)
7912 		return;
7913 
7914 	spin_lock_irqsave(&adev_to_drm(adev)->event_lock, flags);
7915 	vrr_params = acrtc->dm_irq_params.vrr_params;
7916 
7917 	if (surface) {
7918 		mod_freesync_handle_preflip(
7919 			dm->freesync_module,
7920 			surface,
7921 			new_stream,
7922 			flip_timestamp_in_us,
7923 			&vrr_params);
7924 
7925 		if (adev->family < AMDGPU_FAMILY_AI &&
7926 		    amdgpu_dm_crtc_vrr_active(new_crtc_state)) {
7927 			mod_freesync_handle_v_update(dm->freesync_module,
7928 						     new_stream, &vrr_params);
7929 
7930 			/* Need to call this before the frame ends. */
7931 			dc_stream_adjust_vmin_vmax(dm->dc,
7932 						   new_crtc_state->stream,
7933 						   &vrr_params.adjust);
7934 		}
7935 	}
7936 
7937 	aconn = (struct amdgpu_dm_connector *)new_stream->dm_stream_context;
7938 
7939 	if (aconn && (aconn->as_type == FREESYNC_TYPE_PCON_IN_WHITELIST || aconn->vsdb_info.replay_mode)) {
7940 		pack_sdp_v1_3 = aconn->pack_sdp_v1_3;
7941 
7942 		if (aconn->vsdb_info.amd_vsdb_version == 1)
7943 			packet_type = PACKET_TYPE_FS_V1;
7944 		else if (aconn->vsdb_info.amd_vsdb_version == 2)
7945 			packet_type = PACKET_TYPE_FS_V2;
7946 		else if (aconn->vsdb_info.amd_vsdb_version == 3)
7947 			packet_type = PACKET_TYPE_FS_V3;
7948 
7949 		mod_build_adaptive_sync_infopacket(new_stream, aconn->as_type, NULL,
7950 					&new_stream->adaptive_sync_infopacket);
7951 	}
7952 
7953 	mod_freesync_build_vrr_infopacket(
7954 		dm->freesync_module,
7955 		new_stream,
7956 		&vrr_params,
7957 		packet_type,
7958 		TRANSFER_FUNC_UNKNOWN,
7959 		&vrr_infopacket,
7960 		pack_sdp_v1_3);
7961 
7962 	new_crtc_state->freesync_vrr_info_changed |=
7963 		(memcmp(&new_crtc_state->vrr_infopacket,
7964 			&vrr_infopacket,
7965 			sizeof(vrr_infopacket)) != 0);
7966 
7967 	acrtc->dm_irq_params.vrr_params = vrr_params;
7968 	new_crtc_state->vrr_infopacket = vrr_infopacket;
7969 
7970 	new_stream->vrr_infopacket = vrr_infopacket;
7971 	new_stream->allow_freesync = mod_freesync_get_freesync_enabled(&vrr_params);
7972 
7973 	if (new_crtc_state->freesync_vrr_info_changed)
7974 		DRM_DEBUG_KMS("VRR packet update: crtc=%u enabled=%d state=%d",
7975 			      new_crtc_state->base.crtc->base.id,
7976 			      (int)new_crtc_state->base.vrr_enabled,
7977 			      (int)vrr_params.state);
7978 
7979 	spin_unlock_irqrestore(&adev_to_drm(adev)->event_lock, flags);
7980 }
7981 
7982 static void update_stream_irq_parameters(
7983 	struct amdgpu_display_manager *dm,
7984 	struct dm_crtc_state *new_crtc_state)
7985 {
7986 	struct dc_stream_state *new_stream = new_crtc_state->stream;
7987 	struct mod_vrr_params vrr_params;
7988 	struct mod_freesync_config config = new_crtc_state->freesync_config;
7989 	struct amdgpu_device *adev = dm->adev;
7990 	struct amdgpu_crtc *acrtc = to_amdgpu_crtc(new_crtc_state->base.crtc);
7991 	unsigned long flags;
7992 
7993 	if (!new_stream)
7994 		return;
7995 
7996 	/*
7997 	 * TODO: Determine why min/max totals and vrefresh can be 0 here.
7998 	 * For now it's sufficient to just guard against these conditions.
7999 	 */
8000 	if (!new_stream->timing.h_total || !new_stream->timing.v_total)
8001 		return;
8002 
8003 	spin_lock_irqsave(&adev_to_drm(adev)->event_lock, flags);
8004 	vrr_params = acrtc->dm_irq_params.vrr_params;
8005 
8006 	if (new_crtc_state->vrr_supported &&
8007 	    config.min_refresh_in_uhz &&
8008 	    config.max_refresh_in_uhz) {
8009 		/*
8010 		 * if freesync compatible mode was set, config.state will be set
8011 		 * in atomic check
8012 		 */
8013 		if (config.state == VRR_STATE_ACTIVE_FIXED && config.fixed_refresh_in_uhz &&
8014 		    (!drm_atomic_crtc_needs_modeset(&new_crtc_state->base) ||
8015 		     new_crtc_state->freesync_config.state == VRR_STATE_ACTIVE_FIXED)) {
8016 			vrr_params.max_refresh_in_uhz = config.max_refresh_in_uhz;
8017 			vrr_params.min_refresh_in_uhz = config.min_refresh_in_uhz;
8018 			vrr_params.fixed_refresh_in_uhz = config.fixed_refresh_in_uhz;
8019 			vrr_params.state = VRR_STATE_ACTIVE_FIXED;
8020 		} else {
8021 			config.state = new_crtc_state->base.vrr_enabled ?
8022 						     VRR_STATE_ACTIVE_VARIABLE :
8023 						     VRR_STATE_INACTIVE;
8024 		}
8025 	} else {
8026 		config.state = VRR_STATE_UNSUPPORTED;
8027 	}
8028 
8029 	mod_freesync_build_vrr_params(dm->freesync_module,
8030 				      new_stream,
8031 				      &config, &vrr_params);
8032 
8033 	new_crtc_state->freesync_config = config;
8034 	/* Copy state for access from DM IRQ handler */
8035 	acrtc->dm_irq_params.freesync_config = config;
8036 	acrtc->dm_irq_params.active_planes = new_crtc_state->active_planes;
8037 	acrtc->dm_irq_params.vrr_params = vrr_params;
8038 	spin_unlock_irqrestore(&adev_to_drm(adev)->event_lock, flags);
8039 }
8040 
8041 static void amdgpu_dm_handle_vrr_transition(struct dm_crtc_state *old_state,
8042 					    struct dm_crtc_state *new_state)
8043 {
8044 	bool old_vrr_active = amdgpu_dm_crtc_vrr_active(old_state);
8045 	bool new_vrr_active = amdgpu_dm_crtc_vrr_active(new_state);
8046 
8047 	if (!old_vrr_active && new_vrr_active) {
8048 		/* Transition VRR inactive -> active:
8049 		 * While VRR is active, we must not disable vblank irq, as a
8050 		 * reenable after disable would compute bogus vblank/pflip
8051 		 * timestamps if it likely happened inside display front-porch.
8052 		 *
8053 		 * We also need vupdate irq for the actual core vblank handling
8054 		 * at end of vblank.
8055 		 */
8056 		WARN_ON(amdgpu_dm_crtc_set_vupdate_irq(new_state->base.crtc, true) != 0);
8057 		WARN_ON(drm_crtc_vblank_get(new_state->base.crtc) != 0);
8058 		DRM_DEBUG_DRIVER("%s: crtc=%u VRR off->on: Get vblank ref\n",
8059 				 __func__, new_state->base.crtc->base.id);
8060 	} else if (old_vrr_active && !new_vrr_active) {
8061 		/* Transition VRR active -> inactive:
8062 		 * Allow vblank irq disable again for fixed refresh rate.
8063 		 */
8064 		WARN_ON(amdgpu_dm_crtc_set_vupdate_irq(new_state->base.crtc, false) != 0);
8065 		drm_crtc_vblank_put(new_state->base.crtc);
8066 		DRM_DEBUG_DRIVER("%s: crtc=%u VRR on->off: Drop vblank ref\n",
8067 				 __func__, new_state->base.crtc->base.id);
8068 	}
8069 }
8070 
8071 static void amdgpu_dm_commit_cursors(struct drm_atomic_state *state)
8072 {
8073 	struct drm_plane *plane;
8074 	struct drm_plane_state *old_plane_state;
8075 	int i;
8076 
8077 	/*
8078 	 * TODO: Make this per-stream so we don't issue redundant updates for
8079 	 * commits with multiple streams.
8080 	 */
8081 	for_each_old_plane_in_state(state, plane, old_plane_state, i)
8082 		if (plane->type == DRM_PLANE_TYPE_CURSOR)
8083 			amdgpu_dm_plane_handle_cursor_update(plane, old_plane_state);
8084 }
8085 
8086 static inline uint32_t get_mem_type(struct drm_framebuffer *fb)
8087 {
8088 	struct amdgpu_bo *abo = gem_to_amdgpu_bo(fb->obj[0]);
8089 
8090 	return abo->tbo.resource ? abo->tbo.resource->mem_type : 0;
8091 }
8092 
8093 static void amdgpu_dm_commit_planes(struct drm_atomic_state *state,
8094 				    struct drm_device *dev,
8095 				    struct amdgpu_display_manager *dm,
8096 				    struct drm_crtc *pcrtc,
8097 				    bool wait_for_vblank)
8098 {
8099 	u32 i;
8100 	u64 timestamp_ns = ktime_get_ns();
8101 	struct drm_plane *plane;
8102 	struct drm_plane_state *old_plane_state, *new_plane_state;
8103 	struct amdgpu_crtc *acrtc_attach = to_amdgpu_crtc(pcrtc);
8104 	struct drm_crtc_state *new_pcrtc_state =
8105 			drm_atomic_get_new_crtc_state(state, pcrtc);
8106 	struct dm_crtc_state *acrtc_state = to_dm_crtc_state(new_pcrtc_state);
8107 	struct dm_crtc_state *dm_old_crtc_state =
8108 			to_dm_crtc_state(drm_atomic_get_old_crtc_state(state, pcrtc));
8109 	int planes_count = 0, vpos, hpos;
8110 	unsigned long flags;
8111 	u32 target_vblank, last_flip_vblank;
8112 	bool vrr_active = amdgpu_dm_crtc_vrr_active(acrtc_state);
8113 	bool cursor_update = false;
8114 	bool pflip_present = false;
8115 	bool dirty_rects_changed = false;
8116 	struct {
8117 		struct dc_surface_update surface_updates[MAX_SURFACES];
8118 		struct dc_plane_info plane_infos[MAX_SURFACES];
8119 		struct dc_scaling_info scaling_infos[MAX_SURFACES];
8120 		struct dc_flip_addrs flip_addrs[MAX_SURFACES];
8121 		struct dc_stream_update stream_update;
8122 	} *bundle;
8123 
8124 	bundle = kzalloc(sizeof(*bundle), GFP_KERNEL);
8125 
8126 	if (!bundle) {
8127 		drm_err(dev, "Failed to allocate update bundle\n");
8128 		goto cleanup;
8129 	}
8130 
8131 	/*
8132 	 * Disable the cursor first if we're disabling all the planes.
8133 	 * It'll remain on the screen after the planes are re-enabled
8134 	 * if we don't.
8135 	 */
8136 	if (acrtc_state->active_planes == 0)
8137 		amdgpu_dm_commit_cursors(state);
8138 
8139 	/* update planes when needed */
8140 	for_each_oldnew_plane_in_state(state, plane, old_plane_state, new_plane_state, i) {
8141 		struct drm_crtc *crtc = new_plane_state->crtc;
8142 		struct drm_crtc_state *new_crtc_state;
8143 		struct drm_framebuffer *fb = new_plane_state->fb;
8144 		struct amdgpu_framebuffer *afb = (struct amdgpu_framebuffer *)fb;
8145 		bool plane_needs_flip;
8146 		struct dc_plane_state *dc_plane;
8147 		struct dm_plane_state *dm_new_plane_state = to_dm_plane_state(new_plane_state);
8148 
8149 		/* Cursor plane is handled after stream updates */
8150 		if (plane->type == DRM_PLANE_TYPE_CURSOR) {
8151 			if ((fb && crtc == pcrtc) ||
8152 			    (old_plane_state->fb && old_plane_state->crtc == pcrtc))
8153 				cursor_update = true;
8154 
8155 			continue;
8156 		}
8157 
8158 		if (!fb || !crtc || pcrtc != crtc)
8159 			continue;
8160 
8161 		new_crtc_state = drm_atomic_get_new_crtc_state(state, crtc);
8162 		if (!new_crtc_state->active)
8163 			continue;
8164 
8165 		dc_plane = dm_new_plane_state->dc_state;
8166 		if (!dc_plane)
8167 			continue;
8168 
8169 		bundle->surface_updates[planes_count].surface = dc_plane;
8170 		if (new_pcrtc_state->color_mgmt_changed) {
8171 			bundle->surface_updates[planes_count].gamma = dc_plane->gamma_correction;
8172 			bundle->surface_updates[planes_count].in_transfer_func = dc_plane->in_transfer_func;
8173 			bundle->surface_updates[planes_count].gamut_remap_matrix = &dc_plane->gamut_remap_matrix;
8174 		}
8175 
8176 		amdgpu_dm_plane_fill_dc_scaling_info(dm->adev, new_plane_state,
8177 				     &bundle->scaling_infos[planes_count]);
8178 
8179 		bundle->surface_updates[planes_count].scaling_info =
8180 			&bundle->scaling_infos[planes_count];
8181 
8182 		plane_needs_flip = old_plane_state->fb && new_plane_state->fb;
8183 
8184 		pflip_present = pflip_present || plane_needs_flip;
8185 
8186 		if (!plane_needs_flip) {
8187 			planes_count += 1;
8188 			continue;
8189 		}
8190 
8191 		fill_dc_plane_info_and_addr(
8192 			dm->adev, new_plane_state,
8193 			afb->tiling_flags,
8194 			&bundle->plane_infos[planes_count],
8195 			&bundle->flip_addrs[planes_count].address,
8196 			afb->tmz_surface, false);
8197 
8198 		drm_dbg_state(state->dev, "plane: id=%d dcc_en=%d\n",
8199 				 new_plane_state->plane->index,
8200 				 bundle->plane_infos[planes_count].dcc.enable);
8201 
8202 		bundle->surface_updates[planes_count].plane_info =
8203 			&bundle->plane_infos[planes_count];
8204 
8205 		if (acrtc_state->stream->link->psr_settings.psr_feature_enabled ||
8206 		    acrtc_state->stream->link->replay_settings.replay_feature_enabled) {
8207 			fill_dc_dirty_rects(plane, old_plane_state,
8208 					    new_plane_state, new_crtc_state,
8209 					    &bundle->flip_addrs[planes_count],
8210 					    &dirty_rects_changed);
8211 
8212 			/*
8213 			 * If the dirty regions changed, PSR-SU need to be disabled temporarily
8214 			 * and enabled it again after dirty regions are stable to avoid video glitch.
8215 			 * PSR-SU will be enabled in vblank_control_worker() if user pause the video
8216 			 * during the PSR-SU was disabled.
8217 			 */
8218 			if (acrtc_state->stream->link->psr_settings.psr_version >= DC_PSR_VERSION_SU_1 &&
8219 			    acrtc_attach->dm_irq_params.allow_psr_entry &&
8220 #ifdef CONFIG_DRM_AMD_SECURE_DISPLAY
8221 			    !amdgpu_dm_crc_window_is_activated(acrtc_state->base.crtc) &&
8222 #endif
8223 			    dirty_rects_changed) {
8224 				mutex_lock(&dm->dc_lock);
8225 				acrtc_state->stream->link->psr_settings.psr_dirty_rects_change_timestamp_ns =
8226 				timestamp_ns;
8227 				if (acrtc_state->stream->link->psr_settings.psr_allow_active)
8228 					amdgpu_dm_psr_disable(acrtc_state->stream);
8229 				mutex_unlock(&dm->dc_lock);
8230 			}
8231 		}
8232 
8233 		/*
8234 		 * Only allow immediate flips for fast updates that don't
8235 		 * change memory domain, FB pitch, DCC state, rotation or
8236 		 * mirroring.
8237 		 *
8238 		 * dm_crtc_helper_atomic_check() only accepts async flips with
8239 		 * fast updates.
8240 		 */
8241 		if (crtc->state->async_flip &&
8242 		    (acrtc_state->update_type != UPDATE_TYPE_FAST ||
8243 		     get_mem_type(old_plane_state->fb) != get_mem_type(fb)))
8244 			drm_warn_once(state->dev,
8245 				      "[PLANE:%d:%s] async flip with non-fast update\n",
8246 				      plane->base.id, plane->name);
8247 
8248 		bundle->flip_addrs[planes_count].flip_immediate =
8249 			crtc->state->async_flip &&
8250 			acrtc_state->update_type == UPDATE_TYPE_FAST &&
8251 			get_mem_type(old_plane_state->fb) == get_mem_type(fb);
8252 
8253 		timestamp_ns = ktime_get_ns();
8254 		bundle->flip_addrs[planes_count].flip_timestamp_in_us = div_u64(timestamp_ns, 1000);
8255 		bundle->surface_updates[planes_count].flip_addr = &bundle->flip_addrs[planes_count];
8256 		bundle->surface_updates[planes_count].surface = dc_plane;
8257 
8258 		if (!bundle->surface_updates[planes_count].surface) {
8259 			DRM_ERROR("No surface for CRTC: id=%d\n",
8260 					acrtc_attach->crtc_id);
8261 			continue;
8262 		}
8263 
8264 		if (plane == pcrtc->primary)
8265 			update_freesync_state_on_stream(
8266 				dm,
8267 				acrtc_state,
8268 				acrtc_state->stream,
8269 				dc_plane,
8270 				bundle->flip_addrs[planes_count].flip_timestamp_in_us);
8271 
8272 		drm_dbg_state(state->dev, "%s Flipping to hi: 0x%x, low: 0x%x\n",
8273 				 __func__,
8274 				 bundle->flip_addrs[planes_count].address.grph.addr.high_part,
8275 				 bundle->flip_addrs[planes_count].address.grph.addr.low_part);
8276 
8277 		planes_count += 1;
8278 
8279 	}
8280 
8281 	if (pflip_present) {
8282 		if (!vrr_active) {
8283 			/* Use old throttling in non-vrr fixed refresh rate mode
8284 			 * to keep flip scheduling based on target vblank counts
8285 			 * working in a backwards compatible way, e.g., for
8286 			 * clients using the GLX_OML_sync_control extension or
8287 			 * DRI3/Present extension with defined target_msc.
8288 			 */
8289 			last_flip_vblank = amdgpu_get_vblank_counter_kms(pcrtc);
8290 		} else {
8291 			/* For variable refresh rate mode only:
8292 			 * Get vblank of last completed flip to avoid > 1 vrr
8293 			 * flips per video frame by use of throttling, but allow
8294 			 * flip programming anywhere in the possibly large
8295 			 * variable vrr vblank interval for fine-grained flip
8296 			 * timing control and more opportunity to avoid stutter
8297 			 * on late submission of flips.
8298 			 */
8299 			spin_lock_irqsave(&pcrtc->dev->event_lock, flags);
8300 			last_flip_vblank = acrtc_attach->dm_irq_params.last_flip_vblank;
8301 			spin_unlock_irqrestore(&pcrtc->dev->event_lock, flags);
8302 		}
8303 
8304 		target_vblank = last_flip_vblank + wait_for_vblank;
8305 
8306 		/*
8307 		 * Wait until we're out of the vertical blank period before the one
8308 		 * targeted by the flip
8309 		 */
8310 		while ((acrtc_attach->enabled &&
8311 			(amdgpu_display_get_crtc_scanoutpos(dm->ddev, acrtc_attach->crtc_id,
8312 							    0, &vpos, &hpos, NULL,
8313 							    NULL, &pcrtc->hwmode)
8314 			 & (DRM_SCANOUTPOS_VALID | DRM_SCANOUTPOS_IN_VBLANK)) ==
8315 			(DRM_SCANOUTPOS_VALID | DRM_SCANOUTPOS_IN_VBLANK) &&
8316 			(int)(target_vblank -
8317 			  amdgpu_get_vblank_counter_kms(pcrtc)) > 0)) {
8318 			usleep_range(1000, 1100);
8319 		}
8320 
8321 		/**
8322 		 * Prepare the flip event for the pageflip interrupt to handle.
8323 		 *
8324 		 * This only works in the case where we've already turned on the
8325 		 * appropriate hardware blocks (eg. HUBP) so in the transition case
8326 		 * from 0 -> n planes we have to skip a hardware generated event
8327 		 * and rely on sending it from software.
8328 		 */
8329 		if (acrtc_attach->base.state->event &&
8330 		    acrtc_state->active_planes > 0) {
8331 			drm_crtc_vblank_get(pcrtc);
8332 
8333 			spin_lock_irqsave(&pcrtc->dev->event_lock, flags);
8334 
8335 			WARN_ON(acrtc_attach->pflip_status != AMDGPU_FLIP_NONE);
8336 			prepare_flip_isr(acrtc_attach);
8337 
8338 			spin_unlock_irqrestore(&pcrtc->dev->event_lock, flags);
8339 		}
8340 
8341 		if (acrtc_state->stream) {
8342 			if (acrtc_state->freesync_vrr_info_changed)
8343 				bundle->stream_update.vrr_infopacket =
8344 					&acrtc_state->stream->vrr_infopacket;
8345 		}
8346 	} else if (cursor_update && acrtc_state->active_planes > 0 &&
8347 		   acrtc_attach->base.state->event) {
8348 		drm_crtc_vblank_get(pcrtc);
8349 
8350 		spin_lock_irqsave(&pcrtc->dev->event_lock, flags);
8351 
8352 		acrtc_attach->event = acrtc_attach->base.state->event;
8353 		acrtc_attach->base.state->event = NULL;
8354 
8355 		spin_unlock_irqrestore(&pcrtc->dev->event_lock, flags);
8356 	}
8357 
8358 	/* Update the planes if changed or disable if we don't have any. */
8359 	if ((planes_count || acrtc_state->active_planes == 0) &&
8360 		acrtc_state->stream) {
8361 		/*
8362 		 * If PSR or idle optimizations are enabled then flush out
8363 		 * any pending work before hardware programming.
8364 		 */
8365 		if (dm->vblank_control_workqueue)
8366 			flush_workqueue(dm->vblank_control_workqueue);
8367 
8368 		bundle->stream_update.stream = acrtc_state->stream;
8369 		if (new_pcrtc_state->mode_changed) {
8370 			bundle->stream_update.src = acrtc_state->stream->src;
8371 			bundle->stream_update.dst = acrtc_state->stream->dst;
8372 		}
8373 
8374 		if (new_pcrtc_state->color_mgmt_changed) {
8375 			/*
8376 			 * TODO: This isn't fully correct since we've actually
8377 			 * already modified the stream in place.
8378 			 */
8379 			bundle->stream_update.gamut_remap =
8380 				&acrtc_state->stream->gamut_remap_matrix;
8381 			bundle->stream_update.output_csc_transform =
8382 				&acrtc_state->stream->csc_color_matrix;
8383 			bundle->stream_update.out_transfer_func =
8384 				acrtc_state->stream->out_transfer_func;
8385 		}
8386 
8387 		acrtc_state->stream->abm_level = acrtc_state->abm_level;
8388 		if (acrtc_state->abm_level != dm_old_crtc_state->abm_level)
8389 			bundle->stream_update.abm_level = &acrtc_state->abm_level;
8390 
8391 		mutex_lock(&dm->dc_lock);
8392 		if ((acrtc_state->update_type > UPDATE_TYPE_FAST) &&
8393 				acrtc_state->stream->link->psr_settings.psr_allow_active)
8394 			amdgpu_dm_psr_disable(acrtc_state->stream);
8395 		mutex_unlock(&dm->dc_lock);
8396 
8397 		/*
8398 		 * If FreeSync state on the stream has changed then we need to
8399 		 * re-adjust the min/max bounds now that DC doesn't handle this
8400 		 * as part of commit.
8401 		 */
8402 		if (is_dc_timing_adjust_needed(dm_old_crtc_state, acrtc_state)) {
8403 			spin_lock_irqsave(&pcrtc->dev->event_lock, flags);
8404 			dc_stream_adjust_vmin_vmax(
8405 				dm->dc, acrtc_state->stream,
8406 				&acrtc_attach->dm_irq_params.vrr_params.adjust);
8407 			spin_unlock_irqrestore(&pcrtc->dev->event_lock, flags);
8408 		}
8409 		mutex_lock(&dm->dc_lock);
8410 		update_planes_and_stream_adapter(dm->dc,
8411 					 acrtc_state->update_type,
8412 					 planes_count,
8413 					 acrtc_state->stream,
8414 					 &bundle->stream_update,
8415 					 bundle->surface_updates);
8416 
8417 		/**
8418 		 * Enable or disable the interrupts on the backend.
8419 		 *
8420 		 * Most pipes are put into power gating when unused.
8421 		 *
8422 		 * When power gating is enabled on a pipe we lose the
8423 		 * interrupt enablement state when power gating is disabled.
8424 		 *
8425 		 * So we need to update the IRQ control state in hardware
8426 		 * whenever the pipe turns on (since it could be previously
8427 		 * power gated) or off (since some pipes can't be power gated
8428 		 * on some ASICs).
8429 		 */
8430 		if (dm_old_crtc_state->active_planes != acrtc_state->active_planes)
8431 			dm_update_pflip_irq_state(drm_to_adev(dev),
8432 						  acrtc_attach);
8433 
8434 		if ((acrtc_state->update_type > UPDATE_TYPE_FAST) &&
8435 				acrtc_state->stream->link->psr_settings.psr_version != DC_PSR_VERSION_UNSUPPORTED &&
8436 				!acrtc_state->stream->link->psr_settings.psr_feature_enabled)
8437 			amdgpu_dm_link_setup_psr(acrtc_state->stream);
8438 
8439 		/* Decrement skip count when PSR is enabled and we're doing fast updates. */
8440 		if (acrtc_state->update_type == UPDATE_TYPE_FAST &&
8441 		    acrtc_state->stream->link->psr_settings.psr_feature_enabled) {
8442 			struct amdgpu_dm_connector *aconn =
8443 				(struct amdgpu_dm_connector *)acrtc_state->stream->dm_stream_context;
8444 
8445 			if (aconn->psr_skip_count > 0)
8446 				aconn->psr_skip_count--;
8447 
8448 			/* Allow PSR when skip count is 0. */
8449 			acrtc_attach->dm_irq_params.allow_psr_entry = !aconn->psr_skip_count;
8450 
8451 			/*
8452 			 * If sink supports PSR SU, there is no need to rely on
8453 			 * a vblank event disable request to enable PSR. PSR SU
8454 			 * can be enabled immediately once OS demonstrates an
8455 			 * adequate number of fast atomic commits to notify KMD
8456 			 * of update events. See `vblank_control_worker()`.
8457 			 */
8458 			if (acrtc_state->stream->link->psr_settings.psr_version >= DC_PSR_VERSION_SU_1 &&
8459 			    acrtc_attach->dm_irq_params.allow_psr_entry &&
8460 #ifdef CONFIG_DRM_AMD_SECURE_DISPLAY
8461 			    !amdgpu_dm_crc_window_is_activated(acrtc_state->base.crtc) &&
8462 #endif
8463 			    !acrtc_state->stream->link->psr_settings.psr_allow_active &&
8464 			    (timestamp_ns -
8465 			    acrtc_state->stream->link->psr_settings.psr_dirty_rects_change_timestamp_ns) >
8466 			    500000000)
8467 				amdgpu_dm_psr_enable(acrtc_state->stream);
8468 		} else {
8469 			acrtc_attach->dm_irq_params.allow_psr_entry = false;
8470 		}
8471 
8472 		mutex_unlock(&dm->dc_lock);
8473 	}
8474 
8475 	/*
8476 	 * Update cursor state *after* programming all the planes.
8477 	 * This avoids redundant programming in the case where we're going
8478 	 * to be disabling a single plane - those pipes are being disabled.
8479 	 */
8480 	if (acrtc_state->active_planes)
8481 		amdgpu_dm_commit_cursors(state);
8482 
8483 cleanup:
8484 	kfree(bundle);
8485 }
8486 
8487 static void amdgpu_dm_commit_audio(struct drm_device *dev,
8488 				   struct drm_atomic_state *state)
8489 {
8490 	struct amdgpu_device *adev = drm_to_adev(dev);
8491 	struct amdgpu_dm_connector *aconnector;
8492 	struct drm_connector *connector;
8493 	struct drm_connector_state *old_con_state, *new_con_state;
8494 	struct drm_crtc_state *new_crtc_state;
8495 	struct dm_crtc_state *new_dm_crtc_state;
8496 	const struct dc_stream_status *status;
8497 	int i, inst;
8498 
8499 	/* Notify device removals. */
8500 	for_each_oldnew_connector_in_state(state, connector, old_con_state, new_con_state, i) {
8501 		if (old_con_state->crtc != new_con_state->crtc) {
8502 			/* CRTC changes require notification. */
8503 			goto notify;
8504 		}
8505 
8506 		if (!new_con_state->crtc)
8507 			continue;
8508 
8509 		new_crtc_state = drm_atomic_get_new_crtc_state(
8510 			state, new_con_state->crtc);
8511 
8512 		if (!new_crtc_state)
8513 			continue;
8514 
8515 		if (!drm_atomic_crtc_needs_modeset(new_crtc_state))
8516 			continue;
8517 
8518 notify:
8519 		aconnector = to_amdgpu_dm_connector(connector);
8520 
8521 		mutex_lock(&adev->dm.audio_lock);
8522 		inst = aconnector->audio_inst;
8523 		aconnector->audio_inst = -1;
8524 		mutex_unlock(&adev->dm.audio_lock);
8525 
8526 		amdgpu_dm_audio_eld_notify(adev, inst);
8527 	}
8528 
8529 	/* Notify audio device additions. */
8530 	for_each_new_connector_in_state(state, connector, new_con_state, i) {
8531 		if (!new_con_state->crtc)
8532 			continue;
8533 
8534 		new_crtc_state = drm_atomic_get_new_crtc_state(
8535 			state, new_con_state->crtc);
8536 
8537 		if (!new_crtc_state)
8538 			continue;
8539 
8540 		if (!drm_atomic_crtc_needs_modeset(new_crtc_state))
8541 			continue;
8542 
8543 		new_dm_crtc_state = to_dm_crtc_state(new_crtc_state);
8544 		if (!new_dm_crtc_state->stream)
8545 			continue;
8546 
8547 		status = dc_stream_get_status(new_dm_crtc_state->stream);
8548 		if (!status)
8549 			continue;
8550 
8551 		aconnector = to_amdgpu_dm_connector(connector);
8552 
8553 		mutex_lock(&adev->dm.audio_lock);
8554 		inst = status->audio_inst;
8555 		aconnector->audio_inst = inst;
8556 		mutex_unlock(&adev->dm.audio_lock);
8557 
8558 		amdgpu_dm_audio_eld_notify(adev, inst);
8559 	}
8560 }
8561 
8562 /*
8563  * amdgpu_dm_crtc_copy_transient_flags - copy mirrored flags from DRM to DC
8564  * @crtc_state: the DRM CRTC state
8565  * @stream_state: the DC stream state.
8566  *
8567  * Copy the mirrored transient state flags from DRM, to DC. It is used to bring
8568  * a dc_stream_state's flags in sync with a drm_crtc_state's flags.
8569  */
8570 static void amdgpu_dm_crtc_copy_transient_flags(struct drm_crtc_state *crtc_state,
8571 						struct dc_stream_state *stream_state)
8572 {
8573 	stream_state->mode_changed = drm_atomic_crtc_needs_modeset(crtc_state);
8574 }
8575 
8576 static void amdgpu_dm_commit_streams(struct drm_atomic_state *state,
8577 					struct dc_state *dc_state)
8578 {
8579 	struct drm_device *dev = state->dev;
8580 	struct amdgpu_device *adev = drm_to_adev(dev);
8581 	struct amdgpu_display_manager *dm = &adev->dm;
8582 	struct drm_crtc *crtc;
8583 	struct drm_crtc_state *old_crtc_state, *new_crtc_state;
8584 	struct dm_crtc_state *dm_old_crtc_state, *dm_new_crtc_state;
8585 	bool mode_set_reset_required = false;
8586 	u32 i;
8587 
8588 	for_each_oldnew_crtc_in_state(state, crtc, old_crtc_state,
8589 				      new_crtc_state, i) {
8590 		struct amdgpu_crtc *acrtc = to_amdgpu_crtc(crtc);
8591 
8592 		dm_old_crtc_state = to_dm_crtc_state(old_crtc_state);
8593 
8594 		if (old_crtc_state->active &&
8595 		    (!new_crtc_state->active ||
8596 		     drm_atomic_crtc_needs_modeset(new_crtc_state))) {
8597 			manage_dm_interrupts(adev, acrtc, false);
8598 			dc_stream_release(dm_old_crtc_state->stream);
8599 		}
8600 	}
8601 
8602 	drm_atomic_helper_calc_timestamping_constants(state);
8603 
8604 	/* update changed items */
8605 	for_each_oldnew_crtc_in_state(state, crtc, old_crtc_state, new_crtc_state, i) {
8606 		struct amdgpu_crtc *acrtc = to_amdgpu_crtc(crtc);
8607 
8608 		dm_new_crtc_state = to_dm_crtc_state(new_crtc_state);
8609 		dm_old_crtc_state = to_dm_crtc_state(old_crtc_state);
8610 
8611 		drm_dbg_state(state->dev,
8612 			"amdgpu_crtc id:%d crtc_state_flags: enable:%d, active:%d, planes_changed:%d, mode_changed:%d,active_changed:%d,connectors_changed:%d\n",
8613 			acrtc->crtc_id,
8614 			new_crtc_state->enable,
8615 			new_crtc_state->active,
8616 			new_crtc_state->planes_changed,
8617 			new_crtc_state->mode_changed,
8618 			new_crtc_state->active_changed,
8619 			new_crtc_state->connectors_changed);
8620 
8621 		/* Disable cursor if disabling crtc */
8622 		if (old_crtc_state->active && !new_crtc_state->active) {
8623 			struct dc_cursor_position position;
8624 
8625 			memset(&position, 0, sizeof(position));
8626 			mutex_lock(&dm->dc_lock);
8627 			dc_stream_set_cursor_position(dm_old_crtc_state->stream, &position);
8628 			mutex_unlock(&dm->dc_lock);
8629 		}
8630 
8631 		/* Copy all transient state flags into dc state */
8632 		if (dm_new_crtc_state->stream) {
8633 			amdgpu_dm_crtc_copy_transient_flags(&dm_new_crtc_state->base,
8634 							    dm_new_crtc_state->stream);
8635 		}
8636 
8637 		/* handles headless hotplug case, updating new_state and
8638 		 * aconnector as needed
8639 		 */
8640 
8641 		if (amdgpu_dm_crtc_modeset_required(new_crtc_state, dm_new_crtc_state->stream, dm_old_crtc_state->stream)) {
8642 
8643 			DRM_DEBUG_ATOMIC("Atomic commit: SET crtc id %d: [%p]\n", acrtc->crtc_id, acrtc);
8644 
8645 			if (!dm_new_crtc_state->stream) {
8646 				/*
8647 				 * this could happen because of issues with
8648 				 * userspace notifications delivery.
8649 				 * In this case userspace tries to set mode on
8650 				 * display which is disconnected in fact.
8651 				 * dc_sink is NULL in this case on aconnector.
8652 				 * We expect reset mode will come soon.
8653 				 *
8654 				 * This can also happen when unplug is done
8655 				 * during resume sequence ended
8656 				 *
8657 				 * In this case, we want to pretend we still
8658 				 * have a sink to keep the pipe running so that
8659 				 * hw state is consistent with the sw state
8660 				 */
8661 				DRM_DEBUG_DRIVER("%s: Failed to create new stream for crtc %d\n",
8662 						__func__, acrtc->base.base.id);
8663 				continue;
8664 			}
8665 
8666 			if (dm_old_crtc_state->stream)
8667 				remove_stream(adev, acrtc, dm_old_crtc_state->stream);
8668 
8669 			pm_runtime_get_noresume(dev->dev);
8670 
8671 			acrtc->enabled = true;
8672 			acrtc->hw_mode = new_crtc_state->mode;
8673 			crtc->hwmode = new_crtc_state->mode;
8674 			mode_set_reset_required = true;
8675 		} else if (modereset_required(new_crtc_state)) {
8676 			DRM_DEBUG_ATOMIC("Atomic commit: RESET. crtc id %d:[%p]\n", acrtc->crtc_id, acrtc);
8677 			/* i.e. reset mode */
8678 			if (dm_old_crtc_state->stream)
8679 				remove_stream(adev, acrtc, dm_old_crtc_state->stream);
8680 
8681 			mode_set_reset_required = true;
8682 		}
8683 	} /* for_each_crtc_in_state() */
8684 
8685 	/* if there mode set or reset, disable eDP PSR */
8686 	if (mode_set_reset_required) {
8687 		if (dm->vblank_control_workqueue)
8688 			flush_workqueue(dm->vblank_control_workqueue);
8689 
8690 		amdgpu_dm_psr_disable_all(dm);
8691 	}
8692 
8693 	dm_enable_per_frame_crtc_master_sync(dc_state);
8694 	mutex_lock(&dm->dc_lock);
8695 	WARN_ON(!dc_commit_streams(dm->dc, dc_state->streams, dc_state->stream_count));
8696 
8697 	/* Allow idle optimization when vblank count is 0 for display off */
8698 	if (dm->active_vblank_irq_count == 0)
8699 		dc_allow_idle_optimizations(dm->dc, true);
8700 	mutex_unlock(&dm->dc_lock);
8701 
8702 	for_each_new_crtc_in_state(state, crtc, new_crtc_state, i) {
8703 		struct amdgpu_crtc *acrtc = to_amdgpu_crtc(crtc);
8704 
8705 		dm_new_crtc_state = to_dm_crtc_state(new_crtc_state);
8706 
8707 		if (dm_new_crtc_state->stream != NULL) {
8708 			const struct dc_stream_status *status =
8709 					dc_stream_get_status(dm_new_crtc_state->stream);
8710 
8711 			if (!status)
8712 				status = dc_stream_get_status_from_state(dc_state,
8713 									 dm_new_crtc_state->stream);
8714 			if (!status)
8715 				drm_err(dev,
8716 					"got no status for stream %p on acrtc%p\n",
8717 					dm_new_crtc_state->stream, acrtc);
8718 			else
8719 				acrtc->otg_inst = status->primary_otg_inst;
8720 		}
8721 	}
8722 }
8723 
8724 /**
8725  * amdgpu_dm_atomic_commit_tail() - AMDgpu DM's commit tail implementation.
8726  * @state: The atomic state to commit
8727  *
8728  * This will tell DC to commit the constructed DC state from atomic_check,
8729  * programming the hardware. Any failures here implies a hardware failure, since
8730  * atomic check should have filtered anything non-kosher.
8731  */
8732 static void amdgpu_dm_atomic_commit_tail(struct drm_atomic_state *state)
8733 {
8734 	struct drm_device *dev = state->dev;
8735 	struct amdgpu_device *adev = drm_to_adev(dev);
8736 	struct amdgpu_display_manager *dm = &adev->dm;
8737 	struct dm_atomic_state *dm_state;
8738 	struct dc_state *dc_state = NULL;
8739 	u32 i, j;
8740 	struct drm_crtc *crtc;
8741 	struct drm_crtc_state *old_crtc_state, *new_crtc_state;
8742 	unsigned long flags;
8743 	bool wait_for_vblank = true;
8744 	struct drm_connector *connector;
8745 	struct drm_connector_state *old_con_state, *new_con_state;
8746 	struct dm_crtc_state *dm_old_crtc_state, *dm_new_crtc_state;
8747 	int crtc_disable_count = 0;
8748 
8749 	trace_amdgpu_dm_atomic_commit_tail_begin(state);
8750 
8751 	if (dm->dc->caps.ips_support) {
8752 		for_each_oldnew_connector_in_state(state, connector, old_con_state, new_con_state, i) {
8753 			if (new_con_state->crtc &&
8754 				new_con_state->crtc->state->active &&
8755 				drm_atomic_crtc_needs_modeset(new_con_state->crtc->state)) {
8756 				dc_dmub_srv_exit_low_power_state(dm->dc);
8757 				break;
8758 			}
8759 		}
8760 	}
8761 
8762 	drm_atomic_helper_update_legacy_modeset_state(dev, state);
8763 	drm_dp_mst_atomic_wait_for_dependencies(state);
8764 
8765 	dm_state = dm_atomic_get_new_state(state);
8766 	if (dm_state && dm_state->context) {
8767 		dc_state = dm_state->context;
8768 		amdgpu_dm_commit_streams(state, dc_state);
8769 	}
8770 
8771 	for_each_oldnew_connector_in_state(state, connector, old_con_state, new_con_state, i) {
8772 		struct dm_connector_state *dm_new_con_state = to_dm_connector_state(new_con_state);
8773 		struct amdgpu_crtc *acrtc = to_amdgpu_crtc(dm_new_con_state->base.crtc);
8774 		struct amdgpu_dm_connector *aconnector = to_amdgpu_dm_connector(connector);
8775 
8776 		if (!adev->dm.hdcp_workqueue)
8777 			continue;
8778 
8779 		pr_debug("[HDCP_DM] -------------- i : %x ----------\n", i);
8780 
8781 		if (!connector)
8782 			continue;
8783 
8784 		pr_debug("[HDCP_DM] connector->index: %x connect_status: %x dpms: %x\n",
8785 			connector->index, connector->status, connector->dpms);
8786 		pr_debug("[HDCP_DM] state protection old: %x new: %x\n",
8787 			old_con_state->content_protection, new_con_state->content_protection);
8788 
8789 		if (aconnector->dc_sink) {
8790 			if (aconnector->dc_sink->sink_signal != SIGNAL_TYPE_VIRTUAL &&
8791 				aconnector->dc_sink->sink_signal != SIGNAL_TYPE_NONE) {
8792 				pr_debug("[HDCP_DM] pipe_ctx dispname=%s\n",
8793 				aconnector->dc_sink->edid_caps.display_name);
8794 			}
8795 		}
8796 
8797 		new_crtc_state = NULL;
8798 		old_crtc_state = NULL;
8799 
8800 		if (acrtc) {
8801 			new_crtc_state = drm_atomic_get_new_crtc_state(state, &acrtc->base);
8802 			old_crtc_state = drm_atomic_get_old_crtc_state(state, &acrtc->base);
8803 		}
8804 
8805 		if (old_crtc_state)
8806 			pr_debug("old crtc en: %x a: %x m: %x a-chg: %x c-chg: %x\n",
8807 			old_crtc_state->enable,
8808 			old_crtc_state->active,
8809 			old_crtc_state->mode_changed,
8810 			old_crtc_state->active_changed,
8811 			old_crtc_state->connectors_changed);
8812 
8813 		if (new_crtc_state)
8814 			pr_debug("NEW crtc en: %x a: %x m: %x a-chg: %x c-chg: %x\n",
8815 			new_crtc_state->enable,
8816 			new_crtc_state->active,
8817 			new_crtc_state->mode_changed,
8818 			new_crtc_state->active_changed,
8819 			new_crtc_state->connectors_changed);
8820 	}
8821 
8822 	for_each_oldnew_connector_in_state(state, connector, old_con_state, new_con_state, i) {
8823 		struct dm_connector_state *dm_new_con_state = to_dm_connector_state(new_con_state);
8824 		struct amdgpu_crtc *acrtc = to_amdgpu_crtc(dm_new_con_state->base.crtc);
8825 		struct amdgpu_dm_connector *aconnector = to_amdgpu_dm_connector(connector);
8826 
8827 		if (!adev->dm.hdcp_workqueue)
8828 			continue;
8829 
8830 		new_crtc_state = NULL;
8831 		old_crtc_state = NULL;
8832 
8833 		if (acrtc) {
8834 			new_crtc_state = drm_atomic_get_new_crtc_state(state, &acrtc->base);
8835 			old_crtc_state = drm_atomic_get_old_crtc_state(state, &acrtc->base);
8836 		}
8837 
8838 		dm_new_crtc_state = to_dm_crtc_state(new_crtc_state);
8839 
8840 		if (dm_new_crtc_state && dm_new_crtc_state->stream == NULL &&
8841 		    connector->state->content_protection == DRM_MODE_CONTENT_PROTECTION_ENABLED) {
8842 			hdcp_reset_display(adev->dm.hdcp_workqueue, aconnector->dc_link->link_index);
8843 			new_con_state->content_protection = DRM_MODE_CONTENT_PROTECTION_DESIRED;
8844 			dm_new_con_state->update_hdcp = true;
8845 			continue;
8846 		}
8847 
8848 		if (is_content_protection_different(new_crtc_state, old_crtc_state, new_con_state,
8849 											old_con_state, connector, adev->dm.hdcp_workqueue)) {
8850 			/* when display is unplugged from mst hub, connctor will
8851 			 * be destroyed within dm_dp_mst_connector_destroy. connector
8852 			 * hdcp perperties, like type, undesired, desired, enabled,
8853 			 * will be lost. So, save hdcp properties into hdcp_work within
8854 			 * amdgpu_dm_atomic_commit_tail. if the same display is
8855 			 * plugged back with same display index, its hdcp properties
8856 			 * will be retrieved from hdcp_work within dm_dp_mst_get_modes
8857 			 */
8858 
8859 			bool enable_encryption = false;
8860 
8861 			if (new_con_state->content_protection == DRM_MODE_CONTENT_PROTECTION_DESIRED)
8862 				enable_encryption = true;
8863 
8864 			if (aconnector->dc_link && aconnector->dc_sink &&
8865 				aconnector->dc_link->type == dc_connection_mst_branch) {
8866 				struct hdcp_workqueue *hdcp_work = adev->dm.hdcp_workqueue;
8867 				struct hdcp_workqueue *hdcp_w =
8868 					&hdcp_work[aconnector->dc_link->link_index];
8869 
8870 				hdcp_w->hdcp_content_type[connector->index] =
8871 					new_con_state->hdcp_content_type;
8872 				hdcp_w->content_protection[connector->index] =
8873 					new_con_state->content_protection;
8874 			}
8875 
8876 			if (new_crtc_state && new_crtc_state->mode_changed &&
8877 				new_con_state->content_protection >= DRM_MODE_CONTENT_PROTECTION_DESIRED)
8878 				enable_encryption = true;
8879 
8880 			DRM_INFO("[HDCP_DM] hdcp_update_display enable_encryption = %x\n", enable_encryption);
8881 
8882 			hdcp_update_display(
8883 				adev->dm.hdcp_workqueue, aconnector->dc_link->link_index, aconnector,
8884 				new_con_state->hdcp_content_type, enable_encryption);
8885 		}
8886 	}
8887 
8888 	/* Handle connector state changes */
8889 	for_each_oldnew_connector_in_state(state, connector, old_con_state, new_con_state, i) {
8890 		struct dm_connector_state *dm_new_con_state = to_dm_connector_state(new_con_state);
8891 		struct dm_connector_state *dm_old_con_state = to_dm_connector_state(old_con_state);
8892 		struct amdgpu_crtc *acrtc = to_amdgpu_crtc(dm_new_con_state->base.crtc);
8893 		struct dc_surface_update *dummy_updates;
8894 		struct dc_stream_update stream_update;
8895 		struct dc_info_packet hdr_packet;
8896 		struct dc_stream_status *status = NULL;
8897 		bool abm_changed, hdr_changed, scaling_changed;
8898 
8899 		memset(&stream_update, 0, sizeof(stream_update));
8900 
8901 		if (acrtc) {
8902 			new_crtc_state = drm_atomic_get_new_crtc_state(state, &acrtc->base);
8903 			old_crtc_state = drm_atomic_get_old_crtc_state(state, &acrtc->base);
8904 		}
8905 
8906 		/* Skip any modesets/resets */
8907 		if (!acrtc || drm_atomic_crtc_needs_modeset(new_crtc_state))
8908 			continue;
8909 
8910 		dm_new_crtc_state = to_dm_crtc_state(new_crtc_state);
8911 		dm_old_crtc_state = to_dm_crtc_state(old_crtc_state);
8912 
8913 		scaling_changed = is_scaling_state_different(dm_new_con_state,
8914 							     dm_old_con_state);
8915 
8916 		abm_changed = dm_new_crtc_state->abm_level !=
8917 			      dm_old_crtc_state->abm_level;
8918 
8919 		hdr_changed =
8920 			!drm_connector_atomic_hdr_metadata_equal(old_con_state, new_con_state);
8921 
8922 		if (!scaling_changed && !abm_changed && !hdr_changed)
8923 			continue;
8924 
8925 		stream_update.stream = dm_new_crtc_state->stream;
8926 		if (scaling_changed) {
8927 			update_stream_scaling_settings(&dm_new_con_state->base.crtc->mode,
8928 					dm_new_con_state, dm_new_crtc_state->stream);
8929 
8930 			stream_update.src = dm_new_crtc_state->stream->src;
8931 			stream_update.dst = dm_new_crtc_state->stream->dst;
8932 		}
8933 
8934 		if (abm_changed) {
8935 			dm_new_crtc_state->stream->abm_level = dm_new_crtc_state->abm_level;
8936 
8937 			stream_update.abm_level = &dm_new_crtc_state->abm_level;
8938 		}
8939 
8940 		if (hdr_changed) {
8941 			fill_hdr_info_packet(new_con_state, &hdr_packet);
8942 			stream_update.hdr_static_metadata = &hdr_packet;
8943 		}
8944 
8945 		status = dc_stream_get_status(dm_new_crtc_state->stream);
8946 
8947 		if (WARN_ON(!status))
8948 			continue;
8949 
8950 		WARN_ON(!status->plane_count);
8951 
8952 		/*
8953 		 * TODO: DC refuses to perform stream updates without a dc_surface_update.
8954 		 * Here we create an empty update on each plane.
8955 		 * To fix this, DC should permit updating only stream properties.
8956 		 */
8957 		dummy_updates = kzalloc(sizeof(struct dc_surface_update) * MAX_SURFACES, GFP_ATOMIC);
8958 		for (j = 0; j < status->plane_count; j++)
8959 			dummy_updates[j].surface = status->plane_states[0];
8960 
8961 
8962 		mutex_lock(&dm->dc_lock);
8963 		dc_update_planes_and_stream(dm->dc,
8964 					    dummy_updates,
8965 					    status->plane_count,
8966 					    dm_new_crtc_state->stream,
8967 					    &stream_update);
8968 		mutex_unlock(&dm->dc_lock);
8969 		kfree(dummy_updates);
8970 	}
8971 
8972 	/**
8973 	 * Enable interrupts for CRTCs that are newly enabled or went through
8974 	 * a modeset. It was intentionally deferred until after the front end
8975 	 * state was modified to wait until the OTG was on and so the IRQ
8976 	 * handlers didn't access stale or invalid state.
8977 	 */
8978 	for_each_oldnew_crtc_in_state(state, crtc, old_crtc_state, new_crtc_state, i) {
8979 		struct amdgpu_crtc *acrtc = to_amdgpu_crtc(crtc);
8980 #ifdef CONFIG_DEBUG_FS
8981 		enum amdgpu_dm_pipe_crc_source cur_crc_src;
8982 #endif
8983 		/* Count number of newly disabled CRTCs for dropping PM refs later. */
8984 		if (old_crtc_state->active && !new_crtc_state->active)
8985 			crtc_disable_count++;
8986 
8987 		dm_new_crtc_state = to_dm_crtc_state(new_crtc_state);
8988 		dm_old_crtc_state = to_dm_crtc_state(old_crtc_state);
8989 
8990 		/* For freesync config update on crtc state and params for irq */
8991 		update_stream_irq_parameters(dm, dm_new_crtc_state);
8992 
8993 #ifdef CONFIG_DEBUG_FS
8994 		spin_lock_irqsave(&adev_to_drm(adev)->event_lock, flags);
8995 		cur_crc_src = acrtc->dm_irq_params.crc_src;
8996 		spin_unlock_irqrestore(&adev_to_drm(adev)->event_lock, flags);
8997 #endif
8998 
8999 		if (new_crtc_state->active &&
9000 		    (!old_crtc_state->active ||
9001 		     drm_atomic_crtc_needs_modeset(new_crtc_state))) {
9002 			dc_stream_retain(dm_new_crtc_state->stream);
9003 			acrtc->dm_irq_params.stream = dm_new_crtc_state->stream;
9004 			manage_dm_interrupts(adev, acrtc, true);
9005 		}
9006 		/* Handle vrr on->off / off->on transitions */
9007 		amdgpu_dm_handle_vrr_transition(dm_old_crtc_state, dm_new_crtc_state);
9008 
9009 #ifdef CONFIG_DEBUG_FS
9010 		if (new_crtc_state->active &&
9011 		    (!old_crtc_state->active ||
9012 		     drm_atomic_crtc_needs_modeset(new_crtc_state))) {
9013 			/**
9014 			 * Frontend may have changed so reapply the CRC capture
9015 			 * settings for the stream.
9016 			 */
9017 			if (amdgpu_dm_is_valid_crc_source(cur_crc_src)) {
9018 #if defined(CONFIG_DRM_AMD_SECURE_DISPLAY)
9019 				if (amdgpu_dm_crc_window_is_activated(crtc)) {
9020 					spin_lock_irqsave(&adev_to_drm(adev)->event_lock, flags);
9021 					acrtc->dm_irq_params.window_param.update_win = true;
9022 
9023 					/**
9024 					 * It takes 2 frames for HW to stably generate CRC when
9025 					 * resuming from suspend, so we set skip_frame_cnt 2.
9026 					 */
9027 					acrtc->dm_irq_params.window_param.skip_frame_cnt = 2;
9028 					spin_unlock_irqrestore(&adev_to_drm(adev)->event_lock, flags);
9029 				}
9030 #endif
9031 				if (amdgpu_dm_crtc_configure_crc_source(
9032 					crtc, dm_new_crtc_state, cur_crc_src))
9033 					DRM_DEBUG_DRIVER("Failed to configure crc source");
9034 			}
9035 		}
9036 #endif
9037 	}
9038 
9039 	for_each_new_crtc_in_state(state, crtc, new_crtc_state, j)
9040 		if (new_crtc_state->async_flip)
9041 			wait_for_vblank = false;
9042 
9043 	/* update planes when needed per crtc*/
9044 	for_each_new_crtc_in_state(state, crtc, new_crtc_state, j) {
9045 		dm_new_crtc_state = to_dm_crtc_state(new_crtc_state);
9046 
9047 		if (dm_new_crtc_state->stream)
9048 			amdgpu_dm_commit_planes(state, dev, dm, crtc, wait_for_vblank);
9049 	}
9050 
9051 	/* Update audio instances for each connector. */
9052 	amdgpu_dm_commit_audio(dev, state);
9053 
9054 	/* restore the backlight level */
9055 	for (i = 0; i < dm->num_of_edps; i++) {
9056 		if (dm->backlight_dev[i] &&
9057 		    (dm->actual_brightness[i] != dm->brightness[i]))
9058 			amdgpu_dm_backlight_set_level(dm, i, dm->brightness[i]);
9059 	}
9060 
9061 	/*
9062 	 * send vblank event on all events not handled in flip and
9063 	 * mark consumed event for drm_atomic_helper_commit_hw_done
9064 	 */
9065 	spin_lock_irqsave(&adev_to_drm(adev)->event_lock, flags);
9066 	for_each_new_crtc_in_state(state, crtc, new_crtc_state, i) {
9067 
9068 		if (new_crtc_state->event)
9069 			drm_send_event_locked(dev, &new_crtc_state->event->base);
9070 
9071 		new_crtc_state->event = NULL;
9072 	}
9073 	spin_unlock_irqrestore(&adev_to_drm(adev)->event_lock, flags);
9074 
9075 	/* Signal HW programming completion */
9076 	drm_atomic_helper_commit_hw_done(state);
9077 
9078 	if (wait_for_vblank)
9079 		drm_atomic_helper_wait_for_flip_done(dev, state);
9080 
9081 	drm_atomic_helper_cleanup_planes(dev, state);
9082 
9083 	/* Don't free the memory if we are hitting this as part of suspend.
9084 	 * This way we don't free any memory during suspend; see
9085 	 * amdgpu_bo_free_kernel().  The memory will be freed in the first
9086 	 * non-suspend modeset or when the driver is torn down.
9087 	 */
9088 	if (!adev->in_suspend) {
9089 		/* return the stolen vga memory back to VRAM */
9090 		if (!adev->mman.keep_stolen_vga_memory)
9091 			amdgpu_bo_free_kernel(&adev->mman.stolen_vga_memory, NULL, NULL);
9092 		amdgpu_bo_free_kernel(&adev->mman.stolen_extended_memory, NULL, NULL);
9093 	}
9094 
9095 	/*
9096 	 * Finally, drop a runtime PM reference for each newly disabled CRTC,
9097 	 * so we can put the GPU into runtime suspend if we're not driving any
9098 	 * displays anymore
9099 	 */
9100 	for (i = 0; i < crtc_disable_count; i++)
9101 		pm_runtime_put_autosuspend(dev->dev);
9102 	pm_runtime_mark_last_busy(dev->dev);
9103 }
9104 
9105 static int dm_force_atomic_commit(struct drm_connector *connector)
9106 {
9107 	int ret = 0;
9108 	struct drm_device *ddev = connector->dev;
9109 	struct drm_atomic_state *state = drm_atomic_state_alloc(ddev);
9110 	struct amdgpu_crtc *disconnected_acrtc = to_amdgpu_crtc(connector->encoder->crtc);
9111 	struct drm_plane *plane = disconnected_acrtc->base.primary;
9112 	struct drm_connector_state *conn_state;
9113 	struct drm_crtc_state *crtc_state;
9114 	struct drm_plane_state *plane_state;
9115 
9116 	if (!state)
9117 		return -ENOMEM;
9118 
9119 	state->acquire_ctx = ddev->mode_config.acquire_ctx;
9120 
9121 	/* Construct an atomic state to restore previous display setting */
9122 
9123 	/*
9124 	 * Attach connectors to drm_atomic_state
9125 	 */
9126 	conn_state = drm_atomic_get_connector_state(state, connector);
9127 
9128 	ret = PTR_ERR_OR_ZERO(conn_state);
9129 	if (ret)
9130 		goto out;
9131 
9132 	/* Attach crtc to drm_atomic_state*/
9133 	crtc_state = drm_atomic_get_crtc_state(state, &disconnected_acrtc->base);
9134 
9135 	ret = PTR_ERR_OR_ZERO(crtc_state);
9136 	if (ret)
9137 		goto out;
9138 
9139 	/* force a restore */
9140 	crtc_state->mode_changed = true;
9141 
9142 	/* Attach plane to drm_atomic_state */
9143 	plane_state = drm_atomic_get_plane_state(state, plane);
9144 
9145 	ret = PTR_ERR_OR_ZERO(plane_state);
9146 	if (ret)
9147 		goto out;
9148 
9149 	/* Call commit internally with the state we just constructed */
9150 	ret = drm_atomic_commit(state);
9151 
9152 out:
9153 	drm_atomic_state_put(state);
9154 	if (ret)
9155 		DRM_ERROR("Restoring old state failed with %i\n", ret);
9156 
9157 	return ret;
9158 }
9159 
9160 /*
9161  * This function handles all cases when set mode does not come upon hotplug.
9162  * This includes when a display is unplugged then plugged back into the
9163  * same port and when running without usermode desktop manager supprot
9164  */
9165 void dm_restore_drm_connector_state(struct drm_device *dev,
9166 				    struct drm_connector *connector)
9167 {
9168 	struct amdgpu_dm_connector *aconnector = to_amdgpu_dm_connector(connector);
9169 	struct amdgpu_crtc *disconnected_acrtc;
9170 	struct dm_crtc_state *acrtc_state;
9171 
9172 	if (!aconnector->dc_sink || !connector->state || !connector->encoder)
9173 		return;
9174 
9175 	disconnected_acrtc = to_amdgpu_crtc(connector->encoder->crtc);
9176 	if (!disconnected_acrtc)
9177 		return;
9178 
9179 	acrtc_state = to_dm_crtc_state(disconnected_acrtc->base.state);
9180 	if (!acrtc_state->stream)
9181 		return;
9182 
9183 	/*
9184 	 * If the previous sink is not released and different from the current,
9185 	 * we deduce we are in a state where we can not rely on usermode call
9186 	 * to turn on the display, so we do it here
9187 	 */
9188 	if (acrtc_state->stream->sink != aconnector->dc_sink)
9189 		dm_force_atomic_commit(&aconnector->base);
9190 }
9191 
9192 /*
9193  * Grabs all modesetting locks to serialize against any blocking commits,
9194  * Waits for completion of all non blocking commits.
9195  */
9196 static int do_aquire_global_lock(struct drm_device *dev,
9197 				 struct drm_atomic_state *state)
9198 {
9199 	struct drm_crtc *crtc;
9200 	struct drm_crtc_commit *commit;
9201 	long ret;
9202 
9203 	/*
9204 	 * Adding all modeset locks to aquire_ctx will
9205 	 * ensure that when the framework release it the
9206 	 * extra locks we are locking here will get released to
9207 	 */
9208 	ret = drm_modeset_lock_all_ctx(dev, state->acquire_ctx);
9209 	if (ret)
9210 		return ret;
9211 
9212 	list_for_each_entry(crtc, &dev->mode_config.crtc_list, head) {
9213 		spin_lock(&crtc->commit_lock);
9214 		commit = list_first_entry_or_null(&crtc->commit_list,
9215 				struct drm_crtc_commit, commit_entry);
9216 		if (commit)
9217 			drm_crtc_commit_get(commit);
9218 		spin_unlock(&crtc->commit_lock);
9219 
9220 		if (!commit)
9221 			continue;
9222 
9223 		/*
9224 		 * Make sure all pending HW programming completed and
9225 		 * page flips done
9226 		 */
9227 		ret = wait_for_completion_interruptible_timeout(&commit->hw_done, 10*HZ);
9228 
9229 		if (ret > 0)
9230 			ret = wait_for_completion_interruptible_timeout(
9231 					&commit->flip_done, 10*HZ);
9232 
9233 		if (ret == 0)
9234 			DRM_ERROR("[CRTC:%d:%s] hw_done or flip_done timed out\n",
9235 				  crtc->base.id, crtc->name);
9236 
9237 		drm_crtc_commit_put(commit);
9238 	}
9239 
9240 	return ret < 0 ? ret : 0;
9241 }
9242 
9243 static void get_freesync_config_for_crtc(
9244 	struct dm_crtc_state *new_crtc_state,
9245 	struct dm_connector_state *new_con_state)
9246 {
9247 	struct mod_freesync_config config = {0};
9248 	struct amdgpu_dm_connector *aconnector =
9249 			to_amdgpu_dm_connector(new_con_state->base.connector);
9250 	struct drm_display_mode *mode = &new_crtc_state->base.mode;
9251 	int vrefresh = drm_mode_vrefresh(mode);
9252 	bool fs_vid_mode = false;
9253 
9254 	new_crtc_state->vrr_supported = new_con_state->freesync_capable &&
9255 					vrefresh >= aconnector->min_vfreq &&
9256 					vrefresh <= aconnector->max_vfreq;
9257 
9258 	if (new_crtc_state->vrr_supported) {
9259 		new_crtc_state->stream->ignore_msa_timing_param = true;
9260 		fs_vid_mode = new_crtc_state->freesync_config.state == VRR_STATE_ACTIVE_FIXED;
9261 
9262 		config.min_refresh_in_uhz = aconnector->min_vfreq * 1000000;
9263 		config.max_refresh_in_uhz = aconnector->max_vfreq * 1000000;
9264 		config.vsif_supported = true;
9265 		config.btr = true;
9266 
9267 		if (fs_vid_mode) {
9268 			config.state = VRR_STATE_ACTIVE_FIXED;
9269 			config.fixed_refresh_in_uhz = new_crtc_state->freesync_config.fixed_refresh_in_uhz;
9270 			goto out;
9271 		} else if (new_crtc_state->base.vrr_enabled) {
9272 			config.state = VRR_STATE_ACTIVE_VARIABLE;
9273 		} else {
9274 			config.state = VRR_STATE_INACTIVE;
9275 		}
9276 	}
9277 out:
9278 	new_crtc_state->freesync_config = config;
9279 }
9280 
9281 static void reset_freesync_config_for_crtc(
9282 	struct dm_crtc_state *new_crtc_state)
9283 {
9284 	new_crtc_state->vrr_supported = false;
9285 
9286 	memset(&new_crtc_state->vrr_infopacket, 0,
9287 	       sizeof(new_crtc_state->vrr_infopacket));
9288 }
9289 
9290 static bool
9291 is_timing_unchanged_for_freesync(struct drm_crtc_state *old_crtc_state,
9292 				 struct drm_crtc_state *new_crtc_state)
9293 {
9294 	const struct drm_display_mode *old_mode, *new_mode;
9295 
9296 	if (!old_crtc_state || !new_crtc_state)
9297 		return false;
9298 
9299 	old_mode = &old_crtc_state->mode;
9300 	new_mode = &new_crtc_state->mode;
9301 
9302 	if (old_mode->clock       == new_mode->clock &&
9303 	    old_mode->hdisplay    == new_mode->hdisplay &&
9304 	    old_mode->vdisplay    == new_mode->vdisplay &&
9305 	    old_mode->htotal      == new_mode->htotal &&
9306 	    old_mode->vtotal      != new_mode->vtotal &&
9307 	    old_mode->hsync_start == new_mode->hsync_start &&
9308 	    old_mode->vsync_start != new_mode->vsync_start &&
9309 	    old_mode->hsync_end   == new_mode->hsync_end &&
9310 	    old_mode->vsync_end   != new_mode->vsync_end &&
9311 	    old_mode->hskew       == new_mode->hskew &&
9312 	    old_mode->vscan       == new_mode->vscan &&
9313 	    (old_mode->vsync_end - old_mode->vsync_start) ==
9314 	    (new_mode->vsync_end - new_mode->vsync_start))
9315 		return true;
9316 
9317 	return false;
9318 }
9319 
9320 static void set_freesync_fixed_config(struct dm_crtc_state *dm_new_crtc_state)
9321 {
9322 	u64 num, den, res;
9323 	struct drm_crtc_state *new_crtc_state = &dm_new_crtc_state->base;
9324 
9325 	dm_new_crtc_state->freesync_config.state = VRR_STATE_ACTIVE_FIXED;
9326 
9327 	num = (unsigned long long)new_crtc_state->mode.clock * 1000 * 1000000;
9328 	den = (unsigned long long)new_crtc_state->mode.htotal *
9329 	      (unsigned long long)new_crtc_state->mode.vtotal;
9330 
9331 	res = div_u64(num, den);
9332 	dm_new_crtc_state->freesync_config.fixed_refresh_in_uhz = res;
9333 }
9334 
9335 static int dm_update_crtc_state(struct amdgpu_display_manager *dm,
9336 			 struct drm_atomic_state *state,
9337 			 struct drm_crtc *crtc,
9338 			 struct drm_crtc_state *old_crtc_state,
9339 			 struct drm_crtc_state *new_crtc_state,
9340 			 bool enable,
9341 			 bool *lock_and_validation_needed)
9342 {
9343 	struct dm_atomic_state *dm_state = NULL;
9344 	struct dm_crtc_state *dm_old_crtc_state, *dm_new_crtc_state;
9345 	struct dc_stream_state *new_stream;
9346 	int ret = 0;
9347 
9348 	/*
9349 	 * TODO Move this code into dm_crtc_atomic_check once we get rid of dc_validation_set
9350 	 * update changed items
9351 	 */
9352 	struct amdgpu_crtc *acrtc = NULL;
9353 	struct amdgpu_dm_connector *aconnector = NULL;
9354 	struct drm_connector_state *drm_new_conn_state = NULL, *drm_old_conn_state = NULL;
9355 	struct dm_connector_state *dm_new_conn_state = NULL, *dm_old_conn_state = NULL;
9356 
9357 	new_stream = NULL;
9358 
9359 	dm_old_crtc_state = to_dm_crtc_state(old_crtc_state);
9360 	dm_new_crtc_state = to_dm_crtc_state(new_crtc_state);
9361 	acrtc = to_amdgpu_crtc(crtc);
9362 	aconnector = amdgpu_dm_find_first_crtc_matching_connector(state, crtc);
9363 
9364 	/* TODO This hack should go away */
9365 	if (aconnector && enable) {
9366 		/* Make sure fake sink is created in plug-in scenario */
9367 		drm_new_conn_state = drm_atomic_get_new_connector_state(state,
9368 							    &aconnector->base);
9369 		drm_old_conn_state = drm_atomic_get_old_connector_state(state,
9370 							    &aconnector->base);
9371 
9372 		if (IS_ERR(drm_new_conn_state)) {
9373 			ret = PTR_ERR_OR_ZERO(drm_new_conn_state);
9374 			goto fail;
9375 		}
9376 
9377 		dm_new_conn_state = to_dm_connector_state(drm_new_conn_state);
9378 		dm_old_conn_state = to_dm_connector_state(drm_old_conn_state);
9379 
9380 		if (!drm_atomic_crtc_needs_modeset(new_crtc_state))
9381 			goto skip_modeset;
9382 
9383 		new_stream = create_validate_stream_for_sink(aconnector,
9384 							     &new_crtc_state->mode,
9385 							     dm_new_conn_state,
9386 							     dm_old_crtc_state->stream);
9387 
9388 		/*
9389 		 * we can have no stream on ACTION_SET if a display
9390 		 * was disconnected during S3, in this case it is not an
9391 		 * error, the OS will be updated after detection, and
9392 		 * will do the right thing on next atomic commit
9393 		 */
9394 
9395 		if (!new_stream) {
9396 			DRM_DEBUG_DRIVER("%s: Failed to create new stream for crtc %d\n",
9397 					__func__, acrtc->base.base.id);
9398 			ret = -ENOMEM;
9399 			goto fail;
9400 		}
9401 
9402 		/*
9403 		 * TODO: Check VSDB bits to decide whether this should
9404 		 * be enabled or not.
9405 		 */
9406 		new_stream->triggered_crtc_reset.enabled =
9407 			dm->force_timing_sync;
9408 
9409 		dm_new_crtc_state->abm_level = dm_new_conn_state->abm_level;
9410 
9411 		ret = fill_hdr_info_packet(drm_new_conn_state,
9412 					   &new_stream->hdr_static_metadata);
9413 		if (ret)
9414 			goto fail;
9415 
9416 		/*
9417 		 * If we already removed the old stream from the context
9418 		 * (and set the new stream to NULL) then we can't reuse
9419 		 * the old stream even if the stream and scaling are unchanged.
9420 		 * We'll hit the BUG_ON and black screen.
9421 		 *
9422 		 * TODO: Refactor this function to allow this check to work
9423 		 * in all conditions.
9424 		 */
9425 		if (dm_new_crtc_state->stream &&
9426 		    is_timing_unchanged_for_freesync(new_crtc_state, old_crtc_state))
9427 			goto skip_modeset;
9428 
9429 		if (dm_new_crtc_state->stream &&
9430 		    dc_is_stream_unchanged(new_stream, dm_old_crtc_state->stream) &&
9431 		    dc_is_stream_scaling_unchanged(new_stream, dm_old_crtc_state->stream)) {
9432 			new_crtc_state->mode_changed = false;
9433 			DRM_DEBUG_DRIVER("Mode change not required, setting mode_changed to %d",
9434 					 new_crtc_state->mode_changed);
9435 		}
9436 	}
9437 
9438 	/* mode_changed flag may get updated above, need to check again */
9439 	if (!drm_atomic_crtc_needs_modeset(new_crtc_state))
9440 		goto skip_modeset;
9441 
9442 	drm_dbg_state(state->dev,
9443 		"amdgpu_crtc id:%d crtc_state_flags: enable:%d, active:%d, planes_changed:%d, mode_changed:%d,active_changed:%d,connectors_changed:%d\n",
9444 		acrtc->crtc_id,
9445 		new_crtc_state->enable,
9446 		new_crtc_state->active,
9447 		new_crtc_state->planes_changed,
9448 		new_crtc_state->mode_changed,
9449 		new_crtc_state->active_changed,
9450 		new_crtc_state->connectors_changed);
9451 
9452 	/* Remove stream for any changed/disabled CRTC */
9453 	if (!enable) {
9454 
9455 		if (!dm_old_crtc_state->stream)
9456 			goto skip_modeset;
9457 
9458 		/* Unset freesync video if it was active before */
9459 		if (dm_old_crtc_state->freesync_config.state == VRR_STATE_ACTIVE_FIXED) {
9460 			dm_new_crtc_state->freesync_config.state = VRR_STATE_INACTIVE;
9461 			dm_new_crtc_state->freesync_config.fixed_refresh_in_uhz = 0;
9462 		}
9463 
9464 		/* Now check if we should set freesync video mode */
9465 		if (dm_new_crtc_state->stream &&
9466 		    dc_is_stream_unchanged(new_stream, dm_old_crtc_state->stream) &&
9467 		    dc_is_stream_scaling_unchanged(new_stream, dm_old_crtc_state->stream) &&
9468 		    is_timing_unchanged_for_freesync(new_crtc_state,
9469 						     old_crtc_state)) {
9470 			new_crtc_state->mode_changed = false;
9471 			DRM_DEBUG_DRIVER(
9472 				"Mode change not required for front porch change, setting mode_changed to %d",
9473 				new_crtc_state->mode_changed);
9474 
9475 			set_freesync_fixed_config(dm_new_crtc_state);
9476 
9477 			goto skip_modeset;
9478 		} else if (aconnector &&
9479 			   is_freesync_video_mode(&new_crtc_state->mode,
9480 						  aconnector)) {
9481 			struct drm_display_mode *high_mode;
9482 
9483 			high_mode = get_highest_refresh_rate_mode(aconnector, false);
9484 			if (!drm_mode_equal(&new_crtc_state->mode, high_mode))
9485 				set_freesync_fixed_config(dm_new_crtc_state);
9486 		}
9487 
9488 		ret = dm_atomic_get_state(state, &dm_state);
9489 		if (ret)
9490 			goto fail;
9491 
9492 		DRM_DEBUG_DRIVER("Disabling DRM crtc: %d\n",
9493 				crtc->base.id);
9494 
9495 		/* i.e. reset mode */
9496 		if (dc_remove_stream_from_ctx(
9497 				dm->dc,
9498 				dm_state->context,
9499 				dm_old_crtc_state->stream) != DC_OK) {
9500 			ret = -EINVAL;
9501 			goto fail;
9502 		}
9503 
9504 		dc_stream_release(dm_old_crtc_state->stream);
9505 		dm_new_crtc_state->stream = NULL;
9506 
9507 		reset_freesync_config_for_crtc(dm_new_crtc_state);
9508 
9509 		*lock_and_validation_needed = true;
9510 
9511 	} else {/* Add stream for any updated/enabled CRTC */
9512 		/*
9513 		 * Quick fix to prevent NULL pointer on new_stream when
9514 		 * added MST connectors not found in existing crtc_state in the chained mode
9515 		 * TODO: need to dig out the root cause of that
9516 		 */
9517 		if (!aconnector)
9518 			goto skip_modeset;
9519 
9520 		if (modereset_required(new_crtc_state))
9521 			goto skip_modeset;
9522 
9523 		if (amdgpu_dm_crtc_modeset_required(new_crtc_state, new_stream,
9524 				     dm_old_crtc_state->stream)) {
9525 
9526 			WARN_ON(dm_new_crtc_state->stream);
9527 
9528 			ret = dm_atomic_get_state(state, &dm_state);
9529 			if (ret)
9530 				goto fail;
9531 
9532 			dm_new_crtc_state->stream = new_stream;
9533 
9534 			dc_stream_retain(new_stream);
9535 
9536 			DRM_DEBUG_ATOMIC("Enabling DRM crtc: %d\n",
9537 					 crtc->base.id);
9538 
9539 			if (dc_add_stream_to_ctx(
9540 					dm->dc,
9541 					dm_state->context,
9542 					dm_new_crtc_state->stream) != DC_OK) {
9543 				ret = -EINVAL;
9544 				goto fail;
9545 			}
9546 
9547 			*lock_and_validation_needed = true;
9548 		}
9549 	}
9550 
9551 skip_modeset:
9552 	/* Release extra reference */
9553 	if (new_stream)
9554 		dc_stream_release(new_stream);
9555 
9556 	/*
9557 	 * We want to do dc stream updates that do not require a
9558 	 * full modeset below.
9559 	 */
9560 	if (!(enable && aconnector && new_crtc_state->active))
9561 		return 0;
9562 	/*
9563 	 * Given above conditions, the dc state cannot be NULL because:
9564 	 * 1. We're in the process of enabling CRTCs (just been added
9565 	 *    to the dc context, or already is on the context)
9566 	 * 2. Has a valid connector attached, and
9567 	 * 3. Is currently active and enabled.
9568 	 * => The dc stream state currently exists.
9569 	 */
9570 	BUG_ON(dm_new_crtc_state->stream == NULL);
9571 
9572 	/* Scaling or underscan settings */
9573 	if (is_scaling_state_different(dm_old_conn_state, dm_new_conn_state) ||
9574 				drm_atomic_crtc_needs_modeset(new_crtc_state))
9575 		update_stream_scaling_settings(
9576 			&new_crtc_state->mode, dm_new_conn_state, dm_new_crtc_state->stream);
9577 
9578 	/* ABM settings */
9579 	dm_new_crtc_state->abm_level = dm_new_conn_state->abm_level;
9580 
9581 	/*
9582 	 * Color management settings. We also update color properties
9583 	 * when a modeset is needed, to ensure it gets reprogrammed.
9584 	 */
9585 	if (dm_new_crtc_state->base.color_mgmt_changed ||
9586 	    drm_atomic_crtc_needs_modeset(new_crtc_state)) {
9587 		ret = amdgpu_dm_update_crtc_color_mgmt(dm_new_crtc_state);
9588 		if (ret)
9589 			goto fail;
9590 	}
9591 
9592 	/* Update Freesync settings. */
9593 	get_freesync_config_for_crtc(dm_new_crtc_state,
9594 				     dm_new_conn_state);
9595 
9596 	return ret;
9597 
9598 fail:
9599 	if (new_stream)
9600 		dc_stream_release(new_stream);
9601 	return ret;
9602 }
9603 
9604 static bool should_reset_plane(struct drm_atomic_state *state,
9605 			       struct drm_plane *plane,
9606 			       struct drm_plane_state *old_plane_state,
9607 			       struct drm_plane_state *new_plane_state)
9608 {
9609 	struct drm_plane *other;
9610 	struct drm_plane_state *old_other_state, *new_other_state;
9611 	struct drm_crtc_state *new_crtc_state;
9612 	struct amdgpu_device *adev = drm_to_adev(plane->dev);
9613 	int i;
9614 
9615 	/*
9616 	 * TODO: Remove this hack for all asics once it proves that the
9617 	 * fast updates works fine on DCN3.2+.
9618 	 */
9619 	if (adev->ip_versions[DCE_HWIP][0] < IP_VERSION(3, 2, 0) && state->allow_modeset)
9620 		return true;
9621 
9622 	/* Exit early if we know that we're adding or removing the plane. */
9623 	if (old_plane_state->crtc != new_plane_state->crtc)
9624 		return true;
9625 
9626 	/* old crtc == new_crtc == NULL, plane not in context. */
9627 	if (!new_plane_state->crtc)
9628 		return false;
9629 
9630 	new_crtc_state =
9631 		drm_atomic_get_new_crtc_state(state, new_plane_state->crtc);
9632 
9633 	if (!new_crtc_state)
9634 		return true;
9635 
9636 	/* CRTC Degamma changes currently require us to recreate planes. */
9637 	if (new_crtc_state->color_mgmt_changed)
9638 		return true;
9639 
9640 	if (drm_atomic_crtc_needs_modeset(new_crtc_state))
9641 		return true;
9642 
9643 	/*
9644 	 * If there are any new primary or overlay planes being added or
9645 	 * removed then the z-order can potentially change. To ensure
9646 	 * correct z-order and pipe acquisition the current DC architecture
9647 	 * requires us to remove and recreate all existing planes.
9648 	 *
9649 	 * TODO: Come up with a more elegant solution for this.
9650 	 */
9651 	for_each_oldnew_plane_in_state(state, other, old_other_state, new_other_state, i) {
9652 		struct amdgpu_framebuffer *old_afb, *new_afb;
9653 
9654 		if (other->type == DRM_PLANE_TYPE_CURSOR)
9655 			continue;
9656 
9657 		if (old_other_state->crtc != new_plane_state->crtc &&
9658 		    new_other_state->crtc != new_plane_state->crtc)
9659 			continue;
9660 
9661 		if (old_other_state->crtc != new_other_state->crtc)
9662 			return true;
9663 
9664 		/* Src/dst size and scaling updates. */
9665 		if (old_other_state->src_w != new_other_state->src_w ||
9666 		    old_other_state->src_h != new_other_state->src_h ||
9667 		    old_other_state->crtc_w != new_other_state->crtc_w ||
9668 		    old_other_state->crtc_h != new_other_state->crtc_h)
9669 			return true;
9670 
9671 		/* Rotation / mirroring updates. */
9672 		if (old_other_state->rotation != new_other_state->rotation)
9673 			return true;
9674 
9675 		/* Blending updates. */
9676 		if (old_other_state->pixel_blend_mode !=
9677 		    new_other_state->pixel_blend_mode)
9678 			return true;
9679 
9680 		/* Alpha updates. */
9681 		if (old_other_state->alpha != new_other_state->alpha)
9682 			return true;
9683 
9684 		/* Colorspace changes. */
9685 		if (old_other_state->color_range != new_other_state->color_range ||
9686 		    old_other_state->color_encoding != new_other_state->color_encoding)
9687 			return true;
9688 
9689 		/* Framebuffer checks fall at the end. */
9690 		if (!old_other_state->fb || !new_other_state->fb)
9691 			continue;
9692 
9693 		/* Pixel format changes can require bandwidth updates. */
9694 		if (old_other_state->fb->format != new_other_state->fb->format)
9695 			return true;
9696 
9697 		old_afb = (struct amdgpu_framebuffer *)old_other_state->fb;
9698 		new_afb = (struct amdgpu_framebuffer *)new_other_state->fb;
9699 
9700 		/* Tiling and DCC changes also require bandwidth updates. */
9701 		if (old_afb->tiling_flags != new_afb->tiling_flags ||
9702 		    old_afb->base.modifier != new_afb->base.modifier)
9703 			return true;
9704 	}
9705 
9706 	return false;
9707 }
9708 
9709 static int dm_check_cursor_fb(struct amdgpu_crtc *new_acrtc,
9710 			      struct drm_plane_state *new_plane_state,
9711 			      struct drm_framebuffer *fb)
9712 {
9713 	struct amdgpu_device *adev = drm_to_adev(new_acrtc->base.dev);
9714 	struct amdgpu_framebuffer *afb = to_amdgpu_framebuffer(fb);
9715 	unsigned int pitch;
9716 	bool linear;
9717 
9718 	if (fb->width > new_acrtc->max_cursor_width ||
9719 	    fb->height > new_acrtc->max_cursor_height) {
9720 		DRM_DEBUG_ATOMIC("Bad cursor FB size %dx%d\n",
9721 				 new_plane_state->fb->width,
9722 				 new_plane_state->fb->height);
9723 		return -EINVAL;
9724 	}
9725 	if (new_plane_state->src_w != fb->width << 16 ||
9726 	    new_plane_state->src_h != fb->height << 16) {
9727 		DRM_DEBUG_ATOMIC("Cropping not supported for cursor plane\n");
9728 		return -EINVAL;
9729 	}
9730 
9731 	/* Pitch in pixels */
9732 	pitch = fb->pitches[0] / fb->format->cpp[0];
9733 
9734 	if (fb->width != pitch) {
9735 		DRM_DEBUG_ATOMIC("Cursor FB width %d doesn't match pitch %d",
9736 				 fb->width, pitch);
9737 		return -EINVAL;
9738 	}
9739 
9740 	switch (pitch) {
9741 	case 64:
9742 	case 128:
9743 	case 256:
9744 		/* FB pitch is supported by cursor plane */
9745 		break;
9746 	default:
9747 		DRM_DEBUG_ATOMIC("Bad cursor FB pitch %d px\n", pitch);
9748 		return -EINVAL;
9749 	}
9750 
9751 	/* Core DRM takes care of checking FB modifiers, so we only need to
9752 	 * check tiling flags when the FB doesn't have a modifier.
9753 	 */
9754 	if (!(fb->flags & DRM_MODE_FB_MODIFIERS)) {
9755 		if (adev->family < AMDGPU_FAMILY_AI) {
9756 			linear = AMDGPU_TILING_GET(afb->tiling_flags, ARRAY_MODE) != DC_ARRAY_2D_TILED_THIN1 &&
9757 				 AMDGPU_TILING_GET(afb->tiling_flags, ARRAY_MODE) != DC_ARRAY_1D_TILED_THIN1 &&
9758 				 AMDGPU_TILING_GET(afb->tiling_flags, MICRO_TILE_MODE) == 0;
9759 		} else {
9760 			linear = AMDGPU_TILING_GET(afb->tiling_flags, SWIZZLE_MODE) == 0;
9761 		}
9762 		if (!linear) {
9763 			DRM_DEBUG_ATOMIC("Cursor FB not linear");
9764 			return -EINVAL;
9765 		}
9766 	}
9767 
9768 	return 0;
9769 }
9770 
9771 static int dm_update_plane_state(struct dc *dc,
9772 				 struct drm_atomic_state *state,
9773 				 struct drm_plane *plane,
9774 				 struct drm_plane_state *old_plane_state,
9775 				 struct drm_plane_state *new_plane_state,
9776 				 bool enable,
9777 				 bool *lock_and_validation_needed,
9778 				 bool *is_top_most_overlay)
9779 {
9780 
9781 	struct dm_atomic_state *dm_state = NULL;
9782 	struct drm_crtc *new_plane_crtc, *old_plane_crtc;
9783 	struct drm_crtc_state *old_crtc_state, *new_crtc_state;
9784 	struct dm_crtc_state *dm_new_crtc_state, *dm_old_crtc_state;
9785 	struct dm_plane_state *dm_new_plane_state, *dm_old_plane_state;
9786 	struct amdgpu_crtc *new_acrtc;
9787 	bool needs_reset;
9788 	int ret = 0;
9789 
9790 
9791 	new_plane_crtc = new_plane_state->crtc;
9792 	old_plane_crtc = old_plane_state->crtc;
9793 	dm_new_plane_state = to_dm_plane_state(new_plane_state);
9794 	dm_old_plane_state = to_dm_plane_state(old_plane_state);
9795 
9796 	if (plane->type == DRM_PLANE_TYPE_CURSOR) {
9797 		if (!enable || !new_plane_crtc ||
9798 			drm_atomic_plane_disabling(plane->state, new_plane_state))
9799 			return 0;
9800 
9801 		new_acrtc = to_amdgpu_crtc(new_plane_crtc);
9802 
9803 		if (new_plane_state->src_x != 0 || new_plane_state->src_y != 0) {
9804 			DRM_DEBUG_ATOMIC("Cropping not supported for cursor plane\n");
9805 			return -EINVAL;
9806 		}
9807 
9808 		if (new_plane_state->fb) {
9809 			ret = dm_check_cursor_fb(new_acrtc, new_plane_state,
9810 						 new_plane_state->fb);
9811 			if (ret)
9812 				return ret;
9813 		}
9814 
9815 		return 0;
9816 	}
9817 
9818 	needs_reset = should_reset_plane(state, plane, old_plane_state,
9819 					 new_plane_state);
9820 
9821 	/* Remove any changed/removed planes */
9822 	if (!enable) {
9823 		if (!needs_reset)
9824 			return 0;
9825 
9826 		if (!old_plane_crtc)
9827 			return 0;
9828 
9829 		old_crtc_state = drm_atomic_get_old_crtc_state(
9830 				state, old_plane_crtc);
9831 		dm_old_crtc_state = to_dm_crtc_state(old_crtc_state);
9832 
9833 		if (!dm_old_crtc_state->stream)
9834 			return 0;
9835 
9836 		DRM_DEBUG_ATOMIC("Disabling DRM plane: %d on DRM crtc %d\n",
9837 				plane->base.id, old_plane_crtc->base.id);
9838 
9839 		ret = dm_atomic_get_state(state, &dm_state);
9840 		if (ret)
9841 			return ret;
9842 
9843 		if (!dc_remove_plane_from_context(
9844 				dc,
9845 				dm_old_crtc_state->stream,
9846 				dm_old_plane_state->dc_state,
9847 				dm_state->context)) {
9848 
9849 			return -EINVAL;
9850 		}
9851 
9852 		if (dm_old_plane_state->dc_state)
9853 			dc_plane_state_release(dm_old_plane_state->dc_state);
9854 
9855 		dm_new_plane_state->dc_state = NULL;
9856 
9857 		*lock_and_validation_needed = true;
9858 
9859 	} else { /* Add new planes */
9860 		struct dc_plane_state *dc_new_plane_state;
9861 
9862 		if (drm_atomic_plane_disabling(plane->state, new_plane_state))
9863 			return 0;
9864 
9865 		if (!new_plane_crtc)
9866 			return 0;
9867 
9868 		new_crtc_state = drm_atomic_get_new_crtc_state(state, new_plane_crtc);
9869 		dm_new_crtc_state = to_dm_crtc_state(new_crtc_state);
9870 
9871 		if (!dm_new_crtc_state->stream)
9872 			return 0;
9873 
9874 		if (!needs_reset)
9875 			return 0;
9876 
9877 		ret = amdgpu_dm_plane_helper_check_state(new_plane_state, new_crtc_state);
9878 		if (ret)
9879 			return ret;
9880 
9881 		WARN_ON(dm_new_plane_state->dc_state);
9882 
9883 		dc_new_plane_state = dc_create_plane_state(dc);
9884 		if (!dc_new_plane_state)
9885 			return -ENOMEM;
9886 
9887 		/* Block top most plane from being a video plane */
9888 		if (plane->type == DRM_PLANE_TYPE_OVERLAY) {
9889 			if (amdgpu_dm_plane_is_video_format(new_plane_state->fb->format->format) && *is_top_most_overlay)
9890 				return -EINVAL;
9891 
9892 			*is_top_most_overlay = false;
9893 		}
9894 
9895 		DRM_DEBUG_ATOMIC("Enabling DRM plane: %d on DRM crtc %d\n",
9896 				 plane->base.id, new_plane_crtc->base.id);
9897 
9898 		ret = fill_dc_plane_attributes(
9899 			drm_to_adev(new_plane_crtc->dev),
9900 			dc_new_plane_state,
9901 			new_plane_state,
9902 			new_crtc_state);
9903 		if (ret) {
9904 			dc_plane_state_release(dc_new_plane_state);
9905 			return ret;
9906 		}
9907 
9908 		ret = dm_atomic_get_state(state, &dm_state);
9909 		if (ret) {
9910 			dc_plane_state_release(dc_new_plane_state);
9911 			return ret;
9912 		}
9913 
9914 		/*
9915 		 * Any atomic check errors that occur after this will
9916 		 * not need a release. The plane state will be attached
9917 		 * to the stream, and therefore part of the atomic
9918 		 * state. It'll be released when the atomic state is
9919 		 * cleaned.
9920 		 */
9921 		if (!dc_add_plane_to_context(
9922 				dc,
9923 				dm_new_crtc_state->stream,
9924 				dc_new_plane_state,
9925 				dm_state->context)) {
9926 
9927 			dc_plane_state_release(dc_new_plane_state);
9928 			return -EINVAL;
9929 		}
9930 
9931 		dm_new_plane_state->dc_state = dc_new_plane_state;
9932 
9933 		dm_new_crtc_state->mpo_requested |= (plane->type == DRM_PLANE_TYPE_OVERLAY);
9934 
9935 		/* Tell DC to do a full surface update every time there
9936 		 * is a plane change. Inefficient, but works for now.
9937 		 */
9938 		dm_new_plane_state->dc_state->update_flags.bits.full_update = 1;
9939 
9940 		*lock_and_validation_needed = true;
9941 	}
9942 
9943 
9944 	return ret;
9945 }
9946 
9947 static void dm_get_oriented_plane_size(struct drm_plane_state *plane_state,
9948 				       int *src_w, int *src_h)
9949 {
9950 	switch (plane_state->rotation & DRM_MODE_ROTATE_MASK) {
9951 	case DRM_MODE_ROTATE_90:
9952 	case DRM_MODE_ROTATE_270:
9953 		*src_w = plane_state->src_h >> 16;
9954 		*src_h = plane_state->src_w >> 16;
9955 		break;
9956 	case DRM_MODE_ROTATE_0:
9957 	case DRM_MODE_ROTATE_180:
9958 	default:
9959 		*src_w = plane_state->src_w >> 16;
9960 		*src_h = plane_state->src_h >> 16;
9961 		break;
9962 	}
9963 }
9964 
9965 static void
9966 dm_get_plane_scale(struct drm_plane_state *plane_state,
9967 		   int *out_plane_scale_w, int *out_plane_scale_h)
9968 {
9969 	int plane_src_w, plane_src_h;
9970 
9971 	dm_get_oriented_plane_size(plane_state, &plane_src_w, &plane_src_h);
9972 	*out_plane_scale_w = plane_state->crtc_w * 1000 / plane_src_w;
9973 	*out_plane_scale_h = plane_state->crtc_h * 1000 / plane_src_h;
9974 }
9975 
9976 static int dm_check_crtc_cursor(struct drm_atomic_state *state,
9977 				struct drm_crtc *crtc,
9978 				struct drm_crtc_state *new_crtc_state)
9979 {
9980 	struct drm_plane *cursor = crtc->cursor, *plane, *underlying;
9981 	struct drm_plane_state *old_plane_state, *new_plane_state;
9982 	struct drm_plane_state *new_cursor_state, *new_underlying_state;
9983 	int i;
9984 	int cursor_scale_w, cursor_scale_h, underlying_scale_w, underlying_scale_h;
9985 	bool any_relevant_change = false;
9986 
9987 	/* On DCE and DCN there is no dedicated hardware cursor plane. We get a
9988 	 * cursor per pipe but it's going to inherit the scaling and
9989 	 * positioning from the underlying pipe. Check the cursor plane's
9990 	 * blending properties match the underlying planes'.
9991 	 */
9992 
9993 	/* If no plane was enabled or changed scaling, no need to check again */
9994 	for_each_oldnew_plane_in_state(state, plane, old_plane_state, new_plane_state, i) {
9995 		int new_scale_w, new_scale_h, old_scale_w, old_scale_h;
9996 
9997 		if (!new_plane_state || !new_plane_state->fb || new_plane_state->crtc != crtc)
9998 			continue;
9999 
10000 		if (!old_plane_state || !old_plane_state->fb || old_plane_state->crtc != crtc) {
10001 			any_relevant_change = true;
10002 			break;
10003 		}
10004 
10005 		if (new_plane_state->fb == old_plane_state->fb &&
10006 		    new_plane_state->crtc_w == old_plane_state->crtc_w &&
10007 		    new_plane_state->crtc_h == old_plane_state->crtc_h)
10008 			continue;
10009 
10010 		dm_get_plane_scale(new_plane_state, &new_scale_w, &new_scale_h);
10011 		dm_get_plane_scale(old_plane_state, &old_scale_w, &old_scale_h);
10012 
10013 		if (new_scale_w != old_scale_w || new_scale_h != old_scale_h) {
10014 			any_relevant_change = true;
10015 			break;
10016 		}
10017 	}
10018 
10019 	if (!any_relevant_change)
10020 		return 0;
10021 
10022 	new_cursor_state = drm_atomic_get_plane_state(state, cursor);
10023 	if (IS_ERR(new_cursor_state))
10024 		return PTR_ERR(new_cursor_state);
10025 
10026 	if (!new_cursor_state->fb)
10027 		return 0;
10028 
10029 	dm_get_plane_scale(new_cursor_state, &cursor_scale_w, &cursor_scale_h);
10030 
10031 	/* Need to check all enabled planes, even if this commit doesn't change
10032 	 * their state
10033 	 */
10034 	i = drm_atomic_add_affected_planes(state, crtc);
10035 	if (i)
10036 		return i;
10037 
10038 	for_each_new_plane_in_state_reverse(state, underlying, new_underlying_state, i) {
10039 		/* Narrow down to non-cursor planes on the same CRTC as the cursor */
10040 		if (new_underlying_state->crtc != crtc || underlying == crtc->cursor)
10041 			continue;
10042 
10043 		/* Ignore disabled planes */
10044 		if (!new_underlying_state->fb)
10045 			continue;
10046 
10047 		dm_get_plane_scale(new_underlying_state,
10048 				   &underlying_scale_w, &underlying_scale_h);
10049 
10050 		if (cursor_scale_w != underlying_scale_w ||
10051 		    cursor_scale_h != underlying_scale_h) {
10052 			drm_dbg_atomic(crtc->dev,
10053 				       "Cursor [PLANE:%d:%s] scaling doesn't match underlying [PLANE:%d:%s]\n",
10054 				       cursor->base.id, cursor->name, underlying->base.id, underlying->name);
10055 			return -EINVAL;
10056 		}
10057 
10058 		/* If this plane covers the whole CRTC, no need to check planes underneath */
10059 		if (new_underlying_state->crtc_x <= 0 &&
10060 		    new_underlying_state->crtc_y <= 0 &&
10061 		    new_underlying_state->crtc_x + new_underlying_state->crtc_w >= new_crtc_state->mode.hdisplay &&
10062 		    new_underlying_state->crtc_y + new_underlying_state->crtc_h >= new_crtc_state->mode.vdisplay)
10063 			break;
10064 	}
10065 
10066 	return 0;
10067 }
10068 
10069 static int add_affected_mst_dsc_crtcs(struct drm_atomic_state *state, struct drm_crtc *crtc)
10070 {
10071 	struct drm_connector *connector;
10072 	struct drm_connector_state *conn_state, *old_conn_state;
10073 	struct amdgpu_dm_connector *aconnector = NULL;
10074 	int i;
10075 
10076 	for_each_oldnew_connector_in_state(state, connector, old_conn_state, conn_state, i) {
10077 		if (!conn_state->crtc)
10078 			conn_state = old_conn_state;
10079 
10080 		if (conn_state->crtc != crtc)
10081 			continue;
10082 
10083 		aconnector = to_amdgpu_dm_connector(connector);
10084 		if (!aconnector->mst_output_port || !aconnector->mst_root)
10085 			aconnector = NULL;
10086 		else
10087 			break;
10088 	}
10089 
10090 	if (!aconnector)
10091 		return 0;
10092 
10093 	return drm_dp_mst_add_affected_dsc_crtcs(state, &aconnector->mst_root->mst_mgr);
10094 }
10095 
10096 /**
10097  * amdgpu_dm_atomic_check() - Atomic check implementation for AMDgpu DM.
10098  *
10099  * @dev: The DRM device
10100  * @state: The atomic state to commit
10101  *
10102  * Validate that the given atomic state is programmable by DC into hardware.
10103  * This involves constructing a &struct dc_state reflecting the new hardware
10104  * state we wish to commit, then querying DC to see if it is programmable. It's
10105  * important not to modify the existing DC state. Otherwise, atomic_check
10106  * may unexpectedly commit hardware changes.
10107  *
10108  * When validating the DC state, it's important that the right locks are
10109  * acquired. For full updates case which removes/adds/updates streams on one
10110  * CRTC while flipping on another CRTC, acquiring global lock will guarantee
10111  * that any such full update commit will wait for completion of any outstanding
10112  * flip using DRMs synchronization events.
10113  *
10114  * Note that DM adds the affected connectors for all CRTCs in state, when that
10115  * might not seem necessary. This is because DC stream creation requires the
10116  * DC sink, which is tied to the DRM connector state. Cleaning this up should
10117  * be possible but non-trivial - a possible TODO item.
10118  *
10119  * Return: -Error code if validation failed.
10120  */
10121 static int amdgpu_dm_atomic_check(struct drm_device *dev,
10122 				  struct drm_atomic_state *state)
10123 {
10124 	struct amdgpu_device *adev = drm_to_adev(dev);
10125 	struct dm_atomic_state *dm_state = NULL;
10126 	struct dc *dc = adev->dm.dc;
10127 	struct drm_connector *connector;
10128 	struct drm_connector_state *old_con_state, *new_con_state;
10129 	struct drm_crtc *crtc;
10130 	struct drm_crtc_state *old_crtc_state, *new_crtc_state;
10131 	struct drm_plane *plane;
10132 	struct drm_plane_state *old_plane_state, *new_plane_state;
10133 	enum dc_status status;
10134 	int ret, i;
10135 	bool lock_and_validation_needed = false;
10136 	bool is_top_most_overlay = true;
10137 	struct dm_crtc_state *dm_old_crtc_state, *dm_new_crtc_state;
10138 	struct drm_dp_mst_topology_mgr *mgr;
10139 	struct drm_dp_mst_topology_state *mst_state;
10140 	struct dsc_mst_fairness_vars vars[MAX_PIPES];
10141 
10142 	trace_amdgpu_dm_atomic_check_begin(state);
10143 
10144 	ret = drm_atomic_helper_check_modeset(dev, state);
10145 	if (ret) {
10146 		DRM_DEBUG_DRIVER("drm_atomic_helper_check_modeset() failed\n");
10147 		goto fail;
10148 	}
10149 
10150 	/* Check connector changes */
10151 	for_each_oldnew_connector_in_state(state, connector, old_con_state, new_con_state, i) {
10152 		struct dm_connector_state *dm_old_con_state = to_dm_connector_state(old_con_state);
10153 		struct dm_connector_state *dm_new_con_state = to_dm_connector_state(new_con_state);
10154 
10155 		/* Skip connectors that are disabled or part of modeset already. */
10156 		if (!new_con_state->crtc)
10157 			continue;
10158 
10159 		new_crtc_state = drm_atomic_get_crtc_state(state, new_con_state->crtc);
10160 		if (IS_ERR(new_crtc_state)) {
10161 			DRM_DEBUG_DRIVER("drm_atomic_get_crtc_state() failed\n");
10162 			ret = PTR_ERR(new_crtc_state);
10163 			goto fail;
10164 		}
10165 
10166 		if (dm_old_con_state->abm_level != dm_new_con_state->abm_level ||
10167 		    dm_old_con_state->scaling != dm_new_con_state->scaling)
10168 			new_crtc_state->connectors_changed = true;
10169 	}
10170 
10171 	if (dc_resource_is_dsc_encoding_supported(dc)) {
10172 		for_each_oldnew_crtc_in_state(state, crtc, old_crtc_state, new_crtc_state, i) {
10173 			if (drm_atomic_crtc_needs_modeset(new_crtc_state)) {
10174 				ret = add_affected_mst_dsc_crtcs(state, crtc);
10175 				if (ret) {
10176 					DRM_DEBUG_DRIVER("add_affected_mst_dsc_crtcs() failed\n");
10177 					goto fail;
10178 				}
10179 			}
10180 		}
10181 	}
10182 	for_each_oldnew_crtc_in_state(state, crtc, old_crtc_state, new_crtc_state, i) {
10183 		dm_old_crtc_state = to_dm_crtc_state(old_crtc_state);
10184 
10185 		if (!drm_atomic_crtc_needs_modeset(new_crtc_state) &&
10186 		    !new_crtc_state->color_mgmt_changed &&
10187 		    old_crtc_state->vrr_enabled == new_crtc_state->vrr_enabled &&
10188 			dm_old_crtc_state->dsc_force_changed == false)
10189 			continue;
10190 
10191 		ret = amdgpu_dm_verify_lut_sizes(new_crtc_state);
10192 		if (ret) {
10193 			DRM_DEBUG_DRIVER("amdgpu_dm_verify_lut_sizes() failed\n");
10194 			goto fail;
10195 		}
10196 
10197 		if (!new_crtc_state->enable)
10198 			continue;
10199 
10200 		ret = drm_atomic_add_affected_connectors(state, crtc);
10201 		if (ret) {
10202 			DRM_DEBUG_DRIVER("drm_atomic_add_affected_connectors() failed\n");
10203 			goto fail;
10204 		}
10205 
10206 		ret = drm_atomic_add_affected_planes(state, crtc);
10207 		if (ret) {
10208 			DRM_DEBUG_DRIVER("drm_atomic_add_affected_planes() failed\n");
10209 			goto fail;
10210 		}
10211 
10212 		if (dm_old_crtc_state->dsc_force_changed)
10213 			new_crtc_state->mode_changed = true;
10214 	}
10215 
10216 	/*
10217 	 * Add all primary and overlay planes on the CRTC to the state
10218 	 * whenever a plane is enabled to maintain correct z-ordering
10219 	 * and to enable fast surface updates.
10220 	 */
10221 	drm_for_each_crtc(crtc, dev) {
10222 		bool modified = false;
10223 
10224 		for_each_oldnew_plane_in_state(state, plane, old_plane_state, new_plane_state, i) {
10225 			if (plane->type == DRM_PLANE_TYPE_CURSOR)
10226 				continue;
10227 
10228 			if (new_plane_state->crtc == crtc ||
10229 			    old_plane_state->crtc == crtc) {
10230 				modified = true;
10231 				break;
10232 			}
10233 		}
10234 
10235 		if (!modified)
10236 			continue;
10237 
10238 		drm_for_each_plane_mask(plane, state->dev, crtc->state->plane_mask) {
10239 			if (plane->type == DRM_PLANE_TYPE_CURSOR)
10240 				continue;
10241 
10242 			new_plane_state =
10243 				drm_atomic_get_plane_state(state, plane);
10244 
10245 			if (IS_ERR(new_plane_state)) {
10246 				ret = PTR_ERR(new_plane_state);
10247 				DRM_DEBUG_DRIVER("new_plane_state is BAD\n");
10248 				goto fail;
10249 			}
10250 		}
10251 	}
10252 
10253 	/*
10254 	 * DC consults the zpos (layer_index in DC terminology) to determine the
10255 	 * hw plane on which to enable the hw cursor (see
10256 	 * `dcn10_can_pipe_disable_cursor`). By now, all modified planes are in
10257 	 * atomic state, so call drm helper to normalize zpos.
10258 	 */
10259 	ret = drm_atomic_normalize_zpos(dev, state);
10260 	if (ret) {
10261 		drm_dbg(dev, "drm_atomic_normalize_zpos() failed\n");
10262 		goto fail;
10263 	}
10264 
10265 	/* Remove exiting planes if they are modified */
10266 	for_each_oldnew_plane_in_state_reverse(state, plane, old_plane_state, new_plane_state, i) {
10267 		if (old_plane_state->fb && new_plane_state->fb &&
10268 		    get_mem_type(old_plane_state->fb) !=
10269 		    get_mem_type(new_plane_state->fb))
10270 			lock_and_validation_needed = true;
10271 
10272 		ret = dm_update_plane_state(dc, state, plane,
10273 					    old_plane_state,
10274 					    new_plane_state,
10275 					    false,
10276 					    &lock_and_validation_needed,
10277 					    &is_top_most_overlay);
10278 		if (ret) {
10279 			DRM_DEBUG_DRIVER("dm_update_plane_state() failed\n");
10280 			goto fail;
10281 		}
10282 	}
10283 
10284 	/* Disable all crtcs which require disable */
10285 	for_each_oldnew_crtc_in_state(state, crtc, old_crtc_state, new_crtc_state, i) {
10286 		ret = dm_update_crtc_state(&adev->dm, state, crtc,
10287 					   old_crtc_state,
10288 					   new_crtc_state,
10289 					   false,
10290 					   &lock_and_validation_needed);
10291 		if (ret) {
10292 			DRM_DEBUG_DRIVER("DISABLE: dm_update_crtc_state() failed\n");
10293 			goto fail;
10294 		}
10295 	}
10296 
10297 	/* Enable all crtcs which require enable */
10298 	for_each_oldnew_crtc_in_state(state, crtc, old_crtc_state, new_crtc_state, i) {
10299 		ret = dm_update_crtc_state(&adev->dm, state, crtc,
10300 					   old_crtc_state,
10301 					   new_crtc_state,
10302 					   true,
10303 					   &lock_and_validation_needed);
10304 		if (ret) {
10305 			DRM_DEBUG_DRIVER("ENABLE: dm_update_crtc_state() failed\n");
10306 			goto fail;
10307 		}
10308 	}
10309 
10310 	/* Add new/modified planes */
10311 	for_each_oldnew_plane_in_state_reverse(state, plane, old_plane_state, new_plane_state, i) {
10312 		ret = dm_update_plane_state(dc, state, plane,
10313 					    old_plane_state,
10314 					    new_plane_state,
10315 					    true,
10316 					    &lock_and_validation_needed,
10317 					    &is_top_most_overlay);
10318 		if (ret) {
10319 			DRM_DEBUG_DRIVER("dm_update_plane_state() failed\n");
10320 			goto fail;
10321 		}
10322 	}
10323 
10324 	if (dc_resource_is_dsc_encoding_supported(dc)) {
10325 		ret = pre_validate_dsc(state, &dm_state, vars);
10326 		if (ret != 0)
10327 			goto fail;
10328 	}
10329 
10330 	/* Run this here since we want to validate the streams we created */
10331 	ret = drm_atomic_helper_check_planes(dev, state);
10332 	if (ret) {
10333 		DRM_DEBUG_DRIVER("drm_atomic_helper_check_planes() failed\n");
10334 		goto fail;
10335 	}
10336 
10337 	for_each_new_crtc_in_state(state, crtc, new_crtc_state, i) {
10338 		dm_new_crtc_state = to_dm_crtc_state(new_crtc_state);
10339 		if (dm_new_crtc_state->mpo_requested)
10340 			DRM_DEBUG_DRIVER("MPO enablement requested on crtc:[%p]\n", crtc);
10341 	}
10342 
10343 	/* Check cursor planes scaling */
10344 	for_each_new_crtc_in_state(state, crtc, new_crtc_state, i) {
10345 		ret = dm_check_crtc_cursor(state, crtc, new_crtc_state);
10346 		if (ret) {
10347 			DRM_DEBUG_DRIVER("dm_check_crtc_cursor() failed\n");
10348 			goto fail;
10349 		}
10350 	}
10351 
10352 	if (state->legacy_cursor_update) {
10353 		/*
10354 		 * This is a fast cursor update coming from the plane update
10355 		 * helper, check if it can be done asynchronously for better
10356 		 * performance.
10357 		 */
10358 		state->async_update =
10359 			!drm_atomic_helper_async_check(dev, state);
10360 
10361 		/*
10362 		 * Skip the remaining global validation if this is an async
10363 		 * update. Cursor updates can be done without affecting
10364 		 * state or bandwidth calcs and this avoids the performance
10365 		 * penalty of locking the private state object and
10366 		 * allocating a new dc_state.
10367 		 */
10368 		if (state->async_update)
10369 			return 0;
10370 	}
10371 
10372 	/* Check scaling and underscan changes*/
10373 	/* TODO Removed scaling changes validation due to inability to commit
10374 	 * new stream into context w\o causing full reset. Need to
10375 	 * decide how to handle.
10376 	 */
10377 	for_each_oldnew_connector_in_state(state, connector, old_con_state, new_con_state, i) {
10378 		struct dm_connector_state *dm_old_con_state = to_dm_connector_state(old_con_state);
10379 		struct dm_connector_state *dm_new_con_state = to_dm_connector_state(new_con_state);
10380 		struct amdgpu_crtc *acrtc = to_amdgpu_crtc(dm_new_con_state->base.crtc);
10381 
10382 		/* Skip any modesets/resets */
10383 		if (!acrtc || drm_atomic_crtc_needs_modeset(
10384 				drm_atomic_get_new_crtc_state(state, &acrtc->base)))
10385 			continue;
10386 
10387 		/* Skip any thing not scale or underscan changes */
10388 		if (!is_scaling_state_different(dm_new_con_state, dm_old_con_state))
10389 			continue;
10390 
10391 		lock_and_validation_needed = true;
10392 	}
10393 
10394 	/* set the slot info for each mst_state based on the link encoding format */
10395 	for_each_new_mst_mgr_in_state(state, mgr, mst_state, i) {
10396 		struct amdgpu_dm_connector *aconnector;
10397 		struct drm_connector *connector;
10398 		struct drm_connector_list_iter iter;
10399 		u8 link_coding_cap;
10400 
10401 		drm_connector_list_iter_begin(dev, &iter);
10402 		drm_for_each_connector_iter(connector, &iter) {
10403 			if (connector->index == mst_state->mgr->conn_base_id) {
10404 				aconnector = to_amdgpu_dm_connector(connector);
10405 				link_coding_cap = dc_link_dp_mst_decide_link_encoding_format(aconnector->dc_link);
10406 				drm_dp_mst_update_slots(mst_state, link_coding_cap);
10407 
10408 				break;
10409 			}
10410 		}
10411 		drm_connector_list_iter_end(&iter);
10412 	}
10413 
10414 	/**
10415 	 * Streams and planes are reset when there are changes that affect
10416 	 * bandwidth. Anything that affects bandwidth needs to go through
10417 	 * DC global validation to ensure that the configuration can be applied
10418 	 * to hardware.
10419 	 *
10420 	 * We have to currently stall out here in atomic_check for outstanding
10421 	 * commits to finish in this case because our IRQ handlers reference
10422 	 * DRM state directly - we can end up disabling interrupts too early
10423 	 * if we don't.
10424 	 *
10425 	 * TODO: Remove this stall and drop DM state private objects.
10426 	 */
10427 	if (lock_and_validation_needed) {
10428 		ret = dm_atomic_get_state(state, &dm_state);
10429 		if (ret) {
10430 			DRM_DEBUG_DRIVER("dm_atomic_get_state() failed\n");
10431 			goto fail;
10432 		}
10433 
10434 		ret = do_aquire_global_lock(dev, state);
10435 		if (ret) {
10436 			DRM_DEBUG_DRIVER("do_aquire_global_lock() failed\n");
10437 			goto fail;
10438 		}
10439 
10440 		ret = compute_mst_dsc_configs_for_state(state, dm_state->context, vars);
10441 		if (ret) {
10442 			DRM_DEBUG_DRIVER("compute_mst_dsc_configs_for_state() failed\n");
10443 			ret = -EINVAL;
10444 			goto fail;
10445 		}
10446 
10447 		ret = dm_update_mst_vcpi_slots_for_dsc(state, dm_state->context, vars);
10448 		if (ret) {
10449 			DRM_DEBUG_DRIVER("dm_update_mst_vcpi_slots_for_dsc() failed\n");
10450 			goto fail;
10451 		}
10452 
10453 		/*
10454 		 * Perform validation of MST topology in the state:
10455 		 * We need to perform MST atomic check before calling
10456 		 * dc_validate_global_state(), or there is a chance
10457 		 * to get stuck in an infinite loop and hang eventually.
10458 		 */
10459 		ret = drm_dp_mst_atomic_check(state);
10460 		if (ret) {
10461 			DRM_DEBUG_DRIVER("drm_dp_mst_atomic_check() failed\n");
10462 			goto fail;
10463 		}
10464 		status = dc_validate_global_state(dc, dm_state->context, true);
10465 		if (status != DC_OK) {
10466 			DRM_DEBUG_DRIVER("DC global validation failure: %s (%d)",
10467 				       dc_status_to_str(status), status);
10468 			ret = -EINVAL;
10469 			goto fail;
10470 		}
10471 	} else {
10472 		/*
10473 		 * The commit is a fast update. Fast updates shouldn't change
10474 		 * the DC context, affect global validation, and can have their
10475 		 * commit work done in parallel with other commits not touching
10476 		 * the same resource. If we have a new DC context as part of
10477 		 * the DM atomic state from validation we need to free it and
10478 		 * retain the existing one instead.
10479 		 *
10480 		 * Furthermore, since the DM atomic state only contains the DC
10481 		 * context and can safely be annulled, we can free the state
10482 		 * and clear the associated private object now to free
10483 		 * some memory and avoid a possible use-after-free later.
10484 		 */
10485 
10486 		for (i = 0; i < state->num_private_objs; i++) {
10487 			struct drm_private_obj *obj = state->private_objs[i].ptr;
10488 
10489 			if (obj->funcs == adev->dm.atomic_obj.funcs) {
10490 				int j = state->num_private_objs-1;
10491 
10492 				dm_atomic_destroy_state(obj,
10493 						state->private_objs[i].state);
10494 
10495 				/* If i is not at the end of the array then the
10496 				 * last element needs to be moved to where i was
10497 				 * before the array can safely be truncated.
10498 				 */
10499 				if (i != j)
10500 					state->private_objs[i] =
10501 						state->private_objs[j];
10502 
10503 				state->private_objs[j].ptr = NULL;
10504 				state->private_objs[j].state = NULL;
10505 				state->private_objs[j].old_state = NULL;
10506 				state->private_objs[j].new_state = NULL;
10507 
10508 				state->num_private_objs = j;
10509 				break;
10510 			}
10511 		}
10512 	}
10513 
10514 	/* Store the overall update type for use later in atomic check. */
10515 	for_each_new_crtc_in_state(state, crtc, new_crtc_state, i) {
10516 		struct dm_crtc_state *dm_new_crtc_state =
10517 			to_dm_crtc_state(new_crtc_state);
10518 
10519 		/*
10520 		 * Only allow async flips for fast updates that don't change
10521 		 * the FB pitch, the DCC state, rotation, etc.
10522 		 */
10523 		if (new_crtc_state->async_flip && lock_and_validation_needed) {
10524 			drm_dbg_atomic(crtc->dev,
10525 				       "[CRTC:%d:%s] async flips are only supported for fast updates\n",
10526 				       crtc->base.id, crtc->name);
10527 			ret = -EINVAL;
10528 			goto fail;
10529 		}
10530 
10531 		dm_new_crtc_state->update_type = lock_and_validation_needed ?
10532 			UPDATE_TYPE_FULL : UPDATE_TYPE_FAST;
10533 	}
10534 
10535 	/* Must be success */
10536 	WARN_ON(ret);
10537 
10538 	trace_amdgpu_dm_atomic_check_finish(state, ret);
10539 
10540 	return ret;
10541 
10542 fail:
10543 	if (ret == -EDEADLK)
10544 		DRM_DEBUG_DRIVER("Atomic check stopped to avoid deadlock.\n");
10545 	else if (ret == -EINTR || ret == -EAGAIN || ret == -ERESTARTSYS)
10546 		DRM_DEBUG_DRIVER("Atomic check stopped due to signal.\n");
10547 	else
10548 		DRM_DEBUG_DRIVER("Atomic check failed with err: %d\n", ret);
10549 
10550 	trace_amdgpu_dm_atomic_check_finish(state, ret);
10551 
10552 	return ret;
10553 }
10554 
10555 static bool is_dp_capable_without_timing_msa(struct dc *dc,
10556 					     struct amdgpu_dm_connector *amdgpu_dm_connector)
10557 {
10558 	u8 dpcd_data;
10559 	bool capable = false;
10560 
10561 	if (amdgpu_dm_connector->dc_link &&
10562 		dm_helpers_dp_read_dpcd(
10563 				NULL,
10564 				amdgpu_dm_connector->dc_link,
10565 				DP_DOWN_STREAM_PORT_COUNT,
10566 				&dpcd_data,
10567 				sizeof(dpcd_data))) {
10568 		capable = (dpcd_data & DP_MSA_TIMING_PAR_IGNORED) ? true:false;
10569 	}
10570 
10571 	return capable;
10572 }
10573 
10574 static bool dm_edid_parser_send_cea(struct amdgpu_display_manager *dm,
10575 		unsigned int offset,
10576 		unsigned int total_length,
10577 		u8 *data,
10578 		unsigned int length,
10579 		struct amdgpu_hdmi_vsdb_info *vsdb)
10580 {
10581 	bool res;
10582 	union dmub_rb_cmd cmd;
10583 	struct dmub_cmd_send_edid_cea *input;
10584 	struct dmub_cmd_edid_cea_output *output;
10585 
10586 	if (length > DMUB_EDID_CEA_DATA_CHUNK_BYTES)
10587 		return false;
10588 
10589 	memset(&cmd, 0, sizeof(cmd));
10590 
10591 	input = &cmd.edid_cea.data.input;
10592 
10593 	cmd.edid_cea.header.type = DMUB_CMD__EDID_CEA;
10594 	cmd.edid_cea.header.sub_type = 0;
10595 	cmd.edid_cea.header.payload_bytes =
10596 		sizeof(cmd.edid_cea) - sizeof(cmd.edid_cea.header);
10597 	input->offset = offset;
10598 	input->length = length;
10599 	input->cea_total_length = total_length;
10600 	memcpy(input->payload, data, length);
10601 
10602 	res = dm_execute_dmub_cmd(dm->dc->ctx, &cmd, DM_DMUB_WAIT_TYPE_WAIT_WITH_REPLY);
10603 	if (!res) {
10604 		DRM_ERROR("EDID CEA parser failed\n");
10605 		return false;
10606 	}
10607 
10608 	output = &cmd.edid_cea.data.output;
10609 
10610 	if (output->type == DMUB_CMD__EDID_CEA_ACK) {
10611 		if (!output->ack.success) {
10612 			DRM_ERROR("EDID CEA ack failed at offset %d\n",
10613 					output->ack.offset);
10614 		}
10615 	} else if (output->type == DMUB_CMD__EDID_CEA_AMD_VSDB) {
10616 		if (!output->amd_vsdb.vsdb_found)
10617 			return false;
10618 
10619 		vsdb->freesync_supported = output->amd_vsdb.freesync_supported;
10620 		vsdb->amd_vsdb_version = output->amd_vsdb.amd_vsdb_version;
10621 		vsdb->min_refresh_rate_hz = output->amd_vsdb.min_frame_rate;
10622 		vsdb->max_refresh_rate_hz = output->amd_vsdb.max_frame_rate;
10623 	} else {
10624 		DRM_WARN("Unknown EDID CEA parser results\n");
10625 		return false;
10626 	}
10627 
10628 	return true;
10629 }
10630 
10631 static bool parse_edid_cea_dmcu(struct amdgpu_display_manager *dm,
10632 		u8 *edid_ext, int len,
10633 		struct amdgpu_hdmi_vsdb_info *vsdb_info)
10634 {
10635 	int i;
10636 
10637 	/* send extension block to DMCU for parsing */
10638 	for (i = 0; i < len; i += 8) {
10639 		bool res;
10640 		int offset;
10641 
10642 		/* send 8 bytes a time */
10643 		if (!dc_edid_parser_send_cea(dm->dc, i, len, &edid_ext[i], 8))
10644 			return false;
10645 
10646 		if (i+8 == len) {
10647 			/* EDID block sent completed, expect result */
10648 			int version, min_rate, max_rate;
10649 
10650 			res = dc_edid_parser_recv_amd_vsdb(dm->dc, &version, &min_rate, &max_rate);
10651 			if (res) {
10652 				/* amd vsdb found */
10653 				vsdb_info->freesync_supported = 1;
10654 				vsdb_info->amd_vsdb_version = version;
10655 				vsdb_info->min_refresh_rate_hz = min_rate;
10656 				vsdb_info->max_refresh_rate_hz = max_rate;
10657 				return true;
10658 			}
10659 			/* not amd vsdb */
10660 			return false;
10661 		}
10662 
10663 		/* check for ack*/
10664 		res = dc_edid_parser_recv_cea_ack(dm->dc, &offset);
10665 		if (!res)
10666 			return false;
10667 	}
10668 
10669 	return false;
10670 }
10671 
10672 static bool parse_edid_cea_dmub(struct amdgpu_display_manager *dm,
10673 		u8 *edid_ext, int len,
10674 		struct amdgpu_hdmi_vsdb_info *vsdb_info)
10675 {
10676 	int i;
10677 
10678 	/* send extension block to DMCU for parsing */
10679 	for (i = 0; i < len; i += 8) {
10680 		/* send 8 bytes a time */
10681 		if (!dm_edid_parser_send_cea(dm, i, len, &edid_ext[i], 8, vsdb_info))
10682 			return false;
10683 	}
10684 
10685 	return vsdb_info->freesync_supported;
10686 }
10687 
10688 static bool parse_edid_cea(struct amdgpu_dm_connector *aconnector,
10689 		u8 *edid_ext, int len,
10690 		struct amdgpu_hdmi_vsdb_info *vsdb_info)
10691 {
10692 	struct amdgpu_device *adev = drm_to_adev(aconnector->base.dev);
10693 	bool ret;
10694 
10695 	mutex_lock(&adev->dm.dc_lock);
10696 	if (adev->dm.dmub_srv)
10697 		ret = parse_edid_cea_dmub(&adev->dm, edid_ext, len, vsdb_info);
10698 	else
10699 		ret = parse_edid_cea_dmcu(&adev->dm, edid_ext, len, vsdb_info);
10700 	mutex_unlock(&adev->dm.dc_lock);
10701 	return ret;
10702 }
10703 
10704 static int parse_amd_vsdb(struct amdgpu_dm_connector *aconnector,
10705 			  struct edid *edid, struct amdgpu_hdmi_vsdb_info *vsdb_info)
10706 {
10707 	u8 *edid_ext = NULL;
10708 	int i;
10709 	int j = 0;
10710 
10711 	if (edid == NULL || edid->extensions == 0)
10712 		return -ENODEV;
10713 
10714 	/* Find DisplayID extension */
10715 	for (i = 0; i < edid->extensions; i++) {
10716 		edid_ext = (void *)(edid + (i + 1));
10717 		if (edid_ext[0] == DISPLAYID_EXT)
10718 			break;
10719 	}
10720 
10721 	while (j < EDID_LENGTH) {
10722 		struct amd_vsdb_block *amd_vsdb = (struct amd_vsdb_block *)&edid_ext[j];
10723 		unsigned int ieeeId = (amd_vsdb->ieee_id[2] << 16) | (amd_vsdb->ieee_id[1] << 8) | (amd_vsdb->ieee_id[0]);
10724 
10725 		if (ieeeId == HDMI_AMD_VENDOR_SPECIFIC_DATA_BLOCK_IEEE_REGISTRATION_ID &&
10726 				amd_vsdb->version == HDMI_AMD_VENDOR_SPECIFIC_DATA_BLOCK_VERSION_3) {
10727 			vsdb_info->replay_mode = (amd_vsdb->feature_caps & AMD_VSDB_VERSION_3_FEATURECAP_REPLAYMODE) ? true : false;
10728 			vsdb_info->amd_vsdb_version = HDMI_AMD_VENDOR_SPECIFIC_DATA_BLOCK_VERSION_3;
10729 			DRM_DEBUG_KMS("Panel supports Replay Mode: %d\n", vsdb_info->replay_mode);
10730 
10731 			return true;
10732 		}
10733 		j++;
10734 	}
10735 
10736 	return false;
10737 }
10738 
10739 static int parse_hdmi_amd_vsdb(struct amdgpu_dm_connector *aconnector,
10740 		struct edid *edid, struct amdgpu_hdmi_vsdb_info *vsdb_info)
10741 {
10742 	u8 *edid_ext = NULL;
10743 	int i;
10744 	bool valid_vsdb_found = false;
10745 
10746 	/*----- drm_find_cea_extension() -----*/
10747 	/* No EDID or EDID extensions */
10748 	if (edid == NULL || edid->extensions == 0)
10749 		return -ENODEV;
10750 
10751 	/* Find CEA extension */
10752 	for (i = 0; i < edid->extensions; i++) {
10753 		edid_ext = (uint8_t *)edid + EDID_LENGTH * (i + 1);
10754 		if (edid_ext[0] == CEA_EXT)
10755 			break;
10756 	}
10757 
10758 	if (i == edid->extensions)
10759 		return -ENODEV;
10760 
10761 	/*----- cea_db_offsets() -----*/
10762 	if (edid_ext[0] != CEA_EXT)
10763 		return -ENODEV;
10764 
10765 	valid_vsdb_found = parse_edid_cea(aconnector, edid_ext, EDID_LENGTH, vsdb_info);
10766 
10767 	return valid_vsdb_found ? i : -ENODEV;
10768 }
10769 
10770 /**
10771  * amdgpu_dm_update_freesync_caps - Update Freesync capabilities
10772  *
10773  * @connector: Connector to query.
10774  * @edid: EDID from monitor
10775  *
10776  * Amdgpu supports Freesync in DP and HDMI displays, and it is required to keep
10777  * track of some of the display information in the internal data struct used by
10778  * amdgpu_dm. This function checks which type of connector we need to set the
10779  * FreeSync parameters.
10780  */
10781 void amdgpu_dm_update_freesync_caps(struct drm_connector *connector,
10782 				    struct edid *edid)
10783 {
10784 	int i = 0;
10785 	struct detailed_timing *timing;
10786 	struct detailed_non_pixel *data;
10787 	struct detailed_data_monitor_range *range;
10788 	struct amdgpu_dm_connector *amdgpu_dm_connector =
10789 			to_amdgpu_dm_connector(connector);
10790 	struct dm_connector_state *dm_con_state = NULL;
10791 	struct dc_sink *sink;
10792 
10793 	struct drm_device *dev = connector->dev;
10794 	struct amdgpu_device *adev = drm_to_adev(dev);
10795 	struct amdgpu_hdmi_vsdb_info vsdb_info = {0};
10796 	bool freesync_capable = false;
10797 	enum adaptive_sync_type as_type = ADAPTIVE_SYNC_TYPE_NONE;
10798 
10799 	if (!connector->state) {
10800 		DRM_ERROR("%s - Connector has no state", __func__);
10801 		goto update;
10802 	}
10803 
10804 	sink = amdgpu_dm_connector->dc_sink ?
10805 		amdgpu_dm_connector->dc_sink :
10806 		amdgpu_dm_connector->dc_em_sink;
10807 
10808 	if (!edid || !sink) {
10809 		dm_con_state = to_dm_connector_state(connector->state);
10810 
10811 		amdgpu_dm_connector->min_vfreq = 0;
10812 		amdgpu_dm_connector->max_vfreq = 0;
10813 		amdgpu_dm_connector->pixel_clock_mhz = 0;
10814 		connector->display_info.monitor_range.min_vfreq = 0;
10815 		connector->display_info.monitor_range.max_vfreq = 0;
10816 		freesync_capable = false;
10817 
10818 		goto update;
10819 	}
10820 
10821 	dm_con_state = to_dm_connector_state(connector->state);
10822 
10823 	if (!adev->dm.freesync_module)
10824 		goto update;
10825 
10826 	if (sink->sink_signal == SIGNAL_TYPE_DISPLAY_PORT
10827 		|| sink->sink_signal == SIGNAL_TYPE_EDP) {
10828 		bool edid_check_required = false;
10829 
10830 		if (edid) {
10831 			edid_check_required = is_dp_capable_without_timing_msa(
10832 						adev->dm.dc,
10833 						amdgpu_dm_connector);
10834 		}
10835 
10836 		if (edid_check_required == true && (edid->version > 1 ||
10837 		   (edid->version == 1 && edid->revision > 1))) {
10838 			for (i = 0; i < 4; i++) {
10839 
10840 				timing	= &edid->detailed_timings[i];
10841 				data	= &timing->data.other_data;
10842 				range	= &data->data.range;
10843 				/*
10844 				 * Check if monitor has continuous frequency mode
10845 				 */
10846 				if (data->type != EDID_DETAIL_MONITOR_RANGE)
10847 					continue;
10848 				/*
10849 				 * Check for flag range limits only. If flag == 1 then
10850 				 * no additional timing information provided.
10851 				 * Default GTF, GTF Secondary curve and CVT are not
10852 				 * supported
10853 				 */
10854 				if (range->flags != 1)
10855 					continue;
10856 
10857 				amdgpu_dm_connector->min_vfreq = range->min_vfreq;
10858 				amdgpu_dm_connector->max_vfreq = range->max_vfreq;
10859 				amdgpu_dm_connector->pixel_clock_mhz =
10860 					range->pixel_clock_mhz * 10;
10861 
10862 				connector->display_info.monitor_range.min_vfreq = range->min_vfreq;
10863 				connector->display_info.monitor_range.max_vfreq = range->max_vfreq;
10864 
10865 				break;
10866 			}
10867 
10868 			if (amdgpu_dm_connector->max_vfreq -
10869 			    amdgpu_dm_connector->min_vfreq > 10) {
10870 
10871 				freesync_capable = true;
10872 			}
10873 		}
10874 		parse_amd_vsdb(amdgpu_dm_connector, edid, &vsdb_info);
10875 
10876 		if (vsdb_info.replay_mode) {
10877 			amdgpu_dm_connector->vsdb_info.replay_mode = vsdb_info.replay_mode;
10878 			amdgpu_dm_connector->vsdb_info.amd_vsdb_version = vsdb_info.amd_vsdb_version;
10879 			amdgpu_dm_connector->as_type = ADAPTIVE_SYNC_TYPE_EDP;
10880 		}
10881 
10882 	} else if (edid && sink->sink_signal == SIGNAL_TYPE_HDMI_TYPE_A) {
10883 		i = parse_hdmi_amd_vsdb(amdgpu_dm_connector, edid, &vsdb_info);
10884 		if (i >= 0 && vsdb_info.freesync_supported) {
10885 			timing  = &edid->detailed_timings[i];
10886 			data    = &timing->data.other_data;
10887 
10888 			amdgpu_dm_connector->min_vfreq = vsdb_info.min_refresh_rate_hz;
10889 			amdgpu_dm_connector->max_vfreq = vsdb_info.max_refresh_rate_hz;
10890 			if (amdgpu_dm_connector->max_vfreq - amdgpu_dm_connector->min_vfreq > 10)
10891 				freesync_capable = true;
10892 
10893 			connector->display_info.monitor_range.min_vfreq = vsdb_info.min_refresh_rate_hz;
10894 			connector->display_info.monitor_range.max_vfreq = vsdb_info.max_refresh_rate_hz;
10895 		}
10896 	}
10897 
10898 	as_type = dm_get_adaptive_sync_support_type(amdgpu_dm_connector->dc_link);
10899 
10900 	if (as_type == FREESYNC_TYPE_PCON_IN_WHITELIST) {
10901 		i = parse_hdmi_amd_vsdb(amdgpu_dm_connector, edid, &vsdb_info);
10902 		if (i >= 0 && vsdb_info.freesync_supported && vsdb_info.amd_vsdb_version > 0) {
10903 
10904 			amdgpu_dm_connector->pack_sdp_v1_3 = true;
10905 			amdgpu_dm_connector->as_type = as_type;
10906 			amdgpu_dm_connector->vsdb_info = vsdb_info;
10907 
10908 			amdgpu_dm_connector->min_vfreq = vsdb_info.min_refresh_rate_hz;
10909 			amdgpu_dm_connector->max_vfreq = vsdb_info.max_refresh_rate_hz;
10910 			if (amdgpu_dm_connector->max_vfreq - amdgpu_dm_connector->min_vfreq > 10)
10911 				freesync_capable = true;
10912 
10913 			connector->display_info.monitor_range.min_vfreq = vsdb_info.min_refresh_rate_hz;
10914 			connector->display_info.monitor_range.max_vfreq = vsdb_info.max_refresh_rate_hz;
10915 		}
10916 	}
10917 
10918 update:
10919 	if (dm_con_state)
10920 		dm_con_state->freesync_capable = freesync_capable;
10921 
10922 	if (connector->vrr_capable_property)
10923 		drm_connector_set_vrr_capable_property(connector,
10924 						       freesync_capable);
10925 }
10926 
10927 void amdgpu_dm_trigger_timing_sync(struct drm_device *dev)
10928 {
10929 	struct amdgpu_device *adev = drm_to_adev(dev);
10930 	struct dc *dc = adev->dm.dc;
10931 	int i;
10932 
10933 	mutex_lock(&adev->dm.dc_lock);
10934 	if (dc->current_state) {
10935 		for (i = 0; i < dc->current_state->stream_count; ++i)
10936 			dc->current_state->streams[i]
10937 				->triggered_crtc_reset.enabled =
10938 				adev->dm.force_timing_sync;
10939 
10940 		dm_enable_per_frame_crtc_master_sync(dc->current_state);
10941 		dc_trigger_sync(dc, dc->current_state);
10942 	}
10943 	mutex_unlock(&adev->dm.dc_lock);
10944 }
10945 
10946 void dm_write_reg_func(const struct dc_context *ctx, uint32_t address,
10947 		       u32 value, const char *func_name)
10948 {
10949 #ifdef DM_CHECK_ADDR_0
10950 	if (address == 0) {
10951 		drm_err(adev_to_drm(ctx->driver_context),
10952 			"invalid register write. address = 0");
10953 		return;
10954 	}
10955 #endif
10956 	cgs_write_register(ctx->cgs_device, address, value);
10957 	trace_amdgpu_dc_wreg(&ctx->perf_trace->write_count, address, value);
10958 }
10959 
10960 uint32_t dm_read_reg_func(const struct dc_context *ctx, uint32_t address,
10961 			  const char *func_name)
10962 {
10963 	u32 value;
10964 #ifdef DM_CHECK_ADDR_0
10965 	if (address == 0) {
10966 		drm_err(adev_to_drm(ctx->driver_context),
10967 			"invalid register read; address = 0\n");
10968 		return 0;
10969 	}
10970 #endif
10971 
10972 	if (ctx->dmub_srv &&
10973 	    ctx->dmub_srv->reg_helper_offload.gather_in_progress &&
10974 	    !ctx->dmub_srv->reg_helper_offload.should_burst_write) {
10975 		ASSERT(false);
10976 		return 0;
10977 	}
10978 
10979 	value = cgs_read_register(ctx->cgs_device, address);
10980 
10981 	trace_amdgpu_dc_rreg(&ctx->perf_trace->read_count, address, value);
10982 
10983 	return value;
10984 }
10985 
10986 int amdgpu_dm_process_dmub_aux_transfer_sync(
10987 		struct dc_context *ctx,
10988 		unsigned int link_index,
10989 		struct aux_payload *payload,
10990 		enum aux_return_code_type *operation_result)
10991 {
10992 	struct amdgpu_device *adev = ctx->driver_context;
10993 	struct dmub_notification *p_notify = adev->dm.dmub_notify;
10994 	int ret = -1;
10995 
10996 	mutex_lock(&adev->dm.dpia_aux_lock);
10997 	if (!dc_process_dmub_aux_transfer_async(ctx->dc, link_index, payload)) {
10998 		*operation_result = AUX_RET_ERROR_ENGINE_ACQUIRE;
10999 		goto out;
11000 	}
11001 
11002 	if (!wait_for_completion_timeout(&adev->dm.dmub_aux_transfer_done, 10 * HZ)) {
11003 		DRM_ERROR("wait_for_completion_timeout timeout!");
11004 		*operation_result = AUX_RET_ERROR_TIMEOUT;
11005 		goto out;
11006 	}
11007 
11008 	if (p_notify->result != AUX_RET_SUCCESS) {
11009 		/*
11010 		 * Transient states before tunneling is enabled could
11011 		 * lead to this error. We can ignore this for now.
11012 		 */
11013 		if (p_notify->result != AUX_RET_ERROR_PROTOCOL_ERROR) {
11014 			DRM_WARN("DPIA AUX failed on 0x%x(%d), error %d\n",
11015 					payload->address, payload->length,
11016 					p_notify->result);
11017 		}
11018 		*operation_result = AUX_RET_ERROR_INVALID_REPLY;
11019 		goto out;
11020 	}
11021 
11022 
11023 	payload->reply[0] = adev->dm.dmub_notify->aux_reply.command;
11024 	if (!payload->write && p_notify->aux_reply.length &&
11025 			(payload->reply[0] == AUX_TRANSACTION_REPLY_AUX_ACK)) {
11026 
11027 		if (payload->length != p_notify->aux_reply.length) {
11028 			DRM_WARN("invalid read length %d from DPIA AUX 0x%x(%d)!\n",
11029 				p_notify->aux_reply.length,
11030 					payload->address, payload->length);
11031 			*operation_result = AUX_RET_ERROR_INVALID_REPLY;
11032 			goto out;
11033 		}
11034 
11035 		memcpy(payload->data, p_notify->aux_reply.data,
11036 				p_notify->aux_reply.length);
11037 	}
11038 
11039 	/* success */
11040 	ret = p_notify->aux_reply.length;
11041 	*operation_result = p_notify->result;
11042 out:
11043 	reinit_completion(&adev->dm.dmub_aux_transfer_done);
11044 	mutex_unlock(&adev->dm.dpia_aux_lock);
11045 	return ret;
11046 }
11047 
11048 int amdgpu_dm_process_dmub_set_config_sync(
11049 		struct dc_context *ctx,
11050 		unsigned int link_index,
11051 		struct set_config_cmd_payload *payload,
11052 		enum set_config_status *operation_result)
11053 {
11054 	struct amdgpu_device *adev = ctx->driver_context;
11055 	bool is_cmd_complete;
11056 	int ret;
11057 
11058 	mutex_lock(&adev->dm.dpia_aux_lock);
11059 	is_cmd_complete = dc_process_dmub_set_config_async(ctx->dc,
11060 			link_index, payload, adev->dm.dmub_notify);
11061 
11062 	if (is_cmd_complete || wait_for_completion_timeout(&adev->dm.dmub_aux_transfer_done, 10 * HZ)) {
11063 		ret = 0;
11064 		*operation_result = adev->dm.dmub_notify->sc_status;
11065 	} else {
11066 		DRM_ERROR("wait_for_completion_timeout timeout!");
11067 		ret = -1;
11068 		*operation_result = SET_CONFIG_UNKNOWN_ERROR;
11069 	}
11070 
11071 	if (!is_cmd_complete)
11072 		reinit_completion(&adev->dm.dmub_aux_transfer_done);
11073 	mutex_unlock(&adev->dm.dpia_aux_lock);
11074 	return ret;
11075 }
11076 
11077 bool dm_execute_dmub_cmd(const struct dc_context *ctx, union dmub_rb_cmd *cmd, enum dm_dmub_wait_type wait_type)
11078 {
11079 	return dc_dmub_srv_cmd_run(ctx->dmub_srv, cmd, wait_type);
11080 }
11081 
11082 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)
11083 {
11084 	return dc_dmub_srv_cmd_run_list(ctx->dmub_srv, count, cmd, wait_type);
11085 }
11086