Go to the documentation of this file.
25 #ifndef __NOUVEAU_DRM_H__
26 #define __NOUVEAU_DRM_H__
28 #define NOUVEAU_GEM_DOMAIN_CPU (1 << 0)
29 #define NOUVEAU_GEM_DOMAIN_VRAM (1 << 1)
30 #define NOUVEAU_GEM_DOMAIN_GART (1 << 2)
31 #define NOUVEAU_GEM_DOMAIN_MAPPABLE (1 << 3)
33 #define NOUVEAU_GEM_TILE_COMP 0x00030000
34 #define NOUVEAU_GEM_TILE_LAYOUT_MASK 0x0000ff00
35 #define NOUVEAU_GEM_TILE_16BPP 0x00000001
36 #define NOUVEAU_GEM_TILE_32BPP 0x00000002
37 #define NOUVEAU_GEM_TILE_ZETA 0x00000004
38 #define NOUVEAU_GEM_TILE_NONCONTIG 0x00000008
56 #define NOUVEAU_GEM_MAX_BUFFERS 1024
72 #define NOUVEAU_GEM_RELOC_LOW (1 << 0)
73 #define NOUVEAU_GEM_RELOC_HIGH (1 << 1)
74 #define NOUVEAU_GEM_RELOC_OR (1 << 2)
75 #define NOUVEAU_GEM_MAX_RELOCS 1024
86 #define NOUVEAU_GEM_MAX_PUSH 512
108 #define NOUVEAU_GEM_CPU_PREP_NOWAIT 0x00000001
109 #define NOUVEAU_GEM_CPU_PREP_WRITE 0x00000004
119 #define DRM_NOUVEAU_GETPARAM 0x00
120 #define DRM_NOUVEAU_SETPARAM 0x01
121 #define DRM_NOUVEAU_CHANNEL_ALLOC 0x02
122 #define DRM_NOUVEAU_CHANNEL_FREE 0x03
123 #define DRM_NOUVEAU_GROBJ_ALLOC 0x04
124 #define DRM_NOUVEAU_NOTIFIEROBJ_ALLOC 0x05
125 #define DRM_NOUVEAU_GPUOBJ_FREE 0x06
126 #define DRM_NOUVEAU_GEM_NEW 0x40
127 #define DRM_NOUVEAU_GEM_PUSHBUF 0x41
128 #define DRM_NOUVEAU_GEM_CPU_PREP 0x42
129 #define DRM_NOUVEAU_GEM_CPU_FINI 0x43
130 #define DRM_NOUVEAU_GEM_INFO 0x44
132 #define DRM_IOCTL_NOUVEAU_GEM_NEW DRM_IOWR(DRM_COMMAND_BASE + DRM_NOUVEAU_GEM_NEW, struct drm_nouveau_gem_new)
133 #define DRM_IOCTL_NOUVEAU_GEM_PUSHBUF DRM_IOWR(DRM_COMMAND_BASE + DRM_NOUVEAU_GEM_PUSHBUF, struct drm_nouveau_gem_pushbuf)
134 #define DRM_IOCTL_NOUVEAU_GEM_CPU_PREP DRM_IOW (DRM_COMMAND_BASE + DRM_NOUVEAU_GEM_CPU_PREP, struct drm_nouveau_gem_cpu_prep)
135 #define DRM_IOCTL_NOUVEAU_GEM_CPU_FINI DRM_IOW (DRM_COMMAND_BASE + DRM_NOUVEAU_GEM_CPU_FINI, struct drm_nouveau_gem_cpu_fini)
136 #define DRM_IOCTL_NOUVEAU_GEM_INFO DRM_IOWR(DRM_COMMAND_BASE + DRM_NOUVEAU_GEM_INFO, struct drm_nouveau_gem_info)