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