2015-07-15 12:09:52 -07:00
|
|
|
/*
|
|
|
|
* Copyright © 2015 Intel Corporation
|
|
|
|
*
|
|
|
|
* Permission is hereby granted, free of charge, to any person obtaining a
|
|
|
|
* copy of this software and associated documentation files (the "Software"),
|
|
|
|
* to deal in the Software without restriction, including without limitation
|
|
|
|
* the rights to use, copy, modify, merge, publish, distribute, sublicense,
|
|
|
|
* and/or sell copies of the Software, and to permit persons to whom the
|
|
|
|
* Software is furnished to do so, subject to the following conditions:
|
|
|
|
*
|
|
|
|
* The above copyright notice and this permission notice (including the next
|
|
|
|
* paragraph) shall be included in all copies or substantial portions of the
|
|
|
|
* Software.
|
|
|
|
*
|
|
|
|
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
|
|
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
|
|
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
|
|
|
|
* THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
|
|
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
|
|
|
|
* FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS
|
|
|
|
* IN THE SOFTWARE.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include <assert.h>
|
|
|
|
#include <stdbool.h>
|
|
|
|
#include <string.h>
|
|
|
|
#include <unistd.h>
|
|
|
|
#include <fcntl.h>
|
|
|
|
|
2015-07-17 15:04:27 -07:00
|
|
|
#include "anv_private.h"
|
2015-07-15 12:09:52 -07:00
|
|
|
|
|
|
|
/** \file anv_cmd_buffer.c
|
|
|
|
*
|
2015-07-30 14:59:02 -07:00
|
|
|
* This file contains all of the stuff for emitting commands into a command
|
|
|
|
* buffer. This includes implementations of most of the vkCmd*
|
|
|
|
* entrypoints. This file is concerned entirely with state emission and
|
|
|
|
* not with the command buffer data structure itself. As far as this file
|
|
|
|
* is concerned, most of anv_cmd_buffer is magic.
|
2015-07-15 12:09:52 -07:00
|
|
|
*/
|
|
|
|
|
2015-07-30 14:59:02 -07:00
|
|
|
static void
|
|
|
|
anv_cmd_state_init(struct anv_cmd_state *state)
|
2015-07-15 12:09:52 -07:00
|
|
|
{
|
2015-07-30 14:59:02 -07:00
|
|
|
state->rs_state = NULL;
|
|
|
|
state->vp_state = NULL;
|
|
|
|
state->cb_state = NULL;
|
|
|
|
state->ds_state = NULL;
|
|
|
|
memset(&state->state_vf, 0, sizeof(state->state_vf));
|
|
|
|
memset(&state->descriptors, 0, sizeof(state->descriptors));
|
|
|
|
|
|
|
|
state->dirty = 0;
|
|
|
|
state->vb_dirty = 0;
|
|
|
|
state->descriptors_dirty = 0;
|
|
|
|
state->pipeline = NULL;
|
|
|
|
state->vp_state = NULL;
|
|
|
|
state->rs_state = NULL;
|
|
|
|
state->ds_state = NULL;
|
|
|
|
}
|
2015-07-29 14:05:06 -07:00
|
|
|
|
2015-07-30 14:59:02 -07:00
|
|
|
VkResult anv_CreateCommandBuffer(
|
|
|
|
VkDevice _device,
|
|
|
|
const VkCmdBufferCreateInfo* pCreateInfo,
|
|
|
|
VkCmdBuffer* pCmdBuffer)
|
|
|
|
{
|
|
|
|
ANV_FROM_HANDLE(anv_device, device, _device);
|
|
|
|
ANV_FROM_HANDLE(anv_cmd_pool, pool, pCreateInfo->cmdPool);
|
|
|
|
struct anv_cmd_buffer *cmd_buffer;
|
|
|
|
VkResult result;
|
2015-07-15 12:09:52 -07:00
|
|
|
|
2015-07-30 14:59:02 -07:00
|
|
|
cmd_buffer = anv_device_alloc(device, sizeof(*cmd_buffer), 8,
|
|
|
|
VK_SYSTEM_ALLOC_TYPE_API_OBJECT);
|
|
|
|
if (cmd_buffer == NULL)
|
2015-07-15 12:09:52 -07:00
|
|
|
return vk_error(VK_ERROR_OUT_OF_HOST_MEMORY);
|
|
|
|
|
2015-07-30 14:59:02 -07:00
|
|
|
cmd_buffer->device = device;
|
2015-07-15 12:09:52 -07:00
|
|
|
|
2015-07-30 14:59:02 -07:00
|
|
|
result = anv_cmd_buffer_init_batch_bo_chain(cmd_buffer);
|
|
|
|
if (result != VK_SUCCESS)
|
|
|
|
goto fail;
|
2015-07-15 12:09:52 -07:00
|
|
|
|
2015-07-30 14:59:02 -07:00
|
|
|
anv_state_stream_init(&cmd_buffer->surface_state_stream,
|
|
|
|
&device->surface_state_block_pool);
|
|
|
|
anv_state_stream_init(&cmd_buffer->dynamic_state_stream,
|
|
|
|
&device->dynamic_state_block_pool);
|
|
|
|
|
|
|
|
cmd_buffer->level = pCreateInfo->level;
|
|
|
|
cmd_buffer->opt_flags = 0;
|
|
|
|
|
|
|
|
anv_cmd_state_init(&cmd_buffer->state);
|
|
|
|
|
2015-08-04 14:00:09 -07:00
|
|
|
if (pool) {
|
|
|
|
list_addtail(&cmd_buffer->pool_link, &pool->cmd_buffers);
|
|
|
|
} else {
|
|
|
|
/* Init the pool_link so we can safefly call list_del when we destroy
|
|
|
|
* the command buffer
|
|
|
|
*/
|
|
|
|
list_inithead(&cmd_buffer->pool_link);
|
|
|
|
}
|
2015-07-30 14:59:02 -07:00
|
|
|
|
|
|
|
*pCmdBuffer = anv_cmd_buffer_to_handle(cmd_buffer);
|
2015-07-29 14:05:06 -07:00
|
|
|
|
2015-07-15 12:09:52 -07:00
|
|
|
return VK_SUCCESS;
|
2015-07-30 14:59:02 -07:00
|
|
|
|
|
|
|
fail: anv_device_free(device, cmd_buffer);
|
|
|
|
|
|
|
|
return result;
|
2015-07-15 12:09:52 -07:00
|
|
|
}
|
|
|
|
|
2015-07-30 14:59:02 -07:00
|
|
|
VkResult anv_DestroyCommandBuffer(
|
|
|
|
VkDevice _device,
|
|
|
|
VkCmdBuffer _cmd_buffer)
|
2015-07-29 14:05:06 -07:00
|
|
|
{
|
2015-07-30 14:59:02 -07:00
|
|
|
ANV_FROM_HANDLE(anv_device, device, _device);
|
|
|
|
ANV_FROM_HANDLE(anv_cmd_buffer, cmd_buffer, _cmd_buffer);
|
|
|
|
|
|
|
|
list_del(&cmd_buffer->pool_link);
|
|
|
|
|
|
|
|
anv_cmd_buffer_fini_batch_bo_chain(cmd_buffer);
|
|
|
|
|
|
|
|
anv_state_stream_finish(&cmd_buffer->surface_state_stream);
|
|
|
|
anv_state_stream_finish(&cmd_buffer->dynamic_state_stream);
|
|
|
|
anv_device_free(device, cmd_buffer);
|
|
|
|
|
|
|
|
return VK_SUCCESS;
|
|
|
|
}
|
|
|
|
|
|
|
|
VkResult anv_ResetCommandBuffer(
|
|
|
|
VkCmdBuffer cmdBuffer,
|
|
|
|
VkCmdBufferResetFlags flags)
|
|
|
|
{
|
|
|
|
ANV_FROM_HANDLE(anv_cmd_buffer, cmd_buffer, cmdBuffer);
|
|
|
|
|
|
|
|
anv_cmd_buffer_reset_batch_bo_chain(cmd_buffer);
|
|
|
|
|
|
|
|
anv_cmd_state_init(&cmd_buffer->state);
|
|
|
|
|
|
|
|
return VK_SUCCESS;
|
2015-07-29 14:05:06 -07:00
|
|
|
}
|
|
|
|
|
2015-07-15 12:09:52 -07:00
|
|
|
void
|
2015-07-30 14:59:02 -07:00
|
|
|
anv_cmd_buffer_emit_state_base_address(struct anv_cmd_buffer *cmd_buffer)
|
2015-07-15 12:09:52 -07:00
|
|
|
{
|
2015-08-14 14:50:11 -07:00
|
|
|
switch (cmd_buffer->device->info.gen) {
|
|
|
|
case 8:
|
|
|
|
return gen8_cmd_buffer_emit_state_base_address(cmd_buffer);
|
|
|
|
default:
|
|
|
|
unreachable("unsupported gen\n");
|
|
|
|
}
|
2015-07-15 12:09:52 -07:00
|
|
|
}
|
|
|
|
|
2015-07-30 14:59:02 -07:00
|
|
|
VkResult anv_BeginCommandBuffer(
|
|
|
|
VkCmdBuffer cmdBuffer,
|
|
|
|
const VkCmdBufferBeginInfo* pBeginInfo)
|
2015-07-15 12:09:52 -07:00
|
|
|
{
|
2015-07-30 14:59:02 -07:00
|
|
|
ANV_FROM_HANDLE(anv_cmd_buffer, cmd_buffer, cmdBuffer);
|
2015-07-15 12:09:52 -07:00
|
|
|
|
2015-07-30 14:59:02 -07:00
|
|
|
cmd_buffer->opt_flags = pBeginInfo->flags;
|
2015-07-15 12:09:52 -07:00
|
|
|
|
2015-07-30 14:59:02 -07:00
|
|
|
if (cmd_buffer->level == VK_CMD_BUFFER_LEVEL_SECONDARY) {
|
|
|
|
cmd_buffer->state.framebuffer =
|
|
|
|
anv_framebuffer_from_handle(pBeginInfo->framebuffer);
|
|
|
|
cmd_buffer->state.pass =
|
|
|
|
anv_render_pass_from_handle(pBeginInfo->renderPass);
|
2015-07-15 12:09:52 -07:00
|
|
|
|
2015-07-30 14:59:02 -07:00
|
|
|
/* FIXME: We shouldn't be starting on the first subpass */
|
|
|
|
anv_cmd_buffer_begin_subpass(cmd_buffer,
|
|
|
|
&cmd_buffer->state.pass->subpasses[0]);
|
2015-07-15 12:09:52 -07:00
|
|
|
}
|
|
|
|
|
2015-07-30 14:59:02 -07:00
|
|
|
anv_cmd_buffer_emit_state_base_address(cmd_buffer);
|
|
|
|
cmd_buffer->state.current_pipeline = UINT32_MAX;
|
2015-07-15 12:09:52 -07:00
|
|
|
|
|
|
|
return VK_SUCCESS;
|
|
|
|
}
|
|
|
|
|
2015-07-30 14:59:02 -07:00
|
|
|
VkResult anv_EndCommandBuffer(
|
|
|
|
VkCmdBuffer cmdBuffer)
|
2015-07-15 12:09:52 -07:00
|
|
|
{
|
2015-07-30 14:59:02 -07:00
|
|
|
ANV_FROM_HANDLE(anv_cmd_buffer, cmd_buffer, cmdBuffer);
|
|
|
|
struct anv_device *device = cmd_buffer->device;
|
2015-07-15 12:09:52 -07:00
|
|
|
|
2015-07-30 14:59:02 -07:00
|
|
|
anv_cmd_buffer_end_batch_buffer(cmd_buffer);
|
2015-07-15 12:09:52 -07:00
|
|
|
|
2015-07-30 14:59:02 -07:00
|
|
|
if (cmd_buffer->level == VK_CMD_BUFFER_LEVEL_PRIMARY) {
|
|
|
|
/* The algorithm used to compute the validate list is not threadsafe as
|
|
|
|
* it uses the bo->index field. We have to lock the device around it.
|
|
|
|
* Fortunately, the chances for contention here are probably very low.
|
|
|
|
*/
|
|
|
|
pthread_mutex_lock(&device->mutex);
|
|
|
|
anv_cmd_buffer_prepare_execbuf(cmd_buffer);
|
|
|
|
pthread_mutex_unlock(&device->mutex);
|
|
|
|
}
|
2015-07-15 12:09:52 -07:00
|
|
|
|
2015-07-30 14:59:02 -07:00
|
|
|
return VK_SUCCESS;
|
2015-07-15 12:09:52 -07:00
|
|
|
}
|
|
|
|
|
2015-07-30 14:59:02 -07:00
|
|
|
void anv_CmdBindPipeline(
|
|
|
|
VkCmdBuffer cmdBuffer,
|
|
|
|
VkPipelineBindPoint pipelineBindPoint,
|
|
|
|
VkPipeline _pipeline)
|
2015-07-15 12:09:52 -07:00
|
|
|
{
|
2015-07-30 14:59:02 -07:00
|
|
|
ANV_FROM_HANDLE(anv_cmd_buffer, cmd_buffer, cmdBuffer);
|
|
|
|
ANV_FROM_HANDLE(anv_pipeline, pipeline, _pipeline);
|
2015-07-15 12:09:52 -07:00
|
|
|
|
2015-07-30 14:59:02 -07:00
|
|
|
switch (pipelineBindPoint) {
|
|
|
|
case VK_PIPELINE_BIND_POINT_COMPUTE:
|
|
|
|
cmd_buffer->state.compute_pipeline = pipeline;
|
|
|
|
cmd_buffer->state.compute_dirty |= ANV_CMD_BUFFER_PIPELINE_DIRTY;
|
|
|
|
break;
|
2015-07-15 12:09:52 -07:00
|
|
|
|
2015-07-30 14:59:02 -07:00
|
|
|
case VK_PIPELINE_BIND_POINT_GRAPHICS:
|
|
|
|
cmd_buffer->state.pipeline = pipeline;
|
|
|
|
cmd_buffer->state.vb_dirty |= pipeline->vb_used;
|
|
|
|
cmd_buffer->state.dirty |= ANV_CMD_BUFFER_PIPELINE_DIRTY;
|
|
|
|
break;
|
2015-07-15 12:09:52 -07:00
|
|
|
|
2015-07-30 14:59:02 -07:00
|
|
|
default:
|
|
|
|
assert(!"invalid bind point");
|
|
|
|
break;
|
|
|
|
}
|
2015-07-15 12:09:52 -07:00
|
|
|
}
|
|
|
|
|
2015-07-30 14:59:02 -07:00
|
|
|
void anv_CmdBindDynamicViewportState(
|
|
|
|
VkCmdBuffer cmdBuffer,
|
|
|
|
VkDynamicViewportState dynamicViewportState)
|
|
|
|
{
|
|
|
|
ANV_FROM_HANDLE(anv_cmd_buffer, cmd_buffer, cmdBuffer);
|
|
|
|
ANV_FROM_HANDLE(anv_dynamic_vp_state, vp_state, dynamicViewportState);
|
2015-07-15 12:09:52 -07:00
|
|
|
|
2015-07-30 14:59:02 -07:00
|
|
|
cmd_buffer->state.vp_state = vp_state;
|
|
|
|
cmd_buffer->state.dirty |= ANV_CMD_BUFFER_VP_DIRTY;
|
|
|
|
}
|
|
|
|
|
|
|
|
void anv_CmdBindDynamicRasterState(
|
|
|
|
VkCmdBuffer cmdBuffer,
|
|
|
|
VkDynamicRasterState dynamicRasterState)
|
2015-07-15 12:09:52 -07:00
|
|
|
{
|
2015-07-30 14:59:02 -07:00
|
|
|
ANV_FROM_HANDLE(anv_cmd_buffer, cmd_buffer, cmdBuffer);
|
|
|
|
ANV_FROM_HANDLE(anv_dynamic_rs_state, rs_state, dynamicRasterState);
|
2015-07-15 12:09:52 -07:00
|
|
|
|
2015-07-30 14:59:02 -07:00
|
|
|
cmd_buffer->state.rs_state = rs_state;
|
|
|
|
cmd_buffer->state.dirty |= ANV_CMD_BUFFER_RS_DIRTY;
|
|
|
|
}
|
2015-07-15 12:09:52 -07:00
|
|
|
|
2015-07-30 14:59:02 -07:00
|
|
|
void anv_CmdBindDynamicColorBlendState(
|
|
|
|
VkCmdBuffer cmdBuffer,
|
|
|
|
VkDynamicColorBlendState dynamicColorBlendState)
|
|
|
|
{
|
|
|
|
ANV_FROM_HANDLE(anv_cmd_buffer, cmd_buffer, cmdBuffer);
|
|
|
|
ANV_FROM_HANDLE(anv_dynamic_cb_state, cb_state, dynamicColorBlendState);
|
2015-07-15 12:09:52 -07:00
|
|
|
|
2015-07-30 14:59:02 -07:00
|
|
|
cmd_buffer->state.cb_state = cb_state;
|
|
|
|
cmd_buffer->state.dirty |= ANV_CMD_BUFFER_CB_DIRTY;
|
2015-07-15 12:09:52 -07:00
|
|
|
}
|
|
|
|
|
2015-07-30 14:59:02 -07:00
|
|
|
void anv_CmdBindDynamicDepthStencilState(
|
|
|
|
VkCmdBuffer cmdBuffer,
|
|
|
|
VkDynamicDepthStencilState dynamicDepthStencilState)
|
2015-07-15 12:09:52 -07:00
|
|
|
{
|
2015-07-30 14:59:02 -07:00
|
|
|
ANV_FROM_HANDLE(anv_cmd_buffer, cmd_buffer, cmdBuffer);
|
|
|
|
ANV_FROM_HANDLE(anv_dynamic_ds_state, ds_state, dynamicDepthStencilState);
|
|
|
|
|
|
|
|
cmd_buffer->state.ds_state = ds_state;
|
|
|
|
cmd_buffer->state.dirty |= ANV_CMD_BUFFER_DS_DIRTY;
|
2015-07-15 12:09:52 -07:00
|
|
|
}
|
|
|
|
|
2015-07-30 14:59:02 -07:00
|
|
|
void anv_CmdBindDescriptorSets(
|
|
|
|
VkCmdBuffer cmdBuffer,
|
|
|
|
VkPipelineBindPoint pipelineBindPoint,
|
|
|
|
VkPipelineLayout _layout,
|
|
|
|
uint32_t firstSet,
|
|
|
|
uint32_t setCount,
|
|
|
|
const VkDescriptorSet* pDescriptorSets,
|
|
|
|
uint32_t dynamicOffsetCount,
|
|
|
|
const uint32_t* pDynamicOffsets)
|
2015-07-15 12:09:52 -07:00
|
|
|
{
|
2015-07-30 14:59:02 -07:00
|
|
|
ANV_FROM_HANDLE(anv_cmd_buffer, cmd_buffer, cmdBuffer);
|
|
|
|
ANV_FROM_HANDLE(anv_pipeline_layout, layout, _layout);
|
|
|
|
struct anv_descriptor_set_layout *set_layout;
|
2015-07-15 12:09:52 -07:00
|
|
|
|
2015-07-30 14:59:02 -07:00
|
|
|
assert(firstSet + setCount < MAX_SETS);
|
2015-07-15 12:09:52 -07:00
|
|
|
|
2015-07-30 14:59:02 -07:00
|
|
|
uint32_t dynamic_slot = 0;
|
|
|
|
for (uint32_t i = 0; i < setCount; i++) {
|
|
|
|
ANV_FROM_HANDLE(anv_descriptor_set, set, pDescriptorSets[i]);
|
|
|
|
set_layout = layout->set[firstSet + i].layout;
|
2015-07-15 12:09:52 -07:00
|
|
|
|
2015-07-30 14:59:02 -07:00
|
|
|
cmd_buffer->state.descriptors[firstSet + i].set = set;
|
2015-07-15 12:09:52 -07:00
|
|
|
|
2015-07-30 14:59:02 -07:00
|
|
|
assert(set_layout->num_dynamic_buffers <
|
|
|
|
ARRAY_SIZE(cmd_buffer->state.descriptors[0].dynamic_offsets));
|
|
|
|
memcpy(cmd_buffer->state.descriptors[firstSet + i].dynamic_offsets,
|
|
|
|
pDynamicOffsets + dynamic_slot,
|
|
|
|
set_layout->num_dynamic_buffers * sizeof(*pDynamicOffsets));
|
2015-07-15 12:09:52 -07:00
|
|
|
|
2015-07-30 14:59:02 -07:00
|
|
|
cmd_buffer->state.descriptors_dirty |= set_layout->shader_stages;
|
2015-07-15 12:09:52 -07:00
|
|
|
|
2015-07-30 14:59:02 -07:00
|
|
|
dynamic_slot += set_layout->num_dynamic_buffers;
|
|
|
|
}
|
2015-07-15 12:09:52 -07:00
|
|
|
}
|
|
|
|
|
2015-07-30 14:59:02 -07:00
|
|
|
void anv_CmdBindVertexBuffers(
|
|
|
|
VkCmdBuffer cmdBuffer,
|
|
|
|
uint32_t startBinding,
|
|
|
|
uint32_t bindingCount,
|
|
|
|
const VkBuffer* pBuffers,
|
|
|
|
const VkDeviceSize* pOffsets)
|
|
|
|
{
|
|
|
|
ANV_FROM_HANDLE(anv_cmd_buffer, cmd_buffer, cmdBuffer);
|
|
|
|
struct anv_vertex_binding *vb = cmd_buffer->state.vertex_bindings;
|
2015-07-29 11:57:44 -07:00
|
|
|
|
2015-07-30 14:59:02 -07:00
|
|
|
/* We have to defer setting up vertex buffer since we need the buffer
|
|
|
|
* stride from the pipeline. */
|
2015-07-29 11:57:44 -07:00
|
|
|
|
2015-07-30 14:59:02 -07:00
|
|
|
assert(startBinding + bindingCount < MAX_VBS);
|
|
|
|
for (uint32_t i = 0; i < bindingCount; i++) {
|
|
|
|
vb[startBinding + i].buffer = anv_buffer_from_handle(pBuffers[i]);
|
|
|
|
vb[startBinding + i].offset = pOffsets[i];
|
|
|
|
cmd_buffer->state.vb_dirty |= 1 << (startBinding + i);
|
|
|
|
}
|
2015-07-15 12:09:52 -07:00
|
|
|
}
|
|
|
|
|
2015-08-17 16:17:07 -07:00
|
|
|
VkResult
|
|
|
|
anv_cmd_buffer_emit_binding_table(struct anv_cmd_buffer *cmd_buffer,
|
|
|
|
unsigned stage, struct anv_state *bt_state)
|
2015-07-29 14:05:06 -07:00
|
|
|
{
|
2015-07-30 14:59:02 -07:00
|
|
|
struct anv_framebuffer *fb = cmd_buffer->state.framebuffer;
|
|
|
|
struct anv_subpass *subpass = cmd_buffer->state.subpass;
|
|
|
|
struct anv_pipeline_layout *layout;
|
|
|
|
uint32_t attachments, bias, size;
|
|
|
|
|
|
|
|
if (stage == VK_SHADER_STAGE_COMPUTE)
|
|
|
|
layout = cmd_buffer->state.compute_pipeline->layout;
|
|
|
|
else
|
|
|
|
layout = cmd_buffer->state.pipeline->layout;
|
|
|
|
|
|
|
|
if (stage == VK_SHADER_STAGE_FRAGMENT) {
|
|
|
|
bias = MAX_RTS;
|
|
|
|
attachments = subpass->color_count;
|
|
|
|
} else {
|
|
|
|
bias = 0;
|
|
|
|
attachments = 0;
|
|
|
|
}
|
2015-07-29 14:05:06 -07:00
|
|
|
|
2015-07-30 14:59:02 -07:00
|
|
|
/* This is a little awkward: layout can be NULL but we still have to
|
|
|
|
* allocate and set a binding table for the PS stage for render
|
|
|
|
* targets. */
|
|
|
|
uint32_t surface_count = layout ? layout->stage[stage].surface_count : 0;
|
2015-07-29 14:05:06 -07:00
|
|
|
|
2015-07-30 14:59:02 -07:00
|
|
|
if (attachments + surface_count == 0)
|
|
|
|
return VK_SUCCESS;
|
2015-07-29 14:05:06 -07:00
|
|
|
|
2015-07-30 14:59:02 -07:00
|
|
|
size = (bias + surface_count) * sizeof(uint32_t);
|
|
|
|
*bt_state = anv_cmd_buffer_alloc_surface_state(cmd_buffer, size, 32);
|
|
|
|
uint32_t *bt_map = bt_state->map;
|
2015-07-29 14:05:06 -07:00
|
|
|
|
2015-07-30 14:59:02 -07:00
|
|
|
if (bt_state->map == NULL)
|
|
|
|
return VK_ERROR_OUT_OF_DEVICE_MEMORY;
|
2015-07-29 14:05:06 -07:00
|
|
|
|
2015-07-30 14:59:02 -07:00
|
|
|
/* This is highly annoying. The Vulkan spec puts the depth-stencil
|
|
|
|
* attachments in with the color attachments. Unfortunately, thanks to
|
|
|
|
* other aspects of the API, we cana't really saparate them before this
|
|
|
|
* point. Therefore, we have to walk all of the attachments but only
|
|
|
|
* put the color attachments into the binding table.
|
|
|
|
*/
|
|
|
|
for (uint32_t a = 0; a < attachments; a++) {
|
|
|
|
const struct anv_attachment_view *attachment =
|
|
|
|
fb->attachments[subpass->color_attachments[a]];
|
2015-07-29 14:05:06 -07:00
|
|
|
|
2015-07-30 14:59:02 -07:00
|
|
|
assert(attachment->attachment_type == ANV_ATTACHMENT_VIEW_TYPE_COLOR);
|
|
|
|
const struct anv_color_attachment_view *view =
|
|
|
|
(const struct anv_color_attachment_view *)attachment;
|
2015-07-29 14:05:06 -07:00
|
|
|
|
2015-07-30 14:59:02 -07:00
|
|
|
struct anv_state state =
|
|
|
|
anv_cmd_buffer_alloc_surface_state(cmd_buffer, 64, 64);
|
2015-07-29 14:05:06 -07:00
|
|
|
|
2015-07-30 14:59:02 -07:00
|
|
|
if (state.map == NULL)
|
|
|
|
return VK_ERROR_OUT_OF_DEVICE_MEMORY;
|
2015-07-29 14:05:06 -07:00
|
|
|
|
2015-07-30 14:59:02 -07:00
|
|
|
memcpy(state.map, view->view.surface_state.map, 64);
|
|
|
|
|
|
|
|
/* The address goes in dwords 8 and 9 of the SURFACE_STATE */
|
|
|
|
*(uint64_t *)(state.map + 8 * 4) =
|
|
|
|
anv_reloc_list_add(anv_cmd_buffer_current_surface_relocs(cmd_buffer),
|
|
|
|
cmd_buffer->device,
|
|
|
|
state.offset + 8 * 4,
|
|
|
|
view->view.bo, view->view.offset);
|
|
|
|
|
|
|
|
bt_map[a] = state.offset;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (layout == NULL)
|
|
|
|
return VK_SUCCESS;
|
|
|
|
|
|
|
|
for (uint32_t set = 0; set < layout->num_sets; set++) {
|
|
|
|
struct anv_descriptor_set_binding *d = &cmd_buffer->state.descriptors[set];
|
|
|
|
struct anv_descriptor_set_layout *set_layout = layout->set[set].layout;
|
|
|
|
struct anv_descriptor_slot *surface_slots =
|
|
|
|
set_layout->stage[stage].surface_start;
|
|
|
|
|
|
|
|
uint32_t start = bias + layout->set[set].surface_start[stage];
|
|
|
|
|
|
|
|
for (uint32_t b = 0; b < set_layout->stage[stage].surface_count; b++) {
|
|
|
|
struct anv_surface_view *view =
|
|
|
|
d->set->descriptors[surface_slots[b].index].view;
|
|
|
|
|
|
|
|
if (!view)
|
|
|
|
continue;
|
|
|
|
|
|
|
|
struct anv_state state =
|
|
|
|
anv_cmd_buffer_alloc_surface_state(cmd_buffer, 64, 64);
|
|
|
|
|
|
|
|
if (state.map == NULL)
|
|
|
|
return VK_ERROR_OUT_OF_DEVICE_MEMORY;
|
|
|
|
|
|
|
|
uint32_t offset;
|
|
|
|
if (surface_slots[b].dynamic_slot >= 0) {
|
|
|
|
uint32_t dynamic_offset =
|
|
|
|
d->dynamic_offsets[surface_slots[b].dynamic_slot];
|
|
|
|
|
|
|
|
offset = view->offset + dynamic_offset;
|
2015-08-13 21:48:19 -07:00
|
|
|
gen8_fill_buffer_surface_state(state.map, view->format, offset,
|
|
|
|
view->range - dynamic_offset);
|
2015-07-30 14:59:02 -07:00
|
|
|
} else {
|
|
|
|
offset = view->offset;
|
|
|
|
memcpy(state.map, view->surface_state.map, 64);
|
|
|
|
}
|
|
|
|
|
|
|
|
/* The address goes in dwords 8 and 9 of the SURFACE_STATE */
|
|
|
|
*(uint64_t *)(state.map + 8 * 4) =
|
|
|
|
anv_reloc_list_add(anv_cmd_buffer_current_surface_relocs(cmd_buffer),
|
|
|
|
cmd_buffer->device,
|
|
|
|
state.offset + 8 * 4,
|
|
|
|
view->bo, offset);
|
|
|
|
|
|
|
|
bt_map[start + b] = state.offset;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return VK_SUCCESS;
|
2015-07-15 12:09:52 -07:00
|
|
|
}
|
|
|
|
|
2015-08-17 16:17:07 -07:00
|
|
|
VkResult
|
|
|
|
anv_cmd_buffer_emit_samplers(struct anv_cmd_buffer *cmd_buffer,
|
|
|
|
unsigned stage, struct anv_state *state)
|
2015-07-30 11:36:48 -07:00
|
|
|
{
|
2015-07-30 14:59:02 -07:00
|
|
|
struct anv_pipeline_layout *layout;
|
|
|
|
uint32_t sampler_count;
|
|
|
|
|
|
|
|
if (stage == VK_SHADER_STAGE_COMPUTE)
|
|
|
|
layout = cmd_buffer->state.compute_pipeline->layout;
|
|
|
|
else
|
|
|
|
layout = cmd_buffer->state.pipeline->layout;
|
|
|
|
|
|
|
|
sampler_count = layout ? layout->stage[stage].sampler_count : 0;
|
|
|
|
if (sampler_count == 0)
|
|
|
|
return VK_SUCCESS;
|
|
|
|
|
|
|
|
uint32_t size = sampler_count * 16;
|
|
|
|
*state = anv_cmd_buffer_alloc_dynamic_state(cmd_buffer, size, 32);
|
|
|
|
|
|
|
|
if (state->map == NULL)
|
|
|
|
return VK_ERROR_OUT_OF_DEVICE_MEMORY;
|
|
|
|
|
|
|
|
for (uint32_t set = 0; set < layout->num_sets; set++) {
|
|
|
|
struct anv_descriptor_set_binding *d = &cmd_buffer->state.descriptors[set];
|
|
|
|
struct anv_descriptor_set_layout *set_layout = layout->set[set].layout;
|
|
|
|
struct anv_descriptor_slot *sampler_slots =
|
|
|
|
set_layout->stage[stage].sampler_start;
|
|
|
|
|
|
|
|
uint32_t start = layout->set[set].sampler_start[stage];
|
|
|
|
|
|
|
|
for (uint32_t b = 0; b < set_layout->stage[stage].sampler_count; b++) {
|
|
|
|
struct anv_sampler *sampler =
|
|
|
|
d->set->descriptors[sampler_slots[b].index].sampler;
|
|
|
|
|
|
|
|
if (!sampler)
|
|
|
|
continue;
|
|
|
|
|
|
|
|
memcpy(state->map + (start + b) * 16,
|
|
|
|
sampler->state, sizeof(sampler->state));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return VK_SUCCESS;
|
2015-07-30 11:36:48 -07:00
|
|
|
}
|
|
|
|
|
2015-07-30 14:59:02 -07:00
|
|
|
static VkResult
|
|
|
|
flush_descriptor_set(struct anv_cmd_buffer *cmd_buffer, uint32_t stage)
|
2015-07-15 12:09:52 -07:00
|
|
|
{
|
2015-07-30 14:59:02 -07:00
|
|
|
struct anv_state surfaces = { 0, }, samplers = { 0, };
|
|
|
|
VkResult result;
|
|
|
|
|
2015-08-17 16:17:07 -07:00
|
|
|
result = anv_cmd_buffer_emit_samplers(cmd_buffer, stage, &samplers);
|
2015-07-30 14:59:02 -07:00
|
|
|
if (result != VK_SUCCESS)
|
|
|
|
return result;
|
2015-08-17 16:17:07 -07:00
|
|
|
result = anv_cmd_buffer_emit_binding_table(cmd_buffer, stage, &surfaces);
|
2015-07-30 14:59:02 -07:00
|
|
|
if (result != VK_SUCCESS)
|
|
|
|
return result;
|
|
|
|
|
|
|
|
static const uint32_t sampler_state_opcodes[] = {
|
|
|
|
[VK_SHADER_STAGE_VERTEX] = 43,
|
|
|
|
[VK_SHADER_STAGE_TESS_CONTROL] = 44, /* HS */
|
|
|
|
[VK_SHADER_STAGE_TESS_EVALUATION] = 45, /* DS */
|
|
|
|
[VK_SHADER_STAGE_GEOMETRY] = 46,
|
|
|
|
[VK_SHADER_STAGE_FRAGMENT] = 47,
|
|
|
|
[VK_SHADER_STAGE_COMPUTE] = 0,
|
|
|
|
};
|
|
|
|
|
|
|
|
static const uint32_t binding_table_opcodes[] = {
|
|
|
|
[VK_SHADER_STAGE_VERTEX] = 38,
|
|
|
|
[VK_SHADER_STAGE_TESS_CONTROL] = 39,
|
|
|
|
[VK_SHADER_STAGE_TESS_EVALUATION] = 40,
|
|
|
|
[VK_SHADER_STAGE_GEOMETRY] = 41,
|
|
|
|
[VK_SHADER_STAGE_FRAGMENT] = 42,
|
|
|
|
[VK_SHADER_STAGE_COMPUTE] = 0,
|
|
|
|
};
|
|
|
|
|
|
|
|
if (samplers.alloc_size > 0) {
|
|
|
|
anv_batch_emit(&cmd_buffer->batch,
|
|
|
|
GEN8_3DSTATE_SAMPLER_STATE_POINTERS_VS,
|
|
|
|
._3DCommandSubOpcode = sampler_state_opcodes[stage],
|
|
|
|
.PointertoVSSamplerState = samplers.offset);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (surfaces.alloc_size > 0) {
|
|
|
|
anv_batch_emit(&cmd_buffer->batch,
|
|
|
|
GEN8_3DSTATE_BINDING_TABLE_POINTERS_VS,
|
|
|
|
._3DCommandSubOpcode = binding_table_opcodes[stage],
|
|
|
|
.PointertoVSBindingTable = surfaces.offset);
|
|
|
|
}
|
|
|
|
|
|
|
|
return VK_SUCCESS;
|
2015-07-15 12:09:52 -07:00
|
|
|
}
|
|
|
|
|
2015-08-17 16:17:07 -07:00
|
|
|
void
|
|
|
|
anv_flush_descriptor_sets(struct anv_cmd_buffer *cmd_buffer)
|
2015-07-15 12:09:52 -07:00
|
|
|
{
|
2015-07-30 14:59:02 -07:00
|
|
|
uint32_t s, dirty = cmd_buffer->state.descriptors_dirty &
|
|
|
|
cmd_buffer->state.pipeline->active_stages;
|
2015-07-15 12:09:52 -07:00
|
|
|
|
2015-07-30 11:32:27 -07:00
|
|
|
VkResult result = VK_SUCCESS;
|
2015-07-30 14:59:02 -07:00
|
|
|
for_each_bit(s, dirty) {
|
|
|
|
result = flush_descriptor_set(cmd_buffer, s);
|
2015-07-30 11:32:27 -07:00
|
|
|
if (result != VK_SUCCESS)
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (result != VK_SUCCESS) {
|
2015-07-30 14:59:02 -07:00
|
|
|
assert(result == VK_ERROR_OUT_OF_DEVICE_MEMORY);
|
2015-07-30 11:32:27 -07:00
|
|
|
|
2015-07-30 14:59:02 -07:00
|
|
|
result = anv_cmd_buffer_new_surface_state_bo(cmd_buffer);
|
|
|
|
assert(result == VK_SUCCESS);
|
2015-07-30 11:32:27 -07:00
|
|
|
|
2015-07-30 14:59:02 -07:00
|
|
|
/* Re-emit state base addresses so we get the new surface state base
|
|
|
|
* address before we start emitting binding tables etc.
|
|
|
|
*/
|
|
|
|
anv_cmd_buffer_emit_state_base_address(cmd_buffer);
|
2015-07-15 12:09:52 -07:00
|
|
|
|
2015-07-30 14:59:02 -07:00
|
|
|
/* Re-emit all active binding tables */
|
|
|
|
for_each_bit(s, cmd_buffer->state.pipeline->active_stages) {
|
|
|
|
result = flush_descriptor_set(cmd_buffer, s);
|
2015-07-28 17:47:04 -07:00
|
|
|
|
2015-07-30 14:59:02 -07:00
|
|
|
/* It had better succeed this time */
|
|
|
|
assert(result == VK_SUCCESS);
|
|
|
|
}
|
|
|
|
}
|
2015-07-28 17:47:04 -07:00
|
|
|
|
2015-07-30 14:59:02 -07:00
|
|
|
cmd_buffer->state.descriptors_dirty &= ~cmd_buffer->state.pipeline->active_stages;
|
2015-07-28 17:47:04 -07:00
|
|
|
}
|
|
|
|
|
2015-08-17 16:17:07 -07:00
|
|
|
struct anv_state
|
2015-07-30 14:59:02 -07:00
|
|
|
anv_cmd_buffer_emit_dynamic(struct anv_cmd_buffer *cmd_buffer,
|
|
|
|
uint32_t *a, uint32_t dwords, uint32_t alignment)
|
2015-07-29 11:57:44 -07:00
|
|
|
{
|
2015-07-30 14:59:02 -07:00
|
|
|
struct anv_state state;
|
|
|
|
|
|
|
|
state = anv_cmd_buffer_alloc_dynamic_state(cmd_buffer,
|
|
|
|
dwords * 4, alignment);
|
|
|
|
memcpy(state.map, a, dwords * 4);
|
|
|
|
|
|
|
|
VG(VALGRIND_CHECK_MEM_IS_DEFINED(state.map, dwords * 4));
|
|
|
|
|
|
|
|
return state;
|
2015-07-29 11:57:44 -07:00
|
|
|
}
|
|
|
|
|
2015-08-17 16:17:07 -07:00
|
|
|
struct anv_state
|
2015-07-30 14:59:02 -07:00
|
|
|
anv_cmd_buffer_merge_dynamic(struct anv_cmd_buffer *cmd_buffer,
|
|
|
|
uint32_t *a, uint32_t *b,
|
|
|
|
uint32_t dwords, uint32_t alignment)
|
2015-07-30 11:34:58 -07:00
|
|
|
{
|
2015-07-30 14:59:02 -07:00
|
|
|
struct anv_state state;
|
|
|
|
uint32_t *p;
|
2015-07-30 11:34:58 -07:00
|
|
|
|
2015-07-30 14:59:02 -07:00
|
|
|
state = anv_cmd_buffer_alloc_dynamic_state(cmd_buffer,
|
|
|
|
dwords * 4, alignment);
|
|
|
|
p = state.map;
|
|
|
|
for (uint32_t i = 0; i < dwords; i++)
|
|
|
|
p[i] = a[i] | b[i];
|
2015-07-30 11:34:58 -07:00
|
|
|
|
2015-07-30 14:59:02 -07:00
|
|
|
VG(VALGRIND_CHECK_MEM_IS_DEFINED(p, dwords * 4));
|
2015-07-30 11:34:58 -07:00
|
|
|
|
2015-07-30 14:59:02 -07:00
|
|
|
return state;
|
2015-07-30 11:34:58 -07:00
|
|
|
}
|
|
|
|
|
2015-08-17 16:17:07 -07:00
|
|
|
void
|
|
|
|
anv_cmd_buffer_begin_subpass(struct anv_cmd_buffer *cmd_buffer,
|
|
|
|
struct anv_subpass *subpass)
|
2015-07-30 14:59:02 -07:00
|
|
|
{
|
2015-08-17 16:17:07 -07:00
|
|
|
gen8_cmd_buffer_begin_subpass(cmd_buffer, subpass);
|
2015-07-30 14:59:02 -07:00
|
|
|
}
|
2015-07-15 12:09:52 -07:00
|
|
|
|
2015-07-30 14:59:02 -07:00
|
|
|
void anv_CmdSetEvent(
|
|
|
|
VkCmdBuffer cmdBuffer,
|
|
|
|
VkEvent event,
|
|
|
|
VkPipelineStageFlags stageMask)
|
|
|
|
{
|
|
|
|
stub();
|
|
|
|
}
|
2015-07-15 12:09:52 -07:00
|
|
|
|
2015-07-30 14:59:02 -07:00
|
|
|
void anv_CmdResetEvent(
|
|
|
|
VkCmdBuffer cmdBuffer,
|
|
|
|
VkEvent event,
|
|
|
|
VkPipelineStageFlags stageMask)
|
|
|
|
{
|
|
|
|
stub();
|
2015-07-27 14:23:56 -07:00
|
|
|
}
|
|
|
|
|
2015-07-30 14:59:02 -07:00
|
|
|
void anv_CmdWaitEvents(
|
|
|
|
VkCmdBuffer cmdBuffer,
|
|
|
|
uint32_t eventCount,
|
|
|
|
const VkEvent* pEvents,
|
|
|
|
VkPipelineStageFlags srcStageMask,
|
|
|
|
VkPipelineStageFlags destStageMask,
|
|
|
|
uint32_t memBarrierCount,
|
|
|
|
const void* const* ppMemBarriers)
|
2015-07-27 14:23:56 -07:00
|
|
|
{
|
2015-07-30 14:59:02 -07:00
|
|
|
stub();
|
|
|
|
}
|
2015-07-27 14:23:56 -07:00
|
|
|
|
2015-07-30 14:59:02 -07:00
|
|
|
void anv_CmdPipelineBarrier(
|
|
|
|
VkCmdBuffer cmdBuffer,
|
|
|
|
VkPipelineStageFlags srcStageMask,
|
|
|
|
VkPipelineStageFlags destStageMask,
|
|
|
|
VkBool32 byRegion,
|
|
|
|
uint32_t memBarrierCount,
|
|
|
|
const void* const* ppMemBarriers)
|
|
|
|
{
|
|
|
|
ANV_FROM_HANDLE(anv_cmd_buffer, cmd_buffer, cmdBuffer);
|
|
|
|
uint32_t b, *dw;
|
2015-07-27 14:23:56 -07:00
|
|
|
|
2015-07-30 14:59:02 -07:00
|
|
|
struct GEN8_PIPE_CONTROL cmd = {
|
|
|
|
GEN8_PIPE_CONTROL_header,
|
|
|
|
.PostSyncOperation = NoWrite,
|
|
|
|
};
|
2015-07-27 14:23:56 -07:00
|
|
|
|
2015-07-30 14:59:02 -07:00
|
|
|
/* XXX: I think waitEvent is a no-op on our HW. We should verify that. */
|
|
|
|
|
|
|
|
if (anv_clear_mask(&srcStageMask, VK_PIPELINE_STAGE_TOP_OF_PIPE_BIT)) {
|
|
|
|
/* This is just what PIPE_CONTROL does */
|
2015-07-27 14:23:56 -07:00
|
|
|
}
|
|
|
|
|
2015-07-30 14:59:02 -07:00
|
|
|
if (anv_clear_mask(&srcStageMask,
|
|
|
|
VK_PIPELINE_STAGE_DRAW_INDIRECT_BIT |
|
|
|
|
VK_PIPELINE_STAGE_VERTEX_INPUT_BIT |
|
|
|
|
VK_PIPELINE_STAGE_VERTEX_SHADER_BIT |
|
|
|
|
VK_PIPELINE_STAGE_TESS_CONTROL_SHADER_BIT |
|
|
|
|
VK_PIPELINE_STAGE_TESS_EVALUATION_SHADER_BIT |
|
|
|
|
VK_PIPELINE_STAGE_GEOMETRY_SHADER_BIT |
|
|
|
|
VK_PIPELINE_STAGE_FRAGMENT_SHADER_BIT |
|
|
|
|
VK_PIPELINE_STAGE_EARLY_FRAGMENT_TESTS_BIT |
|
|
|
|
VK_PIPELINE_STAGE_LATE_FRAGMENT_TESTS_BIT |
|
|
|
|
VK_PIPELINE_STAGE_COLOR_ATTACHMENT_OUTPUT_BIT)) {
|
|
|
|
cmd.StallAtPixelScoreboard = true;
|
|
|
|
}
|
2015-07-29 11:57:44 -07:00
|
|
|
|
2015-07-29 15:28:51 -07:00
|
|
|
|
2015-07-30 14:59:02 -07:00
|
|
|
if (anv_clear_mask(&srcStageMask,
|
|
|
|
VK_PIPELINE_STAGE_COMPUTE_SHADER_BIT |
|
|
|
|
VK_PIPELINE_STAGE_TRANSFER_BIT |
|
|
|
|
VK_PIPELINE_STAGE_TRANSITION_BIT)) {
|
|
|
|
cmd.CommandStreamerStallEnable = true;
|
|
|
|
}
|
2015-07-29 15:28:51 -07:00
|
|
|
|
2015-07-30 14:59:02 -07:00
|
|
|
if (anv_clear_mask(&srcStageMask, VK_PIPELINE_STAGE_HOST_BIT)) {
|
|
|
|
anv_finishme("VK_PIPE_EVENT_CPU_SIGNAL_BIT");
|
|
|
|
}
|
2015-07-27 14:23:56 -07:00
|
|
|
|
2015-07-30 14:59:02 -07:00
|
|
|
/* On our hardware, all stages will wait for execution as needed. */
|
|
|
|
(void)destStageMask;
|
2015-07-29 12:01:02 -07:00
|
|
|
|
2015-07-30 14:59:02 -07:00
|
|
|
/* We checked all known VkPipeEventFlags. */
|
|
|
|
anv_assert(srcStageMask == 0);
|
2015-07-29 12:01:02 -07:00
|
|
|
|
2015-07-30 14:59:02 -07:00
|
|
|
/* XXX: Right now, we're really dumb and just flush whatever categories
|
|
|
|
* the app asks for. One of these days we may make this a bit better
|
|
|
|
* but right now that's all the hardware allows for in most areas.
|
|
|
|
*/
|
|
|
|
VkMemoryOutputFlags out_flags = 0;
|
|
|
|
VkMemoryInputFlags in_flags = 0;
|
|
|
|
|
|
|
|
for (uint32_t i = 0; i < memBarrierCount; i++) {
|
|
|
|
const struct anv_common *common = ppMemBarriers[i];
|
|
|
|
switch (common->sType) {
|
|
|
|
case VK_STRUCTURE_TYPE_MEMORY_BARRIER: {
|
|
|
|
ANV_COMMON_TO_STRUCT(VkMemoryBarrier, barrier, common);
|
|
|
|
out_flags |= barrier->outputMask;
|
|
|
|
in_flags |= barrier->inputMask;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
case VK_STRUCTURE_TYPE_BUFFER_MEMORY_BARRIER: {
|
|
|
|
ANV_COMMON_TO_STRUCT(VkBufferMemoryBarrier, barrier, common);
|
|
|
|
out_flags |= barrier->outputMask;
|
|
|
|
in_flags |= barrier->inputMask;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
case VK_STRUCTURE_TYPE_IMAGE_MEMORY_BARRIER: {
|
|
|
|
ANV_COMMON_TO_STRUCT(VkImageMemoryBarrier, barrier, common);
|
|
|
|
out_flags |= barrier->outputMask;
|
|
|
|
in_flags |= barrier->inputMask;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
default:
|
|
|
|
unreachable("Invalid memory barrier type");
|
|
|
|
}
|
|
|
|
}
|
2015-07-30 14:22:17 -07:00
|
|
|
|
2015-07-30 14:59:02 -07:00
|
|
|
for_each_bit(b, out_flags) {
|
|
|
|
switch ((VkMemoryOutputFlags)(1 << b)) {
|
|
|
|
case VK_MEMORY_OUTPUT_HOST_WRITE_BIT:
|
|
|
|
break; /* FIXME: Little-core systems */
|
|
|
|
case VK_MEMORY_OUTPUT_SHADER_WRITE_BIT:
|
|
|
|
cmd.DCFlushEnable = true;
|
|
|
|
break;
|
|
|
|
case VK_MEMORY_OUTPUT_COLOR_ATTACHMENT_BIT:
|
|
|
|
cmd.RenderTargetCacheFlushEnable = true;
|
|
|
|
break;
|
|
|
|
case VK_MEMORY_OUTPUT_DEPTH_STENCIL_ATTACHMENT_BIT:
|
|
|
|
cmd.DepthCacheFlushEnable = true;
|
|
|
|
break;
|
|
|
|
case VK_MEMORY_OUTPUT_TRANSFER_BIT:
|
|
|
|
cmd.RenderTargetCacheFlushEnable = true;
|
|
|
|
cmd.DepthCacheFlushEnable = true;
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
unreachable("Invalid memory output flag");
|
2015-07-30 14:22:17 -07:00
|
|
|
}
|
2015-07-30 11:36:48 -07:00
|
|
|
}
|
2015-07-29 21:22:10 -07:00
|
|
|
|
2015-07-30 14:59:02 -07:00
|
|
|
for_each_bit(b, out_flags) {
|
|
|
|
switch ((VkMemoryInputFlags)(1 << b)) {
|
|
|
|
case VK_MEMORY_INPUT_HOST_READ_BIT:
|
|
|
|
break; /* FIXME: Little-core systems */
|
|
|
|
case VK_MEMORY_INPUT_INDIRECT_COMMAND_BIT:
|
|
|
|
case VK_MEMORY_INPUT_INDEX_FETCH_BIT:
|
|
|
|
case VK_MEMORY_INPUT_VERTEX_ATTRIBUTE_FETCH_BIT:
|
|
|
|
cmd.VFCacheInvalidationEnable = true;
|
|
|
|
break;
|
|
|
|
case VK_MEMORY_INPUT_UNIFORM_READ_BIT:
|
|
|
|
cmd.ConstantCacheInvalidationEnable = true;
|
|
|
|
/* fallthrough */
|
|
|
|
case VK_MEMORY_INPUT_SHADER_READ_BIT:
|
|
|
|
cmd.DCFlushEnable = true;
|
|
|
|
cmd.TextureCacheInvalidationEnable = true;
|
|
|
|
break;
|
|
|
|
case VK_MEMORY_INPUT_COLOR_ATTACHMENT_BIT:
|
|
|
|
case VK_MEMORY_INPUT_DEPTH_STENCIL_ATTACHMENT_BIT:
|
|
|
|
break; /* XXX: Hunh? */
|
|
|
|
case VK_MEMORY_INPUT_TRANSFER_BIT:
|
|
|
|
cmd.TextureCacheInvalidationEnable = true;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
2015-07-29 12:01:02 -07:00
|
|
|
|
2015-07-30 14:59:02 -07:00
|
|
|
dw = anv_batch_emit_dwords(&cmd_buffer->batch, GEN8_PIPE_CONTROL_length);
|
|
|
|
GEN8_PIPE_CONTROL_pack(&cmd_buffer->batch, dw, &cmd);
|
2015-07-29 12:01:02 -07:00
|
|
|
}
|
|
|
|
|
2015-07-30 14:59:02 -07:00
|
|
|
void anv_CmdPushConstants(
|
|
|
|
VkCmdBuffer cmdBuffer,
|
|
|
|
VkPipelineLayout layout,
|
|
|
|
VkShaderStageFlags stageFlags,
|
|
|
|
uint32_t start,
|
|
|
|
uint32_t length,
|
|
|
|
const void* values)
|
2015-07-30 11:36:48 -07:00
|
|
|
{
|
2015-07-30 14:59:02 -07:00
|
|
|
stub();
|
|
|
|
}
|
2015-07-30 11:36:48 -07:00
|
|
|
|
2015-07-30 14:59:02 -07:00
|
|
|
void anv_CmdExecuteCommands(
|
|
|
|
VkCmdBuffer cmdBuffer,
|
|
|
|
uint32_t cmdBuffersCount,
|
|
|
|
const VkCmdBuffer* pCmdBuffers)
|
|
|
|
{
|
|
|
|
ANV_FROM_HANDLE(anv_cmd_buffer, primary, cmdBuffer);
|
2015-07-15 12:09:52 -07:00
|
|
|
|
2015-07-30 14:59:02 -07:00
|
|
|
assert(primary->level == VK_CMD_BUFFER_LEVEL_PRIMARY);
|
2015-07-15 12:09:52 -07:00
|
|
|
|
2015-07-30 14:59:02 -07:00
|
|
|
anv_assert(primary->state.subpass == &primary->state.pass->subpasses[0]);
|
2015-07-15 12:09:52 -07:00
|
|
|
|
2015-07-30 14:59:02 -07:00
|
|
|
for (uint32_t i = 0; i < cmdBuffersCount; i++) {
|
|
|
|
ANV_FROM_HANDLE(anv_cmd_buffer, secondary, pCmdBuffers[i]);
|
2015-07-29 15:13:21 -07:00
|
|
|
|
2015-07-30 14:59:02 -07:00
|
|
|
assert(secondary->level == VK_CMD_BUFFER_LEVEL_SECONDARY);
|
2015-07-15 12:09:52 -07:00
|
|
|
|
2015-07-30 14:59:02 -07:00
|
|
|
anv_cmd_buffer_add_secondary(primary, secondary);
|
|
|
|
}
|
2015-07-15 12:09:52 -07:00
|
|
|
}
|
|
|
|
|
2015-07-30 14:59:02 -07:00
|
|
|
VkResult anv_CreateCommandPool(
|
|
|
|
VkDevice _device,
|
|
|
|
const VkCmdPoolCreateInfo* pCreateInfo,
|
|
|
|
VkCmdPool* pCmdPool)
|
2015-07-15 12:09:52 -07:00
|
|
|
{
|
2015-07-30 14:59:02 -07:00
|
|
|
ANV_FROM_HANDLE(anv_device, device, _device);
|
|
|
|
struct anv_cmd_pool *pool;
|
2015-07-15 12:09:52 -07:00
|
|
|
|
2015-07-30 14:59:02 -07:00
|
|
|
pool = anv_device_alloc(device, sizeof(*pool), 8,
|
|
|
|
VK_SYSTEM_ALLOC_TYPE_API_OBJECT);
|
|
|
|
if (pool == NULL)
|
|
|
|
return vk_error(VK_ERROR_OUT_OF_HOST_MEMORY);
|
2015-07-15 12:09:52 -07:00
|
|
|
|
2015-07-30 14:59:02 -07:00
|
|
|
list_inithead(&pool->cmd_buffers);
|
2015-07-15 12:09:52 -07:00
|
|
|
|
2015-07-30 14:59:02 -07:00
|
|
|
*pCmdPool = anv_cmd_pool_to_handle(pool);
|
|
|
|
|
|
|
|
return VK_SUCCESS;
|
2015-07-15 12:09:52 -07:00
|
|
|
}
|
|
|
|
|
2015-07-30 14:59:02 -07:00
|
|
|
VkResult anv_DestroyCommandPool(
|
|
|
|
VkDevice _device,
|
|
|
|
VkCmdPool cmdPool)
|
2015-07-27 14:52:16 -07:00
|
|
|
{
|
2015-07-30 14:59:02 -07:00
|
|
|
ANV_FROM_HANDLE(anv_device, device, _device);
|
|
|
|
ANV_FROM_HANDLE(anv_cmd_pool, pool, cmdPool);
|
2015-07-15 12:09:52 -07:00
|
|
|
|
2015-07-30 14:59:02 -07:00
|
|
|
anv_ResetCommandPool(_device, cmdPool, 0);
|
2015-07-15 12:09:52 -07:00
|
|
|
|
2015-07-30 14:59:02 -07:00
|
|
|
anv_device_free(device, pool);
|
2015-07-29 15:13:21 -07:00
|
|
|
|
2015-07-30 14:59:02 -07:00
|
|
|
return VK_SUCCESS;
|
|
|
|
}
|
2015-07-29 15:13:21 -07:00
|
|
|
|
2015-07-30 14:59:02 -07:00
|
|
|
VkResult anv_ResetCommandPool(
|
|
|
|
VkDevice device,
|
|
|
|
VkCmdPool cmdPool,
|
|
|
|
VkCmdPoolResetFlags flags)
|
|
|
|
{
|
|
|
|
ANV_FROM_HANDLE(anv_cmd_pool, pool, cmdPool);
|
2015-07-29 15:13:21 -07:00
|
|
|
|
2015-07-30 14:59:02 -07:00
|
|
|
list_for_each_entry_safe(struct anv_cmd_buffer, cmd_buffer,
|
|
|
|
&pool->cmd_buffers, pool_link) {
|
|
|
|
anv_DestroyCommandBuffer(device, anv_cmd_buffer_to_handle(cmd_buffer));
|
2015-07-29 15:13:21 -07:00
|
|
|
}
|
|
|
|
|
2015-07-30 14:59:02 -07:00
|
|
|
return VK_SUCCESS;
|
2015-07-27 14:52:16 -07:00
|
|
|
}
|