etnaviv: remove superfluous \n from DBG(..) callers
[mesa.git] / src / gallium / drivers / etnaviv / etnaviv_texture_state.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_state.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_texture.h"
36 #include "etnaviv_translate.h"
37 #include "util/u_inlines.h"
38 #include "util/u_memory.h"
39
40 #include <drm_fourcc.h>
41
42 static void *
43 etna_create_sampler_state_state(struct pipe_context *pipe,
44 const struct pipe_sampler_state *ss)
45 {
46 struct etna_sampler_state *cs = CALLOC_STRUCT(etna_sampler_state);
47
48 if (!cs)
49 return NULL;
50
51 cs->TE_SAMPLER_CONFIG0 =
52 VIVS_TE_SAMPLER_CONFIG0_UWRAP(translate_texture_wrapmode(ss->wrap_s)) |
53 VIVS_TE_SAMPLER_CONFIG0_VWRAP(translate_texture_wrapmode(ss->wrap_t)) |
54 VIVS_TE_SAMPLER_CONFIG0_MIN(translate_texture_filter(ss->min_img_filter)) |
55 VIVS_TE_SAMPLER_CONFIG0_MIP(translate_texture_mipfilter(ss->min_mip_filter)) |
56 VIVS_TE_SAMPLER_CONFIG0_MAG(translate_texture_filter(ss->mag_img_filter)) |
57 COND(ss->normalized_coords, VIVS_TE_SAMPLER_CONFIG0_ROUND_UV);
58 cs->TE_SAMPLER_CONFIG1 = 0; /* VIVS_TE_SAMPLER_CONFIG1 (swizzle, extended
59 format) fully determined by sampler view */
60 cs->TE_SAMPLER_LOD_CONFIG =
61 COND(ss->lod_bias != 0.0, VIVS_TE_SAMPLER_LOD_CONFIG_BIAS_ENABLE) |
62 VIVS_TE_SAMPLER_LOD_CONFIG_BIAS(etna_float_to_fixp55(ss->lod_bias));
63
64 if (ss->min_mip_filter != PIPE_TEX_MIPFILTER_NONE) {
65 cs->min_lod = etna_float_to_fixp55(ss->min_lod);
66 cs->max_lod = etna_float_to_fixp55(ss->max_lod);
67 } else {
68 /* when not mipmapping, we need to set max/min lod so that always
69 * lowest LOD is selected */
70 cs->min_lod = cs->max_lod = etna_float_to_fixp55(ss->min_lod);
71 }
72
73 return cs;
74 }
75
76 static void
77 etna_delete_sampler_state_state(struct pipe_context *pctx, void *ss)
78 {
79 FREE(ss);
80 }
81
82 static struct pipe_sampler_view *
83 etna_create_sampler_view_state(struct pipe_context *pctx, struct pipe_resource *prsc,
84 const struct pipe_sampler_view *so)
85 {
86 struct etna_sampler_view *sv = CALLOC_STRUCT(etna_sampler_view);
87 struct etna_context *ctx = etna_context(pctx);
88 const uint32_t format = translate_texture_format(so->format);
89 const bool ext = !!(format & EXT_FORMAT);
90 const bool astc = !!(format & ASTC_FORMAT);
91 const uint32_t swiz = get_texture_swiz(so->format, so->swizzle_r,
92 so->swizzle_g, so->swizzle_b,
93 so->swizzle_a);
94
95 if (!sv)
96 return NULL;
97
98 struct etna_resource *res = etna_texture_handle_incompatible(pctx, prsc);
99 if (!res) {
100 free(sv);
101 return NULL;
102 }
103
104 sv->base = *so;
105 pipe_reference_init(&sv->base.reference, 1);
106 sv->base.texture = NULL;
107 pipe_resource_reference(&sv->base.texture, prsc);
108 sv->base.context = pctx;
109
110 /* merged with sampler state */
111 sv->TE_SAMPLER_CONFIG0 = COND(!ext && !astc, VIVS_TE_SAMPLER_CONFIG0_FORMAT(format));
112 sv->TE_SAMPLER_CONFIG0_MASK = 0xffffffff;
113
114 switch (sv->base.target) {
115 case PIPE_TEXTURE_1D:
116 /* For 1D textures, we will have a height of 1, so we can use 2D
117 * but set T wrap to repeat */
118 sv->TE_SAMPLER_CONFIG0_MASK = ~VIVS_TE_SAMPLER_CONFIG0_VWRAP__MASK;
119 sv->TE_SAMPLER_CONFIG0 |= VIVS_TE_SAMPLER_CONFIG0_VWRAP(TEXTURE_WRAPMODE_REPEAT);
120 /* fallthrough */
121 case PIPE_TEXTURE_2D:
122 case PIPE_TEXTURE_RECT:
123 sv->TE_SAMPLER_CONFIG0 |= VIVS_TE_SAMPLER_CONFIG0_TYPE(TEXTURE_TYPE_2D);
124 break;
125 case PIPE_TEXTURE_CUBE:
126 sv->TE_SAMPLER_CONFIG0 |= VIVS_TE_SAMPLER_CONFIG0_TYPE(TEXTURE_TYPE_CUBE_MAP);
127 break;
128 default:
129 BUG("Unhandled texture target");
130 free(sv);
131 return NULL;
132 }
133
134 sv->TE_SAMPLER_CONFIG1 = COND(ext, VIVS_TE_SAMPLER_CONFIG1_FORMAT_EXT(format)) |
135 COND(astc, VIVS_TE_SAMPLER_CONFIG1_FORMAT_EXT(TEXTURE_FORMAT_EXT_ASTC)) |
136 VIVS_TE_SAMPLER_CONFIG1_HALIGN(res->halign) | swiz;
137 sv->TE_SAMPLER_ASTC0 = COND(astc, VIVS_NTE_SAMPLER_ASTC0_ASTC_FORMAT(format)) |
138 VIVS_NTE_SAMPLER_ASTC0_UNK8(0xc) |
139 VIVS_NTE_SAMPLER_ASTC0_UNK16(0xc) |
140 VIVS_NTE_SAMPLER_ASTC0_UNK24(0xc);
141 sv->TE_SAMPLER_SIZE = VIVS_TE_SAMPLER_SIZE_WIDTH(res->base.width0) |
142 VIVS_TE_SAMPLER_SIZE_HEIGHT(res->base.height0);
143 sv->TE_SAMPLER_LOG_SIZE =
144 VIVS_TE_SAMPLER_LOG_SIZE_WIDTH(etna_log2_fixp55(res->base.width0)) |
145 VIVS_TE_SAMPLER_LOG_SIZE_HEIGHT(etna_log2_fixp55(res->base.height0)) |
146 COND(util_format_is_srgb(so->format) && !astc, VIVS_TE_SAMPLER_LOG_SIZE_SRGB) |
147 COND(astc, VIVS_TE_SAMPLER_LOG_SIZE_ASTC);
148
149 /* Set up levels-of-detail */
150 for (int lod = 0; lod <= res->base.last_level; ++lod) {
151 sv->TE_SAMPLER_LOD_ADDR[lod].bo = res->bo;
152 sv->TE_SAMPLER_LOD_ADDR[lod].offset = res->levels[lod].offset;
153 sv->TE_SAMPLER_LOD_ADDR[lod].flags = ETNA_RELOC_READ;
154 }
155 sv->min_lod = sv->base.u.tex.first_level << 5;
156 sv->max_lod = MIN2(sv->base.u.tex.last_level, res->base.last_level) << 5;
157
158 /* Workaround for npot textures -- it appears that only CLAMP_TO_EDGE is
159 * supported when the appropriate capability is not set. */
160 if (!ctx->specs.npot_tex_any_wrap &&
161 (!util_is_power_of_two(res->base.width0) || !util_is_power_of_two(res->base.height0))) {
162 sv->TE_SAMPLER_CONFIG0_MASK = ~(VIVS_TE_SAMPLER_CONFIG0_UWRAP__MASK |
163 VIVS_TE_SAMPLER_CONFIG0_VWRAP__MASK);
164 sv->TE_SAMPLER_CONFIG0 |=
165 VIVS_TE_SAMPLER_CONFIG0_UWRAP(TEXTURE_WRAPMODE_CLAMP_TO_EDGE) |
166 VIVS_TE_SAMPLER_CONFIG0_VWRAP(TEXTURE_WRAPMODE_CLAMP_TO_EDGE);
167 }
168
169 return &sv->base;
170 }
171
172 static void
173 etna_sampler_view_state_destroy(struct pipe_context *pctx,
174 struct pipe_sampler_view *view)
175 {
176 pipe_resource_reference(&view->texture, NULL);
177 FREE(view);
178 }
179
180 #define EMIT_STATE(state_name, src_value) \
181 etna_coalsence_emit(stream, &coalesce, VIVS_##state_name, src_value)
182
183 #define EMIT_STATE_FIXP(state_name, src_value) \
184 etna_coalsence_emit_fixp(stream, &coalesce, VIVS_##state_name, src_value)
185
186 #define EMIT_STATE_RELOC(state_name, src_value) \
187 etna_coalsence_emit_reloc(stream, &coalesce, VIVS_##state_name, src_value)
188
189 /* Emit plain (non-descriptor) texture state */
190 static void
191 etna_emit_texture_state(struct etna_context *ctx)
192 {
193 struct etna_cmd_stream *stream = ctx->stream;
194 uint32_t active_samplers = active_samplers_bits(ctx);
195 uint32_t dirty = ctx->dirty;
196 struct etna_coalesce coalesce;
197
198 etna_coalesce_start(stream, &coalesce);
199
200 if (unlikely(dirty & ETNA_DIRTY_SAMPLER_VIEWS)) {
201 for (int x = 0; x < VIVS_TS_SAMPLER__LEN; ++x) {
202 if ((1 << x) & active_samplers) {
203 struct etna_sampler_view *sv = etna_sampler_view(ctx->sampler_view[x]);
204 /*01720*/ EMIT_STATE(TS_SAMPLER_CONFIG(x), sv->ts.TS_SAMPLER_CONFIG);
205 }
206 }
207 for (int x = 0; x < VIVS_TS_SAMPLER__LEN; ++x) {
208 if ((1 << x) & active_samplers) {
209 struct etna_sampler_view *sv = etna_sampler_view(ctx->sampler_view[x]);
210 /*01740*/ EMIT_STATE_RELOC(TS_SAMPLER_STATUS_BASE(x), &sv->ts.TS_SAMPLER_STATUS_BASE);
211 }
212 }
213 for (int x = 0; x < VIVS_TS_SAMPLER__LEN; ++x) {
214 if ((1 << x) & active_samplers) {
215 struct etna_sampler_view *sv = etna_sampler_view(ctx->sampler_view[x]);
216 /*01760*/ EMIT_STATE(TS_SAMPLER_CLEAR_VALUE(x), sv->ts.TS_SAMPLER_CLEAR_VALUE);
217 }
218 }
219 for (int x = 0; x < VIVS_TS_SAMPLER__LEN; ++x) {
220 if ((1 << x) & active_samplers) {
221 struct etna_sampler_view *sv = etna_sampler_view(ctx->sampler_view[x]);
222 /*01780*/ EMIT_STATE(TS_SAMPLER_CLEAR_VALUE2(x), sv->ts.TS_SAMPLER_CLEAR_VALUE2);
223 }
224 }
225 }
226 if (unlikely(dirty & (ETNA_DIRTY_SAMPLER_VIEWS | ETNA_DIRTY_SAMPLERS))) {
227 for (int x = 0; x < VIVS_TE_SAMPLER__LEN; ++x) {
228 uint32_t val = 0; /* 0 == sampler inactive */
229
230 /* set active samplers to their configuration value (determined by both
231 * the sampler state and sampler view) */
232 if ((1 << x) & active_samplers) {
233 struct etna_sampler_state *ss = etna_sampler_state(ctx->sampler[x]);
234 struct etna_sampler_view *sv = etna_sampler_view(ctx->sampler_view[x]);
235
236 val = (ss->TE_SAMPLER_CONFIG0 & sv->TE_SAMPLER_CONFIG0_MASK) |
237 sv->TE_SAMPLER_CONFIG0;
238 }
239
240 /*02000*/ EMIT_STATE(TE_SAMPLER_CONFIG0(x), val);
241 }
242 }
243 if (unlikely(dirty & (ETNA_DIRTY_SAMPLER_VIEWS))) {
244 struct etna_sampler_view *sv;
245
246 for (int x = 0; x < VIVS_TE_SAMPLER__LEN; ++x) {
247 if ((1 << x) & active_samplers) {
248 sv = etna_sampler_view(ctx->sampler_view[x]);
249 /*02040*/ EMIT_STATE(TE_SAMPLER_SIZE(x), sv->TE_SAMPLER_SIZE);
250 }
251 }
252 for (int x = 0; x < VIVS_TE_SAMPLER__LEN; ++x) {
253 if ((1 << x) & active_samplers) {
254 sv = etna_sampler_view(ctx->sampler_view[x]);
255 /*02080*/ EMIT_STATE(TE_SAMPLER_LOG_SIZE(x), sv->TE_SAMPLER_LOG_SIZE);
256 }
257 }
258 }
259 if (unlikely(dirty & (ETNA_DIRTY_SAMPLER_VIEWS | ETNA_DIRTY_SAMPLERS))) {
260 struct etna_sampler_state *ss;
261 struct etna_sampler_view *sv;
262
263 for (int x = 0; x < VIVS_TE_SAMPLER__LEN; ++x) {
264 if ((1 << x) & active_samplers) {
265 ss = etna_sampler_state(ctx->sampler[x]);
266 sv = etna_sampler_view(ctx->sampler_view[x]);
267
268 /* min and max lod is determined both by the sampler and the view */
269 /*020C0*/ EMIT_STATE(TE_SAMPLER_LOD_CONFIG(x),
270 ss->TE_SAMPLER_LOD_CONFIG |
271 VIVS_TE_SAMPLER_LOD_CONFIG_MAX(MIN2(ss->max_lod, sv->max_lod)) |
272 VIVS_TE_SAMPLER_LOD_CONFIG_MIN(MAX2(ss->min_lod, sv->min_lod)));
273 }
274 }
275 for (int x = 0; x < VIVS_TE_SAMPLER__LEN; ++x) {
276 if ((1 << x) & active_samplers) {
277 ss = etna_sampler_state(ctx->sampler[x]);
278 sv = etna_sampler_view(ctx->sampler_view[x]);
279
280 /*021C0*/ EMIT_STATE(TE_SAMPLER_CONFIG1(x), ss->TE_SAMPLER_CONFIG1 |
281 sv->TE_SAMPLER_CONFIG1 |
282 COND(sv->ts.enable, VIVS_TE_SAMPLER_CONFIG1_USE_TS));
283 }
284 }
285 }
286 if (unlikely(dirty & (ETNA_DIRTY_SAMPLER_VIEWS))) {
287 for (int y = 0; y < VIVS_TE_SAMPLER_LOD_ADDR__LEN; ++y) {
288 for (int x = 0; x < VIVS_TE_SAMPLER__LEN; ++x) {
289 if ((1 << x) & active_samplers) {
290 struct etna_sampler_view *sv = etna_sampler_view(ctx->sampler_view[x]);
291 /*02400*/ EMIT_STATE_RELOC(TE_SAMPLER_LOD_ADDR(x, y),&sv->TE_SAMPLER_LOD_ADDR[y]);
292 }
293 }
294 }
295 }
296 if (unlikely(ctx->specs.tex_astc && (dirty & (ETNA_DIRTY_SAMPLER_VIEWS)))) {
297 for (int x = 0; x < VIVS_TE_SAMPLER__LEN; ++x) {
298 if ((1 << x) & active_samplers) {
299 struct etna_sampler_view *sv = etna_sampler_view(ctx->sampler_view[x]);
300 /*10500*/ EMIT_STATE(NTE_SAMPLER_ASTC0(x), sv->TE_SAMPLER_ASTC0);
301 }
302 }
303 }
304 etna_coalesce_end(stream, &coalesce);
305 }
306
307 #undef EMIT_STATE
308 #undef EMIT_STATE_FIXP
309 #undef EMIT_STATE_RELOC
310
311 static struct etna_sampler_ts*
312 etna_ts_for_sampler_view_state(struct pipe_sampler_view *pview)
313 {
314 struct etna_sampler_view *sv = etna_sampler_view(pview);
315 return &sv->ts;
316 }
317
318 void
319 etna_texture_state_init(struct pipe_context *pctx)
320 {
321 struct etna_context *ctx = etna_context(pctx);
322 DBG("etnaviv: Using state-based texturing");
323 ctx->base.create_sampler_state = etna_create_sampler_state_state;
324 ctx->base.delete_sampler_state = etna_delete_sampler_state_state;
325 ctx->base.create_sampler_view = etna_create_sampler_view_state;
326 ctx->base.sampler_view_destroy = etna_sampler_view_state_destroy;
327 ctx->emit_texture_state = etna_emit_texture_state;
328 ctx->ts_for_sampler_view = etna_ts_for_sampler_view_state;
329 }