i965: Delete hw_stencil flag.
[mesa.git] / src / mesa / drivers / dri / i965 / intel_context.h
1 /**************************************************************************
2 *
3 * Copyright 2003 Tungsten Graphics, Inc., Cedar Park, Texas.
4 * All Rights Reserved.
5 *
6 * Permission is hereby granted, free of charge, to any person obtaining a
7 * copy of this software and associated documentation files (the
8 * "Software"), to deal in the Software without restriction, including
9 * without limitation the rights to use, copy, modify, merge, publish,
10 * distribute, sub license, and/or sell copies of the Software, and to
11 * permit persons to whom the Software is furnished to do so, subject to
12 * the following conditions:
13 *
14 * The above copyright notice and this permission notice (including the
15 * next paragraph) shall be included in all copies or substantial portions
16 * of the Software.
17 *
18 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
19 * OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
20 * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT.
21 * IN NO EVENT SHALL TUNGSTEN GRAPHICS AND/OR ITS SUPPLIERS BE LIABLE FOR
22 * ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
23 * TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
24 * SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
25 *
26 **************************************************************************/
27
28 #ifndef INTELCONTEXT_INC
29 #define INTELCONTEXT_INC
30
31
32 #include <stdbool.h>
33 #include <string.h>
34 #include "main/mtypes.h"
35 #include "main/mm.h"
36
37 #ifdef __cplusplus
38 extern "C" {
39 /* Evil hack for using libdrm in a c++ compiler. */
40 #define virtual virt
41 #endif
42
43 #include "drm.h"
44 #include "intel_bufmgr.h"
45
46 #include "intel_screen.h"
47 #include "intel_tex_obj.h"
48 #include "i915_drm.h"
49
50 #ifdef __cplusplus
51 #undef virtual
52 #endif
53
54 #include "tnl/t_vertex.h"
55
56 #define TAG(x) intel##x
57 #include "tnl_dd/t_dd_vertex.h"
58 #undef TAG
59
60 struct intel_region;
61 struct intel_context;
62
63 typedef void (*intel_tri_func) (struct intel_context *, intelVertex *,
64 intelVertex *, intelVertex *);
65 typedef void (*intel_line_func) (struct intel_context *, intelVertex *,
66 intelVertex *);
67 typedef void (*intel_point_func) (struct intel_context *, intelVertex *);
68
69 #define INTEL_WRITE_PART 0x1
70 #define INTEL_WRITE_FULL 0x2
71 #define INTEL_READ 0x4
72
73 #ifndef likely
74 #ifdef __GNUC__
75 #define likely(expr) (__builtin_expect(expr, 1))
76 #define unlikely(expr) (__builtin_expect(expr, 0))
77 #else
78 #define likely(expr) (expr)
79 #define unlikely(expr) (expr)
80 #endif
81 #endif
82
83 struct intel_sync_object {
84 struct gl_sync_object Base;
85
86 /** Batch associated with this sync object */
87 drm_intel_bo *bo;
88 };
89
90 struct brw_context;
91
92 struct intel_batchbuffer {
93 /** Current batchbuffer being queued up. */
94 drm_intel_bo *bo;
95 /** Last BO submitted to the hardware. Used for glFinish(). */
96 drm_intel_bo *last_bo;
97 /** BO for post-sync nonzero writes for gen6 workaround. */
98 drm_intel_bo *workaround_bo;
99 bool need_workaround_flush;
100
101 struct cached_batch_item *cached_items;
102
103 uint16_t emit, total;
104 uint16_t used, reserved_space;
105 uint32_t *map;
106 uint32_t *cpu_map;
107 #define BATCH_SZ (8192*sizeof(uint32_t))
108
109 uint32_t state_batch_offset;
110 bool is_blit;
111 bool needs_sol_reset;
112
113 struct {
114 uint16_t used;
115 int reloc_count;
116 } saved;
117 };
118
119 /**
120 * intel_context is derived from Mesa's context class: struct gl_context.
121 */
122 struct intel_context
123 {
124 struct gl_context ctx; /**< base class, must be first field */
125
126 struct
127 {
128 void (*destroy) (struct intel_context * intel);
129 void (*finish_batch) (struct intel_context * intel);
130 void (*new_batch) (struct intel_context * intel);
131
132 void (*invalidate_state) (struct intel_context *intel,
133 GLuint new_state);
134
135 void (*debug_batch)(struct intel_context *intel);
136 void (*annotate_aub)(struct intel_context *intel);
137 bool (*render_target_supported)(struct intel_context *intel,
138 struct gl_renderbuffer *rb);
139
140 /** Can HiZ be enabled on a depthbuffer of the given format? */
141 bool (*is_hiz_depth_format)(struct intel_context *intel,
142 gl_format format);
143
144 void (*update_texture_surface)(struct gl_context *ctx,
145 unsigned unit,
146 uint32_t *binding_table,
147 unsigned surf_index);
148 void (*update_renderbuffer_surface)(struct brw_context *brw,
149 struct gl_renderbuffer *rb,
150 bool layered,
151 unsigned unit);
152 void (*update_null_renderbuffer_surface)(struct brw_context *brw,
153 unsigned unit);
154 void (*create_constant_surface)(struct brw_context *brw,
155 drm_intel_bo *bo,
156 uint32_t offset,
157 uint32_t size,
158 uint32_t *out_offset,
159 bool dword_pitch);
160
161 /**
162 * Send the appropriate state packets to configure depth, stencil, and
163 * HiZ buffers (i965+ only)
164 */
165 void (*emit_depth_stencil_hiz)(struct brw_context *brw,
166 struct intel_mipmap_tree *depth_mt,
167 uint32_t depth_offset,
168 uint32_t depthbuffer_format,
169 uint32_t depth_surface_type,
170 struct intel_mipmap_tree *stencil_mt,
171 bool hiz, bool separate_stencil,
172 uint32_t width, uint32_t height,
173 uint32_t tile_x, uint32_t tile_y);
174
175 } vtbl;
176
177 GLuint NewGLState;
178
179 dri_bufmgr *bufmgr;
180 unsigned int maxBatchSize;
181
182 /**
183 * Generation number of the hardware: 2 is 8xx, 3 is 9xx pre-965, 4 is 965.
184 */
185 int gen;
186 int gt;
187 bool needs_ff_sync;
188 bool is_haswell;
189 bool is_baytrail;
190 bool is_g4x;
191 bool is_945;
192 bool has_separate_stencil;
193 bool must_use_separate_stencil;
194 bool has_hiz;
195 bool has_llc;
196 bool has_swizzling;
197
198 int urb_size;
199
200 drm_intel_context *hw_ctx;
201
202 struct intel_batchbuffer batch;
203
204 drm_intel_bo *first_post_swapbuffers_batch;
205 bool need_throttle;
206 bool no_batch_wrap;
207
208 /**
209 * Set if we're either a debug context or the INTEL_DEBUG=perf environment
210 * variable is set, this is the flag indicating to do expensive work that
211 * might lead to a perf_debug() call.
212 */
213 bool perf_debug;
214
215 struct {
216 drm_intel_bo *bo;
217 GLuint offset;
218 uint32_t buffer_len;
219 uint32_t buffer_offset;
220 char buffer[4096];
221 } upload;
222
223 uint32_t max_gtt_map_object_size;
224
225 GLuint stats_wm;
226
227 bool no_rast;
228 bool always_flush_batch;
229 bool always_flush_cache;
230 bool disable_throttling;
231
232 GLenum reduced_primitive;
233
234 /**
235 * Set if rendering has occured to the drawable's front buffer.
236 *
237 * This is used in the DRI2 case to detect that glFlush should also copy
238 * the contents of the fake front buffer to the real front buffer.
239 */
240 bool front_buffer_dirty;
241
242 /**
243 * Track whether front-buffer rendering is currently enabled
244 *
245 * A separate flag is used to track this in order to support MRT more
246 * easily.
247 */
248 bool is_front_buffer_rendering;
249 /**
250 * Track whether front-buffer is the current read target.
251 *
252 * This is closely associated with is_front_buffer_rendering, but may
253 * be set separately. The DRI2 fake front buffer must be referenced
254 * either way.
255 */
256 bool is_front_buffer_reading;
257
258 int driFd;
259
260 __DRIcontext *driContext;
261 struct intel_screen *intelScreen;
262 void (*saved_viewport)(struct gl_context * ctx,
263 GLint x, GLint y, GLsizei width, GLsizei height);
264
265 /**
266 * Configuration cache
267 */
268 driOptionCache optionCache;
269 };
270
271 /**
272 * Align a value down to an alignment value
273 *
274 * If \c value is not already aligned to the requested alignment value, it
275 * will be rounded down.
276 *
277 * \param value Value to be rounded
278 * \param alignment Alignment value to be used. This must be a power of two.
279 *
280 * \sa ALIGN()
281 */
282 #define ROUND_DOWN_TO(value, alignment) ((value) & ~(alignment - 1))
283
284 static INLINE uint32_t
285 U_FIXED(float value, uint32_t frac_bits)
286 {
287 value *= (1 << frac_bits);
288 return value < 0 ? 0 : value;
289 }
290
291 static INLINE uint32_t
292 S_FIXED(float value, uint32_t frac_bits)
293 {
294 return value * (1 << frac_bits);
295 }
296
297 /* ================================================================
298 * From linux kernel i386 header files, copes with odd sizes better
299 * than COPY_DWORDS would:
300 * XXX Put this in src/mesa/main/imports.h ???
301 */
302 #if defined(i386) || defined(__i386__)
303 static INLINE void * __memcpy(void * to, const void * from, size_t n)
304 {
305 int d0, d1, d2;
306 __asm__ __volatile__(
307 "rep ; movsl\n\t"
308 "testb $2,%b4\n\t"
309 "je 1f\n\t"
310 "movsw\n"
311 "1:\ttestb $1,%b4\n\t"
312 "je 2f\n\t"
313 "movsb\n"
314 "2:"
315 : "=&c" (d0), "=&D" (d1), "=&S" (d2)
316 :"0" (n/4), "q" (n),"1" ((long) to),"2" ((long) from)
317 : "memory");
318 return (to);
319 }
320 #else
321 #define __memcpy(a,b,c) memcpy(a,b,c)
322 #endif
323
324
325 /* ================================================================
326 * Debugging:
327 */
328 extern int INTEL_DEBUG;
329
330 #define DEBUG_TEXTURE 0x1
331 #define DEBUG_STATE 0x2
332 #define DEBUG_IOCTL 0x4
333 #define DEBUG_BLIT 0x8
334 #define DEBUG_MIPTREE 0x10
335 #define DEBUG_PERF 0x20
336 #define DEBUG_BATCH 0x80
337 #define DEBUG_PIXEL 0x100
338 #define DEBUG_BUFMGR 0x200
339 #define DEBUG_REGION 0x400
340 #define DEBUG_FBO 0x800
341 #define DEBUG_GS 0x1000
342 #define DEBUG_SYNC 0x2000
343 #define DEBUG_PRIMS 0x4000
344 #define DEBUG_VERTS 0x8000
345 #define DEBUG_DRI 0x10000
346 #define DEBUG_SF 0x20000
347 #define DEBUG_STATS 0x100000
348 #define DEBUG_WM 0x400000
349 #define DEBUG_URB 0x800000
350 #define DEBUG_VS 0x1000000
351 #define DEBUG_CLIP 0x2000000
352 #define DEBUG_AUB 0x4000000
353 #define DEBUG_SHADER_TIME 0x8000000
354 #define DEBUG_BLORP 0x10000000
355 #define DEBUG_NO16 0x20000000
356
357 #ifdef HAVE_ANDROID_PLATFORM
358 #define LOG_TAG "INTEL-MESA"
359 #include <cutils/log.h>
360 #ifndef ALOGW
361 #define ALOGW LOGW
362 #endif
363 #define dbg_printf(...) ALOGW(__VA_ARGS__)
364 #else
365 #define dbg_printf(...) printf(__VA_ARGS__)
366 #endif /* HAVE_ANDROID_PLATFORM */
367
368 #define DBG(...) do { \
369 if (unlikely(INTEL_DEBUG & FILE_DEBUG_FLAG)) \
370 dbg_printf(__VA_ARGS__); \
371 } while(0)
372
373 #define perf_debug(...) do { \
374 static GLuint msg_id = 0; \
375 if (unlikely(INTEL_DEBUG & DEBUG_PERF)) \
376 dbg_printf(__VA_ARGS__); \
377 if (intel->perf_debug) \
378 _mesa_gl_debug(&intel->ctx, &msg_id, \
379 MESA_DEBUG_TYPE_PERFORMANCE, \
380 MESA_DEBUG_SEVERITY_MEDIUM, \
381 __VA_ARGS__); \
382 } while(0)
383
384 #define WARN_ONCE(cond, fmt...) do { \
385 if (unlikely(cond)) { \
386 static bool _warned = false; \
387 static GLuint msg_id = 0; \
388 if (!_warned) { \
389 fprintf(stderr, "WARNING: "); \
390 fprintf(stderr, fmt); \
391 _warned = true; \
392 \
393 _mesa_gl_debug(ctx, &msg_id, \
394 MESA_DEBUG_TYPE_OTHER, \
395 MESA_DEBUG_SEVERITY_HIGH, fmt); \
396 } \
397 } \
398 } while (0)
399
400 /* ================================================================
401 * intel_context.c:
402 */
403
404 extern bool intelInitContext(struct intel_context *intel,
405 int api,
406 unsigned major_version,
407 unsigned minor_version,
408 const struct gl_config * mesaVis,
409 __DRIcontext * driContextPriv,
410 void *sharedContextPrivate,
411 struct dd_function_table *functions,
412 unsigned *dri_ctx_error);
413
414 extern void intelFinish(struct gl_context * ctx);
415 extern void _intel_flush(struct gl_context * ctx, const char *file, int line);
416
417 #define intel_flush(ctx) _intel_flush(ctx, __FILE__, __LINE__)
418
419 extern void intelInitDriverFunctions(struct dd_function_table *functions);
420
421 void intel_init_syncobj_functions(struct dd_function_table *functions);
422
423
424 /* ================================================================
425 * intel_state.c:
426 */
427
428 #define COMPAREFUNC_ALWAYS 0
429 #define COMPAREFUNC_NEVER 0x1
430 #define COMPAREFUNC_LESS 0x2
431 #define COMPAREFUNC_EQUAL 0x3
432 #define COMPAREFUNC_LEQUAL 0x4
433 #define COMPAREFUNC_GREATER 0x5
434 #define COMPAREFUNC_NOTEQUAL 0x6
435 #define COMPAREFUNC_GEQUAL 0x7
436
437 #define STENCILOP_KEEP 0
438 #define STENCILOP_ZERO 0x1
439 #define STENCILOP_REPLACE 0x2
440 #define STENCILOP_INCRSAT 0x3
441 #define STENCILOP_DECRSAT 0x4
442 #define STENCILOP_INCR 0x5
443 #define STENCILOP_DECR 0x6
444 #define STENCILOP_INVERT 0x7
445
446 #define LOGICOP_CLEAR 0
447 #define LOGICOP_NOR 0x1
448 #define LOGICOP_AND_INV 0x2
449 #define LOGICOP_COPY_INV 0x3
450 #define LOGICOP_AND_RVRSE 0x4
451 #define LOGICOP_INV 0x5
452 #define LOGICOP_XOR 0x6
453 #define LOGICOP_NAND 0x7
454 #define LOGICOP_AND 0x8
455 #define LOGICOP_EQUIV 0x9
456 #define LOGICOP_NOOP 0xa
457 #define LOGICOP_OR_INV 0xb
458 #define LOGICOP_COPY 0xc
459 #define LOGICOP_OR_RVRSE 0xd
460 #define LOGICOP_OR 0xe
461 #define LOGICOP_SET 0xf
462
463 #define BLENDFACT_ZERO 0x01
464 #define BLENDFACT_ONE 0x02
465 #define BLENDFACT_SRC_COLR 0x03
466 #define BLENDFACT_INV_SRC_COLR 0x04
467 #define BLENDFACT_SRC_ALPHA 0x05
468 #define BLENDFACT_INV_SRC_ALPHA 0x06
469 #define BLENDFACT_DST_ALPHA 0x07
470 #define BLENDFACT_INV_DST_ALPHA 0x08
471 #define BLENDFACT_DST_COLR 0x09
472 #define BLENDFACT_INV_DST_COLR 0x0a
473 #define BLENDFACT_SRC_ALPHA_SATURATE 0x0b
474 #define BLENDFACT_CONST_COLOR 0x0c
475 #define BLENDFACT_INV_CONST_COLOR 0x0d
476 #define BLENDFACT_CONST_ALPHA 0x0e
477 #define BLENDFACT_INV_CONST_ALPHA 0x0f
478 #define BLENDFACT_MASK 0x0f
479
480 enum {
481 DRI_CONF_BO_REUSE_DISABLED,
482 DRI_CONF_BO_REUSE_ALL
483 };
484
485 extern int intel_translate_shadow_compare_func(GLenum func);
486 extern int intel_translate_compare_func(GLenum func);
487 extern int intel_translate_stencil_op(GLenum op);
488 extern int intel_translate_logic_op(GLenum opcode);
489
490 void intel_update_renderbuffers(__DRIcontext *context,
491 __DRIdrawable *drawable);
492 void intel_prepare_render(struct intel_context *intel);
493
494 void
495 intel_resolve_for_dri2_flush(struct intel_context *intel,
496 __DRIdrawable *drawable);
497
498 void i915_set_buf_info_for_region(uint32_t *state, struct intel_region *region,
499 uint32_t buffer_id);
500 void intel_init_texture_formats(struct gl_context *ctx);
501
502 /*======================================================================
503 * Inline conversion functions.
504 * These are better-typed than the macros used previously:
505 */
506 static INLINE struct intel_context *
507 intel_context(struct gl_context * ctx)
508 {
509 return (struct intel_context *) ctx;
510 }
511
512 static INLINE bool
513 is_power_of_two(uint32_t value)
514 {
515 return (value & (value - 1)) == 0;
516 }
517
518 #ifdef __cplusplus
519 }
520 #endif
521
522 #endif