Jerome Glisse | 771fe6b | 2009-06-05 14:42:42 +0200 | [diff] [blame] | 1 | /* |
| 2 | * Copyright 2008 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 | * Authors: Dave Airlie |
| 25 | * Alex Deucher |
| 26 | * Jerome Glisse |
Jerome Glisse | c507f7e | 2012-05-09 15:34:58 +0200 | [diff] [blame] | 27 | * Christian König |
Jerome Glisse | 771fe6b | 2009-06-05 14:42:42 +0200 | [diff] [blame] | 28 | */ |
| 29 | #include <linux/seq_file.h> |
Tejun Heo | 5a0e3ad | 2010-03-24 17:04:11 +0900 | [diff] [blame] | 30 | #include <linux/slab.h> |
David Howells | 760285e | 2012-10-02 18:01:07 +0100 | [diff] [blame] | 31 | #include <drm/drmP.h> |
| 32 | #include <drm/radeon_drm.h> |
Jerome Glisse | 771fe6b | 2009-06-05 14:42:42 +0200 | [diff] [blame] | 33 | #include "radeon_reg.h" |
| 34 | #include "radeon.h" |
| 35 | #include "atom.h" |
| 36 | |
Jerome Glisse | c507f7e | 2012-05-09 15:34:58 +0200 | [diff] [blame] | 37 | /* |
Alex Deucher | 7592328 | 2012-07-17 14:02:38 -0400 | [diff] [blame] | 38 | * IB |
| 39 | * IBs (Indirect Buffers) and areas of GPU accessible memory where |
| 40 | * commands are stored. You can put a pointer to the IB in the |
| 41 | * command ring and the hw will fetch the commands from the IB |
| 42 | * and execute them. Generally userspace acceleration drivers |
| 43 | * produce command buffers which are send to the kernel and |
| 44 | * put in IBs for execution by the requested ring. |
Jerome Glisse | c507f7e | 2012-05-09 15:34:58 +0200 | [diff] [blame] | 45 | */ |
Lauri Kasanen | 1109ca0 | 2012-08-31 13:43:50 -0400 | [diff] [blame] | 46 | static int radeon_debugfs_sa_init(struct radeon_device *rdev); |
Jerome Glisse | 771fe6b | 2009-06-05 14:42:42 +0200 | [diff] [blame] | 47 | |
Alex Deucher | 7592328 | 2012-07-17 14:02:38 -0400 | [diff] [blame] | 48 | /** |
| 49 | * radeon_ib_get - request an IB (Indirect Buffer) |
| 50 | * |
| 51 | * @rdev: radeon_device pointer |
| 52 | * @ring: ring index the IB is associated with |
| 53 | * @ib: IB object returned |
| 54 | * @size: requested IB size |
| 55 | * |
| 56 | * Request an IB (all asics). IBs are allocated using the |
| 57 | * suballocator. |
| 58 | * Returns 0 on success, error on failure. |
| 59 | */ |
Jerome Glisse | 69e130a | 2011-12-21 12:13:46 -0500 | [diff] [blame] | 60 | int radeon_ib_get(struct radeon_device *rdev, int ring, |
Christian König | 4bf3dd9 | 2012-08-06 18:57:44 +0200 | [diff] [blame] | 61 | struct radeon_ib *ib, struct radeon_vm *vm, |
| 62 | unsigned size) |
Jerome Glisse | 771fe6b | 2009-06-05 14:42:42 +0200 | [diff] [blame] | 63 | { |
Christian König | 1654b81 | 2013-11-12 12:58:05 +0100 | [diff] [blame] | 64 | int r; |
Jerome Glisse | 771fe6b | 2009-06-05 14:42:42 +0200 | [diff] [blame] | 65 | |
Jerome Glisse | f2e3922 | 2012-05-09 15:35:02 +0200 | [diff] [blame] | 66 | r = radeon_sa_bo_new(rdev, &rdev->ring_tmp_bo, &ib->sa_bo, size, 256, true); |
Jerome Glisse | 771fe6b | 2009-06-05 14:42:42 +0200 | [diff] [blame] | 67 | if (r) { |
Jerome Glisse | c507f7e | 2012-05-09 15:34:58 +0200 | [diff] [blame] | 68 | dev_err(rdev->dev, "failed to get a new IB (%d)\n", r); |
Jerome Glisse | c507f7e | 2012-05-09 15:34:58 +0200 | [diff] [blame] | 69 | return r; |
| 70 | } |
Jerome Glisse | b15ba51 | 2011-11-15 11:48:34 -0500 | [diff] [blame] | 71 | |
Christian König | 220907d | 2012-05-10 16:46:43 +0200 | [diff] [blame] | 72 | r = radeon_semaphore_create(rdev, &ib->semaphore); |
| 73 | if (r) { |
| 74 | return r; |
| 75 | } |
| 76 | |
Christian König | 876dc9f | 2012-05-08 14:24:01 +0200 | [diff] [blame] | 77 | ib->ring = ring; |
| 78 | ib->fence = NULL; |
Jerome Glisse | f2e3922 | 2012-05-09 15:35:02 +0200 | [diff] [blame] | 79 | ib->ptr = radeon_sa_bo_cpu_addr(ib->sa_bo); |
Christian König | 4bf3dd9 | 2012-08-06 18:57:44 +0200 | [diff] [blame] | 80 | ib->vm = vm; |
| 81 | if (vm) { |
Christian König | ca19f21 | 2012-09-11 16:09:59 +0200 | [diff] [blame] | 82 | /* ib pool is bound at RADEON_VA_IB_OFFSET in virtual address |
| 83 | * space and soffset is the offset inside the pool bo |
Christian König | 4bf3dd9 | 2012-08-06 18:57:44 +0200 | [diff] [blame] | 84 | */ |
Christian König | ca19f21 | 2012-09-11 16:09:59 +0200 | [diff] [blame] | 85 | ib->gpu_addr = ib->sa_bo->soffset + RADEON_VA_IB_OFFSET; |
Christian König | 4bf3dd9 | 2012-08-06 18:57:44 +0200 | [diff] [blame] | 86 | } else { |
| 87 | ib->gpu_addr = radeon_sa_bo_gpu_addr(ib->sa_bo); |
| 88 | } |
Jerome Glisse | f2e3922 | 2012-05-09 15:35:02 +0200 | [diff] [blame] | 89 | ib->is_const_ib = false; |
Jerome Glisse | c507f7e | 2012-05-09 15:34:58 +0200 | [diff] [blame] | 90 | |
| 91 | return 0; |
Jerome Glisse | 771fe6b | 2009-06-05 14:42:42 +0200 | [diff] [blame] | 92 | } |
| 93 | |
Alex Deucher | 7592328 | 2012-07-17 14:02:38 -0400 | [diff] [blame] | 94 | /** |
| 95 | * radeon_ib_free - free an IB (Indirect Buffer) |
| 96 | * |
| 97 | * @rdev: radeon_device pointer |
| 98 | * @ib: IB object to free |
| 99 | * |
| 100 | * Free an IB (all asics). |
| 101 | */ |
Jerome Glisse | f2e3922 | 2012-05-09 15:35:02 +0200 | [diff] [blame] | 102 | void radeon_ib_free(struct radeon_device *rdev, struct radeon_ib *ib) |
Jerome Glisse | 771fe6b | 2009-06-05 14:42:42 +0200 | [diff] [blame] | 103 | { |
Christian König | 220907d | 2012-05-10 16:46:43 +0200 | [diff] [blame] | 104 | radeon_semaphore_free(rdev, &ib->semaphore, ib->fence); |
Jerome Glisse | f2e3922 | 2012-05-09 15:35:02 +0200 | [diff] [blame] | 105 | radeon_sa_bo_free(rdev, &ib->sa_bo, ib->fence); |
| 106 | radeon_fence_unref(&ib->fence); |
Jerome Glisse | 771fe6b | 2009-06-05 14:42:42 +0200 | [diff] [blame] | 107 | } |
| 108 | |
Alex Deucher | 7592328 | 2012-07-17 14:02:38 -0400 | [diff] [blame] | 109 | /** |
| 110 | * radeon_ib_schedule - schedule an IB (Indirect Buffer) on the ring |
| 111 | * |
| 112 | * @rdev: radeon_device pointer |
| 113 | * @ib: IB object to schedule |
| 114 | * @const_ib: Const IB to schedule (SI only) |
| 115 | * |
| 116 | * Schedule an IB on the associated ring (all asics). |
| 117 | * Returns 0 on success, error on failure. |
| 118 | * |
| 119 | * On SI, there are two parallel engines fed from the primary ring, |
| 120 | * the CE (Constant Engine) and the DE (Drawing Engine). Since |
| 121 | * resource descriptors have moved to memory, the CE allows you to |
| 122 | * prime the caches while the DE is updating register state so that |
| 123 | * the resource descriptors will be already in cache when the draw is |
| 124 | * processed. To accomplish this, the userspace driver submits two |
| 125 | * IBs, one for the CE and one for the DE. If there is a CE IB (called |
| 126 | * a CONST_IB), it will be put on the ring prior to the DE IB. Prior |
| 127 | * to SI there was just a DE IB. |
| 128 | */ |
Christian König | 4ef7256 | 2012-07-13 13:06:00 +0200 | [diff] [blame] | 129 | int radeon_ib_schedule(struct radeon_device *rdev, struct radeon_ib *ib, |
| 130 | struct radeon_ib *const_ib) |
Jerome Glisse | 771fe6b | 2009-06-05 14:42:42 +0200 | [diff] [blame] | 131 | { |
Christian König | 876dc9f | 2012-05-08 14:24:01 +0200 | [diff] [blame] | 132 | struct radeon_ring *ring = &rdev->ring[ib->ring]; |
Christian König | 1654b81 | 2013-11-12 12:58:05 +0100 | [diff] [blame] | 133 | int r = 0; |
Jerome Glisse | 771fe6b | 2009-06-05 14:42:42 +0200 | [diff] [blame] | 134 | |
Christian König | e32eb50 | 2011-10-23 12:56:27 +0200 | [diff] [blame] | 135 | if (!ib->length_dw || !ring->ready) { |
Jerome Glisse | 771fe6b | 2009-06-05 14:42:42 +0200 | [diff] [blame] | 136 | /* TODO: Nothings in the ib we should report. */ |
Jerome Glisse | c507f7e | 2012-05-09 15:34:58 +0200 | [diff] [blame] | 137 | dev_err(rdev->dev, "couldn't schedule ib\n"); |
Jerome Glisse | 771fe6b | 2009-06-05 14:42:42 +0200 | [diff] [blame] | 138 | return -EINVAL; |
| 139 | } |
Dave Airlie | ecb114a | 2009-09-15 11:12:56 +1000 | [diff] [blame] | 140 | |
Dave Airlie | 6cdf658 | 2009-06-29 18:29:13 +1000 | [diff] [blame] | 141 | /* 64 dwords should be enough for fence too */ |
Christian König | 1c61eae | 2014-02-18 01:50:22 -0700 | [diff] [blame] | 142 | r = radeon_ring_lock(rdev, ring, 64 + RADEON_NUM_SYNCS * 8); |
Jerome Glisse | 771fe6b | 2009-06-05 14:42:42 +0200 | [diff] [blame] | 143 | if (r) { |
Jerome Glisse | c507f7e | 2012-05-09 15:34:58 +0200 | [diff] [blame] | 144 | dev_err(rdev->dev, "scheduling IB failed (%d).\n", r); |
Jerome Glisse | 771fe6b | 2009-06-05 14:42:42 +0200 | [diff] [blame] | 145 | return r; |
| 146 | } |
Christian König | 1654b81 | 2013-11-12 12:58:05 +0100 | [diff] [blame] | 147 | |
| 148 | /* sync with other rings */ |
| 149 | r = radeon_semaphore_sync_rings(rdev, ib->semaphore, ib->ring); |
| 150 | if (r) { |
| 151 | dev_err(rdev->dev, "failed to sync rings (%d)\n", r); |
| 152 | radeon_ring_unlock_undo(rdev, ring); |
| 153 | return r; |
Christian König | 220907d | 2012-05-10 16:46:43 +0200 | [diff] [blame] | 154 | } |
Christian König | 1654b81 | 2013-11-12 12:58:05 +0100 | [diff] [blame] | 155 | |
Christian König | 9b40e5d | 2012-08-08 12:22:43 +0200 | [diff] [blame] | 156 | /* if we can't remember our last VM flush then flush now! */ |
Jerome Glisse | 466476d | 2013-04-16 12:20:15 -0400 | [diff] [blame] | 157 | /* XXX figure out why we have to flush for every IB */ |
| 158 | if (ib->vm /*&& !ib->vm->last_flush*/) { |
Alex Deucher | 498522b | 2012-10-02 14:43:38 -0400 | [diff] [blame] | 159 | radeon_ring_vm_flush(rdev, ib->ring, ib->vm); |
Christian König | 9b40e5d | 2012-08-08 12:22:43 +0200 | [diff] [blame] | 160 | } |
Christian König | 4ef7256 | 2012-07-13 13:06:00 +0200 | [diff] [blame] | 161 | if (const_ib) { |
| 162 | radeon_ring_ib_execute(rdev, const_ib->ring, const_ib); |
| 163 | radeon_semaphore_free(rdev, &const_ib->semaphore, NULL); |
| 164 | } |
Christian König | 876dc9f | 2012-05-08 14:24:01 +0200 | [diff] [blame] | 165 | radeon_ring_ib_execute(rdev, ib->ring, ib); |
| 166 | r = radeon_fence_emit(rdev, &ib->fence, ib->ring); |
| 167 | if (r) { |
| 168 | dev_err(rdev->dev, "failed to emit fence for new IB (%d)\n", r); |
| 169 | radeon_ring_unlock_undo(rdev, ring); |
| 170 | return r; |
| 171 | } |
Christian König | 4ef7256 | 2012-07-13 13:06:00 +0200 | [diff] [blame] | 172 | if (const_ib) { |
| 173 | const_ib->fence = radeon_fence_ref(ib->fence); |
| 174 | } |
Christian König | 9b40e5d | 2012-08-08 12:22:43 +0200 | [diff] [blame] | 175 | /* we just flushed the VM, remember that */ |
| 176 | if (ib->vm && !ib->vm->last_flush) { |
| 177 | ib->vm->last_flush = radeon_fence_ref(ib->fence); |
| 178 | } |
Christian König | e32eb50 | 2011-10-23 12:56:27 +0200 | [diff] [blame] | 179 | radeon_ring_unlock_commit(rdev, ring); |
Jerome Glisse | 771fe6b | 2009-06-05 14:42:42 +0200 | [diff] [blame] | 180 | return 0; |
| 181 | } |
| 182 | |
Alex Deucher | 7592328 | 2012-07-17 14:02:38 -0400 | [diff] [blame] | 183 | /** |
| 184 | * radeon_ib_pool_init - Init the IB (Indirect Buffer) pool |
| 185 | * |
| 186 | * @rdev: radeon_device pointer |
| 187 | * |
| 188 | * Initialize the suballocator to manage a pool of memory |
| 189 | * for use as IBs (all asics). |
| 190 | * Returns 0 on success, error on failure. |
| 191 | */ |
Jerome Glisse | 771fe6b | 2009-06-05 14:42:42 +0200 | [diff] [blame] | 192 | int radeon_ib_pool_init(struct radeon_device *rdev) |
| 193 | { |
Jerome Glisse | c507f7e | 2012-05-09 15:34:58 +0200 | [diff] [blame] | 194 | int r; |
Jerome Glisse | 771fe6b | 2009-06-05 14:42:42 +0200 | [diff] [blame] | 195 | |
Jerome Glisse | c507f7e | 2012-05-09 15:34:58 +0200 | [diff] [blame] | 196 | if (rdev->ib_pool_ready) { |
Jerome Glisse | 9f022dd | 2009-09-11 15:35:22 +0200 | [diff] [blame] | 197 | return 0; |
Jerome Glisse | 771fe6b | 2009-06-05 14:42:42 +0200 | [diff] [blame] | 198 | } |
Jerome Glisse | c507f7e | 2012-05-09 15:34:58 +0200 | [diff] [blame] | 199 | r = radeon_sa_bo_manager_init(rdev, &rdev->ring_tmp_bo, |
Christian König | c3b7fe8 | 2012-05-09 15:34:56 +0200 | [diff] [blame] | 200 | RADEON_IB_POOL_SIZE*64*1024, |
Alex Deucher | 6c4f978 | 2013-07-12 15:46:09 -0400 | [diff] [blame] | 201 | RADEON_GPU_PAGE_SIZE, |
Christian König | c3b7fe8 | 2012-05-09 15:34:56 +0200 | [diff] [blame] | 202 | RADEON_GEM_DOMAIN_GTT); |
| 203 | if (r) { |
Christian König | c3b7fe8 | 2012-05-09 15:34:56 +0200 | [diff] [blame] | 204 | return r; |
| 205 | } |
Christian König | 2898c34 | 2012-07-05 11:55:34 +0200 | [diff] [blame] | 206 | |
| 207 | r = radeon_sa_bo_manager_start(rdev, &rdev->ring_tmp_bo); |
| 208 | if (r) { |
| 209 | return r; |
| 210 | } |
| 211 | |
Jerome Glisse | c507f7e | 2012-05-09 15:34:58 +0200 | [diff] [blame] | 212 | rdev->ib_pool_ready = true; |
| 213 | if (radeon_debugfs_sa_init(rdev)) { |
| 214 | dev_err(rdev->dev, "failed to register debugfs file for SA\n"); |
Jerome Glisse | 771fe6b | 2009-06-05 14:42:42 +0200 | [diff] [blame] | 215 | } |
Jerome Glisse | b15ba51 | 2011-11-15 11:48:34 -0500 | [diff] [blame] | 216 | return 0; |
Jerome Glisse | 771fe6b | 2009-06-05 14:42:42 +0200 | [diff] [blame] | 217 | } |
| 218 | |
Alex Deucher | 7592328 | 2012-07-17 14:02:38 -0400 | [diff] [blame] | 219 | /** |
| 220 | * radeon_ib_pool_fini - Free the IB (Indirect Buffer) pool |
| 221 | * |
| 222 | * @rdev: radeon_device pointer |
| 223 | * |
| 224 | * Tear down the suballocator managing the pool of memory |
| 225 | * for use as IBs (all asics). |
| 226 | */ |
Jerome Glisse | 771fe6b | 2009-06-05 14:42:42 +0200 | [diff] [blame] | 227 | void radeon_ib_pool_fini(struct radeon_device *rdev) |
| 228 | { |
Jerome Glisse | c507f7e | 2012-05-09 15:34:58 +0200 | [diff] [blame] | 229 | if (rdev->ib_pool_ready) { |
Christian König | 2898c34 | 2012-07-05 11:55:34 +0200 | [diff] [blame] | 230 | radeon_sa_bo_manager_suspend(rdev, &rdev->ring_tmp_bo); |
Jerome Glisse | c507f7e | 2012-05-09 15:34:58 +0200 | [diff] [blame] | 231 | radeon_sa_bo_manager_fini(rdev, &rdev->ring_tmp_bo); |
| 232 | rdev->ib_pool_ready = false; |
Alex Deucher | ca2af92 | 2010-05-06 11:02:24 -0400 | [diff] [blame] | 233 | } |
Jerome Glisse | 771fe6b | 2009-06-05 14:42:42 +0200 | [diff] [blame] | 234 | } |
| 235 | |
Alex Deucher | 7592328 | 2012-07-17 14:02:38 -0400 | [diff] [blame] | 236 | /** |
| 237 | * radeon_ib_ring_tests - test IBs on the rings |
| 238 | * |
| 239 | * @rdev: radeon_device pointer |
| 240 | * |
| 241 | * Test an IB (Indirect Buffer) on each ring. |
| 242 | * If the test fails, disable the ring. |
| 243 | * Returns 0 on success, error if the primary GFX ring |
| 244 | * IB test fails. |
| 245 | */ |
Christian König | 7bd560e | 2012-05-02 15:11:12 +0200 | [diff] [blame] | 246 | int radeon_ib_ring_tests(struct radeon_device *rdev) |
| 247 | { |
| 248 | unsigned i; |
| 249 | int r; |
| 250 | |
| 251 | for (i = 0; i < RADEON_NUM_RINGS; ++i) { |
| 252 | struct radeon_ring *ring = &rdev->ring[i]; |
| 253 | |
| 254 | if (!ring->ready) |
| 255 | continue; |
| 256 | |
| 257 | r = radeon_ib_test(rdev, i, ring); |
| 258 | if (r) { |
| 259 | ring->ready = false; |
| 260 | |
| 261 | if (i == RADEON_RING_TYPE_GFX_INDEX) { |
| 262 | /* oh, oh, that's really bad */ |
| 263 | DRM_ERROR("radeon: failed testing IB on GFX ring (%d).\n", r); |
| 264 | rdev->accel_working = false; |
| 265 | return r; |
| 266 | |
| 267 | } else { |
| 268 | /* still not good, but we can live with it */ |
| 269 | DRM_ERROR("radeon: failed testing IB on ring %d (%d).\n", i, r); |
| 270 | } |
| 271 | } |
| 272 | } |
| 273 | return 0; |
| 274 | } |
| 275 | |
Jerome Glisse | 771fe6b | 2009-06-05 14:42:42 +0200 | [diff] [blame] | 276 | /* |
Alex Deucher | 7592328 | 2012-07-17 14:02:38 -0400 | [diff] [blame] | 277 | * Rings |
| 278 | * Most engines on the GPU are fed via ring buffers. Ring |
| 279 | * buffers are areas of GPU accessible memory that the host |
| 280 | * writes commands into and the GPU reads commands out of. |
| 281 | * There is a rptr (read pointer) that determines where the |
| 282 | * GPU is currently reading, and a wptr (write pointer) |
| 283 | * which determines where the host has written. When the |
| 284 | * pointers are equal, the ring is idle. When the host |
| 285 | * writes commands to the ring buffer, it increments the |
| 286 | * wptr. The GPU then starts fetching commands and executes |
| 287 | * them until the pointers are equal again. |
Jerome Glisse | 771fe6b | 2009-06-05 14:42:42 +0200 | [diff] [blame] | 288 | */ |
Lauri Kasanen | 1109ca0 | 2012-08-31 13:43:50 -0400 | [diff] [blame] | 289 | static int radeon_debugfs_ring_init(struct radeon_device *rdev, struct radeon_ring *ring); |
Jerome Glisse | c507f7e | 2012-05-09 15:34:58 +0200 | [diff] [blame] | 290 | |
Alex Deucher | 7592328 | 2012-07-17 14:02:38 -0400 | [diff] [blame] | 291 | /** |
| 292 | * radeon_ring_write - write a value to the ring |
| 293 | * |
| 294 | * @ring: radeon_ring structure holding ring information |
| 295 | * @v: dword (dw) value to write |
| 296 | * |
| 297 | * Write a value to the requested ring buffer (all asics). |
| 298 | */ |
Jerome Glisse | c507f7e | 2012-05-09 15:34:58 +0200 | [diff] [blame] | 299 | void radeon_ring_write(struct radeon_ring *ring, uint32_t v) |
| 300 | { |
| 301 | #if DRM_DEBUG_CODE |
| 302 | if (ring->count_dw <= 0) { |
Thomas Friebel | 8ad33cd | 2012-10-15 13:16:22 -0400 | [diff] [blame] | 303 | DRM_ERROR("radeon: writing more dwords to the ring than expected!\n"); |
Jerome Glisse | c507f7e | 2012-05-09 15:34:58 +0200 | [diff] [blame] | 304 | } |
| 305 | #endif |
| 306 | ring->ring[ring->wptr++] = v; |
| 307 | ring->wptr &= ring->ptr_mask; |
| 308 | ring->count_dw--; |
| 309 | ring->ring_free_dw--; |
| 310 | } |
| 311 | |
Alex Deucher | 7592328 | 2012-07-17 14:02:38 -0400 | [diff] [blame] | 312 | /** |
| 313 | * radeon_ring_supports_scratch_reg - check if the ring supports |
| 314 | * writing to scratch registers |
| 315 | * |
| 316 | * @rdev: radeon_device pointer |
| 317 | * @ring: radeon_ring structure holding ring information |
| 318 | * |
| 319 | * Check if a specific ring supports writing to scratch registers (all asics). |
| 320 | * Returns true if the ring supports writing to scratch regs, false if not. |
| 321 | */ |
Alex Deucher | 89d3580 | 2012-07-17 14:02:31 -0400 | [diff] [blame] | 322 | bool radeon_ring_supports_scratch_reg(struct radeon_device *rdev, |
| 323 | struct radeon_ring *ring) |
| 324 | { |
| 325 | switch (ring->idx) { |
| 326 | case RADEON_RING_TYPE_GFX_INDEX: |
| 327 | case CAYMAN_RING_TYPE_CP1_INDEX: |
| 328 | case CAYMAN_RING_TYPE_CP2_INDEX: |
| 329 | return true; |
| 330 | default: |
| 331 | return false; |
| 332 | } |
| 333 | } |
| 334 | |
Alex Deucher | 7592328 | 2012-07-17 14:02:38 -0400 | [diff] [blame] | 335 | /** |
| 336 | * radeon_ring_free_size - update the free size |
| 337 | * |
| 338 | * @rdev: radeon_device pointer |
| 339 | * @ring: radeon_ring structure holding ring information |
| 340 | * |
| 341 | * Update the free dw slots in the ring buffer (all asics). |
| 342 | */ |
Christian König | e32eb50 | 2011-10-23 12:56:27 +0200 | [diff] [blame] | 343 | void radeon_ring_free_size(struct radeon_device *rdev, struct radeon_ring *ring) |
Jerome Glisse | 771fe6b | 2009-06-05 14:42:42 +0200 | [diff] [blame] | 344 | { |
Christian König | ff212f2 | 2014-02-18 14:52:33 +0100 | [diff] [blame] | 345 | uint32_t rptr = radeon_ring_get_rptr(rdev, ring); |
| 346 | |
Jerome Glisse | 771fe6b | 2009-06-05 14:42:42 +0200 | [diff] [blame] | 347 | /* This works because ring_size is a power of 2 */ |
Christian König | ff212f2 | 2014-02-18 14:52:33 +0100 | [diff] [blame] | 348 | ring->ring_free_dw = rptr + (ring->ring_size / 4); |
Christian König | e32eb50 | 2011-10-23 12:56:27 +0200 | [diff] [blame] | 349 | ring->ring_free_dw -= ring->wptr; |
| 350 | ring->ring_free_dw &= ring->ptr_mask; |
| 351 | if (!ring->ring_free_dw) { |
| 352 | ring->ring_free_dw = ring->ring_size / 4; |
Jerome Glisse | 771fe6b | 2009-06-05 14:42:42 +0200 | [diff] [blame] | 353 | } |
| 354 | } |
| 355 | |
Alex Deucher | 7592328 | 2012-07-17 14:02:38 -0400 | [diff] [blame] | 356 | /** |
| 357 | * radeon_ring_alloc - allocate space on the ring buffer |
| 358 | * |
| 359 | * @rdev: radeon_device pointer |
| 360 | * @ring: radeon_ring structure holding ring information |
| 361 | * @ndw: number of dwords to allocate in the ring buffer |
| 362 | * |
| 363 | * Allocate @ndw dwords in the ring buffer (all asics). |
| 364 | * Returns 0 on success, error on failure. |
| 365 | */ |
Christian König | e32eb50 | 2011-10-23 12:56:27 +0200 | [diff] [blame] | 366 | int radeon_ring_alloc(struct radeon_device *rdev, struct radeon_ring *ring, unsigned ndw) |
Jerome Glisse | 771fe6b | 2009-06-05 14:42:42 +0200 | [diff] [blame] | 367 | { |
| 368 | int r; |
| 369 | |
Alex Deucher | fd5d93a | 2013-01-30 14:24:09 -0500 | [diff] [blame] | 370 | /* make sure we aren't trying to allocate more space than there is on the ring */ |
| 371 | if (ndw > (ring->ring_size / 4)) |
| 372 | return -ENOMEM; |
Jerome Glisse | 771fe6b | 2009-06-05 14:42:42 +0200 | [diff] [blame] | 373 | /* Align requested size with padding so unlock_commit can |
| 374 | * pad safely */ |
Jerome Glisse | 8444d5c | 2013-06-19 10:02:28 -0400 | [diff] [blame] | 375 | radeon_ring_free_size(rdev, ring); |
| 376 | if (ring->ring_free_dw == (ring->ring_size / 4)) { |
| 377 | /* This is an empty ring update lockup info to avoid |
| 378 | * false positive. |
| 379 | */ |
Christian König | ff212f2 | 2014-02-18 14:52:33 +0100 | [diff] [blame] | 380 | radeon_ring_lockup_update(rdev, ring); |
Jerome Glisse | 8444d5c | 2013-06-19 10:02:28 -0400 | [diff] [blame] | 381 | } |
Christian König | e32eb50 | 2011-10-23 12:56:27 +0200 | [diff] [blame] | 382 | ndw = (ndw + ring->align_mask) & ~ring->align_mask; |
| 383 | while (ndw > (ring->ring_free_dw - 1)) { |
| 384 | radeon_ring_free_size(rdev, ring); |
| 385 | if (ndw < ring->ring_free_dw) { |
Jerome Glisse | 771fe6b | 2009-06-05 14:42:42 +0200 | [diff] [blame] | 386 | break; |
| 387 | } |
Alex Deucher | 8b25ed3 | 2012-07-17 14:02:30 -0400 | [diff] [blame] | 388 | r = radeon_fence_wait_next_locked(rdev, ring->idx); |
Matthew Garrett | 91700f3 | 2010-04-30 15:24:17 -0400 | [diff] [blame] | 389 | if (r) |
Jerome Glisse | 771fe6b | 2009-06-05 14:42:42 +0200 | [diff] [blame] | 390 | return r; |
Jerome Glisse | 771fe6b | 2009-06-05 14:42:42 +0200 | [diff] [blame] | 391 | } |
Christian König | e32eb50 | 2011-10-23 12:56:27 +0200 | [diff] [blame] | 392 | ring->count_dw = ndw; |
| 393 | ring->wptr_old = ring->wptr; |
Jerome Glisse | 771fe6b | 2009-06-05 14:42:42 +0200 | [diff] [blame] | 394 | return 0; |
| 395 | } |
| 396 | |
Alex Deucher | 7592328 | 2012-07-17 14:02:38 -0400 | [diff] [blame] | 397 | /** |
| 398 | * radeon_ring_lock - lock the ring and allocate space on it |
| 399 | * |
| 400 | * @rdev: radeon_device pointer |
| 401 | * @ring: radeon_ring structure holding ring information |
| 402 | * @ndw: number of dwords to allocate in the ring buffer |
| 403 | * |
| 404 | * Lock the ring and allocate @ndw dwords in the ring buffer |
| 405 | * (all asics). |
| 406 | * Returns 0 on success, error on failure. |
| 407 | */ |
Christian König | e32eb50 | 2011-10-23 12:56:27 +0200 | [diff] [blame] | 408 | int radeon_ring_lock(struct radeon_device *rdev, struct radeon_ring *ring, unsigned ndw) |
Matthew Garrett | 91700f3 | 2010-04-30 15:24:17 -0400 | [diff] [blame] | 409 | { |
| 410 | int r; |
| 411 | |
Christian König | d6999bc | 2012-05-09 15:34:45 +0200 | [diff] [blame] | 412 | mutex_lock(&rdev->ring_lock); |
Christian König | e32eb50 | 2011-10-23 12:56:27 +0200 | [diff] [blame] | 413 | r = radeon_ring_alloc(rdev, ring, ndw); |
Matthew Garrett | 91700f3 | 2010-04-30 15:24:17 -0400 | [diff] [blame] | 414 | if (r) { |
Christian König | d6999bc | 2012-05-09 15:34:45 +0200 | [diff] [blame] | 415 | mutex_unlock(&rdev->ring_lock); |
Matthew Garrett | 91700f3 | 2010-04-30 15:24:17 -0400 | [diff] [blame] | 416 | return r; |
| 417 | } |
| 418 | return 0; |
| 419 | } |
| 420 | |
Alex Deucher | 7592328 | 2012-07-17 14:02:38 -0400 | [diff] [blame] | 421 | /** |
| 422 | * radeon_ring_commit - tell the GPU to execute the new |
| 423 | * commands on the ring buffer |
| 424 | * |
| 425 | * @rdev: radeon_device pointer |
| 426 | * @ring: radeon_ring structure holding ring information |
| 427 | * |
| 428 | * Update the wptr (write pointer) to tell the GPU to |
| 429 | * execute new commands on the ring buffer (all asics). |
| 430 | */ |
Christian König | e32eb50 | 2011-10-23 12:56:27 +0200 | [diff] [blame] | 431 | void radeon_ring_commit(struct radeon_device *rdev, struct radeon_ring *ring) |
Jerome Glisse | 771fe6b | 2009-06-05 14:42:42 +0200 | [diff] [blame] | 432 | { |
Jerome Glisse | 771fe6b | 2009-06-05 14:42:42 +0200 | [diff] [blame] | 433 | /* We pad to match fetch size */ |
Christian König | 07a7133 | 2012-07-07 12:11:32 +0200 | [diff] [blame] | 434 | while (ring->wptr & ring->align_mask) { |
Alex Deucher | 78c5560 | 2011-11-17 14:25:56 -0500 | [diff] [blame] | 435 | radeon_ring_write(ring, ring->nop); |
Jerome Glisse | 771fe6b | 2009-06-05 14:42:42 +0200 | [diff] [blame] | 436 | } |
Daniel Vetter | 85b2331 | 2013-12-11 11:34:45 +0100 | [diff] [blame] | 437 | mb(); |
Alex Deucher | f93bdef | 2013-01-29 14:10:56 -0500 | [diff] [blame] | 438 | radeon_ring_set_wptr(rdev, ring); |
Matthew Garrett | 91700f3 | 2010-04-30 15:24:17 -0400 | [diff] [blame] | 439 | } |
| 440 | |
Alex Deucher | 7592328 | 2012-07-17 14:02:38 -0400 | [diff] [blame] | 441 | /** |
| 442 | * radeon_ring_unlock_commit - tell the GPU to execute the new |
| 443 | * commands on the ring buffer and unlock it |
| 444 | * |
| 445 | * @rdev: radeon_device pointer |
| 446 | * @ring: radeon_ring structure holding ring information |
| 447 | * |
| 448 | * Call radeon_ring_commit() then unlock the ring (all asics). |
| 449 | */ |
Christian König | e32eb50 | 2011-10-23 12:56:27 +0200 | [diff] [blame] | 450 | void radeon_ring_unlock_commit(struct radeon_device *rdev, struct radeon_ring *ring) |
Matthew Garrett | 91700f3 | 2010-04-30 15:24:17 -0400 | [diff] [blame] | 451 | { |
Christian König | e32eb50 | 2011-10-23 12:56:27 +0200 | [diff] [blame] | 452 | radeon_ring_commit(rdev, ring); |
Christian König | d6999bc | 2012-05-09 15:34:45 +0200 | [diff] [blame] | 453 | mutex_unlock(&rdev->ring_lock); |
| 454 | } |
| 455 | |
Alex Deucher | 7592328 | 2012-07-17 14:02:38 -0400 | [diff] [blame] | 456 | /** |
| 457 | * radeon_ring_undo - reset the wptr |
| 458 | * |
| 459 | * @ring: radeon_ring structure holding ring information |
| 460 | * |
Paul Bolle | 501f9d4c | 2012-11-20 22:31:06 +0100 | [diff] [blame] | 461 | * Reset the driver's copy of the wptr (all asics). |
Alex Deucher | 7592328 | 2012-07-17 14:02:38 -0400 | [diff] [blame] | 462 | */ |
Christian König | d6999bc | 2012-05-09 15:34:45 +0200 | [diff] [blame] | 463 | void radeon_ring_undo(struct radeon_ring *ring) |
| 464 | { |
| 465 | ring->wptr = ring->wptr_old; |
Jerome Glisse | 771fe6b | 2009-06-05 14:42:42 +0200 | [diff] [blame] | 466 | } |
| 467 | |
Alex Deucher | 7592328 | 2012-07-17 14:02:38 -0400 | [diff] [blame] | 468 | /** |
| 469 | * radeon_ring_unlock_undo - reset the wptr and unlock the ring |
| 470 | * |
| 471 | * @ring: radeon_ring structure holding ring information |
| 472 | * |
| 473 | * Call radeon_ring_undo() then unlock the ring (all asics). |
| 474 | */ |
Christian König | e32eb50 | 2011-10-23 12:56:27 +0200 | [diff] [blame] | 475 | void radeon_ring_unlock_undo(struct radeon_device *rdev, struct radeon_ring *ring) |
Jerome Glisse | 771fe6b | 2009-06-05 14:42:42 +0200 | [diff] [blame] | 476 | { |
Christian König | d6999bc | 2012-05-09 15:34:45 +0200 | [diff] [blame] | 477 | radeon_ring_undo(ring); |
| 478 | mutex_unlock(&rdev->ring_lock); |
Jerome Glisse | 771fe6b | 2009-06-05 14:42:42 +0200 | [diff] [blame] | 479 | } |
| 480 | |
Alex Deucher | 7592328 | 2012-07-17 14:02:38 -0400 | [diff] [blame] | 481 | /** |
Paul Bolle | 501f9d4c | 2012-11-20 22:31:06 +0100 | [diff] [blame] | 482 | * radeon_ring_lockup_update - update lockup variables |
Alex Deucher | 7592328 | 2012-07-17 14:02:38 -0400 | [diff] [blame] | 483 | * |
| 484 | * @ring: radeon_ring structure holding ring information |
| 485 | * |
| 486 | * Update the last rptr value and timestamp (all asics). |
| 487 | */ |
Christian König | ff212f2 | 2014-02-18 14:52:33 +0100 | [diff] [blame] | 488 | void radeon_ring_lockup_update(struct radeon_device *rdev, |
| 489 | struct radeon_ring *ring) |
Christian König | 069211e | 2012-05-02 15:11:20 +0200 | [diff] [blame] | 490 | { |
Christian König | ff212f2 | 2014-02-18 14:52:33 +0100 | [diff] [blame] | 491 | ring->last_rptr = radeon_ring_get_rptr(rdev, ring); |
Christian König | 069211e | 2012-05-02 15:11:20 +0200 | [diff] [blame] | 492 | ring->last_activity = jiffies; |
| 493 | } |
| 494 | |
| 495 | /** |
| 496 | * radeon_ring_test_lockup() - check if ring is lockedup by recording information |
| 497 | * @rdev: radeon device structure |
| 498 | * @ring: radeon_ring structure holding ring information |
| 499 | * |
Christian König | 2d2fe3f | 2014-02-18 12:37:50 +0100 | [diff] [blame^] | 500 | */ |
Christian König | 069211e | 2012-05-02 15:11:20 +0200 | [diff] [blame] | 501 | bool radeon_ring_test_lockup(struct radeon_device *rdev, struct radeon_ring *ring) |
| 502 | { |
Christian König | ff212f2 | 2014-02-18 14:52:33 +0100 | [diff] [blame] | 503 | uint32_t rptr = radeon_ring_get_rptr(rdev, ring); |
Christian König | 069211e | 2012-05-02 15:11:20 +0200 | [diff] [blame] | 504 | unsigned long cjiffies, elapsed; |
Christian König | 069211e | 2012-05-02 15:11:20 +0200 | [diff] [blame] | 505 | |
| 506 | cjiffies = jiffies; |
| 507 | if (!time_after(cjiffies, ring->last_activity)) { |
| 508 | /* likely a wrap around */ |
Christian König | ff212f2 | 2014-02-18 14:52:33 +0100 | [diff] [blame] | 509 | radeon_ring_lockup_update(rdev, ring); |
Christian König | 069211e | 2012-05-02 15:11:20 +0200 | [diff] [blame] | 510 | return false; |
| 511 | } |
Christian König | ff212f2 | 2014-02-18 14:52:33 +0100 | [diff] [blame] | 512 | if (rptr != ring->last_rptr) { |
Christian König | 069211e | 2012-05-02 15:11:20 +0200 | [diff] [blame] | 513 | /* CP is still working no lockup */ |
Christian König | ff212f2 | 2014-02-18 14:52:33 +0100 | [diff] [blame] | 514 | radeon_ring_lockup_update(rdev, ring); |
Christian König | 069211e | 2012-05-02 15:11:20 +0200 | [diff] [blame] | 515 | return false; |
| 516 | } |
| 517 | elapsed = jiffies_to_msecs(cjiffies - ring->last_activity); |
Christian König | 3368ff0 | 2012-05-02 15:11:21 +0200 | [diff] [blame] | 518 | if (radeon_lockup_timeout && elapsed >= radeon_lockup_timeout) { |
Christian König | 069211e | 2012-05-02 15:11:20 +0200 | [diff] [blame] | 519 | dev_err(rdev->dev, "GPU lockup CP stall for more than %lumsec\n", elapsed); |
| 520 | return true; |
| 521 | } |
| 522 | /* give a chance to the GPU ... */ |
| 523 | return false; |
| 524 | } |
| 525 | |
Christian König | 55d7c22 | 2012-07-09 11:52:44 +0200 | [diff] [blame] | 526 | /** |
| 527 | * radeon_ring_backup - Back up the content of a ring |
| 528 | * |
| 529 | * @rdev: radeon_device pointer |
| 530 | * @ring: the ring we want to back up |
| 531 | * |
| 532 | * Saves all unprocessed commits from a ring, returns the number of dwords saved. |
| 533 | */ |
| 534 | unsigned radeon_ring_backup(struct radeon_device *rdev, struct radeon_ring *ring, |
| 535 | uint32_t **data) |
| 536 | { |
| 537 | unsigned size, ptr, i; |
Christian König | 55d7c22 | 2012-07-09 11:52:44 +0200 | [diff] [blame] | 538 | |
| 539 | /* just in case lock the ring */ |
| 540 | mutex_lock(&rdev->ring_lock); |
| 541 | *data = NULL; |
| 542 | |
Alex Deucher | 89d3580 | 2012-07-17 14:02:31 -0400 | [diff] [blame] | 543 | if (ring->ring_obj == NULL) { |
Christian König | 55d7c22 | 2012-07-09 11:52:44 +0200 | [diff] [blame] | 544 | mutex_unlock(&rdev->ring_lock); |
| 545 | return 0; |
| 546 | } |
| 547 | |
| 548 | /* it doesn't make sense to save anything if all fences are signaled */ |
Alex Deucher | 8b25ed3 | 2012-07-17 14:02:30 -0400 | [diff] [blame] | 549 | if (!radeon_fence_count_emitted(rdev, ring->idx)) { |
Christian König | 55d7c22 | 2012-07-09 11:52:44 +0200 | [diff] [blame] | 550 | mutex_unlock(&rdev->ring_lock); |
| 551 | return 0; |
| 552 | } |
| 553 | |
| 554 | /* calculate the number of dw on the ring */ |
Alex Deucher | 89d3580 | 2012-07-17 14:02:31 -0400 | [diff] [blame] | 555 | if (ring->rptr_save_reg) |
| 556 | ptr = RREG32(ring->rptr_save_reg); |
| 557 | else if (rdev->wb.enabled) |
| 558 | ptr = le32_to_cpu(*ring->next_rptr_cpu_addr); |
| 559 | else { |
| 560 | /* no way to read back the next rptr */ |
| 561 | mutex_unlock(&rdev->ring_lock); |
| 562 | return 0; |
| 563 | } |
| 564 | |
Christian König | 55d7c22 | 2012-07-09 11:52:44 +0200 | [diff] [blame] | 565 | size = ring->wptr + (ring->ring_size / 4); |
| 566 | size -= ptr; |
| 567 | size &= ring->ptr_mask; |
| 568 | if (size == 0) { |
| 569 | mutex_unlock(&rdev->ring_lock); |
| 570 | return 0; |
| 571 | } |
| 572 | |
| 573 | /* and then save the content of the ring */ |
Dan Carpenter | 1e179d4 | 2012-07-20 14:17:00 +0300 | [diff] [blame] | 574 | *data = kmalloc_array(size, sizeof(uint32_t), GFP_KERNEL); |
| 575 | if (!*data) { |
| 576 | mutex_unlock(&rdev->ring_lock); |
| 577 | return 0; |
| 578 | } |
Christian König | 55d7c22 | 2012-07-09 11:52:44 +0200 | [diff] [blame] | 579 | for (i = 0; i < size; ++i) { |
| 580 | (*data)[i] = ring->ring[ptr++]; |
| 581 | ptr &= ring->ptr_mask; |
| 582 | } |
| 583 | |
| 584 | mutex_unlock(&rdev->ring_lock); |
| 585 | return size; |
| 586 | } |
| 587 | |
| 588 | /** |
| 589 | * radeon_ring_restore - append saved commands to the ring again |
| 590 | * |
| 591 | * @rdev: radeon_device pointer |
| 592 | * @ring: ring to append commands to |
| 593 | * @size: number of dwords we want to write |
| 594 | * @data: saved commands |
| 595 | * |
| 596 | * Allocates space on the ring and restore the previously saved commands. |
| 597 | */ |
| 598 | int radeon_ring_restore(struct radeon_device *rdev, struct radeon_ring *ring, |
| 599 | unsigned size, uint32_t *data) |
| 600 | { |
| 601 | int i, r; |
| 602 | |
| 603 | if (!size || !data) |
| 604 | return 0; |
| 605 | |
| 606 | /* restore the saved ring content */ |
| 607 | r = radeon_ring_lock(rdev, ring, size); |
| 608 | if (r) |
| 609 | return r; |
| 610 | |
| 611 | for (i = 0; i < size; ++i) { |
| 612 | radeon_ring_write(ring, data[i]); |
| 613 | } |
| 614 | |
| 615 | radeon_ring_unlock_commit(rdev, ring); |
| 616 | kfree(data); |
| 617 | return 0; |
| 618 | } |
| 619 | |
Alex Deucher | 7592328 | 2012-07-17 14:02:38 -0400 | [diff] [blame] | 620 | /** |
| 621 | * radeon_ring_init - init driver ring struct. |
| 622 | * |
| 623 | * @rdev: radeon_device pointer |
| 624 | * @ring: radeon_ring structure holding ring information |
| 625 | * @ring_size: size of the ring |
| 626 | * @rptr_offs: offset of the rptr writeback location in the WB buffer |
Alex Deucher | 7592328 | 2012-07-17 14:02:38 -0400 | [diff] [blame] | 627 | * @nop: nop packet for this ring |
| 628 | * |
| 629 | * Initialize the driver information for the selected ring (all asics). |
| 630 | * Returns 0 on success, error on failure. |
| 631 | */ |
Christian König | e32eb50 | 2011-10-23 12:56:27 +0200 | [diff] [blame] | 632 | int radeon_ring_init(struct radeon_device *rdev, struct radeon_ring *ring, unsigned ring_size, |
Alex Deucher | ea31bf6 | 2013-12-09 19:44:30 -0500 | [diff] [blame] | 633 | unsigned rptr_offs, u32 nop) |
Jerome Glisse | 771fe6b | 2009-06-05 14:42:42 +0200 | [diff] [blame] | 634 | { |
| 635 | int r; |
| 636 | |
Christian König | e32eb50 | 2011-10-23 12:56:27 +0200 | [diff] [blame] | 637 | ring->ring_size = ring_size; |
| 638 | ring->rptr_offs = rptr_offs; |
Alex Deucher | 78c5560 | 2011-11-17 14:25:56 -0500 | [diff] [blame] | 639 | ring->nop = nop; |
Jerome Glisse | 771fe6b | 2009-06-05 14:42:42 +0200 | [diff] [blame] | 640 | /* Allocate ring buffer */ |
Christian König | e32eb50 | 2011-10-23 12:56:27 +0200 | [diff] [blame] | 641 | if (ring->ring_obj == NULL) { |
| 642 | r = radeon_bo_create(rdev, ring->ring_size, PAGE_SIZE, true, |
Alex Deucher | 40f5cf9 | 2012-05-10 18:33:13 -0400 | [diff] [blame] | 643 | RADEON_GEM_DOMAIN_GTT, |
| 644 | NULL, &ring->ring_obj); |
Jerome Glisse | 771fe6b | 2009-06-05 14:42:42 +0200 | [diff] [blame] | 645 | if (r) { |
Jerome Glisse | 4c78867 | 2009-11-20 14:29:23 +0100 | [diff] [blame] | 646 | dev_err(rdev->dev, "(%d) ring create failed\n", r); |
Jerome Glisse | 771fe6b | 2009-06-05 14:42:42 +0200 | [diff] [blame] | 647 | return r; |
| 648 | } |
Christian König | e32eb50 | 2011-10-23 12:56:27 +0200 | [diff] [blame] | 649 | r = radeon_bo_reserve(ring->ring_obj, false); |
Jerome Glisse | 4c78867 | 2009-11-20 14:29:23 +0100 | [diff] [blame] | 650 | if (unlikely(r != 0)) |
| 651 | return r; |
Christian König | e32eb50 | 2011-10-23 12:56:27 +0200 | [diff] [blame] | 652 | r = radeon_bo_pin(ring->ring_obj, RADEON_GEM_DOMAIN_GTT, |
| 653 | &ring->gpu_addr); |
Jerome Glisse | 771fe6b | 2009-06-05 14:42:42 +0200 | [diff] [blame] | 654 | if (r) { |
Christian König | e32eb50 | 2011-10-23 12:56:27 +0200 | [diff] [blame] | 655 | radeon_bo_unreserve(ring->ring_obj); |
Jerome Glisse | 4c78867 | 2009-11-20 14:29:23 +0100 | [diff] [blame] | 656 | dev_err(rdev->dev, "(%d) ring pin failed\n", r); |
Jerome Glisse | 771fe6b | 2009-06-05 14:42:42 +0200 | [diff] [blame] | 657 | return r; |
| 658 | } |
Christian König | e32eb50 | 2011-10-23 12:56:27 +0200 | [diff] [blame] | 659 | r = radeon_bo_kmap(ring->ring_obj, |
| 660 | (void **)&ring->ring); |
| 661 | radeon_bo_unreserve(ring->ring_obj); |
Jerome Glisse | 771fe6b | 2009-06-05 14:42:42 +0200 | [diff] [blame] | 662 | if (r) { |
Jerome Glisse | 4c78867 | 2009-11-20 14:29:23 +0100 | [diff] [blame] | 663 | dev_err(rdev->dev, "(%d) ring map failed\n", r); |
Jerome Glisse | 771fe6b | 2009-06-05 14:42:42 +0200 | [diff] [blame] | 664 | return r; |
| 665 | } |
| 666 | } |
Christian König | e32eb50 | 2011-10-23 12:56:27 +0200 | [diff] [blame] | 667 | ring->ptr_mask = (ring->ring_size / 4) - 1; |
| 668 | ring->ring_free_dw = ring->ring_size / 4; |
Alex Deucher | 89d3580 | 2012-07-17 14:02:31 -0400 | [diff] [blame] | 669 | if (rdev->wb.enabled) { |
| 670 | u32 index = RADEON_WB_RING0_NEXT_RPTR + (ring->idx * 4); |
| 671 | ring->next_rptr_gpu_addr = rdev->wb.gpu_addr + index; |
| 672 | ring->next_rptr_cpu_addr = &rdev->wb.wb[index/4]; |
| 673 | } |
Christian König | ec1a6cc | 2012-05-02 15:11:11 +0200 | [diff] [blame] | 674 | if (radeon_debugfs_ring_init(rdev, ring)) { |
| 675 | DRM_ERROR("Failed to register debugfs file for rings !\n"); |
| 676 | } |
Christian König | ff212f2 | 2014-02-18 14:52:33 +0100 | [diff] [blame] | 677 | radeon_ring_lockup_update(rdev, ring); |
Jerome Glisse | 771fe6b | 2009-06-05 14:42:42 +0200 | [diff] [blame] | 678 | return 0; |
| 679 | } |
| 680 | |
Alex Deucher | 7592328 | 2012-07-17 14:02:38 -0400 | [diff] [blame] | 681 | /** |
| 682 | * radeon_ring_fini - tear down the driver ring struct. |
| 683 | * |
| 684 | * @rdev: radeon_device pointer |
| 685 | * @ring: radeon_ring structure holding ring information |
| 686 | * |
| 687 | * Tear down the driver information for the selected ring (all asics). |
| 688 | */ |
Christian König | e32eb50 | 2011-10-23 12:56:27 +0200 | [diff] [blame] | 689 | void radeon_ring_fini(struct radeon_device *rdev, struct radeon_ring *ring) |
Jerome Glisse | 771fe6b | 2009-06-05 14:42:42 +0200 | [diff] [blame] | 690 | { |
Jerome Glisse | 4c78867 | 2009-11-20 14:29:23 +0100 | [diff] [blame] | 691 | int r; |
Alex Deucher | ca2af92 | 2010-05-06 11:02:24 -0400 | [diff] [blame] | 692 | struct radeon_bo *ring_obj; |
Jerome Glisse | 4c78867 | 2009-11-20 14:29:23 +0100 | [diff] [blame] | 693 | |
Christian König | d6999bc | 2012-05-09 15:34:45 +0200 | [diff] [blame] | 694 | mutex_lock(&rdev->ring_lock); |
Christian König | e32eb50 | 2011-10-23 12:56:27 +0200 | [diff] [blame] | 695 | ring_obj = ring->ring_obj; |
Christian König | d6999bc | 2012-05-09 15:34:45 +0200 | [diff] [blame] | 696 | ring->ready = false; |
Christian König | e32eb50 | 2011-10-23 12:56:27 +0200 | [diff] [blame] | 697 | ring->ring = NULL; |
| 698 | ring->ring_obj = NULL; |
Christian König | d6999bc | 2012-05-09 15:34:45 +0200 | [diff] [blame] | 699 | mutex_unlock(&rdev->ring_lock); |
Alex Deucher | ca2af92 | 2010-05-06 11:02:24 -0400 | [diff] [blame] | 700 | |
| 701 | if (ring_obj) { |
| 702 | r = radeon_bo_reserve(ring_obj, false); |
| 703 | if (likely(r == 0)) { |
| 704 | radeon_bo_kunmap(ring_obj); |
| 705 | radeon_bo_unpin(ring_obj); |
| 706 | radeon_bo_unreserve(ring_obj); |
| 707 | } |
| 708 | radeon_bo_unref(&ring_obj); |
| 709 | } |
Jerome Glisse | 771fe6b | 2009-06-05 14:42:42 +0200 | [diff] [blame] | 710 | } |
| 711 | |
Jerome Glisse | 771fe6b | 2009-06-05 14:42:42 +0200 | [diff] [blame] | 712 | /* |
| 713 | * Debugfs info |
| 714 | */ |
| 715 | #if defined(CONFIG_DEBUG_FS) |
Christian König | af9720f | 2011-10-24 17:08:44 +0200 | [diff] [blame] | 716 | |
| 717 | static int radeon_debugfs_ring_info(struct seq_file *m, void *data) |
| 718 | { |
| 719 | struct drm_info_node *node = (struct drm_info_node *) m->private; |
| 720 | struct drm_device *dev = node->minor->dev; |
| 721 | struct radeon_device *rdev = dev->dev_private; |
| 722 | int ridx = *(int*)node->info_ent->data; |
| 723 | struct radeon_ring *ring = &rdev->ring[ridx]; |
Christian König | df893a2 | 2013-12-12 09:42:37 +0100 | [diff] [blame] | 724 | |
| 725 | uint32_t rptr, wptr, rptr_next; |
Christian König | af9720f | 2011-10-24 17:08:44 +0200 | [diff] [blame] | 726 | unsigned count, i, j; |
| 727 | |
| 728 | radeon_ring_free_size(rdev, ring); |
| 729 | count = (ring->ring_size / 4) - ring->ring_free_dw; |
Christian König | df893a2 | 2013-12-12 09:42:37 +0100 | [diff] [blame] | 730 | |
| 731 | wptr = radeon_ring_get_wptr(rdev, ring); |
Alex Deucher | ea31bf6 | 2013-12-09 19:44:30 -0500 | [diff] [blame] | 732 | seq_printf(m, "wptr: 0x%08x [%5d]\n", |
| 733 | wptr, wptr); |
Christian König | df893a2 | 2013-12-12 09:42:37 +0100 | [diff] [blame] | 734 | |
| 735 | rptr = radeon_ring_get_rptr(rdev, ring); |
Alex Deucher | ea31bf6 | 2013-12-09 19:44:30 -0500 | [diff] [blame] | 736 | seq_printf(m, "rptr: 0x%08x [%5d]\n", |
| 737 | rptr, rptr); |
Christian König | df893a2 | 2013-12-12 09:42:37 +0100 | [diff] [blame] | 738 | |
Christian König | 45df680 | 2012-07-06 16:22:55 +0200 | [diff] [blame] | 739 | if (ring->rptr_save_reg) { |
Christian König | df893a2 | 2013-12-12 09:42:37 +0100 | [diff] [blame] | 740 | rptr_next = RREG32(ring->rptr_save_reg); |
| 741 | seq_printf(m, "rptr next(0x%04x): 0x%08x [%5d]\n", |
| 742 | ring->rptr_save_reg, rptr_next, rptr_next); |
| 743 | } else |
| 744 | rptr_next = ~0; |
| 745 | |
| 746 | seq_printf(m, "driver's copy of the wptr: 0x%08x [%5d]\n", |
| 747 | ring->wptr, ring->wptr); |
Christian König | df893a2 | 2013-12-12 09:42:37 +0100 | [diff] [blame] | 748 | seq_printf(m, "last semaphore signal addr : 0x%016llx\n", |
| 749 | ring->last_semaphore_signal_addr); |
| 750 | seq_printf(m, "last semaphore wait addr : 0x%016llx\n", |
| 751 | ring->last_semaphore_wait_addr); |
Christian König | af9720f | 2011-10-24 17:08:44 +0200 | [diff] [blame] | 752 | seq_printf(m, "%u free dwords in ring\n", ring->ring_free_dw); |
| 753 | seq_printf(m, "%u dwords in ring\n", count); |
Christian König | df893a2 | 2013-12-12 09:42:37 +0100 | [diff] [blame] | 754 | |
| 755 | if (!ring->ready) |
| 756 | return 0; |
| 757 | |
Jerome Glisse | 4d00919 | 2013-01-02 17:30:34 -0500 | [diff] [blame] | 758 | /* print 8 dw before current rptr as often it's the last executed |
| 759 | * packet that is the root issue |
| 760 | */ |
Christian König | df893a2 | 2013-12-12 09:42:37 +0100 | [diff] [blame] | 761 | i = (rptr + ring->ptr_mask + 1 - 32) & ring->ptr_mask; |
| 762 | for (j = 0; j <= (count + 32); j++) { |
| 763 | seq_printf(m, "r[%5d]=0x%08x", i, ring->ring[i]); |
| 764 | if (rptr == i) |
| 765 | seq_puts(m, " *"); |
| 766 | if (rptr_next == i) |
| 767 | seq_puts(m, " #"); |
| 768 | seq_puts(m, "\n"); |
| 769 | i = (i + 1) & ring->ptr_mask; |
Christian König | af9720f | 2011-10-24 17:08:44 +0200 | [diff] [blame] | 770 | } |
| 771 | return 0; |
| 772 | } |
| 773 | |
Christian König | f2ba57b | 2013-04-08 12:41:29 +0200 | [diff] [blame] | 774 | static int radeon_gfx_index = RADEON_RING_TYPE_GFX_INDEX; |
| 775 | static int cayman_cp1_index = CAYMAN_RING_TYPE_CP1_INDEX; |
| 776 | static int cayman_cp2_index = CAYMAN_RING_TYPE_CP2_INDEX; |
| 777 | static int radeon_dma1_index = R600_RING_TYPE_DMA_INDEX; |
| 778 | static int radeon_dma2_index = CAYMAN_RING_TYPE_DMA1_INDEX; |
| 779 | static int r600_uvd_index = R600_RING_TYPE_UVD_INDEX; |
Christian König | d93f793 | 2013-05-23 12:10:04 +0200 | [diff] [blame] | 780 | static int si_vce1_index = TN_RING_TYPE_VCE1_INDEX; |
| 781 | static int si_vce2_index = TN_RING_TYPE_VCE2_INDEX; |
Christian König | af9720f | 2011-10-24 17:08:44 +0200 | [diff] [blame] | 782 | |
| 783 | static struct drm_info_list radeon_debugfs_ring_info_list[] = { |
Christian König | f2ba57b | 2013-04-08 12:41:29 +0200 | [diff] [blame] | 784 | {"radeon_ring_gfx", radeon_debugfs_ring_info, 0, &radeon_gfx_index}, |
| 785 | {"radeon_ring_cp1", radeon_debugfs_ring_info, 0, &cayman_cp1_index}, |
| 786 | {"radeon_ring_cp2", radeon_debugfs_ring_info, 0, &cayman_cp2_index}, |
| 787 | {"radeon_ring_dma1", radeon_debugfs_ring_info, 0, &radeon_dma1_index}, |
| 788 | {"radeon_ring_dma2", radeon_debugfs_ring_info, 0, &radeon_dma2_index}, |
| 789 | {"radeon_ring_uvd", radeon_debugfs_ring_info, 0, &r600_uvd_index}, |
Christian König | d93f793 | 2013-05-23 12:10:04 +0200 | [diff] [blame] | 790 | {"radeon_ring_vce1", radeon_debugfs_ring_info, 0, &si_vce1_index}, |
| 791 | {"radeon_ring_vce2", radeon_debugfs_ring_info, 0, &si_vce2_index}, |
Christian König | af9720f | 2011-10-24 17:08:44 +0200 | [diff] [blame] | 792 | }; |
| 793 | |
Christian König | 711a972 | 2012-05-09 15:34:51 +0200 | [diff] [blame] | 794 | static int radeon_debugfs_sa_info(struct seq_file *m, void *data) |
| 795 | { |
| 796 | struct drm_info_node *node = (struct drm_info_node *) m->private; |
| 797 | struct drm_device *dev = node->minor->dev; |
| 798 | struct radeon_device *rdev = dev->dev_private; |
| 799 | |
Jerome Glisse | c507f7e | 2012-05-09 15:34:58 +0200 | [diff] [blame] | 800 | radeon_sa_bo_dump_debug_info(&rdev->ring_tmp_bo, m); |
Christian König | 711a972 | 2012-05-09 15:34:51 +0200 | [diff] [blame] | 801 | |
| 802 | return 0; |
| 803 | |
| 804 | } |
| 805 | |
| 806 | static struct drm_info_list radeon_debugfs_sa_list[] = { |
| 807 | {"radeon_sa_info", &radeon_debugfs_sa_info, 0, NULL}, |
| 808 | }; |
| 809 | |
Jerome Glisse | 771fe6b | 2009-06-05 14:42:42 +0200 | [diff] [blame] | 810 | #endif |
| 811 | |
Lauri Kasanen | 1109ca0 | 2012-08-31 13:43:50 -0400 | [diff] [blame] | 812 | static int radeon_debugfs_ring_init(struct radeon_device *rdev, struct radeon_ring *ring) |
Christian König | af9720f | 2011-10-24 17:08:44 +0200 | [diff] [blame] | 813 | { |
| 814 | #if defined(CONFIG_DEBUG_FS) |
Christian König | ec1a6cc | 2012-05-02 15:11:11 +0200 | [diff] [blame] | 815 | unsigned i; |
| 816 | for (i = 0; i < ARRAY_SIZE(radeon_debugfs_ring_info_list); ++i) { |
| 817 | struct drm_info_list *info = &radeon_debugfs_ring_info_list[i]; |
| 818 | int ridx = *(int*)radeon_debugfs_ring_info_list[i].data; |
| 819 | unsigned r; |
| 820 | |
| 821 | if (&rdev->ring[ridx] != ring) |
| 822 | continue; |
| 823 | |
| 824 | r = radeon_debugfs_add_files(rdev, info, 1); |
| 825 | if (r) |
| 826 | return r; |
| 827 | } |
Christian König | af9720f | 2011-10-24 17:08:44 +0200 | [diff] [blame] | 828 | #endif |
Christian König | ec1a6cc | 2012-05-02 15:11:11 +0200 | [diff] [blame] | 829 | return 0; |
Christian König | af9720f | 2011-10-24 17:08:44 +0200 | [diff] [blame] | 830 | } |
| 831 | |
Lauri Kasanen | 1109ca0 | 2012-08-31 13:43:50 -0400 | [diff] [blame] | 832 | static int radeon_debugfs_sa_init(struct radeon_device *rdev) |
Jerome Glisse | 771fe6b | 2009-06-05 14:42:42 +0200 | [diff] [blame] | 833 | { |
| 834 | #if defined(CONFIG_DEBUG_FS) |
Jerome Glisse | c507f7e | 2012-05-09 15:34:58 +0200 | [diff] [blame] | 835 | return radeon_debugfs_add_files(rdev, radeon_debugfs_sa_list, 1); |
Jerome Glisse | 771fe6b | 2009-06-05 14:42:42 +0200 | [diff] [blame] | 836 | #else |
| 837 | return 0; |
| 838 | #endif |
| 839 | } |