]> asedeno.scripts.mit.edu Git - linux.git/blob - drivers/gpu/drm/amd/display/dc/inc/core_types.h
drm/amd/display: flatten aux_engine and engine
[linux.git] / drivers / gpu / drm / amd / display / dc / inc / core_types.h
1 /*
2  * Copyright 2015 Advanced Micro Devices, Inc.
3  *
4  * Permission is hereby granted, free of charge, to any person obtaining a
5  * copy of this software and associated documentation files (the "Software"),
6  * to deal in the Software without restriction, including without limitation
7  * the rights to use, copy, modify, merge, publish, distribute, sublicense,
8  * and/or sell copies of the Software, and to permit persons to whom the
9  * Software is furnished to do so, subject to the following conditions:
10  *
11  * The above copyright notice and this permission notice shall be included in
12  * all copies or substantial portions of the Software.
13  *
14  * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
15  * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
16  * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.  IN NO EVENT SHALL
17  * THE COPYRIGHT HOLDER(S) OR AUTHOR(S) BE LIABLE FOR ANY CLAIM, DAMAGES OR
18  * OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE,
19  * ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
20  * OTHER DEALINGS IN THE SOFTWARE.
21  *
22  * Authors: AMD
23  *
24  */
25
26 #ifndef _CORE_TYPES_H_
27 #define _CORE_TYPES_H_
28
29 #include "dc.h"
30 #include "dce_calcs.h"
31 #include "dcn_calcs.h"
32 #include "ddc_service_types.h"
33 #include "dc_bios_types.h"
34 #include "mem_input.h"
35 #include "hubp.h"
36 #ifdef CONFIG_X86
37 #include "mpc.h"
38 #endif
39
40 #define MAX_CLOCK_SOURCES 7
41
42 void enable_surface_flip_reporting(struct dc_plane_state *plane_state,
43                 uint32_t controller_id);
44
45 #include "grph_object_id.h"
46 #include "link_encoder.h"
47 #include "stream_encoder.h"
48 #include "clock_source.h"
49 #include "audio.h"
50 #include "dm_pp_smu.h"
51
52
53 /************ link *****************/
54 struct link_init_data {
55         const struct dc *dc;
56         struct dc_context *ctx; /* TODO: remove 'dal' when DC is complete. */
57         uint32_t connector_index; /* this will be mapped to the HPD pins */
58         uint32_t link_index; /* this is mapped to DAL display_index
59                                 TODO: remove it when DC is complete. */
60 };
61
62 enum {
63         FREE_ACQUIRED_RESOURCE = 0,
64         KEEP_ACQUIRED_RESOURCE = 1,
65 };
66
67 struct dc_link *link_create(const struct link_init_data *init_params);
68 void link_destroy(struct dc_link **link);
69
70 enum dc_status dc_link_validate_mode_timing(
71                 const struct dc_stream_state *stream,
72                 struct dc_link *link,
73                 const struct dc_crtc_timing *timing);
74
75 void core_link_resume(struct dc_link *link);
76
77 void core_link_enable_stream(
78                 struct dc_state *state,
79                 struct pipe_ctx *pipe_ctx);
80
81 void core_link_disable_stream(struct pipe_ctx *pipe_ctx, int option);
82
83 void core_link_set_avmute(struct pipe_ctx *pipe_ctx, bool enable);
84 /********** DAL Core*********************/
85 #include "display_clock.h"
86 #include "transform.h"
87 #include "dpp.h"
88
89 struct resource_pool;
90 struct dc_state;
91 struct resource_context;
92
93 struct resource_funcs {
94         void (*destroy)(struct resource_pool **pool);
95         struct link_encoder *(*link_enc_create)(
96                         const struct encoder_init_data *init);
97
98         bool (*validate_bandwidth)(
99                                         struct dc *dc,
100                                         struct dc_state *context);
101
102         enum dc_status (*validate_global)(
103                 struct dc *dc,
104                 struct dc_state *context);
105
106         struct pipe_ctx *(*acquire_idle_pipe_for_layer)(
107                         struct dc_state *context,
108                         const struct resource_pool *pool,
109                         struct dc_stream_state *stream);
110
111         enum dc_status (*validate_plane)(const struct dc_plane_state *plane_state, struct dc_caps *caps);
112
113         enum dc_status (*add_stream_to_ctx)(
114                         struct dc *dc,
115                         struct dc_state *new_ctx,
116                         struct dc_stream_state *dc_stream);
117
118         enum dc_status (*remove_stream_from_ctx)(
119                                 struct dc *dc,
120                                 struct dc_state *new_ctx,
121                                 struct dc_stream_state *stream);
122 };
123
124 struct audio_support{
125         bool dp_audio;
126         bool hdmi_audio_on_dongle;
127         bool hdmi_audio_native;
128 };
129
130 #define NO_UNDERLAY_PIPE -1
131
132 struct resource_pool {
133         struct mem_input *mis[MAX_PIPES];
134         struct hubp *hubps[MAX_PIPES];
135         struct input_pixel_processor *ipps[MAX_PIPES];
136         struct transform *transforms[MAX_PIPES];
137         struct dpp *dpps[MAX_PIPES];
138         struct output_pixel_processor *opps[MAX_PIPES];
139         struct timing_generator *timing_generators[MAX_PIPES];
140         struct stream_encoder *stream_enc[MAX_PIPES * 2];
141         struct aux_engine *engines[MAX_PIPES];
142         struct hubbub *hubbub;
143         struct mpc *mpc;
144         struct pp_smu_funcs_rv *pp_smu;
145         struct pp_smu_display_requirement_rv pp_smu_req;
146
147         unsigned int pipe_count;
148         unsigned int underlay_pipe_index;
149         unsigned int stream_enc_count;
150         unsigned int ref_clock_inKhz;
151         unsigned int timing_generator_count;
152
153         /*
154          * reserved clock source for DP
155          */
156         struct clock_source *dp_clock_source;
157
158         struct clock_source *clock_sources[MAX_CLOCK_SOURCES];
159         unsigned int clk_src_count;
160
161         struct audio *audios[MAX_PIPES];
162         unsigned int audio_count;
163         struct audio_support audio_support;
164
165         struct dccg *dccg;
166         struct irq_service *irqs;
167
168         struct abm *abm;
169         struct dmcu *dmcu;
170
171         const struct resource_funcs *funcs;
172         const struct resource_caps *res_cap;
173 };
174
175 struct dcn_fe_clocks {
176         int dppclk_khz;
177 };
178
179 struct dcn_fe_bandwidth {
180         struct dcn_fe_clocks calc;
181         struct dcn_fe_clocks cur;
182 };
183
184 struct stream_resource {
185         struct output_pixel_processor *opp;
186         struct timing_generator *tg;
187         struct stream_encoder *stream_enc;
188         struct audio *audio;
189
190         struct pixel_clk_params pix_clk_params;
191         struct encoder_info_frame encoder_info_frame;
192
193         struct abm *abm;
194 };
195
196 struct plane_resource {
197         struct scaler_data scl_data;
198         struct hubp *hubp;
199         struct mem_input *mi;
200         struct input_pixel_processor *ipp;
201         struct transform *xfm;
202         struct dpp *dpp;
203         uint8_t mpcc_inst;
204
205         struct dcn_fe_bandwidth bw;
206 };
207
208 struct pipe_ctx {
209         struct dc_plane_state *plane_state;
210         struct dc_stream_state *stream;
211
212         struct plane_resource plane_res;
213         struct stream_resource stream_res;
214
215         struct clock_source *clock_source;
216
217         struct pll_settings pll_settings;
218
219         uint8_t pipe_idx;
220
221         struct pipe_ctx *top_pipe;
222         struct pipe_ctx *bottom_pipe;
223
224 #ifdef CONFIG_X86
225         struct _vcs_dpi_display_dlg_regs_st dlg_regs;
226         struct _vcs_dpi_display_ttu_regs_st ttu_regs;
227         struct _vcs_dpi_display_rq_regs_st rq_regs;
228         struct _vcs_dpi_display_pipe_dest_params_st pipe_dlg_param;
229 #endif
230 };
231
232 struct resource_context {
233         struct pipe_ctx pipe_ctx[MAX_PIPES];
234         bool is_stream_enc_acquired[MAX_PIPES * 2];
235         bool is_audio_acquired[MAX_PIPES];
236         uint8_t clock_source_ref_count[MAX_CLOCK_SOURCES];
237         uint8_t dp_clock_source_ref_count;
238 };
239
240 struct dce_bw_output {
241         bool cpuc_state_change_enable;
242         bool cpup_state_change_enable;
243         bool stutter_mode_enable;
244         bool nbp_state_change_enable;
245         bool all_displays_in_sync;
246         struct dce_watermarks urgent_wm_ns[MAX_PIPES];
247         struct dce_watermarks stutter_exit_wm_ns[MAX_PIPES];
248         struct dce_watermarks stutter_entry_wm_ns[MAX_PIPES];
249         struct dce_watermarks nbp_state_change_wm_ns[MAX_PIPES];
250         int sclk_khz;
251         int sclk_deep_sleep_khz;
252         int yclk_khz;
253         int dispclk_khz;
254         int blackout_recovery_time_us;
255 };
256
257 struct dcn_bw_output {
258         struct dc_clocks clk;
259         struct dcn_watermark_set watermarks;
260 };
261
262 union bw_context {
263         struct dcn_bw_output dcn;
264         struct dce_bw_output dce;
265 };
266
267 struct dc_state {
268         struct dc_stream_state *streams[MAX_PIPES];
269         struct dc_stream_status stream_status[MAX_PIPES];
270         uint8_t stream_count;
271
272         struct resource_context res_ctx;
273
274         /* The output from BW and WM calculations. */
275         union bw_context bw;
276
277         /* Note: these are big structures, do *not* put on stack! */
278         struct dm_pp_display_configuration pp_display_cfg;
279 #ifdef CONFIG_X86
280         struct dcn_bw_internal_vars dcn_bw_vars;
281 #endif
282
283         struct dccg *dis_clk;
284
285         struct kref refcount;
286 };
287
288 #endif /* _CORE_TYPES_H_ */