7 #define NOUVEAU_DEVICE_CLASS 0x80000000
8 #define NOUVEAU_FIFO_CHANNEL_CLASS 0x80000001
9 #define NOUVEAU_NOTIFIER_CLASS 0x80000002
10 #define NOUVEAU_PARENT_CLASS 0xffffffff
13 struct nouveau_list *prev;
14 struct nouveau_list *next;
17 struct nouveau_object {
18 struct nouveau_object *parent;
26 struct nouveau_object *object;
33 struct nouveau_fifo base;
40 struct nouveau_fifo base;
44 #define NVE0_FIFO_ENGINE_GR 0x00000001
45 #define NVE0_FIFO_ENGINE_VP 0x00000002
46 #define NVE0_FIFO_ENGINE_PPP 0x00000004
47 #define NVE0_FIFO_ENGINE_BSP 0x00000008
48 #define NVE0_FIFO_ENGINE_CE0 0x00000010
49 #define NVE0_FIFO_ENGINE_CE1 0x00000020
50 #define NVE0_FIFO_ENGINE_ENC 0x00000040
54 struct nouveau_fifo base;
61 struct nouveau_object *object;
66 int nouveau_object_new(struct nouveau_object *parent, uint64_t handle,
67 uint32_t oclass, void *data, uint32_t length,
68 struct nouveau_object **);
69 void nouveau_object_del(struct nouveau_object **);
70 void *nouveau_object_find(struct nouveau_object *, uint32_t parent_class);
72 struct nouveau_device {
73 struct nouveau_object object;
84 int nouveau_device_wrap(int fd, int close, struct nouveau_device **);
85 int nouveau_device_open(const char *busid, struct nouveau_device **);
86 void nouveau_device_del(struct nouveau_device **);
87 int nouveau_getparam(struct nouveau_device *, uint64_t param, uint64_t *value);
88 int nouveau_setparam(struct nouveau_device *, uint64_t param, uint64_t value);
90 struct nouveau_client {
91 struct nouveau_device *device;
95 int nouveau_client_new(struct nouveau_device *, struct nouveau_client **);
96 void nouveau_client_del(struct nouveau_client **);
98 union nouveau_bo_config {
100 #define NV04_BO_16BPP 0x00000001
101 #define NV04_BO_32BPP 0x00000002
102 #define NV04_BO_ZETA 0x00000004
117 #define NOUVEAU_BO_VRAM 0x00000001
118 #define NOUVEAU_BO_GART 0x00000002
119 #define NOUVEAU_BO_APER (NOUVEAU_BO_VRAM | NOUVEAU_BO_GART)
120 #define NOUVEAU_BO_RD 0x00000100
121 #define NOUVEAU_BO_WR 0x00000200
122 #define NOUVEAU_BO_RDWR (NOUVEAU_BO_RD | NOUVEAU_BO_WR)
123 #define NOUVEAU_BO_NOBLOCK 0x00000400
124 #define NOUVEAU_BO_LOW 0x00001000
125 #define NOUVEAU_BO_HIGH 0x00002000
126 #define NOUVEAU_BO_OR 0x00004000
127 #define NOUVEAU_BO_MAP 0x80000000
128 #define NOUVEAU_BO_CONTIG 0x40000000
129 #define NOUVEAU_BO_NOSNOOP 0x20000000
132 struct nouveau_device *device;
138 union nouveau_bo_config config;
141 int nouveau_bo_new(struct nouveau_device *, uint32_t flags, uint32_t align,
142 uint64_t size, union nouveau_bo_config *,
143 struct nouveau_bo **);
144 int nouveau_bo_wrap(struct nouveau_device *, uint32_t handle,
145 struct nouveau_bo **);
146 int nouveau_bo_name_ref(struct nouveau_device *dev, uint32_t name,
147 struct nouveau_bo **);
148 int nouveau_bo_name_get(struct nouveau_bo *, uint32_t *name);
149 void nouveau_bo_ref(struct nouveau_bo *, struct nouveau_bo **);
150 int nouveau_bo_map(struct nouveau_bo *, uint32_t access,
151 struct nouveau_client *);
152 int nouveau_bo_wait(struct nouveau_bo *, uint32_t access,
153 struct nouveau_client *);
154 int nouveau_bo_prime_handle_ref(struct nouveau_device *dev, int prime_fd,
155 struct nouveau_bo **);
156 int nouveau_bo_set_prime(struct nouveau_bo *bo, int *prime_fd);
158 struct nouveau_bufref {
159 struct nouveau_list thead;
160 struct nouveau_bo *bo;
170 struct nouveau_bufctx {
171 struct nouveau_client *client;
172 struct nouveau_list head;
173 struct nouveau_list pending;
174 struct nouveau_list current;
178 int nouveau_bufctx_new(struct nouveau_client *, int bins,
179 struct nouveau_bufctx **);
180 void nouveau_bufctx_del(struct nouveau_bufctx **);
181 struct nouveau_bufref *
182 nouveau_bufctx_refn(struct nouveau_bufctx *, int bin,
183 struct nouveau_bo *, uint32_t flags);
184 struct nouveau_bufref *
185 nouveau_bufctx_mthd(struct nouveau_bufctx *, int bin, uint32_t packet,
186 struct nouveau_bo *, uint64_t data, uint32_t flags,
187 uint32_t vor, uint32_t tor);
188 void nouveau_bufctx_reset(struct nouveau_bufctx *, int bin);
190 struct nouveau_pushbuf_krec;
191 struct nouveau_pushbuf {
192 struct nouveau_client *client;
193 struct nouveau_object *channel;
194 struct nouveau_bufctx *bufctx;
195 void (*kick_notify)(struct nouveau_pushbuf *);
203 struct nouveau_pushbuf_refn {
204 struct nouveau_bo *bo;
208 int nouveau_pushbuf_new(struct nouveau_client *, struct nouveau_object *channel,
209 int nr, uint32_t size, bool immediate,
210 struct nouveau_pushbuf **);
211 void nouveau_pushbuf_del(struct nouveau_pushbuf **);
212 int nouveau_pushbuf_space(struct nouveau_pushbuf *, uint32_t dwords,
213 uint32_t relocs, uint32_t pushes);
214 void nouveau_pushbuf_data(struct nouveau_pushbuf *, struct nouveau_bo *,
215 uint64_t offset, uint64_t length);
216 int nouveau_pushbuf_refn(struct nouveau_pushbuf *,
217 struct nouveau_pushbuf_refn *, int nr);
218 /* Emits a reloc into the push buffer at the current position, you *must*
219 * have previously added the referenced buffer to a buffer context, and
220 * validated it against the current push buffer.
222 void nouveau_pushbuf_reloc(struct nouveau_pushbuf *, struct nouveau_bo *,
223 uint32_t data, uint32_t flags,
224 uint32_t vor, uint32_t tor);
225 int nouveau_pushbuf_validate(struct nouveau_pushbuf *);
226 uint32_t nouveau_pushbuf_refd(struct nouveau_pushbuf *, struct nouveau_bo *);
227 int nouveau_pushbuf_kick(struct nouveau_pushbuf *, struct nouveau_object *channel);
228 struct nouveau_bufctx *
229 nouveau_pushbuf_bufctx(struct nouveau_pushbuf *, struct nouveau_bufctx *);