Merge branch 'timer/cleanup' into late/mvebu2
[GitHub/mt8127/android_kernel_alcatel_ttab.git] / drivers / gpu / drm / radeon / radeon_semaphore.c
CommitLineData
15d3332f
CK
1/*
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 */
760285e7 30#include <drm/drmP.h>
15d3332f
CK
31#include "radeon.h"
32
15d3332f
CK
33
34int radeon_semaphore_create(struct radeon_device *rdev,
35 struct radeon_semaphore **semaphore)
36{
c1341e52 37 int r;
15d3332f 38
a8c05940 39 *semaphore = kmalloc(sizeof(struct radeon_semaphore), GFP_KERNEL);
c1341e52 40 if (*semaphore == NULL) {
c1341e52
JG
41 return -ENOMEM;
42 }
c507f7ef 43 r = radeon_sa_bo_new(rdev, &rdev->ring_tmp_bo,
a8c05940
JG
44 &(*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;
15d3332f
CK
53 return 0;
54}
55
56void radeon_semaphore_emit_signal(struct radeon_device *rdev, int ring,
57 struct radeon_semaphore *semaphore)
58{
a8c05940 59 --semaphore->waiters;
e32eb50d 60 radeon_semaphore_ring_emit(rdev, ring, &rdev->ring[ring], semaphore, false);
15d3332f
CK
61}
62
63void radeon_semaphore_emit_wait(struct radeon_device *rdev, int ring,
64 struct radeon_semaphore *semaphore)
65{
a8c05940 66 ++semaphore->waiters;
e32eb50d 67 radeon_semaphore_ring_emit(rdev, ring, &rdev->ring[ring], semaphore, true);
15d3332f
CK
68}
69
220907d9 70/* caller must hold ring lock */
8f676c4c
CK
71int radeon_semaphore_sync_rings(struct radeon_device *rdev,
72 struct radeon_semaphore *semaphore,
220907d9 73 int signaler, int waiter)
8f676c4c 74{
220907d9 75 int r;
8f676c4c 76
220907d9
CK
77 /* no need to signal and wait on the same ring */
78 if (signaler == waiter) {
79 return 0;
d6999bc7 80 }
8f676c4c 81
220907d9
CK
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 }
8f676c4c 87
220907d9
CK
88 r = radeon_ring_alloc(rdev, &rdev->ring[signaler], 8);
89 if (r) {
90 return r;
8f676c4c 91 }
220907d9
CK
92 radeon_semaphore_emit_signal(rdev, signaler, semaphore);
93 radeon_ring_commit(rdev, &rdev->ring[signaler]);
8f676c4c 94
220907d9
CK
95 /* we assume caller has already allocated space on waiters ring */
96 radeon_semaphore_emit_wait(rdev, waiter, semaphore);
d6999bc7 97
5f0839c1
JG
98 /* for debugging lockup only, used by sysfs debug files */
99 rdev->ring[signaler].last_semaphore_signal_addr = semaphore->gpu_addr;
100 rdev->ring[waiter].last_semaphore_wait_addr = semaphore->gpu_addr;
101
8f676c4c 102 return 0;
8f676c4c
CK
103}
104
15d3332f 105void radeon_semaphore_free(struct radeon_device *rdev,
220907d9 106 struct radeon_semaphore **semaphore,
a8c05940 107 struct radeon_fence *fence)
15d3332f 108{
220907d9 109 if (semaphore == NULL || *semaphore == NULL) {
a8c05940
JG
110 return;
111 }
220907d9 112 if ((*semaphore)->waiters > 0) {
a8c05940 113 dev_err(rdev->dev, "semaphore %p has more waiters than signalers,"
220907d9 114 " hardware lockup imminent!\n", *semaphore);
15d3332f 115 }
220907d9
CK
116 radeon_sa_bo_free(rdev, &(*semaphore)->sa_bo, fence);
117 kfree(*semaphore);
118 *semaphore = NULL;
15d3332f 119}