blob: 97f3ece81cd257bba371c57d126bb54ddbfbee18 [file] [log] [blame]
Christian König15d33322011-09-15 19:02:22 +02001/*
2 * Copyright 2011 Christian König.
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 <deathsimple@vodafone.de>
29 */
David Howells760285e2012-10-02 18:01:07 +010030#include <drm/drmP.h>
Christian König15d33322011-09-15 19:02:22 +020031#include "radeon.h"
32
Jerome Glissec1341e52011-12-21 12:13:47 -050033
Christian König15d33322011-09-15 19:02:22 +020034int radeon_semaphore_create(struct radeon_device *rdev,
35 struct radeon_semaphore **semaphore)
36{
Jerome Glissec1341e52011-12-21 12:13:47 -050037 int r;
Christian König15d33322011-09-15 19:02:22 +020038
Jerome Glissea8c05942012-05-09 15:34:57 +020039 *semaphore = kmalloc(sizeof(struct radeon_semaphore), GFP_KERNEL);
Jerome Glissec1341e52011-12-21 12:13:47 -050040 if (*semaphore == NULL) {
Jerome Glissec1341e52011-12-21 12:13:47 -050041 return -ENOMEM;
Christian König15d33322011-09-15 19:02:22 +020042 }
Jerome Glissec507f7e2012-05-09 15:34:58 +020043 r = radeon_sa_bo_new(rdev, &rdev->ring_tmp_bo,
Jerome Glissea8c05942012-05-09 15:34:57 +020044 &(*semaphore)->sa_bo, 8, 8, true);
45 if (r) {
46 kfree(*semaphore);
47 *semaphore = NULL;
48 return r;
49 }
50 (*semaphore)->waiters = 0;
51 (*semaphore)->gpu_addr = radeon_sa_bo_gpu_addr((*semaphore)->sa_bo);
52 *((uint64_t*)radeon_sa_bo_cpu_addr((*semaphore)->sa_bo)) = 0;
Christian König15d33322011-09-15 19:02:22 +020053 return 0;
54}
55
56void radeon_semaphore_emit_signal(struct radeon_device *rdev, int ring,
57 struct radeon_semaphore *semaphore)
58{
Jerome Glissea8c05942012-05-09 15:34:57 +020059 --semaphore->waiters;
Christian Könige32eb502011-10-23 12:56:27 +020060 radeon_semaphore_ring_emit(rdev, ring, &rdev->ring[ring], semaphore, false);
Christian König15d33322011-09-15 19:02:22 +020061}
62
63void radeon_semaphore_emit_wait(struct radeon_device *rdev, int ring,
64 struct radeon_semaphore *semaphore)
65{
Jerome Glissea8c05942012-05-09 15:34:57 +020066 ++semaphore->waiters;
Christian Könige32eb502011-10-23 12:56:27 +020067 radeon_semaphore_ring_emit(rdev, ring, &rdev->ring[ring], semaphore, true);
Christian König15d33322011-09-15 19:02:22 +020068}
69
Christian König220907d2012-05-10 16:46:43 +020070/* caller must hold ring lock */
Christian König8f676c42012-05-02 15:11:18 +020071int radeon_semaphore_sync_rings(struct radeon_device *rdev,
72 struct radeon_semaphore *semaphore,
Christian König220907d2012-05-10 16:46:43 +020073 int signaler, int waiter)
Christian König8f676c42012-05-02 15:11:18 +020074{
Christian König220907d2012-05-10 16:46:43 +020075 int r;
Christian Königd6999bc2012-05-09 15:34:45 +020076
Christian König220907d2012-05-10 16:46:43 +020077 /* no need to signal and wait on the same ring */
78 if (signaler == waiter) {
79 return 0;
80 }
81
82 /* prevent GPU deadlocks */
83 if (!rdev->ring[signaler].ready) {
84 dev_err(rdev->dev, "Trying to sync to a disabled ring!");
85 return -EINVAL;
86 }
87
88 r = radeon_ring_alloc(rdev, &rdev->ring[signaler], 8);
Christian Königd6999bc2012-05-09 15:34:45 +020089 if (r) {
Christian König220907d2012-05-10 16:46:43 +020090 return r;
Christian Königd6999bc2012-05-09 15:34:45 +020091 }
Christian König220907d2012-05-10 16:46:43 +020092 radeon_semaphore_emit_signal(rdev, signaler, semaphore);
93 radeon_ring_commit(rdev, &rdev->ring[signaler]);
Christian König8f676c42012-05-02 15:11:18 +020094
Christian König220907d2012-05-10 16:46:43 +020095 /* we assume caller has already allocated space on waiters ring */
96 radeon_semaphore_emit_wait(rdev, waiter, semaphore);
Christian König8f676c42012-05-02 15:11:18 +020097
98 return 0;
Christian König8f676c42012-05-02 15:11:18 +020099}
100
Christian König15d33322011-09-15 19:02:22 +0200101void radeon_semaphore_free(struct radeon_device *rdev,
Christian König220907d2012-05-10 16:46:43 +0200102 struct radeon_semaphore **semaphore,
Jerome Glissea8c05942012-05-09 15:34:57 +0200103 struct radeon_fence *fence)
Christian König15d33322011-09-15 19:02:22 +0200104{
Christian König220907d2012-05-10 16:46:43 +0200105 if (semaphore == NULL || *semaphore == NULL) {
Jerome Glissea8c05942012-05-09 15:34:57 +0200106 return;
Christian König15d33322011-09-15 19:02:22 +0200107 }
Christian König220907d2012-05-10 16:46:43 +0200108 if ((*semaphore)->waiters > 0) {
Jerome Glissea8c05942012-05-09 15:34:57 +0200109 dev_err(rdev->dev, "semaphore %p has more waiters than signalers,"
Christian König220907d2012-05-10 16:46:43 +0200110 " hardware lockup imminent!\n", *semaphore);
Jerome Glissea8c05942012-05-09 15:34:57 +0200111 }
Christian König220907d2012-05-10 16:46:43 +0200112 radeon_sa_bo_free(rdev, &(*semaphore)->sa_bo, fence);
113 kfree(*semaphore);
114 *semaphore = NULL;
Christian König15d33322011-09-15 19:02:22 +0200115}