Merge branch 'master' of ssh://git.freedesktop.org/git/mesa/drm into modesetting-101
[profile/ivi/libdrm.git] / shared-core / radeon_ms_drm.h
1 /*
2  * Copyright 2007 Jérôme Glisse
3  * Copyright 2007 Dave Airlie
4  * Copyright 2007 Alex Deucher
5  * All Rights Reserved.
6  *
7  * Permission is hereby granted, free of charge, to any person obtaining a
8  * copy of this software and associated documentation files (the "Software"),
9  * to deal in the Software without restriction, including without limitation
10  * the rights to use, copy, modify, merge, publish, distribute, sublicense,
11  * and/or sell copies of the Software, and to permit persons to whom the
12  * Software is furnished to do so, subject to the following conditions:
13  *
14  * The above copyright notice and this permission notice (including the next
15  * paragraph) shall be included in all copies or substantial portions of the
16  * Software.
17  *
18  * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
19  * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
20  * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.  IN NO EVENT SHALL
21  * PRECISION INSIGHT AND/OR ITS SUPPLIERS BE LIABLE FOR ANY CLAIM, DAMAGES OR
22  * OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE,
23  * ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
24  * DEALINGS IN THE SOFTWARE.
25  */
26 /*
27  * Authors:
28  *    Jérôme Glisse <glisse@freedesktop.org>
29  */
30 #ifndef __RADEON_MS_DRM_H__
31 #define __RADEON_MS_DRM_H__
32
33 /* fence definitions */
34 /* The only fence class we support */
35 #define DRM_RADEON_FENCE_CLASS_ACCEL 0
36 /* Fence type that guarantees read-write flush */
37 #define DRM_RADEON_FENCE_TYPE_RW 2
38 /* cache flushes programmed just before the fence */
39 #define DRM_RADEON_FENCE_FLAG_FLUSHED 0x01000000
40
41 /* radeon ms ioctl */
42 #define DRM_RADEON_EXECBUFFER   0x00
43
44 struct drm_radeon_execbuffer_arg {
45         uint64_t    next;
46         uint32_t    reloc_offset;
47         union {
48                 struct drm_bo_op_req    req;
49                 struct drm_bo_arg_rep   rep;
50         } d;
51 };
52
53 struct drm_radeon_execbuffer {
54         uint32_t args_count;
55         uint64_t args;
56         uint32_t cmd_size;
57         struct drm_fence_arg fence_arg;
58 };
59
60 #endif