radeonsi/gfx9: add radeon_surf.gfx9.surf_offset
[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 *
5 * Permission is hereby granted, free of charge, to any person obtaining a
6 * copy of this software and associated documentation files (the "Software"),
7 * to deal in the Software without restriction, including without limitation
8 * on the rights to use, copy, modify, merge, publish, distribute, sub
9 * license, and/or sell copies of the Software, and to permit persons to whom
10 * the Software is furnished to do so, subject to the following conditions:
11 *
12 * The above copyright notice and this permission notice (including the next
13 * paragraph) shall be included in all copies or substantial portions of the
14 * Software.
15 *
16 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
17 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
18 * FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT. IN NO EVENT SHALL
19 * THE AUTHOR(S) AND/OR THEIR SUPPLIERS BE LIABLE FOR ANY CLAIM,
20 * DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR
21 * OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE
22 * USE OR OTHER DEALINGS IN THE SOFTWARE. */
23
24 #ifndef RADEON_WINSYS_H
25 #define RADEON_WINSYS_H
26
27 /* The public winsys interface header for the radeon driver. */
28
29 #include "pipebuffer/pb_buffer.h"
30
31 #include "amd/common/amd_family.h"
32
33 #define RADEON_FLUSH_ASYNC (1 << 0)
34 #define RADEON_FLUSH_END_OF_FRAME (1 << 1)
35
36 /* Tiling flags. */
37 enum radeon_bo_layout {
38 RADEON_LAYOUT_LINEAR = 0,
39 RADEON_LAYOUT_TILED,
40 RADEON_LAYOUT_SQUARETILED,
41
42 RADEON_LAYOUT_UNKNOWN
43 };
44
45 enum radeon_bo_domain { /* bitfield */
46 RADEON_DOMAIN_GTT = 2,
47 RADEON_DOMAIN_VRAM = 4,
48 RADEON_DOMAIN_VRAM_GTT = RADEON_DOMAIN_VRAM | RADEON_DOMAIN_GTT
49 };
50
51 enum radeon_bo_flag { /* bitfield */
52 RADEON_FLAG_GTT_WC = (1 << 0),
53 RADEON_FLAG_CPU_ACCESS = (1 << 1),
54 RADEON_FLAG_NO_CPU_ACCESS = (1 << 2),
55 RADEON_FLAG_HANDLE = (1 << 3), /* the buffer most not be suballocated */
56 };
57
58 enum radeon_bo_usage { /* bitfield */
59 RADEON_USAGE_READ = 2,
60 RADEON_USAGE_WRITE = 4,
61 RADEON_USAGE_READWRITE = RADEON_USAGE_READ | RADEON_USAGE_WRITE,
62
63 /* The winsys ensures that the CS submission will be scheduled after
64 * previously flushed CSs referencing this BO in a conflicting way.
65 */
66 RADEON_USAGE_SYNCHRONIZED = 8
67 };
68
69 enum ring_type {
70 RING_GFX = 0,
71 RING_COMPUTE,
72 RING_DMA,
73 RING_UVD,
74 RING_VCE,
75 RING_LAST,
76 };
77
78 enum radeon_value_id {
79 RADEON_REQUESTED_VRAM_MEMORY,
80 RADEON_REQUESTED_GTT_MEMORY,
81 RADEON_MAPPED_VRAM,
82 RADEON_MAPPED_GTT,
83 RADEON_BUFFER_WAIT_TIME_NS,
84 RADEON_NUM_MAPPED_BUFFERS,
85 RADEON_TIMESTAMP,
86 RADEON_NUM_GFX_IBS,
87 RADEON_NUM_SDMA_IBS,
88 RADEON_NUM_BYTES_MOVED,
89 RADEON_NUM_EVICTIONS,
90 RADEON_VRAM_USAGE,
91 RADEON_VRAM_VIS_USAGE,
92 RADEON_GTT_USAGE,
93 RADEON_GPU_TEMPERATURE, /* DRM 2.42.0 */
94 RADEON_CURRENT_SCLK,
95 RADEON_CURRENT_MCLK,
96 RADEON_GPU_RESET_COUNTER, /* DRM 2.43.0 */
97 RADEON_CS_THREAD_TIME,
98 };
99
100 /* Each group of four has the same priority. */
101 enum radeon_bo_priority {
102 RADEON_PRIO_FENCE = 0,
103 RADEON_PRIO_TRACE,
104 RADEON_PRIO_SO_FILLED_SIZE,
105 RADEON_PRIO_QUERY,
106
107 RADEON_PRIO_IB1 = 4, /* main IB submitted to the kernel */
108 RADEON_PRIO_IB2, /* IB executed with INDIRECT_BUFFER */
109 RADEON_PRIO_DRAW_INDIRECT,
110 RADEON_PRIO_INDEX_BUFFER,
111
112 RADEON_PRIO_VCE = 8,
113 RADEON_PRIO_UVD,
114 RADEON_PRIO_SDMA_BUFFER,
115 RADEON_PRIO_SDMA_TEXTURE,
116
117 RADEON_PRIO_CP_DMA = 12,
118
119 RADEON_PRIO_CONST_BUFFER = 16,
120 RADEON_PRIO_DESCRIPTORS,
121 RADEON_PRIO_BORDER_COLORS,
122
123 RADEON_PRIO_SAMPLER_BUFFER = 20,
124 RADEON_PRIO_VERTEX_BUFFER,
125
126 RADEON_PRIO_SHADER_RW_BUFFER = 24,
127 RADEON_PRIO_COMPUTE_GLOBAL,
128
129 RADEON_PRIO_SAMPLER_TEXTURE = 28,
130 RADEON_PRIO_SHADER_RW_IMAGE,
131
132 RADEON_PRIO_SAMPLER_TEXTURE_MSAA = 32,
133
134 RADEON_PRIO_COLOR_BUFFER = 36,
135
136 RADEON_PRIO_DEPTH_BUFFER = 40,
137
138 RADEON_PRIO_COLOR_BUFFER_MSAA = 44,
139
140 RADEON_PRIO_DEPTH_BUFFER_MSAA = 48,
141
142 RADEON_PRIO_CMASK = 52,
143 RADEON_PRIO_DCC,
144 RADEON_PRIO_HTILE,
145 RADEON_PRIO_SHADER_BINARY, /* the hw can't hide instruction cache misses */
146
147 RADEON_PRIO_SHADER_RINGS = 56,
148
149 RADEON_PRIO_SCRATCH_BUFFER = 60,
150 /* 63 is the maximum value */
151 };
152
153 struct winsys_handle;
154 struct radeon_winsys_ctx;
155
156 struct radeon_winsys_cs_chunk {
157 unsigned cdw; /* Number of used dwords. */
158 unsigned max_dw; /* Maximum number of dwords. */
159 uint32_t *buf; /* The base pointer of the chunk. */
160 };
161
162 struct radeon_winsys_cs {
163 struct radeon_winsys_cs_chunk current;
164 struct radeon_winsys_cs_chunk *prev;
165 unsigned num_prev; /* Number of previous chunks. */
166 unsigned max_prev; /* Space in array pointed to by prev. */
167 unsigned prev_dw; /* Total number of dwords in previous chunks. */
168
169 /* Memory usage of the buffer list. These are always 0 for CE and preamble
170 * IBs. */
171 uint64_t used_vram;
172 uint64_t used_gart;
173 };
174
175 struct radeon_info {
176 /* PCI info: domain:bus:dev:func */
177 uint32_t pci_domain;
178 uint32_t pci_bus;
179 uint32_t pci_dev;
180 uint32_t pci_func;
181
182 /* Device info. */
183 uint32_t pci_id;
184 enum radeon_family family;
185 enum chip_class chip_class;
186 uint32_t gart_page_size;
187 uint64_t gart_size;
188 uint64_t vram_size;
189 uint64_t vram_vis_size;
190 uint64_t max_alloc_size;
191 uint32_t min_alloc_size;
192 bool has_dedicated_vram;
193 bool has_virtual_memory;
194 bool gfx_ib_pad_with_type2;
195 bool has_sdma;
196 bool has_uvd;
197 uint32_t uvd_fw_version;
198 uint32_t vce_fw_version;
199 uint32_t me_fw_version;
200 uint32_t pfp_fw_version;
201 uint32_t ce_fw_version;
202 uint32_t vce_harvest_config;
203 uint32_t clock_crystal_freq;
204 uint32_t tcc_cache_line_size;
205
206 /* Kernel info. */
207 uint32_t drm_major; /* version */
208 uint32_t drm_minor;
209 uint32_t drm_patchlevel;
210 bool has_userptr;
211
212 /* Shader cores. */
213 uint32_t r600_max_quad_pipes; /* wave size / 16 */
214 uint32_t max_shader_clock;
215 uint32_t num_good_compute_units;
216 uint32_t max_se; /* shader engines */
217 uint32_t max_sh_per_se; /* shader arrays per shader engine */
218
219 /* Render backends (color + depth blocks). */
220 uint32_t r300_num_gb_pipes;
221 uint32_t r300_num_z_pipes;
222 uint32_t r600_gb_backend_map; /* R600 harvest config */
223 bool r600_gb_backend_map_valid;
224 uint32_t r600_num_banks;
225 uint32_t num_render_backends;
226 uint32_t num_tile_pipes; /* pipe count from PIPE_CONFIG */
227 uint32_t pipe_interleave_bytes;
228 uint32_t enabled_rb_mask; /* GCN harvest config */
229
230 /* Tile modes. */
231 uint32_t si_tile_mode_array[32];
232 uint32_t cik_macrotile_mode_array[16];
233 };
234
235 /* Tiling info for display code, DRI sharing, and other data. */
236 struct radeon_bo_metadata {
237 /* Tiling flags describing the texture layout for display code
238 * and DRI sharing.
239 */
240 union {
241 struct {
242 enum radeon_bo_layout microtile;
243 enum radeon_bo_layout macrotile;
244 unsigned pipe_config;
245 unsigned bankw;
246 unsigned bankh;
247 unsigned tile_split;
248 unsigned mtilea;
249 unsigned num_banks;
250 unsigned stride;
251 bool scanout;
252 } legacy;
253 } u;
254
255 /* Additional metadata associated with the buffer, in bytes.
256 * The maximum size is 64 * 4. This is opaque for the winsys & kernel.
257 * Supported by amdgpu only.
258 */
259 uint32_t size_metadata;
260 uint32_t metadata[64];
261 };
262
263 enum radeon_feature_id {
264 RADEON_FID_R300_HYPERZ_ACCESS, /* ZMask + HiZ */
265 RADEON_FID_R300_CMASK_ACCESS,
266 };
267
268 #define RADEON_SURF_MAX_LEVELS 15
269
270 enum radeon_surf_mode {
271 RADEON_SURF_MODE_LINEAR_ALIGNED = 1,
272 RADEON_SURF_MODE_1D = 2,
273 RADEON_SURF_MODE_2D = 3,
274 };
275
276 /* These are defined exactly like GB_TILE_MODEn.MICRO_TILE_MODE_NEW. */
277 enum radeon_micro_mode {
278 RADEON_MICRO_MODE_DISPLAY = 0,
279 RADEON_MICRO_MODE_THIN = 1,
280 RADEON_MICRO_MODE_DEPTH = 2,
281 RADEON_MICRO_MODE_ROTATED = 3,
282 };
283
284 /* the first 16 bits are reserved for libdrm_radeon, don't use them */
285 #define RADEON_SURF_SCANOUT (1 << 16)
286 #define RADEON_SURF_ZBUFFER (1 << 17)
287 #define RADEON_SURF_SBUFFER (1 << 18)
288 #define RADEON_SURF_Z_OR_SBUFFER (RADEON_SURF_ZBUFFER | RADEON_SURF_SBUFFER)
289 /* bits 19 and 20 are reserved for libdrm_radeon, don't use them */
290 #define RADEON_SURF_FMASK (1 << 21)
291 #define RADEON_SURF_DISABLE_DCC (1 << 22)
292 #define RADEON_SURF_TC_COMPATIBLE_HTILE (1 << 23)
293 #define RADEON_SURF_IMPORTED (1 << 24)
294 #define RADEON_SURF_OPTIMIZE_FOR_SPACE (1 << 25)
295
296 struct legacy_surf_level {
297 uint64_t offset;
298 uint64_t slice_size;
299 uint64_t dcc_offset;
300 uint64_t dcc_fast_clear_size;
301 uint16_t nblk_x;
302 uint16_t nblk_y;
303 enum radeon_surf_mode mode;
304 };
305
306 struct legacy_surf_layout {
307 unsigned bankw:4; /* max 8 */
308 unsigned bankh:4; /* max 8 */
309 unsigned mtilea:4; /* max 8 */
310 unsigned tile_split:13; /* max 4K */
311 unsigned stencil_tile_split:13; /* max 4K */
312 unsigned pipe_config:5; /* max 17 */
313 unsigned num_banks:5; /* max 16 */
314 unsigned macro_tile_index:4; /* max 15 */
315
316 /* Whether the depth miptree or stencil miptree as used by the DB are
317 * adjusted from their TC compatible form to ensure depth/stencil
318 * compatibility. If either is true, the corresponding plane cannot be
319 * sampled from.
320 */
321 unsigned depth_adjusted:1;
322 unsigned stencil_adjusted:1;
323
324 struct legacy_surf_level level[RADEON_SURF_MAX_LEVELS];
325 struct legacy_surf_level stencil_level[RADEON_SURF_MAX_LEVELS];
326 uint8_t tiling_index[RADEON_SURF_MAX_LEVELS];
327 uint8_t stencil_tiling_index[RADEON_SURF_MAX_LEVELS];
328 };
329
330 /* Same as addrlib - AddrResourceType. */
331 enum gfx9_resource_type {
332 RADEON_RESOURCE_1D = 0,
333 RADEON_RESOURCE_2D,
334 RADEON_RESOURCE_3D,
335 };
336
337 struct gfx9_surf_flags {
338 uint16_t swizzle_mode; /* tile mode */
339 uint16_t epitch; /* (pitch - 1) or (height - 1) */
340 };
341
342 struct gfx9_surf_meta_flags {
343 unsigned rb_aligned:1; /* optimal for RBs */
344 unsigned pipe_aligned:1; /* optimal for TC */
345 };
346
347 struct gfx9_surf_layout {
348 struct gfx9_surf_flags surf; /* color or depth surface */
349 struct gfx9_surf_flags fmask; /* not added to surf_size */
350 struct gfx9_surf_flags stencil; /* added to surf_size, use stencil_offset */
351
352 struct gfx9_surf_meta_flags dcc; /* metadata of color */
353 struct gfx9_surf_meta_flags htile; /* metadata of depth and stencil */
354 struct gfx9_surf_meta_flags cmask; /* metadata of fmask */
355
356 enum gfx9_resource_type resource_type; /* 1D, 2D or 3D */
357 uint64_t surf_offset; /* 0 unless imported with an offset */
358 /* The size of the 2D plane containing all mipmap levels. */
359 uint64_t surf_slice_size;
360 uint16_t surf_pitch; /* in blocks */
361 /* Y mipmap level offset in blocks. Only valid for LINEAR. */
362 uint16_t surf_ymip_offset[RADEON_SURF_MAX_LEVELS];
363
364 uint16_t dcc_pitch_max; /* (mip chain pitch - 1) */
365
366 uint64_t stencil_offset; /* separate stencil */
367 uint64_t fmask_size;
368 uint64_t cmask_size;
369
370 uint32_t fmask_alignment;
371 uint32_t cmask_alignment;
372 };
373
374 struct radeon_surf {
375 /* Format properties. */
376 unsigned blk_w:4;
377 unsigned blk_h:4;
378 unsigned bpe:5;
379 /* Number of mipmap levels where DCC is enabled starting from level 0.
380 * Non-zero levels may be disabled due to alignment constraints, but not
381 * the first level.
382 */
383 unsigned num_dcc_levels:4;
384 unsigned is_linear:1;
385 /* Displayable, thin, depth, rotated. AKA D,S,Z,R swizzle modes. */
386 unsigned micro_tile_mode:3;
387 uint32_t flags;
388
389 /* These are return values. Some of them can be set by the caller, but
390 * they will be treated as hints (e.g. bankw, bankh) and might be
391 * changed by the calculator.
392 */
393 uint64_t surf_size;
394 uint64_t dcc_size;
395 uint64_t htile_size;
396
397 uint32_t surf_alignment;
398 uint32_t dcc_alignment;
399 uint32_t htile_alignment;
400
401 union {
402 /* R600-VI return values.
403 *
404 * Some of them can be set by the caller if certain parameters are
405 * desirable. The allocator will try to obey them.
406 */
407 struct legacy_surf_layout legacy;
408
409 /* GFX9+ return values. */
410 struct gfx9_surf_layout gfx9;
411 } u;
412 };
413
414 struct radeon_bo_list_item {
415 uint64_t bo_size;
416 uint64_t vm_address;
417 uint64_t priority_usage; /* mask of (1 << RADEON_PRIO_*) */
418 };
419
420 struct radeon_winsys {
421 /**
422 * The screen object this winsys was created for
423 */
424 struct pipe_screen *screen;
425
426 /**
427 * Decrement the winsys reference count.
428 *
429 * \param ws The winsys this function is called for.
430 * \return True if the winsys and screen should be destroyed.
431 */
432 bool (*unref)(struct radeon_winsys *ws);
433
434 /**
435 * Destroy this winsys.
436 *
437 * \param ws The winsys this function is called from.
438 */
439 void (*destroy)(struct radeon_winsys *ws);
440
441 /**
442 * Query an info structure from winsys.
443 *
444 * \param ws The winsys this function is called from.
445 * \param info Return structure
446 */
447 void (*query_info)(struct radeon_winsys *ws,
448 struct radeon_info *info);
449
450 /**************************************************************************
451 * Buffer management. Buffer attributes are mostly fixed over its lifetime.
452 *
453 * Remember that gallium gets to choose the interface it needs, and the
454 * window systems must then implement that interface (rather than the
455 * other way around...).
456 *************************************************************************/
457
458 /**
459 * Create a buffer object.
460 *
461 * \param ws The winsys this function is called from.
462 * \param size The size to allocate.
463 * \param alignment An alignment of the buffer in memory.
464 * \param use_reusable_pool Whether the cache buffer manager should be used.
465 * \param domain A bitmask of the RADEON_DOMAIN_* flags.
466 * \return The created buffer object.
467 */
468 struct pb_buffer *(*buffer_create)(struct radeon_winsys *ws,
469 uint64_t size,
470 unsigned alignment,
471 enum radeon_bo_domain domain,
472 enum radeon_bo_flag flags);
473
474 /**
475 * Map the entire data store of a buffer object into the client's address
476 * space.
477 *
478 * \param buf A winsys buffer object to map.
479 * \param cs A command stream to flush if the buffer is referenced by it.
480 * \param usage A bitmask of the PIPE_TRANSFER_* flags.
481 * \return The pointer at the beginning of the buffer.
482 */
483 void *(*buffer_map)(struct pb_buffer *buf,
484 struct radeon_winsys_cs *cs,
485 enum pipe_transfer_usage usage);
486
487 /**
488 * Unmap a buffer object from the client's address space.
489 *
490 * \param buf A winsys buffer object to unmap.
491 */
492 void (*buffer_unmap)(struct pb_buffer *buf);
493
494 /**
495 * Wait for the buffer and return true if the buffer is not used
496 * by the device.
497 *
498 * The timeout of 0 will only return the status.
499 * The timeout of PIPE_TIMEOUT_INFINITE will always wait until the buffer
500 * is idle.
501 */
502 bool (*buffer_wait)(struct pb_buffer *buf, uint64_t timeout,
503 enum radeon_bo_usage usage);
504
505 /**
506 * Return buffer metadata.
507 * (tiling info for display code, DRI sharing, and other data)
508 *
509 * \param buf A winsys buffer object to get the flags from.
510 * \param md Metadata
511 */
512 void (*buffer_get_metadata)(struct pb_buffer *buf,
513 struct radeon_bo_metadata *md);
514
515 /**
516 * Set buffer metadata.
517 * (tiling info for display code, DRI sharing, and other data)
518 *
519 * \param buf A winsys buffer object to set the flags for.
520 * \param md Metadata
521 */
522 void (*buffer_set_metadata)(struct pb_buffer *buf,
523 struct radeon_bo_metadata *md);
524
525 /**
526 * Get a winsys buffer from a winsys handle. The internal structure
527 * of the handle is platform-specific and only a winsys should access it.
528 *
529 * \param ws The winsys this function is called from.
530 * \param whandle A winsys handle pointer as was received from a state
531 * tracker.
532 * \param stride The returned buffer stride in bytes.
533 */
534 struct pb_buffer *(*buffer_from_handle)(struct radeon_winsys *ws,
535 struct winsys_handle *whandle,
536 unsigned *stride, unsigned *offset);
537
538 /**
539 * Get a winsys buffer from a user pointer. The resulting buffer can't
540 * be exported. Both pointer and size must be page aligned.
541 *
542 * \param ws The winsys this function is called from.
543 * \param pointer User pointer to turn into a buffer object.
544 * \param Size Size in bytes for the new buffer.
545 */
546 struct pb_buffer *(*buffer_from_ptr)(struct radeon_winsys *ws,
547 void *pointer, uint64_t size);
548
549 /**
550 * Whether the buffer was created from a user pointer.
551 *
552 * \param buf A winsys buffer object
553 * \return whether \p buf was created via buffer_from_ptr
554 */
555 bool (*buffer_is_user_ptr)(struct pb_buffer *buf);
556
557 /**
558 * Get a winsys handle from a winsys buffer. The internal structure
559 * of the handle is platform-specific and only a winsys should access it.
560 *
561 * \param buf A winsys buffer object to get the handle from.
562 * \param whandle A winsys handle pointer.
563 * \param stride A stride of the buffer in bytes, for texturing.
564 * \return true on success.
565 */
566 bool (*buffer_get_handle)(struct pb_buffer *buf,
567 unsigned stride, unsigned offset,
568 unsigned slice_size,
569 struct winsys_handle *whandle);
570
571 /**
572 * Return the virtual address of a buffer.
573 *
574 * When virtual memory is not in use, this is the offset relative to the
575 * relocation base (non-zero for sub-allocated buffers).
576 *
577 * \param buf A winsys buffer object
578 * \return virtual address
579 */
580 uint64_t (*buffer_get_virtual_address)(struct pb_buffer *buf);
581
582 /**
583 * Return the offset of this buffer relative to the relocation base.
584 * This is only non-zero for sub-allocated buffers.
585 *
586 * This is only supported in the radeon winsys, since amdgpu uses virtual
587 * addresses in submissions even for the video engines.
588 *
589 * \param buf A winsys buffer object
590 * \return the offset for relocations
591 */
592 unsigned (*buffer_get_reloc_offset)(struct pb_buffer *buf);
593
594 /**
595 * Query the initial placement of the buffer from the kernel driver.
596 */
597 enum radeon_bo_domain (*buffer_get_initial_domain)(struct pb_buffer *buf);
598
599 /**************************************************************************
600 * Command submission.
601 *
602 * Each pipe context should create its own command stream and submit
603 * commands independently of other contexts.
604 *************************************************************************/
605
606 /**
607 * Create a command submission context.
608 * Various command streams can be submitted to the same context.
609 */
610 struct radeon_winsys_ctx *(*ctx_create)(struct radeon_winsys *ws);
611
612 /**
613 * Destroy a context.
614 */
615 void (*ctx_destroy)(struct radeon_winsys_ctx *ctx);
616
617 /**
618 * Query a GPU reset status.
619 */
620 enum pipe_reset_status (*ctx_query_reset_status)(struct radeon_winsys_ctx *ctx);
621
622 /**
623 * Create a command stream.
624 *
625 * \param ctx The submission context
626 * \param ring_type The ring type (GFX, DMA, UVD)
627 * \param flush Flush callback function associated with the command stream.
628 * \param user User pointer that will be passed to the flush callback.
629 */
630 struct radeon_winsys_cs *(*cs_create)(struct radeon_winsys_ctx *ctx,
631 enum ring_type ring_type,
632 void (*flush)(void *ctx, unsigned flags,
633 struct pipe_fence_handle **fence),
634 void *flush_ctx);
635
636 /**
637 * Add a constant engine IB to a graphics CS. This makes the graphics CS
638 * from "cs_create" a group of two IBs that share a buffer list and are
639 * flushed together.
640 *
641 * The returned constant CS is only a stream for writing packets to the new
642 * IB. Calling other winsys functions with it is not allowed, not even
643 * "cs_destroy".
644 *
645 * In order to add buffers and check memory usage, use the graphics CS.
646 * In order to flush it, use the graphics CS, which will flush both IBs.
647 * Destroying the graphics CS will destroy both of them.
648 *
649 * \param cs The graphics CS from "cs_create" that will hold the buffer
650 * list and will be used for flushing.
651 */
652 struct radeon_winsys_cs *(*cs_add_const_ib)(struct radeon_winsys_cs *cs);
653
654 /**
655 * Add a constant engine preamble IB to a graphics CS. This add an extra IB
656 * in similar manner to cs_add_const_ib. This should always be called after
657 * cs_add_const_ib.
658 *
659 * The returned IB is a constant engine IB that only gets flushed if the
660 * context changed.
661 *
662 * \param cs The graphics CS from "cs_create" that will hold the buffer
663 * list and will be used for flushing.
664 */
665 struct radeon_winsys_cs *(*cs_add_const_preamble_ib)(struct radeon_winsys_cs *cs);
666 /**
667 * Destroy a command stream.
668 *
669 * \param cs A command stream to destroy.
670 */
671 void (*cs_destroy)(struct radeon_winsys_cs *cs);
672
673 /**
674 * Add a buffer. Each buffer used by a CS must be added using this function.
675 *
676 * \param cs Command stream
677 * \param buf Buffer
678 * \param usage Whether the buffer is used for read and/or write.
679 * \param domain Bitmask of the RADEON_DOMAIN_* flags.
680 * \param priority A higher number means a greater chance of being
681 * placed in the requested domain. 15 is the maximum.
682 * \return Buffer index.
683 */
684 unsigned (*cs_add_buffer)(struct radeon_winsys_cs *cs,
685 struct pb_buffer *buf,
686 enum radeon_bo_usage usage,
687 enum radeon_bo_domain domain,
688 enum radeon_bo_priority priority);
689
690 /**
691 * Return the index of an already-added buffer.
692 *
693 * Not supported on amdgpu. Drivers with GPUVM should not care about
694 * buffer indices.
695 *
696 * \param cs Command stream
697 * \param buf Buffer
698 * \return The buffer index, or -1 if the buffer has not been added.
699 */
700 int (*cs_lookup_buffer)(struct radeon_winsys_cs *cs,
701 struct pb_buffer *buf);
702
703 /**
704 * Return true if there is enough memory in VRAM and GTT for the buffers
705 * added so far. If the validation fails, all buffers which have
706 * been added since the last call of cs_validate will be removed and
707 * the CS will be flushed (provided there are still any buffers).
708 *
709 * \param cs A command stream to validate.
710 */
711 bool (*cs_validate)(struct radeon_winsys_cs *cs);
712
713 /**
714 * Check whether the given number of dwords is available in the IB.
715 * Optionally chain a new chunk of the IB if necessary and supported.
716 *
717 * \param cs A command stream.
718 * \param dw Number of CS dwords requested by the caller.
719 */
720 bool (*cs_check_space)(struct radeon_winsys_cs *cs, unsigned dw);
721
722 /**
723 * Return the buffer list.
724 *
725 * This is the buffer list as passed to the kernel, i.e. it only contains
726 * the parent buffers of sub-allocated buffers.
727 *
728 * \param cs Command stream
729 * \param list Returned buffer list. Set to NULL to query the count only.
730 * \return The buffer count.
731 */
732 unsigned (*cs_get_buffer_list)(struct radeon_winsys_cs *cs,
733 struct radeon_bo_list_item *list);
734
735 /**
736 * Flush a command stream.
737 *
738 * \param cs A command stream to flush.
739 * \param flags, RADEON_FLUSH_ASYNC or 0.
740 * \param fence Pointer to a fence. If non-NULL, a fence is inserted
741 * after the CS and is returned through this parameter.
742 * \return Negative POSIX error code or 0 for success.
743 * Asynchronous submissions never return an error.
744 */
745 int (*cs_flush)(struct radeon_winsys_cs *cs,
746 unsigned flags,
747 struct pipe_fence_handle **fence);
748
749 /**
750 * Create a fence before the CS is flushed.
751 * The user must flush manually to complete the initializaton of the fence.
752 * The fence must not be used before the flush.
753 */
754 struct pipe_fence_handle *(*cs_get_next_fence)(struct radeon_winsys_cs *cs);
755
756 /**
757 * Return true if a buffer is referenced by a command stream.
758 *
759 * \param cs A command stream.
760 * \param buf A winsys buffer.
761 */
762 bool (*cs_is_buffer_referenced)(struct radeon_winsys_cs *cs,
763 struct pb_buffer *buf,
764 enum radeon_bo_usage usage);
765
766 /**
767 * Request access to a feature for a command stream.
768 *
769 * \param cs A command stream.
770 * \param fid Feature ID, one of RADEON_FID_*
771 * \param enable Whether to enable or disable the feature.
772 */
773 bool (*cs_request_feature)(struct radeon_winsys_cs *cs,
774 enum radeon_feature_id fid,
775 bool enable);
776 /**
777 * Make sure all asynchronous flush of the cs have completed
778 *
779 * \param cs A command stream.
780 */
781 void (*cs_sync_flush)(struct radeon_winsys_cs *cs);
782
783 /**
784 * Wait for the fence and return true if the fence has been signalled.
785 * The timeout of 0 will only return the status.
786 * The timeout of PIPE_TIMEOUT_INFINITE will always wait until the fence
787 * is signalled.
788 */
789 bool (*fence_wait)(struct radeon_winsys *ws,
790 struct pipe_fence_handle *fence,
791 uint64_t timeout);
792
793 /**
794 * Reference counting for fences.
795 */
796 void (*fence_reference)(struct pipe_fence_handle **dst,
797 struct pipe_fence_handle *src);
798
799 /**
800 * Initialize surface
801 *
802 * \param ws The winsys this function is called from.
803 * \param tex Input texture description
804 * \param flags Bitmask of RADEON_SURF_* flags
805 * \param bpe Bytes per pixel, it can be different for Z buffers.
806 * \param mode Preferred tile mode. (linear, 1D, or 2D)
807 * \param surf Output structure
808 */
809 int (*surface_init)(struct radeon_winsys *ws,
810 const struct pipe_resource *tex,
811 unsigned flags, unsigned bpe,
812 enum radeon_surf_mode mode,
813 struct radeon_surf *surf);
814
815 uint64_t (*query_value)(struct radeon_winsys *ws,
816 enum radeon_value_id value);
817
818 bool (*read_registers)(struct radeon_winsys *ws, unsigned reg_offset,
819 unsigned num_registers, uint32_t *out);
820 };
821
822 static inline bool radeon_emitted(struct radeon_winsys_cs *cs, unsigned num_dw)
823 {
824 return cs && (cs->prev_dw + cs->current.cdw > num_dw);
825 }
826
827 static inline void radeon_emit(struct radeon_winsys_cs *cs, uint32_t value)
828 {
829 cs->current.buf[cs->current.cdw++] = value;
830 }
831
832 static inline void radeon_emit_array(struct radeon_winsys_cs *cs,
833 const uint32_t *values, unsigned count)
834 {
835 memcpy(cs->current.buf + cs->current.cdw, values, count * 4);
836 cs->current.cdw += count;
837 }
838
839 #endif