Alex Deucher | d38ceaf | 2015-04-20 16:55:21 -0400 | [diff] [blame] | 1 | /* |
| 2 | * Copyright 2009 Jerome Glisse. |
| 3 | * All Rights Reserved. |
| 4 | * |
| 5 | * Permission is hereby granted, free of charge, to any person obtaining a |
| 6 | * copy of this software and associated documentation files (the |
| 7 | * "Software"), to deal in the Software without restriction, including |
| 8 | * without limitation the rights to use, copy, modify, merge, publish, |
| 9 | * distribute, sub license, and/or sell copies of the Software, and to |
| 10 | * permit persons to whom the Software is furnished to do so, subject to |
| 11 | * the following conditions: |
| 12 | * |
| 13 | * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR |
| 14 | * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, |
| 15 | * FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT. IN NO EVENT SHALL |
| 16 | * THE COPYRIGHT HOLDERS, AUTHORS AND/OR ITS SUPPLIERS BE LIABLE FOR ANY CLAIM, |
| 17 | * DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR |
| 18 | * OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE |
| 19 | * USE OR OTHER DEALINGS IN THE SOFTWARE. |
| 20 | * |
| 21 | * The above copyright notice and this permission notice (including the |
| 22 | * next paragraph) shall be included in all copies or substantial portions |
| 23 | * of the Software. |
| 24 | * |
| 25 | */ |
| 26 | /* |
| 27 | * Authors: |
| 28 | * Jerome Glisse <glisse@freedesktop.org> |
| 29 | * Dave Airlie |
| 30 | */ |
| 31 | #include <linux/seq_file.h> |
| 32 | #include <linux/atomic.h> |
| 33 | #include <linux/wait.h> |
| 34 | #include <linux/kref.h> |
| 35 | #include <linux/slab.h> |
| 36 | #include <linux/firmware.h> |
| 37 | #include <drm/drmP.h> |
| 38 | #include "amdgpu.h" |
| 39 | #include "amdgpu_trace.h" |
| 40 | |
| 41 | /* |
| 42 | * Fences |
| 43 | * Fences mark an event in the GPUs pipeline and are used |
| 44 | * for GPU/CPU synchronization. When the fence is written, |
| 45 | * it is expected that all buffers associated with that fence |
| 46 | * are no longer in use by the associated ring on the GPU and |
| 47 | * that the the relevant GPU caches have been flushed. |
| 48 | */ |
| 49 | |
Christian König | 22e5a2f | 2016-03-11 15:12:53 +0100 | [diff] [blame] | 50 | struct amdgpu_fence { |
| 51 | struct fence base; |
| 52 | |
| 53 | /* RB, DMA, etc. */ |
| 54 | struct amdgpu_ring *ring; |
| 55 | uint64_t seq; |
Christian König | 22e5a2f | 2016-03-11 15:12:53 +0100 | [diff] [blame] | 56 | }; |
| 57 | |
Chunming Zhou | b49c84a | 2015-11-05 11:28:28 +0800 | [diff] [blame] | 58 | static struct kmem_cache *amdgpu_fence_slab; |
| 59 | static atomic_t amdgpu_fence_slab_ref = ATOMIC_INIT(0); |
| 60 | |
Christian König | 22e5a2f | 2016-03-11 15:12:53 +0100 | [diff] [blame] | 61 | /* |
| 62 | * Cast helper |
| 63 | */ |
| 64 | static const struct fence_ops amdgpu_fence_ops; |
| 65 | static inline struct amdgpu_fence *to_amdgpu_fence(struct fence *f) |
| 66 | { |
| 67 | struct amdgpu_fence *__f = container_of(f, struct amdgpu_fence, base); |
| 68 | |
| 69 | if (__f->base.ops == &amdgpu_fence_ops) |
| 70 | return __f; |
| 71 | |
| 72 | return NULL; |
| 73 | } |
| 74 | |
Alex Deucher | d38ceaf | 2015-04-20 16:55:21 -0400 | [diff] [blame] | 75 | /** |
| 76 | * amdgpu_fence_write - write a fence value |
| 77 | * |
| 78 | * @ring: ring the fence is associated with |
| 79 | * @seq: sequence number to write |
| 80 | * |
| 81 | * Writes a fence value to memory (all asics). |
| 82 | */ |
| 83 | static void amdgpu_fence_write(struct amdgpu_ring *ring, u32 seq) |
| 84 | { |
| 85 | struct amdgpu_fence_driver *drv = &ring->fence_drv; |
| 86 | |
| 87 | if (drv->cpu_addr) |
| 88 | *drv->cpu_addr = cpu_to_le32(seq); |
| 89 | } |
| 90 | |
| 91 | /** |
| 92 | * amdgpu_fence_read - read a fence value |
| 93 | * |
| 94 | * @ring: ring the fence is associated with |
| 95 | * |
| 96 | * Reads a fence value from memory (all asics). |
| 97 | * Returns the value of the fence read from memory. |
| 98 | */ |
| 99 | static u32 amdgpu_fence_read(struct amdgpu_ring *ring) |
| 100 | { |
| 101 | struct amdgpu_fence_driver *drv = &ring->fence_drv; |
| 102 | u32 seq = 0; |
| 103 | |
| 104 | if (drv->cpu_addr) |
| 105 | seq = le32_to_cpu(*drv->cpu_addr); |
| 106 | else |
| 107 | seq = lower_32_bits(atomic64_read(&drv->last_seq)); |
| 108 | |
| 109 | return seq; |
| 110 | } |
| 111 | |
| 112 | /** |
Alex Deucher | d38ceaf | 2015-04-20 16:55:21 -0400 | [diff] [blame] | 113 | * amdgpu_fence_emit - emit a fence on the requested ring |
| 114 | * |
| 115 | * @ring: ring the fence is associated with |
Christian König | 364beb2 | 2016-02-16 17:39:39 +0100 | [diff] [blame] | 116 | * @f: resulting fence object |
Alex Deucher | d38ceaf | 2015-04-20 16:55:21 -0400 | [diff] [blame] | 117 | * |
| 118 | * Emits a fence command on the requested ring (all asics). |
| 119 | * Returns 0 on success, -ENOMEM on failure. |
| 120 | */ |
Christian König | 364beb2 | 2016-02-16 17:39:39 +0100 | [diff] [blame] | 121 | int amdgpu_fence_emit(struct amdgpu_ring *ring, struct fence **f) |
Alex Deucher | d38ceaf | 2015-04-20 16:55:21 -0400 | [diff] [blame] | 122 | { |
| 123 | struct amdgpu_device *adev = ring->adev; |
Christian König | 364beb2 | 2016-02-16 17:39:39 +0100 | [diff] [blame] | 124 | struct amdgpu_fence *fence; |
Christian König | 4a7d74f | 2016-03-14 14:29:46 +0100 | [diff] [blame] | 125 | struct fence **ptr; |
Christian König | c89377d | 2016-03-13 19:19:48 +0100 | [diff] [blame] | 126 | unsigned idx; |
Alex Deucher | d38ceaf | 2015-04-20 16:55:21 -0400 | [diff] [blame] | 127 | |
Christian König | 364beb2 | 2016-02-16 17:39:39 +0100 | [diff] [blame] | 128 | fence = kmem_cache_alloc(amdgpu_fence_slab, GFP_KERNEL); |
| 129 | if (fence == NULL) |
Alex Deucher | d38ceaf | 2015-04-20 16:55:21 -0400 | [diff] [blame] | 130 | return -ENOMEM; |
Christian König | 364beb2 | 2016-02-16 17:39:39 +0100 | [diff] [blame] | 131 | |
| 132 | fence->seq = ++ring->fence_drv.sync_seq; |
| 133 | fence->ring = ring; |
| 134 | fence_init(&fence->base, &amdgpu_fence_ops, |
Christian König | 4a7d74f | 2016-03-14 14:29:46 +0100 | [diff] [blame] | 135 | &ring->fence_drv.lock, |
Christian König | 364beb2 | 2016-02-16 17:39:39 +0100 | [diff] [blame] | 136 | adev->fence_context + ring->idx, |
| 137 | fence->seq); |
Chunming Zhou | 890ee23 | 2015-06-01 14:35:03 +0800 | [diff] [blame] | 138 | amdgpu_ring_emit_fence(ring, ring->fence_drv.gpu_addr, |
Christian König | 364beb2 | 2016-02-16 17:39:39 +0100 | [diff] [blame] | 139 | fence->seq, AMDGPU_FENCE_FLAG_INT); |
Christian König | c89377d | 2016-03-13 19:19:48 +0100 | [diff] [blame] | 140 | |
| 141 | idx = fence->seq & ring->fence_drv.num_fences_mask; |
| 142 | ptr = &ring->fence_drv.fences[idx]; |
| 143 | /* This function can't be called concurrently anyway, otherwise |
| 144 | * emitting the fence would mess up the hardware ring buffer. |
| 145 | */ |
Christian König | 4a7d74f | 2016-03-14 14:29:46 +0100 | [diff] [blame] | 146 | BUG_ON(rcu_dereference_protected(*ptr, 1)); |
Christian König | c89377d | 2016-03-13 19:19:48 +0100 | [diff] [blame] | 147 | |
| 148 | rcu_assign_pointer(*ptr, fence_get(&fence->base)); |
| 149 | |
Christian König | 364beb2 | 2016-02-16 17:39:39 +0100 | [diff] [blame] | 150 | *f = &fence->base; |
Christian König | c89377d | 2016-03-13 19:19:48 +0100 | [diff] [blame] | 151 | |
Alex Deucher | d38ceaf | 2015-04-20 16:55:21 -0400 | [diff] [blame] | 152 | return 0; |
| 153 | } |
| 154 | |
| 155 | /** |
Christian König | c2776af | 2015-11-03 13:27:39 +0100 | [diff] [blame] | 156 | * amdgpu_fence_schedule_fallback - schedule fallback check |
| 157 | * |
| 158 | * @ring: pointer to struct amdgpu_ring |
| 159 | * |
| 160 | * Start a timer as fallback to our interrupts. |
| 161 | */ |
| 162 | static void amdgpu_fence_schedule_fallback(struct amdgpu_ring *ring) |
| 163 | { |
| 164 | mod_timer(&ring->fence_drv.fallback_timer, |
| 165 | jiffies + AMDGPU_FENCE_JIFFIES_TIMEOUT); |
| 166 | } |
| 167 | |
| 168 | /** |
Christian König | ca08e04 | 2016-03-11 17:57:56 +0100 | [diff] [blame] | 169 | * amdgpu_fence_process - check for fence activity |
Alex Deucher | d38ceaf | 2015-04-20 16:55:21 -0400 | [diff] [blame] | 170 | * |
| 171 | * @ring: pointer to struct amdgpu_ring |
| 172 | * |
| 173 | * Checks the current fence value and calculates the last |
Christian König | ca08e04 | 2016-03-11 17:57:56 +0100 | [diff] [blame] | 174 | * signalled fence value. Wakes the fence queue if the |
| 175 | * sequence number has increased. |
Alex Deucher | d38ceaf | 2015-04-20 16:55:21 -0400 | [diff] [blame] | 176 | */ |
Christian König | ca08e04 | 2016-03-11 17:57:56 +0100 | [diff] [blame] | 177 | void amdgpu_fence_process(struct amdgpu_ring *ring) |
Alex Deucher | d38ceaf | 2015-04-20 16:55:21 -0400 | [diff] [blame] | 178 | { |
Christian König | 4a7d74f | 2016-03-14 14:29:46 +0100 | [diff] [blame] | 179 | struct amdgpu_fence_driver *drv = &ring->fence_drv; |
Alex Deucher | d38ceaf | 2015-04-20 16:55:21 -0400 | [diff] [blame] | 180 | uint64_t seq, last_seq, last_emitted; |
Christian König | 4a7d74f | 2016-03-14 14:29:46 +0100 | [diff] [blame] | 181 | int r; |
Alex Deucher | d38ceaf | 2015-04-20 16:55:21 -0400 | [diff] [blame] | 182 | |
Alex Deucher | d38ceaf | 2015-04-20 16:55:21 -0400 | [diff] [blame] | 183 | do { |
Christian König | 4a7d74f | 2016-03-14 14:29:46 +0100 | [diff] [blame] | 184 | last_seq = atomic64_read(&ring->fence_drv.last_seq); |
Christian König | 5907a0d | 2016-01-18 15:16:53 +0100 | [diff] [blame] | 185 | last_emitted = ring->fence_drv.sync_seq; |
Alex Deucher | d38ceaf | 2015-04-20 16:55:21 -0400 | [diff] [blame] | 186 | seq = amdgpu_fence_read(ring); |
| 187 | seq |= last_seq & 0xffffffff00000000LL; |
| 188 | if (seq < last_seq) { |
| 189 | seq &= 0xffffffff; |
| 190 | seq |= last_emitted & 0xffffffff00000000LL; |
| 191 | } |
| 192 | |
Christian König | 4a7d74f | 2016-03-14 14:29:46 +0100 | [diff] [blame] | 193 | } while (atomic64_cmpxchg(&drv->last_seq, last_seq, seq) != last_seq); |
Alex Deucher | d38ceaf | 2015-04-20 16:55:21 -0400 | [diff] [blame] | 194 | |
| 195 | if (seq < last_emitted) |
Christian König | c2776af | 2015-11-03 13:27:39 +0100 | [diff] [blame] | 196 | amdgpu_fence_schedule_fallback(ring); |
Alex Deucher | d38ceaf | 2015-04-20 16:55:21 -0400 | [diff] [blame] | 197 | |
Christian König | 4a7d74f | 2016-03-14 14:29:46 +0100 | [diff] [blame] | 198 | while (last_seq != seq) { |
| 199 | struct fence *fence, **ptr; |
| 200 | |
| 201 | ptr = &drv->fences[++last_seq & drv->num_fences_mask]; |
| 202 | |
| 203 | /* There is always exactly one thread signaling this fence slot */ |
| 204 | fence = rcu_dereference_protected(*ptr, 1); |
| 205 | rcu_assign_pointer(*ptr, NULL); |
| 206 | |
| 207 | BUG_ON(!fence); |
| 208 | |
| 209 | r = fence_signal(fence); |
| 210 | if (!r) |
| 211 | FENCE_TRACE(fence, "signaled from irq context\n"); |
| 212 | else |
| 213 | BUG(); |
| 214 | |
| 215 | fence_put(fence); |
| 216 | } |
Alex Deucher | d38ceaf | 2015-04-20 16:55:21 -0400 | [diff] [blame] | 217 | } |
| 218 | |
| 219 | /** |
Christian König | c2776af | 2015-11-03 13:27:39 +0100 | [diff] [blame] | 220 | * amdgpu_fence_fallback - fallback for hardware interrupts |
| 221 | * |
| 222 | * @work: delayed work item |
| 223 | * |
| 224 | * Checks for fence activity. |
| 225 | */ |
| 226 | static void amdgpu_fence_fallback(unsigned long arg) |
| 227 | { |
| 228 | struct amdgpu_ring *ring = (void *)arg; |
| 229 | |
| 230 | amdgpu_fence_process(ring); |
| 231 | } |
| 232 | |
| 233 | /** |
Alex Deucher | d38ceaf | 2015-04-20 16:55:21 -0400 | [diff] [blame] | 234 | * amdgpu_fence_wait_empty - wait for all fences to signal |
| 235 | * |
| 236 | * @adev: amdgpu device pointer |
| 237 | * @ring: ring index the fence is associated with |
| 238 | * |
| 239 | * Wait for all fences on the requested ring to signal (all asics). |
| 240 | * Returns 0 if the fences have passed, error for all other cases. |
Alex Deucher | d38ceaf | 2015-04-20 16:55:21 -0400 | [diff] [blame] | 241 | */ |
| 242 | int amdgpu_fence_wait_empty(struct amdgpu_ring *ring) |
| 243 | { |
Christian König | f09c2be | 2016-03-13 19:37:01 +0100 | [diff] [blame] | 244 | uint64_t seq = ACCESS_ONCE(ring->fence_drv.sync_seq); |
| 245 | struct fence *fence, **ptr; |
| 246 | int r; |
Christian König | 00d2a2b | 2015-08-07 16:15:36 +0200 | [diff] [blame] | 247 | |
monk.liu | 7f06c23 | 2015-07-30 18:28:12 +0800 | [diff] [blame] | 248 | if (!seq) |
Alex Deucher | d38ceaf | 2015-04-20 16:55:21 -0400 | [diff] [blame] | 249 | return 0; |
| 250 | |
Christian König | f09c2be | 2016-03-13 19:37:01 +0100 | [diff] [blame] | 251 | ptr = &ring->fence_drv.fences[seq & ring->fence_drv.num_fences_mask]; |
| 252 | rcu_read_lock(); |
| 253 | fence = rcu_dereference(*ptr); |
| 254 | if (!fence || !fence_get_rcu(fence)) { |
| 255 | rcu_read_unlock(); |
| 256 | return 0; |
| 257 | } |
| 258 | rcu_read_unlock(); |
| 259 | |
| 260 | r = fence_wait(fence, false); |
| 261 | fence_put(fence); |
| 262 | return r; |
Alex Deucher | d38ceaf | 2015-04-20 16:55:21 -0400 | [diff] [blame] | 263 | } |
| 264 | |
| 265 | /** |
Alex Deucher | d38ceaf | 2015-04-20 16:55:21 -0400 | [diff] [blame] | 266 | * amdgpu_fence_count_emitted - get the count of emitted fences |
| 267 | * |
| 268 | * @ring: ring the fence is associated with |
| 269 | * |
| 270 | * Get the number of fences emitted on the requested ring (all asics). |
| 271 | * Returns the number of emitted fences on the ring. Used by the |
| 272 | * dynpm code to ring track activity. |
| 273 | */ |
| 274 | unsigned amdgpu_fence_count_emitted(struct amdgpu_ring *ring) |
| 275 | { |
| 276 | uint64_t emitted; |
| 277 | |
| 278 | /* We are not protected by ring lock when reading the last sequence |
| 279 | * but it's ok to report slightly wrong fence count here. |
| 280 | */ |
| 281 | amdgpu_fence_process(ring); |
Christian König | 5907a0d | 2016-01-18 15:16:53 +0100 | [diff] [blame] | 282 | emitted = ring->fence_drv.sync_seq |
Alex Deucher | d38ceaf | 2015-04-20 16:55:21 -0400 | [diff] [blame] | 283 | - atomic64_read(&ring->fence_drv.last_seq); |
| 284 | /* to avoid 32bits warp around */ |
| 285 | if (emitted > 0x10000000) |
| 286 | emitted = 0x10000000; |
| 287 | |
| 288 | return (unsigned)emitted; |
| 289 | } |
| 290 | |
| 291 | /** |
Alex Deucher | d38ceaf | 2015-04-20 16:55:21 -0400 | [diff] [blame] | 292 | * amdgpu_fence_driver_start_ring - make the fence driver |
| 293 | * ready for use on the requested ring. |
| 294 | * |
| 295 | * @ring: ring to start the fence driver on |
| 296 | * @irq_src: interrupt source to use for this ring |
| 297 | * @irq_type: interrupt type to use for this ring |
| 298 | * |
| 299 | * Make the fence driver ready for processing (all asics). |
| 300 | * Not all asics have all rings, so each asic will only |
| 301 | * start the fence driver on the rings it has. |
| 302 | * Returns 0 for success, errors for failure. |
| 303 | */ |
| 304 | int amdgpu_fence_driver_start_ring(struct amdgpu_ring *ring, |
| 305 | struct amdgpu_irq_src *irq_src, |
| 306 | unsigned irq_type) |
| 307 | { |
| 308 | struct amdgpu_device *adev = ring->adev; |
| 309 | uint64_t index; |
| 310 | |
| 311 | if (ring != &adev->uvd.ring) { |
| 312 | ring->fence_drv.cpu_addr = &adev->wb.wb[ring->fence_offs]; |
| 313 | ring->fence_drv.gpu_addr = adev->wb.gpu_addr + (ring->fence_offs * 4); |
| 314 | } else { |
| 315 | /* put fence directly behind firmware */ |
| 316 | index = ALIGN(adev->uvd.fw->size, 8); |
| 317 | ring->fence_drv.cpu_addr = adev->uvd.cpu_addr + index; |
| 318 | ring->fence_drv.gpu_addr = adev->uvd.gpu_addr + index; |
| 319 | } |
| 320 | amdgpu_fence_write(ring, atomic64_read(&ring->fence_drv.last_seq)); |
Chunming Zhou | c6a4079 | 2015-06-01 14:14:32 +0800 | [diff] [blame] | 321 | amdgpu_irq_get(adev, irq_src, irq_type); |
| 322 | |
Alex Deucher | d38ceaf | 2015-04-20 16:55:21 -0400 | [diff] [blame] | 323 | ring->fence_drv.irq_src = irq_src; |
| 324 | ring->fence_drv.irq_type = irq_type; |
Chunming Zhou | c6a4079 | 2015-06-01 14:14:32 +0800 | [diff] [blame] | 325 | ring->fence_drv.initialized = true; |
| 326 | |
Alex Deucher | d38ceaf | 2015-04-20 16:55:21 -0400 | [diff] [blame] | 327 | dev_info(adev->dev, "fence driver on ring %d use gpu addr 0x%016llx, " |
| 328 | "cpu addr 0x%p\n", ring->idx, |
| 329 | ring->fence_drv.gpu_addr, ring->fence_drv.cpu_addr); |
| 330 | return 0; |
| 331 | } |
| 332 | |
| 333 | /** |
| 334 | * amdgpu_fence_driver_init_ring - init the fence driver |
| 335 | * for the requested ring. |
| 336 | * |
| 337 | * @ring: ring to init the fence driver on |
Christian König | e6151a0 | 2016-03-15 14:52:26 +0100 | [diff] [blame] | 338 | * @num_hw_submission: number of entries on the hardware queue |
Alex Deucher | d38ceaf | 2015-04-20 16:55:21 -0400 | [diff] [blame] | 339 | * |
| 340 | * Init the fence driver for the requested ring (all asics). |
| 341 | * Helper function for amdgpu_fence_driver_init(). |
| 342 | */ |
Christian König | e6151a0 | 2016-03-15 14:52:26 +0100 | [diff] [blame] | 343 | int amdgpu_fence_driver_init_ring(struct amdgpu_ring *ring, |
| 344 | unsigned num_hw_submission) |
Alex Deucher | d38ceaf | 2015-04-20 16:55:21 -0400 | [diff] [blame] | 345 | { |
Chunming Zhou | cadf97b | 2016-01-15 11:25:00 +0800 | [diff] [blame] | 346 | long timeout; |
Christian König | 5907a0d | 2016-01-18 15:16:53 +0100 | [diff] [blame] | 347 | int r; |
Alex Deucher | d38ceaf | 2015-04-20 16:55:21 -0400 | [diff] [blame] | 348 | |
Christian König | e6151a0 | 2016-03-15 14:52:26 +0100 | [diff] [blame] | 349 | /* Check that num_hw_submission is a power of two */ |
| 350 | if ((num_hw_submission & (num_hw_submission - 1)) != 0) |
| 351 | return -EINVAL; |
| 352 | |
Alex Deucher | d38ceaf | 2015-04-20 16:55:21 -0400 | [diff] [blame] | 353 | ring->fence_drv.cpu_addr = NULL; |
| 354 | ring->fence_drv.gpu_addr = 0; |
Christian König | 5907a0d | 2016-01-18 15:16:53 +0100 | [diff] [blame] | 355 | ring->fence_drv.sync_seq = 0; |
Alex Deucher | d38ceaf | 2015-04-20 16:55:21 -0400 | [diff] [blame] | 356 | atomic64_set(&ring->fence_drv.last_seq, 0); |
| 357 | ring->fence_drv.initialized = false; |
| 358 | |
Christian König | c2776af | 2015-11-03 13:27:39 +0100 | [diff] [blame] | 359 | setup_timer(&ring->fence_drv.fallback_timer, amdgpu_fence_fallback, |
| 360 | (unsigned long)ring); |
Alex Deucher | b80d847 | 2015-08-16 22:55:02 -0400 | [diff] [blame] | 361 | |
Christian König | c89377d | 2016-03-13 19:19:48 +0100 | [diff] [blame] | 362 | ring->fence_drv.num_fences_mask = num_hw_submission - 1; |
Christian König | 4a7d74f | 2016-03-14 14:29:46 +0100 | [diff] [blame] | 363 | spin_lock_init(&ring->fence_drv.lock); |
Christian König | c89377d | 2016-03-13 19:19:48 +0100 | [diff] [blame] | 364 | ring->fence_drv.fences = kcalloc(num_hw_submission, sizeof(void *), |
| 365 | GFP_KERNEL); |
| 366 | if (!ring->fence_drv.fences) |
| 367 | return -ENOMEM; |
Christian König | 5ec92a7 | 2015-09-07 18:43:02 +0200 | [diff] [blame] | 368 | |
Chunming Zhou | cadf97b | 2016-01-15 11:25:00 +0800 | [diff] [blame] | 369 | timeout = msecs_to_jiffies(amdgpu_lockup_timeout); |
| 370 | if (timeout == 0) { |
| 371 | /* |
| 372 | * FIXME: |
| 373 | * Delayed workqueue cannot use it directly, |
| 374 | * so the scheduler will not use delayed workqueue if |
| 375 | * MAX_SCHEDULE_TIMEOUT is set. |
| 376 | * Currently keep it simple and silly. |
| 377 | */ |
| 378 | timeout = MAX_SCHEDULE_TIMEOUT; |
| 379 | } |
| 380 | r = amd_sched_init(&ring->sched, &amdgpu_sched_ops, |
Christian König | e6151a0 | 2016-03-15 14:52:26 +0100 | [diff] [blame] | 381 | num_hw_submission, |
Chunming Zhou | cadf97b | 2016-01-15 11:25:00 +0800 | [diff] [blame] | 382 | timeout, ring->name); |
| 383 | if (r) { |
| 384 | DRM_ERROR("Failed to create scheduler on ring %s.\n", |
| 385 | ring->name); |
| 386 | return r; |
Alex Deucher | b80d847 | 2015-08-16 22:55:02 -0400 | [diff] [blame] | 387 | } |
Christian König | 4f839a2 | 2015-09-08 20:22:31 +0200 | [diff] [blame] | 388 | |
| 389 | return 0; |
Alex Deucher | d38ceaf | 2015-04-20 16:55:21 -0400 | [diff] [blame] | 390 | } |
| 391 | |
| 392 | /** |
| 393 | * amdgpu_fence_driver_init - init the fence driver |
| 394 | * for all possible rings. |
| 395 | * |
| 396 | * @adev: amdgpu device pointer |
| 397 | * |
| 398 | * Init the fence driver for all possible rings (all asics). |
| 399 | * Not all asics have all rings, so each asic will only |
| 400 | * start the fence driver on the rings it has using |
| 401 | * amdgpu_fence_driver_start_ring(). |
| 402 | * Returns 0 for success. |
| 403 | */ |
| 404 | int amdgpu_fence_driver_init(struct amdgpu_device *adev) |
| 405 | { |
Chunming Zhou | b49c84a | 2015-11-05 11:28:28 +0800 | [diff] [blame] | 406 | if (atomic_inc_return(&amdgpu_fence_slab_ref) == 1) { |
| 407 | amdgpu_fence_slab = kmem_cache_create( |
| 408 | "amdgpu_fence", sizeof(struct amdgpu_fence), 0, |
| 409 | SLAB_HWCACHE_ALIGN, NULL); |
| 410 | if (!amdgpu_fence_slab) |
| 411 | return -ENOMEM; |
| 412 | } |
Alex Deucher | d38ceaf | 2015-04-20 16:55:21 -0400 | [diff] [blame] | 413 | if (amdgpu_debugfs_fence_init(adev)) |
| 414 | dev_err(adev->dev, "fence debugfs file creation failed\n"); |
| 415 | |
| 416 | return 0; |
| 417 | } |
| 418 | |
| 419 | /** |
| 420 | * amdgpu_fence_driver_fini - tear down the fence driver |
| 421 | * for all possible rings. |
| 422 | * |
| 423 | * @adev: amdgpu device pointer |
| 424 | * |
| 425 | * Tear down the fence driver for all possible rings (all asics). |
| 426 | */ |
| 427 | void amdgpu_fence_driver_fini(struct amdgpu_device *adev) |
| 428 | { |
Christian König | c89377d | 2016-03-13 19:19:48 +0100 | [diff] [blame] | 429 | unsigned i, j; |
| 430 | int r; |
Alex Deucher | d38ceaf | 2015-04-20 16:55:21 -0400 | [diff] [blame] | 431 | |
Alex Deucher | d38ceaf | 2015-04-20 16:55:21 -0400 | [diff] [blame] | 432 | for (i = 0; i < AMDGPU_MAX_RINGS; i++) { |
| 433 | struct amdgpu_ring *ring = adev->rings[i]; |
Christian König | c2776af | 2015-11-03 13:27:39 +0100 | [diff] [blame] | 434 | |
Alex Deucher | d38ceaf | 2015-04-20 16:55:21 -0400 | [diff] [blame] | 435 | if (!ring || !ring->fence_drv.initialized) |
| 436 | continue; |
| 437 | r = amdgpu_fence_wait_empty(ring); |
| 438 | if (r) { |
| 439 | /* no need to trigger GPU reset as we are unloading */ |
| 440 | amdgpu_fence_driver_force_completion(adev); |
| 441 | } |
Chunming Zhou | c6a4079 | 2015-06-01 14:14:32 +0800 | [diff] [blame] | 442 | amdgpu_irq_put(adev, ring->fence_drv.irq_src, |
| 443 | ring->fence_drv.irq_type); |
Christian König | 4f839a2 | 2015-09-08 20:22:31 +0200 | [diff] [blame] | 444 | amd_sched_fini(&ring->sched); |
Christian König | c2776af | 2015-11-03 13:27:39 +0100 | [diff] [blame] | 445 | del_timer_sync(&ring->fence_drv.fallback_timer); |
Christian König | c89377d | 2016-03-13 19:19:48 +0100 | [diff] [blame] | 446 | for (j = 0; j <= ring->fence_drv.num_fences_mask; ++j) |
| 447 | fence_put(ring->fence_drv.fences[i]); |
| 448 | kfree(ring->fence_drv.fences); |
Alex Deucher | d38ceaf | 2015-04-20 16:55:21 -0400 | [diff] [blame] | 449 | ring->fence_drv.initialized = false; |
| 450 | } |
Christian König | c89377d | 2016-03-13 19:19:48 +0100 | [diff] [blame] | 451 | |
| 452 | if (atomic_dec_and_test(&amdgpu_fence_slab_ref)) |
| 453 | kmem_cache_destroy(amdgpu_fence_slab); |
Alex Deucher | d38ceaf | 2015-04-20 16:55:21 -0400 | [diff] [blame] | 454 | } |
| 455 | |
| 456 | /** |
Alex Deucher | 5ceb54c | 2015-08-05 12:41:48 -0400 | [diff] [blame] | 457 | * amdgpu_fence_driver_suspend - suspend the fence driver |
| 458 | * for all possible rings. |
| 459 | * |
| 460 | * @adev: amdgpu device pointer |
| 461 | * |
| 462 | * Suspend the fence driver for all possible rings (all asics). |
| 463 | */ |
| 464 | void amdgpu_fence_driver_suspend(struct amdgpu_device *adev) |
| 465 | { |
| 466 | int i, r; |
| 467 | |
Alex Deucher | 5ceb54c | 2015-08-05 12:41:48 -0400 | [diff] [blame] | 468 | for (i = 0; i < AMDGPU_MAX_RINGS; i++) { |
| 469 | struct amdgpu_ring *ring = adev->rings[i]; |
| 470 | if (!ring || !ring->fence_drv.initialized) |
| 471 | continue; |
| 472 | |
| 473 | /* wait for gpu to finish processing current batch */ |
| 474 | r = amdgpu_fence_wait_empty(ring); |
| 475 | if (r) { |
| 476 | /* delay GPU reset to resume */ |
| 477 | amdgpu_fence_driver_force_completion(adev); |
| 478 | } |
| 479 | |
| 480 | /* disable the interrupt */ |
| 481 | amdgpu_irq_put(adev, ring->fence_drv.irq_src, |
| 482 | ring->fence_drv.irq_type); |
| 483 | } |
Alex Deucher | 5ceb54c | 2015-08-05 12:41:48 -0400 | [diff] [blame] | 484 | } |
| 485 | |
| 486 | /** |
| 487 | * amdgpu_fence_driver_resume - resume the fence driver |
| 488 | * for all possible rings. |
| 489 | * |
| 490 | * @adev: amdgpu device pointer |
| 491 | * |
| 492 | * Resume the fence driver for all possible rings (all asics). |
| 493 | * Not all asics have all rings, so each asic will only |
| 494 | * start the fence driver on the rings it has using |
| 495 | * amdgpu_fence_driver_start_ring(). |
| 496 | * Returns 0 for success. |
| 497 | */ |
| 498 | void amdgpu_fence_driver_resume(struct amdgpu_device *adev) |
| 499 | { |
| 500 | int i; |
| 501 | |
Alex Deucher | 5ceb54c | 2015-08-05 12:41:48 -0400 | [diff] [blame] | 502 | for (i = 0; i < AMDGPU_MAX_RINGS; i++) { |
| 503 | struct amdgpu_ring *ring = adev->rings[i]; |
| 504 | if (!ring || !ring->fence_drv.initialized) |
| 505 | continue; |
| 506 | |
| 507 | /* enable the interrupt */ |
| 508 | amdgpu_irq_get(adev, ring->fence_drv.irq_src, |
| 509 | ring->fence_drv.irq_type); |
| 510 | } |
Alex Deucher | 5ceb54c | 2015-08-05 12:41:48 -0400 | [diff] [blame] | 511 | } |
| 512 | |
| 513 | /** |
Alex Deucher | d38ceaf | 2015-04-20 16:55:21 -0400 | [diff] [blame] | 514 | * amdgpu_fence_driver_force_completion - force all fence waiter to complete |
| 515 | * |
| 516 | * @adev: amdgpu device pointer |
| 517 | * |
| 518 | * In case of GPU reset failure make sure no process keep waiting on fence |
| 519 | * that will never complete. |
| 520 | */ |
| 521 | void amdgpu_fence_driver_force_completion(struct amdgpu_device *adev) |
| 522 | { |
| 523 | int i; |
| 524 | |
| 525 | for (i = 0; i < AMDGPU_MAX_RINGS; i++) { |
| 526 | struct amdgpu_ring *ring = adev->rings[i]; |
| 527 | if (!ring || !ring->fence_drv.initialized) |
| 528 | continue; |
| 529 | |
Christian König | 5907a0d | 2016-01-18 15:16:53 +0100 | [diff] [blame] | 530 | amdgpu_fence_write(ring, ring->fence_drv.sync_seq); |
Alex Deucher | d38ceaf | 2015-04-20 16:55:21 -0400 | [diff] [blame] | 531 | } |
| 532 | } |
| 533 | |
Christian König | a95e264 | 2015-11-03 12:21:57 +0100 | [diff] [blame] | 534 | /* |
| 535 | * Common fence implementation |
| 536 | */ |
| 537 | |
| 538 | static const char *amdgpu_fence_get_driver_name(struct fence *fence) |
| 539 | { |
| 540 | return "amdgpu"; |
| 541 | } |
| 542 | |
| 543 | static const char *amdgpu_fence_get_timeline_name(struct fence *f) |
| 544 | { |
| 545 | struct amdgpu_fence *fence = to_amdgpu_fence(f); |
| 546 | return (const char *)fence->ring->name; |
| 547 | } |
| 548 | |
| 549 | /** |
Christian König | a95e264 | 2015-11-03 12:21:57 +0100 | [diff] [blame] | 550 | * amdgpu_fence_enable_signaling - enable signalling on fence |
| 551 | * @fence: fence |
| 552 | * |
| 553 | * This function is called with fence_queue lock held, and adds a callback |
| 554 | * to fence_queue that checks if this fence is signaled, and if so it |
| 555 | * signals the fence and removes itself. |
| 556 | */ |
| 557 | static bool amdgpu_fence_enable_signaling(struct fence *f) |
| 558 | { |
| 559 | struct amdgpu_fence *fence = to_amdgpu_fence(f); |
| 560 | struct amdgpu_ring *ring = fence->ring; |
| 561 | |
Christian König | c2776af | 2015-11-03 13:27:39 +0100 | [diff] [blame] | 562 | if (!timer_pending(&ring->fence_drv.fallback_timer)) |
| 563 | amdgpu_fence_schedule_fallback(ring); |
Christian König | 4a7d74f | 2016-03-14 14:29:46 +0100 | [diff] [blame] | 564 | |
Christian König | a95e264 | 2015-11-03 12:21:57 +0100 | [diff] [blame] | 565 | FENCE_TRACE(&fence->base, "armed on ring %i!\n", ring->idx); |
Christian König | 4a7d74f | 2016-03-14 14:29:46 +0100 | [diff] [blame] | 566 | |
Christian König | a95e264 | 2015-11-03 12:21:57 +0100 | [diff] [blame] | 567 | return true; |
| 568 | } |
| 569 | |
Christian König | b441353 | 2016-03-15 13:40:17 +0100 | [diff] [blame] | 570 | /** |
| 571 | * amdgpu_fence_free - free up the fence memory |
| 572 | * |
| 573 | * @rcu: RCU callback head |
| 574 | * |
| 575 | * Free up the fence memory after the RCU grace period. |
| 576 | */ |
| 577 | static void amdgpu_fence_free(struct rcu_head *rcu) |
Chunming Zhou | b49c84a | 2015-11-05 11:28:28 +0800 | [diff] [blame] | 578 | { |
Christian König | b441353 | 2016-03-15 13:40:17 +0100 | [diff] [blame] | 579 | struct fence *f = container_of(rcu, struct fence, rcu); |
Chunming Zhou | b49c84a | 2015-11-05 11:28:28 +0800 | [diff] [blame] | 580 | struct amdgpu_fence *fence = to_amdgpu_fence(f); |
| 581 | kmem_cache_free(amdgpu_fence_slab, fence); |
| 582 | } |
| 583 | |
Christian König | b441353 | 2016-03-15 13:40:17 +0100 | [diff] [blame] | 584 | /** |
| 585 | * amdgpu_fence_release - callback that fence can be freed |
| 586 | * |
| 587 | * @fence: fence |
| 588 | * |
| 589 | * This function is called when the reference count becomes zero. |
| 590 | * It just RCU schedules freeing up the fence. |
| 591 | */ |
| 592 | static void amdgpu_fence_release(struct fence *f) |
| 593 | { |
| 594 | call_rcu(&f->rcu, amdgpu_fence_free); |
| 595 | } |
| 596 | |
Christian König | 22e5a2f | 2016-03-11 15:12:53 +0100 | [diff] [blame] | 597 | static const struct fence_ops amdgpu_fence_ops = { |
Christian König | a95e264 | 2015-11-03 12:21:57 +0100 | [diff] [blame] | 598 | .get_driver_name = amdgpu_fence_get_driver_name, |
| 599 | .get_timeline_name = amdgpu_fence_get_timeline_name, |
| 600 | .enable_signaling = amdgpu_fence_enable_signaling, |
Christian König | a95e264 | 2015-11-03 12:21:57 +0100 | [diff] [blame] | 601 | .wait = fence_default_wait, |
Chunming Zhou | b49c84a | 2015-11-05 11:28:28 +0800 | [diff] [blame] | 602 | .release = amdgpu_fence_release, |
Christian König | a95e264 | 2015-11-03 12:21:57 +0100 | [diff] [blame] | 603 | }; |
Alex Deucher | d38ceaf | 2015-04-20 16:55:21 -0400 | [diff] [blame] | 604 | |
| 605 | /* |
| 606 | * Fence debugfs |
| 607 | */ |
| 608 | #if defined(CONFIG_DEBUG_FS) |
| 609 | static int amdgpu_debugfs_fence_info(struct seq_file *m, void *data) |
| 610 | { |
| 611 | struct drm_info_node *node = (struct drm_info_node *)m->private; |
| 612 | struct drm_device *dev = node->minor->dev; |
| 613 | struct amdgpu_device *adev = dev->dev_private; |
Christian König | 5907a0d | 2016-01-18 15:16:53 +0100 | [diff] [blame] | 614 | int i; |
Alex Deucher | d38ceaf | 2015-04-20 16:55:21 -0400 | [diff] [blame] | 615 | |
| 616 | for (i = 0; i < AMDGPU_MAX_RINGS; ++i) { |
| 617 | struct amdgpu_ring *ring = adev->rings[i]; |
| 618 | if (!ring || !ring->fence_drv.initialized) |
| 619 | continue; |
| 620 | |
| 621 | amdgpu_fence_process(ring); |
| 622 | |
Christian König | 344c19f | 2015-06-02 15:47:16 +0200 | [diff] [blame] | 623 | seq_printf(m, "--- ring %d (%s) ---\n", i, ring->name); |
Alex Deucher | d38ceaf | 2015-04-20 16:55:21 -0400 | [diff] [blame] | 624 | seq_printf(m, "Last signaled fence 0x%016llx\n", |
| 625 | (unsigned long long)atomic64_read(&ring->fence_drv.last_seq)); |
| 626 | seq_printf(m, "Last emitted 0x%016llx\n", |
Christian König | 5907a0d | 2016-01-18 15:16:53 +0100 | [diff] [blame] | 627 | ring->fence_drv.sync_seq); |
Alex Deucher | d38ceaf | 2015-04-20 16:55:21 -0400 | [diff] [blame] | 628 | } |
| 629 | return 0; |
| 630 | } |
| 631 | |
Alex Deucher | 18db89b | 2016-01-14 10:25:22 -0500 | [diff] [blame] | 632 | /** |
| 633 | * amdgpu_debugfs_gpu_reset - manually trigger a gpu reset |
| 634 | * |
| 635 | * Manually trigger a gpu reset at the next fence wait. |
| 636 | */ |
| 637 | static int amdgpu_debugfs_gpu_reset(struct seq_file *m, void *data) |
| 638 | { |
| 639 | struct drm_info_node *node = (struct drm_info_node *) m->private; |
| 640 | struct drm_device *dev = node->minor->dev; |
| 641 | struct amdgpu_device *adev = dev->dev_private; |
| 642 | |
| 643 | seq_printf(m, "gpu reset\n"); |
| 644 | amdgpu_gpu_reset(adev); |
| 645 | |
| 646 | return 0; |
| 647 | } |
| 648 | |
Alex Deucher | d38ceaf | 2015-04-20 16:55:21 -0400 | [diff] [blame] | 649 | static struct drm_info_list amdgpu_debugfs_fence_list[] = { |
| 650 | {"amdgpu_fence_info", &amdgpu_debugfs_fence_info, 0, NULL}, |
Alex Deucher | 18db89b | 2016-01-14 10:25:22 -0500 | [diff] [blame] | 651 | {"amdgpu_gpu_reset", &amdgpu_debugfs_gpu_reset, 0, NULL} |
Alex Deucher | d38ceaf | 2015-04-20 16:55:21 -0400 | [diff] [blame] | 652 | }; |
| 653 | #endif |
| 654 | |
| 655 | int amdgpu_debugfs_fence_init(struct amdgpu_device *adev) |
| 656 | { |
| 657 | #if defined(CONFIG_DEBUG_FS) |
Alex Deucher | 18db89b | 2016-01-14 10:25:22 -0500 | [diff] [blame] | 658 | return amdgpu_debugfs_add_files(adev, amdgpu_debugfs_fence_list, 2); |
Alex Deucher | d38ceaf | 2015-04-20 16:55:21 -0400 | [diff] [blame] | 659 | #else |
| 660 | return 0; |
| 661 | #endif |
| 662 | } |
| 663 | |