ebc134a3bb0e116eaa78e2bd379296b3e2ad7834
[mesa.git] / src / gallium / drivers / freedreno / freedreno_resource.c
1 /* -*- mode: C; c-file-style: "k&r"; tab-width 4; indent-tabs-mode: t; -*- */
2
3 /*
4 * Copyright (C) 2012 Rob Clark <robclark@freedesktop.org>
5 *
6 * Permission is hereby granted, free of charge, to any person obtaining a
7 * copy of this software and associated documentation files (the "Software"),
8 * to deal in the Software without restriction, including without limitation
9 * the rights to use, copy, modify, merge, publish, distribute, sublicense,
10 * and/or sell copies of the Software, and to permit persons to whom the
11 * Software is furnished to do so, subject to the following conditions:
12 *
13 * The above copyright notice and this permission notice (including the next
14 * paragraph) shall be included in all copies or substantial portions of the
15 * Software.
16 *
17 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
18 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
19 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
20 * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
21 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
22 * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
23 * SOFTWARE.
24 *
25 * Authors:
26 * Rob Clark <robclark@freedesktop.org>
27 */
28
29 #include "util/u_format.h"
30 #include "util/u_inlines.h"
31 #include "util/u_transfer.h"
32 #include "util/u_string.h"
33 #include "util/u_surface.h"
34
35 #include "freedreno_resource.h"
36 #include "freedreno_screen.h"
37 #include "freedreno_surface.h"
38 #include "freedreno_context.h"
39 #include "freedreno_query_hw.h"
40 #include "freedreno_util.h"
41
42 #include <errno.h>
43
44 static void
45 realloc_bo(struct fd_resource *rsc, uint32_t size)
46 {
47 struct fd_screen *screen = fd_screen(rsc->base.b.screen);
48 uint32_t flags = DRM_FREEDRENO_GEM_CACHE_WCOMBINE |
49 DRM_FREEDRENO_GEM_TYPE_KMEM; /* TODO */
50
51 /* if we start using things other than write-combine,
52 * be sure to check for PIPE_RESOURCE_FLAG_MAP_COHERENT
53 */
54
55 if (rsc->bo)
56 fd_bo_del(rsc->bo);
57
58 rsc->bo = fd_bo_new(screen->dev, size, flags);
59 rsc->timestamp = 0;
60 rsc->dirty = false;
61 }
62
63 static void fd_resource_transfer_flush_region(struct pipe_context *pctx,
64 struct pipe_transfer *ptrans,
65 const struct pipe_box *box)
66 {
67 struct fd_context *ctx = fd_context(pctx);
68 struct fd_resource *rsc = fd_resource(ptrans->resource);
69
70 if (rsc->dirty)
71 fd_context_render(pctx);
72
73 if (rsc->timestamp) {
74 fd_pipe_wait(ctx->screen->pipe, rsc->timestamp);
75 rsc->timestamp = 0;
76 }
77 }
78
79 static void
80 fd_resource_transfer_unmap(struct pipe_context *pctx,
81 struct pipe_transfer *ptrans)
82 {
83 struct fd_context *ctx = fd_context(pctx);
84 struct fd_resource *rsc = fd_resource(ptrans->resource);
85 if (!(ptrans->usage & PIPE_TRANSFER_UNSYNCHRONIZED))
86 fd_bo_cpu_fini(rsc->bo);
87 pipe_resource_reference(&ptrans->resource, NULL);
88 util_slab_free(&ctx->transfer_pool, ptrans);
89 }
90
91 static void *
92 fd_resource_transfer_map(struct pipe_context *pctx,
93 struct pipe_resource *prsc,
94 unsigned level, unsigned usage,
95 const struct pipe_box *box,
96 struct pipe_transfer **pptrans)
97 {
98 struct fd_context *ctx = fd_context(pctx);
99 struct fd_resource *rsc = fd_resource(prsc);
100 struct fd_resource_slice *slice = fd_resource_slice(rsc, level);
101 struct pipe_transfer *ptrans;
102 enum pipe_format format = prsc->format;
103 uint32_t op = 0;
104 char *buf;
105 int ret = 0;
106
107 ptrans = util_slab_alloc(&ctx->transfer_pool);
108 if (!ptrans)
109 return NULL;
110
111 /* util_slab_alloc() doesn't zero: */
112 memset(ptrans, 0, sizeof(*ptrans));
113
114 pipe_resource_reference(&ptrans->resource, prsc);
115 ptrans->level = level;
116 ptrans->usage = usage;
117 ptrans->box = *box;
118 ptrans->stride = slice->pitch * rsc->cpp;
119 ptrans->layer_stride = ptrans->stride;
120
121 if (usage & PIPE_TRANSFER_READ)
122 op |= DRM_FREEDRENO_PREP_READ;
123
124 if (usage & PIPE_TRANSFER_WRITE)
125 op |= DRM_FREEDRENO_PREP_WRITE;
126
127 if (usage & PIPE_TRANSFER_DISCARD_WHOLE_RESOURCE)
128 op |= DRM_FREEDRENO_PREP_NOSYNC;
129
130 /* some state trackers (at least XA) don't do this.. */
131 if (!(usage & (PIPE_TRANSFER_FLUSH_EXPLICIT | PIPE_TRANSFER_DISCARD_WHOLE_RESOURCE)))
132 fd_resource_transfer_flush_region(pctx, ptrans, box);
133
134 if (!(usage & PIPE_TRANSFER_UNSYNCHRONIZED)) {
135 ret = fd_bo_cpu_prep(rsc->bo, ctx->screen->pipe, op);
136 if ((ret == -EBUSY) && (usage & PIPE_TRANSFER_DISCARD_WHOLE_RESOURCE))
137 realloc_bo(rsc, fd_bo_size(rsc->bo));
138 else if (ret)
139 goto fail;
140 }
141
142 buf = fd_bo_map(rsc->bo);
143 if (!buf) {
144 fd_resource_transfer_unmap(pctx, ptrans);
145 return NULL;
146 }
147
148 *pptrans = ptrans;
149
150 return buf + slice->offset +
151 box->y / util_format_get_blockheight(format) * ptrans->stride +
152 box->x / util_format_get_blockwidth(format) * rsc->cpp +
153 box->z * slice->size0;
154
155 fail:
156 fd_resource_transfer_unmap(pctx, ptrans);
157 return NULL;
158 }
159
160 static void
161 fd_resource_destroy(struct pipe_screen *pscreen,
162 struct pipe_resource *prsc)
163 {
164 struct fd_resource *rsc = fd_resource(prsc);
165 if (rsc->bo)
166 fd_bo_del(rsc->bo);
167 FREE(rsc);
168 }
169
170 static boolean
171 fd_resource_get_handle(struct pipe_screen *pscreen,
172 struct pipe_resource *prsc,
173 struct winsys_handle *handle)
174 {
175 struct fd_resource *rsc = fd_resource(prsc);
176
177 return fd_screen_bo_get_handle(pscreen, rsc->bo,
178 rsc->slices[0].pitch * rsc->cpp, handle);
179 }
180
181
182 static const struct u_resource_vtbl fd_resource_vtbl = {
183 .resource_get_handle = fd_resource_get_handle,
184 .resource_destroy = fd_resource_destroy,
185 .transfer_map = fd_resource_transfer_map,
186 .transfer_flush_region = fd_resource_transfer_flush_region,
187 .transfer_unmap = fd_resource_transfer_unmap,
188 .transfer_inline_write = u_default_transfer_inline_write,
189 };
190
191 static uint32_t
192 setup_slices(struct fd_resource *rsc)
193 {
194 struct pipe_resource *prsc = &rsc->base.b;
195 uint32_t level, size = 0;
196 uint32_t width = prsc->width0;
197 uint32_t height = prsc->height0;
198 uint32_t depth = prsc->depth0;
199
200 for (level = 0; level <= prsc->last_level; level++) {
201 struct fd_resource_slice *slice = fd_resource_slice(rsc, level);
202 uint32_t aligned_width = align(width, 32);
203
204 slice->pitch = aligned_width;
205 slice->offset = size;
206 slice->size0 = slice->pitch * height * rsc->cpp;
207
208 size += slice->size0 * depth * prsc->array_size;
209
210 width = u_minify(width, 1);
211 height = u_minify(height, 1);
212 depth = u_minify(depth, 1);
213 }
214
215 return size;
216 }
217
218 /**
219 * Create a new texture object, using the given template info.
220 */
221 static struct pipe_resource *
222 fd_resource_create(struct pipe_screen *pscreen,
223 const struct pipe_resource *tmpl)
224 {
225 struct fd_resource *rsc = CALLOC_STRUCT(fd_resource);
226 struct pipe_resource *prsc = &rsc->base.b;
227 uint32_t size;
228
229 DBG("target=%d, format=%s, %ux%ux%u, array_size=%u, last_level=%u, "
230 "nr_samples=%u, usage=%u, bind=%x, flags=%x",
231 tmpl->target, util_format_name(tmpl->format),
232 tmpl->width0, tmpl->height0, tmpl->depth0,
233 tmpl->array_size, tmpl->last_level, tmpl->nr_samples,
234 tmpl->usage, tmpl->bind, tmpl->flags);
235
236 if (!rsc)
237 return NULL;
238
239 *prsc = *tmpl;
240
241 pipe_reference_init(&prsc->reference, 1);
242 prsc->screen = pscreen;
243
244 rsc->base.vtbl = &fd_resource_vtbl;
245 rsc->cpp = util_format_get_blocksize(tmpl->format);
246
247 assert(rsc->cpp);
248
249 size = setup_slices(rsc);
250
251 realloc_bo(rsc, size);
252 if (!rsc->bo)
253 goto fail;
254
255 return prsc;
256 fail:
257 fd_resource_destroy(pscreen, prsc);
258 return NULL;
259 }
260
261 /**
262 * Create a texture from a winsys_handle. The handle is often created in
263 * another process by first creating a pipe texture and then calling
264 * resource_get_handle.
265 */
266 static struct pipe_resource *
267 fd_resource_from_handle(struct pipe_screen *pscreen,
268 const struct pipe_resource *tmpl,
269 struct winsys_handle *handle)
270 {
271 struct fd_resource *rsc = CALLOC_STRUCT(fd_resource);
272 struct fd_resource_slice *slice = &rsc->slices[0];
273 struct pipe_resource *prsc = &rsc->base.b;
274
275 DBG("target=%d, format=%s, %ux%ux%u, array_size=%u, last_level=%u, "
276 "nr_samples=%u, usage=%u, bind=%x, flags=%x",
277 tmpl->target, util_format_name(tmpl->format),
278 tmpl->width0, tmpl->height0, tmpl->depth0,
279 tmpl->array_size, tmpl->last_level, tmpl->nr_samples,
280 tmpl->usage, tmpl->bind, tmpl->flags);
281
282 if (!rsc)
283 return NULL;
284
285 *prsc = *tmpl;
286
287 pipe_reference_init(&prsc->reference, 1);
288 prsc->screen = pscreen;
289
290 rsc->bo = fd_screen_bo_from_handle(pscreen, handle, &slice->pitch);
291 if (!rsc->bo)
292 goto fail;
293
294 rsc->base.vtbl = &fd_resource_vtbl;
295 rsc->cpp = util_format_get_blocksize(tmpl->format);
296 slice->pitch /= rsc->cpp;
297
298 assert(rsc->cpp);
299
300 return prsc;
301
302 fail:
303 fd_resource_destroy(pscreen, prsc);
304 return NULL;
305 }
306
307 static bool render_blit(struct pipe_context *pctx, struct pipe_blit_info *info);
308
309 /**
310 * Copy a block of pixels from one resource to another.
311 * The resource must be of the same format.
312 * Resources with nr_samples > 1 are not allowed.
313 */
314 static void
315 fd_resource_copy_region(struct pipe_context *pctx,
316 struct pipe_resource *dst,
317 unsigned dst_level,
318 unsigned dstx, unsigned dsty, unsigned dstz,
319 struct pipe_resource *src,
320 unsigned src_level,
321 const struct pipe_box *src_box)
322 {
323 /* TODO if we have 2d core, or other DMA engine that could be used
324 * for simple copies and reasonably easily synchronized with the 3d
325 * core, this is where we'd plug it in..
326 */
327 struct pipe_blit_info info = {
328 .dst = {
329 .resource = dst,
330 .box = {
331 .x = dstx,
332 .y = dsty,
333 .z = dstz,
334 .width = src_box->width,
335 .height = src_box->height,
336 .depth = src_box->depth,
337 },
338 .format = util_format_linear(dst->format),
339 },
340 .src = {
341 .resource = src,
342 .box = *src_box,
343 .format = util_format_linear(src->format),
344 },
345 .mask = PIPE_MASK_RGBA,
346 .filter = PIPE_TEX_FILTER_NEAREST,
347 };
348 render_blit(pctx, &info);
349 }
350
351 /* Optimal hardware path for blitting pixels.
352 * Scaling, format conversion, up- and downsampling (resolve) are allowed.
353 */
354 static void
355 fd_blit(struct pipe_context *pctx, const struct pipe_blit_info *blit_info)
356 {
357 struct pipe_blit_info info = *blit_info;
358
359 if (info.src.resource->nr_samples > 1 &&
360 info.dst.resource->nr_samples <= 1 &&
361 !util_format_is_depth_or_stencil(info.src.resource->format) &&
362 !util_format_is_pure_integer(info.src.resource->format)) {
363 DBG("color resolve unimplemented");
364 return;
365 }
366
367 if (util_try_blit_via_copy_region(pctx, &info)) {
368 return; /* done */
369 }
370
371 if (info.mask & PIPE_MASK_S) {
372 DBG("cannot blit stencil, skipping");
373 info.mask &= ~PIPE_MASK_S;
374 }
375
376 render_blit(pctx, &info);
377 }
378
379 static bool
380 render_blit(struct pipe_context *pctx, struct pipe_blit_info *info)
381 {
382 struct fd_context *ctx = fd_context(pctx);
383
384 if (!util_blitter_is_blit_supported(ctx->blitter, info)) {
385 DBG("blit unsupported %s -> %s",
386 util_format_short_name(info->src.resource->format),
387 util_format_short_name(info->dst.resource->format));
388 return false;
389 }
390
391 util_blitter_save_vertex_buffer_slot(ctx->blitter, ctx->vertexbuf.vb);
392 util_blitter_save_vertex_elements(ctx->blitter, ctx->vtx);
393 util_blitter_save_vertex_shader(ctx->blitter, ctx->prog.vp);
394 util_blitter_save_rasterizer(ctx->blitter, ctx->rasterizer);
395 util_blitter_save_viewport(ctx->blitter, &ctx->viewport);
396 util_blitter_save_scissor(ctx->blitter, &ctx->scissor);
397 util_blitter_save_fragment_shader(ctx->blitter, ctx->prog.fp);
398 util_blitter_save_blend(ctx->blitter, ctx->blend);
399 util_blitter_save_depth_stencil_alpha(ctx->blitter, ctx->zsa);
400 util_blitter_save_stencil_ref(ctx->blitter, &ctx->stencil_ref);
401 util_blitter_save_sample_mask(ctx->blitter, ctx->sample_mask);
402 util_blitter_save_framebuffer(ctx->blitter, &ctx->framebuffer);
403 util_blitter_save_fragment_sampler_states(ctx->blitter,
404 ctx->fragtex.num_samplers,
405 (void **)ctx->fragtex.samplers);
406 util_blitter_save_fragment_sampler_views(ctx->blitter,
407 ctx->fragtex.num_textures, ctx->fragtex.textures);
408
409 fd_hw_query_set_stage(ctx, ctx->ring, FD_STAGE_BLIT);
410 util_blitter_blit(ctx->blitter, info);
411 fd_hw_query_set_stage(ctx, ctx->ring, FD_STAGE_NULL);
412
413 return true;
414 }
415
416 static void
417 fd_flush_resource(struct pipe_context *ctx, struct pipe_resource *resource)
418 {
419 }
420
421 void
422 fd_resource_screen_init(struct pipe_screen *pscreen)
423 {
424 pscreen->resource_create = fd_resource_create;
425 pscreen->resource_from_handle = fd_resource_from_handle;
426 pscreen->resource_get_handle = u_resource_get_handle_vtbl;
427 pscreen->resource_destroy = u_resource_destroy_vtbl;
428 }
429
430 void
431 fd_resource_context_init(struct pipe_context *pctx)
432 {
433 pctx->transfer_map = u_transfer_map_vtbl;
434 pctx->transfer_flush_region = u_transfer_flush_region_vtbl;
435 pctx->transfer_unmap = u_transfer_unmap_vtbl;
436 pctx->transfer_inline_write = u_transfer_inline_write_vtbl;
437 pctx->create_surface = fd_create_surface;
438 pctx->surface_destroy = fd_surface_destroy;
439 pctx->resource_copy_region = fd_resource_copy_region;
440 pctx->blit = fd_blit;
441 pctx->flush_resource = fd_flush_resource;
442 }