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