1 /*
2 * Copyright 2017 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_RESOURCE_DCN20_H__
27 #define __DC_RESOURCE_DCN20_H__
28 
29 #include "core_types.h"
30 #include "dml/dcn20/dcn20_fpu.h"
31 
32 #define TO_DCN20_RES_POOL(pool)\
33 	container_of(pool, struct dcn20_resource_pool, base)
34 
35 struct dc;
36 struct resource_pool;
37 struct _vcs_dpi_display_pipe_params_st;
38 
39 extern struct _vcs_dpi_ip_params_st dcn2_0_ip;
40 extern struct _vcs_dpi_ip_params_st dcn2_0_nv14_ip;
41 extern struct _vcs_dpi_soc_bounding_box_st dcn2_0_soc;
42 extern struct _vcs_dpi_soc_bounding_box_st dcn2_0_nv14_soc;
43 extern struct _vcs_dpi_soc_bounding_box_st dcn2_0_nv12_soc;
44 
45 struct dcn20_resource_pool {
46 	struct resource_pool base;
47 };
48 struct resource_pool *dcn20_create_resource_pool(
49 		const struct dc_init_data *init_data,
50 		struct dc *dc);
51 
52 struct link_encoder *dcn20_link_encoder_create(
53 	struct dc_context *ctx,
54 	const struct encoder_init_data *enc_init_data);
55 
56 unsigned int dcn20_calc_max_scaled_time(
57 		unsigned int time_per_pixel,
58 		enum mmhubbub_wbif_mode mode,
59 		unsigned int urgent_watermark);
60 
61 struct pipe_ctx *dcn20_acquire_idle_pipe_for_layer(
62 		struct dc_state *state,
63 		const struct resource_pool *pool,
64 		struct dc_stream_state *stream);
65 
66 struct stream_encoder *dcn20_stream_encoder_create(
67 	enum engine_id eng_id,
68 	struct dc_context *ctx);
69 
70 struct dce_hwseq *dcn20_hwseq_create(
71 	struct dc_context *ctx);
72 
73 bool dcn20_get_dcc_compression_cap(const struct dc *dc,
74 		const struct dc_dcc_surface_param *input,
75 		struct dc_surface_dcc_cap *output);
76 
77 void dcn20_dpp_destroy(struct dpp **dpp);
78 
79 struct dpp *dcn20_dpp_create(
80 	struct dc_context *ctx,
81 	uint32_t inst);
82 
83 struct input_pixel_processor *dcn20_ipp_create(
84 	struct dc_context *ctx, uint32_t inst);
85 
86 struct output_pixel_processor *dcn20_opp_create(
87 	struct dc_context *ctx, uint32_t inst);
88 
89 struct dce_aux *dcn20_aux_engine_create(
90 	struct dc_context *ctx, uint32_t inst);
91 
92 struct dce_i2c_hw *dcn20_i2c_hw_create(
93 	struct dc_context *ctx,
94 	uint32_t inst);
95 
96 void dcn20_clock_source_destroy(struct clock_source **clk_src);
97 
98 struct display_stream_compressor *dcn20_dsc_create(
99 	struct dc_context *ctx, uint32_t inst);
100 void dcn20_dsc_destroy(struct display_stream_compressor **dsc);
101 
102 struct hubp *dcn20_hubp_create(
103 	struct dc_context *ctx,
104 	uint32_t inst);
105 struct timing_generator *dcn20_timing_generator_create(
106 		struct dc_context *ctx,
107 		uint32_t instance);
108 struct mpc *dcn20_mpc_create(struct dc_context *ctx);
109 struct hubbub *dcn20_hubbub_create(struct dc_context *ctx);
110 
111 bool dcn20_dwbc_create(struct dc_context *ctx, struct resource_pool *pool);
112 bool dcn20_mmhubbub_create(struct dc_context *ctx, struct resource_pool *pool);
113 
114 void dcn20_set_mcif_arb_params(
115 		struct dc *dc,
116 		struct dc_state *context,
117 		display_e2e_pipe_params_st *pipes,
118 		int pipe_cnt);
119 bool dcn20_validate_bandwidth(struct dc *dc, struct dc_state *context, bool fast_validate);
120 void dcn20_merge_pipes_for_validate(
121 		struct dc *dc,
122 		struct dc_state *context);
123 int dcn20_validate_apply_pipe_split_flags(
124 		struct dc *dc,
125 		struct dc_state *context,
126 		int vlevel,
127 		int *split,
128 		bool *merge);
129 void dcn20_release_dsc(struct resource_context *res_ctx,
130 			const struct resource_pool *pool,
131 			struct display_stream_compressor **dsc);
132 bool dcn20_validate_dsc(struct dc *dc, struct dc_state *new_ctx);
133 void dcn20_split_stream_for_mpc(
134 		struct resource_context *res_ctx,
135 		const struct resource_pool *pool,
136 		struct pipe_ctx *primary_pipe,
137 		struct pipe_ctx *secondary_pipe);
138 bool dcn20_split_stream_for_odm(
139 		const struct dc *dc,
140 		struct resource_context *res_ctx,
141 		struct pipe_ctx *prev_odm_pipe,
142 		struct pipe_ctx *next_odm_pipe);
143 void dcn20_acquire_dsc(const struct dc *dc,
144 			struct resource_context *res_ctx,
145 			struct display_stream_compressor **dsc,
146 			int pipe_idx);
147 struct pipe_ctx *dcn20_find_secondary_pipe(struct dc *dc,
148 		struct resource_context *res_ctx,
149 		const struct resource_pool *pool,
150 		const struct pipe_ctx *primary_pipe);
151 bool dcn20_fast_validate_bw(
152 		struct dc *dc,
153 		struct dc_state *context,
154 		display_e2e_pipe_params_st *pipes,
155 		int *pipe_cnt_out,
156 		int *pipe_split_from,
157 		int *vlevel_out,
158 		bool fast_validate);
159 
160 enum dc_status dcn20_build_mapped_resource(const struct dc *dc, struct dc_state *context, struct dc_stream_state *stream);
161 enum dc_status dcn20_add_stream_to_ctx(struct dc *dc, struct dc_state *new_ctx, struct dc_stream_state *dc_stream);
162 enum dc_status dcn20_add_dsc_to_stream_resource(struct dc *dc, struct dc_state *dc_ctx, struct dc_stream_state *dc_stream);
163 enum dc_status dcn20_remove_stream_from_ctx(struct dc *dc, struct dc_state *new_ctx, struct dc_stream_state *dc_stream);
164 enum dc_status dcn20_patch_unknown_plane_state(struct dc_plane_state *plane_state);
165 
166 #endif /* __DC_RESOURCE_DCN20_H__ */
167 
168