Line data Source code
1 : /*
2 : * Copyright 2020 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 "../dmub_srv.h"
27 : #include "dmub_reg.h"
28 : #include "dmub_dcn31.h"
29 :
30 : #include "yellow_carp_offset.h"
31 : #include "dcn/dcn_3_1_2_offset.h"
32 : #include "dcn/dcn_3_1_2_sh_mask.h"
33 :
34 : #define BASE_INNER(seg) DCN_BASE__INST0_SEG##seg
35 : #define CTX dmub
36 : #define REGS dmub->regs_dcn31
37 : #define REG_OFFSET_EXP(reg_name) (BASE(reg##reg_name##_BASE_IDX) + reg##reg_name)
38 :
39 : const struct dmub_srv_dcn31_regs dmub_srv_dcn31_regs = {
40 : #define DMUB_SR(reg) REG_OFFSET_EXP(reg),
41 : {
42 : DMUB_DCN31_REGS()
43 : DMCUB_INTERNAL_REGS()
44 : },
45 : #undef DMUB_SR
46 :
47 : #define DMUB_SF(reg, field) FD_MASK(reg, field),
48 : { DMUB_DCN31_FIELDS() },
49 : #undef DMUB_SF
50 :
51 : #define DMUB_SF(reg, field) FD_SHIFT(reg, field),
52 : { DMUB_DCN31_FIELDS() },
53 : #undef DMUB_SF
54 : };
55 :
56 0 : static void dmub_dcn31_get_fb_base_offset(struct dmub_srv *dmub,
57 : uint64_t *fb_base,
58 : uint64_t *fb_offset)
59 : {
60 : uint32_t tmp;
61 :
62 0 : if (dmub->fb_base || dmub->fb_offset) {
63 0 : *fb_base = dmub->fb_base;
64 0 : *fb_offset = dmub->fb_offset;
65 0 : return;
66 : }
67 :
68 0 : REG_GET(DCN_VM_FB_LOCATION_BASE, FB_BASE, &tmp);
69 0 : *fb_base = (uint64_t)tmp << 24;
70 :
71 0 : REG_GET(DCN_VM_FB_OFFSET, FB_OFFSET, &tmp);
72 0 : *fb_offset = (uint64_t)tmp << 24;
73 : }
74 :
75 : static inline void dmub_dcn31_translate_addr(const union dmub_addr *addr_in,
76 : uint64_t fb_base,
77 : uint64_t fb_offset,
78 : union dmub_addr *addr_out)
79 : {
80 0 : addr_out->quad_part = addr_in->quad_part - fb_base + fb_offset;
81 : }
82 :
83 0 : void dmub_dcn31_reset(struct dmub_srv *dmub)
84 : {
85 : union dmub_gpint_data_register cmd;
86 0 : const uint32_t timeout = 100;
87 : uint32_t in_reset, scratch, i, pwait_mode;
88 :
89 0 : REG_GET(DMCUB_CNTL2, DMCUB_SOFT_RESET, &in_reset);
90 :
91 0 : if (in_reset == 0) {
92 0 : cmd.bits.status = 1;
93 0 : cmd.bits.command_code = DMUB_GPINT__STOP_FW;
94 0 : cmd.bits.param = 0;
95 :
96 0 : dmub->hw_funcs.set_gpint(dmub, cmd);
97 :
98 : /**
99 : * Timeout covers both the ACK and the wait
100 : * for remaining work to finish.
101 : */
102 :
103 0 : for (i = 0; i < timeout; ++i) {
104 0 : if (dmub->hw_funcs.is_gpint_acked(dmub, cmd))
105 : break;
106 :
107 0 : udelay(1);
108 : }
109 :
110 0 : for (i = 0; i < timeout; ++i) {
111 0 : scratch = dmub->hw_funcs.get_gpint_response(dmub);
112 0 : if (scratch == DMUB_GPINT__STOP_FW_RESPONSE)
113 : break;
114 :
115 0 : udelay(1);
116 : }
117 :
118 0 : for (i = 0; i < timeout; ++i) {
119 0 : REG_GET(DMCUB_CNTL, DMCUB_PWAIT_MODE_STATUS, &pwait_mode);
120 0 : if (pwait_mode & (1 << 0))
121 : break;
122 :
123 0 : udelay(1);
124 : }
125 : /* Force reset in case we timed out, DMCUB is likely hung. */
126 : }
127 :
128 0 : REG_UPDATE(DMCUB_CNTL2, DMCUB_SOFT_RESET, 1);
129 0 : REG_UPDATE(DMCUB_CNTL, DMCUB_ENABLE, 0);
130 0 : REG_UPDATE(MMHUBBUB_SOFT_RESET, DMUIF_SOFT_RESET, 1);
131 0 : REG_WRITE(DMCUB_INBOX1_RPTR, 0);
132 0 : REG_WRITE(DMCUB_INBOX1_WPTR, 0);
133 0 : REG_WRITE(DMCUB_OUTBOX1_RPTR, 0);
134 0 : REG_WRITE(DMCUB_OUTBOX1_WPTR, 0);
135 0 : REG_WRITE(DMCUB_OUTBOX0_RPTR, 0);
136 0 : REG_WRITE(DMCUB_OUTBOX0_WPTR, 0);
137 0 : REG_WRITE(DMCUB_SCRATCH0, 0);
138 :
139 : /* Clear the GPINT command manually so we don't send anything during boot. */
140 0 : cmd.all = 0;
141 0 : dmub->hw_funcs.set_gpint(dmub, cmd);
142 0 : }
143 :
144 0 : void dmub_dcn31_reset_release(struct dmub_srv *dmub)
145 : {
146 0 : REG_UPDATE(MMHUBBUB_SOFT_RESET, DMUIF_SOFT_RESET, 0);
147 0 : REG_WRITE(DMCUB_SCRATCH15, dmub->psp_version & 0x001100FF);
148 0 : REG_UPDATE_2(DMCUB_CNTL, DMCUB_ENABLE, 1, DMCUB_TRACEPORT_EN, 1);
149 0 : REG_UPDATE(DMCUB_CNTL2, DMCUB_SOFT_RESET, 0);
150 0 : }
151 :
152 0 : void dmub_dcn31_backdoor_load(struct dmub_srv *dmub,
153 : const struct dmub_window *cw0,
154 : const struct dmub_window *cw1)
155 : {
156 : union dmub_addr offset;
157 : uint64_t fb_base, fb_offset;
158 :
159 0 : dmub_dcn31_get_fb_base_offset(dmub, &fb_base, &fb_offset);
160 :
161 0 : REG_UPDATE(DMCUB_SEC_CNTL, DMCUB_SEC_RESET, 1);
162 :
163 0 : dmub_dcn31_translate_addr(&cw0->offset, fb_base, fb_offset, &offset);
164 :
165 0 : REG_WRITE(DMCUB_REGION3_CW0_OFFSET, offset.u.low_part);
166 0 : REG_WRITE(DMCUB_REGION3_CW0_OFFSET_HIGH, offset.u.high_part);
167 0 : REG_WRITE(DMCUB_REGION3_CW0_BASE_ADDRESS, cw0->region.base);
168 0 : REG_SET_2(DMCUB_REGION3_CW0_TOP_ADDRESS, 0,
169 : DMCUB_REGION3_CW0_TOP_ADDRESS, cw0->region.top,
170 : DMCUB_REGION3_CW0_ENABLE, 1);
171 :
172 0 : dmub_dcn31_translate_addr(&cw1->offset, fb_base, fb_offset, &offset);
173 :
174 0 : REG_WRITE(DMCUB_REGION3_CW1_OFFSET, offset.u.low_part);
175 0 : REG_WRITE(DMCUB_REGION3_CW1_OFFSET_HIGH, offset.u.high_part);
176 0 : REG_WRITE(DMCUB_REGION3_CW1_BASE_ADDRESS, cw1->region.base);
177 0 : REG_SET_2(DMCUB_REGION3_CW1_TOP_ADDRESS, 0,
178 : DMCUB_REGION3_CW1_TOP_ADDRESS, cw1->region.top,
179 : DMCUB_REGION3_CW1_ENABLE, 1);
180 :
181 0 : REG_UPDATE_2(DMCUB_SEC_CNTL, DMCUB_SEC_RESET, 0, DMCUB_MEM_UNIT_ID,
182 : 0x20);
183 0 : }
184 :
185 0 : void dmub_dcn31_setup_windows(struct dmub_srv *dmub,
186 : const struct dmub_window *cw2,
187 : const struct dmub_window *cw3,
188 : const struct dmub_window *cw4,
189 : const struct dmub_window *cw5,
190 : const struct dmub_window *cw6)
191 : {
192 : union dmub_addr offset;
193 :
194 0 : offset = cw3->offset;
195 :
196 0 : REG_WRITE(DMCUB_REGION3_CW3_OFFSET, offset.u.low_part);
197 0 : REG_WRITE(DMCUB_REGION3_CW3_OFFSET_HIGH, offset.u.high_part);
198 0 : REG_WRITE(DMCUB_REGION3_CW3_BASE_ADDRESS, cw3->region.base);
199 0 : REG_SET_2(DMCUB_REGION3_CW3_TOP_ADDRESS, 0,
200 : DMCUB_REGION3_CW3_TOP_ADDRESS, cw3->region.top,
201 : DMCUB_REGION3_CW3_ENABLE, 1);
202 :
203 0 : offset = cw4->offset;
204 :
205 0 : REG_WRITE(DMCUB_REGION3_CW4_OFFSET, offset.u.low_part);
206 0 : REG_WRITE(DMCUB_REGION3_CW4_OFFSET_HIGH, offset.u.high_part);
207 0 : REG_WRITE(DMCUB_REGION3_CW4_BASE_ADDRESS, cw4->region.base);
208 0 : REG_SET_2(DMCUB_REGION3_CW4_TOP_ADDRESS, 0,
209 : DMCUB_REGION3_CW4_TOP_ADDRESS, cw4->region.top,
210 : DMCUB_REGION3_CW4_ENABLE, 1);
211 :
212 0 : offset = cw5->offset;
213 :
214 0 : REG_WRITE(DMCUB_REGION3_CW5_OFFSET, offset.u.low_part);
215 0 : REG_WRITE(DMCUB_REGION3_CW5_OFFSET_HIGH, offset.u.high_part);
216 0 : REG_WRITE(DMCUB_REGION3_CW5_BASE_ADDRESS, cw5->region.base);
217 0 : REG_SET_2(DMCUB_REGION3_CW5_TOP_ADDRESS, 0,
218 : DMCUB_REGION3_CW5_TOP_ADDRESS, cw5->region.top,
219 : DMCUB_REGION3_CW5_ENABLE, 1);
220 :
221 0 : REG_WRITE(DMCUB_REGION5_OFFSET, offset.u.low_part);
222 0 : REG_WRITE(DMCUB_REGION5_OFFSET_HIGH, offset.u.high_part);
223 0 : REG_SET_2(DMCUB_REGION5_TOP_ADDRESS, 0,
224 : DMCUB_REGION5_TOP_ADDRESS,
225 : cw5->region.top - cw5->region.base - 1,
226 : DMCUB_REGION5_ENABLE, 1);
227 :
228 0 : offset = cw6->offset;
229 :
230 0 : REG_WRITE(DMCUB_REGION3_CW6_OFFSET, offset.u.low_part);
231 0 : REG_WRITE(DMCUB_REGION3_CW6_OFFSET_HIGH, offset.u.high_part);
232 0 : REG_WRITE(DMCUB_REGION3_CW6_BASE_ADDRESS, cw6->region.base);
233 0 : REG_SET_2(DMCUB_REGION3_CW6_TOP_ADDRESS, 0,
234 : DMCUB_REGION3_CW6_TOP_ADDRESS, cw6->region.top,
235 : DMCUB_REGION3_CW6_ENABLE, 1);
236 0 : }
237 :
238 0 : void dmub_dcn31_setup_mailbox(struct dmub_srv *dmub,
239 : const struct dmub_region *inbox1)
240 : {
241 0 : REG_WRITE(DMCUB_INBOX1_BASE_ADDRESS, inbox1->base);
242 0 : REG_WRITE(DMCUB_INBOX1_SIZE, inbox1->top - inbox1->base);
243 0 : }
244 :
245 0 : uint32_t dmub_dcn31_get_inbox1_rptr(struct dmub_srv *dmub)
246 : {
247 0 : return REG_READ(DMCUB_INBOX1_RPTR);
248 : }
249 :
250 0 : void dmub_dcn31_set_inbox1_wptr(struct dmub_srv *dmub, uint32_t wptr_offset)
251 : {
252 0 : REG_WRITE(DMCUB_INBOX1_WPTR, wptr_offset);
253 0 : }
254 :
255 0 : void dmub_dcn31_setup_out_mailbox(struct dmub_srv *dmub,
256 : const struct dmub_region *outbox1)
257 : {
258 0 : REG_WRITE(DMCUB_OUTBOX1_BASE_ADDRESS, outbox1->base);
259 0 : REG_WRITE(DMCUB_OUTBOX1_SIZE, outbox1->top - outbox1->base);
260 0 : }
261 :
262 0 : uint32_t dmub_dcn31_get_outbox1_wptr(struct dmub_srv *dmub)
263 : {
264 : /**
265 : * outbox1 wptr register is accessed without locks (dal & dc)
266 : * and to be called only by dmub_srv_stat_get_notification()
267 : */
268 0 : return REG_READ(DMCUB_OUTBOX1_WPTR);
269 : }
270 :
271 0 : void dmub_dcn31_set_outbox1_rptr(struct dmub_srv *dmub, uint32_t rptr_offset)
272 : {
273 : /**
274 : * outbox1 rptr register is accessed without locks (dal & dc)
275 : * and to be called only by dmub_srv_stat_get_notification()
276 : */
277 0 : REG_WRITE(DMCUB_OUTBOX1_RPTR, rptr_offset);
278 0 : }
279 :
280 0 : bool dmub_dcn31_is_hw_init(struct dmub_srv *dmub)
281 : {
282 : union dmub_fw_boot_status status;
283 : uint32_t is_enable;
284 :
285 0 : status.all = REG_READ(DMCUB_SCRATCH0);
286 0 : REG_GET(DMCUB_CNTL, DMCUB_ENABLE, &is_enable);
287 :
288 0 : return is_enable != 0 && status.bits.dal_fw;
289 : }
290 :
291 0 : bool dmub_dcn31_is_supported(struct dmub_srv *dmub)
292 : {
293 0 : uint32_t supported = 0;
294 :
295 0 : REG_GET(CC_DC_PIPE_DIS, DC_DMCUB_ENABLE, &supported);
296 :
297 0 : return supported;
298 : }
299 :
300 0 : void dmub_dcn31_set_gpint(struct dmub_srv *dmub,
301 : union dmub_gpint_data_register reg)
302 : {
303 0 : REG_WRITE(DMCUB_GPINT_DATAIN1, reg.all);
304 0 : }
305 :
306 0 : bool dmub_dcn31_is_gpint_acked(struct dmub_srv *dmub,
307 : union dmub_gpint_data_register reg)
308 : {
309 : union dmub_gpint_data_register test;
310 :
311 0 : reg.bits.status = 0;
312 0 : test.all = REG_READ(DMCUB_GPINT_DATAIN1);
313 :
314 0 : return test.all == reg.all;
315 : }
316 :
317 0 : uint32_t dmub_dcn31_get_gpint_response(struct dmub_srv *dmub)
318 : {
319 0 : return REG_READ(DMCUB_SCRATCH7);
320 : }
321 :
322 0 : uint32_t dmub_dcn31_get_gpint_dataout(struct dmub_srv *dmub)
323 : {
324 0 : uint32_t dataout = REG_READ(DMCUB_GPINT_DATAOUT);
325 :
326 0 : REG_UPDATE(DMCUB_INTERRUPT_ENABLE, DMCUB_GPINT_IH_INT_EN, 0);
327 :
328 0 : REG_WRITE(DMCUB_GPINT_DATAOUT, 0);
329 0 : REG_UPDATE(DMCUB_INTERRUPT_ACK, DMCUB_GPINT_IH_INT_ACK, 1);
330 0 : REG_UPDATE(DMCUB_INTERRUPT_ACK, DMCUB_GPINT_IH_INT_ACK, 0);
331 :
332 0 : REG_UPDATE(DMCUB_INTERRUPT_ENABLE, DMCUB_GPINT_IH_INT_EN, 1);
333 :
334 0 : return dataout;
335 : }
336 :
337 0 : union dmub_fw_boot_status dmub_dcn31_get_fw_boot_status(struct dmub_srv *dmub)
338 : {
339 : union dmub_fw_boot_status status;
340 :
341 0 : status.all = REG_READ(DMCUB_SCRATCH0);
342 0 : return status;
343 : }
344 :
345 0 : void dmub_dcn31_enable_dmub_boot_options(struct dmub_srv *dmub, const struct dmub_srv_hw_params *params)
346 : {
347 0 : union dmub_fw_boot_options boot_options = {0};
348 :
349 0 : boot_options.bits.z10_disable = params->disable_z10;
350 0 : boot_options.bits.dpia_supported = params->dpia_supported;
351 0 : boot_options.bits.enable_dpia = params->disable_dpia ? 0 : 1;
352 0 : boot_options.bits.usb4_cm_version = params->usb4_cm_version;
353 0 : boot_options.bits.power_optimization = params->power_optimization;
354 :
355 0 : boot_options.bits.sel_mux_phy_c_d_phy_f_g = (dmub->asic == DMUB_ASIC_DCN31B) ? 1 : 0;
356 :
357 0 : REG_WRITE(DMCUB_SCRATCH14, boot_options.all);
358 0 : }
359 :
360 0 : void dmub_dcn31_skip_dmub_panel_power_sequence(struct dmub_srv *dmub, bool skip)
361 : {
362 : union dmub_fw_boot_options boot_options;
363 0 : boot_options.all = REG_READ(DMCUB_SCRATCH14);
364 0 : boot_options.bits.skip_phy_init_panel_sequence = skip;
365 0 : REG_WRITE(DMCUB_SCRATCH14, boot_options.all);
366 0 : }
367 :
368 0 : void dmub_dcn31_setup_outbox0(struct dmub_srv *dmub,
369 : const struct dmub_region *outbox0)
370 : {
371 0 : REG_WRITE(DMCUB_OUTBOX0_BASE_ADDRESS, outbox0->base);
372 :
373 0 : REG_WRITE(DMCUB_OUTBOX0_SIZE, outbox0->top - outbox0->base);
374 0 : }
375 :
376 0 : uint32_t dmub_dcn31_get_outbox0_wptr(struct dmub_srv *dmub)
377 : {
378 0 : return REG_READ(DMCUB_OUTBOX0_WPTR);
379 : }
380 :
381 0 : void dmub_dcn31_set_outbox0_rptr(struct dmub_srv *dmub, uint32_t rptr_offset)
382 : {
383 0 : REG_WRITE(DMCUB_OUTBOX0_RPTR, rptr_offset);
384 0 : }
385 :
386 0 : uint32_t dmub_dcn31_get_current_time(struct dmub_srv *dmub)
387 : {
388 0 : return REG_READ(DMCUB_TIMER_CURRENT);
389 : }
390 :
391 0 : void dmub_dcn31_get_diagnostic_data(struct dmub_srv *dmub, struct dmub_diagnostic_data *diag_data)
392 : {
393 : uint32_t is_dmub_enabled, is_soft_reset, is_sec_reset;
394 : uint32_t is_traceport_enabled, is_cw0_enabled, is_cw6_enabled;
395 :
396 0 : if (!dmub || !diag_data)
397 0 : return;
398 :
399 0 : memset(diag_data, 0, sizeof(*diag_data));
400 :
401 0 : diag_data->dmcub_version = dmub->fw_version;
402 :
403 0 : diag_data->scratch[0] = REG_READ(DMCUB_SCRATCH0);
404 0 : diag_data->scratch[1] = REG_READ(DMCUB_SCRATCH1);
405 0 : diag_data->scratch[2] = REG_READ(DMCUB_SCRATCH2);
406 0 : diag_data->scratch[3] = REG_READ(DMCUB_SCRATCH3);
407 0 : diag_data->scratch[4] = REG_READ(DMCUB_SCRATCH4);
408 0 : diag_data->scratch[5] = REG_READ(DMCUB_SCRATCH5);
409 0 : diag_data->scratch[6] = REG_READ(DMCUB_SCRATCH6);
410 0 : diag_data->scratch[7] = REG_READ(DMCUB_SCRATCH7);
411 0 : diag_data->scratch[8] = REG_READ(DMCUB_SCRATCH8);
412 0 : diag_data->scratch[9] = REG_READ(DMCUB_SCRATCH9);
413 0 : diag_data->scratch[10] = REG_READ(DMCUB_SCRATCH10);
414 0 : diag_data->scratch[11] = REG_READ(DMCUB_SCRATCH11);
415 0 : diag_data->scratch[12] = REG_READ(DMCUB_SCRATCH12);
416 0 : diag_data->scratch[13] = REG_READ(DMCUB_SCRATCH13);
417 0 : diag_data->scratch[14] = REG_READ(DMCUB_SCRATCH14);
418 0 : diag_data->scratch[15] = REG_READ(DMCUB_SCRATCH15);
419 :
420 0 : diag_data->undefined_address_fault_addr = REG_READ(DMCUB_UNDEFINED_ADDRESS_FAULT_ADDR);
421 0 : diag_data->inst_fetch_fault_addr = REG_READ(DMCUB_INST_FETCH_FAULT_ADDR);
422 0 : diag_data->data_write_fault_addr = REG_READ(DMCUB_DATA_WRITE_FAULT_ADDR);
423 :
424 0 : diag_data->inbox1_rptr = REG_READ(DMCUB_INBOX1_RPTR);
425 0 : diag_data->inbox1_wptr = REG_READ(DMCUB_INBOX1_WPTR);
426 0 : diag_data->inbox1_size = REG_READ(DMCUB_INBOX1_SIZE);
427 :
428 0 : diag_data->inbox0_rptr = REG_READ(DMCUB_INBOX0_RPTR);
429 0 : diag_data->inbox0_wptr = REG_READ(DMCUB_INBOX0_WPTR);
430 0 : diag_data->inbox0_size = REG_READ(DMCUB_INBOX0_SIZE);
431 :
432 0 : REG_GET(DMCUB_CNTL, DMCUB_ENABLE, &is_dmub_enabled);
433 0 : diag_data->is_dmcub_enabled = is_dmub_enabled;
434 :
435 0 : REG_GET(DMCUB_CNTL2, DMCUB_SOFT_RESET, &is_soft_reset);
436 0 : diag_data->is_dmcub_soft_reset = is_soft_reset;
437 :
438 0 : REG_GET(DMCUB_SEC_CNTL, DMCUB_SEC_RESET_STATUS, &is_sec_reset);
439 0 : diag_data->is_dmcub_secure_reset = is_sec_reset;
440 :
441 0 : REG_GET(DMCUB_CNTL, DMCUB_TRACEPORT_EN, &is_traceport_enabled);
442 0 : diag_data->is_traceport_en = is_traceport_enabled;
443 :
444 0 : REG_GET(DMCUB_REGION3_CW0_TOP_ADDRESS, DMCUB_REGION3_CW0_ENABLE, &is_cw0_enabled);
445 0 : diag_data->is_cw0_enabled = is_cw0_enabled;
446 :
447 0 : REG_GET(DMCUB_REGION3_CW6_TOP_ADDRESS, DMCUB_REGION3_CW6_ENABLE, &is_cw6_enabled);
448 0 : diag_data->is_cw6_enabled = is_cw6_enabled;
449 : }
450 :
451 0 : bool dmub_dcn31_should_detect(struct dmub_srv *dmub)
452 : {
453 0 : uint32_t fw_boot_status = REG_READ(DMCUB_SCRATCH0);
454 0 : bool should_detect = (fw_boot_status & DMUB_FW_BOOT_STATUS_BIT_DETECTION_REQUIRED) != 0;
455 0 : return should_detect;
456 : }
457 :
|