amdgpu_sync.c 6.05 KB
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34
/*
 * Copyright 2014 Advanced Micro Devices, Inc.
 * All Rights Reserved.
 *
 * Permission is hereby granted, free of charge, to any person obtaining a
 * copy of this software and associated documentation files (the
 * "Software"), to deal in the Software without restriction, including
 * without limitation the rights to use, copy, modify, merge, publish,
 * distribute, sub license, and/or sell copies of the Software, and to
 * permit persons to whom the Software is furnished to do so, subject to
 * the following conditions:
 *
 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
 * FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT. IN NO EVENT SHALL
 * THE COPYRIGHT HOLDERS, AUTHORS AND/OR ITS SUPPLIERS BE LIABLE FOR ANY CLAIM,
 * DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR
 * OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE
 * USE OR OTHER DEALINGS IN THE SOFTWARE.
 *
 * The above copyright notice and this permission notice (including the
 * next paragraph) shall be included in all copies or substantial portions
 * of the Software.
 *
 */
/*
 * Authors:
 *    Christian König <christian.koenig@amd.com>
 */

#include <drm/drmP.h>
#include "amdgpu.h"
#include "amdgpu_trace.h"

35 36 37 38 39
struct amdgpu_sync_entry {
	struct hlist_node	node;
	struct fence		*fence;
};

40 41 42 43 44 45 46 47 48
/**
 * amdgpu_sync_create - zero init sync object
 *
 * @sync: sync object to initialize
 *
 * Just clear the sync object for now.
 */
void amdgpu_sync_create(struct amdgpu_sync *sync)
{
49
	hash_init(sync->fences);
50 51 52
	sync->last_vm_update = NULL;
}

53 54 55 56 57 58 59 60
/**
 * amdgpu_sync_same_dev - test if fence belong to us
 *
 * @adev: amdgpu device to use for the test
 * @f: fence to test
 *
 * Test if the fence was issued by us.
 */
61 62 63 64
static bool amdgpu_sync_same_dev(struct amdgpu_device *adev, struct fence *f)
{
	struct amd_sched_fence *s_fence = to_amd_sched_fence(f);

65 66 67 68 69 70 71
	if (s_fence) {
		struct amdgpu_ring *ring;

		ring = container_of(s_fence->sched, struct amdgpu_ring, sched);
		return ring->adev == adev;
	}

72 73 74
	return false;
}

75 76 77 78 79 80 81 82
/**
 * amdgpu_sync_get_owner - extract the owner of a fence
 *
 * @fence: fence get the owner from
 *
 * Extract who originally created the fence.
 */
static void *amdgpu_sync_get_owner(struct fence *f)
83 84
{
	struct amd_sched_fence *s_fence = to_amd_sched_fence(f);
85

86
	if (s_fence)
87
		return s_fence->owner;
88

89
	return AMDGPU_FENCE_OWNER_UNDEFINED;
90 91
}

92 93 94 95 96 97 98 99
/**
 * amdgpu_sync_keep_later - Keep the later fence
 *
 * @keep: existing fence to test
 * @fence: new fence
 *
 * Either keep the existing fence or the new one, depending which one is later.
 */
100 101 102 103 104 105 106 107 108
static void amdgpu_sync_keep_later(struct fence **keep, struct fence *fence)
{
	if (*keep && fence_is_later(*keep, fence))
		return;

	fence_put(*keep);
	*keep = fence_get(fence);
}

109
/**
110
 * amdgpu_sync_fence - remember to sync to this fence
111 112 113 114 115
 *
 * @sync: sync object to add fence to
 * @fence: fence to sync to
 *
 */
116 117
int amdgpu_sync_fence(struct amdgpu_device *adev, struct amdgpu_sync *sync,
		      struct fence *f)
118
{
119
	struct amdgpu_sync_entry *e;
120

121 122 123
	if (!f)
		return 0;

124
	if (amdgpu_sync_same_dev(adev, f) &&
125
	    amdgpu_sync_get_owner(f) == AMDGPU_FENCE_OWNER_VM)
126
		amdgpu_sync_keep_later(&sync->last_vm_update, f);
127

128 129 130
	hash_for_each_possible(sync->fences, e, node, f->context) {
		if (unlikely(e->fence->context != f->context))
			continue;
131

132
		amdgpu_sync_keep_later(&e->fence, f);
133 134
		return 0;
	}
135

136 137 138
	e = kmalloc(sizeof(struct amdgpu_sync_entry), GFP_KERNEL);
	if (!e)
		return -ENOMEM;
139

140 141
	hash_add(sync->fences, &e->node, f->context);
	e->fence = fence_get(f);
142
	return 0;
143 144 145
}

