blob: 3930fcc3e3444923a248dd7b2c8e66d5988cc772 [file] [log] [blame]
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001/*
2 * Copyright 2014 Advanced Micro Devices, Inc.
3 * Copyright 2008 Red Hat Inc.
4 * Copyright 2009 Jerome Glisse.
5 *
6 * Permission is hereby granted, free of charge, to any person obtaining a
7 * copy of this software and associated documentation files (the "Software"),
8 * to deal in the Software without restriction, including without limitation
9 * the rights to use, copy, modify, merge, publish, distribute, sublicense,
10 * and/or sell copies of the Software, and to permit persons to whom the
11 * Software is furnished to do so, subject to the following conditions:
12 *
13 * The above copyright notice and this permission notice shall be included in
14 * all copies or substantial portions of the Software.
15 *
16 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
17 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
18 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
19 * THE COPYRIGHT HOLDER(S) OR AUTHOR(S) BE LIABLE FOR ANY CLAIM, DAMAGES OR
20 * OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE,
21 * ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
22 * OTHER DEALINGS IN THE SOFTWARE.
23 *
24 */
25#include <drm/drmP.h>
26#include "amdgpu.h"
Baoyou Xie356aee32016-10-22 16:48:25 +080027#include "amdgpu_gfx.h"
Alex Deucherd38ceaf2015-04-20 16:55:21 -040028
29/*
30 * GPU scratch registers helpers function.
31 */
32/**
33 * amdgpu_gfx_scratch_get - Allocate a scratch register
34 *
35 * @adev: amdgpu_device pointer
36 * @reg: scratch register mmio offset
37 *
38 * Allocate a CP scratch register for use by the driver (all asics).
39 * Returns 0 on success or -EINVAL on failure.
40 */
41int amdgpu_gfx_scratch_get(struct amdgpu_device *adev, uint32_t *reg)
42{
43 int i;
44
Nils Wallménius50261152017-01-16 21:56:48 +010045 i = ffs(adev->gfx.scratch.free_mask);
46 if (i != 0 && i <= adev->gfx.scratch.num_reg) {
47 i--;
48 adev->gfx.scratch.free_mask &= ~(1u << i);
49 *reg = adev->gfx.scratch.reg_base + i;
50 return 0;
Alex Deucherd38ceaf2015-04-20 16:55:21 -040051 }
52 return -EINVAL;
53}
54
55/**
56 * amdgpu_gfx_scratch_free - Free a scratch register
57 *
58 * @adev: amdgpu_device pointer
59 * @reg: scratch register mmio offset
60 *
61 * Free a CP scratch register allocated for use by the driver (all asics)
62 */
63void amdgpu_gfx_scratch_free(struct amdgpu_device *adev, uint32_t reg)
64{
Nils Wallménius50261152017-01-16 21:56:48 +010065 adev->gfx.scratch.free_mask |= 1u << (reg - adev->gfx.scratch.reg_base);
Alex Deucherd38ceaf2015-04-20 16:55:21 -040066}
Nicolai Hähnle6f8941a2016-06-17 19:31:33 +020067
68/**
69 * amdgpu_gfx_parse_disable_cu - Parse the disable_cu module parameter
70 *
71 * @mask: array in which the per-shader array disable masks will be stored
72 * @max_se: number of SEs
73 * @max_sh: number of SHs
74 *
75 * The bitmask of CUs to be disabled in the shader array determined by se and
76 * sh is stored in mask[se * max_sh + sh].
77 */
78void amdgpu_gfx_parse_disable_cu(unsigned *mask, unsigned max_se, unsigned max_sh)
79{
80 unsigned se, sh, cu;
81 const char *p;
82
83 memset(mask, 0, sizeof(*mask) * max_se * max_sh);
84
85 if (!amdgpu_disable_cu || !*amdgpu_disable_cu)
86 return;
87
88 p = amdgpu_disable_cu;
89 for (;;) {
90 char *next;
91 int ret = sscanf(p, "%u.%u.%u", &se, &sh, &cu);
92 if (ret < 3) {
93 DRM_ERROR("amdgpu: could not parse disable_cu\n");
94 return;
95 }
96
97 if (se < max_se && sh < max_sh && cu < 16) {
98 DRM_INFO("amdgpu: disabling CU %u.%u.%u\n", se, sh, cu);
99 mask[se * max_sh + sh] |= 1u << cu;
100 } else {
101 DRM_ERROR("amdgpu: disable_cu %u.%u.%u is out of range\n",
102 se, sh, cu);
103 }
104
105 next = strchr(p, ',');
106 if (!next)
107 break;
108 p = next + 1;
109 }
110}
Alex Deucher41f6a992017-06-07 11:05:26 -0400111
Andres Rodriguez0f7607d2017-09-26 12:22:45 -0400112static bool amdgpu_gfx_is_multipipe_capable(struct amdgpu_device *adev)
113{
114 /* FIXME: spreading the queues across pipes causes perf regressions
115 * on POLARIS11 compute workloads */
116 if (adev->asic_type == CHIP_POLARIS11)
117 return false;
118
119 return adev->gfx.mec.num_mec > 1;
120}
121
Alex Deucher41f6a992017-06-07 11:05:26 -0400122void amdgpu_gfx_compute_queue_acquire(struct amdgpu_device *adev)
123{
124 int i, queue, pipe, mec;
Andres Rodriguez0f7607d2017-09-26 12:22:45 -0400125 bool multipipe_policy = amdgpu_gfx_is_multipipe_capable(adev);
Alex Deucher41f6a992017-06-07 11:05:26 -0400126
127 /* policy for amdgpu compute queue ownership */
128 for (i = 0; i < AMDGPU_MAX_COMPUTE_QUEUES; ++i) {
129 queue = i % adev->gfx.mec.num_queue_per_pipe;
130 pipe = (i / adev->gfx.mec.num_queue_per_pipe)
131 % adev->gfx.mec.num_pipe_per_mec;
132 mec = (i / adev->gfx.mec.num_queue_per_pipe)
133 / adev->gfx.mec.num_pipe_per_mec;
134
135 /* we've run out of HW */
136 if (mec >= adev->gfx.mec.num_mec)
137 break;
138
Andres Rodriguez0f7607d2017-09-26 12:22:45 -0400139 if (multipipe_policy) {
Alex Deucher41f6a992017-06-07 11:05:26 -0400140 /* policy: amdgpu owns the first two queues of the first MEC */
141 if (mec == 0 && queue < 2)
142 set_bit(i, adev->gfx.mec.queue_bitmap);
143 } else {
144 /* policy: amdgpu owns all queues in the first pipe */
145 if (mec == 0 && pipe == 0)
146 set_bit(i, adev->gfx.mec.queue_bitmap);
147 }
148 }
149
150 /* update the number of active compute rings */
151 adev->gfx.num_compute_rings =
152 bitmap_weight(adev->gfx.mec.queue_bitmap, AMDGPU_MAX_COMPUTE_QUEUES);
153
154 /* If you hit this case and edited the policy, you probably just
155 * need to increase AMDGPU_MAX_COMPUTE_RINGS */
156 if (WARN_ON(adev->gfx.num_compute_rings > AMDGPU_MAX_COMPUTE_RINGS))
157 adev->gfx.num_compute_rings = AMDGPU_MAX_COMPUTE_RINGS;
158}
Alex Deucher71c37502017-06-07 13:31:32 -0400159
160static int amdgpu_gfx_kiq_acquire(struct amdgpu_device *adev,
161 struct amdgpu_ring *ring)
162{
163 int queue_bit;
164 int mec, pipe, queue;
165
166 queue_bit = adev->gfx.mec.num_mec
167 * adev->gfx.mec.num_pipe_per_mec
168 * adev->gfx.mec.num_queue_per_pipe;
169
170 while (queue_bit-- >= 0) {
171 if (test_bit(queue_bit, adev->gfx.mec.queue_bitmap))
172 continue;
173
174 amdgpu_gfx_bit_to_queue(adev, queue_bit, &mec, &pipe, &queue);
175
176 /* Using pipes 2/3 from MEC 2 seems cause problems */
177 if (mec == 1 && pipe > 1)
178 continue;
179
180 ring->me = mec + 1;
181 ring->pipe = pipe;
182 ring->queue = queue;
183
184 return 0;
185 }
186
187 dev_err(adev->dev, "Failed to find a queue for KIQ\n");
188 return -EINVAL;
189}
190
191int amdgpu_gfx_kiq_init_ring(struct amdgpu_device *adev,
192 struct amdgpu_ring *ring,
193 struct amdgpu_irq_src *irq)
194{
195 struct amdgpu_kiq *kiq = &adev->gfx.kiq;
196 int r = 0;
197
198 mutex_init(&kiq->ring_mutex);
199
200 r = amdgpu_wb_get(adev, &adev->virt.reg_val_offs);
201 if (r)
202 return r;
203
204 ring->adev = NULL;
205 ring->ring_obj = NULL;
206 ring->use_doorbell = true;
207 ring->doorbell_index = AMDGPU_DOORBELL_KIQ;
208
209 r = amdgpu_gfx_kiq_acquire(adev, ring);
210 if (r)
211 return r;
212
213 ring->eop_gpu_addr = kiq->eop_gpu_addr;
Tom St Denis2119d0d2017-06-12 09:05:04 -0400214 sprintf(ring->name, "kiq_%d.%d.%d", ring->me, ring->pipe, ring->queue);
Alex Deucher71c37502017-06-07 13:31:32 -0400215 r = amdgpu_ring_init(adev, ring, 1024,
216 irq, AMDGPU_CP_KIQ_IRQ_DRIVER0);
217 if (r)
218 dev_warn(adev->dev, "(%d) failed to init kiq ring\n", r);
219
220 return r;
221}
222
223void amdgpu_gfx_kiq_free_ring(struct amdgpu_ring *ring,
224 struct amdgpu_irq_src *irq)
225{
226 amdgpu_wb_free(ring->adev, ring->adev->virt.reg_val_offs);
227 amdgpu_ring_fini(ring);
228}
229
230void amdgpu_gfx_kiq_fini(struct amdgpu_device *adev)
231{
232 struct amdgpu_kiq *kiq = &adev->gfx.kiq;
233
234 amdgpu_bo_free_kernel(&kiq->eop_obj, &kiq->eop_gpu_addr, NULL);
235}
236
237int amdgpu_gfx_kiq_init(struct amdgpu_device *adev,
238 unsigned hpd_size)
239{
240 int r;
241 u32 *hpd;
242 struct amdgpu_kiq *kiq = &adev->gfx.kiq;
243
244 r = amdgpu_bo_create_kernel(adev, hpd_size, PAGE_SIZE,
245 AMDGPU_GEM_DOMAIN_GTT, &kiq->eop_obj,
246 &kiq->eop_gpu_addr, (void **)&hpd);
247 if (r) {
248 dev_warn(adev->dev, "failed to create KIQ bo (%d).\n", r);
249 return r;
250 }
251
252 memset(hpd, 0, hpd_size);
253
254 r = amdgpu_bo_reserve(kiq->eop_obj, true);
255 if (unlikely(r != 0))
256 dev_warn(adev->dev, "(%d) reserve kiq eop bo failed\n", r);
257 amdgpu_bo_kunmap(kiq->eop_obj);
258 amdgpu_bo_unreserve(kiq->eop_obj);
259
260 return 0;
261}
Alex Deucherb9683c22017-06-07 15:27:52 -0400262
263/* create MQD for each compute queue */
264int amdgpu_gfx_compute_mqd_sw_init(struct amdgpu_device *adev,
265 unsigned mqd_size)
266{
267 struct amdgpu_ring *ring = NULL;
268 int r, i;
269
270 /* create MQD for KIQ */
271 ring = &adev->gfx.kiq.ring;
272 if (!ring->mqd_obj) {
Monk Liubeb84102017-09-21 15:10:06 +0800273 /* originaly the KIQ MQD is put in GTT domain, but for SRIOV VRAM domain is a must
274 * otherwise hypervisor trigger SAVE_VF fail after driver unloaded which mean MQD
275 * deallocated and gart_unbind, to strict diverage we decide to use VRAM domain for
276 * KIQ MQD no matter SRIOV or Bare-metal
277 */
Alex Deucherb9683c22017-06-07 15:27:52 -0400278 r = amdgpu_bo_create_kernel(adev, mqd_size, PAGE_SIZE,
Monk Liubeb84102017-09-21 15:10:06 +0800279 AMDGPU_GEM_DOMAIN_VRAM, &ring->mqd_obj,
Alex Deucherb9683c22017-06-07 15:27:52 -0400280 &ring->mqd_gpu_addr, &ring->mqd_ptr);
281 if (r) {
282 dev_warn(adev->dev, "failed to create ring mqd ob (%d)", r);
283 return r;
284 }
285
286 /* prepare MQD backup */
287 adev->gfx.mec.mqd_backup[AMDGPU_MAX_COMPUTE_RINGS] = kmalloc(mqd_size, GFP_KERNEL);
288 if (!adev->gfx.mec.mqd_backup[AMDGPU_MAX_COMPUTE_RINGS])
289 dev_warn(adev->dev, "no memory to create MQD backup for ring %s\n", ring->name);
290 }
291
292 /* create MQD for each KCQ */
293 for (i = 0; i < adev->gfx.num_compute_rings; i++) {
294 ring = &adev->gfx.compute_ring[i];
295 if (!ring->mqd_obj) {
296 r = amdgpu_bo_create_kernel(adev, mqd_size, PAGE_SIZE,
297 AMDGPU_GEM_DOMAIN_GTT, &ring->mqd_obj,
298 &ring->mqd_gpu_addr, &ring->mqd_ptr);
299 if (r) {
300 dev_warn(adev->dev, "failed to create ring mqd ob (%d)", r);
301 return r;
302 }
303
304 /* prepare MQD backup */
305 adev->gfx.mec.mqd_backup[i] = kmalloc(mqd_size, GFP_KERNEL);
306 if (!adev->gfx.mec.mqd_backup[i])
307 dev_warn(adev->dev, "no memory to create MQD backup for ring %s\n", ring->name);
308 }
309 }
310
311 return 0;
312}
313
314void amdgpu_gfx_compute_mqd_sw_fini(struct amdgpu_device *adev)
315{
316 struct amdgpu_ring *ring = NULL;
317 int i;
318
319 for (i = 0; i < adev->gfx.num_compute_rings; i++) {
320 ring = &adev->gfx.compute_ring[i];
321 kfree(adev->gfx.mec.mqd_backup[i]);
322 amdgpu_bo_free_kernel(&ring->mqd_obj,
323 &ring->mqd_gpu_addr,
324 &ring->mqd_ptr);
325 }
326
327 ring = &adev->gfx.kiq.ring;
328 kfree(adev->gfx.mec.mqd_backup[AMDGPU_MAX_COMPUTE_RINGS]);
329 amdgpu_bo_free_kernel(&ring->mqd_obj,
330 &ring->mqd_gpu_addr,
331 &ring->mqd_ptr);
332}