blob: 855d56ac7115bdc59a7b5c440b80b1cb40992c0f [file] [log] [blame]
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001/*
2 * Copyright 2014 Advanced Micro Devices, Inc.
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 * Christian König <christian.koenig@amd.com>
29 */
30
31#include <drm/drmP.h>
32#include "amdgpu.h"
33#include "amdgpu_trace.h"
34
35/**
36 * amdgpu_sync_create - zero init sync object
37 *
38 * @sync: sync object to initialize
39 *
40 * Just clear the sync object for now.
41 */
42void amdgpu_sync_create(struct amdgpu_sync *sync)
43{
44 unsigned i;
45
46 for (i = 0; i < AMDGPU_NUM_SYNCS; ++i)
47 sync->semaphores[i] = NULL;
48
49 for (i = 0; i < AMDGPU_MAX_RINGS; ++i)
50 sync->sync_to[i] = NULL;
51
52 sync->last_vm_update = NULL;
53}
54
55/**
56 * amdgpu_sync_fence - use the semaphore to sync to a fence
57 *
58 * @sync: sync object to add fence to
59 * @fence: fence to sync to
60 *
61 * Sync to the fence using the semaphore objects
62 */
63void amdgpu_sync_fence(struct amdgpu_sync *sync,
64 struct amdgpu_fence *fence)
65{
66 struct amdgpu_fence *other;
67
68 if (!fence)
69 return;
70
71 other = sync->sync_to[fence->ring->idx];
72 sync->sync_to[fence->ring->idx] = amdgpu_fence_ref(
73 amdgpu_fence_later(fence, other));
74 amdgpu_fence_unref(&other);
75
76 if (fence->owner == AMDGPU_FENCE_OWNER_VM) {
77 other = sync->last_vm_update;
78 sync->last_vm_update = amdgpu_fence_ref(
79 amdgpu_fence_later(fence, other));
80 amdgpu_fence_unref(&other);
81 }
82}
83
84/**
85 * amdgpu_sync_resv - use the semaphores to sync to a reservation object
86 *
87 * @sync: sync object to add fences from reservation object to
88 * @resv: reservation object with embedded fence
89 * @shared: true if we should only sync to the exclusive fence
90 *
91 * Sync to the fence using the semaphore objects
92 */
93int amdgpu_sync_resv(struct amdgpu_device *adev,
94 struct amdgpu_sync *sync,
95 struct reservation_object *resv,
96 void *owner)
97{
98 struct reservation_object_list *flist;
99 struct fence *f;
100 struct amdgpu_fence *fence;
101 unsigned i;
102 int r = 0;
103
104 /* always sync to the exclusive fence */
105 f = reservation_object_get_excl(resv);
106 fence = f ? to_amdgpu_fence(f) : NULL;
107 if (fence && fence->ring->adev == adev)
108 amdgpu_sync_fence(sync, fence);
109 else if (f)
110 r = fence_wait(f, true);
111
112 flist = reservation_object_get_list(resv);
113 if (!flist || r)
114 return r;
115
116 for (i = 0; i < flist->shared_count; ++i) {
117 f = rcu_dereference_protected(flist->shared[i],
118 reservation_object_held(resv));
119 fence = to_amdgpu_fence(f);
120 if (fence && fence->ring->adev == adev) {
121 if (fence->owner != owner ||
122 fence->owner == AMDGPU_FENCE_OWNER_UNDEFINED)
123 amdgpu_sync_fence(sync, fence);
124 } else {
125 r = fence_wait(f, true);
126 if (r)
127 break;
128 }
129 }
130 return r;
131}
132
133/**
134 * amdgpu_sync_rings - sync ring to all registered fences
135 *
136 * @sync: sync object to use
137 * @ring: ring that needs sync
138 *
139 * Ensure that all registered fences are signaled before letting
140 * the ring continue. The caller must hold the ring lock.
141 */
142int amdgpu_sync_rings(struct amdgpu_sync *sync,
143 struct amdgpu_ring *ring)
144{
145 struct amdgpu_device *adev = ring->adev;
146 unsigned count = 0;
147 int i, r;
148
149 for (i = 0; i < AMDGPU_MAX_RINGS; ++i) {
150 struct amdgpu_fence *fence = sync->sync_to[i];
151 struct amdgpu_semaphore *semaphore;
152 struct amdgpu_ring *other = adev->rings[i];
153
154 /* check if we really need to sync */
155 if (!amdgpu_fence_need_sync(fence, ring))
156 continue;
157
158 /* prevent GPU deadlocks */
159 if (!other->ready) {
160 dev_err(adev->dev, "Syncing to a disabled ring!");
161 return -EINVAL;
162 }
163
164 if (count >= AMDGPU_NUM_SYNCS) {
165 /* not enough room, wait manually */
166 r = amdgpu_fence_wait(fence, false);
167 if (r)
168 return r;
169 continue;
170 }
171 r = amdgpu_semaphore_create(adev, &semaphore);
172 if (r)
173 return r;
174
175 sync->semaphores[count++] = semaphore;
176
177 /* allocate enough space for sync command */
178 r = amdgpu_ring_alloc(other, 16);
179 if (r)
180 return r;
181
182 /* emit the signal semaphore */
183 if (!amdgpu_semaphore_emit_signal(other, semaphore)) {
184 /* signaling wasn't successful wait manually */
185 amdgpu_ring_undo(other);
186 r = amdgpu_fence_wait(fence, false);
187 if (r)
188 return r;
189 continue;
190 }
191
192 /* we assume caller has already allocated space on waiters ring */
193 if (!amdgpu_semaphore_emit_wait(ring, semaphore)) {
194 /* waiting wasn't successful wait manually */
195 amdgpu_ring_undo(other);
196 r = amdgpu_fence_wait(fence, false);
197 if (r)
198 return r;
199 continue;
200 }
201
202 amdgpu_ring_commit(other);
203 amdgpu_fence_note_sync(fence, ring);
204 }
205
206 return 0;
207}
208
209/**
210 * amdgpu_sync_free - free the sync object
211 *
212 * @adev: amdgpu_device pointer
213 * @sync: sync object to use
214 * @fence: fence to use for the free
215 *
216 * Free the sync object by freeing all semaphores in it.
217 */
218void amdgpu_sync_free(struct amdgpu_device *adev,
219 struct amdgpu_sync *sync,
220 struct amdgpu_fence *fence)
221{
222 unsigned i;
223
224 for (i = 0; i < AMDGPU_NUM_SYNCS; ++i)
225 amdgpu_semaphore_free(adev, &sync->semaphores[i], fence);
226
227 for (i = 0; i < AMDGPU_MAX_RINGS; ++i)
228 amdgpu_fence_unref(&sync->sync_to[i]);
229
230 amdgpu_fence_unref(&sync->last_vm_update);
231}