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