blob: e6ad54cdfa6279284771d4df897f7860b0ae06c6 [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"
Christian Königbd80c8b2013-11-12 12:58:04 +010032#include "radeon_trace.h"
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{
Christian König975700d22014-11-19 14:01:22 +010037 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 }
Christian König975700d22014-11-19 14:01:22 +010043 r = radeon_sa_bo_new(rdev, &rdev->ring_tmp_bo,
44 &(*semaphore)->sa_bo, 8, 8);
Jerome Glissea8c05942012-05-09 15:34:57 +020045 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);
Christian König8f534922014-02-18 11:37:20 +010052
Christian König975700d22014-11-19 14:01:22 +010053 *((uint64_t *)radeon_sa_bo_cpu_addr((*semaphore)->sa_bo)) = 0;
Christian König1654b812013-11-12 12:58:05 +010054
Christian König15d33322011-09-15 19:02:22 +020055 return 0;
56}
57
Christian König1654b812013-11-12 12:58:05 +010058bool radeon_semaphore_emit_signal(struct radeon_device *rdev, int ridx,
Christian König15d33322011-09-15 19:02:22 +020059 struct radeon_semaphore *semaphore)
60{
Christian König1654b812013-11-12 12:58:05 +010061 struct radeon_ring *ring = &rdev->ring[ridx];
Christian Königbd80c8b2013-11-12 12:58:04 +010062
Christian König1654b812013-11-12 12:58:05 +010063 trace_radeon_semaphore_signale(ridx, semaphore);
64
65 if (radeon_semaphore_ring_emit(rdev, ridx, ring, semaphore, false)) {
66 --semaphore->waiters;
67
68 /* for debugging lockup only, used by sysfs debug files */
69 ring->last_semaphore_signal_addr = semaphore->gpu_addr;
70 return true;
71 }
72 return false;
Christian König15d33322011-09-15 19:02:22 +020073}
74
Christian König1654b812013-11-12 12:58:05 +010075bool radeon_semaphore_emit_wait(struct radeon_device *rdev, int ridx,
Christian König15d33322011-09-15 19:02:22 +020076 struct radeon_semaphore *semaphore)
77{
Christian König1654b812013-11-12 12:58:05 +010078 struct radeon_ring *ring = &rdev->ring[ridx];
Christian Königbd80c8b2013-11-12 12:58:04 +010079
Christian König1654b812013-11-12 12:58:05 +010080 trace_radeon_semaphore_wait(ridx, semaphore);
81
82 if (radeon_semaphore_ring_emit(rdev, ridx, ring, semaphore, true)) {
83 ++semaphore->waiters;
84
85 /* for debugging lockup only, used by sysfs debug files */
86 ring->last_semaphore_wait_addr = semaphore->gpu_addr;
87 return true;
88 }
89 return false;
Christian König15d33322011-09-15 19:02:22 +020090}
91
92void radeon_semaphore_free(struct radeon_device *rdev,
Christian König220907d2012-05-10 16:46:43 +020093 struct radeon_semaphore **semaphore,
Jerome Glissea8c05942012-05-09 15:34:57 +020094 struct radeon_fence *fence)
Christian König15d33322011-09-15 19:02:22 +020095{
Christian König220907d2012-05-10 16:46:43 +020096 if (semaphore == NULL || *semaphore == NULL) {
Jerome Glissea8c05942012-05-09 15:34:57 +020097 return;
Christian König15d33322011-09-15 19:02:22 +020098 }
Christian König220907d2012-05-10 16:46:43 +020099 if ((*semaphore)->waiters > 0) {
Jerome Glissea8c05942012-05-09 15:34:57 +0200100 dev_err(rdev->dev, "semaphore %p has more waiters than signalers,"
Christian König220907d2012-05-10 16:46:43 +0200101 " hardware lockup imminent!\n", *semaphore);
Jerome Glissea8c05942012-05-09 15:34:57 +0200102 }
Christian König220907d2012-05-10 16:46:43 +0200103 radeon_sa_bo_free(rdev, &(*semaphore)->sa_bo, fence);
104 kfree(*semaphore);
105 *semaphore = NULL;
Christian König15d33322011-09-15 19:02:22 +0200106}