]> git.proxmox.com Git - mirror_ubuntu-bionic-kernel.git/blame - drivers/gpu/drm/nouveau/nv10_fence.h
Merge branch 'cleanups-for-4.1-v2' of git://git.kernel.org/pub/scm/linux/kernel/git...
[mirror_ubuntu-bionic-kernel.git] / drivers / gpu / drm / nouveau / nv10_fence.h
CommitLineData
a4cea27b
MS
1#ifndef __NV10_FENCE_H_
2#define __NV10_FENCE_H_
3
a4cea27b
MS
4#include "nouveau_fence.h"
5#include "nouveau_bo.h"
6
7struct nv10_fence_chan {
8 struct nouveau_fence_chan base;
0ad72863
BS
9 struct nvif_object sema;
10 struct nvif_object head[4];
a4cea27b
MS
11};
12
13struct nv10_fence_priv {
14 struct nouveau_fence_priv base;
15 struct nouveau_bo *bo;
16 spinlock_t lock;
17 u32 sequence;
18};
19
20#endif