blob: 77bd54659a8bb7ff06ccda78df8628574b3a9dfe [file] [log] [blame]
Harry Wentland45622362017-09-12 15:58:20 -04001/*
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"
Harry Wentland45622362017-09-12 15:58:20 -040030#include "grph_object_defs.h"
31#include "logger_types.h"
32#include "gpio_types.h"
33#include "link_service_types.h"
Harry Wentlandd0778eb2017-07-22 20:05:20 -040034#include "grph_object_ctrl_defs.h"
Harry Wentland45622362017-09-12 15:58:20 -040035
Harry Wentland091a97e2016-12-06 12:25:52 -050036#define MAX_SURFACES 3
Aric Cyrab2541b2016-12-29 15:27:12 -050037#define MAX_STREAMS 6
Harry Wentland45622362017-09-12 15:58:20 -040038#define MAX_SINKS_PER_LINK 4
39
40/*******************************************************************************
41 * Display Core Interfaces
42 ******************************************************************************/
43
44struct dc_caps {
Aric Cyrab2541b2016-12-29 15:27:12 -050045 uint32_t max_streams;
Harry Wentland45622362017-09-12 15:58:20 -040046 uint32_t max_links;
47 uint32_t max_audios;
48 uint32_t max_slave_planes;
Alex Deucherd4e13b02017-06-15 16:24:01 -040049 uint32_t max_surfaces;
Harry Wentland45622362017-09-12 15:58:20 -040050 uint32_t max_downscale_ratio;
51 uint32_t i2c_speed_in_khz;
Tony Chenga37656b2017-02-08 22:13:52 -050052
53 unsigned int max_cursor_size;
Harry Wentland45622362017-09-12 15:58:20 -040054};
55
56
57struct dc_dcc_surface_param {
Harry Wentland45622362017-09-12 15:58:20 -040058 struct dc_size surface_size;
Anthony Kooebf055f2017-06-14 10:19:57 -040059 enum surface_pixel_format format;
Alex Deucher2c8ad2d2017-06-15 16:20:24 -040060 enum swizzle_mode_values swizzle_mode;
Harry Wentland45622362017-09-12 15:58:20 -040061 enum dc_scan_direction scan;
62};
63
64struct dc_dcc_setting {
65 unsigned int max_compressed_blk_size;
66 unsigned int max_uncompressed_blk_size;
67 bool independent_64b_blks;
68};
69
70struct dc_surface_dcc_cap {
Harry Wentland45622362017-09-12 15:58:20 -040071 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 };
Anthony Kooebf055f2017-06-14 10:19:57 -040081
82 bool capable;
83 bool const_color_support;
Harry Wentland45622362017-09-12 15:58:20 -040084};
85
Sylvia Tsai94267b32017-04-21 15:29:55 -040086struct dc_static_screen_events {
87 bool cursor_update;
88 bool surface_update;
89 bool overlay_update;
90};
91
Harry Wentland45622362017-09-12 15:58:20 -040092/* Forward declaration*/
93struct dc;
94struct dc_surface;
95struct validate_context;
96
97struct dc_cap_funcs {
Alex Deucherff5ef992017-06-15 16:27:42 -040098#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
Harry Wentland45622362017-09-12 15:58:20 -0400103 int i;
Alex Deucherff5ef992017-06-15 16:27:42 -0400104#endif
Harry Wentland45622362017-09-12 15:58:20 -0400105};
106
107struct 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);
Eric Cook72ada5f2017-04-18 15:24:50 -0400113 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
Harry Wentland45622362017-09-12 15:58:20 -0400119 bool (*set_gamut_remap)(struct dc *dc,
Amy Zhangf46661d2017-05-09 14:45:54 -0400120 const struct dc_stream *stream);
Sylvia Tsai94267b32017-04-21 15:29:55 -0400121
Yue Hin Lauabe07e82017-06-28 17:21:42 -0400122 bool (*program_csc_matrix)(struct dc *dc,
123 const struct dc_stream *stream);
124
Sylvia Tsai94267b32017-04-21 15:29:55 -0400125 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);
Ding Wang529cad02017-04-25 10:03:27 -0400129
130 void (*set_dither_option)(const struct dc_stream *stream,
131 enum dc_dither_option option);
Harry Wentland45622362017-09-12 15:58:20 -0400132};
133
134struct link_training_settings;
135
136struct dc_link_funcs {
137 void (*set_drive_settings)(struct dc *dc,
Hersen Wubf5cda32017-01-04 10:22:35 -0500138 struct link_training_settings *lt_settings,
139 const struct dc_link *link);
Harry Wentland45622362017-09-12 15:58:20 -0400140 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,
Zeyu Fan88639162016-12-23 16:53:12 -0500144 struct dc_link_settings *link_setting,
Harry Wentlandd0778eb2017-07-22 20:05:20 -0400145 struct dc_link *link);
Harry Wentland45622362017-09-12 15:58:20 -0400146 void (*enable_hpd)(const struct dc_link *link);
147 void (*disable_hpd)(const struct dc_link *link);
148 void (*set_test_pattern)(
Harry Wentlandd0778eb2017-07-22 20:05:20 -0400149 struct dc_link *link,
Harry Wentland45622362017-09-12 15:58:20 -0400150 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. */
157struct dc_config {
158 bool gpu_vm_support;
159 bool disable_disp_pll_sharing;
160};
161
162struct dc_debug {
163 bool surface_visual_confirm;
Tony Cheng2b13d7d2017-07-14 14:07:16 -0400164 bool sanity_checks;
Harry Wentland45622362017-09-12 15:58:20 -0400165 bool max_disp_clk;
Harry Wentland45622362017-09-12 15:58:20 -0400166 bool surface_trace;
Yongqiang Sun94749802016-12-08 09:47:11 -0500167 bool timing_trace;
Dmytro Laktyushkinc9742682017-06-07 13:53:30 -0400168 bool clock_trace;
Harry Wentland45622362017-09-12 15:58:20 -0400169 bool validation_trace;
170 bool disable_stutter;
171 bool disable_dcc;
172 bool disable_dfs_bypass;
Alex Deucherff5ef992017-06-15 16:27:42 -0400173#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;
Dmytro Laktyushkin90f095c2017-06-16 11:27:59 -0400178 bool disable_pipe_split;
Dmytro Laktyushkin139cb652017-06-21 09:35:35 -0400179 int sr_exit_time_dpm0_ns;
180 int sr_enter_plus_exit_time_dpm0_ns;
Alex Deucherff5ef992017-06-15 16:27:42 -0400181 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;
Dmytro Laktyushkine73b59b2017-05-19 13:01:35 -0400186 int always_scale;
Alex Deucherff5ef992017-06-15 16:27:42 -0400187#endif
Alex Deucher2c8ad2d2017-06-15 16:20:24 -0400188 bool disable_pplib_clock_request;
Harry Wentland45622362017-09-12 15:58:20 -0400189 bool disable_clock_gate;
Yongqiang Sunaa66df52016-12-15 10:50:48 -0500190 bool disable_dmcu;
Charlene Liu29eba8e2017-05-23 17:15:54 -0400191 bool disable_psr;
Anthony Koo70814f62017-01-27 17:50:03 -0500192 bool force_abm_enable;
Harry Wentland45622362017-09-12 15:58:20 -0400193};
194
195struct 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
Alex Deucher2c8ad2d2017-06-15 16:20:24 -0400204enum 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
210struct dchub_init_data {
Alex Deucher2c8ad2d2017-06-15 16:20:24 -0400211 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;
Anthony Kooebf055f2017-06-14 10:19:57 -0400215 bool dchub_initialzied;
216 bool dchub_info_valid;
Alex Deucher2c8ad2d2017-06-15 16:20:24 -0400217};
Alex Deucher2c8ad2d2017-06-15 16:20:24 -0400218
Harry Wentland45622362017-09-12 15:58:20 -0400219struct 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
235struct dc *dc_create(const struct dc_init_data *init_params);
236
237void dc_destroy(struct dc **dc);
238
Alex Deucher2c8ad2d2017-06-15 16:20:24 -0400239bool dc_init_dchub(struct dc *dc, struct dchub_init_data *dh_data);
Alex Deucher2c8ad2d2017-06-15 16:20:24 -0400240
Tony Cheng6d244be2017-07-20 00:12:20 -0400241void dc_log_hw_state(struct dc *dc);
242
Harry Wentland45622362017-09-12 15:58:20 -0400243/*******************************************************************************
244 * Surface Interfaces
245 ******************************************************************************/
246
247enum {
Anthony Koofb735a92016-12-13 13:59:41 -0500248 TRANSFER_FUNC_POINTS = 1025
Harry Wentland45622362017-09-12 15:58:20 -0400249};
250
Andrew Wong1646a6fe2016-12-22 15:41:30 -0500251struct dc_hdr_static_metadata {
Andrew Wong1646a6fe2016-12-22 15:41:30 -0500252 /* 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;
Anthony Kooebf055f2017-06-14 10:19:57 -0400266
267 bool hdr_supported;
268 bool is_hdr;
Andrew Wong1646a6fe2016-12-22 15:41:30 -0500269};
270
Anthony Koofb735a92016-12-13 13:59:41 -0500271enum dc_transfer_func_type {
272 TF_TYPE_PREDEFINED,
273 TF_TYPE_DISTRIBUTED_POINTS,
Dmytro Laktyushkin7950f0f2017-06-13 17:08:22 -0400274 TF_TYPE_BYPASS
Anthony Koofb735a92016-12-13 13:59:41 -0500275};
276
277struct dc_transfer_func_distributed_points {
Amy Zhangfcd2f4b2017-01-05 17:12:20 -0500278 struct fixed31_32 red[TRANSFER_FUNC_POINTS];
279 struct fixed31_32 green[TRANSFER_FUNC_POINTS];
280 struct fixed31_32 blue[TRANSFER_FUNC_POINTS];
281
Anthony Koofb735a92016-12-13 13:59:41 -0500282 uint16_t end_exponent;
Amy Zhangfcd2f4b2017-01-05 17:12:20 -0500283 uint16_t x_point_at_y1_red;
284 uint16_t x_point_at_y1_green;
285 uint16_t x_point_at_y1_blue;
Anthony Koofb735a92016-12-13 13:59:41 -0500286};
287
288enum dc_transfer_func_predefined {
289 TRANSFER_FUNCTION_SRGB,
290 TRANSFER_FUNCTION_BT709,
Anthony Koo90e508b2016-12-15 12:09:46 -0500291 TRANSFER_FUNCTION_PQ,
Anthony Koofb735a92016-12-13 13:59:41 -0500292 TRANSFER_FUNCTION_LINEAR,
293};
294
295struct dc_transfer_func {
Anthony Kooebf055f2017-06-14 10:19:57 -0400296 struct dc_transfer_func_distributed_points tf_pts;
Anthony Koofb735a92016-12-13 13:59:41 -0500297 enum dc_transfer_func_type type;
298 enum dc_transfer_func_predefined tf;
Leo (Sunpeng) Li7b0c4702017-07-10 14:04:21 -0400299 struct dc_context *ctx;
300 int ref_count;
Anthony Koofb735a92016-12-13 13:59:41 -0500301};
302
Harry Wentlande12cfcb2017-07-20 11:43:32 -0400303/*
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 */
308struct 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
Harry Wentland45622362017-09-12 15:58:20 -0400315struct dc_surface {
Harry Wentland45622362017-09-12 15:58:20 -0400316 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;
Anthony Kooebf055f2017-06-14 10:19:57 -0400325
Harry Wentland45622362017-09-12 15:58:20 -0400326 struct dc_plane_dcc_param dcc;
Andrew Wong1646a6fe2016-12-22 15:41:30 -0500327 struct dc_hdr_static_metadata hdr_static_ctx;
328
Harry Wentland45622362017-09-12 15:58:20 -0400329 const struct dc_gamma *gamma_correction;
Leo (Sunpeng) Li7b0c4702017-07-10 14:04:21 -0400330 struct dc_transfer_func *in_transfer_func;
Anthony Kooebf055f2017-06-14 10:19:57 -0400331
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;
Harry Wentlande12cfcb2017-07-20 11:43:32 -0400341
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;
Harry Wentland45622362017-09-12 15:58:20 -0400349};
350
351struct dc_plane_info {
352 union plane_size plane_size;
353 union dc_tiling_info tiling_info;
Leon Elazar9cd09bf2016-12-19 12:00:05 -0500354 struct dc_plane_dcc_param dcc;
Harry Wentland45622362017-09-12 15:58:20 -0400355 enum surface_pixel_format format;
356 enum dc_rotation_angle rotation;
Harry Wentland45622362017-09-12 15:58:20 -0400357 enum plane_stereo_format stereo_format;
358 enum dc_color_space color_space; /*todo: wrong place, fits in scaling info*/
Anthony Kooebf055f2017-06-14 10:19:57 -0400359 bool horizontal_mirror;
Harry Wentland45622362017-09-12 15:58:20 -0400360 bool visible;
Anthony Kooebf055f2017-06-14 10:19:57 -0400361 bool per_pixel_alpha;
Harry Wentland45622362017-09-12 15:58:20 -0400362};
363
364struct dc_scaling_info {
Anthony Kooebf055f2017-06-14 10:19:57 -0400365 struct rect src_rect;
366 struct rect dst_rect;
367 struct rect clip_rect;
368 struct scaling_taps scaling_quality;
Harry Wentland45622362017-09-12 15:58:20 -0400369};
370
371struct dc_surface_update {
Harry Wentlande12cfcb2017-07-20 11:43:32 -0400372 struct dc_surface *surface;
Harry Wentland45622362017-09-12 15:58:20 -0400373
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 */
Anthony Koofb735a92016-12-13 13:59:41 -0500381 /* gamma TO BE REMOVED */
Harry Wentland45622362017-09-12 15:58:20 -0400382 struct dc_gamma *gamma;
Anthony Koofb735a92016-12-13 13:59:41 -0500383 struct dc_transfer_func *in_transfer_func;
Amy Zhangf46661d2017-05-09 14:45:54 -0400384 struct dc_hdr_static_metadata *hdr_static_metadata;
Harry Wentland45622362017-09-12 15:58:20 -0400385};
Harry Wentland45622362017-09-12 15:58:20 -0400386
387/*
388 * Create a new surface with default parameters;
389 */
390struct dc_surface *dc_create_surface(const struct dc *dc);
391const struct dc_surface_status *dc_surface_get_status(
392 const struct dc_surface *dc_surface);
393
Harry Wentlande12cfcb2017-07-20 11:43:32 -0400394void dc_surface_retain(struct dc_surface *dc_surface);
395void dc_surface_release(struct dc_surface *dc_surface);
Harry Wentland45622362017-09-12 15:58:20 -0400396
Amy Zhang89e89632016-12-12 10:32:24 -0500397void dc_gamma_retain(const struct dc_gamma *dc_gamma);
Yongqiang Sunaff20232016-12-23 10:18:08 -0500398void dc_gamma_release(const struct dc_gamma **dc_gamma);
Harry Wentland45622362017-09-12 15:58:20 -0400399struct dc_gamma *dc_create_gamma(void);
400
Leo (Sunpeng) Li7b0c4702017-07-10 14:04:21 -0400401void dc_transfer_func_retain(struct dc_transfer_func *dc_tf);
402void dc_transfer_func_release(struct dc_transfer_func *dc_tf);
Anthony Koo90e508b2016-12-15 12:09:46 -0500403struct dc_transfer_func *dc_create_transfer_func(void);
Anthony Koofb735a92016-12-13 13:59:41 -0500404
Harry Wentland45622362017-09-12 15:58:20 -0400405/*
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 */
410struct dc_flip_addrs {
411 struct dc_plane_address address;
412 bool flip_immediate;
Harry Wentland45622362017-09-12 15:58:20 -0400413 /* TODO: add flip duration for FreeSync */
414};
415
416/*
Aric Cyrab2541b2016-12-29 15:27:12 -0500417 * 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.
Harry Wentland45622362017-09-12 15:58:20 -0400420 * Any flip related attribute changes must be done through this interface.
421 *
422 * After this call:
Aric Cyrab2541b2016-12-29 15:27:12 -0500423 * Surfaces attributes are programmed and configured to be composed into stream.
Harry Wentland45622362017-09-12 15:58:20 -0400424 * This does not trigger a flip. No surface address is programmed.
425 */
426
Aric Cyrab2541b2016-12-29 15:27:12 -0500427bool dc_commit_surfaces_to_stream(
Harry Wentland45622362017-09-12 15:58:20 -0400428 struct dc *dc,
Harry Wentlande12cfcb2017-07-20 11:43:32 -0400429 struct dc_surface **dc_surfaces,
Harry Wentland45622362017-09-12 15:58:20 -0400430 uint8_t surface_count,
Aric Cyrab2541b2016-12-29 15:27:12 -0500431 const struct dc_stream *stream);
Harry Wentland45622362017-09-12 15:58:20 -0400432
Aric Cyrab2541b2016-12-29 15:27:12 -0500433bool dc_post_update_surfaces_to_stream(
Harry Wentland45622362017-09-12 15:58:20 -0400434 struct dc *dc);
435
Dmytro Laktyushkin81e2b2d2017-05-10 18:24:24 -0400436/* 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
Leon Elazar5869b0f2017-03-01 12:30:11 -0500462enum surface_update_type {
463 UPDATE_TYPE_FAST, /* super fast, safe to execute in isr */
Dmytro Laktyushkin81e2b2d2017-05-10 18:24:24 -0400464 UPDATE_TYPE_MED, /* ISR safe, most of programming needed, no bw/clk change*/
Leon Elazar5869b0f2017-03-01 12:30:11 -0500465 UPDATE_TYPE_FULL, /* may need to shuffle resources */
466};
467
Harry Wentland45622362017-09-12 15:58:20 -0400468/*******************************************************************************
469 * Stream Interfaces
470 ******************************************************************************/
471struct dc_stream {
472 const struct dc_sink *sink;
473 struct dc_crtc_timing timing;
Harry Wentland45622362017-09-12 15:58:20 -0400474
Aric Cyrab2541b2016-12-29 15:27:12 -0500475 struct rect src; /* composition area */
Harry Wentland45622362017-09-12 15:58:20 -0400476 struct rect dst; /* stream addressable area */
477
478 struct audio_info audio_info;
479
Harry Wentland45622362017-09-12 15:58:20 -0400480 struct freesync_context freesync_ctx;
481
Leo (Sunpeng) Li7b0c4702017-07-10 14:04:21 -0400482 struct dc_transfer_func *out_transfer_func;
Harry Wentland45622362017-09-12 15:58:20 -0400483 struct colorspace_transform gamut_remap_matrix;
484 struct csc_transform csc_color_matrix;
Anthony Kooebf055f2017-06-14 10:19:57 -0400485
486 enum signal_type output_signal;
487
488 enum dc_color_space output_color_space;
489 enum dc_dither_option dither_option;
490
Vitaly Prosyak9edba552017-06-07 12:23:59 -0500491 enum view_3d_format view_format;
Anthony Kooebf055f2017-06-14 10:19:57 -0400492
493 bool ignore_msa_timing_param;
Harry Wentland45622362017-09-12 15:58:20 -0400494 /* TODO: custom INFO packets */
495 /* TODO: ABM info (DMCU) */
496 /* TODO: PSR info */
497 /* TODO: CEA VIC */
498};
499
Leon Elazara783e7b2017-03-09 14:38:15 -0500500struct dc_stream_update {
Leon Elazara783e7b2017-03-09 14:38:15 -0500501 struct rect src;
Leon Elazara783e7b2017-03-09 14:38:15 -0500502 struct rect dst;
Amy Zhangf46661d2017-05-09 14:45:54 -0400503 struct dc_transfer_func *out_transfer_func;
Leon Elazara783e7b2017-03-09 14:38:15 -0500504};
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
522void 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
Aric Cyrab2541b2016-12-29 15:27:12 -0500527/*
528 * Log the current stream state.
529 */
530void dc_stream_log(
531 const struct dc_stream *stream,
532 struct dal_logger *dc_logger,
533 enum dc_log_type log_type);
534
535uint8_t dc_get_current_stream_count(const struct dc *dc);
536struct dc_stream *dc_get_stream_at_index(const struct dc *dc, uint8_t i);
537
538/*
539 * Return the current frame counter.
540 */
541uint32_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 */
Sylvia Tsai81c50962017-04-11 15:15:28 -0400547bool 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);
Aric Cyrab2541b2016-12-29 15:27:12 -0500552
553/*
554 * Structure to store surface/stream associations for validation
555 */
556struct dc_validation_set {
557 const struct dc_stream *stream;
Harry Wentlande12cfcb2017-07-20 11:43:32 -0400558 struct dc_surface *surfaces[MAX_SURFACES];
Aric Cyrab2541b2016-12-29 15:27:12 -0500559 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 */
Harry Wentland07d72b32017-03-29 11:22:05 -0400568struct validate_context *dc_get_validate_context(
569 const struct dc *dc,
570 const struct dc_validation_set set[],
571 uint8_t set_count);
572
Aric Cyrab2541b2016-12-29 15:27:12 -0500573bool 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
586bool dc_validate_guaranteed(
587 const struct dc *dc,
588 const struct dc_stream *stream);
589
Harry Wentland8122a252017-03-29 11:15:14 -0400590void dc_resource_validate_ctx_copy_construct(
591 const struct validate_context *src_ctx,
592 struct validate_context *dst_ctx);
593
594void dc_resource_validate_ctx_destruct(struct validate_context *context);
595
Aric Cyrab2541b2016-12-29 15:27:12 -0500596/*
Harry Wentland7cf2c842017-03-06 09:43:30 -0500597 * 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 */
Harry Wentlande2c7bb12017-06-28 13:23:04 -0400605bool dc_commit_context(struct dc *dc, struct validate_context *context);
Harry Wentland7cf2c842017-03-06 09:43:30 -0500606
607/*
Aric Cyrab2541b2016-12-29 15:27:12 -0500608 * 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 */
615bool dc_commit_streams(
616 struct dc *dc,
617 const struct dc_stream *streams[],
618 uint8_t stream_count);
Vitaly Prosyak9edba552017-06-07 12:23:59 -0500619/*
620 * Enable stereo when commit_streams is not required,
621 * for example, frame alternate.
622 */
623bool dc_enable_stereo(
624 struct dc *dc,
625 struct validate_context *context,
626 const struct dc_stream *streams[],
627 uint8_t stream_count);
Aric Cyrab2541b2016-12-29 15:27:12 -0500628
Harry Wentland45622362017-09-12 15:58:20 -0400629/**
630 * Create a new default stream for the requested sink
631 */
Harry Wentlandb73a22d2017-07-24 14:04:27 -0400632struct dc_stream *dc_create_stream_for_sink(struct dc_sink *dc_sink);
Harry Wentland45622362017-09-12 15:58:20 -0400633
634void dc_stream_retain(const struct dc_stream *dc_stream);
635void dc_stream_release(const struct dc_stream *dc_stream);
636
637struct dc_stream_status {
Aric Cyrab2541b2016-12-29 15:27:12 -0500638 int primary_otg_inst;
639 int surface_count;
Harry Wentlande12cfcb2017-07-20 11:43:32 -0400640 struct dc_surface *surfaces[MAX_SURFACE_NUM];
Aric Cyrab2541b2016-12-29 15:27:12 -0500641
Harry Wentland45622362017-09-12 15:58:20 -0400642 /*
643 * link this stream passes through
644 */
Harry Wentlandd0778eb2017-07-22 20:05:20 -0400645 struct dc_link *link;
Harry Wentland45622362017-09-12 15:58:20 -0400646};
647
Harry Wentlande12cfcb2017-07-20 11:43:32 -0400648struct dc_stream_status *dc_stream_get_status(
Harry Wentland45622362017-09-12 15:58:20 -0400649 const struct dc_stream *dc_stream);
650
Leon Elazar5869b0f2017-03-01 12:30:11 -0500651enum surface_update_type dc_check_update_surfaces_for_stream(
652 struct dc *dc,
653 struct dc_surface_update *updates,
654 int surface_count,
Leon Elazaree8f63e2017-03-14 11:54:31 -0400655 struct dc_stream_update *stream_update,
Leon Elazar5869b0f2017-03-01 12:30:11 -0500656 const struct dc_stream_status *stream_status);
657
Andrey Grodzovsky8a767082017-07-11 14:41:51 -0400658
659void dc_retain_validate_context(struct validate_context *context);
660void dc_release_validate_context(struct validate_context *context);
661
Harry Wentland45622362017-09-12 15:58:20 -0400662/*******************************************************************************
663 * Link Interfaces
664 ******************************************************************************/
665
Harry Wentlandd0778eb2017-07-22 20:05:20 -0400666struct 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
688struct dc_link_status {
689 struct dpcd_caps *dpcd_caps;
690};
691
692/* DP MST stream allocation (payload bandwidth number) */
693struct 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 */
703struct 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
Harry Wentland45622362017-09-12 15:58:20 -0400710/*
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 */
714struct dc_link {
Harry Wentlandb73a22d2017-07-24 14:04:27 -0400715 struct dc_sink *remote_sinks[MAX_SINKS_PER_LINK];
Harry Wentland45622362017-09-12 15:58:20 -0400716 unsigned int sink_count;
Harry Wentlandb73a22d2017-07-24 14:04:27 -0400717 struct dc_sink *local_sink;
Harry Wentland45622362017-09-12 15:58:20 -0400718 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;
Ding Wang8c4abe02017-07-18 17:18:11 -0400731 struct dc_link_settings preferred_link_setting;
Harry Wentland45622362017-09-12 15:58:20 -0400732
733 uint8_t ddc_hw_inst;
Zeyu Fan7a096332017-06-13 11:54:10 -0400734
735 uint8_t hpd_src;
736
Harry Wentland45622362017-09-12 15:58:20 -0400737 uint8_t link_enc_hw_inst;
738
Harry Wentland45622362017-09-12 15:58:20 -0400739 bool test_pattern_enabled;
740 union compliance_test_state compliance_test_state;
Andrey Grodzovsky9fb8de72017-02-14 13:50:17 -0500741
742 void *priv;
Andrey Grodzovsky46df7902017-04-30 09:20:55 -0400743
744 struct ddc_service *ddc;
Anthony Kooebf055f2017-06-14 10:19:57 -0400745
746 bool aux_mode;
Harry Wentland45622362017-09-12 15:58:20 -0400747
Harry Wentlandd0778eb2017-07-22 20:05:20 -0400748 /* Private to DC core */
Harry Wentland45622362017-09-12 15:58:20 -0400749
Harry Wentlandd0778eb2017-07-22 20:05:20 -0400750 const struct core_dc *dc;
Harry Wentland45622362017-09-12 15:58:20 -0400751
Harry Wentlandd0778eb2017-07-22 20:05:20 -0400752 struct dc_context *ctx;
Anthony Kooebf055f2017-06-14 10:19:57 -0400753
Harry Wentlandd0778eb2017-07-22 20:05:20 -0400754 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;
Harry Wentland45622362017-09-12 15:58:20 -0400760
Harry Wentlandd0778eb2017-07-22 20:05:20 -0400761 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
Harry Wentland45622362017-09-12 15:58:20 -0400772};
773
774const 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 */
Harry Wentlandd0778eb2017-07-22 20:05:20 -0400781struct dc_link *dc_get_link_at_index(const struct dc *dc, uint32_t link_index);
Harry Wentland45622362017-09-12 15:58:20 -0400782
783/* Return id of physical connector represented by a dc_link at link_index.*/
784const 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). */
788bool 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
Amy Zhangaa7397d2017-05-12 15:54:29 -0400791bool dc_link_set_abm_disable(const struct dc_link *dc_link);
792
Harry Wentland45622362017-09-12 15:58:20 -0400793bool dc_link_set_psr_enable(const struct dc_link *dc_link, bool enable);
794
Amy Zhang7db4ded2017-05-30 16:16:57 -0400795bool dc_link_get_psr_state(const struct dc_link *dc_link, uint32_t *psr_state);
796
Harry Wentlandd0778eb2017-07-22 20:05:20 -0400797bool dc_link_setup_psr(struct dc_link *dc_link,
Amy Zhang9f72f512017-05-31 16:53:01 -0400798 const struct dc_stream *stream, struct psr_config *psr_config,
799 struct psr_context *psr_context);
Harry Wentland45622362017-09-12 15:58:20 -0400800
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 */
Harry Wentlandd0778eb2017-07-22 20:05:20 -0400807bool dc_link_detect(struct dc_link *dc_link, bool boot);
Harry Wentland45622362017-09-12 15:58:20 -0400808
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. */
Harry Wentlandd0778eb2017-07-22 20:05:20 -0400815bool dc_link_handle_hpd_rx_irq(struct dc_link *dc_link,
Wenjing Liu8ee65d72017-07-19 13:18:26 -0400816 union hpd_irq_data *hpd_irq_dpcd_data);
Harry Wentland45622362017-09-12 15:58:20 -0400817
818struct dc_sink_init_data;
819
820struct dc_sink *dc_link_add_remote_sink(
Harry Wentlandd0778eb2017-07-22 20:05:20 -0400821 struct dc_link *dc_link,
Harry Wentland45622362017-09-12 15:58:20 -0400822 const uint8_t *edid,
823 int len,
824 struct dc_sink_init_data *init_data);
825
826void dc_link_remove_remote_sink(
Harry Wentlandd0778eb2017-07-22 20:05:20 -0400827 struct dc_link *link,
Harry Wentlandb73a22d2017-07-24 14:04:27 -0400828 struct dc_sink *sink);
Harry Wentland45622362017-09-12 15:58:20 -0400829
830/* Used by diagnostics for virtual link at the moment */
Harry Wentlandd0778eb2017-07-22 20:05:20 -0400831void dc_link_set_sink(struct dc_link *link, struct dc_sink *sink);
Harry Wentland45622362017-09-12 15:58:20 -0400832
833void dc_link_dp_set_drive_settings(
Harry Wentlandd0778eb2017-07-22 20:05:20 -0400834 struct dc_link *link,
Harry Wentland45622362017-09-12 15:58:20 -0400835 struct link_training_settings *lt_settings);
836
Ding Wang820e3932017-07-13 12:09:57 -0400837enum link_training_result dc_link_dp_perform_link_training(
Harry Wentland45622362017-09-12 15:58:20 -0400838 struct dc_link *link,
839 const struct dc_link_settings *link_setting,
840 bool skip_video_pattern);
841
842void dc_link_dp_enable_hpd(const struct dc_link *link);
843
844void dc_link_dp_disable_hpd(const struct dc_link *link);
845
846bool dc_link_dp_set_test_pattern(
Harry Wentlandd0778eb2017-07-22 20:05:20 -0400847 struct dc_link *link,
Harry Wentland45622362017-09-12 15:58:20 -0400848 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
xhdu8c895312017-03-21 11:05:32 -0400857struct 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
Vitaly Prosyakb6d61032017-06-12 11:03:26 -0500868
Vitaly Prosyak9edba552017-06-07 12:23:59 -0500869
Harry Wentland45622362017-09-12 15:58:20 -0400870/*
871 * The sink structure contains EDID and other display device properties
872 */
873struct 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 */
xhdu8c895312017-03-21 11:05:32 -0400877 struct dc_container_id *dc_container_id;
Zeyu Fan4a9a5d62017-03-07 11:48:50 -0500878 uint32_t dongle_max_pix_clk;
Andrey Grodzovsky5c4e980642017-02-14 15:47:24 -0500879 void *priv;
Vitaly Prosyak9edba552017-06-07 12:23:59 -0500880 struct stereo_3d_features features_3d[TIMING_3D_FORMAT_MAX];
Anthony Kooebf055f2017-06-14 10:19:57 -0400881 bool converter_disable_audio;
Harry Wentlandb73a22d2017-07-24 14:04:27 -0400882
883 /* private to DC core */
884 struct dc_link *link;
885 struct dc_context *ctx;
886
887 /* private to dc_sink.c */
888 int ref_count;
Harry Wentland45622362017-09-12 15:58:20 -0400889};
890
Harry Wentlandb73a22d2017-07-24 14:04:27 -0400891void dc_sink_retain(struct dc_sink *sink);
892void dc_sink_release(struct dc_sink *sink);
Harry Wentland45622362017-09-12 15:58:20 -0400893
894const struct audio **dc_get_audios(struct dc *dc);
895
896struct dc_sink_init_data {
897 enum signal_type sink_signal;
Harry Wentlandd0778eb2017-07-22 20:05:20 -0400898 struct dc_link *link;
Harry Wentland45622362017-09-12 15:58:20 -0400899 uint32_t dongle_max_pix_clk;
900 bool converter_disable_audio;
901};
902
903struct dc_sink *dc_sink_create(const struct dc_sink_init_data *init_params);
xhdu8c895312017-03-21 11:05:32 -0400904bool dc_sink_get_container_id(struct dc_sink *dc_sink, struct dc_container_id *container_id);
905bool dc_sink_set_container_id(struct dc_sink *dc_sink, const struct dc_container_id *container_id);
Harry Wentland45622362017-09-12 15:58:20 -0400906
907/*******************************************************************************
Aric Cyrab2541b2016-12-29 15:27:12 -0500908 * Cursor interfaces - To manages the cursor within a stream
Harry Wentland45622362017-09-12 15:58:20 -0400909 ******************************************************************************/
910/* TODO: Deprecated once we switch to dc_set_cursor_position */
Aric Cyrab2541b2016-12-29 15:27:12 -0500911bool dc_stream_set_cursor_attributes(
912 const struct dc_stream *stream,
Harry Wentland45622362017-09-12 15:58:20 -0400913 const struct dc_cursor_attributes *attributes);
914
Aric Cyrab2541b2016-12-29 15:27:12 -0500915bool dc_stream_set_cursor_position(
916 const struct dc_stream *stream,
Dmytro Laktyushkinbeb16b62017-04-21 09:34:09 -0400917 const struct dc_cursor_position *position);
Harry Wentland45622362017-09-12 15:58:20 -0400918
919/* Newer interfaces */
920struct dc_cursor {
921 struct dc_plane_address address;
922 struct dc_cursor_attributes attributes;
923};
924
Harry Wentland45622362017-09-12 15:58:20 -0400925/*******************************************************************************
926 * Interrupt interfaces
927 ******************************************************************************/
928enum dc_irq_source dc_interrupt_to_irq_source(
929 struct dc *dc,
930 uint32_t src_id,
931 uint32_t ext_id);
932void dc_interrupt_set(const struct dc *dc, enum dc_irq_source src, bool enable);
933void dc_interrupt_ack(struct dc *dc, enum dc_irq_source src);
934enum dc_irq_source dc_get_hpd_irq_source_at_index(
935 struct dc *dc, uint32_t link_index);
936
937/*******************************************************************************
938 * Power Interfaces
939 ******************************************************************************/
940
941void dc_set_power_state(
942 struct dc *dc,
Andrey Grodzovskya3621482017-04-20 15:59:25 -0400943 enum dc_acpi_cm_power_state power_state);
Harry Wentland45622362017-09-12 15:58:20 -0400944void dc_resume(const struct dc *dc);
945
Harry Wentland45622362017-09-12 15:58:20 -0400946/*
947 * DPCD access interfaces
948 */
949
Andrey Grodzovsky7c7f5b12017-03-28 16:57:52 -0400950bool dc_read_aux_dpcd(
Harry Wentland45622362017-09-12 15:58:20 -0400951 struct dc *dc,
952 uint32_t link_index,
953 uint32_t address,
954 uint8_t *data,
955 uint32_t size);
956
Andrey Grodzovsky7c7f5b12017-03-28 16:57:52 -0400957bool dc_write_aux_dpcd(
Harry Wentland45622362017-09-12 15:58:20 -0400958 struct dc *dc,
959 uint32_t link_index,
960 uint32_t address,
961 const uint8_t *data,
Zeyu Fan2b230ea2017-02-16 16:15:30 -0500962 uint32_t size);
963
Andrey Grodzovsky7c7f5b12017-03-28 16:57:52 -0400964bool dc_read_aux_i2c(
965 struct dc *dc,
966 uint32_t link_index,
967 enum i2c_mot_mode mot,
968 uint32_t address,
969 uint8_t *data,
970 uint32_t size);
971
972bool dc_write_aux_i2c(
973 struct dc *dc,
974 uint32_t link_index,
975 enum i2c_mot_mode mot,
976 uint32_t address,
977 const uint8_t *data,
978 uint32_t size);
979
Zeyu Fan2b230ea2017-02-16 16:15:30 -0500980bool dc_query_ddc_data(
981 struct dc *dc,
982 uint32_t link_index,
983 uint32_t address,
984 uint8_t *write_buf,
985 uint32_t write_size,
986 uint8_t *read_buf,
987 uint32_t read_size);
Harry Wentland45622362017-09-12 15:58:20 -0400988
989bool dc_submit_i2c(
990 struct dc *dc,
991 uint32_t link_index,
992 struct i2c_command *cmd);
993
Anthony Koo5e7773a2017-01-23 16:55:20 -0500994
Harry Wentland45622362017-09-12 15:58:20 -0400995#endif /* DC_INTERFACE_H_ */