radv: allow to set dynamic sample locations to the depth decompress pass
[mesa.git] / src / amd / vulkan / radv_meta_decompress.c
1 /*
2 * Copyright © 2016 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
27 #include "radv_meta.h"
28 #include "radv_private.h"
29 #include "sid.h"
30
31 static VkResult
32 create_pass(struct radv_device *device,
33 uint32_t samples,
34 VkRenderPass *pass)
35 {
36 VkResult result;
37 VkDevice device_h = radv_device_to_handle(device);
38 const VkAllocationCallbacks *alloc = &device->meta_state.alloc;
39 VkAttachmentDescription attachment;
40
41 attachment.flags = 0;
42 attachment.format = VK_FORMAT_D32_SFLOAT_S8_UINT;
43 attachment.samples = samples;
44 attachment.loadOp = VK_ATTACHMENT_LOAD_OP_LOAD;
45 attachment.storeOp = VK_ATTACHMENT_STORE_OP_STORE;
46 attachment.stencilLoadOp = VK_ATTACHMENT_LOAD_OP_LOAD;
47 attachment.stencilStoreOp = VK_ATTACHMENT_STORE_OP_STORE;
48 attachment.initialLayout = VK_IMAGE_LAYOUT_DEPTH_STENCIL_ATTACHMENT_OPTIMAL;
49 attachment.finalLayout = VK_IMAGE_LAYOUT_DEPTH_STENCIL_ATTACHMENT_OPTIMAL;
50
51 result = radv_CreateRenderPass(device_h,
52 &(VkRenderPassCreateInfo) {
53 .sType = VK_STRUCTURE_TYPE_RENDER_PASS_CREATE_INFO,
54 .attachmentCount = 1,
55 .pAttachments = &attachment,
56 .subpassCount = 1,
57 .pSubpasses = &(VkSubpassDescription) {
58 .pipelineBindPoint = VK_PIPELINE_BIND_POINT_GRAPHICS,
59 .inputAttachmentCount = 0,
60 .colorAttachmentCount = 0,
61 .pColorAttachments = NULL,
62 .pResolveAttachments = NULL,
63 .pDepthStencilAttachment = &(VkAttachmentReference) {
64 .attachment = 0,
65 .layout = VK_IMAGE_LAYOUT_DEPTH_STENCIL_ATTACHMENT_OPTIMAL,
66 },
67 .preserveAttachmentCount = 0,
68 .pPreserveAttachments = NULL,
69 },
70 .dependencyCount = 0,
71 },
72 alloc,
73 pass);
74
75 return result;
76 }
77
78 static VkResult
79 create_pipeline_layout(struct radv_device *device, VkPipelineLayout *layout)
80 {
81 VkPipelineLayoutCreateInfo pl_create_info = {
82 .sType = VK_STRUCTURE_TYPE_PIPELINE_LAYOUT_CREATE_INFO,
83 .setLayoutCount = 0,
84 .pSetLayouts = NULL,
85 .pushConstantRangeCount = 0,
86 .pPushConstantRanges = NULL,
87 };
88
89 return radv_CreatePipelineLayout(radv_device_to_handle(device),
90 &pl_create_info,
91 &device->meta_state.alloc,
92 layout);
93 }
94
95 static VkResult
96 create_pipeline(struct radv_device *device,
97 VkShaderModule vs_module_h,
98 uint32_t samples,
99 VkRenderPass pass,
100 VkPipelineLayout layout,
101 VkPipeline *decompress_pipeline,
102 VkPipeline *resummarize_pipeline)
103 {
104 VkResult result;
105 VkDevice device_h = radv_device_to_handle(device);
106 struct radv_shader_module vs_module = {0};
107
108 mtx_lock(&device->meta_state.mtx);
109 if (*decompress_pipeline) {
110 mtx_unlock(&device->meta_state.mtx);
111 return VK_SUCCESS;
112 }
113
114 if (!vs_module_h) {
115 vs_module.nir = radv_meta_build_nir_vs_generate_vertices();
116 vs_module_h = radv_shader_module_to_handle(&vs_module);
117 }
118
119 struct radv_shader_module fs_module = {
120 .nir = radv_meta_build_nir_fs_noop(),
121 };
122
123 if (!fs_module.nir) {
124 /* XXX: Need more accurate error */
125 result = VK_ERROR_OUT_OF_HOST_MEMORY;
126 goto cleanup;
127 }
128
129 const VkPipelineSampleLocationsStateCreateInfoEXT sample_locs_create_info = {
130 .sType = VK_STRUCTURE_TYPE_PIPELINE_SAMPLE_LOCATIONS_STATE_CREATE_INFO_EXT,
131 .sampleLocationsEnable = false,
132 };
133
134 const VkGraphicsPipelineCreateInfo pipeline_create_info = {
135 .sType = VK_STRUCTURE_TYPE_GRAPHICS_PIPELINE_CREATE_INFO,
136 .stageCount = 2,
137 .pStages = (VkPipelineShaderStageCreateInfo[]) {
138 {
139 .sType = VK_STRUCTURE_TYPE_PIPELINE_SHADER_STAGE_CREATE_INFO,
140 .stage = VK_SHADER_STAGE_VERTEX_BIT,
141 .module = vs_module_h,
142 .pName = "main",
143 },
144 {
145 .sType = VK_STRUCTURE_TYPE_PIPELINE_SHADER_STAGE_CREATE_INFO,
146 .stage = VK_SHADER_STAGE_FRAGMENT_BIT,
147 .module = radv_shader_module_to_handle(&fs_module),
148 .pName = "main",
149 },
150 },
151 .pVertexInputState = &(VkPipelineVertexInputStateCreateInfo) {
152 .sType = VK_STRUCTURE_TYPE_PIPELINE_VERTEX_INPUT_STATE_CREATE_INFO,
153 .vertexBindingDescriptionCount = 0,
154 .vertexAttributeDescriptionCount = 0,
155 },
156 .pInputAssemblyState = &(VkPipelineInputAssemblyStateCreateInfo) {
157 .sType = VK_STRUCTURE_TYPE_PIPELINE_INPUT_ASSEMBLY_STATE_CREATE_INFO,
158 .topology = VK_PRIMITIVE_TOPOLOGY_TRIANGLE_STRIP,
159 .primitiveRestartEnable = false,
160 },
161 .pViewportState = &(VkPipelineViewportStateCreateInfo) {
162 .sType = VK_STRUCTURE_TYPE_PIPELINE_VIEWPORT_STATE_CREATE_INFO,
163 .viewportCount = 1,
164 .scissorCount = 1,
165 },
166 .pRasterizationState = &(VkPipelineRasterizationStateCreateInfo) {
167 .sType = VK_STRUCTURE_TYPE_PIPELINE_RASTERIZATION_STATE_CREATE_INFO,
168 .depthClampEnable = false,
169 .rasterizerDiscardEnable = false,
170 .polygonMode = VK_POLYGON_MODE_FILL,
171 .cullMode = VK_CULL_MODE_NONE,
172 .frontFace = VK_FRONT_FACE_COUNTER_CLOCKWISE,
173 },
174 .pMultisampleState = &(VkPipelineMultisampleStateCreateInfo) {
175 .sType = VK_STRUCTURE_TYPE_PIPELINE_MULTISAMPLE_STATE_CREATE_INFO,
176 .pNext = &sample_locs_create_info,
177 .rasterizationSamples = samples,
178 .sampleShadingEnable = false,
179 .pSampleMask = NULL,
180 .alphaToCoverageEnable = false,
181 .alphaToOneEnable = false,
182 },
183 .pColorBlendState = &(VkPipelineColorBlendStateCreateInfo) {
184 .sType = VK_STRUCTURE_TYPE_PIPELINE_COLOR_BLEND_STATE_CREATE_INFO,
185 .logicOpEnable = false,
186 .attachmentCount = 0,
187 .pAttachments = NULL,
188 },
189 .pDepthStencilState = &(VkPipelineDepthStencilStateCreateInfo) {
190 .sType = VK_STRUCTURE_TYPE_PIPELINE_DEPTH_STENCIL_STATE_CREATE_INFO,
191 .depthTestEnable = false,
192 .depthWriteEnable = false,
193 .depthBoundsTestEnable = false,
194 .stencilTestEnable = false,
195 },
196 .pDynamicState = &(VkPipelineDynamicStateCreateInfo) {
197 .sType = VK_STRUCTURE_TYPE_PIPELINE_DYNAMIC_STATE_CREATE_INFO,
198 .dynamicStateCount = 3,
199 .pDynamicStates = (VkDynamicState[]) {
200 VK_DYNAMIC_STATE_VIEWPORT,
201 VK_DYNAMIC_STATE_SCISSOR,
202 VK_DYNAMIC_STATE_SAMPLE_LOCATIONS_EXT,
203 },
204 },
205 .layout = layout,
206 .renderPass = pass,
207 .subpass = 0,
208 };
209
210 result = radv_graphics_pipeline_create(device_h,
211 radv_pipeline_cache_to_handle(&device->meta_state.cache),
212 &pipeline_create_info,
213 &(struct radv_graphics_pipeline_create_info) {
214 .use_rectlist = true,
215 .db_flush_depth_inplace = true,
216 .db_flush_stencil_inplace = true,
217 },
218 &device->meta_state.alloc,
219 decompress_pipeline);
220 if (result != VK_SUCCESS)
221 goto cleanup;
222
223 result = radv_graphics_pipeline_create(device_h,
224 radv_pipeline_cache_to_handle(&device->meta_state.cache),
225 &pipeline_create_info,
226 &(struct radv_graphics_pipeline_create_info) {
227 .use_rectlist = true,
228 .db_flush_depth_inplace = true,
229 .db_flush_stencil_inplace = true,
230 .db_resummarize = true,
231 },
232 &device->meta_state.alloc,
233 resummarize_pipeline);
234 if (result != VK_SUCCESS)
235 goto cleanup;
236
237 goto cleanup;
238
239 cleanup:
240 ralloc_free(fs_module.nir);
241 if (vs_module.nir)
242 ralloc_free(vs_module.nir);
243 mtx_unlock(&device->meta_state.mtx);
244 return result;
245 }
246
247 void
248 radv_device_finish_meta_depth_decomp_state(struct radv_device *device)
249 {
250 struct radv_meta_state *state = &device->meta_state;
251
252 for (uint32_t i = 0; i < ARRAY_SIZE(state->depth_decomp); ++i) {
253 radv_DestroyRenderPass(radv_device_to_handle(device),
254 state->depth_decomp[i].pass,
255 &state->alloc);
256 radv_DestroyPipelineLayout(radv_device_to_handle(device),
257 state->depth_decomp[i].p_layout,
258 &state->alloc);
259 radv_DestroyPipeline(radv_device_to_handle(device),
260 state->depth_decomp[i].decompress_pipeline,
261 &state->alloc);
262 radv_DestroyPipeline(radv_device_to_handle(device),
263 state->depth_decomp[i].resummarize_pipeline,
264 &state->alloc);
265 }
266 }
267
268 VkResult
269 radv_device_init_meta_depth_decomp_state(struct radv_device *device, bool on_demand)
270 {
271 struct radv_meta_state *state = &device->meta_state;
272 VkResult res = VK_SUCCESS;
273
274 struct radv_shader_module vs_module = { .nir = radv_meta_build_nir_vs_generate_vertices() };
275 if (!vs_module.nir) {
276 /* XXX: Need more accurate error */
277 res = VK_ERROR_OUT_OF_HOST_MEMORY;
278 goto fail;
279 }
280
281 VkShaderModule vs_module_h = radv_shader_module_to_handle(&vs_module);
282
283 for (uint32_t i = 0; i < ARRAY_SIZE(state->depth_decomp); ++i) {
284 uint32_t samples = 1 << i;
285
286 res = create_pass(device, samples, &state->depth_decomp[i].pass);
287 if (res != VK_SUCCESS)
288 goto fail;
289
290 res = create_pipeline_layout(device,
291 &state->depth_decomp[i].p_layout);
292 if (res != VK_SUCCESS)
293 goto fail;
294
295 if (on_demand)
296 continue;
297
298 res = create_pipeline(device, vs_module_h, samples,
299 state->depth_decomp[i].pass,
300 state->depth_decomp[i].p_layout,
301 &state->depth_decomp[i].decompress_pipeline,
302 &state->depth_decomp[i].resummarize_pipeline);
303 if (res != VK_SUCCESS)
304 goto fail;
305 }
306
307 goto cleanup;
308
309 fail:
310 radv_device_finish_meta_depth_decomp_state(device);
311
312 cleanup:
313 ralloc_free(vs_module.nir);
314
315 return res;
316 }
317
318 enum radv_depth_op {
319 DEPTH_DECOMPRESS,
320 DEPTH_RESUMMARIZE,
321 };
322
323 static void radv_process_depth_image_inplace(struct radv_cmd_buffer *cmd_buffer,
324 struct radv_image *image,
325 VkImageSubresourceRange *subresourceRange,
326 enum radv_depth_op op)
327 {
328 struct radv_meta_saved_state saved_state;
329 VkDevice device_h = radv_device_to_handle(cmd_buffer->device);
330 VkCommandBuffer cmd_buffer_h = radv_cmd_buffer_to_handle(cmd_buffer);
331 uint32_t width = radv_minify(image->info.width,
332 subresourceRange->baseMipLevel);
333 uint32_t height = radv_minify(image->info.height,
334 subresourceRange->baseMipLevel);
335 uint32_t samples = image->info.samples;
336 uint32_t samples_log2 = ffs(samples) - 1;
337 struct radv_meta_state *meta_state = &cmd_buffer->device->meta_state;
338 VkPipeline pipeline_h;
339
340 if (!radv_image_has_htile(image))
341 return;
342
343 if (!meta_state->depth_decomp[samples_log2].decompress_pipeline) {
344 VkResult ret = create_pipeline(cmd_buffer->device, VK_NULL_HANDLE, samples,
345 meta_state->depth_decomp[samples_log2].pass,
346 meta_state->depth_decomp[samples_log2].p_layout,
347 &meta_state->depth_decomp[samples_log2].decompress_pipeline,
348 &meta_state->depth_decomp[samples_log2].resummarize_pipeline);
349 if (ret != VK_SUCCESS) {
350 cmd_buffer->record_result = ret;
351 return;
352 }
353 }
354
355 radv_meta_save(&saved_state, cmd_buffer,
356 RADV_META_SAVE_GRAPHICS_PIPELINE |
357 RADV_META_SAVE_PASS);
358
359 switch (op) {
360 case DEPTH_DECOMPRESS:
361 pipeline_h = meta_state->depth_decomp[samples_log2].decompress_pipeline;
362 break;
363 case DEPTH_RESUMMARIZE:
364 pipeline_h = meta_state->depth_decomp[samples_log2].resummarize_pipeline;
365 break;
366 default:
367 unreachable("unknown operation");
368 }
369
370 radv_CmdBindPipeline(cmd_buffer_h, VK_PIPELINE_BIND_POINT_GRAPHICS,
371 pipeline_h);
372
373 radv_CmdSetViewport(cmd_buffer_h, 0, 1, &(VkViewport) {
374 .x = 0,
375 .y = 0,
376 .width = width,
377 .height = height,
378 .minDepth = 0.0f,
379 .maxDepth = 1.0f
380 });
381
382 radv_CmdSetScissor(cmd_buffer_h, 0, 1, &(VkRect2D) {
383 .offset = { 0, 0 },
384 .extent = { width, height },
385 });
386
387 for (uint32_t layer = 0; layer < radv_get_layerCount(image, subresourceRange); layer++) {
388 struct radv_image_view iview;
389
390 radv_image_view_init(&iview, cmd_buffer->device,
391 &(VkImageViewCreateInfo) {
392 .sType = VK_STRUCTURE_TYPE_IMAGE_VIEW_CREATE_INFO,
393 .image = radv_image_to_handle(image),
394 .viewType = radv_meta_get_view_type(image),
395 .format = image->vk_format,
396 .subresourceRange = {
397 .aspectMask = VK_IMAGE_ASPECT_DEPTH_BIT,
398 .baseMipLevel = subresourceRange->baseMipLevel,
399 .levelCount = 1,
400 .baseArrayLayer = subresourceRange->baseArrayLayer + layer,
401 .layerCount = 1,
402 },
403 });
404
405
406 VkFramebuffer fb_h;
407 radv_CreateFramebuffer(device_h,
408 &(VkFramebufferCreateInfo) {
409 .sType = VK_STRUCTURE_TYPE_FRAMEBUFFER_CREATE_INFO,
410 .attachmentCount = 1,
411 .pAttachments = (VkImageView[]) {
412 radv_image_view_to_handle(&iview)
413 },
414 .width = width,
415 .height = height,
416 .layers = 1
417 },
418 &cmd_buffer->pool->alloc,
419 &fb_h);
420
421 radv_CmdBeginRenderPass(cmd_buffer_h,
422 &(VkRenderPassBeginInfo) {
423 .sType = VK_STRUCTURE_TYPE_RENDER_PASS_BEGIN_INFO,
424 .renderPass = meta_state->depth_decomp[samples_log2].pass,
425 .framebuffer = fb_h,
426 .renderArea = {
427 .offset = {
428 0,
429 0,
430 },
431 .extent = {
432 width,
433 height,
434 }
435 },
436 .clearValueCount = 0,
437 .pClearValues = NULL,
438 },
439 VK_SUBPASS_CONTENTS_INLINE);
440
441 radv_CmdDraw(cmd_buffer_h, 3, 1, 0, 0);
442 radv_CmdEndRenderPass(cmd_buffer_h);
443
444 radv_DestroyFramebuffer(device_h, fb_h,
445 &cmd_buffer->pool->alloc);
446 }
447 radv_meta_restore(&saved_state, cmd_buffer);
448 }
449
450 void radv_decompress_depth_image_inplace(struct radv_cmd_buffer *cmd_buffer,
451 struct radv_image *image,
452 VkImageSubresourceRange *subresourceRange)
453 {
454 assert(cmd_buffer->queue_family_index == RADV_QUEUE_GENERAL);
455 radv_process_depth_image_inplace(cmd_buffer, image, subresourceRange, DEPTH_DECOMPRESS);
456 }
457
458 void radv_resummarize_depth_image_inplace(struct radv_cmd_buffer *cmd_buffer,
459 struct radv_image *image,
460 VkImageSubresourceRange *subresourceRange)
461 {
462 assert(cmd_buffer->queue_family_index == RADV_QUEUE_GENERAL);
463 radv_process_depth_image_inplace(cmd_buffer, image, subresourceRange, DEPTH_RESUMMARIZE);
464 }