xref: /linux/drivers/gpu/drm/amd/display/dmub/src/dmub_dcn42.c (revision cb48a6b2b61d7ebf2f1099041067800ffd8a5c2d)
1 // SPDX-License-Identifier: MIT
2 //
3 // Copyright 2026 Advanced Micro Devices, Inc.
4 
5 #include "../dmub_srv.h"
6 #include "dmub_reg.h"
7 #include "dmub_dcn35.h"
8 #include "dmub_dcn401.h"
9 #include "dmub_dcn42.h"
10 
11 #include "dcn/dcn_4_2_0_offset.h"
12 #include "dcn/dcn_4_2_0_sh_mask.h"
13 
14 #define BASE_INNER(seg) ctx->dcn_reg_offsets[seg]
15 #define CTX dmub
16 #define REGS dmub->regs_dcn42
17 #define REG_OFFSET_EXP(reg_name) (BASE(reg##reg_name##_BASE_IDX) + reg##reg_name)
18 
19 void dmub_srv_dcn42_regs_init(struct dmub_srv *dmub, struct dc_context *ctx)
20 {
21 	struct dmub_srv_dcn42_regs *regs = dmub->regs_dcn42;
22 #define REG_STRUCT regs
23 
24 #define DMUB_SR(reg) REG_STRUCT->offset.reg = REG_OFFSET_EXP(reg);
25 	DMUB_DCN42_REGS()
26 	DMCUB_INTERNAL_REGS()
27 #undef DMUB_SR
28 
29 #define DMUB_SF(reg, field) REG_STRUCT->mask.reg##__##field = FD_MASK(reg, field);
30 	DMUB_DCN42_FIELDS()
31 #undef DMUB_SF
32 
33 #define DMUB_SF(reg, field) REG_STRUCT->shift.reg##__##field = FD_SHIFT(reg, field);
34 	DMUB_DCN42_FIELDS()
35 #undef DMUB_SF
36 #undef REG_STRUCT
37 }
38 
39 void dmub_dcn42_enable_dmub_boot_options(struct dmub_srv *dmub, const struct dmub_srv_hw_params *params)
40 {
41 	union dmub_fw_boot_options boot_options = {0};
42 	union dmub_fw_boot_options cur_boot_options = {0};
43 
44 	cur_boot_options = dmub_dcn42_get_fw_boot_option(dmub);
45 
46 	boot_options.bits.z10_disable = params->disable_z10;
47 	boot_options.bits.dpia_supported = params->dpia_supported;
48 	boot_options.bits.enable_dpia = cur_boot_options.bits.enable_dpia && !params->disable_dpia;
49 	boot_options.bits.usb4_cm_version = params->usb4_cm_version;
50 	boot_options.bits.dpia_hpd_int_enable_supported = params->dpia_hpd_int_enable_supported;
51 	boot_options.bits.power_optimization = params->power_optimization;
52 	boot_options.bits.disable_clk_ds = params->disallow_dispclk_dppclk_ds;
53 	boot_options.bits.disable_clk_gate = params->disable_clock_gate;
54 	boot_options.bits.ips_disable = params->disable_ips;
55 	boot_options.bits.ips_sequential_ono = params->ips_sequential_ono;
56 	boot_options.bits.disable_sldo_opt = params->disable_sldo_opt;
57 	boot_options.bits.enable_non_transparent_setconfig = params->enable_non_transparent_setconfig;
58 	boot_options.bits.lower_hbr3_phy_ssc = params->lower_hbr3_phy_ssc;
59 	boot_options.bits.skip_phy_access = params->disallow_phy_access;
60 	boot_options.bits.disable_dpia_bw_allocation = params->disable_dpia_bw_allocation;
61 
62 	REG_WRITE(DMCUB_SCRATCH14, boot_options.all);
63 }
64 
65 static void dmub_dcn42_get_fb_base_offset(struct dmub_srv *dmub,
66 					  uint64_t *fb_base,
67 					  uint64_t *fb_offset)
68 {
69 	uint32_t tmp;
70 
71 	/*
72 	if (dmub->soc_fb_info.fb_base || dmub->soc_fb_info.fb_offset) {
73 		*fb_base = dmub->soc_fb_info.fb_base;
74 		*fb_offset = dmub->soc_fb_info.fb_offset;
75 		return;
76 	}
77 	*/
78 
79 	REG_GET(DCN_VM_FB_LOCATION_BASE, FB_BASE, &tmp);
80 	*fb_base = (uint64_t)tmp << 24;
81 
82 	REG_GET(DCN_VM_FB_OFFSET, FB_OFFSET, &tmp);
83 	*fb_offset = (uint64_t)tmp << 24;
84 }
85 
86 static inline void dmub_dcn42_translate_addr(const union dmub_addr *addr_in,
87 					     uint64_t fb_base,
88 					     uint64_t fb_offset,
89 					     union dmub_addr *addr_out)
90 {
91 	addr_out->quad_part = addr_in->quad_part - fb_base + fb_offset;
92 }
93 
94 void dmub_dcn42_reset(struct dmub_srv *dmub)
95 {
96 	union dmub_gpint_data_register cmd;
97 	const uint32_t timeout = 100000;
98 	uint32_t in_reset, is_enabled, scratch, i, pwait_mode;
99 
100 	REG_GET(DMCUB_CNTL2, DMCUB_SOFT_RESET, &in_reset);
101 	REG_GET(DMCUB_CNTL, DMCUB_ENABLE, &is_enabled);
102 
103 	if (in_reset == 0 && is_enabled != 0) {
104 		cmd.bits.status = 1;
105 		cmd.bits.command_code = DMUB_GPINT__STOP_FW;
106 		cmd.bits.param = 0;
107 
108 		dmub->hw_funcs.set_gpint(dmub, cmd);
109 
110 		for (i = 0; i < timeout; ++i) {
111 			if (dmub->hw_funcs.is_gpint_acked(dmub, cmd))
112 				break;
113 
114 			udelay(1);
115 		}
116 
117 		for (i = 0; i < timeout; ++i) {
118 			scratch = REG_READ(DMCUB_SCRATCH7);
119 			if (scratch == DMUB_GPINT__STOP_FW_RESPONSE)
120 				break;
121 
122 			udelay(1);
123 		}
124 
125 		for (i = 0; i < timeout; ++i) {
126 			REG_GET(DMCUB_CNTL, DMCUB_PWAIT_MODE_STATUS, &pwait_mode);
127 			if (pwait_mode & (1 << 0))
128 				break;
129 
130 			udelay(1);
131 		}
132 		/* Force reset in case we timed out, DMCUB is likely hung. */
133 	}
134 
135 	if (is_enabled) {
136 		REG_UPDATE(DMCUB_CNTL2, DMCUB_SOFT_RESET, 1);
137 		udelay(1);
138 		REG_UPDATE(DMCUB_CNTL, DMCUB_ENABLE, 0);
139 	}
140 
141 	REG_WRITE(DMCUB_INBOX1_RPTR, 0);
142 	REG_WRITE(DMCUB_INBOX1_WPTR, 0);
143 	REG_WRITE(DMCUB_OUTBOX1_RPTR, 0);
144 	REG_WRITE(DMCUB_OUTBOX1_WPTR, 0);
145 	REG_WRITE(DMCUB_OUTBOX0_RPTR, 0);
146 	REG_WRITE(DMCUB_OUTBOX0_WPTR, 0);
147 	REG_WRITE(DMCUB_SCRATCH0, 0);
148 
149 	/* Clear the GPINT command manually so we don't send anything during boot. */
150 	cmd.all = 0;
151 	dmub->hw_funcs.set_gpint(dmub, cmd);
152 }
153 
154 void dmub_dcn42_reset_release(struct dmub_srv *dmub)
155 {
156 	REG_WRITE(DMCUB_SCRATCH15, dmub->psp_version & 0x001100FF);
157 
158 	REG_UPDATE_3(DMU_CLK_CNTL,
159 		     LONO_DISPCLK_GATE_DISABLE, 1,
160 		     LONO_SOCCLK_GATE_DISABLE, 1,
161 		     LONO_DMCUBCLK_GATE_DISABLE, 1);
162 
163 	REG_UPDATE_2(DMCUB_CNTL, DMCUB_ENABLE, 1, DMCUB_TRACEPORT_EN, 1);
164 	REG_UPDATE(MMHUBBUB_SOFT_RESET, DMUIF_SOFT_RESET, 0);
165 	REG_UPDATE(DMCUB_CNTL2, DMCUB_SOFT_RESET, 0);
166 }
167 
168 void dmub_dcn42_backdoor_load(struct dmub_srv *dmub,
169 			      const struct dmub_window *cw0,
170 			      const struct dmub_window *cw1)
171 {
172 	union dmub_addr offset;
173 	uint64_t fb_base, fb_offset;
174 
175 	dmub_dcn42_get_fb_base_offset(dmub, &fb_base, &fb_offset);
176 
177 	dmub_dcn42_translate_addr(&cw0->offset, fb_base, fb_offset, &offset);
178 
179 	REG_WRITE(DMCUB_REGION3_CW0_OFFSET, offset.u.low_part);
180 	REG_WRITE(DMCUB_REGION3_CW0_OFFSET_HIGH, offset.u.high_part);
181 	REG_WRITE(DMCUB_REGION3_CW0_BASE_ADDRESS, cw0->region.base);
182 	REG_SET_2(DMCUB_REGION3_CW0_TOP_ADDRESS, 0,
183 		  DMCUB_REGION3_CW0_TOP_ADDRESS, cw0->region.top,
184 		  DMCUB_REGION3_CW0_ENABLE, 1);
185 
186 	dmub_dcn42_translate_addr(&cw1->offset, fb_base, fb_offset, &offset);
187 
188 	REG_WRITE(DMCUB_REGION3_CW1_OFFSET, offset.u.low_part);
189 	REG_WRITE(DMCUB_REGION3_CW1_OFFSET_HIGH, offset.u.high_part);
190 	REG_WRITE(DMCUB_REGION3_CW1_BASE_ADDRESS, cw1->region.base);
191 	REG_SET_2(DMCUB_REGION3_CW1_TOP_ADDRESS, 0,
192 		  DMCUB_REGION3_CW1_TOP_ADDRESS, cw1->region.top,
193 		  DMCUB_REGION3_CW1_ENABLE, 1);
194 
195 	/* TODO: Do we need to set DMCUB_MEM_UNIT_ID? */
196 	REG_UPDATE(DMCUB_SEC_CNTL, DMCUB_SEC_RESET, 0);
197 }
198 
199 void dmub_dcn42_backdoor_load_zfb_mode(struct dmub_srv *dmub,
200 		      const struct dmub_window *cw0,
201 		      const struct dmub_window *cw1)
202 {
203 	union dmub_addr offset;
204 
205 	REG_UPDATE(DMCUB_SEC_CNTL, DMCUB_SEC_RESET, 1);
206 	offset = cw0->offset;
207 	REG_WRITE(DMCUB_REGION3_CW0_OFFSET, offset.u.low_part);
208 	REG_WRITE(DMCUB_REGION3_CW0_OFFSET_HIGH, offset.u.high_part);
209 	REG_WRITE(DMCUB_REGION3_CW0_BASE_ADDRESS, cw0->region.base);
210 	REG_SET_2(DMCUB_REGION3_CW0_TOP_ADDRESS, 0,
211 			DMCUB_REGION3_CW0_TOP_ADDRESS, cw0->region.top,
212 			DMCUB_REGION3_CW0_ENABLE, 1);
213 	offset = cw1->offset;
214 	REG_WRITE(DMCUB_REGION3_CW1_OFFSET, offset.u.low_part);
215 	REG_WRITE(DMCUB_REGION3_CW1_OFFSET_HIGH, offset.u.high_part);
216 	REG_WRITE(DMCUB_REGION3_CW1_BASE_ADDRESS, cw1->region.base);
217 	REG_SET_2(DMCUB_REGION3_CW1_TOP_ADDRESS, 0,
218 			DMCUB_REGION3_CW1_TOP_ADDRESS, cw1->region.top,
219 			DMCUB_REGION3_CW1_ENABLE, 1);
220 	REG_UPDATE_2(DMCUB_SEC_CNTL, DMCUB_SEC_RESET, 0, DMCUB_MEM_UNIT_ID,
221 			0x20);
222 }
223 void dmub_dcn42_setup_windows(struct dmub_srv *dmub,
224 			      const struct dmub_window *cw2,
225 			      const struct dmub_window *cw3,
226 			      const struct dmub_window *cw4,
227 			      const struct dmub_window *cw5,
228 			      const struct dmub_window *cw6,
229 			      const struct dmub_window *region6)
230 {
231 	union dmub_addr offset;
232 
233 	offset = cw3->offset;
234 
235 	REG_WRITE(DMCUB_REGION3_CW3_OFFSET, offset.u.low_part);
236 	REG_WRITE(DMCUB_REGION3_CW3_OFFSET_HIGH, offset.u.high_part);
237 	REG_WRITE(DMCUB_REGION3_CW3_BASE_ADDRESS, cw3->region.base);
238 	REG_SET_2(DMCUB_REGION3_CW3_TOP_ADDRESS, 0,
239 		  DMCUB_REGION3_CW3_TOP_ADDRESS, cw3->region.top,
240 		  DMCUB_REGION3_CW3_ENABLE, 1);
241 
242 	offset = cw4->offset;
243 
244 	REG_WRITE(DMCUB_REGION3_CW4_OFFSET, offset.u.low_part);
245 	REG_WRITE(DMCUB_REGION3_CW4_OFFSET_HIGH, offset.u.high_part);
246 	REG_WRITE(DMCUB_REGION3_CW4_BASE_ADDRESS, cw4->region.base);
247 	REG_SET_2(DMCUB_REGION3_CW4_TOP_ADDRESS, 0,
248 		  DMCUB_REGION3_CW4_TOP_ADDRESS, cw4->region.top,
249 		  DMCUB_REGION3_CW4_ENABLE, 1);
250 
251 	offset = cw5->offset;
252 
253 	REG_WRITE(DMCUB_REGION3_CW5_OFFSET, offset.u.low_part);
254 	REG_WRITE(DMCUB_REGION3_CW5_OFFSET_HIGH, offset.u.high_part);
255 	REG_WRITE(DMCUB_REGION3_CW5_BASE_ADDRESS, cw5->region.base);
256 	REG_SET_2(DMCUB_REGION3_CW5_TOP_ADDRESS, 0,
257 		  DMCUB_REGION3_CW5_TOP_ADDRESS, cw5->region.top,
258 		  DMCUB_REGION3_CW5_ENABLE, 1);
259 
260 	REG_WRITE(DMCUB_REGION5_OFFSET, offset.u.low_part);
261 	REG_WRITE(DMCUB_REGION5_OFFSET_HIGH, offset.u.high_part);
262 	REG_SET_2(DMCUB_REGION5_TOP_ADDRESS, 0,
263 		  DMCUB_REGION5_TOP_ADDRESS,
264 		  cw5->region.top - cw5->region.base - 1,
265 		  DMCUB_REGION5_ENABLE, 1);
266 
267 	offset = cw6->offset;
268 
269 	REG_WRITE(DMCUB_REGION3_CW6_OFFSET, offset.u.low_part);
270 	REG_WRITE(DMCUB_REGION3_CW6_OFFSET_HIGH, offset.u.high_part);
271 	REG_WRITE(DMCUB_REGION3_CW6_BASE_ADDRESS, cw6->region.base);
272 	REG_SET_2(DMCUB_REGION3_CW6_TOP_ADDRESS, 0,
273 		  DMCUB_REGION3_CW6_TOP_ADDRESS, cw6->region.top,
274 		  DMCUB_REGION3_CW6_ENABLE, 1);
275 
276 	offset = region6->offset;
277 
278 	REG_WRITE(DMCUB_REGION6_OFFSET, offset.u.low_part);
279 	REG_WRITE(DMCUB_REGION6_OFFSET_HIGH, offset.u.high_part);
280 	REG_SET_2(DMCUB_REGION6_TOP_ADDRESS, 0,
281 		  DMCUB_REGION6_TOP_ADDRESS,
282 		  region6->region.top - region6->region.base - 1,
283 		  DMCUB_REGION6_ENABLE, 1);
284 }
285 
286 uint32_t dmub_dcn42_get_inbox1_wptr(struct dmub_srv *dmub)
287 {
288 	return REG_READ(DMCUB_INBOX1_WPTR);
289 }
290 
291 uint32_t dmub_dcn42_get_inbox1_rptr(struct dmub_srv *dmub)
292 {
293 	return REG_READ(DMCUB_INBOX1_RPTR);
294 }
295 
296 void dmub_dcn42_setup_out_mailbox(struct dmub_srv *dmub,
297 			      const struct dmub_region *outbox1)
298 {
299 	REG_WRITE(DMCUB_OUTBOX1_BASE_ADDRESS, outbox1->base);
300 	REG_WRITE(DMCUB_OUTBOX1_SIZE, outbox1->top - outbox1->base);
301 }
302 
303 uint32_t dmub_dcn42_get_outbox1_wptr(struct dmub_srv *dmub)
304 {
305 	/**
306 	 * outbox1 wptr register is accessed without locks (dal & dc)
307 	 * and to be called only by dmub_srv_stat_get_notification()
308 	 */
309 	return REG_READ(DMCUB_OUTBOX1_WPTR);
310 }
311 
312 void dmub_dcn42_set_outbox1_rptr(struct dmub_srv *dmub, uint32_t rptr_offset)
313 {
314 	/**
315 	 * outbox1 rptr register is accessed without locks (dal & dc)
316 	 * and to be called only by dmub_srv_stat_get_notification()
317 	 */
318 	REG_WRITE(DMCUB_OUTBOX1_RPTR, rptr_offset);
319 }
320 
321 bool dmub_dcn42_is_supported(struct dmub_srv *dmub)
322 {
323 	uint32_t supported = 0;
324 
325 	REG_GET(CC_DC_PIPE_DIS, DC_DMCUB_ENABLE, &supported);
326 
327 	return supported;
328 }
329 
330 union dmub_fw_boot_options dmub_dcn42_get_fw_boot_option(struct dmub_srv *dmub)
331 {
332 	union dmub_fw_boot_options option;
333 
334 	option.all = REG_READ(DMCUB_SCRATCH14);
335 	return option;
336 }
337 
338 void dmub_dcn42_setup_outbox0(struct dmub_srv *dmub,
339 			      const struct dmub_region *outbox0)
340 {
341 	REG_WRITE(DMCUB_OUTBOX0_BASE_ADDRESS, outbox0->base);
342 
343 	REG_WRITE(DMCUB_OUTBOX0_SIZE, outbox0->top - outbox0->base);
344 }
345 
346 bool dmub_dcn42_should_detect(struct dmub_srv *dmub)
347 {
348 	uint32_t fw_boot_status = REG_READ(DMCUB_SCRATCH0);
349 	bool should_detect = (fw_boot_status & DMUB_FW_BOOT_STATUS_BIT_DETECTION_REQUIRED) != 0;
350 	return should_detect;
351 }
352 
353 void dmub_dcn42_send_inbox0_cmd(struct dmub_srv *dmub, union dmub_inbox0_data_register data)
354 {
355 	REG_WRITE(DMCUB_INBOX0_WPTR, data.inbox0_cmd_common.all);
356 }
357 
358 uint32_t dmub_dcn42_read_inbox0_ack_register(struct dmub_srv *dmub)
359 {
360 	return REG_READ(DMCUB_SCRATCH17);
361 }
362 
363 bool dmub_dcn42_is_hw_powered_up(struct dmub_srv *dmub)
364 {
365 	union dmub_fw_boot_status status;
366 	uint32_t is_enable;
367 
368 	REG_GET(DMCUB_CNTL, DMCUB_ENABLE, &is_enable);
369 	if (is_enable == 0)
370 		return false;
371 
372 	status.all = REG_READ(DMCUB_SCRATCH0);
373 
374 	return (status.bits.dal_fw && status.bits.hw_power_init_done && status.bits.mailbox_rdy) ||
375 	       (!status.bits.dal_fw && status.bits.mailbox_rdy);
376 }
377 
378 void dmub_dcn42_set_inbox1_wptr(struct dmub_srv *dmub, uint32_t wptr_offset)
379 {
380 	REG_WRITE(DMCUB_INBOX1_WPTR, wptr_offset);
381 }
382 
383 bool dmub_dcn42_is_hw_init(struct dmub_srv *dmub)
384 {
385 	union dmub_fw_boot_status status;
386 	uint32_t is_hw_init;
387 
388 	status.all = REG_READ(DMCUB_SCRATCH0);
389 	REG_GET(DMCUB_CNTL, DMCUB_ENABLE, &is_hw_init);
390 
391 	return is_hw_init != 0 && status.bits.dal_fw;
392 }
393 
394 union dmub_fw_boot_status dmub_dcn42_get_fw_boot_status(struct dmub_srv *dmub)
395 {
396 	union dmub_fw_boot_status status;
397 
398 	status.all = REG_READ(DMCUB_SCRATCH0);
399 	return status;
400 }
401 
402 void dmub_dcn42_skip_dmub_panel_power_sequence(struct dmub_srv *dmub, bool skip)
403 {
404 	union dmub_fw_boot_options boot_options;
405 	boot_options.all = REG_READ(DMCUB_SCRATCH14);
406 	boot_options.bits.skip_phy_init_panel_sequence = skip;
407 	REG_WRITE(DMCUB_SCRATCH14, boot_options.all);
408 }
409 
410 void dmub_dcn42_configure_dmub_in_system_memory(struct dmub_srv *dmub)
411 {
412 	/* DMCUB_REGION3_TMR_AXI_SPACE values:
413 	 * 0b011 (0x3) - FB physical address
414 	 * 0b100 (0x4) - GPU virtual address
415 	 *
416 	 * Default value is 0x3 (FB Physical address for TMR). When programming
417 	 * DMUB to be in system memory, change to 0x4. The system memory allocated
418 	 * is accessible by both GPU and CPU, so we use GPU virtual address.
419 	 */
420 	REG_WRITE(DMCUB_REGION3_TMR_AXI_SPACE, 0x4);
421 }
422 
423 void dmub_dcn42_clear_inbox0_ack_register(struct dmub_srv *dmub)
424 {
425 	REG_WRITE(DMCUB_SCRATCH17, 0);
426 }
427 
428 void dmub_dcn42_send_reg_inbox0_cmd_msg(struct dmub_srv *dmub,
429 		union dmub_rb_cmd *cmd)
430 {
431 	uint32_t *dwords = (uint32_t *)cmd;
432 	int32_t payload_size_bytes = cmd->cmd_common.header.payload_bytes;
433 	uint32_t msg_index;
434 	static_assert(sizeof(*cmd) == 64, "DMUB command size mismatch");
435 
436 	/* read remaining data based on payload size */
437 	for (msg_index = 0; msg_index < 15; msg_index++) {
438 		if (payload_size_bytes <= msg_index * 4) {
439 			break;
440 		}
441 
442 		switch (msg_index) {
443 		case 0:
444 			REG_WRITE(DMCUB_REG_INBOX0_MSG0, dwords[msg_index + 1]);
445 			break;
446 		case 1:
447 			REG_WRITE(DMCUB_REG_INBOX0_MSG1, dwords[msg_index + 1]);
448 			break;
449 		case 2:
450 			REG_WRITE(DMCUB_REG_INBOX0_MSG2, dwords[msg_index + 1]);
451 			break;
452 		case 3:
453 			REG_WRITE(DMCUB_REG_INBOX0_MSG3, dwords[msg_index + 1]);
454 			break;
455 		case 4:
456 			REG_WRITE(DMCUB_REG_INBOX0_MSG4, dwords[msg_index + 1]);
457 			break;
458 		case 5:
459 			REG_WRITE(DMCUB_REG_INBOX0_MSG5, dwords[msg_index + 1]);
460 			break;
461 		case 6:
462 			REG_WRITE(DMCUB_REG_INBOX0_MSG6, dwords[msg_index + 1]);
463 			break;
464 		case 7:
465 			REG_WRITE(DMCUB_REG_INBOX0_MSG7, dwords[msg_index + 1]);
466 			break;
467 		case 8:
468 			REG_WRITE(DMCUB_REG_INBOX0_MSG8, dwords[msg_index + 1]);
469 			break;
470 		case 9:
471 			REG_WRITE(DMCUB_REG_INBOX0_MSG9, dwords[msg_index + 1]);
472 			break;
473 		case 10:
474 			REG_WRITE(DMCUB_REG_INBOX0_MSG10, dwords[msg_index + 1]);
475 			break;
476 		case 11:
477 			REG_WRITE(DMCUB_REG_INBOX0_MSG11, dwords[msg_index + 1]);
478 			break;
479 		case 12:
480 			REG_WRITE(DMCUB_REG_INBOX0_MSG12, dwords[msg_index + 1]);
481 			break;
482 		case 13:
483 			REG_WRITE(DMCUB_REG_INBOX0_MSG13, dwords[msg_index + 1]);
484 			break;
485 		case 14:
486 			REG_WRITE(DMCUB_REG_INBOX0_MSG14, dwords[msg_index + 1]);
487 			break;
488 		}
489 	}
490 
491 	/* writing to INBOX RDY register will trigger DMUB REG INBOX0 RDY
492 	 * interrupt.
493 	 */
494 	REG_WRITE(DMCUB_REG_INBOX0_RDY, dwords[0]);
495 }
496 
497 uint32_t dmub_dcn42_read_reg_inbox0_rsp_int_status(struct dmub_srv *dmub)
498 {
499 	uint32_t status;
500 
501 	REG_GET(HOST_INTERRUPT_CSR, HOST_REG_INBOX0_RSP_INT_STAT, &status);
502 	return status;
503 }
504 
505 void dmub_dcn42_read_reg_inbox0_cmd_rsp(struct dmub_srv *dmub,
506 		union dmub_rb_cmd *cmd)
507 {
508 	uint32_t *dwords = (uint32_t *)cmd;
509 
510 	static_assert(sizeof(*cmd) == 64, "DMUB command size mismatch");
511 
512 	dwords[0] = REG_READ(DMCUB_REG_INBOX0_RSP);
513 	dwords[1] = REG_READ(DMCUB_REG_INBOX0_MSG0);
514 	dwords[2] = REG_READ(DMCUB_REG_INBOX0_MSG1);
515 	dwords[3] = REG_READ(DMCUB_REG_INBOX0_MSG2);
516 	dwords[4] = REG_READ(DMCUB_REG_INBOX0_MSG3);
517 	dwords[5] = REG_READ(DMCUB_REG_INBOX0_MSG4);
518 	dwords[6] = REG_READ(DMCUB_REG_INBOX0_MSG5);
519 	dwords[7] = REG_READ(DMCUB_REG_INBOX0_MSG6);
520 	dwords[8] = REG_READ(DMCUB_REG_INBOX0_MSG7);
521 	dwords[9] = REG_READ(DMCUB_REG_INBOX0_MSG8);
522 	dwords[10] = REG_READ(DMCUB_REG_INBOX0_MSG9);
523 	dwords[11] = REG_READ(DMCUB_REG_INBOX0_MSG10);
524 	dwords[12] = REG_READ(DMCUB_REG_INBOX0_MSG11);
525 	dwords[13] = REG_READ(DMCUB_REG_INBOX0_MSG12);
526 	dwords[14] = REG_READ(DMCUB_REG_INBOX0_MSG13);
527 	dwords[15] = REG_READ(DMCUB_REG_INBOX0_MSG14);
528 }
529 
530 void dmub_dcn42_write_reg_inbox0_rsp_int_ack(struct dmub_srv *dmub)
531 {
532 	REG_UPDATE(HOST_INTERRUPT_CSR, HOST_REG_INBOX0_RSP_INT_ACK, 1);
533 }
534 
535 void dmub_dcn42_clear_reg_inbox0_rsp_int_ack(struct dmub_srv *dmub)
536 {
537 	REG_UPDATE(HOST_INTERRUPT_CSR, HOST_REG_INBOX0_RSP_INT_ACK, 0);
538 }
539 
540 void dmub_dcn42_enable_reg_inbox0_rsp_int(struct dmub_srv *dmub, bool enable)
541 {
542 	REG_UPDATE(HOST_INTERRUPT_CSR, HOST_REG_INBOX0_RSP_INT_EN, enable ? 1:0);
543 }
544 
545 void dmub_dcn42_write_reg_outbox0_rdy_int_ack(struct dmub_srv *dmub)
546 {
547 	REG_UPDATE(HOST_INTERRUPT_CSR, HOST_REG_OUTBOX0_RDY_INT_ACK, 1);
548 	REG_UPDATE(HOST_INTERRUPT_CSR, HOST_REG_OUTBOX0_RDY_INT_ACK, 0);
549 }
550 
551 void dmub_dcn42_read_reg_outbox0_msg(struct dmub_srv *dmub, uint32_t *msg)
552 {
553 	*msg = REG_READ(DMCUB_REG_OUTBOX0_MSG0);
554 }
555 
556 
557 void dmub_dcn42_enable_reg_outbox0_rdy_int(struct dmub_srv *dmub, bool enable)
558 {
559 	REG_UPDATE(HOST_INTERRUPT_CSR, HOST_REG_OUTBOX0_RDY_INT_EN, enable ? 1:0);
560 }
561 
562 uint32_t dmub_dcn42_read_reg_outbox0_rdy_int_status(struct dmub_srv *dmub)
563 {
564 	uint32_t status;
565 
566 	REG_GET(HOST_INTERRUPT_CSR, HOST_REG_OUTBOX0_RDY_INT_STAT, &status);
567 	return status;
568 }
569 
570 void dmub_dcn42_setup_mailbox(struct dmub_srv *dmub,
571 		const struct dmub_region *inbox1)
572 {
573 	REG_WRITE(DMCUB_INBOX1_BASE_ADDRESS, inbox1->base);
574 	REG_WRITE(DMCUB_INBOX1_SIZE, inbox1->top - inbox1->base);
575 }
576 
577 void dmub_dcn42_set_gpint(struct dmub_srv *dmub,
578 		union dmub_gpint_data_register reg)
579 {
580 	REG_WRITE(DMCUB_GPINT_DATAIN1, reg.all);
581 }
582 
583 bool dmub_dcn42_is_gpint_acked(struct dmub_srv *dmub,
584 		union dmub_gpint_data_register reg)
585 {
586 	union dmub_gpint_data_register test;
587 
588 	reg.bits.status = 0;
589 	test.all = REG_READ(DMCUB_GPINT_DATAIN1);
590 
591 	return test.all == reg.all;
592 }
593 
594 uint32_t dmub_dcn42_get_gpint_response(struct dmub_srv *dmub)
595 {
596 	return REG_READ(DMCUB_SCRATCH7);
597 }
598 
599 uint32_t dmub_dcn42_get_gpint_dataout(struct dmub_srv *dmub)
600 {
601 	uint32_t dataout = REG_READ(DMCUB_GPINT_DATAOUT);
602 
603 	REG_UPDATE(DMCUB_INTERRUPT_ENABLE, DMCUB_GPINT_IH_INT_EN, 0);
604 
605 	REG_WRITE(DMCUB_GPINT_DATAOUT, 0);
606 	REG_UPDATE(DMCUB_INTERRUPT_ACK, DMCUB_GPINT_IH_INT_ACK, 1);
607 	REG_UPDATE(DMCUB_INTERRUPT_ACK, DMCUB_GPINT_IH_INT_ACK, 0);
608 
609 	REG_UPDATE(DMCUB_INTERRUPT_ENABLE, DMCUB_GPINT_IH_INT_EN, 1);
610 
611 	return dataout;
612 }
613 
614 uint32_t dmub_dcn42_get_outbox0_wptr(struct dmub_srv *dmub)
615 {
616 	return REG_READ(DMCUB_OUTBOX0_WPTR);
617 }
618 
619 void dmub_dcn42_set_outbox0_rptr(struct dmub_srv *dmub, uint32_t rptr_offset)
620 {
621 	REG_WRITE(DMCUB_OUTBOX0_RPTR, rptr_offset);
622 }
623 
624 uint32_t dmub_dcn42_get_current_time(struct dmub_srv *dmub)
625 {
626 	return REG_READ(DMCUB_TIMER_CURRENT);
627 }
628 
629 void dmub_dcn42_get_diagnostic_data(struct dmub_srv *dmub)
630 {
631 	uint32_t is_dmub_enabled, is_soft_reset, is_sec_reset, is_pwait;
632 	uint32_t is_traceport_enabled, is_cw0_enabled, is_cw6_enabled;
633 	struct dmub_timeout_info timeout = {0};
634 
635 	if (!dmub)
636 		return;
637 
638 	/* timeout data filled externally, cache before resetting memory */
639 	timeout = dmub->debug.timeout_info;
640 	memset(&dmub->debug, 0, sizeof(dmub->debug));
641 	dmub->debug.timeout_info = timeout;
642 
643 	dmub->debug.dmcub_version = dmub->fw_version;
644 
645 	dmub->debug.scratch[0] = REG_READ(DMCUB_SCRATCH0);
646 	dmub->debug.scratch[1] = REG_READ(DMCUB_SCRATCH1);
647 	dmub->debug.scratch[2] = REG_READ(DMCUB_SCRATCH2);
648 	dmub->debug.scratch[3] = REG_READ(DMCUB_SCRATCH3);
649 	dmub->debug.scratch[4] = REG_READ(DMCUB_SCRATCH4);
650 	dmub->debug.scratch[5] = REG_READ(DMCUB_SCRATCH5);
651 	dmub->debug.scratch[6] = REG_READ(DMCUB_SCRATCH6);
652 	dmub->debug.scratch[7] = REG_READ(DMCUB_SCRATCH7);
653 	dmub->debug.scratch[8] = REG_READ(DMCUB_SCRATCH8);
654 	dmub->debug.scratch[9] = REG_READ(DMCUB_SCRATCH9);
655 	dmub->debug.scratch[10] = REG_READ(DMCUB_SCRATCH10);
656 	dmub->debug.scratch[11] = REG_READ(DMCUB_SCRATCH11);
657 	dmub->debug.scratch[12] = REG_READ(DMCUB_SCRATCH12);
658 	dmub->debug.scratch[13] = REG_READ(DMCUB_SCRATCH13);
659 	dmub->debug.scratch[14] = REG_READ(DMCUB_SCRATCH14);
660 	dmub->debug.scratch[15] = REG_READ(DMCUB_SCRATCH15);
661 	dmub->debug.scratch[16] = REG_READ(DMCUB_SCRATCH16);
662 
663 	dmub->debug.undefined_address_fault_addr = REG_READ(DMCUB_UNDEFINED_ADDRESS_FAULT_ADDR);
664 	dmub->debug.inst_fetch_fault_addr = REG_READ(DMCUB_INST_FETCH_FAULT_ADDR);
665 	dmub->debug.data_write_fault_addr = REG_READ(DMCUB_DATA_WRITE_FAULT_ADDR);
666 
667 	dmub->debug.inbox1_rptr = REG_READ(DMCUB_INBOX1_RPTR);
668 	dmub->debug.inbox1_wptr = REG_READ(DMCUB_INBOX1_WPTR);
669 	dmub->debug.inbox1_size = REG_READ(DMCUB_INBOX1_SIZE);
670 
671 	dmub->debug.inbox0_rptr = REG_READ(DMCUB_INBOX0_RPTR);
672 	dmub->debug.inbox0_wptr = REG_READ(DMCUB_INBOX0_WPTR);
673 	dmub->debug.inbox0_size = REG_READ(DMCUB_INBOX0_SIZE);
674 
675 	dmub->debug.outbox1_rptr = REG_READ(DMCUB_OUTBOX1_RPTR);
676 	dmub->debug.outbox1_wptr = REG_READ(DMCUB_OUTBOX1_WPTR);
677 	dmub->debug.outbox1_size = REG_READ(DMCUB_OUTBOX1_SIZE);
678 
679 	REG_GET(DMCUB_CNTL, DMCUB_ENABLE, &is_dmub_enabled);
680 	dmub->debug.is_dmcub_enabled = is_dmub_enabled;
681 
682 	REG_GET(DMCUB_CNTL, DMCUB_PWAIT_MODE_STATUS, &is_pwait);
683 	dmub->debug.is_pwait = is_pwait;
684 
685 	REG_GET(DMCUB_CNTL2, DMCUB_SOFT_RESET, &is_soft_reset);
686 	dmub->debug.is_dmcub_soft_reset = is_soft_reset;
687 
688 	REG_GET(DMCUB_SEC_CNTL, DMCUB_SEC_RESET_STATUS, &is_sec_reset);
689 	dmub->debug.is_dmcub_secure_reset = is_sec_reset;
690 
691 	REG_GET(DMCUB_CNTL, DMCUB_TRACEPORT_EN, &is_traceport_enabled);
692 	dmub->debug.is_traceport_en  = is_traceport_enabled;
693 
694 	REG_GET(DMCUB_REGION3_CW0_TOP_ADDRESS, DMCUB_REGION3_CW0_ENABLE, &is_cw0_enabled);
695 	dmub->debug.is_cw0_enabled = is_cw0_enabled;
696 
697 	REG_GET(DMCUB_REGION3_CW6_TOP_ADDRESS, DMCUB_REGION3_CW6_ENABLE, &is_cw6_enabled);
698 	dmub->debug.is_cw6_enabled = is_cw6_enabled;
699 
700 	dmub->debug.gpint_datain0 = REG_READ(DMCUB_GPINT_DATAIN0);
701 }
702 
703 bool dmub_dcn42_get_preos_fw_info(struct dmub_srv *dmub)
704 {
705 	uint64_t region3_cw5_offset;
706 	uint32_t top_addr, top_addr_enable, offset_low;
707 	uint32_t offset_high, base_addr, fw_version;
708 	bool is_vbios_fw = false;
709 
710 	memset(&dmub->preos_info, 0, sizeof(dmub->preos_info));
711 
712 	fw_version = REG_READ(DMCUB_SCRATCH1);
713 	is_vbios_fw = ((fw_version >> 6) & 0x01) ? true : false;
714 	if (!is_vbios_fw)
715 		return false;
716 
717 	dmub->preos_info.boot_status = REG_READ(DMCUB_SCRATCH0);
718 	dmub->preos_info.fw_version = REG_READ(DMCUB_SCRATCH1);
719 	dmub->preos_info.boot_options = REG_READ(DMCUB_SCRATCH14);
720 	REG_GET(DMCUB_REGION3_CW5_TOP_ADDRESS,
721 		DMCUB_REGION3_CW5_ENABLE, &top_addr_enable);
722 	if (top_addr_enable) {
723 		dmub_dcn42_get_fb_base_offset(dmub,
724 			&dmub->preos_info.fb_base, &dmub->preos_info.fb_offset);
725 		offset_low = REG_READ(DMCUB_REGION3_CW5_OFFSET);
726 		offset_high = REG_READ(DMCUB_REGION3_CW5_OFFSET_HIGH);
727 		region3_cw5_offset = ((uint64_t)offset_high << 32) | offset_low;
728 		dmub->preos_info.trace_buffer_phy_addr = region3_cw5_offset
729 			- dmub->preos_info.fb_base + dmub->preos_info.fb_offset;
730 
731 		REG_GET(DMCUB_REGION3_CW5_TOP_ADDRESS,
732 			DMCUB_REGION3_CW5_TOP_ADDRESS, &top_addr);
733 		base_addr = REG_READ(DMCUB_REGION3_CW5_BASE_ADDRESS) & 0x1FFFFFFF;
734 		dmub->preos_info.trace_buffer_size =
735 			(top_addr > base_addr) ? (top_addr - base_addr + 1) : 0;
736 	}
737 
738 	return true;
739 }
740 
741 void dmub_dcn42_write_reg_outbox0_rsp(struct dmub_srv *dmub, uint32_t *rsp)
742 {
743 	REG_WRITE(DMCUB_REG_OUTBOX0_RSP, *rsp);
744 }
745 
746 uint32_t dmub_dcn42_read_reg_outbox0_rsp_int_status(struct dmub_srv *dmub)
747 {
748 	uint32_t status;
749 
750 	REG_GET(DMCUB_INTERRUPT_STATUS, DMCUB_REG_OUTBOX0_RSP_INT_STAT, &status);
751 	return status;
752 }
753