mesa/src/imagination/vulkan/pvr_tex_state.c
Erik Faye-Lund cf08978985 pvr: break out pvr_instance and pvr_physical_device
These files shouldn't not be per-arch, so break them out to their own
modules before we start making things multi-arch.

Reviewed-by: Frank Binns <frank.binns@imgtec.com>
Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/38352>
2025-11-11 10:13:11 +01:00

349 lines
11 KiB
C

/*
* Copyright © 2022 Imagination Technologies Ltd.
*
* 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 <stdint.h>
#include <vulkan/vulkan.h>
#include "hwdef/rogue_hw_defs.h"
#include "pco/pco_common.h"
#include "pvr_csb.h"
#include "pvr_device.h"
#include "pvr_device_info.h"
#include "pvr_formats.h"
#include "pvr_physical_device.h"
#include "pvr_tex_state.h"
#include "util/macros.h"
#include "util/u_math.h"
#include "vk_format.h"
#include "vk_log.h"
static enum ROGUE_TEXSTATE_SWIZ pvr_get_hw_swizzle(VkComponentSwizzle comp,
enum pipe_swizzle swz)
{
switch (swz) {
case PIPE_SWIZZLE_0:
return ROGUE_TEXSTATE_SWIZ_SRC_ZERO;
case PIPE_SWIZZLE_1:
return ROGUE_TEXSTATE_SWIZ_SRC_ONE;
case PIPE_SWIZZLE_X:
return ROGUE_TEXSTATE_SWIZ_SRCCHAN_0;
case PIPE_SWIZZLE_Y:
return ROGUE_TEXSTATE_SWIZ_SRCCHAN_1;
case PIPE_SWIZZLE_Z:
return ROGUE_TEXSTATE_SWIZ_SRCCHAN_2;
case PIPE_SWIZZLE_W:
return ROGUE_TEXSTATE_SWIZ_SRCCHAN_3;
case PIPE_SWIZZLE_NONE:
if (comp == VK_COMPONENT_SWIZZLE_A)
return ROGUE_TEXSTATE_SWIZ_SRC_ONE;
else
return ROGUE_TEXSTATE_SWIZ_SRC_ZERO;
default:
UNREACHABLE("Unknown enum pipe_swizzle");
};
}
static uint32_t setup_pck_info(VkFormat vk_format)
{
/* TODO NEXT: commonize this.*/
enum pipe_format format = vk_format_to_pipe_format(vk_format);
enum pco_pck_format pck_format = ~0;
bool scale = false;
bool roundzero = false;
bool split = false;
switch (format) {
case PIPE_FORMAT_R8_UNORM:
case PIPE_FORMAT_R8G8_UNORM:
case PIPE_FORMAT_R8G8B8_UNORM:
case PIPE_FORMAT_R8G8B8A8_UNORM:
pck_format = PCO_PCK_FORMAT_U8888;
scale = true;
break;
case PIPE_FORMAT_R8_SNORM:
case PIPE_FORMAT_R8G8_SNORM:
case PIPE_FORMAT_R8G8B8_SNORM:
case PIPE_FORMAT_R8G8B8A8_SNORM:
pck_format = PCO_PCK_FORMAT_S8888;
scale = true;
break;
case PIPE_FORMAT_R11G11B10_FLOAT:
pck_format = PCO_PCK_FORMAT_F111110;
break;
/* TODO: better way to do the 1x2 component. */
case PIPE_FORMAT_R10G10B10A2_UNORM:
pck_format = PCO_PCK_FORMAT_U1010102;
scale = true;
break;
/* TODO: better way to do the 1x2 component. */
case PIPE_FORMAT_R10G10B10A2_SNORM:
pck_format = PCO_PCK_FORMAT_S1010102;
scale = true;
break;
case PIPE_FORMAT_R16_FLOAT:
case PIPE_FORMAT_R16G16_FLOAT:
case PIPE_FORMAT_R16G16B16_FLOAT:
case PIPE_FORMAT_R16G16B16A16_FLOAT:
pck_format = PCO_PCK_FORMAT_F16F16;
split = true;
break;
case PIPE_FORMAT_R16_UNORM:
case PIPE_FORMAT_R16G16_UNORM:
case PIPE_FORMAT_R16G16B16_UNORM:
case PIPE_FORMAT_R16G16B16A16_UNORM:
pck_format = PCO_PCK_FORMAT_U1616;
scale = true;
split = true;
break;
case PIPE_FORMAT_R16_SNORM:
case PIPE_FORMAT_R16G16_SNORM:
case PIPE_FORMAT_R16G16B16_SNORM:
case PIPE_FORMAT_R16G16B16A16_SNORM:
pck_format = PCO_PCK_FORMAT_S1616;
scale = true;
split = true;
break;
default:
break;
}
if (pck_format == ~0)
return pck_format;
uint32_t pck_info = pck_format;
if (split)
pck_info |= BITFIELD_BIT(5);
if (scale)
pck_info |= BITFIELD_BIT(6);
if (roundzero)
pck_info |= BITFIELD_BIT(7);
return pck_info;
}
VkResult pvr_pack_tex_state(struct pvr_device *device,
const struct pvr_texture_state_info *info,
struct pvr_image_descriptor *state)
{
const struct pvr_device_info *dev_info = &device->pdevice->dev_info;
enum pvr_memlayout mem_layout;
VkImageViewType iview_type;
if (info->type == VK_IMAGE_VIEW_TYPE_1D &&
info->mem_layout == PVR_MEMLAYOUT_LINEAR) {
/* Change the memory layout to twiddled as there isn't a TEXSTATE_TEXTYPE
* for 1D linear and 1D twiddled is equivalent.
*/
mem_layout = PVR_MEMLAYOUT_TWIDDLED;
} else {
mem_layout = info->mem_layout;
}
if (info->is_cube && info->tex_state_type != PVR_TEXTURE_STATE_SAMPLE)
iview_type = VK_IMAGE_VIEW_TYPE_2D;
else
iview_type = info->type;
pvr_csb_pack (&state->words[0], TEXSTATE_IMAGE_WORD0, word0) {
if (mem_layout == PVR_MEMLAYOUT_LINEAR) {
switch (iview_type) {
case VK_IMAGE_VIEW_TYPE_2D:
case VK_IMAGE_VIEW_TYPE_2D_ARRAY:
word0.textype = ROGUE_TEXSTATE_TEXTYPE_STRIDE;
break;
default:
return vk_error(device, VK_ERROR_FORMAT_NOT_SUPPORTED);
}
} else if (mem_layout == PVR_MEMLAYOUT_TWIDDLED) {
switch (iview_type) {
case VK_IMAGE_VIEW_TYPE_1D:
case VK_IMAGE_VIEW_TYPE_1D_ARRAY:
word0.textype = ROGUE_TEXSTATE_TEXTYPE_1D;
break;
case VK_IMAGE_VIEW_TYPE_2D:
case VK_IMAGE_VIEW_TYPE_2D_ARRAY:
word0.textype = ROGUE_TEXSTATE_TEXTYPE_2D;
break;
case VK_IMAGE_VIEW_TYPE_CUBE:
case VK_IMAGE_VIEW_TYPE_CUBE_ARRAY:
word0.textype = ROGUE_TEXSTATE_TEXTYPE_CUBE;
break;
default:
return vk_error(device, VK_ERROR_FORMAT_NOT_SUPPORTED);
}
} else if (mem_layout == PVR_MEMLAYOUT_3DTWIDDLED) {
switch (iview_type) {
case VK_IMAGE_VIEW_TYPE_2D:
case VK_IMAGE_VIEW_TYPE_2D_ARRAY:
case VK_IMAGE_VIEW_TYPE_3D:
word0.textype = ROGUE_TEXSTATE_TEXTYPE_3D;
break;
default:
return vk_error(device, VK_ERROR_FORMAT_NOT_SUPPORTED);
}
} else {
UNREACHABLE("Unknown memory layout");
}
/* When sampling from a combined D/S image, the TPU will default to only
* the depth aspect.
* The driver must select the correct single aspect format when sampling
* to avoid this.
*/
word0.texformat =
pvr_get_tex_format_aspect(info->format, info->aspect_mask);
word0.smpcnt = util_logbase2(info->sample_count);
word0.swiz0 =
pvr_get_hw_swizzle(VK_COMPONENT_SWIZZLE_R, info->swizzle[0]);
word0.swiz1 =
pvr_get_hw_swizzle(VK_COMPONENT_SWIZZLE_G, info->swizzle[1]);
word0.swiz2 =
pvr_get_hw_swizzle(VK_COMPONENT_SWIZZLE_B, info->swizzle[2]);
word0.swiz3 =
pvr_get_hw_swizzle(VK_COMPONENT_SWIZZLE_A, info->swizzle[3]);
/* Gamma */
if (vk_format_is_srgb(info->format)) {
/* Gamma for 2 Component Formats has to be handled differently. */
if (vk_format_get_nr_components(info->format) == 2) {
/* Enable Gamma only for Channel 0 if Channel 1 is an Alpha
* Channel.
*/
if (vk_format_has_alpha(info->format)) {
word0.twocomp_gamma = ROGUE_TEXSTATE_TWOCOMP_GAMMA_R;
} else {
/* Otherwise Enable Gamma for both the Channels. */
word0.twocomp_gamma = ROGUE_TEXSTATE_TWOCOMP_GAMMA_RG;
/* If Channel 0 happens to be the Alpha Channel, the
* ALPHA_MSB bit would not be set thereby disabling Gamma
* for Channel 0.
*/
}
} else {
word0.gamma = ROGUE_TEXSTATE_GAMMA_ON;
}
}
word0.width = info->extent.width - 1;
if (iview_type != VK_IMAGE_VIEW_TYPE_1D &&
iview_type != VK_IMAGE_VIEW_TYPE_1D_ARRAY)
word0.height = info->extent.height - 1;
}
if (mem_layout == PVR_MEMLAYOUT_LINEAR) {
pvr_csb_pack (&state->words[1], TEXSTATE_STRIDE_IMAGE_WORD1, word1) {
assert(info->stride > 0U);
word1.stride = info->stride - 1U;
word1.num_mip_levels = info->mip_levels;
word1.mipmaps_present = info->mipmaps_present;
word1.texaddr = PVR_DEV_ADDR_OFFSET(info->addr, info->offset);
if (vk_format_is_alpha_on_msb(info->format))
word1.alpha_msb = true;
if (!PVR_HAS_FEATURE(dev_info, tpu_extended_integer_lookup) &&
!PVR_HAS_FEATURE(dev_info, tpu_image_state_v2)) {
if (info->flags & PVR_TEXFLAGS_INDEX_LOOKUP ||
info->flags & PVR_TEXFLAGS_BUFFER)
word1.index_lookup = true;
}
if (info->flags & PVR_TEXFLAGS_BUFFER)
word1.mipmaps_present = false;
if (PVR_HAS_FEATURE(dev_info, tpu_image_state_v2) &&
vk_format_is_compressed(info->format))
word1.tpu_image_state_v2_compression_mode =
ROGUE_TEXSTATE_COMPRESSION_MODE_TPU;
}
} else {
pvr_csb_pack (&state->words[1], TEXSTATE_IMAGE_WORD1, word1) {
word1.num_mip_levels = info->mip_levels;
word1.mipmaps_present = info->mipmaps_present;
word1.baselevel = info->base_level;
if (iview_type == VK_IMAGE_VIEW_TYPE_3D ||
/* 2d view of 3d */
(iview_type == VK_IMAGE_VIEW_TYPE_2D &&
mem_layout == PVR_MEMLAYOUT_3DTWIDDLED)) {
if (info->extent.depth > 0)
word1.depth = info->extent.depth - 1;
} else {
uint32_t array_layers = info->array_size;
if (iview_type == VK_IMAGE_VIEW_TYPE_CUBE_ARRAY)
array_layers /= 6;
if (array_layers > 0)
word1.depth = array_layers - 1;
}
word1.texaddr = PVR_DEV_ADDR_OFFSET(info->addr, info->offset);
if (!PVR_HAS_FEATURE(dev_info, tpu_extended_integer_lookup) &&
!PVR_HAS_FEATURE(dev_info, tpu_image_state_v2)) {
if (info->flags & PVR_TEXFLAGS_INDEX_LOOKUP ||
info->flags & PVR_TEXFLAGS_BUFFER)
word1.index_lookup = true;
}
if (info->flags & PVR_TEXFLAGS_BUFFER)
word1.mipmaps_present = false;
if (info->flags & PVR_TEXFLAGS_BORDER)
word1.border = true;
if (vk_format_is_alpha_on_msb(info->format))
word1.alpha_msb = true;
if (PVR_HAS_FEATURE(dev_info, tpu_image_state_v2) &&
vk_format_is_compressed(info->format))
word1.tpu_image_state_v2_compression_mode =
ROGUE_TEXSTATE_COMPRESSION_MODE_TPU;
}
}
state->meta[PCO_IMAGE_META_LAYER_SIZE] = info->layer_size;
state->meta[PCO_IMAGE_META_BUFFER_ELEMS] = info->buffer_elems;
state->meta[PCO_IMAGE_META_Z_SLICE] = info->z_slice;
state->meta[PCO_IMAGE_META_PCK_INFO] = setup_pck_info(info->format);
return VK_SUCCESS;
}