r600g: suspend/resume occlusion query around clear/copy
[mesa.git] / src / gallium / drivers / r600 / r600.h
1 /*
2 * Copyright 2010 Jerome Glisse <glisse@freedesktop.org>
3 *
4 * Permission is hereby granted, free of charge, to any person obtaining a
5 * copy of this software and associated documentation files (the "Software"),
6 * to deal in the Software without restriction, including without limitation
7 * on the rights to use, copy, modify, merge, publish, distribute, sub
8 * license, and/or sell copies of the Software, and to permit persons to whom
9 * the Software is furnished to do so, subject to the following conditions:
10 *
11 * The above copyright notice and this permission notice (including the next
12 * paragraph) shall be included in all copies or substantial portions of the
13 * Software.
14 *
15 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17 * FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT. IN NO EVENT SHALL
18 * THE AUTHOR(S) AND/OR THEIR SUPPLIERS BE LIABLE FOR ANY CLAIM,
19 * DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR
20 * OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE
21 * USE OR OTHER DEALINGS IN THE SOFTWARE.
22 *
23 * Authors:
24 * Jerome Glisse
25 */
26 #ifndef R600_H
27 #define R600_H
28
29 #include <stdint.h>
30 #include <stdio.h>
31 #include <util/u_double_list.h>
32 #include <pipe/p_compiler.h>
33
34 #define RADEON_CTX_MAX_PM4 (64 * 1024 / 4)
35
36 #define R600_ERR(fmt, args...) \
37 fprintf(stderr, "EE %s/%s:%d - "fmt, __FILE__, __func__, __LINE__, ##args)
38
39 typedef uint64_t u64;
40 typedef uint32_t u32;
41 typedef uint16_t u16;
42 typedef uint8_t u8;
43
44 struct radeon;
45
46 enum radeon_family {
47 CHIP_UNKNOWN,
48 CHIP_R100,
49 CHIP_RV100,
50 CHIP_RS100,
51 CHIP_RV200,
52 CHIP_RS200,
53 CHIP_R200,
54 CHIP_RV250,
55 CHIP_RS300,
56 CHIP_RV280,
57 CHIP_R300,
58 CHIP_R350,
59 CHIP_RV350,
60 CHIP_RV380,
61 CHIP_R420,
62 CHIP_R423,
63 CHIP_RV410,
64 CHIP_RS400,
65 CHIP_RS480,
66 CHIP_RS600,
67 CHIP_RS690,
68 CHIP_RS740,
69 CHIP_RV515,
70 CHIP_R520,
71 CHIP_RV530,
72 CHIP_RV560,
73 CHIP_RV570,
74 CHIP_R580,
75 CHIP_R600,
76 CHIP_RV610,
77 CHIP_RV630,
78 CHIP_RV670,
79 CHIP_RV620,
80 CHIP_RV635,
81 CHIP_RS780,
82 CHIP_RS880,
83 CHIP_RV770,
84 CHIP_RV730,
85 CHIP_RV710,
86 CHIP_RV740,
87 CHIP_CEDAR,
88 CHIP_REDWOOD,
89 CHIP_JUNIPER,
90 CHIP_CYPRESS,
91 CHIP_HEMLOCK,
92 CHIP_LAST,
93 };
94
95 enum chip_class {
96 R600,
97 R700,
98 EVERGREEN,
99 };
100
101 enum radeon_family r600_get_family(struct radeon *rw);
102 enum chip_class r600_get_family_class(struct radeon *radeon);
103
104 /* lowlevel WS bo */
105 struct radeon_ws_bo;
106 struct radeon_ws_bo *radeon_ws_bo(struct radeon *radeon,
107 unsigned size, unsigned alignment, unsigned usage);
108 struct radeon_ws_bo *radeon_ws_bo_handle(struct radeon *radeon,
109 unsigned handle);
110 void *radeon_ws_bo_map(struct radeon *radeon, struct radeon_ws_bo *bo, unsigned usage, void *ctx);
111 void radeon_ws_bo_unmap(struct radeon *radeon, struct radeon_ws_bo *bo);
112 void radeon_ws_bo_reference(struct radeon *radeon, struct radeon_ws_bo **dst,
113 struct radeon_ws_bo *src);
114
115 /* R600/R700 STATES */
116 #define R600_GROUP_MAX 16
117 #define R600_BLOCK_MAX_BO 32
118 #define R600_BLOCK_MAX_REG 128
119
120 enum r600_group_id {
121 R600_GROUP_CONFIG = 0,
122 R600_GROUP_CONTEXT,
123 R600_GROUP_ALU_CONST,
124 R600_GROUP_RESOURCE,
125 R600_GROUP_SAMPLER,
126 R600_GROUP_CTL_CONST,
127 R600_GROUP_LOOP_CONST,
128 R600_GROUP_BOOL_CONST,
129 R600_NGROUPS
130 };
131
132 enum evergreen_group_id {
133 EVERGREEN_GROUP_CONFIG = 0,
134 EVERGREEN_GROUP_CONTEXT,
135 EVERGREEN_GROUP_RESOURCE,
136 EVERGREEN_GROUP_SAMPLER,
137 EVERGREEN_GROUP_CTL_CONST,
138 EVERGREEN_GROUP_LOOP_CONST,
139 EVERGREEN_GROUP_BOOL_CONST,
140 EVERGREEN_GROUP_SAMPLER_BORDER,
141 EVERGREEN_NGROUPS
142 };
143
144 struct r600_pipe_reg {
145 unsigned group_id;
146 u32 offset;
147 u32 mask;
148 u32 value;
149 struct radeon_ws_bo *bo;
150 };
151
152 struct r600_pipe_state {
153 unsigned id;
154 unsigned nregs;
155 struct r600_pipe_reg regs[R600_BLOCK_MAX_REG];
156 };
157
158 static inline void r600_pipe_state_add_reg(struct r600_pipe_state *state,
159 unsigned group_id, u32 offset,
160 u32 value, u32 mask,
161 struct radeon_ws_bo *bo)
162 {
163 state->regs[state->nregs].group_id = group_id;
164 state->regs[state->nregs].offset = offset;
165 state->regs[state->nregs].value = value;
166 state->regs[state->nregs].mask = mask;
167 state->regs[state->nregs].bo = bo;
168 state->nregs++;
169 assert(state->nregs < R600_BLOCK_MAX_REG);
170 }
171
172 #define R600_BLOCK_STATUS_ENABLED (1 << 0)
173 #define R600_BLOCK_STATUS_DIRTY (1 << 1)
174
175 struct r600_block_reloc {
176 struct radeon_ws_bo *bo;
177 unsigned nreloc;
178 unsigned bo_pm4_index[R600_BLOCK_MAX_BO];
179 };
180
181 struct r600_group_block {
182 unsigned status;
183 unsigned start_offset;
184 unsigned pm4_ndwords;
185 unsigned nbo;
186 unsigned nreg;
187 u32 *reg;
188 u32 pm4[R600_BLOCK_MAX_REG];
189 unsigned pm4_bo_index[R600_BLOCK_MAX_REG];
190 struct r600_block_reloc reloc[R600_BLOCK_MAX_BO];
191 };
192
193 struct r600_group {
194 unsigned start_offset;
195 unsigned end_offset;
196 unsigned nblocks;
197 struct r600_group_block *blocks;
198 unsigned *offset_block_id;
199 };
200
201 /*
202 * relocation
203 */
204 #pragma pack(1)
205 struct r600_reloc {
206 uint32_t handle;
207 uint32_t read_domain;
208 uint32_t write_domain;
209 uint32_t flags;
210 };
211 #pragma pack()
212
213 /*
214 * query
215 */
216 struct r600_query {
217 u64 result;
218 /* The kind of query. Currently only OQ is supported. */
219 unsigned type;
220 /* How many results have been written, in dwords. It's incremented
221 * after end_query and flush. */
222 unsigned num_results;
223 /* if we've flushed the query */
224 unsigned state;
225 /* The buffer where query results are stored. */
226 struct radeon_ws_bo *buffer;
227 unsigned buffer_size;
228 /* linked list of queries */
229 struct list_head list;
230 };
231
232 #define R600_QUERY_STATE_STARTED (1 << 0)
233 #define R600_QUERY_STATE_ENDED (1 << 1)
234 #define R600_QUERY_STATE_SUSPENDED (1 << 2)
235
236
237 struct r600_context {
238 struct radeon *radeon;
239 unsigned ngroups;
240 struct r600_group groups[R600_GROUP_MAX];
241 unsigned pm4_ndwords;
242 unsigned pm4_cdwords;
243 unsigned pm4_dirty_cdwords;
244 unsigned ctx_pm4_ndwords;
245 unsigned nreloc;
246 unsigned creloc;
247 struct r600_reloc *reloc;
248 struct radeon_bo **bo;
249 u32 *pm4;
250 struct list_head query_list;
251 unsigned num_query_running;
252 };
253
254 struct r600_draw {
255 u32 vgt_num_indices;
256 u32 vgt_num_instances;
257 u32 vgt_index_type;
258 u32 vgt_draw_initiator;
259 u32 indices_bo_offset;
260 struct radeon_ws_bo *indices;
261 };
262
263 int r600_context_init(struct r600_context *ctx, struct radeon *radeon);
264 void r600_context_fini(struct r600_context *ctx);
265 void r600_context_pipe_state_set(struct r600_context *ctx, struct r600_pipe_state *state);
266 void r600_context_pipe_state_set_ps_resource(struct r600_context *ctx, struct r600_pipe_state *state, unsigned rid);
267 void r600_context_pipe_state_set_vs_resource(struct r600_context *ctx, struct r600_pipe_state *state, unsigned rid);
268 void r600_context_pipe_state_set_ps_sampler(struct r600_context *ctx, struct r600_pipe_state *state, unsigned id);
269 void r600_context_pipe_state_set_vs_sampler(struct r600_context *ctx, struct r600_pipe_state *state, unsigned id);
270 void r600_context_flush(struct r600_context *ctx);
271 void r600_context_dump_bof(struct r600_context *ctx, const char *file);
272 void r600_context_draw(struct r600_context *ctx, const struct r600_draw *draw);
273
274 struct r600_query *r600_context_query_create(struct r600_context *ctx, unsigned query_type);
275 void r600_context_query_destroy(struct r600_context *ctx, struct r600_query *query);
276 boolean r600_context_query_result(struct r600_context *ctx,
277 struct r600_query *query,
278 boolean wait, void *vresult);
279 void r600_query_begin(struct r600_context *ctx, struct r600_query *query);
280 void r600_query_end(struct r600_context *ctx, struct r600_query *query);
281 void r600_context_queries_suspend(struct r600_context *ctx);
282 void r600_context_queries_resume(struct r600_context *ctx);
283
284 int evergreen_context_init(struct r600_context *ctx, struct radeon *radeon);
285 void evergreen_context_draw(struct r600_context *ctx, const struct r600_draw *draw);
286 void evergreen_ps_resource_set(struct r600_context *ctx, struct r600_pipe_state *state, unsigned rid);
287 void evergreen_vs_resource_set(struct r600_context *ctx, struct r600_pipe_state *state, unsigned rid);
288
289 void evergreen_context_pipe_state_set_ps_resource(struct r600_context *ctx, struct r600_pipe_state *state, unsigned rid);
290 void evergreen_context_pipe_state_set_vs_resource(struct r600_context *ctx, struct r600_pipe_state *state, unsigned rid);
291 void evergreen_context_pipe_state_set_ps_sampler(struct r600_context *ctx, struct r600_pipe_state *state, unsigned id);
292 void evergreen_context_pipe_state_set_vs_sampler(struct r600_context *ctx, struct r600_pipe_state *state, unsigned id);
293
294 #endif