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