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