blob: ed0b7bd4b4739745cbdaee59e8cf62ed5740ae2c [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 Skeggsa4e610b2014-08-10 04:10:23 +100028/* reserved object handles when using deprecated object APIs - these
29 * are here so that libdrm can allow interoperability with the new
30 * object APIs
31 */
32#define NOUVEAU_ABI16_CLIENT 0xffffffff
33#define NOUVEAU_ABI16_DEVICE 0xdddddddd
34#define NOUVEAU_ABI16_CHAN(n) (0xcccc0000 | (n))
35
Ben Skeggs6ee73862009-12-11 19:24:15 +100036#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
Ben Skeggs8f7286f2011-02-14 09:57:35 +100041#define NOUVEAU_GEM_TILE_COMP 0x00030000 /* nv50-only */
Francisco Jerezf13b3262010-10-10 06:01:08 +020042#define NOUVEAU_GEM_TILE_LAYOUT_MASK 0x0000ff00
43#define NOUVEAU_GEM_TILE_16BPP 0x00000001
44#define NOUVEAU_GEM_TILE_32BPP 0x00000002
45#define NOUVEAU_GEM_TILE_ZETA 0x00000004
46#define NOUVEAU_GEM_TILE_NONCONTIG 0x00000008
47
Ben Skeggs6ee73862009-12-11 19:24:15 +100048struct drm_nouveau_gem_info {
49 uint32_t handle;
50 uint32_t domain;
51 uint64_t size;
52 uint64_t offset;
53 uint64_t map_handle;
54 uint32_t tile_mode;
55 uint32_t tile_flags;
56};
57
58struct drm_nouveau_gem_new {
59 struct drm_nouveau_gem_info info;
60 uint32_t channel_hint;
61 uint32_t align;
62};
63
Ben Skeggsa1606a92010-02-12 10:27:35 +100064#define NOUVEAU_GEM_MAX_BUFFERS 1024
65struct drm_nouveau_gem_pushbuf_bo_presumed {
66 uint32_t valid;
67 uint32_t domain;
68 uint64_t offset;
69};
70
Ben Skeggs6ee73862009-12-11 19:24:15 +100071struct drm_nouveau_gem_pushbuf_bo {
72 uint64_t user_priv;
73 uint32_t handle;
74 uint32_t read_domains;
75 uint32_t write_domains;
76 uint32_t valid_domains;
Ben Skeggsa1606a92010-02-12 10:27:35 +100077 struct drm_nouveau_gem_pushbuf_bo_presumed presumed;
Ben Skeggs6ee73862009-12-11 19:24:15 +100078};
79
80#define NOUVEAU_GEM_RELOC_LOW (1 << 0)
81#define NOUVEAU_GEM_RELOC_HIGH (1 << 1)
82#define NOUVEAU_GEM_RELOC_OR (1 << 2)
Ben Skeggsa1606a92010-02-12 10:27:35 +100083#define NOUVEAU_GEM_MAX_RELOCS 1024
Ben Skeggs6ee73862009-12-11 19:24:15 +100084struct drm_nouveau_gem_pushbuf_reloc {
Ben Skeggsa1606a92010-02-12 10:27:35 +100085 uint32_t reloc_bo_index;
86 uint32_t reloc_bo_offset;
Ben Skeggs6ee73862009-12-11 19:24:15 +100087 uint32_t bo_index;
Ben Skeggs6ee73862009-12-11 19:24:15 +100088 uint32_t flags;
89 uint32_t data;
90 uint32_t vor;
91 uint32_t tor;
92};
93
Ben Skeggsa1606a92010-02-12 10:27:35 +100094#define NOUVEAU_GEM_MAX_PUSH 512
95struct drm_nouveau_gem_pushbuf_push {
96 uint32_t bo_index;
97 uint32_t pad;
98 uint64_t offset;
99 uint64_t length;
100};
Ben Skeggs6ee73862009-12-11 19:24:15 +1000101
102struct drm_nouveau_gem_pushbuf {
103 uint32_t channel;
Ben Skeggs6ee73862009-12-11 19:24:15 +1000104 uint32_t nr_buffers;
Ben Skeggs6ee73862009-12-11 19:24:15 +1000105 uint64_t buffers;
Ben Skeggs6ee73862009-12-11 19:24:15 +1000106 uint32_t nr_relocs;
Ben Skeggsa1606a92010-02-12 10:27:35 +1000107 uint32_t nr_push;
Ben Skeggs6ee73862009-12-11 19:24:15 +1000108 uint64_t relocs;
Ben Skeggsa1606a92010-02-12 10:27:35 +1000109 uint64_t push;
Ben Skeggs6ee73862009-12-11 19:24:15 +1000110 uint32_t suffix0;
111 uint32_t suffix1;
Ben Skeggs6ee73862009-12-11 19:24:15 +1000112 uint64_t vram_available;
113 uint64_t gart_available;
114};
115
Ben Skeggs6ee73862009-12-11 19:24:15 +1000116#define NOUVEAU_GEM_CPU_PREP_NOWAIT 0x00000001
Ben Skeggs6ee73862009-12-11 19:24:15 +1000117#define NOUVEAU_GEM_CPU_PREP_WRITE 0x00000004
118struct drm_nouveau_gem_cpu_prep {
119 uint32_t handle;
120 uint32_t flags;
121};
122
123struct drm_nouveau_gem_cpu_fini {
124 uint32_t handle;
125};
126
Ben Skeggs2a259a32012-05-08 10:24:27 +1000127#define DRM_NOUVEAU_GETPARAM 0x00 /* deprecated */
128#define DRM_NOUVEAU_SETPARAM 0x01 /* deprecated */
129#define DRM_NOUVEAU_CHANNEL_ALLOC 0x02 /* deprecated */
130#define DRM_NOUVEAU_CHANNEL_FREE 0x03 /* deprecated */
131#define DRM_NOUVEAU_GROBJ_ALLOC 0x04 /* deprecated */
132#define DRM_NOUVEAU_NOTIFIEROBJ_ALLOC 0x05 /* deprecated */
133#define DRM_NOUVEAU_GPUOBJ_FREE 0x06 /* deprecated */
Ben Skeggs6ee73862009-12-11 19:24:15 +1000134#define DRM_NOUVEAU_GEM_NEW 0x40
135#define DRM_NOUVEAU_GEM_PUSHBUF 0x41
Ben Skeggsa1606a92010-02-12 10:27:35 +1000136#define DRM_NOUVEAU_GEM_CPU_PREP 0x42
137#define DRM_NOUVEAU_GEM_CPU_FINI 0x43
138#define DRM_NOUVEAU_GEM_INFO 0x44
Ben Skeggs6ee73862009-12-11 19:24:15 +1000139
Dave Airlie1b2f1482010-08-14 20:20:34 +1000140#define DRM_IOCTL_NOUVEAU_GEM_NEW DRM_IOWR(DRM_COMMAND_BASE + DRM_NOUVEAU_GEM_NEW, struct drm_nouveau_gem_new)
141#define DRM_IOCTL_NOUVEAU_GEM_PUSHBUF DRM_IOWR(DRM_COMMAND_BASE + DRM_NOUVEAU_GEM_PUSHBUF, struct drm_nouveau_gem_pushbuf)
142#define DRM_IOCTL_NOUVEAU_GEM_CPU_PREP DRM_IOW (DRM_COMMAND_BASE + DRM_NOUVEAU_GEM_CPU_PREP, struct drm_nouveau_gem_cpu_prep)
143#define DRM_IOCTL_NOUVEAU_GEM_CPU_FINI DRM_IOW (DRM_COMMAND_BASE + DRM_NOUVEAU_GEM_CPU_FINI, struct drm_nouveau_gem_cpu_fini)
144#define DRM_IOCTL_NOUVEAU_GEM_INFO DRM_IOWR(DRM_COMMAND_BASE + DRM_NOUVEAU_GEM_INFO, struct drm_nouveau_gem_info)
145
Ben Skeggs6ee73862009-12-11 19:24:15 +1000146#endif /* __NOUVEAU_DRM_H__ */