winsys/amdgpu: use the new raw CS API
[mesa.git] / src / gallium / winsys / amdgpu / drm / amdgpu_cs.h
1 /*
2 * Copyright © 2011 Marek Olšák <maraeo@gmail.com>
3 * Copyright © 2015 Advanced Micro Devices, Inc.
4 * All Rights Reserved.
5 *
6 * Permission is hereby granted, free of charge, to any person obtaining
7 * a copy of this software and associated documentation files (the
8 * "Software"), to deal in the Software without restriction, including
9 * without limitation the rights to use, copy, modify, merge, publish,
10 * distribute, sub license, and/or sell copies of the Software, and to
11 * permit persons to whom the Software is furnished to do so, subject to
12 * the following conditions:
13 *
14 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
15 * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES
16 * OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
17 * NON-INFRINGEMENT. IN NO EVENT SHALL THE COPYRIGHT HOLDERS, AUTHORS
18 * AND/OR ITS SUPPLIERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE,
20 * ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE
21 * USE OR OTHER DEALINGS IN THE SOFTWARE.
22 *
23 * The above copyright notice and this permission notice (including the
24 * next paragraph) shall be included in all copies or substantial portions
25 * of the Software.
26 */
27 /*
28 * Authors:
29 * Marek Olšák <maraeo@gmail.com>
30 */
31
32 #ifndef AMDGPU_CS_H
33 #define AMDGPU_CS_H
34
35 #include "amdgpu_bo.h"
36 #include "util/u_memory.h"
37 #include <amdgpu_drm.h>
38
39 struct amdgpu_ctx {
40 struct amdgpu_winsys *ws;
41 amdgpu_context_handle ctx;
42 amdgpu_bo_handle user_fence_bo;
43 uint64_t *user_fence_cpu_address_base;
44 int refcount;
45 unsigned initial_num_total_rejected_cs;
46 unsigned num_rejected_cs;
47 };
48
49 struct amdgpu_cs_buffer {
50 struct amdgpu_winsys_bo *bo;
51 union {
52 struct {
53 uint64_t priority_usage;
54 } real;
55 struct {
56 uint32_t real_idx; /* index of underlying real BO */
57 } slab;
58 } u;
59 enum radeon_bo_usage usage;
60 };
61
62 enum ib_type {
63 IB_MAIN,
64 IB_NUM,
65 };
66
67 struct amdgpu_ib {
68 struct radeon_winsys_cs base;
69
70 /* A buffer out of which new IBs are allocated. */
71 struct pb_buffer *big_ib_buffer;
72 uint8_t *ib_mapped;
73 unsigned used_ib_space;
74 unsigned max_ib_size;
75 uint32_t *ptr_ib_size;
76 enum ib_type ib_type;
77 };
78
79 struct amdgpu_cs_context {
80 struct drm_amdgpu_cs_chunk_ib ib[IB_NUM];
81
82 /* Buffers. */
83 unsigned max_real_buffers;
84 unsigned num_real_buffers;
85 struct amdgpu_cs_buffer *real_buffers;
86
87 unsigned max_real_submit;
88 amdgpu_bo_handle *handles;
89 uint8_t *flags;
90
91 unsigned num_slab_buffers;
92 unsigned max_slab_buffers;
93 struct amdgpu_cs_buffer *slab_buffers;
94
95 unsigned num_sparse_buffers;
96 unsigned max_sparse_buffers;
97 struct amdgpu_cs_buffer *sparse_buffers;
98
99 int buffer_indices_hashlist[4096];
100
101 struct amdgpu_winsys_bo *last_added_bo;
102 unsigned last_added_bo_index;
103 unsigned last_added_bo_usage;
104 uint64_t last_added_bo_priority_usage;
105
106 struct pipe_fence_handle **fence_dependencies;
107 unsigned num_fence_dependencies;
108 unsigned max_fence_dependencies;
109
110 struct pipe_fence_handle *fence;
111
112 /* the error returned from cs_flush for non-async submissions */
113 int error_code;
114 };
115
116 struct amdgpu_cs {
117 struct amdgpu_ib main; /* must be first because this is inherited */
118 struct amdgpu_ctx *ctx;
119 enum ring_type ring_type;
120 struct drm_amdgpu_cs_chunk_fence fence_chunk;
121
122 /* We flip between these two CS. While one is being consumed
123 * by the kernel in another thread, the other one is being filled
124 * by the pipe driver. */
125 struct amdgpu_cs_context csc1;
126 struct amdgpu_cs_context csc2;
127 /* The currently-used CS. */
128 struct amdgpu_cs_context *csc;
129 /* The CS being currently-owned by the other thread. */
130 struct amdgpu_cs_context *cst;
131
132 /* Flush CS. */
133 void (*flush_cs)(void *ctx, unsigned flags, struct pipe_fence_handle **fence);
134 void *flush_data;
135
136 struct util_queue_fence flush_completed;
137 struct pipe_fence_handle *next_fence;
138 };
139
140 struct amdgpu_fence {
141 struct pipe_reference reference;
142
143 struct amdgpu_ctx *ctx; /* submission context */
144 struct amdgpu_cs_fence fence;
145 uint64_t *user_fence_cpu_address;
146
147 /* If the fence is unknown due to an IB still being submitted
148 * in the other thread. */
149 volatile int submission_in_progress; /* bool (int for atomicity) */
150 volatile int signalled; /* bool (int for atomicity) */
151 };
152
153 static inline void amdgpu_ctx_unref(struct amdgpu_ctx *ctx)
154 {
155 if (p_atomic_dec_zero(&ctx->refcount)) {
156 amdgpu_cs_ctx_free(ctx->ctx);
157 amdgpu_bo_free(ctx->user_fence_bo);
158 FREE(ctx);
159 }
160 }
161
162 static inline void amdgpu_fence_reference(struct pipe_fence_handle **dst,
163 struct pipe_fence_handle *src)
164 {
165 struct amdgpu_fence **rdst = (struct amdgpu_fence **)dst;
166 struct amdgpu_fence *rsrc = (struct amdgpu_fence *)src;
167
168 if (pipe_reference(&(*rdst)->reference, &rsrc->reference)) {
169 amdgpu_ctx_unref((*rdst)->ctx);
170 FREE(*rdst);
171 }
172 *rdst = rsrc;
173 }
174
175 int amdgpu_lookup_buffer(struct amdgpu_cs_context *cs, struct amdgpu_winsys_bo *bo);
176
177 static inline struct amdgpu_ib *
178 amdgpu_ib(struct radeon_winsys_cs *base)
179 {
180 return (struct amdgpu_ib *)base;
181 }
182
183 static inline struct amdgpu_cs *
184 amdgpu_cs(struct radeon_winsys_cs *base)
185 {
186 assert(amdgpu_ib(base)->ib_type == IB_MAIN);
187 return (struct amdgpu_cs*)base;
188 }
189
190 #define get_container(member_ptr, container_type, container_member) \
191 (container_type *)((char *)(member_ptr) - offsetof(container_type, container_member))
192
193 static inline struct amdgpu_cs *
194 amdgpu_cs_from_ib(struct amdgpu_ib *ib)
195 {
196 switch (ib->ib_type) {
197 case IB_MAIN:
198 return get_container(ib, struct amdgpu_cs, main);
199 default:
200 unreachable("bad ib_type");
201 }
202 }
203
204 static inline bool
205 amdgpu_bo_is_referenced_by_cs(struct amdgpu_cs *cs,
206 struct amdgpu_winsys_bo *bo)
207 {
208 int num_refs = bo->num_cs_references;
209 return num_refs == bo->ws->num_cs ||
210 (num_refs && amdgpu_lookup_buffer(cs->csc, bo) != -1);
211 }
212
213 static inline bool
214 amdgpu_bo_is_referenced_by_cs_with_usage(struct amdgpu_cs *cs,
215 struct amdgpu_winsys_bo *bo,
216 enum radeon_bo_usage usage)
217 {
218 int index;
219 struct amdgpu_cs_buffer *buffer;
220
221 if (!bo->num_cs_references)
222 return false;
223
224 index = amdgpu_lookup_buffer(cs->csc, bo);
225 if (index == -1)
226 return false;
227
228 buffer = bo->bo ? &cs->csc->real_buffers[index] :
229 bo->sparse ? &cs->csc->sparse_buffers[index] :
230 &cs->csc->slab_buffers[index];
231
232 return (buffer->usage & usage) != 0;
233 }
234
235 static inline bool
236 amdgpu_bo_is_referenced_by_any_cs(struct amdgpu_winsys_bo *bo)
237 {
238 return bo->num_cs_references != 0;
239 }
240
241 bool amdgpu_fence_wait(struct pipe_fence_handle *fence, uint64_t timeout,
242 bool absolute);
243 void amdgpu_add_fences(struct amdgpu_winsys_bo *bo,
244 unsigned num_fences,
245 struct pipe_fence_handle **fences);
246 void amdgpu_cs_sync_flush(struct radeon_winsys_cs *rcs);
247 void amdgpu_cs_init_functions(struct amdgpu_winsys *ws);
248 void amdgpu_cs_submit_ib(void *job, int thread_index);
249
250 #endif