etnaviv: also update textures from external resources
[mesa.git] / src / gallium / drivers / etnaviv / etnaviv_texture.c
1 /*
2 * Copyright (c) 2012-2015 Etnaviv Project
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, sub license,
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 (including the
12 * next paragraph) shall be included in all copies or substantial portions
13 * of the Software.
14 *
15 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17 * FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT. IN NO EVENT SHALL
18 * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
20 * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
21 * DEALINGS IN THE SOFTWARE.
22 *
23 * Authors:
24 * Wladimir J. van der Laan <laanwj@gmail.com>
25 */
26
27 #include "etnaviv_texture.h"
28
29 #include "hw/common.xml.h"
30
31 #include "etnaviv_clear_blit.h"
32 #include "etnaviv_context.h"
33 #include "etnaviv_emit.h"
34 #include "etnaviv_format.h"
35 #include "etnaviv_translate.h"
36 #include "util/u_inlines.h"
37 #include "util/u_memory.h"
38
39 static void *
40 etna_create_sampler_state(struct pipe_context *pipe,
41 const struct pipe_sampler_state *ss)
42 {
43 struct etna_sampler_state *cs = CALLOC_STRUCT(etna_sampler_state);
44
45 if (!cs)
46 return NULL;
47
48 cs->TE_SAMPLER_CONFIG0 =
49 VIVS_TE_SAMPLER_CONFIG0_UWRAP(translate_texture_wrapmode(ss->wrap_s)) |
50 VIVS_TE_SAMPLER_CONFIG0_VWRAP(translate_texture_wrapmode(ss->wrap_t)) |
51 VIVS_TE_SAMPLER_CONFIG0_MIN(translate_texture_filter(ss->min_img_filter)) |
52 VIVS_TE_SAMPLER_CONFIG0_MIP(translate_texture_mipfilter(ss->min_mip_filter)) |
53 VIVS_TE_SAMPLER_CONFIG0_MAG(translate_texture_filter(ss->mag_img_filter)) |
54 COND(ss->normalized_coords, VIVS_TE_SAMPLER_CONFIG0_ROUND_UV);
55 cs->TE_SAMPLER_CONFIG1 = 0; /* VIVS_TE_SAMPLER_CONFIG1 (swizzle, extended
56 format) fully determined by sampler view */
57 cs->TE_SAMPLER_LOD_CONFIG =
58 COND(ss->lod_bias != 0.0, VIVS_TE_SAMPLER_LOD_CONFIG_BIAS_ENABLE) |
59 VIVS_TE_SAMPLER_LOD_CONFIG_BIAS(etna_float_to_fixp55(ss->lod_bias));
60
61 if (ss->min_mip_filter != PIPE_TEX_MIPFILTER_NONE) {
62 cs->min_lod = etna_float_to_fixp55(ss->min_lod);
63 cs->max_lod = etna_float_to_fixp55(ss->max_lod);
64 } else {
65 /* when not mipmapping, we need to set max/min lod so that always
66 * lowest LOD is selected */
67 cs->min_lod = cs->max_lod = etna_float_to_fixp55(ss->min_lod);
68 }
69
70 return cs;
71 }
72
73 static void
74 etna_bind_sampler_states(struct pipe_context *pctx, enum pipe_shader_type shader,
75 unsigned start_slot, unsigned num_samplers,
76 void **samplers)
77 {
78 /* bind fragment sampler */
79 struct etna_context *ctx = etna_context(pctx);
80 int offset;
81
82 switch (shader) {
83 case PIPE_SHADER_FRAGMENT:
84 offset = 0;
85 ctx->num_fragment_samplers = num_samplers;
86 break;
87 case PIPE_SHADER_VERTEX:
88 offset = ctx->specs.vertex_sampler_offset;
89 break;
90 default:
91 assert(!"Invalid shader");
92 return;
93 }
94
95 uint32_t mask = 1 << offset;
96 for (int idx = 0; idx < num_samplers; ++idx, mask <<= 1) {
97 ctx->sampler[offset + idx] = samplers[idx];
98 if (samplers[idx])
99 ctx->active_samplers |= mask;
100 else
101 ctx->active_samplers &= ~mask;
102 }
103
104 ctx->dirty |= ETNA_DIRTY_SAMPLERS;
105 }
106
107 static void
108 etna_delete_sampler_state(struct pipe_context *pctx, void *ss)
109 {
110 FREE(ss);
111 }
112
113 static void
114 etna_update_sampler_source(struct pipe_sampler_view *view)
115 {
116 struct etna_resource *base = etna_resource(view->texture);
117 struct etna_resource *to = base, *from = base;
118
119 if (base->external && etna_resource_newer(etna_resource(base->external), base))
120 from = etna_resource(base->external);
121
122 if (base->texture)
123 to = etna_resource(base->texture);
124
125 if ((to != from) && etna_resource_older(to, from)) {
126 etna_copy_resource(view->context, &to->base, &from->base, 0,
127 view->texture->last_level);
128 to->seqno = from->seqno;
129 } else if ((to == from) && etna_resource_needs_flush(to)) {
130 /* Resolve TS if needed, remove when adding sampler TS */
131 etna_copy_resource(view->context, &to->base, &from->base, 0,
132 view->texture->last_level);
133 to->flush_seqno = from->seqno;
134 }
135 }
136
137 static bool
138 etna_resource_sampler_compatible(struct etna_resource *res)
139 {
140 if (util_format_is_compressed(res->base.format))
141 return true;
142
143 struct etna_screen *screen = etna_screen(res->base.screen);
144 /* This GPU supports texturing from supertiled textures? */
145 if (res->layout == ETNA_LAYOUT_SUPER_TILED && VIV_FEATURE(screen, chipMinorFeatures2, SUPERTILED_TEXTURE))
146 return true;
147
148 /* TODO: LINEAR_TEXTURE_SUPPORT */
149
150 /* Otherwise, only support tiled layouts */
151 if (res->layout != ETNA_LAYOUT_TILED)
152 return false;
153
154 /* If we have HALIGN support, we can allow for the RS padding */
155 if (VIV_FEATURE(screen, chipMinorFeatures1, TEXTURE_HALIGN))
156 return true;
157
158 /* Non-HALIGN GPUs only accept 4x4 tile-aligned textures */
159 if (res->halign != TEXTURE_HALIGN_FOUR)
160 return false;
161
162 return true;
163 }
164
165 static struct pipe_sampler_view *
166 etna_create_sampler_view(struct pipe_context *pctx, struct pipe_resource *prsc,
167 const struct pipe_sampler_view *so)
168 {
169 struct etna_sampler_view *sv = CALLOC_STRUCT(etna_sampler_view);
170 struct etna_resource *res = etna_resource(prsc);
171 struct etna_context *ctx = etna_context(pctx);
172 const uint32_t format = translate_texture_format(so->format);
173 const bool ext = !!(format & EXT_FORMAT);
174 const uint32_t swiz = get_texture_swiz(so->format, so->swizzle_r,
175 so->swizzle_g, so->swizzle_b,
176 so->swizzle_a);
177
178 if (!sv)
179 return NULL;
180
181 if (!etna_resource_sampler_compatible(res)) {
182 /* The original resource is not compatible with the sampler.
183 * Allocate an appropriately tiled texture. */
184 if (!res->texture) {
185 struct pipe_resource templat = *prsc;
186
187 templat.bind &= ~(PIPE_BIND_DEPTH_STENCIL | PIPE_BIND_RENDER_TARGET |
188 PIPE_BIND_BLENDABLE);
189 res->texture =
190 etna_resource_alloc(pctx->screen, ETNA_LAYOUT_TILED, &templat);
191 }
192
193 if (!res->texture) {
194 free(sv);
195 return NULL;
196 }
197 res = etna_resource(res->texture);
198 }
199
200 sv->base = *so;
201 pipe_reference_init(&sv->base.reference, 1);
202 sv->base.texture = NULL;
203 pipe_resource_reference(&sv->base.texture, prsc);
204 sv->base.context = pctx;
205
206 /* merged with sampler state */
207 sv->TE_SAMPLER_CONFIG0 = COND(!ext, VIVS_TE_SAMPLER_CONFIG0_FORMAT(format));
208 sv->TE_SAMPLER_CONFIG0_MASK = 0xffffffff;
209
210 switch (sv->base.target) {
211 case PIPE_TEXTURE_1D:
212 /* For 1D textures, we will have a height of 1, so we can use 2D
213 * but set T wrap to repeat */
214 sv->TE_SAMPLER_CONFIG0_MASK = ~VIVS_TE_SAMPLER_CONFIG0_VWRAP__MASK;
215 sv->TE_SAMPLER_CONFIG0 |= VIVS_TE_SAMPLER_CONFIG0_VWRAP(TEXTURE_WRAPMODE_REPEAT);
216 /* fallthrough */
217 case PIPE_TEXTURE_2D:
218 case PIPE_TEXTURE_RECT:
219 sv->TE_SAMPLER_CONFIG0 |= VIVS_TE_SAMPLER_CONFIG0_TYPE(TEXTURE_TYPE_2D);
220 break;
221 case PIPE_TEXTURE_CUBE:
222 sv->TE_SAMPLER_CONFIG0 |= VIVS_TE_SAMPLER_CONFIG0_TYPE(TEXTURE_TYPE_CUBE_MAP);
223 break;
224 default:
225 BUG("Unhandled texture target");
226 free(sv);
227 return NULL;
228 }
229
230 sv->TE_SAMPLER_CONFIG1 = COND(ext, VIVS_TE_SAMPLER_CONFIG1_FORMAT_EXT(format)) |
231 VIVS_TE_SAMPLER_CONFIG1_HALIGN(res->halign) | swiz;
232 sv->TE_SAMPLER_SIZE = VIVS_TE_SAMPLER_SIZE_WIDTH(res->base.width0) |
233 VIVS_TE_SAMPLER_SIZE_HEIGHT(res->base.height0);
234 sv->TE_SAMPLER_LOG_SIZE =
235 VIVS_TE_SAMPLER_LOG_SIZE_WIDTH(etna_log2_fixp55(res->base.width0)) |
236 VIVS_TE_SAMPLER_LOG_SIZE_HEIGHT(etna_log2_fixp55(res->base.height0));
237
238 /* Set up levels-of-detail */
239 for (int lod = 0; lod <= res->base.last_level; ++lod) {
240 sv->TE_SAMPLER_LOD_ADDR[lod].bo = res->bo;
241 sv->TE_SAMPLER_LOD_ADDR[lod].offset = res->levels[lod].offset;
242 sv->TE_SAMPLER_LOD_ADDR[lod].flags = ETNA_RELOC_READ;
243 }
244 sv->min_lod = sv->base.u.tex.first_level << 5;
245 sv->max_lod = MIN2(sv->base.u.tex.last_level, res->base.last_level) << 5;
246
247 /* Workaround for npot textures -- it appears that only CLAMP_TO_EDGE is
248 * supported when the appropriate capability is not set. */
249 if (!ctx->specs.npot_tex_any_wrap &&
250 (!util_is_power_of_two(res->base.width0) || !util_is_power_of_two(res->base.height0))) {
251 sv->TE_SAMPLER_CONFIG0_MASK = ~(VIVS_TE_SAMPLER_CONFIG0_UWRAP__MASK |
252 VIVS_TE_SAMPLER_CONFIG0_VWRAP__MASK);
253 sv->TE_SAMPLER_CONFIG0 |=
254 VIVS_TE_SAMPLER_CONFIG0_UWRAP(TEXTURE_WRAPMODE_CLAMP_TO_EDGE) |
255 VIVS_TE_SAMPLER_CONFIG0_VWRAP(TEXTURE_WRAPMODE_CLAMP_TO_EDGE);
256 }
257
258 return &sv->base;
259 }
260
261 static void
262 etna_sampler_view_destroy(struct pipe_context *pctx,
263 struct pipe_sampler_view *view)
264 {
265 pipe_resource_reference(&view->texture, NULL);
266 FREE(view);
267 }
268
269 static void
270 set_sampler_views(struct etna_context *ctx, unsigned start, unsigned end,
271 unsigned nr, struct pipe_sampler_view **views)
272 {
273 unsigned i, j;
274 uint32_t mask = 1 << start;
275
276 for (i = start, j = 0; j < nr; i++, j++, mask <<= 1) {
277 pipe_sampler_view_reference(&ctx->sampler_view[i], views[j]);
278 if (views[j])
279 ctx->active_sampler_views |= mask;
280 else
281 ctx->active_sampler_views &= ~mask;
282 }
283
284 for (; i < end; i++, mask <<= 1) {
285 pipe_sampler_view_reference(&ctx->sampler_view[i], NULL);
286 ctx->active_sampler_views &= ~mask;
287 }
288 }
289
290 static inline void
291 etna_fragtex_set_sampler_views(struct etna_context *ctx, unsigned nr,
292 struct pipe_sampler_view **views)
293 {
294 unsigned start = 0;
295 unsigned end = start + ctx->specs.fragment_sampler_count;
296
297 set_sampler_views(ctx, start, end, nr, views);
298 ctx->num_fragment_sampler_views = nr;
299 }
300
301
302 static inline void
303 etna_vertex_set_sampler_views(struct etna_context *ctx, unsigned nr,
304 struct pipe_sampler_view **views)
305 {
306 unsigned start = ctx->specs.vertex_sampler_offset;
307 unsigned end = start + ctx->specs.vertex_sampler_count;
308
309 set_sampler_views(ctx, start, end, nr, views);
310 }
311
312 static void
313 etna_set_sampler_views(struct pipe_context *pctx, enum pipe_shader_type shader,
314 unsigned start_slot, unsigned num_views,
315 struct pipe_sampler_view **views)
316 {
317 struct etna_context *ctx = etna_context(pctx);
318 assert(start_slot == 0);
319
320 ctx->dirty |= ETNA_DIRTY_SAMPLER_VIEWS | ETNA_DIRTY_TEXTURE_CACHES;
321
322 for (unsigned idx = 0; idx < num_views; ++idx) {
323 if (views[idx])
324 etna_update_sampler_source(views[idx]);
325 }
326
327 switch (shader) {
328 case PIPE_SHADER_FRAGMENT:
329 etna_fragtex_set_sampler_views(ctx, num_views, views);
330 break;
331 case PIPE_SHADER_VERTEX:
332 etna_vertex_set_sampler_views(ctx, num_views, views);
333 break;
334 default:;
335 }
336 }
337
338 static void
339 etna_texture_barrier(struct pipe_context *pctx, unsigned flags)
340 {
341 struct etna_context *ctx = etna_context(pctx);
342 /* clear color and texture cache to make sure that texture unit reads
343 * what has been written */
344 etna_set_state(ctx->stream, VIVS_GL_FLUSH_CACHE, VIVS_GL_FLUSH_CACHE_COLOR | VIVS_GL_FLUSH_CACHE_TEXTURE);
345 }
346
347 void
348 etna_texture_init(struct pipe_context *pctx)
349 {
350 pctx->create_sampler_state = etna_create_sampler_state;
351 pctx->bind_sampler_states = etna_bind_sampler_states;
352 pctx->delete_sampler_state = etna_delete_sampler_state;
353 pctx->set_sampler_views = etna_set_sampler_views;
354 pctx->create_sampler_view = etna_create_sampler_view;
355 pctx->sampler_view_destroy = etna_sampler_view_destroy;
356 pctx->texture_barrier = etna_texture_barrier;
357 }