Line data Source code
1 : /*
2 : * Copyright 2016 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 :
24 : #include <linux/pci.h>
25 :
26 : #include "amdgpu.h"
27 : #include "amdgpu_ih.h"
28 : #include "soc15.h"
29 :
30 : #include "oss/osssys_4_0_offset.h"
31 : #include "oss/osssys_4_0_sh_mask.h"
32 :
33 : #include "soc15_common.h"
34 : #include "vega10_ih.h"
35 :
36 : #define MAX_REARM_RETRY 10
37 :
38 : static void vega10_ih_set_interrupt_funcs(struct amdgpu_device *adev);
39 :
40 : /**
41 : * vega10_ih_init_register_offset - Initialize register offset for ih rings
42 : *
43 : * @adev: amdgpu_device pointer
44 : *
45 : * Initialize register offset ih rings (VEGA10).
46 : */
47 0 : static void vega10_ih_init_register_offset(struct amdgpu_device *adev)
48 : {
49 : struct amdgpu_ih_regs *ih_regs;
50 :
51 0 : if (adev->irq.ih.ring_size) {
52 0 : ih_regs = &adev->irq.ih.ih_regs;
53 0 : ih_regs->ih_rb_base = SOC15_REG_OFFSET(OSSSYS, 0, mmIH_RB_BASE);
54 0 : ih_regs->ih_rb_base_hi = SOC15_REG_OFFSET(OSSSYS, 0, mmIH_RB_BASE_HI);
55 0 : ih_regs->ih_rb_cntl = SOC15_REG_OFFSET(OSSSYS, 0, mmIH_RB_CNTL);
56 0 : ih_regs->ih_rb_wptr = SOC15_REG_OFFSET(OSSSYS, 0, mmIH_RB_WPTR);
57 0 : ih_regs->ih_rb_rptr = SOC15_REG_OFFSET(OSSSYS, 0, mmIH_RB_RPTR);
58 0 : ih_regs->ih_doorbell_rptr = SOC15_REG_OFFSET(OSSSYS, 0, mmIH_DOORBELL_RPTR);
59 0 : ih_regs->ih_rb_wptr_addr_lo = SOC15_REG_OFFSET(OSSSYS, 0, mmIH_RB_WPTR_ADDR_LO);
60 0 : ih_regs->ih_rb_wptr_addr_hi = SOC15_REG_OFFSET(OSSSYS, 0, mmIH_RB_WPTR_ADDR_HI);
61 0 : ih_regs->psp_reg_id = PSP_REG_IH_RB_CNTL;
62 : }
63 :
64 0 : if (adev->irq.ih1.ring_size) {
65 0 : ih_regs = &adev->irq.ih1.ih_regs;
66 0 : ih_regs->ih_rb_base = SOC15_REG_OFFSET(OSSSYS, 0, mmIH_RB_BASE_RING1);
67 0 : ih_regs->ih_rb_base_hi = SOC15_REG_OFFSET(OSSSYS, 0, mmIH_RB_BASE_HI_RING1);
68 0 : ih_regs->ih_rb_cntl = SOC15_REG_OFFSET(OSSSYS, 0, mmIH_RB_CNTL_RING1);
69 0 : ih_regs->ih_rb_wptr = SOC15_REG_OFFSET(OSSSYS, 0, mmIH_RB_WPTR_RING1);
70 0 : ih_regs->ih_rb_rptr = SOC15_REG_OFFSET(OSSSYS, 0, mmIH_RB_RPTR_RING1);
71 0 : ih_regs->ih_doorbell_rptr = SOC15_REG_OFFSET(OSSSYS, 0, mmIH_DOORBELL_RPTR_RING1);
72 0 : ih_regs->psp_reg_id = PSP_REG_IH_RB_CNTL_RING1;
73 : }
74 :
75 0 : if (adev->irq.ih2.ring_size) {
76 0 : ih_regs = &adev->irq.ih2.ih_regs;
77 0 : ih_regs->ih_rb_base = SOC15_REG_OFFSET(OSSSYS, 0, mmIH_RB_BASE_RING2);
78 0 : ih_regs->ih_rb_base_hi = SOC15_REG_OFFSET(OSSSYS, 0, mmIH_RB_BASE_HI_RING2);
79 0 : ih_regs->ih_rb_cntl = SOC15_REG_OFFSET(OSSSYS, 0, mmIH_RB_CNTL_RING2);
80 0 : ih_regs->ih_rb_wptr = SOC15_REG_OFFSET(OSSSYS, 0, mmIH_RB_WPTR_RING2);
81 0 : ih_regs->ih_rb_rptr = SOC15_REG_OFFSET(OSSSYS, 0, mmIH_RB_RPTR_RING2);
82 0 : ih_regs->ih_doorbell_rptr = SOC15_REG_OFFSET(OSSSYS, 0, mmIH_DOORBELL_RPTR_RING2);
83 0 : ih_regs->psp_reg_id = PSP_REG_IH_RB_CNTL_RING2;
84 : }
85 0 : }
86 :
87 : /**
88 : * vega10_ih_toggle_ring_interrupts - toggle the interrupt ring buffer
89 : *
90 : * @adev: amdgpu_device pointer
91 : * @ih: amdgpu_ih_ring pointet
92 : * @enable: true - enable the interrupts, false - disable the interrupts
93 : *
94 : * Toggle the interrupt ring buffer (VEGA10)
95 : */
96 0 : static int vega10_ih_toggle_ring_interrupts(struct amdgpu_device *adev,
97 : struct amdgpu_ih_ring *ih,
98 : bool enable)
99 : {
100 : struct amdgpu_ih_regs *ih_regs;
101 : uint32_t tmp;
102 :
103 0 : ih_regs = &ih->ih_regs;
104 :
105 0 : tmp = RREG32(ih_regs->ih_rb_cntl);
106 0 : tmp = REG_SET_FIELD(tmp, IH_RB_CNTL, RB_ENABLE, (enable ? 1 : 0));
107 0 : tmp = REG_SET_FIELD(tmp, IH_RB_CNTL, RB_GPU_TS_ENABLE, 1);
108 : /* enable_intr field is only valid in ring0 */
109 0 : if (ih == &adev->irq.ih)
110 0 : tmp = REG_SET_FIELD(tmp, IH_RB_CNTL, ENABLE_INTR, (enable ? 1 : 0));
111 0 : if (amdgpu_sriov_vf(adev)) {
112 0 : if (psp_reg_program(&adev->psp, ih_regs->psp_reg_id, tmp)) {
113 0 : dev_err(adev->dev, "PSP program IH_RB_CNTL failed!\n");
114 0 : return -ETIMEDOUT;
115 : }
116 : } else {
117 0 : WREG32(ih_regs->ih_rb_cntl, tmp);
118 : }
119 :
120 0 : if (enable) {
121 0 : ih->enabled = true;
122 : } else {
123 : /* set rptr, wptr to 0 */
124 0 : WREG32(ih_regs->ih_rb_rptr, 0);
125 0 : WREG32(ih_regs->ih_rb_wptr, 0);
126 0 : ih->enabled = false;
127 0 : ih->rptr = 0;
128 : }
129 :
130 : return 0;
131 : }
132 :
133 : /**
134 : * vega10_ih_toggle_interrupts - Toggle all the available interrupt ring buffers
135 : *
136 : * @adev: amdgpu_device pointer
137 : * @enable: enable or disable interrupt ring buffers
138 : *
139 : * Toggle all the available interrupt ring buffers (VEGA10).
140 : */
141 0 : static int vega10_ih_toggle_interrupts(struct amdgpu_device *adev, bool enable)
142 : {
143 0 : struct amdgpu_ih_ring *ih[] = {&adev->irq.ih, &adev->irq.ih1, &adev->irq.ih2};
144 : int i;
145 : int r;
146 :
147 0 : for (i = 0; i < ARRAY_SIZE(ih); i++) {
148 0 : if (ih[i]->ring_size) {
149 0 : r = vega10_ih_toggle_ring_interrupts(adev, ih[i], enable);
150 0 : if (r)
151 : return r;
152 : }
153 : }
154 :
155 : return 0;
156 : }
157 :
158 0 : static uint32_t vega10_ih_rb_cntl(struct amdgpu_ih_ring *ih, uint32_t ih_rb_cntl)
159 : {
160 0 : int rb_bufsz = order_base_2(ih->ring_size / 4);
161 :
162 0 : ih_rb_cntl = REG_SET_FIELD(ih_rb_cntl, IH_RB_CNTL,
163 : MC_SPACE, ih->use_bus_addr ? 1 : 4);
164 0 : ih_rb_cntl = REG_SET_FIELD(ih_rb_cntl, IH_RB_CNTL,
165 : WPTR_OVERFLOW_CLEAR, 1);
166 0 : ih_rb_cntl = REG_SET_FIELD(ih_rb_cntl, IH_RB_CNTL,
167 : WPTR_OVERFLOW_ENABLE, 1);
168 0 : ih_rb_cntl = REG_SET_FIELD(ih_rb_cntl, IH_RB_CNTL, RB_SIZE, rb_bufsz);
169 : /* Ring Buffer write pointer writeback. If enabled, IH_RB_WPTR register
170 : * value is written to memory
171 : */
172 0 : ih_rb_cntl = REG_SET_FIELD(ih_rb_cntl, IH_RB_CNTL,
173 : WPTR_WRITEBACK_ENABLE, 1);
174 0 : ih_rb_cntl = REG_SET_FIELD(ih_rb_cntl, IH_RB_CNTL, MC_SNOOP, 1);
175 0 : ih_rb_cntl = REG_SET_FIELD(ih_rb_cntl, IH_RB_CNTL, MC_RO, 0);
176 0 : ih_rb_cntl = REG_SET_FIELD(ih_rb_cntl, IH_RB_CNTL, MC_VMID, 0);
177 :
178 0 : return ih_rb_cntl;
179 : }
180 :
181 : static uint32_t vega10_ih_doorbell_rptr(struct amdgpu_ih_ring *ih)
182 : {
183 0 : u32 ih_doorbell_rtpr = 0;
184 :
185 0 : if (ih->use_doorbell) {
186 0 : ih_doorbell_rtpr = REG_SET_FIELD(ih_doorbell_rtpr,
187 : IH_DOORBELL_RPTR, OFFSET,
188 : ih->doorbell_index);
189 0 : ih_doorbell_rtpr = REG_SET_FIELD(ih_doorbell_rtpr,
190 : IH_DOORBELL_RPTR,
191 : ENABLE, 1);
192 : } else {
193 : ih_doorbell_rtpr = REG_SET_FIELD(ih_doorbell_rtpr,
194 : IH_DOORBELL_RPTR,
195 : ENABLE, 0);
196 : }
197 : return ih_doorbell_rtpr;
198 : }
199 :
200 : /**
201 : * vega10_ih_enable_ring - enable an ih ring buffer
202 : *
203 : * @adev: amdgpu_device pointer
204 : * @ih: amdgpu_ih_ring pointer
205 : *
206 : * Enable an ih ring buffer (VEGA10)
207 : */
208 0 : static int vega10_ih_enable_ring(struct amdgpu_device *adev,
209 : struct amdgpu_ih_ring *ih)
210 : {
211 : struct amdgpu_ih_regs *ih_regs;
212 : uint32_t tmp;
213 :
214 0 : ih_regs = &ih->ih_regs;
215 :
216 : /* Ring Buffer base. [39:8] of 40-bit address of the beginning of the ring buffer*/
217 0 : WREG32(ih_regs->ih_rb_base, ih->gpu_addr >> 8);
218 0 : WREG32(ih_regs->ih_rb_base_hi, (ih->gpu_addr >> 40) & 0xff);
219 :
220 0 : tmp = RREG32(ih_regs->ih_rb_cntl);
221 0 : tmp = vega10_ih_rb_cntl(ih, tmp);
222 0 : if (ih == &adev->irq.ih)
223 0 : tmp = REG_SET_FIELD(tmp, IH_RB_CNTL, RPTR_REARM, !!adev->irq.msi_enabled);
224 0 : if (ih == &adev->irq.ih1)
225 0 : tmp = REG_SET_FIELD(tmp, IH_RB_CNTL, RB_FULL_DRAIN_ENABLE, 1);
226 0 : if (amdgpu_sriov_vf(adev)) {
227 0 : if (psp_reg_program(&adev->psp, ih_regs->psp_reg_id, tmp)) {
228 0 : dev_err(adev->dev, "PSP program IH_RB_CNTL failed!\n");
229 0 : return -ETIMEDOUT;
230 : }
231 : } else {
232 0 : WREG32(ih_regs->ih_rb_cntl, tmp);
233 : }
234 :
235 0 : if (ih == &adev->irq.ih) {
236 : /* set the ih ring 0 writeback address whether it's enabled or not */
237 0 : WREG32(ih_regs->ih_rb_wptr_addr_lo, lower_32_bits(ih->wptr_addr));
238 0 : WREG32(ih_regs->ih_rb_wptr_addr_hi, upper_32_bits(ih->wptr_addr) & 0xFFFF);
239 : }
240 :
241 : /* set rptr, wptr to 0 */
242 0 : WREG32(ih_regs->ih_rb_wptr, 0);
243 0 : WREG32(ih_regs->ih_rb_rptr, 0);
244 :
245 0 : WREG32(ih_regs->ih_doorbell_rptr, vega10_ih_doorbell_rptr(ih));
246 :
247 0 : return 0;
248 : }
249 :
250 : /**
251 : * vega10_ih_irq_init - init and enable the interrupt ring
252 : *
253 : * @adev: amdgpu_device pointer
254 : *
255 : * Allocate a ring buffer for the interrupt controller,
256 : * enable the RLC, disable interrupts, enable the IH
257 : * ring buffer and enable it (VI).
258 : * Called at device load and reume.
259 : * Returns 0 for success, errors for failure.
260 : */
261 0 : static int vega10_ih_irq_init(struct amdgpu_device *adev)
262 : {
263 0 : struct amdgpu_ih_ring *ih[] = {&adev->irq.ih, &adev->irq.ih1, &adev->irq.ih2};
264 : u32 ih_chicken;
265 : int ret;
266 : int i;
267 :
268 : /* disable irqs */
269 0 : ret = vega10_ih_toggle_interrupts(adev, false);
270 0 : if (ret)
271 : return ret;
272 :
273 0 : adev->nbio.funcs->ih_control(adev);
274 :
275 0 : if (adev->asic_type == CHIP_RENOIR) {
276 0 : ih_chicken = RREG32_SOC15(OSSSYS, 0, mmIH_CHICKEN);
277 0 : if (adev->irq.ih.use_bus_addr) {
278 0 : ih_chicken = REG_SET_FIELD(ih_chicken, IH_CHICKEN,
279 : MC_SPACE_GPA_ENABLE, 1);
280 : }
281 0 : WREG32_SOC15(OSSSYS, 0, mmIH_CHICKEN, ih_chicken);
282 : }
283 :
284 0 : for (i = 0; i < ARRAY_SIZE(ih); i++) {
285 0 : if (ih[i]->ring_size) {
286 0 : ret = vega10_ih_enable_ring(adev, ih[i]);
287 0 : if (ret)
288 : return ret;
289 : }
290 : }
291 :
292 0 : pci_set_master(adev->pdev);
293 :
294 : /* enable interrupts */
295 0 : ret = vega10_ih_toggle_interrupts(adev, true);
296 0 : if (ret)
297 : return ret;
298 :
299 0 : if (adev->irq.ih_soft.ring_size)
300 0 : adev->irq.ih_soft.enabled = true;
301 :
302 : return 0;
303 : }
304 :
305 : /**
306 : * vega10_ih_irq_disable - disable interrupts
307 : *
308 : * @adev: amdgpu_device pointer
309 : *
310 : * Disable interrupts on the hw (VEGA10).
311 : */
312 : static void vega10_ih_irq_disable(struct amdgpu_device *adev)
313 : {
314 0 : vega10_ih_toggle_interrupts(adev, false);
315 :
316 : /* Wait and acknowledge irq */
317 0 : mdelay(1);
318 : }
319 :
320 : /**
321 : * vega10_ih_get_wptr - get the IH ring buffer wptr
322 : *
323 : * @adev: amdgpu_device pointer
324 : * @ih: IH ring buffer to fetch wptr
325 : *
326 : * Get the IH ring buffer wptr from either the register
327 : * or the writeback memory buffer (VEGA10). Also check for
328 : * ring buffer overflow and deal with it.
329 : * Returns the value of the wptr.
330 : */
331 0 : static u32 vega10_ih_get_wptr(struct amdgpu_device *adev,
332 : struct amdgpu_ih_ring *ih)
333 : {
334 : u32 wptr, tmp;
335 : struct amdgpu_ih_regs *ih_regs;
336 :
337 0 : if (ih == &adev->irq.ih || ih == &adev->irq.ih_soft) {
338 : /* Only ring0 supports writeback. On other rings fall back
339 : * to register-based code with overflow checking below.
340 : * ih_soft ring doesn't have any backing hardware registers,
341 : * update wptr and return.
342 : */
343 0 : wptr = le32_to_cpu(*ih->wptr_cpu);
344 :
345 0 : if (!REG_GET_FIELD(wptr, IH_RB_WPTR, RB_OVERFLOW))
346 : goto out;
347 : }
348 :
349 0 : ih_regs = &ih->ih_regs;
350 :
351 : /* Double check that the overflow wasn't already cleared. */
352 0 : wptr = RREG32_NO_KIQ(ih_regs->ih_rb_wptr);
353 0 : if (!REG_GET_FIELD(wptr, IH_RB_WPTR, RB_OVERFLOW))
354 : goto out;
355 :
356 0 : wptr = REG_SET_FIELD(wptr, IH_RB_WPTR, RB_OVERFLOW, 0);
357 :
358 : /* When a ring buffer overflow happen start parsing interrupt
359 : * from the last not overwritten vector (wptr + 32). Hopefully
360 : * this should allow us to catchup.
361 : */
362 0 : tmp = (wptr + 32) & ih->ptr_mask;
363 0 : dev_warn(adev->dev, "IH ring buffer overflow "
364 : "(0x%08X, 0x%08X, 0x%08X)\n",
365 : wptr, ih->rptr, tmp);
366 0 : ih->rptr = tmp;
367 :
368 0 : tmp = RREG32_NO_KIQ(ih_regs->ih_rb_cntl);
369 0 : tmp = REG_SET_FIELD(tmp, IH_RB_CNTL, WPTR_OVERFLOW_CLEAR, 1);
370 0 : WREG32_NO_KIQ(ih_regs->ih_rb_cntl, tmp);
371 :
372 : out:
373 0 : return (wptr & ih->ptr_mask);
374 : }
375 :
376 : /**
377 : * vega10_ih_irq_rearm - rearm IRQ if lost
378 : *
379 : * @adev: amdgpu_device pointer
380 : * @ih: IH ring to match
381 : *
382 : */
383 0 : static void vega10_ih_irq_rearm(struct amdgpu_device *adev,
384 : struct amdgpu_ih_ring *ih)
385 : {
386 0 : uint32_t v = 0;
387 0 : uint32_t i = 0;
388 : struct amdgpu_ih_regs *ih_regs;
389 :
390 0 : ih_regs = &ih->ih_regs;
391 : /* Rearm IRQ / re-wwrite doorbell if doorbell write is lost */
392 0 : for (i = 0; i < MAX_REARM_RETRY; i++) {
393 0 : v = RREG32_NO_KIQ(ih_regs->ih_rb_rptr);
394 0 : if ((v < ih->ring_size) && (v != ih->rptr))
395 0 : WDOORBELL32(ih->doorbell_index, ih->rptr);
396 : else
397 : break;
398 : }
399 0 : }
400 :
401 : /**
402 : * vega10_ih_set_rptr - set the IH ring buffer rptr
403 : *
404 : * @adev: amdgpu_device pointer
405 : * @ih: IH ring buffer to set rptr
406 : *
407 : * Set the IH ring buffer rptr.
408 : */
409 0 : static void vega10_ih_set_rptr(struct amdgpu_device *adev,
410 : struct amdgpu_ih_ring *ih)
411 : {
412 : struct amdgpu_ih_regs *ih_regs;
413 :
414 0 : if (ih == &adev->irq.ih_soft)
415 : return;
416 :
417 0 : if (ih->use_doorbell) {
418 : /* XXX check if swapping is necessary on BE */
419 0 : *ih->rptr_cpu = ih->rptr;
420 0 : WDOORBELL32(ih->doorbell_index, ih->rptr);
421 :
422 0 : if (amdgpu_sriov_vf(adev))
423 0 : vega10_ih_irq_rearm(adev, ih);
424 : } else {
425 0 : ih_regs = &ih->ih_regs;
426 0 : WREG32(ih_regs->ih_rb_rptr, ih->rptr);
427 : }
428 : }
429 :
430 : /**
431 : * vega10_ih_self_irq - dispatch work for ring 1 and 2
432 : *
433 : * @adev: amdgpu_device pointer
434 : * @source: irq source
435 : * @entry: IV with WPTR update
436 : *
437 : * Update the WPTR from the IV and schedule work to handle the entries.
438 : */
439 0 : static int vega10_ih_self_irq(struct amdgpu_device *adev,
440 : struct amdgpu_irq_src *source,
441 : struct amdgpu_iv_entry *entry)
442 : {
443 0 : switch (entry->ring_id) {
444 : case 1:
445 0 : schedule_work(&adev->irq.ih1_work);
446 : break;
447 : case 2:
448 0 : schedule_work(&adev->irq.ih2_work);
449 : break;
450 : default: break;
451 : }
452 0 : return 0;
453 : }
454 :
455 : static const struct amdgpu_irq_src_funcs vega10_ih_self_irq_funcs = {
456 : .process = vega10_ih_self_irq,
457 : };
458 :
459 : static void vega10_ih_set_self_irq_funcs(struct amdgpu_device *adev)
460 : {
461 0 : adev->irq.self_irq.num_types = 0;
462 0 : adev->irq.self_irq.funcs = &vega10_ih_self_irq_funcs;
463 : }
464 :
465 0 : static int vega10_ih_early_init(void *handle)
466 : {
467 0 : struct amdgpu_device *adev = (struct amdgpu_device *)handle;
468 :
469 0 : vega10_ih_set_interrupt_funcs(adev);
470 0 : vega10_ih_set_self_irq_funcs(adev);
471 0 : return 0;
472 : }
473 :
474 0 : static int vega10_ih_sw_init(void *handle)
475 : {
476 0 : struct amdgpu_device *adev = (struct amdgpu_device *)handle;
477 : int r;
478 :
479 0 : r = amdgpu_irq_add_id(adev, SOC15_IH_CLIENTID_IH, 0,
480 : &adev->irq.self_irq);
481 0 : if (r)
482 : return r;
483 :
484 0 : r = amdgpu_ih_ring_init(adev, &adev->irq.ih, 256 * 1024, true);
485 0 : if (r)
486 : return r;
487 :
488 0 : adev->irq.ih.use_doorbell = true;
489 0 : adev->irq.ih.doorbell_index = adev->doorbell_index.ih << 1;
490 :
491 0 : if (!(adev->flags & AMD_IS_APU)) {
492 0 : r = amdgpu_ih_ring_init(adev, &adev->irq.ih1, PAGE_SIZE, true);
493 0 : if (r)
494 : return r;
495 :
496 0 : adev->irq.ih1.use_doorbell = true;
497 0 : adev->irq.ih1.doorbell_index = (adev->doorbell_index.ih + 1) << 1;
498 :
499 0 : r = amdgpu_ih_ring_init(adev, &adev->irq.ih2, PAGE_SIZE, true);
500 0 : if (r)
501 : return r;
502 :
503 0 : adev->irq.ih2.use_doorbell = true;
504 0 : adev->irq.ih2.doorbell_index = (adev->doorbell_index.ih + 2) << 1;
505 : }
506 : /* initialize ih control registers offset */
507 0 : vega10_ih_init_register_offset(adev);
508 :
509 0 : r = amdgpu_ih_ring_init(adev, &adev->irq.ih_soft, PAGE_SIZE, true);
510 0 : if (r)
511 : return r;
512 :
513 0 : r = amdgpu_irq_init(adev);
514 :
515 0 : return r;
516 : }
517 :
518 0 : static int vega10_ih_sw_fini(void *handle)
519 : {
520 0 : struct amdgpu_device *adev = (struct amdgpu_device *)handle;
521 :
522 0 : amdgpu_irq_fini_sw(adev);
523 :
524 0 : return 0;
525 : }
526 :
527 0 : static int vega10_ih_hw_init(void *handle)
528 : {
529 0 : struct amdgpu_device *adev = (struct amdgpu_device *)handle;
530 :
531 0 : return vega10_ih_irq_init(adev);
532 : }
533 :
534 0 : static int vega10_ih_hw_fini(void *handle)
535 : {
536 0 : struct amdgpu_device *adev = (struct amdgpu_device *)handle;
537 :
538 0 : vega10_ih_irq_disable(adev);
539 :
540 0 : return 0;
541 : }
542 :
543 0 : static int vega10_ih_suspend(void *handle)
544 : {
545 0 : struct amdgpu_device *adev = (struct amdgpu_device *)handle;
546 :
547 0 : return vega10_ih_hw_fini(adev);
548 : }
549 :
550 0 : static int vega10_ih_resume(void *handle)
551 : {
552 0 : struct amdgpu_device *adev = (struct amdgpu_device *)handle;
553 :
554 0 : return vega10_ih_hw_init(adev);
555 : }
556 :
557 0 : static bool vega10_ih_is_idle(void *handle)
558 : {
559 : /* todo */
560 0 : return true;
561 : }
562 :
563 0 : static int vega10_ih_wait_for_idle(void *handle)
564 : {
565 : /* todo */
566 0 : return -ETIMEDOUT;
567 : }
568 :
569 0 : static int vega10_ih_soft_reset(void *handle)
570 : {
571 : /* todo */
572 :
573 0 : return 0;
574 : }
575 :
576 0 : static void vega10_ih_update_clockgating_state(struct amdgpu_device *adev,
577 : bool enable)
578 : {
579 : uint32_t data, def, field_val;
580 :
581 0 : if (adev->cg_flags & AMD_CG_SUPPORT_IH_CG) {
582 0 : def = data = RREG32_SOC15(OSSSYS, 0, mmIH_CLK_CTRL);
583 0 : field_val = enable ? 0 : 1;
584 : /**
585 : * Vega10/12 and RAVEN don't have IH_BUFFER_MEM_CLK_SOFT_OVERRIDE field.
586 : */
587 0 : if (adev->asic_type == CHIP_RENOIR)
588 0 : data = REG_SET_FIELD(data, IH_CLK_CTRL,
589 : IH_BUFFER_MEM_CLK_SOFT_OVERRIDE, field_val);
590 :
591 0 : data = REG_SET_FIELD(data, IH_CLK_CTRL,
592 : DBUS_MUX_CLK_SOFT_OVERRIDE, field_val);
593 0 : data = REG_SET_FIELD(data, IH_CLK_CTRL,
594 : OSSSYS_SHARE_CLK_SOFT_OVERRIDE, field_val);
595 0 : data = REG_SET_FIELD(data, IH_CLK_CTRL,
596 : LIMIT_SMN_CLK_SOFT_OVERRIDE, field_val);
597 0 : data = REG_SET_FIELD(data, IH_CLK_CTRL,
598 : DYN_CLK_SOFT_OVERRIDE, field_val);
599 0 : data = REG_SET_FIELD(data, IH_CLK_CTRL,
600 : REG_CLK_SOFT_OVERRIDE, field_val);
601 0 : if (def != data)
602 0 : WREG32_SOC15(OSSSYS, 0, mmIH_CLK_CTRL, data);
603 : }
604 0 : }
605 :
606 0 : static int vega10_ih_set_clockgating_state(void *handle,
607 : enum amd_clockgating_state state)
608 : {
609 0 : struct amdgpu_device *adev = (struct amdgpu_device *)handle;
610 :
611 0 : vega10_ih_update_clockgating_state(adev,
612 : state == AMD_CG_STATE_GATE);
613 0 : return 0;
614 :
615 : }
616 :
617 0 : static int vega10_ih_set_powergating_state(void *handle,
618 : enum amd_powergating_state state)
619 : {
620 0 : return 0;
621 : }
622 :
623 : const struct amd_ip_funcs vega10_ih_ip_funcs = {
624 : .name = "vega10_ih",
625 : .early_init = vega10_ih_early_init,
626 : .late_init = NULL,
627 : .sw_init = vega10_ih_sw_init,
628 : .sw_fini = vega10_ih_sw_fini,
629 : .hw_init = vega10_ih_hw_init,
630 : .hw_fini = vega10_ih_hw_fini,
631 : .suspend = vega10_ih_suspend,
632 : .resume = vega10_ih_resume,
633 : .is_idle = vega10_ih_is_idle,
634 : .wait_for_idle = vega10_ih_wait_for_idle,
635 : .soft_reset = vega10_ih_soft_reset,
636 : .set_clockgating_state = vega10_ih_set_clockgating_state,
637 : .set_powergating_state = vega10_ih_set_powergating_state,
638 : };
639 :
640 : static const struct amdgpu_ih_funcs vega10_ih_funcs = {
641 : .get_wptr = vega10_ih_get_wptr,
642 : .decode_iv = amdgpu_ih_decode_iv_helper,
643 : .decode_iv_ts = amdgpu_ih_decode_iv_ts_helper,
644 : .set_rptr = vega10_ih_set_rptr
645 : };
646 :
647 : static void vega10_ih_set_interrupt_funcs(struct amdgpu_device *adev)
648 : {
649 0 : adev->irq.ih_funcs = &vega10_ih_funcs;
650 : }
651 :
652 : const struct amdgpu_ip_block_version vega10_ih_ip_block =
653 : {
654 : .type = AMD_IP_BLOCK_TYPE_IH,
655 : .major = 4,
656 : .minor = 0,
657 : .rev = 0,
658 : .funcs = &vega10_ih_ip_funcs,
659 : };
|