xref: /openbmc/linux/drivers/gpu/drm/amd/display/dc/dcn31/dcn31_hwseq.c (revision c8cefb99fc811304fff9590677994531ff0ac992)
1 /*
2  * Copyright 2016 Advanced Micro Devices, Inc.
3  *
4  * Permission is hereby granted, free of charge, to any person obtaining a
5  * copy of this software and associated documentation files (the "Software"),
6  * to deal in the Software without restriction, including without limitation
7  * the rights to use, copy, modify, merge, publish, distribute, sublicense,
8  * and/or sell copies of the Software, and to permit persons to whom the
9  * Software is furnished to do so, subject to the following conditions:
10  *
11  * The above copyright notice and this permission notice shall be included in
12  * all copies or substantial portions of the Software.
13  *
14  * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
15  * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
16  * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.  IN NO EVENT SHALL
17  * THE COPYRIGHT HOLDER(S) OR AUTHOR(S) BE LIABLE FOR ANY CLAIM, DAMAGES OR
18  * OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE,
19  * ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
20  * OTHER DEALINGS IN THE SOFTWARE.
21  *
22  * Authors: AMD
23  *
24  */
25 
26 
27 #include "dm_services.h"
28 #include "dm_helpers.h"
29 #include "core_types.h"
30 #include "resource.h"
31 #include "dccg.h"
32 #include "dce/dce_hwseq.h"
33 #include "clk_mgr.h"
34 #include "reg_helper.h"
35 #include "abm.h"
36 #include "hubp.h"
37 #include "dchubbub.h"
38 #include "timing_generator.h"
39 #include "opp.h"
40 #include "ipp.h"
41 #include "mpc.h"
42 #include "mcif_wb.h"
43 #include "dc_dmub_srv.h"
44 #include "dcn31_hwseq.h"
45 #include "link_hwss.h"
46 #include "dpcd_defs.h"
47 #include "dce/dmub_outbox.h"
48 #include "link.h"
49 #include "dcn10/dcn10_hw_sequencer.h"
50 #include "inc/link_enc_cfg.h"
51 #include "dcn30/dcn30_vpg.h"
52 #include "dce/dce_i2c_hw.h"
53 
54 #define DC_LOGGER_INIT(logger)
55 
56 #define CTX \
57 	hws->ctx
58 #define REG(reg)\
59 	hws->regs->reg
60 #define DC_LOGGER \
61 		dc->ctx->logger
62 
63 
64 #undef FN
65 #define FN(reg_name, field_name) \
66 	hws->shifts->field_name, hws->masks->field_name
67 
68 static void enable_memory_low_power(struct dc *dc)
69 {
70 	struct dce_hwseq *hws = dc->hwseq;
71 	int i;
72 
73 	if (dc->debug.enable_mem_low_power.bits.dmcu) {
74 		// Force ERAM to shutdown if DMCU is not enabled
75 		if (dc->debug.disable_dmcu || dc->config.disable_dmcu) {
76 			REG_UPDATE(DMU_MEM_PWR_CNTL, DMCU_ERAM_MEM_PWR_FORCE, 3);
77 		}
78 	}
79 
80 	// Set default OPTC memory power states
81 	if (dc->debug.enable_mem_low_power.bits.optc) {
82 		// Shutdown when unassigned and light sleep in VBLANK
83 		REG_SET_2(ODM_MEM_PWR_CTRL3, 0, ODM_MEM_UNASSIGNED_PWR_MODE, 3, ODM_MEM_VBLANK_PWR_MODE, 1);
84 	}
85 
86 	if (dc->debug.enable_mem_low_power.bits.vga) {
87 		// Power down VGA memory
88 		REG_UPDATE(MMHUBBUB_MEM_PWR_CNTL, VGA_MEM_PWR_FORCE, 1);
89 	}
90 
91 	if (dc->debug.enable_mem_low_power.bits.mpc &&
92 		dc->res_pool->mpc->funcs->set_mpc_mem_lp_mode)
93 		dc->res_pool->mpc->funcs->set_mpc_mem_lp_mode(dc->res_pool->mpc);
94 
95 
96 	if (dc->debug.enable_mem_low_power.bits.vpg && dc->res_pool->stream_enc[0]->vpg->funcs->vpg_powerdown) {
97 		// Power down VPGs
98 		for (i = 0; i < dc->res_pool->stream_enc_count; i++)
99 			dc->res_pool->stream_enc[i]->vpg->funcs->vpg_powerdown(dc->res_pool->stream_enc[i]->vpg);
100 #if defined(CONFIG_DRM_AMD_DC_FP)
101 		for (i = 0; i < dc->res_pool->hpo_dp_stream_enc_count; i++)
102 			dc->res_pool->hpo_dp_stream_enc[i]->vpg->funcs->vpg_powerdown(dc->res_pool->hpo_dp_stream_enc[i]->vpg);
103 #endif
104 	}
105 
106 }
107 
108 void dcn31_init_hw(struct dc *dc)
109 {
110 	struct abm **abms = dc->res_pool->multiple_abms;
111 	struct dce_hwseq *hws = dc->hwseq;
112 	struct dc_bios *dcb = dc->ctx->dc_bios;
113 	struct resource_pool *res_pool = dc->res_pool;
114 	uint32_t backlight = MAX_BACKLIGHT_LEVEL;
115 	int i;
116 
117 	if (dc->clk_mgr && dc->clk_mgr->funcs->init_clocks)
118 		dc->clk_mgr->funcs->init_clocks(dc->clk_mgr);
119 
120 	if (IS_FPGA_MAXIMUS_DC(dc->ctx->dce_environment)) {
121 
122 		REG_WRITE(REFCLK_CNTL, 0);
123 		REG_UPDATE(DCHUBBUB_GLOBAL_TIMER_CNTL, DCHUBBUB_GLOBAL_TIMER_ENABLE, 1);
124 		REG_WRITE(DIO_MEM_PWR_CTRL, 0);
125 
126 		if (!dc->debug.disable_clock_gate) {
127 			/* enable all DCN clock gating */
128 			REG_WRITE(DCCG_GATE_DISABLE_CNTL, 0);
129 
130 			REG_WRITE(DCCG_GATE_DISABLE_CNTL2, 0);
131 
132 			REG_UPDATE(DCFCLK_CNTL, DCFCLK_GATE_DIS, 0);
133 		}
134 
135 		//Enable ability to power gate / don't force power on permanently
136 		if (hws->funcs.enable_power_gating_plane)
137 			hws->funcs.enable_power_gating_plane(hws, true);
138 
139 		return;
140 	}
141 
142 	if (!dcb->funcs->is_accelerated_mode(dcb)) {
143 		hws->funcs.bios_golden_init(dc);
144 		if (hws->funcs.disable_vga)
145 			hws->funcs.disable_vga(dc->hwseq);
146 	}
147 	// Initialize the dccg
148 	if (res_pool->dccg->funcs->dccg_init)
149 		res_pool->dccg->funcs->dccg_init(res_pool->dccg);
150 
151 	enable_memory_low_power(dc);
152 
153 	if (dc->ctx->dc_bios->fw_info_valid) {
154 		res_pool->ref_clocks.xtalin_clock_inKhz =
155 				dc->ctx->dc_bios->fw_info.pll_info.crystal_frequency;
156 
157 		if (!IS_FPGA_MAXIMUS_DC(dc->ctx->dce_environment)) {
158 			if (res_pool->dccg && res_pool->hubbub) {
159 
160 				(res_pool->dccg->funcs->get_dccg_ref_freq)(res_pool->dccg,
161 						dc->ctx->dc_bios->fw_info.pll_info.crystal_frequency,
162 						&res_pool->ref_clocks.dccg_ref_clock_inKhz);
163 
164 				(res_pool->hubbub->funcs->get_dchub_ref_freq)(res_pool->hubbub,
165 						res_pool->ref_clocks.dccg_ref_clock_inKhz,
166 						&res_pool->ref_clocks.dchub_ref_clock_inKhz);
167 			} else {
168 				// Not all ASICs have DCCG sw component
169 				res_pool->ref_clocks.dccg_ref_clock_inKhz =
170 						res_pool->ref_clocks.xtalin_clock_inKhz;
171 				res_pool->ref_clocks.dchub_ref_clock_inKhz =
172 						res_pool->ref_clocks.xtalin_clock_inKhz;
173 			}
174 		}
175 	} else
176 		ASSERT_CRITICAL(false);
177 
178 	for (i = 0; i < dc->link_count; i++) {
179 		/* Power up AND update implementation according to the
180 		 * required signal (which may be different from the
181 		 * default signal on connector).
182 		 */
183 		struct dc_link *link = dc->links[i];
184 
185 		if (link->ep_type != DISPLAY_ENDPOINT_PHY)
186 			continue;
187 
188 		link->link_enc->funcs->hw_init(link->link_enc);
189 
190 		/* Check for enabled DIG to identify enabled display */
191 		if (link->link_enc->funcs->is_dig_enabled &&
192 			link->link_enc->funcs->is_dig_enabled(link->link_enc)) {
193 			link->link_status.link_active = true;
194 			if (link->link_enc->funcs->fec_is_active &&
195 					link->link_enc->funcs->fec_is_active(link->link_enc))
196 				link->fec_state = dc_link_fec_enabled;
197 		}
198 	}
199 
200 	/* we want to turn off all dp displays before doing detection */
201 	dc->link_srv->blank_all_dp_displays(dc);
202 
203 	if (hws->funcs.enable_power_gating_plane)
204 		hws->funcs.enable_power_gating_plane(dc->hwseq, true);
205 
206 	/* If taking control over from VBIOS, we may want to optimize our first
207 	 * mode set, so we need to skip powering down pipes until we know which
208 	 * pipes we want to use.
209 	 * Otherwise, if taking control is not possible, we need to power
210 	 * everything down.
211 	 */
212 	if (dcb->funcs->is_accelerated_mode(dcb) || !dc->config.seamless_boot_edp_requested) {
213 
214 		// we want to turn off edp displays if odm is enabled and no seamless boot
215 		if (!dc->caps.seamless_odm) {
216 			for (i = 0; i < dc->res_pool->timing_generator_count; i++) {
217 				struct timing_generator *tg = dc->res_pool->timing_generators[i];
218 				uint32_t num_opps, opp_id_src0, opp_id_src1;
219 
220 				num_opps = 1;
221 				if (tg) {
222 					if (tg->funcs->is_tg_enabled(tg) && tg->funcs->get_optc_source) {
223 						tg->funcs->get_optc_source(tg, &num_opps,
224 								&opp_id_src0, &opp_id_src1);
225 					}
226 				}
227 
228 				if (num_opps > 1) {
229 					dc->link_srv->blank_all_edp_displays(dc);
230 					break;
231 				}
232 			}
233 		}
234 
235 		hws->funcs.init_pipes(dc, dc->current_state);
236 		if (dc->res_pool->hubbub->funcs->allow_self_refresh_control)
237 			dc->res_pool->hubbub->funcs->allow_self_refresh_control(dc->res_pool->hubbub,
238 					!dc->res_pool->hubbub->ctx->dc->debug.disable_stutter);
239 	}
240 
241 	for (i = 0; i < res_pool->audio_count; i++) {
242 		struct audio *audio = res_pool->audios[i];
243 
244 		audio->funcs->hw_init(audio);
245 	}
246 
247 	for (i = 0; i < dc->link_count; i++) {
248 		struct dc_link *link = dc->links[i];
249 
250 		if (link->panel_cntl)
251 			backlight = link->panel_cntl->funcs->hw_init(link->panel_cntl);
252 	}
253 
254 	for (i = 0; i < dc->res_pool->pipe_count; i++) {
255 		if (abms[i] != NULL)
256 			abms[i]->funcs->abm_init(abms[i], backlight);
257 	}
258 
259 	/* power AFMT HDMI memory TODO: may move to dis/en output save power*/
260 	REG_WRITE(DIO_MEM_PWR_CTRL, 0);
261 
262 	// Set i2c to light sleep until engine is setup
263 	if (dc->debug.enable_mem_low_power.bits.i2c)
264 		REG_UPDATE(DIO_MEM_PWR_CTRL, I2C_LIGHT_SLEEP_FORCE, 1);
265 
266 	if (hws->funcs.setup_hpo_hw_control)
267 		hws->funcs.setup_hpo_hw_control(hws, false);
268 
269 	if (!dc->debug.disable_clock_gate) {
270 		/* enable all DCN clock gating */
271 		REG_WRITE(DCCG_GATE_DISABLE_CNTL, 0);
272 
273 		REG_WRITE(DCCG_GATE_DISABLE_CNTL2, 0);
274 
275 		REG_UPDATE(DCFCLK_CNTL, DCFCLK_GATE_DIS, 0);
276 	}
277 
278 	if (!dcb->funcs->is_accelerated_mode(dcb) && dc->res_pool->hubbub->funcs->init_watermarks)
279 		dc->res_pool->hubbub->funcs->init_watermarks(dc->res_pool->hubbub);
280 
281 	if (dc->clk_mgr->funcs->notify_wm_ranges)
282 		dc->clk_mgr->funcs->notify_wm_ranges(dc->clk_mgr);
283 
284 	if (dc->clk_mgr->funcs->set_hard_max_memclk && !dc->clk_mgr->dc_mode_softmax_enabled)
285 		dc->clk_mgr->funcs->set_hard_max_memclk(dc->clk_mgr);
286 
287 	if (dc->res_pool->hubbub->funcs->force_pstate_change_control)
288 		dc->res_pool->hubbub->funcs->force_pstate_change_control(
289 				dc->res_pool->hubbub, false, false);
290 #if defined(CONFIG_DRM_AMD_DC_FP)
291 	if (dc->res_pool->hubbub->funcs->init_crb)
292 		dc->res_pool->hubbub->funcs->init_crb(dc->res_pool->hubbub);
293 #endif
294 
295 	// Get DMCUB capabilities
296 	dc_dmub_srv_query_caps_cmd(dc->ctx->dmub_srv);
297 	dc->caps.dmub_caps.psr = dc->ctx->dmub_srv->dmub->feature_caps.psr;
298 	dc->caps.dmub_caps.mclk_sw = dc->ctx->dmub_srv->dmub->feature_caps.fw_assisted_mclk_switch;
299 }
300 
301 void dcn31_dsc_pg_control(
302 		struct dce_hwseq *hws,
303 		unsigned int dsc_inst,
304 		bool power_on)
305 {
306 	uint32_t power_gate = power_on ? 0 : 1;
307 	uint32_t pwr_status = power_on ? 0 : 2;
308 	uint32_t org_ip_request_cntl = 0;
309 
310 	if (hws->ctx->dc->debug.disable_dsc_power_gate)
311 		return;
312 
313 	if (hws->ctx->dc->debug.root_clock_optimization.bits.dsc &&
314 		hws->ctx->dc->res_pool->dccg->funcs->enable_dsc &&
315 		power_on)
316 		hws->ctx->dc->res_pool->dccg->funcs->enable_dsc(
317 			hws->ctx->dc->res_pool->dccg, dsc_inst);
318 
319 	REG_GET(DC_IP_REQUEST_CNTL, IP_REQUEST_EN, &org_ip_request_cntl);
320 	if (org_ip_request_cntl == 0)
321 		REG_SET(DC_IP_REQUEST_CNTL, 0, IP_REQUEST_EN, 1);
322 
323 	switch (dsc_inst) {
324 	case 0: /* DSC0 */
325 		REG_UPDATE(DOMAIN16_PG_CONFIG,
326 				DOMAIN_POWER_GATE, power_gate);
327 
328 		REG_WAIT(DOMAIN16_PG_STATUS,
329 				DOMAIN_PGFSM_PWR_STATUS, pwr_status,
330 				1, 1000);
331 		break;
332 	case 1: /* DSC1 */
333 		REG_UPDATE(DOMAIN17_PG_CONFIG,
334 				DOMAIN_POWER_GATE, power_gate);
335 
336 		REG_WAIT(DOMAIN17_PG_STATUS,
337 				DOMAIN_PGFSM_PWR_STATUS, pwr_status,
338 				1, 1000);
339 		break;
340 	case 2: /* DSC2 */
341 		REG_UPDATE(DOMAIN18_PG_CONFIG,
342 				DOMAIN_POWER_GATE, power_gate);
343 
344 		REG_WAIT(DOMAIN18_PG_STATUS,
345 				DOMAIN_PGFSM_PWR_STATUS, pwr_status,
346 				1, 1000);
347 		break;
348 	default:
349 		BREAK_TO_DEBUGGER();
350 		break;
351 	}
352 
353 	if (org_ip_request_cntl == 0)
354 		REG_SET(DC_IP_REQUEST_CNTL, 0, IP_REQUEST_EN, 0);
355 
356 	if (hws->ctx->dc->debug.root_clock_optimization.bits.dsc) {
357 		if (hws->ctx->dc->res_pool->dccg->funcs->disable_dsc && !power_on)
358 			hws->ctx->dc->res_pool->dccg->funcs->disable_dsc(
359 				hws->ctx->dc->res_pool->dccg, dsc_inst);
360 	}
361 
362 }
363 
364 
365 void dcn31_enable_power_gating_plane(
366 	struct dce_hwseq *hws,
367 	bool enable)
368 {
369 	bool force_on = true; /* disable power gating */
370 	uint32_t org_ip_request_cntl = 0;
371 
372 	if (enable && !hws->ctx->dc->debug.disable_hubp_power_gate)
373 		force_on = false;
374 
375 	REG_GET(DC_IP_REQUEST_CNTL, IP_REQUEST_EN, &org_ip_request_cntl);
376 	if (org_ip_request_cntl == 0)
377 		REG_SET(DC_IP_REQUEST_CNTL, 0, IP_REQUEST_EN, 1);
378 	/* DCHUBP0/1/2/3/4/5 */
379 	REG_UPDATE(DOMAIN0_PG_CONFIG, DOMAIN_POWER_FORCEON, force_on);
380 	REG_UPDATE(DOMAIN2_PG_CONFIG, DOMAIN_POWER_FORCEON, force_on);
381 	/* DPP0/1/2/3/4/5 */
382 	REG_UPDATE(DOMAIN1_PG_CONFIG, DOMAIN_POWER_FORCEON, force_on);
383 	REG_UPDATE(DOMAIN3_PG_CONFIG, DOMAIN_POWER_FORCEON, force_on);
384 
385 	force_on = true; /* disable power gating */
386 	if (enable && !hws->ctx->dc->debug.disable_dsc_power_gate)
387 		force_on = false;
388 
389 	/* DCS0/1/2/3/4/5 */
390 	REG_UPDATE(DOMAIN16_PG_CONFIG, DOMAIN_POWER_FORCEON, force_on);
391 	REG_UPDATE(DOMAIN17_PG_CONFIG, DOMAIN_POWER_FORCEON, force_on);
392 	REG_UPDATE(DOMAIN18_PG_CONFIG, DOMAIN_POWER_FORCEON, force_on);
393 
394 	if (org_ip_request_cntl == 0)
395 		REG_SET(DC_IP_REQUEST_CNTL, 0, IP_REQUEST_EN, 0);
396 }
397 
398 void dcn31_update_info_frame(struct pipe_ctx *pipe_ctx)
399 {
400 	bool is_hdmi_tmds;
401 	bool is_dp;
402 
403 	ASSERT(pipe_ctx->stream);
404 
405 	if (pipe_ctx->stream_res.stream_enc == NULL)
406 		return;  /* this is not root pipe */
407 
408 	is_hdmi_tmds = dc_is_hdmi_tmds_signal(pipe_ctx->stream->signal);
409 	is_dp = dc_is_dp_signal(pipe_ctx->stream->signal);
410 
411 	if (!is_hdmi_tmds && !is_dp)
412 		return;
413 
414 	if (is_hdmi_tmds)
415 		pipe_ctx->stream_res.stream_enc->funcs->update_hdmi_info_packets(
416 			pipe_ctx->stream_res.stream_enc,
417 			&pipe_ctx->stream_res.encoder_info_frame);
418 	else if (pipe_ctx->stream->ctx->dc->link_srv->dp_is_128b_132b_signal(pipe_ctx)) {
419 		pipe_ctx->stream_res.hpo_dp_stream_enc->funcs->update_dp_info_packets(
420 				pipe_ctx->stream_res.hpo_dp_stream_enc,
421 				&pipe_ctx->stream_res.encoder_info_frame);
422 		return;
423 	} else {
424 		if (pipe_ctx->stream_res.stream_enc->funcs->update_dp_info_packets_sdp_line_num)
425 			pipe_ctx->stream_res.stream_enc->funcs->update_dp_info_packets_sdp_line_num(
426 				pipe_ctx->stream_res.stream_enc,
427 				&pipe_ctx->stream_res.encoder_info_frame);
428 
429 		pipe_ctx->stream_res.stream_enc->funcs->update_dp_info_packets(
430 			pipe_ctx->stream_res.stream_enc,
431 			&pipe_ctx->stream_res.encoder_info_frame);
432 	}
433 }
434 void dcn31_z10_save_init(struct dc *dc)
435 {
436 	union dmub_rb_cmd cmd;
437 
438 	memset(&cmd, 0, sizeof(cmd));
439 	cmd.dcn_restore.header.type = DMUB_CMD__IDLE_OPT;
440 	cmd.dcn_restore.header.sub_type = DMUB_CMD__IDLE_OPT_DCN_SAVE_INIT;
441 
442 	dm_execute_dmub_cmd(dc->ctx, &cmd, DM_DMUB_WAIT_TYPE_WAIT);
443 }
444 
445 void dcn31_z10_restore(const struct dc *dc)
446 {
447 	union dmub_rb_cmd cmd;
448 
449 	/*
450 	 * DMUB notifies whether restore is required.
451 	 * Optimization to avoid sending commands when not required.
452 	 */
453 	if (!dc_dmub_srv_is_restore_required(dc->ctx->dmub_srv))
454 		return;
455 
456 	memset(&cmd, 0, sizeof(cmd));
457 	cmd.dcn_restore.header.type = DMUB_CMD__IDLE_OPT;
458 	cmd.dcn_restore.header.sub_type = DMUB_CMD__IDLE_OPT_DCN_RESTORE;
459 
460 	dm_execute_dmub_cmd(dc->ctx, &cmd, DM_DMUB_WAIT_TYPE_WAIT);
461 }
462 
463 void dcn31_hubp_pg_control(struct dce_hwseq *hws, unsigned int hubp_inst, bool power_on)
464 {
465 	uint32_t power_gate = power_on ? 0 : 1;
466 	uint32_t pwr_status = power_on ? 0 : 2;
467 	uint32_t org_ip_request_cntl;
468 	if (hws->ctx->dc->debug.disable_hubp_power_gate)
469 		return;
470 
471 	if (REG(DOMAIN0_PG_CONFIG) == 0)
472 		return;
473 	REG_GET(DC_IP_REQUEST_CNTL, IP_REQUEST_EN, &org_ip_request_cntl);
474 	if (org_ip_request_cntl == 0)
475 		REG_SET(DC_IP_REQUEST_CNTL, 0, IP_REQUEST_EN, 1);
476 
477 	switch (hubp_inst) {
478 	case 0:
479 		REG_SET(DOMAIN0_PG_CONFIG, 0, DOMAIN_POWER_GATE, power_gate);
480 		REG_WAIT(DOMAIN0_PG_STATUS, DOMAIN_PGFSM_PWR_STATUS, pwr_status, 1, 1000);
481 		break;
482 	case 1:
483 		REG_SET(DOMAIN1_PG_CONFIG, 0, DOMAIN_POWER_GATE, power_gate);
484 		REG_WAIT(DOMAIN1_PG_STATUS, DOMAIN_PGFSM_PWR_STATUS, pwr_status, 1, 1000);
485 		break;
486 	case 2:
487 		REG_SET(DOMAIN2_PG_CONFIG, 0, DOMAIN_POWER_GATE, power_gate);
488 		REG_WAIT(DOMAIN2_PG_STATUS, DOMAIN_PGFSM_PWR_STATUS, pwr_status, 1, 1000);
489 		break;
490 	case 3:
491 		REG_SET(DOMAIN3_PG_CONFIG, 0, DOMAIN_POWER_GATE, power_gate);
492 		REG_WAIT(DOMAIN3_PG_STATUS, DOMAIN_PGFSM_PWR_STATUS, pwr_status, 1, 1000);
493 		break;
494 	default:
495 		BREAK_TO_DEBUGGER();
496 		break;
497 	}
498 	if (org_ip_request_cntl == 0)
499 		REG_SET(DC_IP_REQUEST_CNTL, 0, IP_REQUEST_EN, 0);
500 }
501 
502 int dcn31_init_sys_ctx(struct dce_hwseq *hws, struct dc *dc, struct dc_phy_addr_space_config *pa_config)
503 {
504 	struct dcn_hubbub_phys_addr_config config;
505 
506 	config.system_aperture.fb_top = pa_config->system_aperture.fb_top;
507 	config.system_aperture.fb_offset = pa_config->system_aperture.fb_offset;
508 	config.system_aperture.fb_base = pa_config->system_aperture.fb_base;
509 	config.system_aperture.agp_top = pa_config->system_aperture.agp_top;
510 	config.system_aperture.agp_bot = pa_config->system_aperture.agp_bot;
511 	config.system_aperture.agp_base = pa_config->system_aperture.agp_base;
512 	config.gart_config.page_table_start_addr = pa_config->gart_config.page_table_start_addr;
513 	config.gart_config.page_table_end_addr = pa_config->gart_config.page_table_end_addr;
514 
515 	if (pa_config->gart_config.base_addr_is_mc_addr) {
516 		/* Convert from MC address to offset into FB */
517 		config.gart_config.page_table_base_addr = pa_config->gart_config.page_table_base_addr -
518 				pa_config->system_aperture.fb_base +
519 				pa_config->system_aperture.fb_offset;
520 	} else
521 		config.gart_config.page_table_base_addr = pa_config->gart_config.page_table_base_addr;
522 
523 	return dc->res_pool->hubbub->funcs->init_dchub_sys_ctx(dc->res_pool->hubbub, &config);
524 }
525 
526 static void dcn31_reset_back_end_for_pipe(
527 		struct dc *dc,
528 		struct pipe_ctx *pipe_ctx,
529 		struct dc_state *context)
530 {
531 	struct dc_link *link;
532 
533 	DC_LOGGER_INIT(dc->ctx->logger);
534 	if (pipe_ctx->stream_res.stream_enc == NULL) {
535 		pipe_ctx->stream = NULL;
536 		return;
537 	}
538 	ASSERT(!pipe_ctx->top_pipe);
539 
540 	dc->hwss.set_abm_immediate_disable(pipe_ctx);
541 
542 	pipe_ctx->stream_res.tg->funcs->set_dsc_config(
543 			pipe_ctx->stream_res.tg,
544 			OPTC_DSC_DISABLED, 0, 0);
545 	pipe_ctx->stream_res.tg->funcs->disable_crtc(pipe_ctx->stream_res.tg);
546 	pipe_ctx->stream_res.tg->funcs->enable_optc_clock(pipe_ctx->stream_res.tg, false);
547 	if (pipe_ctx->stream_res.tg->funcs->set_odm_bypass)
548 		pipe_ctx->stream_res.tg->funcs->set_odm_bypass(
549 				pipe_ctx->stream_res.tg, &pipe_ctx->stream->timing);
550 	pipe_ctx->stream->link->phy_state.symclk_ref_cnts.otg = 0;
551 
552 	if (pipe_ctx->stream_res.tg->funcs->set_drr)
553 		pipe_ctx->stream_res.tg->funcs->set_drr(
554 				pipe_ctx->stream_res.tg, NULL);
555 
556 	if (!IS_FPGA_MAXIMUS_DC(dc->ctx->dce_environment)) {
557 		link = pipe_ctx->stream->link;
558 		/* DPMS may already disable or */
559 		/* dpms_off status is incorrect due to fastboot
560 		 * feature. When system resume from S4 with second
561 		 * screen only, the dpms_off would be true but
562 		 * VBIOS lit up eDP, so check link status too.
563 		 */
564 		if (!pipe_ctx->stream->dpms_off || link->link_status.link_active)
565 			dc->link_srv->set_dpms_off(pipe_ctx);
566 		else if (pipe_ctx->stream_res.audio)
567 			dc->hwss.disable_audio_stream(pipe_ctx);
568 
569 		/* free acquired resources */
570 		if (pipe_ctx->stream_res.audio) {
571 			/*disable az_endpoint*/
572 			pipe_ctx->stream_res.audio->funcs->az_disable(pipe_ctx->stream_res.audio);
573 
574 			/*free audio*/
575 			if (dc->caps.dynamic_audio == true) {
576 				/*we have to dynamic arbitrate the audio endpoints*/
577 				/*we free the resource, need reset is_audio_acquired*/
578 				update_audio_usage(&dc->current_state->res_ctx, dc->res_pool,
579 						pipe_ctx->stream_res.audio, false);
580 				pipe_ctx->stream_res.audio = NULL;
581 			}
582 		}
583 	} else if (pipe_ctx->stream_res.dsc) {
584 		dc->link_srv->set_dsc_enable(pipe_ctx, false);
585 	}
586 
587 	pipe_ctx->stream = NULL;
588 	DC_LOG_DEBUG("Reset back end for pipe %d, tg:%d\n",
589 					pipe_ctx->pipe_idx, pipe_ctx->stream_res.tg->inst);
590 }
591 
592 void dcn31_reset_hw_ctx_wrap(
593 		struct dc *dc,
594 		struct dc_state *context)
595 {
596 	int i;
597 	struct dce_hwseq *hws = dc->hwseq;
598 
599 	/* Reset Back End*/
600 	for (i = dc->res_pool->pipe_count - 1; i >= 0 ; i--) {
601 		struct pipe_ctx *pipe_ctx_old =
602 			&dc->current_state->res_ctx.pipe_ctx[i];
603 		struct pipe_ctx *pipe_ctx = &context->res_ctx.pipe_ctx[i];
604 
605 		if (!pipe_ctx_old->stream)
606 			continue;
607 
608 		if (pipe_ctx_old->top_pipe || pipe_ctx_old->prev_odm_pipe)
609 			continue;
610 
611 		if (!pipe_ctx->stream ||
612 				pipe_need_reprogram(pipe_ctx_old, pipe_ctx)) {
613 			struct clock_source *old_clk = pipe_ctx_old->clock_source;
614 
615 			dcn31_reset_back_end_for_pipe(dc, pipe_ctx_old, dc->current_state);
616 			if (hws->funcs.enable_stream_gating)
617 				hws->funcs.enable_stream_gating(dc, pipe_ctx_old);
618 			if (old_clk)
619 				old_clk->funcs->cs_power_down(old_clk);
620 		}
621 	}
622 
623 	/* New dc_state in the process of being applied to hardware. */
624 	link_enc_cfg_set_transient_mode(dc, dc->current_state, context);
625 }
626 
627 void dcn31_setup_hpo_hw_control(const struct dce_hwseq *hws, bool enable)
628 {
629 	if (hws->ctx->dc->debug.hpo_optimization)
630 		REG_UPDATE(HPO_TOP_HW_CONTROL, HPO_IO_EN, !!enable);
631 }
632