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, 4);
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_init_registers(struct amdgpu_device *adev)
300 static void nbio_v7_4_handle_ras_controller_intr_no_bifring(struct amdgpu_device *adev)
302 uint32_t bif_doorbell_intr_cntl;
303 struct ras_manager *obj = amdgpu_ras_find_obj(adev, adev->nbio.ras_if);
304 struct ras_err_data err_data = {0, 0, 0, NULL};
305 struct amdgpu_ras *ras = amdgpu_ras_get_context(adev);
307 bif_doorbell_intr_cntl = RREG32_SOC15(NBIO, 0, mmBIF_DOORBELL_INT_CNTL);
308 if (REG_GET_FIELD(bif_doorbell_intr_cntl,
309 BIF_DOORBELL_INT_CNTL, RAS_CNTLR_INTERRUPT_STATUS)) {
310 /* driver has to clear the interrupt status when bif ring is disabled */
311 bif_doorbell_intr_cntl = REG_SET_FIELD(bif_doorbell_intr_cntl,
312 BIF_DOORBELL_INT_CNTL,
313 RAS_CNTLR_INTERRUPT_CLEAR, 1);
314 WREG32_SOC15(NBIO, 0, mmBIF_DOORBELL_INT_CNTL, bif_doorbell_intr_cntl);
316 if (!ras->disable_ras_err_cnt_harvest) {
318 * clear error status after ras_controller_intr
319 * according to hw team and count ue number
322 nbio_v7_4_query_ras_error_count(adev, &err_data);
324 /* logging on error cnt and printing for awareness */
325 obj->err_data.ue_count += err_data.ue_count;
326 obj->err_data.ce_count += err_data.ce_count;
328 if (err_data.ce_count)
329 dev_info(adev->dev, "%ld correctable hardware "
330 "errors detected in %s block, "
331 "no user action is needed.\n",
332 obj->err_data.ce_count,
333 adev->nbio.ras_if->name);
335 if (err_data.ue_count)
336 dev_info(adev->dev, "%ld uncorrectable hardware "
337 "errors detected in %s block\n",
338 obj->err_data.ue_count,
339 adev->nbio.ras_if->name);
342 dev_info(adev->dev, "RAS controller interrupt triggered "
345 /* ras_controller_int is dedicated for nbif ras error,
346 * not the global interrupt for sync flood
348 amdgpu_ras_reset_gpu(adev);
352 static void nbio_v7_4_handle_ras_err_event_athub_intr_no_bifring(struct amdgpu_device *adev)
354 uint32_t bif_doorbell_intr_cntl;
356 bif_doorbell_intr_cntl = RREG32_SOC15(NBIO, 0, mmBIF_DOORBELL_INT_CNTL);
357 if (REG_GET_FIELD(bif_doorbell_intr_cntl,
358 BIF_DOORBELL_INT_CNTL, RAS_ATHUB_ERR_EVENT_INTERRUPT_STATUS)) {
359 /* driver has to clear the interrupt status when bif ring is disabled */
360 bif_doorbell_intr_cntl = REG_SET_FIELD(bif_doorbell_intr_cntl,
361 BIF_DOORBELL_INT_CNTL,
362 RAS_ATHUB_ERR_EVENT_INTERRUPT_CLEAR, 1);
363 WREG32_SOC15(NBIO, 0, mmBIF_DOORBELL_INT_CNTL, bif_doorbell_intr_cntl);
365 amdgpu_ras_global_ras_isr(adev);
370 static int nbio_v7_4_set_ras_controller_irq_state(struct amdgpu_device *adev,
371 struct amdgpu_irq_src *src,
373 enum amdgpu_interrupt_state state)
375 /* The ras_controller_irq enablement should be done in psp bl when it
376 * tries to enable ras feature. Driver only need to set the correct interrupt
377 * vector for bare-metal and sriov use case respectively
379 uint32_t bif_intr_cntl;
381 bif_intr_cntl = RREG32_SOC15(NBIO, 0, mmBIF_INTR_CNTL);
382 if (state == AMDGPU_IRQ_STATE_ENABLE) {
383 /* set interrupt vector select bit to 0 to select
384 * vetcor 1 for bare metal case */
385 bif_intr_cntl = REG_SET_FIELD(bif_intr_cntl,
387 RAS_INTR_VEC_SEL, 0);
388 WREG32_SOC15(NBIO, 0, mmBIF_INTR_CNTL, bif_intr_cntl);
394 static int nbio_v7_4_process_ras_controller_irq(struct amdgpu_device *adev,
395 struct amdgpu_irq_src *source,
396 struct amdgpu_iv_entry *entry)
398 /* By design, the ih cookie for ras_controller_irq should be written
399 * to BIFring instead of general iv ring. However, due to known bif ring
400 * hw bug, it has to be disabled. There is no chance the process function
401 * will be involked. Just left it as a dummy one.
406 static int nbio_v7_4_set_ras_err_event_athub_irq_state(struct amdgpu_device *adev,
407 struct amdgpu_irq_src *src,
409 enum amdgpu_interrupt_state state)
411 /* The ras_controller_irq enablement should be done in psp bl when it
412 * tries to enable ras feature. Driver only need to set the correct interrupt
413 * vector for bare-metal and sriov use case respectively
415 uint32_t bif_intr_cntl;
417 bif_intr_cntl = RREG32_SOC15(NBIO, 0, mmBIF_INTR_CNTL);
418 if (state == AMDGPU_IRQ_STATE_ENABLE) {
419 /* set interrupt vector select bit to 0 to select
420 * vetcor 1 for bare metal case */
421 bif_intr_cntl = REG_SET_FIELD(bif_intr_cntl,
423 RAS_INTR_VEC_SEL, 0);
424 WREG32_SOC15(NBIO, 0, mmBIF_INTR_CNTL, bif_intr_cntl);
430 static int nbio_v7_4_process_err_event_athub_irq(struct amdgpu_device *adev,
431 struct amdgpu_irq_src *source,
432 struct amdgpu_iv_entry *entry)
434 /* By design, the ih cookie for err_event_athub_irq should be written
435 * to BIFring instead of general iv ring. However, due to known bif ring
436 * hw bug, it has to be disabled. There is no chance the process function
437 * will be involked. Just left it as a dummy one.
442 static const struct amdgpu_irq_src_funcs nbio_v7_4_ras_controller_irq_funcs = {
443 .set = nbio_v7_4_set_ras_controller_irq_state,
444 .process = nbio_v7_4_process_ras_controller_irq,
447 static const struct amdgpu_irq_src_funcs nbio_v7_4_ras_err_event_athub_irq_funcs = {
448 .set = nbio_v7_4_set_ras_err_event_athub_irq_state,
449 .process = nbio_v7_4_process_err_event_athub_irq,
452 static int nbio_v7_4_init_ras_controller_interrupt (struct amdgpu_device *adev)
456 /* init the irq funcs */
457 adev->nbio.ras_controller_irq.funcs =
458 &nbio_v7_4_ras_controller_irq_funcs;
459 adev->nbio.ras_controller_irq.num_types = 1;
461 /* register ras controller interrupt */
462 r = amdgpu_irq_add_id(adev, SOC15_IH_CLIENTID_BIF,
463 NBIF_7_4__SRCID__RAS_CONTROLLER_INTERRUPT,
464 &adev->nbio.ras_controller_irq);
469 static int nbio_v7_4_init_ras_err_event_athub_interrupt (struct amdgpu_device *adev)
474 /* init the irq funcs */
475 adev->nbio.ras_err_event_athub_irq.funcs =
476 &nbio_v7_4_ras_err_event_athub_irq_funcs;
477 adev->nbio.ras_err_event_athub_irq.num_types = 1;
479 /* register ras err event athub interrupt */
480 r = amdgpu_irq_add_id(adev, SOC15_IH_CLIENTID_BIF,
481 NBIF_7_4__SRCID__ERREVENT_ATHUB_INTERRUPT,
482 &adev->nbio.ras_err_event_athub_irq);
487 #define smnPARITY_ERROR_STATUS_UNCORR_GRP2 0x13a20030
489 static void nbio_v7_4_query_ras_error_count(struct amdgpu_device *adev,
490 void *ras_error_status)
492 uint32_t global_sts, central_sts, int_eoi, parity_sts;
493 uint32_t corr, fatal, non_fatal;
494 struct ras_err_data *err_data = (struct ras_err_data *)ras_error_status;
496 global_sts = RREG32_PCIE(smnRAS_GLOBAL_STATUS_LO);
497 corr = REG_GET_FIELD(global_sts, RAS_GLOBAL_STATUS_LO, ParityErrCorr);
498 fatal = REG_GET_FIELD(global_sts, RAS_GLOBAL_STATUS_LO, ParityErrFatal);
499 non_fatal = REG_GET_FIELD(global_sts, RAS_GLOBAL_STATUS_LO,
501 parity_sts = RREG32_PCIE(smnPARITY_ERROR_STATUS_UNCORR_GRP2);
504 err_data->ce_count++;
506 err_data->ue_count++;
508 if (corr || fatal || non_fatal) {
509 central_sts = RREG32_PCIE(smnBIFL_RAS_CENTRAL_STATUS);
510 /* clear error status register */
511 WREG32_PCIE(smnRAS_GLOBAL_STATUS_LO, global_sts);
514 /* clear parity fatal error indication field */
515 WREG32_PCIE(smnPARITY_ERROR_STATUS_UNCORR_GRP2,
518 if (REG_GET_FIELD(central_sts, BIFL_RAS_CENTRAL_STATUS,
519 BIFL_RasContller_Intr_Recv)) {
520 /* clear interrupt status register */
521 WREG32_PCIE(smnBIFL_RAS_CENTRAL_STATUS, central_sts);
522 int_eoi = RREG32_PCIE(smnIOHC_INTERRUPT_EOI);
523 int_eoi = REG_SET_FIELD(int_eoi,
524 IOHC_INTERRUPT_EOI, SMI_EOI, 1);
525 WREG32_PCIE(smnIOHC_INTERRUPT_EOI, int_eoi);
530 static void nbio_v7_4_enable_doorbell_interrupt(struct amdgpu_device *adev,
533 WREG32_FIELD15(NBIO, 0, BIF_DOORBELL_INT_CNTL,
534 DOORBELL_INTERRUPT_DISABLE, enable ? 0 : 1);
537 const struct amdgpu_nbio_funcs nbio_v7_4_funcs = {
538 .get_hdp_flush_req_offset = nbio_v7_4_get_hdp_flush_req_offset,
539 .get_hdp_flush_done_offset = nbio_v7_4_get_hdp_flush_done_offset,
540 .get_pcie_index_offset = nbio_v7_4_get_pcie_index_offset,
541 .get_pcie_data_offset = nbio_v7_4_get_pcie_data_offset,
542 .get_rev_id = nbio_v7_4_get_rev_id,
543 .mc_access_enable = nbio_v7_4_mc_access_enable,
544 .hdp_flush = nbio_v7_4_hdp_flush,
545 .get_memsize = nbio_v7_4_get_memsize,
546 .sdma_doorbell_range = nbio_v7_4_sdma_doorbell_range,
547 .vcn_doorbell_range = nbio_v7_4_vcn_doorbell_range,
548 .enable_doorbell_aperture = nbio_v7_4_enable_doorbell_aperture,
549 .enable_doorbell_selfring_aperture = nbio_v7_4_enable_doorbell_selfring_aperture,
550 .ih_doorbell_range = nbio_v7_4_ih_doorbell_range,
551 .enable_doorbell_interrupt = nbio_v7_4_enable_doorbell_interrupt,
552 .update_medium_grain_clock_gating = nbio_v7_4_update_medium_grain_clock_gating,
553 .update_medium_grain_light_sleep = nbio_v7_4_update_medium_grain_light_sleep,
554 .get_clockgating_state = nbio_v7_4_get_clockgating_state,
555 .ih_control = nbio_v7_4_ih_control,
556 .init_registers = nbio_v7_4_init_registers,
557 .remap_hdp_registers = nbio_v7_4_remap_hdp_registers,
558 .handle_ras_controller_intr_no_bifring = nbio_v7_4_handle_ras_controller_intr_no_bifring,
559 .handle_ras_err_event_athub_intr_no_bifring = nbio_v7_4_handle_ras_err_event_athub_intr_no_bifring,
560 .init_ras_controller_interrupt = nbio_v7_4_init_ras_controller_interrupt,
561 .init_ras_err_event_athub_interrupt = nbio_v7_4_init_ras_err_event_athub_interrupt,
562 .query_ras_error_count = nbio_v7_4_query_ras_error_count,
563 .ras_late_init = amdgpu_nbio_ras_late_init,