iris/WIP: add broadwell support
[mesa.git] / src / gallium / drivers / iris / iris_context.c
1 /*
2 * Copyright © 2017 Intel Corporation
3 *
4 * Permission is hereby granted, free of charge, to any person obtaining a
5 * copy of this software and associated documentation files (the "Software"),
6 * to deal in the Software without restriction, including without limitation
7 * the rights to use, copy, modify, merge, publish, distribute, sublicense,
8 * and/or sell copies of the Software, and to permit persons to whom the
9 * Software is furnished to do so, subject to the following conditions:
10 *
11 * The above copyright notice and this permission notice shall be included
12 * in all copies or substantial portions of the Software.
13 *
14 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
15 * OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
16 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
17 * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
18 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
19 * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
20 * DEALINGS IN THE SOFTWARE.
21 */
22
23 #include <stdio.h>
24 #include <time.h>
25 #include "pipe/p_defines.h"
26 #include "pipe/p_state.h"
27 #include "util/ralloc.h"
28 #include "util/u_inlines.h"
29 #include "util/u_format.h"
30 #include "util/u_upload_mgr.h"
31 #include "i915_drm.h"
32 #include "iris_context.h"
33 #include "iris_resource.h"
34 #include "iris_screen.h"
35 #include "common/gen_sample_positions.h"
36
37 /**
38 * For debugging purposes, this returns a time in seconds.
39 */
40 double
41 get_time(void)
42 {
43 struct timespec tp;
44
45 clock_gettime(CLOCK_MONOTONIC, &tp);
46
47 return tp.tv_sec + tp.tv_nsec / 1000000000.0;
48 }
49
50 /**
51 * The pipe->set_debug_callback() driver hook.
52 */
53 static void
54 iris_set_debug_callback(struct pipe_context *ctx,
55 const struct pipe_debug_callback *cb)
56 {
57 struct iris_context *ice = (struct iris_context *)ctx;
58
59 if (cb)
60 ice->dbg = *cb;
61 else
62 memset(&ice->dbg, 0, sizeof(ice->dbg));
63 }
64
65 static void
66 iris_get_sample_position(struct pipe_context *ctx,
67 unsigned sample_count,
68 unsigned sample_index,
69 float *out_value)
70 {
71 union {
72 struct {
73 float x[16];
74 float y[16];
75 } a;
76 struct {
77 float _0XOffset, _1XOffset, _2XOffset, _3XOffset,
78 _4XOffset, _5XOffset, _6XOffset, _7XOffset,
79 _8XOffset, _9XOffset, _10XOffset, _11XOffset,
80 _12XOffset, _13XOffset, _14XOffset, _15XOffset;
81 float _0YOffset, _1YOffset, _2YOffset, _3YOffset,
82 _4YOffset, _5YOffset, _6YOffset, _7YOffset,
83 _8YOffset, _9YOffset, _10YOffset, _11YOffset,
84 _12YOffset, _13YOffset, _14YOffset, _15YOffset;
85 } v;
86 } u;
87 switch (sample_count) {
88 case 1: GEN_SAMPLE_POS_1X(u.v._); break;
89 case 2: GEN_SAMPLE_POS_2X(u.v._); break;
90 case 4: GEN_SAMPLE_POS_4X(u.v._); break;
91 case 8: GEN_SAMPLE_POS_8X(u.v._); break;
92 case 16: GEN_SAMPLE_POS_16X(u.v._); break;
93 default: unreachable("invalid sample count");
94 }
95
96 out_value[0] = u.a.x[sample_index];
97 out_value[1] = u.a.y[sample_index];
98 }
99
100 /**
101 * Destroy a context, freeing any associated memory.
102 */
103 static void
104 iris_destroy_context(struct pipe_context *ctx)
105 {
106 struct iris_context *ice = (struct iris_context *)ctx;
107
108 if (ctx->stream_uploader)
109 u_upload_destroy(ctx->stream_uploader);
110
111 ice->vtbl.destroy_state(ice);
112 iris_destroy_program_cache(ice);
113 iris_destroy_border_color_pool(ice);
114 u_upload_destroy(ice->state.surface_uploader);
115 u_upload_destroy(ice->state.dynamic_uploader);
116
117 slab_destroy_child(&ice->transfer_pool);
118
119 iris_batch_free(&ice->batches[IRIS_BATCH_RENDER]);
120 iris_batch_free(&ice->batches[IRIS_BATCH_COMPUTE]);
121 iris_destroy_binder(&ice->state.binder);
122
123 ralloc_free(ice);
124 }
125
126 #define genX_call(devinfo, func, ...) \
127 switch (devinfo->gen) { \
128 case 11: \
129 gen11_##func(__VA_ARGS__); \
130 break; \
131 case 10: \
132 gen10_##func(__VA_ARGS__); \
133 break; \
134 case 9: \
135 gen9_##func(__VA_ARGS__); \
136 break; \
137 case 8: \
138 gen8_##func(__VA_ARGS__); \
139 break; \
140 default: \
141 unreachable("Unknown hardware generation"); \
142 }
143
144 /**
145 * Create a context.
146 *
147 * This is where each context begins.
148 */
149 struct pipe_context *
150 iris_create_context(struct pipe_screen *pscreen, void *priv, unsigned flags)
151 {
152 struct iris_screen *screen = (struct iris_screen*)pscreen;
153 const struct gen_device_info *devinfo = &screen->devinfo;
154 struct iris_context *ice = rzalloc(NULL, struct iris_context);
155
156 if (!ice)
157 return NULL;
158
159 struct pipe_context *ctx = &ice->ctx;
160
161 ctx->screen = pscreen;
162 ctx->priv = priv;
163
164 ctx->stream_uploader = u_upload_create_default(ctx);
165 if (!ctx->stream_uploader) {
166 free(ctx);
167 return NULL;
168 }
169 ctx->const_uploader = ctx->stream_uploader;
170
171 ctx->destroy = iris_destroy_context;
172 ctx->set_debug_callback = iris_set_debug_callback;
173 ctx->get_sample_position = iris_get_sample_position;
174
175 ice->shaders.urb_size = devinfo->urb.size;
176
177 iris_init_context_fence_functions(ctx);
178 iris_init_blit_functions(ctx);
179 iris_init_clear_functions(ctx);
180 iris_init_program_functions(ctx);
181 iris_init_resource_functions(ctx);
182 iris_init_query_functions(ctx);
183 iris_init_flush_functions(ctx);
184
185 iris_init_program_cache(ice);
186 iris_init_border_color_pool(ice);
187 iris_init_binder(ice);
188
189 slab_create_child(&ice->transfer_pool, &screen->transfer_pool);
190
191 ice->state.surface_uploader =
192 u_upload_create(ctx, 16384, PIPE_BIND_CUSTOM, PIPE_USAGE_IMMUTABLE,
193 IRIS_RESOURCE_FLAG_SURFACE_MEMZONE);
194 ice->state.dynamic_uploader =
195 u_upload_create(ctx, 16384, PIPE_BIND_CUSTOM, PIPE_USAGE_IMMUTABLE,
196 IRIS_RESOURCE_FLAG_DYNAMIC_MEMZONE);
197
198 genX_call(devinfo, init_state, ice);
199 genX_call(devinfo, init_blorp, ice);
200
201 for (int i = 0; i < IRIS_BATCH_COUNT; i++) {
202 iris_init_batch(&ice->batches[i], screen, &ice->vtbl, &ice->dbg,
203 ice->batches, (enum iris_batch_name) i,
204 I915_EXEC_RENDER);
205 }
206
207 ice->vtbl.init_render_context(screen, &ice->batches[IRIS_BATCH_RENDER],
208 &ice->vtbl, &ice->dbg);
209 ice->vtbl.init_compute_context(screen, &ice->batches[IRIS_BATCH_COMPUTE],
210 &ice->vtbl, &ice->dbg);
211
212 return ctx;
213 }