i965/program_cache: Cast the key to char * before adding key_size
[mesa.git] / src / mesa / drivers / dri / i965 / genX_blorp_exec.c
1 /*
2 * Copyright © 2011 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
24 #include <assert.h>
25
26 #include "intel_batchbuffer.h"
27 #include "intel_mipmap_tree.h"
28 #include "intel_fbo.h"
29
30 #include "brw_context.h"
31 #include "brw_state.h"
32
33 #include "blorp/blorp_genX_exec.h"
34
35 #if GEN_GEN <= 5
36 #include "gen4_blorp_exec.h"
37 #endif
38
39 #include "brw_blorp.h"
40
41 static void *
42 blorp_emit_dwords(struct blorp_batch *batch, unsigned n)
43 {
44 assert(batch->blorp->driver_ctx == batch->driver_batch);
45 struct brw_context *brw = batch->driver_batch;
46
47 intel_batchbuffer_begin(brw, n);
48 uint32_t *map = brw->batch.map_next;
49 brw->batch.map_next += n;
50 intel_batchbuffer_advance(brw);
51 return map;
52 }
53
54 static uint64_t
55 blorp_emit_reloc(struct blorp_batch *batch,
56 void *location, struct blorp_address address, uint32_t delta)
57 {
58 assert(batch->blorp->driver_ctx == batch->driver_batch);
59 struct brw_context *brw = batch->driver_batch;
60 uint32_t offset;
61
62 if (GEN_GEN < 6 && brw_ptr_in_state_buffer(&brw->batch, location)) {
63 offset = (char *)location - (char *)brw->batch.state.map;
64 return brw_state_reloc(&brw->batch, offset,
65 address.buffer, address.offset + delta,
66 address.reloc_flags);
67 }
68
69 assert(!brw_ptr_in_state_buffer(&brw->batch, location));
70
71 offset = (char *)location - (char *)brw->batch.batch.map;
72 return brw_batch_reloc(&brw->batch, offset,
73 address.buffer, address.offset + delta,
74 address.reloc_flags);
75 }
76
77 static void
78 blorp_surface_reloc(struct blorp_batch *batch, uint32_t ss_offset,
79 struct blorp_address address, uint32_t delta)
80 {
81 assert(batch->blorp->driver_ctx == batch->driver_batch);
82 struct brw_context *brw = batch->driver_batch;
83 struct brw_bo *bo = address.buffer;
84
85 uint64_t reloc_val =
86 brw_state_reloc(&brw->batch, ss_offset, bo, address.offset + delta,
87 address.reloc_flags);
88
89 void *reloc_ptr = (void *)brw->batch.state.map + ss_offset;
90 #if GEN_GEN >= 8
91 *(uint64_t *)reloc_ptr = reloc_val;
92 #else
93 *(uint32_t *)reloc_ptr = reloc_val;
94 #endif
95 }
96
97 static uint64_t
98 blorp_get_surface_address(struct blorp_batch *blorp_batch,
99 struct blorp_address address)
100 {
101 /* We'll let blorp_surface_reloc write the address. */
102 return 0ull;
103 }
104
105 #if GEN_GEN >= 7 && GEN_GEN < 10
106 static struct blorp_address
107 blorp_get_surface_base_address(struct blorp_batch *batch)
108 {
109 assert(batch->blorp->driver_ctx == batch->driver_batch);
110 struct brw_context *brw = batch->driver_batch;
111 return (struct blorp_address) {
112 .buffer = brw->batch.state.bo,
113 .offset = 0,
114 };
115 }
116 #endif
117
118 static void *
119 blorp_alloc_dynamic_state(struct blorp_batch *batch,
120 uint32_t size,
121 uint32_t alignment,
122 uint32_t *offset)
123 {
124 assert(batch->blorp->driver_ctx == batch->driver_batch);
125 struct brw_context *brw = batch->driver_batch;
126
127 return brw_state_batch(brw, size, alignment, offset);
128 }
129
130 static void
131 blorp_alloc_binding_table(struct blorp_batch *batch, unsigned num_entries,
132 unsigned state_size, unsigned state_alignment,
133 uint32_t *bt_offset, uint32_t *surface_offsets,
134 void **surface_maps)
135 {
136 assert(batch->blorp->driver_ctx == batch->driver_batch);
137 struct brw_context *brw = batch->driver_batch;
138
139 uint32_t *bt_map = brw_state_batch(brw,
140 num_entries * sizeof(uint32_t), 32,
141 bt_offset);
142
143 for (unsigned i = 0; i < num_entries; i++) {
144 surface_maps[i] = brw_state_batch(brw,
145 state_size, state_alignment,
146 &(surface_offsets)[i]);
147 bt_map[i] = surface_offsets[i];
148 }
149 }
150
151 static void *
152 blorp_alloc_vertex_buffer(struct blorp_batch *batch, uint32_t size,
153 struct blorp_address *addr)
154 {
155 assert(batch->blorp->driver_ctx == batch->driver_batch);
156 struct brw_context *brw = batch->driver_batch;
157
158 /* From the Skylake PRM, 3DSTATE_VERTEX_BUFFERS:
159 *
160 * "The VF cache needs to be invalidated before binding and then using
161 * Vertex Buffers that overlap with any previously bound Vertex Buffer
162 * (at a 64B granularity) since the last invalidation. A VF cache
163 * invalidate is performed by setting the "VF Cache Invalidation Enable"
164 * bit in PIPE_CONTROL."
165 *
166 * This restriction first appears in the Skylake PRM but the internal docs
167 * also list it as being an issue on Broadwell. In order to avoid this
168 * problem, we align all vertex buffer allocations to 64 bytes.
169 */
170 uint32_t offset;
171 void *data = brw_state_batch(brw, size, 64, &offset);
172
173 *addr = (struct blorp_address) {
174 .buffer = brw->batch.state.bo,
175 .offset = offset,
176
177 /* The VF cache designers apparently cut corners, and made the cache
178 * only consider the bottom 32 bits of memory addresses. If you happen
179 * to have two vertex buffers which get placed exactly 4 GiB apart and
180 * use them in back-to-back draw calls, you can get collisions. To work
181 * around this problem, we restrict vertex buffers to the low 32 bits of
182 * the address space.
183 */
184 .reloc_flags = RELOC_32BIT,
185
186 #if GEN_GEN == 11
187 .mocs = ICL_MOCS_WB,
188 #elif GEN_GEN == 10
189 .mocs = CNL_MOCS_WB,
190 #elif GEN_GEN == 9
191 .mocs = SKL_MOCS_WB,
192 #elif GEN_GEN == 8
193 .mocs = BDW_MOCS_WB,
194 #elif GEN_GEN == 7
195 .mocs = GEN7_MOCS_L3,
196 #elif GEN_GEN > 6
197 #error "Missing MOCS setting!"
198 #endif
199 };
200
201 return data;
202 }
203
204 /**
205 * See vf_invalidate_for_vb_48b_transitions in genX_state_upload.c.
206 */
207 static void
208 blorp_vf_invalidate_for_vb_48b_transitions(struct blorp_batch *batch,
209 const struct blorp_address *addrs,
210 unsigned num_vbs)
211 {
212 #if GEN_GEN >= 8 && GEN_GEN < 11
213 struct brw_context *brw = batch->driver_batch;
214 bool need_invalidate = false;
215
216 for (unsigned i = 0; i < num_vbs; i++) {
217 struct brw_bo *bo = addrs[i].buffer;
218 uint16_t high_bits =
219 bo && (bo->kflags & EXEC_OBJECT_PINNED) ? bo->gtt_offset >> 32u : 0;
220
221 if (high_bits != brw->vb.last_bo_high_bits[i]) {
222 need_invalidate = true;
223 brw->vb.last_bo_high_bits[i] = high_bits;
224 }
225 }
226
227 if (need_invalidate) {
228 brw_emit_pipe_control_flush(brw, PIPE_CONTROL_VF_CACHE_INVALIDATE | PIPE_CONTROL_CS_STALL);
229 }
230 #endif
231 }
232
233 #if GEN_GEN >= 8
234 static struct blorp_address
235 blorp_get_workaround_page(struct blorp_batch *batch)
236 {
237 assert(batch->blorp->driver_ctx == batch->driver_batch);
238 struct brw_context *brw = batch->driver_batch;
239
240 return (struct blorp_address) {
241 .buffer = brw->workaround_bo,
242 };
243 }
244 #endif
245
246 static void
247 blorp_flush_range(UNUSED struct blorp_batch *batch, UNUSED void *start,
248 UNUSED size_t size)
249 {
250 /* All allocated states come from the batch which we will flush before we
251 * submit it. There's nothing for us to do here.
252 */
253 }
254
255 static void
256 blorp_emit_urb_config(struct blorp_batch *batch,
257 unsigned vs_entry_size,
258 MAYBE_UNUSED unsigned sf_entry_size)
259 {
260 assert(batch->blorp->driver_ctx == batch->driver_batch);
261 struct brw_context *brw = batch->driver_batch;
262
263 #if GEN_GEN >= 7
264 if (brw->urb.vsize >= vs_entry_size)
265 return;
266
267 gen7_upload_urb(brw, vs_entry_size, false, false);
268 #elif GEN_GEN == 6
269 gen6_upload_urb(brw, vs_entry_size, false, 0);
270 #else
271 /* We calculate it now and emit later. */
272 brw_calculate_urb_fence(brw, 0, vs_entry_size, sf_entry_size);
273 #endif
274 }
275
276 void
277 genX(blorp_exec)(struct blorp_batch *batch,
278 const struct blorp_params *params)
279 {
280 assert(batch->blorp->driver_ctx == batch->driver_batch);
281 struct brw_context *brw = batch->driver_batch;
282 struct gl_context *ctx = &brw->ctx;
283 bool check_aperture_failed_once = false;
284
285 #if GEN_GEN >= 11
286 /* The PIPE_CONTROL command description says:
287 *
288 * "Whenever a Binding Table Index (BTI) used by a Render Taget Message
289 * points to a different RENDER_SURFACE_STATE, SW must issue a Render
290 * Target Cache Flush by enabling this bit. When render target flush
291 * is set due to new association of BTI, PS Scoreboard Stall bit must
292 * be set in this packet."
293 */
294 brw_emit_pipe_control_flush(brw,
295 PIPE_CONTROL_RENDER_TARGET_FLUSH |
296 PIPE_CONTROL_STALL_AT_SCOREBOARD);
297 #endif
298
299 /* Flush the sampler and render caches. We definitely need to flush the
300 * sampler cache so that we get updated contents from the render cache for
301 * the glBlitFramebuffer() source. Also, we are sometimes warned in the
302 * docs to flush the cache between reinterpretations of the same surface
303 * data with different formats, which blorp does for stencil and depth
304 * data.
305 */
306 if (params->src.enabled)
307 brw_cache_flush_for_read(brw, params->src.addr.buffer);
308 if (params->dst.enabled) {
309 brw_cache_flush_for_render(brw, params->dst.addr.buffer,
310 params->dst.view.format,
311 params->dst.aux_usage);
312 }
313 if (params->depth.enabled)
314 brw_cache_flush_for_depth(brw, params->depth.addr.buffer);
315 if (params->stencil.enabled)
316 brw_cache_flush_for_depth(brw, params->stencil.addr.buffer);
317
318 brw_select_pipeline(brw, BRW_RENDER_PIPELINE);
319
320 retry:
321 intel_batchbuffer_require_space(brw, 1400);
322 brw_require_statebuffer_space(brw, 600);
323 intel_batchbuffer_save_state(brw);
324 check_aperture_failed_once |= intel_batchbuffer_saved_state_is_empty(brw);
325 brw->batch.no_wrap = true;
326
327 #if GEN_GEN == 6
328 /* Emit workaround flushes when we switch from drawing to blorping. */
329 brw_emit_post_sync_nonzero_flush(brw);
330 #endif
331
332 brw_upload_state_base_address(brw);
333
334 #if GEN_GEN >= 8
335 gen7_l3_state.emit(brw);
336 #endif
337
338 #if GEN_GEN >= 6
339 brw_emit_depth_stall_flushes(brw);
340 #endif
341
342 #if GEN_GEN == 8
343 gen8_write_pma_stall_bits(brw, 0);
344 #endif
345
346 blorp_emit(batch, GENX(3DSTATE_DRAWING_RECTANGLE), rect) {
347 rect.ClippedDrawingRectangleXMax = MAX2(params->x1, params->x0) - 1;
348 rect.ClippedDrawingRectangleYMax = MAX2(params->y1, params->y0) - 1;
349 }
350
351 blorp_exec(batch, params);
352
353 brw->batch.no_wrap = false;
354
355 /* Check if the blorp op we just did would make our batch likely to fail to
356 * map all the BOs into the GPU at batch exec time later. If so, flush the
357 * batch and try again with nothing else in the batch.
358 */
359 if (!brw_batch_has_aperture_space(brw, 0)) {
360 if (!check_aperture_failed_once) {
361 check_aperture_failed_once = true;
362 intel_batchbuffer_reset_to_saved(brw);
363 intel_batchbuffer_flush(brw);
364 goto retry;
365 } else {
366 int ret = intel_batchbuffer_flush(brw);
367 WARN_ONCE(ret == -ENOSPC,
368 "i965: blorp emit exceeded available aperture space\n");
369 }
370 }
371
372 if (unlikely(brw->always_flush_batch))
373 intel_batchbuffer_flush(brw);
374
375 /* We've smashed all state compared to what the normal 3D pipeline
376 * rendering tracks for GL.
377 */
378 brw->ctx.NewDriverState |= BRW_NEW_BLORP;
379 brw->no_depth_or_stencil = !params->depth.enabled &&
380 !params->stencil.enabled;
381 brw->ib.index_size = -1;
382
383 if (params->dst.enabled) {
384 brw_render_cache_add_bo(brw, params->dst.addr.buffer,
385 params->dst.view.format,
386 params->dst.aux_usage);
387 }
388 if (params->depth.enabled)
389 brw_depth_cache_add_bo(brw, params->depth.addr.buffer);
390 if (params->stencil.enabled)
391 brw_depth_cache_add_bo(brw, params->stencil.addr.buffer);
392 }