intel_extensions.c revision 0eeaf11edf72bbd2943a4b9bffa5f8d5bfe77dd5
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#include "main/version.h"
29
30#include "brw_context.h"
31#include "intel_batchbuffer.h"
32#include "intel_reg.h"
33#include "utils.h"
34
35/**
36 * Test if we can use MI_LOAD_REGISTER_MEM from an untrusted batchbuffer.
37 *
38 * Some combinations of hardware and kernel versions allow this feature,
39 * while others don't.  Instead of trying to enumerate every case, just
40 * try and write a register and see if works.
41 */
42static bool
43can_do_pipelined_register_writes(struct brw_context *brw)
44{
45   /* We use SO_WRITE_OFFSET0 since you're supposed to write it (unlike the
46    * statistics registers), and we already reset it to zero before using it.
47    */
48   const int reg = GEN7_SO_WRITE_OFFSET(0);
49   const int expected_value = 0x1337d0d0;
50   const int offset = 100;
51
52   /* The register we picked only exists on Gen7+. */
53   assert(brw->gen >= 7);
54
55   uint32_t *data;
56   /* Set a value in a BO to a known quantity.  The workaround BO already
57    * exists and doesn't contain anything important, so we may as well use it.
58    */
59   drm_intel_bo_map(brw->batch.workaround_bo, true);
60   data = brw->batch.workaround_bo->virtual;
61   data[offset] = 0xffffffff;
62   drm_intel_bo_unmap(brw->batch.workaround_bo);
63
64   /* Write the register. */
65   BEGIN_BATCH(3);
66   OUT_BATCH(MI_LOAD_REGISTER_IMM | (3 - 2));
67   OUT_BATCH(reg);
68   OUT_BATCH(expected_value);
69   ADVANCE_BATCH();
70
71   intel_batchbuffer_emit_mi_flush(brw);
72
73   /* Save the register's value back to the buffer. */
74   BEGIN_BATCH(3);
75   OUT_BATCH(MI_STORE_REGISTER_MEM | (3 - 2));
76   OUT_BATCH(reg);
77   OUT_RELOC(brw->batch.workaround_bo,
78             I915_GEM_DOMAIN_INSTRUCTION, I915_GEM_DOMAIN_INSTRUCTION,
79             offset * sizeof(uint32_t));
80   ADVANCE_BATCH();
81
82   intel_batchbuffer_flush(brw);
83
84   /* Check whether the value got written. */
85   drm_intel_bo_map(brw->batch.workaround_bo, false);
86   bool success = data[offset] == expected_value;
87   drm_intel_bo_unmap(brw->batch.workaround_bo);
88
89   return success;
90}
91
92/**
93 * Initializes potential list of extensions if ctx == NULL, or actually enables
94 * extensions for a context.
95 */
96void
97intelInitExtensions(struct gl_context *ctx)
98{
99   struct brw_context *brw = brw_context(ctx);
100
101   assert(brw->gen >= 4);
102
103   ctx->Extensions.ARB_depth_buffer_float = true;
104   ctx->Extensions.ARB_depth_clamp = true;
105   ctx->Extensions.ARB_depth_texture = true;
106   ctx->Extensions.ARB_draw_elements_base_vertex = true;
107   ctx->Extensions.ARB_draw_instanced = true;
108   ctx->Extensions.ARB_ES2_compatibility = true;
109   ctx->Extensions.ARB_explicit_attrib_location = true;
110   ctx->Extensions.ARB_fragment_coord_conventions = true;
111   ctx->Extensions.ARB_fragment_program = true;
112   ctx->Extensions.ARB_fragment_program_shadow = true;
113   ctx->Extensions.ARB_fragment_shader = true;
114   ctx->Extensions.ARB_framebuffer_object = true;
115   ctx->Extensions.ARB_half_float_pixel = true;
116   ctx->Extensions.ARB_half_float_vertex = true;
117   ctx->Extensions.ARB_instanced_arrays = true;
118   ctx->Extensions.ARB_internalformat_query = true;
119   ctx->Extensions.ARB_map_buffer_range = true;
120   ctx->Extensions.ARB_occlusion_query = true;
121   ctx->Extensions.ARB_occlusion_query2 = true;
122   ctx->Extensions.ARB_point_sprite = true;
123   ctx->Extensions.ARB_seamless_cube_map = true;
124   ctx->Extensions.ARB_shader_bit_encoding = true;
125   ctx->Extensions.ARB_shader_texture_lod = true;
126   ctx->Extensions.ARB_shadow = true;
127   ctx->Extensions.ARB_sync = true;
128   ctx->Extensions.ARB_texture_border_clamp = true;
129   ctx->Extensions.ARB_texture_compression_rgtc = true;
130   ctx->Extensions.ARB_texture_cube_map = true;
131   ctx->Extensions.ARB_texture_env_combine = true;
132   ctx->Extensions.ARB_texture_env_crossbar = true;
133   ctx->Extensions.ARB_texture_env_dot3 = true;
134   ctx->Extensions.ARB_texture_float = true;
135   ctx->Extensions.ARB_texture_mirror_clamp_to_edge = true;
136   ctx->Extensions.ARB_texture_non_power_of_two = true;
137   ctx->Extensions.ARB_texture_rg = true;
138   ctx->Extensions.ARB_texture_rgb10_a2ui = true;
139   ctx->Extensions.ARB_vertex_program = true;
140   ctx->Extensions.ARB_vertex_shader = true;
141   ctx->Extensions.ARB_vertex_type_2_10_10_10_rev = true;
142   ctx->Extensions.EXT_blend_color = true;
143   ctx->Extensions.EXT_blend_equation_separate = true;
144   ctx->Extensions.EXT_blend_func_separate = true;
145   ctx->Extensions.EXT_blend_minmax = true;
146   ctx->Extensions.EXT_draw_buffers2 = true;
147   ctx->Extensions.EXT_framebuffer_blit = true;
148   ctx->Extensions.EXT_framebuffer_sRGB = true;
149   ctx->Extensions.EXT_gpu_program_parameters = true;
150   ctx->Extensions.EXT_packed_depth_stencil = true;
151   ctx->Extensions.EXT_packed_float = true;
152   ctx->Extensions.EXT_pixel_buffer_object = true;
153   ctx->Extensions.EXT_point_parameters = true;
154   ctx->Extensions.EXT_provoking_vertex = true;
155   ctx->Extensions.EXT_separate_shader_objects = true;
156   ctx->Extensions.EXT_texture_array = true;
157   ctx->Extensions.EXT_texture_env_dot3 = true;
158   ctx->Extensions.EXT_texture_filter_anisotropic = true;
159   ctx->Extensions.EXT_texture_integer = true;
160   ctx->Extensions.EXT_texture_shared_exponent = true;
161   ctx->Extensions.EXT_texture_snorm = true;
162   ctx->Extensions.EXT_texture_sRGB = true;
163   ctx->Extensions.EXT_texture_sRGB_decode = true;
164   ctx->Extensions.EXT_texture_swizzle = true;
165   ctx->Extensions.EXT_stencil_two_side = true;
166   ctx->Extensions.EXT_vertex_array_bgra = true;
167   ctx->Extensions.AMD_seamless_cubemap_per_texture = true;
168   ctx->Extensions.APPLE_object_purgeable = true;
169   ctx->Extensions.ATI_envmap_bumpmap = true;
170   ctx->Extensions.ATI_separate_stencil = true;
171   ctx->Extensions.ATI_texture_env_combine3 = true;
172   ctx->Extensions.MESA_pack_invert = true;
173   ctx->Extensions.MESA_texture_array = true;
174   ctx->Extensions.MESA_ycbcr_texture = true;
175   ctx->Extensions.NV_conditional_render = true;
176   ctx->Extensions.NV_primitive_restart = true;
177   ctx->Extensions.NV_texture_env_combine4 = true;
178   ctx->Extensions.NV_texture_rectangle = true;
179   ctx->Extensions.TDFX_texture_compression_FXT1 = true;
180   ctx->Extensions.OES_compressed_ETC1_RGB8_texture = true;
181   ctx->Extensions.OES_EGL_image = true;
182   ctx->Extensions.OES_draw_texture = true;
183   ctx->Extensions.OES_standard_derivatives = true;
184   ctx->Extensions.OES_EGL_image_external = true;
185
186   if (brw->gen >= 7)
187      ctx->Const.GLSLVersion = 330;
188   else if (brw->gen >= 6)
189      ctx->Const.GLSLVersion = 140;
190   else
191      ctx->Const.GLSLVersion = 120;
192   _mesa_override_glsl_version(ctx);
193
194   if (brw->gen >= 6) {
195      uint64_t dummy;
196
197      ctx->Extensions.EXT_framebuffer_multisample = true;
198      ctx->Extensions.EXT_transform_feedback = true;
199      ctx->Extensions.EXT_framebuffer_multisample_blit_scaled = true;
200      ctx->Extensions.ARB_blend_func_extended = !driQueryOptionb(&brw->optionCache, "disable_blend_func_extended");
201      ctx->Extensions.ARB_draw_buffers_blend = true;
202      ctx->Extensions.ARB_ES3_compatibility = true;
203      ctx->Extensions.ARB_uniform_buffer_object = true;
204      ctx->Extensions.ARB_shading_language_420pack = true;
205      ctx->Extensions.ARB_texture_buffer_object = true;
206      ctx->Extensions.ARB_texture_buffer_object_rgb32 = true;
207      ctx->Extensions.ARB_texture_buffer_range = true;
208      ctx->Extensions.ARB_texture_cube_map_array = true;
209      ctx->Extensions.OES_depth_texture_cube_map = true;
210      ctx->Extensions.ARB_shading_language_packing = true;
211      ctx->Extensions.ARB_texture_multisample = true;
212
213      /* Test if the kernel has the ioctl. */
214      if (drm_intel_reg_read(brw->bufmgr, TIMESTAMP, &dummy) == 0)
215         ctx->Extensions.ARB_timer_query = true;
216   }
217
218   if (brw->gen >= 5) {
219      ctx->Extensions.ARB_texture_query_lod = true;
220      ctx->Extensions.EXT_timer_query = true;
221      ctx->Extensions.EXT_shader_integer_mix = ctx->Const.GLSLVersion >= 130;
222      ctx->Extensions.ARB_texture_query_levels = ctx->Const.GLSLVersion >= 130;
223   }
224
225   if (brw->gen == 5)
226      ctx->Extensions.AMD_performance_monitor = true;
227
228   if (brw->gen >= 7) {
229      ctx->Extensions.ARB_texture_gather = true;
230      ctx->Extensions.ARB_conservative_depth = true;
231      if (can_do_pipelined_register_writes(brw)) {
232         ctx->Extensions.ARB_transform_feedback2 = true;
233         ctx->Extensions.ARB_transform_feedback3 = true;
234         ctx->Extensions.ARB_transform_feedback_instanced = true;
235      }
236   }
237
238   if (ctx->API == API_OPENGL_CORE)
239      ctx->Extensions.ARB_base_instance = true;
240   if (ctx->API != API_OPENGL_CORE)
241      ctx->Extensions.ARB_color_buffer_float = true;
242
243   if (ctx->Mesa_DXTn || driQueryOptionb(&brw->optionCache, "force_s3tc_enable"))
244      ctx->Extensions.EXT_texture_compression_s3tc = true;
245
246   ctx->Extensions.ANGLE_texture_compression_dxt = true;
247}
248