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