winsys/amdgpu: add a parallel compute IB coupled with a gfx IB
[mesa.git] / src / gallium / drivers / radeon / radeon_winsys.h
1 /*
2 * Copyright 2008 Corbin Simpson <MostAwesomeDude@gmail.com>
3 * Copyright 2010 Marek Olšák <maraeo@gmail.com>
4 * Copyright 2018 Advanced Micro Devices, Inc.
5 * All Rights Reserved.
6 *
7 * Permission is hereby granted, free of charge, to any person obtaining a
8 * copy of this software and associated documentation files (the "Software"),
9 * to deal in the Software without restriction, including without limitation
10 * on the rights to use, copy, modify, merge, publish, distribute, sub
11 * license, and/or sell copies of the Software, and to permit persons to whom
12 * the Software is furnished to do so, subject to the following conditions:
13 *
14 * The above copyright notice and this permission notice (including the next
15 * paragraph) shall be included in all copies or substantial portions of the
16 * Software.
17 *
18 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
19 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
20 * FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT. IN NO EVENT SHALL
21 * THE AUTHOR(S) AND/OR THEIR SUPPLIERS BE LIABLE FOR ANY CLAIM,
22 * DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR
23 * OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE
24 * USE OR OTHER DEALINGS IN THE SOFTWARE. */
25
26 #ifndef RADEON_WINSYS_H
27 #define RADEON_WINSYS_H
28
29 /* The public winsys interface header for the radeon driver. */
30
31 /* Whether the next IB can start immediately and not wait for draws and
32 * dispatches from the current IB to finish. */
33 #define RADEON_FLUSH_START_NEXT_GFX_IB_NOW (1u << 31)
34
35 #define RADEON_FLUSH_ASYNC_START_NEXT_GFX_IB_NOW \
36 (PIPE_FLUSH_ASYNC | RADEON_FLUSH_START_NEXT_GFX_IB_NOW)
37
38 #include "pipebuffer/pb_buffer.h"
39
40 #include "amd/common/ac_gpu_info.h"
41 #include "amd/common/ac_surface.h"
42
43 /* Tiling flags. */
44 enum radeon_bo_layout {
45 RADEON_LAYOUT_LINEAR = 0,
46 RADEON_LAYOUT_TILED,
47 RADEON_LAYOUT_SQUARETILED,
48
49 RADEON_LAYOUT_UNKNOWN
50 };
51
52 enum radeon_bo_domain { /* bitfield */
53 RADEON_DOMAIN_GTT = 2,
54 RADEON_DOMAIN_VRAM = 4,
55 RADEON_DOMAIN_VRAM_GTT = RADEON_DOMAIN_VRAM | RADEON_DOMAIN_GTT,
56 RADEON_DOMAIN_GDS = 8,
57 RADEON_DOMAIN_OA = 16,
58 };
59
60 enum radeon_bo_flag { /* bitfield */
61 RADEON_FLAG_GTT_WC = (1 << 0),
62 RADEON_FLAG_NO_CPU_ACCESS = (1 << 1),
63 RADEON_FLAG_NO_SUBALLOC = (1 << 2),
64 RADEON_FLAG_SPARSE = (1 << 3),
65 RADEON_FLAG_NO_INTERPROCESS_SHARING = (1 << 4),
66 RADEON_FLAG_READ_ONLY = (1 << 5),
67 RADEON_FLAG_32BIT = (1 << 6),
68 };
69
70 enum radeon_dependency_flag {
71 /* Add the dependency to the parallel compute IB only. */
72 RADEON_DEPENDENCY_PARALLEL_COMPUTE_ONLY = 1 << 0,
73
74 /* Instead of waiting for a job to finish execution, the dependency will
75 * be signaled when the job starts execution.
76 */
77 RADEON_DEPENDENCY_START_FENCE = 1 << 1,
78 };
79
80 enum radeon_bo_usage { /* bitfield */
81 RADEON_USAGE_READ = 2,
82 RADEON_USAGE_WRITE = 4,
83 RADEON_USAGE_READWRITE = RADEON_USAGE_READ | RADEON_USAGE_WRITE,
84
85 /* The winsys ensures that the CS submission will be scheduled after
86 * previously flushed CSs referencing this BO in a conflicting way.
87 */
88 RADEON_USAGE_SYNCHRONIZED = 8
89 };
90
91 enum radeon_transfer_flags {
92 /* Indicates that the caller will unmap the buffer.
93 *
94 * Not unmapping buffers is an important performance optimization for
95 * OpenGL (avoids kernel overhead for frequently mapped buffers).
96 */
97 RADEON_TRANSFER_TEMPORARY = (PIPE_TRANSFER_DRV_PRV << 0),
98 };
99
100 #define RADEON_SPARSE_PAGE_SIZE (64 * 1024)
101
102 enum ring_type {
103 RING_GFX = 0,
104 RING_COMPUTE,
105 RING_DMA,
106 RING_UVD,
107 RING_VCE,
108 RING_UVD_ENC,
109 RING_VCN_DEC,
110 RING_VCN_ENC,
111 RING_VCN_JPEG,
112 RING_LAST,
113 };
114
115 enum radeon_value_id {
116 RADEON_REQUESTED_VRAM_MEMORY,
117 RADEON_REQUESTED_GTT_MEMORY,
118 RADEON_MAPPED_VRAM,
119 RADEON_MAPPED_GTT,
120 RADEON_BUFFER_WAIT_TIME_NS,
121 RADEON_NUM_MAPPED_BUFFERS,
122 RADEON_TIMESTAMP,
123 RADEON_NUM_GFX_IBS,
124 RADEON_NUM_SDMA_IBS,
125 RADEON_GFX_BO_LIST_COUNTER, /* number of BOs submitted in gfx IBs */
126 RADEON_GFX_IB_SIZE_COUNTER,
127 RADEON_NUM_BYTES_MOVED,
128 RADEON_NUM_EVICTIONS,
129 RADEON_NUM_VRAM_CPU_PAGE_FAULTS,
130 RADEON_VRAM_USAGE,
131 RADEON_VRAM_VIS_USAGE,
132 RADEON_GTT_USAGE,
133 RADEON_GPU_TEMPERATURE, /* DRM 2.42.0 */
134 RADEON_CURRENT_SCLK,
135 RADEON_CURRENT_MCLK,
136 RADEON_GPU_RESET_COUNTER, /* DRM 2.43.0 */
137 RADEON_CS_THREAD_TIME,
138 };
139
140 enum radeon_bo_priority {
141 /* Each group of two has the same priority. */
142 RADEON_PRIO_FENCE = 0,
143 RADEON_PRIO_TRACE,
144
145 RADEON_PRIO_SO_FILLED_SIZE = 2,
146 RADEON_PRIO_QUERY,
147
148 RADEON_PRIO_IB1 = 4, /* main IB submitted to the kernel */
149 RADEON_PRIO_IB2, /* IB executed with INDIRECT_BUFFER */
150
151 RADEON_PRIO_DRAW_INDIRECT = 6,
152 RADEON_PRIO_INDEX_BUFFER,
153
154 RADEON_PRIO_CP_DMA = 8,
155 RADEON_PRIO_BORDER_COLORS,
156
157 RADEON_PRIO_CONST_BUFFER = 10,
158 RADEON_PRIO_DESCRIPTORS,
159
160 RADEON_PRIO_SAMPLER_BUFFER = 12,
161 RADEON_PRIO_VERTEX_BUFFER,
162
163 RADEON_PRIO_SHADER_RW_BUFFER = 14,
164 RADEON_PRIO_COMPUTE_GLOBAL,
165
166 RADEON_PRIO_SAMPLER_TEXTURE = 16,
167 RADEON_PRIO_SHADER_RW_IMAGE,
168
169 RADEON_PRIO_SAMPLER_TEXTURE_MSAA = 18,
170 RADEON_PRIO_COLOR_BUFFER,
171
172 RADEON_PRIO_DEPTH_BUFFER = 20,
173
174 RADEON_PRIO_COLOR_BUFFER_MSAA = 22,
175
176 RADEON_PRIO_DEPTH_BUFFER_MSAA = 24,
177
178 RADEON_PRIO_SEPARATE_META = 26,
179 RADEON_PRIO_SHADER_BINARY, /* the hw can't hide instruction cache misses */
180
181 RADEON_PRIO_SHADER_RINGS = 28,
182
183 RADEON_PRIO_SCRATCH_BUFFER = 30,
184 /* 31 is the maximum value */
185 };
186
187 struct winsys_handle;
188 struct radeon_winsys_ctx;
189
190 struct radeon_cmdbuf_chunk {
191 unsigned cdw; /* Number of used dwords. */
192 unsigned max_dw; /* Maximum number of dwords. */
193 uint32_t *buf; /* The base pointer of the chunk. */
194 };
195
196 struct radeon_cmdbuf {
197 struct radeon_cmdbuf_chunk current;
198 struct radeon_cmdbuf_chunk *prev;
199 unsigned num_prev; /* Number of previous chunks. */
200 unsigned max_prev; /* Space in array pointed to by prev. */
201 unsigned prev_dw; /* Total number of dwords in previous chunks. */
202
203 /* Memory usage of the buffer list. These are always 0 for preamble IBs. */
204 uint64_t used_vram;
205 uint64_t used_gart;
206 uint64_t gpu_address;
207 };
208
209 /* Tiling info for display code, DRI sharing, and other data. */
210 struct radeon_bo_metadata {
211 /* Tiling flags describing the texture layout for display code
212 * and DRI sharing.
213 */
214 union {
215 struct {
216 enum radeon_bo_layout microtile;
217 enum radeon_bo_layout macrotile;
218 unsigned pipe_config;
219 unsigned bankw;
220 unsigned bankh;
221 unsigned tile_split;
222 unsigned mtilea;
223 unsigned num_banks;
224 unsigned stride;
225 bool scanout;
226 } legacy;
227
228 struct {
229 /* surface flags */
230 unsigned swizzle_mode:5;
231
232 /* DCC flags */
233 /* [31:8]: max offset = 4GB - 256; 0 = DCC disabled */
234 unsigned dcc_offset_256B:24;
235 unsigned dcc_pitch_max:14; /* (mip chain pitch - 1) for DCN */
236 unsigned dcc_independent_64B:1;
237 } gfx9;
238 } u;
239
240 /* Additional metadata associated with the buffer, in bytes.
241 * The maximum size is 64 * 4. This is opaque for the winsys & kernel.
242 * Supported by amdgpu only.
243 */
244 uint32_t size_metadata;
245 uint32_t metadata[64];
246 };
247
248 enum radeon_feature_id {
249 RADEON_FID_R300_HYPERZ_ACCESS, /* ZMask + HiZ */
250 RADEON_FID_R300_CMASK_ACCESS,
251 };
252
253 struct radeon_bo_list_item {
254 uint64_t bo_size;
255 uint64_t vm_address;
256 uint32_t priority_usage; /* mask of (1 << RADEON_PRIO_*) */
257 };
258
259 struct radeon_winsys {
260 /**
261 * The screen object this winsys was created for
262 */
263 struct pipe_screen *screen;
264
265 /**
266 * Decrement the winsys reference count.
267 *
268 * \param ws The winsys this function is called for.
269 * \return True if the winsys and screen should be destroyed.
270 */
271 bool (*unref)(struct radeon_winsys *ws);
272
273 /**
274 * Destroy this winsys.
275 *
276 * \param ws The winsys this function is called from.
277 */
278 void (*destroy)(struct radeon_winsys *ws);
279
280 /**
281 * Query an info structure from winsys.
282 *
283 * \param ws The winsys this function is called from.
284 * \param info Return structure
285 */
286 void (*query_info)(struct radeon_winsys *ws,
287 struct radeon_info *info);
288
289 /**
290 * A hint for the winsys that it should pin its execution threads to
291 * a group of cores sharing a specific L3 cache if the CPU has multiple
292 * L3 caches. This is needed for good multithreading performance on
293 * AMD Zen CPUs.
294 */
295 void (*pin_threads_to_L3_cache)(struct radeon_winsys *ws, unsigned cache);
296
297 /**************************************************************************
298 * Buffer management. Buffer attributes are mostly fixed over its lifetime.
299 *
300 * Remember that gallium gets to choose the interface it needs, and the
301 * window systems must then implement that interface (rather than the
302 * other way around...).
303 *************************************************************************/
304
305 /**
306 * Create a buffer object.
307 *
308 * \param ws The winsys this function is called from.
309 * \param size The size to allocate.
310 * \param alignment An alignment of the buffer in memory.
311 * \param use_reusable_pool Whether the cache buffer manager should be used.
312 * \param domain A bitmask of the RADEON_DOMAIN_* flags.
313 * \return The created buffer object.
314 */
315 struct pb_buffer *(*buffer_create)(struct radeon_winsys *ws,
316 uint64_t size,
317 unsigned alignment,
318 enum radeon_bo_domain domain,
319 enum radeon_bo_flag flags);
320
321 /**
322 * Map the entire data store of a buffer object into the client's address
323 * space.
324 *
325 * Callers are expected to unmap buffers again if and only if the
326 * RADEON_TRANSFER_TEMPORARY flag is set in \p usage.
327 *
328 * \param buf A winsys buffer object to map.
329 * \param cs A command stream to flush if the buffer is referenced by it.
330 * \param usage A bitmask of the PIPE_TRANSFER_* and RADEON_TRANSFER_* flags.
331 * \return The pointer at the beginning of the buffer.
332 */
333 void *(*buffer_map)(struct pb_buffer *buf,
334 struct radeon_cmdbuf *cs,
335 enum pipe_transfer_usage usage);
336
337 /**
338 * Unmap a buffer object from the client's address space.
339 *
340 * \param buf A winsys buffer object to unmap.
341 */
342 void (*buffer_unmap)(struct pb_buffer *buf);
343
344 /**
345 * Wait for the buffer and return true if the buffer is not used
346 * by the device.
347 *
348 * The timeout of 0 will only return the status.
349 * The timeout of PIPE_TIMEOUT_INFINITE will always wait until the buffer
350 * is idle.
351 */
352 bool (*buffer_wait)(struct pb_buffer *buf, uint64_t timeout,
353 enum radeon_bo_usage usage);
354
355 /**
356 * Return buffer metadata.
357 * (tiling info for display code, DRI sharing, and other data)
358 *
359 * \param buf A winsys buffer object to get the flags from.
360 * \param md Metadata
361 */
362 void (*buffer_get_metadata)(struct pb_buffer *buf,
363 struct radeon_bo_metadata *md);
364
365 /**
366 * Set buffer metadata.
367 * (tiling info for display code, DRI sharing, and other data)
368 *
369 * \param buf A winsys buffer object to set the flags for.
370 * \param md Metadata
371 */
372 void (*buffer_set_metadata)(struct pb_buffer *buf,
373 struct radeon_bo_metadata *md);
374
375 /**
376 * Get a winsys buffer from a winsys handle. The internal structure
377 * of the handle is platform-specific and only a winsys should access it.
378 *
379 * \param ws The winsys this function is called from.
380 * \param whandle A winsys handle pointer as was received from a state
381 * tracker.
382 * \param stride The returned buffer stride in bytes.
383 */
384 struct pb_buffer *(*buffer_from_handle)(struct radeon_winsys *ws,
385 struct winsys_handle *whandle,
386 unsigned vm_alignment,
387 unsigned *stride, unsigned *offset);
388
389 /**
390 * Get a winsys buffer from a user pointer. The resulting buffer can't
391 * be exported. Both pointer and size must be page aligned.
392 *
393 * \param ws The winsys this function is called from.
394 * \param pointer User pointer to turn into a buffer object.
395 * \param Size Size in bytes for the new buffer.
396 */
397 struct pb_buffer *(*buffer_from_ptr)(struct radeon_winsys *ws,
398 void *pointer, uint64_t size);
399
400 /**
401 * Whether the buffer was created from a user pointer.
402 *
403 * \param buf A winsys buffer object
404 * \return whether \p buf was created via buffer_from_ptr
405 */
406 bool (*buffer_is_user_ptr)(struct pb_buffer *buf);
407
408 /** Whether the buffer was suballocated. */
409 bool (*buffer_is_suballocated)(struct pb_buffer *buf);
410
411 /**
412 * Get a winsys handle from a winsys buffer. The internal structure
413 * of the handle is platform-specific and only a winsys should access it.
414 *
415 * \param buf A winsys buffer object to get the handle from.
416 * \param whandle A winsys handle pointer.
417 * \param stride A stride of the buffer in bytes, for texturing.
418 * \return true on success.
419 */
420 bool (*buffer_get_handle)(struct pb_buffer *buf,
421 unsigned stride, unsigned offset,
422 unsigned slice_size,
423 struct winsys_handle *whandle);
424
425 /**
426 * Change the commitment of a (64KB-page aligned) region of the given
427 * sparse buffer.
428 *
429 * \warning There is no automatic synchronization with command submission.
430 *
431 * \note Only implemented by the amdgpu winsys.
432 *
433 * \return false on out of memory or other failure, true on success.
434 */
435 bool (*buffer_commit)(struct pb_buffer *buf,
436 uint64_t offset, uint64_t size,
437 bool commit);
438
439 /**
440 * Return the virtual address of a buffer.
441 *
442 * When virtual memory is not in use, this is the offset relative to the
443 * relocation base (non-zero for sub-allocated buffers).
444 *
445 * \param buf A winsys buffer object
446 * \return virtual address
447 */
448 uint64_t (*buffer_get_virtual_address)(struct pb_buffer *buf);
449
450 /**
451 * Return the offset of this buffer relative to the relocation base.
452 * This is only non-zero for sub-allocated buffers.
453 *
454 * This is only supported in the radeon winsys, since amdgpu uses virtual
455 * addresses in submissions even for the video engines.
456 *
457 * \param buf A winsys buffer object
458 * \return the offset for relocations
459 */
460 unsigned (*buffer_get_reloc_offset)(struct pb_buffer *buf);
461
462 /**
463 * Query the initial placement of the buffer from the kernel driver.
464 */
465 enum radeon_bo_domain (*buffer_get_initial_domain)(struct pb_buffer *buf);
466
467 /**************************************************************************
468 * Command submission.
469 *
470 * Each pipe context should create its own command stream and submit
471 * commands independently of other contexts.
472 *************************************************************************/
473
474 /**
475 * Create a command submission context.
476 * Various command streams can be submitted to the same context.
477 */
478 struct radeon_winsys_ctx *(*ctx_create)(struct radeon_winsys *ws);
479
480 /**
481 * Destroy a context.
482 */
483 void (*ctx_destroy)(struct radeon_winsys_ctx *ctx);
484
485 /**
486 * Query a GPU reset status.
487 */
488 enum pipe_reset_status (*ctx_query_reset_status)(struct radeon_winsys_ctx *ctx);
489
490 /**
491 * Create a command stream.
492 *
493 * \param ctx The submission context
494 * \param ring_type The ring type (GFX, DMA, UVD)
495 * \param flush Flush callback function associated with the command stream.
496 * \param user User pointer that will be passed to the flush callback.
497 */
498 struct radeon_cmdbuf *(*cs_create)(struct radeon_winsys_ctx *ctx,
499 enum ring_type ring_type,
500 void (*flush)(void *ctx, unsigned flags,
501 struct pipe_fence_handle **fence),
502 void *flush_ctx,
503 bool stop_exec_on_failure);
504
505 /**
506 * Add a parallel compute IB to a gfx IB. It will share the buffer list
507 * and fence dependencies with the gfx IB. The gfx flush call will submit
508 * both IBs at the same time.
509 *
510 * The compute IB doesn't have an output fence, so the primary IB has
511 * to use a wait packet for synchronization.
512 *
513 * The returned IB is only a stream for writing packets to the new
514 * IB. Calling other winsys functions with it is not allowed, not even
515 * "cs_destroy". Use the gfx IB instead.
516 *
517 * \param cs Gfx IB
518 */
519 struct radeon_cmdbuf *(*cs_add_parallel_compute_ib)(struct radeon_cmdbuf *cs,
520 bool uses_gds_ordered_append);
521
522 /**
523 * Destroy a command stream.
524 *
525 * \param cs A command stream to destroy.
526 */
527 void (*cs_destroy)(struct radeon_cmdbuf *cs);
528
529 /**
530 * Add a buffer. Each buffer used by a CS must be added using this function.
531 *
532 * \param cs Command stream
533 * \param buf Buffer
534 * \param usage Whether the buffer is used for read and/or write.
535 * \param domain Bitmask of the RADEON_DOMAIN_* flags.
536 * \param priority A higher number means a greater chance of being
537 * placed in the requested domain. 15 is the maximum.
538 * \return Buffer index.
539 */
540 unsigned (*cs_add_buffer)(struct radeon_cmdbuf *cs,
541 struct pb_buffer *buf,
542 enum radeon_bo_usage usage,
543 enum radeon_bo_domain domain,
544 enum radeon_bo_priority priority);
545
546 /**
547 * Return the index of an already-added buffer.
548 *
549 * Not supported on amdgpu. Drivers with GPUVM should not care about
550 * buffer indices.
551 *
552 * \param cs Command stream
553 * \param buf Buffer
554 * \return The buffer index, or -1 if the buffer has not been added.
555 */
556 int (*cs_lookup_buffer)(struct radeon_cmdbuf *cs,
557 struct pb_buffer *buf);
558
559 /**
560 * Return true if there is enough memory in VRAM and GTT for the buffers
561 * added so far. If the validation fails, all buffers which have
562 * been added since the last call of cs_validate will be removed and
563 * the CS will be flushed (provided there are still any buffers).
564 *
565 * \param cs A command stream to validate.
566 */
567 bool (*cs_validate)(struct radeon_cmdbuf *cs);
568
569 /**
570 * Check whether the given number of dwords is available in the IB.
571 * Optionally chain a new chunk of the IB if necessary and supported.
572 *
573 * \param cs A command stream.
574 * \param dw Number of CS dwords requested by the caller.
575 */
576 bool (*cs_check_space)(struct radeon_cmdbuf *cs, unsigned dw);
577
578 /**
579 * Return the buffer list.
580 *
581 * This is the buffer list as passed to the kernel, i.e. it only contains
582 * the parent buffers of sub-allocated buffers.
583 *
584 * \param cs Command stream
585 * \param list Returned buffer list. Set to NULL to query the count only.
586 * \return The buffer count.
587 */
588 unsigned (*cs_get_buffer_list)(struct radeon_cmdbuf *cs,
589 struct radeon_bo_list_item *list);
590
591 /**
592 * Flush a command stream.
593 *
594 * \param cs A command stream to flush.
595 * \param flags, PIPE_FLUSH_* flags.
596 * \param fence Pointer to a fence. If non-NULL, a fence is inserted
597 * after the CS and is returned through this parameter.
598 * \return Negative POSIX error code or 0 for success.
599 * Asynchronous submissions never return an error.
600 */
601 int (*cs_flush)(struct radeon_cmdbuf *cs,
602 unsigned flags,
603 struct pipe_fence_handle **fence);
604
605 /**
606 * Create a fence before the CS is flushed.
607 * The user must flush manually to complete the initializaton of the fence.
608 *
609 * The fence must not be used for anything except \ref cs_add_fence_dependency
610 * before the flush.
611 */
612 struct pipe_fence_handle *(*cs_get_next_fence)(struct radeon_cmdbuf *cs);
613
614 /**
615 * Return true if a buffer is referenced by a command stream.
616 *
617 * \param cs A command stream.
618 * \param buf A winsys buffer.
619 */
620 bool (*cs_is_buffer_referenced)(struct radeon_cmdbuf *cs,
621 struct pb_buffer *buf,
622 enum radeon_bo_usage usage);
623
624 /**
625 * Request access to a feature for a command stream.
626 *
627 * \param cs A command stream.
628 * \param fid Feature ID, one of RADEON_FID_*
629 * \param enable Whether to enable or disable the feature.
630 */
631 bool (*cs_request_feature)(struct radeon_cmdbuf *cs,
632 enum radeon_feature_id fid,
633 bool enable);
634 /**
635 * Make sure all asynchronous flush of the cs have completed
636 *
637 * \param cs A command stream.
638 */
639 void (*cs_sync_flush)(struct radeon_cmdbuf *cs);
640
641 /**
642 * Add a fence dependency to the CS, so that the CS will wait for
643 * the fence before execution.
644 *
645 * \param dependency_flags Bitmask of RADEON_DEPENDENCY_*
646 */
647 void (*cs_add_fence_dependency)(struct radeon_cmdbuf *cs,
648 struct pipe_fence_handle *fence,
649 unsigned dependency_flags);
650
651 /**
652 * Signal a syncobj when the CS finishes execution.
653 */
654 void (*cs_add_syncobj_signal)(struct radeon_cmdbuf *cs,
655 struct pipe_fence_handle *fence);
656
657 /**
658 * Wait for the fence and return true if the fence has been signalled.
659 * The timeout of 0 will only return the status.
660 * The timeout of PIPE_TIMEOUT_INFINITE will always wait until the fence
661 * is signalled.
662 */
663 bool (*fence_wait)(struct radeon_winsys *ws,
664 struct pipe_fence_handle *fence,
665 uint64_t timeout);
666
667 /**
668 * Reference counting for fences.
669 */
670 void (*fence_reference)(struct pipe_fence_handle **dst,
671 struct pipe_fence_handle *src);
672
673 /**
674 * Create a new fence object corresponding to the given syncobj fd.
675 */
676 struct pipe_fence_handle *(*fence_import_syncobj)(struct radeon_winsys *ws,
677 int fd);
678
679 /**
680 * Create a new fence object corresponding to the given sync_file.
681 */
682 struct pipe_fence_handle *(*fence_import_sync_file)(struct radeon_winsys *ws,
683 int fd);
684
685 /**
686 * Return a sync_file FD corresponding to the given fence object.
687 */
688 int (*fence_export_sync_file)(struct radeon_winsys *ws,
689 struct pipe_fence_handle *fence);
690
691 /**
692 * Return a sync file FD that is already signalled.
693 */
694 int (*export_signalled_sync_file)(struct radeon_winsys *ws);
695
696 /**
697 * Initialize surface
698 *
699 * \param ws The winsys this function is called from.
700 * \param tex Input texture description
701 * \param flags Bitmask of RADEON_SURF_* flags
702 * \param bpe Bytes per pixel, it can be different for Z buffers.
703 * \param mode Preferred tile mode. (linear, 1D, or 2D)
704 * \param surf Output structure
705 */
706 int (*surface_init)(struct radeon_winsys *ws,
707 const struct pipe_resource *tex,
708 unsigned flags, unsigned bpe,
709 enum radeon_surf_mode mode,
710 struct radeon_surf *surf);
711
712 uint64_t (*query_value)(struct radeon_winsys *ws,
713 enum radeon_value_id value);
714
715 bool (*read_registers)(struct radeon_winsys *ws, unsigned reg_offset,
716 unsigned num_registers, uint32_t *out);
717 };
718
719 static inline bool radeon_emitted(struct radeon_cmdbuf *cs, unsigned num_dw)
720 {
721 return cs && (cs->prev_dw + cs->current.cdw > num_dw);
722 }
723
724 static inline void radeon_emit(struct radeon_cmdbuf *cs, uint32_t value)
725 {
726 cs->current.buf[cs->current.cdw++] = value;
727 }
728
729 static inline void radeon_emit_array(struct radeon_cmdbuf *cs,
730 const uint32_t *values, unsigned count)
731 {
732 memcpy(cs->current.buf + cs->current.cdw, values, count * 4);
733 cs->current.cdw += count;
734 }
735
736 enum radeon_heap {
737 RADEON_HEAP_VRAM_NO_CPU_ACCESS,
738 RADEON_HEAP_VRAM_READ_ONLY,
739 RADEON_HEAP_VRAM_READ_ONLY_32BIT,
740 RADEON_HEAP_VRAM_32BIT,
741 RADEON_HEAP_VRAM,
742 RADEON_HEAP_GTT_WC,
743 RADEON_HEAP_GTT_WC_READ_ONLY,
744 RADEON_HEAP_GTT_WC_READ_ONLY_32BIT,
745 RADEON_HEAP_GTT_WC_32BIT,
746 RADEON_HEAP_GTT,
747 RADEON_MAX_SLAB_HEAPS,
748 RADEON_MAX_CACHED_HEAPS = RADEON_MAX_SLAB_HEAPS,
749 };
750
751 static inline enum radeon_bo_domain radeon_domain_from_heap(enum radeon_heap heap)
752 {
753 switch (heap) {
754 case RADEON_HEAP_VRAM_NO_CPU_ACCESS:
755 case RADEON_HEAP_VRAM_READ_ONLY:
756 case RADEON_HEAP_VRAM_READ_ONLY_32BIT:
757 case RADEON_HEAP_VRAM_32BIT:
758 case RADEON_HEAP_VRAM:
759 return RADEON_DOMAIN_VRAM;
760 case RADEON_HEAP_GTT_WC:
761 case RADEON_HEAP_GTT_WC_READ_ONLY:
762 case RADEON_HEAP_GTT_WC_READ_ONLY_32BIT:
763 case RADEON_HEAP_GTT_WC_32BIT:
764 case RADEON_HEAP_GTT:
765 return RADEON_DOMAIN_GTT;
766 default:
767 assert(0);
768 return (enum radeon_bo_domain)0;
769 }
770 }
771
772 static inline unsigned radeon_flags_from_heap(enum radeon_heap heap)
773 {
774 unsigned flags = RADEON_FLAG_NO_INTERPROCESS_SHARING |
775 (heap != RADEON_HEAP_GTT ? RADEON_FLAG_GTT_WC : 0);
776
777 switch (heap) {
778 case RADEON_HEAP_VRAM_NO_CPU_ACCESS:
779 return flags |
780 RADEON_FLAG_NO_CPU_ACCESS;
781
782 case RADEON_HEAP_VRAM_READ_ONLY:
783 case RADEON_HEAP_GTT_WC_READ_ONLY:
784 return flags |
785 RADEON_FLAG_READ_ONLY;
786
787 case RADEON_HEAP_VRAM_READ_ONLY_32BIT:
788 case RADEON_HEAP_GTT_WC_READ_ONLY_32BIT:
789 return flags |
790 RADEON_FLAG_READ_ONLY |
791 RADEON_FLAG_32BIT;
792
793 case RADEON_HEAP_VRAM_32BIT:
794 case RADEON_HEAP_GTT_WC_32BIT:
795 return flags |
796 RADEON_FLAG_32BIT;
797
798 case RADEON_HEAP_VRAM:
799 case RADEON_HEAP_GTT_WC:
800 case RADEON_HEAP_GTT:
801 default:
802 return flags;
803 }
804 }
805
806 /* Return the heap index for winsys allocators, or -1 on failure. */
807 static inline int radeon_get_heap_index(enum radeon_bo_domain domain,
808 enum radeon_bo_flag flags)
809 {
810 /* VRAM implies WC (write combining) */
811 assert(!(domain & RADEON_DOMAIN_VRAM) || flags & RADEON_FLAG_GTT_WC);
812 /* NO_CPU_ACCESS implies VRAM only. */
813 assert(!(flags & RADEON_FLAG_NO_CPU_ACCESS) || domain == RADEON_DOMAIN_VRAM);
814
815 /* Resources with interprocess sharing don't use any winsys allocators. */
816 if (!(flags & RADEON_FLAG_NO_INTERPROCESS_SHARING))
817 return -1;
818
819 /* Unsupported flags: NO_SUBALLOC, SPARSE. */
820 if (flags & ~(RADEON_FLAG_GTT_WC |
821 RADEON_FLAG_NO_CPU_ACCESS |
822 RADEON_FLAG_NO_INTERPROCESS_SHARING |
823 RADEON_FLAG_READ_ONLY |
824 RADEON_FLAG_32BIT))
825 return -1;
826
827 switch (domain) {
828 case RADEON_DOMAIN_VRAM:
829 switch (flags & (RADEON_FLAG_NO_CPU_ACCESS |
830 RADEON_FLAG_READ_ONLY |
831 RADEON_FLAG_32BIT)) {
832 case RADEON_FLAG_NO_CPU_ACCESS | RADEON_FLAG_READ_ONLY | RADEON_FLAG_32BIT:
833 case RADEON_FLAG_NO_CPU_ACCESS | RADEON_FLAG_READ_ONLY:
834 assert(!"NO_CPU_ACCESS | READ_ONLY doesn't make sense");
835 return -1;
836 case RADEON_FLAG_NO_CPU_ACCESS | RADEON_FLAG_32BIT:
837 assert(!"NO_CPU_ACCESS with 32BIT is disallowed");
838 return -1;
839 case RADEON_FLAG_NO_CPU_ACCESS:
840 return RADEON_HEAP_VRAM_NO_CPU_ACCESS;
841 case RADEON_FLAG_READ_ONLY | RADEON_FLAG_32BIT:
842 return RADEON_HEAP_VRAM_READ_ONLY_32BIT;
843 case RADEON_FLAG_READ_ONLY:
844 return RADEON_HEAP_VRAM_READ_ONLY;
845 case RADEON_FLAG_32BIT:
846 return RADEON_HEAP_VRAM_32BIT;
847 case 0:
848 return RADEON_HEAP_VRAM;
849 }
850 break;
851 case RADEON_DOMAIN_GTT:
852 switch (flags & (RADEON_FLAG_GTT_WC |
853 RADEON_FLAG_READ_ONLY |
854 RADEON_FLAG_32BIT)) {
855 case RADEON_FLAG_GTT_WC | RADEON_FLAG_READ_ONLY | RADEON_FLAG_32BIT:
856 return RADEON_HEAP_GTT_WC_READ_ONLY_32BIT;
857 case RADEON_FLAG_GTT_WC | RADEON_FLAG_READ_ONLY:
858 return RADEON_HEAP_GTT_WC_READ_ONLY;
859 case RADEON_FLAG_GTT_WC | RADEON_FLAG_32BIT:
860 return RADEON_HEAP_GTT_WC_32BIT;
861 case RADEON_FLAG_GTT_WC:
862 return RADEON_HEAP_GTT_WC;
863 case RADEON_FLAG_READ_ONLY | RADEON_FLAG_32BIT:
864 case RADEON_FLAG_READ_ONLY:
865 assert(!"READ_ONLY without WC is disallowed");
866 return -1;
867 case RADEON_FLAG_32BIT:
868 assert(!"32BIT without WC is disallowed");
869 return -1;
870 case 0:
871 return RADEON_HEAP_GTT;
872 }
873 break;
874 default:
875 break;
876 }
877 return -1;
878 }
879
880 #endif