anv/image: Add an isl_view to anv_image_view
[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 /* FINISHME: Support aux surfaces */
45 isl_usage |= ISL_SURF_USAGE_DISABLE_AUX_BIT;
46
47 if (vk_usage & VK_IMAGE_USAGE_SAMPLED_BIT)
48 isl_usage |= ISL_SURF_USAGE_TEXTURE_BIT;
49
50 if (vk_usage & VK_IMAGE_USAGE_INPUT_ATTACHMENT_BIT)
51 isl_usage |= ISL_SURF_USAGE_TEXTURE_BIT;
52
53 if (vk_usage & VK_IMAGE_USAGE_COLOR_ATTACHMENT_BIT)
54 isl_usage |= ISL_SURF_USAGE_RENDER_TARGET_BIT;
55
56 if (vk_usage & VK_IMAGE_CREATE_CUBE_COMPATIBLE_BIT)
57 isl_usage |= ISL_SURF_USAGE_CUBE_BIT;
58
59 if (vk_usage & VK_IMAGE_USAGE_DEPTH_STENCIL_ATTACHMENT_BIT) {
60 switch (aspect) {
61 default:
62 unreachable("bad VkImageAspect");
63 case VK_IMAGE_ASPECT_DEPTH_BIT:
64 isl_usage &= ~ISL_SURF_USAGE_DISABLE_AUX_BIT;
65 isl_usage |= ISL_SURF_USAGE_DEPTH_BIT;
66 break;
67 case VK_IMAGE_ASPECT_STENCIL_BIT:
68 isl_usage |= ISL_SURF_USAGE_STENCIL_BIT;
69 break;
70 }
71 }
72
73 if (vk_usage & VK_IMAGE_USAGE_TRANSFER_SRC_BIT) {
74 /* Meta 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 /* Meta implements transfers by rendering into the destination image. */
80 isl_usage |= ISL_SURF_USAGE_RENDER_TARGET_BIT;
81 }
82
83 return isl_usage;
84 }
85
86 /**
87 * Exactly one bit must be set in \a aspect.
88 */
89 static struct anv_surface *
90 get_surface(struct anv_image *image, VkImageAspectFlags aspect)
91 {
92 switch (aspect) {
93 default:
94 unreachable("bad VkImageAspect");
95 case VK_IMAGE_ASPECT_COLOR_BIT:
96 return &image->color_surface;
97 case VK_IMAGE_ASPECT_DEPTH_BIT:
98 return &image->depth_surface;
99 case VK_IMAGE_ASPECT_STENCIL_BIT:
100 return &image->stencil_surface;
101 }
102 }
103
104 static void
105 add_surface(struct anv_image *image, struct anv_surface *surf)
106 {
107 assert(surf->isl.size > 0); /* isl surface must be initialized */
108
109 surf->offset = align_u32(image->size, surf->isl.alignment);
110 image->size = surf->offset + surf->isl.size;
111 image->alignment = MAX(image->alignment, surf->isl.alignment);
112 }
113
114 /**
115 * Initialize the anv_image::*_surface selected by \a aspect. Then update the
116 * image's memory requirements (that is, the image's size and alignment).
117 *
118 * Exactly one bit must be set in \a aspect.
119 */
120 static VkResult
121 make_surface(const struct anv_device *dev,
122 struct anv_image *image,
123 const struct anv_image_create_info *anv_info,
124 VkImageAspectFlags aspect)
125 {
126 const VkImageCreateInfo *vk_info = anv_info->vk_info;
127 bool ok UNUSED;
128
129 static const enum isl_surf_dim vk_to_isl_surf_dim[] = {
130 [VK_IMAGE_TYPE_1D] = ISL_SURF_DIM_1D,
131 [VK_IMAGE_TYPE_2D] = ISL_SURF_DIM_2D,
132 [VK_IMAGE_TYPE_3D] = ISL_SURF_DIM_3D,
133 };
134
135 /* Translate the Vulkan tiling to an equivalent ISL tiling, then filter the
136 * result with an optionally provided ISL tiling argument.
137 */
138 isl_tiling_flags_t tiling_flags =
139 (vk_info->tiling == VK_IMAGE_TILING_LINEAR) ?
140 ISL_TILING_LINEAR_BIT : ISL_TILING_ANY_MASK;
141
142 if (anv_info->isl_tiling_flags)
143 tiling_flags &= anv_info->isl_tiling_flags;
144
145 assert(tiling_flags);
146
147 struct anv_surface *anv_surf = get_surface(image, aspect);
148
149 image->extent = anv_sanitize_image_extent(vk_info->imageType,
150 vk_info->extent);
151
152 enum isl_format format = anv_get_isl_format(&dev->info, vk_info->format,
153 aspect, vk_info->tiling);
154 assert(format != ISL_FORMAT_UNSUPPORTED);
155
156 ok = isl_surf_init(&dev->isl_dev, &anv_surf->isl,
157 .dim = vk_to_isl_surf_dim[vk_info->imageType],
158 .format = format,
159 .width = image->extent.width,
160 .height = image->extent.height,
161 .depth = image->extent.depth,
162 .levels = vk_info->mipLevels,
163 .array_len = vk_info->arrayLayers,
164 .samples = vk_info->samples,
165 .min_alignment = 0,
166 .min_pitch = anv_info->stride,
167 .usage = choose_isl_surf_usage(image->usage, aspect),
168 .tiling_flags = tiling_flags);
169
170 /* isl_surf_init() will fail only if provided invalid input. Invalid input
171 * is illegal in Vulkan.
172 */
173 assert(ok);
174
175 add_surface(image, anv_surf);
176
177 /* Add a HiZ surface to a depth buffer that will be used for rendering.
178 */
179 if (aspect == VK_IMAGE_ASPECT_DEPTH_BIT &&
180 (image->usage & VK_IMAGE_USAGE_DEPTH_STENCIL_ATTACHMENT_BIT)) {
181
182 /* Allow the user to control HiZ enabling. Disable by default on gen7
183 * because resolves are not currently implemented pre-BDW.
184 */
185 if (!env_var_as_boolean("INTEL_VK_HIZ", dev->info.gen >= 8)) {
186 anv_finishme("Implement gen7 HiZ");
187 } else if (vk_info->mipLevels > 1) {
188 anv_finishme("Test multi-LOD HiZ");
189 } else if (dev->info.gen == 8 && vk_info->samples > 1) {
190 anv_finishme("Test gen8 multisampled HiZ");
191 } else {
192 isl_surf_get_hiz_surf(&dev->isl_dev, &image->depth_surface.isl,
193 &image->hiz_surface.isl);
194 add_surface(image, &image->hiz_surface);
195 }
196 }
197
198 return VK_SUCCESS;
199 }
200
201 /**
202 * Parameter @a format is required and overrides VkImageCreateInfo::format.
203 */
204 static VkImageUsageFlags
205 anv_image_get_full_usage(const VkImageCreateInfo *info,
206 VkImageAspectFlags aspects)
207 {
208 VkImageUsageFlags usage = info->usage;
209
210 if (info->samples > 1 &&
211 (usage & VK_IMAGE_USAGE_COLOR_ATTACHMENT_BIT)) {
212 /* Meta will resolve the image by binding it as a texture. */
213 usage |= VK_IMAGE_USAGE_SAMPLED_BIT;
214 }
215
216 if (usage & VK_IMAGE_USAGE_TRANSFER_SRC_BIT) {
217 /* Meta will transfer from the image by binding it as a texture. */
218 usage |= VK_IMAGE_USAGE_SAMPLED_BIT;
219 }
220
221 if (usage & VK_IMAGE_USAGE_TRANSFER_DST_BIT) {
222 /* For non-clear transfer operations, meta will transfer to the image by
223 * binding it as a color attachment, even if the image format is not
224 * a color format.
225 */
226 usage |= VK_IMAGE_USAGE_COLOR_ATTACHMENT_BIT;
227
228 if (aspects & (VK_IMAGE_ASPECT_DEPTH_BIT | VK_IMAGE_ASPECT_STENCIL_BIT)) {
229 /* vkCmdClearDepthStencilImage() only requires that
230 * VK_IMAGE_USAGE_TRANSFER_SRC_BIT be set. In particular, it does
231 * not require VK_IMAGE_USAGE_DEPTH_STENCIL_ATTACHMENT_BIT. Meta
232 * clears the image, though, by binding it as a depthstencil
233 * attachment.
234 */
235 usage |= VK_IMAGE_USAGE_DEPTH_STENCIL_ATTACHMENT_BIT;
236 }
237 }
238
239 return usage;
240 }
241
242 VkResult
243 anv_image_create(VkDevice _device,
244 const struct anv_image_create_info *create_info,
245 const VkAllocationCallbacks* alloc,
246 VkImage *pImage)
247 {
248 ANV_FROM_HANDLE(anv_device, device, _device);
249 const VkImageCreateInfo *pCreateInfo = create_info->vk_info;
250 struct anv_image *image = NULL;
251 VkResult r;
252
253 assert(pCreateInfo->sType == VK_STRUCTURE_TYPE_IMAGE_CREATE_INFO);
254
255 anv_assert(pCreateInfo->mipLevels > 0);
256 anv_assert(pCreateInfo->arrayLayers > 0);
257 anv_assert(pCreateInfo->samples > 0);
258 anv_assert(pCreateInfo->extent.width > 0);
259 anv_assert(pCreateInfo->extent.height > 0);
260 anv_assert(pCreateInfo->extent.depth > 0);
261
262 image = anv_alloc2(&device->alloc, alloc, sizeof(*image), 8,
263 VK_SYSTEM_ALLOCATION_SCOPE_OBJECT);
264 if (!image)
265 return vk_error(VK_ERROR_OUT_OF_HOST_MEMORY);
266
267 memset(image, 0, sizeof(*image));
268 image->type = pCreateInfo->imageType;
269 image->extent = pCreateInfo->extent;
270 image->vk_format = pCreateInfo->format;
271 image->aspects = vk_format_aspects(image->vk_format);
272 image->levels = pCreateInfo->mipLevels;
273 image->array_size = pCreateInfo->arrayLayers;
274 image->samples = pCreateInfo->samples;
275 image->usage = anv_image_get_full_usage(pCreateInfo, image->aspects);
276 image->tiling = pCreateInfo->tiling;
277
278 uint32_t b;
279 for_each_bit(b, image->aspects) {
280 r = make_surface(device, image, create_info, (1 << b));
281 if (r != VK_SUCCESS)
282 goto fail;
283 }
284
285 *pImage = anv_image_to_handle(image);
286
287 return VK_SUCCESS;
288
289 fail:
290 if (image)
291 anv_free2(&device->alloc, alloc, image);
292
293 return r;
294 }
295
296 VkResult
297 anv_CreateImage(VkDevice device,
298 const VkImageCreateInfo *pCreateInfo,
299 const VkAllocationCallbacks *pAllocator,
300 VkImage *pImage)
301 {
302 return anv_image_create(device,
303 &(struct anv_image_create_info) {
304 .vk_info = pCreateInfo,
305 },
306 pAllocator,
307 pImage);
308 }
309
310 void
311 anv_DestroyImage(VkDevice _device, VkImage _image,
312 const VkAllocationCallbacks *pAllocator)
313 {
314 ANV_FROM_HANDLE(anv_device, device, _device);
315
316 anv_free2(&device->alloc, pAllocator, anv_image_from_handle(_image));
317 }
318
319 VkResult anv_BindImageMemory(
320 VkDevice _device,
321 VkImage _image,
322 VkDeviceMemory _memory,
323 VkDeviceSize memoryOffset)
324 {
325 ANV_FROM_HANDLE(anv_device, device, _device);
326 ANV_FROM_HANDLE(anv_device_memory, mem, _memory);
327 ANV_FROM_HANDLE(anv_image, image, _image);
328
329 if (mem) {
330 image->bo = &mem->bo;
331 image->offset = memoryOffset;
332 } else {
333 image->bo = NULL;
334 image->offset = 0;
335 }
336
337 if (anv_image_has_hiz(image)) {
338
339 /* The offset and size must be a multiple of 4K or else the
340 * anv_gem_mmap call below will return NULL.
341 */
342 assert((image->offset + image->hiz_surface.offset) % 4096 == 0);
343 assert(image->hiz_surface.isl.size % 4096 == 0);
344
345 /* HiZ surfaces need to have their memory cleared to 0 before they
346 * can be used. If we let it have garbage data, it can cause GPU
347 * hangs on some hardware.
348 */
349 void *map = anv_gem_mmap(device, image->bo->gem_handle,
350 image->offset + image->hiz_surface.offset,
351 image->hiz_surface.isl.size,
352 device->info.has_llc ? 0 : I915_MMAP_WC);
353
354 /* If anv_gem_mmap returns NULL, it's likely that the kernel was
355 * not able to find space on the host to create a proper mapping.
356 */
357 if (map == NULL)
358 return vk_error(VK_ERROR_OUT_OF_HOST_MEMORY);
359
360 memset(map, 0, image->hiz_surface.isl.size);
361
362 anv_gem_munmap(map, image->hiz_surface.isl.size);
363 }
364
365 return VK_SUCCESS;
366 }
367
368 static void
369 anv_surface_get_subresource_layout(struct anv_image *image,
370 struct anv_surface *surface,
371 const VkImageSubresource *subresource,
372 VkSubresourceLayout *layout)
373 {
374 /* If we are on a non-zero mip level or array slice, we need to
375 * calculate a real offset.
376 */
377 anv_assert(subresource->mipLevel == 0);
378 anv_assert(subresource->arrayLayer == 0);
379
380 layout->offset = surface->offset;
381 layout->rowPitch = surface->isl.row_pitch;
382 layout->depthPitch = isl_surf_get_array_pitch(&surface->isl);
383 layout->arrayPitch = isl_surf_get_array_pitch(&surface->isl);
384 layout->size = surface->isl.size;
385 }
386
387 void anv_GetImageSubresourceLayout(
388 VkDevice device,
389 VkImage _image,
390 const VkImageSubresource* pSubresource,
391 VkSubresourceLayout* pLayout)
392 {
393 ANV_FROM_HANDLE(anv_image, image, _image);
394
395 assert(__builtin_popcount(pSubresource->aspectMask) == 1);
396
397 switch (pSubresource->aspectMask) {
398 case VK_IMAGE_ASPECT_COLOR_BIT:
399 anv_surface_get_subresource_layout(image, &image->color_surface,
400 pSubresource, pLayout);
401 break;
402 case VK_IMAGE_ASPECT_DEPTH_BIT:
403 anv_surface_get_subresource_layout(image, &image->depth_surface,
404 pSubresource, pLayout);
405 break;
406 case VK_IMAGE_ASPECT_STENCIL_BIT:
407 anv_surface_get_subresource_layout(image, &image->stencil_surface,
408 pSubresource, pLayout);
409 break;
410 default:
411 assert(!"Invalid image aspect");
412 }
413 }
414
415 static struct anv_state
416 alloc_surface_state(struct anv_device *device,
417 struct anv_cmd_buffer *cmd_buffer)
418 {
419 if (cmd_buffer) {
420 return anv_cmd_buffer_alloc_surface_state(cmd_buffer);
421 } else {
422 return anv_state_pool_alloc(&device->surface_state_pool, 64, 64);
423 }
424 }
425
426 static enum isl_channel_select
427 remap_swizzle(VkComponentSwizzle swizzle, VkComponentSwizzle component,
428 struct isl_swizzle format_swizzle)
429 {
430 if (swizzle == VK_COMPONENT_SWIZZLE_IDENTITY)
431 swizzle = component;
432
433 switch (swizzle) {
434 case VK_COMPONENT_SWIZZLE_ZERO: return ISL_CHANNEL_SELECT_ZERO;
435 case VK_COMPONENT_SWIZZLE_ONE: return ISL_CHANNEL_SELECT_ONE;
436 case VK_COMPONENT_SWIZZLE_R: return format_swizzle.r;
437 case VK_COMPONENT_SWIZZLE_G: return format_swizzle.g;
438 case VK_COMPONENT_SWIZZLE_B: return format_swizzle.b;
439 case VK_COMPONENT_SWIZZLE_A: return format_swizzle.a;
440 default:
441 unreachable("Invalid swizzle");
442 }
443 }
444
445 void
446 anv_image_view_init(struct anv_image_view *iview,
447 struct anv_device *device,
448 const VkImageViewCreateInfo* pCreateInfo,
449 struct anv_cmd_buffer *cmd_buffer,
450 VkImageUsageFlags usage_mask)
451 {
452 ANV_FROM_HANDLE(anv_image, image, pCreateInfo->image);
453 const VkImageSubresourceRange *range = &pCreateInfo->subresourceRange;
454
455 assert(range->layerCount > 0);
456 assert(range->baseMipLevel < image->levels);
457 assert(image->usage & (VK_IMAGE_USAGE_SAMPLED_BIT |
458 VK_IMAGE_USAGE_STORAGE_BIT |
459 VK_IMAGE_USAGE_COLOR_ATTACHMENT_BIT |
460 VK_IMAGE_USAGE_DEPTH_STENCIL_ATTACHMENT_BIT));
461
462 switch (image->type) {
463 default:
464 unreachable("bad VkImageType");
465 case VK_IMAGE_TYPE_1D:
466 case VK_IMAGE_TYPE_2D:
467 assert(range->baseArrayLayer + anv_get_layerCount(image, range) - 1 <= image->array_size);
468 break;
469 case VK_IMAGE_TYPE_3D:
470 assert(range->baseArrayLayer + anv_get_layerCount(image, range) - 1
471 <= anv_minify(image->extent.depth, range->baseMipLevel));
472 break;
473 }
474
475 const struct anv_surface *surface =
476 anv_image_get_surface_for_aspect_mask(image, range->aspectMask);
477
478 iview->image = image;
479 iview->bo = image->bo;
480 iview->offset = image->offset + surface->offset;
481
482 iview->aspect_mask = pCreateInfo->subresourceRange.aspectMask;
483 iview->vk_format = pCreateInfo->format;
484
485 struct anv_format format = anv_get_format(&device->info, pCreateInfo->format,
486 range->aspectMask, image->tiling);
487
488 iview->isl = (struct isl_view) {
489 .format = format.isl_format,
490 .base_level = range->baseMipLevel,
491 .levels = anv_get_levelCount(image, range),
492 .base_array_layer = range->baseArrayLayer,
493 .array_len = anv_get_layerCount(image, range),
494 .swizzle = {
495 .r = remap_swizzle(pCreateInfo->components.r,
496 VK_COMPONENT_SWIZZLE_R, format.swizzle),
497 .g = remap_swizzle(pCreateInfo->components.g,
498 VK_COMPONENT_SWIZZLE_G, format.swizzle),
499 .b = remap_swizzle(pCreateInfo->components.b,
500 VK_COMPONENT_SWIZZLE_B, format.swizzle),
501 .a = remap_swizzle(pCreateInfo->components.a,
502 VK_COMPONENT_SWIZZLE_A, format.swizzle),
503 },
504 };
505
506 iview->extent = (VkExtent3D) {
507 .width = anv_minify(image->extent.width , range->baseMipLevel),
508 .height = anv_minify(image->extent.height, range->baseMipLevel),
509 .depth = anv_minify(image->extent.depth , range->baseMipLevel),
510 };
511
512 if (image->type == VK_IMAGE_TYPE_3D &&
513 usage_mask != VK_IMAGE_USAGE_COLOR_ATTACHMENT_BIT) {
514 /* Meta renders to 3D texture slices. When it does so, it passes
515 * usage_mask == VK_IMAGE_USAGE_COLOR_ATTACHMENT_BIT. Since meta is the
516 * only thing that uses a non-zero usage_mask, this lets us easily
517 * detect the one case where we actually want an array range used for
518 * 3-D textures.
519 */
520 iview->isl.base_array_layer = 0;
521 iview->isl.array_len = iview->extent.depth;
522 }
523
524 if (pCreateInfo->viewType == VK_IMAGE_VIEW_TYPE_CUBE ||
525 pCreateInfo->viewType == VK_IMAGE_VIEW_TYPE_CUBE_ARRAY) {
526 iview->isl.usage = ISL_SURF_USAGE_CUBE_BIT;
527 } else {
528 iview->isl.usage = 0;
529 }
530
531 if (image->usage & usage_mask & VK_IMAGE_USAGE_SAMPLED_BIT) {
532 iview->sampler_surface_state = alloc_surface_state(device, cmd_buffer);
533
534 struct isl_view view = iview->isl;
535 view.usage |= ISL_SURF_USAGE_TEXTURE_BIT;
536 isl_surf_fill_state(&device->isl_dev,
537 iview->sampler_surface_state.map,
538 .surf = &surface->isl,
539 .view = &view,
540 .mocs = device->default_mocs);
541
542 if (!device->info.has_llc)
543 anv_state_clflush(iview->sampler_surface_state);
544 } else {
545 iview->sampler_surface_state.alloc_size = 0;
546 }
547
548 /* This is kind-of hackish. It is possible, due to get_full_usage above,
549 * to get a surface state with a non-renderable format but with
550 * VK_IMAGE_USAGE_COLOR_ATTACHMENT_BIT. This happens in particular for
551 * formats which aren't renderable but where we want to use Vulkan copy
552 * commands so VK_IMAGE_USAGE_TRANSFER_DST_BIT is set. In the case of a
553 * copy, meta will use a format that we can render to, but most of the rest
554 * of the time, we don't want to create those surface states. Once we
555 * start using blorp for copies, this problem will go away and we can
556 * remove a lot of hacks.
557 */
558 if ((image->usage & usage_mask & VK_IMAGE_USAGE_COLOR_ATTACHMENT_BIT) &&
559 isl_format_supports_rendering(&device->info, format.isl_format)) {
560 iview->color_rt_surface_state = alloc_surface_state(device, cmd_buffer);
561
562 struct isl_view view = iview->isl;
563 view.usage |= ISL_SURF_USAGE_RENDER_TARGET_BIT;
564 isl_surf_fill_state(&device->isl_dev,
565 iview->color_rt_surface_state.map,
566 .surf = &surface->isl,
567 .view = &view,
568 .mocs = device->default_mocs);
569
570 if (!device->info.has_llc)
571 anv_state_clflush(iview->color_rt_surface_state);
572 } else {
573 iview->color_rt_surface_state.alloc_size = 0;
574 }
575
576 /* NOTE: This one needs to go last since it may stomp isl_view.format */
577 if (image->usage & usage_mask & VK_IMAGE_USAGE_STORAGE_BIT) {
578 iview->storage_surface_state = alloc_surface_state(device, cmd_buffer);
579
580 if (isl_has_matching_typed_storage_image_format(&device->info,
581 format.isl_format)) {
582 struct isl_view view = iview->isl;
583 view.usage |= ISL_SURF_USAGE_STORAGE_BIT;
584 view.format = isl_lower_storage_image_format(&device->info,
585 format.isl_format);
586 isl_surf_fill_state(&device->isl_dev,
587 iview->storage_surface_state.map,
588 .surf = &surface->isl,
589 .view = &view,
590 .mocs = device->default_mocs);
591 } else {
592 anv_fill_buffer_surface_state(device, iview->storage_surface_state,
593 ISL_FORMAT_RAW,
594 iview->offset,
595 iview->bo->size - iview->offset, 1);
596 }
597
598 isl_surf_fill_image_param(&device->isl_dev,
599 &iview->storage_image_param,
600 &surface->isl, &iview->isl);
601
602 if (!device->info.has_llc)
603 anv_state_clflush(iview->storage_surface_state);
604 } else {
605 iview->storage_surface_state.alloc_size = 0;
606 }
607 }
608
609 VkResult
610 anv_CreateImageView(VkDevice _device,
611 const VkImageViewCreateInfo *pCreateInfo,
612 const VkAllocationCallbacks *pAllocator,
613 VkImageView *pView)
614 {
615 ANV_FROM_HANDLE(anv_device, device, _device);
616 struct anv_image_view *view;
617
618 view = anv_alloc2(&device->alloc, pAllocator, sizeof(*view), 8,
619 VK_SYSTEM_ALLOCATION_SCOPE_OBJECT);
620 if (view == NULL)
621 return vk_error(VK_ERROR_OUT_OF_HOST_MEMORY);
622
623 anv_image_view_init(view, device, pCreateInfo, NULL, ~0);
624
625 *pView = anv_image_view_to_handle(view);
626
627 return VK_SUCCESS;
628 }
629
630 void
631 anv_DestroyImageView(VkDevice _device, VkImageView _iview,
632 const VkAllocationCallbacks *pAllocator)
633 {
634 ANV_FROM_HANDLE(anv_device, device, _device);
635 ANV_FROM_HANDLE(anv_image_view, iview, _iview);
636
637 if (iview->color_rt_surface_state.alloc_size > 0) {
638 anv_state_pool_free(&device->surface_state_pool,
639 iview->color_rt_surface_state);
640 }
641
642 if (iview->sampler_surface_state.alloc_size > 0) {
643 anv_state_pool_free(&device->surface_state_pool,
644 iview->sampler_surface_state);
645 }
646
647 if (iview->storage_surface_state.alloc_size > 0) {
648 anv_state_pool_free(&device->surface_state_pool,
649 iview->storage_surface_state);
650 }
651
652 anv_free2(&device->alloc, pAllocator, iview);
653 }
654
655
656 void anv_buffer_view_init(struct anv_buffer_view *view,
657 struct anv_device *device,
658 const VkBufferViewCreateInfo* pCreateInfo,
659 struct anv_cmd_buffer *cmd_buffer)
660 {
661 ANV_FROM_HANDLE(anv_buffer, buffer, pCreateInfo->buffer);
662
663 /* TODO: Handle the format swizzle? */
664
665 view->format = anv_get_isl_format(&device->info, pCreateInfo->format,
666 VK_IMAGE_ASPECT_COLOR_BIT,
667 VK_IMAGE_TILING_LINEAR);
668 const uint32_t format_bs = isl_format_get_layout(view->format)->bpb / 8;
669 view->bo = buffer->bo;
670 view->offset = buffer->offset + pCreateInfo->offset;
671 view->range = pCreateInfo->range == VK_WHOLE_SIZE ?
672 buffer->size - pCreateInfo->offset : pCreateInfo->range;
673 view->range = align_down_npot_u32(view->range, format_bs);
674
675 if (buffer->usage & VK_BUFFER_USAGE_UNIFORM_TEXEL_BUFFER_BIT) {
676 view->surface_state = alloc_surface_state(device, cmd_buffer);
677
678 anv_fill_buffer_surface_state(device, view->surface_state,
679 view->format,
680 view->offset, view->range, format_bs);
681 } else {
682 view->surface_state = (struct anv_state){ 0 };
683 }
684
685 if (buffer->usage & VK_BUFFER_USAGE_STORAGE_TEXEL_BUFFER_BIT) {
686 view->storage_surface_state = alloc_surface_state(device, cmd_buffer);
687
688 enum isl_format storage_format =
689 isl_has_matching_typed_storage_image_format(&device->info,
690 view->format) ?
691 isl_lower_storage_image_format(&device->info, view->format) :
692 ISL_FORMAT_RAW;
693
694 anv_fill_buffer_surface_state(device, view->storage_surface_state,
695 storage_format,
696 view->offset, view->range,
697 (storage_format == ISL_FORMAT_RAW ? 1 :
698 isl_format_get_layout(storage_format)->bpb / 8));
699
700 isl_buffer_fill_image_param(&device->isl_dev,
701 &view->storage_image_param,
702 view->format, view->range);
703 } else {
704 view->storage_surface_state = (struct anv_state){ 0 };
705 }
706 }
707
708 VkResult
709 anv_CreateBufferView(VkDevice _device,
710 const VkBufferViewCreateInfo *pCreateInfo,
711 const VkAllocationCallbacks *pAllocator,
712 VkBufferView *pView)
713 {
714 ANV_FROM_HANDLE(anv_device, device, _device);
715 struct anv_buffer_view *view;
716
717 view = anv_alloc2(&device->alloc, pAllocator, sizeof(*view), 8,
718 VK_SYSTEM_ALLOCATION_SCOPE_OBJECT);
719 if (!view)
720 return vk_error(VK_ERROR_OUT_OF_HOST_MEMORY);
721
722 anv_buffer_view_init(view, device, pCreateInfo, NULL);
723
724 *pView = anv_buffer_view_to_handle(view);
725
726 return VK_SUCCESS;
727 }
728
729 void
730 anv_DestroyBufferView(VkDevice _device, VkBufferView bufferView,
731 const VkAllocationCallbacks *pAllocator)
732 {
733 ANV_FROM_HANDLE(anv_device, device, _device);
734 ANV_FROM_HANDLE(anv_buffer_view, view, bufferView);
735
736 if (view->surface_state.alloc_size > 0)
737 anv_state_pool_free(&device->surface_state_pool,
738 view->surface_state);
739
740 if (view->storage_surface_state.alloc_size > 0)
741 anv_state_pool_free(&device->surface_state_pool,
742 view->storage_surface_state);
743
744 anv_free2(&device->alloc, pAllocator, view);
745 }
746
747 const struct anv_surface *
748 anv_image_get_surface_for_aspect_mask(const struct anv_image *image,
749 VkImageAspectFlags aspect_mask)
750 {
751 switch (aspect_mask) {
752 case VK_IMAGE_ASPECT_COLOR_BIT:
753 /* Dragons will eat you.
754 *
755 * Meta attaches all destination surfaces as color render targets. Guess
756 * what surface the Meta Dragons really want.
757 */
758 if (image->aspects & VK_IMAGE_ASPECT_DEPTH_BIT) {
759 return &image->depth_surface;
760 } else if (image->aspects & VK_IMAGE_ASPECT_STENCIL_BIT) {
761 return &image->stencil_surface;
762 } else {
763 assert(image->aspects == VK_IMAGE_ASPECT_COLOR_BIT);
764 return &image->color_surface;
765 }
766 break;
767 case VK_IMAGE_ASPECT_DEPTH_BIT:
768 assert(image->aspects & VK_IMAGE_ASPECT_DEPTH_BIT);
769 return &image->depth_surface;
770 case VK_IMAGE_ASPECT_STENCIL_BIT:
771 assert(image->aspects & VK_IMAGE_ASPECT_STENCIL_BIT);
772 return &image->stencil_surface;
773 case VK_IMAGE_ASPECT_DEPTH_BIT | VK_IMAGE_ASPECT_STENCIL_BIT:
774 /* FINISHME: The Vulkan spec (git a511ba2) requires support for
775 * combined depth stencil formats. Specifically, it states:
776 *
777 * At least one of ename:VK_FORMAT_D24_UNORM_S8_UINT or
778 * ename:VK_FORMAT_D32_SFLOAT_S8_UINT must be supported.
779 *
780 * Image views with both depth and stencil aspects are only valid for
781 * render target attachments, in which case
782 * cmd_buffer_emit_depth_stencil() will pick out both the depth and
783 * stencil surfaces from the underlying surface.
784 */
785 if (image->aspects & VK_IMAGE_ASPECT_DEPTH_BIT) {
786 return &image->depth_surface;
787 } else {
788 assert(image->aspects == VK_IMAGE_ASPECT_STENCIL_BIT);
789 return &image->stencil_surface;
790 }
791 default:
792 unreachable("image does not have aspect");
793 return NULL;
794 }
795 }