Merge branch 'mesa_7_5_branch'
[mesa.git] / src / gallium / drivers / nouveau / nouveau_stateobj.h
1 #ifndef __NOUVEAU_STATEOBJ_H__
2 #define __NOUVEAU_STATEOBJ_H__
3
4 #include "util/u_debug.h"
5
6 struct nouveau_stateobj_reloc {
7 struct nouveau_bo *bo;
8
9 unsigned offset;
10 unsigned packet;
11
12 unsigned data;
13 unsigned flags;
14 unsigned vor;
15 unsigned tor;
16 };
17
18 struct nouveau_stateobj {
19 struct pipe_reference reference;
20
21 unsigned *push;
22 struct nouveau_stateobj_reloc *reloc;
23
24 unsigned *cur;
25 unsigned cur_packet;
26 unsigned cur_reloc;
27 };
28
29 static INLINE struct nouveau_stateobj *
30 so_new(unsigned push, unsigned reloc)
31 {
32 struct nouveau_stateobj *so;
33
34 so = MALLOC(sizeof(struct nouveau_stateobj));
35 pipe_reference_init(&so->reference, 1);
36 so->push = MALLOC(sizeof(unsigned) * push);
37 so->reloc = MALLOC(sizeof(struct nouveau_stateobj_reloc) * reloc);
38
39 so->cur = so->push;
40 so->cur_reloc = so->cur_packet = 0;
41
42 return so;
43 }
44
45 static INLINE void
46 so_ref(struct nouveau_stateobj *ref, struct nouveau_stateobj **pso)
47 {
48 struct nouveau_stateobj *so = *pso;
49 int i;
50
51 if (pipe_reference((struct pipe_reference**)pso, &ref->reference)) {
52 free(so->push);
53 for (i = 0; i < so->cur_reloc; i++)
54 nouveau_bo_ref(NULL, &so->reloc[i].bo);
55 free(so->reloc);
56 free(so);
57 }
58 }
59
60 static INLINE void
61 so_data(struct nouveau_stateobj *so, unsigned data)
62 {
63 (*so->cur++) = (data);
64 so->cur_packet += 4;
65 }
66
67 static INLINE void
68 so_datap(struct nouveau_stateobj *so, unsigned *data, unsigned size)
69 {
70 so->cur_packet += (4 * size);
71 while (size--)
72 (*so->cur++) = (*data++);
73 }
74
75 static INLINE void
76 so_method(struct nouveau_stateobj *so, struct nouveau_grobj *gr,
77 unsigned mthd, unsigned size)
78 {
79 so->cur_packet = (gr->subc << 13) | (1 << 18) | (mthd - 4);
80 so_data(so, (gr->subc << 13) | (size << 18) | mthd);
81 }
82
83 static INLINE void
84 so_reloc(struct nouveau_stateobj *so, struct nouveau_bo *bo,
85 unsigned data, unsigned flags, unsigned vor, unsigned tor)
86 {
87 struct nouveau_stateobj_reloc *r = &so->reloc[so->cur_reloc++];
88
89 r->bo = NULL;
90 nouveau_bo_ref(bo, &r->bo);
91 r->offset = so->cur - so->push;
92 r->packet = so->cur_packet;
93 r->data = data;
94 r->flags = flags;
95 r->vor = vor;
96 r->tor = tor;
97 so_data(so, data);
98 }
99
100 static INLINE void
101 so_dump(struct nouveau_stateobj *so)
102 {
103 unsigned i, nr = so->cur - so->push;
104
105 for (i = 0; i < nr; i++)
106 debug_printf("+0x%04x: 0x%08x\n", i, so->push[i]);
107 }
108
109 static INLINE void
110 so_emit(struct nouveau_channel *chan, struct nouveau_stateobj *so)
111 {
112 struct nouveau_pushbuf *pb = chan->pushbuf;
113 unsigned nr, i;
114
115 nr = so->cur - so->push;
116 if (pb->remaining < nr)
117 nouveau_pushbuf_flush(chan, nr);
118 pb->remaining -= nr;
119
120 memcpy(pb->cur, so->push, nr * 4);
121 for (i = 0; i < so->cur_reloc; i++) {
122 struct nouveau_stateobj_reloc *r = &so->reloc[i];
123
124 nouveau_pushbuf_emit_reloc(chan, pb->cur + r->offset,
125 r->bo, r->data, 0, r->flags,
126 r->vor, r->tor);
127 }
128 pb->cur += nr;
129 }
130
131 static INLINE void
132 so_emit_reloc_markers(struct nouveau_channel *chan, struct nouveau_stateobj *so)
133 {
134 struct nouveau_pushbuf *pb = chan->pushbuf;
135 unsigned i;
136
137 if (!so)
138 return;
139
140 i = so->cur_reloc << 1;
141 if (pb->remaining < i)
142 nouveau_pushbuf_flush(chan, i);
143 pb->remaining -= i;
144
145 for (i = 0; i < so->cur_reloc; i++) {
146 struct nouveau_stateobj_reloc *r = &so->reloc[i];
147
148 nouveau_pushbuf_emit_reloc(chan, pb->cur++, r->bo, r->packet, 0,
149 (r->flags & (NOUVEAU_BO_VRAM |
150 NOUVEAU_BO_GART |
151 NOUVEAU_BO_RDWR)) |
152 NOUVEAU_BO_DUMMY, 0, 0);
153 nouveau_pushbuf_emit_reloc(chan, pb->cur++, r->bo, r->data, 0,
154 r->flags | NOUVEAU_BO_DUMMY,
155 r->vor, r->tor);
156 }
157 }
158
159 #endif