anv/cmd_buffer: Pack the 3DSTATE_VF packet on-demand
[mesa.git] / src / vulkan / anv_private.h
1 /*
2 * Copyright © 2015 Intel Corporation
3 *
4 * Permission is hereby granted, free of charge, to any person obtaining a
5 * copy of this software and associated documentation files (the "Software"),
6 * to deal in the Software without restriction, including without limitation
7 * the rights to use, copy, modify, merge, publish, distribute, sublicense,
8 * and/or sell copies of the Software, and to permit persons to whom the
9 * Software is furnished to do so, subject to the following conditions:
10 *
11 * The above copyright notice and this permission notice (including the next
12 * paragraph) shall be included in all copies or substantial portions of the
13 * Software.
14 *
15 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
18 * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
20 * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS
21 * IN THE SOFTWARE.
22 */
23
24 #pragma once
25
26 #include <stdlib.h>
27 #include <stdio.h>
28 #include <stdbool.h>
29 #include <pthread.h>
30 #include <assert.h>
31 #include <i915_drm.h>
32
33 #ifdef HAVE_VALGRIND
34 #include <valgrind.h>
35 #include <memcheck.h>
36 #define VG(x) x
37 #define __gen_validate_value(x) VALGRIND_CHECK_MEM_IS_DEFINED(&(x), sizeof(x))
38 #else
39 #define VG(x)
40 #endif
41
42 #include "brw_device_info.h"
43 #include "util/macros.h"
44 #include "util/list.h"
45
46 #define VK_PROTOTYPES
47 #include <vulkan/vulkan.h>
48 #include <vulkan/vulkan_intel.h>
49 #include <vulkan/vk_ext_khr_swapchain.h>
50 #include <vulkan/vk_ext_khr_device_swapchain.h>
51
52 #include "anv_entrypoints.h"
53 #include "brw_context.h"
54 #include "isl.h"
55
56 #ifdef __cplusplus
57 extern "C" {
58 #endif
59
60 #define ICD_LOADER_MAGIC 0x01CDC0DE
61
62 typedef union _VK_LOADER_DATA {
63 uintptr_t loaderMagic;
64 void *loaderData;
65 } VK_LOADER_DATA;
66
67 #define anv_noreturn __attribute__((__noreturn__))
68 #define anv_printflike(a, b) __attribute__((__format__(__printf__, a, b)))
69
70 #define MIN(a, b) ((a) < (b) ? (a) : (b))
71 #define MAX(a, b) ((a) > (b) ? (a) : (b))
72
73 static inline uint32_t
74 align_u32(uint32_t v, uint32_t a)
75 {
76 return (v + a - 1) & ~(a - 1);
77 }
78
79 static inline int32_t
80 align_i32(int32_t v, int32_t a)
81 {
82 return (v + a - 1) & ~(a - 1);
83 }
84
85 /** Alignment must be a power of 2. */
86 static inline bool
87 anv_is_aligned(uintmax_t n, uintmax_t a)
88 {
89 assert(a == (a & -a));
90 return (n & (a - 1)) == 0;
91 }
92
93 static inline uint32_t
94 anv_minify(uint32_t n, uint32_t levels)
95 {
96 if (unlikely(n == 0))
97 return 0;
98 else
99 return MAX(n >> levels, 1);
100 }
101
102 static inline bool
103 anv_clear_mask(uint32_t *inout_mask, uint32_t clear_mask)
104 {
105 if (*inout_mask & clear_mask) {
106 *inout_mask &= ~clear_mask;
107 return true;
108 } else {
109 return false;
110 }
111 }
112
113 #define for_each_bit(b, dword) \
114 for (uint32_t __dword = (dword); \
115 (b) = __builtin_ffs(__dword) - 1, __dword; \
116 __dword &= ~(1 << (b)))
117
118 #define typed_memcpy(dest, src, count) ({ \
119 static_assert(sizeof(*src) == sizeof(*dest), ""); \
120 memcpy((dest), (src), (count) * sizeof(*(src))); \
121 })
122
123 /* Define no kernel as 1, since that's an illegal offset for a kernel */
124 #define NO_KERNEL 1
125
126 struct anv_common {
127 VkStructureType sType;
128 const void* pNext;
129 };
130
131 /* Whenever we generate an error, pass it through this function. Useful for
132 * debugging, where we can break on it. Only call at error site, not when
133 * propagating errors. Might be useful to plug in a stack trace here.
134 */
135
136 VkResult __vk_errorf(VkResult error, const char *file, int line, const char *format, ...);
137
138 #ifdef DEBUG
139 #define vk_error(error) __vk_errorf(error, __FILE__, __LINE__, NULL);
140 #define vk_errorf(error, format, ...) __vk_errorf(error, __FILE__, __LINE__, format, ## __VA_ARGS__);
141 #else
142 #define vk_error(error) error
143 #define vk_errorf(error, format, ...) error
144 #endif
145
146 void __anv_finishme(const char *file, int line, const char *format, ...)
147 anv_printflike(3, 4);
148 void anv_loge(const char *format, ...) anv_printflike(1, 2);
149 void anv_loge_v(const char *format, va_list va);
150
151 /**
152 * Print a FINISHME message, including its source location.
153 */
154 #define anv_finishme(format, ...) \
155 __anv_finishme(__FILE__, __LINE__, format, ##__VA_ARGS__);
156
157 /* A non-fatal assert. Useful for debugging. */
158 #ifdef DEBUG
159 #define anv_assert(x) ({ \
160 if (unlikely(!(x))) \
161 fprintf(stderr, "%s:%d ASSERT: %s\n", __FILE__, __LINE__, #x); \
162 })
163 #else
164 #define anv_assert(x)
165 #endif
166
167 /**
168 * If a block of code is annotated with anv_validate, then the block runs only
169 * in debug builds.
170 */
171 #ifdef DEBUG
172 #define anv_validate if (1)
173 #else
174 #define anv_validate if (0)
175 #endif
176
177 void anv_abortf(const char *format, ...) anv_noreturn anv_printflike(1, 2);
178 void anv_abortfv(const char *format, va_list va) anv_noreturn;
179
180 #define stub_return(v) \
181 do { \
182 anv_finishme("stub %s", __func__); \
183 return (v); \
184 } while (0)
185
186 #define stub() \
187 do { \
188 anv_finishme("stub %s", __func__); \
189 return; \
190 } while (0)
191
192 /**
193 * A dynamically growable, circular buffer. Elements are added at head and
194 * removed from tail. head and tail are free-running uint32_t indices and we
195 * only compute the modulo with size when accessing the array. This way,
196 * number of bytes in the queue is always head - tail, even in case of
197 * wraparound.
198 */
199
200 struct anv_vector {
201 uint32_t head;
202 uint32_t tail;
203 uint32_t element_size;
204 uint32_t size;
205 void *data;
206 };
207
208 int anv_vector_init(struct anv_vector *queue, uint32_t element_size, uint32_t size);
209 void *anv_vector_add(struct anv_vector *queue);
210 void *anv_vector_remove(struct anv_vector *queue);
211
212 static inline int
213 anv_vector_length(struct anv_vector *queue)
214 {
215 return (queue->head - queue->tail) / queue->element_size;
216 }
217
218 static inline void *
219 anv_vector_head(struct anv_vector *vector)
220 {
221 assert(vector->tail < vector->head);
222 return (void *)((char *)vector->data +
223 ((vector->head - vector->element_size) &
224 (vector->size - 1)));
225 }
226
227 static inline void *
228 anv_vector_tail(struct anv_vector *vector)
229 {
230 return (void *)((char *)vector->data + (vector->tail & (vector->size - 1)));
231 }
232
233 static inline void
234 anv_vector_finish(struct anv_vector *queue)
235 {
236 free(queue->data);
237 }
238
239 #define anv_vector_foreach(elem, queue) \
240 static_assert(__builtin_types_compatible_p(__typeof__(queue), struct anv_vector *), ""); \
241 for (uint32_t __anv_vector_offset = (queue)->tail; \
242 elem = (queue)->data + (__anv_vector_offset & ((queue)->size - 1)), __anv_vector_offset < (queue)->head; \
243 __anv_vector_offset += (queue)->element_size)
244
245 struct anv_bo {
246 int gem_handle;
247
248 /* Index into the current validation list. This is used by the
249 * validation list building alrogithm to track which buffers are already
250 * in the validation list so that we can ensure uniqueness.
251 */
252 uint32_t index;
253
254 /* Last known offset. This value is provided by the kernel when we
255 * execbuf and is used as the presumed offset for the next bunch of
256 * relocations.
257 */
258 uint64_t offset;
259
260 uint64_t size;
261 void *map;
262 };
263
264 /* Represents a lock-free linked list of "free" things. This is used by
265 * both the block pool and the state pools. Unfortunately, in order to
266 * solve the ABA problem, we can't use a single uint32_t head.
267 */
268 union anv_free_list {
269 struct {
270 int32_t offset;
271
272 /* A simple count that is incremented every time the head changes. */
273 uint32_t count;
274 };
275 uint64_t u64;
276 };
277
278 #define ANV_FREE_LIST_EMPTY ((union anv_free_list) { { 1, 0 } })
279
280 struct anv_block_state {
281 union {
282 struct {
283 uint32_t next;
284 uint32_t end;
285 };
286 uint64_t u64;
287 };
288 };
289
290 struct anv_block_pool {
291 struct anv_device *device;
292
293 struct anv_bo bo;
294
295 /* The offset from the start of the bo to the "center" of the block
296 * pool. Pointers to allocated blocks are given by
297 * bo.map + center_bo_offset + offsets.
298 */
299 uint32_t center_bo_offset;
300
301 /* Current memory map of the block pool. This pointer may or may not
302 * point to the actual beginning of the block pool memory. If
303 * anv_block_pool_alloc_back has ever been called, then this pointer
304 * will point to the "center" position of the buffer and all offsets
305 * (negative or positive) given out by the block pool alloc functions
306 * will be valid relative to this pointer.
307 *
308 * In particular, map == bo.map + center_offset
309 */
310 void *map;
311 int fd;
312
313 /**
314 * Array of mmaps and gem handles owned by the block pool, reclaimed when
315 * the block pool is destroyed.
316 */
317 struct anv_vector mmap_cleanups;
318
319 uint32_t block_size;
320
321 union anv_free_list free_list;
322 struct anv_block_state state;
323
324 union anv_free_list back_free_list;
325 struct anv_block_state back_state;
326 };
327
328 /* Block pools are backed by a fixed-size 2GB memfd */
329 #define BLOCK_POOL_MEMFD_SIZE (1ull << 32)
330
331 /* The center of the block pool is also the middle of the memfd. This may
332 * change in the future if we decide differently for some reason.
333 */
334 #define BLOCK_POOL_MEMFD_CENTER (BLOCK_POOL_MEMFD_SIZE / 2)
335
336 static inline uint32_t
337 anv_block_pool_size(struct anv_block_pool *pool)
338 {
339 return pool->state.end + pool->back_state.end;
340 }
341
342 struct anv_state {
343 int32_t offset;
344 uint32_t alloc_size;
345 void *map;
346 };
347
348 struct anv_fixed_size_state_pool {
349 size_t state_size;
350 union anv_free_list free_list;
351 struct anv_block_state block;
352 };
353
354 #define ANV_MIN_STATE_SIZE_LOG2 6
355 #define ANV_MAX_STATE_SIZE_LOG2 10
356
357 #define ANV_STATE_BUCKETS (ANV_MAX_STATE_SIZE_LOG2 - ANV_MIN_STATE_SIZE_LOG2)
358
359 struct anv_state_pool {
360 struct anv_block_pool *block_pool;
361 struct anv_fixed_size_state_pool buckets[ANV_STATE_BUCKETS];
362 };
363
364 struct anv_state_stream {
365 struct anv_block_pool *block_pool;
366 uint32_t next;
367 uint32_t current_block;
368 uint32_t end;
369 };
370
371 void anv_block_pool_init(struct anv_block_pool *pool,
372 struct anv_device *device, uint32_t block_size);
373 void anv_block_pool_finish(struct anv_block_pool *pool);
374 int32_t anv_block_pool_alloc(struct anv_block_pool *pool);
375 int32_t anv_block_pool_alloc_back(struct anv_block_pool *pool);
376 void anv_block_pool_free(struct anv_block_pool *pool, int32_t offset);
377 void anv_state_pool_init(struct anv_state_pool *pool,
378 struct anv_block_pool *block_pool);
379 void anv_state_pool_finish(struct anv_state_pool *pool);
380 struct anv_state anv_state_pool_alloc(struct anv_state_pool *pool,
381 size_t state_size, size_t alignment);
382 void anv_state_pool_free(struct anv_state_pool *pool, struct anv_state state);
383 void anv_state_stream_init(struct anv_state_stream *stream,
384 struct anv_block_pool *block_pool);
385 void anv_state_stream_finish(struct anv_state_stream *stream);
386 struct anv_state anv_state_stream_alloc(struct anv_state_stream *stream,
387 uint32_t size, uint32_t alignment);
388
389 /**
390 * Implements a pool of re-usable BOs. The interface is identical to that
391 * of block_pool except that each block is its own BO.
392 */
393 struct anv_bo_pool {
394 struct anv_device *device;
395
396 uint32_t bo_size;
397
398 void *free_list;
399 };
400
401 void anv_bo_pool_init(struct anv_bo_pool *pool,
402 struct anv_device *device, uint32_t block_size);
403 void anv_bo_pool_finish(struct anv_bo_pool *pool);
404 VkResult anv_bo_pool_alloc(struct anv_bo_pool *pool, struct anv_bo *bo);
405 void anv_bo_pool_free(struct anv_bo_pool *pool, const struct anv_bo *bo);
406
407
408 void *anv_resolve_entrypoint(uint32_t index);
409
410 extern struct anv_dispatch_table dtable;
411
412 #define ANV_CALL(func) ({ \
413 if (dtable.func == NULL) { \
414 size_t idx = offsetof(struct anv_dispatch_table, func) / sizeof(void *); \
415 dtable.entrypoints[idx] = anv_resolve_entrypoint(idx); \
416 } \
417 dtable.func; \
418 })
419
420
421 struct anv_physical_device {
422 VK_LOADER_DATA _loader_data;
423
424 struct anv_instance * instance;
425 uint32_t chipset_id;
426 const char * path;
427 const char * name;
428 const struct brw_device_info * info;
429 uint64_t aperture_size;
430 struct brw_compiler * compiler;
431 struct isl_device isl_dev;
432 };
433
434 bool anv_is_scalar_shader_stage(const struct brw_compiler *compiler,
435 VkShaderStage stage);
436
437 struct anv_instance {
438 VK_LOADER_DATA _loader_data;
439
440 void * pAllocUserData;
441 PFN_vkAllocFunction pfnAlloc;
442 PFN_vkFreeFunction pfnFree;
443 uint32_t apiVersion;
444 int physicalDeviceCount;
445 struct anv_physical_device physicalDevice;
446
447 struct anv_wsi_implementation * wsi_impl[VK_PLATFORM_NUM_KHR];
448 };
449
450 VkResult anv_init_wsi(struct anv_instance *instance);
451 void anv_finish_wsi(struct anv_instance *instance);
452
453 struct anv_meta_state {
454 struct {
455 struct anv_pipeline *color_pipeline;
456 struct anv_pipeline *depth_only_pipeline;
457 struct anv_pipeline *stencil_only_pipeline;
458 struct anv_pipeline *depthstencil_pipeline;
459 } clear;
460
461 struct {
462 VkRenderPass render_pass;
463
464 /** Pipeline that blits from a 2D image. */
465 VkPipeline pipeline_2d_src;
466
467 /** Pipeline that blits from a 3D image. */
468 VkPipeline pipeline_3d_src;
469
470 VkPipelineLayout pipeline_layout;
471 VkDescriptorSetLayout ds_layout;
472 } blit;
473 };
474
475 struct anv_queue {
476 VK_LOADER_DATA _loader_data;
477
478 struct anv_device * device;
479
480 struct anv_state_pool * pool;
481 };
482
483 struct anv_device {
484 VK_LOADER_DATA _loader_data;
485
486 struct anv_instance * instance;
487 uint32_t chipset_id;
488 struct brw_device_info info;
489 struct isl_device isl_dev;
490 int context_id;
491 int fd;
492
493 struct anv_bo_pool batch_bo_pool;
494
495 struct anv_block_pool dynamic_state_block_pool;
496 struct anv_state_pool dynamic_state_pool;
497
498 struct anv_block_pool instruction_block_pool;
499 struct anv_block_pool surface_state_block_pool;
500 struct anv_state_pool surface_state_pool;
501
502 struct anv_bo workaround_bo;
503
504 struct anv_meta_state meta_state;
505
506 struct anv_state border_colors;
507
508 struct anv_queue queue;
509
510 struct anv_block_pool scratch_block_pool;
511
512 pthread_mutex_t mutex;
513 };
514
515 void *
516 anv_instance_alloc(struct anv_instance * instance,
517 size_t size,
518 size_t alignment,
519 VkSystemAllocType allocType);
520
521 void
522 anv_instance_free(struct anv_instance * instance,
523 void * mem);
524
525 void *
526 anv_device_alloc(struct anv_device * device,
527 size_t size,
528 size_t alignment,
529 VkSystemAllocType allocType);
530
531 void
532 anv_device_free(struct anv_device * device,
533 void * mem);
534
535 void* anv_gem_mmap(struct anv_device *device,
536 uint32_t gem_handle, uint64_t offset, uint64_t size);
537 void anv_gem_munmap(void *p, uint64_t size);
538 uint32_t anv_gem_create(struct anv_device *device, size_t size);
539 void anv_gem_close(struct anv_device *device, int gem_handle);
540 int anv_gem_userptr(struct anv_device *device, void *mem, size_t size);
541 int anv_gem_wait(struct anv_device *device, int gem_handle, int64_t *timeout_ns);
542 int anv_gem_execbuffer(struct anv_device *device,
543 struct drm_i915_gem_execbuffer2 *execbuf);
544 int anv_gem_set_tiling(struct anv_device *device, int gem_handle,
545 uint32_t stride, uint32_t tiling);
546 int anv_gem_create_context(struct anv_device *device);
547 int anv_gem_destroy_context(struct anv_device *device, int context);
548 int anv_gem_get_param(int fd, uint32_t param);
549 int anv_gem_get_aperture(int fd, uint64_t *size);
550 int anv_gem_handle_to_fd(struct anv_device *device, int gem_handle);
551 int anv_gem_fd_to_handle(struct anv_device *device, int fd);
552 int anv_gem_userptr(struct anv_device *device, void *mem, size_t size);
553
554 VkResult anv_bo_init_new(struct anv_bo *bo, struct anv_device *device, uint64_t size);
555
556 struct anv_reloc_list {
557 size_t num_relocs;
558 size_t array_length;
559 struct drm_i915_gem_relocation_entry * relocs;
560 struct anv_bo ** reloc_bos;
561 };
562
563 VkResult anv_reloc_list_init(struct anv_reloc_list *list,
564 struct anv_device *device);
565 void anv_reloc_list_finish(struct anv_reloc_list *list,
566 struct anv_device *device);
567
568 uint64_t anv_reloc_list_add(struct anv_reloc_list *list,
569 struct anv_device *device,
570 uint32_t offset, struct anv_bo *target_bo,
571 uint32_t delta);
572
573 struct anv_batch_bo {
574 /* Link in the anv_cmd_buffer.owned_batch_bos list */
575 struct list_head link;
576
577 struct anv_bo bo;
578
579 /* Bytes actually consumed in this batch BO */
580 size_t length;
581
582 /* Last seen surface state block pool bo offset */
583 uint32_t last_ss_pool_bo_offset;
584
585 struct anv_reloc_list relocs;
586 };
587
588 struct anv_batch {
589 struct anv_device * device;
590
591 void * start;
592 void * end;
593 void * next;
594
595 struct anv_reloc_list * relocs;
596
597 /* This callback is called (with the associated user data) in the event
598 * that the batch runs out of space.
599 */
600 VkResult (*extend_cb)(struct anv_batch *, void *);
601 void * user_data;
602 };
603
604 void *anv_batch_emit_dwords(struct anv_batch *batch, int num_dwords);
605 void anv_batch_emit_batch(struct anv_batch *batch, struct anv_batch *other);
606 uint64_t anv_batch_emit_reloc(struct anv_batch *batch,
607 void *location, struct anv_bo *bo, uint32_t offset);
608
609 struct anv_address {
610 struct anv_bo *bo;
611 uint32_t offset;
612 };
613
614 #define __gen_address_type struct anv_address
615 #define __gen_user_data struct anv_batch
616
617 static inline uint64_t
618 __gen_combine_address(struct anv_batch *batch, void *location,
619 const struct anv_address address, uint32_t delta)
620 {
621 if (address.bo == NULL) {
622 return address.offset + delta;
623 } else {
624 assert(batch->start <= location && location < batch->end);
625
626 return anv_batch_emit_reloc(batch, location, address.bo, address.offset + delta);
627 }
628 }
629
630 #define anv_batch_emit(batch, cmd, ...) do { \
631 void *__dst = anv_batch_emit_dwords(batch, cmd ## _length); \
632 struct cmd __template = { \
633 cmd ## _header, \
634 __VA_ARGS__ \
635 }; \
636 cmd ## _pack(batch, __dst, &__template); \
637 VG(VALGRIND_CHECK_MEM_IS_DEFINED(__dst, cmd ## _length * 4)); \
638 } while (0)
639
640 #define anv_batch_emitn(batch, n, cmd, ...) ({ \
641 void *__dst = anv_batch_emit_dwords(batch, n); \
642 struct cmd __template = { \
643 cmd ## _header, \
644 .DwordLength = n - cmd ## _length_bias, \
645 __VA_ARGS__ \
646 }; \
647 cmd ## _pack(batch, __dst, &__template); \
648 __dst; \
649 })
650
651 #define anv_batch_emit_merge(batch, dwords0, dwords1) \
652 do { \
653 uint32_t *dw; \
654 \
655 assert(ARRAY_SIZE(dwords0) == ARRAY_SIZE(dwords1)); \
656 dw = anv_batch_emit_dwords((batch), ARRAY_SIZE(dwords0)); \
657 for (uint32_t i = 0; i < ARRAY_SIZE(dwords0); i++) \
658 dw[i] = (dwords0)[i] | (dwords1)[i]; \
659 VG(VALGRIND_CHECK_MEM_IS_DEFINED(dw, ARRAY_SIZE(dwords0) * 4));\
660 } while (0)
661
662 #define GEN7_MOCS (struct GEN7_MEMORY_OBJECT_CONTROL_STATE) { \
663 .GraphicsDataTypeGFDT = 0, \
664 .LLCCacheabilityControlLLCCC = 0, \
665 .L3CacheabilityControlL3CC = 1, \
666 }
667
668 #define GEN8_MOCS { \
669 .MemoryTypeLLCeLLCCacheabilityControl = WB, \
670 .TargetCache = L3DefertoPATforLLCeLLCselection, \
671 .AgeforQUADLRU = 0 \
672 }
673
674 struct anv_device_memory {
675 struct anv_bo bo;
676 VkDeviceSize map_size;
677 void * map;
678 };
679
680 /**
681 * Header for Vertex URB Entry (VUE)
682 */
683 struct anv_vue_header {
684 uint32_t Reserved;
685 uint32_t RTAIndex; /* RenderTargetArrayIndex */
686 uint32_t ViewportIndex;
687 float PointWidth;
688 };
689
690 struct anv_descriptor_set_binding_layout {
691 /* Number of array elements in this binding */
692 uint16_t array_size;
693
694 /* Index into the flattend descriptor set */
695 uint16_t descriptor_index;
696
697 /* Index into the dynamic state array for a dynamic buffer */
698 int16_t dynamic_offset_index;
699
700 struct {
701 /* Index into the binding table for the associated surface */
702 int16_t surface_index;
703
704 /* Index into the sampler table for the associated sampler */
705 int16_t sampler_index;
706 } stage[VK_SHADER_STAGE_NUM];
707
708 /* Immutable samplers (or NULL if no immutable samplers) */
709 struct anv_sampler **immutable_samplers;
710 };
711
712 struct anv_descriptor_set_layout {
713 /* Number of bindings in this descriptor set */
714 uint16_t binding_count;
715
716 /* Total size of the descriptor set with room for all array entries */
717 uint16_t size;
718
719 /* Shader stages affected by this descriptor set */
720 uint16_t shader_stages;
721
722 /* Number of dynamic offsets used by this descriptor set */
723 uint16_t dynamic_offset_count;
724
725 /* Bindings in this descriptor set */
726 struct anv_descriptor_set_binding_layout binding[0];
727 };
728
729 struct anv_descriptor {
730 VkDescriptorType type;
731
732 union {
733 struct {
734 union {
735 struct anv_image_view *image_view;
736 };
737 struct anv_sampler *sampler;
738 };
739
740 struct {
741 struct anv_buffer *buffer;
742 uint64_t offset;
743 uint64_t range;
744 };
745 };
746 };
747
748 struct anv_descriptor_set {
749 const struct anv_descriptor_set_layout *layout;
750 struct anv_descriptor descriptors[0];
751 };
752
753 VkResult
754 anv_descriptor_set_create(struct anv_device *device,
755 const struct anv_descriptor_set_layout *layout,
756 struct anv_descriptor_set **out_set);
757
758 void
759 anv_descriptor_set_destroy(struct anv_device *device,
760 struct anv_descriptor_set *set);
761
762 #define MAX_VBS 32
763 #define MAX_SETS 8
764 #define MAX_RTS 8
765 #define MAX_VIEWPORTS 16
766 #define MAX_SCISSORS 16
767 #define MAX_PUSH_CONSTANTS_SIZE 128
768 #define MAX_DYNAMIC_BUFFERS 16
769 #define MAX_IMAGES 8
770
771 struct anv_pipeline_binding {
772 /* The descriptor set this surface corresponds to */
773 uint16_t set;
774
775 /* Offset into the descriptor set */
776 uint16_t offset;
777 };
778
779 struct anv_pipeline_layout {
780 struct {
781 struct anv_descriptor_set_layout *layout;
782 uint32_t dynamic_offset_start;
783 struct {
784 uint32_t surface_start;
785 uint32_t sampler_start;
786 } stage[VK_SHADER_STAGE_NUM];
787 } set[MAX_SETS];
788
789 uint32_t num_sets;
790
791 struct {
792 bool has_dynamic_offsets;
793 uint32_t surface_count;
794 struct anv_pipeline_binding *surface_to_descriptor;
795 uint32_t sampler_count;
796 struct anv_pipeline_binding *sampler_to_descriptor;
797 } stage[VK_SHADER_STAGE_NUM];
798
799 struct anv_pipeline_binding entries[0];
800 };
801
802 struct anv_buffer {
803 struct anv_device * device;
804 VkDeviceSize size;
805
806 /* Set when bound */
807 struct anv_bo * bo;
808 VkDeviceSize offset;
809 };
810
811 enum anv_cmd_dirty_bits {
812 ANV_CMD_DIRTY_DYNAMIC_VIEWPORT = 1 << 0, /* VK_DYNAMIC_STATE_VIEWPORT */
813 ANV_CMD_DIRTY_DYNAMIC_SCISSOR = 1 << 1, /* VK_DYNAMIC_STATE_SCISSOR */
814 ANV_CMD_DIRTY_DYNAMIC_LINE_WIDTH = 1 << 2, /* VK_DYNAMIC_STATE_LINE_WIDTH */
815 ANV_CMD_DIRTY_DYNAMIC_DEPTH_BIAS = 1 << 3, /* VK_DYNAMIC_STATE_DEPTH_BIAS */
816 ANV_CMD_DIRTY_DYNAMIC_BLEND_CONSTANTS = 1 << 4, /* VK_DYNAMIC_STATE_BLEND_CONSTANTS */
817 ANV_CMD_DIRTY_DYNAMIC_DEPTH_BOUNDS = 1 << 5, /* VK_DYNAMIC_STATE_DEPTH_BOUNDS */
818 ANV_CMD_DIRTY_DYNAMIC_STENCIL_COMPARE_MASK = 1 << 6, /* VK_DYNAMIC_STATE_STENCIL_COMPARE_MASK */
819 ANV_CMD_DIRTY_DYNAMIC_STENCIL_WRITE_MASK = 1 << 7, /* VK_DYNAMIC_STATE_STENCIL_WRITE_MASK */
820 ANV_CMD_DIRTY_DYNAMIC_STENCIL_REFERENCE = 1 << 8, /* VK_DYNAMIC_STATE_STENCIL_REFERENCE */
821 ANV_CMD_DIRTY_DYNAMIC_ALL = (1 << 9) - 1,
822 ANV_CMD_DIRTY_PIPELINE = 1 << 9,
823 ANV_CMD_DIRTY_INDEX_BUFFER = 1 << 10,
824 };
825 typedef uint32_t anv_cmd_dirty_mask_t;
826
827 struct anv_vertex_binding {
828 struct anv_buffer * buffer;
829 VkDeviceSize offset;
830 };
831
832 struct anv_push_constants {
833 /* Current allocated size of this push constants data structure.
834 * Because a decent chunk of it may not be used (images on SKL, for
835 * instance), we won't actually allocate the entire structure up-front.
836 */
837 uint32_t size;
838
839 /* Push constant data provided by the client through vkPushConstants */
840 uint8_t client_data[MAX_PUSH_CONSTANTS_SIZE];
841
842 /* Our hardware only provides zero-based vertex and instance id so, in
843 * order to satisfy the vulkan requirements, we may have to push one or
844 * both of these into the shader.
845 */
846 uint32_t base_vertex;
847 uint32_t base_instance;
848
849 /* Offsets and ranges for dynamically bound buffers */
850 struct {
851 uint32_t offset;
852 uint32_t range;
853 } dynamic[MAX_DYNAMIC_BUFFERS];
854
855 /* Image data for image_load_store on pre-SKL */
856 struct brw_image_param images[MAX_IMAGES];
857 };
858
859 struct anv_dynamic_state {
860 struct {
861 uint32_t count;
862 VkViewport viewports[MAX_VIEWPORTS];
863 } viewport;
864
865 struct {
866 uint32_t count;
867 VkRect2D scissors[MAX_SCISSORS];
868 } scissor;
869
870 float line_width;
871
872 struct {
873 float bias;
874 float clamp;
875 float slope_scaled;
876 } depth_bias;
877
878 float blend_constants[4];
879
880 struct {
881 float min;
882 float max;
883 } depth_bounds;
884
885 struct {
886 uint32_t front;
887 uint32_t back;
888 } stencil_compare_mask;
889
890 struct {
891 uint32_t front;
892 uint32_t back;
893 } stencil_write_mask;
894
895 struct {
896 uint32_t front;
897 uint32_t back;
898 } stencil_reference;
899 };
900
901 extern const struct anv_dynamic_state default_dynamic_state;
902
903 void anv_dynamic_state_copy(struct anv_dynamic_state *dest,
904 const struct anv_dynamic_state *src,
905 uint32_t copy_mask);
906
907 /** State required while building cmd buffer */
908 struct anv_cmd_state {
909 uint32_t current_pipeline;
910 uint32_t vb_dirty;
911 anv_cmd_dirty_mask_t dirty;
912 anv_cmd_dirty_mask_t compute_dirty;
913 VkShaderStageFlags descriptors_dirty;
914 VkShaderStageFlags push_constants_dirty;
915 uint32_t scratch_size;
916 struct anv_pipeline * pipeline;
917 struct anv_pipeline * compute_pipeline;
918 struct anv_framebuffer * framebuffer;
919 struct anv_render_pass * pass;
920 struct anv_subpass * subpass;
921 uint32_t restart_index;
922 struct anv_vertex_binding vertex_bindings[MAX_VBS];
923 struct anv_descriptor_set * descriptors[MAX_SETS];
924 struct anv_push_constants * push_constants[VK_SHADER_STAGE_NUM];
925 struct anv_dynamic_state dynamic;
926
927 struct {
928 struct anv_buffer * index_buffer;
929 uint32_t index_type; /**< 3DSTATE_INDEX_BUFFER.IndexFormat */
930 uint32_t index_offset;
931 } gen7;
932 };
933
934 struct anv_cmd_pool {
935 struct list_head cmd_buffers;
936 };
937
938 #define ANV_CMD_BUFFER_BATCH_SIZE 8192
939
940 enum anv_cmd_buffer_exec_mode {
941 ANV_CMD_BUFFER_EXEC_MODE_PRIMARY,
942 ANV_CMD_BUFFER_EXEC_MODE_EMIT,
943 ANV_CMD_BUFFER_EXEC_MODE_CHAIN,
944 ANV_CMD_BUFFER_EXEC_MODE_COPY_AND_CHAIN,
945 };
946
947 struct anv_cmd_buffer {
948 VK_LOADER_DATA _loader_data;
949
950 struct anv_device * device;
951
952 struct list_head pool_link;
953
954 struct anv_batch batch;
955
956 /* Fields required for the actual chain of anv_batch_bo's.
957 *
958 * These fields are initialized by anv_cmd_buffer_init_batch_bo_chain().
959 */
960 struct list_head batch_bos;
961 enum anv_cmd_buffer_exec_mode exec_mode;
962
963 /* A vector of anv_batch_bo pointers for every batch or surface buffer
964 * referenced by this command buffer
965 *
966 * initialized by anv_cmd_buffer_init_batch_bo_chain()
967 */
968 struct anv_vector seen_bbos;
969
970 /* A vector of int32_t's for every block of binding tables.
971 *
972 * initialized by anv_cmd_buffer_init_batch_bo_chain()
973 */
974 struct anv_vector bt_blocks;
975 uint32_t bt_next;
976 struct anv_reloc_list surface_relocs;
977
978 /* Information needed for execbuf
979 *
980 * These fields are generated by anv_cmd_buffer_prepare_execbuf().
981 */
982 struct {
983 struct drm_i915_gem_execbuffer2 execbuf;
984
985 struct drm_i915_gem_exec_object2 * objects;
986 uint32_t bo_count;
987 struct anv_bo ** bos;
988
989 /* Allocated length of the 'objects' and 'bos' arrays */
990 uint32_t array_length;
991
992 bool need_reloc;
993 } execbuf2;
994
995 /* Serial for tracking buffer completion */
996 uint32_t serial;
997
998 /* Stream objects for storing temporary data */
999 struct anv_state_stream surface_state_stream;
1000 struct anv_state_stream dynamic_state_stream;
1001
1002 VkCmdBufferOptimizeFlags opt_flags;
1003 VkCmdBufferLevel level;
1004
1005 struct anv_cmd_state state;
1006 };
1007
1008 VkResult anv_cmd_buffer_init_batch_bo_chain(struct anv_cmd_buffer *cmd_buffer);
1009 void anv_cmd_buffer_fini_batch_bo_chain(struct anv_cmd_buffer *cmd_buffer);
1010 void anv_cmd_buffer_reset_batch_bo_chain(struct anv_cmd_buffer *cmd_buffer);
1011 void anv_cmd_buffer_end_batch_buffer(struct anv_cmd_buffer *cmd_buffer);
1012 void anv_cmd_buffer_add_secondary(struct anv_cmd_buffer *primary,
1013 struct anv_cmd_buffer *secondary);
1014 void anv_cmd_buffer_prepare_execbuf(struct anv_cmd_buffer *cmd_buffer);
1015
1016 VkResult anv_cmd_buffer_emit_binding_table(struct anv_cmd_buffer *cmd_buffer,
1017 unsigned stage, struct anv_state *bt_state);
1018 VkResult anv_cmd_buffer_emit_samplers(struct anv_cmd_buffer *cmd_buffer,
1019 unsigned stage, struct anv_state *state);
1020 void gen7_cmd_buffer_flush_descriptor_sets(struct anv_cmd_buffer *cmd_buffer);
1021
1022 struct anv_state anv_cmd_buffer_emit_dynamic(struct anv_cmd_buffer *cmd_buffer,
1023 uint32_t *a, uint32_t dwords,
1024 uint32_t alignment);
1025 struct anv_state anv_cmd_buffer_merge_dynamic(struct anv_cmd_buffer *cmd_buffer,
1026 uint32_t *a, uint32_t *b,
1027 uint32_t dwords, uint32_t alignment);
1028 void anv_cmd_buffer_begin_subpass(struct anv_cmd_buffer *cmd_buffer,
1029 struct anv_subpass *subpass);
1030
1031 struct anv_address
1032 anv_cmd_buffer_surface_base_address(struct anv_cmd_buffer *cmd_buffer);
1033 struct anv_state
1034 anv_cmd_buffer_alloc_binding_table(struct anv_cmd_buffer *cmd_buffer,
1035 uint32_t entries, uint32_t *state_offset);
1036 struct anv_state
1037 anv_cmd_buffer_alloc_surface_state(struct anv_cmd_buffer *cmd_buffer);
1038 struct anv_state
1039 anv_cmd_buffer_alloc_dynamic_state(struct anv_cmd_buffer *cmd_buffer,
1040 uint32_t size, uint32_t alignment);
1041
1042 VkResult
1043 anv_cmd_buffer_new_binding_table_block(struct anv_cmd_buffer *cmd_buffer);
1044
1045 void gen8_cmd_buffer_emit_viewport(struct anv_cmd_buffer *cmd_buffer);
1046 void gen7_cmd_buffer_emit_scissor(struct anv_cmd_buffer *cmd_buffer);
1047
1048 void gen7_cmd_buffer_emit_state_base_address(struct anv_cmd_buffer *cmd_buffer);
1049 void gen8_cmd_buffer_emit_state_base_address(struct anv_cmd_buffer *cmd_buffer);
1050
1051 void anv_cmd_buffer_emit_state_base_address(struct anv_cmd_buffer *cmd_buffer);
1052
1053 void gen7_cmd_buffer_begin_subpass(struct anv_cmd_buffer *cmd_buffer,
1054 struct anv_subpass *subpass);
1055
1056 void gen8_cmd_buffer_begin_subpass(struct anv_cmd_buffer *cmd_buffer,
1057 struct anv_subpass *subpass);
1058
1059 void anv_cmd_buffer_begin_subpass(struct anv_cmd_buffer *cmd_buffer,
1060 struct anv_subpass *subpass);
1061
1062 struct anv_state
1063 anv_cmd_buffer_push_constants(struct anv_cmd_buffer *cmd_buffer,
1064 VkShaderStage stage);
1065
1066 void anv_cmd_buffer_clear_attachments(struct anv_cmd_buffer *cmd_buffer,
1067 struct anv_render_pass *pass,
1068 const VkClearValue *clear_values);
1069 const struct anv_image_view *
1070 anv_cmd_buffer_get_depth_stencil_view(const struct anv_cmd_buffer *cmd_buffer);
1071
1072 void anv_cmd_buffer_dump(struct anv_cmd_buffer *cmd_buffer);
1073
1074 struct anv_fence {
1075 struct anv_bo bo;
1076 struct drm_i915_gem_execbuffer2 execbuf;
1077 struct drm_i915_gem_exec_object2 exec2_objects[1];
1078 bool ready;
1079 };
1080
1081 struct nir_shader;
1082
1083 struct anv_shader_module {
1084 struct nir_shader * nir;
1085
1086 uint32_t size;
1087 char data[0];
1088 };
1089
1090 struct anv_shader {
1091 struct anv_shader_module * module;
1092 char entrypoint[0];
1093 };
1094
1095 struct anv_pipeline {
1096 struct anv_device * device;
1097 struct anv_batch batch;
1098 uint32_t batch_data[512];
1099 struct anv_reloc_list batch_relocs;
1100 uint32_t dynamic_state_mask;
1101 struct anv_dynamic_state dynamic_state;
1102
1103 struct anv_pipeline_layout * layout;
1104 bool use_repclear;
1105
1106 struct brw_vs_prog_data vs_prog_data;
1107 struct brw_wm_prog_data wm_prog_data;
1108 struct brw_gs_prog_data gs_prog_data;
1109 struct brw_cs_prog_data cs_prog_data;
1110 bool writes_point_size;
1111 struct brw_stage_prog_data * prog_data[VK_SHADER_STAGE_NUM];
1112 uint32_t scratch_start[VK_SHADER_STAGE_NUM];
1113 uint32_t total_scratch;
1114 struct {
1115 uint32_t vs_start;
1116 uint32_t vs_size;
1117 uint32_t nr_vs_entries;
1118 uint32_t gs_start;
1119 uint32_t gs_size;
1120 uint32_t nr_gs_entries;
1121 } urb;
1122
1123 VkShaderStageFlags active_stages;
1124 struct anv_state_stream program_stream;
1125 struct anv_state blend_state;
1126 uint32_t vs_simd8;
1127 uint32_t vs_vec4;
1128 uint32_t ps_simd8;
1129 uint32_t ps_simd16;
1130 uint32_t ps_ksp0;
1131 uint32_t ps_ksp2;
1132 uint32_t ps_grf_start0;
1133 uint32_t ps_grf_start2;
1134 uint32_t gs_vec4;
1135 uint32_t gs_vertex_count;
1136 uint32_t cs_simd;
1137
1138 uint32_t vb_used;
1139 uint32_t binding_stride[MAX_VBS];
1140 bool instancing_enable[MAX_VBS];
1141 bool primitive_restart;
1142 uint32_t topology;
1143
1144 uint32_t cs_thread_width_max;
1145 uint32_t cs_right_mask;
1146
1147 struct {
1148 uint32_t sf[7];
1149 uint32_t depth_stencil_state[3];
1150 } gen7;
1151
1152 struct {
1153 uint32_t sf[4];
1154 uint32_t raster[5];
1155 uint32_t wm_depth_stencil[3];
1156 } gen8;
1157 };
1158
1159 struct anv_graphics_pipeline_create_info {
1160 bool use_repclear;
1161 bool disable_viewport;
1162 bool disable_scissor;
1163 bool disable_vs;
1164 bool use_rectlist;
1165 };
1166
1167 VkResult
1168 anv_pipeline_init(struct anv_pipeline *pipeline, struct anv_device *device,
1169 const VkGraphicsPipelineCreateInfo *pCreateInfo,
1170 const struct anv_graphics_pipeline_create_info *extra);
1171
1172 VkResult
1173 anv_pipeline_compile_cs(struct anv_pipeline *pipeline,
1174 const VkComputePipelineCreateInfo *info,
1175 struct anv_shader *shader);
1176
1177 VkResult
1178 anv_graphics_pipeline_create(VkDevice device,
1179 const VkGraphicsPipelineCreateInfo *pCreateInfo,
1180 const struct anv_graphics_pipeline_create_info *extra,
1181 VkPipeline *pPipeline);
1182
1183 VkResult
1184 gen7_graphics_pipeline_create(VkDevice _device,
1185 const VkGraphicsPipelineCreateInfo *pCreateInfo,
1186 const struct anv_graphics_pipeline_create_info *extra,
1187 VkPipeline *pPipeline);
1188
1189 VkResult
1190 gen8_graphics_pipeline_create(VkDevice _device,
1191 const VkGraphicsPipelineCreateInfo *pCreateInfo,
1192 const struct anv_graphics_pipeline_create_info *extra,
1193 VkPipeline *pPipeline);
1194 VkResult
1195 gen7_compute_pipeline_create(VkDevice _device,
1196 const VkComputePipelineCreateInfo *pCreateInfo,
1197 VkPipeline *pPipeline);
1198
1199 VkResult
1200 gen8_compute_pipeline_create(VkDevice _device,
1201 const VkComputePipelineCreateInfo *pCreateInfo,
1202 VkPipeline *pPipeline);
1203
1204 struct anv_format {
1205 const VkFormat vk_format;
1206 const char *name;
1207 enum isl_format surface_format; /**< RENDER_SURFACE_STATE.SurfaceFormat */
1208 const struct isl_format_layout *isl_layout;
1209 uint8_t num_channels;
1210 uint16_t depth_format; /**< 3DSTATE_DEPTH_BUFFER.SurfaceFormat */
1211 bool has_stencil;
1212 };
1213
1214 /**
1215 * Stencil formats are often a special case. To reduce the number of lookups
1216 * into the VkFormat-to-anv_format translation table when working with
1217 * stencil, here is the handle to the table's entry for VK_FORMAT_S8_UINT.
1218 */
1219 extern const struct anv_format *const anv_format_s8_uint;
1220
1221 const struct anv_format *
1222 anv_format_for_vk_format(VkFormat format);
1223
1224 static inline bool
1225 anv_format_is_color(const struct anv_format *format)
1226 {
1227 return !format->depth_format && !format->has_stencil;
1228 }
1229
1230 static inline bool
1231 anv_format_is_depth_or_stencil(const struct anv_format *format)
1232 {
1233 return format->depth_format || format->has_stencil;
1234 }
1235
1236 struct anv_image_view_info {
1237 uint8_t surface_type; /**< RENDER_SURFACE_STATE.SurfaceType */
1238 bool is_array:1; /**< RENDER_SURFACE_STATE.SurfaceArray */
1239 bool is_cube:1; /**< RENDER_SURFACE_STATE.CubeFaceEnable* */
1240 };
1241
1242 struct anv_image_view_info
1243 anv_image_view_info_for_vk_image_view_type(VkImageViewType type);
1244
1245 /**
1246 * A proxy for the color surfaces, depth surfaces, and stencil surfaces.
1247 */
1248 struct anv_surface {
1249 /**
1250 * Offset from VkImage's base address, as bound by vkBindImageMemory().
1251 */
1252 uint32_t offset;
1253
1254 uint32_t stride; /**< RENDER_SURFACE_STATE.SurfacePitch */
1255 uint16_t qpitch; /**< RENDER_SURFACE_STATE.QPitch */
1256
1257 /**
1258 * \name Alignment of miptree images, in units of pixels.
1259 *
1260 * These fields contain the real alignment values, not the values to be
1261 * given to the GPU. For example, if h_align is 4, then program the GPU
1262 * with HALIGN_4.
1263 * \{
1264 */
1265 uint8_t h_align; /**< RENDER_SURFACE_STATE.SurfaceHorizontalAlignment */
1266 uint8_t v_align; /**< RENDER_SURFACE_STATE.SurfaceVerticalAlignment */
1267 /** \} */
1268
1269 enum isl_tiling tiling;
1270 };
1271
1272 struct anv_image {
1273 VkImageType type;
1274 const struct anv_format *format;
1275 VkExtent3D extent;
1276 uint32_t levels;
1277 uint32_t array_size;
1278 VkImageUsageFlags usage; /**< Superset of VkImageCreateInfo::usage. */
1279
1280 VkDeviceSize size;
1281 uint32_t alignment;
1282
1283 /* Set when bound */
1284 struct anv_bo *bo;
1285 VkDeviceSize offset;
1286
1287 uint8_t surface_type; /**< RENDER_SURFACE_STATE.SurfaceType */
1288
1289 bool needs_nonrt_surface_state:1;
1290 bool needs_color_rt_surface_state:1;
1291
1292 /**
1293 * Image subsurfaces
1294 *
1295 * For each foo, anv_image::foo_surface is valid if and only if
1296 * anv_image::format has a foo aspect.
1297 *
1298 * The hardware requires that the depth buffer and stencil buffer be
1299 * separate surfaces. From Vulkan's perspective, though, depth and stencil
1300 * reside in the same VkImage. To satisfy both the hardware and Vulkan, we
1301 * allocate the depth and stencil buffers as separate surfaces in the same
1302 * bo.
1303 */
1304 union {
1305 struct anv_surface color_surface;
1306
1307 struct {
1308 struct anv_surface depth_surface;
1309 struct anv_surface stencil_surface;
1310 };
1311 };
1312 };
1313
1314 struct anv_image_view {
1315 const struct anv_image *image; /**< VkImageViewCreateInfo::image */
1316 const struct anv_format *format; /**< VkImageViewCreateInfo::format */
1317 struct anv_bo *bo;
1318 uint32_t offset; /**< Offset into bo. */
1319 VkExtent3D extent; /**< Extent of VkImageViewCreateInfo::baseMipLevel. */
1320
1321 /** RENDER_SURFACE_STATE when using image as a color render target. */
1322 struct anv_state color_rt_surface_state;
1323
1324 /** RENDER_SURFACE_STATE when using image as a non render target. */
1325 struct anv_state nonrt_surface_state;
1326 };
1327
1328 struct anv_image_create_info {
1329 const VkImageCreateInfo *vk_info;
1330 bool force_tiling;
1331 enum isl_tiling tiling;
1332 uint32_t stride;
1333 };
1334
1335 VkResult anv_image_create(VkDevice _device,
1336 const struct anv_image_create_info *info,
1337 VkImage *pImage);
1338
1339 struct anv_surface *
1340 anv_image_get_surface_for_aspect_mask(struct anv_image *image,
1341 VkImageAspectFlags aspect_mask);
1342
1343 void anv_image_view_init(struct anv_image_view *view,
1344 struct anv_device *device,
1345 const VkImageViewCreateInfo* pCreateInfo,
1346 struct anv_cmd_buffer *cmd_buffer);
1347
1348 void
1349 gen7_image_view_init(struct anv_image_view *iview,
1350 struct anv_device *device,
1351 const VkImageViewCreateInfo* pCreateInfo,
1352 struct anv_cmd_buffer *cmd_buffer);
1353
1354 void
1355 gen8_image_view_init(struct anv_image_view *iview,
1356 struct anv_device *device,
1357 const VkImageViewCreateInfo* pCreateInfo,
1358 struct anv_cmd_buffer *cmd_buffer);
1359
1360 void anv_fill_buffer_surface_state(struct anv_device *device, void *state,
1361 const struct anv_format *format,
1362 uint32_t offset, uint32_t range,
1363 uint32_t stride);
1364
1365 void gen7_fill_buffer_surface_state(void *state, const struct anv_format *format,
1366 uint32_t offset, uint32_t range,
1367 uint32_t stride);
1368 void gen8_fill_buffer_surface_state(void *state, const struct anv_format *format,
1369 uint32_t offset, uint32_t range,
1370 uint32_t stride);
1371
1372 struct anv_sampler {
1373 uint32_t state[4];
1374 };
1375
1376 struct anv_framebuffer {
1377 uint32_t width;
1378 uint32_t height;
1379 uint32_t layers;
1380
1381 uint32_t attachment_count;
1382 const struct anv_image_view * attachments[0];
1383 };
1384
1385 struct anv_subpass {
1386 uint32_t input_count;
1387 uint32_t * input_attachments;
1388 uint32_t color_count;
1389 uint32_t * color_attachments;
1390 uint32_t * resolve_attachments;
1391 uint32_t depth_stencil_attachment;
1392 };
1393
1394 struct anv_render_pass_attachment {
1395 const struct anv_format *format;
1396 uint32_t samples;
1397 VkAttachmentLoadOp load_op;
1398 VkAttachmentLoadOp stencil_load_op;
1399 };
1400
1401 struct anv_render_pass {
1402 uint32_t attachment_count;
1403 uint32_t subpass_count;
1404 struct anv_render_pass_attachment * attachments;
1405 struct anv_subpass subpasses[0];
1406 };
1407
1408 extern struct anv_render_pass anv_meta_dummy_renderpass;
1409
1410 struct anv_query_pool_slot {
1411 uint64_t begin;
1412 uint64_t end;
1413 uint64_t available;
1414 };
1415
1416 struct anv_query_pool {
1417 VkQueryType type;
1418 uint32_t slots;
1419 struct anv_bo bo;
1420 };
1421
1422 void anv_device_init_meta(struct anv_device *device);
1423 void anv_device_finish_meta(struct anv_device *device);
1424
1425 void *anv_lookup_entrypoint(const char *name);
1426
1427 void anv_dump_image_to_ppm(struct anv_device *device,
1428 struct anv_image *image, unsigned miplevel,
1429 unsigned array_layer, const char *filename);
1430
1431 #define ANV_DEFINE_HANDLE_CASTS(__anv_type, __VkType) \
1432 \
1433 static inline struct __anv_type * \
1434 __anv_type ## _from_handle(__VkType _handle) \
1435 { \
1436 return (struct __anv_type *) _handle; \
1437 } \
1438 \
1439 static inline __VkType \
1440 __anv_type ## _to_handle(struct __anv_type *_obj) \
1441 { \
1442 return (__VkType) _obj; \
1443 }
1444
1445 #define ANV_DEFINE_NONDISP_HANDLE_CASTS(__anv_type, __VkType) \
1446 \
1447 static inline struct __anv_type * \
1448 __anv_type ## _from_handle(__VkType _handle) \
1449 { \
1450 return (struct __anv_type *) _handle.handle; \
1451 } \
1452 \
1453 static inline __VkType \
1454 __anv_type ## _to_handle(struct __anv_type *_obj) \
1455 { \
1456 return (__VkType) { .handle = (uint64_t) _obj }; \
1457 }
1458
1459 #define ANV_FROM_HANDLE(__anv_type, __name, __handle) \
1460 struct __anv_type *__name = __anv_type ## _from_handle(__handle)
1461
1462 ANV_DEFINE_HANDLE_CASTS(anv_cmd_buffer, VkCmdBuffer)
1463 ANV_DEFINE_HANDLE_CASTS(anv_device, VkDevice)
1464 ANV_DEFINE_HANDLE_CASTS(anv_instance, VkInstance)
1465 ANV_DEFINE_HANDLE_CASTS(anv_physical_device, VkPhysicalDevice)
1466 ANV_DEFINE_HANDLE_CASTS(anv_queue, VkQueue)
1467
1468 ANV_DEFINE_NONDISP_HANDLE_CASTS(anv_cmd_pool, VkCmdPool)
1469 ANV_DEFINE_NONDISP_HANDLE_CASTS(anv_buffer, VkBuffer)
1470 ANV_DEFINE_NONDISP_HANDLE_CASTS(anv_descriptor_set, VkDescriptorSet)
1471 ANV_DEFINE_NONDISP_HANDLE_CASTS(anv_descriptor_set_layout, VkDescriptorSetLayout)
1472 ANV_DEFINE_NONDISP_HANDLE_CASTS(anv_device_memory, VkDeviceMemory)
1473 ANV_DEFINE_NONDISP_HANDLE_CASTS(anv_fence, VkFence)
1474 ANV_DEFINE_NONDISP_HANDLE_CASTS(anv_framebuffer, VkFramebuffer)
1475 ANV_DEFINE_NONDISP_HANDLE_CASTS(anv_image, VkImage)
1476 ANV_DEFINE_NONDISP_HANDLE_CASTS(anv_image_view, VkImageView);
1477 ANV_DEFINE_NONDISP_HANDLE_CASTS(anv_pipeline, VkPipeline)
1478 ANV_DEFINE_NONDISP_HANDLE_CASTS(anv_pipeline_layout, VkPipelineLayout)
1479 ANV_DEFINE_NONDISP_HANDLE_CASTS(anv_query_pool, VkQueryPool)
1480 ANV_DEFINE_NONDISP_HANDLE_CASTS(anv_render_pass, VkRenderPass)
1481 ANV_DEFINE_NONDISP_HANDLE_CASTS(anv_sampler, VkSampler)
1482 ANV_DEFINE_NONDISP_HANDLE_CASTS(anv_shader, VkShader)
1483 ANV_DEFINE_NONDISP_HANDLE_CASTS(anv_shader_module, VkShaderModule)
1484
1485 #define ANV_DEFINE_STRUCT_CASTS(__anv_type, __VkType) \
1486 \
1487 static inline const __VkType * \
1488 __anv_type ## _to_ ## __VkType(const struct __anv_type *__anv_obj) \
1489 { \
1490 return (const __VkType *) __anv_obj; \
1491 }
1492
1493 #define ANV_COMMON_TO_STRUCT(__VkType, __vk_name, __common_name) \
1494 const __VkType *__vk_name = anv_common_to_ ## __VkType(__common_name)
1495
1496 ANV_DEFINE_STRUCT_CASTS(anv_common, VkMemoryBarrier)
1497 ANV_DEFINE_STRUCT_CASTS(anv_common, VkBufferMemoryBarrier)
1498 ANV_DEFINE_STRUCT_CASTS(anv_common, VkImageMemoryBarrier)
1499
1500 #ifdef __cplusplus
1501 }
1502 #endif