radeon_semaphore.c 6.2 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
/*
 * Copyright 2011 Christian König.
 * 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 <deathsimple@vodafone.de>
 */
#include "drmP.h"
#include "drm.h"
#include "radeon.h"

34
static int radeon_semaphore_add_bo(struct radeon_device *rdev)
35
{
36
	struct radeon_semaphore_bo *bo;
37 38
	unsigned long irq_flags;
	uint64_t gpu_addr;
39 40
	uint32_t *cpu_ptr;
	int r, i;
41

42 43 44
	bo = kmalloc(sizeof(struct radeon_semaphore_bo), GFP_KERNEL);
	if (bo == NULL) {
		return -ENOMEM;
45
	}
46 47 48
	INIT_LIST_HEAD(&bo->free);
	INIT_LIST_HEAD(&bo->list);
	bo->nused = 0;
49

50
	r = radeon_ib_get(rdev, 0, &bo->ib, RADEON_SEMAPHORE_BO_SIZE);
51
	if (r) {
52 53
		dev_err(rdev->dev, "failed to get a bo after 5 retry\n");
		kfree(bo);
54 55
		return r;
	}
56 57
	gpu_addr = radeon_sa_bo_gpu_addr(bo->ib->sa_bo);
	cpu_ptr = radeon_sa_bo_cpu_addr(bo->ib->sa_bo);
58 59 60 61 62
	for (i = 0; i < (RADEON_SEMAPHORE_BO_SIZE/8); i++) {
		bo->semaphores[i].gpu_addr = gpu_addr;
		bo->semaphores[i].cpu_ptr = cpu_ptr;
		bo->semaphores[i].bo = bo;
		list_add_tail(&bo->semaphores[i].list, &bo->free);
63
		gpu_addr += 8;
64
		cpu_ptr += 2;
65 66
	}
	write_lock_irqsave(&rdev->semaphore_drv.lock, irq_flags);
67
	list_add_tail(&bo->list, &rdev->semaphore_drv.bo);
68
	write_unlock_irqrestore(&rdev->semaphore_drv.lock, irq_flags);
69 70
	return 0;
}
71

72 73 74
static void radeon_semaphore_del_bo_locked(struct radeon_device *rdev,
					   struct radeon_semaphore_bo *bo)
{
75
	radeon_sa_bo_free(rdev, &bo->ib->sa_bo, NULL);
76 77 78 79
	radeon_fence_unref(&bo->ib->fence);
	list_del(&bo->list);
	kfree(bo);
}
80

81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97
void radeon_semaphore_shrink_locked(struct radeon_device *rdev)
{
	struct radeon_semaphore_bo *bo, *n;

	if (list_empty(&rdev->semaphore_drv.bo)) {
		return;
	}
	/* only shrink if first bo has free semaphore */
	bo = list_first_entry(&rdev->semaphore_drv.bo, struct radeon_semaphore_bo, list);
	if (list_empty(&bo->free)) {
		return;
	}
	list_for_each_entry_safe_continue(bo, n, &rdev->semaphore_drv.bo, list) {
		if (bo->nused)
			continue;
		radeon_semaphore_del_bo_locked(rdev, bo);
	}
98 99 100 101 102
}

int radeon_semaphore_create(struct radeon_device *rdev,
			    struct radeon_semaphore **semaphore)
{
103
	struct radeon_semaphore_bo *bo;
104
	unsigned long irq_flags;
105 106
	bool do_retry = true;
	int r;
107

108 109
retry:
	*semaphore = NULL;
110
	write_lock_irqsave(&rdev->semaphore_drv.lock, irq_flags);
111 112 113 114 115 116 117 118 119
	list_for_each_entry(bo, &rdev->semaphore_drv.bo, list) {
		if (list_empty(&bo->free))
			continue;
		*semaphore = list_first_entry(&bo->free, struct radeon_semaphore, list);
		(*semaphore)->cpu_ptr[0] = 0;
		(*semaphore)->cpu_ptr[1] = 0;
		list_del(&(*semaphore)->list);
		bo->nused++;
		break;
120
	}
121
	write_unlock_irqrestore(&rdev->semaphore_drv.lock, irq_flags);
122

123 124 125 126 127 128 129 130 131 132
	if (*semaphore == NULL) {
		if (do_retry) {
			do_retry = false;
			r = radeon_semaphore_add_bo(rdev);
			if (r)
				return r;
			goto retry;
		}
		return -ENOMEM;
	}
133 134 135 136 137 138 139

