blob: 500d82aecbe4f0c66d487be10aa6de7faad52528 [file] [log] [blame]
Ben Skeggs6ee73862009-12-11 19:24:15 +10001/*
2 * Copyright 2005 Stephane Marchesin.
3 * All Rights Reserved.
4 *
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:
11 *
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
14 * Software.
15 *
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.
23 */
24
25#ifndef __NOUVEAU_DRM_H__
26#define __NOUVEAU_DRM_H__
27
Ben Skeggs27111a22014-08-10 04:10:31 +100028#define DRM_NOUVEAU_EVENT_NVIF 0x80000000
29
Mikko Rapeli88604872014-08-31 13:09:51 +020030#include <drm/drm.h>
31
Ben Skeggs6ee73862009-12-11 19:24:15 +100032#define NOUVEAU_GEM_DOMAIN_CPU (1 << 0)
33#define NOUVEAU_GEM_DOMAIN_VRAM (1 << 1)
34#define NOUVEAU_GEM_DOMAIN_GART (1 << 2)
35#define NOUVEAU_GEM_DOMAIN_MAPPABLE (1 << 3)
Alexandre Courbot996f5452015-02-26 12:44:51 +090036#define NOUVEAU_GEM_DOMAIN_COHERENT (1 << 4)
Ben Skeggs6ee73862009-12-11 19:24:15 +100037
Ben Skeggs8f7286f2011-02-14 09:57:35 +100038#define NOUVEAU_GEM_TILE_COMP 0x00030000 /* nv50-only */
Francisco Jerezf13b3262010-10-10 06:01:08 +020039#define NOUVEAU_GEM_TILE_LAYOUT_MASK 0x0000ff00
40#define NOUVEAU_GEM_TILE_16BPP 0x00000001
41#define NOUVEAU_GEM_TILE_32BPP 0x00000002
42#define NOUVEAU_GEM_TILE_ZETA 0x00000004
43#define NOUVEAU_GEM_TILE_NONCONTIG 0x00000008
44
Ben Skeggs6ee73862009-12-11 19:24:15 +100045struct drm_nouveau_gem_info {
Mikko Rapeli88604872014-08-31 13:09:51 +020046 __u32 handle;
47 __u32 domain;
48 __u64 size;
49 __u64 offset;
50 __u64 map_handle;
51 __u32 tile_mode;
52 __u32 tile_flags;
Ben Skeggs6ee73862009-12-11 19:24:15 +100053};
54
55struct drm_nouveau_gem_new {
56 struct drm_nouveau_gem_info info;
Mikko Rapeli88604872014-08-31 13:09:51 +020057 __u32 channel_hint;
58 __u32 align;
Ben Skeggs6ee73862009-12-11 19:24:15 +100059};
60
Ben Skeggsa1606a92010-02-12 10:27:35 +100061#define NOUVEAU_GEM_MAX_BUFFERS 1024
62struct drm_nouveau_gem_pushbuf_bo_presumed {
Mikko Rapeli88604872014-08-31 13:09:51 +020063 __u32 valid;
64 __u32 domain;
65 __u64 offset;
Ben Skeggsa1606a92010-02-12 10:27:35 +100066};
67
Ben Skeggs6ee73862009-12-11 19:24:15 +100068struct drm_nouveau_gem_pushbuf_bo {
Mikko Rapeli88604872014-08-31 13:09:51 +020069 __u64 user_priv;
70 __u32 handle;
71 __u32 read_domains;
72 __u32 write_domains;
73 __u32 valid_domains;
Ben Skeggsa1606a92010-02-12 10:27:35 +100074 struct drm_nouveau_gem_pushbuf_bo_presumed presumed;
Ben Skeggs6ee73862009-12-11 19:24:15 +100075};
76
77#define NOUVEAU_GEM_RELOC_LOW (1 << 0)
78#define NOUVEAU_GEM_RELOC_HIGH (1 << 1)
79#define NOUVEAU_GEM_RELOC_OR (1 << 2)
Ben Skeggsa1606a92010-02-12 10:27:35 +100080#define NOUVEAU_GEM_MAX_RELOCS 1024
Ben Skeggs6ee73862009-12-11 19:24:15 +100081struct drm_nouveau_gem_pushbuf_reloc {
Mikko Rapeli88604872014-08-31 13:09:51 +020082 __u32 reloc_bo_index;
83 __u32 reloc_bo_offset;
84 __u32 bo_index;
85 __u32 flags;
86 __u32 data;
87 __u32 vor;
88 __u32 tor;
Ben Skeggs6ee73862009-12-11 19:24:15 +100089};
90
Ben Skeggsa1606a92010-02-12 10:27:35 +100091#define NOUVEAU_GEM_MAX_PUSH 512
92struct drm_nouveau_gem_pushbuf_push {
Mikko Rapeli88604872014-08-31 13:09:51 +020093 __u32 bo_index;
94 __u32 pad;
95 __u64 offset;
96 __u64 length;
Ben Skeggsa1606a92010-02-12 10:27:35 +100097};
Ben Skeggs6ee73862009-12-11 19:24:15 +100098
99struct drm_nouveau_gem_pushbuf {
Mikko Rapeli88604872014-08-31 13:09:51 +0200100 __u32 channel;
101 __u32 nr_buffers;
102 __u64 buffers;
103 __u32 nr_relocs;
104 __u32 nr_push;
105 __u64 relocs;
106 __u64 push;
107 __u32 suffix0;
108 __u32 suffix1;
109 __u64 vram_available;
110 __u64 gart_available;
Ben Skeggs6ee73862009-12-11 19:24:15 +1000111};
112
Ben Skeggs6ee73862009-12-11 19:24:15 +1000113#define NOUVEAU_GEM_CPU_PREP_NOWAIT 0x00000001
Ben Skeggs6ee73862009-12-11 19:24:15 +1000114#define NOUVEAU_GEM_CPU_PREP_WRITE 0x00000004
115struct drm_nouveau_gem_cpu_prep {
Mikko Rapeli88604872014-08-31 13:09:51 +0200116 __u32 handle;
117 __u32 flags;
Ben Skeggs6ee73862009-12-11 19:24:15 +1000118};
119
120struct drm_nouveau_gem_cpu_fini {
Mikko Rapeli88604872014-08-31 13:09:51 +0200121 __u32 handle;
Ben Skeggs6ee73862009-12-11 19:24:15 +1000122};
123
Ben Skeggs2a259a32012-05-08 10:24:27 +1000124#define DRM_NOUVEAU_GETPARAM 0x00 /* deprecated */
125#define DRM_NOUVEAU_SETPARAM 0x01 /* deprecated */
126#define DRM_NOUVEAU_CHANNEL_ALLOC 0x02 /* deprecated */
127#define DRM_NOUVEAU_CHANNEL_FREE 0x03 /* deprecated */
128#define DRM_NOUVEAU_GROBJ_ALLOC 0x04 /* deprecated */
129#define DRM_NOUVEAU_NOTIFIEROBJ_ALLOC 0x05 /* deprecated */
130#define DRM_NOUVEAU_GPUOBJ_FREE 0x06 /* deprecated */
Ben Skeggs27111a22014-08-10 04:10:31 +1000131#define DRM_NOUVEAU_NVIF 0x07
Ben Skeggs6ee73862009-12-11 19:24:15 +1000132#define DRM_NOUVEAU_GEM_NEW 0x40
133#define DRM_NOUVEAU_GEM_PUSHBUF 0x41
Ben Skeggsa1606a92010-02-12 10:27:35 +1000134#define DRM_NOUVEAU_GEM_CPU_PREP 0x42
135#define DRM_NOUVEAU_GEM_CPU_FINI 0x43
136#define DRM_NOUVEAU_GEM_INFO 0x44
Ben Skeggs6ee73862009-12-11 19:24:15 +1000137
Dave Airlie1b2f1482010-08-14 20:20:34 +1000138#define DRM_IOCTL_NOUVEAU_GEM_NEW DRM_IOWR(DRM_COMMAND_BASE + DRM_NOUVEAU_GEM_NEW, struct drm_nouveau_gem_new)
139#define DRM_IOCTL_NOUVEAU_GEM_PUSHBUF DRM_IOWR(DRM_COMMAND_BASE + DRM_NOUVEAU_GEM_PUSHBUF, struct drm_nouveau_gem_pushbuf)
140#define DRM_IOCTL_NOUVEAU_GEM_CPU_PREP DRM_IOW (DRM_COMMAND_BASE + DRM_NOUVEAU_GEM_CPU_PREP, struct drm_nouveau_gem_cpu_prep)
141#define DRM_IOCTL_NOUVEAU_GEM_CPU_FINI DRM_IOW (DRM_COMMAND_BASE + DRM_NOUVEAU_GEM_CPU_FINI, struct drm_nouveau_gem_cpu_fini)
142#define DRM_IOCTL_NOUVEAU_GEM_INFO DRM_IOWR(DRM_COMMAND_BASE + DRM_NOUVEAU_GEM_INFO, struct drm_nouveau_gem_info)
143
Ben Skeggs6ee73862009-12-11 19:24:15 +1000144#endif /* __NOUVEAU_DRM_H__ */