/**
146
 * amdgpu_sync_resv - sync to a reservation object
147 148 149 150 151
 *
 * @sync: sync object to add fences from reservation object to
 * @resv: reservation object with embedded fence
 * @shared: true if we should only sync to the exclusive fence
 *
152
 * Sync to the fence
153 154 155 156 157 158 159 160
 */
int amdgpu_sync_resv(struct amdgpu_device *adev,
		     struct amdgpu_sync *sync,
		     struct reservation_object *resv,
		     void *owner)
{
	struct reservation_object_list *flist;
	struct fence *f;
161
	void *fence_owner;
162 163 164
	unsigned i;
	int r = 0;

165 166 167
	if (resv == NULL)
		return -EINVAL;

168 169
	/* always sync to the exclusive fence */
	f = reservation_object_get_excl(resv);
170
	r = amdgpu_sync_fence(adev, sync, f);
171 172 173 174 175 176 177 178

	flist = reservation_object_get_list(resv);
	if (!flist || r)
		return r;

	for (i = 0; i < flist->shared_count; ++i) {
		f = rcu_dereference_protected(flist->shared[i],
					      reservation_object_held(resv));
179
		if (amdgpu_sync_same_dev(adev, f)) {
180 181 182
			/* VM updates are only interesting
			 * for other VM updates and moves.
			 */
183
			fence_owner = amdgpu_sync_get_owner(f);
184 185
			if ((owner != AMDGPU_FENCE_OWNER_UNDEFINED) &&
			    (fence_owner != AMDGPU_FENCE_OWNER_UNDEFINED) &&
186
			    ((owner == AMDGPU_FENCE_OWNER_VM) !=
187
			     (fence_owner == AMDGPU_FENCE_OWNER_VM)))
188 189
				continue;

190 191 192 193
			/* Ignore fence from the same owner as
			 * long as it isn't undefined.
			 */
			if (owner != AMDGPU_FENCE_OWNER_UNDEFINED &&
194
			    fence_owner == owner)
195 196 197
				continue;
		}

198 199 200
		r = amdgpu_sync_fence(adev, sync, f);
		if (r)
			break;
201 202 203 204
	}
	return r;
}

205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226
struct fence *amdgpu_sync_get_fence(struct amdgpu_sync *sync)
{
	struct amdgpu_sync_entry *e;
	struct hlist_node *tmp;
	struct fence *f;
	int i;

	hash_for_each_safe(sync->fences, i, tmp, e, node) {

		f = e->fence;

		hash_del(&e->node);
		kfree(e);

		if (!fence_is_signaled(f))
			return f;

		fence_put(f);
	}
	return NULL;
}

227 228 229 230 231 232 233 234 235 236 237 238 239 240 241
int amdgpu_sync_wait(struct amdgpu_sync *sync)
{
	struct amdgpu_sync_entry *e;
	struct hlist_node *tmp;
	int i, r;

	hash_for_each_safe(sync->fences, i, tmp, e, node) {
		r = fence_wait(e->fence, false);
		if (r)
			return r;

		hash_del(&e->node);
		fence_put(e->fence);
		kfree(e);
	}
242

243 244 245
	return 0;
}

246 247 248 249 250
/**
 * amdgpu_sync_free - free the sync object
 *
 * @sync: sync object to use
 *
251
 * Free the sync object.
252
 */
253
void amdgpu_sync_free(struct amdgpu_sync *sync)
254
{
255 256
	struct amdgpu_sync_entry *e;
	struct hlist_node *tmp;
257 258
	unsigned i;

259 260 261 262 263 264
	hash_for_each_safe(sync->fences, i, tmp, e, node) {
		hash_del(&e->node);
		fence_put(e->fence);
		kfree(e);
	}

265
	fence_put(sync->last_vm_update);
266
}