	return 0;
}

void radeon_semaphore_emit_signal(struct radeon_device *rdev, int ring,
			          struct radeon_semaphore *semaphore)
{
140
	radeon_semaphore_ring_emit(rdev, ring, &rdev->ring[ring], semaphore, false);
141 142 143 144 145
}

void radeon_semaphore_emit_wait(struct radeon_device *rdev, int ring,
			        struct radeon_semaphore *semaphore)
{
146
	radeon_semaphore_ring_emit(rdev, ring, &rdev->ring[ring], semaphore, true);
147 148
}

149 150 151 152 153
int radeon_semaphore_sync_rings(struct radeon_device *rdev,
				struct radeon_semaphore *semaphore,
				bool sync_to[RADEON_NUM_RINGS],
				int dst_ring)
{
154
	int i = 0, r;
155

156 157 158 159 160
	mutex_lock(&rdev->ring_lock);
	r = radeon_ring_alloc(rdev, &rdev->ring[dst_ring], RADEON_NUM_RINGS * 8);
	if (r) {
		goto error;
	}
161

162 163 164
	for (i = 0; i < RADEON_NUM_RINGS; ++i) {
		/* no need to sync to our own or unused rings */
		if (!sync_to[i] || i == dst_ring)
165 166 167 168 169 170 171 172 173
			continue;

		/* prevent GPU deadlocks */
		if (!rdev->ring[i].ready) {
			dev_err(rdev->dev, "Trying to sync to a disabled ring!");
			r = -EINVAL;
			goto error;
		}

174 175
		r = radeon_ring_alloc(rdev, &rdev->ring[i], 8);
		if (r) {
176
			goto error;
177
		}
178 179 180 181

		radeon_semaphore_emit_signal(rdev, i, semaphore);
		radeon_semaphore_emit_wait(rdev, dst_ring, semaphore);

182
		radeon_ring_commit(rdev, &rdev->ring[i]);
183 184
	}

185 186 187
	radeon_ring_commit(rdev, &rdev->ring[dst_ring]);
	mutex_unlock(&rdev->ring_lock);

188 189 190 191 192 193
	return 0;

error:
	/* unlock all locks taken so far */
	for (--i; i >= 0; --i) {
		if (sync_to[i] || i == dst_ring) {
194
			radeon_ring_undo(&rdev->ring[i]);
195 196
		}
	}
197 198
	radeon_ring_undo(&rdev->ring[dst_ring]);
	mutex_unlock(&rdev->ring_lock);
199 200 201
	return r;
}

202
void radeon_semaphore_free(struct radeon_device *rdev,
203
			   struct radeon_semaphore *semaphore)
204 205 206 207
{
	unsigned long irq_flags;

	write_lock_irqsave(&rdev->semaphore_drv.lock, irq_flags);
208 209 210
	semaphore->bo->nused--;
	list_add_tail(&semaphore->list, &semaphore->bo->free);
	radeon_semaphore_shrink_locked(rdev);
211 212 213 214 215
	write_unlock_irqrestore(&rdev->semaphore_drv.lock, irq_flags);
}

void radeon_semaphore_driver_fini(struct radeon_device *rdev)
{
216
	struct radeon_semaphore_bo *bo, *n;
217 218 219
	unsigned long irq_flags;

	write_lock_irqsave(&rdev->semaphore_drv.lock, irq_flags);
220 221 222 223 224 225
	/* we force to free everything */
	list_for_each_entry_safe(bo, n, &rdev->semaphore_drv.bo, list) {
		if (!list_empty(&bo->free)) {
			dev_err(rdev->dev, "still in use semaphore\n");
		}
		radeon_semaphore_del_bo_locked(rdev, bo);
226 227 228
	}
	write_unlock_irqrestore(&rdev->semaphore_drv.lock, irq_flags);
}