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