xref: /linux/drivers/gpu/drm/amd/display/amdgpu_dm/amdgpu_dm.h (revision 26057fb8e17e4ac9b95a6988ae37089f1b0cef9e)
1 /* SPDX-License-Identifier: MIT */
2 /*
3  * Copyright (C) 2015-2020 Advanced Micro Devices, Inc. All rights reserved.
4  *
5  * Permission is hereby granted, free of charge, to any person obtaining a
6  * copy of this software and associated documentation files (the "Software"),
7  * to deal in the Software without restriction, including without limitation
8  * the rights to use, copy, modify, merge, publish, distribute, sublicense,
9  * and/or sell copies of the Software, and to permit persons to whom the
10  * Software is furnished to do so, subject to the following conditions:
11  *
12  * The above copyright notice and this permission notice shall be included in
13  * all copies or substantial portions of the Software.
14  *
15  * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16  * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17  * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.  IN NO EVENT SHALL
18  * THE COPYRIGHT HOLDER(S) OR AUTHOR(S) BE LIABLE FOR ANY CLAIM, DAMAGES OR
19  * OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE,
20  * ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
21  * OTHER DEALINGS IN THE SOFTWARE.
22  *
23  * Authors: AMD
24  *
25  */
26 
27 #ifndef __AMDGPU_DM_H__
28 #define __AMDGPU_DM_H__
29 
30 #include <drm/display/drm_dp_mst_helper.h>
31 #include <drm/drm_atomic.h>
32 #include <drm/drm_connector.h>
33 #include <drm/drm_crtc.h>
34 #include <drm/drm_plane.h>
35 #include "link_service_types.h"
36 #include <drm/drm_writeback.h>
37 
38 /*
39  * This file contains the definition for amdgpu_display_manager
40  * and its API for amdgpu driver's use.
41  * This component provides all the display related functionality
42  * and this is the only component that calls DAL API.
43  * The API contained here intended for amdgpu driver use.
44  * The API that is called directly from KMS framework is located
45  * in amdgpu_dm_kms.h file
46  */
47 
48 #define AMDGPU_DM_MAX_CRTC 6
49 
50 #define AMDGPU_DM_MAX_NUM_EDP 2
51 
52 #define AMDGPU_DMUB_NOTIFICATION_MAX 8
53 
54 enum amd_vsdb_panel_type {
55 	AMD_VSDB_PANEL_TYPE_DEFAULT = 0,
56 	AMD_VSDB_PANEL_TYPE_MINILED,
57 	AMD_VSDB_PANEL_TYPE_OLED,
58 	AMD_VSDB_PANEL_TYPE_RESERVED,
59 };
60 
61 #define AMDGPU_HDR_MULT_DEFAULT (0x100000000LL)
62 
63 /*
64  * Maximum HDMI HPD debounce delay in milliseconds
65  */
66 #define AMDGPU_DM_MAX_HDMI_HPD_DEBOUNCE_MS 5000
67 /*
68 #include "include/amdgpu_dal_power_if.h"
69 #include "amdgpu_dm_irq.h"
70 */
71 
72 #include "irq_types.h"
73 #include "signal_types.h"
74 #include "amdgpu_dm_crc.h"
75 #include "mod_info_packet.h"
76 struct aux_payload;
77 struct set_config_cmd_payload;
78 enum aux_return_code_type;
79 enum set_config_status;
80 
81 /* Forward declarations */
82 struct amdgpu_device;
83 struct amdgpu_crtc;
84 struct drm_device;
85 struct dc;
86 struct amdgpu_bo;
87 struct dmub_srv;
88 struct dc_plane_state;
89 struct dmub_notification;
90 struct dmub_cmd_fused_request;
91 
92 struct common_irq_params {
93 	struct amdgpu_device *adev;
94 	enum dc_irq_source irq_src;
95 	atomic64_t previous_timestamp;
96 };
97 
98 /**
99  * struct dm_compressor_info - Buffer info used by frame buffer compression
100  * @cpu_addr: MMIO cpu addr
101  * @bo_ptr: Pointer to the buffer object
102  * @gpu_addr: MMIO gpu addr
103  */
104 struct dm_compressor_info {
105 	void *cpu_addr;
106 	struct amdgpu_bo *bo_ptr;
107 	uint64_t gpu_addr;
108 };
109 
110 /**
111  * struct dm_boot_time_crc_info - Buffer info used by boot time CRC
112  * @cpu_addr: MMIO cpu addr
113  * @bo_ptr: Pointer to the buffer object
114  * @gpu_addr: MMIO gpu addr
115  * @size: Size of the buffer
116  */
117 struct dm_boot_time_crc_info {
118 	void *cpu_addr;
119 	struct amdgpu_bo *bo_ptr;
120 	uint64_t gpu_addr;
121 	uint32_t size;
122 };
123 
124 typedef void (*dmub_notify_interrupt_callback_t)(struct amdgpu_device *adev, struct dmub_notification *notify);
125 
126 /**
127  * struct dmub_hpd_work - Handle time consuming work in low priority outbox IRQ
128  *
129  * @handle_hpd_work: Work to be executed in a separate thread to handle hpd_low_irq
130  * @dmub_notify:  notification for callback function
131  * @adev: amdgpu_device pointer
132  */
133 struct dmub_hpd_work {
134 	struct work_struct handle_hpd_work;
135 	struct dmub_notification *dmub_notify;
136 	struct amdgpu_device *adev;
137 };
138 
139 /**
140  * struct vblank_control_work - Work data for vblank control
141  * @work: Kernel work data for the work event
142  * @dm: amdgpu display manager device
143  * @acrtc: amdgpu CRTC instance for which the event has occurred
144  * @stream: DC stream for which the event has occurred
145  * @enable: true if enabling vblank
146  */
147 struct vblank_control_work {
148 	struct work_struct work;
149 	struct amdgpu_display_manager *dm;
150 	struct amdgpu_crtc *acrtc;
151 	struct dc_stream_state *stream;
152 	bool enable;
153 };
154 
155 /**
156  * struct idle_workqueue - Work data for periodic action in idle
157  * @work: Kernel work data for the work event
158  * @dm: amdgpu display manager device
159  * @enable: true if idle worker is enabled
160  * @running: true if idle worker is running
161  */
162 struct idle_workqueue {
163 	struct work_struct work;
164 	struct amdgpu_display_manager *dm;
165 	bool enable;
166 	bool running;
167 };
168 
169 /**
170  * struct vupdate_offload_work - Work data for offloading task from vupdate handler
171  * @work: Kernel work data for the work event
172  * @adev: amdgpu_device back pointer
173  * @stream: DC stream associated with the crtc
174  * @adjust: DC CRTC timing adjust to be applied to the crtc
175  */
176 struct vupdate_offload_work {
177 	struct work_struct work;
178 	struct amdgpu_device *adev;
179 	struct dc_stream_state *stream;
180 	struct dc_crtc_timing_adjust *adjust;
181 };
182 
183 #define MAX_LUMINANCE_DATA_POINTS 99
184 
185 /**
186  * struct amdgpu_dm_luminance_data - Custom luminance data
187  * @luminance: Luminance in percent
188  * @input_signal: Input signal in range 0-255
189  */
190 struct amdgpu_dm_luminance_data {
191 	u8 luminance;
192 	u8 input_signal;
193 } __packed;
194 
195 /**
196  * struct amdgpu_dm_backlight_caps - Information about backlight
197  *
198  * Describe the backlight support for ACPI or eDP AUX.
199  */
200 struct amdgpu_dm_backlight_caps {
201 	/**
202 	 * @ext_caps: Keep the data struct with all the information about the
203 	 * display support for HDR.
204 	 */
205 	union dpcd_sink_ext_caps *ext_caps;
206 	/**
207 	 * @aux_min_input_signal: Min brightness value supported by the display
208 	 */
209 	u32 aux_min_input_signal;
210 	/**
211 	 * @aux_max_input_signal: Max brightness value supported by the display
212 	 * in nits.
213 	 */
214 	u32 aux_max_input_signal;
215 	/**
216 	 * @min_input_signal: minimum possible input in range 0-255.
217 	 */
218 	int min_input_signal;
219 	/**
220 	 * @max_input_signal: maximum possible input in range 0-255.
221 	 */
222 	int max_input_signal;
223 	/**
224 	 * @caps_valid: true if these values are from the ACPI interface.
225 	 */
226 	bool caps_valid;
227 	/**
228 	 * @aux_support: Describes if the display supports AUX backlight.
229 	 */
230 	bool aux_support;
231 	/**
232 	 * @brightness_mask: After deriving brightness, OR it with this mask.
233 	 * Workaround for panels with issues with certain brightness values.
234 	 */
235 	u32 brightness_mask;
236 	/**
237 	 * @ac_level: the default brightness if booted on AC
238 	 */
239 	u8 ac_level;
240 	/**
241 	 * @dc_level: the default brightness if booted on DC
242 	 */
243 	u8 dc_level;
244 	/**
245 	 * @data_points: the number of custom luminance data points
246 	 */
247 	u8 data_points;
248 	/**
249 	 * @luminance_data: custom luminance data
250 	 */
251 	struct amdgpu_dm_luminance_data luminance_data[MAX_LUMINANCE_DATA_POINTS];
252 };
253 
254 /**
255  * struct dal_allocation - Tracks mapped FB memory for SMU communication
256  * @list: list of dal allocations
257  * @bo: GPU buffer object
258  * @cpu_ptr: CPU virtual address of the GPU buffer object
259  * @gpu_addr: GPU virtual address of the GPU buffer object
260  */
261 struct dal_allocation {
262 	struct list_head list;
263 	struct amdgpu_bo *bo;
264 	void *cpu_ptr;
265 	u64 gpu_addr;
266 };
267 
268 /**
269  * struct hpd_rx_irq_offload_work_queue - Work queue to handle hpd_rx_irq
270  * offload work
271  */
272 struct hpd_rx_irq_offload_work_queue {
273 	/**
274 	 * @wq: workqueue structure to queue offload work.
275 	 */
276 	struct workqueue_struct *wq;
277 	/**
278 	 * @offload_lock: To protect fields of offload work queue.
279 	 */
280 	spinlock_t offload_lock;
281 	/**
282 	 * @is_handling_link_loss: Used to prevent inserting link loss event when
283 	 * we're handling link loss
284 	 */
285 	bool is_handling_link_loss;
286 	/**
287 	 * @is_handling_mst_msg_rdy_event: Used to prevent inserting mst message
288 	 * ready event when we're already handling mst message ready event
289 	 */
290 	bool is_handling_mst_msg_rdy_event;
291 	/**
292 	 * @aconnector: The aconnector that this work queue is attached to
293 	 */
294 	struct amdgpu_dm_connector *aconnector;
295 };
296 
297 /**
298  * struct hpd_rx_irq_offload_work - hpd_rx_irq offload work structure
299  */
300 struct hpd_rx_irq_offload_work {
301 	/**
302 	 * @work: offload work
303 	 */
304 	struct work_struct work;
305 	/**
306 	 * @data: reference irq data which is used while handling offload work
307 	 */
308 	union hpd_irq_data data;
309 	/**
310 	 * @offload_wq: offload work queue that this work is queued to
311 	 */
312 	struct hpd_rx_irq_offload_work_queue *offload_wq;
313 	/**
314 	 * @adev: amdgpu_device pointer
315 	 */
316 	struct amdgpu_device *adev;
317 };
318 
319 /**
320  * struct amdgpu_display_manager - Central amdgpu display manager device
321  *
322  * @dc: Display Core control structure
323  * @adev: AMDGPU base driver structure
324  * @ddev: DRM base driver structure
325  * @display_indexes_num: Max number of display streams supported
326  * @irq_handler_list_table_lock: Synchronizes access to IRQ tables
327  * @backlight_dev: Backlight control device
328  * @backlight_link: Link on which to control backlight
329  * @backlight_caps: Capabilities of the backlight device
330  * @freesync_module: Module handling freesync calculations
331  * @hdcp_workqueue: AMDGPU content protection queue
332  * @fw_dmcu: Reference to DMCU firmware
333  * @dmcu_fw_version: Version of the DMCU firmware
334  * @soc_bounding_box: SOC bounding box values provided by gpu_info FW
335  * @cached_state: Caches device atomic state for suspend/resume
336  * @cached_dc_state: Cached state of content streams
337  * @compressor: Frame buffer compression buffer. See &struct dm_compressor_info
338  * @force_timing_sync: set via debugfs. When set, indicates that all connected
339  *		       displays will be forced to synchronize.
340  * @dmcub_trace_event_en: enable dmcub trace events
341  * @dmub_outbox_params: DMUB Outbox parameters
342  * @num_of_edps: number of backlight eDPs
343  * @disable_hpd_irq: disables all HPD and HPD RX interrupt handling in the
344  *		     driver when true
345  * @dmub_aux_transfer_done: struct completion used to indicate when DMUB
346  * 			    transfers are done
347  * @delayed_hpd_wq: work queue used to delay DMUB HPD work
348  */
349 struct amdgpu_display_manager {
350 
351 	struct dc *dc;
352 
353 	/**
354 	 * @dmub_srv:
355 	 *
356 	 * DMUB service, used for controlling the DMUB on hardware
357 	 * that supports it. The pointer to the dmub_srv will be
358 	 * NULL on hardware that does not support it.
359 	 */
360 	struct dmub_srv *dmub_srv;
361 
362 	/**
363 	 * @dmub_notify:
364 	 *
365 	 * Notification from DMUB.
366 	 */
367 
368 	struct dmub_notification *dmub_notify;
369 
370 	/**
371 	 * @dmub_callback:
372 	 *
373 	 * Callback functions to handle notification from DMUB.
374 	 */
375 
376 	dmub_notify_interrupt_callback_t dmub_callback[AMDGPU_DMUB_NOTIFICATION_MAX];
377 
378 	/**
379 	 * @dmub_thread_offload:
380 	 *
381 	 * Flag to indicate if callback is offload.
382 	 */
383 
384 	bool dmub_thread_offload[AMDGPU_DMUB_NOTIFICATION_MAX];
385 
386 	/**
387 	 * @dmub_fb_info:
388 	 *
389 	 * Framebuffer regions for the DMUB.
390 	 */
391 	struct dmub_srv_fb_info *dmub_fb_info;
392 
393 	/**
394 	 * @dmub_fw:
395 	 *
396 	 * DMUB firmware, required on hardware that has DMUB support.
397 	 */
398 	const struct firmware *dmub_fw;
399 
400 	/**
401 	 * @dmub_bo:
402 	 *
403 	 * Buffer object for the DMUB.
404 	 */
405 	struct amdgpu_bo *dmub_bo;
406 
407 	/**
408 	 * @dmub_bo_gpu_addr:
409 	 *
410 	 * GPU virtual address for the DMUB buffer object.
411 	 */
412 	u64 dmub_bo_gpu_addr;
413 
414 	/**
415 	 * @dmub_bo_cpu_addr:
416 	 *
417 	 * CPU address for the DMUB buffer object.
418 	 */
419 	void *dmub_bo_cpu_addr;
420 
421 	/**
422 	 * @dmcub_fw_version:
423 	 *
424 	 * DMCUB firmware version.
425 	 */
426 	uint32_t dmcub_fw_version;
427 
428 	/**
429 	 * @fw_inst_size:
430 	 *
431 	 * Size of the firmware instruction buffer.
432 	 */
433 	uint32_t fw_inst_size;
434 
435 	/**
436 	 * @cgs_device:
437 	 *
438 	 * The Common Graphics Services device. It provides an interface for
439 	 * accessing registers.
440 	 */
441 	struct cgs_device *cgs_device;
442 
443 	struct amdgpu_device *adev;
444 	struct drm_device *ddev;
445 	u16 display_indexes_num;
446 
447 	/**
448 	 * @atomic_obj:
449 	 *
450 	 * In combination with &dm_atomic_state it helps manage
451 	 * global atomic state that doesn't map cleanly into existing
452 	 * drm resources, like &dc_context.
453 	 */
454 	struct drm_private_obj atomic_obj;
455 
456 	/**
457 	 * @dc_lock:
458 	 *
459 	 * Guards access to DC functions that can issue register write
460 	 * sequences.
461 	 */
462 	struct mutex dc_lock;
463 
464 	/**
465 	 * @dmub_lock:
466 	 *
467 	 * Guards access to DMUB command submission.
468 	 */
469 	spinlock_t dmub_lock;
470 
471 	/**
472 	 * @audio_lock:
473 	 *
474 	 * Guards access to audio instance changes.
475 	 */
476 	struct mutex audio_lock;
477 
478 	/**
479 	 * @audio_component:
480 	 *
481 	 * Used to notify ELD changes to sound driver.
482 	 */
483 	struct drm_audio_component *audio_component;
484 
485 	/**
486 	 * @audio_registered:
487 	 *
488 	 * True if the audio component has been registered
489 	 * successfully, false otherwise.
490 	 */
491 	bool audio_registered;
492 
493 	/**
494 	 * @irq_handler_list_low_tab:
495 	 *
496 	 * Low priority IRQ handler table.
497 	 *
498 	 * It is a n*m table consisting of n IRQ sources, and m handlers per IRQ
499 	 * source. Low priority IRQ handlers are deferred to a workqueue to be
500 	 * processed. Hence, they can sleep.
501 	 *
502 	 * Note that handlers are called in the same order as they were
503 	 * registered (FIFO).
504 	 */
505 	struct list_head irq_handler_list_low_tab[DAL_IRQ_SOURCES_NUMBER];
506 
507 	/**
508 	 * @irq_handler_list_high_tab:
509 	 *
510 	 * High priority IRQ handler table.
511 	 *
512 	 * It is a n*m table, same as &irq_handler_list_low_tab. However,
513 	 * handlers in this table are not deferred and are called immediately.
514 	 */
515 	struct list_head irq_handler_list_high_tab[DAL_IRQ_SOURCES_NUMBER];
516 
517 	/**
518 	 * @pflip_params:
519 	 *
520 	 * Page flip IRQ parameters, passed to registered handlers when
521 	 * triggered.
522 	 */
523 	struct common_irq_params
524 	pflip_params[DC_IRQ_SOURCE_PFLIP_LAST - DC_IRQ_SOURCE_PFLIP_FIRST + 1];
525 
526 	/**
527 	 * @vblank_params:
528 	 *
529 	 * Vertical blanking IRQ parameters, passed to registered handlers when
530 	 * triggered.
531 	 */
532 	struct common_irq_params
533 	vblank_params[DC_IRQ_SOURCE_VBLANK6 - DC_IRQ_SOURCE_VBLANK1 + 1];
534 
535 	/**
536 	 * @vline0_params:
537 	 *
538 	 * OTG vertical interrupt0 IRQ parameters, passed to registered
539 	 * handlers when triggered.
540 	 */
541 	struct common_irq_params
542 	vline0_params[DC_IRQ_SOURCE_DC6_VLINE0 - DC_IRQ_SOURCE_DC1_VLINE0 + 1];
543 
544 	/**
545 	 * @vupdate_params:
546 	 *
547 	 * Vertical update IRQ parameters, passed to registered handlers when
548 	 * triggered.
549 	 */
550 	struct common_irq_params
551 	vupdate_params[DC_IRQ_SOURCE_VUPDATE6 - DC_IRQ_SOURCE_VUPDATE1 + 1];
552 
553 	/**
554 	 * @dmub_trace_params:
555 	 *
556 	 * DMUB trace event IRQ parameters, passed to registered handlers when
557 	 * triggered.
558 	 */
559 	struct common_irq_params
560 	dmub_trace_params[1];
561 
562 	struct common_irq_params
563 	dmub_outbox_params[1];
564 
565 	spinlock_t irq_handler_list_table_lock;
566 
567 	struct backlight_device *backlight_dev[AMDGPU_DM_MAX_NUM_EDP];
568 
569 	const struct dc_link *backlight_link[AMDGPU_DM_MAX_NUM_EDP];
570 
571 	uint8_t num_of_edps;
572 
573 	struct amdgpu_dm_backlight_caps backlight_caps[AMDGPU_DM_MAX_NUM_EDP];
574 
575 	struct mod_freesync *freesync_module;
576 	struct mod_power *power_module;
577 	struct hdcp_workqueue *hdcp_workqueue;
578 
579 	/**
580 	 * @vblank_control_workqueue:
581 	 *
582 	 * Deferred work for vblank control events.
583 	 */
584 	struct workqueue_struct *vblank_control_workqueue;
585 
586 	/**
587 	 * @idle_workqueue:
588 	 *
589 	 * Periodic work for idle events.
590 	 */
591 	struct idle_workqueue *idle_workqueue;
592 
593 	struct drm_atomic_commit *cached_state;
594 	struct dc_state *cached_dc_state;
595 
596 	struct dm_compressor_info compressor;
597 
598 	const struct firmware *fw_dmcu;
599 	uint32_t dmcu_fw_version;
600 	/**
601 	 * @soc_bounding_box:
602 	 *
603 	 * gpu_info FW provided soc bounding box struct or 0 if not
604 	 * available in FW
605 	 */
606 	const struct gpu_info_soc_bounding_box_v1_0 *soc_bounding_box;
607 
608 	/**
609 	 * @active_vblank_irq_count:
610 	 *
611 	 * number of currently active vblank irqs
612 	 */
613 	uint32_t active_vblank_irq_count;
614 
615 #if defined(CONFIG_DRM_AMD_SECURE_DISPLAY)
616 	/**
617 	 * @secure_display_ctx:
618 	 *
619 	 * Store secure display relevant info. e.g. the ROI information
620 	 * , the work_struct to command dmub, etc.
621 	 */
622 	struct secure_display_context secure_display_ctx;
623 #endif
624 	/**
625 	 * @hpd_rx_offload_wq:
626 	 *
627 	 * Work queue to offload works of hpd_rx_irq
628 	 */
629 	struct hpd_rx_irq_offload_work_queue *hpd_rx_offload_wq;
630 	/**
631 	 * @mst_encoders:
632 	 *
633 	 * fake encoders used for DP MST.
634 	 */
635 	struct amdgpu_encoder mst_encoders[AMDGPU_DM_MAX_CRTC];
636 	bool force_timing_sync;
637 	bool disable_hpd_irq;
638 	bool dmcub_trace_event_en;
639 	/**
640 	 * @da_list:
641 	 *
642 	 * DAL fb memory allocation list, for communication with SMU.
643 	 */
644 	struct list_head da_list;
645 	struct completion dmub_aux_transfer_done;
646 	struct workqueue_struct *delayed_hpd_wq;
647 
648 	/**
649 	 * @brightness:
650 	 *
651 	 * cached backlight values.
652 	 */
653 	u32 brightness[AMDGPU_DM_MAX_NUM_EDP];
654 	/**
655 	 * @actual_brightness:
656 	 *
657 	 * last successfully applied backlight values.
658 	 */
659 	u32 actual_brightness[AMDGPU_DM_MAX_NUM_EDP];
660 
661 	/**
662 	 * @aux_hpd_discon_quirk:
663 	 *
664 	 * quirk for hpd discon while aux is on-going.
665 	 * occurred on certain intel platform
666 	 */
667 	bool aux_hpd_discon_quirk;
668 
669 	/**
670 	 * @edp0_on_dp1_quirk:
671 	 *
672 	 * quirk for platforms that put edp0 on DP1.
673 	 */
674 	bool edp0_on_dp1_quirk;
675 
676 	/**
677 	 * @dpia_aux_lock:
678 	 *
679 	 * Guards access to DPIA AUX
680 	 */
681 	struct mutex dpia_aux_lock;
682 
683 	/**
684 	 * @bb_from_dmub:
685 	 *
686 	 * Bounding box data read from dmub during early initialization for DCN4+
687 	 * Data is stored as a byte array that should be casted to the appropriate bb struct
688 	 */
689 	void *bb_from_dmub;
690 
691 	/**
692 	 * @oem_i2c:
693 	 *
694 	 * OEM i2c bus
695 	 */
696 	struct amdgpu_i2c_adapter *oem_i2c;
697 
698 	/**
699 	 * @fused_io:
700 	 *
701 	 * dmub fused io interface
702 	 */
703 	struct fused_io_sync {
704 		struct completion replied;
705 		char reply_data[0x40];  // Cannot include dmub_cmd here
706 	} fused_io[8];
707 
708 	/**
709 	 * @dm_boot_time_crc_info:
710 	 *
711 	 * Buffer info for the boot time crc.
712 	 */
713 	struct dm_boot_time_crc_info boot_time_crc_info;
714 };
715 
716 enum dsc_clock_force_state {
717 	DSC_CLK_FORCE_DEFAULT = 0,
718 	DSC_CLK_FORCE_ENABLE,
719 	DSC_CLK_FORCE_DISABLE,
720 };
721 
722 struct dsc_preferred_settings {
723 	enum dsc_clock_force_state dsc_force_enable;
724 	uint32_t dsc_num_slices_v;
725 	uint32_t dsc_num_slices_h;
726 	uint32_t dsc_bits_per_pixel;
727 	bool dsc_force_disable_passthrough;
728 };
729 
730 enum mst_progress_status {
731 	MST_STATUS_DEFAULT = 0,
732 	MST_PROBE = BIT(0),
733 	MST_REMOTE_EDID = BIT(1),
734 	MST_ALLOCATE_NEW_PAYLOAD = BIT(2),
735 	MST_CLEAR_ALLOCATED_PAYLOAD = BIT(3),
736 };
737 
738 /**
739  * struct amdgpu_hdmi_vsdb_info - Keep track of the VSDB info
740  *
741  * AMDGPU supports FreeSync over HDMI by using the VSDB section, and this
742  * struct is useful to keep track of the display-specific information about
743  * FreeSync.
744  */
745 struct amdgpu_hdmi_vsdb_info {
746 	/**
747 	 * @amd_vsdb_version: Vendor Specific Data Block Version, should be
748 	 * used to determine which Vendor Specific InfoFrame (VSIF) to send.
749 	 */
750 	unsigned int amd_vsdb_version;
751 
752 	/**
753 	 * @freesync_supported: FreeSync Supported.
754 	 */
755 	bool freesync_supported;
756 
757 	/**
758 	 * @min_refresh_rate_hz: FreeSync Minimum Refresh Rate in Hz.
759 	 */
760 	unsigned int min_refresh_rate_hz;
761 
762 	/**
763 	 * @max_refresh_rate_hz: FreeSync Maximum Refresh Rate in Hz
764 	 */
765 	unsigned int max_refresh_rate_hz;
766 
767 	/**
768 	 * @freesync_mccs_vcp_code: MCCS VCP code for freesync state
769 	 */
770 	unsigned int freesync_mccs_vcp_code;
771 
772 	/**
773 	 * @replay_mode: Replay supported
774 	 */
775 	bool replay_mode;
776 };
777 
778 struct amdgpu_dm_connector {
779 
780 	struct drm_connector base;
781 	uint32_t connector_id;
782 	int bl_idx;
783 
784 	struct cec_notifier *notifier;
785 
786 	/* we need to mind the EDID between detect
787 	   and get modes due to analog/digital/tvencoder */
788 	const struct drm_edid *drm_edid;
789 
790 	/* shared with amdgpu */
791 	struct amdgpu_hpd hpd;
792 
793 	/* number of modes generated from EDID at 'dc_sink' */
794 	int num_modes;
795 
796 	/* The 'old' sink - before an HPD.
797 	 * The 'current' sink is in dc_link->sink. */
798 	struct dc_sink *dc_sink;
799 	struct dc_link *dc_link;
800 
801 	/**
802 	 * @dc_em_sink: Reference to the emulated (virtual) sink.
803 	 */
804 	struct dc_sink *dc_em_sink;
805 
806 	/* DM only */
807 	struct drm_dp_mst_topology_mgr mst_mgr;
808 	struct amdgpu_dm_dp_aux dm_dp_aux;
809 	struct drm_dp_mst_port *mst_output_port;
810 	struct amdgpu_dm_connector *mst_root;
811 	struct drm_dp_aux *dsc_aux;
812 	uint32_t mst_local_bw;
813 	uint16_t vc_full_pbn;
814 	struct mutex handle_mst_msg_ready;
815 
816 	/* branch device specific data */
817 	uint32_t branch_ieee_oui;
818 
819 	/* TODO see if we can merge with ddc_bus or make a dm_connector */
820 	struct amdgpu_i2c_adapter *i2c;
821 
822 	/* Monitor range limits */
823 	/**
824 	 * @min_vfreq: Minimal frequency supported by the display in Hz. This
825 	 * value is set to zero when there is no FreeSync support.
826 	 */
827 	int min_vfreq;
828 
829 	/**
830 	 * @max_vfreq: Maximum frequency supported by the display in Hz. This
831 	 * value is set to zero when there is no FreeSync support.
832 	 */
833 	int max_vfreq ;
834 
835 	/* Audio instance - protected by audio_lock. */
836 	int audio_inst;
837 
838 	struct mutex hpd_lock;
839 
840 	bool fake_enable;
841 	bool force_yuv420_output;
842 	bool force_yuv422_output;
843 	struct dsc_preferred_settings dsc_settings;
844 	struct psr_caps psr_caps;
845 	union dp_downstream_port_present mst_downstream_port_present;
846 	/* Cached display modes */
847 	struct drm_display_mode freesync_vid_base;
848 
849 	int sr_skip_count;
850 	bool disallow_edp_enter_psr;
851 	bool disallow_edp_enter_replay;
852 
853 	/* Record progress status of mst*/
854 	uint8_t mst_status;
855 
856 	/* Automated testing */
857 	bool timing_changed;
858 	struct dc_crtc_timing *timing_requested;
859 
860 	/* Adaptive Sync */
861 	bool pack_sdp_v1_3;
862 	enum adaptive_sync_type as_type;
863 	struct amdgpu_hdmi_vsdb_info vsdb_info;
864 
865 	/* HDMI HPD debounce support */
866 	unsigned int hdmi_hpd_debounce_delay_ms;
867 	struct delayed_work hdmi_hpd_debounce_work;
868 	struct dc_sink *hdmi_prev_sink;
869 };
870 
871 static inline void amdgpu_dm_set_mst_status(uint8_t *status,
872 		uint8_t flags, bool set)
873 {
874 	if (set)
875 		*status |= flags;
876 	else
877 		*status &= ~flags;
878 }
879 
880 #define to_amdgpu_dm_connector(x) container_of(x, struct amdgpu_dm_connector, base)
881 
882 struct amdgpu_dm_wb_connector {
883 	struct drm_writeback_connector base;
884 	struct dc_link *link;
885 };
886 
887 #define to_amdgpu_dm_wb_connector(x) container_of(x, struct amdgpu_dm_wb_connector, base)
888 
889 extern const struct amdgpu_ip_block_version dm_ip_block;
890 
891 /* enum amdgpu_transfer_function: pre-defined transfer function supported by AMD.
892  *
893  * It includes standardized transfer functions and pure power functions. The
894  * transfer function coefficients are available at modules/color/color_gamma.c
895  */
896 enum amdgpu_transfer_function {
897 	AMDGPU_TRANSFER_FUNCTION_DEFAULT,
898 	AMDGPU_TRANSFER_FUNCTION_SRGB_EOTF,
899 	AMDGPU_TRANSFER_FUNCTION_BT709_INV_OETF,
900 	AMDGPU_TRANSFER_FUNCTION_PQ_EOTF,
901 	AMDGPU_TRANSFER_FUNCTION_IDENTITY,
902 	AMDGPU_TRANSFER_FUNCTION_GAMMA22_EOTF,
903 	AMDGPU_TRANSFER_FUNCTION_GAMMA24_EOTF,
904 	AMDGPU_TRANSFER_FUNCTION_GAMMA26_EOTF,
905 	AMDGPU_TRANSFER_FUNCTION_SRGB_INV_EOTF,
906 	AMDGPU_TRANSFER_FUNCTION_BT709_OETF,
907 	AMDGPU_TRANSFER_FUNCTION_PQ_INV_EOTF,
908 	AMDGPU_TRANSFER_FUNCTION_GAMMA22_INV_EOTF,
909 	AMDGPU_TRANSFER_FUNCTION_GAMMA24_INV_EOTF,
910 	AMDGPU_TRANSFER_FUNCTION_GAMMA26_INV_EOTF,
911 	AMDGPU_TRANSFER_FUNCTION_COUNT
912 };
913 
914 struct dm_plane_state {
915 	struct drm_plane_state base;
916 	struct dc_plane_state *dc_state;
917 
918 	/* Plane color mgmt */
919 	/**
920 	 * @degamma_lut:
921 	 *
922 	 * 1D LUT for mapping framebuffer/plane pixel data before sampling or
923 	 * blending operations. It's usually applied to linearize input space.
924 	 * The blob (if not NULL) is an array of &struct drm_color_lut.
925 	 */
926 	struct drm_property_blob *degamma_lut;
927 	/**
928 	 * @degamma_tf:
929 	 *
930 	 * Predefined transfer function to tell DC driver the input space to
931 	 * linearize.
932 	 */
933 	enum amdgpu_transfer_function degamma_tf;
934 	/**
935 	 * @hdr_mult:
936 	 *
937 	 * Multiplier to 'gain' the plane.  When PQ is decoded using the fixed
938 	 * func transfer function to the internal FP16 fb, 1.0 -> 80 nits (on
939 	 * AMD at least). When sRGB is decoded, 1.0 -> 1.0, obviously.
940 	 * Therefore, 1.0 multiplier = 80 nits for SDR content.  So if you
941 	 * want, 203 nits for SDR content, pass in (203.0 / 80.0).  Format is
942 	 * S31.32 sign-magnitude.
943 	 *
944 	 * HDR multiplier can wide range beyond [0.0, 1.0]. This means that PQ
945 	 * TF is needed for any subsequent linear-to-non-linear transforms.
946 	 */
947 	__u64 hdr_mult;
948 	/**
949 	 * @ctm:
950 	 *
951 	 * Color transformation matrix. The blob (if not NULL) is a &struct
952 	 * drm_color_ctm_3x4.
953 	 */
954 	struct drm_property_blob *ctm;
955 	/**
956 	 * @shaper_lut: shaper lookup table blob. The blob (if not NULL) is an
957 	 * array of &struct drm_color_lut.
958 	 */
959 	struct drm_property_blob *shaper_lut;
960 	/**
961 	 * @shaper_tf:
962 	 *
963 	 * Predefined transfer function to delinearize color space.
964 	 */
965 	enum amdgpu_transfer_function shaper_tf;
966 	/**
967 	 * @lut3d: 3D lookup table blob. The blob (if not NULL) is an array of
968 	 * &struct drm_color_lut.
969 	 */
970 	struct drm_property_blob *lut3d;
971 	/**
972 	 * @blend_lut: blend lut lookup table blob. The blob (if not NULL) is an
973 	 * array of &struct drm_color_lut.
974 	 */
975 	struct drm_property_blob *blend_lut;
976 	/**
977 	 * @blend_tf:
978 	 *
979 	 * Pre-defined transfer function for converting plane pixel data before
980 	 * applying blend LUT.
981 	 */
982 	enum amdgpu_transfer_function blend_tf;
983 };
984 
985 enum amdgpu_dm_cursor_mode {
986 	DM_CURSOR_NATIVE_MODE = 0,
987 	DM_CURSOR_OVERLAY_MODE,
988 };
989 
990 struct dm_crtc_state {
991 	struct drm_crtc_state base;
992 	struct dc_stream_state *stream;
993 
994 	bool cm_has_degamma;
995 	bool cm_is_degamma_srgb;
996 
997 	bool mpo_requested;
998 
999 	int update_type;
1000 	int active_planes;
1001 
1002 	int crc_skip_count;
1003 
1004 	bool freesync_vrr_info_changed;
1005 
1006 	bool mode_changed_independent_from_dsc;
1007 	bool dsc_force_changed;
1008 	bool vrr_supported;
1009 	struct mod_freesync_config freesync_config;
1010 	struct dc_info_packet vrr_infopacket;
1011 
1012 	int abm_level;
1013 
1014 	/**
1015 	 * @regamma_tf:
1016 	 *
1017 	 * Pre-defined transfer function for converting internal FB -> wire
1018 	 * encoding.
1019 	 */
1020 	enum amdgpu_transfer_function regamma_tf;
1021 
1022 	enum amdgpu_dm_cursor_mode cursor_mode;
1023 };
1024 
1025 #define to_dm_crtc_state(x) container_of(x, struct dm_crtc_state, base)
1026 
1027 struct dm_atomic_state {
1028 	struct drm_private_state base;
1029 
1030 	struct dc_state *context;
1031 };
1032 
1033 #define to_dm_atomic_state(x) container_of(x, struct dm_atomic_state, base)
1034 
1035 struct dm_connector_state {
1036 	struct drm_connector_state base;
1037 
1038 	enum amdgpu_rmx_type scaling;
1039 	uint8_t underscan_vborder;
1040 	uint8_t underscan_hborder;
1041 	bool underscan_enable;
1042 	bool freesync_capable;
1043 	bool update_hdcp;
1044 	bool abm_sysfs_forbidden;
1045 	uint8_t abm_level;
1046 	int vcpi_slots;
1047 	uint64_t pbn;
1048 };
1049 
1050 #define to_dm_connector_state(x)\
1051 	container_of((x), struct dm_connector_state, base)
1052 
1053 void amdgpu_dm_connector_funcs_reset(struct drm_connector *connector);
1054 struct drm_connector_state *
1055 amdgpu_dm_connector_atomic_duplicate_state(struct drm_connector *connector);
1056 int amdgpu_dm_connector_atomic_set_property(struct drm_connector *connector,
1057 					    struct drm_connector_state *state,
1058 					    struct drm_property *property,
1059 					    uint64_t val);
1060 
1061 int amdgpu_dm_connector_atomic_get_property(struct drm_connector *connector,
1062 					    const struct drm_connector_state *state,
1063 					    struct drm_property *property,
1064 					    uint64_t *val);
1065 
1066 int amdgpu_dm_get_encoder_crtc_mask(struct amdgpu_device *adev);
1067 
1068 void amdgpu_dm_connector_init_helper(struct amdgpu_display_manager *dm,
1069 				     struct amdgpu_dm_connector *aconnector,
1070 				     int connector_type,
1071 				     struct dc_link *link,
1072 				     int link_index);
1073 
1074 enum drm_mode_status amdgpu_dm_connector_mode_valid(struct drm_connector *connector,
1075 				   const struct drm_display_mode *mode);
1076 
1077 void dm_restore_drm_connector_state(struct drm_device *dev,
1078 				    struct drm_connector *connector);
1079 
1080 void amdgpu_dm_update_freesync_caps(struct drm_connector *connector,
1081 				    const struct drm_edid *drm_edid, bool do_mccs);
1082 
1083 void amdgpu_dm_trigger_timing_sync(struct drm_device *dev);
1084 
1085 /* 3D LUT max size is 17x17x17 (4913 entries) */
1086 #define MAX_COLOR_3DLUT_SIZE 17
1087 #define MAX_COLOR_3DLUT_BITDEPTH 12
1088 int amdgpu_dm_verify_lut3d_size(struct amdgpu_device *adev,
1089 				struct drm_plane_state *plane_state);
1090 /* 1D LUT size */
1091 #define MAX_COLOR_LUT_ENTRIES 4096
1092 /* Legacy gamm LUT users such as X doesn't like large LUT sizes */
1093 #define MAX_COLOR_LEGACY_LUT_ENTRIES 256
1094 
1095 void amdgpu_dm_init_color_mod(void);
1096 int amdgpu_dm_create_color_properties(struct amdgpu_device *adev);
1097 int amdgpu_dm_verify_lut_sizes(const struct drm_crtc_state *crtc_state);
1098 int amdgpu_dm_update_crtc_color_mgmt(struct dm_crtc_state *crtc);
1099 int amdgpu_dm_check_crtc_color_mgmt(struct dm_crtc_state *crtc,
1100 				    bool check_only);
1101 int amdgpu_dm_update_plane_color_mgmt(struct dm_crtc_state *crtc,
1102 				      struct drm_plane_state *plane_state,
1103 				      struct dc_plane_state *dc_plane_state);
1104 
1105 void amdgpu_dm_update_connector_after_detect(
1106 		struct amdgpu_dm_connector *aconnector);
1107 
1108 void populate_hdmi_info_from_connector(struct drm_hdmi_info *info,
1109 				      struct dc_edid_caps *edid_caps);
1110 
1111 extern const struct drm_encoder_helper_funcs amdgpu_dm_encoder_helper_funcs;
1112 
1113 int amdgpu_dm_process_dmub_aux_transfer_sync(struct dc_context *ctx, unsigned int link_index,
1114 					struct aux_payload *payload, enum aux_return_code_type *operation_result);
1115 
1116 bool amdgpu_dm_execute_fused_io(
1117 		struct amdgpu_device *dev,
1118 		struct dc_link *link,
1119 		union dmub_rb_cmd *commands,
1120 		uint8_t count,
1121 		uint32_t timeout_us
1122 );
1123 
1124 int amdgpu_dm_process_dmub_set_config_sync(struct dc_context *ctx, unsigned int link_index,
1125 					struct set_config_cmd_payload *payload, enum set_config_status *operation_result);
1126 
1127 struct dc_stream_state *
1128 	create_validate_stream_for_sink(struct drm_connector *connector,
1129 					const struct drm_display_mode *drm_mode,
1130 					const struct dm_connector_state *dm_state,
1131 					const struct dc_stream_state *old_stream);
1132 
1133 int dm_atomic_get_state(struct drm_atomic_commit *state,
1134 			struct dm_atomic_state **dm_state);
1135 
1136 struct drm_connector *
1137 amdgpu_dm_find_first_crtc_matching_connector(struct drm_atomic_commit *state,
1138 					     struct drm_crtc *crtc);
1139 
1140 int convert_dc_color_depth_into_bpc(enum dc_color_depth display_color_depth);
1141 struct idle_workqueue *idle_create_workqueue(struct amdgpu_device *adev);
1142 
1143 void *dm_allocate_gpu_mem(struct amdgpu_device *adev,
1144 						  enum dc_gpu_mem_alloc_type type,
1145 						  size_t size,
1146 						  long long *addr);
1147 void dm_free_gpu_mem(struct amdgpu_device *adev,
1148 						  enum dc_gpu_mem_alloc_type type,
1149 						  void *addr);
1150 
1151 bool amdgpu_dm_is_headless(struct amdgpu_device *adev);
1152 
1153 void hdmi_cec_set_edid(struct amdgpu_dm_connector *aconnector);
1154 void hdmi_cec_unset_edid(struct amdgpu_dm_connector *aconnector);
1155 int amdgpu_dm_initialize_hdmi_connector(struct amdgpu_dm_connector *aconnector);
1156 
1157 void retrieve_dmi_info(struct amdgpu_display_manager *dm);
1158 
1159 void amdgpu_dm_update_backlight_caps(struct amdgpu_display_manager *dm, int bl_idx);
1160 #endif /* __AMDGPU_DM_H__ */
1161