amdgpu/addrlib: allow tileSplitBytes greater than row size

Carrizo row size is 1K, while tileSplitBytes is 2K for a 4xAA 32bpp
depth surface. Remove the sanity check that tileSplitBytes must be
greater than row size. There could be performance loss but may be
covered by non-split depth which enables tc-compatible read.
This commit is contained in:
Xiao-Tao Zai 2014-06-25 11:06:00 -04:00 committed by Marek Olšák
parent d52e0bbfe6
commit 47de94a794

View file

@ -994,7 +994,7 @@ BOOL_32 EgBasedAddrLib::SanityCheckMacroTiled(
{
if (pTileInfo->tileSplitBytes > m_rowSize)
{
valid = FALSE;
ADDR_WARN(0, ("tileSplitBytes is bigger than row size"));
}
}