1 // SPDX-License-Identifier: MIT
2 /*
3  * Copyright (C) 2021 Advanced Micro Devices, Inc.
4  *
5  * Authors: AMD
6  */
7 
8 #include "dcn303_init.h"
9 #include "dcn303_resource.h"
10 #include "dcn303_dccg.h"
11 #include "irq/dcn303/irq_service_dcn303.h"
12 
13 #include "dcn30/dcn30_dio_link_encoder.h"
14 #include "dcn30/dcn30_dio_stream_encoder.h"
15 #include "dcn30/dcn30_dpp.h"
16 #include "dcn30/dcn30_dwb.h"
17 #include "dcn30/dcn30_hubbub.h"
18 #include "dcn30/dcn30_hubp.h"
19 #include "dcn30/dcn30_mmhubbub.h"
20 #include "dcn30/dcn30_mpc.h"
21 #include "dcn30/dcn30_opp.h"
22 #include "dcn30/dcn30_optc.h"
23 #include "dcn30/dcn30_resource.h"
24 
25 #include "dcn20/dcn20_dsc.h"
26 #include "dcn20/dcn20_resource.h"
27 
28 #include "dml/dcn30/dcn30_fpu.h"
29 
30 #include "dcn10/dcn10_resource.h"
31 
32 #include "dc_link_ddc.h"
33 
34 #include "dce/dce_abm.h"
35 #include "dce/dce_audio.h"
36 #include "dce/dce_aux.h"
37 #include "dce/dce_clock_source.h"
38 #include "dce/dce_hwseq.h"
39 #include "dce/dce_i2c_hw.h"
40 #include "dce/dce_panel_cntl.h"
41 #include "dce/dmub_abm.h"
42 #include "dce/dmub_psr.h"
43 #include "clk_mgr.h"
44 
45 #include "hw_sequencer_private.h"
46 #include "reg_helper.h"
47 #include "resource.h"
48 #include "vm_helper.h"
49 
50 #include "sienna_cichlid_ip_offset.h"
51 #include "dcn/dcn_3_0_3_offset.h"
52 #include "dcn/dcn_3_0_3_sh_mask.h"
53 #include "dpcs/dpcs_3_0_3_offset.h"
54 #include "dpcs/dpcs_3_0_3_sh_mask.h"
55 #include "nbio/nbio_2_3_offset.h"
56 
57 #include "dml/dcn303/dcn303_fpu.h"
58 
59 #define DC_LOGGER_INIT(logger)
60 
61 
62 static const struct dc_debug_options debug_defaults_drv = {
63 		.disable_dmcu = true,
64 		.force_abm_enable = false,
65 		.timing_trace = false,
66 		.clock_trace = true,
67 		.disable_pplib_clock_request = true,
68 		.pipe_split_policy = MPC_SPLIT_DYNAMIC,
69 		.force_single_disp_pipe_split = false,
70 		.disable_dcc = DCC_ENABLE,
71 		.vsr_support = true,
72 		.performance_trace = false,
73 		.max_downscale_src_width = 7680,/*upto 8K*/
74 		.disable_pplib_wm_range = false,
75 		.scl_reset_length10 = true,
76 		.sanity_checks = false,
77 		.underflow_assert_delay_us = 0xFFFFFFFF,
78 		.dwb_fi_phase = -1, // -1 = disable,
79 		.dmub_command_table = true,
80 		.disable_idle_power_optimizations = false,
81 };
82 
83 static const struct dc_debug_options debug_defaults_diags = {
84 		.disable_dmcu = true,
85 		.force_abm_enable = false,
86 		.timing_trace = true,
87 		.clock_trace = true,
88 		.disable_dpp_power_gate = true,
89 		.disable_hubp_power_gate = true,
90 		.disable_clock_gate = true,
91 		.disable_pplib_clock_request = true,
92 		.disable_pplib_wm_range = true,
93 		.disable_stutter = false,
94 		.scl_reset_length10 = true,
95 		.dwb_fi_phase = -1, // -1 = disable
96 		.dmub_command_table = true,
97 		.enable_tri_buf = true,
98 		.disable_psr = true,
99 };
100 
101 enum dcn303_clk_src_array_id {
102 	DCN303_CLK_SRC_PLL0,
103 	DCN303_CLK_SRC_PLL1,
104 	DCN303_CLK_SRC_TOTAL
105 };
106 
107 static const struct resource_caps res_cap_dcn303 = {
108 		.num_timing_generator = 2,
109 		.num_opp = 2,
110 		.num_video_plane = 2,
111 		.num_audio = 2,
112 		.num_stream_encoder = 2,
113 		.num_dwb = 1,
114 		.num_ddc = 2,
115 		.num_vmid = 16,
116 		.num_mpc_3dlut = 1,
117 		.num_dsc = 2,
118 };
119 
120 static const struct dc_plane_cap plane_cap = {
121 		.type = DC_PLANE_TYPE_DCN_UNIVERSAL,
122 		.blends_with_above = true,
123 		.blends_with_below = true,
124 		.per_pixel_alpha = true,
125 		.pixel_format_support = {
126 				.argb8888 = true,
127 				.nv12 = true,
128 				.fp16 = true,
129 				.p010 = true,
130 				.ayuv = false,
131 		},
132 		.max_upscale_factor = {
133 				.argb8888 = 16000,
134 				.nv12 = 16000,
135 				.fp16 = 16000
136 		},
137 		.max_downscale_factor = {
138 				.argb8888 = 600,
139 				.nv12 = 600,
140 				.fp16 = 600
141 		},
142 		16,
143 		16
144 };
145 
146 /* NBIO */
147 #define NBIO_BASE_INNER(seg) \
148 		NBIO_BASE__INST0_SEG ## seg
149 
150 #define NBIO_BASE(seg) \
151 		NBIO_BASE_INNER(seg)
152 
153 #define NBIO_SR(reg_name)\
154 		.reg_name = NBIO_BASE(mm ## reg_name ## _BASE_IDX) + \
155 		mm ## reg_name
156 
157 /* DCN */
158 #undef BASE_INNER
159 #define BASE_INNER(seg) DCN_BASE__INST0_SEG ## seg
160 
161 #define BASE(seg) BASE_INNER(seg)
162 
163 #define SR(reg_name)\
164 		.reg_name = BASE(mm ## reg_name ## _BASE_IDX) + mm ## reg_name
165 
166 #define SF(reg_name, field_name, post_fix)\
167 		.field_name = reg_name ## __ ## field_name ## post_fix
168 
169 #define SRI(reg_name, block, id)\
170 		.reg_name = BASE(mm ## block ## id ## _ ## reg_name ## _BASE_IDX) + mm ## block ## id ## _ ## reg_name
171 
172 #define SRI2(reg_name, block, id)\
173 		.reg_name = BASE(mm ## reg_name ## _BASE_IDX) + mm ## reg_name
174 
175 #define SRII(reg_name, block, id)\
176 		.reg_name[id] = BASE(mm ## block ## id ## _ ## reg_name ## _BASE_IDX) + \
177 		mm ## block ## id ## _ ## reg_name
178 
179 #define DCCG_SRII(reg_name, block, id)\
180 		.block ## _ ## reg_name[id] = BASE(mm ## block ## id ## _ ## reg_name ## _BASE_IDX) + \
181 		mm ## block ## id ## _ ## reg_name
182 
183 #define VUPDATE_SRII(reg_name, block, id)\
184 		.reg_name[id] = BASE(mm ## reg_name ## _ ## block ## id ## _BASE_IDX) + \
185 		mm ## reg_name ## _ ## block ## id
186 
187 #define SRII_DWB(reg_name, temp_name, block, id)\
188 		.reg_name[id] = BASE(mm ## block ## id ## _ ## temp_name ## _BASE_IDX) + \
189 		mm ## block ## id ## _ ## temp_name
190 
191 #define SRII_MPC_RMU(reg_name, block, id)\
192 		.RMU##_##reg_name[id] = BASE(mm ## block ## id ## _ ## reg_name ## _BASE_IDX) + \
193 		mm ## block ## id ## _ ## reg_name
194 
195 static const struct dcn_hubbub_registers hubbub_reg = {
196 		HUBBUB_REG_LIST_DCN30(0)
197 };
198 
199 static const struct dcn_hubbub_shift hubbub_shift = {
200 		HUBBUB_MASK_SH_LIST_DCN30(__SHIFT)
201 };
202 
203 static const struct dcn_hubbub_mask hubbub_mask = {
204 		HUBBUB_MASK_SH_LIST_DCN30(_MASK)
205 };
206 
207 #define vmid_regs(id)\
208 		[id] = { DCN20_VMID_REG_LIST(id) }
209 
210 static const struct dcn_vmid_registers vmid_regs[] = {
211 		vmid_regs(0),
212 		vmid_regs(1),
213 		vmid_regs(2),
214 		vmid_regs(3),
215 		vmid_regs(4),
216 		vmid_regs(5),
217 		vmid_regs(6),
218 		vmid_regs(7),
219 		vmid_regs(8),
220 		vmid_regs(9),
221 		vmid_regs(10),
222 		vmid_regs(11),
223 		vmid_regs(12),
224 		vmid_regs(13),
225 		vmid_regs(14),
226 		vmid_regs(15)
227 };
228 
229 static const struct dcn20_vmid_shift vmid_shifts = {
230 		DCN20_VMID_MASK_SH_LIST(__SHIFT)
231 };
232 
233 static const struct dcn20_vmid_mask vmid_masks = {
234 		DCN20_VMID_MASK_SH_LIST(_MASK)
235 };
236 
237 static struct hubbub *dcn303_hubbub_create(struct dc_context *ctx)
238 {
239 	int i;
240 
241 	struct dcn20_hubbub *hubbub3 = kzalloc(sizeof(struct dcn20_hubbub), GFP_KERNEL);
242 
243 	if (!hubbub3)
244 		return NULL;
245 
246 	hubbub3_construct(hubbub3, ctx, &hubbub_reg, &hubbub_shift, &hubbub_mask);
247 
248 	for (i = 0; i < res_cap_dcn303.num_vmid; i++) {
249 		struct dcn20_vmid *vmid = &hubbub3->vmid[i];
250 
251 		vmid->ctx = ctx;
252 
253 		vmid->regs = &vmid_regs[i];
254 		vmid->shifts = &vmid_shifts;
255 		vmid->masks = &vmid_masks;
256 	}
257 
258 	return &hubbub3->base;
259 }
260 
261 #define vpg_regs(id)\
262 		[id] = { VPG_DCN3_REG_LIST(id) }
263 
264 static const struct dcn30_vpg_registers vpg_regs[] = {
265 		vpg_regs(0),
266 		vpg_regs(1),
267 		vpg_regs(2)
268 };
269 
270 static const struct dcn30_vpg_shift vpg_shift = {
271 		DCN3_VPG_MASK_SH_LIST(__SHIFT)
272 };
273 
274 static const struct dcn30_vpg_mask vpg_mask = {
275 		DCN3_VPG_MASK_SH_LIST(_MASK)
276 };
277 
278 static struct vpg *dcn303_vpg_create(struct dc_context *ctx, uint32_t inst)
279 {
280 	struct dcn30_vpg *vpg3 = kzalloc(sizeof(struct dcn30_vpg), GFP_KERNEL);
281 
282 	if (!vpg3)
283 		return NULL;
284 
285 	vpg3_construct(vpg3, ctx, inst, &vpg_regs[inst], &vpg_shift, &vpg_mask);
286 
287 	return &vpg3->base;
288 }
289 
290 #define afmt_regs(id)\
291 		[id] = { AFMT_DCN3_REG_LIST(id) }
292 
293 static const struct dcn30_afmt_registers afmt_regs[] = {
294 		afmt_regs(0),
295 		afmt_regs(1),
296 		afmt_regs(2)
297 };
298 
299 static const struct dcn30_afmt_shift afmt_shift = {
300 		DCN3_AFMT_MASK_SH_LIST(__SHIFT)
301 };
302 
303 static const struct dcn30_afmt_mask afmt_mask = {
304 		DCN3_AFMT_MASK_SH_LIST(_MASK)
305 };
306 
307 static struct afmt *dcn303_afmt_create(struct dc_context *ctx, uint32_t inst)
308 {
309 	struct dcn30_afmt *afmt3 = kzalloc(sizeof(struct dcn30_afmt), GFP_KERNEL);
310 
311 	if (!afmt3)
312 		return NULL;
313 
314 	afmt3_construct(afmt3, ctx, inst, &afmt_regs[inst], &afmt_shift, &afmt_mask);
315 
316 	return &afmt3->base;
317 }
318 
319 #define audio_regs(id)\
320 		[id] = { AUD_COMMON_REG_LIST(id) }
321 
322 static const struct dce_audio_registers audio_regs[] = {
323 		audio_regs(0),
324 		audio_regs(1),
325 		audio_regs(2),
326 		audio_regs(3),
327 		audio_regs(4),
328 		audio_regs(5),
329 		audio_regs(6)
330 };
331 
332 #define DCE120_AUD_COMMON_MASK_SH_LIST(mask_sh)\
333 		SF(AZF0ENDPOINT0_AZALIA_F0_CODEC_ENDPOINT_INDEX, AZALIA_ENDPOINT_REG_INDEX, mask_sh),\
334 		SF(AZF0ENDPOINT0_AZALIA_F0_CODEC_ENDPOINT_DATA, AZALIA_ENDPOINT_REG_DATA, mask_sh),\
335 		AUD_COMMON_MASK_SH_LIST_BASE(mask_sh)
336 
337 static const struct dce_audio_shift audio_shift = {
338 		DCE120_AUD_COMMON_MASK_SH_LIST(__SHIFT)
339 };
340 
341 static const struct dce_audio_mask audio_mask = {
342 		DCE120_AUD_COMMON_MASK_SH_LIST(_MASK)
343 };
344 
345 static struct audio *dcn303_create_audio(struct dc_context *ctx, unsigned int inst)
346 {
347 	return dce_audio_create(ctx, inst, &audio_regs[inst], &audio_shift, &audio_mask);
348 }
349 
350 #define stream_enc_regs(id)\
351 		[id] = { SE_DCN3_REG_LIST(id) }
352 
353 static const struct dcn10_stream_enc_registers stream_enc_regs[] = {
354 		stream_enc_regs(0),
355 		stream_enc_regs(1)
356 };
357 
358 static const struct dcn10_stream_encoder_shift se_shift = {
359 		SE_COMMON_MASK_SH_LIST_DCN30(__SHIFT)
360 };
361 
362 static const struct dcn10_stream_encoder_mask se_mask = {
363 		SE_COMMON_MASK_SH_LIST_DCN30(_MASK)
364 };
365 
366 static struct stream_encoder *dcn303_stream_encoder_create(enum engine_id eng_id, struct dc_context *ctx)
367 {
368 	struct dcn10_stream_encoder *enc1;
369 	struct vpg *vpg;
370 	struct afmt *afmt;
371 	int vpg_inst;
372 	int afmt_inst;
373 
374 	/* Mapping of VPG, AFMT, DME register blocks to DIO block instance */
375 	if (eng_id <= ENGINE_ID_DIGE) {
376 		vpg_inst = eng_id;
377 		afmt_inst = eng_id;
378 	} else
379 		return NULL;
380 
381 	enc1 = kzalloc(sizeof(struct dcn10_stream_encoder), GFP_KERNEL);
382 	vpg = dcn303_vpg_create(ctx, vpg_inst);
383 	afmt = dcn303_afmt_create(ctx, afmt_inst);
384 
385 	if (!enc1 || !vpg || !afmt) {
386 		kfree(enc1);
387 		kfree(vpg);
388 		kfree(afmt);
389 		return NULL;
390 	}
391 
392 	dcn30_dio_stream_encoder_construct(enc1, ctx, ctx->dc_bios, eng_id, vpg, afmt, &stream_enc_regs[eng_id],
393 			&se_shift, &se_mask);
394 
395 	return &enc1->base;
396 }
397 
398 #define clk_src_regs(index, pllid)\
399 		[index] = { CS_COMMON_REG_LIST_DCN3_03(index, pllid) }
400 
401 static const struct dce110_clk_src_regs clk_src_regs[] = {
402 		clk_src_regs(0, A),
403 		clk_src_regs(1, B)
404 };
405 
406 static const struct dce110_clk_src_shift cs_shift = {
407 		CS_COMMON_MASK_SH_LIST_DCN2_0(__SHIFT)
408 };
409 
410 static const struct dce110_clk_src_mask cs_mask = {
411 		CS_COMMON_MASK_SH_LIST_DCN2_0(_MASK)
412 };
413 
414 static struct clock_source *dcn303_clock_source_create(struct dc_context *ctx, struct dc_bios *bios,
415 		enum clock_source_id id, const struct dce110_clk_src_regs *regs, bool dp_clk_src)
416 {
417 	struct dce110_clk_src *clk_src = kzalloc(sizeof(struct dce110_clk_src), GFP_KERNEL);
418 
419 	if (!clk_src)
420 		return NULL;
421 
422 	if (dcn3_clk_src_construct(clk_src, ctx, bios, id, regs, &cs_shift, &cs_mask)) {
423 		clk_src->base.dp_clk_src = dp_clk_src;
424 		return &clk_src->base;
425 	}
426 
427 	BREAK_TO_DEBUGGER();
428 	return NULL;
429 }
430 
431 static const struct dce_hwseq_registers hwseq_reg = {
432 		HWSEQ_DCN303_REG_LIST()
433 };
434 
435 static const struct dce_hwseq_shift hwseq_shift = {
436 		HWSEQ_DCN303_MASK_SH_LIST(__SHIFT)
437 };
438 
439 static const struct dce_hwseq_mask hwseq_mask = {
440 		HWSEQ_DCN303_MASK_SH_LIST(_MASK)
441 };
442 
443 static struct dce_hwseq *dcn303_hwseq_create(struct dc_context *ctx)
444 {
445 	struct dce_hwseq *hws = kzalloc(sizeof(struct dce_hwseq), GFP_KERNEL);
446 
447 	if (hws) {
448 		hws->ctx = ctx;
449 		hws->regs = &hwseq_reg;
450 		hws->shifts = &hwseq_shift;
451 		hws->masks = &hwseq_mask;
452 	}
453 	return hws;
454 }
455 
456 #define hubp_regs(id)\
457 		[id] = { HUBP_REG_LIST_DCN30(id) }
458 
459 static const struct dcn_hubp2_registers hubp_regs[] = {
460 		hubp_regs(0),
461 		hubp_regs(1)
462 };
463 
464 static const struct dcn_hubp2_shift hubp_shift = {
465 		HUBP_MASK_SH_LIST_DCN30(__SHIFT)
466 };
467 
468 static const struct dcn_hubp2_mask hubp_mask = {
469 		HUBP_MASK_SH_LIST_DCN30(_MASK)
470 };
471 
472 static struct hubp *dcn303_hubp_create(struct dc_context *ctx, uint32_t inst)
473 {
474 	struct dcn20_hubp *hubp2 = kzalloc(sizeof(struct dcn20_hubp), GFP_KERNEL);
475 
476 	if (!hubp2)
477 		return NULL;
478 
479 	if (hubp3_construct(hubp2, ctx, inst, &hubp_regs[inst], &hubp_shift, &hubp_mask))
480 		return &hubp2->base;
481 
482 	BREAK_TO_DEBUGGER();
483 	kfree(hubp2);
484 	return NULL;
485 }
486 
487 #define dpp_regs(id)\
488 		[id] = { DPP_REG_LIST_DCN30(id) }
489 
490 static const struct dcn3_dpp_registers dpp_regs[] = {
491 		dpp_regs(0),
492 		dpp_regs(1)
493 };
494 
495 static const struct dcn3_dpp_shift tf_shift = {
496 		DPP_REG_LIST_SH_MASK_DCN30(__SHIFT)
497 };
498 
499 static const struct dcn3_dpp_mask tf_mask = {
500 		DPP_REG_LIST_SH_MASK_DCN30(_MASK)
501 };
502 
503 static struct dpp *dcn303_dpp_create(struct dc_context *ctx, uint32_t inst)
504 {
505 	struct dcn3_dpp *dpp = kzalloc(sizeof(struct dcn3_dpp), GFP_KERNEL);
506 
507 	if (!dpp)
508 		return NULL;
509 
510 	if (dpp3_construct(dpp, ctx, inst, &dpp_regs[inst], &tf_shift, &tf_mask))
511 		return &dpp->base;
512 
513 	BREAK_TO_DEBUGGER();
514 	kfree(dpp);
515 	return NULL;
516 }
517 
518 #define opp_regs(id)\
519 		[id] = { OPP_REG_LIST_DCN30(id) }
520 
521 static const struct dcn20_opp_registers opp_regs[] = {
522 		opp_regs(0),
523 		opp_regs(1)
524 };
525 
526 static const struct dcn20_opp_shift opp_shift = {
527 		OPP_MASK_SH_LIST_DCN20(__SHIFT)
528 };
529 
530 static const struct dcn20_opp_mask opp_mask = {
531 		OPP_MASK_SH_LIST_DCN20(_MASK)
532 };
533 
534 static struct output_pixel_processor *dcn303_opp_create(struct dc_context *ctx, uint32_t inst)
535 {
536 	struct dcn20_opp *opp = kzalloc(sizeof(struct dcn20_opp), GFP_KERNEL);
537 
538 	if (!opp) {
539 		BREAK_TO_DEBUGGER();
540 		return NULL;
541 	}
542 
543 	dcn20_opp_construct(opp, ctx, inst, &opp_regs[inst], &opp_shift, &opp_mask);
544 	return &opp->base;
545 }
546 
547 #define optc_regs(id)\
548 		[id] = { OPTC_COMMON_REG_LIST_DCN3_0(id) }
549 
550 static const struct dcn_optc_registers optc_regs[] = {
551 		optc_regs(0),
552 		optc_regs(1)
553 };
554 
555 static const struct dcn_optc_shift optc_shift = {
556 		OPTC_COMMON_MASK_SH_LIST_DCN30(__SHIFT)
557 };
558 
559 static const struct dcn_optc_mask optc_mask = {
560 		OPTC_COMMON_MASK_SH_LIST_DCN30(_MASK)
561 };
562 
563 static struct timing_generator *dcn303_timing_generator_create(struct dc_context *ctx, uint32_t instance)
564 {
565 	struct optc *tgn10 = kzalloc(sizeof(struct optc), GFP_KERNEL);
566 
567 	if (!tgn10)
568 		return NULL;
569 
570 	tgn10->base.inst = instance;
571 	tgn10->base.ctx = ctx;
572 
573 	tgn10->tg_regs = &optc_regs[instance];
574 	tgn10->tg_shift = &optc_shift;
575 	tgn10->tg_mask = &optc_mask;
576 
577 	dcn30_timing_generator_init(tgn10);
578 
579 	return &tgn10->base;
580 }
581 
582 static const struct dcn30_mpc_registers mpc_regs = {
583 		MPC_REG_LIST_DCN3_0(0),
584 		MPC_REG_LIST_DCN3_0(1),
585 		MPC_OUT_MUX_REG_LIST_DCN3_0(0),
586 		MPC_OUT_MUX_REG_LIST_DCN3_0(1),
587 		MPC_RMU_GLOBAL_REG_LIST_DCN3AG,
588 		MPC_RMU_REG_LIST_DCN3AG(0),
589 		MPC_DWB_MUX_REG_LIST_DCN3_0(0),
590 };
591 
592 static const struct dcn30_mpc_shift mpc_shift = {
593 		MPC_COMMON_MASK_SH_LIST_DCN303(__SHIFT)
594 };
595 
596 static const struct dcn30_mpc_mask mpc_mask = {
597 		MPC_COMMON_MASK_SH_LIST_DCN303(_MASK)
598 };
599 
600 static struct mpc *dcn303_mpc_create(struct dc_context *ctx, int num_mpcc, int num_rmu)
601 {
602 	struct dcn30_mpc *mpc30 = kzalloc(sizeof(struct dcn30_mpc), GFP_KERNEL);
603 
604 	if (!mpc30)
605 		return NULL;
606 
607 	dcn30_mpc_construct(mpc30, ctx, &mpc_regs, &mpc_shift, &mpc_mask, num_mpcc, num_rmu);
608 
609 	return &mpc30->base;
610 }
611 
612 #define dsc_regsDCN20(id)\
613 [id] = { DSC_REG_LIST_DCN20(id) }
614 
615 static const struct dcn20_dsc_registers dsc_regs[] = {
616 		dsc_regsDCN20(0),
617 		dsc_regsDCN20(1)
618 };
619 
620 static const struct dcn20_dsc_shift dsc_shift = {
621 		DSC_REG_LIST_SH_MASK_DCN20(__SHIFT)
622 };
623 
624 static const struct dcn20_dsc_mask dsc_mask = {
625 		DSC_REG_LIST_SH_MASK_DCN20(_MASK)
626 };
627 
628 static struct display_stream_compressor *dcn303_dsc_create(struct dc_context *ctx, uint32_t inst)
629 {
630 	struct dcn20_dsc *dsc = kzalloc(sizeof(struct dcn20_dsc), GFP_KERNEL);
631 
632 	if (!dsc) {
633 		BREAK_TO_DEBUGGER();
634 		return NULL;
635 	}
636 
637 	dsc2_construct(dsc, ctx, inst, &dsc_regs[inst], &dsc_shift, &dsc_mask);
638 	return &dsc->base;
639 }
640 
641 #define dwbc_regs_dcn3(id)\
642 [id] = { DWBC_COMMON_REG_LIST_DCN30(id) }
643 
644 static const struct dcn30_dwbc_registers dwbc30_regs[] = {
645 		dwbc_regs_dcn3(0)
646 };
647 
648 static const struct dcn30_dwbc_shift dwbc30_shift = {
649 		DWBC_COMMON_MASK_SH_LIST_DCN30(__SHIFT)
650 };
651 
652 static const struct dcn30_dwbc_mask dwbc30_mask = {
653 		DWBC_COMMON_MASK_SH_LIST_DCN30(_MASK)
654 };
655 
656 static bool dcn303_dwbc_create(struct dc_context *ctx, struct resource_pool *pool)
657 {
658 	int i;
659 	uint32_t pipe_count = pool->res_cap->num_dwb;
660 
661 	for (i = 0; i < pipe_count; i++) {
662 		struct dcn30_dwbc *dwbc30 = kzalloc(sizeof(struct dcn30_dwbc), GFP_KERNEL);
663 
664 		if (!dwbc30) {
665 			dm_error("DC: failed to create dwbc30!\n");
666 			return false;
667 		}
668 
669 		dcn30_dwbc_construct(dwbc30, ctx, &dwbc30_regs[i], &dwbc30_shift, &dwbc30_mask, i);
670 
671 		pool->dwbc[i] = &dwbc30->base;
672 	}
673 	return true;
674 }
675 
676 #define mcif_wb_regs_dcn3(id)\
677 [id] = { MCIF_WB_COMMON_REG_LIST_DCN30(id) }
678 
679 static const struct dcn30_mmhubbub_registers mcif_wb30_regs[] = {
680 		mcif_wb_regs_dcn3(0)
681 };
682 
683 static const struct dcn30_mmhubbub_shift mcif_wb30_shift = {
684 		MCIF_WB_COMMON_MASK_SH_LIST_DCN30(__SHIFT)
685 };
686 
687 static const struct dcn30_mmhubbub_mask mcif_wb30_mask = {
688 		MCIF_WB_COMMON_MASK_SH_LIST_DCN30(_MASK)
689 };
690 
691 static bool dcn303_mmhubbub_create(struct dc_context *ctx, struct resource_pool *pool)
692 {
693 	int i;
694 	uint32_t pipe_count = pool->res_cap->num_dwb;
695 
696 	for (i = 0; i < pipe_count; i++) {
697 		struct dcn30_mmhubbub *mcif_wb30 = kzalloc(sizeof(struct dcn30_mmhubbub), GFP_KERNEL);
698 
699 		if (!mcif_wb30) {
700 			dm_error("DC: failed to create mcif_wb30!\n");
701 			return false;
702 		}
703 
704 		dcn30_mmhubbub_construct(mcif_wb30, ctx, &mcif_wb30_regs[i], &mcif_wb30_shift, &mcif_wb30_mask, i);
705 
706 		pool->mcif_wb[i] = &mcif_wb30->base;
707 	}
708 	return true;
709 }
710 
711 #define aux_engine_regs(id)\
712 [id] = {\
713 		AUX_COMMON_REG_LIST0(id), \
714 		.AUXN_IMPCAL = 0, \
715 		.AUXP_IMPCAL = 0, \
716 		.AUX_RESET_MASK = DP_AUX0_AUX_CONTROL__AUX_RESET_MASK, \
717 }
718 
719 static const struct dce110_aux_registers aux_engine_regs[] = {
720 		aux_engine_regs(0),
721 		aux_engine_regs(1)
722 };
723 
724 static const struct dce110_aux_registers_shift aux_shift = {
725 		DCN_AUX_MASK_SH_LIST(__SHIFT)
726 };
727 
728 static const struct dce110_aux_registers_mask aux_mask = {
729 		DCN_AUX_MASK_SH_LIST(_MASK)
730 };
731 
732 static struct dce_aux *dcn303_aux_engine_create(struct dc_context *ctx, uint32_t inst)
733 {
734 	struct aux_engine_dce110 *aux_engine = kzalloc(sizeof(struct aux_engine_dce110), GFP_KERNEL);
735 
736 	if (!aux_engine)
737 		return NULL;
738 
739 	dce110_aux_engine_construct(aux_engine, ctx, inst, SW_AUX_TIMEOUT_PERIOD_MULTIPLIER * AUX_TIMEOUT_PERIOD,
740 			&aux_engine_regs[inst], &aux_mask, &aux_shift, ctx->dc->caps.extended_aux_timeout_support);
741 
742 	return &aux_engine->base;
743 }
744 
745 #define i2c_inst_regs(id) { I2C_HW_ENGINE_COMMON_REG_LIST(id) }
746 
747 static const struct dce_i2c_registers i2c_hw_regs[] = {
748 		i2c_inst_regs(1),
749 		i2c_inst_regs(2)
750 };
751 
752 static const struct dce_i2c_shift i2c_shifts = {
753 		I2C_COMMON_MASK_SH_LIST_DCN2(__SHIFT)
754 };
755 
756 static const struct dce_i2c_mask i2c_masks = {
757 		I2C_COMMON_MASK_SH_LIST_DCN2(_MASK)
758 };
759 
760 static struct dce_i2c_hw *dcn303_i2c_hw_create(struct dc_context *ctx, uint32_t inst)
761 {
762 	struct dce_i2c_hw *dce_i2c_hw = kzalloc(sizeof(struct dce_i2c_hw), GFP_KERNEL);
763 
764 	if (!dce_i2c_hw)
765 		return NULL;
766 
767 	dcn2_i2c_hw_construct(dce_i2c_hw, ctx, inst, &i2c_hw_regs[inst], &i2c_shifts, &i2c_masks);
768 
769 	return dce_i2c_hw;
770 }
771 
772 static const struct encoder_feature_support link_enc_feature = {
773 		.max_hdmi_deep_color = COLOR_DEPTH_121212,
774 		.max_hdmi_pixel_clock = 600000,
775 		.hdmi_ycbcr420_supported = true,
776 		.dp_ycbcr420_supported = true,
777 		.fec_supported = true,
778 		.flags.bits.IS_HBR2_CAPABLE = true,
779 		.flags.bits.IS_HBR3_CAPABLE = true,
780 		.flags.bits.IS_TPS3_CAPABLE = true,
781 		.flags.bits.IS_TPS4_CAPABLE = true
782 };
783 
784 #define link_regs(id, phyid)\
785 		[id] = {\
786 				LE_DCN3_REG_LIST(id), \
787 				UNIPHY_DCN2_REG_LIST(phyid), \
788 				SRI(DP_DPHY_INTERNAL_CTRL, DP, id) \
789 		}
790 
791 static const struct dcn10_link_enc_registers link_enc_regs[] = {
792 		link_regs(0, A),
793 		link_regs(1, B)
794 };
795 
796 static const struct dcn10_link_enc_shift le_shift = {
797 		LINK_ENCODER_MASK_SH_LIST_DCN30(__SHIFT),
798 		DPCS_DCN2_MASK_SH_LIST(__SHIFT)
799 };
800 
801 static const struct dcn10_link_enc_mask le_mask = {
802 		LINK_ENCODER_MASK_SH_LIST_DCN30(_MASK),
803 		DPCS_DCN2_MASK_SH_LIST(_MASK)
804 };
805 
806 #define aux_regs(id)\
807 		[id] = { DCN2_AUX_REG_LIST(id) }
808 
809 static const struct dcn10_link_enc_aux_registers link_enc_aux_regs[] = {
810 		aux_regs(0),
811 		aux_regs(1)
812 };
813 
814 #define hpd_regs(id)\
815 		[id] = { HPD_REG_LIST(id) }
816 
817 static const struct dcn10_link_enc_hpd_registers link_enc_hpd_regs[] = {
818 		hpd_regs(0),
819 		hpd_regs(1)
820 };
821 
822 static struct link_encoder *dcn303_link_encoder_create(const struct encoder_init_data *enc_init_data)
823 {
824 	struct dcn20_link_encoder *enc20 = kzalloc(sizeof(struct dcn20_link_encoder), GFP_KERNEL);
825 
826 	if (!enc20)
827 		return NULL;
828 
829 	dcn30_link_encoder_construct(enc20, enc_init_data, &link_enc_feature,
830 			&link_enc_regs[enc_init_data->transmitter], &link_enc_aux_regs[enc_init_data->channel - 1],
831 			&link_enc_hpd_regs[enc_init_data->hpd_source], &le_shift, &le_mask);
832 
833 	return &enc20->enc10.base;
834 }
835 
836 static const struct dce_panel_cntl_registers panel_cntl_regs[] = {
837 		{ DCN_PANEL_CNTL_REG_LIST() }
838 };
839 
840 static const struct dce_panel_cntl_shift panel_cntl_shift = {
841 		DCE_PANEL_CNTL_MASK_SH_LIST(__SHIFT)
842 };
843 
844 static const struct dce_panel_cntl_mask panel_cntl_mask = {
845 		DCE_PANEL_CNTL_MASK_SH_LIST(_MASK)
846 };
847 
848 static struct panel_cntl *dcn303_panel_cntl_create(const struct panel_cntl_init_data *init_data)
849 {
850 	struct dce_panel_cntl *panel_cntl = kzalloc(sizeof(struct dce_panel_cntl), GFP_KERNEL);
851 
852 	if (!panel_cntl)
853 		return NULL;
854 
855 	dce_panel_cntl_construct(panel_cntl, init_data, &panel_cntl_regs[init_data->inst],
856 			&panel_cntl_shift, &panel_cntl_mask);
857 
858 	return &panel_cntl->base;
859 }
860 
861 static void read_dce_straps(struct dc_context *ctx, struct resource_straps *straps)
862 {
863 	generic_reg_get(ctx, mmDC_PINSTRAPS + BASE(mmDC_PINSTRAPS_BASE_IDX),
864 			FN(DC_PINSTRAPS, DC_PINSTRAPS_AUDIO), &straps->dc_pinstraps_audio);
865 }
866 
867 static const struct resource_create_funcs res_create_funcs = {
868 		.read_dce_straps = read_dce_straps,
869 		.create_audio = dcn303_create_audio,
870 		.create_stream_encoder = dcn303_stream_encoder_create,
871 		.create_hwseq = dcn303_hwseq_create,
872 };
873 
874 static const struct resource_create_funcs res_create_maximus_funcs = {
875 		.read_dce_straps = NULL,
876 		.create_audio = NULL,
877 		.create_stream_encoder = NULL,
878 		.create_hwseq = dcn303_hwseq_create,
879 };
880 
881 static bool is_soc_bounding_box_valid(struct dc *dc)
882 {
883 	uint32_t hw_internal_rev = dc->ctx->asic_id.hw_internal_rev;
884 
885 	if (ASICREV_IS_BEIGE_GOBY_P(hw_internal_rev))
886 		return true;
887 
888 	return false;
889 }
890 
891 static bool init_soc_bounding_box(struct dc *dc,  struct resource_pool *pool)
892 {
893 	struct _vcs_dpi_soc_bounding_box_st *loaded_bb = &dcn3_03_soc;
894 	struct _vcs_dpi_ip_params_st *loaded_ip = &dcn3_03_ip;
895 
896 	DC_LOGGER_INIT(dc->ctx->logger);
897 
898 	if (!is_soc_bounding_box_valid(dc)) {
899 		DC_LOG_ERROR("%s: not valid soc bounding box/n", __func__);
900 		return false;
901 	}
902 
903 	loaded_ip->max_num_otg = pool->pipe_count;
904 	loaded_ip->max_num_dpp = pool->pipe_count;
905 	loaded_ip->clamp_min_dcfclk = dc->config.clamp_min_dcfclk;
906 	DC_FP_START();
907 	dcn20_patch_bounding_box(dc, loaded_bb);
908 	DC_FP_END();
909 
910 	if (dc->ctx->dc_bios->funcs->get_soc_bb_info) {
911 		struct bp_soc_bb_info bb_info = { 0 };
912 
913 		if (dc->ctx->dc_bios->funcs->get_soc_bb_info(
914 			    dc->ctx->dc_bios, &bb_info) == BP_RESULT_OK) {
915 					DC_FP_START();
916 					dcn303_fpu_init_soc_bounding_box(bb_info);
917 					DC_FP_END();
918 		}
919 	}
920 
921 	return true;
922 }
923 
924 static void dcn303_resource_destruct(struct resource_pool *pool)
925 {
926 	unsigned int i;
927 
928 	for (i = 0; i < pool->stream_enc_count; i++) {
929 		if (pool->stream_enc[i] != NULL) {
930 			if (pool->stream_enc[i]->vpg != NULL) {
931 				kfree(DCN30_VPG_FROM_VPG(pool->stream_enc[i]->vpg));
932 				pool->stream_enc[i]->vpg = NULL;
933 			}
934 			if (pool->stream_enc[i]->afmt != NULL) {
935 				kfree(DCN30_AFMT_FROM_AFMT(pool->stream_enc[i]->afmt));
936 				pool->stream_enc[i]->afmt = NULL;
937 			}
938 			kfree(DCN10STRENC_FROM_STRENC(pool->stream_enc[i]));
939 			pool->stream_enc[i] = NULL;
940 		}
941 	}
942 
943 	for (i = 0; i < pool->res_cap->num_dsc; i++) {
944 		if (pool->dscs[i] != NULL)
945 			dcn20_dsc_destroy(&pool->dscs[i]);
946 	}
947 
948 	if (pool->mpc != NULL) {
949 		kfree(TO_DCN20_MPC(pool->mpc));
950 		pool->mpc = NULL;
951 	}
952 
953 	if (pool->hubbub != NULL) {
954 		kfree(pool->hubbub);
955 		pool->hubbub = NULL;
956 	}
957 
958 	for (i = 0; i < pool->pipe_count; i++) {
959 		if (pool->dpps[i] != NULL) {
960 			kfree(TO_DCN20_DPP(pool->dpps[i]));
961 			pool->dpps[i] = NULL;
962 		}
963 
964 		if (pool->hubps[i] != NULL) {
965 			kfree(TO_DCN20_HUBP(pool->hubps[i]));
966 			pool->hubps[i] = NULL;
967 		}
968 
969 		if (pool->irqs != NULL)
970 			dal_irq_service_destroy(&pool->irqs);
971 	}
972 
973 	for (i = 0; i < pool->res_cap->num_ddc; i++) {
974 		if (pool->engines[i] != NULL)
975 			dce110_engine_destroy(&pool->engines[i]);
976 		if (pool->hw_i2cs[i] != NULL) {
977 			kfree(pool->hw_i2cs[i]);
978 			pool->hw_i2cs[i] = NULL;
979 		}
980 		if (pool->sw_i2cs[i] != NULL) {
981 			kfree(pool->sw_i2cs[i]);
982 			pool->sw_i2cs[i] = NULL;
983 		}
984 	}
985 
986 	for (i = 0; i < pool->res_cap->num_opp; i++) {
987 		if (pool->opps[i] != NULL)
988 			pool->opps[i]->funcs->opp_destroy(&pool->opps[i]);
989 	}
990 
991 	for (i = 0; i < pool->res_cap->num_timing_generator; i++) {
992 		if (pool->timing_generators[i] != NULL)	{
993 			kfree(DCN10TG_FROM_TG(pool->timing_generators[i]));
994 			pool->timing_generators[i] = NULL;
995 		}
996 	}
997 
998 	for (i = 0; i < pool->res_cap->num_dwb; i++) {
999 		if (pool->dwbc[i] != NULL) {
1000 			kfree(TO_DCN30_DWBC(pool->dwbc[i]));
1001 			pool->dwbc[i] = NULL;
1002 		}
1003 		if (pool->mcif_wb[i] != NULL) {
1004 			kfree(TO_DCN30_MMHUBBUB(pool->mcif_wb[i]));
1005 			pool->mcif_wb[i] = NULL;
1006 		}
1007 	}
1008 
1009 	for (i = 0; i < pool->audio_count; i++) {
1010 		if (pool->audios[i])
1011 			dce_aud_destroy(&pool->audios[i]);
1012 	}
1013 
1014 	for (i = 0; i < pool->clk_src_count; i++) {
1015 		if (pool->clock_sources[i] != NULL)
1016 			dcn20_clock_source_destroy(&pool->clock_sources[i]);
1017 	}
1018 
1019 	if (pool->dp_clock_source != NULL)
1020 		dcn20_clock_source_destroy(&pool->dp_clock_source);
1021 
1022 	for (i = 0; i < pool->res_cap->num_mpc_3dlut; i++) {
1023 		if (pool->mpc_lut[i] != NULL) {
1024 			dc_3dlut_func_release(pool->mpc_lut[i]);
1025 			pool->mpc_lut[i] = NULL;
1026 		}
1027 		if (pool->mpc_shaper[i] != NULL) {
1028 			dc_transfer_func_release(pool->mpc_shaper[i]);
1029 			pool->mpc_shaper[i] = NULL;
1030 		}
1031 	}
1032 
1033 	for (i = 0; i < pool->pipe_count; i++) {
1034 		if (pool->multiple_abms[i] != NULL)
1035 			dce_abm_destroy(&pool->multiple_abms[i]);
1036 	}
1037 
1038 	if (pool->psr != NULL)
1039 		dmub_psr_destroy(&pool->psr);
1040 
1041 	if (pool->dccg != NULL)
1042 		dcn_dccg_destroy(&pool->dccg);
1043 
1044 	if (pool->oem_device != NULL)
1045 		dal_ddc_service_destroy(&pool->oem_device);
1046 }
1047 
1048 static void dcn303_destroy_resource_pool(struct resource_pool **pool)
1049 {
1050 	dcn303_resource_destruct(*pool);
1051 	kfree(*pool);
1052 	*pool = NULL;
1053 }
1054 
1055 
1056 void dcn303_update_bw_bounding_box(struct dc *dc, struct clk_bw_params *bw_params)
1057 {
1058 	DC_FP_START();
1059 	dcn303_fpu_update_bw_bounding_box(dc, bw_params);
1060 	DC_FP_END();
1061 }
1062 
1063 static struct resource_funcs dcn303_res_pool_funcs = {
1064 		.destroy = dcn303_destroy_resource_pool,
1065 		.link_enc_create = dcn303_link_encoder_create,
1066 		.panel_cntl_create = dcn303_panel_cntl_create,
1067 		.validate_bandwidth = dcn30_validate_bandwidth,
1068 		.calculate_wm_and_dlg = dcn30_calculate_wm_and_dlg,
1069 		.update_soc_for_wm_a = dcn30_update_soc_for_wm_a,
1070 		.populate_dml_pipes = dcn30_populate_dml_pipes_from_context,
1071 		.acquire_idle_pipe_for_layer = dcn20_acquire_idle_pipe_for_layer,
1072 		.add_stream_to_ctx = dcn30_add_stream_to_ctx,
1073 		.add_dsc_to_stream_resource = dcn20_add_dsc_to_stream_resource,
1074 		.remove_stream_from_ctx = dcn20_remove_stream_from_ctx,
1075 		.populate_dml_writeback_from_context = dcn30_populate_dml_writeback_from_context,
1076 		.set_mcif_arb_params = dcn30_set_mcif_arb_params,
1077 		.find_first_free_match_stream_enc_for_link = dcn10_find_first_free_match_stream_enc_for_link,
1078 		.acquire_post_bldn_3dlut = dcn30_acquire_post_bldn_3dlut,
1079 		.release_post_bldn_3dlut = dcn30_release_post_bldn_3dlut,
1080 		.update_bw_bounding_box = dcn303_update_bw_bounding_box,
1081 		.patch_unknown_plane_state = dcn20_patch_unknown_plane_state,
1082 };
1083 
1084 static struct dc_cap_funcs cap_funcs = {
1085 		.get_dcc_compression_cap = dcn20_get_dcc_compression_cap
1086 };
1087 
1088 static const struct bios_registers bios_regs = {
1089 		NBIO_SR(BIOS_SCRATCH_3),
1090 		NBIO_SR(BIOS_SCRATCH_6)
1091 };
1092 
1093 static const struct dccg_registers dccg_regs = {
1094 		DCCG_REG_LIST_DCN3_03()
1095 };
1096 
1097 static const struct dccg_shift dccg_shift = {
1098 		DCCG_MASK_SH_LIST_DCN3_03(__SHIFT)
1099 };
1100 
1101 static const struct dccg_mask dccg_mask = {
1102 		DCCG_MASK_SH_LIST_DCN3_03(_MASK)
1103 };
1104 
1105 #define abm_regs(id)\
1106 		[id] = { ABM_DCN302_REG_LIST(id) }
1107 
1108 static const struct dce_abm_registers abm_regs[] = {
1109 		abm_regs(0),
1110 		abm_regs(1)
1111 };
1112 
1113 static const struct dce_abm_shift abm_shift = {
1114 		ABM_MASK_SH_LIST_DCN30(__SHIFT)
1115 };
1116 
1117 static const struct dce_abm_mask abm_mask = {
1118 		ABM_MASK_SH_LIST_DCN30(_MASK)
1119 };
1120 
1121 static bool dcn303_resource_construct(
1122 		uint8_t num_virtual_links,
1123 		struct dc *dc,
1124 		struct resource_pool *pool)
1125 {
1126 	int i;
1127 	struct dc_context *ctx = dc->ctx;
1128 	struct irq_service_init_data init_data;
1129 	struct ddc_service_init_data ddc_init_data;
1130 
1131 	ctx->dc_bios->regs = &bios_regs;
1132 
1133 	pool->res_cap = &res_cap_dcn303;
1134 
1135 	pool->funcs = &dcn303_res_pool_funcs;
1136 
1137 	/*************************************************
1138 	 *  Resource + asic cap harcoding                *
1139 	 *************************************************/
1140 	pool->underlay_pipe_index = NO_UNDERLAY_PIPE;
1141 	pool->pipe_count = pool->res_cap->num_timing_generator;
1142 	pool->mpcc_count = pool->res_cap->num_timing_generator;
1143 	dc->caps.max_downscale_ratio = 600;
1144 	dc->caps.i2c_speed_in_khz = 100;
1145 	dc->caps.i2c_speed_in_khz_hdcp = 5; /*1.4 w/a applied by derfault*/
1146 	dc->caps.max_cursor_size = 256;
1147 	dc->caps.min_horizontal_blanking_period = 80;
1148 	dc->caps.dmdata_alloc_size = 2048;
1149 #if defined(CONFIG_DRM_AMD_DC_DCN)
1150 	dc->caps.mall_size_per_mem_channel = 4;
1151 	/* total size = mall per channel * num channels * 1024 * 1024 */
1152 	dc->caps.mall_size_total = dc->caps.mall_size_per_mem_channel *
1153 				   dc->ctx->dc_bios->vram_info.num_chans *
1154 				   1024 * 1024;
1155 	dc->caps.cursor_cache_size =
1156 		dc->caps.max_cursor_size * dc->caps.max_cursor_size * 8;
1157 #endif
1158 	dc->caps.max_slave_planes = 1;
1159 	dc->caps.post_blend_color_processing = true;
1160 	dc->caps.force_dp_tps4_for_cp2520 = true;
1161 	dc->caps.extended_aux_timeout_support = true;
1162 	dc->caps.dmcub_support = true;
1163 
1164 	/* Color pipeline capabilities */
1165 	dc->caps.color.dpp.dcn_arch = 1;
1166 	dc->caps.color.dpp.input_lut_shared = 0;
1167 	dc->caps.color.dpp.icsc = 1;
1168 	dc->caps.color.dpp.dgam_ram = 0; // must use gamma_corr
1169 	dc->caps.color.dpp.dgam_rom_caps.srgb = 1;
1170 	dc->caps.color.dpp.dgam_rom_caps.bt2020 = 1;
1171 	dc->caps.color.dpp.dgam_rom_caps.gamma2_2 = 1;
1172 	dc->caps.color.dpp.dgam_rom_caps.pq = 1;
1173 	dc->caps.color.dpp.dgam_rom_caps.hlg = 1;
1174 	dc->caps.color.dpp.post_csc = 1;
1175 	dc->caps.color.dpp.gamma_corr = 1;
1176 	dc->caps.color.dpp.dgam_rom_for_yuv = 0;
1177 
1178 	dc->caps.color.dpp.hw_3d_lut = 1;
1179 	dc->caps.color.dpp.ogam_ram = 1;
1180 	// no OGAM ROM on DCN3
1181 	dc->caps.color.dpp.ogam_rom_caps.srgb = 0;
1182 	dc->caps.color.dpp.ogam_rom_caps.bt2020 = 0;
1183 	dc->caps.color.dpp.ogam_rom_caps.gamma2_2 = 0;
1184 	dc->caps.color.dpp.ogam_rom_caps.pq = 0;
1185 	dc->caps.color.dpp.ogam_rom_caps.hlg = 0;
1186 	dc->caps.color.dpp.ocsc = 0;
1187 
1188 	dc->caps.color.mpc.gamut_remap = 1;
1189 	dc->caps.color.mpc.num_3dluts = pool->res_cap->num_mpc_3dlut; //3
1190 	dc->caps.color.mpc.ogam_ram = 1;
1191 	dc->caps.color.mpc.ogam_rom_caps.srgb = 0;
1192 	dc->caps.color.mpc.ogam_rom_caps.bt2020 = 0;
1193 	dc->caps.color.mpc.ogam_rom_caps.gamma2_2 = 0;
1194 	dc->caps.color.mpc.ogam_rom_caps.pq = 0;
1195 	dc->caps.color.mpc.ogam_rom_caps.hlg = 0;
1196 	dc->caps.color.mpc.ocsc = 1;
1197 
1198 	/* read VBIOS LTTPR caps */
1199 	if (ctx->dc_bios->funcs->get_lttpr_caps) {
1200 		enum bp_result bp_query_result;
1201 		uint8_t is_vbios_lttpr_enable = 0;
1202 
1203 		bp_query_result = ctx->dc_bios->funcs->get_lttpr_caps(ctx->dc_bios, &is_vbios_lttpr_enable);
1204 		dc->caps.vbios_lttpr_enable = (bp_query_result == BP_RESULT_OK) && !!is_vbios_lttpr_enable;
1205 	}
1206 
1207 	if (ctx->dc_bios->funcs->get_lttpr_interop) {
1208 		enum bp_result bp_query_result;
1209 		uint8_t is_vbios_interop_enabled = 0;
1210 
1211 		bp_query_result = ctx->dc_bios->funcs->get_lttpr_interop(ctx->dc_bios, &is_vbios_interop_enabled);
1212 		dc->caps.vbios_lttpr_aware = (bp_query_result == BP_RESULT_OK) && !!is_vbios_interop_enabled;
1213 	}
1214 
1215 	if (dc->ctx->dce_environment == DCE_ENV_PRODUCTION_DRV)
1216 		dc->debug = debug_defaults_drv;
1217 	else
1218 		dc->debug = debug_defaults_diags;
1219 
1220 	// Init the vm_helper
1221 	if (dc->vm_helper)
1222 		vm_helper_init(dc->vm_helper, 16);
1223 
1224 	/*************************************************
1225 	 *  Create resources                             *
1226 	 *************************************************/
1227 
1228 	/* Clock Sources for Pixel Clock*/
1229 	pool->clock_sources[DCN303_CLK_SRC_PLL0] =
1230 			dcn303_clock_source_create(ctx, ctx->dc_bios,
1231 					CLOCK_SOURCE_COMBO_PHY_PLL0,
1232 					&clk_src_regs[0], false);
1233 	pool->clock_sources[DCN303_CLK_SRC_PLL1] =
1234 			dcn303_clock_source_create(ctx, ctx->dc_bios,
1235 					CLOCK_SOURCE_COMBO_PHY_PLL1,
1236 					&clk_src_regs[1], false);
1237 
1238 	pool->clk_src_count = DCN303_CLK_SRC_TOTAL;
1239 
1240 	/* todo: not reuse phy_pll registers */
1241 	pool->dp_clock_source =
1242 			dcn303_clock_source_create(ctx, ctx->dc_bios,
1243 					CLOCK_SOURCE_ID_DP_DTO,
1244 					&clk_src_regs[0], true);
1245 
1246 	for (i = 0; i < pool->clk_src_count; i++) {
1247 		if (pool->clock_sources[i] == NULL) {
1248 			dm_error("DC: failed to create clock sources!\n");
1249 			BREAK_TO_DEBUGGER();
1250 			goto create_fail;
1251 		}
1252 	}
1253 
1254 	/* DCCG */
1255 	pool->dccg = dccg30_create(ctx, &dccg_regs, &dccg_shift, &dccg_mask);
1256 	if (pool->dccg == NULL) {
1257 		dm_error("DC: failed to create dccg!\n");
1258 		BREAK_TO_DEBUGGER();
1259 		goto create_fail;
1260 	}
1261 
1262 	/* PP Lib and SMU interfaces */
1263 	init_soc_bounding_box(dc, pool);
1264 
1265 	/* DML */
1266 	dml_init_instance(&dc->dml, &dcn3_03_soc, &dcn3_03_ip, DML_PROJECT_DCN30);
1267 
1268 	/* IRQ */
1269 	init_data.ctx = dc->ctx;
1270 	pool->irqs = dal_irq_service_dcn303_create(&init_data);
1271 	if (!pool->irqs)
1272 		goto create_fail;
1273 
1274 	/* HUBBUB */
1275 	pool->hubbub = dcn303_hubbub_create(ctx);
1276 	if (pool->hubbub == NULL) {
1277 		BREAK_TO_DEBUGGER();
1278 		dm_error("DC: failed to create hubbub!\n");
1279 		goto create_fail;
1280 	}
1281 
1282 	/* HUBPs, DPPs, OPPs and TGs */
1283 	for (i = 0; i < pool->pipe_count; i++) {
1284 		pool->hubps[i] = dcn303_hubp_create(ctx, i);
1285 		if (pool->hubps[i] == NULL) {
1286 			BREAK_TO_DEBUGGER();
1287 			dm_error("DC: failed to create hubps!\n");
1288 			goto create_fail;
1289 		}
1290 
1291 		pool->dpps[i] = dcn303_dpp_create(ctx, i);
1292 		if (pool->dpps[i] == NULL) {
1293 			BREAK_TO_DEBUGGER();
1294 			dm_error("DC: failed to create dpps!\n");
1295 			goto create_fail;
1296 		}
1297 	}
1298 
1299 	for (i = 0; i < pool->res_cap->num_opp; i++) {
1300 		pool->opps[i] = dcn303_opp_create(ctx, i);
1301 		if (pool->opps[i] == NULL) {
1302 			BREAK_TO_DEBUGGER();
1303 			dm_error("DC: failed to create output pixel processor!\n");
1304 			goto create_fail;
1305 		}
1306 	}
1307 
1308 	for (i = 0; i < pool->res_cap->num_timing_generator; i++) {
1309 		pool->timing_generators[i] = dcn303_timing_generator_create(ctx, i);
1310 		if (pool->timing_generators[i] == NULL) {
1311 			BREAK_TO_DEBUGGER();
1312 			dm_error("DC: failed to create tg!\n");
1313 			goto create_fail;
1314 		}
1315 	}
1316 	pool->timing_generator_count = i;
1317 
1318 	/* PSR */
1319 	pool->psr = dmub_psr_create(ctx);
1320 	if (pool->psr == NULL) {
1321 		dm_error("DC: failed to create psr!\n");
1322 		BREAK_TO_DEBUGGER();
1323 		goto create_fail;
1324 	}
1325 
1326 	/* ABM */
1327 	for (i = 0; i < pool->res_cap->num_timing_generator; i++) {
1328 		pool->multiple_abms[i] = dmub_abm_create(ctx, &abm_regs[i], &abm_shift, &abm_mask);
1329 		if (pool->multiple_abms[i] == NULL) {
1330 			dm_error("DC: failed to create abm for pipe %d!\n", i);
1331 			BREAK_TO_DEBUGGER();
1332 			goto create_fail;
1333 		}
1334 	}
1335 
1336 	/* MPC and DSC */
1337 	pool->mpc = dcn303_mpc_create(ctx, pool->mpcc_count, pool->res_cap->num_mpc_3dlut);
1338 	if (pool->mpc == NULL) {
1339 		BREAK_TO_DEBUGGER();
1340 		dm_error("DC: failed to create mpc!\n");
1341 		goto create_fail;
1342 	}
1343 
1344 	for (i = 0; i < pool->res_cap->num_dsc; i++) {
1345 		pool->dscs[i] = dcn303_dsc_create(ctx, i);
1346 		if (pool->dscs[i] == NULL) {
1347 			BREAK_TO_DEBUGGER();
1348 			dm_error("DC: failed to create display stream compressor %d!\n", i);
1349 			goto create_fail;
1350 		}
1351 	}
1352 
1353 	/* DWB and MMHUBBUB */
1354 	if (!dcn303_dwbc_create(ctx, pool)) {
1355 		BREAK_TO_DEBUGGER();
1356 		dm_error("DC: failed to create dwbc!\n");
1357 		goto create_fail;
1358 	}
1359 
1360 	if (!dcn303_mmhubbub_create(ctx, pool)) {
1361 		BREAK_TO_DEBUGGER();
1362 		dm_error("DC: failed to create mcif_wb!\n");
1363 		goto create_fail;
1364 	}
1365 
1366 	/* AUX and I2C */
1367 	for (i = 0; i < pool->res_cap->num_ddc; i++) {
1368 		pool->engines[i] = dcn303_aux_engine_create(ctx, i);
1369 		if (pool->engines[i] == NULL) {
1370 			BREAK_TO_DEBUGGER();
1371 			dm_error("DC:failed to create aux engine!!\n");
1372 			goto create_fail;
1373 		}
1374 		pool->hw_i2cs[i] = dcn303_i2c_hw_create(ctx, i);
1375 		if (pool->hw_i2cs[i] == NULL) {
1376 			BREAK_TO_DEBUGGER();
1377 			dm_error("DC:failed to create hw i2c!!\n");
1378 			goto create_fail;
1379 		}
1380 		pool->sw_i2cs[i] = NULL;
1381 	}
1382 
1383 	/* Audio, Stream Encoders including HPO and virtual, MPC 3D LUTs */
1384 	if (!resource_construct(num_virtual_links, dc, pool,
1385 			(!IS_FPGA_MAXIMUS_DC(dc->ctx->dce_environment) ?
1386 					&res_create_funcs : &res_create_maximus_funcs)))
1387 		goto create_fail;
1388 
1389 	/* HW Sequencer and Plane caps */
1390 	dcn303_hw_sequencer_construct(dc);
1391 
1392 	dc->caps.max_planes =  pool->pipe_count;
1393 
1394 	for (i = 0; i < dc->caps.max_planes; ++i)
1395 		dc->caps.planes[i] = plane_cap;
1396 
1397 	dc->cap_funcs = cap_funcs;
1398 
1399 	if (dc->ctx->dc_bios->fw_info.oem_i2c_present) {
1400 		ddc_init_data.ctx = dc->ctx;
1401 		ddc_init_data.link = NULL;
1402 		ddc_init_data.id.id = dc->ctx->dc_bios->fw_info.oem_i2c_obj_id;
1403 		ddc_init_data.id.enum_id = 0;
1404 		ddc_init_data.id.type = OBJECT_TYPE_GENERIC;
1405 		pool->oem_device = dal_ddc_service_create(&ddc_init_data);
1406 	} else {
1407 		pool->oem_device = NULL;
1408 	}
1409 
1410 	return true;
1411 
1412 create_fail:
1413 
1414 	dcn303_resource_destruct(pool);
1415 
1416 	return false;
1417 }
1418 
1419 struct resource_pool *dcn303_create_resource_pool(const struct dc_init_data *init_data, struct dc *dc)
1420 {
1421 	struct resource_pool *pool = kzalloc(sizeof(struct resource_pool), GFP_KERNEL);
1422 
1423 	if (!pool)
1424 		return NULL;
1425 
1426 	if (dcn303_resource_construct(init_data->num_virtual_links, dc, pool))
1427 		return pool;
1428 
1429 	BREAK_TO_DEBUGGER();
1430 	kfree(pool);
1431 	return NULL;
1432 }
1433