summaryrefslogtreecommitdiff
path: root/src/amd/addrlib/src/core/addrlib2.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/amd/addrlib/src/core/addrlib2.h')
-rw-r--r--src/amd/addrlib/src/core/addrlib2.h87
1 files changed, 52 insertions, 35 deletions
diff --git a/src/amd/addrlib/src/core/addrlib2.h b/src/amd/addrlib/src/core/addrlib2.h
index d3032f5eab9..d652244ec37 100644
--- a/src/amd/addrlib/src/core/addrlib2.h
+++ b/src/amd/addrlib/src/core/addrlib2.h
@@ -1,28 +1,11 @@
/*
- * Copyright © 2007-2019 Advanced Micro Devices, Inc.
- * All Rights Reserved.
- *
- * 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, sub license, 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 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
- * NON-INFRINGEMENT. IN NO EVENT SHALL THE COPYRIGHT HOLDERS, AUTHORS
- * AND/OR ITS SUPPLIERS 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.
- *
- * The above copyright notice and this permission notice (including the
- * next paragraph) shall be included in all copies or substantial portions
- * of the Software.
- */
+************************************************************************************************************************
+*
+* Copyright (C) 2007-2022 Advanced Micro Devices, Inc. All rights reserved.
+* SPDX-License-Identifier: MIT
+*
+***********************************************************************************************************************/
+
/**
************************************************************************************************************************
@@ -104,6 +87,8 @@ enum AddrBlockType
AddrBlockThickVar = 7, // Resource uses thick var block
AddrBlockMaxTiledType,
+ AddrBlockThin256KB = AddrBlockThinVar,
+ AddrBlockThick256KB = AddrBlockThickVar,
};
enum AddrSwSet
@@ -146,6 +131,8 @@ union ADDR_BIT_SETTING
* @brief Swizzle pattern information
************************************************************************************************************************
*/
+// Accessed by index representing the logbase2 of (8bpp/16bpp/32bpp/64bpp/128bpp)
+// contains the indices which map to 2D arrays SW_PATTERN_NIBBLE[0-9] which contain sections of an index equation. They are dependant on pipe# and bpe #
struct ADDR_SW_PATINFO
{
UINT_8 maxItemCount;
@@ -304,6 +291,10 @@ public:
const ADDR2_GET_PREFERRED_SURF_SETTING_INPUT* pIn,
ADDR2_GET_PREFERRED_SURF_SETTING_OUTPUT* pOut) const;
+ ADDR_E_RETURNCODE GetPossibleSwizzleModes(
+ const ADDR2_GET_PREFERRED_SURF_SETTING_INPUT* pIn,
+ ADDR2_GET_PREFERRED_SURF_SETTING_OUTPUT* pOut) const;
+
virtual BOOL_32 IsValidDisplaySwizzleMode(
const ADDR2_COMPUTE_SURFACE_INFO_INPUT* pIn) const
{
@@ -311,11 +302,21 @@ public:
return ADDR_NOTIMPLEMENTED;
}
+ ADDR_E_RETURNCODE GetAllowedBlockSet(
+ ADDR2_SWMODE_SET allowedSwModeSet,
+ AddrResourceType rsrcType,
+ ADDR2_BLOCK_SET* pAllowedBlockSet) const;
+
+ ADDR_E_RETURNCODE GetAllowedSwSet(
+ ADDR2_SWMODE_SET allowedSwModeSet,
+ ADDR2_SWTYPE_SET* pAllowedSwSet) const;
+
protected:
Lib(); // Constructor is protected
Lib(const Client* pClient);
static const UINT_32 MaxNumOfBpp = 5;
+ static const UINT_32 MaxNumOfBppCMask = 4;
static const UINT_32 MaxNumOfAA = 4;
static const Dim2d Block256_2d[MaxNumOfBpp];
@@ -668,6 +669,31 @@ protected:
return ADDR_NOTSUPPORTED;
}
+ virtual ADDR_E_RETURNCODE HwlGetPossibleSwizzleModes(
+ const ADDR2_GET_PREFERRED_SURF_SETTING_INPUT* pIn,
+ ADDR2_GET_PREFERRED_SURF_SETTING_OUTPUT* pOut) const
+ {
+ ADDR_NOT_IMPLEMENTED();
+ return ADDR_NOTSUPPORTED;
+ }
+
+ virtual ADDR_E_RETURNCODE HwlGetAllowedBlockSet(
+ ADDR2_SWMODE_SET allowedSwModeSet,
+ AddrResourceType rsrcType,
+ ADDR2_BLOCK_SET* pAllowedBlockSet) const
+ {
+ ADDR_NOT_IMPLEMENTED();
+ return ADDR_NOTIMPLEMENTED;
+ }
+
+ virtual ADDR_E_RETURNCODE HwlGetAllowedSwSet(
+ ADDR2_SWMODE_SET allowedSwModeSet,
+ ADDR2_SWTYPE_SET* pAllowedSwSet) const
+ {
+ ADDR_NOT_IMPLEMENTED();
+ return ADDR_NOTIMPLEMENTED;
+ }
+
virtual ADDR_E_RETURNCODE HwlComputeSurfaceInfoSanityCheck(
const ADDR2_COMPUTE_SURFACE_INFO_INPUT* pIn) const
{
@@ -921,17 +947,8 @@ protected:
VOID FilterInvalidEqSwizzleMode(
ADDR2_SWMODE_SET& allowedSwModeSet,
AddrResourceType resourceType,
- UINT_32 elemLog2) const;
-
- static BOOL_32 IsBlockTypeAvaiable(ADDR2_BLOCK_SET blockSet, AddrBlockType blockType);
-
- static BOOL_32 BlockTypeWithinMemoryBudget(
- UINT_64 minSize,
- UINT_64 newBlockTypeSize,
- UINT_32 ratioLow,
- UINT_32 ratioHi,
- DOUBLE memoryBudget = 0.0f,
- BOOL_32 newBlockTypeBigger = TRUE);
+ UINT_32 elemLog2,
+ UINT_32 maxComponents) const;
#if DEBUG
VOID ValidateStereoInfo(