1 // SPDX-License-Identifier: MIT
2 /*
3  * Copyright 2019 Advanced Micro Devices, Inc.
4  *
5  * Permission is hereby granted, free of charge, to any person obtaining a
6  * copy of this software and associated documentation files (the "Software"),
7  * to deal in the Software without restriction, including without limitation
8  * the rights to use, copy, modify, merge, publish, distribute, sublicense,
9  * and/or sell copies of the Software, and to permit persons to whom the
10  * Software is furnished to do so, subject to the following conditions:
11  *
12  * The above copyright notice and this permission notice shall be included in
13  * all copies or substantial portions of the Software.
14  *
15  * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16  * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17  * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.  IN NO EVENT SHALL
18  * THE COPYRIGHT HOLDER(S) OR AUTHOR(S) BE LIABLE FOR ANY CLAIM, DAMAGES OR
19  * OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE,
20  * ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
21  * OTHER DEALINGS IN THE SOFTWARE.
22  *
23  * Authors: AMD
24  *
25  */
26 
27 #include "dm_services.h"
28 #include "dc.h"
29 
30 #include "dcn32/dcn32_init.h"
31 
32 #include "resource.h"
33 #include "include/irq_service_interface.h"
34 #include "dcn32/dcn32_resource.h"
35 #include "dcn321_resource.h"
36 
37 #include "dcn20/dcn20_resource.h"
38 #include "dcn30/dcn30_resource.h"
39 
40 #include "dml/dcn321/dcn321_fpu.h"
41 
42 #include "dcn10/dcn10_ipp.h"
43 #include "dcn30/dcn30_hubbub.h"
44 #include "dcn31/dcn31_hubbub.h"
45 #include "dcn32/dcn32_hubbub.h"
46 #include "dcn32/dcn32_mpc.h"
47 #include "dcn32/dcn32_hubp.h"
48 #include "irq/dcn32/irq_service_dcn32.h"
49 #include "dcn32/dcn32_dpp.h"
50 #include "dcn32/dcn32_optc.h"
51 #include "dcn20/dcn20_hwseq.h"
52 #include "dcn30/dcn30_hwseq.h"
53 #include "dce110/dce110_hw_sequencer.h"
54 #include "dcn30/dcn30_opp.h"
55 #include "dcn20/dcn20_dsc.h"
56 #include "dcn30/dcn30_vpg.h"
57 #include "dcn30/dcn30_afmt.h"
58 #include "dcn30/dcn30_dio_stream_encoder.h"
59 #include "dcn32/dcn32_dio_stream_encoder.h"
60 #include "dcn31/dcn31_hpo_dp_stream_encoder.h"
61 #include "dcn31/dcn31_hpo_dp_link_encoder.h"
62 #include "dcn32/dcn32_hpo_dp_link_encoder.h"
63 #include "dc_link_dp.h"
64 #include "dcn31/dcn31_apg.h"
65 #include "dcn31/dcn31_dio_link_encoder.h"
66 #include "dcn32/dcn32_dio_link_encoder.h"
67 #include "dcn321_dio_link_encoder.h"
68 #include "dce/dce_clock_source.h"
69 #include "dce/dce_audio.h"
70 #include "dce/dce_hwseq.h"
71 #include "clk_mgr.h"
72 #include "virtual/virtual_stream_encoder.h"
73 #include "dml/display_mode_vba.h"
74 #include "dcn32/dcn32_dccg.h"
75 #include "dcn10/dcn10_resource.h"
76 #include "dc_link_ddc.h"
77 #include "dcn31/dcn31_panel_cntl.h"
78 
79 #include "dcn30/dcn30_dwb.h"
80 #include "dcn32/dcn32_mmhubbub.h"
81 
82 #include "dcn/dcn_3_2_1_offset.h"
83 #include "dcn/dcn_3_2_1_sh_mask.h"
84 #include "nbio/nbio_4_3_0_offset.h"
85 
86 #include "reg_helper.h"
87 #include "dce/dmub_abm.h"
88 #include "dce/dmub_psr.h"
89 #include "dce/dce_aux.h"
90 #include "dce/dce_i2c.h"
91 
92 #include "dml/dcn30/display_mode_vba_30.h"
93 #include "vm_helper.h"
94 #include "dcn20/dcn20_vmid.h"
95 
96 #define DC_LOGGER_INIT(logger)
97 
98 enum dcn321_clk_src_array_id {
99 	DCN321_CLK_SRC_PLL0,
100 	DCN321_CLK_SRC_PLL1,
101 	DCN321_CLK_SRC_PLL2,
102 	DCN321_CLK_SRC_PLL3,
103 	DCN321_CLK_SRC_PLL4,
104 	DCN321_CLK_SRC_TOTAL
105 };
106 
107 /* begin *********************
108  * macros to expend register list macro defined in HW object header file
109  */
110 
111 /* DCN */
112 /* TODO awful hack. fixup dcn20_dwb.h */
113 #undef BASE_INNER
114 #define BASE_INNER(seg) ctx->dcn_reg_offsets[seg]
115 
116 #define BASE(seg) BASE_INNER(seg)
117 
118 #define SR(reg_name)\
119 	REG_STRUCT.reg_name = BASE(reg ## reg_name ## _BASE_IDX) +  \
120 		reg ## reg_name
121 #define SR_ARR(reg_name, id)\
122 	REG_STRUCT[id].reg_name = BASE(reg ## reg_name ## _BASE_IDX) +  \
123 		reg ## reg_name
124 #define SR_ARR_INIT(reg_name, id, value)\
125 	REG_STRUCT[id].reg_name =  value
126 
127 #define SRI(reg_name, block, id)\
128 	REG_STRUCT.reg_name = BASE(reg ## block ## id ## _ ## reg_name ## _BASE_IDX) + \
129 		reg ## block ## id ## _ ## reg_name
130 
131 #define SRI_ARR(reg_name, block, id)\
132 	REG_STRUCT[id].reg_name = BASE(reg ## block ## id ## _ ## reg_name ## _BASE_IDX) + \
133 		reg ## block ## id ## _ ## reg_name
134 
135 #define SR_ARR_I2C(reg_name, id) \
136 	REG_STRUCT[id-1].reg_name = BASE(reg##reg_name##_BASE_IDX) + reg##reg_name
137 
138 #define SRI_ARR_I2C(reg_name, block, id)\
139 	REG_STRUCT[id-1].reg_name = BASE(reg ## block ## id ## _ ## reg_name ## _BASE_IDX) + \
140 		reg ## block ## id ## _ ## reg_name
141 
142 #define SRI_ARR_ALPHABET(reg_name, block, index, id)\
143 	REG_STRUCT[index].reg_name = BASE(reg ## block ## id ## _ ## reg_name ## _BASE_IDX) + \
144 		reg ## block ## id ## _ ## reg_name
145 
146 #define SRI2(reg_name, block, id)\
147 	.reg_name = BASE(reg ## reg_name ## _BASE_IDX) + \
148 		reg ## reg_name
149 #define SRI2_ARR(reg_name, block, id)\
150 	REG_STRUCT[id].reg_name = BASE(reg ## reg_name ## _BASE_IDX) + \
151 		reg ## reg_name
152 
153 #define SRIR(var_name, reg_name, block, id)\
154 	.var_name = BASE(reg ## block ## id ## _ ## reg_name ## _BASE_IDX) + \
155 		reg ## block ## id ## _ ## reg_name
156 
157 #define SRII(reg_name, block, id)\
158 	REG_STRUCT.reg_name[id] = BASE(reg ## block ## id ## _ ## reg_name ## _BASE_IDX) + \
159 		reg ## block ## id ## _ ## reg_name
160 
161 #define SRII_ARR_2(reg_name, block, id, inst)\
162 	REG_STRUCT[inst].reg_name[id] = BASE(reg ## block ## id ## _ ## reg_name ## _BASE_IDX) + \
163 		reg ## block ## id ## _ ## reg_name
164 
165 #define SRII_MPC_RMU(reg_name, block, id)\
166 	.RMU##_##reg_name[id] = BASE(reg ## block ## id ## _ ## reg_name ## _BASE_IDX) + \
167 		reg ## block ## id ## _ ## reg_name
168 
169 #define SRII_DWB(reg_name, temp_name, block, id)\
170 	REG_STRUCT.reg_name[id] = BASE(reg ## block ## id ## _ ## temp_name ## _BASE_IDX) + \
171 		reg ## block ## id ## _ ## temp_name
172 
173 #define DCCG_SRII(reg_name, block, id)\
174 	REG_STRUCT.block ## _ ## reg_name[id] = BASE(reg ## block ## id ## _ ## reg_name ## _BASE_IDX) + \
175 		reg ## block ## id ## _ ## reg_name
176 
177 #define VUPDATE_SRII(reg_name, block, id)\
178 	REG_STRUCT.reg_name[id] = BASE(reg ## reg_name ## _ ## block ## id ## _BASE_IDX) + \
179 		reg ## reg_name ## _ ## block ## id
180 
181 /* NBIO */
182 #define NBIO_BASE_INNER(seg) ctx->nbio_reg_offsets[seg]
183 
184 #define NBIO_BASE(seg) \
185 	NBIO_BASE_INNER(seg)
186 
187 #define NBIO_SR(reg_name)\
188 	REG_STRUCT.reg_name = NBIO_BASE(regBIF_BX0_ ## reg_name ## _BASE_IDX) + \
189 		regBIF_BX0_ ## reg_name
190 #define NBIO_SR_ARR(reg_name, id)\
191 	REG_STRUCT[id].reg_name = NBIO_BASE(regBIF_BX0_ ## reg_name ## _BASE_IDX) + \
192 		regBIF_BX0_ ## reg_name
193 
194 #define CTX ctx
195 #define REG(reg_name) \
196 	(ctx->dcn_reg_offsets[reg ## reg_name ## _BASE_IDX] + reg ## reg_name)
197 
198 static struct bios_registers bios_regs;
199 
200 #define bios_regs_init() \
201 		( \
202 		NBIO_SR(BIOS_SCRATCH_3),\
203 		NBIO_SR(BIOS_SCRATCH_6)\
204 		)
205 
206 #define clk_src_regs_init(index, pllid)\
207 	CS_COMMON_REG_LIST_DCN3_0_RI(index, pllid)
208 
209 static struct dce110_clk_src_regs clk_src_regs[5];
210 
211 static const struct dce110_clk_src_shift cs_shift = {
212 		CS_COMMON_MASK_SH_LIST_DCN3_2(__SHIFT)
213 };
214 
215 static const struct dce110_clk_src_mask cs_mask = {
216 		CS_COMMON_MASK_SH_LIST_DCN3_2(_MASK)
217 };
218 
219 #define abm_regs_init(id)\
220 		ABM_DCN32_REG_LIST_RI(id)
221 
222 static struct dce_abm_registers abm_regs[4];
223 
224 static const struct dce_abm_shift abm_shift = {
225 		ABM_MASK_SH_LIST_DCN32(__SHIFT)
226 };
227 
228 static const struct dce_abm_mask abm_mask = {
229 		ABM_MASK_SH_LIST_DCN32(_MASK)
230 };
231 
232 #define audio_regs_init(id)\
233 		AUD_COMMON_REG_LIST_RI(id)
234 
235 static struct dce_audio_registers audio_regs[5];
236 
237 #define DCE120_AUD_COMMON_MASK_SH_LIST(mask_sh)\
238 		SF(AZF0ENDPOINT0_AZALIA_F0_CODEC_ENDPOINT_INDEX, AZALIA_ENDPOINT_REG_INDEX, mask_sh),\
239 		SF(AZF0ENDPOINT0_AZALIA_F0_CODEC_ENDPOINT_DATA, AZALIA_ENDPOINT_REG_DATA, mask_sh),\
240 		AUD_COMMON_MASK_SH_LIST_BASE(mask_sh)
241 
242 static const struct dce_audio_shift audio_shift = {
243 		DCE120_AUD_COMMON_MASK_SH_LIST(__SHIFT)
244 };
245 
246 static const struct dce_audio_mask audio_mask = {
247 		DCE120_AUD_COMMON_MASK_SH_LIST(_MASK)
248 };
249 
250 #define vpg_regs_init(id)\
251 	VPG_DCN3_REG_LIST_RI(id)
252 
253 static struct dcn30_vpg_registers vpg_regs[10];
254 
255 static const struct dcn30_vpg_shift vpg_shift = {
256 	DCN3_VPG_MASK_SH_LIST(__SHIFT)
257 };
258 
259 static const struct dcn30_vpg_mask vpg_mask = {
260 	DCN3_VPG_MASK_SH_LIST(_MASK)
261 };
262 
263 #define afmt_regs_init(id)\
264 	AFMT_DCN3_REG_LIST_RI(id)
265 
266 static struct dcn30_afmt_registers afmt_regs[6];
267 
268 static const struct dcn30_afmt_shift afmt_shift = {
269 	DCN3_AFMT_MASK_SH_LIST(__SHIFT)
270 };
271 
272 static const struct dcn30_afmt_mask afmt_mask = {
273 	DCN3_AFMT_MASK_SH_LIST(_MASK)
274 };
275 
276 #define apg_regs_init(id)\
277 	APG_DCN31_REG_LIST_RI(id)
278 
279 static struct dcn31_apg_registers apg_regs[4];
280 
281 static const struct dcn31_apg_shift apg_shift = {
282 	DCN31_APG_MASK_SH_LIST(__SHIFT)
283 };
284 
285 static const struct dcn31_apg_mask apg_mask = {
286 		DCN31_APG_MASK_SH_LIST(_MASK)
287 };
288 
289 #define stream_enc_regs_init(id)\
290 	SE_DCN32_REG_LIST_RI(id)
291 
292 static struct dcn10_stream_enc_registers stream_enc_regs[5];
293 
294 static const struct dcn10_stream_encoder_shift se_shift = {
295 		SE_COMMON_MASK_SH_LIST_DCN32(__SHIFT)
296 };
297 
298 static const struct dcn10_stream_encoder_mask se_mask = {
299 		SE_COMMON_MASK_SH_LIST_DCN32(_MASK)
300 };
301 
302 
303 #define aux_regs_init(id)\
304 	DCN2_AUX_REG_LIST_RI(id)
305 
306 static struct dcn10_link_enc_aux_registers link_enc_aux_regs[5];
307 
308 #define hpd_regs_init(id)\
309 	HPD_REG_LIST_RI(id)
310 
311 static struct dcn10_link_enc_hpd_registers link_enc_hpd_regs[5];
312 
313 #define link_regs_init(id, phyid)\
314 	( \
315 	LE_DCN31_REG_LIST_RI(id), \
316 	UNIPHY_DCN2_REG_LIST_RI(id, phyid)\
317 	)
318 	/*DPCS_DCN31_REG_LIST(id),*/ \
319 
320 static struct dcn10_link_enc_registers link_enc_regs[5];
321 
322 static const struct dcn10_link_enc_shift le_shift = {
323 	LINK_ENCODER_MASK_SH_LIST_DCN31(__SHIFT), \
324 //	DPCS_DCN31_MASK_SH_LIST(__SHIFT)
325 };
326 
327 static const struct dcn10_link_enc_mask le_mask = {
328 	LINK_ENCODER_MASK_SH_LIST_DCN31(_MASK), \
329 //	DPCS_DCN31_MASK_SH_LIST(_MASK)
330 };
331 
332 #define hpo_dp_stream_encoder_reg_init(id)\
333 	DCN3_1_HPO_DP_STREAM_ENC_REG_LIST_RI(id)
334 
335 static struct dcn31_hpo_dp_stream_encoder_registers hpo_dp_stream_enc_regs[4];
336 
337 static const struct dcn31_hpo_dp_stream_encoder_shift hpo_dp_se_shift = {
338 	DCN3_1_HPO_DP_STREAM_ENC_MASK_SH_LIST(__SHIFT)
339 };
340 
341 static const struct dcn31_hpo_dp_stream_encoder_mask hpo_dp_se_mask = {
342 	DCN3_1_HPO_DP_STREAM_ENC_MASK_SH_LIST(_MASK)
343 };
344 
345 
346 #define hpo_dp_link_encoder_reg_init(id)\
347 	DCN3_1_HPO_DP_LINK_ENC_REG_LIST_RI(id)
348 	/*DCN3_1_RDPCSTX_REG_LIST(0),*/
349 	/*DCN3_1_RDPCSTX_REG_LIST(1),*/
350 	/*DCN3_1_RDPCSTX_REG_LIST(2),*/
351 	/*DCN3_1_RDPCSTX_REG_LIST(3),*/
352 
353 static struct dcn31_hpo_dp_link_encoder_registers hpo_dp_link_enc_regs[2];
354 
355 static const struct dcn31_hpo_dp_link_encoder_shift hpo_dp_le_shift = {
356 	DCN3_2_HPO_DP_LINK_ENC_MASK_SH_LIST(__SHIFT)
357 };
358 
359 static const struct dcn31_hpo_dp_link_encoder_mask hpo_dp_le_mask = {
360 	DCN3_2_HPO_DP_LINK_ENC_MASK_SH_LIST(_MASK)
361 };
362 
363 #define dpp_regs_init(id)\
364 	DPP_REG_LIST_DCN30_COMMON_RI(id)
365 
366 static struct dcn3_dpp_registers dpp_regs[4];
367 
368 static const struct dcn3_dpp_shift tf_shift = {
369 		DPP_REG_LIST_SH_MASK_DCN30_COMMON(__SHIFT)
370 };
371 
372 static const struct dcn3_dpp_mask tf_mask = {
373 		DPP_REG_LIST_SH_MASK_DCN30_COMMON(_MASK)
374 };
375 
376 
377 #define opp_regs_init(id)\
378 	OPP_REG_LIST_DCN30_RI(id)
379 
380 static struct dcn20_opp_registers opp_regs[4];
381 
382 static const struct dcn20_opp_shift opp_shift = {
383 	OPP_MASK_SH_LIST_DCN20(__SHIFT)
384 };
385 
386 static const struct dcn20_opp_mask opp_mask = {
387 	OPP_MASK_SH_LIST_DCN20(_MASK)
388 };
389 
390 #define aux_engine_regs_init(id) \
391 	( \
392 	AUX_COMMON_REG_LIST0_RI(id), SR_ARR_INIT(AUXN_IMPCAL, id, 0), \
393 	SR_ARR_INIT(AUXP_IMPCAL, id, 0), \
394 	SR_ARR_INIT(AUX_RESET_MASK, id, DP_AUX0_AUX_CONTROL__AUX_RESET_MASK), \
395 	SR_ARR_INIT(AUX_RESET_MASK, id, DP_AUX0_AUX_CONTROL__AUX_RESET_MASK)\
396 	)
397 
398 static struct dce110_aux_registers aux_engine_regs[5];
399 
400 static const struct dce110_aux_registers_shift aux_shift = {
401 	DCN_AUX_MASK_SH_LIST(__SHIFT)
402 };
403 
404 static const struct dce110_aux_registers_mask aux_mask = {
405 	DCN_AUX_MASK_SH_LIST(_MASK)
406 };
407 
408 #define dwbc_regs_dcn3_init(id)\
409 	DWBC_COMMON_REG_LIST_DCN30_RI(id)
410 
411 static struct dcn30_dwbc_registers dwbc30_regs[1];
412 
413 static const struct dcn30_dwbc_shift dwbc30_shift = {
414 	DWBC_COMMON_MASK_SH_LIST_DCN30(__SHIFT)
415 };
416 
417 static const struct dcn30_dwbc_mask dwbc30_mask = {
418 	DWBC_COMMON_MASK_SH_LIST_DCN30(_MASK)
419 };
420 
421 #define mcif_wb_regs_dcn3_init(id)\
422 	MCIF_WB_COMMON_REG_LIST_DCN32_RI(id)
423 
424 static struct dcn30_mmhubbub_registers mcif_wb30_regs[1];
425 
426 static const struct dcn30_mmhubbub_shift mcif_wb30_shift = {
427 	MCIF_WB_COMMON_MASK_SH_LIST_DCN32(__SHIFT)
428 };
429 
430 static const struct dcn30_mmhubbub_mask mcif_wb30_mask = {
431 	MCIF_WB_COMMON_MASK_SH_LIST_DCN32(_MASK)
432 };
433 
434 #define dsc_regsDCN20_init(id)\
435 	DSC_REG_LIST_DCN20_RI(id)
436 
437 static struct dcn20_dsc_registers dsc_regs[4];
438 
439 static const struct dcn20_dsc_shift dsc_shift = {
440 	DSC_REG_LIST_SH_MASK_DCN20(__SHIFT)
441 };
442 
443 static const struct dcn20_dsc_mask dsc_mask = {
444 	DSC_REG_LIST_SH_MASK_DCN20(_MASK)
445 };
446 
447 static struct dcn30_mpc_registers mpc_regs;
448 #define dcn_mpc_regs_init()\
449 	MPC_REG_LIST_DCN3_2_RI(0),\
450 	MPC_REG_LIST_DCN3_2_RI(1),\
451 	MPC_REG_LIST_DCN3_2_RI(2),\
452 	MPC_REG_LIST_DCN3_2_RI(3),\
453 	MPC_OUT_MUX_REG_LIST_DCN3_0_RI(0),\
454 	MPC_OUT_MUX_REG_LIST_DCN3_0_RI(1),\
455 	MPC_OUT_MUX_REG_LIST_DCN3_0_RI(2),\
456 	MPC_OUT_MUX_REG_LIST_DCN3_0_RI(3),\
457 	MPC_DWB_MUX_REG_LIST_DCN3_0_RI(0)
458 
459 static const struct dcn30_mpc_shift mpc_shift = {
460 	MPC_COMMON_MASK_SH_LIST_DCN32(__SHIFT)
461 };
462 
463 static const struct dcn30_mpc_mask mpc_mask = {
464 	MPC_COMMON_MASK_SH_LIST_DCN32(_MASK)
465 };
466 
467 #define optc_regs_init(id)\
468 	OPTC_COMMON_REG_LIST_DCN3_2_RI(id)
469 
470 static struct dcn_optc_registers optc_regs[4];
471 
472 static const struct dcn_optc_shift optc_shift = {
473 	OPTC_COMMON_MASK_SH_LIST_DCN3_2(__SHIFT)
474 };
475 
476 static const struct dcn_optc_mask optc_mask = {
477 	OPTC_COMMON_MASK_SH_LIST_DCN3_2(_MASK)
478 };
479 
480 #define hubp_regs_init(id) \
481 	HUBP_REG_LIST_DCN32_RI(id)
482 
483 static struct dcn_hubp2_registers hubp_regs[4];
484 
485 static const struct dcn_hubp2_shift hubp_shift = {
486 		HUBP_MASK_SH_LIST_DCN32(__SHIFT)
487 };
488 
489 static const struct dcn_hubp2_mask hubp_mask = {
490 		HUBP_MASK_SH_LIST_DCN32(_MASK)
491 };
492 
493 static struct dcn_hubbub_registers hubbub_reg;
494 #define hubbub_reg_init()\
495 		HUBBUB_REG_LIST_DCN32_RI(0)
496 
497 static const struct dcn_hubbub_shift hubbub_shift = {
498 		HUBBUB_MASK_SH_LIST_DCN32(__SHIFT)
499 };
500 
501 static const struct dcn_hubbub_mask hubbub_mask = {
502 		HUBBUB_MASK_SH_LIST_DCN32(_MASK)
503 };
504 
505 static struct dccg_registers dccg_regs;
506 
507 #define dccg_regs_init()\
508 	DCCG_REG_LIST_DCN32_RI()
509 
510 static const struct dccg_shift dccg_shift = {
511 		DCCG_MASK_SH_LIST_DCN32(__SHIFT)
512 };
513 
514 static const struct dccg_mask dccg_mask = {
515 		DCCG_MASK_SH_LIST_DCN32(_MASK)
516 };
517 
518 
519 #define SRII2(reg_name_pre, reg_name_post, id)\
520 	.reg_name_pre ## _ ##  reg_name_post[id] = BASE(reg ## reg_name_pre \
521 			## id ## _ ## reg_name_post ## _BASE_IDX) + \
522 			reg ## reg_name_pre ## id ## _ ## reg_name_post
523 
524 
525 #define HWSEQ_DCN32_REG_LIST()\
526 	SR(DCHUBBUB_GLOBAL_TIMER_CNTL), \
527 	SR(DIO_MEM_PWR_CTRL), \
528 	SR(ODM_MEM_PWR_CTRL3), \
529 	SR(MMHUBBUB_MEM_PWR_CNTL), \
530 	SR(DCCG_GATE_DISABLE_CNTL), \
531 	SR(DCCG_GATE_DISABLE_CNTL2), \
532 	SR(DCFCLK_CNTL),\
533 	SR(DC_MEM_GLOBAL_PWR_REQ_CNTL), \
534 	SRII(PIXEL_RATE_CNTL, OTG, 0), \
535 	SRII(PIXEL_RATE_CNTL, OTG, 1),\
536 	SRII(PIXEL_RATE_CNTL, OTG, 2),\
537 	SRII(PIXEL_RATE_CNTL, OTG, 3),\
538 	SRII(PHYPLL_PIXEL_RATE_CNTL, OTG, 0),\
539 	SRII(PHYPLL_PIXEL_RATE_CNTL, OTG, 1),\
540 	SRII(PHYPLL_PIXEL_RATE_CNTL, OTG, 2),\
541 	SRII(PHYPLL_PIXEL_RATE_CNTL, OTG, 3),\
542 	SR(MICROSECOND_TIME_BASE_DIV), \
543 	SR(MILLISECOND_TIME_BASE_DIV), \
544 	SR(DISPCLK_FREQ_CHANGE_CNTL), \
545 	SR(RBBMIF_TIMEOUT_DIS), \
546 	SR(RBBMIF_TIMEOUT_DIS_2), \
547 	SR(DCHUBBUB_CRC_CTRL), \
548 	SR(DPP_TOP0_DPP_CRC_CTRL), \
549 	SR(DPP_TOP0_DPP_CRC_VAL_B_A), \
550 	SR(DPP_TOP0_DPP_CRC_VAL_R_G), \
551 	SR(MPC_CRC_CTRL), \
552 	SR(MPC_CRC_RESULT_GB), \
553 	SR(MPC_CRC_RESULT_C), \
554 	SR(MPC_CRC_RESULT_AR), \
555 	SR(DOMAIN0_PG_CONFIG), \
556 	SR(DOMAIN1_PG_CONFIG), \
557 	SR(DOMAIN2_PG_CONFIG), \
558 	SR(DOMAIN3_PG_CONFIG), \
559 	SR(DOMAIN16_PG_CONFIG), \
560 	SR(DOMAIN17_PG_CONFIG), \
561 	SR(DOMAIN18_PG_CONFIG), \
562 	SR(DOMAIN19_PG_CONFIG), \
563 	SR(DOMAIN0_PG_STATUS), \
564 	SR(DOMAIN1_PG_STATUS), \
565 	SR(DOMAIN2_PG_STATUS), \
566 	SR(DOMAIN3_PG_STATUS), \
567 	SR(DOMAIN16_PG_STATUS), \
568 	SR(DOMAIN17_PG_STATUS), \
569 	SR(DOMAIN18_PG_STATUS), \
570 	SR(DOMAIN19_PG_STATUS), \
571 	SR(D1VGA_CONTROL), \
572 	SR(D2VGA_CONTROL), \
573 	SR(D3VGA_CONTROL), \
574 	SR(D4VGA_CONTROL), \
575 	SR(D5VGA_CONTROL), \
576 	SR(D6VGA_CONTROL), \
577 	SR(DC_IP_REQUEST_CNTL), \
578 	SR(AZALIA_AUDIO_DTO), \
579 	SR(AZALIA_CONTROLLER_CLOCK_GATING)
580 
581 static struct dce_hwseq_registers hwseq_reg;
582 
583 #define hwseq_reg_init()\
584 	HWSEQ_DCN32_REG_LIST()
585 
586 #define HWSEQ_DCN32_MASK_SH_LIST(mask_sh)\
587 	HWSEQ_DCN_MASK_SH_LIST(mask_sh), \
588 	HWS_SF(, DCHUBBUB_GLOBAL_TIMER_CNTL, DCHUBBUB_GLOBAL_TIMER_REFDIV, mask_sh), \
589 	HWS_SF(, DOMAIN0_PG_CONFIG, DOMAIN_POWER_FORCEON, mask_sh), \
590 	HWS_SF(, DOMAIN0_PG_CONFIG, DOMAIN_POWER_GATE, mask_sh), \
591 	HWS_SF(, DOMAIN1_PG_CONFIG, DOMAIN_POWER_FORCEON, mask_sh), \
592 	HWS_SF(, DOMAIN1_PG_CONFIG, DOMAIN_POWER_GATE, mask_sh), \
593 	HWS_SF(, DOMAIN2_PG_CONFIG, DOMAIN_POWER_FORCEON, mask_sh), \
594 	HWS_SF(, DOMAIN2_PG_CONFIG, DOMAIN_POWER_GATE, mask_sh), \
595 	HWS_SF(, DOMAIN3_PG_CONFIG, DOMAIN_POWER_FORCEON, mask_sh), \
596 	HWS_SF(, DOMAIN3_PG_CONFIG, DOMAIN_POWER_GATE, mask_sh), \
597 	HWS_SF(, DOMAIN16_PG_CONFIG, DOMAIN_POWER_FORCEON, mask_sh), \
598 	HWS_SF(, DOMAIN16_PG_CONFIG, DOMAIN_POWER_GATE, mask_sh), \
599 	HWS_SF(, DOMAIN17_PG_CONFIG, DOMAIN_POWER_FORCEON, mask_sh), \
600 	HWS_SF(, DOMAIN17_PG_CONFIG, DOMAIN_POWER_GATE, mask_sh), \
601 	HWS_SF(, DOMAIN18_PG_CONFIG, DOMAIN_POWER_FORCEON, mask_sh), \
602 	HWS_SF(, DOMAIN18_PG_CONFIG, DOMAIN_POWER_GATE, mask_sh), \
603 	HWS_SF(, DOMAIN19_PG_CONFIG, DOMAIN_POWER_FORCEON, mask_sh), \
604 	HWS_SF(, DOMAIN19_PG_CONFIG, DOMAIN_POWER_GATE, mask_sh), \
605 	HWS_SF(, DOMAIN0_PG_STATUS, DOMAIN_PGFSM_PWR_STATUS, mask_sh), \
606 	HWS_SF(, DOMAIN1_PG_STATUS, DOMAIN_PGFSM_PWR_STATUS, mask_sh), \
607 	HWS_SF(, DOMAIN2_PG_STATUS, DOMAIN_PGFSM_PWR_STATUS, mask_sh), \
608 	HWS_SF(, DOMAIN3_PG_STATUS, DOMAIN_PGFSM_PWR_STATUS, mask_sh), \
609 	HWS_SF(, DOMAIN16_PG_STATUS, DOMAIN_PGFSM_PWR_STATUS, mask_sh), \
610 	HWS_SF(, DOMAIN17_PG_STATUS, DOMAIN_PGFSM_PWR_STATUS, mask_sh), \
611 	HWS_SF(, DOMAIN18_PG_STATUS, DOMAIN_PGFSM_PWR_STATUS, mask_sh), \
612 	HWS_SF(, DOMAIN19_PG_STATUS, DOMAIN_PGFSM_PWR_STATUS, mask_sh), \
613 	HWS_SF(, DC_IP_REQUEST_CNTL, IP_REQUEST_EN, mask_sh), \
614 	HWS_SF(, AZALIA_AUDIO_DTO, AZALIA_AUDIO_DTO_MODULE, mask_sh), \
615 	HWS_SF(, HPO_TOP_CLOCK_CONTROL, HPO_HDMISTREAMCLK_G_GATE_DIS, mask_sh), \
616 	HWS_SF(, ODM_MEM_PWR_CTRL3, ODM_MEM_UNASSIGNED_PWR_MODE, mask_sh), \
617 	HWS_SF(, ODM_MEM_PWR_CTRL3, ODM_MEM_VBLANK_PWR_MODE, mask_sh), \
618 	HWS_SF(, MMHUBBUB_MEM_PWR_CNTL, VGA_MEM_PWR_FORCE, mask_sh)
619 
620 static const struct dce_hwseq_shift hwseq_shift = {
621 		HWSEQ_DCN32_MASK_SH_LIST(__SHIFT)
622 };
623 
624 static const struct dce_hwseq_mask hwseq_mask = {
625 		HWSEQ_DCN32_MASK_SH_LIST(_MASK)
626 };
627 #define vmid_regs_init(id)\
628 		DCN20_VMID_REG_LIST_RI(id)
629 
630 static struct dcn_vmid_registers vmid_regs[16];
631 
632 static const struct dcn20_vmid_shift vmid_shifts = {
633 		DCN20_VMID_MASK_SH_LIST(__SHIFT)
634 };
635 
636 static const struct dcn20_vmid_mask vmid_masks = {
637 		DCN20_VMID_MASK_SH_LIST(_MASK)
638 };
639 
640 static const struct resource_caps res_cap_dcn321 = {
641 	.num_timing_generator = 4,
642 	.num_opp = 4,
643 	.num_video_plane = 4,
644 	.num_audio = 5,
645 	.num_stream_encoder = 5,
646 	.num_hpo_dp_stream_encoder = 4,
647 	.num_hpo_dp_link_encoder = 2,
648 	.num_pll = 5,
649 	.num_dwb = 1,
650 	.num_ddc = 5,
651 	.num_vmid = 16,
652 	.num_mpc_3dlut = 4,
653 	.num_dsc = 4,
654 };
655 
656 static const struct dc_plane_cap plane_cap = {
657 	.type = DC_PLANE_TYPE_DCN_UNIVERSAL,
658 	.blends_with_above = true,
659 	.blends_with_below = true,
660 	.per_pixel_alpha = true,
661 
662 	.pixel_format_support = {
663 			.argb8888 = true,
664 			.nv12 = true,
665 			.fp16 = true,
666 			.p010 = true,
667 			.ayuv = false,
668 	},
669 
670 	.max_upscale_factor = {
671 			.argb8888 = 16000,
672 			.nv12 = 16000,
673 			.fp16 = 16000
674 	},
675 
676 	// 6:1 downscaling ratio: 1000/6 = 166.666
677 	.max_downscale_factor = {
678 			.argb8888 = 167,
679 			.nv12 = 167,
680 			.fp16 = 167
681 	},
682 	64,
683 	64
684 };
685 
686 static const struct dc_debug_options debug_defaults_drv = {
687 	.disable_dmcu = true,
688 	.force_abm_enable = false,
689 	.timing_trace = false,
690 	.clock_trace = true,
691 	.disable_pplib_clock_request = false,
692 	.pipe_split_policy = MPC_SPLIT_AVOID,
693 	.force_single_disp_pipe_split = false,
694 	.disable_dcc = DCC_ENABLE,
695 	.vsr_support = true,
696 	.performance_trace = false,
697 	.max_downscale_src_width = 7680,/*upto 8K*/
698 	.disable_pplib_wm_range = false,
699 	.scl_reset_length10 = true,
700 	.sanity_checks = false,
701 	.underflow_assert_delay_us = 0xFFFFFFFF,
702 	.dwb_fi_phase = -1, // -1 = disable,
703 	.dmub_command_table = true,
704 	.enable_mem_low_power = {
705 		.bits = {
706 			.vga = false,
707 			.i2c = false,
708 			.dmcu = false, // This is previously known to cause hang on S3 cycles if enabled
709 			.dscl = false,
710 			.cm = false,
711 			.mpc = false,
712 			.optc = true,
713 		}
714 	},
715 	.use_max_lb = true,
716 	.force_disable_subvp = false,
717 	.exit_idle_opt_for_cursor_updates = true,
718 	.enable_single_display_2to1_odm_policy = true,
719 
720 	/*must match enable_single_display_2to1_odm_policy to support dynamic ODM transitions*/
721 	.enable_double_buffered_dsc_pg_support = true,
722 	.enable_dp_dig_pixel_rate_div_policy = 1,
723 	.allow_sw_cursor_fallback = false,
724 	.alloc_extra_way_for_cursor = true,
725 };
726 
727 static const struct dc_debug_options debug_defaults_diags = {
728 	.disable_dmcu = true,
729 	.force_abm_enable = false,
730 	.timing_trace = true,
731 	.clock_trace = true,
732 	.disable_dpp_power_gate = true,
733 	.disable_hubp_power_gate = true,
734 	.disable_dsc_power_gate = true,
735 	.disable_clock_gate = true,
736 	.disable_pplib_clock_request = true,
737 	.disable_pplib_wm_range = true,
738 	.disable_stutter = false,
739 	.scl_reset_length10 = true,
740 	.dwb_fi_phase = -1, // -1 = disable
741 	.dmub_command_table = true,
742 	.enable_tri_buf = true,
743 	.use_max_lb = true,
744 	.force_disable_subvp = true
745 };
746 
747 
748 static struct dce_aux *dcn321_aux_engine_create(
749 	struct dc_context *ctx,
750 	uint32_t inst)
751 {
752 	struct aux_engine_dce110 *aux_engine =
753 		kzalloc(sizeof(struct aux_engine_dce110), GFP_KERNEL);
754 
755 	if (!aux_engine)
756 		return NULL;
757 
758 #undef REG_STRUCT
759 #define REG_STRUCT aux_engine_regs
760 	aux_engine_regs_init(0),
761 	aux_engine_regs_init(1),
762 	aux_engine_regs_init(2),
763 	aux_engine_regs_init(3),
764 	aux_engine_regs_init(4);
765 
766 	dce110_aux_engine_construct(aux_engine, ctx, inst,
767 				    SW_AUX_TIMEOUT_PERIOD_MULTIPLIER * AUX_TIMEOUT_PERIOD,
768 				    &aux_engine_regs[inst],
769 					&aux_mask,
770 					&aux_shift,
771 					ctx->dc->caps.extended_aux_timeout_support);
772 
773 	return &aux_engine->base;
774 }
775 #define i2c_inst_regs_init(id)\
776 	I2C_HW_ENGINE_COMMON_REG_LIST_DCN30_RI(id)
777 
778 static struct dce_i2c_registers i2c_hw_regs[5];
779 
780 static const struct dce_i2c_shift i2c_shifts = {
781 		I2C_COMMON_MASK_SH_LIST_DCN30(__SHIFT)
782 };
783 
784 static const struct dce_i2c_mask i2c_masks = {
785 		I2C_COMMON_MASK_SH_LIST_DCN30(_MASK)
786 };
787 
788 static struct dce_i2c_hw *dcn321_i2c_hw_create(
789 	struct dc_context *ctx,
790 	uint32_t inst)
791 {
792 	struct dce_i2c_hw *dce_i2c_hw =
793 		kzalloc(sizeof(struct dce_i2c_hw), GFP_KERNEL);
794 
795 	if (!dce_i2c_hw)
796 		return NULL;
797 
798 #undef REG_STRUCT
799 #define REG_STRUCT i2c_hw_regs
800 	i2c_inst_regs_init(1),
801 	i2c_inst_regs_init(2),
802 	i2c_inst_regs_init(3),
803 	i2c_inst_regs_init(4),
804 	i2c_inst_regs_init(5);
805 
806 	dcn2_i2c_hw_construct(dce_i2c_hw, ctx, inst,
807 				    &i2c_hw_regs[inst], &i2c_shifts, &i2c_masks);
808 
809 	return dce_i2c_hw;
810 }
811 
812 static struct clock_source *dcn321_clock_source_create(
813 		struct dc_context *ctx,
814 		struct dc_bios *bios,
815 		enum clock_source_id id,
816 		const struct dce110_clk_src_regs *regs,
817 		bool dp_clk_src)
818 {
819 	struct dce110_clk_src *clk_src =
820 		kzalloc(sizeof(struct dce110_clk_src), GFP_KERNEL);
821 
822 	if (!clk_src)
823 		return NULL;
824 
825 	if (dcn31_clk_src_construct(clk_src, ctx, bios, id,
826 			regs, &cs_shift, &cs_mask)) {
827 		clk_src->base.dp_clk_src = dp_clk_src;
828 		return &clk_src->base;
829 	}
830 
831 	BREAK_TO_DEBUGGER();
832 	return NULL;
833 }
834 
835 static struct hubbub *dcn321_hubbub_create(struct dc_context *ctx)
836 {
837 	int i;
838 
839 	struct dcn20_hubbub *hubbub2 = kzalloc(sizeof(struct dcn20_hubbub),
840 					  GFP_KERNEL);
841 
842 	if (!hubbub2)
843 		return NULL;
844 
845 #undef REG_STRUCT
846 #define REG_STRUCT hubbub_reg
847 	hubbub_reg_init();
848 
849 #undef REG_STRUCT
850 #define REG_STRUCT vmid_regs
851 	vmid_regs_init(0),
852 	vmid_regs_init(1),
853 	vmid_regs_init(2),
854 	vmid_regs_init(3),
855 	vmid_regs_init(4),
856 	vmid_regs_init(5),
857 	vmid_regs_init(6),
858 	vmid_regs_init(7),
859 	vmid_regs_init(8),
860 	vmid_regs_init(9),
861 	vmid_regs_init(10),
862 	vmid_regs_init(11),
863 	vmid_regs_init(12),
864 	vmid_regs_init(13),
865 	vmid_regs_init(14),
866 	vmid_regs_init(15);
867 
868 	hubbub32_construct(hubbub2, ctx,
869 			&hubbub_reg,
870 			&hubbub_shift,
871 			&hubbub_mask,
872 			ctx->dc->dml.ip.det_buffer_size_kbytes,
873 			ctx->dc->dml.ip.pixel_chunk_size_kbytes,
874 			ctx->dc->dml.ip.config_return_buffer_size_in_kbytes);
875 
876 
877 	for (i = 0; i < res_cap_dcn321.num_vmid; i++) {
878 		struct dcn20_vmid *vmid = &hubbub2->vmid[i];
879 
880 		vmid->ctx = ctx;
881 
882 		vmid->regs = &vmid_regs[i];
883 		vmid->shifts = &vmid_shifts;
884 		vmid->masks = &vmid_masks;
885 	}
886 
887 	return &hubbub2->base;
888 }
889 
890 static struct hubp *dcn321_hubp_create(
891 	struct dc_context *ctx,
892 	uint32_t inst)
893 {
894 	struct dcn20_hubp *hubp2 =
895 		kzalloc(sizeof(struct dcn20_hubp), GFP_KERNEL);
896 
897 	if (!hubp2)
898 		return NULL;
899 
900 #undef REG_STRUCT
901 #define REG_STRUCT hubp_regs
902 	hubp_regs_init(0),
903 	hubp_regs_init(1),
904 	hubp_regs_init(2),
905 	hubp_regs_init(3);
906 
907 	if (hubp32_construct(hubp2, ctx, inst,
908 			&hubp_regs[inst], &hubp_shift, &hubp_mask))
909 		return &hubp2->base;
910 
911 	BREAK_TO_DEBUGGER();
912 	kfree(hubp2);
913 	return NULL;
914 }
915 
916 static void dcn321_dpp_destroy(struct dpp **dpp)
917 {
918 	kfree(TO_DCN30_DPP(*dpp));
919 	*dpp = NULL;
920 }
921 
922 static struct dpp *dcn321_dpp_create(
923 	struct dc_context *ctx,
924 	uint32_t inst)
925 {
926 	struct dcn3_dpp *dpp3 =
927 		kzalloc(sizeof(struct dcn3_dpp), GFP_KERNEL);
928 
929 	if (!dpp3)
930 		return NULL;
931 
932 #undef REG_STRUCT
933 #define REG_STRUCT dpp_regs
934 	dpp_regs_init(0),
935 	dpp_regs_init(1),
936 	dpp_regs_init(2),
937 	dpp_regs_init(3);
938 
939 	if (dpp32_construct(dpp3, ctx, inst,
940 			&dpp_regs[inst], &tf_shift, &tf_mask))
941 		return &dpp3->base;
942 
943 	BREAK_TO_DEBUGGER();
944 	kfree(dpp3);
945 	return NULL;
946 }
947 
948 static struct mpc *dcn321_mpc_create(
949 		struct dc_context *ctx,
950 		int num_mpcc,
951 		int num_rmu)
952 {
953 	struct dcn30_mpc *mpc30 = kzalloc(sizeof(struct dcn30_mpc),
954 					  GFP_KERNEL);
955 
956 	if (!mpc30)
957 		return NULL;
958 
959 #undef REG_STRUCT
960 #define REG_STRUCT mpc_regs
961 	dcn_mpc_regs_init();
962 
963 	dcn32_mpc_construct(mpc30, ctx,
964 			&mpc_regs,
965 			&mpc_shift,
966 			&mpc_mask,
967 			num_mpcc,
968 			num_rmu);
969 
970 	return &mpc30->base;
971 }
972 
973 static struct output_pixel_processor *dcn321_opp_create(
974 	struct dc_context *ctx, uint32_t inst)
975 {
976 	struct dcn20_opp *opp2 =
977 		kzalloc(sizeof(struct dcn20_opp), GFP_KERNEL);
978 
979 	if (!opp2) {
980 		BREAK_TO_DEBUGGER();
981 		return NULL;
982 	}
983 
984 #undef REG_STRUCT
985 #define REG_STRUCT opp_regs
986 	opp_regs_init(0),
987 	opp_regs_init(1),
988 	opp_regs_init(2),
989 	opp_regs_init(3);
990 
991 	dcn20_opp_construct(opp2, ctx, inst,
992 			&opp_regs[inst], &opp_shift, &opp_mask);
993 	return &opp2->base;
994 }
995 
996 
997 static struct timing_generator *dcn321_timing_generator_create(
998 		struct dc_context *ctx,
999 		uint32_t instance)
1000 {
1001 	struct optc *tgn10 =
1002 		kzalloc(sizeof(struct optc), GFP_KERNEL);
1003 
1004 	if (!tgn10)
1005 		return NULL;
1006 
1007 #undef REG_STRUCT
1008 #define REG_STRUCT optc_regs
1009 	optc_regs_init(0),
1010 	optc_regs_init(1),
1011 	optc_regs_init(2),
1012 	optc_regs_init(3);
1013 
1014 	tgn10->base.inst = instance;
1015 	tgn10->base.ctx = ctx;
1016 
1017 	tgn10->tg_regs = &optc_regs[instance];
1018 	tgn10->tg_shift = &optc_shift;
1019 	tgn10->tg_mask = &optc_mask;
1020 
1021 	dcn32_timing_generator_init(tgn10);
1022 
1023 	return &tgn10->base;
1024 }
1025 
1026 static const struct encoder_feature_support link_enc_feature = {
1027 		.max_hdmi_deep_color = COLOR_DEPTH_121212,
1028 		.max_hdmi_pixel_clock = 600000,
1029 		.hdmi_ycbcr420_supported = true,
1030 		.dp_ycbcr420_supported = true,
1031 		.fec_supported = true,
1032 		.flags.bits.IS_HBR2_CAPABLE = true,
1033 		.flags.bits.IS_HBR3_CAPABLE = true,
1034 		.flags.bits.IS_TPS3_CAPABLE = true,
1035 		.flags.bits.IS_TPS4_CAPABLE = true
1036 };
1037 
1038 static struct link_encoder *dcn321_link_encoder_create(
1039 	struct dc_context *ctx,
1040 	const struct encoder_init_data *enc_init_data)
1041 {
1042 	struct dcn20_link_encoder *enc20 =
1043 		kzalloc(sizeof(struct dcn20_link_encoder), GFP_KERNEL);
1044 
1045 	if (!enc20)
1046 		return NULL;
1047 
1048 #undef REG_STRUCT
1049 #define REG_STRUCT link_enc_aux_regs
1050 	aux_regs_init(0),
1051 	aux_regs_init(1),
1052 	aux_regs_init(2),
1053 	aux_regs_init(3),
1054 	aux_regs_init(4);
1055 
1056 #undef REG_STRUCT
1057 #define REG_STRUCT link_enc_hpd_regs
1058 	hpd_regs_init(0),
1059 	hpd_regs_init(1),
1060 	hpd_regs_init(2),
1061 	hpd_regs_init(3),
1062 	hpd_regs_init(4);
1063 
1064 #undef REG_STRUCT
1065 #define REG_STRUCT link_enc_regs
1066 	link_regs_init(0, A),
1067 	link_regs_init(1, B),
1068 	link_regs_init(2, C),
1069 	link_regs_init(3, D),
1070 	link_regs_init(4, E);
1071 
1072 	dcn321_link_encoder_construct(enc20,
1073 			enc_init_data,
1074 			&link_enc_feature,
1075 			&link_enc_regs[enc_init_data->transmitter],
1076 			&link_enc_aux_regs[enc_init_data->channel - 1],
1077 			&link_enc_hpd_regs[enc_init_data->hpd_source],
1078 			&le_shift,
1079 			&le_mask);
1080 
1081 	return &enc20->enc10.base;
1082 }
1083 
1084 static void read_dce_straps(
1085 	struct dc_context *ctx,
1086 	struct resource_straps *straps)
1087 {
1088 	generic_reg_get(ctx, ctx->dcn_reg_offsets[regDC_PINSTRAPS_BASE_IDX] + regDC_PINSTRAPS,
1089 		FN(DC_PINSTRAPS, DC_PINSTRAPS_AUDIO), &straps->dc_pinstraps_audio);
1090 
1091 }
1092 
1093 static struct audio *dcn321_create_audio(
1094 		struct dc_context *ctx, unsigned int inst)
1095 {
1096 
1097 #undef REG_STRUCT
1098 #define REG_STRUCT audio_regs
1099 	audio_regs_init(0),
1100 	audio_regs_init(1),
1101 	audio_regs_init(2),
1102 	audio_regs_init(3),
1103 	audio_regs_init(4);
1104 
1105 	return dce_audio_create(ctx, inst,
1106 			&audio_regs[inst], &audio_shift, &audio_mask);
1107 }
1108 
1109 static struct vpg *dcn321_vpg_create(
1110 	struct dc_context *ctx,
1111 	uint32_t inst)
1112 {
1113 	struct dcn30_vpg *vpg3 = kzalloc(sizeof(struct dcn30_vpg), GFP_KERNEL);
1114 
1115 	if (!vpg3)
1116 		return NULL;
1117 
1118 #undef REG_STRUCT
1119 #define REG_STRUCT vpg_regs
1120 	vpg_regs_init(0),
1121 	vpg_regs_init(1),
1122 	vpg_regs_init(2),
1123 	vpg_regs_init(3),
1124 	vpg_regs_init(4),
1125 	vpg_regs_init(5),
1126 	vpg_regs_init(6),
1127 	vpg_regs_init(7),
1128 	vpg_regs_init(8),
1129 	vpg_regs_init(9);
1130 
1131 	vpg3_construct(vpg3, ctx, inst,
1132 			&vpg_regs[inst],
1133 			&vpg_shift,
1134 			&vpg_mask);
1135 
1136 	return &vpg3->base;
1137 }
1138 
1139 static struct afmt *dcn321_afmt_create(
1140 	struct dc_context *ctx,
1141 	uint32_t inst)
1142 {
1143 	struct dcn30_afmt *afmt3 = kzalloc(sizeof(struct dcn30_afmt), GFP_KERNEL);
1144 
1145 	if (!afmt3)
1146 		return NULL;
1147 
1148 #undef REG_STRUCT
1149 #define REG_STRUCT afmt_regs
1150 	afmt_regs_init(0),
1151 	afmt_regs_init(1),
1152 	afmt_regs_init(2),
1153 	afmt_regs_init(3),
1154 	afmt_regs_init(4),
1155 	afmt_regs_init(5);
1156 
1157 	afmt3_construct(afmt3, ctx, inst,
1158 			&afmt_regs[inst],
1159 			&afmt_shift,
1160 			&afmt_mask);
1161 
1162 	return &afmt3->base;
1163 }
1164 
1165 static struct apg *dcn321_apg_create(
1166 	struct dc_context *ctx,
1167 	uint32_t inst)
1168 {
1169 	struct dcn31_apg *apg31 = kzalloc(sizeof(struct dcn31_apg), GFP_KERNEL);
1170 
1171 	if (!apg31)
1172 		return NULL;
1173 
1174 #undef REG_STRUCT
1175 #define REG_STRUCT apg_regs
1176 	apg_regs_init(0),
1177 	apg_regs_init(1),
1178 	apg_regs_init(2),
1179 	apg_regs_init(3);
1180 
1181 	apg31_construct(apg31, ctx, inst,
1182 			&apg_regs[inst],
1183 			&apg_shift,
1184 			&apg_mask);
1185 
1186 	return &apg31->base;
1187 }
1188 
1189 static struct stream_encoder *dcn321_stream_encoder_create(
1190 	enum engine_id eng_id,
1191 	struct dc_context *ctx)
1192 {
1193 	struct dcn10_stream_encoder *enc1;
1194 	struct vpg *vpg;
1195 	struct afmt *afmt;
1196 	int vpg_inst;
1197 	int afmt_inst;
1198 
1199 	/* Mapping of VPG, AFMT, DME register blocks to DIO block instance */
1200 	if (eng_id <= ENGINE_ID_DIGF) {
1201 		vpg_inst = eng_id;
1202 		afmt_inst = eng_id;
1203 	} else
1204 		return NULL;
1205 
1206 	enc1 = kzalloc(sizeof(struct dcn10_stream_encoder), GFP_KERNEL);
1207 	vpg = dcn321_vpg_create(ctx, vpg_inst);
1208 	afmt = dcn321_afmt_create(ctx, afmt_inst);
1209 
1210 	if (!enc1 || !vpg || !afmt) {
1211 		kfree(enc1);
1212 		kfree(vpg);
1213 		kfree(afmt);
1214 		return NULL;
1215 	}
1216 
1217 #undef REG_STRUCT
1218 #define REG_STRUCT stream_enc_regs
1219 	stream_enc_regs_init(0),
1220 	stream_enc_regs_init(1),
1221 	stream_enc_regs_init(2),
1222 	stream_enc_regs_init(3),
1223 	stream_enc_regs_init(4);
1224 
1225 	dcn32_dio_stream_encoder_construct(enc1, ctx, ctx->dc_bios,
1226 					eng_id, vpg, afmt,
1227 					&stream_enc_regs[eng_id],
1228 					&se_shift, &se_mask);
1229 
1230 	return &enc1->base;
1231 }
1232 
1233 static struct hpo_dp_stream_encoder *dcn321_hpo_dp_stream_encoder_create(
1234 	enum engine_id eng_id,
1235 	struct dc_context *ctx)
1236 {
1237 	struct dcn31_hpo_dp_stream_encoder *hpo_dp_enc31;
1238 	struct vpg *vpg;
1239 	struct apg *apg;
1240 	uint32_t hpo_dp_inst;
1241 	uint32_t vpg_inst;
1242 	uint32_t apg_inst;
1243 
1244 	ASSERT((eng_id >= ENGINE_ID_HPO_DP_0) && (eng_id <= ENGINE_ID_HPO_DP_3));
1245 	hpo_dp_inst = eng_id - ENGINE_ID_HPO_DP_0;
1246 
1247 	/* Mapping of VPG register blocks to HPO DP block instance:
1248 	 * VPG[6] -> HPO_DP[0]
1249 	 * VPG[7] -> HPO_DP[1]
1250 	 * VPG[8] -> HPO_DP[2]
1251 	 * VPG[9] -> HPO_DP[3]
1252 	 */
1253 	vpg_inst = hpo_dp_inst + 6;
1254 
1255 	/* Mapping of APG register blocks to HPO DP block instance:
1256 	 * APG[0] -> HPO_DP[0]
1257 	 * APG[1] -> HPO_DP[1]
1258 	 * APG[2] -> HPO_DP[2]
1259 	 * APG[3] -> HPO_DP[3]
1260 	 */
1261 	apg_inst = hpo_dp_inst;
1262 
1263 	/* allocate HPO stream encoder and create VPG sub-block */
1264 	hpo_dp_enc31 = kzalloc(sizeof(struct dcn31_hpo_dp_stream_encoder), GFP_KERNEL);
1265 	vpg = dcn321_vpg_create(ctx, vpg_inst);
1266 	apg = dcn321_apg_create(ctx, apg_inst);
1267 
1268 	if (!hpo_dp_enc31 || !vpg || !apg) {
1269 		kfree(hpo_dp_enc31);
1270 		kfree(vpg);
1271 		kfree(apg);
1272 		return NULL;
1273 	}
1274 
1275 #undef REG_STRUCT
1276 #define REG_STRUCT hpo_dp_stream_enc_regs
1277 	hpo_dp_stream_encoder_reg_init(0),
1278 	hpo_dp_stream_encoder_reg_init(1),
1279 	hpo_dp_stream_encoder_reg_init(2),
1280 	hpo_dp_stream_encoder_reg_init(3);
1281 
1282 	dcn31_hpo_dp_stream_encoder_construct(hpo_dp_enc31, ctx, ctx->dc_bios,
1283 					hpo_dp_inst, eng_id, vpg, apg,
1284 					&hpo_dp_stream_enc_regs[hpo_dp_inst],
1285 					&hpo_dp_se_shift, &hpo_dp_se_mask);
1286 
1287 	return &hpo_dp_enc31->base;
1288 }
1289 
1290 static struct hpo_dp_link_encoder *dcn321_hpo_dp_link_encoder_create(
1291 	uint8_t inst,
1292 	struct dc_context *ctx)
1293 {
1294 	struct dcn31_hpo_dp_link_encoder *hpo_dp_enc31;
1295 
1296 	/* allocate HPO link encoder */
1297 	hpo_dp_enc31 = kzalloc(sizeof(struct dcn31_hpo_dp_link_encoder), GFP_KERNEL);
1298 
1299 #undef REG_STRUCT
1300 #define REG_STRUCT hpo_dp_link_enc_regs
1301 	hpo_dp_link_encoder_reg_init(0),
1302 	hpo_dp_link_encoder_reg_init(1);
1303 
1304 	hpo_dp_link_encoder32_construct(hpo_dp_enc31, ctx, inst,
1305 					&hpo_dp_link_enc_regs[inst],
1306 					&hpo_dp_le_shift, &hpo_dp_le_mask);
1307 
1308 	return &hpo_dp_enc31->base;
1309 }
1310 
1311 static struct dce_hwseq *dcn321_hwseq_create(
1312 	struct dc_context *ctx)
1313 {
1314 	struct dce_hwseq *hws = kzalloc(sizeof(struct dce_hwseq), GFP_KERNEL);
1315 
1316 #undef REG_STRUCT
1317 #define REG_STRUCT hwseq_reg
1318 	hwseq_reg_init();
1319 
1320 	if (hws) {
1321 		hws->ctx = ctx;
1322 		hws->regs = &hwseq_reg;
1323 		hws->shifts = &hwseq_shift;
1324 		hws->masks = &hwseq_mask;
1325 	}
1326 	return hws;
1327 }
1328 static const struct resource_create_funcs res_create_funcs = {
1329 	.read_dce_straps = read_dce_straps,
1330 	.create_audio = dcn321_create_audio,
1331 	.create_stream_encoder = dcn321_stream_encoder_create,
1332 	.create_hpo_dp_stream_encoder = dcn321_hpo_dp_stream_encoder_create,
1333 	.create_hpo_dp_link_encoder = dcn321_hpo_dp_link_encoder_create,
1334 	.create_hwseq = dcn321_hwseq_create,
1335 };
1336 
1337 static const struct resource_create_funcs res_create_maximus_funcs = {
1338 	.read_dce_straps = NULL,
1339 	.create_audio = NULL,
1340 	.create_stream_encoder = NULL,
1341 	.create_hpo_dp_stream_encoder = dcn321_hpo_dp_stream_encoder_create,
1342 	.create_hpo_dp_link_encoder = dcn321_hpo_dp_link_encoder_create,
1343 	.create_hwseq = dcn321_hwseq_create,
1344 };
1345 
1346 static void dcn321_resource_destruct(struct dcn321_resource_pool *pool)
1347 {
1348 	unsigned int i;
1349 
1350 	for (i = 0; i < pool->base.stream_enc_count; i++) {
1351 		if (pool->base.stream_enc[i] != NULL) {
1352 			if (pool->base.stream_enc[i]->vpg != NULL) {
1353 				kfree(DCN30_VPG_FROM_VPG(pool->base.stream_enc[i]->vpg));
1354 				pool->base.stream_enc[i]->vpg = NULL;
1355 			}
1356 			if (pool->base.stream_enc[i]->afmt != NULL) {
1357 				kfree(DCN30_AFMT_FROM_AFMT(pool->base.stream_enc[i]->afmt));
1358 				pool->base.stream_enc[i]->afmt = NULL;
1359 			}
1360 			kfree(DCN10STRENC_FROM_STRENC(pool->base.stream_enc[i]));
1361 			pool->base.stream_enc[i] = NULL;
1362 		}
1363 	}
1364 
1365 	for (i = 0; i < pool->base.hpo_dp_stream_enc_count; i++) {
1366 		if (pool->base.hpo_dp_stream_enc[i] != NULL) {
1367 			if (pool->base.hpo_dp_stream_enc[i]->vpg != NULL) {
1368 				kfree(DCN30_VPG_FROM_VPG(pool->base.hpo_dp_stream_enc[i]->vpg));
1369 				pool->base.hpo_dp_stream_enc[i]->vpg = NULL;
1370 			}
1371 			if (pool->base.hpo_dp_stream_enc[i]->apg != NULL) {
1372 				kfree(DCN31_APG_FROM_APG(pool->base.hpo_dp_stream_enc[i]->apg));
1373 				pool->base.hpo_dp_stream_enc[i]->apg = NULL;
1374 			}
1375 			kfree(DCN3_1_HPO_DP_STREAM_ENC_FROM_HPO_STREAM_ENC(pool->base.hpo_dp_stream_enc[i]));
1376 			pool->base.hpo_dp_stream_enc[i] = NULL;
1377 		}
1378 	}
1379 
1380 	for (i = 0; i < pool->base.hpo_dp_link_enc_count; i++) {
1381 		if (pool->base.hpo_dp_link_enc[i] != NULL) {
1382 			kfree(DCN3_1_HPO_DP_LINK_ENC_FROM_HPO_LINK_ENC(pool->base.hpo_dp_link_enc[i]));
1383 			pool->base.hpo_dp_link_enc[i] = NULL;
1384 		}
1385 	}
1386 
1387 	for (i = 0; i < pool->base.res_cap->num_dsc; i++) {
1388 		if (pool->base.dscs[i] != NULL)
1389 			dcn20_dsc_destroy(&pool->base.dscs[i]);
1390 	}
1391 
1392 	if (pool->base.mpc != NULL) {
1393 		kfree(TO_DCN20_MPC(pool->base.mpc));
1394 		pool->base.mpc = NULL;
1395 	}
1396 	if (pool->base.hubbub != NULL) {
1397 		kfree(TO_DCN20_HUBBUB(pool->base.hubbub));
1398 		pool->base.hubbub = NULL;
1399 	}
1400 	for (i = 0; i < pool->base.pipe_count; i++) {
1401 		if (pool->base.dpps[i] != NULL)
1402 			dcn321_dpp_destroy(&pool->base.dpps[i]);
1403 
1404 		if (pool->base.ipps[i] != NULL)
1405 			pool->base.ipps[i]->funcs->ipp_destroy(&pool->base.ipps[i]);
1406 
1407 		if (pool->base.hubps[i] != NULL) {
1408 			kfree(TO_DCN20_HUBP(pool->base.hubps[i]));
1409 			pool->base.hubps[i] = NULL;
1410 		}
1411 
1412 		if (pool->base.irqs != NULL)
1413 			dal_irq_service_destroy(&pool->base.irqs);
1414 	}
1415 
1416 	for (i = 0; i < pool->base.res_cap->num_ddc; i++) {
1417 		if (pool->base.engines[i] != NULL)
1418 			dce110_engine_destroy(&pool->base.engines[i]);
1419 		if (pool->base.hw_i2cs[i] != NULL) {
1420 			kfree(pool->base.hw_i2cs[i]);
1421 			pool->base.hw_i2cs[i] = NULL;
1422 		}
1423 		if (pool->base.sw_i2cs[i] != NULL) {
1424 			kfree(pool->base.sw_i2cs[i]);
1425 			pool->base.sw_i2cs[i] = NULL;
1426 		}
1427 	}
1428 
1429 	for (i = 0; i < pool->base.res_cap->num_opp; i++) {
1430 		if (pool->base.opps[i] != NULL)
1431 			pool->base.opps[i]->funcs->opp_destroy(&pool->base.opps[i]);
1432 	}
1433 
1434 	for (i = 0; i < pool->base.res_cap->num_timing_generator; i++) {
1435 		if (pool->base.timing_generators[i] != NULL)	{
1436 			kfree(DCN10TG_FROM_TG(pool->base.timing_generators[i]));
1437 			pool->base.timing_generators[i] = NULL;
1438 		}
1439 	}
1440 
1441 	for (i = 0; i < pool->base.res_cap->num_dwb; i++) {
1442 		if (pool->base.dwbc[i] != NULL) {
1443 			kfree(TO_DCN30_DWBC(pool->base.dwbc[i]));
1444 			pool->base.dwbc[i] = NULL;
1445 		}
1446 		if (pool->base.mcif_wb[i] != NULL) {
1447 			kfree(TO_DCN30_MMHUBBUB(pool->base.mcif_wb[i]));
1448 			pool->base.mcif_wb[i] = NULL;
1449 		}
1450 	}
1451 
1452 	for (i = 0; i < pool->base.audio_count; i++) {
1453 		if (pool->base.audios[i])
1454 			dce_aud_destroy(&pool->base.audios[i]);
1455 	}
1456 
1457 	for (i = 0; i < pool->base.clk_src_count; i++) {
1458 		if (pool->base.clock_sources[i] != NULL) {
1459 			dcn20_clock_source_destroy(&pool->base.clock_sources[i]);
1460 			pool->base.clock_sources[i] = NULL;
1461 		}
1462 	}
1463 
1464 	for (i = 0; i < pool->base.res_cap->num_mpc_3dlut; i++) {
1465 		if (pool->base.mpc_lut[i] != NULL) {
1466 			dc_3dlut_func_release(pool->base.mpc_lut[i]);
1467 			pool->base.mpc_lut[i] = NULL;
1468 		}
1469 		if (pool->base.mpc_shaper[i] != NULL) {
1470 			dc_transfer_func_release(pool->base.mpc_shaper[i]);
1471 			pool->base.mpc_shaper[i] = NULL;
1472 		}
1473 	}
1474 
1475 	if (pool->base.dp_clock_source != NULL) {
1476 		dcn20_clock_source_destroy(&pool->base.dp_clock_source);
1477 		pool->base.dp_clock_source = NULL;
1478 	}
1479 
1480 	for (i = 0; i < pool->base.res_cap->num_timing_generator; i++) {
1481 		if (pool->base.multiple_abms[i] != NULL)
1482 			dce_abm_destroy(&pool->base.multiple_abms[i]);
1483 	}
1484 
1485 	if (pool->base.psr != NULL)
1486 		dmub_psr_destroy(&pool->base.psr);
1487 
1488 	if (pool->base.dccg != NULL)
1489 		dcn_dccg_destroy(&pool->base.dccg);
1490 
1491 	if (pool->base.oem_device != NULL)
1492 		dal_ddc_service_destroy(&pool->base.oem_device);
1493 }
1494 
1495 
1496 static bool dcn321_dwbc_create(struct dc_context *ctx, struct resource_pool *pool)
1497 {
1498 	int i;
1499 	uint32_t dwb_count = pool->res_cap->num_dwb;
1500 
1501 	for (i = 0; i < dwb_count; i++) {
1502 		struct dcn30_dwbc *dwbc30 = kzalloc(sizeof(struct dcn30_dwbc),
1503 						    GFP_KERNEL);
1504 
1505 		if (!dwbc30) {
1506 			dm_error("DC: failed to create dwbc30!\n");
1507 			return false;
1508 		}
1509 
1510 #undef REG_STRUCT
1511 #define REG_STRUCT dwbc30_regs
1512 		dwbc_regs_dcn3_init(0);
1513 
1514 		dcn30_dwbc_construct(dwbc30, ctx,
1515 				&dwbc30_regs[i],
1516 				&dwbc30_shift,
1517 				&dwbc30_mask,
1518 				i);
1519 
1520 		pool->dwbc[i] = &dwbc30->base;
1521 	}
1522 	return true;
1523 }
1524 
1525 static bool dcn321_mmhubbub_create(struct dc_context *ctx, struct resource_pool *pool)
1526 {
1527 	int i;
1528 	uint32_t dwb_count = pool->res_cap->num_dwb;
1529 
1530 	for (i = 0; i < dwb_count; i++) {
1531 		struct dcn30_mmhubbub *mcif_wb30 = kzalloc(sizeof(struct dcn30_mmhubbub),
1532 						    GFP_KERNEL);
1533 
1534 		if (!mcif_wb30) {
1535 			dm_error("DC: failed to create mcif_wb30!\n");
1536 			return false;
1537 		}
1538 
1539 #undef REG_STRUCT
1540 #define REG_STRUCT mcif_wb30_regs
1541 		mcif_wb_regs_dcn3_init(0);
1542 
1543 		dcn32_mmhubbub_construct(mcif_wb30, ctx,
1544 				&mcif_wb30_regs[i],
1545 				&mcif_wb30_shift,
1546 				&mcif_wb30_mask,
1547 				i);
1548 
1549 		pool->mcif_wb[i] = &mcif_wb30->base;
1550 	}
1551 	return true;
1552 }
1553 
1554 static struct display_stream_compressor *dcn321_dsc_create(
1555 	struct dc_context *ctx, uint32_t inst)
1556 {
1557 	struct dcn20_dsc *dsc =
1558 		kzalloc(sizeof(struct dcn20_dsc), GFP_KERNEL);
1559 
1560 	if (!dsc) {
1561 		BREAK_TO_DEBUGGER();
1562 		return NULL;
1563 	}
1564 
1565 #undef REG_STRUCT
1566 #define REG_STRUCT dsc_regs
1567 	dsc_regsDCN20_init(0),
1568 	dsc_regsDCN20_init(1),
1569 	dsc_regsDCN20_init(2),
1570 	dsc_regsDCN20_init(3);
1571 
1572 	dsc2_construct(dsc, ctx, inst, &dsc_regs[inst], &dsc_shift, &dsc_mask);
1573 
1574 	dsc->max_image_width = 6016;
1575 
1576 	return &dsc->base;
1577 }
1578 
1579 static void dcn321_destroy_resource_pool(struct resource_pool **pool)
1580 {
1581 	struct dcn321_resource_pool *dcn321_pool = TO_DCN321_RES_POOL(*pool);
1582 
1583 	dcn321_resource_destruct(dcn321_pool);
1584 	kfree(dcn321_pool);
1585 	*pool = NULL;
1586 }
1587 
1588 static struct dc_cap_funcs cap_funcs = {
1589 	.get_dcc_compression_cap = dcn20_get_dcc_compression_cap
1590 };
1591 
1592 static void dcn321_update_bw_bounding_box(struct dc *dc, struct clk_bw_params *bw_params)
1593 {
1594 	DC_FP_START();
1595 	dcn321_update_bw_bounding_box_fpu(dc, bw_params);
1596 	DC_FP_END();
1597 }
1598 
1599 static struct resource_funcs dcn321_res_pool_funcs = {
1600 	.destroy = dcn321_destroy_resource_pool,
1601 	.link_enc_create = dcn321_link_encoder_create,
1602 	.link_enc_create_minimal = NULL,
1603 	.panel_cntl_create = dcn32_panel_cntl_create,
1604 	.validate_bandwidth = dcn32_validate_bandwidth,
1605 	.calculate_wm_and_dlg = dcn32_calculate_wm_and_dlg,
1606 	.populate_dml_pipes = dcn32_populate_dml_pipes_from_context,
1607 	.acquire_idle_pipe_for_head_pipe_in_layer = dcn32_acquire_idle_pipe_for_head_pipe_in_layer,
1608 	.add_stream_to_ctx = dcn30_add_stream_to_ctx,
1609 	.add_dsc_to_stream_resource = dcn20_add_dsc_to_stream_resource,
1610 	.remove_stream_from_ctx = dcn20_remove_stream_from_ctx,
1611 	.populate_dml_writeback_from_context = dcn30_populate_dml_writeback_from_context,
1612 	.set_mcif_arb_params = dcn30_set_mcif_arb_params,
1613 	.find_first_free_match_stream_enc_for_link = dcn10_find_first_free_match_stream_enc_for_link,
1614 	.acquire_post_bldn_3dlut = dcn32_acquire_post_bldn_3dlut,
1615 	.release_post_bldn_3dlut = dcn32_release_post_bldn_3dlut,
1616 	.update_bw_bounding_box = dcn321_update_bw_bounding_box,
1617 	.patch_unknown_plane_state = dcn20_patch_unknown_plane_state,
1618 	.update_soc_for_wm_a = dcn30_update_soc_for_wm_a,
1619 	.add_phantom_pipes = dcn32_add_phantom_pipes,
1620 	.remove_phantom_pipes = dcn32_remove_phantom_pipes,
1621 };
1622 
1623 
1624 static bool dcn321_resource_construct(
1625 	uint8_t num_virtual_links,
1626 	struct dc *dc,
1627 	struct dcn321_resource_pool *pool)
1628 {
1629 	int i, j;
1630 	struct dc_context *ctx = dc->ctx;
1631 	struct irq_service_init_data init_data;
1632 	struct ddc_service_init_data ddc_init_data = {0};
1633 	uint32_t pipe_fuses = 0;
1634 	uint32_t num_pipes  = 4;
1635 
1636 #undef REG_STRUCT
1637 #define REG_STRUCT bios_regs
1638 	bios_regs_init();
1639 
1640 #undef REG_STRUCT
1641 #define REG_STRUCT clk_src_regs
1642 	clk_src_regs_init(0, A),
1643 	clk_src_regs_init(1, B),
1644 	clk_src_regs_init(2, C),
1645 	clk_src_regs_init(3, D),
1646 	clk_src_regs_init(4, E);
1647 
1648 #undef REG_STRUCT
1649 #define REG_STRUCT abm_regs
1650 	abm_regs_init(0),
1651 	abm_regs_init(1),
1652 	abm_regs_init(2),
1653 	abm_regs_init(3);
1654 
1655 #undef REG_STRUCT
1656 #define REG_STRUCT dccg_regs
1657 	dccg_regs_init();
1658 
1659 
1660 	ctx->dc_bios->regs = &bios_regs;
1661 
1662 	pool->base.res_cap = &res_cap_dcn321;
1663 	/* max number of pipes for ASIC before checking for pipe fuses */
1664 	num_pipes  = pool->base.res_cap->num_timing_generator;
1665 	pipe_fuses = REG_READ(CC_DC_PIPE_DIS);
1666 
1667 	for (i = 0; i < pool->base.res_cap->num_timing_generator; i++)
1668 		if (pipe_fuses & 1 << i)
1669 			num_pipes--;
1670 
1671 	if (pipe_fuses & 1)
1672 		ASSERT(0); //Unexpected - Pipe 0 should always be fully functional!
1673 
1674 	if (pipe_fuses & CC_DC_PIPE_DIS__DC_FULL_DIS_MASK)
1675 		ASSERT(0); //Entire DCN is harvested!
1676 
1677 	/* within dml lib, initial value is hard coded, if ASIC pipe is fused, the
1678 	 * value will be changed, update max_num_dpp and max_num_otg for dml.
1679 	 */
1680 	dcn3_21_ip.max_num_dpp = num_pipes;
1681 	dcn3_21_ip.max_num_otg = num_pipes;
1682 
1683 	pool->base.funcs = &dcn321_res_pool_funcs;
1684 
1685 	/*************************************************
1686 	 *  Resource + asic cap harcoding                *
1687 	 *************************************************/
1688 	pool->base.underlay_pipe_index = NO_UNDERLAY_PIPE;
1689 	pool->base.timing_generator_count = num_pipes;
1690 	pool->base.pipe_count = num_pipes;
1691 	pool->base.mpcc_count = num_pipes;
1692 	dc->caps.max_downscale_ratio = 600;
1693 	dc->caps.i2c_speed_in_khz = 100;
1694 	dc->caps.i2c_speed_in_khz_hdcp = 100; /*1.4 w/a applied by default*/
1695 	/* TODO: Bring max cursor size back to 256 after subvp cursor corruption is fixed*/
1696 	dc->caps.max_cursor_size = 64;
1697 	dc->caps.min_horizontal_blanking_period = 80;
1698 	dc->caps.dmdata_alloc_size = 2048;
1699 	dc->caps.mall_size_per_mem_channel = 0;
1700 	dc->caps.mall_size_total = 0;
1701 	dc->caps.cursor_cache_size = dc->caps.max_cursor_size * dc->caps.max_cursor_size * 8;
1702 	dc->caps.cache_line_size = 64;
1703 	dc->caps.cache_num_ways = 16;
1704 	dc->caps.max_cab_allocation_bytes = 33554432; // 32MB = 1024 * 1024 * 32
1705 	dc->caps.subvp_fw_processing_delay_us = 15;
1706 	dc->caps.subvp_prefetch_end_to_mall_start_us = 15;
1707 	dc->caps.subvp_swath_height_margin_lines = 16;
1708 	dc->caps.subvp_pstate_allow_width_us = 20;
1709 	dc->caps.subvp_vertical_int_margin_us = 30;
1710 	dc->caps.max_slave_planes = 1;
1711 	dc->caps.max_slave_yuv_planes = 1;
1712 	dc->caps.max_slave_rgb_planes = 1;
1713 	dc->caps.post_blend_color_processing = true;
1714 	dc->caps.force_dp_tps4_for_cp2520 = true;
1715 	dc->caps.dp_hpo = true;
1716 	dc->caps.dp_hdmi21_pcon_support = true;
1717 	dc->caps.edp_dsc_support = true;
1718 	dc->caps.extended_aux_timeout_support = true;
1719 	dc->caps.dmcub_support = true;
1720 
1721 	/* Color pipeline capabilities */
1722 	dc->caps.color.dpp.dcn_arch = 1;
1723 	dc->caps.color.dpp.input_lut_shared = 0;
1724 	dc->caps.color.dpp.icsc = 1;
1725 	dc->caps.color.dpp.dgam_ram = 0; // must use gamma_corr
1726 	dc->caps.color.dpp.dgam_rom_caps.srgb = 1;
1727 	dc->caps.color.dpp.dgam_rom_caps.bt2020 = 1;
1728 	dc->caps.color.dpp.dgam_rom_caps.gamma2_2 = 1;
1729 	dc->caps.color.dpp.dgam_rom_caps.pq = 1;
1730 	dc->caps.color.dpp.dgam_rom_caps.hlg = 1;
1731 	dc->caps.color.dpp.post_csc = 1;
1732 	dc->caps.color.dpp.gamma_corr = 1;
1733 	dc->caps.color.dpp.dgam_rom_for_yuv = 0;
1734 
1735 	dc->caps.color.dpp.hw_3d_lut = 1;
1736 	dc->caps.color.dpp.ogam_ram = 1;
1737 	// no OGAM ROM on DCN2 and later ASICs
1738 	dc->caps.color.dpp.ogam_rom_caps.srgb = 0;
1739 	dc->caps.color.dpp.ogam_rom_caps.bt2020 = 0;
1740 	dc->caps.color.dpp.ogam_rom_caps.gamma2_2 = 0;
1741 	dc->caps.color.dpp.ogam_rom_caps.pq = 0;
1742 	dc->caps.color.dpp.ogam_rom_caps.hlg = 0;
1743 	dc->caps.color.dpp.ocsc = 0;
1744 
1745 	dc->caps.color.mpc.gamut_remap = 1;
1746 	dc->caps.color.mpc.num_3dluts = pool->base.res_cap->num_mpc_3dlut; //4, configurable to be before or after BLND in MPCC
1747 	dc->caps.color.mpc.ogam_ram = 1;
1748 	dc->caps.color.mpc.ogam_rom_caps.srgb = 0;
1749 	dc->caps.color.mpc.ogam_rom_caps.bt2020 = 0;
1750 	dc->caps.color.mpc.ogam_rom_caps.gamma2_2 = 0;
1751 	dc->caps.color.mpc.ogam_rom_caps.pq = 0;
1752 	dc->caps.color.mpc.ogam_rom_caps.hlg = 0;
1753 	dc->caps.color.mpc.ocsc = 1;
1754 
1755 	/* read VBIOS LTTPR caps */
1756 	{
1757 		if (ctx->dc_bios->funcs->get_lttpr_caps) {
1758 			enum bp_result bp_query_result;
1759 			uint8_t is_vbios_lttpr_enable = 0;
1760 
1761 			bp_query_result = ctx->dc_bios->funcs->get_lttpr_caps(ctx->dc_bios, &is_vbios_lttpr_enable);
1762 			dc->caps.vbios_lttpr_enable = (bp_query_result == BP_RESULT_OK) && !!is_vbios_lttpr_enable;
1763 		}
1764 
1765 		/* interop bit is implicit */
1766 		{
1767 			dc->caps.vbios_lttpr_aware = true;
1768 		}
1769 	}
1770 
1771 	if (dc->ctx->dce_environment == DCE_ENV_PRODUCTION_DRV)
1772 		dc->debug = debug_defaults_drv;
1773 	else if (dc->ctx->dce_environment == DCE_ENV_FPGA_MAXIMUS) {
1774 		dc->debug = debug_defaults_diags;
1775 	} else
1776 		dc->debug = debug_defaults_diags;
1777 	// Init the vm_helper
1778 	if (dc->vm_helper)
1779 		vm_helper_init(dc->vm_helper, 16);
1780 
1781 	/*************************************************
1782 	 *  Create resources                             *
1783 	 *************************************************/
1784 
1785 	/* Clock Sources for Pixel Clock*/
1786 	pool->base.clock_sources[DCN321_CLK_SRC_PLL0] =
1787 			dcn321_clock_source_create(ctx, ctx->dc_bios,
1788 				CLOCK_SOURCE_COMBO_PHY_PLL0,
1789 				&clk_src_regs[0], false);
1790 	pool->base.clock_sources[DCN321_CLK_SRC_PLL1] =
1791 			dcn321_clock_source_create(ctx, ctx->dc_bios,
1792 				CLOCK_SOURCE_COMBO_PHY_PLL1,
1793 				&clk_src_regs[1], false);
1794 	pool->base.clock_sources[DCN321_CLK_SRC_PLL2] =
1795 			dcn321_clock_source_create(ctx, ctx->dc_bios,
1796 				CLOCK_SOURCE_COMBO_PHY_PLL2,
1797 				&clk_src_regs[2], false);
1798 	pool->base.clock_sources[DCN321_CLK_SRC_PLL3] =
1799 			dcn321_clock_source_create(ctx, ctx->dc_bios,
1800 				CLOCK_SOURCE_COMBO_PHY_PLL3,
1801 				&clk_src_regs[3], false);
1802 	pool->base.clock_sources[DCN321_CLK_SRC_PLL4] =
1803 			dcn321_clock_source_create(ctx, ctx->dc_bios,
1804 				CLOCK_SOURCE_COMBO_PHY_PLL4,
1805 				&clk_src_regs[4], false);
1806 
1807 	pool->base.clk_src_count = DCN321_CLK_SRC_TOTAL;
1808 
1809 	/* todo: not reuse phy_pll registers */
1810 	pool->base.dp_clock_source =
1811 			dcn321_clock_source_create(ctx, ctx->dc_bios,
1812 				CLOCK_SOURCE_ID_DP_DTO,
1813 				&clk_src_regs[0], true);
1814 
1815 	for (i = 0; i < pool->base.clk_src_count; i++) {
1816 		if (pool->base.clock_sources[i] == NULL) {
1817 			dm_error("DC: failed to create clock sources!\n");
1818 			BREAK_TO_DEBUGGER();
1819 			goto create_fail;
1820 		}
1821 	}
1822 
1823 	/* DCCG */
1824 	pool->base.dccg = dccg32_create(ctx, &dccg_regs, &dccg_shift, &dccg_mask);
1825 	if (pool->base.dccg == NULL) {
1826 		dm_error("DC: failed to create dccg!\n");
1827 		BREAK_TO_DEBUGGER();
1828 		goto create_fail;
1829 	}
1830 
1831 	/* DML */
1832 	if (!IS_FPGA_MAXIMUS_DC(dc->ctx->dce_environment))
1833 		dml_init_instance(&dc->dml, &dcn3_21_soc, &dcn3_21_ip, DML_PROJECT_DCN32);
1834 
1835 	/* IRQ Service */
1836 	init_data.ctx = dc->ctx;
1837 	pool->base.irqs = dal_irq_service_dcn32_create(&init_data);
1838 	if (!pool->base.irqs)
1839 		goto create_fail;
1840 
1841 	/* HUBBUB */
1842 	pool->base.hubbub = dcn321_hubbub_create(ctx);
1843 	if (pool->base.hubbub == NULL) {
1844 		BREAK_TO_DEBUGGER();
1845 		dm_error("DC: failed to create hubbub!\n");
1846 		goto create_fail;
1847 	}
1848 
1849 	/* HUBPs, DPPs, OPPs, TGs, ABMs */
1850 	for (i = 0, j = 0; i < pool->base.res_cap->num_timing_generator; i++) {
1851 
1852 		/* if pipe is disabled, skip instance of HW pipe,
1853 		 * i.e, skip ASIC register instance
1854 		 */
1855 		if (pipe_fuses & 1 << i)
1856 			continue;
1857 
1858 		pool->base.hubps[j] = dcn321_hubp_create(ctx, i);
1859 		if (pool->base.hubps[j] == NULL) {
1860 			BREAK_TO_DEBUGGER();
1861 			dm_error(
1862 				"DC: failed to create hubps!\n");
1863 			goto create_fail;
1864 		}
1865 
1866 		pool->base.dpps[j] = dcn321_dpp_create(ctx, i);
1867 		if (pool->base.dpps[j] == NULL) {
1868 			BREAK_TO_DEBUGGER();
1869 			dm_error(
1870 				"DC: failed to create dpps!\n");
1871 			goto create_fail;
1872 		}
1873 
1874 		pool->base.opps[j] = dcn321_opp_create(ctx, i);
1875 		if (pool->base.opps[j] == NULL) {
1876 			BREAK_TO_DEBUGGER();
1877 			dm_error(
1878 				"DC: failed to create output pixel processor!\n");
1879 			goto create_fail;
1880 		}
1881 
1882 		pool->base.timing_generators[j] = dcn321_timing_generator_create(
1883 				ctx, i);
1884 		if (pool->base.timing_generators[j] == NULL) {
1885 			BREAK_TO_DEBUGGER();
1886 			dm_error("DC: failed to create tg!\n");
1887 			goto create_fail;
1888 		}
1889 
1890 		pool->base.multiple_abms[j] = dmub_abm_create(ctx,
1891 				&abm_regs[i],
1892 				&abm_shift,
1893 				&abm_mask);
1894 		if (pool->base.multiple_abms[j] == NULL) {
1895 			dm_error("DC: failed to create abm for pipe %d!\n", i);
1896 			BREAK_TO_DEBUGGER();
1897 			goto create_fail;
1898 		}
1899 
1900 		/* index for resource pool arrays for next valid pipe */
1901 		j++;
1902 	}
1903 
1904 	/* PSR */
1905 	pool->base.psr = dmub_psr_create(ctx);
1906 	if (pool->base.psr == NULL) {
1907 		dm_error("DC: failed to create psr obj!\n");
1908 		BREAK_TO_DEBUGGER();
1909 		goto create_fail;
1910 	}
1911 
1912 	/* MPCCs */
1913 	pool->base.mpc = dcn321_mpc_create(ctx,  pool->base.res_cap->num_timing_generator, pool->base.res_cap->num_mpc_3dlut);
1914 	if (pool->base.mpc == NULL) {
1915 		BREAK_TO_DEBUGGER();
1916 		dm_error("DC: failed to create mpc!\n");
1917 		goto create_fail;
1918 	}
1919 
1920 	/* DSCs */
1921 	for (i = 0; i < pool->base.res_cap->num_dsc; i++) {
1922 		pool->base.dscs[i] = dcn321_dsc_create(ctx, i);
1923 		if (pool->base.dscs[i] == NULL) {
1924 			BREAK_TO_DEBUGGER();
1925 			dm_error("DC: failed to create display stream compressor %d!\n", i);
1926 			goto create_fail;
1927 		}
1928 	}
1929 
1930 	/* DWB */
1931 	if (!dcn321_dwbc_create(ctx, &pool->base)) {
1932 		BREAK_TO_DEBUGGER();
1933 		dm_error("DC: failed to create dwbc!\n");
1934 		goto create_fail;
1935 	}
1936 
1937 	/* MMHUBBUB */
1938 	if (!dcn321_mmhubbub_create(ctx, &pool->base)) {
1939 		BREAK_TO_DEBUGGER();
1940 		dm_error("DC: failed to create mcif_wb!\n");
1941 		goto create_fail;
1942 	}
1943 
1944 	/* AUX and I2C */
1945 	for (i = 0; i < pool->base.res_cap->num_ddc; i++) {
1946 		pool->base.engines[i] = dcn321_aux_engine_create(ctx, i);
1947 		if (pool->base.engines[i] == NULL) {
1948 			BREAK_TO_DEBUGGER();
1949 			dm_error(
1950 				"DC:failed to create aux engine!!\n");
1951 			goto create_fail;
1952 		}
1953 		pool->base.hw_i2cs[i] = dcn321_i2c_hw_create(ctx, i);
1954 		if (pool->base.hw_i2cs[i] == NULL) {
1955 			BREAK_TO_DEBUGGER();
1956 			dm_error(
1957 				"DC:failed to create hw i2c!!\n");
1958 			goto create_fail;
1959 		}
1960 		pool->base.sw_i2cs[i] = NULL;
1961 	}
1962 
1963 	/* Audio, HWSeq, Stream Encoders including HPO and virtual, MPC 3D LUTs */
1964 	if (!resource_construct(num_virtual_links, dc, &pool->base,
1965 			(!IS_FPGA_MAXIMUS_DC(dc->ctx->dce_environment) ?
1966 			&res_create_funcs : &res_create_maximus_funcs)))
1967 			goto create_fail;
1968 
1969 	/* HW Sequencer init functions and Plane caps */
1970 	dcn32_hw_sequencer_init_functions(dc);
1971 
1972 	dc->caps.max_planes =  pool->base.pipe_count;
1973 
1974 	for (i = 0; i < dc->caps.max_planes; ++i)
1975 		dc->caps.planes[i] = plane_cap;
1976 
1977 	dc->cap_funcs = cap_funcs;
1978 
1979 	if (dc->ctx->dc_bios->fw_info.oem_i2c_present) {
1980 		ddc_init_data.ctx = dc->ctx;
1981 		ddc_init_data.link = NULL;
1982 		ddc_init_data.id.id = dc->ctx->dc_bios->fw_info.oem_i2c_obj_id;
1983 		ddc_init_data.id.enum_id = 0;
1984 		ddc_init_data.id.type = OBJECT_TYPE_GENERIC;
1985 		pool->base.oem_device = dal_ddc_service_create(&ddc_init_data);
1986 	} else {
1987 		pool->base.oem_device = NULL;
1988 	}
1989 
1990 	return true;
1991 
1992 create_fail:
1993 
1994 	dcn321_resource_destruct(pool);
1995 
1996 	return false;
1997 }
1998 
1999 struct resource_pool *dcn321_create_resource_pool(
2000 		const struct dc_init_data *init_data,
2001 		struct dc *dc)
2002 {
2003 	struct dcn321_resource_pool *pool =
2004 		kzalloc(sizeof(struct dcn321_resource_pool), GFP_KERNEL);
2005 
2006 	if (!pool)
2007 		return NULL;
2008 
2009 	if (dcn321_resource_construct(init_data->num_virtual_links, dc, pool))
2010 		return &pool->base;
2011 
2012 	BREAK_TO_DEBUGGER();
2013 	kfree(pool);
2014 	return NULL;
2015 }
2016