Subversion Repositories Kolibri OS

Rev

Blame | Last modification | View Log | RSS feed

  1. /*
  2.  Copyright (C) Intel Corp.  2006.  All Rights Reserved.
  3.  Intel funded Tungsten Graphics to
  4.  develop this 3D driver.
  5.  
  6.  Permission is hereby granted, free of charge, to any person obtaining
  7.  a 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, sublicense, 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
  16.  portions of the Software.
  17.  
  18.  THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
  19.  EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
  20.  MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
  21.  IN NO EVENT SHALL THE COPYRIGHT OWNER(S) AND/OR ITS SUPPLIERS BE
  22.  LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
  23.  OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
  24.  WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
  25.  
  26.  **********************************************************************/
  27.  /*
  28.   * Authors:
  29.   *   Keith Whitwell <keithw@vmware.com>
  30.   */
  31.  
  32.  
  33. #ifndef BRWCONTEXT_INC
  34. #define BRWCONTEXT_INC
  35.  
  36. #include <stdbool.h>
  37. #include <string.h>
  38. #include "main/imports.h"
  39. #include "main/macros.h"
  40. #include "main/mm.h"
  41. #include "main/mtypes.h"
  42. #include "brw_structs.h"
  43. #include "intel_aub.h"
  44. #include "program/prog_parameter.h"
  45.  
  46. #ifdef __cplusplus
  47. extern "C" {
  48.         /* Evil hack for using libdrm in a c++ compiler. */
  49.         #define virtual virt
  50. #endif
  51.  
  52. #include <drm.h>
  53. #include <intel_bufmgr.h>
  54. #include <i915_drm.h>
  55. #ifdef __cplusplus
  56.         #undef virtual
  57. }
  58. #endif
  59.  
  60. #ifdef __cplusplus
  61. extern "C" {
  62. #endif
  63. #include "intel_debug.h"
  64. #include "intel_screen.h"
  65. #include "intel_tex_obj.h"
  66. #include "intel_resolve_map.h"
  67.  
  68. /* Glossary:
  69.  *
  70.  * URB - uniform resource buffer.  A mid-sized buffer which is
  71.  * partitioned between the fixed function units and used for passing
  72.  * values (vertices, primitives, constants) between them.
  73.  *
  74.  * CURBE - constant URB entry.  An urb region (entry) used to hold
  75.  * constant values which the fixed function units can be instructed to
  76.  * preload into the GRF when spawning a thread.
  77.  *
  78.  * VUE - vertex URB entry.  An urb entry holding a vertex and usually
  79.  * a vertex header.  The header contains control information and
  80.  * things like primitive type, Begin/end flags and clip codes.
  81.  *
  82.  * PUE - primitive URB entry.  An urb entry produced by the setup (SF)
  83.  * unit holding rasterization and interpolation parameters.
  84.  *
  85.  * GRF - general register file.  One of several register files
  86.  * addressable by programmed threads.  The inputs (r0, payload, curbe,
  87.  * urb) of the thread are preloaded to this area before the thread is
  88.  * spawned.  The registers are individually 8 dwords wide and suitable
  89.  * for general usage.  Registers holding thread input values are not
  90.  * special and may be overwritten.
  91.  *
  92.  * MRF - message register file.  Threads communicate (and terminate)
  93.  * by sending messages.  Message parameters are placed in contiguous
  94.  * MRF registers.  All program output is via these messages.  URB
  95.  * entries are populated by sending a message to the shared URB
  96.  * function containing the new data, together with a control word,
  97.  * often an unmodified copy of R0.
  98.  *
  99.  * R0 - GRF register 0.  Typically holds control information used when
  100.  * sending messages to other threads.
  101.  *
  102.  * EU or GEN4 EU: The name of the programmable subsystem of the
  103.  * i965 hardware.  Threads are executed by the EU, the registers
  104.  * described above are part of the EU architecture.
  105.  *
  106.  * Fixed function units:
  107.  *
  108.  * CS - Command streamer.  Notional first unit, little software
  109.  * interaction.  Holds the URB entries used for constant data, ie the
  110.  * CURBEs.
  111.  *
  112.  * VF/VS - Vertex Fetch / Vertex Shader.  The fixed function part of
  113.  * this unit is responsible for pulling vertices out of vertex buffers
  114.  * in vram and injecting them into the processing pipe as VUEs.  If
  115.  * enabled, it first passes them to a VS thread which is a good place
  116.  * for the driver to implement any active vertex shader.
  117.  *
  118.  * GS - Geometry Shader.  This corresponds to a new DX10 concept.  If
  119.  * enabled, incoming strips etc are passed to GS threads in individual
  120.  * line/triangle/point units.  The GS thread may perform arbitary
  121.  * computation and emit whatever primtives with whatever vertices it
  122.  * chooses.  This makes GS an excellent place to implement GL's
  123.  * unfilled polygon modes, though of course it is capable of much
  124.  * more.  Additionally, GS is used to translate away primitives not
  125.  * handled by latter units, including Quads and Lineloops.
  126.  *
  127.  * CS - Clipper.  Mesa's clipping algorithms are imported to run on
  128.  * this unit.  The fixed function part performs cliptesting against
  129.  * the 6 fixed clipplanes and makes descisions on whether or not the
  130.  * incoming primitive needs to be passed to a thread for clipping.
  131.  * User clip planes are handled via cooperation with the VS thread.
  132.  *
  133.  * SF - Strips Fans or Setup: Triangles are prepared for
  134.  * rasterization.  Interpolation coefficients are calculated.
  135.  * Flatshading and two-side lighting usually performed here.
  136.  *
  137.  * WM - Windower.  Interpolation of vertex attributes performed here.
  138.  * Fragment shader implemented here.  SIMD aspects of EU taken full
  139.  * advantage of, as pixels are processed in blocks of 16.
  140.  *
  141.  * CC - Color Calculator.  No EU threads associated with this unit.
  142.  * Handles blending and (presumably) depth and stencil testing.
  143.  */
  144.  
  145. struct brw_context;
  146. struct brw_inst;
  147. struct brw_vs_prog_key;
  148. struct brw_vue_prog_key;
  149. struct brw_wm_prog_key;
  150. struct brw_wm_prog_data;
  151. struct brw_cs_prog_key;
  152. struct brw_cs_prog_data;
  153.  
  154. enum brw_pipeline {
  155.    BRW_RENDER_PIPELINE,
  156.    BRW_COMPUTE_PIPELINE,
  157.  
  158.    BRW_NUM_PIPELINES
  159. };
  160.  
  161. enum brw_cache_id {
  162.    BRW_CACHE_FS_PROG,
  163.    BRW_CACHE_BLORP_BLIT_PROG,
  164.    BRW_CACHE_SF_PROG,
  165.    BRW_CACHE_VS_PROG,
  166.    BRW_CACHE_FF_GS_PROG,
  167.    BRW_CACHE_GS_PROG,
  168.    BRW_CACHE_CLIP_PROG,
  169.    BRW_CACHE_CS_PROG,
  170.  
  171.    BRW_MAX_CACHE
  172. };
  173.  
  174. enum brw_state_id {
  175.    /* brw_cache_ids must come first - see brw_state_cache.c */
  176.    BRW_STATE_URB_FENCE = BRW_MAX_CACHE,
  177.    BRW_STATE_FRAGMENT_PROGRAM,
  178.    BRW_STATE_GEOMETRY_PROGRAM,
  179.    BRW_STATE_VERTEX_PROGRAM,
  180.    BRW_STATE_CURBE_OFFSETS,
  181.    BRW_STATE_REDUCED_PRIMITIVE,
  182.    BRW_STATE_PRIMITIVE,
  183.    BRW_STATE_CONTEXT,
  184.    BRW_STATE_PSP,
  185.    BRW_STATE_SURFACES,
  186.    BRW_STATE_VS_BINDING_TABLE,
  187.    BRW_STATE_GS_BINDING_TABLE,
  188.    BRW_STATE_PS_BINDING_TABLE,
  189.    BRW_STATE_INDICES,
  190.    BRW_STATE_VERTICES,
  191.    BRW_STATE_BATCH,
  192.    BRW_STATE_INDEX_BUFFER,
  193.    BRW_STATE_VS_CONSTBUF,
  194.    BRW_STATE_GS_CONSTBUF,
  195.    BRW_STATE_PROGRAM_CACHE,
  196.    BRW_STATE_STATE_BASE_ADDRESS,
  197.    BRW_STATE_VUE_MAP_VS,
  198.    BRW_STATE_VUE_MAP_GEOM_OUT,
  199.    BRW_STATE_TRANSFORM_FEEDBACK,
  200.    BRW_STATE_RASTERIZER_DISCARD,
  201.    BRW_STATE_STATS_WM,
  202.    BRW_STATE_UNIFORM_BUFFER,
  203.    BRW_STATE_ATOMIC_BUFFER,
  204.    BRW_STATE_META_IN_PROGRESS,
  205.    BRW_STATE_INTERPOLATION_MAP,
  206.    BRW_STATE_PUSH_CONSTANT_ALLOCATION,
  207.    BRW_STATE_NUM_SAMPLES,
  208.    BRW_STATE_TEXTURE_BUFFER,
  209.    BRW_STATE_GEN4_UNIT_STATE,
  210.    BRW_STATE_CC_VP,
  211.    BRW_STATE_SF_VP,
  212.    BRW_STATE_CLIP_VP,
  213.    BRW_STATE_SAMPLER_STATE_TABLE,
  214.    BRW_STATE_VS_ATTRIB_WORKAROUNDS,
  215.    BRW_STATE_COMPUTE_PROGRAM,
  216.    BRW_NUM_STATE_BITS
  217. };
  218.  
  219. /**
  220.  * BRW_NEW_*_PROG_DATA and BRW_NEW_*_PROGRAM are similar, but distinct.
  221.  *
  222.  * BRW_NEW_*_PROGRAM relates to the gl_shader_program/gl_program structures.
  223.  * When the currently bound shader program differs from the previous draw
  224.  * call, these will be flagged.  They cover brw->{stage}_program and
  225.  * ctx->{Stage}Program->_Current.
  226.  *
  227.  * BRW_NEW_*_PROG_DATA is flagged when the effective shaders change, from a
  228.  * driver perspective.  Even if the same shader is bound at the API level,
  229.  * we may need to switch between multiple versions of that shader to handle
  230.  * changes in non-orthagonal state.
  231.  *
  232.  * Additionally, multiple shader programs may have identical vertex shaders
  233.  * (for example), or compile down to the same code in the backend.  We combine
  234.  * those into a single program cache entry.
  235.  *
  236.  * BRW_NEW_*_PROG_DATA occurs when switching program cache entries, which
  237.  * covers the brw_*_prog_data structures, and brw->*.prog_offset.
  238.  */
  239. #define BRW_NEW_FS_PROG_DATA            (1ull << BRW_CACHE_FS_PROG)
  240. /* XXX: The BRW_NEW_BLORP_BLIT_PROG_DATA dirty bit is unused (as BLORP doesn't
  241.  * use the normal state upload paths), but the cache is still used.  To avoid
  242.  * polluting the brw_state_cache code with special cases, we retain the dirty
  243.  * bit for now.  It should eventually be removed.
  244.  */
  245. #define BRW_NEW_BLORP_BLIT_PROG_DATA    (1ull << BRW_CACHE_BLORP_BLIT_PROG)
  246. #define BRW_NEW_SF_PROG_DATA            (1ull << BRW_CACHE_SF_PROG)
  247. #define BRW_NEW_VS_PROG_DATA            (1ull << BRW_CACHE_VS_PROG)
  248. #define BRW_NEW_FF_GS_PROG_DATA         (1ull << BRW_CACHE_FF_GS_PROG)
  249. #define BRW_NEW_GS_PROG_DATA            (1ull << BRW_CACHE_GS_PROG)
  250. #define BRW_NEW_CLIP_PROG_DATA          (1ull << BRW_CACHE_CLIP_PROG)
  251. #define BRW_NEW_CS_PROG_DATA            (1ull << BRW_CACHE_CS_PROG)
  252. #define BRW_NEW_URB_FENCE               (1ull << BRW_STATE_URB_FENCE)
  253. #define BRW_NEW_FRAGMENT_PROGRAM        (1ull << BRW_STATE_FRAGMENT_PROGRAM)
  254. #define BRW_NEW_GEOMETRY_PROGRAM        (1ull << BRW_STATE_GEOMETRY_PROGRAM)
  255. #define BRW_NEW_VERTEX_PROGRAM          (1ull << BRW_STATE_VERTEX_PROGRAM)
  256. #define BRW_NEW_CURBE_OFFSETS           (1ull << BRW_STATE_CURBE_OFFSETS)
  257. #define BRW_NEW_REDUCED_PRIMITIVE       (1ull << BRW_STATE_REDUCED_PRIMITIVE)
  258. #define BRW_NEW_PRIMITIVE               (1ull << BRW_STATE_PRIMITIVE)
  259. #define BRW_NEW_CONTEXT                 (1ull << BRW_STATE_CONTEXT)
  260. #define BRW_NEW_PSP                     (1ull << BRW_STATE_PSP)
  261. #define BRW_NEW_SURFACES                (1ull << BRW_STATE_SURFACES)
  262. #define BRW_NEW_VS_BINDING_TABLE        (1ull << BRW_STATE_VS_BINDING_TABLE)
  263. #define BRW_NEW_GS_BINDING_TABLE        (1ull << BRW_STATE_GS_BINDING_TABLE)
  264. #define BRW_NEW_PS_BINDING_TABLE        (1ull << BRW_STATE_PS_BINDING_TABLE)
  265. #define BRW_NEW_INDICES                 (1ull << BRW_STATE_INDICES)
  266. #define BRW_NEW_VERTICES                (1ull << BRW_STATE_VERTICES)
  267. /**
  268.  * Used for any batch entry with a relocated pointer that will be used
  269.  * by any 3D rendering.
  270.  */
  271. #define BRW_NEW_BATCH                   (1ull << BRW_STATE_BATCH)
  272. /** \see brw.state.depth_region */
  273. #define BRW_NEW_INDEX_BUFFER            (1ull << BRW_STATE_INDEX_BUFFER)
  274. #define BRW_NEW_VS_CONSTBUF             (1ull << BRW_STATE_VS_CONSTBUF)
  275. #define BRW_NEW_GS_CONSTBUF             (1ull << BRW_STATE_GS_CONSTBUF)
  276. #define BRW_NEW_PROGRAM_CACHE           (1ull << BRW_STATE_PROGRAM_CACHE)
  277. #define BRW_NEW_STATE_BASE_ADDRESS      (1ull << BRW_STATE_STATE_BASE_ADDRESS)
  278. #define BRW_NEW_VUE_MAP_VS              (1ull << BRW_STATE_VUE_MAP_VS)
  279. #define BRW_NEW_VUE_MAP_GEOM_OUT        (1ull << BRW_STATE_VUE_MAP_GEOM_OUT)
  280. #define BRW_NEW_TRANSFORM_FEEDBACK      (1ull << BRW_STATE_TRANSFORM_FEEDBACK)
  281. #define BRW_NEW_RASTERIZER_DISCARD      (1ull << BRW_STATE_RASTERIZER_DISCARD)
  282. #define BRW_NEW_STATS_WM                (1ull << BRW_STATE_STATS_WM)
  283. #define BRW_NEW_UNIFORM_BUFFER          (1ull << BRW_STATE_UNIFORM_BUFFER)
  284. #define BRW_NEW_ATOMIC_BUFFER           (1ull << BRW_STATE_ATOMIC_BUFFER)
  285. #define BRW_NEW_META_IN_PROGRESS        (1ull << BRW_STATE_META_IN_PROGRESS)
  286. #define BRW_NEW_INTERPOLATION_MAP       (1ull << BRW_STATE_INTERPOLATION_MAP)
  287. #define BRW_NEW_PUSH_CONSTANT_ALLOCATION (1ull << BRW_STATE_PUSH_CONSTANT_ALLOCATION)
  288. #define BRW_NEW_NUM_SAMPLES             (1ull << BRW_STATE_NUM_SAMPLES)
  289. #define BRW_NEW_TEXTURE_BUFFER          (1ull << BRW_STATE_TEXTURE_BUFFER)
  290. #define BRW_NEW_GEN4_UNIT_STATE         (1ull << BRW_STATE_GEN4_UNIT_STATE)
  291. #define BRW_NEW_CC_VP                   (1ull << BRW_STATE_CC_VP)
  292. #define BRW_NEW_SF_VP                   (1ull << BRW_STATE_SF_VP)
  293. #define BRW_NEW_CLIP_VP                 (1ull << BRW_STATE_CLIP_VP)
  294. #define BRW_NEW_SAMPLER_STATE_TABLE     (1ull << BRW_STATE_SAMPLER_STATE_TABLE)
  295. #define BRW_NEW_VS_ATTRIB_WORKAROUNDS   (1ull << BRW_STATE_VS_ATTRIB_WORKAROUNDS)
  296. #define BRW_NEW_COMPUTE_PROGRAM         (1ull << BRW_STATE_COMPUTE_PROGRAM)
  297.  
  298. struct brw_state_flags {
  299.    /** State update flags signalled by mesa internals */
  300.    GLuint mesa;
  301.    /**
  302.     * State update flags signalled as the result of brw_tracked_state updates
  303.     */
  304.    uint64_t brw;
  305. };
  306.  
  307. /** Subclass of Mesa vertex program */
  308. struct brw_vertex_program {
  309.    struct gl_vertex_program program;
  310.    GLuint id;
  311. };
  312.  
  313.  
  314. /** Subclass of Mesa geometry program */
  315. struct brw_geometry_program {
  316.    struct gl_geometry_program program;
  317.    unsigned id;  /**< serial no. to identify geom progs, never re-used */
  318. };
  319.  
  320.  
  321. /** Subclass of Mesa fragment program */
  322. struct brw_fragment_program {
  323.    struct gl_fragment_program program;
  324.    GLuint id;  /**< serial no. to identify frag progs, never re-used */
  325. };
  326.  
  327.  
  328. /** Subclass of Mesa compute program */
  329. struct brw_compute_program {
  330.    struct gl_compute_program program;
  331.    unsigned id;  /**< serial no. to identify compute progs, never re-used */
  332. };
  333.  
  334.  
  335. struct brw_shader {
  336.    struct gl_shader base;
  337.  
  338.    bool compiled_once;
  339. };
  340.  
  341. /* Note: If adding fields that need anything besides a normal memcmp() for
  342.  * comparing them, be sure to go fix brw_stage_prog_data_compare().
  343.  */
  344. struct brw_stage_prog_data {
  345.    struct {
  346.       /** size of our binding table. */
  347.       uint32_t size_bytes;
  348.  
  349.       /** @{
  350.        * surface indices for the various groups of surfaces
  351.        */
  352.       uint32_t pull_constants_start;
  353.       uint32_t texture_start;
  354.       uint32_t gather_texture_start;
  355.       uint32_t ubo_start;
  356.       uint32_t abo_start;
  357.       uint32_t image_start;
  358.       uint32_t shader_time_start;
  359.       /** @} */
  360.    } binding_table;
  361.  
  362.    GLuint nr_params;       /**< number of float params/constants */
  363.    GLuint nr_pull_params;
  364.  
  365.    unsigned curb_read_length;
  366.    unsigned total_scratch;
  367.  
  368.    /**
  369.     * Register where the thread expects to find input data from the URB
  370.     * (typically uniforms, followed by vertex or fragment attributes).
  371.     */
  372.    unsigned dispatch_grf_start_reg;
  373.  
  374.    bool use_alt_mode; /**< Use ALT floating point mode?  Otherwise, IEEE. */
  375.  
  376.    /* Pointers to tracked values (only valid once
  377.     * _mesa_load_state_parameters has been called at runtime).
  378.     *
  379.     * These must be the last fields of the struct (see
  380.     * brw_stage_prog_data_compare()).
  381.     */
  382.    const gl_constant_value **param;
  383.    const gl_constant_value **pull_param;
  384. };
  385.  
  386. /* Data about a particular attempt to compile a program.  Note that
  387.  * there can be many of these, each in a different GL state
  388.  * corresponding to a different brw_wm_prog_key struct, with different
  389.  * compiled programs.
  390.  *
  391.  * Note: brw_wm_prog_data_compare() must be updated when adding fields to this
  392.  * struct!
  393.  */
  394. struct brw_wm_prog_data {
  395.    struct brw_stage_prog_data base;
  396.  
  397.    GLuint num_varying_inputs;
  398.  
  399.    GLuint dispatch_grf_start_reg_16;
  400.    GLuint reg_blocks;
  401.    GLuint reg_blocks_16;
  402.  
  403.    struct {
  404.       /** @{
  405.        * surface indices the WM-specific surfaces
  406.        */
  407.       uint32_t render_target_start;
  408.       /** @} */
  409.    } binding_table;
  410.  
  411.    uint8_t computed_depth_mode;
  412.  
  413.    bool no_8;
  414.    bool dual_src_blend;
  415.    bool uses_pos_offset;
  416.    bool uses_omask;
  417.    bool uses_kill;
  418.    uint32_t prog_offset_16;
  419.  
  420.    /**
  421.     * Mask of which interpolation modes are required by the fragment shader.
  422.     * Used in hardware setup on gen6+.
  423.     */
  424.    uint32_t barycentric_interp_modes;
  425.  
  426.    /**
  427.     * Map from gl_varying_slot to the position within the FS setup data
  428.     * payload where the varying's attribute vertex deltas should be delivered.
  429.     * For varying slots that are not used by the FS, the value is -1.
  430.     */
  431.    int urb_setup[VARYING_SLOT_MAX];
  432. };
  433.  
  434. /* Note: brw_cs_prog_data_compare() must be updated when adding fields to this
  435.  * struct!
  436.  */
  437. struct brw_cs_prog_data {
  438.    struct brw_stage_prog_data base;
  439.  
  440.    GLuint dispatch_grf_start_reg_16;
  441.    unsigned local_size[3];
  442.    unsigned simd_size;
  443. };
  444.  
  445. /**
  446.  * Enum representing the i965-specific vertex results that don't correspond
  447.  * exactly to any element of gl_varying_slot.  The values of this enum are
  448.  * assigned such that they don't conflict with gl_varying_slot.
  449.  */
  450. typedef enum
  451. {
  452.    BRW_VARYING_SLOT_NDC = VARYING_SLOT_MAX,
  453.    BRW_VARYING_SLOT_PAD,
  454.    /**
  455.     * Technically this is not a varying but just a placeholder that
  456.     * compile_sf_prog() inserts into its VUE map to cause the gl_PointCoord
  457.     * builtin variable to be compiled correctly. see compile_sf_prog() for
  458.     * more info.
  459.     */
  460.    BRW_VARYING_SLOT_PNTC,
  461.    BRW_VARYING_SLOT_COUNT
  462. } brw_varying_slot;
  463.  
  464.  
  465. /**
  466.  * Data structure recording the relationship between the gl_varying_slot enum
  467.  * and "slots" within the vertex URB entry (VUE).  A "slot" is defined as a
  468.  * single octaword within the VUE (128 bits).
  469.  *
  470.  * Note that each BRW register contains 256 bits (2 octawords), so when
  471.  * accessing the VUE in URB_NOSWIZZLE mode, each register corresponds to two
  472.  * consecutive VUE slots.  When accessing the VUE in URB_INTERLEAVED mode (as
  473.  * in a vertex shader), each register corresponds to a single VUE slot, since
  474.  * it contains data for two separate vertices.
  475.  */
  476. struct brw_vue_map {
  477.    /**
  478.     * Bitfield representing all varying slots that are (a) stored in this VUE
  479.     * map, and (b) actually written by the shader.  Does not include any of
  480.     * the additional varying slots defined in brw_varying_slot.
  481.     */
  482.    GLbitfield64 slots_valid;
  483.  
  484.    /**
  485.     * Map from gl_varying_slot value to VUE slot.  For gl_varying_slots that are
  486.     * not stored in a slot (because they are not written, or because
  487.     * additional processing is applied before storing them in the VUE), the
  488.     * value is -1.
  489.     */
  490.    signed char varying_to_slot[BRW_VARYING_SLOT_COUNT];
  491.  
  492.    /**
  493.     * Map from VUE slot to gl_varying_slot value.  For slots that do not
  494.     * directly correspond to a gl_varying_slot, the value comes from
  495.     * brw_varying_slot.
  496.     *
  497.     * For slots that are not in use, the value is BRW_VARYING_SLOT_COUNT (this
  498.     * simplifies code that uses the value stored in slot_to_varying to
  499.     * create a bit mask).
  500.     */
  501.    signed char slot_to_varying[BRW_VARYING_SLOT_COUNT];
  502.  
  503.    /**
  504.     * Total number of VUE slots in use
  505.     */
  506.    int num_slots;
  507. };
  508.  
  509. /**
  510.  * Convert a VUE slot number into a byte offset within the VUE.
  511.  */
  512. static inline GLuint brw_vue_slot_to_offset(GLuint slot)
  513. {
  514.    return 16*slot;
  515. }
  516.  
  517. /**
  518.  * Convert a vertex output (brw_varying_slot) into a byte offset within the
  519.  * VUE.
  520.  */
  521. static inline GLuint brw_varying_to_offset(struct brw_vue_map *vue_map,
  522.                                            GLuint varying)
  523. {
  524.    return brw_vue_slot_to_offset(vue_map->varying_to_slot[varying]);
  525. }
  526.  
  527. void brw_compute_vue_map(const struct brw_device_info *devinfo,
  528.                          struct brw_vue_map *vue_map,
  529.                          GLbitfield64 slots_valid);
  530.  
  531.  
  532. /**
  533.  * Bitmask indicating which fragment shader inputs represent varyings (and
  534.  * hence have to be delivered to the fragment shader by the SF/SBE stage).
  535.  */
  536. #define BRW_FS_VARYING_INPUT_MASK \
  537.    (BITFIELD64_RANGE(0, VARYING_SLOT_MAX) & \
  538.     ~VARYING_BIT_POS & ~VARYING_BIT_FACE)
  539.  
  540.  
  541. /*
  542.  * Mapping of VUE map slots to interpolation modes.
  543.  */
  544. struct interpolation_mode_map {
  545.    unsigned char mode[BRW_VARYING_SLOT_COUNT];
  546. };
  547.  
  548. static inline bool brw_any_flat_varyings(struct interpolation_mode_map *map)
  549. {
  550.    for (int i = 0; i < BRW_VARYING_SLOT_COUNT; i++)
  551.       if (map->mode[i] == INTERP_QUALIFIER_FLAT)
  552.          return true;
  553.  
  554.    return false;
  555. }
  556.  
  557. static inline bool brw_any_noperspective_varyings(struct interpolation_mode_map *map)
  558. {
  559.    for (int i = 0; i < BRW_VARYING_SLOT_COUNT; i++)
  560.       if (map->mode[i] == INTERP_QUALIFIER_NOPERSPECTIVE)
  561.          return true;
  562.  
  563.    return false;
  564. }
  565.  
  566.  
  567. struct brw_sf_prog_data {
  568.    GLuint urb_read_length;
  569.    GLuint total_grf;
  570.  
  571.    /* Each vertex may have upto 12 attributes, 4 components each,
  572.     * except WPOS which requires only 2.  (11*4 + 2) == 44 ==> 11
  573.     * rows.
  574.     *
  575.     * Actually we use 4 for each, so call it 12 rows.
  576.     */
  577.    GLuint urb_entry_size;
  578. };
  579.  
  580.  
  581. /**
  582.  * We always program SF to start reading at an offset of 1 (2 varying slots)
  583.  * from the start of the vertex URB entry.  This causes it to skip:
  584.  * - VARYING_SLOT_PSIZ and BRW_VARYING_SLOT_NDC on gen4-5
  585.  * - VARYING_SLOT_PSIZ and VARYING_SLOT_POS on gen6+
  586.  */
  587. #define BRW_SF_URB_ENTRY_READ_OFFSET 1
  588.  
  589.  
  590. struct brw_clip_prog_data {
  591.    GLuint curb_read_length;     /* user planes? */
  592.    GLuint clip_mode;
  593.    GLuint urb_read_length;
  594.    GLuint total_grf;
  595. };
  596.  
  597. struct brw_ff_gs_prog_data {
  598.    GLuint urb_read_length;
  599.    GLuint total_grf;
  600.  
  601.    /**
  602.     * Gen6 transform feedback: Amount by which the streaming vertex buffer
  603.     * indices should be incremented each time the GS is invoked.
  604.     */
  605.    unsigned svbi_postincrement_value;
  606. };
  607.  
  608.  
  609. /* Note: brw_vue_prog_data_compare() must be updated when adding fields to
  610.  * this struct!
  611.  */
  612. struct brw_vue_prog_data {
  613.    struct brw_stage_prog_data base;
  614.    struct brw_vue_map vue_map;
  615.  
  616.    GLuint urb_read_length;
  617.    GLuint total_grf;
  618.  
  619.    /* Used for calculating urb partitions.  In the VS, this is the size of the
  620.     * URB entry used for both input and output to the thread.  In the GS, this
  621.     * is the size of the URB entry used for output.
  622.     */
  623.    GLuint urb_entry_size;
  624.  
  625.    bool simd8;
  626. };
  627.  
  628.  
  629. /* Note: brw_vs_prog_data_compare() must be updated when adding fields to this
  630.  * struct!
  631.  */
  632. struct brw_vs_prog_data {
  633.    struct brw_vue_prog_data base;
  634.  
  635.    GLbitfield64 inputs_read;
  636.  
  637.    bool uses_vertexid;
  638.    bool uses_instanceid;
  639. };
  640.  
  641. /** Number of texture sampler units */
  642. #define BRW_MAX_TEX_UNIT 32
  643.  
  644. /** Max number of render targets in a shader */
  645. #define BRW_MAX_DRAW_BUFFERS 8
  646.  
  647. /** Max number of atomic counter buffer objects in a shader */
  648. #define BRW_MAX_ABO 16
  649.  
  650. /** Max number of image uniforms in a shader */
  651. #define BRW_MAX_IMAGES 32
  652.  
  653. /**
  654.  * Max number of binding table entries used for stream output.
  655.  *
  656.  * From the OpenGL 3.0 spec, table 6.44 (Transform Feedback State), the
  657.  * minimum value of MAX_TRANSFORM_FEEDBACK_INTERLEAVED_COMPONENTS is 64.
  658.  *
  659.  * On Gen6, the size of transform feedback data is limited not by the number
  660.  * of components but by the number of binding table entries we set aside.  We
  661.  * use one binding table entry for a float, one entry for a vector, and one
  662.  * entry per matrix column.  Since the only way we can communicate our
  663.  * transform feedback capabilities to the client is via
  664.  * MAX_TRANSFORM_FEEDBACK_INTERLEAVED_COMPONENTS, we need to plan for the
  665.  * worst case, in which all the varyings are floats, so we use up one binding
  666.  * table entry per component.  Therefore we need to set aside at least 64
  667.  * binding table entries for use by transform feedback.
  668.  *
  669.  * Note: since we don't currently pack varyings, it is currently impossible
  670.  * for the client to actually use up all of these binding table entries--if
  671.  * all of their varyings were floats, they would run out of varying slots and
  672.  * fail to link.  But that's a bug, so it seems prudent to go ahead and
  673.  * allocate the number of binding table entries we will need once the bug is
  674.  * fixed.
  675.  */
  676. #define BRW_MAX_SOL_BINDINGS 64
  677.  
  678. /** Maximum number of actual buffers used for stream output */
  679. #define BRW_MAX_SOL_BUFFERS 4
  680.  
  681. #define BRW_MAX_SURFACES   (BRW_MAX_DRAW_BUFFERS +                      \
  682.                             BRW_MAX_TEX_UNIT * 2 + /* normal, gather */ \
  683.                             12 + /* ubo */                              \
  684.                             BRW_MAX_ABO +                               \
  685.                             BRW_MAX_IMAGES +                            \
  686.                             2 /* shader time, pull constants */)
  687.  
  688. #define SURF_INDEX_GEN6_SOL_BINDING(t) (t)
  689.  
  690. /* Note: brw_gs_prog_data_compare() must be updated when adding fields to
  691.  * this struct!
  692.  */
  693. struct brw_gs_prog_data
  694. {
  695.    struct brw_vue_prog_data base;
  696.  
  697.    /**
  698.     * Size of an output vertex, measured in HWORDS (32 bytes).
  699.     */
  700.    unsigned output_vertex_size_hwords;
  701.  
  702.    unsigned output_topology;
  703.  
  704.    /**
  705.     * Size of the control data (cut bits or StreamID bits), in hwords (32
  706.     * bytes).  0 if there is no control data.
  707.     */
  708.    unsigned control_data_header_size_hwords;
  709.  
  710.    /**
  711.     * Format of the control data (either GEN7_GS_CONTROL_DATA_FORMAT_GSCTL_SID
  712.     * if the control data is StreamID bits, or
  713.     * GEN7_GS_CONTROL_DATA_FORMAT_GSCTL_CUT if the control data is cut bits).
  714.     * Ignored if control_data_header_size is 0.
  715.     */
  716.    unsigned control_data_format;
  717.  
  718.    bool include_primitive_id;
  719.  
  720.    int invocations;
  721.  
  722.    /**
  723.     * Dispatch mode, can be any of:
  724.     * GEN7_GS_DISPATCH_MODE_DUAL_OBJECT
  725.     * GEN7_GS_DISPATCH_MODE_DUAL_INSTANCE
  726.     * GEN7_GS_DISPATCH_MODE_SINGLE
  727.     */
  728.    int dispatch_mode;
  729.  
  730.    /**
  731.     * Gen6 transform feedback enabled flag.
  732.     */
  733.    bool gen6_xfb_enabled;
  734.  
  735.    /**
  736.     * Gen6: Provoking vertex convention for odd-numbered triangles
  737.     * in tristrips.
  738.     */
  739.    GLuint pv_first:1;
  740.  
  741.    /**
  742.     * Gen6: Number of varyings that are output to transform feedback.
  743.     */
  744.    GLuint num_transform_feedback_bindings:7; /* 0-BRW_MAX_SOL_BINDINGS */
  745.  
  746.    /**
  747.     * Gen6: Map from the index of a transform feedback binding table entry to the
  748.     * gl_varying_slot that should be streamed out through that binding table
  749.     * entry.
  750.     */
  751.    unsigned char transform_feedback_bindings[BRW_MAX_SOL_BINDINGS];
  752.  
  753.    /**
  754.     * Gen6: Map from the index of a transform feedback binding table entry to the
  755.     * swizzles that should be used when streaming out data through that
  756.     * binding table entry.
  757.     */
  758.    unsigned char transform_feedback_swizzles[BRW_MAX_SOL_BINDINGS];
  759. };
  760.  
  761. /**
  762.  * Stride in bytes between shader_time entries.
  763.  *
  764.  * We separate entries by a cacheline to reduce traffic between EUs writing to
  765.  * different entries.
  766.  */
  767. #define SHADER_TIME_STRIDE 64
  768.  
  769. struct brw_cache_item {
  770.    /**
  771.     * Effectively part of the key, cache_id identifies what kind of state
  772.     * buffer is involved, and also which dirty flag should set.
  773.     */
  774.    enum brw_cache_id cache_id;
  775.    /** 32-bit hash of the key data */
  776.    GLuint hash;
  777.    GLuint key_size;             /* for variable-sized keys */
  778.    GLuint aux_size;
  779.    const void *key;
  780.  
  781.    uint32_t offset;
  782.    uint32_t size;
  783.  
  784.    struct brw_cache_item *next;
  785. };
  786.  
  787.  
  788. typedef bool (*cache_aux_compare_func)(const void *a, const void *b);
  789. typedef void (*cache_aux_free_func)(const void *aux);
  790.  
  791. struct brw_cache {
  792.    struct brw_context *brw;
  793.  
  794.    struct brw_cache_item **items;
  795.    drm_intel_bo *bo;
  796.    GLuint size, n_items;
  797.  
  798.    uint32_t next_offset;
  799.    bool bo_used_by_gpu;
  800.  
  801.    /**
  802.     * Optional functions used in determining whether the prog_data for a new
  803.     * cache item matches an existing cache item (in case there's relevant data
  804.     * outside of the prog_data).  If NULL, a plain memcmp is done.
  805.     */
  806.    cache_aux_compare_func aux_compare[BRW_MAX_CACHE];
  807.    /** Optional functions for freeing other pointers attached to a prog_data. */
  808.    cache_aux_free_func aux_free[BRW_MAX_CACHE];
  809. };
  810.  
  811.  
  812. /* Considered adding a member to this struct to document which flags
  813.  * an update might raise so that ordering of the state atoms can be
  814.  * checked or derived at runtime.  Dropped the idea in favor of having
  815.  * a debug mode where the state is monitored for flags which are
  816.  * raised that have already been tested against.
  817.  */
  818. struct brw_tracked_state {
  819.    struct brw_state_flags dirty;
  820.    void (*emit)( struct brw_context *brw );
  821. };
  822.  
  823. enum shader_time_shader_type {
  824.    ST_NONE,
  825.    ST_VS,
  826.    ST_VS_WRITTEN,
  827.    ST_VS_RESET,
  828.    ST_GS,
  829.    ST_GS_WRITTEN,
  830.    ST_GS_RESET,
  831.    ST_FS8,
  832.    ST_FS8_WRITTEN,
  833.    ST_FS8_RESET,
  834.    ST_FS16,
  835.    ST_FS16_WRITTEN,
  836.    ST_FS16_RESET,
  837.    ST_CS,
  838.    ST_CS_WRITTEN,
  839.    ST_CS_RESET,
  840. };
  841.  
  842. struct brw_vertex_buffer {
  843.    /** Buffer object containing the uploaded vertex data */
  844.    drm_intel_bo *bo;
  845.    uint32_t offset;
  846.    /** Byte stride between elements in the uploaded array */
  847.    GLuint stride;
  848.    GLuint step_rate;
  849. };
  850. struct brw_vertex_element {
  851.    const struct gl_client_array *glarray;
  852.  
  853.    int buffer;
  854.  
  855.    /** Offset of the first element within the buffer object */
  856.    unsigned int offset;
  857. };
  858.  
  859. struct brw_query_object {
  860.    struct gl_query_object Base;
  861.  
  862.    /** Last query BO associated with this query. */
  863.    drm_intel_bo *bo;
  864.  
  865.    /** Last index in bo with query data for this object. */
  866.    int last_index;
  867.  
  868.    /** True if we know the batch has been flushed since we ended the query. */
  869.    bool flushed;
  870. };
  871.  
  872. enum brw_gpu_ring {
  873.    UNKNOWN_RING,
  874.    RENDER_RING,
  875.    BLT_RING,
  876. };
  877.  
  878. struct intel_batchbuffer {
  879.    /** Current batchbuffer being queued up. */
  880.    drm_intel_bo *bo;
  881.    /** Last BO submitted to the hardware.  Used for glFinish(). */
  882.    drm_intel_bo *last_bo;
  883.    /** BO for post-sync nonzero writes for gen6 workaround. */
  884.    drm_intel_bo *workaround_bo;
  885.  
  886.    uint16_t emit, total;
  887.    uint16_t used, reserved_space;
  888.    uint32_t *map;
  889.    uint32_t *cpu_map;
  890. #define BATCH_SZ (8192*sizeof(uint32_t))
  891.  
  892.    uint32_t state_batch_offset;
  893.    enum brw_gpu_ring ring;
  894.    bool needs_sol_reset;
  895.  
  896.    uint8_t pipe_controls_since_last_cs_stall;
  897.  
  898.    struct {
  899.       uint16_t used;
  900.       int reloc_count;
  901.    } saved;
  902. };
  903.  
  904. #define BRW_MAX_XFB_STREAMS 4
  905.  
  906. struct brw_transform_feedback_object {
  907.    struct gl_transform_feedback_object base;
  908.  
  909.    /** A buffer to hold SO_WRITE_OFFSET(n) values while paused. */
  910.    drm_intel_bo *offset_bo;
  911.  
  912.    /** If true, SO_WRITE_OFFSET(n) should be reset to zero at next use. */
  913.    bool zero_offsets;
  914.  
  915.    /** The most recent primitive mode (GL_TRIANGLES/GL_POINTS/GL_LINES). */
  916.    GLenum primitive_mode;
  917.  
  918.    /**
  919.     * Count of primitives generated during this transform feedback operation.
  920.     *  @{
  921.     */
  922.    uint64_t prims_generated[BRW_MAX_XFB_STREAMS];
  923.    drm_intel_bo *prim_count_bo;
  924.    unsigned prim_count_buffer_index; /**< in number of uint64_t units */
  925.    /** @} */
  926.  
  927.    /**
  928.     * Number of vertices written between last Begin/EndTransformFeedback().
  929.     *
  930.     * Used to implement DrawTransformFeedback().
  931.     */
  932.    uint64_t vertices_written[BRW_MAX_XFB_STREAMS];
  933.    bool vertices_written_valid;
  934. };
  935.  
  936. /**
  937.  * Data shared between each programmable stage in the pipeline (vs, gs, and
  938.  * wm).
  939.  */
  940. struct brw_stage_state
  941. {
  942.    gl_shader_stage stage;
  943.    struct brw_stage_prog_data *prog_data;
  944.  
  945.    /**
  946.     * Optional scratch buffer used to store spilled register values and
  947.     * variably-indexed GRF arrays.
  948.     */
  949.    drm_intel_bo *scratch_bo;
  950.  
  951.    /** Offset in the program cache to the program */
  952.    uint32_t prog_offset;
  953.  
  954.    /** Offset in the batchbuffer to Gen4-5 pipelined state (VS/WM/GS_STATE). */
  955.    uint32_t state_offset;
  956.  
  957.    uint32_t push_const_offset; /* Offset in the batchbuffer */
  958.    int push_const_size; /* in 256-bit register increments */
  959.  
  960.    /* Binding table: pointers to SURFACE_STATE entries. */
  961.    uint32_t bind_bo_offset;
  962.    uint32_t surf_offset[BRW_MAX_SURFACES];
  963.  
  964.    /** SAMPLER_STATE count and table offset */
  965.    uint32_t sampler_count;
  966.    uint32_t sampler_offset;
  967. };
  968.  
  969. enum brw_predicate_state {
  970.    /* The first two states are used if we can determine whether to draw
  971.     * without having to look at the values in the query object buffer. This
  972.     * will happen if there is no conditional render in progress, if the query
  973.     * object is already completed or if something else has already added
  974.     * samples to the preliminary result such as via a BLT command.
  975.     */
  976.    BRW_PREDICATE_STATE_RENDER,
  977.    BRW_PREDICATE_STATE_DONT_RENDER,
  978.    /* In this case whether to draw or not depends on the result of an
  979.     * MI_PREDICATE command so the predicate enable bit needs to be checked.
  980.     */
  981.    BRW_PREDICATE_STATE_USE_BIT
  982. };
  983.  
  984. /**
  985.  * brw_context is derived from gl_context.
  986.  */
  987. struct brw_context
  988. {
  989.    struct gl_context ctx; /**< base class, must be first field */
  990.  
  991.    struct
  992.    {
  993.       void (*update_texture_surface)(struct gl_context *ctx,
  994.                                      unsigned unit,
  995.                                      uint32_t *surf_offset,
  996.                                      bool for_gather);
  997.       uint32_t (*update_renderbuffer_surface)(struct brw_context *brw,
  998.                                               struct gl_renderbuffer *rb,
  999.                                               bool layered, unsigned unit,
  1000.                                               uint32_t surf_index);
  1001.  
  1002.       void (*emit_texture_surface_state)(struct brw_context *brw,
  1003.                                          struct intel_mipmap_tree *mt,
  1004.                                          GLenum target,
  1005.                                          unsigned min_layer,
  1006.                                          unsigned max_layer,
  1007.                                          unsigned min_level,
  1008.                                          unsigned max_level,
  1009.                                          unsigned format,
  1010.                                          unsigned swizzle,
  1011.                                          uint32_t *surf_offset,
  1012.                                          bool rw, bool for_gather);
  1013.       void (*emit_buffer_surface_state)(struct brw_context *brw,
  1014.                                         uint32_t *out_offset,
  1015.                                         drm_intel_bo *bo,
  1016.                                         unsigned buffer_offset,
  1017.                                         unsigned surface_format,
  1018.                                         unsigned buffer_size,
  1019.                                         unsigned pitch,
  1020.                                         bool rw);
  1021.       void (*emit_null_surface_state)(struct brw_context *brw,
  1022.                                       unsigned width,
  1023.                                       unsigned height,
  1024.                                       unsigned samples,
  1025.                                       uint32_t *out_offset);
  1026.  
  1027.       /**
  1028.        * Send the appropriate state packets to configure depth, stencil, and
  1029.        * HiZ buffers (i965+ only)
  1030.        */
  1031.       void (*emit_depth_stencil_hiz)(struct brw_context *brw,
  1032.                                      struct intel_mipmap_tree *depth_mt,
  1033.                                      uint32_t depth_offset,
  1034.                                      uint32_t depthbuffer_format,
  1035.                                      uint32_t depth_surface_type,
  1036.                                      struct intel_mipmap_tree *stencil_mt,
  1037.                                      bool hiz, bool separate_stencil,
  1038.                                      uint32_t width, uint32_t height,
  1039.                                      uint32_t tile_x, uint32_t tile_y);
  1040.  
  1041.    } vtbl;
  1042.  
  1043.    dri_bufmgr *bufmgr;
  1044.  
  1045.    drm_intel_context *hw_ctx;
  1046.  
  1047.    /**
  1048.     * Set of drm_intel_bo * that have been rendered to within this batchbuffer
  1049.     * and would need flushing before being used from another cache domain that
  1050.     * isn't coherent with it (i.e. the sampler).
  1051.     */
  1052.    struct set *render_cache;
  1053.  
  1054.    /**
  1055.     * Number of resets observed in the system at context creation.
  1056.     *
  1057.     * This is tracked in the context so that we can determine that another
  1058.     * reset has occurred.
  1059.     */
  1060.    uint32_t reset_count;
  1061.  
  1062.    struct intel_batchbuffer batch;
  1063.    bool no_batch_wrap;
  1064.  
  1065.    struct {
  1066.       drm_intel_bo *bo;
  1067.       uint32_t next_offset;
  1068.    } upload;
  1069.  
  1070.    /**
  1071.     * Set if rendering has occurred to the drawable's front buffer.
  1072.     *
  1073.     * This is used in the DRI2 case to detect that glFlush should also copy
  1074.     * the contents of the fake front buffer to the real front buffer.
  1075.     */
  1076.    bool front_buffer_dirty;
  1077.  
  1078.    /** Framerate throttling: @{ */
  1079.    drm_intel_bo *throttle_batch[2];
  1080.  
  1081.    /* Limit the number of outstanding SwapBuffers by waiting for an earlier
  1082.     * frame of rendering to complete. This gives a very precise cap to the
  1083.     * latency between input and output such that rendering never gets more
  1084.     * than a frame behind the user. (With the caveat that we technically are
  1085.     * not using the SwapBuffers itself as a barrier but the first batch
  1086.     * submitted afterwards, which may be immediately prior to the next
  1087.     * SwapBuffers.)
  1088.     */
  1089.    bool need_swap_throttle;
  1090.  
  1091.    /** General throttling, not caught by throttling between SwapBuffers */
  1092.    bool need_flush_throttle;
  1093.    /** @} */
  1094.  
  1095.    GLuint stats_wm;
  1096.  
  1097.    /**
  1098.     * drirc options:
  1099.     * @{
  1100.     */
  1101.    bool no_rast;
  1102.    bool always_flush_batch;
  1103.    bool always_flush_cache;
  1104.    bool disable_throttling;
  1105.    bool precompile;
  1106.  
  1107.    driOptionCache optionCache;
  1108.    /** @} */
  1109.  
  1110.    GLuint primitive; /**< Hardware primitive, such as _3DPRIM_TRILIST. */
  1111.  
  1112.    GLenum reduced_primitive;
  1113.  
  1114.    /**
  1115.     * Set if we're either a debug context or the INTEL_DEBUG=perf environment
  1116.     * variable is set, this is the flag indicating to do expensive work that
  1117.     * might lead to a perf_debug() call.
  1118.     */
  1119.    bool perf_debug;
  1120.  
  1121.    uint32_t max_gtt_map_object_size;
  1122.  
  1123.    int gen;
  1124.    int gt;
  1125.  
  1126.    bool is_g4x;
  1127.    bool is_baytrail;
  1128.    bool is_haswell;
  1129.    bool is_cherryview;
  1130.  
  1131.    bool has_hiz;
  1132.    bool has_separate_stencil;
  1133.    bool must_use_separate_stencil;
  1134.    bool has_llc;
  1135.    bool has_swizzling;
  1136.    bool has_surface_tile_offset;
  1137.    bool has_compr4;
  1138.    bool has_negative_rhw_bug;
  1139.    bool has_pln;
  1140.    bool no_simd8;
  1141.    bool use_rep_send;
  1142.    bool scalar_vs;
  1143.  
  1144.    /**
  1145.     * Some versions of Gen hardware don't do centroid interpolation correctly
  1146.     * on unlit pixels, causing incorrect values for derivatives near triangle
  1147.     * edges.  Enabling this flag causes the fragment shader to use
  1148.     * non-centroid interpolation for unlit pixels, at the expense of two extra
  1149.     * fragment shader instructions.
  1150.     */
  1151.    bool needs_unlit_centroid_workaround;
  1152.  
  1153.    GLuint NewGLState;
  1154.    struct {
  1155.       struct brw_state_flags pipelines[BRW_NUM_PIPELINES];
  1156.    } state;
  1157.  
  1158.    enum brw_pipeline last_pipeline;
  1159.  
  1160.    struct brw_cache cache;
  1161.  
  1162.    /** IDs for meta stencil blit shader programs. */
  1163.    unsigned meta_stencil_blit_programs[2];
  1164.  
  1165.    /* Whether a meta-operation is in progress. */
  1166.    bool meta_in_progress;
  1167.  
  1168.    /* Whether the last depth/stencil packets were both NULL. */
  1169.    bool no_depth_or_stencil;
  1170.  
  1171.    /* The last PMA stall bits programmed. */
  1172.    uint32_t pma_stall_bits;
  1173.  
  1174.    struct {
  1175.       /** The value of gl_BaseVertex for the current _mesa_prim. */
  1176.       int gl_basevertex;
  1177.  
  1178.       /**
  1179.        * Buffer and offset used for GL_ARB_shader_draw_parameters
  1180.        * (for now, only gl_BaseVertex).
  1181.        */
  1182.       drm_intel_bo *draw_params_bo;
  1183.       uint32_t draw_params_offset;
  1184.    } draw;
  1185.  
  1186.    struct {
  1187.       struct brw_vertex_element inputs[VERT_ATTRIB_MAX];
  1188.       struct brw_vertex_buffer buffers[VERT_ATTRIB_MAX];
  1189.  
  1190.       struct brw_vertex_element *enabled[VERT_ATTRIB_MAX];
  1191.       GLuint nr_enabled;
  1192.       GLuint nr_buffers;
  1193.  
  1194.       /* Summary of size and varying of active arrays, so we can check
  1195.        * for changes to this state:
  1196.        */
  1197.       unsigned int min_index, max_index;
  1198.  
  1199.       /* Offset from start of vertex buffer so we can avoid redefining
  1200.        * the same VB packed over and over again.
  1201.        */
  1202.       unsigned int start_vertex_bias;
  1203.  
  1204.       /**
  1205.        * Certain vertex attribute formats aren't natively handled by the
  1206.        * hardware and require special VS code to fix up their values.
  1207.        *
  1208.        * These bitfields indicate which workarounds are needed.
  1209.        */
  1210.       uint8_t attrib_wa_flags[VERT_ATTRIB_MAX];
  1211.    } vb;
  1212.  
  1213.    struct {
  1214.       /**
  1215.        * Index buffer for this draw_prims call.
  1216.        *
  1217.        * Updates are signaled by BRW_NEW_INDICES.
  1218.        */
  1219.       const struct _mesa_index_buffer *ib;
  1220.  
  1221.       /* Updates are signaled by BRW_NEW_INDEX_BUFFER. */
  1222.       drm_intel_bo *bo;
  1223.       GLuint type;
  1224.  
  1225.       /* Offset to index buffer index to use in CMD_3D_PRIM so that we can
  1226.        * avoid re-uploading the IB packet over and over if we're actually
  1227.        * referencing the same index buffer.
  1228.        */
  1229.       unsigned int start_vertex_offset;
  1230.    } ib;
  1231.  
  1232.    /* Active vertex program:
  1233.     */
  1234.    const struct gl_vertex_program *vertex_program;
  1235.    const struct gl_geometry_program *geometry_program;
  1236.    const struct gl_fragment_program *fragment_program;
  1237.    const struct gl_compute_program *compute_program;
  1238.  
  1239.    /**
  1240.     * Number of samples in ctx->DrawBuffer, updated by BRW_NEW_NUM_SAMPLES so
  1241.     * that we don't have to reemit that state every time we change FBOs.
  1242.     */
  1243.    int num_samples;
  1244.  
  1245.    /**
  1246.     * Platform specific constants containing the maximum number of threads
  1247.     * for each pipeline stage.
  1248.     */
  1249.    int max_vs_threads;
  1250.    int max_hs_threads;
  1251.    int max_ds_threads;
  1252.    int max_gs_threads;
  1253.    int max_wm_threads;
  1254.    int max_cs_threads;
  1255.  
  1256.    /* BRW_NEW_URB_ALLOCATIONS:
  1257.     */
  1258.    struct {
  1259.       GLuint vsize;             /* vertex size plus header in urb registers */
  1260.       GLuint gsize;             /* GS output size in urb registers */
  1261.       GLuint csize;             /* constant buffer size in urb registers */
  1262.       GLuint sfsize;            /* setup data size in urb registers */
  1263.  
  1264.       bool constrained;
  1265.  
  1266.       GLuint min_vs_entries;    /* Minimum number of VS entries */
  1267.       GLuint max_vs_entries;    /* Maximum number of VS entries */
  1268.       GLuint max_hs_entries;    /* Maximum number of HS entries */
  1269.       GLuint max_ds_entries;    /* Maximum number of DS entries */
  1270.       GLuint max_gs_entries;    /* Maximum number of GS entries */
  1271.  
  1272.       GLuint nr_vs_entries;
  1273.       GLuint nr_gs_entries;
  1274.       GLuint nr_clip_entries;
  1275.       GLuint nr_sf_entries;
  1276.       GLuint nr_cs_entries;
  1277.  
  1278.       GLuint vs_start;
  1279.       GLuint gs_start;
  1280.       GLuint clip_start;
  1281.       GLuint sf_start;
  1282.       GLuint cs_start;
  1283.       GLuint size; /* Hardware URB size, in KB. */
  1284.  
  1285.       /* True if the most recently sent _3DSTATE_URB message allocated
  1286.        * URB space for the GS.
  1287.        */
  1288.       bool gs_present;
  1289.    } urb;
  1290.  
  1291.  
  1292.    /* BRW_NEW_CURBE_OFFSETS:
  1293.     */
  1294.    struct {
  1295.       GLuint wm_start;  /**< pos of first wm const in CURBE buffer */
  1296.       GLuint wm_size;   /**< number of float[4] consts, multiple of 16 */
  1297.       GLuint clip_start;
  1298.       GLuint clip_size;
  1299.       GLuint vs_start;
  1300.       GLuint vs_size;
  1301.       GLuint total_size;
  1302.  
  1303.       /**
  1304.        * Pointer to the (intel_upload.c-generated) BO containing the uniforms
  1305.        * for upload to the CURBE.
  1306.        */
  1307.       drm_intel_bo *curbe_bo;
  1308.       /** Offset within curbe_bo of space for current curbe entry */
  1309.       GLuint curbe_offset;
  1310.    } curbe;
  1311.  
  1312.    /**
  1313.     * Layout of vertex data exiting the vertex shader.
  1314.     *
  1315.     * BRW_NEW_VUE_MAP_VS is flagged when this VUE map changes.
  1316.     */
  1317.    struct brw_vue_map vue_map_vs;
  1318.  
  1319.    /**
  1320.     * Layout of vertex data exiting the geometry portion of the pipleine.
  1321.     * This comes from the geometry shader if one exists, otherwise from the
  1322.     * vertex shader.
  1323.     *
  1324.     * BRW_NEW_VUE_MAP_GEOM_OUT is flagged when the VUE map changes.
  1325.     */
  1326.    struct brw_vue_map vue_map_geom_out;
  1327.  
  1328.    struct {
  1329.       struct brw_stage_state base;
  1330.       struct brw_vs_prog_data *prog_data;
  1331.    } vs;
  1332.  
  1333.    struct {
  1334.       struct brw_stage_state base;
  1335.       struct brw_gs_prog_data *prog_data;
  1336.  
  1337.       /**
  1338.        * True if the 3DSTATE_GS command most recently emitted to the 3D
  1339.        * pipeline enabled the GS; false otherwise.
  1340.        */
  1341.       bool enabled;
  1342.    } gs;
  1343.  
  1344.    struct {
  1345.       struct brw_ff_gs_prog_data *prog_data;
  1346.  
  1347.       bool prog_active;
  1348.       /** Offset in the program cache to the CLIP program pre-gen6 */
  1349.       uint32_t prog_offset;
  1350.       uint32_t state_offset;
  1351.  
  1352.       uint32_t bind_bo_offset;
  1353.       /**
  1354.        * Surface offsets for the binding table. We only need surfaces to
  1355.        * implement transform feedback so BRW_MAX_SOL_BINDINGS is all that we
  1356.        * need in this case.
  1357.        */
  1358.       uint32_t surf_offset[BRW_MAX_SOL_BINDINGS];
  1359.    } ff_gs;
  1360.  
  1361.    struct {
  1362.       struct brw_clip_prog_data *prog_data;
  1363.  
  1364.       /** Offset in the program cache to the CLIP program pre-gen6 */
  1365.       uint32_t prog_offset;
  1366.  
  1367.       /* Offset in the batch to the CLIP state on pre-gen6. */
  1368.       uint32_t state_offset;
  1369.  
  1370.       /* As of gen6, this is the offset in the batch to the CLIP VP,
  1371.        * instead of vp_bo.
  1372.        */
  1373.       uint32_t vp_offset;
  1374.    } clip;
  1375.  
  1376.  
  1377.    struct {
  1378.       struct brw_sf_prog_data *prog_data;
  1379.  
  1380.       /** Offset in the program cache to the CLIP program pre-gen6 */
  1381.       uint32_t prog_offset;
  1382.       uint32_t state_offset;
  1383.       uint32_t vp_offset;
  1384.       bool viewport_transform_enable;
  1385.    } sf;
  1386.  
  1387.    struct {
  1388.       struct brw_stage_state base;
  1389.       struct brw_wm_prog_data *prog_data;
  1390.  
  1391.       GLuint render_surf;
  1392.  
  1393.       /**
  1394.        * Buffer object used in place of multisampled null render targets on
  1395.        * Gen6.  See brw_emit_null_surface_state().
  1396.        */
  1397.       drm_intel_bo *multisampled_null_render_target_bo;
  1398.       uint32_t fast_clear_op;
  1399.    } wm;
  1400.  
  1401.    struct {
  1402.       struct brw_stage_state base;
  1403.       struct brw_cs_prog_data *prog_data;
  1404.    } cs;
  1405.  
  1406.    struct {
  1407.       uint32_t state_offset;
  1408.       uint32_t blend_state_offset;
  1409.       uint32_t depth_stencil_state_offset;
  1410.       uint32_t vp_offset;
  1411.    } cc;
  1412.  
  1413.    struct {
  1414.       struct brw_query_object *obj;
  1415.       bool begin_emitted;
  1416.    } query;
  1417.  
  1418.    struct {
  1419.       enum brw_predicate_state state;
  1420.       bool supported;
  1421.    } predicate;
  1422.  
  1423.    struct {
  1424.       /** A map from pipeline statistics counter IDs to MMIO addresses. */
  1425.       const int *statistics_registers;
  1426.  
  1427.       /** The number of active monitors using OA counters. */
  1428.       unsigned oa_users;
  1429.  
  1430.       /**
  1431.        * A buffer object storing OA counter snapshots taken at the start and
  1432.        * end of each batch (creating "bookends" around the batch).
  1433.        */
  1434.       drm_intel_bo *bookend_bo;
  1435.  
  1436.       /** The number of snapshots written to bookend_bo. */
  1437.       int bookend_snapshots;
  1438.  
  1439.       /**
  1440.        * An array of monitors whose results haven't yet been assembled based on
  1441.        * the data in buffer objects.
  1442.        *
  1443.        * These may be active, or have already ended.  However, the results
  1444.        * have not been requested.
  1445.        */
  1446.       struct brw_perf_monitor_object **unresolved;
  1447.       int unresolved_elements;
  1448.       int unresolved_array_size;
  1449.  
  1450.       /**
  1451.        * Mapping from a uint32_t offset within an OA snapshot to the ID of
  1452.        * the counter which MI_REPORT_PERF_COUNT stores there.
  1453.        */
  1454.       const int *oa_snapshot_layout;
  1455.  
  1456.       /** Number of 32-bit entries in a hardware counter snapshot. */
  1457.       int entries_per_oa_snapshot;
  1458.    } perfmon;
  1459.  
  1460.    int num_atoms[BRW_NUM_PIPELINES];
  1461.    const struct brw_tracked_state render_atoms[57];
  1462.    const struct brw_tracked_state compute_atoms[3];
  1463.  
  1464.    /* If (INTEL_DEBUG & DEBUG_BATCH) */
  1465.    struct {
  1466.       uint32_t offset;
  1467.       uint32_t size;
  1468.       enum aub_state_struct_type type;
  1469.       int index;
  1470.    } *state_batch_list;
  1471.    int state_batch_count;
  1472.  
  1473.    uint32_t render_target_format[MESA_FORMAT_COUNT];
  1474.    bool format_supported_as_render_target[MESA_FORMAT_COUNT];
  1475.  
  1476.    /* Interpolation modes, one byte per vue slot.
  1477.     * Used Gen4/5 by the clip|sf|wm stages. Ignored on Gen6+.
  1478.     */
  1479.    struct interpolation_mode_map interpolation_mode;
  1480.  
  1481.    /* PrimitiveRestart */
  1482.    struct {
  1483.       bool in_progress;
  1484.       bool enable_cut_index;
  1485.    } prim_restart;
  1486.  
  1487.    /** Computed depth/stencil/hiz state from the current attached
  1488.     * renderbuffers, valid only during the drawing state upload loop after
  1489.     * brw_workaround_depthstencil_alignment().
  1490.     */
  1491.    struct {
  1492.       struct intel_mipmap_tree *depth_mt;
  1493.       struct intel_mipmap_tree *stencil_mt;
  1494.  
  1495.       /* Inter-tile (page-aligned) byte offsets. */
  1496.       uint32_t depth_offset, hiz_offset, stencil_offset;
  1497.       /* Intra-tile x,y offsets for drawing to depth/stencil/hiz */
  1498.       uint32_t tile_x, tile_y;
  1499.    } depthstencil;
  1500.  
  1501.    uint32_t num_instances;
  1502.    int basevertex;
  1503.  
  1504.    struct {
  1505.       drm_intel_bo *bo;
  1506.       const char **names;
  1507.       int *ids;
  1508.       enum shader_time_shader_type *types;
  1509.       uint64_t *cumulative;
  1510.       int num_entries;
  1511.       int max_entries;
  1512.       double report_time;
  1513.    } shader_time;
  1514.  
  1515.    struct brw_fast_clear_state *fast_clear_state;
  1516.  
  1517.    __DRIcontext *driContext;
  1518.    struct intel_screen *intelScreen;
  1519. };
  1520.  
  1521. /*======================================================================
  1522.  * brw_vtbl.c
  1523.  */
  1524. void brwInitVtbl( struct brw_context *brw );
  1525.  
  1526. /* brw_clear.c */
  1527. extern void intelInitClearFuncs(struct dd_function_table *functions);
  1528.  
  1529. /*======================================================================
  1530.  * brw_context.c
  1531.  */
  1532. extern const char *const brw_vendor_string;
  1533.  
  1534. extern const char *brw_get_renderer_string(unsigned deviceID);
  1535.  
  1536. enum {
  1537.    DRI_CONF_BO_REUSE_DISABLED,
  1538.    DRI_CONF_BO_REUSE_ALL
  1539. };
  1540.  
  1541. void intel_update_renderbuffers(__DRIcontext *context,
  1542.                                 __DRIdrawable *drawable);
  1543. void intel_prepare_render(struct brw_context *brw);
  1544.  
  1545. void intel_resolve_for_dri2_flush(struct brw_context *brw,
  1546.                                   __DRIdrawable *drawable);
  1547.  
  1548. GLboolean brwCreateContext(gl_api api,
  1549.                       const struct gl_config *mesaVis,
  1550.                       __DRIcontext *driContextPriv,
  1551.                       unsigned major_version,
  1552.                       unsigned minor_version,
  1553.                       uint32_t flags,
  1554.                       bool notify_reset,
  1555.                       unsigned *error,
  1556.                       void *sharedContextPrivate);
  1557.  
  1558. /*======================================================================
  1559.  * brw_misc_state.c
  1560.  */
  1561. GLuint brw_get_rb_for_slice(struct brw_context *brw,
  1562.                             struct intel_mipmap_tree *mt,
  1563.                             unsigned level, unsigned layer, bool flat);
  1564.  
  1565. void brw_meta_updownsample(struct brw_context *brw,
  1566.                            struct intel_mipmap_tree *src,
  1567.                            struct intel_mipmap_tree *dst);
  1568.  
  1569. void brw_meta_fbo_stencil_blit(struct brw_context *brw,
  1570.                                struct gl_framebuffer *read_fb,
  1571.                                struct gl_framebuffer *draw_fb,
  1572.                                GLfloat srcX0, GLfloat srcY0,
  1573.                                GLfloat srcX1, GLfloat srcY1,
  1574.                                GLfloat dstX0, GLfloat dstY0,
  1575.                                GLfloat dstX1, GLfloat dstY1);
  1576.  
  1577. void brw_meta_stencil_updownsample(struct brw_context *brw,
  1578.                                    struct intel_mipmap_tree *src,
  1579.                                    struct intel_mipmap_tree *dst);
  1580.  
  1581. bool brw_meta_fast_clear(struct brw_context *brw,
  1582.                          struct gl_framebuffer *fb,
  1583.                          GLbitfield mask,
  1584.                          bool partial_clear);
  1585.  
  1586. void
  1587. brw_meta_resolve_color(struct brw_context *brw,
  1588.                        struct intel_mipmap_tree *mt);
  1589. void
  1590. brw_meta_fast_clear_free(struct brw_context *brw);
  1591.  
  1592.  
  1593. /*======================================================================
  1594.  * brw_misc_state.c
  1595.  */
  1596. void brw_get_depthstencil_tile_masks(struct intel_mipmap_tree *depth_mt,
  1597.                                      uint32_t depth_level,
  1598.                                      uint32_t depth_layer,
  1599.                                      struct intel_mipmap_tree *stencil_mt,
  1600.                                      uint32_t *out_tile_mask_x,
  1601.                                      uint32_t *out_tile_mask_y);
  1602. void brw_workaround_depthstencil_alignment(struct brw_context *brw,
  1603.                                            GLbitfield clear_mask);
  1604.  
  1605. /* brw_object_purgeable.c */
  1606. void brw_init_object_purgeable_functions(struct dd_function_table *functions);
  1607.  
  1608. /*======================================================================
  1609.  * brw_queryobj.c
  1610.  */
  1611. void brw_init_common_queryobj_functions(struct dd_function_table *functions);
  1612. void gen4_init_queryobj_functions(struct dd_function_table *functions);
  1613. void brw_emit_query_begin(struct brw_context *brw);
  1614. void brw_emit_query_end(struct brw_context *brw);
  1615.  
  1616. /** gen6_queryobj.c */
  1617. void gen6_init_queryobj_functions(struct dd_function_table *functions);
  1618. void brw_write_timestamp(struct brw_context *brw, drm_intel_bo *bo, int idx);
  1619. void brw_write_depth_count(struct brw_context *brw, drm_intel_bo *bo, int idx);
  1620. void brw_store_register_mem64(struct brw_context *brw,
  1621.                               drm_intel_bo *bo, uint32_t reg, int idx);
  1622.  
  1623. /** brw_conditional_render.c */
  1624. void brw_init_conditional_render_functions(struct dd_function_table *functions);
  1625. bool brw_check_conditional_render(struct brw_context *brw);
  1626.  
  1627. /** intel_batchbuffer.c */
  1628. void brw_load_register_mem(struct brw_context *brw,
  1629.                            uint32_t reg,
  1630.                            drm_intel_bo *bo,
  1631.                            uint32_t read_domains, uint32_t write_domain,
  1632.                            uint32_t offset);
  1633. void brw_load_register_mem64(struct brw_context *brw,
  1634.                              uint32_t reg,
  1635.                              drm_intel_bo *bo,
  1636.                              uint32_t read_domains, uint32_t write_domain,
  1637.                              uint32_t offset);
  1638.  
  1639. /*======================================================================
  1640.  * brw_state_dump.c
  1641.  */
  1642. void brw_debug_batch(struct brw_context *brw);
  1643. void brw_annotate_aub(struct brw_context *brw);
  1644.  
  1645. /*======================================================================
  1646.  * brw_tex.c
  1647.  */
  1648. void brw_validate_textures( struct brw_context *brw );
  1649.  
  1650.  
  1651. /*======================================================================
  1652.  * brw_program.c
  1653.  */
  1654. void brwInitFragProgFuncs( struct dd_function_table *functions );
  1655.  
  1656. int brw_get_scratch_size(int size);
  1657. void brw_get_scratch_bo(struct brw_context *brw,
  1658.                         drm_intel_bo **scratch_bo, int size);
  1659. void brw_init_shader_time(struct brw_context *brw);
  1660. int brw_get_shader_time_index(struct brw_context *brw,
  1661.                               struct gl_shader_program *shader_prog,
  1662.                               struct gl_program *prog,
  1663.                               enum shader_time_shader_type type);
  1664. void brw_collect_and_report_shader_time(struct brw_context *brw);
  1665. void brw_destroy_shader_time(struct brw_context *brw);
  1666.  
  1667. /* brw_urb.c
  1668.  */
  1669. void brw_upload_urb_fence(struct brw_context *brw);
  1670.  
  1671. /* brw_curbe.c
  1672.  */
  1673. void brw_upload_cs_urb_state(struct brw_context *brw);
  1674.  
  1675. /* brw_fs_reg_allocate.cpp
  1676.  */
  1677. void brw_fs_alloc_reg_sets(struct brw_compiler *compiler);
  1678.  
  1679. /* brw_vec4_reg_allocate.cpp */
  1680. void brw_vec4_alloc_reg_set(struct brw_compiler *compiler);
  1681.  
  1682. /* brw_disasm.c */
  1683. int brw_disassemble_inst(FILE *file, const struct brw_device_info *devinfo,
  1684.                          struct brw_inst *inst, bool is_compacted);
  1685.  
  1686. /* brw_vs.c */
  1687. gl_clip_plane *brw_select_clip_planes(struct gl_context *ctx);
  1688.  
  1689. /* brw_draw_upload.c */
  1690. unsigned brw_get_vertex_surface_type(struct brw_context *brw,
  1691.                                      const struct gl_client_array *glarray);
  1692.  
  1693. static inline unsigned
  1694. brw_get_index_type(GLenum type)
  1695. {
  1696.    assert((type == GL_UNSIGNED_BYTE)
  1697.           || (type == GL_UNSIGNED_SHORT)
  1698.           || (type == GL_UNSIGNED_INT));
  1699.  
  1700.    /* The possible values for type are GL_UNSIGNED_BYTE (0x1401),
  1701.     * GL_UNSIGNED_SHORT (0x1403), and GL_UNSIGNED_INT (0x1405) which we want
  1702.     * to map to scale factors of 0, 1, and 2, respectively.  These scale
  1703.     * factors are then left-shfited by 8 to be in the correct position in the
  1704.     * CMD_INDEX_BUFFER packet.
  1705.     *
  1706.     * Subtracting 0x1401 gives 0, 2, and 4.  Shifting left by 7 afterwards
  1707.     * gives 0x00000000, 0x00000100, and 0x00000200.  These just happen to be
  1708.     * the values the need to be written in the CMD_INDEX_BUFFER packet.
  1709.     */
  1710.    return (type - 0x1401) << 7;
  1711. }
  1712.  
  1713. void brw_prepare_vertices(struct brw_context *brw);
  1714.  
  1715. /* brw_wm_surface_state.c */
  1716. void brw_init_surface_formats(struct brw_context *brw);
  1717. void brw_create_constant_surface(struct brw_context *brw,
  1718.                                  drm_intel_bo *bo,
  1719.                                  uint32_t offset,
  1720.                                  uint32_t size,
  1721.                                  uint32_t *out_offset,
  1722.                                  bool dword_pitch);
  1723. void brw_update_buffer_texture_surface(struct gl_context *ctx,
  1724.                                        unsigned unit,
  1725.                                        uint32_t *surf_offset);
  1726. void
  1727. brw_update_sol_surface(struct brw_context *brw,
  1728.                        struct gl_buffer_object *buffer_obj,
  1729.                        uint32_t *out_offset, unsigned num_vector_components,
  1730.                        unsigned stride_dwords, unsigned offset_dwords);
  1731. void brw_upload_ubo_surfaces(struct brw_context *brw,
  1732.                              struct gl_shader *shader,
  1733.                              struct brw_stage_state *stage_state,
  1734.                              struct brw_stage_prog_data *prog_data,
  1735.                              bool dword_pitch);
  1736. void brw_upload_abo_surfaces(struct brw_context *brw,
  1737.                              struct gl_shader_program *prog,
  1738.                              struct brw_stage_state *stage_state,
  1739.                              struct brw_stage_prog_data *prog_data);
  1740.  
  1741. /* brw_surface_formats.c */
  1742. bool brw_render_target_supported(struct brw_context *brw,
  1743.                                  struct gl_renderbuffer *rb);
  1744. uint32_t brw_depth_format(struct brw_context *brw, mesa_format format);
  1745.  
  1746. /* brw_performance_monitor.c */
  1747. void brw_init_performance_monitors(struct brw_context *brw);
  1748. void brw_dump_perf_monitors(struct brw_context *brw);
  1749. void brw_perf_monitor_new_batch(struct brw_context *brw);
  1750. void brw_perf_monitor_finish_batch(struct brw_context *brw);
  1751.  
  1752. /* intel_buffer_objects.c */
  1753. int brw_bo_map(struct brw_context *brw, drm_intel_bo *bo, int write_enable,
  1754.                const char *bo_name);
  1755. int brw_bo_map_gtt(struct brw_context *brw, drm_intel_bo *bo,
  1756.                    const char *bo_name);
  1757.  
  1758. /* intel_extensions.c */
  1759. extern void intelInitExtensions(struct gl_context *ctx);
  1760.  
  1761. /* intel_state.c */
  1762. extern int intel_translate_shadow_compare_func(GLenum func);
  1763. extern int intel_translate_compare_func(GLenum func);
  1764. extern int intel_translate_stencil_op(GLenum op);
  1765. extern int intel_translate_logic_op(GLenum opcode);
  1766.  
  1767. /* intel_syncobj.c */
  1768. void intel_init_syncobj_functions(struct dd_function_table *functions);
  1769.  
  1770. /* gen6_sol.c */
  1771. struct gl_transform_feedback_object *
  1772. brw_new_transform_feedback(struct gl_context *ctx, GLuint name);
  1773. void
  1774. brw_delete_transform_feedback(struct gl_context *ctx,
  1775.                               struct gl_transform_feedback_object *obj);
  1776. void
  1777. brw_begin_transform_feedback(struct gl_context *ctx, GLenum mode,
  1778.                              struct gl_transform_feedback_object *obj);
  1779. void
  1780. brw_end_transform_feedback(struct gl_context *ctx,
  1781.                            struct gl_transform_feedback_object *obj);
  1782. GLsizei
  1783. brw_get_transform_feedback_vertex_count(struct gl_context *ctx,
  1784.                                         struct gl_transform_feedback_object *obj,
  1785.                                         GLuint stream);
  1786.  
  1787. /* gen7_sol_state.c */
  1788. void
  1789. gen7_begin_transform_feedback(struct gl_context *ctx, GLenum mode,
  1790.                               struct gl_transform_feedback_object *obj);
  1791. void
  1792. gen7_end_transform_feedback(struct gl_context *ctx,
  1793.                             struct gl_transform_feedback_object *obj);
  1794. void
  1795. gen7_pause_transform_feedback(struct gl_context *ctx,
  1796.                               struct gl_transform_feedback_object *obj);
  1797. void
  1798. gen7_resume_transform_feedback(struct gl_context *ctx,
  1799.                                struct gl_transform_feedback_object *obj);
  1800.  
  1801. /* brw_blorp_blit.cpp */
  1802. GLbitfield
  1803. brw_blorp_framebuffer(struct brw_context *brw,
  1804.                       struct gl_framebuffer *readFb,
  1805.                       struct gl_framebuffer *drawFb,
  1806.                       GLint srcX0, GLint srcY0, GLint srcX1, GLint srcY1,
  1807.                       GLint dstX0, GLint dstY0, GLint dstX1, GLint dstY1,
  1808.                       GLbitfield mask, GLenum filter);
  1809.  
  1810. bool
  1811. brw_blorp_copytexsubimage(struct brw_context *brw,
  1812.                           struct gl_renderbuffer *src_rb,
  1813.                           struct gl_texture_image *dst_image,
  1814.                           int slice,
  1815.                           int srcX0, int srcY0,
  1816.                           int dstX0, int dstY0,
  1817.                           int width, int height);
  1818.  
  1819. /* gen6_multisample_state.c */
  1820. unsigned
  1821. gen6_determine_sample_mask(struct brw_context *brw);
  1822.  
  1823. void
  1824. gen6_emit_3dstate_multisample(struct brw_context *brw,
  1825.                               unsigned num_samples);
  1826. void
  1827. gen6_emit_3dstate_sample_mask(struct brw_context *brw, unsigned mask);
  1828. void
  1829. gen6_get_sample_position(struct gl_context *ctx,
  1830.                          struct gl_framebuffer *fb,
  1831.                          GLuint index,
  1832.                          GLfloat *result);
  1833. void
  1834. gen6_set_sample_maps(struct gl_context *ctx);
  1835.  
  1836. /* gen8_multisample_state.c */
  1837. void gen8_emit_3dstate_multisample(struct brw_context *brw, unsigned num_samp);
  1838. void gen8_emit_3dstate_sample_pattern(struct brw_context *brw);
  1839.  
  1840. /* gen7_urb.c */
  1841. void
  1842. gen7_emit_push_constant_state(struct brw_context *brw, unsigned vs_size,
  1843.                               unsigned gs_size, unsigned fs_size);
  1844.  
  1845. void
  1846. gen7_emit_urb_state(struct brw_context *brw,
  1847.                     unsigned nr_vs_entries, unsigned vs_size,
  1848.                     unsigned vs_start, unsigned nr_gs_entries,
  1849.                     unsigned gs_size, unsigned gs_start);
  1850.  
  1851.  
  1852. /* brw_reset.c */
  1853. extern GLenum
  1854. brw_get_graphics_reset_status(struct gl_context *ctx);
  1855.  
  1856. /* brw_compute.c */
  1857. extern void
  1858. brw_init_compute_functions(struct dd_function_table *functions);
  1859.  
  1860. /*======================================================================
  1861.  * Inline conversion functions.  These are better-typed than the
  1862.  * macros used previously:
  1863.  */
  1864. static inline struct brw_context *
  1865. brw_context( struct gl_context *ctx )
  1866. {
  1867.    return (struct brw_context *)ctx;
  1868. }
  1869.  
  1870. static inline struct brw_vertex_program *
  1871. brw_vertex_program(struct gl_vertex_program *p)
  1872. {
  1873.    return (struct brw_vertex_program *) p;
  1874. }
  1875.  
  1876. static inline const struct brw_vertex_program *
  1877. brw_vertex_program_const(const struct gl_vertex_program *p)
  1878. {
  1879.    return (const struct brw_vertex_program *) p;
  1880. }
  1881.  
  1882. static inline struct brw_geometry_program *
  1883. brw_geometry_program(struct gl_geometry_program *p)
  1884. {
  1885.    return (struct brw_geometry_program *) p;
  1886. }
  1887.  
  1888. static inline struct brw_fragment_program *
  1889. brw_fragment_program(struct gl_fragment_program *p)
  1890. {
  1891.    return (struct brw_fragment_program *) p;
  1892. }
  1893.  
  1894. static inline const struct brw_fragment_program *
  1895. brw_fragment_program_const(const struct gl_fragment_program *p)
  1896. {
  1897.    return (const struct brw_fragment_program *) p;
  1898. }
  1899.  
  1900. static inline struct brw_compute_program *
  1901. brw_compute_program(struct gl_compute_program *p)
  1902. {
  1903.    return (struct brw_compute_program *) p;
  1904. }
  1905.  
  1906. /**
  1907.  * Pre-gen6, the register file of the EUs was shared between threads,
  1908.  * and each thread used some subset allocated on a 16-register block
  1909.  * granularity.  The unit states wanted these block counts.
  1910.  */
  1911. static inline int
  1912. brw_register_blocks(int reg_count)
  1913. {
  1914.    return ALIGN(reg_count, 16) / 16 - 1;
  1915. }
  1916.  
  1917. static inline uint32_t
  1918. brw_program_reloc(struct brw_context *brw, uint32_t state_offset,
  1919.                   uint32_t prog_offset)
  1920. {
  1921.    if (brw->gen >= 5) {
  1922.       /* Using state base address. */
  1923.       return prog_offset;
  1924.    }
  1925.  
  1926.    drm_intel_bo_emit_reloc(brw->batch.bo,
  1927.                            state_offset,
  1928.                            brw->cache.bo,
  1929.                            prog_offset,
  1930.                            I915_GEM_DOMAIN_INSTRUCTION, 0);
  1931.  
  1932.    return brw->cache.bo->offset64 + prog_offset;
  1933. }
  1934.  
  1935. bool brw_do_cubemap_normalize(struct exec_list *instructions);
  1936. bool brw_lower_texture_gradients(struct brw_context *brw,
  1937.                                  struct exec_list *instructions);
  1938. bool brw_do_lower_unnormalized_offset(struct exec_list *instructions);
  1939.  
  1940. struct opcode_desc {
  1941.     char    *name;
  1942.     int     nsrc;
  1943.     int     ndst;
  1944. };
  1945.  
  1946. extern const struct opcode_desc opcode_descs[128];
  1947. extern const char * const conditional_modifier[16];
  1948.  
  1949. void
  1950. brw_emit_depthbuffer(struct brw_context *brw);
  1951.  
  1952. void
  1953. brw_emit_depth_stencil_hiz(struct brw_context *brw,
  1954.                            struct intel_mipmap_tree *depth_mt,
  1955.                            uint32_t depth_offset, uint32_t depthbuffer_format,
  1956.                            uint32_t depth_surface_type,
  1957.                            struct intel_mipmap_tree *stencil_mt,
  1958.                            bool hiz, bool separate_stencil,
  1959.                            uint32_t width, uint32_t height,
  1960.                            uint32_t tile_x, uint32_t tile_y);
  1961.  
  1962. void
  1963. gen6_emit_depth_stencil_hiz(struct brw_context *brw,
  1964.                             struct intel_mipmap_tree *depth_mt,
  1965.                             uint32_t depth_offset, uint32_t depthbuffer_format,
  1966.                             uint32_t depth_surface_type,
  1967.                             struct intel_mipmap_tree *stencil_mt,
  1968.                             bool hiz, bool separate_stencil,
  1969.                             uint32_t width, uint32_t height,
  1970.                             uint32_t tile_x, uint32_t tile_y);
  1971.  
  1972. void
  1973. gen7_emit_depth_stencil_hiz(struct brw_context *brw,
  1974.                             struct intel_mipmap_tree *depth_mt,
  1975.                             uint32_t depth_offset, uint32_t depthbuffer_format,
  1976.                             uint32_t depth_surface_type,
  1977.                             struct intel_mipmap_tree *stencil_mt,
  1978.                             bool hiz, bool separate_stencil,
  1979.                             uint32_t width, uint32_t height,
  1980.                             uint32_t tile_x, uint32_t tile_y);
  1981. void
  1982. gen8_emit_depth_stencil_hiz(struct brw_context *brw,
  1983.                             struct intel_mipmap_tree *depth_mt,
  1984.                             uint32_t depth_offset, uint32_t depthbuffer_format,
  1985.                             uint32_t depth_surface_type,
  1986.                             struct intel_mipmap_tree *stencil_mt,
  1987.                             bool hiz, bool separate_stencil,
  1988.                             uint32_t width, uint32_t height,
  1989.                             uint32_t tile_x, uint32_t tile_y);
  1990.  
  1991. void gen8_hiz_exec(struct brw_context *brw, struct intel_mipmap_tree *mt,
  1992.                    unsigned int level, unsigned int layer, enum gen6_hiz_op op);
  1993.  
  1994. uint32_t get_hw_prim_for_gl_prim(int mode);
  1995.  
  1996. void
  1997. brw_setup_vue_key_clip_info(struct brw_context *brw,
  1998.                             struct brw_vue_prog_key *key,
  1999.                             bool program_uses_clip_distance);
  2000.  
  2001. void
  2002. gen6_upload_push_constants(struct brw_context *brw,
  2003.                            const struct gl_program *prog,
  2004.                            const struct brw_stage_prog_data *prog_data,
  2005.                            struct brw_stage_state *stage_state,
  2006.                            enum aub_state_struct_type type);
  2007.  
  2008. #ifdef __cplusplus
  2009. }
  2010. #endif
  2011.  
  2012. #endif
  2013.