2 * Copyright 2018 Advanced Micro Devices, Inc.
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:
11 * The above copyright notice and this permission notice shall be included in
12 * all copies or substantial portions of the Software.
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.
24 #include "amdgpu_atombios.h"
25 #include "nbio_v7_4.h"
26 #include "amdgpu_ras.h"
28 #include "nbio/nbio_7_4_offset.h"
29 #include "nbio/nbio_7_4_sh_mask.h"
30 #include "nbio/nbio_7_4_0_smn.h"
31 #include "ivsrcid/nbio/irqsrcs_nbif_7_4.h"
32 #include <uapi/linux/kfd_ioctl.h>
34 #define smnNBIF_MGCG_CTRL_LCLK 0x1013a21c
37 * These are nbio v7_4_1 registers mask. Temporarily define these here since
38 * nbio v7_4_1 header is incomplete.
40 #define GPU_HDP_FLUSH_DONE__RSVD_ENG0_MASK 0x00001000L
41 #define GPU_HDP_FLUSH_DONE__RSVD_ENG1_MASK 0x00002000L
42 #define GPU_HDP_FLUSH_DONE__RSVD_ENG2_MASK 0x00004000L
43 #define GPU_HDP_FLUSH_DONE__RSVD_ENG3_MASK 0x00008000L
44 #define GPU_HDP_FLUSH_DONE__RSVD_ENG4_MASK 0x00010000L
45 #define GPU_HDP_FLUSH_DONE__RSVD_ENG5_MASK 0x00020000L
47 #define mmBIF_MMSCH1_DOORBELL_RANGE 0x01dc
48 #define mmBIF_MMSCH1_DOORBELL_RANGE_BASE_IDX 2
49 //BIF_MMSCH1_DOORBELL_RANGE
50 #define BIF_MMSCH1_DOORBELL_RANGE__OFFSET__SHIFT 0x2
51 #define BIF_MMSCH1_DOORBELL_RANGE__SIZE__SHIFT 0x10
52 #define BIF_MMSCH1_DOORBELL_RANGE__OFFSET_MASK 0x00000FFCL
53 #define BIF_MMSCH1_DOORBELL_RANGE__SIZE_MASK 0x001F0000L
55 static void nbio_v7_4_query_ras_error_count(struct amdgpu_device
*adev
,
56 void *ras_error_status
);
58 static void nbio_v7_4_remap_hdp_registers(struct amdgpu_device
*adev
)
60 WREG32_SOC15(NBIO
, 0, mmREMAP_HDP_MEM_FLUSH_CNTL
,
61 adev
->rmmio_remap
.reg_offset
+ KFD_MMIO_REMAP_HDP_MEM_FLUSH_CNTL
);
62 WREG32_SOC15(NBIO
, 0, mmREMAP_HDP_REG_FLUSH_CNTL
,
63 adev
->rmmio_remap
.reg_offset
+ KFD_MMIO_REMAP_HDP_REG_FLUSH_CNTL
);
66 static u32
nbio_v7_4_get_rev_id(struct amdgpu_device
*adev
)
68 u32 tmp
= RREG32_SOC15(NBIO
, 0, mmRCC_DEV0_EPF0_STRAP0
);
70 tmp
&= RCC_DEV0_EPF0_STRAP0__STRAP_ATI_REV_ID_DEV0_F0_MASK
;
71 tmp
>>= RCC_DEV0_EPF0_STRAP0__STRAP_ATI_REV_ID_DEV0_F0__SHIFT
;
76 static void nbio_v7_4_mc_access_enable(struct amdgpu_device
*adev
, bool enable
)
79 WREG32_SOC15(NBIO
, 0, mmBIF_FB_EN
,
80 BIF_FB_EN__FB_READ_EN_MASK
| BIF_FB_EN__FB_WRITE_EN_MASK
);
82 WREG32_SOC15(NBIO
, 0, mmBIF_FB_EN
, 0);
85 static void nbio_v7_4_hdp_flush(struct amdgpu_device
*adev
,
86 struct amdgpu_ring
*ring
)
88 if (!ring
|| !ring
->funcs
->emit_wreg
)
89 WREG32_NO_KIQ((adev
->rmmio_remap
.reg_offset
+ KFD_MMIO_REMAP_HDP_MEM_FLUSH_CNTL
) >> 2, 0);
91 amdgpu_ring_emit_wreg(ring
, (adev
->rmmio_remap
.reg_offset
+ KFD_MMIO_REMAP_HDP_MEM_FLUSH_CNTL
) >> 2, 0);
94 static u32
nbio_v7_4_get_memsize(struct amdgpu_device
*adev
)
96 return RREG32_SOC15(NBIO
, 0, mmRCC_CONFIG_MEMSIZE
);
99 static void nbio_v7_4_sdma_doorbell_range(struct amdgpu_device
*adev
, int instance
,
100 bool use_doorbell
, int doorbell_index
, int doorbell_size
)
102 u32 reg
, doorbell_range
;
106 SOC15_REG_OFFSET(NBIO
, 0, mmBIF_SDMA0_DOORBELL_RANGE
);
109 * These registers address of SDMA2~7 is not consecutive
110 * from SDMA0~1. Need plus 4 dwords offset.
112 * BIF_SDMA0_DOORBELL_RANGE: 0x3bc0
113 * BIF_SDMA1_DOORBELL_RANGE: 0x3bc4
114 * BIF_SDMA2_DOORBELL_RANGE: 0x3bd8
116 reg
= instance
+ 0x4 +
117 SOC15_REG_OFFSET(NBIO
, 0, mmBIF_SDMA0_DOORBELL_RANGE
);
119 doorbell_range
= RREG32(reg
);
122 doorbell_range
= REG_SET_FIELD(doorbell_range
, BIF_SDMA0_DOORBELL_RANGE
, OFFSET
, doorbell_index
);
123 doorbell_range
= REG_SET_FIELD(doorbell_range
, BIF_SDMA0_DOORBELL_RANGE
, SIZE
, doorbell_size
);
125 doorbell_range
= REG_SET_FIELD(doorbell_range
, BIF_SDMA0_DOORBELL_RANGE
, SIZE
, 0);
127 WREG32(reg
, doorbell_range
);
130 static void nbio_v7_4_vcn_doorbell_range(struct amdgpu_device
*adev
, bool use_doorbell
,
131 int doorbell_index
, int instance
)
137 reg
= SOC15_REG_OFFSET(NBIO
, 0, mmBIF_MMSCH1_DOORBELL_RANGE
);
139 reg
= SOC15_REG_OFFSET(NBIO
, 0, mmBIF_MMSCH0_DOORBELL_RANGE
);
141 doorbell_range
= RREG32(reg
);
144 doorbell_range
= REG_SET_FIELD(doorbell_range
,
145 BIF_MMSCH0_DOORBELL_RANGE
, OFFSET
,
147 doorbell_range
= REG_SET_FIELD(doorbell_range
,
148 BIF_MMSCH0_DOORBELL_RANGE
, SIZE
, 8);
150 doorbell_range
= REG_SET_FIELD(doorbell_range
,
151 BIF_MMSCH0_DOORBELL_RANGE
, SIZE
, 0);
153 WREG32(reg
, doorbell_range
);
156 static void nbio_v7_4_enable_doorbell_aperture(struct amdgpu_device
*adev
,
159 WREG32_FIELD15(NBIO
, 0, RCC_DOORBELL_APER_EN
, BIF_DOORBELL_APER_EN
, enable
? 1 : 0);
162 static void nbio_v7_4_enable_doorbell_selfring_aperture(struct amdgpu_device
*adev
,
168 tmp
= REG_SET_FIELD(tmp
, DOORBELL_SELFRING_GPA_APER_CNTL
, DOORBELL_SELFRING_GPA_APER_EN
, 1) |
169 REG_SET_FIELD(tmp
, DOORBELL_SELFRING_GPA_APER_CNTL
, DOORBELL_SELFRING_GPA_APER_MODE
, 1) |
170 REG_SET_FIELD(tmp
, DOORBELL_SELFRING_GPA_APER_CNTL
, DOORBELL_SELFRING_GPA_APER_SIZE
, 0);
172 WREG32_SOC15(NBIO
, 0, mmDOORBELL_SELFRING_GPA_APER_BASE_LOW
,
173 lower_32_bits(adev
->doorbell
.base
));
174 WREG32_SOC15(NBIO
, 0, mmDOORBELL_SELFRING_GPA_APER_BASE_HIGH
,
175 upper_32_bits(adev
->doorbell
.base
));
178 WREG32_SOC15(NBIO
, 0, mmDOORBELL_SELFRING_GPA_APER_CNTL
, tmp
);
181 static void nbio_v7_4_ih_doorbell_range(struct amdgpu_device
*adev
,
182 bool use_doorbell
, int doorbell_index
)
184 u32 ih_doorbell_range
= RREG32_SOC15(NBIO
, 0 , mmBIF_IH_DOORBELL_RANGE
);
187 ih_doorbell_range
= REG_SET_FIELD(ih_doorbell_range
, BIF_IH_DOORBELL_RANGE
, OFFSET
, doorbell_index
);
188 ih_doorbell_range
= REG_SET_FIELD(ih_doorbell_range
, BIF_IH_DOORBELL_RANGE
, SIZE
, 2);
190 ih_doorbell_range
= REG_SET_FIELD(ih_doorbell_range
, BIF_IH_DOORBELL_RANGE
, SIZE
, 0);
192 WREG32_SOC15(NBIO
, 0, mmBIF_IH_DOORBELL_RANGE
, ih_doorbell_range
);
196 static void nbio_v7_4_update_medium_grain_clock_gating(struct amdgpu_device
*adev
,
199 //TODO: Add support for v7.4
202 static void nbio_v7_4_update_medium_grain_light_sleep(struct amdgpu_device
*adev
,
207 def
= data
= RREG32_PCIE(smnPCIE_CNTL2
);
208 if (enable
&& (adev
->cg_flags
& AMD_CG_SUPPORT_BIF_LS
)) {
209 data
|= (PCIE_CNTL2__SLV_MEM_LS_EN_MASK
|
210 PCIE_CNTL2__MST_MEM_LS_EN_MASK
|
211 PCIE_CNTL2__REPLAY_MEM_LS_EN_MASK
);
213 data
&= ~(PCIE_CNTL2__SLV_MEM_LS_EN_MASK
|
214 PCIE_CNTL2__MST_MEM_LS_EN_MASK
|
215 PCIE_CNTL2__REPLAY_MEM_LS_EN_MASK
);
219 WREG32_PCIE(smnPCIE_CNTL2
, data
);
222 static void nbio_v7_4_get_clockgating_state(struct amdgpu_device
*adev
,
227 /* AMD_CG_SUPPORT_BIF_MGCG */
228 data
= RREG32_PCIE(smnCPM_CONTROL
);
229 if (data
& CPM_CONTROL__LCLK_DYN_GATE_ENABLE_MASK
)
230 *flags
|= AMD_CG_SUPPORT_BIF_MGCG
;
232 /* AMD_CG_SUPPORT_BIF_LS */
233 data
= RREG32_PCIE(smnPCIE_CNTL2
);
234 if (data
& PCIE_CNTL2__SLV_MEM_LS_EN_MASK
)
235 *flags
|= AMD_CG_SUPPORT_BIF_LS
;
238 static void nbio_v7_4_ih_control(struct amdgpu_device
*adev
)
242 /* setup interrupt control */
243 WREG32_SOC15(NBIO
, 0, mmINTERRUPT_CNTL2
, adev
->dummy_page_addr
>> 8);
244 interrupt_cntl
= RREG32_SOC15(NBIO
, 0, mmINTERRUPT_CNTL
);
245 /* INTERRUPT_CNTL__IH_DUMMY_RD_OVERRIDE_MASK=0 - dummy read disabled with msi, enabled without msi
246 * INTERRUPT_CNTL__IH_DUMMY_RD_OVERRIDE_MASK=1 - dummy read controlled by IH_DUMMY_RD_EN
248 interrupt_cntl
= REG_SET_FIELD(interrupt_cntl
, INTERRUPT_CNTL
, IH_DUMMY_RD_OVERRIDE
, 0);
249 /* INTERRUPT_CNTL__IH_REQ_NONSNOOP_EN_MASK=1 if ring is in non-cacheable memory, e.g., vram */
250 interrupt_cntl
= REG_SET_FIELD(interrupt_cntl
, INTERRUPT_CNTL
, IH_REQ_NONSNOOP_EN
, 0);
251 WREG32_SOC15(NBIO
, 0, mmINTERRUPT_CNTL
, interrupt_cntl
);
254 static u32
nbio_v7_4_get_hdp_flush_req_offset(struct amdgpu_device
*adev
)
256 return SOC15_REG_OFFSET(NBIO
, 0, mmGPU_HDP_FLUSH_REQ
);
259 static u32
nbio_v7_4_get_hdp_flush_done_offset(struct amdgpu_device
*adev
)
261 return SOC15_REG_OFFSET(NBIO
, 0, mmGPU_HDP_FLUSH_DONE
);
264 static u32
nbio_v7_4_get_pcie_index_offset(struct amdgpu_device
*adev
)
266 return SOC15_REG_OFFSET(NBIO
, 0, mmPCIE_INDEX2
);
269 static u32
nbio_v7_4_get_pcie_data_offset(struct amdgpu_device
*adev
)
271 return SOC15_REG_OFFSET(NBIO
, 0, mmPCIE_DATA2
);
274 const struct nbio_hdp_flush_reg nbio_v7_4_hdp_flush_reg
= {
275 .ref_and_mask_cp0
= GPU_HDP_FLUSH_DONE__CP0_MASK
,
276 .ref_and_mask_cp1
= GPU_HDP_FLUSH_DONE__CP1_MASK
,
277 .ref_and_mask_cp2
= GPU_HDP_FLUSH_DONE__CP2_MASK
,
278 .ref_and_mask_cp3
= GPU_HDP_FLUSH_DONE__CP3_MASK
,
279 .ref_and_mask_cp4
= GPU_HDP_FLUSH_DONE__CP4_MASK
,
280 .ref_and_mask_cp5
= GPU_HDP_FLUSH_DONE__CP5_MASK
,
281 .ref_and_mask_cp6
= GPU_HDP_FLUSH_DONE__CP6_MASK
,
282 .ref_and_mask_cp7
= GPU_HDP_FLUSH_DONE__CP7_MASK
,
283 .ref_and_mask_cp8
= GPU_HDP_FLUSH_DONE__CP8_MASK
,
284 .ref_and_mask_cp9
= GPU_HDP_FLUSH_DONE__CP9_MASK
,
285 .ref_and_mask_sdma0
= GPU_HDP_FLUSH_DONE__SDMA0_MASK
,
286 .ref_and_mask_sdma1
= GPU_HDP_FLUSH_DONE__SDMA1_MASK
,
287 .ref_and_mask_sdma2
= GPU_HDP_FLUSH_DONE__RSVD_ENG0_MASK
,
288 .ref_and_mask_sdma3
= GPU_HDP_FLUSH_DONE__RSVD_ENG1_MASK
,
289 .ref_and_mask_sdma4
= GPU_HDP_FLUSH_DONE__RSVD_ENG2_MASK
,
290 .ref_and_mask_sdma5
= GPU_HDP_FLUSH_DONE__RSVD_ENG3_MASK
,
291 .ref_and_mask_sdma6
= GPU_HDP_FLUSH_DONE__RSVD_ENG4_MASK
,
292 .ref_and_mask_sdma7
= GPU_HDP_FLUSH_DONE__RSVD_ENG5_MASK
,
295 static void nbio_v7_4_detect_hw_virt(struct amdgpu_device
*adev
)
299 reg
= RREG32_SOC15(NBIO
, 0, mmRCC_IOV_FUNC_IDENTIFIER
);
301 adev
->virt
.caps
|= AMDGPU_SRIOV_CAPS_IS_VF
;
303 if (reg
& 0x80000000)
304 adev
->virt
.caps
|= AMDGPU_SRIOV_CAPS_ENABLE_IOV
;
307 if (is_virtual_machine()) /* passthrough mode exclus sriov mod */
308 adev
->virt
.caps
|= AMDGPU_PASSTHROUGH_MODE
;
312 static void nbio_v7_4_init_registers(struct amdgpu_device
*adev
)
317 static void nbio_v7_4_handle_ras_controller_intr_no_bifring(struct amdgpu_device
*adev
)
319 uint32_t bif_doorbell_intr_cntl
;
320 struct ras_manager
*obj
= amdgpu_ras_find_obj(adev
, adev
->nbio
.ras_if
);
322 bif_doorbell_intr_cntl
= RREG32_SOC15(NBIO
, 0, mmBIF_DOORBELL_INT_CNTL
);
323 if (REG_GET_FIELD(bif_doorbell_intr_cntl
,
324 BIF_DOORBELL_INT_CNTL
, RAS_CNTLR_INTERRUPT_STATUS
)) {
325 /* driver has to clear the interrupt status when bif ring is disabled */
326 bif_doorbell_intr_cntl
= REG_SET_FIELD(bif_doorbell_intr_cntl
,
327 BIF_DOORBELL_INT_CNTL
,
328 RAS_CNTLR_INTERRUPT_CLEAR
, 1);
329 WREG32_SOC15(NBIO
, 0, mmBIF_DOORBELL_INT_CNTL
, bif_doorbell_intr_cntl
);
332 * clear error status after ras_controller_intr according to
333 * hw team and count ue number for query
335 nbio_v7_4_query_ras_error_count(adev
, &obj
->err_data
);
337 DRM_WARN("RAS controller interrupt triggered by NBIF error\n");
339 /* ras_controller_int is dedicated for nbif ras error,
340 * not the global interrupt for sync flood
342 amdgpu_ras_reset_gpu(adev
);
346 static void nbio_v7_4_handle_ras_err_event_athub_intr_no_bifring(struct amdgpu_device
*adev
)
348 uint32_t bif_doorbell_intr_cntl
;
350 bif_doorbell_intr_cntl
= RREG32_SOC15(NBIO
, 0, mmBIF_DOORBELL_INT_CNTL
);
351 if (REG_GET_FIELD(bif_doorbell_intr_cntl
,
352 BIF_DOORBELL_INT_CNTL
, RAS_ATHUB_ERR_EVENT_INTERRUPT_STATUS
)) {
353 /* driver has to clear the interrupt status when bif ring is disabled */
354 bif_doorbell_intr_cntl
= REG_SET_FIELD(bif_doorbell_intr_cntl
,
355 BIF_DOORBELL_INT_CNTL
,
356 RAS_ATHUB_ERR_EVENT_INTERRUPT_CLEAR
, 1);
357 WREG32_SOC15(NBIO
, 0, mmBIF_DOORBELL_INT_CNTL
, bif_doorbell_intr_cntl
);
359 amdgpu_ras_global_ras_isr(adev
);
364 static int nbio_v7_4_set_ras_controller_irq_state(struct amdgpu_device
*adev
,
365 struct amdgpu_irq_src
*src
,
367 enum amdgpu_interrupt_state state
)
369 /* The ras_controller_irq enablement should be done in psp bl when it
370 * tries to enable ras feature. Driver only need to set the correct interrupt
371 * vector for bare-metal and sriov use case respectively
373 uint32_t bif_intr_cntl
;
375 bif_intr_cntl
= RREG32_SOC15(NBIO
, 0, mmBIF_INTR_CNTL
);
376 if (state
== AMDGPU_IRQ_STATE_ENABLE
) {
377 /* set interrupt vector select bit to 0 to select
378 * vetcor 1 for bare metal case */
379 bif_intr_cntl
= REG_SET_FIELD(bif_intr_cntl
,
381 RAS_INTR_VEC_SEL
, 0);
382 WREG32_SOC15(NBIO
, 0, mmBIF_INTR_CNTL
, bif_intr_cntl
);
388 static int nbio_v7_4_process_ras_controller_irq(struct amdgpu_device
*adev
,
389 struct amdgpu_irq_src
*source
,
390 struct amdgpu_iv_entry
*entry
)
392 /* By design, the ih cookie for ras_controller_irq should be written
393 * to BIFring instead of general iv ring. However, due to known bif ring
394 * hw bug, it has to be disabled. There is no chance the process function
395 * will be involked. Just left it as a dummy one.
400 static int nbio_v7_4_set_ras_err_event_athub_irq_state(struct amdgpu_device
*adev
,
401 struct amdgpu_irq_src
*src
,
403 enum amdgpu_interrupt_state state
)
405 /* The ras_controller_irq enablement should be done in psp bl when it
406 * tries to enable ras feature. Driver only need to set the correct interrupt
407 * vector for bare-metal and sriov use case respectively
409 uint32_t bif_intr_cntl
;
411 bif_intr_cntl
= RREG32_SOC15(NBIO
, 0, mmBIF_INTR_CNTL
);
412 if (state
== AMDGPU_IRQ_STATE_ENABLE
) {
413 /* set interrupt vector select bit to 0 to select
414 * vetcor 1 for bare metal case */
415 bif_intr_cntl
= REG_SET_FIELD(bif_intr_cntl
,
417 RAS_INTR_VEC_SEL
, 0);
418 WREG32_SOC15(NBIO
, 0, mmBIF_INTR_CNTL
, bif_intr_cntl
);
424 static int nbio_v7_4_process_err_event_athub_irq(struct amdgpu_device
*adev
,
425 struct amdgpu_irq_src
*source
,
426 struct amdgpu_iv_entry
*entry
)
428 /* By design, the ih cookie for err_event_athub_irq should be written
429 * to BIFring instead of general iv ring. However, due to known bif ring
430 * hw bug, it has to be disabled. There is no chance the process function
431 * will be involked. Just left it as a dummy one.
436 static const struct amdgpu_irq_src_funcs nbio_v7_4_ras_controller_irq_funcs
= {
437 .set
= nbio_v7_4_set_ras_controller_irq_state
,
438 .process
= nbio_v7_4_process_ras_controller_irq
,
441 static const struct amdgpu_irq_src_funcs nbio_v7_4_ras_err_event_athub_irq_funcs
= {
442 .set
= nbio_v7_4_set_ras_err_event_athub_irq_state
,
443 .process
= nbio_v7_4_process_err_event_athub_irq
,
446 static int nbio_v7_4_init_ras_controller_interrupt (struct amdgpu_device
*adev
)
450 /* init the irq funcs */
451 adev
->nbio
.ras_controller_irq
.funcs
=
452 &nbio_v7_4_ras_controller_irq_funcs
;
453 adev
->nbio
.ras_controller_irq
.num_types
= 1;
455 /* register ras controller interrupt */
456 r
= amdgpu_irq_add_id(adev
, SOC15_IH_CLIENTID_BIF
,
457 NBIF_7_4__SRCID__RAS_CONTROLLER_INTERRUPT
,
458 &adev
->nbio
.ras_controller_irq
);
463 static int nbio_v7_4_init_ras_err_event_athub_interrupt (struct amdgpu_device
*adev
)
468 /* init the irq funcs */
469 adev
->nbio
.ras_err_event_athub_irq
.funcs
=
470 &nbio_v7_4_ras_err_event_athub_irq_funcs
;
471 adev
->nbio
.ras_err_event_athub_irq
.num_types
= 1;
473 /* register ras err event athub interrupt */
474 r
= amdgpu_irq_add_id(adev
, SOC15_IH_CLIENTID_BIF
,
475 NBIF_7_4__SRCID__ERREVENT_ATHUB_INTERRUPT
,
476 &adev
->nbio
.ras_err_event_athub_irq
);
481 #define smnPARITY_ERROR_STATUS_UNCORR_GRP2 0x13a20030
483 static void nbio_v7_4_query_ras_error_count(struct amdgpu_device
*adev
,
484 void *ras_error_status
)
486 uint32_t global_sts
, central_sts
, int_eoi
, parity_sts
;
487 uint32_t corr
, fatal
, non_fatal
;
488 struct ras_err_data
*err_data
= (struct ras_err_data
*)ras_error_status
;
490 global_sts
= RREG32_PCIE(smnRAS_GLOBAL_STATUS_LO
);
491 corr
= REG_GET_FIELD(global_sts
, RAS_GLOBAL_STATUS_LO
, ParityErrCorr
);
492 fatal
= REG_GET_FIELD(global_sts
, RAS_GLOBAL_STATUS_LO
, ParityErrFatal
);
493 non_fatal
= REG_GET_FIELD(global_sts
, RAS_GLOBAL_STATUS_LO
,
495 parity_sts
= RREG32_PCIE(smnPARITY_ERROR_STATUS_UNCORR_GRP2
);
498 err_data
->ce_count
++;
500 err_data
->ue_count
++;
502 if (corr
|| fatal
|| non_fatal
) {
503 central_sts
= RREG32_PCIE(smnBIFL_RAS_CENTRAL_STATUS
);
504 /* clear error status register */
505 WREG32_PCIE(smnRAS_GLOBAL_STATUS_LO
, global_sts
);
508 /* clear parity fatal error indication field */
509 WREG32_PCIE(smnPARITY_ERROR_STATUS_UNCORR_GRP2
,
512 if (REG_GET_FIELD(central_sts
, BIFL_RAS_CENTRAL_STATUS
,
513 BIFL_RasContller_Intr_Recv
)) {
514 /* clear interrupt status register */
515 WREG32_PCIE(smnBIFL_RAS_CENTRAL_STATUS
, central_sts
);
516 int_eoi
= RREG32_PCIE(smnIOHC_INTERRUPT_EOI
);
517 int_eoi
= REG_SET_FIELD(int_eoi
,
518 IOHC_INTERRUPT_EOI
, SMI_EOI
, 1);
519 WREG32_PCIE(smnIOHC_INTERRUPT_EOI
, int_eoi
);
524 static void nbio_v7_4_enable_doorbell_interrupt(struct amdgpu_device
*adev
,
527 WREG32_FIELD15(NBIO
, 0, BIF_DOORBELL_INT_CNTL
,
528 DOORBELL_INTERRUPT_DISABLE
, enable
? 0 : 1);
531 const struct amdgpu_nbio_funcs nbio_v7_4_funcs
= {
532 .get_hdp_flush_req_offset
= nbio_v7_4_get_hdp_flush_req_offset
,
533 .get_hdp_flush_done_offset
= nbio_v7_4_get_hdp_flush_done_offset
,
534 .get_pcie_index_offset
= nbio_v7_4_get_pcie_index_offset
,
535 .get_pcie_data_offset
= nbio_v7_4_get_pcie_data_offset
,
536 .get_rev_id
= nbio_v7_4_get_rev_id
,
537 .mc_access_enable
= nbio_v7_4_mc_access_enable
,
538 .hdp_flush
= nbio_v7_4_hdp_flush
,
539 .get_memsize
= nbio_v7_4_get_memsize
,
540 .sdma_doorbell_range
= nbio_v7_4_sdma_doorbell_range
,
541 .vcn_doorbell_range
= nbio_v7_4_vcn_doorbell_range
,
542 .enable_doorbell_aperture
= nbio_v7_4_enable_doorbell_aperture
,
543 .enable_doorbell_selfring_aperture
= nbio_v7_4_enable_doorbell_selfring_aperture
,
544 .ih_doorbell_range
= nbio_v7_4_ih_doorbell_range
,
545 .enable_doorbell_interrupt
= nbio_v7_4_enable_doorbell_interrupt
,
546 .update_medium_grain_clock_gating
= nbio_v7_4_update_medium_grain_clock_gating
,
547 .update_medium_grain_light_sleep
= nbio_v7_4_update_medium_grain_light_sleep
,
548 .get_clockgating_state
= nbio_v7_4_get_clockgating_state
,
549 .ih_control
= nbio_v7_4_ih_control
,
550 .init_registers
= nbio_v7_4_init_registers
,
551 .detect_hw_virt
= nbio_v7_4_detect_hw_virt
,
552 .remap_hdp_registers
= nbio_v7_4_remap_hdp_registers
,
553 .handle_ras_controller_intr_no_bifring
= nbio_v7_4_handle_ras_controller_intr_no_bifring
,
554 .handle_ras_err_event_athub_intr_no_bifring
= nbio_v7_4_handle_ras_err_event_athub_intr_no_bifring
,
555 .init_ras_controller_interrupt
= nbio_v7_4_init_ras_controller_interrupt
,
556 .init_ras_err_event_athub_interrupt
= nbio_v7_4_init_ras_err_event_athub_interrupt
,
557 .query_ras_error_count
= nbio_v7_4_query_ras_error_count
,
558 .ras_late_init
= amdgpu_nbio_ras_late_init
,