• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1 /*
2  * Copyright 2003 VMware, Inc.
3  * All Rights Reserved.
4  *
5  * Permission is hereby granted, free of charge, to any person obtaining a
6  * copy of this software and associated documentation files (the
7  * "Software"), to deal in the Software without restriction, including
8  * without limitation the rights to use, copy, modify, merge, publish,
9  * distribute, sublicense, and/or sell copies of the Software, and to
10  * permit persons to whom the Software is furnished to do so, subject to
11  * the following conditions:
12  *
13  * The above copyright notice and this permission notice (including the
14  * next paragraph) shall be included in all copies or substantial portions
15  * of the Software.
16  *
17  * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
18  * OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
19  * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
20  * IN NO EVENT SHALL VMWARE AND/OR ITS SUPPLIERS BE LIABLE FOR
21  * ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
22  * TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
23  * SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
24  */
25 
26 #ifndef _INTEL_INIT_H_
27 #define _INTEL_INIT_H_
28 
29 #include <stdbool.h>
30 #include <sys/time.h>
31 
32 #include <GL/internal/dri_interface.h>
33 
34 #include "isl/isl.h"
35 #include "dri_util.h"
36 #include "brw_bufmgr.h"
37 #include "dev/gen_device_info.h"
38 #include "drm-uapi/i915_drm.h"
39 #include "util/xmlconfig.h"
40 
41 #include "isl/isl.h"
42 
43 #ifdef __cplusplus
44 extern "C" {
45 #endif
46 
47 struct intel_screen
48 {
49    int deviceID;
50    struct gen_device_info devinfo;
51 
52    __DRIscreen *driScrnPriv;
53 
54    uint64_t max_gtt_map_object_size;
55 
56    /** Bytes of aperture usage beyond which execbuf is likely to fail. */
57    uint64_t aperture_threshold;
58 
59    /** DRM fd associated with this screen. Not owned by this object. Do not close. */
60    int fd;
61 
62    bool no_hw;
63    bool hw_has_swizzling;
64    bool has_exec_fence; /**< I915_PARAM_HAS_EXEC_FENCE */
65 
66    int hw_has_timestamp;
67 
68    struct isl_device isl_dev;
69 
70    /**
71     * Does the kernel support context reset notifications?
72     */
73    bool has_context_reset_notification;
74 
75    /**
76     * Does the kernel support features such as pipelined register access to
77     * specific registers?
78     */
79    unsigned kernel_features;
80 #define KERNEL_ALLOWS_SOL_OFFSET_WRITES             (1<<0)
81 #define KERNEL_ALLOWS_PREDICATE_WRITES              (1<<1)
82 #define KERNEL_ALLOWS_MI_MATH_AND_LRR               (1<<2)
83 #define KERNEL_ALLOWS_HSW_SCRATCH1_AND_ROW_CHICKEN3 (1<<3)
84 #define KERNEL_ALLOWS_COMPUTE_DISPATCH              (1<<4)
85 #define KERNEL_ALLOWS_EXEC_CAPTURE                  (1<<5)
86 #define KERNEL_ALLOWS_EXEC_BATCH_FIRST              (1<<6)
87 #define KERNEL_ALLOWS_CONTEXT_ISOLATION             (1<<7)
88 
89    struct brw_bufmgr *bufmgr;
90 
91    /**
92     * A unique ID for shader programs.
93     */
94    unsigned program_id;
95 
96    int winsys_msaa_samples_override;
97 
98    struct brw_compiler *compiler;
99 
100    /**
101    * Configuration cache with default values for all contexts
102    */
103    driOptionCache optionCache;
104 
105    /**
106     * Version of the command parser reported by the
107     * I915_PARAM_CMD_PARSER_VERSION parameter
108     */
109    int cmd_parser_version;
110 
111    /**
112     * Number of subslices reported by the I915_PARAM_SUBSLICE_TOTAL parameter
113     */
114    int subslice_total;
115 
116    /**
117     * Number of EUs reported by the I915_PARAM_EU_TOTAL parameter
118     */
119    int eu_total;
120 
121    bool mesa_format_supports_texture[MESA_FORMAT_COUNT];
122    bool mesa_format_supports_render[MESA_FORMAT_COUNT];
123    enum isl_format mesa_to_isl_render_format[MESA_FORMAT_COUNT];
124 
125    struct disk_cache *disk_cache;
126 };
127 
128 extern void intelDestroyContext(__DRIcontext * driContextPriv);
129 
130 extern GLboolean intelUnbindContext(__DRIcontext * driContextPriv);
131 
132 PUBLIC const __DRIextension **__driDriverGetExtensions_i965(void);
133 extern const __DRI2fenceExtension intelFenceExtension;
134 
135 extern GLboolean
136 intelMakeCurrent(__DRIcontext * driContextPriv,
137                  __DRIdrawable * driDrawPriv,
138                  __DRIdrawable * driReadPriv);
139 
140 double get_time(void);
141 
142 const int*
143 intel_supported_msaa_modes(const struct intel_screen  *screen);
144 
145 static inline bool
can_do_pipelined_register_writes(const struct intel_screen * screen)146 can_do_pipelined_register_writes(const struct intel_screen *screen)
147 {
148    return screen->kernel_features & KERNEL_ALLOWS_SOL_OFFSET_WRITES;
149 }
150 
151 static inline bool
can_do_hsw_l3_atomics(const struct intel_screen * screen)152 can_do_hsw_l3_atomics(const struct intel_screen *screen)
153 {
154    return screen->kernel_features & KERNEL_ALLOWS_HSW_SCRATCH1_AND_ROW_CHICKEN3;
155 }
156 
157 static inline bool
can_do_mi_math_and_lrr(const struct intel_screen * screen)158 can_do_mi_math_and_lrr(const struct intel_screen *screen)
159 {
160    return screen->kernel_features & KERNEL_ALLOWS_MI_MATH_AND_LRR;
161 }
162 
163 static inline bool
can_do_compute_dispatch(const struct intel_screen * screen)164 can_do_compute_dispatch(const struct intel_screen *screen)
165 {
166    return screen->kernel_features & KERNEL_ALLOWS_COMPUTE_DISPATCH;
167 }
168 
169 static inline bool
can_do_predicate_writes(const struct intel_screen * screen)170 can_do_predicate_writes(const struct intel_screen *screen)
171 {
172    return screen->kernel_features & KERNEL_ALLOWS_PREDICATE_WRITES;
173 }
174 
175 static inline bool
can_do_exec_capture(const struct intel_screen * screen)176 can_do_exec_capture(const struct intel_screen *screen)
177 {
178    return screen->kernel_features & KERNEL_ALLOWS_EXEC_CAPTURE;
179 }
180 
181 #ifdef __cplusplus
182 }
183 #endif
184 
185 #endif
186