blob: 56061aa1959d1fb623b16e8bdd3ac801cdea2fae [file] [log] [blame]
Rob Clarkfde5de62016-03-15 15:35:08 -04001/*
2 * Copyright (C) 2013-2016 Red Hat
3 * Author: Rob Clark <robdclark@gmail.com>
4 *
5 * This program is free software; you can redistribute it and/or modify it
6 * under the terms of the GNU General Public License version 2 as published by
7 * the Free Software Foundation.
8 *
9 * This program is distributed in the hope that it will be useful, but WITHOUT
10 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
11 * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for
12 * more details.
13 *
14 * You should have received a copy of the GNU General Public License along with
15 * this program. If not, see <http://www.gnu.org/licenses/>.
16 */
17
18#ifndef __MSM_FENCE_H__
19#define __MSM_FENCE_H__
20
21#include "msm_drv.h"
22
Rob Clarkca762a82016-03-15 17:22:13 -040023struct msm_fence_context {
24 struct drm_device *dev;
25 const char *name;
Rob Clarkb6295f92016-03-15 18:26:28 -040026 unsigned context;
Rob Clarkca762a82016-03-15 17:22:13 -040027 /* last_fence == completed_fence --> no pending work */
28 uint32_t last_fence; /* last assigned fence */
29 uint32_t completed_fence; /* last completed fence */
30 wait_queue_head_t event;
Rob Clarkb6295f92016-03-15 18:26:28 -040031 spinlock_t spinlock;
Rob Clarkca762a82016-03-15 17:22:13 -040032};
33
34struct msm_fence_context * msm_fence_context_alloc(struct drm_device *dev,
35 const char *name);
36void msm_fence_context_free(struct msm_fence_context *fctx);
37
Rob Clarkca762a82016-03-15 17:22:13 -040038int msm_wait_fence(struct msm_fence_context *fctx, uint32_t fence,
Rob Clarkfde5de62016-03-15 15:35:08 -040039 ktime_t *timeout, bool interruptible);
Rob Clarkca762a82016-03-15 17:22:13 -040040int msm_queue_fence_cb(struct msm_fence_context *fctx,
Rob Clarkfde5de62016-03-15 15:35:08 -040041 struct msm_fence_cb *cb, uint32_t fence);
Rob Clarkca762a82016-03-15 17:22:13 -040042void msm_update_fence(struct msm_fence_context *fctx, uint32_t fence);
Rob Clarkfde5de62016-03-15 15:35:08 -040043
Chris Wilsonf54d1862016-10-25 13:00:45 +010044struct dma_fence * msm_fence_alloc(struct msm_fence_context *fctx);
Rob Clarkb6295f92016-03-15 18:26:28 -040045
Rob Clarkfde5de62016-03-15 15:35:08 -040046#endif