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