xref: /linux/drivers/gpu/drm/amd/display/dc/dc_dmub_srv.c (revision bcfe43f0ea77c42c2154fb79b99b7d1d82ac3231)
1 /*
2  * Copyright 2019 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 #include "dm_services.h"
27 #include "dc.h"
28 #include "dc_dmub_srv.h"
29 #include "../dmub/dmub_srv.h"
30 #include "dm_helpers.h"
31 #include "dc_hw_types.h"
32 #include "core_types.h"
33 #include "../basics/conversion.h"
34 #include "cursor_reg_cache.h"
35 #include "resource.h"
36 #include "clk_mgr.h"
37 #include "dc_state_priv.h"
38 #include "dc_plane_priv.h"
39 
40 #define CTX dc_dmub_srv->ctx
41 #define DC_LOGGER CTX->logger
42 
43 static void dc_dmub_srv_construct(struct dc_dmub_srv *dc_srv, struct dc *dc,
44 				  struct dmub_srv *dmub)
45 {
46 	dc_srv->dmub = dmub;
47 	dc_srv->ctx = dc->ctx;
48 }
49 
50 struct dc_dmub_srv *dc_dmub_srv_create(struct dc *dc, struct dmub_srv *dmub)
51 {
52 	struct dc_dmub_srv *dc_srv =
53 		kzalloc(sizeof(struct dc_dmub_srv), GFP_KERNEL);
54 
55 	if (dc_srv == NULL) {
56 		BREAK_TO_DEBUGGER();
57 		return NULL;
58 	}
59 
60 	dc_dmub_srv_construct(dc_srv, dc, dmub);
61 
62 	return dc_srv;
63 }
64 
65 void dc_dmub_srv_destroy(struct dc_dmub_srv **dmub_srv)
66 {
67 	if (*dmub_srv) {
68 		kfree(*dmub_srv);
69 		*dmub_srv = NULL;
70 	}
71 }
72 
73 void dc_dmub_srv_wait_idle(struct dc_dmub_srv *dc_dmub_srv)
74 {
75 	struct dmub_srv *dmub = dc_dmub_srv->dmub;
76 	struct dc_context *dc_ctx = dc_dmub_srv->ctx;
77 	enum dmub_status status;
78 
79 	do {
80 		status = dmub_srv_wait_for_idle(dmub, 100000);
81 	} while (dc_dmub_srv->ctx->dc->debug.disable_timeout && status != DMUB_STATUS_OK);
82 
83 	if (status != DMUB_STATUS_OK) {
84 		DC_ERROR("Error waiting for DMUB idle: status=%d\n", status);
85 		dc_dmub_srv_log_diagnostic_data(dc_dmub_srv);
86 	}
87 }
88 
89 void dc_dmub_srv_clear_inbox0_ack(struct dc_dmub_srv *dc_dmub_srv)
90 {
91 	struct dmub_srv *dmub = dc_dmub_srv->dmub;
92 	struct dc_context *dc_ctx = dc_dmub_srv->ctx;
93 	enum dmub_status status = DMUB_STATUS_OK;
94 
95 	status = dmub_srv_clear_inbox0_ack(dmub);
96 	if (status != DMUB_STATUS_OK) {
97 		DC_ERROR("Error clearing INBOX0 ack: status=%d\n", status);
98 		dc_dmub_srv_log_diagnostic_data(dc_dmub_srv);
99 	}
100 }
101 
102 void dc_dmub_srv_wait_for_inbox0_ack(struct dc_dmub_srv *dc_dmub_srv)
103 {
104 	struct dmub_srv *dmub = dc_dmub_srv->dmub;
105 	struct dc_context *dc_ctx = dc_dmub_srv->ctx;
106 	enum dmub_status status = DMUB_STATUS_OK;
107 
108 	status = dmub_srv_wait_for_inbox0_ack(dmub, 100000);
109 	if (status != DMUB_STATUS_OK) {
110 		DC_ERROR("Error waiting for INBOX0 HW Lock Ack\n");
111 		dc_dmub_srv_log_diagnostic_data(dc_dmub_srv);
112 	}
113 }
114 
115 void dc_dmub_srv_send_inbox0_cmd(struct dc_dmub_srv *dc_dmub_srv,
116 				 union dmub_inbox0_data_register data)
117 {
118 	struct dmub_srv *dmub = dc_dmub_srv->dmub;
119 	struct dc_context *dc_ctx = dc_dmub_srv->ctx;
120 	enum dmub_status status = DMUB_STATUS_OK;
121 
122 	status = dmub_srv_send_inbox0_cmd(dmub, data);
123 	if (status != DMUB_STATUS_OK) {
124 		DC_ERROR("Error sending INBOX0 cmd\n");
125 		dc_dmub_srv_log_diagnostic_data(dc_dmub_srv);
126 	}
127 }
128 
129 bool dc_dmub_srv_cmd_list_queue_execute(struct dc_dmub_srv *dc_dmub_srv,
130 		unsigned int count,
131 		union dmub_rb_cmd *cmd_list)
132 {
133 	struct dc_context *dc_ctx;
134 	struct dmub_srv *dmub;
135 	enum dmub_status status;
136 	int i;
137 
138 	if (!dc_dmub_srv || !dc_dmub_srv->dmub)
139 		return false;
140 
141 	dc_ctx = dc_dmub_srv->ctx;
142 	dmub = dc_dmub_srv->dmub;
143 
144 	for (i = 0 ; i < count; i++) {
145 		// Queue command
146 		status = dmub_srv_cmd_queue(dmub, &cmd_list[i]);
147 
148 		if (status == DMUB_STATUS_QUEUE_FULL) {
149 			/* Execute and wait for queue to become empty again. */
150 			status = dmub_srv_cmd_execute(dmub);
151 			if (status == DMUB_STATUS_POWER_STATE_D3)
152 				return false;
153 
154 			do {
155 				status = dmub_srv_wait_for_idle(dmub, 100000);
156 			} while (dc_dmub_srv->ctx->dc->debug.disable_timeout && status != DMUB_STATUS_OK);
157 
158 			/* Requeue the command. */
159 			status = dmub_srv_cmd_queue(dmub, &cmd_list[i]);
160 		}
161 
162 		if (status != DMUB_STATUS_OK) {
163 			if (status != DMUB_STATUS_POWER_STATE_D3) {
164 				DC_ERROR("Error queueing DMUB command: status=%d\n", status);
165 				dc_dmub_srv_log_diagnostic_data(dc_dmub_srv);
166 			}
167 			return false;
168 		}
169 	}
170 
171 	status = dmub_srv_cmd_execute(dmub);
172 	if (status != DMUB_STATUS_OK) {
173 		if (status != DMUB_STATUS_POWER_STATE_D3) {
174 			DC_ERROR("Error starting DMUB execution: status=%d\n", status);
175 			dc_dmub_srv_log_diagnostic_data(dc_dmub_srv);
176 		}
177 		return false;
178 	}
179 
180 	return true;
181 }
182 
183 bool dc_dmub_srv_wait_for_idle(struct dc_dmub_srv *dc_dmub_srv,
184 		enum dm_dmub_wait_type wait_type,
185 		union dmub_rb_cmd *cmd_list)
186 {
187 	struct dmub_srv *dmub;
188 	enum dmub_status status;
189 
190 	if (!dc_dmub_srv || !dc_dmub_srv->dmub)
191 		return false;
192 
193 	dmub = dc_dmub_srv->dmub;
194 
195 	// Wait for DMUB to process command
196 	if (wait_type != DM_DMUB_WAIT_TYPE_NO_WAIT) {
197 		do {
198 			status = dmub_srv_wait_for_idle(dmub, 100000);
199 		} while (dc_dmub_srv->ctx->dc->debug.disable_timeout && status != DMUB_STATUS_OK);
200 
201 		if (status != DMUB_STATUS_OK) {
202 			DC_LOG_DEBUG("No reply for DMUB command: status=%d\n", status);
203 			if (!dmub->debug.timeout_occured) {
204 				dmub->debug.timeout_occured = true;
205 				dmub->debug.timeout_cmd = *cmd_list;
206 				dmub->debug.timestamp = dm_get_timestamp(dc_dmub_srv->ctx);
207 			}
208 			dc_dmub_srv_log_diagnostic_data(dc_dmub_srv);
209 			return false;
210 		}
211 
212 		// Copy data back from ring buffer into command
213 		if (wait_type == DM_DMUB_WAIT_TYPE_WAIT_WITH_REPLY)
214 			dmub_rb_get_return_data(&dmub->inbox1_rb, cmd_list);
215 	}
216 
217 	return true;
218 }
219 
220 bool dc_dmub_srv_cmd_run(struct dc_dmub_srv *dc_dmub_srv, union dmub_rb_cmd *cmd, enum dm_dmub_wait_type wait_type)
221 {
222 	return dc_dmub_srv_cmd_run_list(dc_dmub_srv, 1, cmd, wait_type);
223 }
224 
225 bool dc_dmub_srv_cmd_run_list(struct dc_dmub_srv *dc_dmub_srv, unsigned int count, union dmub_rb_cmd *cmd_list, enum dm_dmub_wait_type wait_type)
226 {
227 	struct dc_context *dc_ctx;
228 	struct dmub_srv *dmub;
229 	enum dmub_status status;
230 	int i;
231 
232 	if (!dc_dmub_srv || !dc_dmub_srv->dmub)
233 		return false;
234 
235 	dc_ctx = dc_dmub_srv->ctx;
236 	dmub = dc_dmub_srv->dmub;
237 
238 	for (i = 0 ; i < count; i++) {
239 		// Queue command
240 		status = dmub_srv_cmd_queue(dmub, &cmd_list[i]);
241 
242 		if (status == DMUB_STATUS_QUEUE_FULL) {
243 			/* Execute and wait for queue to become empty again. */
244 			status = dmub_srv_cmd_execute(dmub);
245 			if (status == DMUB_STATUS_POWER_STATE_D3)
246 				return false;
247 
248 			status = dmub_srv_wait_for_idle(dmub, 100000);
249 			if (status != DMUB_STATUS_OK)
250 				return false;
251 
252 			/* Requeue the command. */
253 			status = dmub_srv_cmd_queue(dmub, &cmd_list[i]);
254 		}
255 
256 		if (status != DMUB_STATUS_OK) {
257 			if (status != DMUB_STATUS_POWER_STATE_D3) {
258 				DC_ERROR("Error queueing DMUB command: status=%d\n", status);
259 				dc_dmub_srv_log_diagnostic_data(dc_dmub_srv);
260 			}
261 			return false;
262 		}
263 	}
264 
265 	status = dmub_srv_cmd_execute(dmub);
266 	if (status != DMUB_STATUS_OK) {
267 		if (status != DMUB_STATUS_POWER_STATE_D3) {
268 			DC_ERROR("Error starting DMUB execution: status=%d\n", status);
269 			dc_dmub_srv_log_diagnostic_data(dc_dmub_srv);
270 		}
271 		return false;
272 	}
273 
274 	// Wait for DMUB to process command
275 	if (wait_type != DM_DMUB_WAIT_TYPE_NO_WAIT) {
276 		if (dc_dmub_srv->ctx->dc->debug.disable_timeout) {
277 			do {
278 				status = dmub_srv_wait_for_idle(dmub, 100000);
279 			} while (status != DMUB_STATUS_OK);
280 		} else
281 			status = dmub_srv_wait_for_idle(dmub, 100000);
282 
283 		if (status != DMUB_STATUS_OK) {
284 			DC_LOG_DEBUG("No reply for DMUB command: status=%d\n", status);
285 			dc_dmub_srv_log_diagnostic_data(dc_dmub_srv);
286 			return false;
287 		}
288 
289 		// Copy data back from ring buffer into command
290 		if (wait_type == DM_DMUB_WAIT_TYPE_WAIT_WITH_REPLY)
291 			dmub_rb_get_return_data(&dmub->inbox1_rb, cmd_list);
292 	}
293 
294 	return true;
295 }
296 
297 bool dc_dmub_srv_optimized_init_done(struct dc_dmub_srv *dc_dmub_srv)
298 {
299 	struct dmub_srv *dmub;
300 	struct dc_context *dc_ctx;
301 	union dmub_fw_boot_status boot_status;
302 	enum dmub_status status;
303 
304 	if (!dc_dmub_srv || !dc_dmub_srv->dmub)
305 		return false;
306 
307 	dmub = dc_dmub_srv->dmub;
308 	dc_ctx = dc_dmub_srv->ctx;
309 
310 	status = dmub_srv_get_fw_boot_status(dmub, &boot_status);
311 	if (status != DMUB_STATUS_OK) {
312 		DC_ERROR("Error querying DMUB boot status: error=%d\n", status);
313 		return false;
314 	}
315 
316 	return boot_status.bits.optimized_init_done;
317 }
318 
319 bool dc_dmub_srv_notify_stream_mask(struct dc_dmub_srv *dc_dmub_srv,
320 				    unsigned int stream_mask)
321 {
322 	if (!dc_dmub_srv || !dc_dmub_srv->dmub)
323 		return false;
324 
325 	return dc_wake_and_execute_gpint(dc_dmub_srv->ctx, DMUB_GPINT__IDLE_OPT_NOTIFY_STREAM_MASK,
326 					 stream_mask, NULL, DM_DMUB_WAIT_TYPE_WAIT);
327 }
328 
329 bool dc_dmub_srv_is_restore_required(struct dc_dmub_srv *dc_dmub_srv)
330 {
331 	struct dmub_srv *dmub;
332 	struct dc_context *dc_ctx;
333 	union dmub_fw_boot_status boot_status;
334 	enum dmub_status status;
335 
336 	if (!dc_dmub_srv || !dc_dmub_srv->dmub)
337 		return false;
338 
339 	dmub = dc_dmub_srv->dmub;
340 	dc_ctx = dc_dmub_srv->ctx;
341 
342 	status = dmub_srv_get_fw_boot_status(dmub, &boot_status);
343 	if (status != DMUB_STATUS_OK) {
344 		DC_ERROR("Error querying DMUB boot status: error=%d\n", status);
345 		return false;
346 	}
347 
348 	return boot_status.bits.restore_required;
349 }
350 
351 bool dc_dmub_srv_get_dmub_outbox0_msg(const struct dc *dc, struct dmcub_trace_buf_entry *entry)
352 {
353 	struct dmub_srv *dmub = dc->ctx->dmub_srv->dmub;
354 	return dmub_srv_get_outbox0_msg(dmub, entry);
355 }
356 
357 void dc_dmub_trace_event_control(struct dc *dc, bool enable)
358 {
359 	dm_helpers_dmub_outbox_interrupt_control(dc->ctx, enable);
360 }
361 
362 void dc_dmub_srv_drr_update_cmd(struct dc *dc, uint32_t tg_inst, uint32_t vtotal_min, uint32_t vtotal_max)
363 {
364 	union dmub_rb_cmd cmd = { 0 };
365 
366 	cmd.drr_update.header.type = DMUB_CMD__FW_ASSISTED_MCLK_SWITCH;
367 	cmd.drr_update.header.sub_type = DMUB_CMD__FAMS_DRR_UPDATE;
368 	cmd.drr_update.dmub_optc_state_req.v_total_max = vtotal_max;
369 	cmd.drr_update.dmub_optc_state_req.v_total_min = vtotal_min;
370 	cmd.drr_update.dmub_optc_state_req.tg_inst = tg_inst;
371 
372 	cmd.drr_update.header.payload_bytes = sizeof(cmd.drr_update) - sizeof(cmd.drr_update.header);
373 
374 	// Send the command to the DMCUB.
375 	dc_wake_and_execute_dmub_cmd(dc->ctx, &cmd, DM_DMUB_WAIT_TYPE_WAIT);
376 }
377 
378 void dc_dmub_srv_set_drr_manual_trigger_cmd(struct dc *dc, uint32_t tg_inst)
379 {
380 	union dmub_rb_cmd cmd = { 0 };
381 
382 	cmd.drr_update.header.type = DMUB_CMD__FW_ASSISTED_MCLK_SWITCH;
383 	cmd.drr_update.header.sub_type = DMUB_CMD__FAMS_SET_MANUAL_TRIGGER;
384 	cmd.drr_update.dmub_optc_state_req.tg_inst = tg_inst;
385 
386 	cmd.drr_update.header.payload_bytes = sizeof(cmd.drr_update) - sizeof(cmd.drr_update.header);
387 
388 	// Send the command to the DMCUB.
389 	dc_wake_and_execute_dmub_cmd(dc->ctx, &cmd, DM_DMUB_WAIT_TYPE_WAIT);
390 }
391 
392 static uint8_t dc_dmub_srv_get_pipes_for_stream(struct dc *dc, struct dc_stream_state *stream)
393 {
394 	uint8_t pipes = 0;
395 	int i = 0;
396 
397 	for (i = 0; i < MAX_PIPES; i++) {
398 		struct pipe_ctx *pipe = &dc->current_state->res_ctx.pipe_ctx[i];
399 
400 		if (pipe->stream == stream && pipe->stream_res.tg)
401 			pipes = i;
402 	}
403 	return pipes;
404 }
405 
406 static void dc_dmub_srv_populate_fams_pipe_info(struct dc *dc, struct dc_state *context,
407 		struct pipe_ctx *head_pipe,
408 		struct dmub_cmd_fw_assisted_mclk_switch_pipe_data *fams_pipe_data)
409 {
410 	int j;
411 	int pipe_idx = 0;
412 
413 	fams_pipe_data->pipe_index[pipe_idx++] = head_pipe->plane_res.hubp->inst;
414 	for (j = 0; j < dc->res_pool->pipe_count; j++) {
415 		struct pipe_ctx *split_pipe = &context->res_ctx.pipe_ctx[j];
416 
417 		if (split_pipe->stream == head_pipe->stream && (split_pipe->top_pipe || split_pipe->prev_odm_pipe)) {
418 			fams_pipe_data->pipe_index[pipe_idx++] = split_pipe->plane_res.hubp->inst;
419 		}
420 	}
421 	fams_pipe_data->pipe_count = pipe_idx;
422 }
423 
424 bool dc_dmub_srv_p_state_delegate(struct dc *dc, bool should_manage_pstate, struct dc_state *context)
425 {
426 	union dmub_rb_cmd cmd = { 0 };
427 	struct dmub_cmd_fw_assisted_mclk_switch_config *config_data = &cmd.fw_assisted_mclk_switch.config_data;
428 	int i = 0, k = 0;
429 	int ramp_up_num_steps = 1; // TODO: Ramp is currently disabled. Reenable it.
430 	uint8_t visual_confirm_enabled;
431 	int pipe_idx = 0;
432 	struct dc_stream_status *stream_status = NULL;
433 
434 	if (dc == NULL)
435 		return false;
436 
437 	visual_confirm_enabled = dc->debug.visual_confirm == VISUAL_CONFIRM_FAMS;
438 
439 	// Format command.
440 	cmd.fw_assisted_mclk_switch.header.type = DMUB_CMD__FW_ASSISTED_MCLK_SWITCH;
441 	cmd.fw_assisted_mclk_switch.header.sub_type = DMUB_CMD__FAMS_SETUP_FW_CTRL;
442 	cmd.fw_assisted_mclk_switch.config_data.fams_enabled = should_manage_pstate;
443 	cmd.fw_assisted_mclk_switch.config_data.visual_confirm_enabled = visual_confirm_enabled;
444 
445 	if (should_manage_pstate) {
446 		for (i = 0, pipe_idx = 0; i < dc->res_pool->pipe_count; i++) {
447 			struct pipe_ctx *pipe = &context->res_ctx.pipe_ctx[i];
448 
449 			if (!pipe->stream)
450 				continue;
451 
452 			/* If FAMS is being used to support P-State and there is a stream
453 			 * that does not use FAMS, we are in an FPO + VActive scenario.
454 			 * Assign vactive stretch margin in this case.
455 			 */
456 			stream_status = dc_state_get_stream_status(context, pipe->stream);
457 			if (stream_status && !stream_status->fpo_in_use) {
458 				cmd.fw_assisted_mclk_switch.config_data.vactive_stretch_margin_us = dc->debug.fpo_vactive_margin_us;
459 				break;
460 			}
461 			pipe_idx++;
462 		}
463 	}
464 
465 	for (i = 0, k = 0; context && i < dc->res_pool->pipe_count; i++) {
466 		struct pipe_ctx *pipe = &context->res_ctx.pipe_ctx[i];
467 
468 		if (!resource_is_pipe_type(pipe, OTG_MASTER))
469 			continue;
470 
471 		stream_status = dc_state_get_stream_status(context, pipe->stream);
472 		if (stream_status && stream_status->fpo_in_use) {
473 			struct pipe_ctx *pipe = &context->res_ctx.pipe_ctx[i];
474 			uint8_t min_refresh_in_hz = (pipe->stream->timing.min_refresh_in_uhz + 999999) / 1000000;
475 
476 			config_data->pipe_data[k].pix_clk_100hz = pipe->stream->timing.pix_clk_100hz;
477 			config_data->pipe_data[k].min_refresh_in_hz = min_refresh_in_hz;
478 			config_data->pipe_data[k].max_ramp_step = ramp_up_num_steps;
479 			config_data->pipe_data[k].pipes = dc_dmub_srv_get_pipes_for_stream(dc, pipe->stream);
480 			dc_dmub_srv_populate_fams_pipe_info(dc, context, pipe, &config_data->pipe_data[k]);
481 			k++;
482 		}
483 	}
484 	cmd.fw_assisted_mclk_switch.header.payload_bytes =
485 		sizeof(cmd.fw_assisted_mclk_switch) - sizeof(cmd.fw_assisted_mclk_switch.header);
486 
487 	// Send the command to the DMCUB.
488 	dc_wake_and_execute_dmub_cmd(dc->ctx, &cmd, DM_DMUB_WAIT_TYPE_WAIT);
489 
490 	return true;
491 }
492 
493 void dc_dmub_srv_query_caps_cmd(struct dc_dmub_srv *dc_dmub_srv)
494 {
495 	union dmub_rb_cmd cmd = { 0 };
496 
497 	if (dc_dmub_srv->ctx->dc->debug.dmcub_emulation)
498 		return;
499 
500 	memset(&cmd, 0, sizeof(cmd));
501 
502 	/* Prepare fw command */
503 	cmd.query_feature_caps.header.type = DMUB_CMD__QUERY_FEATURE_CAPS;
504 	cmd.query_feature_caps.header.sub_type = 0;
505 	cmd.query_feature_caps.header.ret_status = 1;
506 	cmd.query_feature_caps.header.payload_bytes = sizeof(struct dmub_cmd_query_feature_caps_data);
507 
508 	/* If command was processed, copy feature caps to dmub srv */
509 	if (dc_wake_and_execute_dmub_cmd(dc_dmub_srv->ctx, &cmd, DM_DMUB_WAIT_TYPE_WAIT_WITH_REPLY) &&
510 	    cmd.query_feature_caps.header.ret_status == 0) {
511 		memcpy(&dc_dmub_srv->dmub->feature_caps,
512 		       &cmd.query_feature_caps.query_feature_caps_data,
513 		       sizeof(struct dmub_feature_caps));
514 	}
515 }
516 
517 void dc_dmub_srv_get_visual_confirm_color_cmd(struct dc *dc, struct pipe_ctx *pipe_ctx)
518 {
519 	union dmub_rb_cmd cmd = { 0 };
520 	unsigned int panel_inst = 0;
521 
522 	if (!dc_get_edp_link_panel_inst(dc, pipe_ctx->stream->link, &panel_inst) &&
523 			dc->debug.visual_confirm == VISUAL_CONFIRM_DISABLE)
524 		return;
525 
526 	memset(&cmd, 0, sizeof(cmd));
527 
528 	// Prepare fw command
529 	cmd.visual_confirm_color.header.type = DMUB_CMD__GET_VISUAL_CONFIRM_COLOR;
530 	cmd.visual_confirm_color.header.sub_type = 0;
531 	cmd.visual_confirm_color.header.ret_status = 1;
532 	cmd.visual_confirm_color.header.payload_bytes = sizeof(struct dmub_cmd_visual_confirm_color_data);
533 	cmd.visual_confirm_color.visual_confirm_color_data.visual_confirm_color.panel_inst = panel_inst;
534 
535 	// If command was processed, copy feature caps to dmub srv
536 	if (dc_wake_and_execute_dmub_cmd(dc->ctx, &cmd, DM_DMUB_WAIT_TYPE_WAIT_WITH_REPLY) &&
537 		cmd.visual_confirm_color.header.ret_status == 0) {
538 		memcpy(&dc->ctx->dmub_srv->dmub->visual_confirm_color,
539 			&cmd.visual_confirm_color.visual_confirm_color_data,
540 			sizeof(struct dmub_visual_confirm_color));
541 	}
542 }
543 
544 /**
545  * populate_subvp_cmd_drr_info - Helper to populate DRR pipe info for the DMCUB subvp command
546  *
547  * @dc: [in] pointer to dc object
548  * @subvp_pipe: [in] pipe_ctx for the SubVP pipe
549  * @vblank_pipe: [in] pipe_ctx for the DRR pipe
550  * @pipe_data: [in] Pipe data which stores the VBLANK/DRR info
551  * @context: [in] DC state for access to phantom stream
552  *
553  * Populate the DMCUB SubVP command with DRR pipe info. All the information
554  * required for calculating the SubVP + DRR microschedule is populated here.
555  *
556  * High level algorithm:
557  * 1. Get timing for SubVP pipe, phantom pipe, and DRR pipe
558  * 2. Calculate the min and max vtotal which supports SubVP + DRR microschedule
559  * 3. Populate the drr_info with the min and max supported vtotal values
560  */
561 static void populate_subvp_cmd_drr_info(struct dc *dc,
562 		struct dc_state *context,
563 		struct pipe_ctx *subvp_pipe,
564 		struct pipe_ctx *vblank_pipe,
565 		struct dmub_cmd_fw_assisted_mclk_switch_pipe_data_v2 *pipe_data)
566 {
567 	struct dc_stream_state *phantom_stream = dc_state_get_paired_subvp_stream(context, subvp_pipe->stream);
568 	struct dc_crtc_timing *main_timing = &subvp_pipe->stream->timing;
569 	struct dc_crtc_timing *phantom_timing;
570 	struct dc_crtc_timing *drr_timing = &vblank_pipe->stream->timing;
571 	uint16_t drr_frame_us = 0;
572 	uint16_t min_drr_supported_us = 0;
573 	uint16_t max_drr_supported_us = 0;
574 	uint16_t max_drr_vblank_us = 0;
575 	uint16_t max_drr_mallregion_us = 0;
576 	uint16_t mall_region_us = 0;
577 	uint16_t prefetch_us = 0;
578 	uint16_t subvp_active_us = 0;
579 	uint16_t drr_active_us = 0;
580 	uint16_t min_vtotal_supported = 0;
581 	uint16_t max_vtotal_supported = 0;
582 
583 	if (!phantom_stream)
584 		return;
585 
586 	phantom_timing = &phantom_stream->timing;
587 
588 	pipe_data->pipe_config.vblank_data.drr_info.drr_in_use = true;
589 	pipe_data->pipe_config.vblank_data.drr_info.use_ramping = false; // for now don't use ramping
590 	pipe_data->pipe_config.vblank_data.drr_info.drr_window_size_ms = 4; // hardcode 4ms DRR window for now
591 
592 	drr_frame_us = div64_u64(((uint64_t)drr_timing->v_total * drr_timing->h_total * 1000000),
593 			(((uint64_t)drr_timing->pix_clk_100hz * 100)));
594 	// P-State allow width and FW delays already included phantom_timing->v_addressable
595 	mall_region_us = div64_u64(((uint64_t)phantom_timing->v_addressable * phantom_timing->h_total * 1000000),
596 			(((uint64_t)phantom_timing->pix_clk_100hz * 100)));
597 	min_drr_supported_us = drr_frame_us + mall_region_us + SUBVP_DRR_MARGIN_US;
598 	min_vtotal_supported = div64_u64(((uint64_t)drr_timing->pix_clk_100hz * 100 * min_drr_supported_us),
599 			(((uint64_t)drr_timing->h_total * 1000000)));
600 
601 	prefetch_us = div64_u64(((uint64_t)(phantom_timing->v_total - phantom_timing->v_front_porch) * phantom_timing->h_total * 1000000),
602 			(((uint64_t)phantom_timing->pix_clk_100hz * 100) + dc->caps.subvp_prefetch_end_to_mall_start_us));
603 	subvp_active_us = div64_u64(((uint64_t)main_timing->v_addressable * main_timing->h_total * 1000000),
604 			(((uint64_t)main_timing->pix_clk_100hz * 100)));
605 	drr_active_us = div64_u64(((uint64_t)drr_timing->v_addressable * drr_timing->h_total * 1000000),
606 			(((uint64_t)drr_timing->pix_clk_100hz * 100)));
607 	max_drr_vblank_us = div64_u64((subvp_active_us - prefetch_us -
608 			dc->caps.subvp_fw_processing_delay_us - drr_active_us), 2) + drr_active_us;
609 	max_drr_mallregion_us = subvp_active_us - prefetch_us - mall_region_us - dc->caps.subvp_fw_processing_delay_us;
610 	max_drr_supported_us = max_drr_vblank_us > max_drr_mallregion_us ? max_drr_vblank_us : max_drr_mallregion_us;
611 	max_vtotal_supported = div64_u64(((uint64_t)drr_timing->pix_clk_100hz * 100 * max_drr_supported_us),
612 			(((uint64_t)drr_timing->h_total * 1000000)));
613 
614 	/* When calculating the max vtotal supported for SubVP + DRR cases, add
615 	 * margin due to possible rounding errors (being off by 1 line in the
616 	 * FW calculation can incorrectly push the P-State switch to wait 1 frame
617 	 * longer).
618 	 */
619 	max_vtotal_supported = max_vtotal_supported - dc->caps.subvp_drr_max_vblank_margin_us;
620 
621 	pipe_data->pipe_config.vblank_data.drr_info.min_vtotal_supported = min_vtotal_supported;
622 	pipe_data->pipe_config.vblank_data.drr_info.max_vtotal_supported = max_vtotal_supported;
623 	pipe_data->pipe_config.vblank_data.drr_info.drr_vblank_start_margin = dc->caps.subvp_drr_vblank_start_margin_us;
624 }
625 
626 /**
627  * populate_subvp_cmd_vblank_pipe_info - Helper to populate VBLANK pipe info for the DMUB subvp command
628  *
629  * @dc: [in] current dc state
630  * @context: [in] new dc state
631  * @cmd: [in] DMUB cmd to be populated with SubVP info
632  * @vblank_pipe: [in] pipe_ctx for the VBLANK pipe
633  * @cmd_pipe_index: [in] index for the pipe array in DMCUB SubVP cmd
634  *
635  * Populate the DMCUB SubVP command with VBLANK pipe info. All the information
636  * required to calculate the microschedule for SubVP + VBLANK case is stored in
637  * the pipe_data (subvp_data and vblank_data).  Also check if the VBLANK pipe
638  * is a DRR display -- if it is make a call to populate drr_info.
639  */
640 static void populate_subvp_cmd_vblank_pipe_info(struct dc *dc,
641 		struct dc_state *context,
642 		union dmub_rb_cmd *cmd,
643 		struct pipe_ctx *vblank_pipe,
644 		uint8_t cmd_pipe_index)
645 {
646 	uint32_t i;
647 	struct pipe_ctx *pipe = NULL;
648 	struct dmub_cmd_fw_assisted_mclk_switch_pipe_data_v2 *pipe_data =
649 			&cmd->fw_assisted_mclk_switch_v2.config_data.pipe_data[cmd_pipe_index];
650 
651 	// Find the SubVP pipe
652 	for (i = 0; i < dc->res_pool->pipe_count; i++) {
653 		pipe = &context->res_ctx.pipe_ctx[i];
654 
655 		// We check for master pipe, but it shouldn't matter since we only need
656 		// the pipe for timing info (stream should be same for any pipe splits)
657 		if (!resource_is_pipe_type(pipe, OTG_MASTER) ||
658 				!resource_is_pipe_type(pipe, DPP_PIPE))
659 			continue;
660 
661 		// Find the SubVP pipe
662 		if (dc_state_get_pipe_subvp_type(context, pipe) == SUBVP_MAIN)
663 			break;
664 	}
665 
666 	pipe_data->mode = VBLANK;
667 	pipe_data->pipe_config.vblank_data.pix_clk_100hz = vblank_pipe->stream->timing.pix_clk_100hz;
668 	pipe_data->pipe_config.vblank_data.vblank_start = vblank_pipe->stream->timing.v_total -
669 							vblank_pipe->stream->timing.v_front_porch;
670 	pipe_data->pipe_config.vblank_data.vtotal = vblank_pipe->stream->timing.v_total;
671 	pipe_data->pipe_config.vblank_data.htotal = vblank_pipe->stream->timing.h_total;
672 	pipe_data->pipe_config.vblank_data.vblank_pipe_index = vblank_pipe->pipe_idx;
673 	pipe_data->pipe_config.vblank_data.vstartup_start = vblank_pipe->pipe_dlg_param.vstartup_start;
674 	pipe_data->pipe_config.vblank_data.vblank_end =
675 			vblank_pipe->stream->timing.v_total - vblank_pipe->stream->timing.v_front_porch - vblank_pipe->stream->timing.v_addressable;
676 
677 	if (vblank_pipe->stream->ignore_msa_timing_param &&
678 		(vblank_pipe->stream->allow_freesync || vblank_pipe->stream->vrr_active_variable || vblank_pipe->stream->vrr_active_fixed))
679 		populate_subvp_cmd_drr_info(dc, context, pipe, vblank_pipe, pipe_data);
680 }
681 
682 /**
683  * update_subvp_prefetch_end_to_mall_start - Helper for SubVP + SubVP case
684  *
685  * @dc: [in] current dc state
686  * @context: [in] new dc state
687  * @cmd: [in] DMUB cmd to be populated with SubVP info
688  * @subvp_pipes: [in] Array of SubVP pipes (should always be length 2)
689  *
690  * For SubVP + SubVP, we use a single vertical interrupt to start the
691  * microschedule for both SubVP pipes. In order for this to work correctly, the
692  * MALL REGION of both SubVP pipes must start at the same time. This function
693  * lengthens the prefetch end to mall start delay of the SubVP pipe that has
694  * the shorter prefetch so that both MALL REGION's will start at the same time.
695  */
696 static void update_subvp_prefetch_end_to_mall_start(struct dc *dc,
697 		struct dc_state *context,
698 		union dmub_rb_cmd *cmd,
699 		struct pipe_ctx *subvp_pipes[])
700 {
701 	uint32_t subvp0_prefetch_us = 0;
702 	uint32_t subvp1_prefetch_us = 0;
703 	uint32_t prefetch_delta_us = 0;
704 	struct dc_stream_state *phantom_stream0 = NULL;
705 	struct dc_stream_state *phantom_stream1 = NULL;
706 	struct dc_crtc_timing *phantom_timing0 = NULL;
707 	struct dc_crtc_timing *phantom_timing1 = NULL;
708 	struct dmub_cmd_fw_assisted_mclk_switch_pipe_data_v2 *pipe_data = NULL;
709 
710 	phantom_stream0 = dc_state_get_paired_subvp_stream(context, subvp_pipes[0]->stream);
711 	if (!phantom_stream0)
712 		return;
713 
714 	phantom_stream1 = dc_state_get_paired_subvp_stream(context, subvp_pipes[1]->stream);
715 	if (!phantom_stream1)
716 		return;
717 
718 	phantom_timing0 = &phantom_stream0->timing;
719 	phantom_timing1 = &phantom_stream1->timing;
720 
721 	subvp0_prefetch_us = div64_u64(((uint64_t)(phantom_timing0->v_total - phantom_timing0->v_front_porch) *
722 			(uint64_t)phantom_timing0->h_total * 1000000),
723 			(((uint64_t)phantom_timing0->pix_clk_100hz * 100) + dc->caps.subvp_prefetch_end_to_mall_start_us));
724 	subvp1_prefetch_us = div64_u64(((uint64_t)(phantom_timing1->v_total - phantom_timing1->v_front_porch) *
725 			(uint64_t)phantom_timing1->h_total * 1000000),
726 			(((uint64_t)phantom_timing1->pix_clk_100hz * 100) + dc->caps.subvp_prefetch_end_to_mall_start_us));
727 
728 	// Whichever SubVP PIPE has the smaller prefetch (including the prefetch end to mall start time)
729 	// should increase it's prefetch time to match the other
730 	if (subvp0_prefetch_us > subvp1_prefetch_us) {
731 		pipe_data = &cmd->fw_assisted_mclk_switch_v2.config_data.pipe_data[1];
732 		prefetch_delta_us = subvp0_prefetch_us - subvp1_prefetch_us;
733 		pipe_data->pipe_config.subvp_data.prefetch_to_mall_start_lines =
734 				div64_u64(((uint64_t)(dc->caps.subvp_prefetch_end_to_mall_start_us + prefetch_delta_us) *
735 					((uint64_t)phantom_timing1->pix_clk_100hz * 100) + ((uint64_t)phantom_timing1->h_total * 1000000 - 1)),
736 					((uint64_t)phantom_timing1->h_total * 1000000));
737 
738 	} else if (subvp1_prefetch_us >  subvp0_prefetch_us) {
739 		pipe_data = &cmd->fw_assisted_mclk_switch_v2.config_data.pipe_data[0];
740 		prefetch_delta_us = subvp1_prefetch_us - subvp0_prefetch_us;
741 		pipe_data->pipe_config.subvp_data.prefetch_to_mall_start_lines =
742 				div64_u64(((uint64_t)(dc->caps.subvp_prefetch_end_to_mall_start_us + prefetch_delta_us) *
743 					((uint64_t)phantom_timing0->pix_clk_100hz * 100) + ((uint64_t)phantom_timing0->h_total * 1000000 - 1)),
744 					((uint64_t)phantom_timing0->h_total * 1000000));
745 	}
746 }
747 
748 /**
749  * populate_subvp_cmd_pipe_info - Helper to populate the SubVP pipe info for the DMUB subvp command
750  *
751  * @dc: [in] current dc state
752  * @context: [in] new dc state
753  * @cmd: [in] DMUB cmd to be populated with SubVP info
754  * @subvp_pipe: [in] pipe_ctx for the SubVP pipe
755  * @cmd_pipe_index: [in] index for the pipe array in DMCUB SubVP cmd
756  *
757  * Populate the DMCUB SubVP command with SubVP pipe info. All the information
758  * required to calculate the microschedule for the SubVP pipe is stored in the
759  * pipe_data of the DMCUB SubVP command.
760  */
761 static void populate_subvp_cmd_pipe_info(struct dc *dc,
762 		struct dc_state *context,
763 		union dmub_rb_cmd *cmd,
764 		struct pipe_ctx *subvp_pipe,
765 		uint8_t cmd_pipe_index)
766 {
767 	uint32_t j;
768 	struct dmub_cmd_fw_assisted_mclk_switch_pipe_data_v2 *pipe_data =
769 			&cmd->fw_assisted_mclk_switch_v2.config_data.pipe_data[cmd_pipe_index];
770 	struct dc_stream_state *phantom_stream = dc_state_get_paired_subvp_stream(context, subvp_pipe->stream);
771 	struct dc_crtc_timing *main_timing = &subvp_pipe->stream->timing;
772 	struct dc_crtc_timing *phantom_timing;
773 	uint32_t out_num_stream, out_den_stream, out_num_plane, out_den_plane, out_num, out_den;
774 
775 	if (!phantom_stream)
776 		return;
777 
778 	phantom_timing = &phantom_stream->timing;
779 
780 	pipe_data->mode = SUBVP;
781 	pipe_data->pipe_config.subvp_data.pix_clk_100hz = subvp_pipe->stream->timing.pix_clk_100hz;
782 	pipe_data->pipe_config.subvp_data.htotal = subvp_pipe->stream->timing.h_total;
783 	pipe_data->pipe_config.subvp_data.vtotal = subvp_pipe->stream->timing.v_total;
784 	pipe_data->pipe_config.subvp_data.main_vblank_start =
785 			main_timing->v_total - main_timing->v_front_porch;
786 	pipe_data->pipe_config.subvp_data.main_vblank_end =
787 			main_timing->v_total - main_timing->v_front_porch - main_timing->v_addressable;
788 	pipe_data->pipe_config.subvp_data.mall_region_lines = phantom_timing->v_addressable;
789 	pipe_data->pipe_config.subvp_data.main_pipe_index = subvp_pipe->stream_res.tg->inst;
790 	pipe_data->pipe_config.subvp_data.is_drr = subvp_pipe->stream->ignore_msa_timing_param &&
791 		(subvp_pipe->stream->allow_freesync || subvp_pipe->stream->vrr_active_variable || subvp_pipe->stream->vrr_active_fixed);
792 
793 	/* Calculate the scaling factor from the src and dst height.
794 	 * e.g. If 3840x2160 being downscaled to 1920x1080, the scaling factor is 1/2.
795 	 * Reduce the fraction 1080/2160 = 1/2 for the "scaling factor"
796 	 *
797 	 * Make sure to combine stream and plane scaling together.
798 	 */
799 	reduce_fraction(subvp_pipe->stream->src.height, subvp_pipe->stream->dst.height,
800 			&out_num_stream, &out_den_stream);
801 	reduce_fraction(subvp_pipe->plane_state->src_rect.height, subvp_pipe->plane_state->dst_rect.height,
802 			&out_num_plane, &out_den_plane);
803 	reduce_fraction(out_num_stream * out_num_plane, out_den_stream * out_den_plane, &out_num, &out_den);
804 	pipe_data->pipe_config.subvp_data.scale_factor_numerator = out_num;
805 	pipe_data->pipe_config.subvp_data.scale_factor_denominator = out_den;
806 
807 	// Prefetch lines is equal to VACTIVE + BP + VSYNC
808 	pipe_data->pipe_config.subvp_data.prefetch_lines =
809 			phantom_timing->v_total - phantom_timing->v_front_porch;
810 
811 	// Round up
812 	pipe_data->pipe_config.subvp_data.prefetch_to_mall_start_lines =
813 			div64_u64(((uint64_t)dc->caps.subvp_prefetch_end_to_mall_start_us * ((uint64_t)phantom_timing->pix_clk_100hz * 100) +
814 					((uint64_t)phantom_timing->h_total * 1000000 - 1)), ((uint64_t)phantom_timing->h_total * 1000000));
815 	pipe_data->pipe_config.subvp_data.processing_delay_lines =
816 			div64_u64(((uint64_t)(dc->caps.subvp_fw_processing_delay_us) * ((uint64_t)phantom_timing->pix_clk_100hz * 100) +
817 					((uint64_t)phantom_timing->h_total * 1000000 - 1)), ((uint64_t)phantom_timing->h_total * 1000000));
818 
819 	if (subvp_pipe->bottom_pipe) {
820 		pipe_data->pipe_config.subvp_data.main_split_pipe_index = subvp_pipe->bottom_pipe->pipe_idx;
821 	} else if (subvp_pipe->next_odm_pipe) {
822 		pipe_data->pipe_config.subvp_data.main_split_pipe_index = subvp_pipe->next_odm_pipe->pipe_idx;
823 	} else {
824 		pipe_data->pipe_config.subvp_data.main_split_pipe_index = 0xF;
825 	}
826 
827 	// Find phantom pipe index based on phantom stream
828 	for (j = 0; j < dc->res_pool->pipe_count; j++) {
829 		struct pipe_ctx *phantom_pipe = &context->res_ctx.pipe_ctx[j];
830 
831 		if (resource_is_pipe_type(phantom_pipe, OTG_MASTER) &&
832 				phantom_pipe->stream == dc_state_get_paired_subvp_stream(context, subvp_pipe->stream)) {
833 			pipe_data->pipe_config.subvp_data.phantom_pipe_index = phantom_pipe->stream_res.tg->inst;
834 			if (phantom_pipe->bottom_pipe) {
835 				pipe_data->pipe_config.subvp_data.phantom_split_pipe_index = phantom_pipe->bottom_pipe->plane_res.hubp->inst;
836 			} else if (phantom_pipe->next_odm_pipe) {
837 				pipe_data->pipe_config.subvp_data.phantom_split_pipe_index = phantom_pipe->next_odm_pipe->plane_res.hubp->inst;
838 			} else {
839 				pipe_data->pipe_config.subvp_data.phantom_split_pipe_index = 0xF;
840 			}
841 			break;
842 		}
843 	}
844 }
845 
846 /**
847  * dc_dmub_setup_subvp_dmub_command - Populate the DMCUB SubVP command
848  *
849  * @dc: [in] current dc state
850  * @context: [in] new dc state
851  * @enable: [in] if true enables the pipes population
852  *
853  * This function loops through each pipe and populates the DMUB SubVP CMD info
854  * based on the pipe (e.g. SubVP, VBLANK).
855  */
856 void dc_dmub_setup_subvp_dmub_command(struct dc *dc,
857 		struct dc_state *context,
858 		bool enable)
859 {
860 	uint8_t cmd_pipe_index = 0;
861 	uint32_t i, pipe_idx;
862 	uint8_t subvp_count = 0;
863 	union dmub_rb_cmd cmd;
864 	struct pipe_ctx *subvp_pipes[2];
865 	uint32_t wm_val_refclk = 0;
866 	enum mall_stream_type pipe_mall_type;
867 
868 	memset(&cmd, 0, sizeof(cmd));
869 	// FW command for SUBVP
870 	cmd.fw_assisted_mclk_switch_v2.header.type = DMUB_CMD__FW_ASSISTED_MCLK_SWITCH;
871 	cmd.fw_assisted_mclk_switch_v2.header.sub_type = DMUB_CMD__HANDLE_SUBVP_CMD;
872 	cmd.fw_assisted_mclk_switch_v2.header.payload_bytes =
873 			sizeof(cmd.fw_assisted_mclk_switch_v2) - sizeof(cmd.fw_assisted_mclk_switch_v2.header);
874 
875 	for (i = 0; i < dc->res_pool->pipe_count; i++) {
876 		struct pipe_ctx *pipe = &context->res_ctx.pipe_ctx[i];
877 
878 		/* For SubVP pipe count, only count the top most (ODM / MPC) pipe
879 		 */
880 		if (resource_is_pipe_type(pipe, OTG_MASTER) &&
881 				resource_is_pipe_type(pipe, DPP_PIPE) &&
882 				dc_state_get_pipe_subvp_type(context, pipe) == SUBVP_MAIN)
883 			subvp_pipes[subvp_count++] = pipe;
884 	}
885 
886 	if (enable) {
887 		// For each pipe that is a "main" SUBVP pipe, fill in pipe data for DMUB SUBVP cmd
888 		for (i = 0, pipe_idx = 0; i < dc->res_pool->pipe_count; i++) {
889 			struct pipe_ctx *pipe = &context->res_ctx.pipe_ctx[i];
890 			pipe_mall_type = dc_state_get_pipe_subvp_type(context, pipe);
891 
892 			if (!pipe->stream)
893 				continue;
894 
895 			/* When populating subvp cmd info, only pass in the top most (ODM / MPC) pipe.
896 			 * Any ODM or MPC splits being used in SubVP will be handled internally in
897 			 * populate_subvp_cmd_pipe_info
898 			 */
899 			if (resource_is_pipe_type(pipe, OTG_MASTER) &&
900 					resource_is_pipe_type(pipe, DPP_PIPE) &&
901 					pipe_mall_type == SUBVP_MAIN) {
902 				populate_subvp_cmd_pipe_info(dc, context, &cmd, pipe, cmd_pipe_index++);
903 			} else if (resource_is_pipe_type(pipe, OTG_MASTER) &&
904 					resource_is_pipe_type(pipe, DPP_PIPE) &&
905 					pipe_mall_type == SUBVP_NONE) {
906 				// Don't need to check for ActiveDRAMClockChangeMargin < 0, not valid in cases where
907 				// we run through DML without calculating "natural" P-state support
908 				populate_subvp_cmd_vblank_pipe_info(dc, context, &cmd, pipe, cmd_pipe_index++);
909 
910 			}
911 			pipe_idx++;
912 		}
913 		if (subvp_count == 2) {
914 			update_subvp_prefetch_end_to_mall_start(dc, context, &cmd, subvp_pipes);
915 		}
916 		cmd.fw_assisted_mclk_switch_v2.config_data.pstate_allow_width_us = dc->caps.subvp_pstate_allow_width_us;
917 		cmd.fw_assisted_mclk_switch_v2.config_data.vertical_int_margin_us = dc->caps.subvp_vertical_int_margin_us;
918 
919 		// Store the original watermark value for this SubVP config so we can lower it when the
920 		// MCLK switch starts
921 		wm_val_refclk = context->bw_ctx.bw.dcn.watermarks.a.cstate_pstate.pstate_change_ns *
922 				(dc->res_pool->ref_clocks.dchub_ref_clock_inKhz / 1000) / 1000;
923 
924 		cmd.fw_assisted_mclk_switch_v2.config_data.watermark_a_cache = wm_val_refclk < 0xFFFF ? wm_val_refclk : 0xFFFF;
925 	}
926 
927 	dc_wake_and_execute_dmub_cmd(dc->ctx, &cmd, DM_DMUB_WAIT_TYPE_WAIT);
928 }
929 
930 bool dc_dmub_srv_get_diagnostic_data(struct dc_dmub_srv *dc_dmub_srv, struct dmub_diagnostic_data *diag_data)
931 {
932 	if (!dc_dmub_srv || !dc_dmub_srv->dmub || !diag_data)
933 		return false;
934 	return dmub_srv_get_diagnostic_data(dc_dmub_srv->dmub, diag_data);
935 }
936 
937 void dc_dmub_srv_log_diagnostic_data(struct dc_dmub_srv *dc_dmub_srv)
938 {
939 	struct dmub_diagnostic_data diag_data = {0};
940 	uint32_t i;
941 
942 	if (!dc_dmub_srv || !dc_dmub_srv->dmub) {
943 		DC_LOG_ERROR("%s: invalid parameters.", __func__);
944 		return;
945 	}
946 
947 	DC_LOG_ERROR("%s: DMCUB error - collecting diagnostic data\n", __func__);
948 
949 	if (!dc_dmub_srv_get_diagnostic_data(dc_dmub_srv, &diag_data)) {
950 		DC_LOG_ERROR("%s: dc_dmub_srv_get_diagnostic_data failed.", __func__);
951 		return;
952 	}
953 
954 	DC_LOG_DEBUG("DMCUB STATE:");
955 	DC_LOG_DEBUG("    dmcub_version      : %08x", diag_data.dmcub_version);
956 	DC_LOG_DEBUG("    scratch  [0]       : %08x", diag_data.scratch[0]);
957 	DC_LOG_DEBUG("    scratch  [1]       : %08x", diag_data.scratch[1]);
958 	DC_LOG_DEBUG("    scratch  [2]       : %08x", diag_data.scratch[2]);
959 	DC_LOG_DEBUG("    scratch  [3]       : %08x", diag_data.scratch[3]);
960 	DC_LOG_DEBUG("    scratch  [4]       : %08x", diag_data.scratch[4]);
961 	DC_LOG_DEBUG("    scratch  [5]       : %08x", diag_data.scratch[5]);
962 	DC_LOG_DEBUG("    scratch  [6]       : %08x", diag_data.scratch[6]);
963 	DC_LOG_DEBUG("    scratch  [7]       : %08x", diag_data.scratch[7]);
964 	DC_LOG_DEBUG("    scratch  [8]       : %08x", diag_data.scratch[8]);
965 	DC_LOG_DEBUG("    scratch  [9]       : %08x", diag_data.scratch[9]);
966 	DC_LOG_DEBUG("    scratch [10]       : %08x", diag_data.scratch[10]);
967 	DC_LOG_DEBUG("    scratch [11]       : %08x", diag_data.scratch[11]);
968 	DC_LOG_DEBUG("    scratch [12]       : %08x", diag_data.scratch[12]);
969 	DC_LOG_DEBUG("    scratch [13]       : %08x", diag_data.scratch[13]);
970 	DC_LOG_DEBUG("    scratch [14]       : %08x", diag_data.scratch[14]);
971 	DC_LOG_DEBUG("    scratch [15]       : %08x", diag_data.scratch[15]);
972 	for (i = 0; i < DMUB_PC_SNAPSHOT_COUNT; i++)
973 		DC_LOG_DEBUG("    pc[%d]             : %08x", i, diag_data.pc[i]);
974 	DC_LOG_DEBUG("    unk_fault_addr     : %08x", diag_data.undefined_address_fault_addr);
975 	DC_LOG_DEBUG("    inst_fault_addr    : %08x", diag_data.inst_fetch_fault_addr);
976 	DC_LOG_DEBUG("    data_fault_addr    : %08x", diag_data.data_write_fault_addr);
977 	DC_LOG_DEBUG("    inbox1_rptr        : %08x", diag_data.inbox1_rptr);
978 	DC_LOG_DEBUG("    inbox1_wptr        : %08x", diag_data.inbox1_wptr);
979 	DC_LOG_DEBUG("    inbox1_size        : %08x", diag_data.inbox1_size);
980 	DC_LOG_DEBUG("    inbox0_rptr        : %08x", diag_data.inbox0_rptr);
981 	DC_LOG_DEBUG("    inbox0_wptr        : %08x", diag_data.inbox0_wptr);
982 	DC_LOG_DEBUG("    inbox0_size        : %08x", diag_data.inbox0_size);
983 	DC_LOG_DEBUG("    outbox1_rptr       : %08x", diag_data.outbox1_rptr);
984 	DC_LOG_DEBUG("    outbox1_wptr       : %08x", diag_data.outbox1_wptr);
985 	DC_LOG_DEBUG("    outbox1_size       : %08x", diag_data.outbox1_size);
986 	DC_LOG_DEBUG("    is_enabled         : %d", diag_data.is_dmcub_enabled);
987 	DC_LOG_DEBUG("    is_soft_reset      : %d", diag_data.is_dmcub_soft_reset);
988 	DC_LOG_DEBUG("    is_secure_reset    : %d", diag_data.is_dmcub_secure_reset);
989 	DC_LOG_DEBUG("    is_traceport_en    : %d", diag_data.is_traceport_en);
990 	DC_LOG_DEBUG("    is_cw0_en          : %d", diag_data.is_cw0_enabled);
991 	DC_LOG_DEBUG("    is_cw6_en          : %d", diag_data.is_cw6_enabled);
992 }
993 
994 static bool dc_can_pipe_disable_cursor(struct pipe_ctx *pipe_ctx)
995 {
996 	struct pipe_ctx *test_pipe, *split_pipe;
997 	const struct scaler_data *scl_data = &pipe_ctx->plane_res.scl_data;
998 	struct rect r1 = scl_data->recout, r2, r2_half;
999 	int r1_r = r1.x + r1.width, r1_b = r1.y + r1.height, r2_r, r2_b;
1000 	int cur_layer = pipe_ctx->plane_state->layer_index;
1001 
1002 	/**
1003 	 * Disable the cursor if there's another pipe above this with a
1004 	 * plane that contains this pipe's viewport to prevent double cursor
1005 	 * and incorrect scaling artifacts.
1006 	 */
1007 	for (test_pipe = pipe_ctx->top_pipe; test_pipe;
1008 	     test_pipe = test_pipe->top_pipe) {
1009 		// Skip invisible layer and pipe-split plane on same layer
1010 		if (!test_pipe->plane_state->visible || test_pipe->plane_state->layer_index == cur_layer)
1011 			continue;
1012 
1013 		r2 = test_pipe->plane_res.scl_data.recout;
1014 		r2_r = r2.x + r2.width;
1015 		r2_b = r2.y + r2.height;
1016 		split_pipe = test_pipe;
1017 
1018 		/**
1019 		 * There is another half plane on same layer because of
1020 		 * pipe-split, merge together per same height.
1021 		 */
1022 		for (split_pipe = pipe_ctx->top_pipe; split_pipe;
1023 		     split_pipe = split_pipe->top_pipe)
1024 			if (split_pipe->plane_state->layer_index == test_pipe->plane_state->layer_index) {
1025 				r2_half = split_pipe->plane_res.scl_data.recout;
1026 				r2.x = (r2_half.x < r2.x) ? r2_half.x : r2.x;
1027 				r2.width = r2.width + r2_half.width;
1028 				r2_r = r2.x + r2.width;
1029 				break;
1030 			}
1031 
1032 		if (r1.x >= r2.x && r1.y >= r2.y && r1_r <= r2_r && r1_b <= r2_b)
1033 			return true;
1034 	}
1035 
1036 	return false;
1037 }
1038 
1039 static bool dc_dmub_should_update_cursor_data(struct pipe_ctx *pipe_ctx)
1040 {
1041 	if (pipe_ctx->plane_state != NULL) {
1042 		if (pipe_ctx->plane_state->address.type == PLN_ADDR_TYPE_VIDEO_PROGRESSIVE)
1043 			return false;
1044 
1045 		if (dc_can_pipe_disable_cursor(pipe_ctx))
1046 			return false;
1047 	}
1048 
1049 	if ((pipe_ctx->stream->link->psr_settings.psr_version == DC_PSR_VERSION_SU_1 ||
1050 		pipe_ctx->stream->link->psr_settings.psr_version == DC_PSR_VERSION_1) &&
1051 		pipe_ctx->stream->ctx->dce_version >= DCN_VERSION_3_1)
1052 		return true;
1053 
1054 	if (pipe_ctx->stream->link->replay_settings.config.replay_supported)
1055 		return true;
1056 
1057 	return false;
1058 }
1059 
1060 static void dc_build_cursor_update_payload0(
1061 		struct pipe_ctx *pipe_ctx, uint8_t p_idx,
1062 		struct dmub_cmd_update_cursor_payload0 *payload)
1063 {
1064 	struct hubp *hubp = pipe_ctx->plane_res.hubp;
1065 	unsigned int panel_inst = 0;
1066 
1067 	if (!dc_get_edp_link_panel_inst(hubp->ctx->dc,
1068 		pipe_ctx->stream->link, &panel_inst))
1069 		return;
1070 
1071 	/* Payload: Cursor Rect is built from position & attribute
1072 	 * x & y are obtained from postion
1073 	 */
1074 	payload->cursor_rect.x = hubp->cur_rect.x;
1075 	payload->cursor_rect.y = hubp->cur_rect.y;
1076 	/* w & h are obtained from attribute */
1077 	payload->cursor_rect.width  = hubp->cur_rect.w;
1078 	payload->cursor_rect.height = hubp->cur_rect.h;
1079 
1080 	payload->enable      = hubp->pos.cur_ctl.bits.cur_enable;
1081 	payload->pipe_idx    = p_idx;
1082 	payload->cmd_version = DMUB_CMD_PSR_CONTROL_VERSION_1;
1083 	payload->panel_inst  = panel_inst;
1084 }
1085 
1086 static void dc_build_cursor_position_update_payload0(
1087 		struct dmub_cmd_update_cursor_payload0 *pl, const uint8_t p_idx,
1088 		const struct hubp *hubp, const struct dpp *dpp)
1089 {
1090 	/* Hubp */
1091 	pl->position_cfg.pHubp.cur_ctl.raw  = hubp->pos.cur_ctl.raw;
1092 	pl->position_cfg.pHubp.position.raw = hubp->pos.position.raw;
1093 	pl->position_cfg.pHubp.hot_spot.raw = hubp->pos.hot_spot.raw;
1094 	pl->position_cfg.pHubp.dst_offset.raw = hubp->pos.dst_offset.raw;
1095 
1096 	/* dpp */
1097 	pl->position_cfg.pDpp.cur0_ctl.raw = dpp->pos.cur0_ctl.raw;
1098 	pl->position_cfg.pipe_idx = p_idx;
1099 }
1100 
1101 static void dc_build_cursor_attribute_update_payload1(
1102 		struct dmub_cursor_attributes_cfg *pl_A, const uint8_t p_idx,
1103 		const struct hubp *hubp, const struct dpp *dpp)
1104 {
1105 	/* Hubp */
1106 	pl_A->aHubp.SURFACE_ADDR_HIGH = hubp->att.SURFACE_ADDR_HIGH;
1107 	pl_A->aHubp.SURFACE_ADDR = hubp->att.SURFACE_ADDR;
1108 	pl_A->aHubp.cur_ctl.raw  = hubp->att.cur_ctl.raw;
1109 	pl_A->aHubp.size.raw     = hubp->att.size.raw;
1110 	pl_A->aHubp.settings.raw = hubp->att.settings.raw;
1111 
1112 	/* dpp */
1113 	pl_A->aDpp.cur0_ctl.raw = dpp->att.cur0_ctl.raw;
1114 }
1115 
1116 /**
1117  * dc_send_update_cursor_info_to_dmu - Populate the DMCUB Cursor update info command
1118  *
1119  * @pCtx: [in] pipe context
1120  * @pipe_idx: [in] pipe index
1121  *
1122  * This function would store the cursor related information and pass it into
1123  * dmub
1124  */
1125 void dc_send_update_cursor_info_to_dmu(
1126 		struct pipe_ctx *pCtx, uint8_t pipe_idx)
1127 {
1128 	union dmub_rb_cmd cmd[2];
1129 	union dmub_cmd_update_cursor_info_data *update_cursor_info_0 =
1130 					&cmd[0].update_cursor_info.update_cursor_info_data;
1131 
1132 	memset(cmd, 0, sizeof(cmd));
1133 
1134 	if (!dc_dmub_should_update_cursor_data(pCtx))
1135 		return;
1136 	/*
1137 	 * Since we use multi_cmd_pending for dmub command, the 2nd command is
1138 	 * only assigned to store cursor attributes info.
1139 	 * 1st command can view as 2 parts, 1st is for PSR/Replay data, the other
1140 	 * is to store cursor position info.
1141 	 *
1142 	 * Command heaer type must be the same type if using  multi_cmd_pending.
1143 	 * Besides, while process 2nd command in DMU, the sub type is useless.
1144 	 * So it's meanless to pass the sub type header with different type.
1145 	 */
1146 
1147 	{
1148 		/* Build Payload#0 Header */
1149 		cmd[0].update_cursor_info.header.type = DMUB_CMD__UPDATE_CURSOR_INFO;
1150 		cmd[0].update_cursor_info.header.payload_bytes =
1151 				sizeof(cmd[0].update_cursor_info.update_cursor_info_data);
1152 		cmd[0].update_cursor_info.header.multi_cmd_pending = 1; //To combine multi dmu cmd, 1st cmd
1153 
1154 		/* Prepare Payload */
1155 		dc_build_cursor_update_payload0(pCtx, pipe_idx, &update_cursor_info_0->payload0);
1156 
1157 		dc_build_cursor_position_update_payload0(&update_cursor_info_0->payload0, pipe_idx,
1158 				pCtx->plane_res.hubp, pCtx->plane_res.dpp);
1159 		}
1160 	{
1161 		/* Build Payload#1 Header */
1162 		cmd[1].update_cursor_info.header.type = DMUB_CMD__UPDATE_CURSOR_INFO;
1163 		cmd[1].update_cursor_info.header.payload_bytes = sizeof(struct cursor_attributes_cfg);
1164 		cmd[1].update_cursor_info.header.multi_cmd_pending = 0; //Indicate it's the last command.
1165 
1166 		dc_build_cursor_attribute_update_payload1(
1167 				&cmd[1].update_cursor_info.update_cursor_info_data.payload1.attribute_cfg,
1168 				pipe_idx, pCtx->plane_res.hubp, pCtx->plane_res.dpp);
1169 
1170 		/* Combine 2nd cmds update_curosr_info to DMU */
1171 		dc_wake_and_execute_dmub_cmd_list(pCtx->stream->ctx, 2, cmd, DM_DMUB_WAIT_TYPE_WAIT);
1172 	}
1173 }
1174 
1175 bool dc_dmub_check_min_version(struct dmub_srv *srv)
1176 {
1177 	if (!srv->hw_funcs.is_psrsu_supported)
1178 		return true;
1179 	return srv->hw_funcs.is_psrsu_supported(srv);
1180 }
1181 
1182 void dc_dmub_srv_enable_dpia_trace(const struct dc *dc)
1183 {
1184 	struct dc_dmub_srv *dc_dmub_srv = dc->ctx->dmub_srv;
1185 
1186 	if (!dc_dmub_srv || !dc_dmub_srv->dmub) {
1187 		DC_LOG_ERROR("%s: invalid parameters.", __func__);
1188 		return;
1189 	}
1190 
1191 	if (!dc_wake_and_execute_gpint(dc->ctx, DMUB_GPINT__SET_TRACE_BUFFER_MASK_WORD1,
1192 				       0x0010, NULL, DM_DMUB_WAIT_TYPE_WAIT)) {
1193 		DC_LOG_ERROR("timeout updating trace buffer mask word\n");
1194 		return;
1195 	}
1196 
1197 	if (!dc_wake_and_execute_gpint(dc->ctx, DMUB_GPINT__UPDATE_TRACE_BUFFER_MASK,
1198 				       0x0000, NULL, DM_DMUB_WAIT_TYPE_WAIT)) {
1199 		DC_LOG_ERROR("timeout updating trace buffer mask word\n");
1200 		return;
1201 	}
1202 
1203 	DC_LOG_DEBUG("Enabled DPIA trace\n");
1204 }
1205 
1206 void dc_dmub_srv_subvp_save_surf_addr(const struct dc_dmub_srv *dc_dmub_srv, const struct dc_plane_address *addr, uint8_t subvp_index)
1207 {
1208 	dmub_srv_subvp_save_surf_addr(dc_dmub_srv->dmub, addr, subvp_index);
1209 }
1210 
1211 bool dc_dmub_srv_is_hw_pwr_up(struct dc_dmub_srv *dc_dmub_srv, bool wait)
1212 {
1213 	struct dc_context *dc_ctx;
1214 	enum dmub_status status;
1215 
1216 	if (!dc_dmub_srv || !dc_dmub_srv->dmub)
1217 		return true;
1218 
1219 	if (dc_dmub_srv->ctx->dc->debug.dmcub_emulation)
1220 		return true;
1221 
1222 	dc_ctx = dc_dmub_srv->ctx;
1223 
1224 	if (wait) {
1225 		if (dc_dmub_srv->ctx->dc->debug.disable_timeout) {
1226 			do {
1227 				status = dmub_srv_wait_for_hw_pwr_up(dc_dmub_srv->dmub, 500000);
1228 			} while (status != DMUB_STATUS_OK);
1229 		} else {
1230 			status = dmub_srv_wait_for_hw_pwr_up(dc_dmub_srv->dmub, 500000);
1231 			if (status != DMUB_STATUS_OK) {
1232 				DC_ERROR("Error querying DMUB hw power up status: error=%d\n", status);
1233 				return false;
1234 			}
1235 		}
1236 	} else
1237 		return dmub_srv_is_hw_pwr_up(dc_dmub_srv->dmub);
1238 
1239 	return true;
1240 }
1241 
1242 static int count_active_streams(const struct dc *dc)
1243 {
1244 	int i, count = 0;
1245 
1246 	for (i = 0; i < dc->current_state->stream_count; ++i) {
1247 		struct dc_stream_state *stream = dc->current_state->streams[i];
1248 
1249 		if (stream && !stream->dpms_off)
1250 			count += 1;
1251 	}
1252 
1253 	return count;
1254 }
1255 
1256 static void dc_dmub_srv_notify_idle(const struct dc *dc, bool allow_idle)
1257 {
1258 	volatile const struct dmub_shared_state_ips_fw *ips_fw;
1259 	struct dc_dmub_srv *dc_dmub_srv;
1260 	union dmub_rb_cmd cmd = {0};
1261 
1262 	if (dc->debug.dmcub_emulation)
1263 		return;
1264 
1265 	if (!dc->ctx->dmub_srv || !dc->ctx->dmub_srv->dmub)
1266 		return;
1267 
1268 	dc_dmub_srv = dc->ctx->dmub_srv;
1269 	ips_fw = &dc_dmub_srv->dmub->shared_state[DMUB_SHARED_SHARE_FEATURE__IPS_FW].data.ips_fw;
1270 
1271 	memset(&cmd, 0, sizeof(cmd));
1272 	cmd.idle_opt_notify_idle.header.type = DMUB_CMD__IDLE_OPT;
1273 	cmd.idle_opt_notify_idle.header.sub_type = DMUB_CMD__IDLE_OPT_DCN_NOTIFY_IDLE;
1274 	cmd.idle_opt_notify_idle.header.payload_bytes =
1275 		sizeof(cmd.idle_opt_notify_idle) -
1276 		sizeof(cmd.idle_opt_notify_idle.header);
1277 
1278 	cmd.idle_opt_notify_idle.cntl_data.driver_idle = allow_idle;
1279 
1280 	if (dc->work_arounds.skip_psr_ips_crtc_disable)
1281 		cmd.idle_opt_notify_idle.cntl_data.skip_otg_disable = true;
1282 
1283 	if (allow_idle) {
1284 		volatile struct dmub_shared_state_ips_driver *ips_driver =
1285 			&dc_dmub_srv->dmub->shared_state[DMUB_SHARED_SHARE_FEATURE__IPS_DRIVER].data.ips_driver;
1286 		union dmub_shared_state_ips_driver_signals new_signals;
1287 
1288 		DC_LOG_IPS(
1289 			"%s wait idle (ips1_commit=%u ips2_commit=%u)",
1290 			__func__,
1291 			ips_fw->signals.bits.ips1_commit,
1292 			ips_fw->signals.bits.ips2_commit);
1293 
1294 		dc_dmub_srv_wait_idle(dc->ctx->dmub_srv);
1295 
1296 		memset(&new_signals, 0, sizeof(new_signals));
1297 
1298 		new_signals.bits.allow_idle = 1; /* always set */
1299 
1300 		if (dc->config.disable_ips == DMUB_IPS_ENABLE ||
1301 		    dc->config.disable_ips == DMUB_IPS_DISABLE_DYNAMIC) {
1302 			new_signals.bits.allow_pg = 1;
1303 			new_signals.bits.allow_ips1 = 1;
1304 			new_signals.bits.allow_ips2 = 1;
1305 			new_signals.bits.allow_z10 = 1;
1306 		} else if (dc->config.disable_ips == DMUB_IPS_DISABLE_IPS1) {
1307 			new_signals.bits.allow_ips1 = 1;
1308 		} else if (dc->config.disable_ips == DMUB_IPS_DISABLE_IPS2) {
1309 			new_signals.bits.allow_pg = 1;
1310 			new_signals.bits.allow_ips1 = 1;
1311 		} else if (dc->config.disable_ips == DMUB_IPS_DISABLE_IPS2_Z10) {
1312 			new_signals.bits.allow_pg = 1;
1313 			new_signals.bits.allow_ips1 = 1;
1314 			new_signals.bits.allow_ips2 = 1;
1315 		} else if (dc->config.disable_ips == DMUB_IPS_RCG_IN_ACTIVE_IPS2_IN_OFF) {
1316 			/* TODO: Move this logic out to hwseq */
1317 			if (count_active_streams(dc) == 0) {
1318 				/* IPS2 - Display off */
1319 				new_signals.bits.allow_pg = 1;
1320 				new_signals.bits.allow_ips1 = 1;
1321 				new_signals.bits.allow_ips2 = 1;
1322 				new_signals.bits.allow_z10 = 1;
1323 			} else {
1324 				/* RCG only */
1325 				new_signals.bits.allow_pg = 0;
1326 				new_signals.bits.allow_ips1 = 1;
1327 				new_signals.bits.allow_ips2 = 0;
1328 				new_signals.bits.allow_z10 = 0;
1329 			}
1330 		}
1331 
1332 		ips_driver->signals = new_signals;
1333 		dc_dmub_srv->driver_signals = ips_driver->signals;
1334 	}
1335 
1336 	DC_LOG_IPS(
1337 		"%s send allow_idle=%d (ips1_commit=%u ips2_commit=%u)",
1338 		__func__,
1339 		allow_idle,
1340 		ips_fw->signals.bits.ips1_commit,
1341 		ips_fw->signals.bits.ips2_commit);
1342 
1343 	/* NOTE: This does not use the "wake" interface since this is part of the wake path. */
1344 	/* We also do not perform a wait since DMCUB could enter idle after the notification. */
1345 	dm_execute_dmub_cmd(dc->ctx, &cmd, allow_idle ? DM_DMUB_WAIT_TYPE_NO_WAIT : DM_DMUB_WAIT_TYPE_WAIT);
1346 
1347 	/* Register access should stop at this point. */
1348 	if (allow_idle)
1349 		dc_dmub_srv->needs_idle_wake = true;
1350 }
1351 
1352 static void dc_dmub_srv_exit_low_power_state(const struct dc *dc)
1353 {
1354 	struct dc_dmub_srv *dc_dmub_srv;
1355 	uint32_t rcg_exit_count = 0, ips1_exit_count = 0, ips2_exit_count = 0;
1356 
1357 	if (dc->debug.dmcub_emulation)
1358 		return;
1359 
1360 	if (!dc->ctx->dmub_srv || !dc->ctx->dmub_srv->dmub)
1361 		return;
1362 
1363 	dc_dmub_srv = dc->ctx->dmub_srv;
1364 
1365 	if (dc->clk_mgr->funcs->exit_low_power_state) {
1366 		volatile const struct dmub_shared_state_ips_fw *ips_fw =
1367 			&dc_dmub_srv->dmub->shared_state[DMUB_SHARED_SHARE_FEATURE__IPS_FW].data.ips_fw;
1368 		volatile struct dmub_shared_state_ips_driver *ips_driver =
1369 			&dc_dmub_srv->dmub->shared_state[DMUB_SHARED_SHARE_FEATURE__IPS_DRIVER].data.ips_driver;
1370 		union dmub_shared_state_ips_driver_signals prev_driver_signals = ips_driver->signals;
1371 
1372 		rcg_exit_count = ips_fw->rcg_exit_count;
1373 		ips1_exit_count = ips_fw->ips1_exit_count;
1374 		ips2_exit_count = ips_fw->ips2_exit_count;
1375 
1376 		ips_driver->signals.all = 0;
1377 		dc_dmub_srv->driver_signals = ips_driver->signals;
1378 
1379 		DC_LOG_IPS(
1380 			"%s (allow ips1=%u ips2=%u) (commit ips1=%u ips2=%u) (count rcg=%u ips1=%u ips2=%u)",
1381 			__func__,
1382 			ips_driver->signals.bits.allow_ips1,
1383 			ips_driver->signals.bits.allow_ips2,
1384 			ips_fw->signals.bits.ips1_commit,
1385 			ips_fw->signals.bits.ips2_commit,
1386 			ips_fw->rcg_entry_count,
1387 			ips_fw->ips1_entry_count,
1388 			ips_fw->ips2_entry_count);
1389 
1390 		/* Note: register access has technically not resumed for DCN here, but we
1391 		 * need to be message PMFW through our standard register interface.
1392 		 */
1393 		dc_dmub_srv->needs_idle_wake = false;
1394 
1395 		if ((prev_driver_signals.bits.allow_ips2 || prev_driver_signals.all == 0) &&
1396 		    (!dc->debug.optimize_ips_handshake ||
1397 		     ips_fw->signals.bits.ips2_commit || !ips_fw->signals.bits.in_idle)) {
1398 			DC_LOG_IPS(
1399 				"wait IPS2 eval (ips1_commit=%u ips2_commit=%u)",
1400 				ips_fw->signals.bits.ips1_commit,
1401 				ips_fw->signals.bits.ips2_commit);
1402 
1403 			if (!dc->debug.optimize_ips_handshake || !ips_fw->signals.bits.ips2_commit)
1404 				udelay(dc->debug.ips2_eval_delay_us);
1405 
1406 			if (ips_fw->signals.bits.ips2_commit) {
1407 				DC_LOG_IPS(
1408 					"exit IPS2 #1 (ips1_commit=%u ips2_commit=%u)",
1409 					ips_fw->signals.bits.ips1_commit,
1410 					ips_fw->signals.bits.ips2_commit);
1411 
1412 				// Tell PMFW to exit low power state
1413 				dc->clk_mgr->funcs->exit_low_power_state(dc->clk_mgr);
1414 
1415 				DC_LOG_IPS(
1416 					"wait IPS2 entry delay (ips1_commit=%u ips2_commit=%u)",
1417 					ips_fw->signals.bits.ips1_commit,
1418 					ips_fw->signals.bits.ips2_commit);
1419 
1420 				// Wait for IPS2 entry upper bound
1421 				udelay(dc->debug.ips2_entry_delay_us);
1422 
1423 				DC_LOG_IPS(
1424 					"exit IPS2 #2 (ips1_commit=%u ips2_commit=%u)",
1425 					ips_fw->signals.bits.ips1_commit,
1426 					ips_fw->signals.bits.ips2_commit);
1427 
1428 				dc->clk_mgr->funcs->exit_low_power_state(dc->clk_mgr);
1429 
1430 				DC_LOG_IPS(
1431 					"wait IPS2 commit clear (ips1_commit=%u ips2_commit=%u)",
1432 					ips_fw->signals.bits.ips1_commit,
1433 					ips_fw->signals.bits.ips2_commit);
1434 
1435 				while (ips_fw->signals.bits.ips2_commit)
1436 					udelay(1);
1437 
1438 				DC_LOG_IPS(
1439 					"wait hw_pwr_up (ips1_commit=%u ips2_commit=%u)",
1440 					ips_fw->signals.bits.ips1_commit,
1441 					ips_fw->signals.bits.ips2_commit);
1442 
1443 				if (!dc_dmub_srv_is_hw_pwr_up(dc->ctx->dmub_srv, true))
1444 					ASSERT(0);
1445 
1446 				DC_LOG_IPS(
1447 					"resync inbox1 (ips1_commit=%u ips2_commit=%u)",
1448 					ips_fw->signals.bits.ips1_commit,
1449 					ips_fw->signals.bits.ips2_commit);
1450 
1451 				dmub_srv_sync_inbox1(dc->ctx->dmub_srv->dmub);
1452 			}
1453 		}
1454 
1455 		dc_dmub_srv_notify_idle(dc, false);
1456 		if (prev_driver_signals.bits.allow_ips1 || prev_driver_signals.all == 0) {
1457 			DC_LOG_IPS(
1458 				"wait for IPS1 commit clear (ips1_commit=%u ips2_commit=%u)",
1459 				ips_fw->signals.bits.ips1_commit,
1460 				ips_fw->signals.bits.ips2_commit);
1461 
1462 			while (ips_fw->signals.bits.ips1_commit)
1463 				udelay(1);
1464 
1465 			DC_LOG_IPS(
1466 				"wait for IPS1 commit clear done (ips1_commit=%u ips2_commit=%u)",
1467 				ips_fw->signals.bits.ips1_commit,
1468 				ips_fw->signals.bits.ips2_commit);
1469 		}
1470 	}
1471 
1472 	if (!dc_dmub_srv_is_hw_pwr_up(dc->ctx->dmub_srv, true))
1473 		ASSERT(0);
1474 
1475 	DC_LOG_IPS("%s exit (count rcg=%u ips1=%u ips2=%u)",
1476 		__func__,
1477 		rcg_exit_count,
1478 		ips1_exit_count,
1479 		ips2_exit_count);
1480 }
1481 
1482 void dc_dmub_srv_set_power_state(struct dc_dmub_srv *dc_dmub_srv, enum dc_acpi_cm_power_state power_state)
1483 {
1484 	struct dmub_srv *dmub;
1485 
1486 	if (!dc_dmub_srv)
1487 		return;
1488 
1489 	dmub = dc_dmub_srv->dmub;
1490 
1491 	if (power_state == DC_ACPI_CM_POWER_STATE_D0)
1492 		dmub_srv_set_power_state(dmub, DMUB_POWER_STATE_D0);
1493 	else
1494 		dmub_srv_set_power_state(dmub, DMUB_POWER_STATE_D3);
1495 }
1496 
1497 void dc_dmub_srv_notify_fw_dc_power_state(struct dc_dmub_srv *dc_dmub_srv,
1498 					  enum dc_acpi_cm_power_state power_state)
1499 {
1500 	union dmub_rb_cmd cmd;
1501 
1502 	if (!dc_dmub_srv)
1503 		return;
1504 
1505 	memset(&cmd, 0, sizeof(cmd));
1506 
1507 	cmd.idle_opt_set_dc_power_state.header.type = DMUB_CMD__IDLE_OPT;
1508 	cmd.idle_opt_set_dc_power_state.header.sub_type = DMUB_CMD__IDLE_OPT_SET_DC_POWER_STATE;
1509 	cmd.idle_opt_set_dc_power_state.header.payload_bytes =
1510 		sizeof(cmd.idle_opt_set_dc_power_state) - sizeof(cmd.idle_opt_set_dc_power_state.header);
1511 
1512 	if (power_state == DC_ACPI_CM_POWER_STATE_D0) {
1513 		cmd.idle_opt_set_dc_power_state.data.power_state = DMUB_IDLE_OPT_DC_POWER_STATE_D0;
1514 	} else if (power_state == DC_ACPI_CM_POWER_STATE_D3) {
1515 		cmd.idle_opt_set_dc_power_state.data.power_state = DMUB_IDLE_OPT_DC_POWER_STATE_D3;
1516 	} else {
1517 		cmd.idle_opt_set_dc_power_state.data.power_state = DMUB_IDLE_OPT_DC_POWER_STATE_UNKNOWN;
1518 	}
1519 
1520 	dc_wake_and_execute_dmub_cmd(dc_dmub_srv->ctx, &cmd, DM_DMUB_WAIT_TYPE_WAIT);
1521 }
1522 
1523 bool dc_dmub_srv_should_detect(struct dc_dmub_srv *dc_dmub_srv)
1524 {
1525 	volatile const struct dmub_shared_state_ips_fw *ips_fw;
1526 	bool reallow_idle = false, should_detect = false;
1527 
1528 	if (!dc_dmub_srv || !dc_dmub_srv->dmub)
1529 		return false;
1530 
1531 	if (dc_dmub_srv->dmub->shared_state &&
1532 	    dc_dmub_srv->dmub->meta_info.feature_bits.bits.shared_state_link_detection) {
1533 		ips_fw = &dc_dmub_srv->dmub->shared_state[DMUB_SHARED_SHARE_FEATURE__IPS_FW].data.ips_fw;
1534 		return ips_fw->signals.bits.detection_required;
1535 	}
1536 
1537 	/* Detection may require reading scratch 0 - exit out of idle prior to the read. */
1538 	if (dc_dmub_srv->idle_allowed) {
1539 		dc_dmub_srv_apply_idle_power_optimizations(dc_dmub_srv->ctx->dc, false);
1540 		reallow_idle = true;
1541 	}
1542 
1543 	should_detect = dmub_srv_should_detect(dc_dmub_srv->dmub);
1544 
1545 	/* Re-enter idle if we're not about to immediately redetect links. */
1546 	if (!should_detect && reallow_idle && dc_dmub_srv->idle_exit_counter == 0 &&
1547 	    !dc_dmub_srv->ctx->dc->debug.disable_dmub_reallow_idle)
1548 		dc_dmub_srv_apply_idle_power_optimizations(dc_dmub_srv->ctx->dc, true);
1549 
1550 	return should_detect;
1551 }
1552 
1553 void dc_dmub_srv_apply_idle_power_optimizations(const struct dc *dc, bool allow_idle)
1554 {
1555 	struct dc_dmub_srv *dc_dmub_srv = dc->ctx->dmub_srv;
1556 
1557 	if (!dc_dmub_srv || !dc_dmub_srv->dmub)
1558 		return;
1559 
1560 	allow_idle &= (!dc->debug.ips_disallow_entry);
1561 
1562 	if (dc_dmub_srv->idle_allowed == allow_idle)
1563 		return;
1564 
1565 	DC_LOG_IPS("%s state change: old=%d new=%d", __func__, dc_dmub_srv->idle_allowed, allow_idle);
1566 
1567 	/*
1568 	 * Entering a low power state requires a driver notification.
1569 	 * Powering up the hardware requires notifying PMFW and DMCUB.
1570 	 * Clearing the driver idle allow requires a DMCUB command.
1571 	 * DMCUB commands requires the DMCUB to be powered up and restored.
1572 	 */
1573 
1574 	if (!allow_idle) {
1575 		dc_dmub_srv->idle_exit_counter += 1;
1576 
1577 		dc_dmub_srv_exit_low_power_state(dc);
1578 		/*
1579 		 * Idle is considered fully exited only after the sequence above
1580 		 * fully completes. If we have a race of two threads exiting
1581 		 * at the same time then it's safe to perform the sequence
1582 		 * twice as long as we're not re-entering.
1583 		 *
1584 		 * Infinite command submission is avoided by using the
1585 		 * dm_execute_dmub_cmd submission instead of the "wake" helpers.
1586 		 */
1587 		dc_dmub_srv->idle_allowed = false;
1588 
1589 		dc_dmub_srv->idle_exit_counter -= 1;
1590 		if (dc_dmub_srv->idle_exit_counter < 0) {
1591 			ASSERT(0);
1592 			dc_dmub_srv->idle_exit_counter = 0;
1593 		}
1594 	} else {
1595 		/* Consider idle as notified prior to the actual submission to
1596 		 * prevent multiple entries. */
1597 		dc_dmub_srv->idle_allowed = true;
1598 
1599 		dc_dmub_srv_notify_idle(dc, allow_idle);
1600 	}
1601 }
1602 
1603 bool dc_wake_and_execute_dmub_cmd(const struct dc_context *ctx, union dmub_rb_cmd *cmd,
1604 				  enum dm_dmub_wait_type wait_type)
1605 {
1606 	return dc_wake_and_execute_dmub_cmd_list(ctx, 1, cmd, wait_type);
1607 }
1608 
1609 bool dc_wake_and_execute_dmub_cmd_list(const struct dc_context *ctx, unsigned int count,
1610 				       union dmub_rb_cmd *cmd, enum dm_dmub_wait_type wait_type)
1611 {
1612 	struct dc_dmub_srv *dc_dmub_srv = ctx->dmub_srv;
1613 	bool result = false, reallow_idle = false;
1614 
1615 	if (!dc_dmub_srv || !dc_dmub_srv->dmub)
1616 		return false;
1617 
1618 	if (count == 0)
1619 		return true;
1620 
1621 	if (dc_dmub_srv->idle_allowed) {
1622 		dc_dmub_srv_apply_idle_power_optimizations(ctx->dc, false);
1623 		reallow_idle = true;
1624 	}
1625 
1626 	/*
1627 	 * These may have different implementations in DM, so ensure
1628 	 * that we guide it to the expected helper.
1629 	 */
1630 	if (count > 1)
1631 		result = dm_execute_dmub_cmd_list(ctx, count, cmd, wait_type);
1632 	else
1633 		result = dm_execute_dmub_cmd(ctx, cmd, wait_type);
1634 
1635 	if (result && reallow_idle && dc_dmub_srv->idle_exit_counter == 0 &&
1636 	    !ctx->dc->debug.disable_dmub_reallow_idle)
1637 		dc_dmub_srv_apply_idle_power_optimizations(ctx->dc, true);
1638 
1639 	return result;
1640 }
1641 
1642 static bool dc_dmub_execute_gpint(const struct dc_context *ctx, enum dmub_gpint_command command_code,
1643 				  uint16_t param, uint32_t *response, enum dm_dmub_wait_type wait_type)
1644 {
1645 	struct dc_dmub_srv *dc_dmub_srv = ctx->dmub_srv;
1646 	const uint32_t wait_us = wait_type == DM_DMUB_WAIT_TYPE_NO_WAIT ? 0 : 30;
1647 	enum dmub_status status;
1648 
1649 	if (response)
1650 		*response = 0;
1651 
1652 	if (!dc_dmub_srv || !dc_dmub_srv->dmub)
1653 		return false;
1654 
1655 	status = dmub_srv_send_gpint_command(dc_dmub_srv->dmub, command_code, param, wait_us);
1656 	if (status != DMUB_STATUS_OK) {
1657 		if (status == DMUB_STATUS_TIMEOUT && wait_type == DM_DMUB_WAIT_TYPE_NO_WAIT)
1658 			return true;
1659 
1660 		return false;
1661 	}
1662 
1663 	if (response && wait_type == DM_DMUB_WAIT_TYPE_WAIT_WITH_REPLY)
1664 		dmub_srv_get_gpint_response(dc_dmub_srv->dmub, response);
1665 
1666 	return true;
1667 }
1668 
1669 bool dc_wake_and_execute_gpint(const struct dc_context *ctx, enum dmub_gpint_command command_code,
1670 			       uint16_t param, uint32_t *response, enum dm_dmub_wait_type wait_type)
1671 {
1672 	struct dc_dmub_srv *dc_dmub_srv = ctx->dmub_srv;
1673 	bool result = false, reallow_idle = false;
1674 
1675 	if (!dc_dmub_srv || !dc_dmub_srv->dmub)
1676 		return false;
1677 
1678 	if (dc_dmub_srv->idle_allowed) {
1679 		dc_dmub_srv_apply_idle_power_optimizations(ctx->dc, false);
1680 		reallow_idle = true;
1681 	}
1682 
1683 	result = dc_dmub_execute_gpint(ctx, command_code, param, response, wait_type);
1684 
1685 	if (result && reallow_idle && dc_dmub_srv->idle_exit_counter == 0 &&
1686 	    !ctx->dc->debug.disable_dmub_reallow_idle)
1687 		dc_dmub_srv_apply_idle_power_optimizations(ctx->dc, true);
1688 
1689 	return result;
1690 }
1691 
1692 void dc_dmub_srv_fams2_update_config(struct dc *dc,
1693 		struct dc_state *context,
1694 		bool enable)
1695 {
1696 	uint8_t num_cmds = 1;
1697 	uint32_t i;
1698 	union dmub_rb_cmd cmd[MAX_STREAMS + 1];
1699 	struct dmub_rb_cmd_fams2 *global_cmd = &cmd[0].fams2_config;
1700 
1701 	memset(cmd, 0, sizeof(union dmub_rb_cmd) * (MAX_STREAMS + 1));
1702 	/* fill in generic command header */
1703 	global_cmd->header.type = DMUB_CMD__FW_ASSISTED_MCLK_SWITCH;
1704 	global_cmd->header.sub_type = DMUB_CMD__FAMS2_CONFIG;
1705 	global_cmd->header.payload_bytes = sizeof(struct dmub_rb_cmd_fams2) - sizeof(struct dmub_cmd_header);
1706 
1707 	if (enable) {
1708 		/* send global configuration parameters */
1709 		memcpy(&global_cmd->config.global, &context->bw_ctx.bw.dcn.fams2_global_config, sizeof(struct dmub_cmd_fams2_global_config));
1710 
1711 		/* copy static feature configuration overrides */
1712 		global_cmd->config.global.features.bits.enable_stall_recovery = dc->debug.fams2_config.bits.enable_stall_recovery;
1713 		global_cmd->config.global.features.bits.enable_debug = dc->debug.fams2_config.bits.enable_debug;
1714 		global_cmd->config.global.features.bits.enable_offload_flip = dc->debug.fams2_config.bits.enable_offload_flip;
1715 
1716 		/* construct per-stream configs */
1717 		for (i = 0; i < context->bw_ctx.bw.dcn.fams2_global_config.num_streams; i++) {
1718 			struct dmub_rb_cmd_fams2 *stream_cmd = &cmd[i+1].fams2_config;
1719 
1720 			/* configure command header */
1721 			stream_cmd->header.type = DMUB_CMD__FW_ASSISTED_MCLK_SWITCH;
1722 			stream_cmd->header.sub_type = DMUB_CMD__FAMS2_CONFIG;
1723 			stream_cmd->header.payload_bytes = sizeof(struct dmub_rb_cmd_fams2) - sizeof(struct dmub_cmd_header);
1724 			stream_cmd->header.multi_cmd_pending = 1;
1725 			/* copy stream static state */
1726 			memcpy(&stream_cmd->config.stream,
1727 					&context->bw_ctx.bw.dcn.fams2_stream_params[i],
1728 					sizeof(struct dmub_fams2_stream_static_state));
1729 		}
1730 	}
1731 
1732 	/* apply feature configuration based on current driver state */
1733 	global_cmd->config.global.features.bits.enable_visual_confirm = dc->debug.visual_confirm == VISUAL_CONFIRM_FAMS2;
1734 	global_cmd->config.global.features.bits.enable = enable;
1735 
1736 	if (enable && context->bw_ctx.bw.dcn.fams2_global_config.features.bits.enable) {
1737 		/* set multi pending for global, and unset for last stream cmd */
1738 		global_cmd->header.multi_cmd_pending = 1;
1739 		cmd[context->bw_ctx.bw.dcn.fams2_global_config.num_streams].fams2_config.header.multi_cmd_pending = 0;
1740 		num_cmds += context->bw_ctx.bw.dcn.fams2_global_config.num_streams;
1741 	}
1742 
1743 	dm_execute_dmub_cmd_list(dc->ctx, num_cmds, cmd, DM_DMUB_WAIT_TYPE_WAIT);
1744 }
1745 
1746 void dc_dmub_srv_fams2_drr_update(struct dc *dc,
1747 		uint32_t tg_inst,
1748 		uint32_t vtotal_min,
1749 		uint32_t vtotal_max,
1750 		uint32_t vtotal_mid,
1751 		uint32_t vtotal_mid_frame_num,
1752 		bool program_manual_trigger)
1753 {
1754 	union dmub_rb_cmd cmd = { 0 };
1755 
1756 	cmd.fams2_drr_update.header.type = DMUB_CMD__FW_ASSISTED_MCLK_SWITCH;
1757 	cmd.fams2_drr_update.header.sub_type = DMUB_CMD__FAMS2_DRR_UPDATE;
1758 	cmd.fams2_drr_update.dmub_optc_state_req.tg_inst = tg_inst;
1759 	cmd.fams2_drr_update.dmub_optc_state_req.v_total_max = vtotal_max;
1760 	cmd.fams2_drr_update.dmub_optc_state_req.v_total_min = vtotal_min;
1761 	cmd.fams2_drr_update.dmub_optc_state_req.v_total_mid = vtotal_mid;
1762 	cmd.fams2_drr_update.dmub_optc_state_req.v_total_mid_frame_num = vtotal_mid_frame_num;
1763 	cmd.fams2_drr_update.dmub_optc_state_req.program_manual_trigger = program_manual_trigger;
1764 
1765 	cmd.fams2_drr_update.header.payload_bytes = sizeof(cmd.fams2_drr_update) - sizeof(cmd.fams2_drr_update.header);
1766 
1767 	dm_execute_dmub_cmd(dc->ctx, &cmd, DM_DMUB_WAIT_TYPE_WAIT);
1768 }
1769 
1770 void dc_dmub_srv_fams2_passthrough_flip(
1771 		struct dc *dc,
1772 		struct dc_state *state,
1773 		struct dc_stream_state *stream,
1774 		struct dc_surface_update *srf_updates,
1775 		int surface_count)
1776 {
1777 	int plane_index;
1778 	union dmub_rb_cmd cmds[MAX_PLANES];
1779 	struct dc_plane_address *address;
1780 	struct dc_plane_state *plane_state;
1781 	int num_cmds = 0;
1782 	struct dc_stream_status *stream_status = dc_stream_get_status(stream);
1783 
1784 	if (surface_count <= 0 || stream_status == NULL)
1785 		return;
1786 
1787 	memset(cmds, 0, sizeof(union dmub_rb_cmd) * MAX_PLANES);
1788 
1789 	/* build command for each surface update */
1790 	for (plane_index = 0; plane_index < surface_count; plane_index++) {
1791 		plane_state = srf_updates[plane_index].surface;
1792 		address = &plane_state->address;
1793 
1794 		/* skip if there is no address update for plane */
1795 		if (!srf_updates[plane_index].flip_addr)
1796 			continue;
1797 
1798 		/* build command header */
1799 		cmds[num_cmds].fams2_flip.header.type = DMUB_CMD__FW_ASSISTED_MCLK_SWITCH;
1800 		cmds[num_cmds].fams2_flip.header.sub_type = DMUB_CMD__FAMS2_FLIP;
1801 		cmds[num_cmds].fams2_flip.header.payload_bytes = sizeof(struct dmub_rb_cmd_fams2_flip);
1802 
1803 		/* for chaining multiple commands, all but last command should set to 1 */
1804 		cmds[num_cmds].fams2_flip.header.multi_cmd_pending = 1;
1805 
1806 		/* set topology info */
1807 		cmds[num_cmds].fams2_flip.flip_info.pipe_mask = dc_plane_get_pipe_mask(state, plane_state);
1808 		if (stream_status)
1809 			cmds[num_cmds].fams2_flip.flip_info.otg_inst = stream_status->primary_otg_inst;
1810 
1811 		cmds[num_cmds].fams2_flip.flip_info.config.bits.is_immediate = plane_state->flip_immediate;
1812 
1813 		/* build address info for command */
1814 		switch (address->type) {
1815 		case PLN_ADDR_TYPE_GRAPHICS:
1816 			if (address->grph.addr.quad_part == 0) {
1817 				BREAK_TO_DEBUGGER();
1818 				break;
1819 			}
1820 
1821 			cmds[num_cmds].fams2_flip.flip_info.addr_info.meta_addr_lo =
1822 					address->grph.meta_addr.low_part;
1823 			cmds[num_cmds].fams2_flip.flip_info.addr_info.meta_addr_hi =
1824 					(uint16_t)address->grph.meta_addr.high_part;
1825 			cmds[num_cmds].fams2_flip.flip_info.addr_info.surf_addr_lo =
1826 					address->grph.addr.low_part;
1827 			cmds[num_cmds].fams2_flip.flip_info.addr_info.surf_addr_hi =
1828 					(uint16_t)address->grph.addr.high_part;
1829 			break;
1830 		case PLN_ADDR_TYPE_VIDEO_PROGRESSIVE:
1831 			if (address->video_progressive.luma_addr.quad_part == 0 ||
1832 				address->video_progressive.chroma_addr.quad_part == 0) {
1833 				BREAK_TO_DEBUGGER();
1834 				break;
1835 			}
1836 
1837 			cmds[num_cmds].fams2_flip.flip_info.addr_info.meta_addr_lo =
1838 					address->video_progressive.luma_meta_addr.low_part;
1839 			cmds[num_cmds].fams2_flip.flip_info.addr_info.meta_addr_hi =
1840 					(uint16_t)address->video_progressive.luma_meta_addr.high_part;
1841 			cmds[num_cmds].fams2_flip.flip_info.addr_info.meta_addr_c_lo =
1842 					address->video_progressive.chroma_meta_addr.low_part;
1843 			cmds[num_cmds].fams2_flip.flip_info.addr_info.meta_addr_c_hi =
1844 					(uint16_t)address->video_progressive.chroma_meta_addr.high_part;
1845 			cmds[num_cmds].fams2_flip.flip_info.addr_info.surf_addr_lo =
1846 					address->video_progressive.luma_addr.low_part;
1847 			cmds[num_cmds].fams2_flip.flip_info.addr_info.surf_addr_hi =
1848 					(uint16_t)address->video_progressive.luma_addr.high_part;
1849 			cmds[num_cmds].fams2_flip.flip_info.addr_info.surf_addr_c_lo =
1850 					address->video_progressive.chroma_addr.low_part;
1851 			cmds[num_cmds].fams2_flip.flip_info.addr_info.surf_addr_c_hi =
1852 					(uint16_t)address->video_progressive.chroma_addr.high_part;
1853 			break;
1854 		default:
1855 			// Should never be hit
1856 			BREAK_TO_DEBUGGER();
1857 			break;
1858 		}
1859 
1860 		num_cmds++;
1861 	}
1862 
1863 	if (num_cmds > 0)  {
1864 		cmds[num_cmds - 1].fams2_flip.header.multi_cmd_pending = 0;
1865 		dm_execute_dmub_cmd_list(dc->ctx, num_cmds, cmds, DM_DMUB_WAIT_TYPE_WAIT);
1866 	}
1867 }
1868 
1869 bool dc_dmub_srv_ips_residency_cntl(struct dc_dmub_srv *dc_dmub_srv, bool start_measurement)
1870 {
1871 	bool result;
1872 
1873 	if (!dc_dmub_srv || !dc_dmub_srv->dmub)
1874 		return false;
1875 
1876 	result = dc_wake_and_execute_gpint(dc_dmub_srv->ctx, DMUB_GPINT__IPS_RESIDENCY,
1877 					   start_measurement, NULL, DM_DMUB_WAIT_TYPE_WAIT);
1878 
1879 	return result;
1880 }
1881 
1882 void dc_dmub_srv_ips_query_residency_info(struct dc_dmub_srv *dc_dmub_srv, struct ips_residency_info *output)
1883 {
1884 	uint32_t i;
1885 	enum dmub_gpint_command command_code;
1886 
1887 	if (!dc_dmub_srv || !dc_dmub_srv->dmub)
1888 		return;
1889 
1890 	switch (output->ips_mode) {
1891 	case DMUB_IPS_MODE_IPS1_MAX:
1892 		command_code = DMUB_GPINT__GET_IPS1_HISTOGRAM_COUNTER;
1893 		break;
1894 	case DMUB_IPS_MODE_IPS2:
1895 		command_code = DMUB_GPINT__GET_IPS2_HISTOGRAM_COUNTER;
1896 		break;
1897 	case DMUB_IPS_MODE_IPS1_RCG:
1898 		command_code = DMUB_GPINT__GET_IPS1_RCG_HISTOGRAM_COUNTER;
1899 		break;
1900 	case DMUB_IPS_MODE_IPS1_ONO2_ON:
1901 		command_code = DMUB_GPINT__GET_IPS1_ONO2_ON_HISTOGRAM_COUNTER;
1902 		break;
1903 	default:
1904 		command_code = DMUB_GPINT__INVALID_COMMAND;
1905 		break;
1906 	}
1907 
1908 	if (command_code == DMUB_GPINT__INVALID_COMMAND)
1909 		return;
1910 
1911 	// send gpint commands and wait for ack
1912 	if (!dc_wake_and_execute_gpint(dc_dmub_srv->ctx, DMUB_GPINT__GET_IPS_RESIDENCY_PERCENT,
1913 				      (uint16_t)(output->ips_mode),
1914 				       &output->residency_percent, DM_DMUB_WAIT_TYPE_WAIT_WITH_REPLY))
1915 		output->residency_percent = 0;
1916 
1917 	if (!dc_wake_and_execute_gpint(dc_dmub_srv->ctx, DMUB_GPINT__GET_IPS_RESIDENCY_ENTRY_COUNTER,
1918 				      (uint16_t)(output->ips_mode),
1919 				       &output->entry_counter, DM_DMUB_WAIT_TYPE_WAIT_WITH_REPLY))
1920 		output->entry_counter = 0;
1921 
1922 	if (!dc_wake_and_execute_gpint(dc_dmub_srv->ctx, DMUB_GPINT__GET_IPS_RESIDENCY_DURATION_US_LO,
1923 				      (uint16_t)(output->ips_mode),
1924 				       &output->total_active_time_us[0], DM_DMUB_WAIT_TYPE_WAIT_WITH_REPLY))
1925 		output->total_active_time_us[0] = 0;
1926 	if (!dc_wake_and_execute_gpint(dc_dmub_srv->ctx, DMUB_GPINT__GET_IPS_RESIDENCY_DURATION_US_HI,
1927 				      (uint16_t)(output->ips_mode),
1928 				       &output->total_active_time_us[1], DM_DMUB_WAIT_TYPE_WAIT_WITH_REPLY))
1929 		output->total_active_time_us[1] = 0;
1930 
1931 	if (!dc_wake_and_execute_gpint(dc_dmub_srv->ctx, DMUB_GPINT__GET_IPS_INACTIVE_RESIDENCY_DURATION_US_LO,
1932 				      (uint16_t)(output->ips_mode),
1933 				       &output->total_inactive_time_us[0], DM_DMUB_WAIT_TYPE_WAIT_WITH_REPLY))
1934 		output->total_inactive_time_us[0] = 0;
1935 	if (!dc_wake_and_execute_gpint(dc_dmub_srv->ctx, DMUB_GPINT__GET_IPS_INACTIVE_RESIDENCY_DURATION_US_HI,
1936 				      (uint16_t)(output->ips_mode),
1937 				       &output->total_inactive_time_us[1], DM_DMUB_WAIT_TYPE_WAIT_WITH_REPLY))
1938 		output->total_inactive_time_us[1] = 0;
1939 
1940 	// NUM_IPS_HISTOGRAM_BUCKETS = 16
1941 	for (i = 0; i < 16; i++)
1942 		if (!dc_wake_and_execute_gpint(dc_dmub_srv->ctx, command_code, i, &output->histogram[i],
1943 					       DM_DMUB_WAIT_TYPE_WAIT_WITH_REPLY))
1944 			output->histogram[i] = 0;
1945 }
1946