iris: delete growing code and just die for now
[mesa.git] / src / gallium / drivers / iris / iris_batch.h
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 (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
20 * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS
21 * IN THE SOFTWARE.
22 */
23
24 #ifndef IRIS_BATCH_DOT_H
25 #define IRIS_BATCH_DOT_H
26
27 #include <stdint.h>
28 #include <stdbool.h>
29 #include "i915_drm.h"
30 #include "common/gen_decoder.h"
31
32 /* The kernel assumes batchbuffers are smaller than 256kB. */
33 #define MAX_BATCH_SIZE (256 * 1024)
34
35 struct iris_address {
36 struct iris_bo *bo;
37 uint64_t offset;
38 bool write;
39 };
40
41 struct iris_batch_buffer {
42 struct iris_bo *bo;
43 void *map;
44 void *map_next;
45 };
46
47 struct iris_batch {
48 struct iris_screen *screen;
49 struct iris_vtable *vtbl;
50 struct pipe_debug_callback *dbg;
51
52 /** Current batchbuffer being queued up. */
53 struct iris_batch_buffer cmdbuf;
54
55 /** Last BO submitted to the hardware. Used for glFinish(). */
56 struct iris_bo *last_cmd_bo;
57
58 uint32_t hw_ctx_id;
59
60 /** Which ring this batch targets - a I915_EXEC_RING_MASK value */
61 uint8_t ring;
62
63 bool no_wrap;
64
65 /** The validation list */
66 struct drm_i915_gem_exec_object2 *validation_list;
67 struct iris_bo **exec_bos;
68 int exec_count;
69 int exec_array_size;
70
71 /** The amount of aperture space (in bytes) used by all exec_bos */
72 int aperture_space;
73
74 struct {
75 /**
76 * Set of struct brw_bo * that have been rendered to within this
77 * batchbuffer and would need flushing before being used from another
78 * cache domain that isn't coherent with it (i.e. the sampler).
79 */
80 struct hash_table *render;
81
82 /**
83 * Set of struct brw_bo * that have been used as a depth buffer within
84 * this batchbuffer and would need flushing before being used from
85 * another cache domain that isn't coherent with it (i.e. the sampler).
86 */
87 struct set *depth;
88 } cache;
89
90 #if DEBUG
91 /** Map from batch offset to iris_alloc_state data (with DEBUG_BATCH) */
92 // XXX: unused
93 struct hash_table *state_sizes;
94 struct gen_batch_decode_ctx decoder;
95 #endif
96 };
97
98 void iris_init_batch(struct iris_batch *batch,
99 struct iris_screen *screen,
100 struct iris_vtable *vtbl,
101 struct pipe_debug_callback *dbg,
102 uint8_t ring);
103 void iris_batch_free(struct iris_batch *batch);
104 void iris_require_command_space(struct iris_batch *batch, unsigned size);
105 void *iris_get_command_space(struct iris_batch *batch, unsigned bytes);
106 void iris_batch_emit(struct iris_batch *batch, const void *data, unsigned size);
107
108 int _iris_batch_flush_fence(struct iris_batch *batch,
109 int in_fence_fd, int *out_fence_fd,
110 const char *file, int line);
111
112
113 #define iris_batch_flush_fence(batch, in_fence_fd, out_fence_fd) \
114 _iris_batch_flush_fence((batch), (in_fence_fd), (out_fence_fd), \
115 __FILE__, __LINE__)
116
117 #define iris_batch_flush(batch) iris_batch_flush_fence((batch), -1, NULL)
118
119 bool iris_batch_references(struct iris_batch *batch, struct iris_bo *bo);
120
121 #define RELOC_WRITE EXEC_OBJECT_WRITE
122
123 void iris_use_pinned_bo(struct iris_batch *batch, struct iris_bo *bo,
124 bool writable);
125
126 #endif