blob: 0a412a3f8c668e40ab62620d7e77edef57ba6a7b [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/**
Chad Versacec5e521f2016-02-09 12:36:54 -080033 * Exactly one bit must be set in \a aspect.
Chad Versaceb3693892015-12-02 16:46:16 -080034 */
35static isl_surf_usage_flags_t
Chad Versace2f4bb002016-02-09 12:35:39 -080036choose_isl_surf_usage(VkImageUsageFlags vk_usage,
Chad Versace2f270f02015-12-04 16:29:25 -080037 VkImageAspectFlags aspect)
Chad Versaceb3693892015-12-02 16:46:16 -080038{
Chad Versacec5e521f2016-02-09 12:36:54 -080039 isl_surf_usage_flags_t isl_usage = 0;
Chad Versaceb3693892015-12-02 16:46:16 -080040
41 /* FINISHME: Support aux surfaces */
Chad Versacec5e521f2016-02-09 12:36:54 -080042 isl_usage |= ISL_SURF_USAGE_DISABLE_AUX_BIT;
Chad Versaceb3693892015-12-02 16:46:16 -080043
Chad Versace2f4bb002016-02-09 12:35:39 -080044 if (vk_usage & VK_IMAGE_USAGE_SAMPLED_BIT)
Chad Versacec5e521f2016-02-09 12:36:54 -080045 isl_usage |= ISL_SURF_USAGE_TEXTURE_BIT;
Chad Versaceb3693892015-12-02 16:46:16 -080046
Chad Versace2f4bb002016-02-09 12:35:39 -080047 if (vk_usage & VK_IMAGE_USAGE_INPUT_ATTACHMENT_BIT)
Chad Versacec5e521f2016-02-09 12:36:54 -080048 isl_usage |= ISL_SURF_USAGE_TEXTURE_BIT;
Chad Versaceb3693892015-12-02 16:46:16 -080049
Chad Versace2f4bb002016-02-09 12:35:39 -080050 if (vk_usage & VK_IMAGE_USAGE_COLOR_ATTACHMENT_BIT)
Chad Versacec5e521f2016-02-09 12:36:54 -080051 isl_usage |= ISL_SURF_USAGE_RENDER_TARGET_BIT;
Chad Versaceb3693892015-12-02 16:46:16 -080052
Chad Versace2f4bb002016-02-09 12:35:39 -080053 if (vk_usage & VK_IMAGE_CREATE_CUBE_COMPATIBLE_BIT)
Chad Versacec5e521f2016-02-09 12:36:54 -080054 isl_usage |= ISL_SURF_USAGE_CUBE_BIT;
Chad Versaceb3693892015-12-02 16:46:16 -080055
Chad Versace2f4bb002016-02-09 12:35:39 -080056 if (vk_usage & VK_IMAGE_USAGE_DEPTH_STENCIL_ATTACHMENT_BIT) {
Chad Versace2f270f02015-12-04 16:29:25 -080057 switch (aspect) {
58 default:
59 unreachable("bad VkImageAspect");
60 case VK_IMAGE_ASPECT_DEPTH_BIT:
Chad Versacec5e521f2016-02-09 12:36:54 -080061 isl_usage |= ISL_SURF_USAGE_DEPTH_BIT;
Chad Versace2f270f02015-12-04 16:29:25 -080062 break;
63 case VK_IMAGE_ASPECT_STENCIL_BIT:
Chad Versacec5e521f2016-02-09 12:36:54 -080064 isl_usage |= ISL_SURF_USAGE_STENCIL_BIT;
Chad Versace2f270f02015-12-04 16:29:25 -080065 break;
Chad Versaceb3693892015-12-02 16:46:16 -080066 }
67 }
68
Chad Versace2f4bb002016-02-09 12:35:39 -080069 if (vk_usage & VK_IMAGE_USAGE_TRANSFER_SRC_BIT) {
Chad Versaceb3693892015-12-02 16:46:16 -080070 /* Meta implements transfers by sampling from the source image. */
Chad Versacec5e521f2016-02-09 12:36:54 -080071 isl_usage |= ISL_SURF_USAGE_TEXTURE_BIT;
Chad Versaceb3693892015-12-02 16:46:16 -080072 }
73
Chad Versace2f4bb002016-02-09 12:35:39 -080074 if (vk_usage & VK_IMAGE_USAGE_TRANSFER_DST_BIT) {
Chad Versaceb3693892015-12-02 16:46:16 -080075 /* Meta implements transfers by rendering into the destination image. */
Chad Versacec5e521f2016-02-09 12:36:54 -080076 isl_usage |= ISL_SURF_USAGE_RENDER_TARGET_BIT;
Chad Versaceb3693892015-12-02 16:46:16 -080077 }
78
Chad Versacec5e521f2016-02-09 12:36:54 -080079 return isl_usage;
Chad Versaceb3693892015-12-02 16:46:16 -080080}
Chad Versace5a6b2e62015-08-17 13:50:43 -070081
82/**
Chad Versace9098e0f2015-12-07 09:22:49 -080083 * Exactly one bit must be set in \a aspect.
84 */
85static struct anv_surface *
86get_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.
Chad Versace5a6b2e62015-08-17 13:50:43 -0700105 */
Chad Versace5b3a1ce2015-06-26 21:27:54 -0700106static VkResult
Chad Versace9098e0f2015-12-07 09:22:49 -0800107make_surface(const struct anv_device *dev,
108 struct anv_image *image,
109 const struct anv_image_create_info *anv_info,
110 VkImageAspectFlags aspect)
Chad Versacec6e76ae2015-06-26 18:48:34 -0700111{
Chad Versaceb3693892015-12-02 16:46:16 -0800112 const VkImageCreateInfo *vk_info = anv_info->vk_info;
Chad Versace3d85a282015-12-07 08:53:43 -0800113 bool ok UNUSED;
Chad Versace5b3a1ce2015-06-26 21:27:54 -0700114
Chad Versaceb3693892015-12-02 16:46:16 -0800115 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 };
Chad Versacec6e76ae2015-06-26 18:48:34 -0700120
Chad Versace64e8af62015-12-07 08:50:28 -0800121 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
Chad Versace9098e0f2015-12-07 09:22:49 -0800125 struct anv_surface *anv_surf = get_surface(image, aspect);
126
Kristian Høgsberg Kristensen3b9b9082016-02-17 12:21:46 -0800127 VkExtent3D extent;
128 switch (vk_info->imageType) {
129 case VK_IMAGE_TYPE_1D:
130 extent = (VkExtent3D) { vk_info->extent.width, 1, 1 };
131 break;
132 case VK_IMAGE_TYPE_2D:
133 extent = (VkExtent3D) { vk_info->extent.width, vk_info->extent.height, 1 };
134 break;
135 case VK_IMAGE_TYPE_3D:
136 extent = vk_info->extent;
137 break;
138 default:
139 unreachable("invalid image type");
140 }
141
Nanley Chery9963af82016-02-17 17:20:03 -0800142 image->extent = extent;
143
Chad Versace9098e0f2015-12-07 09:22:49 -0800144 ok = isl_surf_init(&dev->isl_dev, &anv_surf->isl,
Chad Versaceb3693892015-12-02 16:46:16 -0800145 .dim = vk_to_isl_surf_dim[vk_info->imageType],
Jordan Justenc20f78d2016-01-26 11:10:56 -0800146 .format = anv_get_isl_format(vk_info->format, aspect,
147 vk_info->tiling, NULL),
Kristian Høgsberg Kristensen3b9b9082016-02-17 12:21:46 -0800148 .width = extent.width,
149 .height = extent.height,
150 .depth = extent.depth,
Chad Versaceb3693892015-12-02 16:46:16 -0800151 .levels = vk_info->mipLevels,
152 .array_len = vk_info->arrayLayers,
153 .samples = vk_info->samples,
154 .min_alignment = 0,
155 .min_pitch = 0,
Chad Versace2f4bb002016-02-09 12:35:39 -0800156 .usage = choose_isl_surf_usage(image->usage, aspect),
Chad Versace64e8af62015-12-07 08:50:28 -0800157 .tiling_flags = tiling_flags);
Chad Versacec6e76ae2015-06-26 18:48:34 -0700158
Chad Versace3d85a282015-12-07 08:53:43 -0800159 /* isl_surf_init() will fail only if provided invalid input. Invalid input
160 * is illegal in Vulkan.
161 */
162 assert(ok);
163
Chad Versace9098e0f2015-12-07 09:22:49 -0800164 anv_surf->offset = align_u32(image->size, anv_surf->isl.alignment);
165 image->size = anv_surf->offset + anv_surf->isl.size;
166 image->alignment = MAX(image->alignment, anv_surf->isl.alignment);
Chad Versaceb3693892015-12-02 16:46:16 -0800167
Chad Versace5b3a1ce2015-06-26 21:27:54 -0700168 return VK_SUCCESS;
Chad Versacec6e76ae2015-06-26 18:48:34 -0700169}
170
Chad Versace4c5dccc2016-02-09 12:41:08 -0800171/**
172 * Parameter @a format is required and overrides VkImageCreateInfo::format.
173 */
Chad Versace24de3d42015-10-06 19:11:58 -0700174static VkImageUsageFlags
Chad Versace4c5dccc2016-02-09 12:41:08 -0800175anv_image_get_full_usage(const VkImageCreateInfo *info,
176 const struct anv_format *format)
Chad Versace24de3d42015-10-06 19:11:58 -0700177{
178 VkImageUsageFlags usage = info->usage;
179
Chad Versace2bab3cd2016-01-28 06:28:01 -0800180 if (info->samples > 1 &&
181 (usage & VK_IMAGE_USAGE_COLOR_ATTACHMENT_BIT)) {
182 /* Meta will resolve the image by binding it as a texture. */
183 usage |= VK_IMAGE_USAGE_SAMPLED_BIT;
184 }
185
Jason Ekstrand6a8a5422015-11-30 11:12:44 -0800186 if (usage & VK_IMAGE_USAGE_TRANSFER_SRC_BIT) {
Chad Versace24de3d42015-10-06 19:11:58 -0700187 /* Meta will transfer from the image by binding it as a texture. */
188 usage |= VK_IMAGE_USAGE_SAMPLED_BIT;
189 }
190
Jason Ekstrand6a8a5422015-11-30 11:12:44 -0800191 if (usage & VK_IMAGE_USAGE_TRANSFER_DST_BIT) {
Chad Versace4c5dccc2016-02-09 12:41:08 -0800192 /* For non-clear transfer operations, meta will transfer to the image by
193 * binding it as a color attachment, even if the image format is not
194 * a color format.
Chad Versace24de3d42015-10-06 19:11:58 -0700195 */
196 usage |= VK_IMAGE_USAGE_COLOR_ATTACHMENT_BIT;
Chad Versace4c5dccc2016-02-09 12:41:08 -0800197
198 if (anv_format_is_depth_or_stencil(format)) {
199 /* vkCmdClearDepthStencilImage() only requires that
200 * VK_IMAGE_USAGE_TRANSFER_SRC_BIT be set. In particular, it does
201 * not require VK_IMAGE_USAGE_DEPTH_STENCIL_ATTACHMENT_BIT. Meta
202 * clears the image, though, by binding it as a depthstencil
203 * attachment.
204 */
205 usage |= VK_IMAGE_USAGE_DEPTH_STENCIL_ATTACHMENT_BIT;
206 }
Chad Versace24de3d42015-10-06 19:11:58 -0700207 }
208
209 return usage;
210}
211
Chad Versace127cb3f2015-06-26 20:12:42 -0700212VkResult
213anv_image_create(VkDevice _device,
214 const struct anv_image_create_info *create_info,
Jason Ekstrandfcfb4042015-12-02 03:28:27 -0800215 const VkAllocationCallbacks* alloc,
Chad Versace127cb3f2015-06-26 20:12:42 -0700216 VkImage *pImage)
Kristian Høgsberg769785c2015-05-08 22:32:37 -0700217{
Jason Ekstranda52e2082015-07-09 20:24:07 -0700218 ANV_FROM_HANDLE(anv_device, device, _device);
Chad Versacefdcd71f2015-06-26 20:06:08 -0700219 const VkImageCreateInfo *pCreateInfo = create_info->vk_info;
Chad Versace5b3a1ce2015-06-26 21:27:54 -0700220 struct anv_image *image = NULL;
Chad Versace4c5dccc2016-02-09 12:41:08 -0800221 const struct anv_format *format = anv_format_for_vk_format(pCreateInfo->format);
Chad Versace5b3a1ce2015-06-26 21:27:54 -0700222 VkResult r;
Kristian Høgsberg769785c2015-05-08 22:32:37 -0700223
224 assert(pCreateInfo->sType == VK_STRUCTURE_TYPE_IMAGE_CREATE_INFO);
225
Chad Versace5b3a1ce2015-06-26 21:27:54 -0700226 anv_assert(pCreateInfo->mipLevels > 0);
Jason Ekstrand299f8f12015-12-01 12:52:56 -0800227 anv_assert(pCreateInfo->arrayLayers > 0);
Chad Versaced96d78c2016-01-22 17:16:20 -0800228 anv_assert(pCreateInfo->samples > 0);
Chad Versace5d7103e2015-06-26 09:05:46 -0700229 anv_assert(pCreateInfo->extent.width > 0);
230 anv_assert(pCreateInfo->extent.height > 0);
Chad Versace5b3a1ce2015-06-26 21:27:54 -0700231 anv_assert(pCreateInfo->extent.depth > 0);
Jason Ekstrand2a3c2962015-06-10 21:04:51 -0700232
Jason Ekstrandfcfb4042015-12-02 03:28:27 -0800233 image = anv_alloc2(&device->alloc, alloc, sizeof(*image), 8,
234 VK_SYSTEM_ALLOCATION_SCOPE_OBJECT);
Chad Versacec6e76ae2015-06-26 18:48:34 -0700235 if (!image)
236 return vk_error(VK_ERROR_OUT_OF_HOST_MEMORY);
Chad Versace67a76592015-06-26 09:17:52 -0700237
Chad Versacec6e76ae2015-06-26 18:48:34 -0700238 memset(image, 0, sizeof(*image));
239 image->type = pCreateInfo->imageType;
240 image->extent = pCreateInfo->extent;
Jason Ekstrand3200a812015-12-31 12:39:34 -0800241 image->vk_format = pCreateInfo->format;
Chad Versace4c5dccc2016-02-09 12:41:08 -0800242 image->format = format;
Chad Versace5b3a1ce2015-06-26 21:27:54 -0700243 image->levels = pCreateInfo->mipLevels;
Jason Ekstrand299f8f12015-12-01 12:52:56 -0800244 image->array_size = pCreateInfo->arrayLayers;
Chad Versacedfcb4ee2016-01-20 16:34:23 -0800245 image->samples = pCreateInfo->samples;
Chad Versace4c5dccc2016-02-09 12:41:08 -0800246 image->usage = anv_image_get_full_usage(pCreateInfo, format);
Jason Ekstrandf665fdf2016-01-01 14:09:17 -0800247 image->tiling = pCreateInfo->tiling;
Chad Versace67a76592015-06-26 09:17:52 -0700248
Chad Versace4c5dccc2016-02-09 12:41:08 -0800249 if (likely(anv_format_is_color(format))) {
Chad Versace9098e0f2015-12-07 09:22:49 -0800250 r = make_surface(device, image, create_info,
251 VK_IMAGE_ASPECT_COLOR_BIT);
Chad Versace5b3a1ce2015-06-26 21:27:54 -0700252 if (r != VK_SUCCESS)
253 goto fail;
Chad Versace941b48e2015-08-28 07:08:58 -0700254 } else {
Chad Versacee6d34322016-02-08 19:07:10 -0800255 if (image->format->has_depth) {
Chad Versace9098e0f2015-12-07 09:22:49 -0800256 r = make_surface(device, image, create_info,
257 VK_IMAGE_ASPECT_DEPTH_BIT);
Chad Versace941b48e2015-08-28 07:08:58 -0700258 if (r != VK_SUCCESS)
259 goto fail;
260 }
Kristian Høgsberg37743f92015-05-22 22:59:12 -0700261
Chad Versace941b48e2015-08-28 07:08:58 -0700262 if (image->format->has_stencil) {
Chad Versace9098e0f2015-12-07 09:22:49 -0800263 r = make_surface(device, image, create_info,
264 VK_IMAGE_ASPECT_STENCIL_BIT);
Chad Versace941b48e2015-08-28 07:08:58 -0700265 if (r != VK_SUCCESS)
266 goto fail;
267 }
Kristian Høgsberg37743f92015-05-22 22:59:12 -0700268 }
Kristian Høgsberg769785c2015-05-08 22:32:37 -0700269
Jason Ekstranda52e2082015-07-09 20:24:07 -0700270 *pImage = anv_image_to_handle(image);
Kristian Høgsberg769785c2015-05-08 22:32:37 -0700271
272 return VK_SUCCESS;
Chad Versace5b3a1ce2015-06-26 21:27:54 -0700273
274fail:
275 if (image)
Jason Ekstrandfcfb4042015-12-02 03:28:27 -0800276 anv_free2(&device->alloc, alloc, image);
Chad Versace5b3a1ce2015-06-26 21:27:54 -0700277
278 return r;
Kristian Høgsberg769785c2015-05-08 22:32:37 -0700279}
280
Chad Versace127cb3f2015-06-26 20:12:42 -0700281VkResult
282anv_CreateImage(VkDevice device,
283 const VkImageCreateInfo *pCreateInfo,
Jason Ekstrandfcfb4042015-12-02 03:28:27 -0800284 const VkAllocationCallbacks *pAllocator,
Chad Versace127cb3f2015-06-26 20:12:42 -0700285 VkImage *pImage)
Kristian Høgsberga29df712015-05-15 22:04:52 -0700286{
Chad Versacefdcd71f2015-06-26 20:06:08 -0700287 return anv_image_create(device,
288 &(struct anv_image_create_info) {
289 .vk_info = pCreateInfo,
Chad Versace64e8af62015-12-07 08:50:28 -0800290 .isl_tiling_flags = ISL_TILING_ANY_MASK,
Chad Versacefdcd71f2015-06-26 20:06:08 -0700291 },
Jason Ekstrandfcfb4042015-12-02 03:28:27 -0800292 pAllocator,
Chad Versacefdcd71f2015-06-26 20:06:08 -0700293 pImage);
Kristian Høgsberga29df712015-05-15 22:04:52 -0700294}
295
Jason Ekstrand05a26a62015-10-05 20:50:51 -0700296void
Jason Ekstrandfcfb4042015-12-02 03:28:27 -0800297anv_DestroyImage(VkDevice _device, VkImage _image,
298 const VkAllocationCallbacks *pAllocator)
Jason Ekstrand8b342b32015-07-10 12:30:58 -0700299{
300 ANV_FROM_HANDLE(anv_device, device, _device);
301
Jason Ekstrandfcfb4042015-12-02 03:28:27 -0800302 anv_free2(&device->alloc, pAllocator, anv_image_from_handle(_image));
Jason Ekstrand8b342b32015-07-10 12:30:58 -0700303}
304
Jason Ekstranddb5a5fc2015-10-13 15:50:02 -0700305static void
306anv_surface_get_subresource_layout(struct anv_image *image,
307 struct anv_surface *surface,
308 const VkImageSubresource *subresource,
309 VkSubresourceLayout *layout)
310{
311 /* If we are on a non-zero mip level or array slice, we need to
312 * calculate a real offset.
313 */
314 anv_assert(subresource->mipLevel == 0);
315 anv_assert(subresource->arrayLayer == 0);
316
317 layout->offset = surface->offset;
Chad Versace981ef2f2015-12-03 08:40:47 -0800318 layout->rowPitch = surface->isl.row_pitch;
319 layout->depthPitch = isl_surf_get_array_pitch(&surface->isl);
Jason Ekstrand8a81d132016-01-06 19:27:10 -0800320 layout->arrayPitch = isl_surf_get_array_pitch(&surface->isl);
Chad Versace981ef2f2015-12-03 08:40:47 -0800321 layout->size = surface->isl.size;
Jason Ekstranddb5a5fc2015-10-13 15:50:02 -0700322}
323
Jason Ekstrandf1a7c782015-11-30 12:21:19 -0800324void anv_GetImageSubresourceLayout(
Jason Ekstranddb24afe2015-07-07 18:20:18 -0700325 VkDevice device,
Jason Ekstranddb5a5fc2015-10-13 15:50:02 -0700326 VkImage _image,
Jason Ekstranddb24afe2015-07-07 18:20:18 -0700327 const VkImageSubresource* pSubresource,
328 VkSubresourceLayout* pLayout)
Kristian Høgsberg769785c2015-05-08 22:32:37 -0700329{
Jason Ekstranddb5a5fc2015-10-13 15:50:02 -0700330 ANV_FROM_HANDLE(anv_image, image, _image);
331
Jason Ekstrand407b8cc2015-12-01 12:19:11 -0800332 assert(__builtin_popcount(pSubresource->aspectMask) == 1);
333
334 switch (pSubresource->aspectMask) {
335 case VK_IMAGE_ASPECT_COLOR_BIT:
Jason Ekstranddb5a5fc2015-10-13 15:50:02 -0700336 anv_surface_get_subresource_layout(image, &image->color_surface,
337 pSubresource, pLayout);
338 break;
Jason Ekstrand407b8cc2015-12-01 12:19:11 -0800339 case VK_IMAGE_ASPECT_DEPTH_BIT:
Jason Ekstranddb5a5fc2015-10-13 15:50:02 -0700340 anv_surface_get_subresource_layout(image, &image->depth_surface,
341 pSubresource, pLayout);
342 break;
Jason Ekstrand407b8cc2015-12-01 12:19:11 -0800343 case VK_IMAGE_ASPECT_STENCIL_BIT:
Jason Ekstranddb5a5fc2015-10-13 15:50:02 -0700344 anv_surface_get_subresource_layout(image, &image->stencil_surface,
345 pSubresource, pLayout);
346 break;
347 default:
Jason Ekstrandf1a7c782015-11-30 12:21:19 -0800348 assert(!"Invalid image aspect");
Jason Ekstranddb5a5fc2015-10-13 15:50:02 -0700349 }
Kristian Høgsberg769785c2015-05-08 22:32:37 -0700350}
351
Chad Versace127cb3f2015-06-26 20:12:42 -0700352VkResult
Chad Versace5b04db72015-07-06 16:24:28 -0700353anv_validate_CreateImageView(VkDevice _device,
354 const VkImageViewCreateInfo *pCreateInfo,
Jason Ekstrandfcfb4042015-12-02 03:28:27 -0800355 const VkAllocationCallbacks *pAllocator,
Chad Versace5b04db72015-07-06 16:24:28 -0700356 VkImageView *pView)
357{
Jason Ekstranda52e2082015-07-09 20:24:07 -0700358 ANV_FROM_HANDLE(anv_image, image, pCreateInfo->image);
Chad Versace23075bc2015-07-06 17:04:13 -0700359 const VkImageSubresourceRange *subresource;
Chad Versace23075bc2015-07-06 17:04:13 -0700360 const struct anv_format *view_format_info;
Chad Versace5b04db72015-07-06 16:24:28 -0700361
Chad Versace23075bc2015-07-06 17:04:13 -0700362 /* Validate structure type before dereferencing it. */
Chad Versace5b04db72015-07-06 16:24:28 -0700363 assert(pCreateInfo);
364 assert(pCreateInfo->sType == VK_STRUCTURE_TYPE_IMAGE_VIEW_CREATE_INFO);
Chad Versace23075bc2015-07-06 17:04:13 -0700365 subresource = &pCreateInfo->subresourceRange;
366
Chad Versace23075bc2015-07-06 17:04:13 -0700367 /* Validate viewType is in range before using it. */
368 assert(pCreateInfo->viewType >= VK_IMAGE_VIEW_TYPE_BEGIN_RANGE);
369 assert(pCreateInfo->viewType <= VK_IMAGE_VIEW_TYPE_END_RANGE);
Chad Versace23075bc2015-07-06 17:04:13 -0700370
371 /* Validate format is in range before using it. */
372 assert(pCreateInfo->format >= VK_FORMAT_BEGIN_RANGE);
373 assert(pCreateInfo->format <= VK_FORMAT_END_RANGE);
Chad Versace23075bc2015-07-06 17:04:13 -0700374 view_format_info = anv_format_for_vk_format(pCreateInfo->format);
375
376 /* Validate channel swizzles. */
Jason Ekstranda53f23d2015-11-30 13:06:12 -0800377 assert(pCreateInfo->components.r >= VK_COMPONENT_SWIZZLE_BEGIN_RANGE);
378 assert(pCreateInfo->components.r <= VK_COMPONENT_SWIZZLE_END_RANGE);
379 assert(pCreateInfo->components.g >= VK_COMPONENT_SWIZZLE_BEGIN_RANGE);
380 assert(pCreateInfo->components.g <= VK_COMPONENT_SWIZZLE_END_RANGE);
381 assert(pCreateInfo->components.b >= VK_COMPONENT_SWIZZLE_BEGIN_RANGE);
382 assert(pCreateInfo->components.b <= VK_COMPONENT_SWIZZLE_END_RANGE);
383 assert(pCreateInfo->components.a >= VK_COMPONENT_SWIZZLE_BEGIN_RANGE);
384 assert(pCreateInfo->components.a <= VK_COMPONENT_SWIZZLE_END_RANGE);
Chad Versace23075bc2015-07-06 17:04:13 -0700385
386 /* Validate subresource. */
Chad Versace7a089bd2015-10-05 06:48:14 -0700387 assert(subresource->aspectMask != 0);
Jason Ekstrand299f8f12015-12-01 12:52:56 -0800388 assert(subresource->levelCount > 0);
389 assert(subresource->layerCount > 0);
Chad Versace23075bc2015-07-06 17:04:13 -0700390 assert(subresource->baseMipLevel < image->levels);
Jason Ekstrand299f8f12015-12-01 12:52:56 -0800391 assert(subresource->baseMipLevel + subresource->levelCount <= image->levels);
Jason Ekstrand1e4263b2015-10-06 10:27:50 -0700392 assert(subresource->baseArrayLayer < image->array_size);
Jason Ekstrand299f8f12015-12-01 12:52:56 -0800393 assert(subresource->baseArrayLayer + subresource->layerCount <= image->array_size);
Chad Versace5b04db72015-07-06 16:24:28 -0700394 assert(pView);
395
Chad Versace7a089bd2015-10-05 06:48:14 -0700396 const VkImageAspectFlags ds_flags = VK_IMAGE_ASPECT_DEPTH_BIT
397 | VK_IMAGE_ASPECT_STENCIL_BIT;
398
Chad Versace23075bc2015-07-06 17:04:13 -0700399 /* Validate format. */
Chad Versace7a089bd2015-10-05 06:48:14 -0700400 if (subresource->aspectMask & VK_IMAGE_ASPECT_COLOR_BIT) {
401 assert(subresource->aspectMask == VK_IMAGE_ASPECT_COLOR_BIT);
Chad Versacee6d34322016-02-08 19:07:10 -0800402 assert(!image->format->has_depth);
Chad Versaceded736f2015-08-17 13:10:40 -0700403 assert(!image->format->has_stencil);
Chad Versacee6d34322016-02-08 19:07:10 -0800404 assert(!view_format_info->has_depth);
Chad Versace23075bc2015-07-06 17:04:13 -0700405 assert(!view_format_info->has_stencil);
Chad Versaceaddc2a92015-11-12 12:14:43 -0800406 assert(view_format_info->isl_layout->bs ==
407 image->format->isl_layout->bs);
Chad Versace7a089bd2015-10-05 06:48:14 -0700408 } else if (subresource->aspectMask & ds_flags) {
409 assert((subresource->aspectMask & ~ds_flags) == 0);
410
411 if (subresource->aspectMask & VK_IMAGE_ASPECT_STENCIL_BIT) {
Chad Versacee6d34322016-02-08 19:07:10 -0800412 assert(image->format->has_depth);
413 assert(view_format_info->has_depth);
Chad Versaceaddc2a92015-11-12 12:14:43 -0800414 assert(view_format_info->isl_layout->bs ==
415 image->format->isl_layout->bs);
Chad Versace7a089bd2015-10-05 06:48:14 -0700416 }
417
Jason Ekstrand407b8cc2015-12-01 12:19:11 -0800418 if (subresource->aspectMask & VK_IMAGE_ASPECT_STENCIL_BIT) {
Chad Versace7a089bd2015-10-05 06:48:14 -0700419 /* FINISHME: Is it legal to have an R8 view of S8? */
420 assert(image->format->has_stencil);
421 assert(view_format_info->has_stencil);
422 }
423 } else {
424 assert(!"bad VkImageSubresourceRange::aspectFlags");
Chad Versace23075bc2015-07-06 17:04:13 -0700425 }
Chad Versace5b04db72015-07-06 16:24:28 -0700426
Jason Ekstrandfcfb4042015-12-02 03:28:27 -0800427 return anv_CreateImageView(_device, pCreateInfo, pAllocator, pView);
Chad Versace5b04db72015-07-06 16:24:28 -0700428}
429
Kristian Høgsberg Kristensen988341a2015-08-19 21:36:57 -0700430void
Francisco Jerezfc7a7b32016-01-26 14:45:46 -0800431anv_fill_image_surface_state(struct anv_device *device, struct anv_state state,
Jason Ekstrande5558ff2016-01-22 11:57:01 -0800432 struct anv_image_view *iview,
433 const VkImageViewCreateInfo *pCreateInfo,
434 VkImageUsageFlagBits usage)
435{
436 switch (device->info.gen) {
437 case 7:
438 if (device->info.is_haswell)
Francisco Jerezfc7a7b32016-01-26 14:45:46 -0800439 gen75_fill_image_surface_state(device, state.map, iview,
Jason Ekstrande5558ff2016-01-22 11:57:01 -0800440 pCreateInfo, usage);
441 else
Francisco Jerezfc7a7b32016-01-26 14:45:46 -0800442 gen7_fill_image_surface_state(device, state.map, iview,
Jason Ekstrande5558ff2016-01-22 11:57:01 -0800443 pCreateInfo, usage);
444 break;
445 case 8:
Francisco Jerezfc7a7b32016-01-26 14:45:46 -0800446 gen8_fill_image_surface_state(device, state.map, iview,
Jason Ekstrande5558ff2016-01-22 11:57:01 -0800447 pCreateInfo, usage);
448 break;
449 case 9:
Francisco Jerezfc7a7b32016-01-26 14:45:46 -0800450 gen9_fill_image_surface_state(device, state.map, iview,
Jason Ekstrande5558ff2016-01-22 11:57:01 -0800451 pCreateInfo, usage);
452 break;
453 default:
454 unreachable("unsupported gen\n");
455 }
456
457 if (!device->info.has_llc)
Francisco Jerezfc7a7b32016-01-26 14:45:46 -0800458 anv_state_clflush(state);
Jason Ekstrande5558ff2016-01-22 11:57:01 -0800459}
460
461static struct anv_state
462alloc_surface_state(struct anv_device *device,
463 struct anv_cmd_buffer *cmd_buffer)
464{
465 if (cmd_buffer) {
466 return anv_cmd_buffer_alloc_surface_state(cmd_buffer);
467 } else {
468 return anv_state_pool_alloc(&device->surface_state_pool, 64, 64);
469 }
470}
471
Francisco Jereza50dc702016-01-26 12:23:08 -0800472static bool
473has_matching_storage_typed_format(const struct anv_device *device,
474 enum isl_format format)
475{
476 return (isl_format_get_layout(format)->bs <= 4 ||
477 (isl_format_get_layout(format)->bs <= 8 &&
478 (device->info.gen >= 8 || device->info.is_haswell)) ||
479 device->info.gen >= 9);
480}
481
Jason Ekstrand9bc72a92016-01-26 20:16:43 -0800482static VkComponentSwizzle
Jordan Justenc20f78d2016-01-26 11:10:56 -0800483remap_swizzle(VkComponentSwizzle swizzle, VkComponentSwizzle component,
484 struct anv_format_swizzle format_swizzle)
Jason Ekstrand9bc72a92016-01-26 20:16:43 -0800485{
486 if (swizzle == VK_COMPONENT_SWIZZLE_IDENTITY)
Jordan Justenc20f78d2016-01-26 11:10:56 -0800487 swizzle = component;
488
489 switch (swizzle) {
490 case VK_COMPONENT_SWIZZLE_ZERO:
491 return VK_COMPONENT_SWIZZLE_ZERO;
492 case VK_COMPONENT_SWIZZLE_ONE:
493 return VK_COMPONENT_SWIZZLE_ONE;
494 case VK_COMPONENT_SWIZZLE_R:
495 return VK_COMPONENT_SWIZZLE_R + format_swizzle.r;
496 case VK_COMPONENT_SWIZZLE_G:
497 return VK_COMPONENT_SWIZZLE_R + format_swizzle.g;
498 case VK_COMPONENT_SWIZZLE_B:
499 return VK_COMPONENT_SWIZZLE_R + format_swizzle.b;
500 case VK_COMPONENT_SWIZZLE_A:
501 return VK_COMPONENT_SWIZZLE_R + format_swizzle.a;
502 default:
503 unreachable("Invalid swizzle");
504 }
Jason Ekstrand9bc72a92016-01-26 20:16:43 -0800505}
506
Jason Ekstrande5558ff2016-01-22 11:57:01 -0800507void
Kristian Høgsberg Kristensen988341a2015-08-19 21:36:57 -0700508anv_image_view_init(struct anv_image_view *iview,
509 struct anv_device *device,
510 const VkImageViewCreateInfo* pCreateInfo,
Nanley Chery6a579de2016-01-26 18:53:21 -0800511 struct anv_cmd_buffer *cmd_buffer,
512 uint32_t offset)
Kristian Høgsberg Kristensen988341a2015-08-19 21:36:57 -0700513{
Chad Versace44143a12015-10-06 18:17:09 -0700514 ANV_FROM_HANDLE(anv_image, image, pCreateInfo->image);
Chad Versace24de3d42015-10-06 19:11:58 -0700515 const VkImageSubresourceRange *range = &pCreateInfo->subresourceRange;
Nanley Cheryd3c1fd52016-01-26 18:40:54 -0800516 VkImageViewCreateInfo mCreateInfo;
517 memcpy(&mCreateInfo, pCreateInfo, sizeof(VkImageViewCreateInfo));
Chad Versace44143a12015-10-06 18:17:09 -0700518
Jason Ekstrand299f8f12015-12-01 12:52:56 -0800519 assert(range->layerCount > 0);
Chad Versace24de3d42015-10-06 19:11:58 -0700520 assert(range->baseMipLevel < image->levels);
Chad Versace44143a12015-10-06 18:17:09 -0700521 assert(image->usage & (VK_IMAGE_USAGE_SAMPLED_BIT |
Chad Versace24de3d42015-10-06 19:11:58 -0700522 VK_IMAGE_USAGE_STORAGE_BIT |
523 VK_IMAGE_USAGE_COLOR_ATTACHMENT_BIT |
Chad Versace0ca3c842015-10-07 11:39:49 -0700524 VK_IMAGE_USAGE_DEPTH_STENCIL_ATTACHMENT_BIT));
Chad Versace24de3d42015-10-06 19:11:58 -0700525
526 switch (image->type) {
527 default:
528 unreachable("bad VkImageType");
529 case VK_IMAGE_TYPE_1D:
530 case VK_IMAGE_TYPE_2D:
Jason Ekstrand299f8f12015-12-01 12:52:56 -0800531 assert(range->baseArrayLayer + range->layerCount - 1 <= image->array_size);
Chad Versace24de3d42015-10-06 19:11:58 -0700532 break;
533 case VK_IMAGE_TYPE_3D:
Jason Ekstrand299f8f12015-12-01 12:52:56 -0800534 assert(range->baseArrayLayer + range->layerCount - 1
Chad Versace24de3d42015-10-06 19:11:58 -0700535 <= anv_minify(image->extent.depth, range->baseMipLevel));
536 break;
537 }
Chad Versace44143a12015-10-06 18:17:09 -0700538
Jason Ekstranda7cc1292016-01-01 13:47:18 -0800539 struct anv_surface *surface =
540 anv_image_get_surface_for_aspect_mask(image, range->aspectMask);
541
542 iview->image = image;
543 iview->bo = image->bo;
Nanley Chery6a579de2016-01-26 18:53:21 -0800544 iview->offset = image->offset + surface->offset + offset;
Jason Ekstranda7cc1292016-01-01 13:47:18 -0800545
546 iview->aspect_mask = pCreateInfo->subresourceRange.aspectMask;
Jason Ekstrandf665fdf2016-01-01 14:09:17 -0800547 iview->vk_format = pCreateInfo->format;
Jordan Justenc20f78d2016-01-26 11:10:56 -0800548
549 struct anv_format_swizzle swizzle;
Jason Ekstrandf665fdf2016-01-01 14:09:17 -0800550 iview->format = anv_get_isl_format(pCreateInfo->format, iview->aspect_mask,
Jordan Justenc20f78d2016-01-26 11:10:56 -0800551 image->tiling, &swizzle);
Jason Ekstrand9bc72a92016-01-26 20:16:43 -0800552 iview->swizzle.r = remap_swizzle(pCreateInfo->components.r,
Jordan Justenc20f78d2016-01-26 11:10:56 -0800553 VK_COMPONENT_SWIZZLE_R, swizzle);
Jason Ekstrand9bc72a92016-01-26 20:16:43 -0800554 iview->swizzle.g = remap_swizzle(pCreateInfo->components.g,
Jordan Justenc20f78d2016-01-26 11:10:56 -0800555 VK_COMPONENT_SWIZZLE_G, swizzle);
Jason Ekstrand9bc72a92016-01-26 20:16:43 -0800556 iview->swizzle.b = remap_swizzle(pCreateInfo->components.b,
Jordan Justenc20f78d2016-01-26 11:10:56 -0800557 VK_COMPONENT_SWIZZLE_B, swizzle);
Jason Ekstrand9bc72a92016-01-26 20:16:43 -0800558 iview->swizzle.a = remap_swizzle(pCreateInfo->components.a,
Jordan Justenc20f78d2016-01-26 11:10:56 -0800559 VK_COMPONENT_SWIZZLE_A, swizzle);
Jason Ekstranda7cc1292016-01-01 13:47:18 -0800560
Jason Ekstrandaa9987a2016-01-05 13:54:02 -0800561 iview->base_layer = range->baseArrayLayer;
562 iview->base_mip = range->baseMipLevel;
Nanley Chery3f01bbe2016-01-04 12:41:22 -0800563
564 if (!isl_format_is_compressed(iview->format) &&
Chad Versace4d037b52016-02-08 18:51:52 -0800565 isl_format_is_compressed(image->format->isl_format)) {
Nanley Chery3f01bbe2016-01-04 12:41:22 -0800566 /* Scale the ImageView extent by the backing Image. This is used
567 * internally when an uncompressed ImageView is created on a
568 * compressed Image. The ImageView can therefore be used for copying
569 * data from a source Image to a destination Image.
570 */
571 const struct isl_format_layout * isl_layout = image->format->isl_layout;
Nanley Chery235abfb2016-01-27 12:08:56 -0800572
Jason Ekstrand96cf5cf2016-01-27 11:47:07 -0800573 iview->level_0_extent.depth = anv_minify(image->extent.depth, range->baseMipLevel);
Jason Ekstrand96cf5cf2016-01-27 11:47:07 -0800574 iview->level_0_extent.depth = DIV_ROUND_UP(iview->level_0_extent.depth, isl_layout->bd);
Nanley Chery235abfb2016-01-27 12:08:56 -0800575
Jason Ekstrand162c6622016-01-27 12:37:15 -0800576 iview->level_0_extent.height = isl_surf_get_array_pitch_el_rows(&surface->isl) * image->array_size;
Nanley Chery235abfb2016-01-27 12:08:56 -0800577 iview->level_0_extent.width = isl_surf_get_row_pitch_el(&surface->isl);
Nanley Cheryd3c1fd52016-01-26 18:40:54 -0800578 mCreateInfo.subresourceRange.baseMipLevel = 0;
579 mCreateInfo.subresourceRange.baseArrayLayer = 0;
Nanley Chery3f01bbe2016-01-04 12:41:22 -0800580 } else {
Jason Ekstrand96cf5cf2016-01-27 11:47:07 -0800581 iview->level_0_extent.width = image->extent.width;
Nanley Chery3f01bbe2016-01-04 12:41:22 -0800582 iview->level_0_extent.height = image->extent.height;
Jason Ekstrand96cf5cf2016-01-27 11:47:07 -0800583 iview->level_0_extent.depth = image->extent.depth;
Nanley Chery3f01bbe2016-01-04 12:41:22 -0800584 }
585
Jason Ekstranda7cc1292016-01-01 13:47:18 -0800586 iview->extent = (VkExtent3D) {
Nanley Chery3f01bbe2016-01-04 12:41:22 -0800587 .width = anv_minify(iview->level_0_extent.width , range->baseMipLevel),
588 .height = anv_minify(iview->level_0_extent.height, range->baseMipLevel),
589 .depth = anv_minify(iview->level_0_extent.depth , range->baseMipLevel),
Jason Ekstranda7cc1292016-01-01 13:47:18 -0800590 };
591
Chad Versace3eebf362016-02-04 11:58:05 -0800592 if (image->usage & VK_IMAGE_USAGE_SAMPLED_BIT) {
Chad Versace42b93202016-02-04 11:41:59 -0800593 iview->sampler_surface_state = alloc_surface_state(device, cmd_buffer);
Jason Ekstrande5558ff2016-01-22 11:57:01 -0800594
Chad Versace42b93202016-02-04 11:41:59 -0800595 anv_fill_image_surface_state(device, iview->sampler_surface_state,
Nanley Cheryd3c1fd52016-01-26 18:40:54 -0800596 iview, &mCreateInfo,
Jason Ekstrande5558ff2016-01-22 11:57:01 -0800597 VK_IMAGE_USAGE_SAMPLED_BIT);
598 } else {
Chad Versace42b93202016-02-04 11:41:59 -0800599 iview->sampler_surface_state.alloc_size = 0;
Jason Ekstrande5558ff2016-01-22 11:57:01 -0800600 }
601
Chad Versace3eebf362016-02-04 11:58:05 -0800602 if (image->usage & VK_IMAGE_USAGE_COLOR_ATTACHMENT_BIT) {
Jason Ekstrande5558ff2016-01-22 11:57:01 -0800603 iview->color_rt_surface_state = alloc_surface_state(device, cmd_buffer);
604
Francisco Jerezfc7a7b32016-01-26 14:45:46 -0800605 anv_fill_image_surface_state(device, iview->color_rt_surface_state,
Nanley Cheryd3c1fd52016-01-26 18:40:54 -0800606 iview, &mCreateInfo,
Jason Ekstrande5558ff2016-01-22 11:57:01 -0800607 VK_IMAGE_USAGE_COLOR_ATTACHMENT_BIT);
608 } else {
609 iview->color_rt_surface_state.alloc_size = 0;
610 }
611
Chad Versace3eebf362016-02-04 11:58:05 -0800612 if (image->usage & VK_IMAGE_USAGE_STORAGE_BIT) {
Jason Ekstrande5558ff2016-01-22 11:57:01 -0800613 iview->storage_surface_state = alloc_surface_state(device, cmd_buffer);
614
Francisco Jereza50dc702016-01-26 12:23:08 -0800615 if (has_matching_storage_typed_format(device, iview->format))
Francisco Jerezfc7a7b32016-01-26 14:45:46 -0800616 anv_fill_image_surface_state(device, iview->storage_surface_state,
Nanley Cheryd3c1fd52016-01-26 18:40:54 -0800617 iview, &mCreateInfo,
Francisco Jereza50dc702016-01-26 12:23:08 -0800618 VK_IMAGE_USAGE_STORAGE_BIT);
619 else
Francisco Jerez6840cc12016-01-26 14:50:52 -0800620 anv_fill_buffer_surface_state(device, iview->storage_surface_state,
Francisco Jereza50dc702016-01-26 12:23:08 -0800621 ISL_FORMAT_RAW,
622 iview->offset,
623 iview->bo->size - iview->offset, 1);
624
Jason Ekstrande5558ff2016-01-22 11:57:01 -0800625 } else {
626 iview->storage_surface_state.alloc_size = 0;
Kristian Høgsberg Kristensen988341a2015-08-19 21:36:57 -0700627 }
628}
629
Chad Versace5b04db72015-07-06 16:24:28 -0700630VkResult
Chad Versace127cb3f2015-06-26 20:12:42 -0700631anv_CreateImageView(VkDevice _device,
632 const VkImageViewCreateInfo *pCreateInfo,
Jason Ekstrandfcfb4042015-12-02 03:28:27 -0800633 const VkAllocationCallbacks *pAllocator,
Chad Versace127cb3f2015-06-26 20:12:42 -0700634 VkImageView *pView)
Kristian Høgsberg769785c2015-05-08 22:32:37 -0700635{
Jason Ekstranda52e2082015-07-09 20:24:07 -0700636 ANV_FROM_HANDLE(anv_device, device, _device);
Kristian Høgsberg Kristensenf1455ff2015-08-20 22:59:19 -0700637 struct anv_image_view *view;
Kristian Høgsberg769785c2015-05-08 22:32:37 -0700638
Jason Ekstrandfcfb4042015-12-02 03:28:27 -0800639 view = anv_alloc2(&device->alloc, pAllocator, sizeof(*view), 8,
640 VK_SYSTEM_ALLOCATION_SCOPE_OBJECT);
Kristian Høgsberg Kristensenf1455ff2015-08-20 22:59:19 -0700641 if (view == NULL)
642 return vk_error(VK_ERROR_OUT_OF_HOST_MEMORY);
643
Nanley Chery6a579de2016-01-26 18:53:21 -0800644 anv_image_view_init(view, device, pCreateInfo, NULL, 0);
Kristian Høgsberg Kristensenf1455ff2015-08-20 22:59:19 -0700645
646 *pView = anv_image_view_to_handle(view);
647
648 return VK_SUCCESS;
Kristian Høgsberg769785c2015-05-08 22:32:37 -0700649}
650
Jason Ekstrandfcfb4042015-12-02 03:28:27 -0800651void
652anv_DestroyImageView(VkDevice _device, VkImageView _iview,
653 const VkAllocationCallbacks *pAllocator)
Chad Versace24de3d42015-10-06 19:11:58 -0700654{
Jason Ekstrandfcfb4042015-12-02 03:28:27 -0800655 ANV_FROM_HANDLE(anv_device, device, _device);
656 ANV_FROM_HANDLE(anv_image_view, iview, _iview);
657
Chad Versace3eebf362016-02-04 11:58:05 -0800658 if (iview->color_rt_surface_state.alloc_size > 0) {
Chad Versace24de3d42015-10-06 19:11:58 -0700659 anv_state_pool_free(&device->surface_state_pool,
660 iview->color_rt_surface_state);
661 }
662
Chad Versace3eebf362016-02-04 11:58:05 -0800663 if (iview->sampler_surface_state.alloc_size > 0) {
Chad Versace24de3d42015-10-06 19:11:58 -0700664 anv_state_pool_free(&device->surface_state_pool,
Chad Versace42b93202016-02-04 11:41:59 -0800665 iview->sampler_surface_state);
Chad Versace24de3d42015-10-06 19:11:58 -0700666 }
667
Chad Versace3eebf362016-02-04 11:58:05 -0800668 if (iview->storage_surface_state.alloc_size > 0) {
Jason Ekstrandff05f632015-12-07 17:17:30 -0800669 anv_state_pool_free(&device->surface_state_pool,
670 iview->storage_surface_state);
671 }
672
Jason Ekstrandfcfb4042015-12-02 03:28:27 -0800673 anv_free2(&device->alloc, pAllocator, iview);
Jason Ekstrand84783502015-07-10 20:18:52 -0700674}
Kristian Høgsberg37743f92015-05-22 22:59:12 -0700675
Jason Ekstrandc5618602015-12-12 16:11:23 -0800676VkResult
677anv_CreateBufferView(VkDevice _device,
678 const VkBufferViewCreateInfo *pCreateInfo,
679 const VkAllocationCallbacks *pAllocator,
680 VkBufferView *pView)
681{
682 ANV_FROM_HANDLE(anv_device, device, _device);
683 ANV_FROM_HANDLE(anv_buffer, buffer, pCreateInfo->buffer);
684 struct anv_buffer_view *view;
685
Jason Ekstrandc5618602015-12-12 16:11:23 -0800686 view = anv_alloc2(&device->alloc, pAllocator, sizeof(*view), 8,
687 VK_SYSTEM_ALLOCATION_SCOPE_OBJECT);
688 if (!view)
689 return vk_error(VK_ERROR_OUT_OF_HOST_MEMORY);
690
Jason Ekstrandc5618602015-12-12 16:11:23 -0800691 const struct anv_format *format =
692 anv_format_for_vk_format(pCreateInfo->format);
693
Chad Versace4d037b52016-02-08 18:51:52 -0800694 view->format = format->isl_format;
Jason Ekstrand783a2112015-12-14 16:51:12 -0800695 view->bo = buffer->bo;
696 view->offset = buffer->offset + pCreateInfo->offset;
Jason Ekstrand56dbf132016-01-19 15:01:10 -0800697 view->range = pCreateInfo->range == VK_WHOLE_SIZE ?
698 buffer->size - view->offset : pCreateInfo->range;
Jason Ekstrand783a2112015-12-14 16:51:12 -0800699
700 if (buffer->usage & VK_BUFFER_USAGE_UNIFORM_TEXEL_BUFFER_BIT) {
701 view->surface_state =
702 anv_state_pool_alloc(&device->surface_state_pool, 64, 64);
703
Francisco Jerez6840cc12016-01-26 14:50:52 -0800704 anv_fill_buffer_surface_state(device, view->surface_state,
Jason Ekstrand783a2112015-12-14 16:51:12 -0800705 view->format,
Jason Ekstrand56dbf132016-01-19 15:01:10 -0800706 view->offset, view->range,
Chad Versace89b68dc2016-01-05 09:59:07 -0800707 format->isl_layout->bs);
Jason Ekstrand783a2112015-12-14 16:51:12 -0800708 } else {
709 view->surface_state = (struct anv_state){ 0 };
710 }
711
712 if (buffer->usage & VK_BUFFER_USAGE_STORAGE_TEXEL_BUFFER_BIT) {
713 view->storage_surface_state =
714 anv_state_pool_alloc(&device->surface_state_pool, 64, 64);
715
716 enum isl_format storage_format =
Francisco Jereza50dc702016-01-26 12:23:08 -0800717 has_matching_storage_typed_format(device, view->format) ?
718 isl_lower_storage_image_format(&device->isl_dev, view->format) :
719 ISL_FORMAT_RAW;
Jason Ekstrand783a2112015-12-14 16:51:12 -0800720
Francisco Jerez6840cc12016-01-26 14:50:52 -0800721 anv_fill_buffer_surface_state(device, view->storage_surface_state,
Jason Ekstrand783a2112015-12-14 16:51:12 -0800722 storage_format,
Jason Ekstrand56dbf132016-01-19 15:01:10 -0800723 view->offset, view->range,
Francisco Jereza50dc702016-01-26 12:23:08 -0800724 (storage_format == ISL_FORMAT_RAW ? 1 :
725 format->isl_layout->bs));
726
Jason Ekstrand783a2112015-12-14 16:51:12 -0800727 } else {
728 view->storage_surface_state = (struct anv_state){ 0 };
729 }
Jason Ekstrandc5618602015-12-12 16:11:23 -0800730
731 *pView = anv_buffer_view_to_handle(view);
732
733 return VK_SUCCESS;
734}
735
736void
737anv_DestroyBufferView(VkDevice _device, VkBufferView bufferView,
738 const VkAllocationCallbacks *pAllocator)
739{
740 ANV_FROM_HANDLE(anv_device, device, _device);
741 ANV_FROM_HANDLE(anv_buffer_view, view, bufferView);
742
Jason Ekstrand783a2112015-12-14 16:51:12 -0800743 if (view->surface_state.alloc_size > 0)
744 anv_state_pool_free(&device->surface_state_pool,
745 view->surface_state);
746
747 if (view->storage_surface_state.alloc_size > 0)
748 anv_state_pool_free(&device->surface_state_pool,
749 view->storage_surface_state);
750
Jason Ekstrandc5618602015-12-12 16:11:23 -0800751 anv_free2(&device->alloc, pAllocator, view);
752}
753
Chad Versace941b48e2015-08-28 07:08:58 -0700754struct anv_surface *
Chad Versace7a089bd2015-10-05 06:48:14 -0700755anv_image_get_surface_for_aspect_mask(struct anv_image *image, VkImageAspectFlags aspect_mask)
Chad Versace941b48e2015-08-28 07:08:58 -0700756{
Chad Versace7a089bd2015-10-05 06:48:14 -0700757 switch (aspect_mask) {
758 case VK_IMAGE_ASPECT_COLOR_BIT:
Chad Versace24de3d42015-10-06 19:11:58 -0700759 /* Dragons will eat you.
760 *
761 * Meta attaches all destination surfaces as color render targets. Guess
762 * what surface the Meta Dragons really want.
763 */
Chad Versacee6d34322016-02-08 19:07:10 -0800764 if (image->format->has_depth && image->format->has_stencil) {
Chad Versace24de3d42015-10-06 19:11:58 -0700765 return &image->depth_surface;
Chad Versacee6d34322016-02-08 19:07:10 -0800766 } else if (image->format->has_depth) {
Chad Versace24de3d42015-10-06 19:11:58 -0700767 return &image->depth_surface;
768 } else if (image->format->has_stencil) {
769 return &image->stencil_surface;
770 } else {
771 return &image->color_surface;
772 }
773 break;
Chad Versace7a089bd2015-10-05 06:48:14 -0700774 case VK_IMAGE_ASPECT_DEPTH_BIT:
Chad Versacee6d34322016-02-08 19:07:10 -0800775 assert(image->format->has_depth);
Chad Versace941b48e2015-08-28 07:08:58 -0700776 return &image->depth_surface;
Chad Versace7a089bd2015-10-05 06:48:14 -0700777 case VK_IMAGE_ASPECT_STENCIL_BIT:
Chad Versace941b48e2015-08-28 07:08:58 -0700778 assert(image->format->has_stencil);
Chad Versace941b48e2015-08-28 07:08:58 -0700779 return &image->stencil_surface;
Chad Versace7a089bd2015-10-05 06:48:14 -0700780 case VK_IMAGE_ASPECT_DEPTH_BIT | VK_IMAGE_ASPECT_STENCIL_BIT:
Chad Versacee6d34322016-02-08 19:07:10 -0800781 if (image->format->has_depth && image->format->has_stencil) {
Kristian Høgsberg Kristensen8e07f792016-01-25 15:14:47 -0800782 /* FINISHME: The Vulkan spec (git a511ba2) requires support for
783 * combined depth stencil formats. Specifically, it states:
Chad Versace03dd7222015-10-07 09:03:47 -0700784 *
785 * At least one of ename:VK_FORMAT_D24_UNORM_S8_UINT or
786 * ename:VK_FORMAT_D32_SFLOAT_S8_UINT must be supported.
Kristian Høgsberg Kristensen8e07f792016-01-25 15:14:47 -0800787 *
788 * Image views with both depth and stencil aspects are only valid for
789 * render target attachments, in which case
790 * cmd_buffer_emit_depth_stencil() will pick out both the depth and
791 * stencil surfaces from the underlying surface.
Chad Versace03dd7222015-10-07 09:03:47 -0700792 */
Chad Versace03dd7222015-10-07 09:03:47 -0700793 return &image->depth_surface;
Chad Versacee6d34322016-02-08 19:07:10 -0800794 } else if (image->format->has_depth) {
Chad Versace03dd7222015-10-07 09:03:47 -0700795 return &image->depth_surface;
796 } else if (image->format->has_stencil) {
797 return &image->stencil_surface;
798 }
799 /* fallthrough */
Chad Versace941b48e2015-08-28 07:08:58 -0700800 default:
801 unreachable("image does not have aspect");
802 return NULL;
803 }
804}
Jason Ekstrand43ac9542015-11-18 15:14:05 -0800805
Jason Ekstrandba393c92016-01-05 13:55:00 -0800806static void
807image_param_defaults(struct brw_image_param *param)
808{
809 memset(param, 0, sizeof *param);
810 /* Set the swizzling shifts to all-ones to effectively disable swizzling --
811 * See emit_address_calculation() in brw_fs_surface_builder.cpp for a more
812 * detailed explanation of these parameters.
813 */
814 param->swizzling[0] = 0xff;
815 param->swizzling[1] = 0xff;
816}
817
Jason Ekstrand43ac9542015-11-18 15:14:05 -0800818void
819anv_image_view_fill_image_param(struct anv_device *device,
820 struct anv_image_view *view,
821 struct brw_image_param *param)
822{
Jason Ekstrandba393c92016-01-05 13:55:00 -0800823 image_param_defaults(param);
824
825 const struct isl_surf *surf = &view->image->color_surface.isl;
Jason Ekstrandba393c92016-01-05 13:55:00 -0800826 const int cpp = isl_format_get_layout(surf->format)->bs;
Francisco Jerezd2ec5102016-01-26 12:20:01 -0800827 const struct isl_extent3d image_align_sa =
828 isl_surf_get_image_alignment_sa(surf);
Jason Ekstrandba393c92016-01-05 13:55:00 -0800829
Francisco Jerezd2ec5102016-01-26 12:20:01 -0800830 param->size[0] = view->extent.width;
831 param->size[1] = view->extent.height;
Jason Ekstrandba393c92016-01-05 13:55:00 -0800832 if (surf->dim == ISL_SURF_DIM_3D) {
Francisco Jerezd2ec5102016-01-26 12:20:01 -0800833 param->size[2] = view->extent.depth;
Jason Ekstrandba393c92016-01-05 13:55:00 -0800834 } else {
835 param->size[2] = surf->logical_level0_px.array_len - view->base_layer;
836 }
837
Nanley Chery308ec022016-01-27 09:29:09 -0800838 isl_surf_get_image_offset_el(surf, view->base_mip, view->base_layer, 0,
Jason Ekstrandba393c92016-01-05 13:55:00 -0800839 &param->offset[0], &param->offset[1]);
840
841 param->stride[0] = cpp;
842 param->stride[1] = surf->row_pitch / cpp;
Francisco Jerezd2ec5102016-01-26 12:20:01 -0800843
844 if (device->info.gen < 9 && surf->dim == ISL_SURF_DIM_3D) {
845 param->stride[2] = util_align_npot(param->size[0], image_align_sa.w);
846 param->stride[3] = util_align_npot(param->size[1], image_align_sa.h);
847 } else {
848 param->stride[2] = 0;
849 param->stride[3] = isl_surf_get_array_pitch_el_rows(surf);
850 }
Jason Ekstrandba393c92016-01-05 13:55:00 -0800851
852 switch (surf->tiling) {
853 case ISL_TILING_LINEAR:
854 /* image_param_defaults is good enough */
855 break;
856
857 case ISL_TILING_X:
858 /* An X tile is a rectangular block of 512x8 bytes. */
859 param->tiling[0] = util_logbase2(512 / cpp);
860 param->tiling[1] = util_logbase2(8);
861
862 if (device->isl_dev.has_bit6_swizzling) {
863 /* Right shifts required to swizzle bits 9 and 10 of the memory
864 * address with bit 6.
865 */
866 param->swizzling[0] = 3;
867 param->swizzling[1] = 4;
868 }
869 break;
870
871 case ISL_TILING_Y0:
872 /* The layout of a Y-tiled surface in memory isn't really fundamentally
873 * different to the layout of an X-tiled surface, we simply pretend that
874 * the surface is broken up in a number of smaller 16Bx32 tiles, each
875 * one arranged in X-major order just like is the case for X-tiling.
876 */
877 param->tiling[0] = util_logbase2(16 / cpp);
878 param->tiling[1] = util_logbase2(32);
879
880 if (device->isl_dev.has_bit6_swizzling) {
881 /* Right shift required to swizzle bit 9 of the memory address with
882 * bit 6.
883 */
884 param->swizzling[0] = 3;
885 param->swizzling[1] = 0xff;
886 }
887 break;
888
889 default:
890 assert(!"Unhandled storage image tiling");
891 }
892
893 /* 3D textures are arranged in 2D in memory with 2^lod slices per row. The
894 * address calculation algorithm (emit_address_calculation() in
895 * brw_fs_surface_builder.cpp) handles this as a sort of tiling with
896 * modulus equal to the LOD.
897 */
Francisco Jerezd2ec5102016-01-26 12:20:01 -0800898 param->tiling[2] = (device->info.gen < 9 && surf->dim == ISL_SURF_DIM_3D ?
899 view->base_mip : 0);
Jason Ekstrand43ac9542015-11-18 15:14:05 -0800900}
Jason Ekstrand783a2112015-12-14 16:51:12 -0800901
902void
903anv_buffer_view_fill_image_param(struct anv_device *device,
904 struct anv_buffer_view *view,
905 struct brw_image_param *param)
906{
Jason Ekstrandba393c92016-01-05 13:55:00 -0800907 image_param_defaults(param);
Jason Ekstrand783a2112015-12-14 16:51:12 -0800908
Chad Versace89b68dc2016-01-05 09:59:07 -0800909 param->stride[0] = isl_format_layouts[view->format].bs;
Jason Ekstrand783a2112015-12-14 16:51:12 -0800910 param->size[0] = view->range / param->stride[0];
911}