2 * Copyright 2005 Stephane Marchesin.
5 * Permission is hereby granted, free of charge, to any person obtaining a
6 * copy of this software and associated documentation files (the "Software"),
7 * to deal in the Software without restriction, including without limitation
8 * the rights to use, copy, modify, merge, publish, distribute, sublicense,
9 * and/or sell copies of the Software, and to permit persons to whom the
10 * Software is furnished to do so, subject to the following conditions:
12 * The above copyright notice and this permission notice (including the next
13 * paragraph) shall be included in all copies or substantial portions of the
16 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
17 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
18 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
19 * VA LINUX SYSTEMS AND/OR ITS SUPPLIERS BE LIABLE FOR ANY CLAIM, DAMAGES OR
20 * OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE,
21 * ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
22 * OTHER DEALINGS IN THE SOFTWARE.
25 #ifndef __NOUVEAU_DRM_H__
26 #define __NOUVEAU_DRM_H__
28 #define DRM_NOUVEAU_EVENT_NVIF 0x80000000
32 #if defined(__cplusplus)
36 #define NOUVEAU_GEM_DOMAIN_CPU (1 << 0)
37 #define NOUVEAU_GEM_DOMAIN_VRAM (1 << 1)
38 #define NOUVEAU_GEM_DOMAIN_GART (1 << 2)
39 #define NOUVEAU_GEM_DOMAIN_MAPPABLE (1 << 3)
40 #define NOUVEAU_GEM_DOMAIN_COHERENT (1 << 4)
42 #define NOUVEAU_GEM_TILE_COMP 0x00030000 /* nv50-only */
43 #define NOUVEAU_GEM_TILE_LAYOUT_MASK 0x0000ff00
44 #define NOUVEAU_GEM_TILE_16BPP 0x00000001
45 #define NOUVEAU_GEM_TILE_32BPP 0x00000002
46 #define NOUVEAU_GEM_TILE_ZETA 0x00000004
47 #define NOUVEAU_GEM_TILE_NONCONTIG 0x00000008
49 struct drm_nouveau_gem_info
{
59 struct drm_nouveau_gem_new
{
60 struct drm_nouveau_gem_info info
;
65 #define NOUVEAU_GEM_MAX_BUFFERS 1024
66 struct drm_nouveau_gem_pushbuf_bo_presumed
{
72 struct drm_nouveau_gem_pushbuf_bo
{
78 struct drm_nouveau_gem_pushbuf_bo_presumed presumed
;
81 #define NOUVEAU_GEM_RELOC_LOW (1 << 0)
82 #define NOUVEAU_GEM_RELOC_HIGH (1 << 1)
83 #define NOUVEAU_GEM_RELOC_OR (1 << 2)
84 #define NOUVEAU_GEM_MAX_RELOCS 1024
85 struct drm_nouveau_gem_pushbuf_reloc
{
87 __u32 reloc_bo_offset
;
95 #define NOUVEAU_GEM_MAX_PUSH 512
96 struct drm_nouveau_gem_pushbuf_push
{
103 struct drm_nouveau_gem_pushbuf
{
113 __u64 vram_available
;
114 __u64 gart_available
;
117 #define NOUVEAU_GEM_CPU_PREP_NOWAIT 0x00000001
118 #define NOUVEAU_GEM_CPU_PREP_WRITE 0x00000004
119 struct drm_nouveau_gem_cpu_prep
{
124 struct drm_nouveau_gem_cpu_fini
{
128 #define DRM_NOUVEAU_GETPARAM 0x00 /* deprecated */
129 #define DRM_NOUVEAU_SETPARAM 0x01 /* deprecated */
130 #define DRM_NOUVEAU_CHANNEL_ALLOC 0x02 /* deprecated */
131 #define DRM_NOUVEAU_CHANNEL_FREE 0x03 /* deprecated */
132 #define DRM_NOUVEAU_GROBJ_ALLOC 0x04 /* deprecated */
133 #define DRM_NOUVEAU_NOTIFIEROBJ_ALLOC 0x05 /* deprecated */
134 #define DRM_NOUVEAU_GPUOBJ_FREE 0x06 /* deprecated */
135 #define DRM_NOUVEAU_NVIF 0x07
136 #define DRM_NOUVEAU_SVM_INIT 0x08
137 #define DRM_NOUVEAU_SVM_BIND 0x09
138 #define DRM_NOUVEAU_GEM_NEW 0x40
139 #define DRM_NOUVEAU_GEM_PUSHBUF 0x41
140 #define DRM_NOUVEAU_GEM_CPU_PREP 0x42
141 #define DRM_NOUVEAU_GEM_CPU_FINI 0x43
142 #define DRM_NOUVEAU_GEM_INFO 0x44
144 struct drm_nouveau_svm_init
{
145 __u64 unmanaged_addr
;
146 __u64 unmanaged_size
;
149 struct drm_nouveau_svm_bind
{
160 #define NOUVEAU_SVM_BIND_COMMAND_SHIFT 0
161 #define NOUVEAU_SVM_BIND_COMMAND_BITS 8
162 #define NOUVEAU_SVM_BIND_COMMAND_MASK ((1 << 8) - 1)
163 #define NOUVEAU_SVM_BIND_PRIORITY_SHIFT 8
164 #define NOUVEAU_SVM_BIND_PRIORITY_BITS 8
165 #define NOUVEAU_SVM_BIND_PRIORITY_MASK ((1 << 8) - 1)
166 #define NOUVEAU_SVM_BIND_TARGET_SHIFT 16
167 #define NOUVEAU_SVM_BIND_TARGET_BITS 32
168 #define NOUVEAU_SVM_BIND_TARGET_MASK 0xffffffff
171 * Below is use to validate ioctl argument, userspace can also use it to make
172 * sure that no bit are set beyond known fields for a given kernel version.
174 #define NOUVEAU_SVM_BIND_VALID_BITS 48
175 #define NOUVEAU_SVM_BIND_VALID_MASK ((1ULL << NOUVEAU_SVM_BIND_VALID_BITS) - 1)
179 * NOUVEAU_BIND_COMMAND__MIGRATE: synchronous migrate to target memory.
180 * result: number of page successfuly migrate to the target memory.
182 #define NOUVEAU_SVM_BIND_COMMAND__MIGRATE 0
185 * NOUVEAU_SVM_BIND_HEADER_TARGET__GPU_VRAM: target the GPU VRAM memory.
187 #define NOUVEAU_SVM_BIND_TARGET__GPU_VRAM (1UL << 31)
190 #define DRM_IOCTL_NOUVEAU_SVM_INIT DRM_IOWR(DRM_COMMAND_BASE + DRM_NOUVEAU_SVM_INIT, struct drm_nouveau_svm_init)
191 #define DRM_IOCTL_NOUVEAU_SVM_BIND DRM_IOWR(DRM_COMMAND_BASE + DRM_NOUVEAU_SVM_BIND, struct drm_nouveau_svm_bind)
193 #define DRM_IOCTL_NOUVEAU_GEM_NEW DRM_IOWR(DRM_COMMAND_BASE + DRM_NOUVEAU_GEM_NEW, struct drm_nouveau_gem_new)
194 #define DRM_IOCTL_NOUVEAU_GEM_PUSHBUF DRM_IOWR(DRM_COMMAND_BASE + DRM_NOUVEAU_GEM_PUSHBUF, struct drm_nouveau_gem_pushbuf)
195 #define DRM_IOCTL_NOUVEAU_GEM_CPU_PREP DRM_IOW (DRM_COMMAND_BASE + DRM_NOUVEAU_GEM_CPU_PREP, struct drm_nouveau_gem_cpu_prep)
196 #define DRM_IOCTL_NOUVEAU_GEM_CPU_FINI DRM_IOW (DRM_COMMAND_BASE + DRM_NOUVEAU_GEM_CPU_FINI, struct drm_nouveau_gem_cpu_fini)
197 #define DRM_IOCTL_NOUVEAU_GEM_INFO DRM_IOWR(DRM_COMMAND_BASE + DRM_NOUVEAU_GEM_INFO, struct drm_nouveau_gem_info)
199 #if defined(__cplusplus)
203 #endif /* __NOUVEAU_DRM_H__ */