intel: Fix requests for exact surface row pitch (v2)
[mesa.git] / src / intel / vulkan / anv_image.c
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 #include <assert.h>
25 #include <stdbool.h>
26 #include <string.h>
27 #include <unistd.h>
28 #include <fcntl.h>
29
30 #include "anv_private.h"
31 #include "util/debug.h"
32
33 #include "vk_format_info.h"
34
35 /**
36 * Exactly one bit must be set in \a aspect.
37 */
38 static isl_surf_usage_flags_t
39 choose_isl_surf_usage(VkImageUsageFlags vk_usage,
40 VkImageAspectFlags aspect)
41 {
42 isl_surf_usage_flags_t isl_usage = 0;
43
44 if (vk_usage & VK_IMAGE_USAGE_SAMPLED_BIT)
45 isl_usage |= ISL_SURF_USAGE_TEXTURE_BIT;
46
47 if (vk_usage & VK_IMAGE_USAGE_INPUT_ATTACHMENT_BIT)
48 isl_usage |= ISL_SURF_USAGE_TEXTURE_BIT;
49
50 if (vk_usage & VK_IMAGE_USAGE_COLOR_ATTACHMENT_BIT)
51 isl_usage |= ISL_SURF_USAGE_RENDER_TARGET_BIT;
52
53 if (vk_usage & VK_IMAGE_CREATE_CUBE_COMPATIBLE_BIT)
54 isl_usage |= ISL_SURF_USAGE_CUBE_BIT;
55
56 /* Even if we're only using it for transfer operations, clears to depth and
57 * stencil images happen as depth and stencil so they need the right ISL
58 * usage bits or else things will fall apart.
59 */
60 switch (aspect) {
61 case VK_IMAGE_ASPECT_DEPTH_BIT:
62 isl_usage |= ISL_SURF_USAGE_DEPTH_BIT;
63 break;
64 case VK_IMAGE_ASPECT_STENCIL_BIT:
65 isl_usage |= ISL_SURF_USAGE_STENCIL_BIT;
66 break;
67 case VK_IMAGE_ASPECT_COLOR_BIT:
68 break;
69 default:
70 unreachable("bad VkImageAspect");
71 }
72
73 if (vk_usage & VK_IMAGE_USAGE_TRANSFER_SRC_BIT) {
74 /* blorp implements transfers by sampling from the source image. */
75 isl_usage |= ISL_SURF_USAGE_TEXTURE_BIT;
76 }
77
78 if (vk_usage & VK_IMAGE_USAGE_TRANSFER_DST_BIT &&
79 aspect == VK_IMAGE_ASPECT_COLOR_BIT) {
80 /* blorp implements transfers by rendering into the destination image.
81 * Only request this with color images, as we deal with depth/stencil
82 * formats differently. */
83 isl_usage |= ISL_SURF_USAGE_RENDER_TARGET_BIT;
84 }
85
86 return isl_usage;
87 }
88
89 /**
90 * Exactly one bit must be set in \a aspect.
91 */
92 static struct anv_surface *
93 get_surface(struct anv_image *image, VkImageAspectFlags aspect)
94 {
95 switch (aspect) {
96 default:
97 unreachable("bad VkImageAspect");
98 case VK_IMAGE_ASPECT_COLOR_BIT:
99 return &image->color_surface;
100 case VK_IMAGE_ASPECT_DEPTH_BIT:
101 return &image->depth_surface;
102 case VK_IMAGE_ASPECT_STENCIL_BIT:
103 return &image->stencil_surface;
104 }
105 }
106
107 static void
108 add_surface(struct anv_image *image, struct anv_surface *surf)
109 {
110 assert(surf->isl.size > 0); /* isl surface must be initialized */
111
112 surf->offset = align_u32(image->size, surf->isl.alignment);
113 image->size = surf->offset + surf->isl.size;
114 image->alignment = MAX2(image->alignment, surf->isl.alignment);
115 }
116
117 /**
118 * Initialize the anv_image::*_surface selected by \a aspect. Then update the
119 * image's memory requirements (that is, the image's size and alignment).
120 *
121 * Exactly one bit must be set in \a aspect.
122 */
123 static VkResult
124 make_surface(const struct anv_device *dev,
125 struct anv_image *image,
126 const struct anv_image_create_info *anv_info,
127 VkImageAspectFlags aspect)
128 {
129 const VkImageCreateInfo *vk_info = anv_info->vk_info;
130 bool ok UNUSED;
131
132 static const enum isl_surf_dim vk_to_isl_surf_dim[] = {
133 [VK_IMAGE_TYPE_1D] = ISL_SURF_DIM_1D,
134 [VK_IMAGE_TYPE_2D] = ISL_SURF_DIM_2D,
135 [VK_IMAGE_TYPE_3D] = ISL_SURF_DIM_3D,
136 };
137
138 /* Translate the Vulkan tiling to an equivalent ISL tiling, then filter the
139 * result with an optionally provided ISL tiling argument.
140 */
141 isl_tiling_flags_t tiling_flags =
142 (vk_info->tiling == VK_IMAGE_TILING_LINEAR) ?
143 ISL_TILING_LINEAR_BIT : ISL_TILING_ANY_MASK;
144
145 if (anv_info->isl_tiling_flags)
146 tiling_flags &= anv_info->isl_tiling_flags;
147
148 assert(tiling_flags);
149
150 struct anv_surface *anv_surf = get_surface(image, aspect);
151
152 image->extent = anv_sanitize_image_extent(vk_info->imageType,
153 vk_info->extent);
154
155 enum isl_format format = anv_get_isl_format(&dev->info, vk_info->format,
156 aspect, vk_info->tiling);
157 assert(format != ISL_FORMAT_UNSUPPORTED);
158
159 ok = isl_surf_init(&dev->isl_dev, &anv_surf->isl,
160 .dim = vk_to_isl_surf_dim[vk_info->imageType],
161 .format = format,
162 .width = image->extent.width,
163 .height = image->extent.height,
164 .depth = image->extent.depth,
165 .levels = vk_info->mipLevels,
166 .array_len = vk_info->arrayLayers,
167 .samples = vk_info->samples,
168 .min_alignment = 0,
169 .row_pitch = anv_info->stride,
170 .usage = choose_isl_surf_usage(image->usage, aspect),
171 .tiling_flags = tiling_flags);
172
173 /* isl_surf_init() will fail only if provided invalid input. Invalid input
174 * is illegal in Vulkan.
175 */
176 assert(ok);
177
178 add_surface(image, anv_surf);
179
180 /* Add a HiZ surface to a depth buffer that will be used for rendering.
181 */
182 if (aspect == VK_IMAGE_ASPECT_DEPTH_BIT) {
183 /* We don't advertise that depth buffers could be used as storage
184 * images.
185 */
186 assert(!(image->usage & VK_IMAGE_USAGE_STORAGE_BIT));
187
188 /* Allow the user to control HiZ enabling. Disable by default on gen7
189 * because resolves are not currently implemented pre-BDW.
190 */
191 if (!(image->usage & VK_IMAGE_USAGE_DEPTH_STENCIL_ATTACHMENT_BIT)) {
192 /* It will never be used as an attachment, HiZ is pointless. */
193 } else if (dev->info.gen == 7) {
194 anv_perf_warn("Implement gen7 HiZ");
195 } else if (vk_info->mipLevels > 1) {
196 anv_perf_warn("Enable multi-LOD HiZ");
197 } else if (vk_info->arrayLayers > 1) {
198 anv_perf_warn("Implement multi-arrayLayer HiZ clears and resolves");
199 } else if (dev->info.gen == 8 && vk_info->samples > 1) {
200 anv_perf_warn("Enable gen8 multisampled HiZ");
201 } else if (!unlikely(INTEL_DEBUG & DEBUG_NO_HIZ)) {
202 assert(image->aux_surface.isl.size == 0);
203 ok = isl_surf_get_hiz_surf(&dev->isl_dev, &image->depth_surface.isl,
204 &image->aux_surface.isl);
205 assert(ok);
206 add_surface(image, &image->aux_surface);
207 image->aux_usage = ISL_AUX_USAGE_HIZ;
208 }
209 } else if (aspect == VK_IMAGE_ASPECT_COLOR_BIT && vk_info->samples == 1) {
210 if (!unlikely(INTEL_DEBUG & DEBUG_NO_RBC)) {
211 assert(image->aux_surface.isl.size == 0);
212 ok = isl_surf_get_ccs_surf(&dev->isl_dev, &anv_surf->isl,
213 &image->aux_surface.isl);
214 if (ok) {
215 add_surface(image, &image->aux_surface);
216
217 /* For images created without MUTABLE_FORMAT_BIT set, we know that
218 * they will always be used with the original format. In
219 * particular, they will always be used with a format that
220 * supports color compression. If it's never used as a storage
221 * image, then it will only be used through the sampler or the as
222 * a render target. This means that it's safe to just leave
223 * compression on at all times for these formats.
224 */
225 if (!(vk_info->usage & VK_IMAGE_USAGE_STORAGE_BIT) &&
226 !(vk_info->flags & VK_IMAGE_CREATE_MUTABLE_FORMAT_BIT) &&
227 isl_format_supports_ccs_e(&dev->info, format)) {
228 image->aux_usage = ISL_AUX_USAGE_CCS_E;
229 }
230 }
231 }
232 } else if (aspect == VK_IMAGE_ASPECT_COLOR_BIT && vk_info->samples > 1) {
233 assert(image->aux_surface.isl.size == 0);
234 assert(!(vk_info->usage & VK_IMAGE_USAGE_STORAGE_BIT));
235 ok = isl_surf_get_mcs_surf(&dev->isl_dev, &anv_surf->isl,
236 &image->aux_surface.isl);
237 if (ok) {
238 add_surface(image, &image->aux_surface);
239 image->aux_usage = ISL_AUX_USAGE_MCS;
240 }
241 }
242
243 return VK_SUCCESS;
244 }
245
246 VkResult
247 anv_image_create(VkDevice _device,
248 const struct anv_image_create_info *create_info,
249 const VkAllocationCallbacks* alloc,
250 VkImage *pImage)
251 {
252 ANV_FROM_HANDLE(anv_device, device, _device);
253 const VkImageCreateInfo *pCreateInfo = create_info->vk_info;
254 struct anv_image *image = NULL;
255 VkResult r;
256
257 assert(pCreateInfo->sType == VK_STRUCTURE_TYPE_IMAGE_CREATE_INFO);
258
259 anv_assert(pCreateInfo->mipLevels > 0);
260 anv_assert(pCreateInfo->arrayLayers > 0);
261 anv_assert(pCreateInfo->samples > 0);
262 anv_assert(pCreateInfo->extent.width > 0);
263 anv_assert(pCreateInfo->extent.height > 0);
264 anv_assert(pCreateInfo->extent.depth > 0);
265
266 image = vk_alloc2(&device->alloc, alloc, sizeof(*image), 8,
267 VK_SYSTEM_ALLOCATION_SCOPE_OBJECT);
268 if (!image)
269 return vk_error(VK_ERROR_OUT_OF_HOST_MEMORY);
270
271 memset(image, 0, sizeof(*image));
272 image->type = pCreateInfo->imageType;
273 image->extent = pCreateInfo->extent;
274 image->vk_format = pCreateInfo->format;
275 image->aspects = vk_format_aspects(image->vk_format);
276 image->levels = pCreateInfo->mipLevels;
277 image->array_size = pCreateInfo->arrayLayers;
278 image->samples = pCreateInfo->samples;
279 image->usage = pCreateInfo->usage;
280 image->tiling = pCreateInfo->tiling;
281 image->aux_usage = ISL_AUX_USAGE_NONE;
282
283 uint32_t b;
284 for_each_bit(b, image->aspects) {
285 r = make_surface(device, image, create_info, (1 << b));
286 if (r != VK_SUCCESS)
287 goto fail;
288 }
289
290 *pImage = anv_image_to_handle(image);
291
292 return VK_SUCCESS;
293
294 fail:
295 if (image)
296 vk_free2(&device->alloc, alloc, image);
297
298 return r;
299 }
300
301 VkResult
302 anv_CreateImage(VkDevice device,
303 const VkImageCreateInfo *pCreateInfo,
304 const VkAllocationCallbacks *pAllocator,
305 VkImage *pImage)
306 {
307 return anv_image_create(device,
308 &(struct anv_image_create_info) {
309 .vk_info = pCreateInfo,
310 },
311 pAllocator,
312 pImage);
313 }
314
315 void
316 anv_DestroyImage(VkDevice _device, VkImage _image,
317 const VkAllocationCallbacks *pAllocator)
318 {
319 ANV_FROM_HANDLE(anv_device, device, _device);
320 ANV_FROM_HANDLE(anv_image, image, _image);
321
322 if (!image)
323 return;
324
325 vk_free2(&device->alloc, pAllocator, image);
326 }
327
328 VkResult anv_BindImageMemory(
329 VkDevice _device,
330 VkImage _image,
331 VkDeviceMemory _memory,
332 VkDeviceSize memoryOffset)
333 {
334 ANV_FROM_HANDLE(anv_device, device, _device);
335 ANV_FROM_HANDLE(anv_device_memory, mem, _memory);
336 ANV_FROM_HANDLE(anv_image, image, _image);
337
338 if (mem == NULL) {
339 image->bo = NULL;
340 image->offset = 0;
341 return VK_SUCCESS;
342 }
343
344 image->bo = &mem->bo;
345 image->offset = memoryOffset;
346
347 if (image->aux_surface.isl.size > 0) {
348
349 /* The offset and size must be a multiple of 4K or else the
350 * anv_gem_mmap call below will return NULL.
351 */
352 assert((image->offset + image->aux_surface.offset) % 4096 == 0);
353 assert(image->aux_surface.isl.size % 4096 == 0);
354
355 /* Auxiliary surfaces need to have their memory cleared to 0 before they
356 * can be used. For CCS surfaces, this puts them in the "resolved"
357 * state so they can be used with CCS enabled before we ever touch it
358 * from the GPU. For HiZ, we need something valid or else we may get
359 * GPU hangs on some hardware and 0 works fine.
360 */
361 void *map = anv_gem_mmap(device, image->bo->gem_handle,
362 image->offset + image->aux_surface.offset,
363 image->aux_surface.isl.size,
364 device->info.has_llc ? 0 : I915_MMAP_WC);
365
366 /* If anv_gem_mmap returns NULL, it's likely that the kernel was
367 * not able to find space on the host to create a proper mapping.
368 */
369 if (map == NULL)
370 return vk_error(VK_ERROR_OUT_OF_HOST_MEMORY);
371
372 memset(map, 0, image->aux_surface.isl.size);
373
374 anv_gem_munmap(map, image->aux_surface.isl.size);
375 }
376
377 return VK_SUCCESS;
378 }
379
380 static void
381 anv_surface_get_subresource_layout(struct anv_image *image,
382 struct anv_surface *surface,
383 const VkImageSubresource *subresource,
384 VkSubresourceLayout *layout)
385 {
386 /* If we are on a non-zero mip level or array slice, we need to
387 * calculate a real offset.
388 */
389 anv_assert(subresource->mipLevel == 0);
390 anv_assert(subresource->arrayLayer == 0);
391
392 layout->offset = surface->offset;
393 layout->rowPitch = surface->isl.row_pitch;
394 layout->depthPitch = isl_surf_get_array_pitch(&surface->isl);
395 layout->arrayPitch = isl_surf_get_array_pitch(&surface->isl);
396 layout->size = surface->isl.size;
397 }
398
399 void anv_GetImageSubresourceLayout(
400 VkDevice device,
401 VkImage _image,
402 const VkImageSubresource* pSubresource,
403 VkSubresourceLayout* pLayout)
404 {
405 ANV_FROM_HANDLE(anv_image, image, _image);
406
407 assert(__builtin_popcount(pSubresource->aspectMask) == 1);
408
409 switch (pSubresource->aspectMask) {
410 case VK_IMAGE_ASPECT_COLOR_BIT:
411 anv_surface_get_subresource_layout(image, &image->color_surface,
412 pSubresource, pLayout);
413 break;
414 case VK_IMAGE_ASPECT_DEPTH_BIT:
415 anv_surface_get_subresource_layout(image, &image->depth_surface,
416 pSubresource, pLayout);
417 break;
418 case VK_IMAGE_ASPECT_STENCIL_BIT:
419 anv_surface_get_subresource_layout(image, &image->stencil_surface,
420 pSubresource, pLayout);
421 break;
422 default:
423 assert(!"Invalid image aspect");
424 }
425 }
426
427 /**
428 * This function determines the optimal buffer to use for device
429 * accesses given a VkImageLayout and other pieces of information needed to
430 * make that determination. This does not determine the optimal buffer to
431 * use during a resolve operation.
432 *
433 * NOTE: Some layouts do not support device access.
434 *
435 * @param devinfo The device information of the Intel GPU.
436 * @param image The image that may contain a collection of buffers.
437 * @param aspects The aspect(s) of the image to be accessed.
438 * @param layout The current layout of the image aspect(s).
439 *
440 * @return The primary buffer that should be used for the given layout.
441 */
442 enum isl_aux_usage
443 anv_layout_to_aux_usage(const struct gen_device_info * const devinfo,
444 const struct anv_image * const image,
445 const VkImageAspectFlags aspects,
446 const VkImageLayout layout)
447 {
448 /* Validate the inputs. */
449
450 /* The devinfo is needed as the optimal buffer varies across generations. */
451 assert(devinfo != NULL);
452
453 /* The layout of a NULL image is not properly defined. */
454 assert(image != NULL);
455
456 /* The aspects must be a subset of the image aspects. */
457 assert(aspects & image->aspects && aspects <= image->aspects);
458
459 /* Determine the optimal buffer. */
460
461 /* If there is no auxiliary surface allocated, we must use the one and only
462 * main buffer.
463 */
464 if (image->aux_surface.isl.size == 0)
465 return ISL_AUX_USAGE_NONE;
466
467 /* All images that use an auxiliary surface are required to be tiled. */
468 assert(image->tiling == VK_IMAGE_TILING_OPTIMAL);
469
470 /* On BDW+, when clearing the stencil aspect of a depth stencil image,
471 * the HiZ buffer allows us to record the clear with a relatively small
472 * number of packets. Prior to BDW, the HiZ buffer provides no known benefit
473 * to the stencil aspect.
474 */
475 if (devinfo->gen < 8 && aspects == VK_IMAGE_ASPECT_STENCIL_BIT)
476 return ISL_AUX_USAGE_NONE;
477
478 const bool color_aspect = aspects == VK_IMAGE_ASPECT_COLOR_BIT;
479
480 /* The following switch currently only handles depth stencil aspects.
481 * TODO: Handle the color aspect.
482 */
483 if (color_aspect)
484 return image->aux_usage;
485
486 switch (layout) {
487
488 /* Invalid Layouts */
489
490 /* According to the Vulkan Spec, the following layouts are valid only as
491 * initial layouts in a layout transition and don't support device access.
492 */
493 case VK_IMAGE_LAYOUT_UNDEFINED:
494 case VK_IMAGE_LAYOUT_PREINITIALIZED:
495 case VK_IMAGE_LAYOUT_RANGE_SIZE:
496 case VK_IMAGE_LAYOUT_MAX_ENUM:
497 unreachable("Invalid image layout for device access.");
498
499
500 /* Transfer Layouts
501 *
502 * This buffer could be a depth buffer used in a transfer operation. BLORP
503 * currently doesn't use HiZ for transfer operations so we must use the main
504 * buffer for this layout. TODO: Enable HiZ in BLORP.
505 */
506 case VK_IMAGE_LAYOUT_GENERAL:
507 case VK_IMAGE_LAYOUT_TRANSFER_DST_OPTIMAL:
508 case VK_IMAGE_LAYOUT_TRANSFER_SRC_OPTIMAL:
509 return ISL_AUX_USAGE_NONE;
510
511
512 /* Sampling Layouts */
513 case VK_IMAGE_LAYOUT_DEPTH_STENCIL_READ_ONLY_OPTIMAL:
514 assert(!color_aspect);
515 /* Fall-through */
516 case VK_IMAGE_LAYOUT_SHADER_READ_ONLY_OPTIMAL:
517 if (anv_can_sample_with_hiz(devinfo, aspects, image->samples))
518 return ISL_AUX_USAGE_HIZ;
519 else
520 return ISL_AUX_USAGE_NONE;
521
522 case VK_IMAGE_LAYOUT_PRESENT_SRC_KHR:
523 assert(color_aspect);
524
525 /* On SKL+, the render buffer can be decompressed by the presentation
526 * engine. Support for this feature has not yet landed in the wider
527 * ecosystem. TODO: Update this code when support lands.
528 *
529 * From the BDW PRM, Vol 7, Render Target Resolve:
530 *
531 * If the MCS is enabled on a non-multisampled render target, the
532 * render target must be resolved before being used for other
533 * purposes (display, texture, CPU lock) The clear value from
534 * SURFACE_STATE is written into pixels in the render target
535 * indicated as clear in the MCS.
536 *
537 * Pre-SKL, the render buffer must be resolved before being used for
538 * presentation. We can infer that the auxiliary buffer is not used.
539 */
540 return ISL_AUX_USAGE_NONE;
541
542
543 /* Rendering Layouts */
544 case VK_IMAGE_LAYOUT_COLOR_ATTACHMENT_OPTIMAL:
545 assert(color_aspect);
546 unreachable("Color images are not yet supported.");
547
548 case VK_IMAGE_LAYOUT_DEPTH_STENCIL_ATTACHMENT_OPTIMAL:
549 assert(!color_aspect);
550 return ISL_AUX_USAGE_HIZ;
551 }
552
553 /* If the layout isn't recognized in the exhaustive switch above, the
554 * VkImageLayout value is not defined in vulkan.h.
555 */
556 unreachable("layout is not a VkImageLayout enumeration member.");
557 }
558
559
560 static struct anv_state
561 alloc_surface_state(struct anv_device *device)
562 {
563 return anv_state_pool_alloc(&device->surface_state_pool, 64, 64);
564 }
565
566 static enum isl_channel_select
567 remap_swizzle(VkComponentSwizzle swizzle, VkComponentSwizzle component,
568 struct isl_swizzle format_swizzle)
569 {
570 if (swizzle == VK_COMPONENT_SWIZZLE_IDENTITY)
571 swizzle = component;
572
573 switch (swizzle) {
574 case VK_COMPONENT_SWIZZLE_ZERO: return ISL_CHANNEL_SELECT_ZERO;
575 case VK_COMPONENT_SWIZZLE_ONE: return ISL_CHANNEL_SELECT_ONE;
576 case VK_COMPONENT_SWIZZLE_R: return format_swizzle.r;
577 case VK_COMPONENT_SWIZZLE_G: return format_swizzle.g;
578 case VK_COMPONENT_SWIZZLE_B: return format_swizzle.b;
579 case VK_COMPONENT_SWIZZLE_A: return format_swizzle.a;
580 default:
581 unreachable("Invalid swizzle");
582 }
583 }
584
585
586 VkResult
587 anv_CreateImageView(VkDevice _device,
588 const VkImageViewCreateInfo *pCreateInfo,
589 const VkAllocationCallbacks *pAllocator,
590 VkImageView *pView)
591 {
592 ANV_FROM_HANDLE(anv_device, device, _device);
593 ANV_FROM_HANDLE(anv_image, image, pCreateInfo->image);
594 struct anv_image_view *iview;
595
596 iview = vk_alloc2(&device->alloc, pAllocator, sizeof(*iview), 8,
597 VK_SYSTEM_ALLOCATION_SCOPE_OBJECT);
598 if (iview == NULL)
599 return vk_error(VK_ERROR_OUT_OF_HOST_MEMORY);
600
601 const VkImageSubresourceRange *range = &pCreateInfo->subresourceRange;
602
603 assert(range->layerCount > 0);
604 assert(range->baseMipLevel < image->levels);
605 assert(image->usage & (VK_IMAGE_USAGE_SAMPLED_BIT |
606 VK_IMAGE_USAGE_STORAGE_BIT |
607 VK_IMAGE_USAGE_COLOR_ATTACHMENT_BIT |
608 VK_IMAGE_USAGE_DEPTH_STENCIL_ATTACHMENT_BIT));
609
610 switch (image->type) {
611 default:
612 unreachable("bad VkImageType");
613 case VK_IMAGE_TYPE_1D:
614 case VK_IMAGE_TYPE_2D:
615 assert(range->baseArrayLayer + anv_get_layerCount(image, range) - 1 <= image->array_size);
616 break;
617 case VK_IMAGE_TYPE_3D:
618 assert(range->baseArrayLayer + anv_get_layerCount(image, range) - 1
619 <= anv_minify(image->extent.depth, range->baseMipLevel));
620 break;
621 }
622
623 const struct anv_surface *surface =
624 anv_image_get_surface_for_aspect_mask(image, range->aspectMask);
625
626 iview->image = image;
627 iview->bo = image->bo;
628 iview->offset = image->offset + surface->offset;
629
630 iview->aspect_mask = pCreateInfo->subresourceRange.aspectMask;
631 iview->vk_format = pCreateInfo->format;
632
633 struct anv_format format = anv_get_format(&device->info, pCreateInfo->format,
634 range->aspectMask, image->tiling);
635
636 iview->isl = (struct isl_view) {
637 .format = format.isl_format,
638 .base_level = range->baseMipLevel,
639 .levels = anv_get_levelCount(image, range),
640 .base_array_layer = range->baseArrayLayer,
641 .array_len = anv_get_layerCount(image, range),
642 .swizzle = {
643 .r = remap_swizzle(pCreateInfo->components.r,
644 VK_COMPONENT_SWIZZLE_R, format.swizzle),
645 .g = remap_swizzle(pCreateInfo->components.g,
646 VK_COMPONENT_SWIZZLE_G, format.swizzle),
647 .b = remap_swizzle(pCreateInfo->components.b,
648 VK_COMPONENT_SWIZZLE_B, format.swizzle),
649 .a = remap_swizzle(pCreateInfo->components.a,
650 VK_COMPONENT_SWIZZLE_A, format.swizzle),
651 },
652 };
653
654 iview->extent = (VkExtent3D) {
655 .width = anv_minify(image->extent.width , range->baseMipLevel),
656 .height = anv_minify(image->extent.height, range->baseMipLevel),
657 .depth = anv_minify(image->extent.depth , range->baseMipLevel),
658 };
659
660 if (pCreateInfo->viewType == VK_IMAGE_VIEW_TYPE_3D) {
661 iview->isl.base_array_layer = 0;
662 iview->isl.array_len = iview->extent.depth;
663 }
664
665 if (pCreateInfo->viewType == VK_IMAGE_VIEW_TYPE_CUBE ||
666 pCreateInfo->viewType == VK_IMAGE_VIEW_TYPE_CUBE_ARRAY) {
667 iview->isl.usage = ISL_SURF_USAGE_CUBE_BIT;
668 } else {
669 iview->isl.usage = 0;
670 }
671
672 /* Input attachment surfaces for color are allocated and filled
673 * out at BeginRenderPass time because they need compression information.
674 * Compression is not yet enabled for depth textures and stencil doesn't
675 * allow compression so we can just use the texture surface state from the
676 * view.
677 */
678 if (image->usage & VK_IMAGE_USAGE_SAMPLED_BIT ||
679 (image->usage & VK_IMAGE_USAGE_INPUT_ATTACHMENT_BIT &&
680 !(iview->aspect_mask & VK_IMAGE_ASPECT_COLOR_BIT))) {
681 iview->sampler_surface_state = alloc_surface_state(device);
682 iview->no_aux_sampler_surface_state = alloc_surface_state(device);
683
684 /* Sampling is performed in one of two buffer configurations in anv: with
685 * an auxiliary buffer or without it. Sampler states aren't always needed
686 * for both configurations, but are currently created unconditionally for
687 * simplicity.
688 *
689 * TODO: Consider allocating each surface state only when necessary.
690 */
691
692 /* Create a sampler state with the optimal aux_usage for sampling. This
693 * may use the aux_buffer.
694 */
695 const enum isl_aux_usage surf_usage =
696 anv_layout_to_aux_usage(&device->info, image, iview->aspect_mask,
697 VK_IMAGE_LAYOUT_SHADER_READ_ONLY_OPTIMAL);
698
699 /* If this is a HiZ buffer we can sample from with a programmable clear
700 * value (SKL+), define the clear value to the optimal constant.
701 */
702 const float red_clear_color = surf_usage == ISL_AUX_USAGE_HIZ &&
703 device->info.gen >= 9 ?
704 ANV_HZ_FC_VAL : 0.0f;
705
706 struct isl_view view = iview->isl;
707 view.usage |= ISL_SURF_USAGE_TEXTURE_BIT;
708 isl_surf_fill_state(&device->isl_dev,
709 iview->sampler_surface_state.map,
710 .surf = &surface->isl,
711 .view = &view,
712 .clear_color.f32 = { red_clear_color,},
713 .aux_surf = &image->aux_surface.isl,
714 .aux_usage = surf_usage,
715 .mocs = device->default_mocs);
716
717 /* Create a sampler state that only uses the main buffer. */
718 isl_surf_fill_state(&device->isl_dev,
719 iview->no_aux_sampler_surface_state.map,
720 .surf = &surface->isl,
721 .view = &view,
722 .mocs = device->default_mocs);
723
724 anv_state_flush(device, iview->sampler_surface_state);
725 anv_state_flush(device, iview->no_aux_sampler_surface_state);
726 } else {
727 iview->sampler_surface_state.alloc_size = 0;
728 iview->no_aux_sampler_surface_state.alloc_size = 0;
729 }
730
731 /* NOTE: This one needs to go last since it may stomp isl_view.format */
732 if (image->usage & VK_IMAGE_USAGE_STORAGE_BIT) {
733 iview->storage_surface_state = alloc_surface_state(device);
734 iview->writeonly_storage_surface_state = alloc_surface_state(device);
735
736 struct isl_view view = iview->isl;
737 view.usage |= ISL_SURF_USAGE_STORAGE_BIT;
738
739 /* Write-only accesses always used a typed write instruction and should
740 * therefore use the real format.
741 */
742 isl_surf_fill_state(&device->isl_dev,
743 iview->writeonly_storage_surface_state.map,
744 .surf = &surface->isl,
745 .view = &view,
746 .aux_surf = &image->aux_surface.isl,
747 .aux_usage = image->aux_usage,
748 .mocs = device->default_mocs);
749
750 if (isl_has_matching_typed_storage_image_format(&device->info,
751 format.isl_format)) {
752 /* Typed surface reads support a very limited subset of the shader
753 * image formats. Translate it into the closest format the hardware
754 * supports.
755 */
756 view.format = isl_lower_storage_image_format(&device->info,
757 format.isl_format);
758
759 isl_surf_fill_state(&device->isl_dev,
760 iview->storage_surface_state.map,
761 .surf = &surface->isl,
762 .view = &view,
763 .aux_surf = &image->aux_surface.isl,
764 .aux_usage = image->aux_usage,
765 .mocs = device->default_mocs);
766 } else {
767 anv_fill_buffer_surface_state(device, iview->storage_surface_state,
768 ISL_FORMAT_RAW,
769 iview->offset,
770 iview->bo->size - iview->offset, 1);
771 }
772
773 isl_surf_fill_image_param(&device->isl_dev,
774 &iview->storage_image_param,
775 &surface->isl, &iview->isl);
776
777 anv_state_flush(device, iview->storage_surface_state);
778 anv_state_flush(device, iview->writeonly_storage_surface_state);
779 } else {
780 iview->storage_surface_state.alloc_size = 0;
781 iview->writeonly_storage_surface_state.alloc_size = 0;
782 }
783
784 *pView = anv_image_view_to_handle(iview);
785
786 return VK_SUCCESS;
787 }
788
789 void
790 anv_DestroyImageView(VkDevice _device, VkImageView _iview,
791 const VkAllocationCallbacks *pAllocator)
792 {
793 ANV_FROM_HANDLE(anv_device, device, _device);
794 ANV_FROM_HANDLE(anv_image_view, iview, _iview);
795
796 if (!iview)
797 return;
798
799 if (iview->sampler_surface_state.alloc_size > 0) {
800 anv_state_pool_free(&device->surface_state_pool,
801 iview->sampler_surface_state);
802 }
803
804 if (iview->storage_surface_state.alloc_size > 0) {
805 anv_state_pool_free(&device->surface_state_pool,
806 iview->storage_surface_state);
807 }
808
809 if (iview->writeonly_storage_surface_state.alloc_size > 0) {
810 anv_state_pool_free(&device->surface_state_pool,
811 iview->writeonly_storage_surface_state);
812 }
813
814 vk_free2(&device->alloc, pAllocator, iview);
815 }
816
817
818 VkResult
819 anv_CreateBufferView(VkDevice _device,
820 const VkBufferViewCreateInfo *pCreateInfo,
821 const VkAllocationCallbacks *pAllocator,
822 VkBufferView *pView)
823 {
824 ANV_FROM_HANDLE(anv_device, device, _device);
825 ANV_FROM_HANDLE(anv_buffer, buffer, pCreateInfo->buffer);
826 struct anv_buffer_view *view;
827
828 view = vk_alloc2(&device->alloc, pAllocator, sizeof(*view), 8,
829 VK_SYSTEM_ALLOCATION_SCOPE_OBJECT);
830 if (!view)
831 return vk_error(VK_ERROR_OUT_OF_HOST_MEMORY);
832
833 /* TODO: Handle the format swizzle? */
834
835 view->format = anv_get_isl_format(&device->info, pCreateInfo->format,
836 VK_IMAGE_ASPECT_COLOR_BIT,
837 VK_IMAGE_TILING_LINEAR);
838 const uint32_t format_bs = isl_format_get_layout(view->format)->bpb / 8;
839 view->bo = buffer->bo;
840 view->offset = buffer->offset + pCreateInfo->offset;
841 view->range = anv_buffer_get_range(buffer, pCreateInfo->offset,
842 pCreateInfo->range);
843 view->range = align_down_npot_u32(view->range, format_bs);
844
845 if (buffer->usage & VK_BUFFER_USAGE_UNIFORM_TEXEL_BUFFER_BIT) {
846 view->surface_state = alloc_surface_state(device);
847
848 anv_fill_buffer_surface_state(device, view->surface_state,
849 view->format,
850 view->offset, view->range, format_bs);
851 } else {
852 view->surface_state = (struct anv_state){ 0 };
853 }
854
855 if (buffer->usage & VK_BUFFER_USAGE_STORAGE_TEXEL_BUFFER_BIT) {
856 view->storage_surface_state = alloc_surface_state(device);
857 view->writeonly_storage_surface_state = alloc_surface_state(device);
858
859 enum isl_format storage_format =
860 isl_has_matching_typed_storage_image_format(&device->info,
861 view->format) ?
862 isl_lower_storage_image_format(&device->info, view->format) :
863 ISL_FORMAT_RAW;
864
865 anv_fill_buffer_surface_state(device, view->storage_surface_state,
866 storage_format,
867 view->offset, view->range,
868 (storage_format == ISL_FORMAT_RAW ? 1 :
869 isl_format_get_layout(storage_format)->bpb / 8));
870
871 /* Write-only accesses should use the original format. */
872 anv_fill_buffer_surface_state(device, view->writeonly_storage_surface_state,
873 view->format,
874 view->offset, view->range,
875 isl_format_get_layout(view->format)->bpb / 8);
876
877 isl_buffer_fill_image_param(&device->isl_dev,
878 &view->storage_image_param,
879 view->format, view->range);
880 } else {
881 view->storage_surface_state = (struct anv_state){ 0 };
882 view->writeonly_storage_surface_state = (struct anv_state){ 0 };
883 }
884
885 *pView = anv_buffer_view_to_handle(view);
886
887 return VK_SUCCESS;
888 }
889
890 void
891 anv_DestroyBufferView(VkDevice _device, VkBufferView bufferView,
892 const VkAllocationCallbacks *pAllocator)
893 {
894 ANV_FROM_HANDLE(anv_device, device, _device);
895 ANV_FROM_HANDLE(anv_buffer_view, view, bufferView);
896
897 if (!view)
898 return;
899
900 if (view->surface_state.alloc_size > 0)
901 anv_state_pool_free(&device->surface_state_pool,
902 view->surface_state);
903
904 if (view->storage_surface_state.alloc_size > 0)
905 anv_state_pool_free(&device->surface_state_pool,
906 view->storage_surface_state);
907
908 if (view->writeonly_storage_surface_state.alloc_size > 0)
909 anv_state_pool_free(&device->surface_state_pool,
910 view->writeonly_storage_surface_state);
911
912 vk_free2(&device->alloc, pAllocator, view);
913 }
914
915 const struct anv_surface *
916 anv_image_get_surface_for_aspect_mask(const struct anv_image *image,
917 VkImageAspectFlags aspect_mask)
918 {
919 switch (aspect_mask) {
920 case VK_IMAGE_ASPECT_COLOR_BIT:
921 assert(image->aspects == VK_IMAGE_ASPECT_COLOR_BIT);
922 return &image->color_surface;
923 case VK_IMAGE_ASPECT_DEPTH_BIT:
924 assert(image->aspects & VK_IMAGE_ASPECT_DEPTH_BIT);
925 return &image->depth_surface;
926 case VK_IMAGE_ASPECT_STENCIL_BIT:
927 assert(image->aspects & VK_IMAGE_ASPECT_STENCIL_BIT);
928 return &image->stencil_surface;
929 case VK_IMAGE_ASPECT_DEPTH_BIT | VK_IMAGE_ASPECT_STENCIL_BIT:
930 /* FINISHME: The Vulkan spec (git a511ba2) requires support for
931 * combined depth stencil formats. Specifically, it states:
932 *
933 * At least one of ename:VK_FORMAT_D24_UNORM_S8_UINT or
934 * ename:VK_FORMAT_D32_SFLOAT_S8_UINT must be supported.
935 *
936 * Image views with both depth and stencil aspects are only valid for
937 * render target attachments, in which case
938 * cmd_buffer_emit_depth_stencil() will pick out both the depth and
939 * stencil surfaces from the underlying surface.
940 */
941 if (image->aspects & VK_IMAGE_ASPECT_DEPTH_BIT) {
942 return &image->depth_surface;
943 } else {
944 assert(image->aspects == VK_IMAGE_ASPECT_STENCIL_BIT);
945 return &image->stencil_surface;
946 }
947 default:
948 unreachable("image does not have aspect");
949 return NULL;
950 }
951 }