dt-bindings: mtd: ingenic: Use standard ecc-engine property
[linux/fpc-iii.git] / drivers / gpu / drm / amd / amdgpu / si_ih.c
blob8c50c9cab455f9bdeb15d12898c8579c15bf3350
1 /*
2 * Copyright 2015 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.
23 #include <drm/drmP.h>
24 #include "amdgpu.h"
25 #include "amdgpu_ih.h"
26 #include "sid.h"
27 #include "si_ih.h"
29 static void si_ih_set_interrupt_funcs(struct amdgpu_device *adev);
31 static void si_ih_enable_interrupts(struct amdgpu_device *adev)
33 u32 ih_cntl = RREG32(IH_CNTL);
34 u32 ih_rb_cntl = RREG32(IH_RB_CNTL);
36 ih_cntl |= ENABLE_INTR;
37 ih_rb_cntl |= IH_RB_ENABLE;
38 WREG32(IH_CNTL, ih_cntl);
39 WREG32(IH_RB_CNTL, ih_rb_cntl);
40 adev->irq.ih.enabled = true;
43 static void si_ih_disable_interrupts(struct amdgpu_device *adev)
45 u32 ih_rb_cntl = RREG32(IH_RB_CNTL);
46 u32 ih_cntl = RREG32(IH_CNTL);
48 ih_rb_cntl &= ~IH_RB_ENABLE;
49 ih_cntl &= ~ENABLE_INTR;
50 WREG32(IH_RB_CNTL, ih_rb_cntl);
51 WREG32(IH_CNTL, ih_cntl);
52 WREG32(IH_RB_RPTR, 0);
53 WREG32(IH_RB_WPTR, 0);
54 adev->irq.ih.enabled = false;
55 adev->irq.ih.rptr = 0;
58 static int si_ih_irq_init(struct amdgpu_device *adev)
60 struct amdgpu_ih_ring *ih = &adev->irq.ih;
61 int rb_bufsz;
62 u32 interrupt_cntl, ih_cntl, ih_rb_cntl;
64 si_ih_disable_interrupts(adev);
65 WREG32(INTERRUPT_CNTL2, adev->irq.ih.gpu_addr >> 8);
66 interrupt_cntl = RREG32(INTERRUPT_CNTL);
67 interrupt_cntl &= ~IH_DUMMY_RD_OVERRIDE;
68 interrupt_cntl &= ~IH_REQ_NONSNOOP_EN;
69 WREG32(INTERRUPT_CNTL, interrupt_cntl);
71 WREG32(IH_RB_BASE, adev->irq.ih.gpu_addr >> 8);
72 rb_bufsz = order_base_2(adev->irq.ih.ring_size / 4);
74 ih_rb_cntl = IH_WPTR_OVERFLOW_ENABLE |
75 IH_WPTR_OVERFLOW_CLEAR |
76 (rb_bufsz << 1) |
77 IH_WPTR_WRITEBACK_ENABLE;
79 WREG32(IH_RB_WPTR_ADDR_LO, lower_32_bits(ih->wptr_addr));
80 WREG32(IH_RB_WPTR_ADDR_HI, upper_32_bits(ih->wptr_addr) & 0xFF);
81 WREG32(IH_RB_CNTL, ih_rb_cntl);
82 WREG32(IH_RB_RPTR, 0);
83 WREG32(IH_RB_WPTR, 0);
85 ih_cntl = MC_WRREQ_CREDIT(0x10) | MC_WR_CLEAN_CNT(0x10) | MC_VMID(0);
86 if (adev->irq.msi_enabled)
87 ih_cntl |= RPTR_REARM;
88 WREG32(IH_CNTL, ih_cntl);
90 pci_set_master(adev->pdev);
91 si_ih_enable_interrupts(adev);
93 return 0;
96 static void si_ih_irq_disable(struct amdgpu_device *adev)
98 si_ih_disable_interrupts(adev);
99 mdelay(1);
102 static u32 si_ih_get_wptr(struct amdgpu_device *adev,
103 struct amdgpu_ih_ring *ih)
105 u32 wptr, tmp;
107 wptr = le32_to_cpu(*ih->wptr_cpu);
109 if (wptr & IH_RB_WPTR__RB_OVERFLOW_MASK) {
110 wptr &= ~IH_RB_WPTR__RB_OVERFLOW_MASK;
111 dev_warn(adev->dev, "IH ring buffer overflow (0x%08X, 0x%08X, 0x%08X)\n",
112 wptr, ih->rptr, (wptr + 16) & ih->ptr_mask);
113 ih->rptr = (wptr + 16) & ih->ptr_mask;
114 tmp = RREG32(IH_RB_CNTL);
115 tmp |= IH_RB_CNTL__WPTR_OVERFLOW_CLEAR_MASK;
116 WREG32(IH_RB_CNTL, tmp);
118 return (wptr & ih->ptr_mask);
121 static void si_ih_decode_iv(struct amdgpu_device *adev,
122 struct amdgpu_ih_ring *ih,
123 struct amdgpu_iv_entry *entry)
125 u32 ring_index = ih->rptr >> 2;
126 uint32_t dw[4];
128 dw[0] = le32_to_cpu(ih->ring[ring_index + 0]);
129 dw[1] = le32_to_cpu(ih->ring[ring_index + 1]);
130 dw[2] = le32_to_cpu(ih->ring[ring_index + 2]);
131 dw[3] = le32_to_cpu(ih->ring[ring_index + 3]);
133 entry->client_id = AMDGPU_IRQ_CLIENTID_LEGACY;
134 entry->src_id = dw[0] & 0xff;
135 entry->src_data[0] = dw[1] & 0xfffffff;
136 entry->ring_id = dw[2] & 0xff;
137 entry->vmid = (dw[2] >> 8) & 0xff;
139 ih->rptr += 16;
142 static void si_ih_set_rptr(struct amdgpu_device *adev,
143 struct amdgpu_ih_ring *ih)
145 WREG32(IH_RB_RPTR, ih->rptr);
148 static int si_ih_early_init(void *handle)
150 struct amdgpu_device *adev = (struct amdgpu_device *)handle;
152 si_ih_set_interrupt_funcs(adev);
154 return 0;
157 static int si_ih_sw_init(void *handle)
159 int r;
160 struct amdgpu_device *adev = (struct amdgpu_device *)handle;
162 r = amdgpu_ih_ring_init(adev, &adev->irq.ih, 64 * 1024, false);
163 if (r)
164 return r;
166 return amdgpu_irq_init(adev);
169 static int si_ih_sw_fini(void *handle)
171 struct amdgpu_device *adev = (struct amdgpu_device *)handle;
173 amdgpu_irq_fini(adev);
174 amdgpu_ih_ring_fini(adev, &adev->irq.ih);
176 return 0;
179 static int si_ih_hw_init(void *handle)
181 struct amdgpu_device *adev = (struct amdgpu_device *)handle;
183 return si_ih_irq_init(adev);
186 static int si_ih_hw_fini(void *handle)
188 struct amdgpu_device *adev = (struct amdgpu_device *)handle;
190 si_ih_irq_disable(adev);
192 return 0;
195 static int si_ih_suspend(void *handle)
197 struct amdgpu_device *adev = (struct amdgpu_device *)handle;
199 return si_ih_hw_fini(adev);
202 static int si_ih_resume(void *handle)
204 struct amdgpu_device *adev = (struct amdgpu_device *)handle;
206 return si_ih_hw_init(adev);
209 static bool si_ih_is_idle(void *handle)
211 struct amdgpu_device *adev = (struct amdgpu_device *)handle;
212 u32 tmp = RREG32(SRBM_STATUS);
214 if (tmp & SRBM_STATUS__IH_BUSY_MASK)
215 return false;
217 return true;
220 static int si_ih_wait_for_idle(void *handle)
222 unsigned i;
223 struct amdgpu_device *adev = (struct amdgpu_device *)handle;
225 for (i = 0; i < adev->usec_timeout; i++) {
226 if (si_ih_is_idle(handle))
227 return 0;
228 udelay(1);
230 return -ETIMEDOUT;
233 static int si_ih_soft_reset(void *handle)
235 struct amdgpu_device *adev = (struct amdgpu_device *)handle;
237 u32 srbm_soft_reset = 0;
238 u32 tmp = RREG32(SRBM_STATUS);
240 if (tmp & SRBM_STATUS__IH_BUSY_MASK)
241 srbm_soft_reset |= SRBM_SOFT_RESET__SOFT_RESET_IH_MASK;
243 if (srbm_soft_reset) {
244 tmp = RREG32(SRBM_SOFT_RESET);
245 tmp |= srbm_soft_reset;
246 dev_info(adev->dev, "SRBM_SOFT_RESET=0x%08X\n", tmp);
247 WREG32(SRBM_SOFT_RESET, tmp);
248 tmp = RREG32(SRBM_SOFT_RESET);
250 udelay(50);
252 tmp &= ~srbm_soft_reset;
253 WREG32(SRBM_SOFT_RESET, tmp);
254 tmp = RREG32(SRBM_SOFT_RESET);
256 udelay(50);
259 return 0;
262 static int si_ih_set_clockgating_state(void *handle,
263 enum amd_clockgating_state state)
265 return 0;
268 static int si_ih_set_powergating_state(void *handle,
269 enum amd_powergating_state state)
271 return 0;
274 static const struct amd_ip_funcs si_ih_ip_funcs = {
275 .name = "si_ih",
276 .early_init = si_ih_early_init,
277 .late_init = NULL,
278 .sw_init = si_ih_sw_init,
279 .sw_fini = si_ih_sw_fini,
280 .hw_init = si_ih_hw_init,
281 .hw_fini = si_ih_hw_fini,
282 .suspend = si_ih_suspend,
283 .resume = si_ih_resume,
284 .is_idle = si_ih_is_idle,
285 .wait_for_idle = si_ih_wait_for_idle,
286 .soft_reset = si_ih_soft_reset,
287 .set_clockgating_state = si_ih_set_clockgating_state,
288 .set_powergating_state = si_ih_set_powergating_state,
291 static const struct amdgpu_ih_funcs si_ih_funcs = {
292 .get_wptr = si_ih_get_wptr,
293 .decode_iv = si_ih_decode_iv,
294 .set_rptr = si_ih_set_rptr
297 static void si_ih_set_interrupt_funcs(struct amdgpu_device *adev)
299 adev->irq.ih_funcs = &si_ih_funcs;
302 const struct amdgpu_ip_block_version si_ih_ip_block =
304 .type = AMD_IP_BLOCK_TYPE_IH,
305 .major = 1,
306 .minor = 0,
307 .rev = 0,
308 .funcs = &si_ih_ip_funcs,