f5b9f1058363ec43177bb1788e8a679c2e4eb841
[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_TIMESTAMP,
85 RADEON_NUM_CS_FLUSHES,
86 RADEON_NUM_BYTES_MOVED,
87 RADEON_NUM_EVICTIONS,
88 RADEON_VRAM_USAGE,
89 RADEON_GTT_USAGE,
90 RADEON_GPU_TEMPERATURE, /* DRM 2.42.0 */
91 RADEON_CURRENT_SCLK,
92 RADEON_CURRENT_MCLK,
93 RADEON_GPU_RESET_COUNTER, /* DRM 2.43.0 */
94 };
95
96 /* Each group of four has the same priority. */
97 enum radeon_bo_priority {
98 RADEON_PRIO_FENCE = 0,
99 RADEON_PRIO_TRACE,
100 RADEON_PRIO_SO_FILLED_SIZE,
101 RADEON_PRIO_QUERY,
102
103 RADEON_PRIO_IB1 = 4, /* main IB submitted to the kernel */
104 RADEON_PRIO_IB2, /* IB executed with INDIRECT_BUFFER */
105 RADEON_PRIO_DRAW_INDIRECT,
106 RADEON_PRIO_INDEX_BUFFER,
107
108 RADEON_PRIO_VCE = 8,
109 RADEON_PRIO_UVD,
110 RADEON_PRIO_SDMA_BUFFER,
111 RADEON_PRIO_SDMA_TEXTURE,
112
113 RADEON_PRIO_CP_DMA = 12,
114
115 RADEON_PRIO_CONST_BUFFER = 16,
116 RADEON_PRIO_DESCRIPTORS,
117 RADEON_PRIO_BORDER_COLORS,
118
119 RADEON_PRIO_SAMPLER_BUFFER = 20,
120 RADEON_PRIO_VERTEX_BUFFER,
121
122 RADEON_PRIO_SHADER_RW_BUFFER = 24,
123 RADEON_PRIO_COMPUTE_GLOBAL,
124
125 RADEON_PRIO_SAMPLER_TEXTURE = 28,
126 RADEON_PRIO_SHADER_RW_IMAGE,
127
128 RADEON_PRIO_SAMPLER_TEXTURE_MSAA = 32,
129
130 RADEON_PRIO_COLOR_BUFFER = 36,
131
132 RADEON_PRIO_DEPTH_BUFFER = 40,
133
134 RADEON_PRIO_COLOR_BUFFER_MSAA = 44,
135
136 RADEON_PRIO_DEPTH_BUFFER_MSAA = 48,
137
138 RADEON_PRIO_CMASK = 52,
139 RADEON_PRIO_DCC,
140 RADEON_PRIO_HTILE,
141 RADEON_PRIO_SHADER_BINARY, /* the hw can't hide instruction cache misses */
142
143 RADEON_PRIO_SHADER_RINGS = 56,
144
145 RADEON_PRIO_SCRATCH_BUFFER = 60,
146 /* 63 is the maximum value */
147 };
148
149 struct winsys_handle;
150 struct radeon_winsys_ctx;
151
152 struct radeon_winsys_cs_chunk {
153 unsigned cdw; /* Number of used dwords. */
154 unsigned max_dw; /* Maximum number of dwords. */
155 uint32_t *buf; /* The base pointer of the chunk. */
156 };
157
158 struct radeon_winsys_cs {
159 struct radeon_winsys_cs_chunk current;
160 struct radeon_winsys_cs_chunk *prev;
161 unsigned num_prev; /* Number of previous chunks. */
162 unsigned max_prev; /* Space in array pointed to by prev. */
163 unsigned prev_dw; /* Total number of dwords in previous chunks. */
164
165 /* Memory usage of the buffer list. These are always 0 for CE and preamble
166 * IBs. */
167 uint64_t used_vram;
168 uint64_t used_gart;
169 };
170
171 struct radeon_info {
172 /* PCI info: domain:bus:dev:func */
173 uint32_t pci_domain;
174 uint32_t pci_bus;
175 uint32_t pci_dev;
176 uint32_t pci_func;
177
178 /* Device info. */
179 uint32_t pci_id;
180 enum radeon_family family;
181 enum chip_class chip_class;
182 uint32_t gart_page_size;
183 uint64_t gart_size;
184 uint64_t vram_size;
185 uint64_t max_alloc_size;
186 uint32_t min_alloc_size;
187 bool has_dedicated_vram;
188 bool has_virtual_memory;
189 bool gfx_ib_pad_with_type2;
190 bool has_sdma;
191 bool has_uvd;
192 uint32_t uvd_fw_version;
193 uint32_t vce_fw_version;
194 uint32_t me_fw_version;
195 uint32_t pfp_fw_version;
196 uint32_t ce_fw_version;
197 uint32_t vce_harvest_config;
198 uint32_t clock_crystal_freq;
199
200 /* Kernel info. */
201 uint32_t drm_major; /* version */
202 uint32_t drm_minor;
203 uint32_t drm_patchlevel;
204 bool has_userptr;
205
206 /* Shader cores. */
207 uint32_t r600_max_quad_pipes; /* wave size / 16 */
208 uint32_t max_shader_clock;
209 uint32_t num_good_compute_units;
210 uint32_t max_se; /* shader engines */
211 uint32_t max_sh_per_se; /* shader arrays per shader engine */
212
213 /* Render backends (color + depth blocks). */
214 uint32_t r300_num_gb_pipes;
215 uint32_t r300_num_z_pipes;
216 uint32_t r600_gb_backend_map; /* R600 harvest config */
217 bool r600_gb_backend_map_valid;
218 uint32_t r600_num_banks;
219 uint32_t num_render_backends;
220 uint32_t num_tile_pipes; /* pipe count from PIPE_CONFIG */
221 uint32_t pipe_interleave_bytes;
222 uint32_t enabled_rb_mask; /* GCN harvest config */
223
224 /* Tile modes. */
225 uint32_t si_tile_mode_array[32];
226 uint32_t cik_macrotile_mode_array[16];
227 };
228
229 /* Tiling info for display code, DRI sharing, and other data. */
230 struct radeon_bo_metadata {
231 /* Tiling flags describing the texture layout for display code
232 * and DRI sharing.
233 */
234 enum radeon_bo_layout microtile;
235 enum radeon_bo_layout macrotile;
236 unsigned pipe_config;
237 unsigned bankw;
238 unsigned bankh;
239 unsigned tile_split;
240 unsigned mtilea;
241 unsigned num_banks;
242 unsigned stride;
243 bool scanout;
244
245 /* Additional metadata associated with the buffer, in bytes.
246 * The maximum size is 64 * 4. This is opaque for the winsys & kernel.
247 * Supported by amdgpu only.
248 */
249 uint32_t size_metadata;
250 uint32_t metadata[64];
251 };
252
253 enum radeon_feature_id {
254 RADEON_FID_R300_HYPERZ_ACCESS, /* ZMask + HiZ */
255 RADEON_FID_R300_CMASK_ACCESS,
256 };
257
258 #define RADEON_SURF_MAX_LEVELS 15
259
260 enum radeon_surf_mode {
261 RADEON_SURF_MODE_LINEAR_ALIGNED = 1,
262 RADEON_SURF_MODE_1D = 2,
263 RADEON_SURF_MODE_2D = 3,
264 };
265
266 /* the first 16 bits are reserved for libdrm_radeon, don't use them */
267 #define RADEON_SURF_SCANOUT (1 << 16)
268 #define RADEON_SURF_ZBUFFER (1 << 17)
269 #define RADEON_SURF_SBUFFER (1 << 18)
270 #define RADEON_SURF_Z_OR_SBUFFER (RADEON_SURF_ZBUFFER | RADEON_SURF_SBUFFER)
271 /* bits 19 and 20 are reserved for libdrm_radeon, don't use them */
272 #define RADEON_SURF_FMASK (1 << 21)
273 #define RADEON_SURF_DISABLE_DCC (1 << 22)
274 #define RADEON_SURF_TC_COMPATIBLE_HTILE (1 << 23)
275 #define RADEON_SURF_IMPORTED (1 << 24)
276
277 struct radeon_surf_level {
278 uint64_t offset;
279 uint64_t slice_size;
280 uint64_t dcc_offset;
281 uint64_t dcc_fast_clear_size;
282 uint16_t nblk_x;
283 uint16_t nblk_y;
284 uint32_t pitch_bytes;
285 enum radeon_surf_mode mode;
286 };
287
288 struct radeon_surf {
289 /* Format properties. */
290 unsigned blk_w:4;
291 unsigned blk_h:4;
292 unsigned bpe:5;
293 /* Number of mipmap levels where DCC is enabled starting from level 0.
294 * Non-zero levels may be disabled due to alignment constraints, but not
295 * the first level.
296 */
297 unsigned num_dcc_levels:4;
298 uint32_t flags;
299
300 /* These are return values. Some of them can be set by the caller, but
301 * they will be treated as hints (e.g. bankw, bankh) and might be
302 * changed by the calculator.
303 */
304 uint64_t surf_size;
305 uint64_t dcc_size;
306 uint64_t htile_size;
307
308 uint32_t surf_alignment;
309 uint32_t dcc_alignment;
310 uint32_t htile_alignment;
311
312 /* This applies to EG and later. */
313 unsigned bankw:4; /* max 8 */
314 unsigned bankh:4; /* max 8 */
315 unsigned mtilea:4; /* max 8 */
316 unsigned tile_split:13; /* max 4K */
317 unsigned stencil_tile_split:13; /* max 4K */
318 unsigned pipe_config:5; /* max 17 */
319 unsigned num_banks:5; /* max 16 */
320 unsigned macro_tile_index:4; /* max 15 */
321 unsigned micro_tile_mode:3; /* displayable, thin, depth, rotated */
322
323 /* Whether the depth miptree or stencil miptree as used by the DB are
324 * adjusted from their TC compatible form to ensure depth/stencil
325 * compatibility. If either is true, the corresponding plane cannot be
326 * sampled from.
327 */
328 unsigned depth_adjusted:1;
329 unsigned stencil_adjusted:1;
330
331 struct radeon_surf_level level[RADEON_SURF_MAX_LEVELS];
332 struct radeon_surf_level stencil_level[RADEON_SURF_MAX_LEVELS];
333 uint8_t tiling_index[RADEON_SURF_MAX_LEVELS];
334 uint8_t stencil_tiling_index[RADEON_SURF_MAX_LEVELS];
335 };
336
337 struct radeon_bo_list_item {
338 uint64_t bo_size;
339 uint64_t vm_address;
340 uint64_t priority_usage; /* mask of (1 << RADEON_PRIO_*) */
341 };
342
343 struct radeon_winsys {
344 /**
345 * The screen object this winsys was created for
346 */
347 struct pipe_screen *screen;
348
349 /**
350 * Decrement the winsys reference count.
351 *
352 * \param ws The winsys this function is called for.
353 * \return True if the winsys and screen should be destroyed.
354 */
355 bool (*unref)(struct radeon_winsys *ws);
356
357 /**
358 * Destroy this winsys.
359 *
360 * \param ws The winsys this function is called from.
361 */
362 void (*destroy)(struct radeon_winsys *ws);
363
364 /**
365 * Query an info structure from winsys.
366 *
367 * \param ws The winsys this function is called from.
368 * \param info Return structure
369 */
370 void (*query_info)(struct radeon_winsys *ws,
371 struct radeon_info *info);
372
373 /**************************************************************************
374 * Buffer management. Buffer attributes are mostly fixed over its lifetime.
375 *
376 * Remember that gallium gets to choose the interface it needs, and the
377 * window systems must then implement that interface (rather than the
378 * other way around...).
379 *************************************************************************/
380
381 /**
382 * Create a buffer object.
383 *
384 * \param ws The winsys this function is called from.
385 * \param size The size to allocate.
386 * \param alignment An alignment of the buffer in memory.
387 * \param use_reusable_pool Whether the cache buffer manager should be used.
388 * \param domain A bitmask of the RADEON_DOMAIN_* flags.
389 * \return The created buffer object.
390 */
391 struct pb_buffer *(*buffer_create)(struct radeon_winsys *ws,
392 uint64_t size,
393 unsigned alignment,
394 enum radeon_bo_domain domain,
395 enum radeon_bo_flag flags);
396
397 /**
398 * Map the entire data store of a buffer object into the client's address
399 * space.
400 *
401 * \param buf A winsys buffer object to map.
402 * \param cs A command stream to flush if the buffer is referenced by it.
403 * \param usage A bitmask of the PIPE_TRANSFER_* flags.
404 * \return The pointer at the beginning of the buffer.
405 */
406 void *(*buffer_map)(struct pb_buffer *buf,
407 struct radeon_winsys_cs *cs,
408 enum pipe_transfer_usage usage);
409
410 /**
411 * Unmap a buffer object from the client's address space.
412 *
413 * \param buf A winsys buffer object to unmap.
414 */
415 void (*buffer_unmap)(struct pb_buffer *buf);
416
417 /**
418 * Wait for the buffer and return true if the buffer is not used
419 * by the device.
420 *
421 * The timeout of 0 will only return the status.
422 * The timeout of PIPE_TIMEOUT_INFINITE will always wait until the buffer
423 * is idle.
424 */
425 bool (*buffer_wait)(struct pb_buffer *buf, uint64_t timeout,
426 enum radeon_bo_usage usage);
427
428 /**
429 * Return buffer metadata.
430 * (tiling info for display code, DRI sharing, and other data)
431 *
432 * \param buf A winsys buffer object to get the flags from.
433 * \param md Metadata
434 */
435 void (*buffer_get_metadata)(struct pb_buffer *buf,
436 struct radeon_bo_metadata *md);
437
438 /**
439 * Set buffer metadata.
440 * (tiling info for display code, DRI sharing, and other data)
441 *
442 * \param buf A winsys buffer object to set the flags for.
443 * \param md Metadata
444 */
445 void (*buffer_set_metadata)(struct pb_buffer *buf,
446 struct radeon_bo_metadata *md);
447
448 /**
449 * Get a winsys buffer from a winsys handle. The internal structure
450 * of the handle is platform-specific and only a winsys should access it.
451 *
452 * \param ws The winsys this function is called from.
453 * \param whandle A winsys handle pointer as was received from a state
454 * tracker.
455 * \param stride The returned buffer stride in bytes.
456 */
457 struct pb_buffer *(*buffer_from_handle)(struct radeon_winsys *ws,
458 struct winsys_handle *whandle,
459 unsigned *stride, unsigned *offset);
460
461 /**
462 * Get a winsys buffer from a user pointer. The resulting buffer can't
463 * be exported. Both pointer and size must be page aligned.
464 *
465 * \param ws The winsys this function is called from.
466 * \param pointer User pointer to turn into a buffer object.
467 * \param Size Size in bytes for the new buffer.
468 */
469 struct pb_buffer *(*buffer_from_ptr)(struct radeon_winsys *ws,
470 void *pointer, uint64_t size);
471
472 /**
473 * Whether the buffer was created from a user pointer.
474 *
475 * \param buf A winsys buffer object
476 * \return whether \p buf was created via buffer_from_ptr
477 */
478 bool (*buffer_is_user_ptr)(struct pb_buffer *buf);
479
480 /**
481 * Get a winsys handle from a winsys buffer. The internal structure
482 * of the handle is platform-specific and only a winsys should access it.
483 *
484 * \param buf A winsys buffer object to get the handle from.
485 * \param whandle A winsys handle pointer.
486 * \param stride A stride of the buffer in bytes, for texturing.
487 * \return true on success.
488 */
489 bool (*buffer_get_handle)(struct pb_buffer *buf,
490 unsigned stride, unsigned offset,
491 unsigned slice_size,
492 struct winsys_handle *whandle);
493
494 /**
495 * Return the virtual address of a buffer.
496 *
497 * When virtual memory is not in use, this is the offset relative to the
498 * relocation base (non-zero for sub-allocated buffers).
499 *
500 * \param buf A winsys buffer object
501 * \return virtual address
502 */
503 uint64_t (*buffer_get_virtual_address)(struct pb_buffer *buf);
504
505 /**
506 * Return the offset of this buffer relative to the relocation base.
507 * This is only non-zero for sub-allocated buffers.
508 *
509 * This is only supported in the radeon winsys, since amdgpu uses virtual
510 * addresses in submissions even for the video engines.
511 *
512 * \param buf A winsys buffer object
513 * \return the offset for relocations
514 */
515 unsigned (*buffer_get_reloc_offset)(struct pb_buffer *buf);
516
517 /**
518 * Query the initial placement of the buffer from the kernel driver.
519 */
520 enum radeon_bo_domain (*buffer_get_initial_domain)(struct pb_buffer *buf);
521
522 /**************************************************************************
523 * Command submission.
524 *
525 * Each pipe context should create its own command stream and submit
526 * commands independently of other contexts.
527 *************************************************************************/
528
529 /**
530 * Create a command submission context.
531 * Various command streams can be submitted to the same context.
532 */
533 struct radeon_winsys_ctx *(*ctx_create)(struct radeon_winsys *ws);
534
535 /**
536 * Destroy a context.
537 */
538 void (*ctx_destroy)(struct radeon_winsys_ctx *ctx);
539
540 /**
541 * Query a GPU reset status.
542 */
543 enum pipe_reset_status (*ctx_query_reset_status)(struct radeon_winsys_ctx *ctx);
544
545 /**
546 * Create a command stream.
547 *
548 * \param ctx The submission context
549 * \param ring_type The ring type (GFX, DMA, UVD)
550 * \param flush Flush callback function associated with the command stream.
551 * \param user User pointer that will be passed to the flush callback.
552 */
553 struct radeon_winsys_cs *(*cs_create)(struct radeon_winsys_ctx *ctx,
554 enum ring_type ring_type,
555 void (*flush)(void *ctx, unsigned flags,
556 struct pipe_fence_handle **fence),
557 void *flush_ctx);
558
559 /**
560 * Add a constant engine IB to a graphics CS. This makes the graphics CS
561 * from "cs_create" a group of two IBs that share a buffer list and are
562 * flushed together.
563 *
564 * The returned constant CS is only a stream for writing packets to the new
565 * IB. Calling other winsys functions with it is not allowed, not even
566 * "cs_destroy".
567 *
568 * In order to add buffers and check memory usage, use the graphics CS.
569 * In order to flush it, use the graphics CS, which will flush both IBs.
570 * Destroying the graphics CS will destroy both of them.
571 *
572 * \param cs The graphics CS from "cs_create" that will hold the buffer
573 * list and will be used for flushing.
574 */
575 struct radeon_winsys_cs *(*cs_add_const_ib)(struct radeon_winsys_cs *cs);
576
577 /**
578 * Add a constant engine preamble IB to a graphics CS. This add an extra IB
579 * in similar manner to cs_add_const_ib. This should always be called after
580 * cs_add_const_ib.
581 *
582 * The returned IB is a constant engine IB that only gets flushed if the
583 * context changed.
584 *
585 * \param cs The graphics CS from "cs_create" that will hold the buffer
586 * list and will be used for flushing.
587 */
588 struct radeon_winsys_cs *(*cs_add_const_preamble_ib)(struct radeon_winsys_cs *cs);
589 /**
590 * Destroy a command stream.
591 *
592 * \param cs A command stream to destroy.
593 */
594 void (*cs_destroy)(struct radeon_winsys_cs *cs);
595
596 /**
597 * Add a buffer. Each buffer used by a CS must be added using this function.
598 *
599 * \param cs Command stream
600 * \param buf Buffer
601 * \param usage Whether the buffer is used for read and/or write.
602 * \param domain Bitmask of the RADEON_DOMAIN_* flags.
603 * \param priority A higher number means a greater chance of being
604 * placed in the requested domain. 15 is the maximum.
605 * \return Buffer index.
606 */
607 unsigned (*cs_add_buffer)(struct radeon_winsys_cs *cs,
608 struct pb_buffer *buf,
609 enum radeon_bo_usage usage,
610 enum radeon_bo_domain domain,
611 enum radeon_bo_priority priority);
612
613 /**
614 * Return the index of an already-added buffer.
615 *
616 * Not supported on amdgpu. Drivers with GPUVM should not care about
617 * buffer indices.
618 *
619 * \param cs Command stream
620 * \param buf Buffer
621 * \return The buffer index, or -1 if the buffer has not been added.
622 */
623 int (*cs_lookup_buffer)(struct radeon_winsys_cs *cs,
624 struct pb_buffer *buf);
625
626 /**
627 * Return true if there is enough memory in VRAM and GTT for the buffers
628 * added so far. If the validation fails, all buffers which have
629 * been added since the last call of cs_validate will be removed and
630 * the CS will be flushed (provided there are still any buffers).
631 *
632 * \param cs A command stream to validate.
633 */
634 bool (*cs_validate)(struct radeon_winsys_cs *cs);
635
636 /**
637 * Check whether the given number of dwords is available in the IB.
638 * Optionally chain a new chunk of the IB if necessary and supported.
639 *
640 * \param cs A command stream.
641 * \param dw Number of CS dwords requested by the caller.
642 */
643 bool (*cs_check_space)(struct radeon_winsys_cs *cs, unsigned dw);
644
645 /**
646 * Return the buffer list.
647 *
648 * This is the buffer list as passed to the kernel, i.e. it only contains
649 * the parent buffers of sub-allocated buffers.
650 *
651 * \param cs Command stream
652 * \param list Returned buffer list. Set to NULL to query the count only.
653 * \return The buffer count.
654 */
655 unsigned (*cs_get_buffer_list)(struct radeon_winsys_cs *cs,
656 struct radeon_bo_list_item *list);
657
658 /**
659 * Flush a command stream.
660 *
661 * \param cs A command stream to flush.
662 * \param flags, RADEON_FLUSH_ASYNC or 0.
663 * \param fence Pointer to a fence. If non-NULL, a fence is inserted
664 * after the CS and is returned through this parameter.
665 * \return Negative POSIX error code or 0 for success.
666 * Asynchronous submissions never return an error.
667 */
668 int (*cs_flush)(struct radeon_winsys_cs *cs,
669 unsigned flags,
670 struct pipe_fence_handle **fence);
671
672 /**
673 * Create a fence before the CS is flushed.
674 * The user must flush manually to complete the initializaton of the fence.
675 * The fence must not be used before the flush.
676 */
677 struct pipe_fence_handle *(*cs_get_next_fence)(struct radeon_winsys_cs *cs);
678
679 /**
680 * Return true if a buffer is referenced by a command stream.
681 *
682 * \param cs A command stream.
683 * \param buf A winsys buffer.
684 */
685 bool (*cs_is_buffer_referenced)(struct radeon_winsys_cs *cs,
686 struct pb_buffer *buf,
687 enum radeon_bo_usage usage);
688
689 /**
690 * Request access to a feature for a command stream.
691 *
692 * \param cs A command stream.
693 * \param fid Feature ID, one of RADEON_FID_*
694 * \param enable Whether to enable or disable the feature.
695 */
696 bool (*cs_request_feature)(struct radeon_winsys_cs *cs,
697 enum radeon_feature_id fid,
698 bool enable);
699 /**
700 * Make sure all asynchronous flush of the cs have completed
701 *
702 * \param cs A command stream.
703 */
704 void (*cs_sync_flush)(struct radeon_winsys_cs *cs);
705
706 /**
707 * Wait for the fence and return true if the fence has been signalled.
708 * The timeout of 0 will only return the status.
709 * The timeout of PIPE_TIMEOUT_INFINITE will always wait until the fence
710 * is signalled.
711 */
712 bool (*fence_wait)(struct radeon_winsys *ws,
713 struct pipe_fence_handle *fence,
714 uint64_t timeout);
715
716 /**
717 * Reference counting for fences.
718 */
719 void (*fence_reference)(struct pipe_fence_handle **dst,
720 struct pipe_fence_handle *src);
721
722 /**
723 * Initialize surface
724 *
725 * \param ws The winsys this function is called from.
726 * \param tex Input texture description
727 * \param flags Bitmask of RADEON_SURF_* flags
728 * \param bpe Bytes per pixel, it can be different for Z buffers.
729 * \param mode Preferred tile mode. (linear, 1D, or 2D)
730 * \param surf Output structure
731 */
732 int (*surface_init)(struct radeon_winsys *ws,
733 const struct pipe_resource *tex,
734 unsigned flags, unsigned bpe,
735 enum radeon_surf_mode mode,
736 struct radeon_surf *surf);
737
738 uint64_t (*query_value)(struct radeon_winsys *ws,
739 enum radeon_value_id value);
740
741 bool (*read_registers)(struct radeon_winsys *ws, unsigned reg_offset,
742 unsigned num_registers, uint32_t *out);
743 };
744
745 static inline bool radeon_emitted(struct radeon_winsys_cs *cs, unsigned num_dw)
746 {
747 return cs && (cs->prev_dw + cs->current.cdw > num_dw);
748 }
749
750 static inline void radeon_emit(struct radeon_winsys_cs *cs, uint32_t value)
751 {
752 cs->current.buf[cs->current.cdw++] = value;
753 }
754
755 static inline void radeon_emit_array(struct radeon_winsys_cs *cs,
756 const uint32_t *values, unsigned count)
757 {
758 memcpy(cs->current.buf + cs->current.cdw, values, count * 4);
759 cs->current.cdw += count;
760 }
761
762 #endif