2 * Copyright 2019 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 <linux/pci.h>
27 #include "amdgpu_ih.h"
29 #include "oss/osssys_5_0_0_offset.h"
30 #include "oss/osssys_5_0_0_sh_mask.h"
32 #include "soc15_common.h"
33 #include "navi10_ih.h"
35 #define MAX_REARM_RETRY 10
37 #define mmIH_CHICKEN_Sienna_Cichlid 0x018d
38 #define mmIH_CHICKEN_Sienna_Cichlid_BASE_IDX 0
40 static void navi10_ih_set_interrupt_funcs(struct amdgpu_device *adev);
43 * navi10_ih_init_register_offset - Initialize register offset for ih rings
45 * @adev: amdgpu_device pointer
47 * Initialize register offset ih rings (NAVI10).
49 static void navi10_ih_init_register_offset(struct amdgpu_device *adev)
51 struct amdgpu_ih_regs *ih_regs;
53 if (adev->irq.ih.ring_size) {
54 ih_regs = &adev->irq.ih.ih_regs;
55 ih_regs->ih_rb_base = SOC15_REG_OFFSET(OSSSYS, 0, mmIH_RB_BASE);
56 ih_regs->ih_rb_base_hi = SOC15_REG_OFFSET(OSSSYS, 0, mmIH_RB_BASE_HI);
57 ih_regs->ih_rb_cntl = SOC15_REG_OFFSET(OSSSYS, 0, mmIH_RB_CNTL);
58 ih_regs->ih_rb_wptr = SOC15_REG_OFFSET(OSSSYS, 0, mmIH_RB_WPTR);
59 ih_regs->ih_rb_rptr = SOC15_REG_OFFSET(OSSSYS, 0, mmIH_RB_RPTR);
60 ih_regs->ih_doorbell_rptr = SOC15_REG_OFFSET(OSSSYS, 0, mmIH_DOORBELL_RPTR);
61 ih_regs->ih_rb_wptr_addr_lo = SOC15_REG_OFFSET(OSSSYS, 0, mmIH_RB_WPTR_ADDR_LO);
62 ih_regs->ih_rb_wptr_addr_hi = SOC15_REG_OFFSET(OSSSYS, 0, mmIH_RB_WPTR_ADDR_HI);
63 ih_regs->psp_reg_id = PSP_REG_IH_RB_CNTL;
66 if (adev->irq.ih1.ring_size) {
67 ih_regs = &adev->irq.ih1.ih_regs;
68 ih_regs->ih_rb_base = SOC15_REG_OFFSET(OSSSYS, 0, mmIH_RB_BASE_RING1);
69 ih_regs->ih_rb_base_hi = SOC15_REG_OFFSET(OSSSYS, 0, mmIH_RB_BASE_HI_RING1);
70 ih_regs->ih_rb_cntl = SOC15_REG_OFFSET(OSSSYS, 0, mmIH_RB_CNTL_RING1);
71 ih_regs->ih_rb_wptr = SOC15_REG_OFFSET(OSSSYS, 0, mmIH_RB_WPTR_RING1);
72 ih_regs->ih_rb_rptr = SOC15_REG_OFFSET(OSSSYS, 0, mmIH_RB_RPTR_RING1);
73 ih_regs->ih_doorbell_rptr = SOC15_REG_OFFSET(OSSSYS, 0, mmIH_DOORBELL_RPTR_RING1);
74 ih_regs->psp_reg_id = PSP_REG_IH_RB_CNTL_RING1;
77 if (adev->irq.ih2.ring_size) {
78 ih_regs = &adev->irq.ih2.ih_regs;
79 ih_regs->ih_rb_base = SOC15_REG_OFFSET(OSSSYS, 0, mmIH_RB_BASE_RING2);
80 ih_regs->ih_rb_base_hi = SOC15_REG_OFFSET(OSSSYS, 0, mmIH_RB_BASE_HI_RING2);
81 ih_regs->ih_rb_cntl = SOC15_REG_OFFSET(OSSSYS, 0, mmIH_RB_CNTL_RING2);
82 ih_regs->ih_rb_wptr = SOC15_REG_OFFSET(OSSSYS, 0, mmIH_RB_WPTR_RING2);
83 ih_regs->ih_rb_rptr = SOC15_REG_OFFSET(OSSSYS, 0, mmIH_RB_RPTR_RING2);
84 ih_regs->ih_doorbell_rptr = SOC15_REG_OFFSET(OSSSYS, 0, mmIH_DOORBELL_RPTR_RING2);
85 ih_regs->psp_reg_id = PSP_REG_IH_RB_CNTL_RING2;
90 * force_update_wptr_for_self_int - Force update the wptr for self interrupt
92 * @adev: amdgpu_device pointer
93 * @threshold: threshold to trigger the wptr reporting
94 * @timeout: timeout to trigger the wptr reporting
95 * @enabled: Enable/disable timeout flush mechanism
97 * threshold input range: 0 ~ 15, default 0,
98 * real_threshold = 2^threshold
99 * timeout input range: 0 ~ 20, default 8,
100 * real_timeout = (2^timeout) * 1024 / (socclk_freq)
102 * Force update wptr for self interrupt ( >= SIENNA_CICHLID).
105 force_update_wptr_for_self_int(struct amdgpu_device *adev,
106 u32 threshold, u32 timeout, bool enabled)
108 u32 ih_cntl, ih_rb_cntl;
110 if (adev->ip_versions[OSSSYS_HWIP][0] < IP_VERSION(5, 0, 3))
113 ih_cntl = RREG32_SOC15(OSSSYS, 0, mmIH_CNTL2);
114 ih_rb_cntl = RREG32_SOC15(OSSSYS, 0, mmIH_RB_CNTL_RING1);
116 ih_cntl = REG_SET_FIELD(ih_cntl, IH_CNTL2,
117 SELF_IV_FORCE_WPTR_UPDATE_TIMEOUT, timeout);
118 ih_cntl = REG_SET_FIELD(ih_cntl, IH_CNTL2,
119 SELF_IV_FORCE_WPTR_UPDATE_ENABLE, enabled);
120 ih_rb_cntl = REG_SET_FIELD(ih_rb_cntl, IH_RB_CNTL_RING1,
121 RB_USED_INT_THRESHOLD, threshold);
123 if (amdgpu_sriov_vf(adev) && amdgpu_sriov_reg_indirect_ih(adev)) {
124 if (psp_reg_program(&adev->psp, PSP_REG_IH_RB_CNTL_RING1, ih_rb_cntl))
127 WREG32_SOC15(OSSSYS, 0, mmIH_RB_CNTL_RING1, ih_rb_cntl);
130 ih_rb_cntl = RREG32_SOC15(OSSSYS, 0, mmIH_RB_CNTL_RING2);
131 ih_rb_cntl = REG_SET_FIELD(ih_rb_cntl, IH_RB_CNTL_RING2,
132 RB_USED_INT_THRESHOLD, threshold);
133 if (amdgpu_sriov_vf(adev) && amdgpu_sriov_reg_indirect_ih(adev)) {
134 if (psp_reg_program(&adev->psp, PSP_REG_IH_RB_CNTL_RING2, ih_rb_cntl))
137 WREG32_SOC15(OSSSYS, 0, mmIH_RB_CNTL_RING2, ih_rb_cntl);
140 WREG32_SOC15(OSSSYS, 0, mmIH_CNTL2, ih_cntl);
144 * navi10_ih_toggle_ring_interrupts - toggle the interrupt ring buffer
146 * @adev: amdgpu_device pointer
147 * @ih: amdgpu_ih_ring pointet
148 * @enable: true - enable the interrupts, false - disable the interrupts
150 * Toggle the interrupt ring buffer (NAVI10)
152 static int navi10_ih_toggle_ring_interrupts(struct amdgpu_device *adev,
153 struct amdgpu_ih_ring *ih,
156 struct amdgpu_ih_regs *ih_regs;
159 ih_regs = &ih->ih_regs;
161 tmp = RREG32(ih_regs->ih_rb_cntl);
162 tmp = REG_SET_FIELD(tmp, IH_RB_CNTL, RB_ENABLE, (enable ? 1 : 0));
163 /* enable_intr field is only valid in ring0 */
164 if (ih == &adev->irq.ih)
165 tmp = REG_SET_FIELD(tmp, IH_RB_CNTL, ENABLE_INTR, (enable ? 1 : 0));
167 if (amdgpu_sriov_vf(adev) && amdgpu_sriov_reg_indirect_ih(adev)) {
168 if (psp_reg_program(&adev->psp, ih_regs->psp_reg_id, tmp))
171 WREG32(ih_regs->ih_rb_cntl, tmp);
177 /* set rptr, wptr to 0 */
178 WREG32(ih_regs->ih_rb_rptr, 0);
179 WREG32(ih_regs->ih_rb_wptr, 0);
188 * navi10_ih_toggle_interrupts - Toggle all the available interrupt ring buffers
190 * @adev: amdgpu_device pointer
191 * @enable: enable or disable interrupt ring buffers
193 * Toggle all the available interrupt ring buffers (NAVI10).
195 static int navi10_ih_toggle_interrupts(struct amdgpu_device *adev, bool enable)
197 struct amdgpu_ih_ring *ih[] = {&adev->irq.ih, &adev->irq.ih1, &adev->irq.ih2};
201 for (i = 0; i < ARRAY_SIZE(ih); i++) {
202 if (ih[i]->ring_size) {
203 r = navi10_ih_toggle_ring_interrupts(adev, ih[i], enable);
212 static uint32_t navi10_ih_rb_cntl(struct amdgpu_ih_ring *ih, uint32_t ih_rb_cntl)
214 int rb_bufsz = order_base_2(ih->ring_size / 4);
216 ih_rb_cntl = REG_SET_FIELD(ih_rb_cntl, IH_RB_CNTL,
217 MC_SPACE, ih->use_bus_addr ? 1 : 4);
218 ih_rb_cntl = REG_SET_FIELD(ih_rb_cntl, IH_RB_CNTL,
219 WPTR_OVERFLOW_CLEAR, 1);
220 ih_rb_cntl = REG_SET_FIELD(ih_rb_cntl, IH_RB_CNTL,
221 WPTR_OVERFLOW_ENABLE, 1);
222 ih_rb_cntl = REG_SET_FIELD(ih_rb_cntl, IH_RB_CNTL, RB_SIZE, rb_bufsz);
223 /* Ring Buffer write pointer writeback. If enabled, IH_RB_WPTR register
224 * value is written to memory
226 ih_rb_cntl = REG_SET_FIELD(ih_rb_cntl, IH_RB_CNTL,
227 WPTR_WRITEBACK_ENABLE, 1);
228 ih_rb_cntl = REG_SET_FIELD(ih_rb_cntl, IH_RB_CNTL, MC_SNOOP, 1);
229 ih_rb_cntl = REG_SET_FIELD(ih_rb_cntl, IH_RB_CNTL, MC_RO, 0);
230 ih_rb_cntl = REG_SET_FIELD(ih_rb_cntl, IH_RB_CNTL, MC_VMID, 0);
235 static uint32_t navi10_ih_doorbell_rptr(struct amdgpu_ih_ring *ih)
237 u32 ih_doorbell_rtpr = 0;
239 if (ih->use_doorbell) {
240 ih_doorbell_rtpr = REG_SET_FIELD(ih_doorbell_rtpr,
241 IH_DOORBELL_RPTR, OFFSET,
243 ih_doorbell_rtpr = REG_SET_FIELD(ih_doorbell_rtpr,
247 ih_doorbell_rtpr = REG_SET_FIELD(ih_doorbell_rtpr,
251 return ih_doorbell_rtpr;
255 * navi10_ih_enable_ring - enable an ih ring buffer
257 * @adev: amdgpu_device pointer
258 * @ih: amdgpu_ih_ring pointer
260 * Enable an ih ring buffer (NAVI10)
262 static int navi10_ih_enable_ring(struct amdgpu_device *adev,
263 struct amdgpu_ih_ring *ih)
265 struct amdgpu_ih_regs *ih_regs;
268 ih_regs = &ih->ih_regs;
270 /* Ring Buffer base. [39:8] of 40-bit address of the beginning of the ring buffer*/
271 WREG32(ih_regs->ih_rb_base, ih->gpu_addr >> 8);
272 WREG32(ih_regs->ih_rb_base_hi, (ih->gpu_addr >> 40) & 0xff);
274 tmp = RREG32(ih_regs->ih_rb_cntl);
275 tmp = navi10_ih_rb_cntl(ih, tmp);
276 if (ih == &adev->irq.ih)
277 tmp = REG_SET_FIELD(tmp, IH_RB_CNTL, RPTR_REARM, !!adev->irq.msi_enabled);
278 if (ih == &adev->irq.ih1) {
279 tmp = REG_SET_FIELD(tmp, IH_RB_CNTL, WPTR_OVERFLOW_ENABLE, 0);
280 tmp = REG_SET_FIELD(tmp, IH_RB_CNTL, RB_FULL_DRAIN_ENABLE, 1);
283 if (amdgpu_sriov_vf(adev) && amdgpu_sriov_reg_indirect_ih(adev)) {
284 if (psp_reg_program(&adev->psp, ih_regs->psp_reg_id, tmp)) {
285 DRM_ERROR("PSP program IH_RB_CNTL failed!\n");
289 WREG32(ih_regs->ih_rb_cntl, tmp);
292 if (ih == &adev->irq.ih) {
293 /* set the ih ring 0 writeback address whether it's enabled or not */
294 WREG32(ih_regs->ih_rb_wptr_addr_lo, lower_32_bits(ih->wptr_addr));
295 WREG32(ih_regs->ih_rb_wptr_addr_hi, upper_32_bits(ih->wptr_addr) & 0xFFFF);
298 /* set rptr, wptr to 0 */
299 WREG32(ih_regs->ih_rb_wptr, 0);
300 WREG32(ih_regs->ih_rb_rptr, 0);
302 WREG32(ih_regs->ih_doorbell_rptr, navi10_ih_doorbell_rptr(ih));
308 * navi10_ih_irq_init - init and enable the interrupt ring
310 * @adev: amdgpu_device pointer
312 * Allocate a ring buffer for the interrupt controller,
313 * enable the RLC, disable interrupts, enable the IH
314 * ring buffer and enable it (NAVI).
315 * Called at device load and reume.
316 * Returns 0 for success, errors for failure.
318 static int navi10_ih_irq_init(struct amdgpu_device *adev)
320 struct amdgpu_ih_ring *ih[] = {&adev->irq.ih, &adev->irq.ih1, &adev->irq.ih2};
327 ret = navi10_ih_toggle_interrupts(adev, false);
331 adev->nbio.funcs->ih_control(adev);
333 if (unlikely(adev->firmware.load_type == AMDGPU_FW_LOAD_DIRECT)) {
334 if (ih[0]->use_bus_addr) {
335 switch (adev->ip_versions[OSSSYS_HWIP][0]) {
336 case IP_VERSION(5, 0, 3):
337 case IP_VERSION(5, 2, 0):
338 case IP_VERSION(5, 2, 1):
339 ih_chicken = RREG32_SOC15(OSSSYS, 0, mmIH_CHICKEN_Sienna_Cichlid);
340 ih_chicken = REG_SET_FIELD(ih_chicken,
341 IH_CHICKEN, MC_SPACE_GPA_ENABLE, 1);
342 WREG32_SOC15(OSSSYS, 0, mmIH_CHICKEN_Sienna_Cichlid, ih_chicken);
345 ih_chicken = RREG32_SOC15(OSSSYS, 0, mmIH_CHICKEN);
346 ih_chicken = REG_SET_FIELD(ih_chicken,
347 IH_CHICKEN, MC_SPACE_GPA_ENABLE, 1);
348 WREG32_SOC15(OSSSYS, 0, mmIH_CHICKEN, ih_chicken);
354 for (i = 0; i < ARRAY_SIZE(ih); i++) {
355 if (ih[i]->ring_size) {
356 ret = navi10_ih_enable_ring(adev, ih[i]);
362 /* update doorbell range for ih ring 0*/
363 adev->nbio.funcs->ih_doorbell_range(adev, ih[0]->use_doorbell,
364 ih[0]->doorbell_index);
366 tmp = RREG32_SOC15(OSSSYS, 0, mmIH_STORM_CLIENT_LIST_CNTL);
367 tmp = REG_SET_FIELD(tmp, IH_STORM_CLIENT_LIST_CNTL,
368 CLIENT18_IS_STORM_CLIENT, 1);
369 WREG32_SOC15(OSSSYS, 0, mmIH_STORM_CLIENT_LIST_CNTL, tmp);
371 tmp = RREG32_SOC15(OSSSYS, 0, mmIH_INT_FLOOD_CNTL);
372 tmp = REG_SET_FIELD(tmp, IH_INT_FLOOD_CNTL, FLOOD_CNTL_ENABLE, 1);
373 WREG32_SOC15(OSSSYS, 0, mmIH_INT_FLOOD_CNTL, tmp);
375 pci_set_master(adev->pdev);
377 /* enable interrupts */
378 ret = navi10_ih_toggle_interrupts(adev, true);
381 /* enable wptr force update for self int */
382 force_update_wptr_for_self_int(adev, 0, 8, true);
384 if (adev->irq.ih_soft.ring_size)
385 adev->irq.ih_soft.enabled = true;
391 * navi10_ih_irq_disable - disable interrupts
393 * @adev: amdgpu_device pointer
395 * Disable interrupts on the hw (NAVI10).
397 static void navi10_ih_irq_disable(struct amdgpu_device *adev)
399 force_update_wptr_for_self_int(adev, 0, 8, false);
400 navi10_ih_toggle_interrupts(adev, false);
402 /* Wait and acknowledge irq */
407 * navi10_ih_get_wptr - get the IH ring buffer wptr
409 * @adev: amdgpu_device pointer
410 * @ih: IH ring buffer to fetch wptr
412 * Get the IH ring buffer wptr from either the register
413 * or the writeback memory buffer (NAVI10). Also check for
414 * ring buffer overflow and deal with it.
415 * Returns the value of the wptr.
417 static u32 navi10_ih_get_wptr(struct amdgpu_device *adev,
418 struct amdgpu_ih_ring *ih)
421 struct amdgpu_ih_regs *ih_regs;
423 wptr = le32_to_cpu(*ih->wptr_cpu);
424 ih_regs = &ih->ih_regs;
426 if (!REG_GET_FIELD(wptr, IH_RB_WPTR, RB_OVERFLOW))
429 wptr = RREG32_NO_KIQ(ih_regs->ih_rb_wptr);
430 if (!REG_GET_FIELD(wptr, IH_RB_WPTR, RB_OVERFLOW))
432 wptr = REG_SET_FIELD(wptr, IH_RB_WPTR, RB_OVERFLOW, 0);
434 /* When a ring buffer overflow happen start parsing interrupt
435 * from the last not overwritten vector (wptr + 32). Hopefully
436 * this should allow us to catch up.
438 tmp = (wptr + 32) & ih->ptr_mask;
439 dev_warn(adev->dev, "IH ring buffer overflow "
440 "(0x%08X, 0x%08X, 0x%08X)\n",
441 wptr, ih->rptr, tmp);
444 tmp = RREG32_NO_KIQ(ih_regs->ih_rb_cntl);
445 tmp = REG_SET_FIELD(tmp, IH_RB_CNTL, WPTR_OVERFLOW_CLEAR, 1);
446 WREG32_NO_KIQ(ih_regs->ih_rb_cntl, tmp);
448 return (wptr & ih->ptr_mask);
452 * navi10_ih_irq_rearm - rearm IRQ if lost
454 * @adev: amdgpu_device pointer
455 * @ih: IH ring to match
458 static void navi10_ih_irq_rearm(struct amdgpu_device *adev,
459 struct amdgpu_ih_ring *ih)
463 struct amdgpu_ih_regs *ih_regs;
465 ih_regs = &ih->ih_regs;
467 /* Rearm IRQ / re-write doorbell if doorbell write is lost */
468 for (i = 0; i < MAX_REARM_RETRY; i++) {
469 v = RREG32_NO_KIQ(ih_regs->ih_rb_rptr);
470 if ((v < ih->ring_size) && (v != ih->rptr))
471 WDOORBELL32(ih->doorbell_index, ih->rptr);
478 * navi10_ih_set_rptr - set the IH ring buffer rptr
480 * @adev: amdgpu_device pointer
482 * @ih: IH ring buffer to set rptr
483 * Set the IH ring buffer rptr.
485 static void navi10_ih_set_rptr(struct amdgpu_device *adev,
486 struct amdgpu_ih_ring *ih)
488 struct amdgpu_ih_regs *ih_regs;
490 if (ih->use_doorbell) {
491 /* XXX check if swapping is necessary on BE */
492 *ih->rptr_cpu = ih->rptr;
493 WDOORBELL32(ih->doorbell_index, ih->rptr);
495 if (amdgpu_sriov_vf(adev))
496 navi10_ih_irq_rearm(adev, ih);
498 ih_regs = &ih->ih_regs;
499 WREG32(ih_regs->ih_rb_rptr, ih->rptr);
504 * navi10_ih_self_irq - dispatch work for ring 1 and 2
506 * @adev: amdgpu_device pointer
507 * @source: irq source
508 * @entry: IV with WPTR update
510 * Update the WPTR from the IV and schedule work to handle the entries.
512 static int navi10_ih_self_irq(struct amdgpu_device *adev,
513 struct amdgpu_irq_src *source,
514 struct amdgpu_iv_entry *entry)
516 uint32_t wptr = cpu_to_le32(entry->src_data[0]);
518 switch (entry->ring_id) {
520 *adev->irq.ih1.wptr_cpu = wptr;
521 schedule_work(&adev->irq.ih1_work);
524 *adev->irq.ih2.wptr_cpu = wptr;
525 schedule_work(&adev->irq.ih2_work);
532 static const struct amdgpu_irq_src_funcs navi10_ih_self_irq_funcs = {
533 .process = navi10_ih_self_irq,
536 static void navi10_ih_set_self_irq_funcs(struct amdgpu_device *adev)
538 adev->irq.self_irq.num_types = 0;
539 adev->irq.self_irq.funcs = &navi10_ih_self_irq_funcs;
542 static int navi10_ih_early_init(void *handle)
544 struct amdgpu_device *adev = (struct amdgpu_device *)handle;
546 navi10_ih_set_interrupt_funcs(adev);
547 navi10_ih_set_self_irq_funcs(adev);
551 static int navi10_ih_sw_init(void *handle)
554 struct amdgpu_device *adev = (struct amdgpu_device *)handle;
557 r = amdgpu_irq_add_id(adev, SOC15_IH_CLIENTID_IH, 0,
558 &adev->irq.self_irq);
563 /* use gpu virtual address for ih ring
564 * until ih_checken is programmed to allow
565 * use bus address for ih ring by psp bl */
566 if ((adev->flags & AMD_IS_APU) ||
567 (adev->firmware.load_type == AMDGPU_FW_LOAD_PSP))
568 use_bus_addr = false;
571 r = amdgpu_ih_ring_init(adev, &adev->irq.ih, 256 * 1024, use_bus_addr);
575 adev->irq.ih.use_doorbell = true;
576 adev->irq.ih.doorbell_index = adev->doorbell_index.ih << 1;
578 adev->irq.ih1.ring_size = 0;
579 adev->irq.ih2.ring_size = 0;
581 /* initialize ih control registers offset */
582 navi10_ih_init_register_offset(adev);
584 r = amdgpu_ih_ring_init(adev, &adev->irq.ih_soft, PAGE_SIZE, true);
588 r = amdgpu_irq_init(adev);
593 static int navi10_ih_sw_fini(void *handle)
595 struct amdgpu_device *adev = (struct amdgpu_device *)handle;
597 amdgpu_irq_fini_sw(adev);
602 static int navi10_ih_hw_init(void *handle)
605 struct amdgpu_device *adev = (struct amdgpu_device *)handle;
607 r = navi10_ih_irq_init(adev);
614 static int navi10_ih_hw_fini(void *handle)
616 struct amdgpu_device *adev = (struct amdgpu_device *)handle;
618 navi10_ih_irq_disable(adev);
623 static int navi10_ih_suspend(void *handle)
625 struct amdgpu_device *adev = (struct amdgpu_device *)handle;
627 return navi10_ih_hw_fini(adev);
630 static int navi10_ih_resume(void *handle)
632 struct amdgpu_device *adev = (struct amdgpu_device *)handle;
634 return navi10_ih_hw_init(adev);
637 static bool navi10_ih_is_idle(void *handle)
643 static int navi10_ih_wait_for_idle(void *handle)
649 static int navi10_ih_soft_reset(void *handle)
655 static void navi10_ih_update_clockgating_state(struct amdgpu_device *adev,
658 uint32_t data, def, field_val;
660 if (adev->cg_flags & AMD_CG_SUPPORT_IH_CG) {
661 def = data = RREG32_SOC15(OSSSYS, 0, mmIH_CLK_CTRL);
662 field_val = enable ? 0 : 1;
663 data = REG_SET_FIELD(data, IH_CLK_CTRL,
664 DBUS_MUX_CLK_SOFT_OVERRIDE, field_val);
665 data = REG_SET_FIELD(data, IH_CLK_CTRL,
666 OSSSYS_SHARE_CLK_SOFT_OVERRIDE, field_val);
667 data = REG_SET_FIELD(data, IH_CLK_CTRL,
668 LIMIT_SMN_CLK_SOFT_OVERRIDE, field_val);
669 data = REG_SET_FIELD(data, IH_CLK_CTRL,
670 DYN_CLK_SOFT_OVERRIDE, field_val);
671 data = REG_SET_FIELD(data, IH_CLK_CTRL,
672 REG_CLK_SOFT_OVERRIDE, field_val);
674 WREG32_SOC15(OSSSYS, 0, mmIH_CLK_CTRL, data);
680 static int navi10_ih_set_clockgating_state(void *handle,
681 enum amd_clockgating_state state)
683 struct amdgpu_device *adev = (struct amdgpu_device *)handle;
685 navi10_ih_update_clockgating_state(adev,
686 state == AMD_CG_STATE_GATE);
690 static int navi10_ih_set_powergating_state(void *handle,
691 enum amd_powergating_state state)
696 static void navi10_ih_get_clockgating_state(void *handle, u32 *flags)
698 struct amdgpu_device *adev = (struct amdgpu_device *)handle;
700 if (!RREG32_SOC15(OSSSYS, 0, mmIH_CLK_CTRL))
701 *flags |= AMD_CG_SUPPORT_IH_CG;
706 static const struct amd_ip_funcs navi10_ih_ip_funcs = {
708 .early_init = navi10_ih_early_init,
710 .sw_init = navi10_ih_sw_init,
711 .sw_fini = navi10_ih_sw_fini,
712 .hw_init = navi10_ih_hw_init,
713 .hw_fini = navi10_ih_hw_fini,
714 .suspend = navi10_ih_suspend,
715 .resume = navi10_ih_resume,
716 .is_idle = navi10_ih_is_idle,
717 .wait_for_idle = navi10_ih_wait_for_idle,
718 .soft_reset = navi10_ih_soft_reset,
719 .set_clockgating_state = navi10_ih_set_clockgating_state,
720 .set_powergating_state = navi10_ih_set_powergating_state,
721 .get_clockgating_state = navi10_ih_get_clockgating_state,
724 static const struct amdgpu_ih_funcs navi10_ih_funcs = {
725 .get_wptr = navi10_ih_get_wptr,
726 .decode_iv = amdgpu_ih_decode_iv_helper,
727 .set_rptr = navi10_ih_set_rptr
730 static void navi10_ih_set_interrupt_funcs(struct amdgpu_device *adev)
732 if (adev->irq.ih_funcs == NULL)
733 adev->irq.ih_funcs = &navi10_ih_funcs;
736 const struct amdgpu_ip_block_version navi10_ih_ip_block =
738 .type = AMD_IP_BLOCK_TYPE_IH,
742 .funcs = &navi10_ih_ip_funcs,