]> git.proxmox.com Git - mirror_ubuntu-bionic-kernel.git/blob - drivers/gpu/drm/amd/display/dc/dc.h
drm/amd/display: Roll core_link into dc_link
[mirror_ubuntu-bionic-kernel.git] / drivers / gpu / drm / amd / display / dc / dc.h
1 /*
2 * Copyright 2012-14 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 #ifndef DC_INTERFACE_H_
27 #define DC_INTERFACE_H_
28
29 #include "dc_types.h"
30 #include "grph_object_defs.h"
31 #include "logger_types.h"
32 #include "gpio_types.h"
33 #include "link_service_types.h"
34 #include "grph_object_ctrl_defs.h"
35
36 #define MAX_SURFACES 3
37 #define MAX_STREAMS 6
38 #define MAX_SINKS_PER_LINK 4
39
40 /*******************************************************************************
41 * Display Core Interfaces
42 ******************************************************************************/
43
44 struct dc_caps {
45 uint32_t max_streams;
46 uint32_t max_links;
47 uint32_t max_audios;
48 uint32_t max_slave_planes;
49 uint32_t max_surfaces;
50 uint32_t max_downscale_ratio;
51 uint32_t i2c_speed_in_khz;
52
53 unsigned int max_cursor_size;
54 };
55
56
57 struct dc_dcc_surface_param {
58 struct dc_size surface_size;
59 enum surface_pixel_format format;
60 enum swizzle_mode_values swizzle_mode;
61 enum dc_scan_direction scan;
62 };
63
64 struct dc_dcc_setting {
65 unsigned int max_compressed_blk_size;
66 unsigned int max_uncompressed_blk_size;
67 bool independent_64b_blks;
68 };
69
70 struct dc_surface_dcc_cap {
71 union {
72 struct {
73 struct dc_dcc_setting rgb;
74 } grph;
75
76 struct {
77 struct dc_dcc_setting luma;
78 struct dc_dcc_setting chroma;
79 } video;
80 };
81
82 bool capable;
83 bool const_color_support;
84 };
85
86 struct dc_static_screen_events {
87 bool cursor_update;
88 bool surface_update;
89 bool overlay_update;
90 };
91
92 /* Forward declaration*/
93 struct dc;
94 struct dc_surface;
95 struct validate_context;
96
97 struct dc_cap_funcs {
98 #if defined(CONFIG_DRM_AMD_DC_DCN1_0)
99 bool (*get_dcc_compression_cap)(const struct dc *dc,
100 const struct dc_dcc_surface_param *input,
101 struct dc_surface_dcc_cap *output);
102 #else
103 int i;
104 #endif
105 };
106
107 struct dc_stream_funcs {
108 bool (*adjust_vmin_vmax)(struct dc *dc,
109 const struct dc_stream **stream,
110 int num_streams,
111 int vmin,
112 int vmax);
113 bool (*get_crtc_position)(struct dc *dc,
114 const struct dc_stream **stream,
115 int num_streams,
116 unsigned int *v_pos,
117 unsigned int *nom_v_pos);
118
119 bool (*set_gamut_remap)(struct dc *dc,
120 const struct dc_stream *stream);
121
122 bool (*program_csc_matrix)(struct dc *dc,
123 const struct dc_stream *stream);
124
125 void (*set_static_screen_events)(struct dc *dc,
126 const struct dc_stream **stream,
127 int num_streams,
128 const struct dc_static_screen_events *events);
129
130 void (*set_dither_option)(const struct dc_stream *stream,
131 enum dc_dither_option option);
132 };
133
134 struct link_training_settings;
135
136 struct dc_link_funcs {
137 void (*set_drive_settings)(struct dc *dc,
138 struct link_training_settings *lt_settings,
139 const struct dc_link *link);
140 void (*perform_link_training)(struct dc *dc,
141 struct dc_link_settings *link_setting,
142 bool skip_video_pattern);
143 void (*set_preferred_link_settings)(struct dc *dc,
144 struct dc_link_settings *link_setting,
145 struct dc_link *link);
146 void (*enable_hpd)(const struct dc_link *link);
147 void (*disable_hpd)(const struct dc_link *link);
148 void (*set_test_pattern)(
149 struct dc_link *link,
150 enum dp_test_pattern test_pattern,
151 const struct link_training_settings *p_link_settings,
152 const unsigned char *p_custom_pattern,
153 unsigned int cust_pattern_size);
154 };
155
156 /* Structure to hold configuration flags set by dm at dc creation. */
157 struct dc_config {
158 bool gpu_vm_support;
159 bool disable_disp_pll_sharing;
160 };
161
162 struct dc_debug {
163 bool surface_visual_confirm;
164 bool sanity_checks;
165 bool max_disp_clk;
166 bool surface_trace;
167 bool timing_trace;
168 bool clock_trace;
169 bool validation_trace;
170 bool disable_stutter;
171 bool disable_dcc;
172 bool disable_dfs_bypass;
173 #if defined(CONFIG_DRM_AMD_DC_DCN1_0)
174 bool disable_dpp_power_gate;
175 bool disable_hubp_power_gate;
176 bool disable_pplib_wm_range;
177 bool use_dml_wm;
178 bool disable_pipe_split;
179 int sr_exit_time_dpm0_ns;
180 int sr_enter_plus_exit_time_dpm0_ns;
181 int sr_exit_time_ns;
182 int sr_enter_plus_exit_time_ns;
183 int urgent_latency_ns;
184 int percent_of_ideal_drambw;
185 int dram_clock_change_latency_ns;
186 int always_scale;
187 #endif
188 bool disable_pplib_clock_request;
189 bool disable_clock_gate;
190 bool disable_dmcu;
191 bool disable_psr;
192 bool force_abm_enable;
193 };
194
195 struct dc {
196 struct dc_caps caps;
197 struct dc_cap_funcs cap_funcs;
198 struct dc_stream_funcs stream_funcs;
199 struct dc_link_funcs link_funcs;
200 struct dc_config config;
201 struct dc_debug debug;
202 };
203
204 enum frame_buffer_mode {
205 FRAME_BUFFER_MODE_LOCAL_ONLY = 0,
206 FRAME_BUFFER_MODE_ZFB_ONLY,
207 FRAME_BUFFER_MODE_MIXED_ZFB_AND_LOCAL,
208 } ;
209
210 struct dchub_init_data {
211 int64_t zfb_phys_addr_base;
212 int64_t zfb_mc_base_addr;
213 uint64_t zfb_size_in_byte;
214 enum frame_buffer_mode fb_mode;
215 bool dchub_initialzied;
216 bool dchub_info_valid;
217 };
218
219 struct dc_init_data {
220 struct hw_asic_id asic_id;
221 void *driver; /* ctx */
222 struct cgs_device *cgs_device;
223
224 int num_virtual_links;
225 /*
226 * If 'vbios_override' not NULL, it will be called instead
227 * of the real VBIOS. Intended use is Diagnostics on FPGA.
228 */
229 struct dc_bios *vbios_override;
230 enum dce_environment dce_environment;
231
232 struct dc_config flags;
233 };
234
235 struct dc *dc_create(const struct dc_init_data *init_params);
236
237 void dc_destroy(struct dc **dc);
238
239 bool dc_init_dchub(struct dc *dc, struct dchub_init_data *dh_data);
240
241 void dc_log_hw_state(struct dc *dc);
242
243 /*******************************************************************************
244 * Surface Interfaces
245 ******************************************************************************/
246
247 enum {
248 TRANSFER_FUNC_POINTS = 1025
249 };
250
251 struct dc_hdr_static_metadata {
252 /* display chromaticities and white point in units of 0.00001 */
253 unsigned int chromaticity_green_x;
254 unsigned int chromaticity_green_y;
255 unsigned int chromaticity_blue_x;
256 unsigned int chromaticity_blue_y;
257 unsigned int chromaticity_red_x;
258 unsigned int chromaticity_red_y;
259 unsigned int chromaticity_white_point_x;
260 unsigned int chromaticity_white_point_y;
261
262 uint32_t min_luminance;
263 uint32_t max_luminance;
264 uint32_t maximum_content_light_level;
265 uint32_t maximum_frame_average_light_level;
266
267 bool hdr_supported;
268 bool is_hdr;
269 };
270
271 enum dc_transfer_func_type {
272 TF_TYPE_PREDEFINED,
273 TF_TYPE_DISTRIBUTED_POINTS,
274 TF_TYPE_BYPASS
275 };
276
277 struct dc_transfer_func_distributed_points {
278 struct fixed31_32 red[TRANSFER_FUNC_POINTS];
279 struct fixed31_32 green[TRANSFER_FUNC_POINTS];
280 struct fixed31_32 blue[TRANSFER_FUNC_POINTS];
281
282 uint16_t end_exponent;
283 uint16_t x_point_at_y1_red;
284 uint16_t x_point_at_y1_green;
285 uint16_t x_point_at_y1_blue;
286 };
287
288 enum dc_transfer_func_predefined {
289 TRANSFER_FUNCTION_SRGB,
290 TRANSFER_FUNCTION_BT709,
291 TRANSFER_FUNCTION_PQ,
292 TRANSFER_FUNCTION_LINEAR,
293 };
294
295 struct dc_transfer_func {
296 struct dc_transfer_func_distributed_points tf_pts;
297 enum dc_transfer_func_type type;
298 enum dc_transfer_func_predefined tf;
299 struct dc_context *ctx;
300 int ref_count;
301 };
302
303 /*
304 * This structure is filled in by dc_surface_get_status and contains
305 * the last requested address and the currently active address so the called
306 * can determine if there are any outstanding flips
307 */
308 struct dc_surface_status {
309 struct dc_plane_address requested_address;
310 struct dc_plane_address current_address;
311 bool is_flip_pending;
312 bool is_right_eye;
313 };
314
315 struct dc_surface {
316 struct dc_plane_address address;
317
318 struct scaling_taps scaling_quality;
319 struct rect src_rect;
320 struct rect dst_rect;
321 struct rect clip_rect;
322
323 union plane_size plane_size;
324 union dc_tiling_info tiling_info;
325
326 struct dc_plane_dcc_param dcc;
327 struct dc_hdr_static_metadata hdr_static_ctx;
328
329 const struct dc_gamma *gamma_correction;
330 struct dc_transfer_func *in_transfer_func;
331
332 enum dc_color_space color_space;
333 enum surface_pixel_format format;
334 enum dc_rotation_angle rotation;
335 enum plane_stereo_format stereo_format;
336
337 bool per_pixel_alpha;
338 bool visible;
339 bool flip_immediate;
340 bool horizontal_mirror;
341
342 /* private to DC core */
343 struct dc_surface_status status;
344 struct dc_context *ctx;
345
346 /* private to dc_surface.c */
347 enum dc_irq_source irq_source;
348 int ref_count;
349 };
350
351 struct dc_plane_info {
352 union plane_size plane_size;
353 union dc_tiling_info tiling_info;
354 struct dc_plane_dcc_param dcc;
355 enum surface_pixel_format format;
356 enum dc_rotation_angle rotation;
357 enum plane_stereo_format stereo_format;
358 enum dc_color_space color_space; /*todo: wrong place, fits in scaling info*/
359 bool horizontal_mirror;
360 bool visible;
361 bool per_pixel_alpha;
362 };
363
364 struct dc_scaling_info {
365 struct rect src_rect;
366 struct rect dst_rect;
367 struct rect clip_rect;
368 struct scaling_taps scaling_quality;
369 };
370
371 struct dc_surface_update {
372 struct dc_surface *surface;
373
374 /* isr safe update parameters. null means no updates */
375 struct dc_flip_addrs *flip_addr;
376 struct dc_plane_info *plane_info;
377 struct dc_scaling_info *scaling_info;
378 /* following updates require alloc/sleep/spin that is not isr safe,
379 * null means no updates
380 */
381 /* gamma TO BE REMOVED */
382 struct dc_gamma *gamma;
383 struct dc_transfer_func *in_transfer_func;
384 struct dc_hdr_static_metadata *hdr_static_metadata;
385 };
386
387 /*
388 * Create a new surface with default parameters;
389 */
390 struct dc_surface *dc_create_surface(const struct dc *dc);
391 const struct dc_surface_status *dc_surface_get_status(
392 const struct dc_surface *dc_surface);
393
394 void dc_surface_retain(struct dc_surface *dc_surface);
395 void dc_surface_release(struct dc_surface *dc_surface);
396
397 void dc_gamma_retain(const struct dc_gamma *dc_gamma);
398 void dc_gamma_release(const struct dc_gamma **dc_gamma);
399 struct dc_gamma *dc_create_gamma(void);
400
401 void dc_transfer_func_retain(struct dc_transfer_func *dc_tf);
402 void dc_transfer_func_release(struct dc_transfer_func *dc_tf);
403 struct dc_transfer_func *dc_create_transfer_func(void);
404
405 /*
406 * This structure holds a surface address. There could be multiple addresses
407 * in cases such as Stereo 3D, Planar YUV, etc. Other per-flip attributes such
408 * as frame durations and DCC format can also be set.
409 */
410 struct dc_flip_addrs {
411 struct dc_plane_address address;
412 bool flip_immediate;
413 /* TODO: add flip duration for FreeSync */
414 };
415
416 /*
417 * Set up surface attributes and associate to a stream
418 * The surfaces parameter is an absolute set of all surface active for the stream.
419 * If no surfaces are provided, the stream will be blanked; no memory read.
420 * Any flip related attribute changes must be done through this interface.
421 *
422 * After this call:
423 * Surfaces attributes are programmed and configured to be composed into stream.
424 * This does not trigger a flip. No surface address is programmed.
425 */
426
427 bool dc_commit_surfaces_to_stream(
428 struct dc *dc,
429 struct dc_surface **dc_surfaces,
430 uint8_t surface_count,
431 const struct dc_stream *stream);
432
433 bool dc_post_update_surfaces_to_stream(
434 struct dc *dc);
435
436 /* Surface update type is used by dc_update_surfaces_and_stream
437 * The update type is determined at the very beginning of the function based
438 * on parameters passed in and decides how much programming (or updating) is
439 * going to be done during the call.
440 *
441 * UPDATE_TYPE_FAST is used for really fast updates that do not require much
442 * logical calculations or hardware register programming. This update MUST be
443 * ISR safe on windows. Currently fast update will only be used to flip surface
444 * address.
445 *
446 * UPDATE_TYPE_MED is used for slower updates which require significant hw
447 * re-programming however do not affect bandwidth consumption or clock
448 * requirements. At present, this is the level at which front end updates
449 * that do not require us to run bw_calcs happen. These are in/out transfer func
450 * updates, viewport offset changes, recout size changes and pixel depth changes.
451 * This update can be done at ISR, but we want to minimize how often this happens.
452 *
453 * UPDATE_TYPE_FULL is slow. Really slow. This requires us to recalculate our
454 * bandwidth and clocks, possibly rearrange some pipes and reprogram anything front
455 * end related. Any time viewport dimensions, recout dimensions, scaling ratios or
456 * gamma need to be adjusted or pipe needs to be turned on (or disconnected) we do
457 * a full update. This cannot be done at ISR level and should be a rare event.
458 * Unless someone is stress testing mpo enter/exit, playing with colour or adjusting
459 * underscan we don't expect to see this call at all.
460 */
461
462 enum surface_update_type {
463 UPDATE_TYPE_FAST, /* super fast, safe to execute in isr */
464 UPDATE_TYPE_MED, /* ISR safe, most of programming needed, no bw/clk change*/
465 UPDATE_TYPE_FULL, /* may need to shuffle resources */
466 };
467
468 /*******************************************************************************
469 * Stream Interfaces
470 ******************************************************************************/
471 struct dc_stream {
472 const struct dc_sink *sink;
473 struct dc_crtc_timing timing;
474
475 struct rect src; /* composition area */
476 struct rect dst; /* stream addressable area */
477
478 struct audio_info audio_info;
479
480 struct freesync_context freesync_ctx;
481
482 struct dc_transfer_func *out_transfer_func;
483 struct colorspace_transform gamut_remap_matrix;
484 struct csc_transform csc_color_matrix;
485
486 enum signal_type output_signal;
487
488 enum dc_color_space output_color_space;
489 enum dc_dither_option dither_option;
490
491 enum view_3d_format view_format;
492
493 bool ignore_msa_timing_param;
494 /* TODO: custom INFO packets */
495 /* TODO: ABM info (DMCU) */
496 /* TODO: PSR info */
497 /* TODO: CEA VIC */
498 };
499
500 struct dc_stream_update {
501 struct rect src;
502 struct rect dst;
503 struct dc_transfer_func *out_transfer_func;
504 };
505
506
507 /*
508 * Setup stream attributes if no stream updates are provided
509 * there will be no impact on the stream parameters
510 *
511 * Set up surface attributes and associate to a stream
512 * The surfaces parameter is an absolute set of all surface active for the stream.
513 * If no surfaces are provided, the stream will be blanked; no memory read.
514 * Any flip related attribute changes must be done through this interface.
515 *
516 * After this call:
517 * Surfaces attributes are programmed and configured to be composed into stream.
518 * This does not trigger a flip. No surface address is programmed.
519 *
520 */
521
522 void dc_update_surfaces_and_stream(struct dc *dc,
523 struct dc_surface_update *surface_updates, int surface_count,
524 const struct dc_stream *dc_stream,
525 struct dc_stream_update *stream_update);
526
527 /*
528 * Log the current stream state.
529 */
530 void dc_stream_log(
531 const struct dc_stream *stream,
532 struct dal_logger *dc_logger,
533 enum dc_log_type log_type);
534
535 uint8_t dc_get_current_stream_count(const struct dc *dc);
536 struct dc_stream *dc_get_stream_at_index(const struct dc *dc, uint8_t i);
537
538 /*
539 * Return the current frame counter.
540 */
541 uint32_t dc_stream_get_vblank_counter(const struct dc_stream *stream);
542
543 /* TODO: Return parsed values rather than direct register read
544 * This has a dependency on the caller (amdgpu_get_crtc_scanoutpos)
545 * being refactored properly to be dce-specific
546 */
547 bool dc_stream_get_scanoutpos(const struct dc_stream *stream,
548 uint32_t *v_blank_start,
549 uint32_t *v_blank_end,
550 uint32_t *h_position,
551 uint32_t *v_position);
552
553 /*
554 * Structure to store surface/stream associations for validation
555 */
556 struct dc_validation_set {
557 const struct dc_stream *stream;
558 struct dc_surface *surfaces[MAX_SURFACES];
559 uint8_t surface_count;
560 };
561
562 /*
563 * This function takes a set of resources and checks that they are cofunctional.
564 *
565 * After this call:
566 * No hardware is programmed for call. Only validation is done.
567 */
568 struct validate_context *dc_get_validate_context(
569 const struct dc *dc,
570 const struct dc_validation_set set[],
571 uint8_t set_count);
572
573 bool dc_validate_resources(
574 const struct dc *dc,
575 const struct dc_validation_set set[],
576 uint8_t set_count);
577
578 /*
579 * This function takes a stream and checks if it is guaranteed to be supported.
580 * Guaranteed means that MAX_COFUNC similar streams are supported.
581 *
582 * After this call:
583 * No hardware is programmed for call. Only validation is done.
584 */
585
586 bool dc_validate_guaranteed(
587 const struct dc *dc,
588 const struct dc_stream *stream);
589
590 void dc_resource_validate_ctx_copy_construct(
591 const struct validate_context *src_ctx,
592 struct validate_context *dst_ctx);
593
594 void dc_resource_validate_ctx_destruct(struct validate_context *context);
595
596 /*
597 * TODO update to make it about validation sets
598 * Set up streams and links associated to drive sinks
599 * The streams parameter is an absolute set of all active streams.
600 *
601 * After this call:
602 * Phy, Encoder, Timing Generator are programmed and enabled.
603 * New streams are enabled with blank stream; no memory read.
604 */
605 bool dc_commit_context(struct dc *dc, struct validate_context *context);
606
607 /*
608 * Set up streams and links associated to drive sinks
609 * The streams parameter is an absolute set of all active streams.
610 *
611 * After this call:
612 * Phy, Encoder, Timing Generator are programmed and enabled.
613 * New streams are enabled with blank stream; no memory read.
614 */
615 bool dc_commit_streams(
616 struct dc *dc,
617 const struct dc_stream *streams[],
618 uint8_t stream_count);
619 /*
620 * Enable stereo when commit_streams is not required,
621 * for example, frame alternate.
622 */
623 bool dc_enable_stereo(
624 struct dc *dc,
625 struct validate_context *context,
626 const struct dc_stream *streams[],
627 uint8_t stream_count);
628
629 /**
630 * Create a new default stream for the requested sink
631 */
632 struct dc_stream *dc_create_stream_for_sink(const struct dc_sink *dc_sink);
633
634 void dc_stream_retain(const struct dc_stream *dc_stream);
635 void dc_stream_release(const struct dc_stream *dc_stream);
636
637 struct dc_stream_status {
638 int primary_otg_inst;
639 int surface_count;
640 struct dc_surface *surfaces[MAX_SURFACE_NUM];
641
642 /*
643 * link this stream passes through
644 */
645 struct dc_link *link;
646 };
647
648 struct dc_stream_status *dc_stream_get_status(
649 const struct dc_stream *dc_stream);
650
651 enum surface_update_type dc_check_update_surfaces_for_stream(
652 struct dc *dc,
653 struct dc_surface_update *updates,
654 int surface_count,
655 struct dc_stream_update *stream_update,
656 const struct dc_stream_status *stream_status);
657
658
659 void dc_retain_validate_context(struct validate_context *context);
660 void dc_release_validate_context(struct validate_context *context);
661
662 /*******************************************************************************
663 * Link Interfaces
664 ******************************************************************************/
665
666 struct dpcd_caps {
667 union dpcd_rev dpcd_rev;
668 union max_lane_count max_ln_count;
669 union max_down_spread max_down_spread;
670
671 /* dongle type (DP converter, CV smart dongle) */
672 enum display_dongle_type dongle_type;
673 /* Dongle's downstream count. */
674 union sink_count sink_count;
675 /* If dongle_type == DISPLAY_DONGLE_DP_HDMI_CONVERTER,
676 indicates 'Frame Sequential-to-lllFrame Pack' conversion capability.*/
677 struct dc_dongle_caps dongle_caps;
678
679 uint32_t sink_dev_id;
680 uint32_t branch_dev_id;
681 int8_t branch_dev_name[6];
682 int8_t branch_hw_revision;
683
684 bool allow_invalid_MSA_timing_param;
685 bool panel_mode_edp;
686 };
687
688 struct dc_link_status {
689 struct dpcd_caps *dpcd_caps;
690 };
691
692 /* DP MST stream allocation (payload bandwidth number) */
693 struct link_mst_stream_allocation {
694 /* DIG front */
695 const struct stream_encoder *stream_enc;
696 /* associate DRM payload table with DC stream encoder */
697 uint8_t vcp_id;
698 /* number of slots required for the DP stream in transport packet */
699 uint8_t slot_count;
700 };
701
702 /* DP MST stream allocation table */
703 struct link_mst_stream_allocation_table {
704 /* number of DP video streams */
705 int stream_count;
706 /* array of stream allocations */
707 struct link_mst_stream_allocation stream_allocations[MAX_CONTROLLER_NUM];
708 };
709
710 /*
711 * A link contains one or more sinks and their connected status.
712 * The currently active signal type (HDMI, DP-SST, DP-MST) is also reported.
713 */
714 struct dc_link {
715 const struct dc_sink *remote_sinks[MAX_SINKS_PER_LINK];
716 unsigned int sink_count;
717 const struct dc_sink *local_sink;
718 unsigned int link_index;
719 enum dc_connection_type type;
720 enum signal_type connector_signal;
721 enum dc_irq_source irq_source_hpd;
722 enum dc_irq_source irq_source_hpd_rx;/* aka DP Short Pulse */
723 /* caps is the same as reported_link_cap. link_traing use
724 * reported_link_cap. Will clean up. TODO
725 */
726 struct dc_link_settings reported_link_cap;
727 struct dc_link_settings verified_link_cap;
728 struct dc_link_settings max_link_setting;
729 struct dc_link_settings cur_link_settings;
730 struct dc_lane_settings cur_lane_setting;
731 struct dc_link_settings preferred_link_setting;
732
733 uint8_t ddc_hw_inst;
734
735 uint8_t hpd_src;
736
737 uint8_t link_enc_hw_inst;
738
739 bool test_pattern_enabled;
740 union compliance_test_state compliance_test_state;
741
742 void *priv;
743
744 struct ddc_service *ddc;
745
746 bool aux_mode;
747
748 /* Private to DC core */
749
750 const struct core_dc *dc;
751
752 struct dc_context *ctx;
753
754 struct link_encoder *link_enc;
755 struct graphics_object_id link_id;
756 union ddi_channel_mapping ddi_channel_mapping;
757 struct connector_device_tag_info device_tag;
758 struct dpcd_caps dpcd_caps;
759 unsigned int dpcd_sink_count;
760
761 enum edp_revision edp_revision;
762 bool psr_enabled;
763
764 /* MST record stream using this link */
765 struct link_flags {
766 bool dp_keep_receiver_powered;
767 } wa_flags;
768 struct link_mst_stream_allocation_table mst_stream_alloc_table;
769
770 struct dc_link_status link_status;
771
772 };
773
774 const struct dc_link_status *dc_link_get_status(const struct dc_link *dc_link);
775
776 /*
777 * Return an enumerated dc_link. dc_link order is constant and determined at
778 * boot time. They cannot be created or destroyed.
779 * Use dc_get_caps() to get number of links.
780 */
781 struct dc_link *dc_get_link_at_index(const struct dc *dc, uint32_t link_index);
782
783 /* Return id of physical connector represented by a dc_link at link_index.*/
784 const struct graphics_object_id dc_get_link_id_at_index(
785 struct dc *dc, uint32_t link_index);
786
787 /* Set backlight level of an embedded panel (eDP, LVDS). */
788 bool dc_link_set_backlight_level(const struct dc_link *dc_link, uint32_t level,
789 uint32_t frame_ramp, const struct dc_stream *stream);
790
791 bool dc_link_set_abm_disable(const struct dc_link *dc_link);
792
793 bool dc_link_set_psr_enable(const struct dc_link *dc_link, bool enable);
794
795 bool dc_link_get_psr_state(const struct dc_link *dc_link, uint32_t *psr_state);
796
797 bool dc_link_setup_psr(struct dc_link *dc_link,
798 const struct dc_stream *stream, struct psr_config *psr_config,
799 struct psr_context *psr_context);
800
801 /* Request DC to detect if there is a Panel connected.
802 * boot - If this call is during initial boot.
803 * Return false for any type of detection failure or MST detection
804 * true otherwise. True meaning further action is required (status update
805 * and OS notification).
806 */
807 bool dc_link_detect(struct dc_link *dc_link, bool boot);
808
809 /* Notify DC about DP RX Interrupt (aka Short Pulse Interrupt).
810 * Return:
811 * true - Downstream port status changed. DM should call DC to do the
812 * detection.
813 * false - no change in Downstream port status. No further action required
814 * from DM. */
815 bool dc_link_handle_hpd_rx_irq(struct dc_link *dc_link,
816 union hpd_irq_data *hpd_irq_dpcd_data);
817
818 struct dc_sink_init_data;
819
820 struct dc_sink *dc_link_add_remote_sink(
821 struct dc_link *dc_link,
822 const uint8_t *edid,
823 int len,
824 struct dc_sink_init_data *init_data);
825
826 void dc_link_remove_remote_sink(
827 struct dc_link *link,
828 const struct dc_sink *sink);
829
830 /* Used by diagnostics for virtual link at the moment */
831 void dc_link_set_sink(struct dc_link *link, struct dc_sink *sink);
832
833 void dc_link_dp_set_drive_settings(
834 struct dc_link *link,
835 struct link_training_settings *lt_settings);
836
837 enum link_training_result dc_link_dp_perform_link_training(
838 struct dc_link *link,
839 const struct dc_link_settings *link_setting,
840 bool skip_video_pattern);
841
842 void dc_link_dp_enable_hpd(const struct dc_link *link);
843
844 void dc_link_dp_disable_hpd(const struct dc_link *link);
845
846 bool dc_link_dp_set_test_pattern(
847 struct dc_link *link,
848 enum dp_test_pattern test_pattern,
849 const struct link_training_settings *p_link_settings,
850 const unsigned char *p_custom_pattern,
851 unsigned int cust_pattern_size);
852
853 /*******************************************************************************
854 * Sink Interfaces - A sink corresponds to a display output device
855 ******************************************************************************/
856
857 struct dc_container_id {
858 // 128bit GUID in binary form
859 unsigned char guid[16];
860 // 8 byte port ID -> ELD.PortID
861 unsigned int portId[2];
862 // 128bit GUID in binary formufacturer name -> ELD.ManufacturerName
863 unsigned short manufacturerName;
864 // 2 byte product code -> ELD.ProductCode
865 unsigned short productCode;
866 };
867
868
869
870 /*
871 * The sink structure contains EDID and other display device properties
872 */
873 struct dc_sink {
874 enum signal_type sink_signal;
875 struct dc_edid dc_edid; /* raw edid */
876 struct dc_edid_caps edid_caps; /* parse display caps */
877 struct dc_container_id *dc_container_id;
878 uint32_t dongle_max_pix_clk;
879 void *priv;
880 struct stereo_3d_features features_3d[TIMING_3D_FORMAT_MAX];
881 bool converter_disable_audio;
882 };
883
884 void dc_sink_retain(const struct dc_sink *sink);
885 void dc_sink_release(const struct dc_sink *sink);
886
887 const struct audio **dc_get_audios(struct dc *dc);
888
889 struct dc_sink_init_data {
890 enum signal_type sink_signal;
891 struct dc_link *link;
892 uint32_t dongle_max_pix_clk;
893 bool converter_disable_audio;
894 };
895
896 struct dc_sink *dc_sink_create(const struct dc_sink_init_data *init_params);
897 bool dc_sink_get_container_id(struct dc_sink *dc_sink, struct dc_container_id *container_id);
898 bool dc_sink_set_container_id(struct dc_sink *dc_sink, const struct dc_container_id *container_id);
899
900 /*******************************************************************************
901 * Cursor interfaces - To manages the cursor within a stream
902 ******************************************************************************/
903 /* TODO: Deprecated once we switch to dc_set_cursor_position */
904 bool dc_stream_set_cursor_attributes(
905 const struct dc_stream *stream,
906 const struct dc_cursor_attributes *attributes);
907
908 bool dc_stream_set_cursor_position(
909 const struct dc_stream *stream,
910 const struct dc_cursor_position *position);
911
912 /* Newer interfaces */
913 struct dc_cursor {
914 struct dc_plane_address address;
915 struct dc_cursor_attributes attributes;
916 };
917
918 /*******************************************************************************
919 * Interrupt interfaces
920 ******************************************************************************/
921 enum dc_irq_source dc_interrupt_to_irq_source(
922 struct dc *dc,
923 uint32_t src_id,
924 uint32_t ext_id);
925 void dc_interrupt_set(const struct dc *dc, enum dc_irq_source src, bool enable);
926 void dc_interrupt_ack(struct dc *dc, enum dc_irq_source src);
927 enum dc_irq_source dc_get_hpd_irq_source_at_index(
928 struct dc *dc, uint32_t link_index);
929
930 /*******************************************************************************
931 * Power Interfaces
932 ******************************************************************************/
933
934 void dc_set_power_state(
935 struct dc *dc,
936 enum dc_acpi_cm_power_state power_state);
937 void dc_resume(const struct dc *dc);
938
939 /*
940 * DPCD access interfaces
941 */
942
943 bool dc_read_aux_dpcd(
944 struct dc *dc,
945 uint32_t link_index,
946 uint32_t address,
947 uint8_t *data,
948 uint32_t size);
949
950 bool dc_write_aux_dpcd(
951 struct dc *dc,
952 uint32_t link_index,
953 uint32_t address,
954 const uint8_t *data,
955 uint32_t size);
956
957 bool dc_read_aux_i2c(
958 struct dc *dc,
959 uint32_t link_index,
960 enum i2c_mot_mode mot,
961 uint32_t address,
962 uint8_t *data,
963 uint32_t size);
964
965 bool dc_write_aux_i2c(
966 struct dc *dc,
967 uint32_t link_index,
968 enum i2c_mot_mode mot,
969 uint32_t address,
970 const uint8_t *data,
971 uint32_t size);
972
973 bool dc_query_ddc_data(
974 struct dc *dc,
975 uint32_t link_index,
976 uint32_t address,
977 uint8_t *write_buf,
978 uint32_t write_size,
979 uint8_t *read_buf,
980 uint32_t read_size);
981
982 bool dc_submit_i2c(
983 struct dc *dc,
984 uint32_t link_index,
985 struct i2c_command *cmd);
986
987
988 #endif /* DC_INTERFACE_H_ */