]> Git Repo - linux.git/blob - drivers/gpu/drm/amd/amdgpu/nbio_v7_4.c
Merge tag 'gvt-fixes-2020-03-10' of https://github.com/intel/gvt-linux into drm-intel...
[linux.git] / drivers / gpu / drm / amd / amdgpu / nbio_v7_4.c
1 /*
2  * Copyright 2018 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  */
23 #include "amdgpu.h"
24 #include "amdgpu_atombios.h"
25 #include "nbio_v7_4.h"
26 #include "amdgpu_ras.h"
27
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>
33
34 #define smnNBIF_MGCG_CTRL_LCLK  0x1013a21c
35
36 /*
37  * These are nbio v7_4_1 registers mask. Temporarily define these here since
38  * nbio v7_4_1 header is incomplete.
39  */
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
46
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
54
55 static void nbio_v7_4_query_ras_error_count(struct amdgpu_device *adev,
56                                         void *ras_error_status);
57
58 static void nbio_v7_4_remap_hdp_registers(struct amdgpu_device *adev)
59 {
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);
64 }
65
66 static u32 nbio_v7_4_get_rev_id(struct amdgpu_device *adev)
67 {
68         u32 tmp = RREG32_SOC15(NBIO, 0, mmRCC_DEV0_EPF0_STRAP0);
69
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;
72
73         return tmp;
74 }
75
76 static void nbio_v7_4_mc_access_enable(struct amdgpu_device *adev, bool enable)
77 {
78         if (enable)
79                 WREG32_SOC15(NBIO, 0, mmBIF_FB_EN,
80                         BIF_FB_EN__FB_READ_EN_MASK | BIF_FB_EN__FB_WRITE_EN_MASK);
81         else
82                 WREG32_SOC15(NBIO, 0, mmBIF_FB_EN, 0);
83 }
84
85 static void nbio_v7_4_hdp_flush(struct amdgpu_device *adev,
86                                 struct amdgpu_ring *ring)
87 {
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);
90         else
91                 amdgpu_ring_emit_wreg(ring, (adev->rmmio_remap.reg_offset + KFD_MMIO_REMAP_HDP_MEM_FLUSH_CNTL) >> 2, 0);
92 }
93
94 static u32 nbio_v7_4_get_memsize(struct amdgpu_device *adev)
95 {
96         return RREG32_SOC15(NBIO, 0, mmRCC_CONFIG_MEMSIZE);
97 }
98
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)
101 {
102         u32 reg, doorbell_range;
103
104         if (instance < 2)
105                 reg = instance +
106                         SOC15_REG_OFFSET(NBIO, 0, mmBIF_SDMA0_DOORBELL_RANGE);
107         else
108                 /*
109                  * These registers address of SDMA2~7 is not consecutive
110                  * from SDMA0~1. Need plus 4 dwords offset.
111                  *
112                  *   BIF_SDMA0_DOORBELL_RANGE:  0x3bc0
113                  *   BIF_SDMA1_DOORBELL_RANGE:  0x3bc4
114                  *   BIF_SDMA2_DOORBELL_RANGE:  0x3bd8
115                  */
116                 reg = instance + 0x4 +
117                         SOC15_REG_OFFSET(NBIO, 0, mmBIF_SDMA0_DOORBELL_RANGE);
118
119         doorbell_range = RREG32(reg);
120
121         if (use_doorbell) {
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);
124         } else
125                 doorbell_range = REG_SET_FIELD(doorbell_range, BIF_SDMA0_DOORBELL_RANGE, SIZE, 0);
126
127         WREG32(reg, doorbell_range);
128 }
129
130 static void nbio_v7_4_vcn_doorbell_range(struct amdgpu_device *adev, bool use_doorbell,
131                                          int doorbell_index, int instance)
132 {
133         u32 reg;
134         u32 doorbell_range;
135
136         if (instance)
137                 reg = SOC15_REG_OFFSET(NBIO, 0, mmBIF_MMSCH1_DOORBELL_RANGE);
138         else
139                 reg = SOC15_REG_OFFSET(NBIO, 0, mmBIF_MMSCH0_DOORBELL_RANGE);
140
141         doorbell_range = RREG32(reg);
142
143         if (use_doorbell) {
144                 doorbell_range = REG_SET_FIELD(doorbell_range,
145                                                BIF_MMSCH0_DOORBELL_RANGE, OFFSET,
146                                                doorbell_index);
147                 doorbell_range = REG_SET_FIELD(doorbell_range,
148                                                BIF_MMSCH0_DOORBELL_RANGE, SIZE, 8);
149         } else
150                 doorbell_range = REG_SET_FIELD(doorbell_range,
151                                                BIF_MMSCH0_DOORBELL_RANGE, SIZE, 0);
152
153         WREG32(reg, doorbell_range);
154 }
155
156 static void nbio_v7_4_enable_doorbell_aperture(struct amdgpu_device *adev,
157                                                bool enable)
158 {
159         WREG32_FIELD15(NBIO, 0, RCC_DOORBELL_APER_EN, BIF_DOORBELL_APER_EN, enable ? 1 : 0);
160 }
161
162 static void nbio_v7_4_enable_doorbell_selfring_aperture(struct amdgpu_device *adev,
163                                                         bool enable)
164 {
165         u32 tmp = 0;
166
167         if (enable) {
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);
171
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));
176         }
177
178         WREG32_SOC15(NBIO, 0, mmDOORBELL_SELFRING_GPA_APER_CNTL, tmp);
179 }
180
181 static void nbio_v7_4_ih_doorbell_range(struct amdgpu_device *adev,
182                                         bool use_doorbell, int doorbell_index)
183 {
184         u32 ih_doorbell_range = RREG32_SOC15(NBIO, 0 , mmBIF_IH_DOORBELL_RANGE);
185
186         if (use_doorbell) {
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);
189         } else
190                 ih_doorbell_range = REG_SET_FIELD(ih_doorbell_range, BIF_IH_DOORBELL_RANGE, SIZE, 0);
191
192         WREG32_SOC15(NBIO, 0, mmBIF_IH_DOORBELL_RANGE, ih_doorbell_range);
193 }
194
195
196 static void nbio_v7_4_update_medium_grain_clock_gating(struct amdgpu_device *adev,
197                                                        bool enable)
198 {
199         //TODO: Add support for v7.4
200 }
201
202 static void nbio_v7_4_update_medium_grain_light_sleep(struct amdgpu_device *adev,
203                                                       bool enable)
204 {
205         uint32_t def, data;
206
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);
212         } else {
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);
216         }
217
218         if (def != data)
219                 WREG32_PCIE(smnPCIE_CNTL2, data);
220 }
221
222 static void nbio_v7_4_get_clockgating_state(struct amdgpu_device *adev,
223                                             u32 *flags)
224 {
225         int data;
226
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;
231
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;
236 }
237
238 static void nbio_v7_4_ih_control(struct amdgpu_device *adev)
239 {
240         u32 interrupt_cntl;
241
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
247          */
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);
252 }
253
254 static u32 nbio_v7_4_get_hdp_flush_req_offset(struct amdgpu_device *adev)
255 {
256         return SOC15_REG_OFFSET(NBIO, 0, mmGPU_HDP_FLUSH_REQ);
257 }
258
259 static u32 nbio_v7_4_get_hdp_flush_done_offset(struct amdgpu_device *adev)
260 {
261         return SOC15_REG_OFFSET(NBIO, 0, mmGPU_HDP_FLUSH_DONE);
262 }
263
264 static u32 nbio_v7_4_get_pcie_index_offset(struct amdgpu_device *adev)
265 {
266         return SOC15_REG_OFFSET(NBIO, 0, mmPCIE_INDEX2);
267 }
268
269 static u32 nbio_v7_4_get_pcie_data_offset(struct amdgpu_device *adev)
270 {
271         return SOC15_REG_OFFSET(NBIO, 0, mmPCIE_DATA2);
272 }
273
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,
293 };
294
295 static void nbio_v7_4_detect_hw_virt(struct amdgpu_device *adev)
296 {
297         uint32_t reg;
298
299         reg = RREG32_SOC15(NBIO, 0, mmRCC_IOV_FUNC_IDENTIFIER);
300         if (reg & 1)
301                 adev->virt.caps |= AMDGPU_SRIOV_CAPS_IS_VF;
302
303         if (reg & 0x80000000)
304                 adev->virt.caps |= AMDGPU_SRIOV_CAPS_ENABLE_IOV;
305
306         if (!reg) {
307                 if (is_virtual_machine())       /* passthrough mode exclus sriov mod */
308                         adev->virt.caps |= AMDGPU_PASSTHROUGH_MODE;
309         }
310 }
311
312 static void nbio_v7_4_init_registers(struct amdgpu_device *adev)
313 {
314
315 }
316
317 static void nbio_v7_4_handle_ras_controller_intr_no_bifring(struct amdgpu_device *adev)
318 {
319         uint32_t bif_doorbell_intr_cntl;
320         struct ras_manager *obj = amdgpu_ras_find_obj(adev, adev->nbio.ras_if);
321
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);
330
331                 /*
332                  * clear error status after ras_controller_intr according to
333                  * hw team and count ue number for query
334                  */
335                 nbio_v7_4_query_ras_error_count(adev, &obj->err_data);
336
337                 DRM_WARN("RAS controller interrupt triggered by NBIF error\n");
338
339                 /* ras_controller_int is dedicated for nbif ras error,
340                  * not the global interrupt for sync flood
341                  */
342                 amdgpu_ras_reset_gpu(adev);
343         }
344 }
345
346 static void nbio_v7_4_handle_ras_err_event_athub_intr_no_bifring(struct amdgpu_device *adev)
347 {
348         uint32_t bif_doorbell_intr_cntl;
349
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);
358
359                 amdgpu_ras_global_ras_isr(adev);
360         }
361 }
362
363
364 static int nbio_v7_4_set_ras_controller_irq_state(struct amdgpu_device *adev,
365                                                   struct amdgpu_irq_src *src,
366                                                   unsigned type,
367                                                   enum amdgpu_interrupt_state state)
368 {
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
372          */
373         uint32_t bif_intr_cntl;
374
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,
380                                               BIF_INTR_CNTL,
381                                               RAS_INTR_VEC_SEL, 0);
382                 WREG32_SOC15(NBIO, 0, mmBIF_INTR_CNTL, bif_intr_cntl);
383         }
384
385         return 0;
386 }
387
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)
391 {
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.
396          */
397         return 0;
398 }
399
400 static int nbio_v7_4_set_ras_err_event_athub_irq_state(struct amdgpu_device *adev,
401                                                        struct amdgpu_irq_src *src,
402                                                        unsigned type,
403                                                        enum amdgpu_interrupt_state state)
404 {
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
408          */
409         uint32_t bif_intr_cntl;
410
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,
416                                               BIF_INTR_CNTL,
417                                               RAS_INTR_VEC_SEL, 0);
418                 WREG32_SOC15(NBIO, 0, mmBIF_INTR_CNTL, bif_intr_cntl);
419         }
420
421         return 0;
422 }
423
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)
427 {
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.
432          */
433         return 0;
434 }
435
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,
439 };
440
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,
444 };
445
446 static int nbio_v7_4_init_ras_controller_interrupt (struct amdgpu_device *adev)
447 {
448         int r;
449
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;
454
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);
459
460         return r;
461 }
462
463 static int nbio_v7_4_init_ras_err_event_athub_interrupt (struct amdgpu_device *adev)
464 {
465
466         int r;
467
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;
472
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);
477
478         return r;
479 }
480
481 #define smnPARITY_ERROR_STATUS_UNCORR_GRP2      0x13a20030
482
483 static void nbio_v7_4_query_ras_error_count(struct amdgpu_device *adev,
484                                         void *ras_error_status)
485 {
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;
489
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,
494                                 ParityErrNonFatal);
495         parity_sts = RREG32_PCIE(smnPARITY_ERROR_STATUS_UNCORR_GRP2);
496
497         if (corr)
498                 err_data->ce_count++;
499         if (fatal)
500                 err_data->ue_count++;
501
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);
506
507                 if (fatal)
508                         /* clear parity fatal error indication field */
509                         WREG32_PCIE(smnPARITY_ERROR_STATUS_UNCORR_GRP2,
510                                     parity_sts);
511
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);
520                 }
521         }
522 }
523
524 static void nbio_v7_4_enable_doorbell_interrupt(struct amdgpu_device *adev,
525                                                 bool enable)
526 {
527         WREG32_FIELD15(NBIO, 0, BIF_DOORBELL_INT_CNTL,
528                        DOORBELL_INTERRUPT_DISABLE, enable ? 0 : 1);
529 }
530
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,
559 };
This page took 0.069262 seconds and 4 git commands to generate.