freedreno: push resource tracking down into batch
[mesa.git] / src / gallium / drivers / freedreno / freedreno_batch.h
1 /*
2 * Copyright (C) 2016 Rob Clark <robclark@freedesktop.org>
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 (including the next
12 * paragraph) shall be included in all copies or substantial portions of the
13 * 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 NONINFRINGEMENT. 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 FROM,
20 * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21 * SOFTWARE.
22 *
23 * Authors:
24 * Rob Clark <robclark@freedesktop.org>
25 */
26
27 #ifndef FREEDRENO_BATCH_H_
28 #define FREEDRENO_BATCH_H_
29
30 #include "util/u_inlines.h"
31
32 #include "freedreno_util.h"
33
34 struct fd_context;
35 struct fd_resource;
36 enum fd_resource_status;
37
38 /* A batch tracks everything about a cmdstream batch/submit, including the
39 * ringbuffers used for binning, draw, and gmem cmds, list of associated
40 * fd_resource-s, etc.
41 */
42 struct fd_batch {
43 struct pipe_reference reference;
44 unsigned seqno;
45 struct fd_context *ctx;
46
47 /** draw pass cmdstream: */
48 struct fd_ringbuffer *draw;
49 /** binning pass cmdstream: */
50 struct fd_ringbuffer *binning;
51 /** tiling/gmem (IB0) cmdstream: */
52 struct fd_ringbuffer *gmem;
53
54 /** list of resources used by currently-unsubmitted batch */
55 struct list_head used_resources;
56 };
57
58 struct fd_batch * fd_batch_create(struct fd_context *ctx);
59
60 void fd_batch_flush(struct fd_batch *batch);
61 void fd_batch_resource_used(struct fd_batch *batch, struct fd_resource *rsc,
62 enum fd_resource_status status);
63 void fd_batch_check_size(struct fd_batch *batch);
64
65 /* not called directly: */
66 void __fd_batch_describe(char* buf, const struct fd_batch *batch);
67 void __fd_batch_destroy(struct fd_batch *batch);
68
69 static inline void
70 fd_batch_reference(struct fd_batch **ptr, struct fd_batch *batch)
71 {
72 struct fd_batch *old_batch = *ptr;
73 if (pipe_reference_described(&(*ptr)->reference, &batch->reference,
74 (debug_reference_descriptor)__fd_batch_describe))
75 __fd_batch_destroy(old_batch);
76 *ptr = batch;
77 }
78
79 #endif /* FREEDRENO_BATCH_H_ */