Merge branch 'master' of ssh://git.freedesktop.org/git/mesa/mesa into pipe-video
[mesa.git] / src / mesa / drivers / dri / i965 / brw_queryobj.c
1 /*
2 * Copyright © 2008 Intel Corporation
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 * the rights to use, copy, modify, merge, publish, distribute, sublicense,
8 * and/or sell copies of the Software, and to permit persons to whom the
9 * 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 NONINFRINGEMENT. IN NO EVENT SHALL
18 * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
20 * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS
21 * IN THE SOFTWARE.
22 *
23 * Authors:
24 * Eric Anholt <eric@anholt.net>
25 *
26 */
27
28 /** @file support for ARB_query_object
29 *
30 * ARB_query_object is implemented by using the PIPE_CONTROL command to stall
31 * execution on the completion of previous depth tests, and write the
32 * current PS_DEPTH_COUNT to a buffer object.
33 *
34 * We use before and after counts when drawing during a query so that
35 * we don't pick up other clients' query data in ours. To reduce overhead,
36 * a single BO is used to record the query data for all active queries at
37 * once. This also gives us a simple bound on how much batchbuffer space is
38 * required for handling queries, so that we can be sure that we won't
39 * have to emit a batchbuffer without getting the ending PS_DEPTH_COUNT.
40 */
41 #include "main/imports.h"
42
43 #include "brw_context.h"
44 #include "brw_state.h"
45 #include "intel_batchbuffer.h"
46 #include "intel_reg.h"
47
48 /** Waits on the query object's BO and totals the results for this query */
49 static void
50 brw_queryobj_get_results(struct brw_query_object *query)
51 {
52 int i;
53 uint64_t *results;
54
55 if (query->bo == NULL)
56 return;
57
58 drm_intel_bo_map(query->bo, GL_FALSE);
59 results = query->bo->virtual;
60 if (query->Base.Target == GL_TIME_ELAPSED_EXT) {
61 query->Base.Result += 1000 * ((results[1] >> 32) - (results[0] >> 32));
62 } else {
63 /* Map and count the pixels from the current query BO */
64 for (i = query->first_index; i <= query->last_index; i++) {
65 query->Base.Result += results[i * 2 + 1] - results[i * 2];
66 }
67 }
68 drm_intel_bo_unmap(query->bo);
69
70 drm_intel_bo_unreference(query->bo);
71 query->bo = NULL;
72 }
73
74 static struct gl_query_object *
75 brw_new_query_object(GLcontext *ctx, GLuint id)
76 {
77 struct brw_query_object *query;
78
79 query = calloc(1, sizeof(struct brw_query_object));
80
81 query->Base.Id = id;
82 query->Base.Result = 0;
83 query->Base.Active = GL_FALSE;
84 query->Base.Ready = GL_TRUE;
85
86 return &query->Base;
87 }
88
89 static void
90 brw_delete_query(GLcontext *ctx, struct gl_query_object *q)
91 {
92 struct brw_query_object *query = (struct brw_query_object *)q;
93
94 drm_intel_bo_unreference(query->bo);
95 free(query);
96 }
97
98 static void
99 brw_begin_query(GLcontext *ctx, struct gl_query_object *q)
100 {
101 struct brw_context *brw = brw_context(ctx);
102 struct intel_context *intel = intel_context(ctx);
103 struct brw_query_object *query = (struct brw_query_object *)q;
104
105 if (query->Base.Target == GL_TIME_ELAPSED_EXT) {
106 drm_intel_bo_unreference(query->bo);
107 query->bo = drm_intel_bo_alloc(intel->bufmgr, "timer query",
108 4096, 4096);
109
110 if (intel->gen >= 6) {
111 BEGIN_BATCH(4);
112 OUT_BATCH(_3DSTATE_PIPE_CONTROL);
113 OUT_BATCH(PIPE_CONTROL_WRITE_TIMESTAMP);
114 OUT_RELOC(query->bo,
115 I915_GEM_DOMAIN_INSTRUCTION, I915_GEM_DOMAIN_INSTRUCTION,
116 PIPE_CONTROL_GLOBAL_GTT_WRITE |
117 0);
118 OUT_BATCH(0);
119 ADVANCE_BATCH();
120
121 } else {
122 BEGIN_BATCH(4);
123 OUT_BATCH(_3DSTATE_PIPE_CONTROL |
124 PIPE_CONTROL_WRITE_TIMESTAMP);
125 OUT_RELOC(query->bo,
126 I915_GEM_DOMAIN_INSTRUCTION, I915_GEM_DOMAIN_INSTRUCTION,
127 PIPE_CONTROL_GLOBAL_GTT_WRITE |
128 0);
129 OUT_BATCH(0);
130 OUT_BATCH(0);
131 ADVANCE_BATCH();
132 }
133 } else {
134 /* Reset our driver's tracking of query state. */
135 drm_intel_bo_unreference(query->bo);
136 query->bo = NULL;
137 query->first_index = -1;
138 query->last_index = -1;
139
140 brw->query.obj = query;
141 intel->stats_wm++;
142 }
143 }
144
145 /**
146 * Begin the ARB_occlusion_query query on a query object.
147 */
148 static void
149 brw_end_query(GLcontext *ctx, struct gl_query_object *q)
150 {
151 struct brw_context *brw = brw_context(ctx);
152 struct intel_context *intel = intel_context(ctx);
153 struct brw_query_object *query = (struct brw_query_object *)q;
154
155 if (query->Base.Target == GL_TIME_ELAPSED_EXT) {
156 if (intel->gen >= 6) {
157 BEGIN_BATCH(4);
158 OUT_BATCH(_3DSTATE_PIPE_CONTROL);
159 OUT_BATCH(PIPE_CONTROL_WRITE_TIMESTAMP);
160 OUT_RELOC(query->bo,
161 I915_GEM_DOMAIN_INSTRUCTION, I915_GEM_DOMAIN_INSTRUCTION,
162 PIPE_CONTROL_GLOBAL_GTT_WRITE |
163 8);
164 OUT_BATCH(0);
165 ADVANCE_BATCH();
166
167 } else {
168 BEGIN_BATCH(4);
169 OUT_BATCH(_3DSTATE_PIPE_CONTROL |
170 PIPE_CONTROL_WRITE_TIMESTAMP);
171 OUT_RELOC(query->bo,
172 I915_GEM_DOMAIN_INSTRUCTION, I915_GEM_DOMAIN_INSTRUCTION,
173 PIPE_CONTROL_GLOBAL_GTT_WRITE |
174 8);
175 OUT_BATCH(0);
176 OUT_BATCH(0);
177 ADVANCE_BATCH();
178 }
179
180 intel_batchbuffer_flush(intel->batch);
181 } else {
182 /* Flush the batchbuffer in case it has writes to our query BO.
183 * Have later queries write to a new query BO so that further rendering
184 * doesn't delay the collection of our results.
185 */
186 if (query->bo) {
187 brw_emit_query_end(brw);
188 intel_batchbuffer_flush(intel->batch);
189
190 drm_intel_bo_unreference(brw->query.bo);
191 brw->query.bo = NULL;
192 }
193
194 brw->query.obj = NULL;
195
196 intel->stats_wm--;
197 }
198 }
199
200 static void brw_wait_query(GLcontext *ctx, struct gl_query_object *q)
201 {
202 struct brw_query_object *query = (struct brw_query_object *)q;
203
204 brw_queryobj_get_results(query);
205 query->Base.Ready = GL_TRUE;
206 }
207
208 static void brw_check_query(GLcontext *ctx, struct gl_query_object *q)
209 {
210 struct brw_query_object *query = (struct brw_query_object *)q;
211
212 if (query->bo == NULL || !drm_intel_bo_busy(query->bo)) {
213 brw_queryobj_get_results(query);
214 query->Base.Ready = GL_TRUE;
215 }
216 }
217
218 /** Called to set up the query BO and account for its aperture space */
219 void
220 brw_prepare_query_begin(struct brw_context *brw)
221 {
222 struct intel_context *intel = &brw->intel;
223
224 /* Skip if we're not doing any queries. */
225 if (!brw->query.obj)
226 return;
227
228 /* Get a new query BO if we're going to need it. */
229 if (brw->query.bo == NULL ||
230 brw->query.index * 2 + 1 >= 4096 / sizeof(uint64_t)) {
231 drm_intel_bo_unreference(brw->query.bo);
232 brw->query.bo = NULL;
233
234 brw->query.bo = drm_intel_bo_alloc(intel->bufmgr, "query", 4096, 1);
235 brw->query.index = 0;
236 }
237
238 brw_add_validated_bo(brw, brw->query.bo);
239 }
240
241 /** Called just before primitive drawing to get a beginning PS_DEPTH_COUNT. */
242 void
243 brw_emit_query_begin(struct brw_context *brw)
244 {
245 struct intel_context *intel = &brw->intel;
246 struct brw_query_object *query = brw->query.obj;
247
248 /* Skip if we're not doing any queries, or we've emitted the start. */
249 if (!query || brw->query.active)
250 return;
251
252 if (intel->gen >= 6) {
253 BEGIN_BATCH(8);
254
255 /* workaround: CS stall required before depth stall. */
256 OUT_BATCH(_3DSTATE_PIPE_CONTROL);
257 OUT_BATCH(PIPE_CONTROL_CS_STALL);
258 OUT_BATCH(0); /* write address */
259 OUT_BATCH(0); /* write data */
260
261 OUT_BATCH(_3DSTATE_PIPE_CONTROL);
262 OUT_BATCH(PIPE_CONTROL_DEPTH_STALL |
263 PIPE_CONTROL_WRITE_DEPTH_COUNT);
264 OUT_RELOC(brw->query.bo,
265 I915_GEM_DOMAIN_INSTRUCTION, I915_GEM_DOMAIN_INSTRUCTION,
266 PIPE_CONTROL_GLOBAL_GTT_WRITE |
267 ((brw->query.index * 2) * sizeof(uint64_t)));
268 OUT_BATCH(0);
269 ADVANCE_BATCH();
270
271 } else {
272 BEGIN_BATCH(4);
273 OUT_BATCH(_3DSTATE_PIPE_CONTROL |
274 PIPE_CONTROL_DEPTH_STALL |
275 PIPE_CONTROL_WRITE_DEPTH_COUNT);
276 /* This object could be mapped cacheable, but we don't have an exposed
277 * mechanism to support that. Since it's going uncached, tell GEM that
278 * we're writing to it. The usual clflush should be all that's required
279 * to pick up the results.
280 */
281 OUT_RELOC(brw->query.bo,
282 I915_GEM_DOMAIN_INSTRUCTION, I915_GEM_DOMAIN_INSTRUCTION,
283 PIPE_CONTROL_GLOBAL_GTT_WRITE |
284 ((brw->query.index * 2) * sizeof(uint64_t)));
285 OUT_BATCH(0);
286 OUT_BATCH(0);
287 ADVANCE_BATCH();
288 }
289
290 if (query->bo != brw->query.bo) {
291 if (query->bo != NULL)
292 brw_queryobj_get_results(query);
293 drm_intel_bo_reference(brw->query.bo);
294 query->bo = brw->query.bo;
295 query->first_index = brw->query.index;
296 }
297 query->last_index = brw->query.index;
298 brw->query.active = GL_TRUE;
299 }
300
301 /** Called at batchbuffer flush to get an ending PS_DEPTH_COUNT */
302 void
303 brw_emit_query_end(struct brw_context *brw)
304 {
305 struct intel_context *intel = &brw->intel;
306
307 if (!brw->query.active)
308 return;
309
310 if (intel->gen >= 6) {
311 BEGIN_BATCH(8);
312 /* workaround: CS stall required before depth stall. */
313 OUT_BATCH(_3DSTATE_PIPE_CONTROL);
314 OUT_BATCH(PIPE_CONTROL_CS_STALL);
315 OUT_BATCH(0); /* write address */
316 OUT_BATCH(0); /* write data */
317
318 OUT_BATCH(_3DSTATE_PIPE_CONTROL);
319 OUT_BATCH(PIPE_CONTROL_DEPTH_STALL |
320 PIPE_CONTROL_WRITE_DEPTH_COUNT);
321 OUT_RELOC(brw->query.bo,
322 I915_GEM_DOMAIN_INSTRUCTION, I915_GEM_DOMAIN_INSTRUCTION,
323 PIPE_CONTROL_GLOBAL_GTT_WRITE |
324 ((brw->query.index * 2 + 1) * sizeof(uint64_t)));
325 OUT_BATCH(0);
326 ADVANCE_BATCH();
327
328 } else {
329 BEGIN_BATCH(4);
330 OUT_BATCH(_3DSTATE_PIPE_CONTROL |
331 PIPE_CONTROL_DEPTH_STALL |
332 PIPE_CONTROL_WRITE_DEPTH_COUNT);
333 OUT_RELOC(brw->query.bo,
334 I915_GEM_DOMAIN_INSTRUCTION, I915_GEM_DOMAIN_INSTRUCTION,
335 PIPE_CONTROL_GLOBAL_GTT_WRITE |
336 ((brw->query.index * 2 + 1) * sizeof(uint64_t)));
337 OUT_BATCH(0);
338 OUT_BATCH(0);
339 ADVANCE_BATCH();
340 }
341
342 brw->query.active = GL_FALSE;
343 brw->query.index++;
344 }
345
346 void brw_init_queryobj_functions(struct dd_function_table *functions)
347 {
348 functions->NewQueryObject = brw_new_query_object;
349 functions->DeleteQuery = brw_delete_query;
350 functions->BeginQuery = brw_begin_query;
351 functions->EndQuery = brw_end_query;
352 functions->CheckQuery = brw_check_query;
353 functions->WaitQuery = brw_wait_query;
354 }