2 * Copyright 2020 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"
30 #include "oss/osssys_4_2_0_offset.h"
31 #include "oss/osssys_4_2_0_sh_mask.h"
33 #include "soc15_common.h"
34 #include "vega20_ih.h"
36 #define MAX_REARM_RETRY 10
38 static void vega20_ih_set_interrupt_funcs(struct amdgpu_device *adev);
41 * vega20_ih_init_register_offset - Initialize register offset for ih rings
43 * @adev: amdgpu_device pointer
45 * Initialize register offset ih rings (VEGA20).
47 static void vega20_ih_init_register_offset(struct amdgpu_device *adev)
49 struct amdgpu_ih_regs *ih_regs;
51 if (adev->irq.ih.ring_size) {
52 ih_regs = &adev->irq.ih.ih_regs;
53 ih_regs->ih_rb_base = SOC15_REG_OFFSET(OSSSYS, 0, mmIH_RB_BASE);
54 ih_regs->ih_rb_base_hi = SOC15_REG_OFFSET(OSSSYS, 0, mmIH_RB_BASE_HI);
55 ih_regs->ih_rb_cntl = SOC15_REG_OFFSET(OSSSYS, 0, mmIH_RB_CNTL);
56 ih_regs->ih_rb_wptr = SOC15_REG_OFFSET(OSSSYS, 0, mmIH_RB_WPTR);
57 ih_regs->ih_rb_rptr = SOC15_REG_OFFSET(OSSSYS, 0, mmIH_RB_RPTR);
58 ih_regs->ih_doorbell_rptr = SOC15_REG_OFFSET(OSSSYS, 0, mmIH_DOORBELL_RPTR);
59 ih_regs->ih_rb_wptr_addr_lo = SOC15_REG_OFFSET(OSSSYS, 0, mmIH_RB_WPTR_ADDR_LO);
60 ih_regs->ih_rb_wptr_addr_hi = SOC15_REG_OFFSET(OSSSYS, 0, mmIH_RB_WPTR_ADDR_HI);
61 ih_regs->psp_reg_id = PSP_REG_IH_RB_CNTL;
64 if (adev->irq.ih1.ring_size) {
65 ih_regs = &adev->irq.ih1.ih_regs;
66 ih_regs->ih_rb_base = SOC15_REG_OFFSET(OSSSYS, 0, mmIH_RB_BASE_RING1);
67 ih_regs->ih_rb_base_hi = SOC15_REG_OFFSET(OSSSYS, 0, mmIH_RB_BASE_HI_RING1);
68 ih_regs->ih_rb_cntl = SOC15_REG_OFFSET(OSSSYS, 0, mmIH_RB_CNTL_RING1);
69 ih_regs->ih_rb_wptr = SOC15_REG_OFFSET(OSSSYS, 0, mmIH_RB_WPTR_RING1);
70 ih_regs->ih_rb_rptr = SOC15_REG_OFFSET(OSSSYS, 0, mmIH_RB_RPTR_RING1);
71 ih_regs->ih_doorbell_rptr = SOC15_REG_OFFSET(OSSSYS, 0, mmIH_DOORBELL_RPTR_RING1);
72 ih_regs->psp_reg_id = PSP_REG_IH_RB_CNTL_RING1;
75 if (adev->irq.ih2.ring_size) {
76 ih_regs = &adev->irq.ih2.ih_regs;
77 ih_regs->ih_rb_base = SOC15_REG_OFFSET(OSSSYS, 0, mmIH_RB_BASE_RING2);
78 ih_regs->ih_rb_base_hi = SOC15_REG_OFFSET(OSSSYS, 0, mmIH_RB_BASE_HI_RING2);
79 ih_regs->ih_rb_cntl = SOC15_REG_OFFSET(OSSSYS, 0, mmIH_RB_CNTL_RING2);
80 ih_regs->ih_rb_wptr = SOC15_REG_OFFSET(OSSSYS, 0, mmIH_RB_WPTR_RING2);
81 ih_regs->ih_rb_rptr = SOC15_REG_OFFSET(OSSSYS, 0, mmIH_RB_RPTR_RING2);
82 ih_regs->ih_doorbell_rptr = SOC15_REG_OFFSET(OSSSYS, 0, mmIH_DOORBELL_RPTR_RING2);
83 ih_regs->psp_reg_id = PSP_REG_IH_RB_CNTL_RING2;
88 * vega20_ih_toggle_ring_interrupts - toggle the interrupt ring buffer
90 * @adev: amdgpu_device pointer
91 * @ih: amdgpu_ih_ring pointet
92 * @enable: true - enable the interrupts, false - disable the interrupts
94 * Toggle the interrupt ring buffer (VEGA20)
96 static int vega20_ih_toggle_ring_interrupts(struct amdgpu_device *adev,
97 struct amdgpu_ih_ring *ih,
100 struct amdgpu_ih_regs *ih_regs;
103 ih_regs = &ih->ih_regs;
105 tmp = RREG32(ih_regs->ih_rb_cntl);
106 tmp = REG_SET_FIELD(tmp, IH_RB_CNTL, RB_ENABLE, (enable ? 1 : 0));
107 /* enable_intr field is only valid in ring0 */
108 if (ih == &adev->irq.ih)
109 tmp = REG_SET_FIELD(tmp, IH_RB_CNTL, ENABLE_INTR, (enable ? 1 : 0));
110 if (amdgpu_sriov_vf(adev)) {
111 if (psp_reg_program(&adev->psp, ih_regs->psp_reg_id, tmp)) {
112 dev_err(adev->dev, "PSP program IH_RB_CNTL failed!\n");
116 WREG32(ih_regs->ih_rb_cntl, tmp);
122 /* set rptr, wptr to 0 */
123 WREG32(ih_regs->ih_rb_rptr, 0);
124 WREG32(ih_regs->ih_rb_wptr, 0);
133 * vega20_ih_toggle_interrupts - Toggle all the available interrupt ring buffers
135 * @adev: amdgpu_device pointer
136 * @enable: enable or disable interrupt ring buffers
138 * Toggle all the available interrupt ring buffers (VEGA20).
140 static int vega20_ih_toggle_interrupts(struct amdgpu_device *adev, bool enable)
142 struct amdgpu_ih_ring *ih[] = {&adev->irq.ih, &adev->irq.ih1, &adev->irq.ih2};
146 for (i = 0; i < ARRAY_SIZE(ih); i++) {
147 if (ih[i]->ring_size) {
148 r = vega20_ih_toggle_ring_interrupts(adev, ih[i], enable);
157 static uint32_t vega20_ih_rb_cntl(struct amdgpu_ih_ring *ih, uint32_t ih_rb_cntl)
159 int rb_bufsz = order_base_2(ih->ring_size / 4);
161 ih_rb_cntl = REG_SET_FIELD(ih_rb_cntl, IH_RB_CNTL,
162 MC_SPACE, ih->use_bus_addr ? 1 : 4);
163 ih_rb_cntl = REG_SET_FIELD(ih_rb_cntl, IH_RB_CNTL,
164 WPTR_OVERFLOW_CLEAR, 1);
165 ih_rb_cntl = REG_SET_FIELD(ih_rb_cntl, IH_RB_CNTL,
166 WPTR_OVERFLOW_ENABLE, 1);
167 ih_rb_cntl = REG_SET_FIELD(ih_rb_cntl, IH_RB_CNTL, RB_SIZE, rb_bufsz);
168 /* Ring Buffer write pointer writeback. If enabled, IH_RB_WPTR register
169 * value is written to memory
171 ih_rb_cntl = REG_SET_FIELD(ih_rb_cntl, IH_RB_CNTL,
172 WPTR_WRITEBACK_ENABLE, 1);
173 ih_rb_cntl = REG_SET_FIELD(ih_rb_cntl, IH_RB_CNTL, MC_SNOOP, 1);
174 ih_rb_cntl = REG_SET_FIELD(ih_rb_cntl, IH_RB_CNTL, MC_RO, 0);
175 ih_rb_cntl = REG_SET_FIELD(ih_rb_cntl, IH_RB_CNTL, MC_VMID, 0);
180 static uint32_t vega20_ih_doorbell_rptr(struct amdgpu_ih_ring *ih)
182 u32 ih_doorbell_rtpr = 0;
184 if (ih->use_doorbell) {
185 ih_doorbell_rtpr = REG_SET_FIELD(ih_doorbell_rtpr,
186 IH_DOORBELL_RPTR, OFFSET,
188 ih_doorbell_rtpr = REG_SET_FIELD(ih_doorbell_rtpr,
192 ih_doorbell_rtpr = REG_SET_FIELD(ih_doorbell_rtpr,
196 return ih_doorbell_rtpr;
200 * vega20_ih_enable_ring - enable an ih ring buffer
202 * @adev: amdgpu_device pointer
203 * @ih: amdgpu_ih_ring pointer
205 * Enable an ih ring buffer (VEGA20)
207 static int vega20_ih_enable_ring(struct amdgpu_device *adev,
208 struct amdgpu_ih_ring *ih)
210 struct amdgpu_ih_regs *ih_regs;
213 ih_regs = &ih->ih_regs;
215 /* Ring Buffer base. [39:8] of 40-bit address of the beginning of the ring buffer*/
216 WREG32(ih_regs->ih_rb_base, ih->gpu_addr >> 8);
217 WREG32(ih_regs->ih_rb_base_hi, (ih->gpu_addr >> 40) & 0xff);
219 tmp = RREG32(ih_regs->ih_rb_cntl);
220 tmp = vega20_ih_rb_cntl(ih, tmp);
221 if (ih == &adev->irq.ih)
222 tmp = REG_SET_FIELD(tmp, IH_RB_CNTL, RPTR_REARM, !!adev->irq.msi_enabled);
223 if (ih == &adev->irq.ih1) {
224 tmp = REG_SET_FIELD(tmp, IH_RB_CNTL, WPTR_OVERFLOW_ENABLE, 0);
225 tmp = REG_SET_FIELD(tmp, IH_RB_CNTL, RB_FULL_DRAIN_ENABLE, 1);
227 if (amdgpu_sriov_vf(adev)) {
228 if (psp_reg_program(&adev->psp, ih_regs->psp_reg_id, tmp)) {
229 dev_err(adev->dev, "PSP program IH_RB_CNTL failed!\n");
233 WREG32(ih_regs->ih_rb_cntl, tmp);
236 if (ih == &adev->irq.ih) {
237 /* set the ih ring 0 writeback address whether it's enabled or not */
238 WREG32(ih_regs->ih_rb_wptr_addr_lo, lower_32_bits(ih->wptr_addr));
239 WREG32(ih_regs->ih_rb_wptr_addr_hi, upper_32_bits(ih->wptr_addr) & 0xFFFF);
242 /* set rptr, wptr to 0 */
243 WREG32(ih_regs->ih_rb_wptr, 0);
244 WREG32(ih_regs->ih_rb_rptr, 0);
246 WREG32(ih_regs->ih_doorbell_rptr, vega20_ih_doorbell_rptr(ih));
252 * vega20_ih_reroute_ih - reroute VMC/UTCL2 ih to an ih ring
254 * @adev: amdgpu_device pointer
256 * Reroute VMC and UMC interrupts on primary ih ring to
257 * ih ring 1 so they won't lose when bunches of page faults
258 * interrupts overwhelms the interrupt handler(VEGA20)
260 static void vega20_ih_reroute_ih(struct amdgpu_device *adev)
264 /* vega20 ih reroute will go through psp
265 * this function is only used for arcturus
267 if (adev->asic_type == CHIP_ARCTURUS) {
268 /* Reroute to IH ring 1 for VMC */
269 WREG32_SOC15(OSSSYS, 0, mmIH_CLIENT_CFG_INDEX, 0x12);
270 tmp = RREG32_SOC15(OSSSYS, 0, mmIH_CLIENT_CFG_DATA);
271 tmp = REG_SET_FIELD(tmp, IH_CLIENT_CFG_DATA, CLIENT_TYPE, 1);
272 tmp = REG_SET_FIELD(tmp, IH_CLIENT_CFG_DATA, RING_ID, 1);
273 WREG32_SOC15(OSSSYS, 0, mmIH_CLIENT_CFG_DATA, tmp);
275 /* Reroute IH ring 1 for UTCL2 */
276 WREG32_SOC15(OSSSYS, 0, mmIH_CLIENT_CFG_INDEX, 0x1B);
277 tmp = RREG32_SOC15(OSSSYS, 0, mmIH_CLIENT_CFG_DATA);
278 tmp = REG_SET_FIELD(tmp, IH_CLIENT_CFG_DATA, RING_ID, 1);
279 WREG32_SOC15(OSSSYS, 0, mmIH_CLIENT_CFG_DATA, tmp);
284 * vega20_ih_irq_init - init and enable the interrupt ring
286 * @adev: amdgpu_device pointer
288 * Allocate a ring buffer for the interrupt controller,
289 * enable the RLC, disable interrupts, enable the IH
290 * ring buffer and enable it (VI).
291 * Called at device load and reume.
292 * Returns 0 for success, errors for failure.
294 static int vega20_ih_irq_init(struct amdgpu_device *adev)
296 struct amdgpu_ih_ring *ih[] = {&adev->irq.ih, &adev->irq.ih1, &adev->irq.ih2};
303 ret = vega20_ih_toggle_interrupts(adev, false);
307 adev->nbio.funcs->ih_control(adev);
309 if (adev->asic_type == CHIP_ARCTURUS &&
310 adev->firmware.load_type == AMDGPU_FW_LOAD_DIRECT) {
311 ih_chicken = RREG32_SOC15(OSSSYS, 0, mmIH_CHICKEN);
312 if (adev->irq.ih.use_bus_addr) {
313 ih_chicken = REG_SET_FIELD(ih_chicken, IH_CHICKEN,
314 MC_SPACE_GPA_ENABLE, 1);
316 WREG32_SOC15(OSSSYS, 0, mmIH_CHICKEN, ih_chicken);
319 for (i = 0; i < ARRAY_SIZE(ih); i++) {
320 if (ih[i]->ring_size) {
322 vega20_ih_reroute_ih(adev);
323 ret = vega20_ih_enable_ring(adev, ih[i]);
329 tmp = RREG32_SOC15(OSSSYS, 0, mmIH_STORM_CLIENT_LIST_CNTL);
330 tmp = REG_SET_FIELD(tmp, IH_STORM_CLIENT_LIST_CNTL,
331 CLIENT18_IS_STORM_CLIENT, 1);
332 WREG32_SOC15(OSSSYS, 0, mmIH_STORM_CLIENT_LIST_CNTL, tmp);
334 tmp = RREG32_SOC15(OSSSYS, 0, mmIH_INT_FLOOD_CNTL);
335 tmp = REG_SET_FIELD(tmp, IH_INT_FLOOD_CNTL, FLOOD_CNTL_ENABLE, 1);
336 WREG32_SOC15(OSSSYS, 0, mmIH_INT_FLOOD_CNTL, tmp);
338 pci_set_master(adev->pdev);
340 /* enable interrupts */
341 ret = vega20_ih_toggle_interrupts(adev, true);
345 if (adev->irq.ih_soft.ring_size)
346 adev->irq.ih_soft.enabled = true;
352 * vega20_ih_irq_disable - disable interrupts
354 * @adev: amdgpu_device pointer
356 * Disable interrupts on the hw (VEGA20).
358 static void vega20_ih_irq_disable(struct amdgpu_device *adev)
360 vega20_ih_toggle_interrupts(adev, false);
362 /* Wait and acknowledge irq */
367 * vega20_ih_get_wptr - get the IH ring buffer wptr
369 * @adev: amdgpu_device pointer
371 * Get the IH ring buffer wptr from either the register
372 * or the writeback memory buffer (VEGA20). Also check for
373 * ring buffer overflow and deal with it.
374 * Returns the value of the wptr.
376 static u32 vega20_ih_get_wptr(struct amdgpu_device *adev,
377 struct amdgpu_ih_ring *ih)
380 struct amdgpu_ih_regs *ih_regs;
382 wptr = le32_to_cpu(*ih->wptr_cpu);
383 ih_regs = &ih->ih_regs;
385 if (!REG_GET_FIELD(wptr, IH_RB_WPTR, RB_OVERFLOW))
388 /* Double check that the overflow wasn't already cleared. */
389 wptr = RREG32_NO_KIQ(ih_regs->ih_rb_wptr);
390 if (!REG_GET_FIELD(wptr, IH_RB_WPTR, RB_OVERFLOW))
393 wptr = REG_SET_FIELD(wptr, IH_RB_WPTR, RB_OVERFLOW, 0);
395 /* When a ring buffer overflow happen start parsing interrupt
396 * from the last not overwritten vector (wptr + 32). Hopefully
397 * this should allow us to catchup.
399 tmp = (wptr + 32) & ih->ptr_mask;
400 dev_warn(adev->dev, "IH ring buffer overflow "
401 "(0x%08X, 0x%08X, 0x%08X)\n",
402 wptr, ih->rptr, tmp);
405 tmp = RREG32_NO_KIQ(ih_regs->ih_rb_cntl);
406 tmp = REG_SET_FIELD(tmp, IH_RB_CNTL, WPTR_OVERFLOW_CLEAR, 1);
407 WREG32_NO_KIQ(ih_regs->ih_rb_cntl, tmp);
410 return (wptr & ih->ptr_mask);
414 * vega20_ih_irq_rearm - rearm IRQ if lost
416 * @adev: amdgpu_device pointer
419 static void vega20_ih_irq_rearm(struct amdgpu_device *adev,
420 struct amdgpu_ih_ring *ih)
424 struct amdgpu_ih_regs *ih_regs;
426 ih_regs = &ih->ih_regs;
428 /* Rearm IRQ / re-wwrite doorbell if doorbell write is lost */
429 for (i = 0; i < MAX_REARM_RETRY; i++) {
430 v = RREG32_NO_KIQ(ih_regs->ih_rb_rptr);
431 if ((v < ih->ring_size) && (v != ih->rptr))
432 WDOORBELL32(ih->doorbell_index, ih->rptr);
439 * vega20_ih_set_rptr - set the IH ring buffer rptr
441 * @adev: amdgpu_device pointer
443 * Set the IH ring buffer rptr.
445 static void vega20_ih_set_rptr(struct amdgpu_device *adev,
446 struct amdgpu_ih_ring *ih)
448 struct amdgpu_ih_regs *ih_regs;
450 if (ih->use_doorbell) {
451 /* XXX check if swapping is necessary on BE */
452 *ih->rptr_cpu = ih->rptr;
453 WDOORBELL32(ih->doorbell_index, ih->rptr);
455 if (amdgpu_sriov_vf(adev))
456 vega20_ih_irq_rearm(adev, ih);
458 ih_regs = &ih->ih_regs;
459 WREG32(ih_regs->ih_rb_rptr, ih->rptr);
464 * vega20_ih_self_irq - dispatch work for ring 1 and 2
466 * @adev: amdgpu_device pointer
467 * @source: irq source
468 * @entry: IV with WPTR update
470 * Update the WPTR from the IV and schedule work to handle the entries.
472 static int vega20_ih_self_irq(struct amdgpu_device *adev,
473 struct amdgpu_irq_src *source,
474 struct amdgpu_iv_entry *entry)
476 uint32_t wptr = cpu_to_le32(entry->src_data[0]);
478 switch (entry->ring_id) {
480 *adev->irq.ih1.wptr_cpu = wptr;
481 schedule_work(&adev->irq.ih1_work);
484 *adev->irq.ih2.wptr_cpu = wptr;
485 schedule_work(&adev->irq.ih2_work);
492 static const struct amdgpu_irq_src_funcs vega20_ih_self_irq_funcs = {
493 .process = vega20_ih_self_irq,
496 static void vega20_ih_set_self_irq_funcs(struct amdgpu_device *adev)
498 adev->irq.self_irq.num_types = 0;
499 adev->irq.self_irq.funcs = &vega20_ih_self_irq_funcs;
502 static int vega20_ih_early_init(void *handle)
504 struct amdgpu_device *adev = (struct amdgpu_device *)handle;
506 vega20_ih_set_interrupt_funcs(adev);
507 vega20_ih_set_self_irq_funcs(adev);
511 static int vega20_ih_sw_init(void *handle)
513 struct amdgpu_device *adev = (struct amdgpu_device *)handle;
516 r = amdgpu_irq_add_id(adev, SOC15_IH_CLIENTID_IH, 0,
517 &adev->irq.self_irq);
521 r = amdgpu_ih_ring_init(adev, &adev->irq.ih, 256 * 1024, true);
525 adev->irq.ih.use_doorbell = true;
526 adev->irq.ih.doorbell_index = adev->doorbell_index.ih << 1;
528 r = amdgpu_ih_ring_init(adev, &adev->irq.ih1, PAGE_SIZE, true);
532 adev->irq.ih1.use_doorbell = true;
533 adev->irq.ih1.doorbell_index = (adev->doorbell_index.ih + 1) << 1;
535 r = amdgpu_ih_ring_init(adev, &adev->irq.ih2, PAGE_SIZE, true);
539 adev->irq.ih2.use_doorbell = true;
540 adev->irq.ih2.doorbell_index = (adev->doorbell_index.ih + 2) << 1;
542 /* initialize ih control registers offset */
543 vega20_ih_init_register_offset(adev);
545 r = amdgpu_ih_ring_init(adev, &adev->irq.ih_soft, PAGE_SIZE, true);
549 r = amdgpu_irq_init(adev);
554 static int vega20_ih_sw_fini(void *handle)
556 struct amdgpu_device *adev = (struct amdgpu_device *)handle;
558 amdgpu_irq_fini(adev);
559 amdgpu_ih_ring_fini(adev, &adev->irq.ih_soft);
560 amdgpu_ih_ring_fini(adev, &adev->irq.ih2);
561 amdgpu_ih_ring_fini(adev, &adev->irq.ih1);
562 amdgpu_ih_ring_fini(adev, &adev->irq.ih);
567 static int vega20_ih_hw_init(void *handle)
570 struct amdgpu_device *adev = (struct amdgpu_device *)handle;
572 r = vega20_ih_irq_init(adev);
579 static int vega20_ih_hw_fini(void *handle)
581 struct amdgpu_device *adev = (struct amdgpu_device *)handle;
583 vega20_ih_irq_disable(adev);
588 static int vega20_ih_suspend(void *handle)
590 struct amdgpu_device *adev = (struct amdgpu_device *)handle;
592 return vega20_ih_hw_fini(adev);
595 static int vega20_ih_resume(void *handle)
597 struct amdgpu_device *adev = (struct amdgpu_device *)handle;
599 return vega20_ih_hw_init(adev);
602 static bool vega20_ih_is_idle(void *handle)
608 static int vega20_ih_wait_for_idle(void *handle)
614 static int vega20_ih_soft_reset(void *handle)
621 static void vega20_ih_update_clockgating_state(struct amdgpu_device *adev,
624 uint32_t data, def, field_val;
626 if (adev->cg_flags & AMD_CG_SUPPORT_IH_CG) {
627 def = data = RREG32_SOC15(OSSSYS, 0, mmIH_CLK_CTRL);
628 field_val = enable ? 0 : 1;
629 data = REG_SET_FIELD(data, IH_CLK_CTRL,
630 IH_RETRY_INT_CAM_MEM_CLK_SOFT_OVERRIDE, field_val);
631 data = REG_SET_FIELD(data, IH_CLK_CTRL,
632 IH_BUFFER_MEM_CLK_SOFT_OVERRIDE, field_val);
633 data = REG_SET_FIELD(data, IH_CLK_CTRL,
634 DBUS_MUX_CLK_SOFT_OVERRIDE, field_val);
635 data = REG_SET_FIELD(data, IH_CLK_CTRL,
636 OSSSYS_SHARE_CLK_SOFT_OVERRIDE, field_val);
637 data = REG_SET_FIELD(data, IH_CLK_CTRL,
638 LIMIT_SMN_CLK_SOFT_OVERRIDE, field_val);
639 data = REG_SET_FIELD(data, IH_CLK_CTRL,
640 DYN_CLK_SOFT_OVERRIDE, field_val);
641 data = REG_SET_FIELD(data, IH_CLK_CTRL,
642 REG_CLK_SOFT_OVERRIDE, field_val);
644 WREG32_SOC15(OSSSYS, 0, mmIH_CLK_CTRL, data);
648 static int vega20_ih_set_clockgating_state(void *handle,
649 enum amd_clockgating_state state)
651 struct amdgpu_device *adev = (struct amdgpu_device *)handle;
653 vega20_ih_update_clockgating_state(adev,
654 state == AMD_CG_STATE_GATE);
659 static int vega20_ih_set_powergating_state(void *handle,
660 enum amd_powergating_state state)
665 const struct amd_ip_funcs vega20_ih_ip_funcs = {
667 .early_init = vega20_ih_early_init,
669 .sw_init = vega20_ih_sw_init,
670 .sw_fini = vega20_ih_sw_fini,
671 .hw_init = vega20_ih_hw_init,
672 .hw_fini = vega20_ih_hw_fini,
673 .suspend = vega20_ih_suspend,
674 .resume = vega20_ih_resume,
675 .is_idle = vega20_ih_is_idle,
676 .wait_for_idle = vega20_ih_wait_for_idle,
677 .soft_reset = vega20_ih_soft_reset,
678 .set_clockgating_state = vega20_ih_set_clockgating_state,
679 .set_powergating_state = vega20_ih_set_powergating_state,
682 static const struct amdgpu_ih_funcs vega20_ih_funcs = {
683 .get_wptr = vega20_ih_get_wptr,
684 .decode_iv = amdgpu_ih_decode_iv_helper,
685 .set_rptr = vega20_ih_set_rptr
688 static void vega20_ih_set_interrupt_funcs(struct amdgpu_device *adev)
690 adev->irq.ih_funcs = &vega20_ih_funcs;
693 const struct amdgpu_ip_block_version vega20_ih_ip_block =
695 .type = AMD_IP_BLOCK_TYPE_IH,
699 .funcs = &vega20_ih_ip_funcs,