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