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