i965: Move intel_context::gen and gt fields to brw_context.
[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
117 /**
118 * Align a value down to an alignment value
119 *
120 * If \c value is not already aligned to the requested alignment value, it
121 * will be rounded down.
122 *
123 * \param value Value to be rounded
124 * \param alignment Alignment value to be used. This must be a power of two.
125 *
126 * \sa ALIGN()
127 */
128 #define ROUND_DOWN_TO(value, alignment) ((value) & ~(alignment - 1))
129
130 static INLINE uint32_t
131 U_FIXED(float value, uint32_t frac_bits)
132 {
133 value *= (1 << frac_bits);
134 return value < 0 ? 0 : value;
135 }
136
137 static INLINE uint32_t
138 S_FIXED(float value, uint32_t frac_bits)
139 {
140 return value * (1 << frac_bits);
141 }
142
143 /* ================================================================
144 * From linux kernel i386 header files, copes with odd sizes better
145 * than COPY_DWORDS would:
146 * XXX Put this in src/mesa/main/imports.h ???
147 */
148 #if defined(i386) || defined(__i386__)
149 static INLINE void * __memcpy(void * to, const void * from, size_t n)
150 {
151 int d0, d1, d2;
152 __asm__ __volatile__(
153 "rep ; movsl\n\t"
154 "testb $2,%b4\n\t"
155 "je 1f\n\t"
156 "movsw\n"
157 "1:\ttestb $1,%b4\n\t"
158 "je 2f\n\t"
159 "movsb\n"
160 "2:"
161 : "=&c" (d0), "=&D" (d1), "=&S" (d2)
162 :"0" (n/4), "q" (n),"1" ((long) to),"2" ((long) from)
163 : "memory");
164 return (to);
165 }
166 #else
167 #define __memcpy(a,b,c) memcpy(a,b,c)
168 #endif
169
170
171 /* ================================================================
172 * Debugging:
173 */
174 extern int INTEL_DEBUG;
175
176 #define DEBUG_TEXTURE 0x1
177 #define DEBUG_STATE 0x2
178 #define DEBUG_IOCTL 0x4
179 #define DEBUG_BLIT 0x8
180 #define DEBUG_MIPTREE 0x10
181 #define DEBUG_PERF 0x20
182 #define DEBUG_BATCH 0x80
183 #define DEBUG_PIXEL 0x100
184 #define DEBUG_BUFMGR 0x200
185 #define DEBUG_REGION 0x400
186 #define DEBUG_FBO 0x800
187 #define DEBUG_GS 0x1000
188 #define DEBUG_SYNC 0x2000
189 #define DEBUG_PRIMS 0x4000
190 #define DEBUG_VERTS 0x8000
191 #define DEBUG_DRI 0x10000
192 #define DEBUG_SF 0x20000
193 #define DEBUG_STATS 0x100000
194 #define DEBUG_WM 0x400000
195 #define DEBUG_URB 0x800000
196 #define DEBUG_VS 0x1000000
197 #define DEBUG_CLIP 0x2000000
198 #define DEBUG_AUB 0x4000000
199 #define DEBUG_SHADER_TIME 0x8000000
200 #define DEBUG_BLORP 0x10000000
201 #define DEBUG_NO16 0x20000000
202
203 #ifdef HAVE_ANDROID_PLATFORM
204 #define LOG_TAG "INTEL-MESA"
205 #include <cutils/log.h>
206 #ifndef ALOGW
207 #define ALOGW LOGW
208 #endif
209 #define dbg_printf(...) ALOGW(__VA_ARGS__)
210 #else
211 #define dbg_printf(...) printf(__VA_ARGS__)
212 #endif /* HAVE_ANDROID_PLATFORM */
213
214 #define DBG(...) do { \
215 if (unlikely(INTEL_DEBUG & FILE_DEBUG_FLAG)) \
216 dbg_printf(__VA_ARGS__); \
217 } while(0)
218
219 #define perf_debug(...) do { \
220 static GLuint msg_id = 0; \
221 if (unlikely(INTEL_DEBUG & DEBUG_PERF)) \
222 dbg_printf(__VA_ARGS__); \
223 if (brw->perf_debug) \
224 _mesa_gl_debug(&brw->intel.ctx, &msg_id, \
225 MESA_DEBUG_TYPE_PERFORMANCE, \
226 MESA_DEBUG_SEVERITY_MEDIUM, \
227 __VA_ARGS__); \
228 } while(0)
229
230 #define WARN_ONCE(cond, fmt...) do { \
231 if (unlikely(cond)) { \
232 static bool _warned = false; \
233 static GLuint msg_id = 0; \
234 if (!_warned) { \
235 fprintf(stderr, "WARNING: "); \
236 fprintf(stderr, fmt); \
237 _warned = true; \
238 \
239 _mesa_gl_debug(ctx, &msg_id, \
240 MESA_DEBUG_TYPE_OTHER, \
241 MESA_DEBUG_SEVERITY_HIGH, fmt); \
242 } \
243 } \
244 } while (0)
245
246 /* ================================================================
247 * intel_context.c:
248 */
249
250 extern bool intelInitContext(struct brw_context *brw,
251 int api,
252 unsigned major_version,
253 unsigned minor_version,
254 const struct gl_config * mesaVis,
255 __DRIcontext * driContextPriv,
256 void *sharedContextPrivate,
257 struct dd_function_table *functions,
258 unsigned *dri_ctx_error);
259
260 extern void intelFinish(struct gl_context * ctx);
261 extern void _intel_flush(struct gl_context * ctx, const char *file, int line);
262
263 #define intel_flush(ctx) _intel_flush(ctx, __FILE__, __LINE__)
264
265 extern void intelInitDriverFunctions(struct dd_function_table *functions);
266
267 void intel_init_syncobj_functions(struct dd_function_table *functions);
268
269 enum {
270 DRI_CONF_BO_REUSE_DISABLED,
271 DRI_CONF_BO_REUSE_ALL
272 };
273
274 extern int intel_translate_shadow_compare_func(GLenum func);
275 extern int intel_translate_compare_func(GLenum func);
276 extern int intel_translate_stencil_op(GLenum op);
277 extern int intel_translate_logic_op(GLenum opcode);
278
279 void intel_update_renderbuffers(__DRIcontext *context,
280 __DRIdrawable *drawable);
281 void intel_prepare_render(struct brw_context *brw);
282
283 void
284 intel_resolve_for_dri2_flush(struct brw_context *brw,
285 __DRIdrawable *drawable);
286
287 extern void
288 intelInitExtensions(struct gl_context *ctx);
289 extern void
290 intelInitClearFuncs(struct dd_function_table *functions);
291
292 /*======================================================================
293 * Inline conversion functions.
294 * These are better-typed than the macros used previously:
295 */
296 static INLINE struct intel_context *
297 intel_context(struct gl_context * ctx)
298 {
299 return (struct intel_context *) ctx;
300 }
301
302 static INLINE bool
303 is_power_of_two(uint32_t value)
304 {
305 return (value & (value - 1)) == 0;
306 }
307
308 #ifdef __cplusplus
309 }
310 #endif
311
312 #endif