blob: 9e7f236f85172850dd9fee929b639da23413ea02 [file] [log] [blame]
Kristian Høgsberg769785c2015-05-08 22:32:37 -07001/*
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
Chad Versace2c2233e2015-07-17 15:04:27 -070030#include "anv_private.h"
Kristian Høgsberg769785c2015-05-08 22:32:37 -070031
Chad Versaceb3693892015-12-02 16:46:16 -080032/**
33 * The \a format argument is required and overrides any format found in struct
Chad Versace2f270f02015-12-04 16:29:25 -080034 * anv_image_create_info. Exactly one bit must be set in \a aspect.
Chad Versaceb3693892015-12-02 16:46:16 -080035 */
36static isl_surf_usage_flags_t
37choose_isl_surf_usage(const struct anv_image_create_info *info,
Chad Versace2f270f02015-12-04 16:29:25 -080038 VkImageAspectFlags aspect)
Chad Versaceb3693892015-12-02 16:46:16 -080039{
40 const VkImageCreateInfo *vk_info = info->vk_info;
41 isl_surf_usage_flags_t isl_flags = 0;
42
43 /* FINISHME: Support aux surfaces */
44 isl_flags |= ISL_SURF_USAGE_DISABLE_AUX_BIT;
45
46 if (vk_info->usage & VK_IMAGE_USAGE_SAMPLED_BIT)
47 isl_flags |= ISL_SURF_USAGE_TEXTURE_BIT;
48
49 if (vk_info->usage & VK_IMAGE_USAGE_INPUT_ATTACHMENT_BIT)
50 isl_flags |= ISL_SURF_USAGE_TEXTURE_BIT;
51
52 if (vk_info->usage & VK_IMAGE_USAGE_COLOR_ATTACHMENT_BIT)
53 isl_flags |= ISL_SURF_USAGE_RENDER_TARGET_BIT;
54
55 if (vk_info->flags & VK_IMAGE_CREATE_CUBE_COMPATIBLE_BIT)
56 isl_flags |= ISL_SURF_USAGE_CUBE_BIT;
57
58 if (vk_info->usage & VK_IMAGE_USAGE_DEPTH_STENCIL_ATTACHMENT_BIT) {
Chad Versace2f270f02015-12-04 16:29:25 -080059 switch (aspect) {
60 default:
61 unreachable("bad VkImageAspect");
62 case VK_IMAGE_ASPECT_DEPTH_BIT:
Chad Versaceb3693892015-12-02 16:46:16 -080063 isl_flags |= ISL_SURF_USAGE_DEPTH_BIT;
Chad Versace2f270f02015-12-04 16:29:25 -080064 break;
65 case VK_IMAGE_ASPECT_STENCIL_BIT:
Chad Versaceb3693892015-12-02 16:46:16 -080066 isl_flags |= ISL_SURF_USAGE_STENCIL_BIT;
Chad Versace2f270f02015-12-04 16:29:25 -080067 break;
Chad Versaceb3693892015-12-02 16:46:16 -080068 }
69 }
70
71 if (vk_info->usage & VK_IMAGE_USAGE_TRANSFER_SRC_BIT) {
72 /* Meta implements transfers by sampling from the source image. */
73 isl_flags |= ISL_SURF_USAGE_TEXTURE_BIT;
74 }
75
76 if (vk_info->usage & VK_IMAGE_USAGE_TRANSFER_DST_BIT) {
77 /* Meta implements transfers by rendering into the destination image. */
78 isl_flags |= ISL_SURF_USAGE_RENDER_TARGET_BIT;
79 }
80
81 return isl_flags;
82}
Chad Versace5a6b2e62015-08-17 13:50:43 -070083
84/**
Chad Versace9098e0f2015-12-07 09:22:49 -080085 * Exactly one bit must be set in \a aspect.
86 */
87static struct anv_surface *
88get_surface(struct anv_image *image, VkImageAspectFlags aspect)
89{
90 switch (aspect) {
91 default:
92 unreachable("bad VkImageAspect");
93 case VK_IMAGE_ASPECT_COLOR_BIT:
94 return &image->color_surface;
95 case VK_IMAGE_ASPECT_DEPTH_BIT:
96 return &image->depth_surface;
97 case VK_IMAGE_ASPECT_STENCIL_BIT:
98 return &image->stencil_surface;
99 }
100}
101
102/**
103 * Initialize the anv_image::*_surface selected by \a aspect. Then update the
104 * image's memory requirements (that is, the image's size and alignment).
105 *
106 * Exactly one bit must be set in \a aspect.
Chad Versace5a6b2e62015-08-17 13:50:43 -0700107 */
Chad Versace5b3a1ce2015-06-26 21:27:54 -0700108static VkResult
Chad Versace9098e0f2015-12-07 09:22:49 -0800109make_surface(const struct anv_device *dev,
110 struct anv_image *image,
111 const struct anv_image_create_info *anv_info,
112 VkImageAspectFlags aspect)
Chad Versacec6e76ae2015-06-26 18:48:34 -0700113{
Chad Versaceb3693892015-12-02 16:46:16 -0800114 const VkImageCreateInfo *vk_info = anv_info->vk_info;
Chad Versace3d85a282015-12-07 08:53:43 -0800115 bool ok UNUSED;
Chad Versace5b3a1ce2015-06-26 21:27:54 -0700116
Chad Versaceb3693892015-12-02 16:46:16 -0800117 static const enum isl_surf_dim vk_to_isl_surf_dim[] = {
118 [VK_IMAGE_TYPE_1D] = ISL_SURF_DIM_1D,
119 [VK_IMAGE_TYPE_2D] = ISL_SURF_DIM_2D,
120 [VK_IMAGE_TYPE_3D] = ISL_SURF_DIM_3D,
121 };
Chad Versacec6e76ae2015-06-26 18:48:34 -0700122
Chad Versace64e8af62015-12-07 08:50:28 -0800123 isl_tiling_flags_t tiling_flags = anv_info->isl_tiling_flags;
124 if (vk_info->tiling == VK_IMAGE_TILING_LINEAR)
125 tiling_flags &= ISL_TILING_LINEAR_BIT;
126
Chad Versace9098e0f2015-12-07 09:22:49 -0800127 struct anv_surface *anv_surf = get_surface(image, aspect);
128
129 ok = isl_surf_init(&dev->isl_dev, &anv_surf->isl,
Chad Versaceb3693892015-12-02 16:46:16 -0800130 .dim = vk_to_isl_surf_dim[vk_info->imageType],
Jordan Justenc20f78d2016-01-26 11:10:56 -0800131 .format = anv_get_isl_format(vk_info->format, aspect,
132 vk_info->tiling, NULL),
Chad Versaceb3693892015-12-02 16:46:16 -0800133 .width = vk_info->extent.width,
134 .height = vk_info->extent.height,
135 .depth = vk_info->extent.depth,
136 .levels = vk_info->mipLevels,
137 .array_len = vk_info->arrayLayers,
138 .samples = vk_info->samples,
139 .min_alignment = 0,
140 .min_pitch = 0,
Chad Versace2f270f02015-12-04 16:29:25 -0800141 .usage = choose_isl_surf_usage(anv_info, aspect),
Chad Versace64e8af62015-12-07 08:50:28 -0800142 .tiling_flags = tiling_flags);
Chad Versacec6e76ae2015-06-26 18:48:34 -0700143
Chad Versace3d85a282015-12-07 08:53:43 -0800144 /* isl_surf_init() will fail only if provided invalid input. Invalid input
145 * is illegal in Vulkan.
146 */
147 assert(ok);
148
Chad Versace9098e0f2015-12-07 09:22:49 -0800149 anv_surf->offset = align_u32(image->size, anv_surf->isl.alignment);
150 image->size = anv_surf->offset + anv_surf->isl.size;
151 image->alignment = MAX(image->alignment, anv_surf->isl.alignment);
Chad Versaceb3693892015-12-02 16:46:16 -0800152
Chad Versace5b3a1ce2015-06-26 21:27:54 -0700153 return VK_SUCCESS;
Chad Versacec6e76ae2015-06-26 18:48:34 -0700154}
155
Chad Versace24de3d42015-10-06 19:11:58 -0700156static VkImageUsageFlags
157anv_image_get_full_usage(const VkImageCreateInfo *info)
158{
159 VkImageUsageFlags usage = info->usage;
160
Chad Versace2bab3cd2016-01-28 06:28:01 -0800161 if (info->samples > 1 &&
162 (usage & VK_IMAGE_USAGE_COLOR_ATTACHMENT_BIT)) {
163 /* Meta will resolve the image by binding it as a texture. */
164 usage |= VK_IMAGE_USAGE_SAMPLED_BIT;
165 }
166
Jason Ekstrand6a8a5422015-11-30 11:12:44 -0800167 if (usage & VK_IMAGE_USAGE_TRANSFER_SRC_BIT) {
Chad Versace24de3d42015-10-06 19:11:58 -0700168 /* Meta will transfer from the image by binding it as a texture. */
169 usage |= VK_IMAGE_USAGE_SAMPLED_BIT;
170 }
171
Jason Ekstrand6a8a5422015-11-30 11:12:44 -0800172 if (usage & VK_IMAGE_USAGE_TRANSFER_DST_BIT) {
Chad Versace24de3d42015-10-06 19:11:58 -0700173 /* Meta will transfer to the image by binding it as a color attachment,
174 * even if the image format is not a color format.
175 */
176 usage |= VK_IMAGE_USAGE_COLOR_ATTACHMENT_BIT;
177 }
178
179 return usage;
180}
181
Chad Versace127cb3f2015-06-26 20:12:42 -0700182VkResult
183anv_image_create(VkDevice _device,
184 const struct anv_image_create_info *create_info,
Jason Ekstrandfcfb4042015-12-02 03:28:27 -0800185 const VkAllocationCallbacks* alloc,
Chad Versace127cb3f2015-06-26 20:12:42 -0700186 VkImage *pImage)
Kristian Høgsberg769785c2015-05-08 22:32:37 -0700187{
Jason Ekstranda52e2082015-07-09 20:24:07 -0700188 ANV_FROM_HANDLE(anv_device, device, _device);
Chad Versacefdcd71f2015-06-26 20:06:08 -0700189 const VkImageCreateInfo *pCreateInfo = create_info->vk_info;
Chad Versace5b3a1ce2015-06-26 21:27:54 -0700190 struct anv_image *image = NULL;
191 VkResult r;
Kristian Høgsberg769785c2015-05-08 22:32:37 -0700192
193 assert(pCreateInfo->sType == VK_STRUCTURE_TYPE_IMAGE_CREATE_INFO);
194
Chad Versace5b3a1ce2015-06-26 21:27:54 -0700195 anv_assert(pCreateInfo->mipLevels > 0);
Jason Ekstrand299f8f12015-12-01 12:52:56 -0800196 anv_assert(pCreateInfo->arrayLayers > 0);
Chad Versaced96d78c2016-01-22 17:16:20 -0800197 anv_assert(pCreateInfo->samples > 0);
Chad Versace5d7103e2015-06-26 09:05:46 -0700198 anv_assert(pCreateInfo->extent.width > 0);
199 anv_assert(pCreateInfo->extent.height > 0);
Chad Versace5b3a1ce2015-06-26 21:27:54 -0700200 anv_assert(pCreateInfo->extent.depth > 0);
Jason Ekstrand2a3c2962015-06-10 21:04:51 -0700201
Jason Ekstrandfcfb4042015-12-02 03:28:27 -0800202 image = anv_alloc2(&device->alloc, alloc, sizeof(*image), 8,
203 VK_SYSTEM_ALLOCATION_SCOPE_OBJECT);
Chad Versacec6e76ae2015-06-26 18:48:34 -0700204 if (!image)
205 return vk_error(VK_ERROR_OUT_OF_HOST_MEMORY);
Chad Versace67a76592015-06-26 09:17:52 -0700206
Chad Versacec6e76ae2015-06-26 18:48:34 -0700207 memset(image, 0, sizeof(*image));
208 image->type = pCreateInfo->imageType;
209 image->extent = pCreateInfo->extent;
Jason Ekstrand3200a812015-12-31 12:39:34 -0800210 image->vk_format = pCreateInfo->format;
Chad Versaceded736f2015-08-17 13:10:40 -0700211 image->format = anv_format_for_vk_format(pCreateInfo->format);
Chad Versace5b3a1ce2015-06-26 21:27:54 -0700212 image->levels = pCreateInfo->mipLevels;
Jason Ekstrand299f8f12015-12-01 12:52:56 -0800213 image->array_size = pCreateInfo->arrayLayers;
Chad Versacedfcb4ee2016-01-20 16:34:23 -0800214 image->samples = pCreateInfo->samples;
Chad Versace24de3d42015-10-06 19:11:58 -0700215 image->usage = anv_image_get_full_usage(pCreateInfo);
Jason Ekstrandf665fdf2016-01-01 14:09:17 -0800216 image->tiling = pCreateInfo->tiling;
Chad Versace67a76592015-06-26 09:17:52 -0700217
Chad Versace941b48e2015-08-28 07:08:58 -0700218 if (likely(anv_format_is_color(image->format))) {
Chad Versace9098e0f2015-12-07 09:22:49 -0800219 r = make_surface(device, image, create_info,
220 VK_IMAGE_ASPECT_COLOR_BIT);
Chad Versace5b3a1ce2015-06-26 21:27:54 -0700221 if (r != VK_SUCCESS)
222 goto fail;
Chad Versace941b48e2015-08-28 07:08:58 -0700223 } else {
Chad Versacee6d34322016-02-08 19:07:10 -0800224 if (image->format->has_depth) {
Chad Versace9098e0f2015-12-07 09:22:49 -0800225 r = make_surface(device, image, create_info,
226 VK_IMAGE_ASPECT_DEPTH_BIT);
Chad Versace941b48e2015-08-28 07:08:58 -0700227 if (r != VK_SUCCESS)
228 goto fail;
229 }
Kristian Høgsberg37743f92015-05-22 22:59:12 -0700230
Chad Versace941b48e2015-08-28 07:08:58 -0700231 if (image->format->has_stencil) {
Chad Versace9098e0f2015-12-07 09:22:49 -0800232 r = make_surface(device, image, create_info,
233 VK_IMAGE_ASPECT_STENCIL_BIT);
Chad Versace941b48e2015-08-28 07:08:58 -0700234 if (r != VK_SUCCESS)
235 goto fail;
236 }
Kristian Høgsberg37743f92015-05-22 22:59:12 -0700237 }
Kristian Høgsberg769785c2015-05-08 22:32:37 -0700238
Jason Ekstranda52e2082015-07-09 20:24:07 -0700239 *pImage = anv_image_to_handle(image);
Kristian Høgsberg769785c2015-05-08 22:32:37 -0700240
241 return VK_SUCCESS;
Chad Versace5b3a1ce2015-06-26 21:27:54 -0700242
243fail:
244 if (image)
Jason Ekstrandfcfb4042015-12-02 03:28:27 -0800245 anv_free2(&device->alloc, alloc, image);
Chad Versace5b3a1ce2015-06-26 21:27:54 -0700246
247 return r;
Kristian Høgsberg769785c2015-05-08 22:32:37 -0700248}
249
Chad Versace127cb3f2015-06-26 20:12:42 -0700250VkResult
251anv_CreateImage(VkDevice device,
252 const VkImageCreateInfo *pCreateInfo,
Jason Ekstrandfcfb4042015-12-02 03:28:27 -0800253 const VkAllocationCallbacks *pAllocator,
Chad Versace127cb3f2015-06-26 20:12:42 -0700254 VkImage *pImage)
Kristian Høgsberga29df712015-05-15 22:04:52 -0700255{
Chad Versacefdcd71f2015-06-26 20:06:08 -0700256 return anv_image_create(device,
257 &(struct anv_image_create_info) {
258 .vk_info = pCreateInfo,
Chad Versace64e8af62015-12-07 08:50:28 -0800259 .isl_tiling_flags = ISL_TILING_ANY_MASK,
Chad Versacefdcd71f2015-06-26 20:06:08 -0700260 },
Jason Ekstrandfcfb4042015-12-02 03:28:27 -0800261 pAllocator,
Chad Versacefdcd71f2015-06-26 20:06:08 -0700262 pImage);
Kristian Høgsberga29df712015-05-15 22:04:52 -0700263}
264
Jason Ekstrand05a26a62015-10-05 20:50:51 -0700265void
Jason Ekstrandfcfb4042015-12-02 03:28:27 -0800266anv_DestroyImage(VkDevice _device, VkImage _image,
267 const VkAllocationCallbacks *pAllocator)
Jason Ekstrand8b342b32015-07-10 12:30:58 -0700268{
269 ANV_FROM_HANDLE(anv_device, device, _device);
270
Jason Ekstrandfcfb4042015-12-02 03:28:27 -0800271 anv_free2(&device->alloc, pAllocator, anv_image_from_handle(_image));
Jason Ekstrand8b342b32015-07-10 12:30:58 -0700272}
273
Jason Ekstranddb5a5fc2015-10-13 15:50:02 -0700274static void
275anv_surface_get_subresource_layout(struct anv_image *image,
276 struct anv_surface *surface,
277 const VkImageSubresource *subresource,
278 VkSubresourceLayout *layout)
279{
280 /* If we are on a non-zero mip level or array slice, we need to
281 * calculate a real offset.
282 */
283 anv_assert(subresource->mipLevel == 0);
284 anv_assert(subresource->arrayLayer == 0);
285
286 layout->offset = surface->offset;
Chad Versace981ef2f2015-12-03 08:40:47 -0800287 layout->rowPitch = surface->isl.row_pitch;
288 layout->depthPitch = isl_surf_get_array_pitch(&surface->isl);
Jason Ekstrand8a81d132016-01-06 19:27:10 -0800289 layout->arrayPitch = isl_surf_get_array_pitch(&surface->isl);
Chad Versace981ef2f2015-12-03 08:40:47 -0800290 layout->size = surface->isl.size;
Jason Ekstranddb5a5fc2015-10-13 15:50:02 -0700291}
292
Jason Ekstrandf1a7c782015-11-30 12:21:19 -0800293void anv_GetImageSubresourceLayout(
Jason Ekstranddb24afe2015-07-07 18:20:18 -0700294 VkDevice device,
Jason Ekstranddb5a5fc2015-10-13 15:50:02 -0700295 VkImage _image,
Jason Ekstranddb24afe2015-07-07 18:20:18 -0700296 const VkImageSubresource* pSubresource,
297 VkSubresourceLayout* pLayout)
Kristian Høgsberg769785c2015-05-08 22:32:37 -0700298{
Jason Ekstranddb5a5fc2015-10-13 15:50:02 -0700299 ANV_FROM_HANDLE(anv_image, image, _image);
300
Jason Ekstrand407b8cc2015-12-01 12:19:11 -0800301 assert(__builtin_popcount(pSubresource->aspectMask) == 1);
302
303 switch (pSubresource->aspectMask) {
304 case VK_IMAGE_ASPECT_COLOR_BIT:
Jason Ekstranddb5a5fc2015-10-13 15:50:02 -0700305 anv_surface_get_subresource_layout(image, &image->color_surface,
306 pSubresource, pLayout);
307 break;
Jason Ekstrand407b8cc2015-12-01 12:19:11 -0800308 case VK_IMAGE_ASPECT_DEPTH_BIT:
Jason Ekstranddb5a5fc2015-10-13 15:50:02 -0700309 anv_surface_get_subresource_layout(image, &image->depth_surface,
310 pSubresource, pLayout);
311 break;
Jason Ekstrand407b8cc2015-12-01 12:19:11 -0800312 case VK_IMAGE_ASPECT_STENCIL_BIT:
Jason Ekstranddb5a5fc2015-10-13 15:50:02 -0700313 anv_surface_get_subresource_layout(image, &image->stencil_surface,
314 pSubresource, pLayout);
315 break;
316 default:
Jason Ekstrandf1a7c782015-11-30 12:21:19 -0800317 assert(!"Invalid image aspect");
Jason Ekstranddb5a5fc2015-10-13 15:50:02 -0700318 }
Kristian Høgsberg769785c2015-05-08 22:32:37 -0700319}
320
Chad Versace127cb3f2015-06-26 20:12:42 -0700321VkResult
Chad Versace5b04db72015-07-06 16:24:28 -0700322anv_validate_CreateImageView(VkDevice _device,
323 const VkImageViewCreateInfo *pCreateInfo,
Jason Ekstrandfcfb4042015-12-02 03:28:27 -0800324 const VkAllocationCallbacks *pAllocator,
Chad Versace5b04db72015-07-06 16:24:28 -0700325 VkImageView *pView)
326{
Jason Ekstranda52e2082015-07-09 20:24:07 -0700327 ANV_FROM_HANDLE(anv_image, image, pCreateInfo->image);
Chad Versace23075bc2015-07-06 17:04:13 -0700328 const VkImageSubresourceRange *subresource;
Chad Versace23075bc2015-07-06 17:04:13 -0700329 const struct anv_format *view_format_info;
Chad Versace5b04db72015-07-06 16:24:28 -0700330
Chad Versace23075bc2015-07-06 17:04:13 -0700331 /* Validate structure type before dereferencing it. */
Chad Versace5b04db72015-07-06 16:24:28 -0700332 assert(pCreateInfo);
333 assert(pCreateInfo->sType == VK_STRUCTURE_TYPE_IMAGE_VIEW_CREATE_INFO);
Chad Versace23075bc2015-07-06 17:04:13 -0700334 subresource = &pCreateInfo->subresourceRange;
335
Chad Versace23075bc2015-07-06 17:04:13 -0700336 /* Validate viewType is in range before using it. */
337 assert(pCreateInfo->viewType >= VK_IMAGE_VIEW_TYPE_BEGIN_RANGE);
338 assert(pCreateInfo->viewType <= VK_IMAGE_VIEW_TYPE_END_RANGE);
Chad Versace23075bc2015-07-06 17:04:13 -0700339
340 /* Validate format is in range before using it. */
341 assert(pCreateInfo->format >= VK_FORMAT_BEGIN_RANGE);
342 assert(pCreateInfo->format <= VK_FORMAT_END_RANGE);
Chad Versace23075bc2015-07-06 17:04:13 -0700343 view_format_info = anv_format_for_vk_format(pCreateInfo->format);
344
345 /* Validate channel swizzles. */
Jason Ekstranda53f23d2015-11-30 13:06:12 -0800346 assert(pCreateInfo->components.r >= VK_COMPONENT_SWIZZLE_BEGIN_RANGE);
347 assert(pCreateInfo->components.r <= VK_COMPONENT_SWIZZLE_END_RANGE);
348 assert(pCreateInfo->components.g >= VK_COMPONENT_SWIZZLE_BEGIN_RANGE);
349 assert(pCreateInfo->components.g <= VK_COMPONENT_SWIZZLE_END_RANGE);
350 assert(pCreateInfo->components.b >= VK_COMPONENT_SWIZZLE_BEGIN_RANGE);
351 assert(pCreateInfo->components.b <= VK_COMPONENT_SWIZZLE_END_RANGE);
352 assert(pCreateInfo->components.a >= VK_COMPONENT_SWIZZLE_BEGIN_RANGE);
353 assert(pCreateInfo->components.a <= VK_COMPONENT_SWIZZLE_END_RANGE);
Chad Versace23075bc2015-07-06 17:04:13 -0700354
355 /* Validate subresource. */
Chad Versace7a089bd2015-10-05 06:48:14 -0700356 assert(subresource->aspectMask != 0);
Jason Ekstrand299f8f12015-12-01 12:52:56 -0800357 assert(subresource->levelCount > 0);
358 assert(subresource->layerCount > 0);
Chad Versace23075bc2015-07-06 17:04:13 -0700359 assert(subresource->baseMipLevel < image->levels);
Jason Ekstrand299f8f12015-12-01 12:52:56 -0800360 assert(subresource->baseMipLevel + subresource->levelCount <= image->levels);
Jason Ekstrand1e4263b2015-10-06 10:27:50 -0700361 assert(subresource->baseArrayLayer < image->array_size);
Jason Ekstrand299f8f12015-12-01 12:52:56 -0800362 assert(subresource->baseArrayLayer + subresource->layerCount <= image->array_size);
Chad Versace5b04db72015-07-06 16:24:28 -0700363 assert(pView);
364
Chad Versace7a089bd2015-10-05 06:48:14 -0700365 const VkImageAspectFlags ds_flags = VK_IMAGE_ASPECT_DEPTH_BIT
366 | VK_IMAGE_ASPECT_STENCIL_BIT;
367
Chad Versace23075bc2015-07-06 17:04:13 -0700368 /* Validate format. */
Chad Versace7a089bd2015-10-05 06:48:14 -0700369 if (subresource->aspectMask & VK_IMAGE_ASPECT_COLOR_BIT) {
370 assert(subresource->aspectMask == VK_IMAGE_ASPECT_COLOR_BIT);
Chad Versacee6d34322016-02-08 19:07:10 -0800371 assert(!image->format->has_depth);
Chad Versaceded736f2015-08-17 13:10:40 -0700372 assert(!image->format->has_stencil);
Chad Versacee6d34322016-02-08 19:07:10 -0800373 assert(!view_format_info->has_depth);
Chad Versace23075bc2015-07-06 17:04:13 -0700374 assert(!view_format_info->has_stencil);
Chad Versaceaddc2a92015-11-12 12:14:43 -0800375 assert(view_format_info->isl_layout->bs ==
376 image->format->isl_layout->bs);
Chad Versace7a089bd2015-10-05 06:48:14 -0700377 } else if (subresource->aspectMask & ds_flags) {
378 assert((subresource->aspectMask & ~ds_flags) == 0);
379
380 if (subresource->aspectMask & VK_IMAGE_ASPECT_STENCIL_BIT) {
Chad Versacee6d34322016-02-08 19:07:10 -0800381 assert(image->format->has_depth);
382 assert(view_format_info->has_depth);
Chad Versaceaddc2a92015-11-12 12:14:43 -0800383 assert(view_format_info->isl_layout->bs ==
384 image->format->isl_layout->bs);
Chad Versace7a089bd2015-10-05 06:48:14 -0700385 }
386
Jason Ekstrand407b8cc2015-12-01 12:19:11 -0800387 if (subresource->aspectMask & VK_IMAGE_ASPECT_STENCIL_BIT) {
Chad Versace7a089bd2015-10-05 06:48:14 -0700388 /* FINISHME: Is it legal to have an R8 view of S8? */
389 assert(image->format->has_stencil);
390 assert(view_format_info->has_stencil);
391 }
392 } else {
393 assert(!"bad VkImageSubresourceRange::aspectFlags");
Chad Versace23075bc2015-07-06 17:04:13 -0700394 }
Chad Versace5b04db72015-07-06 16:24:28 -0700395
Jason Ekstrandfcfb4042015-12-02 03:28:27 -0800396 return anv_CreateImageView(_device, pCreateInfo, pAllocator, pView);
Chad Versace5b04db72015-07-06 16:24:28 -0700397}
398
Kristian Høgsberg Kristensen988341a2015-08-19 21:36:57 -0700399void
Francisco Jerezfc7a7b32016-01-26 14:45:46 -0800400anv_fill_image_surface_state(struct anv_device *device, struct anv_state state,
Jason Ekstrande5558ff2016-01-22 11:57:01 -0800401 struct anv_image_view *iview,
402 const VkImageViewCreateInfo *pCreateInfo,
403 VkImageUsageFlagBits usage)
404{
405 switch (device->info.gen) {
406 case 7:
407 if (device->info.is_haswell)
Francisco Jerezfc7a7b32016-01-26 14:45:46 -0800408 gen75_fill_image_surface_state(device, state.map, iview,
Jason Ekstrande5558ff2016-01-22 11:57:01 -0800409 pCreateInfo, usage);
410 else
Francisco Jerezfc7a7b32016-01-26 14:45:46 -0800411 gen7_fill_image_surface_state(device, state.map, iview,
Jason Ekstrande5558ff2016-01-22 11:57:01 -0800412 pCreateInfo, usage);
413 break;
414 case 8:
Francisco Jerezfc7a7b32016-01-26 14:45:46 -0800415 gen8_fill_image_surface_state(device, state.map, iview,
Jason Ekstrande5558ff2016-01-22 11:57:01 -0800416 pCreateInfo, usage);
417 break;
418 case 9:
Francisco Jerezfc7a7b32016-01-26 14:45:46 -0800419 gen9_fill_image_surface_state(device, state.map, iview,
Jason Ekstrande5558ff2016-01-22 11:57:01 -0800420 pCreateInfo, usage);
421 break;
422 default:
423 unreachable("unsupported gen\n");
424 }
425
426 if (!device->info.has_llc)
Francisco Jerezfc7a7b32016-01-26 14:45:46 -0800427 anv_state_clflush(state);
Jason Ekstrande5558ff2016-01-22 11:57:01 -0800428}
429
430static struct anv_state
431alloc_surface_state(struct anv_device *device,
432 struct anv_cmd_buffer *cmd_buffer)
433{
434 if (cmd_buffer) {
435 return anv_cmd_buffer_alloc_surface_state(cmd_buffer);
436 } else {
437 return anv_state_pool_alloc(&device->surface_state_pool, 64, 64);
438 }
439}
440
Francisco Jereza50dc702016-01-26 12:23:08 -0800441static bool
442has_matching_storage_typed_format(const struct anv_device *device,
443 enum isl_format format)
444{
445 return (isl_format_get_layout(format)->bs <= 4 ||
446 (isl_format_get_layout(format)->bs <= 8 &&
447 (device->info.gen >= 8 || device->info.is_haswell)) ||
448 device->info.gen >= 9);
449}
450
Jason Ekstrand9bc72a92016-01-26 20:16:43 -0800451static VkComponentSwizzle
Jordan Justenc20f78d2016-01-26 11:10:56 -0800452remap_swizzle(VkComponentSwizzle swizzle, VkComponentSwizzle component,
453 struct anv_format_swizzle format_swizzle)
Jason Ekstrand9bc72a92016-01-26 20:16:43 -0800454{
455 if (swizzle == VK_COMPONENT_SWIZZLE_IDENTITY)
Jordan Justenc20f78d2016-01-26 11:10:56 -0800456 swizzle = component;
457
458 switch (swizzle) {
459 case VK_COMPONENT_SWIZZLE_ZERO:
460 return VK_COMPONENT_SWIZZLE_ZERO;
461 case VK_COMPONENT_SWIZZLE_ONE:
462 return VK_COMPONENT_SWIZZLE_ONE;
463 case VK_COMPONENT_SWIZZLE_R:
464 return VK_COMPONENT_SWIZZLE_R + format_swizzle.r;
465 case VK_COMPONENT_SWIZZLE_G:
466 return VK_COMPONENT_SWIZZLE_R + format_swizzle.g;
467 case VK_COMPONENT_SWIZZLE_B:
468 return VK_COMPONENT_SWIZZLE_R + format_swizzle.b;
469 case VK_COMPONENT_SWIZZLE_A:
470 return VK_COMPONENT_SWIZZLE_R + format_swizzle.a;
471 default:
472 unreachable("Invalid swizzle");
473 }
Jason Ekstrand9bc72a92016-01-26 20:16:43 -0800474}
475
Jason Ekstrande5558ff2016-01-22 11:57:01 -0800476void
Kristian Høgsberg Kristensen988341a2015-08-19 21:36:57 -0700477anv_image_view_init(struct anv_image_view *iview,
478 struct anv_device *device,
479 const VkImageViewCreateInfo* pCreateInfo,
Nanley Chery6a579de2016-01-26 18:53:21 -0800480 struct anv_cmd_buffer *cmd_buffer,
481 uint32_t offset)
Kristian Høgsberg Kristensen988341a2015-08-19 21:36:57 -0700482{
Chad Versace44143a12015-10-06 18:17:09 -0700483 ANV_FROM_HANDLE(anv_image, image, pCreateInfo->image);
Chad Versace24de3d42015-10-06 19:11:58 -0700484 const VkImageSubresourceRange *range = &pCreateInfo->subresourceRange;
Nanley Cheryd3c1fd52016-01-26 18:40:54 -0800485 VkImageViewCreateInfo mCreateInfo;
486 memcpy(&mCreateInfo, pCreateInfo, sizeof(VkImageViewCreateInfo));
Chad Versace44143a12015-10-06 18:17:09 -0700487
Jason Ekstrand299f8f12015-12-01 12:52:56 -0800488 assert(range->layerCount > 0);
Chad Versace24de3d42015-10-06 19:11:58 -0700489 assert(range->baseMipLevel < image->levels);
Chad Versace44143a12015-10-06 18:17:09 -0700490 assert(image->usage & (VK_IMAGE_USAGE_SAMPLED_BIT |
Chad Versace24de3d42015-10-06 19:11:58 -0700491 VK_IMAGE_USAGE_STORAGE_BIT |
492 VK_IMAGE_USAGE_COLOR_ATTACHMENT_BIT |
Chad Versace0ca3c842015-10-07 11:39:49 -0700493 VK_IMAGE_USAGE_DEPTH_STENCIL_ATTACHMENT_BIT));
Chad Versace24de3d42015-10-06 19:11:58 -0700494
495 switch (image->type) {
496 default:
497 unreachable("bad VkImageType");
498 case VK_IMAGE_TYPE_1D:
499 case VK_IMAGE_TYPE_2D:
Jason Ekstrand299f8f12015-12-01 12:52:56 -0800500 assert(range->baseArrayLayer + range->layerCount - 1 <= image->array_size);
Chad Versace24de3d42015-10-06 19:11:58 -0700501 break;
502 case VK_IMAGE_TYPE_3D:
Jason Ekstrand299f8f12015-12-01 12:52:56 -0800503 assert(range->baseArrayLayer + range->layerCount - 1
Chad Versace24de3d42015-10-06 19:11:58 -0700504 <= anv_minify(image->extent.depth, range->baseMipLevel));
505 break;
506 }
Chad Versace44143a12015-10-06 18:17:09 -0700507
Jason Ekstranda7cc1292016-01-01 13:47:18 -0800508 struct anv_surface *surface =
509 anv_image_get_surface_for_aspect_mask(image, range->aspectMask);
510
511 iview->image = image;
512 iview->bo = image->bo;
Nanley Chery6a579de2016-01-26 18:53:21 -0800513 iview->offset = image->offset + surface->offset + offset;
Jason Ekstranda7cc1292016-01-01 13:47:18 -0800514
515 iview->aspect_mask = pCreateInfo->subresourceRange.aspectMask;
Jason Ekstrandf665fdf2016-01-01 14:09:17 -0800516 iview->vk_format = pCreateInfo->format;
Jordan Justenc20f78d2016-01-26 11:10:56 -0800517
518 struct anv_format_swizzle swizzle;
Jason Ekstrandf665fdf2016-01-01 14:09:17 -0800519 iview->format = anv_get_isl_format(pCreateInfo->format, iview->aspect_mask,
Jordan Justenc20f78d2016-01-26 11:10:56 -0800520 image->tiling, &swizzle);
Jason Ekstrand9bc72a92016-01-26 20:16:43 -0800521 iview->swizzle.r = remap_swizzle(pCreateInfo->components.r,
Jordan Justenc20f78d2016-01-26 11:10:56 -0800522 VK_COMPONENT_SWIZZLE_R, swizzle);
Jason Ekstrand9bc72a92016-01-26 20:16:43 -0800523 iview->swizzle.g = remap_swizzle(pCreateInfo->components.g,
Jordan Justenc20f78d2016-01-26 11:10:56 -0800524 VK_COMPONENT_SWIZZLE_G, swizzle);
Jason Ekstrand9bc72a92016-01-26 20:16:43 -0800525 iview->swizzle.b = remap_swizzle(pCreateInfo->components.b,
Jordan Justenc20f78d2016-01-26 11:10:56 -0800526 VK_COMPONENT_SWIZZLE_B, swizzle);
Jason Ekstrand9bc72a92016-01-26 20:16:43 -0800527 iview->swizzle.a = remap_swizzle(pCreateInfo->components.a,
Jordan Justenc20f78d2016-01-26 11:10:56 -0800528 VK_COMPONENT_SWIZZLE_A, swizzle);
Jason Ekstranda7cc1292016-01-01 13:47:18 -0800529
Jason Ekstrandaa9987a2016-01-05 13:54:02 -0800530 iview->base_layer = range->baseArrayLayer;
531 iview->base_mip = range->baseMipLevel;
Nanley Chery3f01bbe2016-01-04 12:41:22 -0800532
533 if (!isl_format_is_compressed(iview->format) &&
Chad Versace4d037b52016-02-08 18:51:52 -0800534 isl_format_is_compressed(image->format->isl_format)) {
Nanley Chery3f01bbe2016-01-04 12:41:22 -0800535 /* Scale the ImageView extent by the backing Image. This is used
536 * internally when an uncompressed ImageView is created on a
537 * compressed Image. The ImageView can therefore be used for copying
538 * data from a source Image to a destination Image.
539 */
540 const struct isl_format_layout * isl_layout = image->format->isl_layout;
Nanley Chery235abfb2016-01-27 12:08:56 -0800541
Jason Ekstrand96cf5cf2016-01-27 11:47:07 -0800542 iview->level_0_extent.depth = anv_minify(image->extent.depth, range->baseMipLevel);
Jason Ekstrand96cf5cf2016-01-27 11:47:07 -0800543 iview->level_0_extent.depth = DIV_ROUND_UP(iview->level_0_extent.depth, isl_layout->bd);
Nanley Chery235abfb2016-01-27 12:08:56 -0800544
Jason Ekstrand162c6622016-01-27 12:37:15 -0800545 iview->level_0_extent.height = isl_surf_get_array_pitch_el_rows(&surface->isl) * image->array_size;
Nanley Chery235abfb2016-01-27 12:08:56 -0800546 iview->level_0_extent.width = isl_surf_get_row_pitch_el(&surface->isl);
Nanley Cheryd3c1fd52016-01-26 18:40:54 -0800547 mCreateInfo.subresourceRange.baseMipLevel = 0;
548 mCreateInfo.subresourceRange.baseArrayLayer = 0;
Nanley Chery3f01bbe2016-01-04 12:41:22 -0800549 } else {
Jason Ekstrand96cf5cf2016-01-27 11:47:07 -0800550 iview->level_0_extent.width = image->extent.width;
Nanley Chery3f01bbe2016-01-04 12:41:22 -0800551 iview->level_0_extent.height = image->extent.height;
Jason Ekstrand96cf5cf2016-01-27 11:47:07 -0800552 iview->level_0_extent.depth = image->extent.depth;
Nanley Chery3f01bbe2016-01-04 12:41:22 -0800553 }
554
Jason Ekstranda7cc1292016-01-01 13:47:18 -0800555 iview->extent = (VkExtent3D) {
Nanley Chery3f01bbe2016-01-04 12:41:22 -0800556 .width = anv_minify(iview->level_0_extent.width , range->baseMipLevel),
557 .height = anv_minify(iview->level_0_extent.height, range->baseMipLevel),
558 .depth = anv_minify(iview->level_0_extent.depth , range->baseMipLevel),
Jason Ekstranda7cc1292016-01-01 13:47:18 -0800559 };
560
Chad Versace3eebf362016-02-04 11:58:05 -0800561 if (image->usage & VK_IMAGE_USAGE_SAMPLED_BIT) {
Chad Versace42b93202016-02-04 11:41:59 -0800562 iview->sampler_surface_state = alloc_surface_state(device, cmd_buffer);
Jason Ekstrande5558ff2016-01-22 11:57:01 -0800563
Chad Versace42b93202016-02-04 11:41:59 -0800564 anv_fill_image_surface_state(device, iview->sampler_surface_state,
Nanley Cheryd3c1fd52016-01-26 18:40:54 -0800565 iview, &mCreateInfo,
Jason Ekstrande5558ff2016-01-22 11:57:01 -0800566 VK_IMAGE_USAGE_SAMPLED_BIT);
567 } else {
Chad Versace42b93202016-02-04 11:41:59 -0800568 iview->sampler_surface_state.alloc_size = 0;
Jason Ekstrande5558ff2016-01-22 11:57:01 -0800569 }
570
Chad Versace3eebf362016-02-04 11:58:05 -0800571 if (image->usage & VK_IMAGE_USAGE_COLOR_ATTACHMENT_BIT) {
Jason Ekstrande5558ff2016-01-22 11:57:01 -0800572 iview->color_rt_surface_state = alloc_surface_state(device, cmd_buffer);
573
Francisco Jerezfc7a7b32016-01-26 14:45:46 -0800574 anv_fill_image_surface_state(device, iview->color_rt_surface_state,
Nanley Cheryd3c1fd52016-01-26 18:40:54 -0800575 iview, &mCreateInfo,
Jason Ekstrande5558ff2016-01-22 11:57:01 -0800576 VK_IMAGE_USAGE_COLOR_ATTACHMENT_BIT);
577 } else {
578 iview->color_rt_surface_state.alloc_size = 0;
579 }
580
Chad Versace3eebf362016-02-04 11:58:05 -0800581 if (image->usage & VK_IMAGE_USAGE_STORAGE_BIT) {
Jason Ekstrande5558ff2016-01-22 11:57:01 -0800582 iview->storage_surface_state = alloc_surface_state(device, cmd_buffer);
583
Francisco Jereza50dc702016-01-26 12:23:08 -0800584 if (has_matching_storage_typed_format(device, iview->format))
Francisco Jerezfc7a7b32016-01-26 14:45:46 -0800585 anv_fill_image_surface_state(device, iview->storage_surface_state,
Nanley Cheryd3c1fd52016-01-26 18:40:54 -0800586 iview, &mCreateInfo,
Francisco Jereza50dc702016-01-26 12:23:08 -0800587 VK_IMAGE_USAGE_STORAGE_BIT);
588 else
Francisco Jerez6840cc12016-01-26 14:50:52 -0800589 anv_fill_buffer_surface_state(device, iview->storage_surface_state,
Francisco Jereza50dc702016-01-26 12:23:08 -0800590 ISL_FORMAT_RAW,
591 iview->offset,
592 iview->bo->size - iview->offset, 1);
593
Jason Ekstrande5558ff2016-01-22 11:57:01 -0800594 } else {
595 iview->storage_surface_state.alloc_size = 0;
Kristian Høgsberg Kristensen988341a2015-08-19 21:36:57 -0700596 }
597}
598
Chad Versace5b04db72015-07-06 16:24:28 -0700599VkResult
Chad Versace127cb3f2015-06-26 20:12:42 -0700600anv_CreateImageView(VkDevice _device,
601 const VkImageViewCreateInfo *pCreateInfo,
Jason Ekstrandfcfb4042015-12-02 03:28:27 -0800602 const VkAllocationCallbacks *pAllocator,
Chad Versace127cb3f2015-06-26 20:12:42 -0700603 VkImageView *pView)
Kristian Høgsberg769785c2015-05-08 22:32:37 -0700604{
Jason Ekstranda52e2082015-07-09 20:24:07 -0700605 ANV_FROM_HANDLE(anv_device, device, _device);
Kristian Høgsberg Kristensenf1455ff2015-08-20 22:59:19 -0700606 struct anv_image_view *view;
Kristian Høgsberg769785c2015-05-08 22:32:37 -0700607
Jason Ekstrandfcfb4042015-12-02 03:28:27 -0800608 view = anv_alloc2(&device->alloc, pAllocator, sizeof(*view), 8,
609 VK_SYSTEM_ALLOCATION_SCOPE_OBJECT);
Kristian Høgsberg Kristensenf1455ff2015-08-20 22:59:19 -0700610 if (view == NULL)
611 return vk_error(VK_ERROR_OUT_OF_HOST_MEMORY);
612
Nanley Chery6a579de2016-01-26 18:53:21 -0800613 anv_image_view_init(view, device, pCreateInfo, NULL, 0);
Kristian Høgsberg Kristensenf1455ff2015-08-20 22:59:19 -0700614
615 *pView = anv_image_view_to_handle(view);
616
617 return VK_SUCCESS;
Kristian Høgsberg769785c2015-05-08 22:32:37 -0700618}
619
Jason Ekstrandfcfb4042015-12-02 03:28:27 -0800620void
621anv_DestroyImageView(VkDevice _device, VkImageView _iview,
622 const VkAllocationCallbacks *pAllocator)
Chad Versace24de3d42015-10-06 19:11:58 -0700623{
Jason Ekstrandfcfb4042015-12-02 03:28:27 -0800624 ANV_FROM_HANDLE(anv_device, device, _device);
625 ANV_FROM_HANDLE(anv_image_view, iview, _iview);
626
Chad Versace3eebf362016-02-04 11:58:05 -0800627 if (iview->color_rt_surface_state.alloc_size > 0) {
Chad Versace24de3d42015-10-06 19:11:58 -0700628 anv_state_pool_free(&device->surface_state_pool,
629 iview->color_rt_surface_state);
630 }
631
Chad Versace3eebf362016-02-04 11:58:05 -0800632 if (iview->sampler_surface_state.alloc_size > 0) {
Chad Versace24de3d42015-10-06 19:11:58 -0700633 anv_state_pool_free(&device->surface_state_pool,
Chad Versace42b93202016-02-04 11:41:59 -0800634 iview->sampler_surface_state);
Chad Versace24de3d42015-10-06 19:11:58 -0700635 }
636
Chad Versace3eebf362016-02-04 11:58:05 -0800637 if (iview->storage_surface_state.alloc_size > 0) {
Jason Ekstrandff05f632015-12-07 17:17:30 -0800638 anv_state_pool_free(&device->surface_state_pool,
639 iview->storage_surface_state);
640 }
641
Jason Ekstrandfcfb4042015-12-02 03:28:27 -0800642 anv_free2(&device->alloc, pAllocator, iview);
Jason Ekstrand84783502015-07-10 20:18:52 -0700643}
Kristian Høgsberg37743f92015-05-22 22:59:12 -0700644
Jason Ekstrandc5618602015-12-12 16:11:23 -0800645VkResult
646anv_CreateBufferView(VkDevice _device,
647 const VkBufferViewCreateInfo *pCreateInfo,
648 const VkAllocationCallbacks *pAllocator,
649 VkBufferView *pView)
650{
651 ANV_FROM_HANDLE(anv_device, device, _device);
652 ANV_FROM_HANDLE(anv_buffer, buffer, pCreateInfo->buffer);
653 struct anv_buffer_view *view;
654
Jason Ekstrandc5618602015-12-12 16:11:23 -0800655 view = anv_alloc2(&device->alloc, pAllocator, sizeof(*view), 8,
656 VK_SYSTEM_ALLOCATION_SCOPE_OBJECT);
657 if (!view)
658 return vk_error(VK_ERROR_OUT_OF_HOST_MEMORY);
659
Jason Ekstrandc5618602015-12-12 16:11:23 -0800660 const struct anv_format *format =
661 anv_format_for_vk_format(pCreateInfo->format);
662
Chad Versace4d037b52016-02-08 18:51:52 -0800663 view->format = format->isl_format;
Jason Ekstrand783a2112015-12-14 16:51:12 -0800664 view->bo = buffer->bo;
665 view->offset = buffer->offset + pCreateInfo->offset;
Jason Ekstrand56dbf132016-01-19 15:01:10 -0800666 view->range = pCreateInfo->range == VK_WHOLE_SIZE ?
667 buffer->size - view->offset : pCreateInfo->range;
Jason Ekstrand783a2112015-12-14 16:51:12 -0800668
669 if (buffer->usage & VK_BUFFER_USAGE_UNIFORM_TEXEL_BUFFER_BIT) {
670 view->surface_state =
671 anv_state_pool_alloc(&device->surface_state_pool, 64, 64);
672
Francisco Jerez6840cc12016-01-26 14:50:52 -0800673 anv_fill_buffer_surface_state(device, view->surface_state,
Jason Ekstrand783a2112015-12-14 16:51:12 -0800674 view->format,
Jason Ekstrand56dbf132016-01-19 15:01:10 -0800675 view->offset, view->range,
Chad Versace89b68dc2016-01-05 09:59:07 -0800676 format->isl_layout->bs);
Jason Ekstrand783a2112015-12-14 16:51:12 -0800677 } else {
678 view->surface_state = (struct anv_state){ 0 };
679 }
680
681 if (buffer->usage & VK_BUFFER_USAGE_STORAGE_TEXEL_BUFFER_BIT) {
682 view->storage_surface_state =
683 anv_state_pool_alloc(&device->surface_state_pool, 64, 64);
684
685 enum isl_format storage_format =
Francisco Jereza50dc702016-01-26 12:23:08 -0800686 has_matching_storage_typed_format(device, view->format) ?
687 isl_lower_storage_image_format(&device->isl_dev, view->format) :
688 ISL_FORMAT_RAW;
Jason Ekstrand783a2112015-12-14 16:51:12 -0800689
Francisco Jerez6840cc12016-01-26 14:50:52 -0800690 anv_fill_buffer_surface_state(device, view->storage_surface_state,
Jason Ekstrand783a2112015-12-14 16:51:12 -0800691 storage_format,
Jason Ekstrand56dbf132016-01-19 15:01:10 -0800692 view->offset, view->range,
Francisco Jereza50dc702016-01-26 12:23:08 -0800693 (storage_format == ISL_FORMAT_RAW ? 1 :
694 format->isl_layout->bs));
695
Jason Ekstrand783a2112015-12-14 16:51:12 -0800696 } else {
697 view->storage_surface_state = (struct anv_state){ 0 };
698 }
Jason Ekstrandc5618602015-12-12 16:11:23 -0800699
700 *pView = anv_buffer_view_to_handle(view);
701
702 return VK_SUCCESS;
703}
704
705void
706anv_DestroyBufferView(VkDevice _device, VkBufferView bufferView,
707 const VkAllocationCallbacks *pAllocator)
708{
709 ANV_FROM_HANDLE(anv_device, device, _device);
710 ANV_FROM_HANDLE(anv_buffer_view, view, bufferView);
711
Jason Ekstrand783a2112015-12-14 16:51:12 -0800712 if (view->surface_state.alloc_size > 0)
713 anv_state_pool_free(&device->surface_state_pool,
714 view->surface_state);
715
716 if (view->storage_surface_state.alloc_size > 0)
717 anv_state_pool_free(&device->surface_state_pool,
718 view->storage_surface_state);
719
Jason Ekstrandc5618602015-12-12 16:11:23 -0800720 anv_free2(&device->alloc, pAllocator, view);
721}
722
Chad Versace941b48e2015-08-28 07:08:58 -0700723struct anv_surface *
Chad Versace7a089bd2015-10-05 06:48:14 -0700724anv_image_get_surface_for_aspect_mask(struct anv_image *image, VkImageAspectFlags aspect_mask)
Chad Versace941b48e2015-08-28 07:08:58 -0700725{
Chad Versace7a089bd2015-10-05 06:48:14 -0700726 switch (aspect_mask) {
727 case VK_IMAGE_ASPECT_COLOR_BIT:
Chad Versace24de3d42015-10-06 19:11:58 -0700728 /* Dragons will eat you.
729 *
730 * Meta attaches all destination surfaces as color render targets. Guess
731 * what surface the Meta Dragons really want.
732 */
Chad Versacee6d34322016-02-08 19:07:10 -0800733 if (image->format->has_depth && image->format->has_stencil) {
Chad Versace24de3d42015-10-06 19:11:58 -0700734 return &image->depth_surface;
Chad Versacee6d34322016-02-08 19:07:10 -0800735 } else if (image->format->has_depth) {
Chad Versace24de3d42015-10-06 19:11:58 -0700736 return &image->depth_surface;
737 } else if (image->format->has_stencil) {
738 return &image->stencil_surface;
739 } else {
740 return &image->color_surface;
741 }
742 break;
Chad Versace7a089bd2015-10-05 06:48:14 -0700743 case VK_IMAGE_ASPECT_DEPTH_BIT:
Chad Versacee6d34322016-02-08 19:07:10 -0800744 assert(image->format->has_depth);
Chad Versace941b48e2015-08-28 07:08:58 -0700745 return &image->depth_surface;
Chad Versace7a089bd2015-10-05 06:48:14 -0700746 case VK_IMAGE_ASPECT_STENCIL_BIT:
Chad Versace941b48e2015-08-28 07:08:58 -0700747 assert(image->format->has_stencil);
Chad Versace941b48e2015-08-28 07:08:58 -0700748 return &image->stencil_surface;
Chad Versace7a089bd2015-10-05 06:48:14 -0700749 case VK_IMAGE_ASPECT_DEPTH_BIT | VK_IMAGE_ASPECT_STENCIL_BIT:
Chad Versacee6d34322016-02-08 19:07:10 -0800750 if (image->format->has_depth && image->format->has_stencil) {
Kristian Høgsberg Kristensen8e07f792016-01-25 15:14:47 -0800751 /* FINISHME: The Vulkan spec (git a511ba2) requires support for
752 * combined depth stencil formats. Specifically, it states:
Chad Versace03dd7222015-10-07 09:03:47 -0700753 *
754 * At least one of ename:VK_FORMAT_D24_UNORM_S8_UINT or
755 * ename:VK_FORMAT_D32_SFLOAT_S8_UINT must be supported.
Kristian Høgsberg Kristensen8e07f792016-01-25 15:14:47 -0800756 *
757 * Image views with both depth and stencil aspects are only valid for
758 * render target attachments, in which case
759 * cmd_buffer_emit_depth_stencil() will pick out both the depth and
760 * stencil surfaces from the underlying surface.
Chad Versace03dd7222015-10-07 09:03:47 -0700761 */
Chad Versace03dd7222015-10-07 09:03:47 -0700762 return &image->depth_surface;
Chad Versacee6d34322016-02-08 19:07:10 -0800763 } else if (image->format->has_depth) {
Chad Versace03dd7222015-10-07 09:03:47 -0700764 return &image->depth_surface;
765 } else if (image->format->has_stencil) {
766 return &image->stencil_surface;
767 }
768 /* fallthrough */
Chad Versace941b48e2015-08-28 07:08:58 -0700769 default:
770 unreachable("image does not have aspect");
771 return NULL;
772 }
773}
Jason Ekstrand43ac9542015-11-18 15:14:05 -0800774
Jason Ekstrandba393c92016-01-05 13:55:00 -0800775static void
776image_param_defaults(struct brw_image_param *param)
777{
778 memset(param, 0, sizeof *param);
779 /* Set the swizzling shifts to all-ones to effectively disable swizzling --
780 * See emit_address_calculation() in brw_fs_surface_builder.cpp for a more
781 * detailed explanation of these parameters.
782 */
783 param->swizzling[0] = 0xff;
784 param->swizzling[1] = 0xff;
785}
786
Jason Ekstrand43ac9542015-11-18 15:14:05 -0800787void
788anv_image_view_fill_image_param(struct anv_device *device,
789 struct anv_image_view *view,
790 struct brw_image_param *param)
791{
Jason Ekstrandba393c92016-01-05 13:55:00 -0800792 image_param_defaults(param);
793
794 const struct isl_surf *surf = &view->image->color_surface.isl;
Jason Ekstrandba393c92016-01-05 13:55:00 -0800795 const int cpp = isl_format_get_layout(surf->format)->bs;
Francisco Jerezd2ec5102016-01-26 12:20:01 -0800796 const struct isl_extent3d image_align_sa =
797 isl_surf_get_image_alignment_sa(surf);
Jason Ekstrandba393c92016-01-05 13:55:00 -0800798
Francisco Jerezd2ec5102016-01-26 12:20:01 -0800799 param->size[0] = view->extent.width;
800 param->size[1] = view->extent.height;
Jason Ekstrandba393c92016-01-05 13:55:00 -0800801 if (surf->dim == ISL_SURF_DIM_3D) {
Francisco Jerezd2ec5102016-01-26 12:20:01 -0800802 param->size[2] = view->extent.depth;
Jason Ekstrandba393c92016-01-05 13:55:00 -0800803 } else {
804 param->size[2] = surf->logical_level0_px.array_len - view->base_layer;
805 }
806
Nanley Chery308ec022016-01-27 09:29:09 -0800807 isl_surf_get_image_offset_el(surf, view->base_mip, view->base_layer, 0,
Jason Ekstrandba393c92016-01-05 13:55:00 -0800808 &param->offset[0], &param->offset[1]);
809
810 param->stride[0] = cpp;
811 param->stride[1] = surf->row_pitch / cpp;
Francisco Jerezd2ec5102016-01-26 12:20:01 -0800812
813 if (device->info.gen < 9 && surf->dim == ISL_SURF_DIM_3D) {
814 param->stride[2] = util_align_npot(param->size[0], image_align_sa.w);
815 param->stride[3] = util_align_npot(param->size[1], image_align_sa.h);
816 } else {
817 param->stride[2] = 0;
818 param->stride[3] = isl_surf_get_array_pitch_el_rows(surf);
819 }
Jason Ekstrandba393c92016-01-05 13:55:00 -0800820
821 switch (surf->tiling) {
822 case ISL_TILING_LINEAR:
823 /* image_param_defaults is good enough */
824 break;
825
826 case ISL_TILING_X:
827 /* An X tile is a rectangular block of 512x8 bytes. */
828 param->tiling[0] = util_logbase2(512 / cpp);
829 param->tiling[1] = util_logbase2(8);
830
831 if (device->isl_dev.has_bit6_swizzling) {
832 /* Right shifts required to swizzle bits 9 and 10 of the memory
833 * address with bit 6.
834 */
835 param->swizzling[0] = 3;
836 param->swizzling[1] = 4;
837 }
838 break;
839
840 case ISL_TILING_Y0:
841 /* The layout of a Y-tiled surface in memory isn't really fundamentally
842 * different to the layout of an X-tiled surface, we simply pretend that
843 * the surface is broken up in a number of smaller 16Bx32 tiles, each
844 * one arranged in X-major order just like is the case for X-tiling.
845 */
846 param->tiling[0] = util_logbase2(16 / cpp);
847 param->tiling[1] = util_logbase2(32);
848
849 if (device->isl_dev.has_bit6_swizzling) {
850 /* Right shift required to swizzle bit 9 of the memory address with
851 * bit 6.
852 */
853 param->swizzling[0] = 3;
854 param->swizzling[1] = 0xff;
855 }
856 break;
857
858 default:
859 assert(!"Unhandled storage image tiling");
860 }
861
862 /* 3D textures are arranged in 2D in memory with 2^lod slices per row. The
863 * address calculation algorithm (emit_address_calculation() in
864 * brw_fs_surface_builder.cpp) handles this as a sort of tiling with
865 * modulus equal to the LOD.
866 */
Francisco Jerezd2ec5102016-01-26 12:20:01 -0800867 param->tiling[2] = (device->info.gen < 9 && surf->dim == ISL_SURF_DIM_3D ?
868 view->base_mip : 0);
Jason Ekstrand43ac9542015-11-18 15:14:05 -0800869}
Jason Ekstrand783a2112015-12-14 16:51:12 -0800870
871void
872anv_buffer_view_fill_image_param(struct anv_device *device,
873 struct anv_buffer_view *view,
874 struct brw_image_param *param)
875{
Jason Ekstrandba393c92016-01-05 13:55:00 -0800876 image_param_defaults(param);
Jason Ekstrand783a2112015-12-14 16:51:12 -0800877
Chad Versace89b68dc2016-01-05 09:59:07 -0800878 param->stride[0] = isl_format_layouts[view->format].bs;
Jason Ekstrand783a2112015-12-14 16:51:12 -0800879 param->size[0] = view->range / param->stride[0];
880}