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 #include <drm/drmP.h>
24 #include "amdgpu.h"
25 #include "amdgpu_ih.h"
26 #include "soc15.h"
27 
28 #include "oss/osssys_4_0_offset.h"
29 #include "oss/osssys_4_0_sh_mask.h"
30 
31 #include "soc15_common.h"
32 #include "vega10_ih.h"
33 
34 
35 
36 static void vega10_ih_set_interrupt_funcs(struct amdgpu_device *adev);
37 
38 /**
39  * vega10_ih_enable_interrupts - Enable the interrupt ring buffer
40  *
41  * @adev: amdgpu_device pointer
42  *
43  * Enable the interrupt ring buffer (VEGA10).
44  */
45 static void vega10_ih_enable_interrupts(struct amdgpu_device *adev)
46 {
47 	u32 ih_rb_cntl = RREG32_SOC15(OSSSYS, 0, mmIH_RB_CNTL);
48 
49 	ih_rb_cntl = REG_SET_FIELD(ih_rb_cntl, IH_RB_CNTL, RB_ENABLE, 1);
50 	ih_rb_cntl = REG_SET_FIELD(ih_rb_cntl, IH_RB_CNTL, ENABLE_INTR, 1);
51 	WREG32_SOC15(OSSSYS, 0, mmIH_RB_CNTL, ih_rb_cntl);
52 	adev->irq.ih.enabled = true;
53 }
54 
55 /**
56  * vega10_ih_disable_interrupts - Disable the interrupt ring buffer
57  *
58  * @adev: amdgpu_device pointer
59  *
60  * Disable the interrupt ring buffer (VEGA10).
61  */
62 static void vega10_ih_disable_interrupts(struct amdgpu_device *adev)
63 {
64 	u32 ih_rb_cntl = RREG32_SOC15(OSSSYS, 0, mmIH_RB_CNTL);
65 
66 	ih_rb_cntl = REG_SET_FIELD(ih_rb_cntl, IH_RB_CNTL, RB_ENABLE, 0);
67 	ih_rb_cntl = REG_SET_FIELD(ih_rb_cntl, IH_RB_CNTL, ENABLE_INTR, 0);
68 	WREG32_SOC15(OSSSYS, 0, mmIH_RB_CNTL, ih_rb_cntl);
69 	/* set rptr, wptr to 0 */
70 	WREG32_SOC15(OSSSYS, 0, mmIH_RB_RPTR, 0);
71 	WREG32_SOC15(OSSSYS, 0, mmIH_RB_WPTR, 0);
72 	adev->irq.ih.enabled = false;
73 	adev->irq.ih.rptr = 0;
74 }
75 
76 /**
77  * vega10_ih_irq_init - init and enable the interrupt ring
78  *
79  * @adev: amdgpu_device pointer
80  *
81  * Allocate a ring buffer for the interrupt controller,
82  * enable the RLC, disable interrupts, enable the IH
83  * ring buffer and enable it (VI).
84  * Called at device load and reume.
85  * Returns 0 for success, errors for failure.
86  */
87 static int vega10_ih_irq_init(struct amdgpu_device *adev)
88 {
89 	struct amdgpu_ih_ring *ih = &adev->irq.ih;
90 	int ret = 0;
91 	int rb_bufsz;
92 	u32 ih_rb_cntl, ih_doorbell_rtpr;
93 	u32 tmp;
94 
95 	/* disable irqs */
96 	vega10_ih_disable_interrupts(adev);
97 
98 	adev->nbio_funcs->ih_control(adev);
99 
100 	ih_rb_cntl = RREG32_SOC15(OSSSYS, 0, mmIH_RB_CNTL);
101 	/* Ring Buffer base. [39:8] of 40-bit address of the beginning of the ring buffer*/
102 	WREG32_SOC15(OSSSYS, 0, mmIH_RB_BASE, adev->irq.ih.gpu_addr >> 8);
103 	WREG32_SOC15(OSSSYS, 0, mmIH_RB_BASE_HI,
104 		     (adev->irq.ih.gpu_addr >> 40) & 0xff);
105 	ih_rb_cntl = REG_SET_FIELD(ih_rb_cntl, IH_RB_CNTL, MC_SPACE,
106 				   ih->use_bus_addr ? 1 : 4);
107 	rb_bufsz = order_base_2(adev->irq.ih.ring_size / 4);
108 	ih_rb_cntl = REG_SET_FIELD(ih_rb_cntl, IH_RB_CNTL, WPTR_OVERFLOW_CLEAR, 1);
109 	ih_rb_cntl = REG_SET_FIELD(ih_rb_cntl, IH_RB_CNTL, WPTR_OVERFLOW_ENABLE, 1);
110 	ih_rb_cntl = REG_SET_FIELD(ih_rb_cntl, IH_RB_CNTL, RB_SIZE, rb_bufsz);
111 	/* Ring Buffer write pointer writeback. If enabled, IH_RB_WPTR register value is written to memory */
112 	ih_rb_cntl = REG_SET_FIELD(ih_rb_cntl, IH_RB_CNTL, WPTR_WRITEBACK_ENABLE, 1);
113 	ih_rb_cntl = REG_SET_FIELD(ih_rb_cntl, IH_RB_CNTL, MC_SNOOP, 1);
114 	ih_rb_cntl = REG_SET_FIELD(ih_rb_cntl, IH_RB_CNTL, MC_RO, 0);
115 	ih_rb_cntl = REG_SET_FIELD(ih_rb_cntl, IH_RB_CNTL, MC_VMID, 0);
116 
117 	if (adev->irq.msi_enabled)
118 		ih_rb_cntl = REG_SET_FIELD(ih_rb_cntl, IH_RB_CNTL, RPTR_REARM, 1);
119 
120 	WREG32_SOC15(OSSSYS, 0, mmIH_RB_CNTL, ih_rb_cntl);
121 
122 	/* set the writeback address whether it's enabled or not */
123 	WREG32_SOC15(OSSSYS, 0, mmIH_RB_WPTR_ADDR_LO,
124 		     lower_32_bits(ih->wptr_addr));
125 	WREG32_SOC15(OSSSYS, 0, mmIH_RB_WPTR_ADDR_HI,
126 		     upper_32_bits(ih->wptr_addr) & 0xFFFF);
127 
128 	/* set rptr, wptr to 0 */
129 	WREG32_SOC15(OSSSYS, 0, mmIH_RB_RPTR, 0);
130 	WREG32_SOC15(OSSSYS, 0, mmIH_RB_WPTR, 0);
131 
132 	ih_doorbell_rtpr = RREG32_SOC15(OSSSYS, 0, mmIH_DOORBELL_RPTR);
133 	if (adev->irq.ih.use_doorbell) {
134 		ih_doorbell_rtpr = REG_SET_FIELD(ih_doorbell_rtpr, IH_DOORBELL_RPTR,
135 						 OFFSET, adev->irq.ih.doorbell_index);
136 		ih_doorbell_rtpr = REG_SET_FIELD(ih_doorbell_rtpr, IH_DOORBELL_RPTR,
137 						 ENABLE, 1);
138 	} else {
139 		ih_doorbell_rtpr = REG_SET_FIELD(ih_doorbell_rtpr, IH_DOORBELL_RPTR,
140 						 ENABLE, 0);
141 	}
142 	WREG32_SOC15(OSSSYS, 0, mmIH_DOORBELL_RPTR, ih_doorbell_rtpr);
143 	adev->nbio_funcs->ih_doorbell_range(adev, adev->irq.ih.use_doorbell,
144 					    adev->irq.ih.doorbell_index);
145 
146 	tmp = RREG32_SOC15(OSSSYS, 0, mmIH_STORM_CLIENT_LIST_CNTL);
147 	tmp = REG_SET_FIELD(tmp, IH_STORM_CLIENT_LIST_CNTL,
148 			    CLIENT18_IS_STORM_CLIENT, 1);
149 	WREG32_SOC15(OSSSYS, 0, mmIH_STORM_CLIENT_LIST_CNTL, tmp);
150 
151 	tmp = RREG32_SOC15(OSSSYS, 0, mmIH_INT_FLOOD_CNTL);
152 	tmp = REG_SET_FIELD(tmp, IH_INT_FLOOD_CNTL, FLOOD_CNTL_ENABLE, 1);
153 	WREG32_SOC15(OSSSYS, 0, mmIH_INT_FLOOD_CNTL, tmp);
154 
155 	pci_set_master(adev->pdev);
156 
157 	/* enable interrupts */
158 	vega10_ih_enable_interrupts(adev);
159 
160 	return ret;
161 }
162 
163 /**
164  * vega10_ih_irq_disable - disable interrupts
165  *
166  * @adev: amdgpu_device pointer
167  *
168  * Disable interrupts on the hw (VEGA10).
169  */
170 static void vega10_ih_irq_disable(struct amdgpu_device *adev)
171 {
172 	vega10_ih_disable_interrupts(adev);
173 
174 	/* Wait and acknowledge irq */
175 	mdelay(1);
176 }
177 
178 /**
179  * vega10_ih_get_wptr - get the IH ring buffer wptr
180  *
181  * @adev: amdgpu_device pointer
182  *
183  * Get the IH ring buffer wptr from either the register
184  * or the writeback memory buffer (VEGA10).  Also check for
185  * ring buffer overflow and deal with it.
186  * Returns the value of the wptr.
187  */
188 static u32 vega10_ih_get_wptr(struct amdgpu_device *adev,
189 			      struct amdgpu_ih_ring *ih)
190 {
191 	u32 wptr, tmp;
192 
193 	wptr = le32_to_cpu(*ih->wptr_cpu);
194 
195 	if (!REG_GET_FIELD(wptr, IH_RB_WPTR, RB_OVERFLOW))
196 		goto out;
197 
198 	/* Double check that the overflow wasn't already cleared. */
199 	wptr = RREG32_NO_KIQ(SOC15_REG_OFFSET(OSSSYS, 0, mmIH_RB_WPTR));
200 	if (!REG_GET_FIELD(wptr, IH_RB_WPTR, RB_OVERFLOW))
201 		goto out;
202 
203 	wptr = REG_SET_FIELD(wptr, IH_RB_WPTR, RB_OVERFLOW, 0);
204 
205 	/* When a ring buffer overflow happen start parsing interrupt
206 	 * from the last not overwritten vector (wptr + 32). Hopefully
207 	 * this should allow us to catchup.
208 	 */
209 	tmp = (wptr + 32) & ih->ptr_mask;
210 	dev_warn(adev->dev, "IH ring buffer overflow "
211 		 "(0x%08X, 0x%08X, 0x%08X)\n",
212 		 wptr, ih->rptr, tmp);
213 	ih->rptr = tmp;
214 
215 	tmp = RREG32_NO_KIQ(SOC15_REG_OFFSET(OSSSYS, 0, mmIH_RB_CNTL));
216 	tmp = REG_SET_FIELD(tmp, IH_RB_CNTL, WPTR_OVERFLOW_CLEAR, 1);
217 	WREG32_NO_KIQ(SOC15_REG_OFFSET(OSSSYS, 0, mmIH_RB_CNTL), tmp);
218 
219 out:
220 	return (wptr & ih->ptr_mask);
221 }
222 
223 /**
224  * vega10_ih_decode_iv - decode an interrupt vector
225  *
226  * @adev: amdgpu_device pointer
227  *
228  * Decodes the interrupt vector at the current rptr
229  * position and also advance the position.
230  */
231 static void vega10_ih_decode_iv(struct amdgpu_device *adev,
232 				struct amdgpu_ih_ring *ih,
233 				struct amdgpu_iv_entry *entry)
234 {
235 	/* wptr/rptr are in bytes! */
236 	u32 ring_index = ih->rptr >> 2;
237 	uint32_t dw[8];
238 
239 	dw[0] = le32_to_cpu(ih->ring[ring_index + 0]);
240 	dw[1] = le32_to_cpu(ih->ring[ring_index + 1]);
241 	dw[2] = le32_to_cpu(ih->ring[ring_index + 2]);
242 	dw[3] = le32_to_cpu(ih->ring[ring_index + 3]);
243 	dw[4] = le32_to_cpu(ih->ring[ring_index + 4]);
244 	dw[5] = le32_to_cpu(ih->ring[ring_index + 5]);
245 	dw[6] = le32_to_cpu(ih->ring[ring_index + 6]);
246 	dw[7] = le32_to_cpu(ih->ring[ring_index + 7]);
247 
248 	entry->client_id = dw[0] & 0xff;
249 	entry->src_id = (dw[0] >> 8) & 0xff;
250 	entry->ring_id = (dw[0] >> 16) & 0xff;
251 	entry->vmid = (dw[0] >> 24) & 0xf;
252 	entry->vmid_src = (dw[0] >> 31);
253 	entry->timestamp = dw[1] | ((u64)(dw[2] & 0xffff) << 32);
254 	entry->timestamp_src = dw[2] >> 31;
255 	entry->pasid = dw[3] & 0xffff;
256 	entry->pasid_src = dw[3] >> 31;
257 	entry->src_data[0] = dw[4];
258 	entry->src_data[1] = dw[5];
259 	entry->src_data[2] = dw[6];
260 	entry->src_data[3] = dw[7];
261 
262 	/* wptr/rptr are in bytes! */
263 	ih->rptr += 32;
264 }
265 
266 /**
267  * vega10_ih_set_rptr - set the IH ring buffer rptr
268  *
269  * @adev: amdgpu_device pointer
270  *
271  * Set the IH ring buffer rptr.
272  */
273 static void vega10_ih_set_rptr(struct amdgpu_device *adev,
274 			       struct amdgpu_ih_ring *ih)
275 {
276 	if (ih->use_doorbell) {
277 		/* XXX check if swapping is necessary on BE */
278 		*ih->rptr_cpu = ih->rptr;
279 		WDOORBELL32(ih->doorbell_index, ih->rptr);
280 	} else {
281 		WREG32_SOC15(OSSSYS, 0, mmIH_RB_RPTR, ih->rptr);
282 	}
283 }
284 
285 static int vega10_ih_early_init(void *handle)
286 {
287 	struct amdgpu_device *adev = (struct amdgpu_device *)handle;
288 
289 	vega10_ih_set_interrupt_funcs(adev);
290 	return 0;
291 }
292 
293 static int vega10_ih_sw_init(void *handle)
294 {
295 	int r;
296 	struct amdgpu_device *adev = (struct amdgpu_device *)handle;
297 
298 	r = amdgpu_ih_ring_init(adev, &adev->irq.ih, 256 * 1024, true);
299 	if (r)
300 		return r;
301 
302 	adev->irq.ih.use_doorbell = true;
303 	adev->irq.ih.doorbell_index = adev->doorbell_index.ih << 1;
304 
305 	r = amdgpu_irq_init(adev);
306 
307 	return r;
308 }
309 
310 static int vega10_ih_sw_fini(void *handle)
311 {
312 	struct amdgpu_device *adev = (struct amdgpu_device *)handle;
313 
314 	amdgpu_irq_fini(adev);
315 	amdgpu_ih_ring_fini(adev, &adev->irq.ih);
316 
317 	return 0;
318 }
319 
320 static int vega10_ih_hw_init(void *handle)
321 {
322 	int r;
323 	struct amdgpu_device *adev = (struct amdgpu_device *)handle;
324 
325 	r = vega10_ih_irq_init(adev);
326 	if (r)
327 		return r;
328 
329 	return 0;
330 }
331 
332 static int vega10_ih_hw_fini(void *handle)
333 {
334 	struct amdgpu_device *adev = (struct amdgpu_device *)handle;
335 
336 	vega10_ih_irq_disable(adev);
337 
338 	return 0;
339 }
340 
341 static int vega10_ih_suspend(void *handle)
342 {
343 	struct amdgpu_device *adev = (struct amdgpu_device *)handle;
344 
345 	return vega10_ih_hw_fini(adev);
346 }
347 
348 static int vega10_ih_resume(void *handle)
349 {
350 	struct amdgpu_device *adev = (struct amdgpu_device *)handle;
351 
352 	return vega10_ih_hw_init(adev);
353 }
354 
355 static bool vega10_ih_is_idle(void *handle)
356 {
357 	/* todo */
358 	return true;
359 }
360 
361 static int vega10_ih_wait_for_idle(void *handle)
362 {
363 	/* todo */
364 	return -ETIMEDOUT;
365 }
366 
367 static int vega10_ih_soft_reset(void *handle)
368 {
369 	/* todo */
370 
371 	return 0;
372 }
373 
374 static int vega10_ih_set_clockgating_state(void *handle,
375 					  enum amd_clockgating_state state)
376 {
377 	return 0;
378 }
379 
380 static int vega10_ih_set_powergating_state(void *handle,
381 					  enum amd_powergating_state state)
382 {
383 	return 0;
384 }
385 
386 const struct amd_ip_funcs vega10_ih_ip_funcs = {
387 	.name = "vega10_ih",
388 	.early_init = vega10_ih_early_init,
389 	.late_init = NULL,
390 	.sw_init = vega10_ih_sw_init,
391 	.sw_fini = vega10_ih_sw_fini,
392 	.hw_init = vega10_ih_hw_init,
393 	.hw_fini = vega10_ih_hw_fini,
394 	.suspend = vega10_ih_suspend,
395 	.resume = vega10_ih_resume,
396 	.is_idle = vega10_ih_is_idle,
397 	.wait_for_idle = vega10_ih_wait_for_idle,
398 	.soft_reset = vega10_ih_soft_reset,
399 	.set_clockgating_state = vega10_ih_set_clockgating_state,
400 	.set_powergating_state = vega10_ih_set_powergating_state,
401 };
402 
403 static const struct amdgpu_ih_funcs vega10_ih_funcs = {
404 	.get_wptr = vega10_ih_get_wptr,
405 	.decode_iv = vega10_ih_decode_iv,
406 	.set_rptr = vega10_ih_set_rptr
407 };
408 
409 static void vega10_ih_set_interrupt_funcs(struct amdgpu_device *adev)
410 {
411 	adev->irq.ih_funcs = &vega10_ih_funcs;
412 }
413 
414 const struct amdgpu_ip_block_version vega10_ih_ip_block =
415 {
416 	.type = AMD_IP_BLOCK_TYPE_IH,
417 	.major = 4,
418 	.minor = 0,
419 	.rev = 0,
420 	.funcs = &vega10_ih_ip_funcs,
421 };
422