blob: fd7e11850891441758b7a82bb7c5ae445c457149 [file] [log] [blame]
Pekka Paalanen3a87b1f2009-11-21 01:00:36 +02001/*
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
Luca Barbierib496c632010-01-29 09:53:24 +010028#define NOUVEAU_DRM_HEADER_PATCHLEVEL 16
Pekka Paalanen3a87b1f2009-11-21 01:00:36 +020029
30struct drm_nouveau_channel_alloc {
31 uint32_t fb_ctxdma_handle;
32 uint32_t tt_ctxdma_handle;
33
34 int channel;
Luca Barbierib496c632010-01-29 09:53:24 +010035 uint32_t pushbuf_domains;
Pekka Paalanen3a87b1f2009-11-21 01:00:36 +020036
37 /* Notifier memory */
38 uint32_t notifier_handle;
39
40 /* DRM-enforced subchannel assignments */
41 struct {
42 uint32_t handle;
43 uint32_t grclass;
44 } subchan[8];
45 uint32_t nr_subchan;
46};
47
48struct drm_nouveau_channel_free {
49 int channel;
50};
51
52struct drm_nouveau_grobj_alloc {
53 int channel;
54 uint32_t handle;
55 int class;
56};
57
58struct drm_nouveau_notifierobj_alloc {
59 uint32_t channel;
60 uint32_t handle;
61 uint32_t size;
62 uint32_t offset;
63};
64
65struct drm_nouveau_gpuobj_free {
66 int channel;
67 uint32_t handle;
68};
69
70/* FIXME : maybe unify {GET,SET}PARAMs */
71#define NOUVEAU_GETPARAM_PCI_VENDOR 3
72#define NOUVEAU_GETPARAM_PCI_DEVICE 4
73#define NOUVEAU_GETPARAM_BUS_TYPE 5
74#define NOUVEAU_GETPARAM_FB_PHYSICAL 6
75#define NOUVEAU_GETPARAM_AGP_PHYSICAL 7
76#define NOUVEAU_GETPARAM_FB_SIZE 8
77#define NOUVEAU_GETPARAM_AGP_SIZE 9
78#define NOUVEAU_GETPARAM_PCI_PHYSICAL 10
79#define NOUVEAU_GETPARAM_CHIPSET_ID 11
80#define NOUVEAU_GETPARAM_VM_VRAM_BASE 12
Marcin Koƛcielnickif2730572010-01-26 18:39:21 +000081#define NOUVEAU_GETPARAM_GRAPH_UNITS 13
Dave Airlie431f7f02010-08-04 08:41:23 +100082#define NOUVEAU_GETPARAM_PTIMER_TIME 14
Francisco Jerez1b9187c2010-09-28 22:47:11 +020083#define NOUVEAU_GETPARAM_HAS_BO_USAGE 15
Francisco Jerezc5286f42010-10-21 23:02:43 +020084#define NOUVEAU_GETPARAM_HAS_PAGEFLIP 16
Pekka Paalanen3a87b1f2009-11-21 01:00:36 +020085struct drm_nouveau_getparam {
86 uint64_t param;
87 uint64_t value;
88};
89
90struct drm_nouveau_setparam {
91 uint64_t param;
92 uint64_t value;
93};
94
95#define NOUVEAU_GEM_DOMAIN_CPU (1 << 0)
96#define NOUVEAU_GEM_DOMAIN_VRAM (1 << 1)
97#define NOUVEAU_GEM_DOMAIN_GART (1 << 2)
98#define NOUVEAU_GEM_DOMAIN_MAPPABLE (1 << 3)
99
Francisco Jerez1b9187c2010-09-28 22:47:11 +0200100#define NOUVEAU_GEM_TILE_LAYOUT_MASK 0x0000ff00
101#define NOUVEAU_GEM_TILE_16BPP 0x00000001
102#define NOUVEAU_GEM_TILE_32BPP 0x00000002
103#define NOUVEAU_GEM_TILE_ZETA 0x00000004
104#define NOUVEAU_GEM_TILE_NONCONTIG 0x00000008
105
Pekka Paalanen3a87b1f2009-11-21 01:00:36 +0200106struct drm_nouveau_gem_info {
107 uint32_t handle;
108 uint32_t domain;
109 uint64_t size;
110 uint64_t offset;
111 uint64_t map_handle;
112 uint32_t tile_mode;
113 uint32_t tile_flags;
114};
115
116struct drm_nouveau_gem_new {
117 struct drm_nouveau_gem_info info;
118 uint32_t channel_hint;
119 uint32_t align;
120};
121
Luca Barbierib496c632010-01-29 09:53:24 +0100122#define NOUVEAU_GEM_MAX_BUFFERS 1024
123struct drm_nouveau_gem_pushbuf_bo_presumed {
124 uint32_t valid;
125 uint32_t domain;
126 uint64_t offset;
127};
128
Pekka Paalanen3a87b1f2009-11-21 01:00:36 +0200129struct drm_nouveau_gem_pushbuf_bo {
130 uint64_t user_priv;
131 uint32_t handle;
132 uint32_t read_domains;
133 uint32_t write_domains;
134 uint32_t valid_domains;
Luca Barbierib496c632010-01-29 09:53:24 +0100135 struct drm_nouveau_gem_pushbuf_bo_presumed presumed;
Pekka Paalanen3a87b1f2009-11-21 01:00:36 +0200136};
137
138#define NOUVEAU_GEM_RELOC_LOW (1 << 0)
139#define NOUVEAU_GEM_RELOC_HIGH (1 << 1)
140#define NOUVEAU_GEM_RELOC_OR (1 << 2)
Luca Barbierib496c632010-01-29 09:53:24 +0100141#define NOUVEAU_GEM_MAX_RELOCS 1024
Pekka Paalanen3a87b1f2009-11-21 01:00:36 +0200142struct drm_nouveau_gem_pushbuf_reloc {
Luca Barbierib496c632010-01-29 09:53:24 +0100143 uint32_t reloc_bo_index;
144 uint32_t reloc_bo_offset;
Pekka Paalanen3a87b1f2009-11-21 01:00:36 +0200145 uint32_t bo_index;
Pekka Paalanen3a87b1f2009-11-21 01:00:36 +0200146 uint32_t flags;
147 uint32_t data;
148 uint32_t vor;
149 uint32_t tor;
150};
151
Ben Skeggs88e8a8b2010-02-16 15:42:00 +1000152#define NOUVEAU_GEM_MAX_PUSH 512
Luca Barbierib496c632010-01-29 09:53:24 +0100153struct drm_nouveau_gem_pushbuf_push {
154 uint32_t bo_index;
155 uint32_t pad;
156 uint64_t offset;
157 uint64_t length;
158};
Pekka Paalanen3a87b1f2009-11-21 01:00:36 +0200159
160struct drm_nouveau_gem_pushbuf {
161 uint32_t channel;
Pekka Paalanen3a87b1f2009-11-21 01:00:36 +0200162 uint32_t nr_buffers;
Pekka Paalanen3a87b1f2009-11-21 01:00:36 +0200163 uint64_t buffers;
Pekka Paalanen3a87b1f2009-11-21 01:00:36 +0200164 uint32_t nr_relocs;
Luca Barbierib496c632010-01-29 09:53:24 +0100165 uint32_t nr_push;
Pekka Paalanen3a87b1f2009-11-21 01:00:36 +0200166 uint64_t relocs;
Luca Barbierib496c632010-01-29 09:53:24 +0100167 uint64_t push;
Pekka Paalanen3a87b1f2009-11-21 01:00:36 +0200168 uint32_t suffix0;
169 uint32_t suffix1;
Pekka Paalanen3a87b1f2009-11-21 01:00:36 +0200170 uint64_t vram_available;
171 uint64_t gart_available;
172};
173
Andrew Chewfbef8702015-07-20 11:22:04 -0700174#define NOUVEAU_GEM_PUSHBUF_2_FENCE_WAIT 0x00000001
175#define NOUVEAU_GEM_PUSHBUF_2_FENCE_EMIT 0x00000002
176struct drm_nouveau_gem_pushbuf_2 {
177 uint32_t channel;
178 uint32_t flags;
179 uint32_t nr_push;
180 uint32_t nr_buffers;
181 int32_t fence; /* in/out, depends on flags */
182 uint32_t pad;
183 uint64_t push; /* in raw hw format */
184 uint64_t buffers; /* ptr to drm_nouveau_gem_pushbuf_bo */
185 uint64_t vram_available;
186 uint64_t gart_available;
187};
188
Pekka Paalanen3a87b1f2009-11-21 01:00:36 +0200189#define NOUVEAU_GEM_CPU_PREP_NOWAIT 0x00000001
190#define NOUVEAU_GEM_CPU_PREP_NOBLOCK 0x00000002
191#define NOUVEAU_GEM_CPU_PREP_WRITE 0x00000004
192struct drm_nouveau_gem_cpu_prep {
193 uint32_t handle;
194 uint32_t flags;
195};
196
197struct drm_nouveau_gem_cpu_fini {
198 uint32_t handle;
199};
200
Pekka Paalanen3a87b1f2009-11-21 01:00:36 +0200201enum nouveau_bus_type {
202 NV_AGP = 0,
203 NV_PCI = 1,
204 NV_PCIE = 2,
205};
206
207struct drm_nouveau_sarea {
208};
209
Luca Barbierib496c632010-01-29 09:53:24 +0100210#define DRM_NOUVEAU_GETPARAM 0x00
211#define DRM_NOUVEAU_SETPARAM 0x01
212#define DRM_NOUVEAU_CHANNEL_ALLOC 0x02
213#define DRM_NOUVEAU_CHANNEL_FREE 0x03
214#define DRM_NOUVEAU_GROBJ_ALLOC 0x04
215#define DRM_NOUVEAU_NOTIFIEROBJ_ALLOC 0x05
216#define DRM_NOUVEAU_GPUOBJ_FREE 0x06
Pekka Paalanen3a87b1f2009-11-21 01:00:36 +0200217#define DRM_NOUVEAU_GEM_NEW 0x40
218#define DRM_NOUVEAU_GEM_PUSHBUF 0x41
Luca Barbierib496c632010-01-29 09:53:24 +0100219#define DRM_NOUVEAU_GEM_CPU_PREP 0x42
220#define DRM_NOUVEAU_GEM_CPU_FINI 0x43
221#define DRM_NOUVEAU_GEM_INFO 0x44
Pekka Paalanen3a87b1f2009-11-21 01:00:36 +0200222
David Ungf1d84bc2015-05-08 11:49:29 -0700223/* The ioctls below are marked as staging */
224#define DRM_NOUVEAU_GEM_SET_TILING 0x50
225#define DRM_NOUVEAU_GEM_PUSHBUF_2 0x51
226
Pekka Paalanen3a87b1f2009-11-21 01:00:36 +0200227#endif /* __NOUVEAU_DRM_H__ */