1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249
|
/*==============================================================================
Copyright(c) 2017 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 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 "Internal/Common/GmmLibInc.h"
/////////////////////////////////////////////////////////////////////////////////////
/// Calculates the mip offset of given LOD in 1D mip layout
///
/// @param[in] pTexInfo: ptr to ::GMM_TEXTURE_INFO,
///
/// @return offset value in bytes
/////////////////////////////////////////////////////////////////////////////////////
GMM_GFX_SIZE_T GmmLib::GmmGen9TextureCalc::Get1DTexOffsetAddressPerMip(GMM_TEXTURE_INFO *pTexInfo,
uint32_t MipLevel)
{
uint32_t AlignedMipWidth, MipWidth, __MipLevel;
uint32_t i, HAlign;
GMM_GFX_SIZE_T MipOffset = 0;
uint8_t Compressed;
uint32_t CompressHeight, CompressWidth, CompressDepth;
GMM_DPF_ENTER;
HAlign = pTexInfo->Alignment.HAlign;
MipWidth = GFX_ULONG_CAST(pTexInfo->BaseWidth);
__MipLevel =
(pTexInfo->Flags.Info.TiledYf || GMM_IS_64KB_TILE(pTexInfo->Flags)) ?
GFX_MIN(MipLevel, pTexInfo->Alignment.MipTailStartLod) :
MipLevel;
Compressed = GmmIsCompressed(pTexInfo->Format);
GetCompressionBlockDimensions(pTexInfo->Format, &CompressWidth, &CompressHeight, &CompressDepth);
for(i = 1; i <= __MipLevel; i++)
{
AlignedMipWidth = __GMM_EXPAND_WIDTH(this, MipWidth, HAlign, pTexInfo);
if(Compressed)
{
AlignedMipWidth /= CompressWidth;
}
MipOffset += AlignedMipWidth;
MipWidth = GFX_ULONG_CAST(GmmTexGetMipWidth(pTexInfo, i));
}
MipOffset *= (pTexInfo->BitsPerPixel >> 3);
if((pTexInfo->Flags.Info.TiledYf || GMM_IS_64KB_TILE(pTexInfo->Flags)) &&
(MipLevel >= pTexInfo->Alignment.MipTailStartLod))
{
MipOffset += GetMipTailByteOffset(pTexInfo, MipLevel);
}
GMM_DPF_EXIT;
return (MipOffset);
}
/////////////////////////////////////////////////////////////////////////////////////
/// Calculates the address offset for each mip map of 1D texture and store them into
/// the GMM_TEXTURE_INFO for surf state programming.
///
/// @param[in] pTexInfo: ptr to ::GMM_TEXTURE_INFO,
///
/////////////////////////////////////////////////////////////////////////////////////
void GmmLib::GmmGen9TextureCalc::Fill1DTexOffsetAddress(GMM_TEXTURE_INFO *pTexInfo)
{
uint32_t i;
GMM_DPF_ENTER;
pTexInfo->OffsetInfo.Texture2DOffsetInfo.ArrayQPitchRender =
pTexInfo->OffsetInfo.Texture2DOffsetInfo.ArrayQPitchLock =
pTexInfo->Alignment.QPitch * pTexInfo->BitsPerPixel >> 3;
for(i = 0; i <= pTexInfo->MaxLod; i++)
{
pTexInfo->OffsetInfo.Texture2DOffsetInfo.Offset[i] = Get1DTexOffsetAddressPerMip(pTexInfo, i);
}
GMM_DPF_EXIT;
}
/////////////////////////////////////////////////////////////////////////////////////
/// Allocates the 1D mip layout for surface state programming.
///
/// @param[in] pTexInfo: ptr to ::GMM_TEXTURE_INFO,
/// @param[in] pRestrictions: ptr to surface alignment and size restrictions
///
/// @return ::GMM_STATUS
/////////////////////////////////////////////////////////////////////////////////////
GMM_STATUS GMM_STDCALL GmmLib::GmmGen9TextureCalc::FillTex1D(GMM_TEXTURE_INFO * pTexInfo,
__GMM_BUFFER_TYPE *pRestrictions)
{
uint32_t ArraySize, BitsPerPixel, HAlign, i, Width, MipWidth;
int64_t Size;
GMM_STATUS Status = GMM_SUCCESS;
uint8_t Compressed;
uint32_t CompressHeight, CompressWidth, CompressDepth;
GMM_DPF_ENTER;
__GMM_ASSERTPTR(pTexInfo, GMM_ERROR);
__GMM_ASSERTPTR(pRestrictions, GMM_ERROR);
__GMM_ASSERT(pTexInfo->Flags.Info.Linear ||
pTexInfo->Flags.Info.TiledYf ||
GMM_IS_64KB_TILE(pTexInfo->Flags));
pTexInfo->Flags.Info.Linear = 1;
pTexInfo->Flags.Info.TiledW = 0;
pTexInfo->Flags.Info.TiledX = 0;
GMM_SET_4KB_TILE(pTexInfo->Flags, 0);
const GMM_PLATFORM_INFO *pPlatform = GMM_OVERRIDE_PLATFORM_INFO(pTexInfo);
ArraySize = GFX_MAX(pTexInfo->ArraySize, 1);
BitsPerPixel = pTexInfo->BitsPerPixel;
HAlign = pTexInfo->Alignment.HAlign;
Compressed = GmmIsCompressed(pTexInfo->Format);
GetCompressionBlockDimensions(pTexInfo->Format, &CompressWidth, &CompressHeight, &CompressDepth);
if(pTexInfo->Flags.Info.TiledYf || GMM_IS_64KB_TILE(pTexInfo->Flags))
{
FindMipTailStartLod(pTexInfo);
}
/////////////////////////////
// Calculate Surface QPitch
/////////////////////////////
Width = __GMM_EXPAND_WIDTH(this, GFX_ULONG_CAST(pTexInfo->BaseWidth), HAlign, pTexInfo);
MipWidth = Width;
if((pTexInfo->Flags.Info.TiledYf || GMM_IS_64KB_TILE(pTexInfo->Flags)) &&
((pTexInfo->Alignment.MipTailStartLod == 0) || (pTexInfo->MaxLod == 0)))
{
// Do nothing. Width is already aligned.
}
else
{
for(i = 1; i <= pTexInfo->MaxLod; i++)
{
uint32_t AlignedMipWidth;
if((pTexInfo->Flags.Info.TiledYf || GMM_IS_64KB_TILE(pTexInfo->Flags)) &&
(i == pTexInfo->Alignment.MipTailStartLod))
{
Width += pPlatform->TileInfo[pTexInfo->TileMode].LogicalTileWidth;
break;
}
else
{
MipWidth = GFX_ULONG_CAST(GmmTexGetMipWidth(pTexInfo, i));
AlignedMipWidth = __GMM_EXPAND_WIDTH(this, MipWidth, HAlign, pTexInfo);
if(Compressed)
{
AlignedMipWidth /= CompressWidth;
}
Width += AlignedMipWidth;
}
}
}
pTexInfo->Alignment.QPitch = GFX_ALIGN((ArraySize > 1) ? Width : 0, HAlign); // in pixels
pTexInfo->Pitch = 0;
///////////////////////////
// Calculate Surface Size
///////////////////////////
Width *= BitsPerPixel >> 3;
Size = GFX_ALIGN((uint64_t)Width * ArraySize, PAGE_SIZE);
if(Size <= pPlatform->SurfaceMaxSize)
{
pTexInfo->Size = Size;
Fill1DTexOffsetAddress(pTexInfo);
}
else
{
GMM_ASSERTDPF(0, "Surface too large!");
Status = GMM_ERROR;
}
//////////////////////
// Surface Alignment
//////////////////////
if(!pTexInfo->Alignment.BaseAlignment || __GMM_IS_ALIGN(pRestrictions->Alignment, pTexInfo->Alignment.BaseAlignment))
{
pTexInfo->Alignment.BaseAlignment = pRestrictions->Alignment;
}
else if(__GMM_IS_ALIGN(pTexInfo->Alignment.BaseAlignment, pRestrictions->Alignment))
{
// Do nothing: pTexInfo->Alignment.BaseAlignment is properly aligned
}
else
{
pTexInfo->Alignment.BaseAlignment = pTexInfo->Alignment.BaseAlignment * pRestrictions->Alignment;
GMM_ASSERTDPF(0,
"Client requested alignment that is not properly aligned to HW requirements."
"Alignment is going to be much higher to match both client and HW requirements.\r\n");
}
GMM_DPF_EXIT;
return (Status);
}
/////////////////////////////////////////////////////////////////////////////////////
/// Calculates height of the 2D mip layout on Gen9
///
/// @param[in] pTexInfo: ptr to ::GMM_TEXTURE_INFO,
///
/// @return height of 2D mip layout
/////////////////////////////////////////////////////////////////////////////////////
uint32_t GmmLib::GmmGen9TextureCalc::Get2DMipMapHeight(GMM_TEXTURE_INFO *pTexInfo)
{
uint32_t BlockHeight, MipHeight;
uint32_t HeightLinesLevel0, HeightLinesLevel1, HeightLinesLevel2;
uint32_t i, MipLevel, VAlign, CompressHeight, CompressWidth, CompressDepth;
uint8_t Compressed;
GMM_DPF_ENTER;
const GMM_PLATFORM_INFO *pPlatform = GMM_OVERRIDE_PLATFORM_INFO(pTexInfo);
Compressed = GmmIsCompressed(pTexInfo->Format);
MipHeight = pTexInfo->BaseHeight;
MipLevel = pTexInfo->MaxLod;
VAlign = pTexInfo->Alignment.VAlign;
GetCompressionBlockDimensions(pTexInfo->Format, &CompressWidth, &CompressHeight, &CompressDepth);
HeightLinesLevel0 = __GMM_EXPAND_HEIGHT(this, MipHeight, VAlign, pTexInfo);
if(Compressed)
{
HeightLinesLevel0 /= CompressHeight;
}
else if(pTexInfo->Flags.Gpu.SeparateStencil && pTexInfo->Flags.Info.TiledW)
{
HeightLinesLevel0 /= 2;
}
else if(pTexInfo->Flags.Gpu.CCS && pTexInfo->Flags.Gpu.__NonMsaaTileYCcs)
{
HeightLinesLevel0 /= 16;
}
// Mip0 height...
BlockHeight = HeightLinesLevel0;
if((pTexInfo->Flags.Info.TiledYf || pTexInfo->Flags.Info.TiledYs) &&
((pTexInfo->Alignment.MipTailStartLod == 0) || (pTexInfo->MaxLod == 0)))
{
// Do nothing. Height is already aligned.
}
else
{
// Height of Mip1 and Mip2..n needed later...
HeightLinesLevel1 = HeightLinesLevel2 = 0;
for(i = 1; i <= MipLevel; i++)
{
uint32_t AlignedHeightLines;
if((pTexInfo->Flags.Info.TiledYf || pTexInfo->Flags.Info.TiledYs) &&
(i == pTexInfo->Alignment.MipTailStartLod))
{
AlignedHeightLines = pPlatform->TileInfo[pTexInfo->TileMode].LogicalTileHeight;
if(i == 1)
{
HeightLinesLevel1 = AlignedHeightLines;
}
else
{
HeightLinesLevel2 += AlignedHeightLines;
}
break;
}
else
{
MipHeight = GmmTexGetMipHeight(pTexInfo, i);
AlignedHeightLines = __GMM_EXPAND_HEIGHT(this, MipHeight, VAlign, pTexInfo);
if(Compressed)
{
AlignedHeightLines /= CompressHeight;
}
else if(pTexInfo->Flags.Gpu.SeparateStencil && pTexInfo->Flags.Info.TiledW)
{
AlignedHeightLines /= 2;
}
else if(pTexInfo->Flags.Gpu.CCS && pTexInfo->Flags.Gpu.__NonMsaaTileYCcs)
{
AlignedHeightLines /= 16;
}
if(i == 1)
{
HeightLinesLevel1 = AlignedHeightLines;
}
else
{
HeightLinesLevel2 += AlignedHeightLines;
}
}
}
// If Mip1 height covers all others, then that is all we need...
if(!(pTexInfo->Flags.Info.TiledYf || pTexInfo->Flags.Info.TiledYs))
{
if(HeightLinesLevel1 >= HeightLinesLevel2)
{
BlockHeight += GFX_ALIGN(HeightLinesLevel1, VAlign);
}
else
{
BlockHeight += GFX_ALIGN(HeightLinesLevel2, VAlign);
}
}
else
{
//TR mode- requires TileMode height alignment
BlockHeight += (HeightLinesLevel1 >= HeightLinesLevel2) ? HeightLinesLevel1 : HeightLinesLevel2;
BlockHeight = GFX_ALIGN(BlockHeight, pPlatform->TileInfo[pTexInfo->TileMode].LogicalTileHeight);
}
}
GMM_DPF_EXIT;
return (BlockHeight);
}
/////////////////////////////////////////////////////////////////////////////////////
/// Calculates total height of an arrayed 2D/3D mip layout
///
/// @param[in] pTexInfo: ptr to ::GMM_TEXTURE_INFO,
///
/// @return height of arrayed 2D/3D mip layout
/////////////////////////////////////////////////////////////////////////////////////
uint32_t GmmLib::GmmGen9TextureCalc::Get2DMipMapTotalHeight(GMM_TEXTURE_INFO *pTexInfo)
{
uint32_t BlockHeight, MipHeight;
uint32_t HeightLinesLevel0, HeightLinesLevel1, HeightLinesLevel2;
uint32_t i, MipLevel, VAlign;
uint32_t AlignedHeightLines;
GMM_DPF_ENTER;
MipHeight = pTexInfo->BaseHeight;
MipLevel = pTexInfo->MaxLod;
VAlign = pTexInfo->Alignment.VAlign;
MipLevel =
(pTexInfo->Flags.Info.TiledYf || GMM_IS_64KB_TILE(pTexInfo->Flags)) ?
GFX_MIN(MipLevel, pTexInfo->Alignment.MipTailStartLod) :
MipLevel;
HeightLinesLevel0 = __GMM_EXPAND_HEIGHT(this, MipHeight, VAlign, pTexInfo);
// Mip0 height...
BlockHeight = HeightLinesLevel0;
// Height of Mip1 and Mip2..n needed later...
HeightLinesLevel1 = HeightLinesLevel2 = 0;
for(i = 1; i <= MipLevel; i++)
{
MipHeight = GmmTexGetMipHeight(pTexInfo, i);
AlignedHeightLines = __GMM_EXPAND_HEIGHT(this, MipHeight, VAlign, pTexInfo);
if(i == 1)
{
HeightLinesLevel1 = AlignedHeightLines;
}
else
{
HeightLinesLevel2 += AlignedHeightLines;
}
}
// If Mip1 height covers all others, then that is all we need...
if(HeightLinesLevel1 >= HeightLinesLevel2)
{
BlockHeight += HeightLinesLevel1;
}
else
{
BlockHeight += HeightLinesLevel2;
}
GMM_DPF_EXIT;
return (BlockHeight);
}
/////////////////////////////////////////////////////////////////////////////////////
/// Calculates the mip offset of given LOD in 2D/3D mip layout
///
/// @param[in] pTexInfo: ptr to ::GMM_TEXTURE_INFO,
///
/// @return ::GMM_GFX_SIZE_T offset value in bytes
/////////////////////////////////////////////////////////////////////////////////////
GMM_GFX_SIZE_T GmmLib::GmmGen9TextureCalc::Get2DTexOffsetAddressPerMip(GMM_TEXTURE_INFO *pTexInfo,
uint32_t MipLevel)
{
uint32_t AlignedMipHeight, i, OffsetHeight;
uint8_t Compressed;
uint32_t HAlign, VAlign, __MipLevel;
uint32_t CompressHeight, CompressWidth, CompressDepth;
uint32_t MipHeight;
GMM_GFX_SIZE_T MipOffset;
GMM_DPF_ENTER;
const GMM_PLATFORM_INFO *pPlatform = GMM_OVERRIDE_PLATFORM_INFO(pTexInfo);
HAlign = pTexInfo->Alignment.HAlign;
VAlign = pTexInfo->Alignment.VAlign;
Compressed = GmmIsCompressed(pTexInfo->Format);
MipHeight = pTexInfo->BaseHeight;
OffsetHeight = 0;
GetCompressionBlockDimensions(pTexInfo->Format, &CompressWidth, &CompressHeight, &CompressDepth);
__MipLevel =
(pTexInfo->Flags.Info.TiledYf || GMM_IS_64KB_TILE(pTexInfo->Flags)) ?
GFX_MIN(MipLevel, pTexInfo->Alignment.MipTailStartLod) :
MipLevel;
if(__MipLevel < 2) // LOD0 and LOD1 are on the left edge...
{
MipOffset = 0;
}
else // LOD2 and beyond are to the right of LOD1...
{
uint32_t MipWidth = GFX_ULONG_CAST(GmmTexGetMipWidth(pTexInfo, 1));
uint32_t BitsPerPixel = pTexInfo->BitsPerPixel;
MipWidth = __GMM_EXPAND_WIDTH(this, MipWidth, HAlign, pTexInfo);
if(Compressed)
{
MipWidth /= CompressWidth;
}
else if(pTexInfo->Flags.Gpu.SeparateStencil && pTexInfo->Flags.Info.TiledW)
{
MipWidth *= 2;
}
else if(pTexInfo->Flags.Gpu.CCS && pTexInfo->Flags.Gpu.__NonMsaaTileYCcs)
{
BitsPerPixel = 8; // Aux Surfaces are 8bpp
switch(pTexInfo->BitsPerPixel)
{
case 32:
MipWidth /= 8;
break;
case 64:
MipWidth /= 4;
break;
case 128:
MipWidth /= 2;
break;
default:
__GMM_ASSERT(0);
}
}
MipOffset = (GMM_GFX_SIZE_T)MipWidth * BitsPerPixel >> 3;
}
for(i = 1; i <= __MipLevel; i++)
{
AlignedMipHeight = GFX_ULONG_CAST(__GMM_EXPAND_HEIGHT(this, MipHeight, VAlign, pTexInfo));
if(Compressed)
{
AlignedMipHeight /= CompressHeight;
}
else if(pTexInfo->Flags.Gpu.SeparateStencil && pTexInfo->Flags.Info.TiledW)
{
AlignedMipHeight /= 2;
}
else if(pTexInfo->Flags.Gpu.CCS && pTexInfo->Flags.Gpu.__NonMsaaTileYCcs)
{
AlignedMipHeight /= 16;
}
OffsetHeight += ((i != 2) ? AlignedMipHeight : 0);
MipHeight = GmmTexGetMipHeight(pTexInfo, i);
}
OffsetHeight *= GFX_MAX(pPlatform->TileInfo[pTexInfo->TileMode].LogicalTileDepth, 1);
MipOffset += OffsetHeight * GFX_ULONG_CAST(pTexInfo->Pitch);
if((pTexInfo->Flags.Info.TiledYf || GMM_IS_64KB_TILE(pTexInfo->Flags)) &&
(MipLevel >= pTexInfo->Alignment.MipTailStartLod))
{
MipOffset += GetMipTailByteOffset(pTexInfo, MipLevel);
}
GMM_DPF_EXIT;
return (MipOffset);
}
/////////////////////////////////////////////////////////////////////////////////////
/// Calculates the address offset for each mip map of 2D texture and store them into
/// the GMM_TEXTURE_INFO for surf state programming.
///
/// @param[in] pTexInfo: ptr to ::GMM_TEXTURE_INFO,
///
/////////////////////////////////////////////////////////////////////////////////////
void GmmLib::GmmGen9TextureCalc::Fill2DTexOffsetAddress(GMM_TEXTURE_INFO *pTexInfo)
{
uint32_t i;
GMM_DPF_ENTER;
const GMM_PLATFORM_INFO *pPlatform = GMM_OVERRIDE_PLATFORM_INFO(pTexInfo);
// QPitch: Array Element-to-Element, or Cube Face-to-Face Pitch...
if((pTexInfo->ArraySize <= 1) &&
(pTexInfo->Type != RESOURCE_3D) &&
(pTexInfo->Type != RESOURCE_CUBE) &&
!(pTexInfo->Flags.Gpu.ColorSeparation ||
pTexInfo->Flags.Gpu.ColorSeparationRGBX))
{
pTexInfo->OffsetInfo.Texture2DOffsetInfo.ArrayQPitchRender =
pTexInfo->OffsetInfo.Texture2DOffsetInfo.ArrayQPitchLock = 0;
}
else
{
uint32_t ArrayQPitch, Alignment;
Alignment = pTexInfo->Alignment.VAlign;
if((pTexInfo->Type == RESOURCE_3D && !pTexInfo->Flags.Info.Linear) ||
(pTexInfo->Flags.Gpu.S3dDx && pGmmGlobalContext->GetSkuTable().FtrDisplayEngineS3d))
{
Alignment = pPlatform->TileInfo[pTexInfo->TileMode].LogicalTileHeight;
}
// Calculate the overall Block height...Mip0Height + Max(Mip1Height, Sum of Mip2Height..MipnHeight)
ArrayQPitch = Get2DMipMapTotalHeight(pTexInfo);
ArrayQPitch = GFX_ALIGN_NP2(ArrayQPitch, Alignment);
// Color Surf with MSAA Enabled Mutiply 4
if((pTexInfo->Flags.Info.TiledYs) && (!pGmmGlobalContext->GetSkuTable().FtrTileY) &&
((pTexInfo->MSAA.NumSamples == 8) && (pTexInfo->MSAA.NumSamples == 16)) &&
((pTexInfo->Flags.Gpu.Depth == 0) && (pTexInfo->Flags.Gpu.SeparateStencil == 0)))
{
ArrayQPitch *= 4; /* Aligned height of 4 samples */
}
pTexInfo->Alignment.QPitch = ArrayQPitch;
if(GmmIsCompressed(pTexInfo->Format))
{
uint32_t CompressWidth, CompressHeight, CompressDepth;
GetCompressionBlockDimensions(pTexInfo->Format, &CompressWidth, &CompressHeight, &CompressDepth);
ArrayQPitch /= CompressHeight;
if((pTexInfo->Type == RESOURCE_3D) && !pTexInfo->Flags.Info.Linear)
{
ArrayQPitch = GFX_ALIGN(ArrayQPitch, pPlatform->TileInfo[pTexInfo->TileMode].LogicalTileHeight);
}
}
else if(pTexInfo->Flags.Gpu.SeparateStencil && pTexInfo->Flags.Info.TiledW)
{
ArrayQPitch /= 2;
}
else if(pTexInfo->Flags.Gpu.CCS && pTexInfo->Flags.Gpu.__NonMsaaTileYCcs)
{
ArrayQPitch /= 16;
}
pTexInfo->OffsetInfo.Texture2DOffsetInfo.ArrayQPitchRender =
pTexInfo->OffsetInfo.Texture2DOffsetInfo.ArrayQPitchLock = ArrayQPitch * pTexInfo->Pitch;
}
for(i = 0; i <= pTexInfo->MaxLod; i++)
{
pTexInfo->OffsetInfo.Texture2DOffsetInfo.Offset[i] = Get2DTexOffsetAddressPerMip(pTexInfo, i);
}
GMM_DPF_EXIT;
}
/////////////////////////////////////////////////////////////////////////////////////
/// Returns the aligned block height of the 3D surface on Gen9
///
/// @param[in] pTexInfo: ptr to ::GMM_TEXTURE_INFO,
/// BlockHeight: Unaligned block height
/// ExpandedArraySize: adjusted array size for MSAA, cube faces, etc.
///
/// @return Aligned BlockHeight
/////////////////////////////////////////////////////////////////////////////////////
uint32_t GmmLib::GmmGen9TextureCalc::GetAligned3DBlockHeight(GMM_TEXTURE_INFO *pTexInfo,
uint32_t BlockHeight,
uint32_t ExpandedArraySize)
{
GMM_DPF_ENTER;
GMM_UNREFERENCED_PARAMETER(ExpandedArraySize);
__GMM_ASSERTPTR(pTexInfo, 0);
const GMM_PLATFORM_INFO *pPlatform = GMM_OVERRIDE_PLATFORM_INFO(pTexInfo);
if((pTexInfo->Type == RESOURCE_3D) && !pTexInfo->Flags.Info.Linear)
{
BlockHeight = GFX_ALIGN(BlockHeight, pPlatform->TileInfo[pTexInfo->TileMode].LogicalTileHeight);
}
GMM_DPF_EXIT;
return BlockHeight;
}
/////////////////////////////////////////////////////////////////////////////////////
/// Allocates the 2D mip layout for surface state programming.
///
/// @param[in] pTexInfo: ptr to ::GMM_TEXTURE_INFO,
/// @param[in] pRestrictions: ptr to surface alignment and size restrictions
///
/// @return ::GMM_STATUS
/////////////////////////////////////////////////////////////////////////////////////
GMM_STATUS GMM_STDCALL GmmLib::GmmGen9TextureCalc::FillTex2D(GMM_TEXTURE_INFO * pTexInfo,
__GMM_BUFFER_TYPE *pRestrictions)
{
uint32_t Width, Height, BitsPerPixel;
uint32_t HAlign, VAlign, DAlign, CompressHeight, CompressWidth, CompressDepth;
uint32_t AlignedWidth, BlockHeight, ExpandedArraySize, Pitch;
uint8_t Compress = 0;
GMM_STATUS Status;
GMM_DPF_ENTER;
__GMM_ASSERTPTR(pTexInfo, GMM_ERROR);
__GMM_ASSERTPTR(pRestrictions, GMM_ERROR);
const GMM_PLATFORM_INFO *pPlatform = GMM_OVERRIDE_PLATFORM_INFO(pTexInfo);
BitsPerPixel = pTexInfo->BitsPerPixel;
if(pTexInfo->Flags.Gpu.CCS && pTexInfo->Flags.Gpu.__NonMsaaTileYCcs)
{
// Aux Surfaces are 8bpp.
BitsPerPixel = 8;
}
Height = pTexInfo->BaseHeight;
Width = GFX_ULONG_CAST(pTexInfo->BaseWidth);
pTexInfo->MSAA.NumSamples = GFX_MAX(pTexInfo->MSAA.NumSamples, 1);
if(pTexInfo->Flags.Info.TiledYf || pTexInfo->Flags.Info.TiledYs)
{
FindMipTailStartLod(pTexInfo);
}
ExpandedArraySize =
GFX_MAX(pTexInfo->ArraySize, 1) *
((pTexInfo->Type == RESOURCE_CUBE) ? 6 : 1) * // Cubemaps simply 6-element, 2D arrays.
((pTexInfo->Type == RESOURCE_3D) ? pTexInfo->Depth : 1) * // 3D's simply 2D arrays.
((pTexInfo->Flags.Gpu.Depth || pTexInfo->Flags.Gpu.SeparateStencil ||
(pTexInfo->Flags.Info.TiledYs || pTexInfo->Flags.Info.TiledYf)) ? // MSAA Ys samples are NOT stored as array planes.
1 :
pTexInfo->MSAA.NumSamples); // MSAA (non-Depth/Stencil) RT samples stored as array planes.
if(pTexInfo->Flags.Info.TiledYs || pTexInfo->Flags.Info.TiledYf)
{
ExpandedArraySize = GFX_CEIL_DIV(ExpandedArraySize, pPlatform->TileInfo[pTexInfo->TileMode].LogicalTileDepth);
}
//
// Check for color separation
//
if(pTexInfo->Flags.Gpu.ColorSeparation || pTexInfo->Flags.Gpu.ColorSeparationRGBX)
{
bool csRestrictionsMet = (((ExpandedArraySize <= 2) &&
(ExpandedArraySize == pTexInfo->ArraySize) &&
((pTexInfo->Format == GMM_FORMAT_R8G8B8A8_UNORM) ||
(pTexInfo->Format == GMM_FORMAT_R8G8B8A8_UNORM_SRGB) ||
(pTexInfo->Format == GMM_FORMAT_B8G8R8A8_UNORM) ||
(pTexInfo->Format == GMM_FORMAT_B8G8R8A8_UNORM_SRGB) ||
(pTexInfo->Format == GMM_FORMAT_B8G8R8X8_UNORM) ||
(pTexInfo->Format == GMM_FORMAT_B8G8R8X8_UNORM_SRGB)) &&
((pTexInfo->Flags.Gpu.ColorSeparation && (Width % 16) == 0) ||
(pTexInfo->Flags.Gpu.ColorSeparationRGBX && (Width % 12) == 0))));
if(csRestrictionsMet)
{
ExpandedArraySize = GMM_COLOR_SEPARATION_ARRAY_SIZE;
}
else
{
pTexInfo->Flags.Gpu.ColorSeparation = false;
pTexInfo->Flags.Gpu.ColorSeparationRGBX = false;
}
}
HAlign = pTexInfo->Alignment.HAlign;
VAlign = pTexInfo->Alignment.VAlign;
DAlign = pTexInfo->Alignment.DAlign;
GetCompressionBlockDimensions(pTexInfo->Format, &CompressWidth, &CompressHeight, &CompressDepth);
Compress = GmmIsCompressed(pTexInfo->Format);
/////////////////////////////////
// Calculate Block Surface Height
/////////////////////////////////
if(ExpandedArraySize > 1)
{
uint32_t Alignment = VAlign;
if((pTexInfo->Type == RESOURCE_3D && !pTexInfo->Flags.Info.Linear) ||
(pTexInfo->Flags.Gpu.S3dDx && pGmmGlobalContext->GetSkuTable().FtrDisplayEngineS3d))
{
Alignment = pPlatform->TileInfo[pTexInfo->TileMode].LogicalTileHeight;
}
// Calculate the overall Block height...Mip0Height + Max(Mip1Height, Sum of Mip2Height..MipnHeight)
BlockHeight = Get2DMipMapTotalHeight(pTexInfo);
BlockHeight = GFX_ALIGN_NP2(BlockHeight, Alignment);
// GMM internally uses QPitch as the logical distance between slices, but translates
// as appropriate to service client queries in GmmResGetQPitch.
pTexInfo->Alignment.QPitch = BlockHeight;
if(Compress)
{
BlockHeight = GFX_CEIL_DIV(BlockHeight, CompressHeight);
BlockHeight = GetAligned3DBlockHeight(pTexInfo, BlockHeight, ExpandedArraySize);
}
else if(pTexInfo->Flags.Gpu.SeparateStencil && pTexInfo->Flags.Info.TiledW)
{
BlockHeight /= 2;
}
else if(pTexInfo->Flags.Gpu.CCS && pTexInfo->Flags.Gpu.__NonMsaaTileYCcs)
{
BlockHeight /= 16;
}
BlockHeight *= ExpandedArraySize;
}
else
{
pTexInfo->Alignment.QPitch = 0;
BlockHeight = Get2DMipMapHeight(pTexInfo);
}
///////////////////////////////////
// Calculate Pitch
///////////////////////////////////
AlignedWidth = __GMM_EXPAND_WIDTH(this, Width, HAlign, pTexInfo);
// Calculate special pitch case of small dimensions where LOD1 + LOD2 widths
// are greater than LOD0. e.g. dimensions 4x4 and MinPitch == 1
if((pTexInfo->Flags.Info.TiledYf || pTexInfo->Flags.Info.TiledYs) &&
(pTexInfo->Alignment.MipTailStartLod < 2))
{
// Do nothing -- all mips are in LOD0/LOD1, which is already width aligned.
}
else if(pTexInfo->MaxLod >= 2)
{
uint32_t AlignedWidthLod1, AlignedWidthLod2;
AlignedWidthLod1 = __GMM_EXPAND_WIDTH(this, Width >> 1, HAlign, pTexInfo);
AlignedWidthLod2 = __GMM_EXPAND_WIDTH(this, Width >> 2, HAlign, pTexInfo);
AlignedWidth = GFX_MAX(AlignedWidth, AlignedWidthLod1 + AlignedWidthLod2);
}
if(Compress)
{
AlignedWidth = GFX_CEIL_DIV(AlignedWidth, CompressWidth);
}
else if(pTexInfo->Flags.Gpu.SeparateStencil && pTexInfo->Flags.Info.TiledW)
{
AlignedWidth *= 2;
}
else if(pTexInfo->Flags.Gpu.CCS && pTexInfo->Flags.Gpu.__NonMsaaTileYCcs)
{
switch(pTexInfo->BitsPerPixel)
{
case 32:
AlignedWidth /= 8;
break;
case 64:
AlignedWidth /= 4;
break;
case 128:
AlignedWidth /= 2;
break;
default:
__GMM_ASSERT(0);
}
}
else if(pTexInfo->Flags.Gpu.ColorSeparation)
{
AlignedWidth *= pTexInfo->ArraySize;
__GMM_ASSERT(0 == (AlignedWidth % GMM_COLOR_SEPARATION_WIDTH_DIVISION));
AlignedWidth /= GMM_COLOR_SEPARATION_WIDTH_DIVISION;
}
else if(pTexInfo->Flags.Gpu.ColorSeparationRGBX)
{
AlignedWidth *= pTexInfo->ArraySize;
__GMM_ASSERT(0 == (AlignedWidth % GMM_COLOR_SEPARATION_RGBX_WIDTH_DIVISION));
AlignedWidth /= GMM_COLOR_SEPARATION_RGBX_WIDTH_DIVISION;
}
// Default pitch
Pitch = AlignedWidth * BitsPerPixel >> 3;
// Make sure the pitch satisfy linear min pitch requirment
Pitch = GFX_MAX(Pitch, pRestrictions->MinPitch);
// Make sure pitch satisfy alignment restriction
Pitch = GFX_ALIGN(Pitch, pRestrictions->PitchAlignment);
////////////////////
// Adjust for Tiling
////////////////////
if(GMM_IS_TILED(pPlatform->TileInfo[pTexInfo->TileMode]))
{
Pitch = GFX_ALIGN(Pitch, pPlatform->TileInfo[pTexInfo->TileMode].LogicalTileWidth);
BlockHeight = GFX_ALIGN(BlockHeight, pPlatform->TileInfo[pTexInfo->TileMode].LogicalTileHeight);
}
GMM_ASSERTDPF(pTexInfo->Flags.Info.LayoutBelow || !pTexInfo->Flags.Info.LayoutRight, "MIPLAYOUT_RIGHT not supported after Gen6!");
pTexInfo->Flags.Info.LayoutBelow = 1;
pTexInfo->Flags.Info.LayoutRight = 0;
// If a texture is YUV packed, 96, or 48 bpp then one row plus 16 bytes of
// padding needs to be added. Since this will create a none pitch aligned
// surface the padding is aligned to the next row
if(GmmIsYUVPacked(pTexInfo->Format) ||
(pTexInfo->BitsPerPixel == GMM_BITS(96)) ||
(pTexInfo->BitsPerPixel == GMM_BITS(48)))
{
BlockHeight += GMM_SCANLINES(1) + GFX_CEIL_DIV(GMM_BYTES(16), Pitch);
}
// Align height to even row to cover for HW over-fetch
BlockHeight = GFX_ALIGN(BlockHeight, __GMM_EVEN_ROW);
if((Status = // <-- Note assignment.
FillTexPitchAndSize(
pTexInfo, Pitch, BlockHeight, pRestrictions)) == GMM_SUCCESS)
{
Fill2DTexOffsetAddress(pTexInfo);
}
GMM_DPF_EXIT;
return (Status);
}
/////////////////////////////////////////////////////////////////////////////////////
/// Returns the mip offset of given LOD in Mip Tail
///
/// @param[in] pTexInfo: ptr to ::GMM_TEXTURE_INFO,
/// MipLevel: given LOD #
///
/// @return offset value of LOD in bytes
/////////////////////////////////////////////////////////////////////////////////////
uint32_t GmmLib::GmmGen9TextureCalc::GetMipTailByteOffset(GMM_TEXTURE_INFO *pTexInfo,
uint32_t MipLevel)
{
uint32_t ByteOffset = 0, Slot;
GMM_DPF_ENTER;
if((pTexInfo->Type == RESOURCE_1D) || (pTexInfo->Type == RESOURCE_3D))
{
Slot = MipLevel - pTexInfo->Alignment.MipTailStartLod +
(pTexInfo->Flags.Info.TiledYf ? 4 : 0);
switch(Slot)
{
case 0:
ByteOffset = GMM_KBYTE(32);
break;
case 1:
ByteOffset = GMM_KBYTE(16);
break;
case 2:
ByteOffset = GMM_KBYTE(8);
break;
case 3:
ByteOffset = GMM_KBYTE(4);
break;
case 4:
ByteOffset = GMM_KBYTE(2);
break;
case 5:
ByteOffset = GMM_KBYTE(1);
break;
case 6:
ByteOffset = GMM_BYTES(768);
break;
case 7:
ByteOffset = GMM_BYTES(512);
break;
case 8:
ByteOffset = GMM_BYTES(448);
break;
case 9:
ByteOffset = GMM_BYTES(384);
break;
case 10:
ByteOffset = GMM_BYTES(320);
break;
case 11:
ByteOffset = GMM_BYTES(256);
break;
case 12:
ByteOffset = GMM_BYTES(192);
break;
case 13:
ByteOffset = GMM_BYTES(128);
break;
case 14:
ByteOffset = GMM_BYTES(64);
break;
case 15:
ByteOffset = GMM_BYTES(0);
break;
default:
__GMM_ASSERT(0);
}
}
else if(pTexInfo->Type == RESOURCE_2D || pTexInfo->Type == RESOURCE_CUBE)
{
// clang-format off
Slot = MipLevel - pTexInfo->Alignment.MipTailStartLod +
// TileYs
((pTexInfo->Flags.Info.TiledYs && pTexInfo->MSAA.NumSamples == 16) ? 4 :
(pTexInfo->Flags.Info.TiledYs && pTexInfo->MSAA.NumSamples == 8) ? 3 :
(pTexInfo->Flags.Info.TiledYs && pTexInfo->MSAA.NumSamples == 4) ? 2 :
(pTexInfo->Flags.Info.TiledYs && pTexInfo->MSAA.NumSamples == 2) ? 1 :
(pTexInfo->Flags.Info.TiledYs ) ? 0 :
// TileYf
(pTexInfo->Flags.Info.TiledYf ) ? 4: 0);
// clang-format on
switch(Slot)
{
case 0:
ByteOffset = GMM_KBYTE(32);
break;
case 1:
ByteOffset = GMM_KBYTE(16);
break;
case 2:
ByteOffset = GMM_KBYTE(8);
break;
case 3:
ByteOffset = GMM_KBYTE(4);
break;
case 4:
ByteOffset = GMM_KBYTE(2);
break;
case 5:
ByteOffset = GMM_BYTES(1536);
break;
case 6:
ByteOffset = GMM_BYTES(1280);
break;
case 7:
ByteOffset = GMM_BYTES(1024);
break;
case 8:
ByteOffset = GMM_BYTES(768);
break;
case 9:
ByteOffset = GMM_BYTES(512);
break;
case 10:
ByteOffset = GMM_BYTES(256);
break;
case 11:
ByteOffset = GMM_BYTES(192);
break;
case 12:
ByteOffset = GMM_BYTES(128);
break;
case 13:
ByteOffset = GMM_BYTES(64);
break;
case 14:
ByteOffset = GMM_BYTES(0);
break;
default:
__GMM_ASSERT(0);
}
}
GMM_DPF_EXIT;
return (ByteOffset);
}
GMM_MIPTAIL_SLOT_OFFSET Gen9MipTailSlotOffset1DSurface[16][5] = GEN9_MIPTAIL_SLOT_OFFSET_1D_SURFACE;
GMM_MIPTAIL_SLOT_OFFSET Gen9MipTailSlotOffset2DSurface[15][5] = GEN9_MIPTAIL_SLOT_OFFSET_2D_SURFACE;
GMM_MIPTAIL_SLOT_OFFSET Gen9MipTailSlotOffset3DSurface[16][5] = GEN9_MIPTAIL_SLOT_OFFSET_3D_SURFACE;
/////////////////////////////////////////////////////////////////////////////////////
/// Returns the mip-map offset in geometric OffsetX, Y, Z
// for a given LOD in Mip Tail.
///
/// @param[in] pTexInfo: ptr to ::GMM_TEXTURE_INFO,
/// MipLevel: mip-map level
/// OffsetX: ptr to Offset in X direction (in bytes)
/// OffsetY: ptr to Offset in Y direction (in pixels)
/// OffsetZ: ptr to Offset in Z direction (in pixels)
///
/////////////////////////////////////////////////////////////////////////////////////
void GmmLib::GmmGen9TextureCalc::GetMipTailGeometryOffset(GMM_TEXTURE_INFO *pTexInfo,
uint32_t MipLevel,
uint32_t * OffsetX,
uint32_t * OffsetY,
uint32_t * OffsetZ)
{
uint32_t ArrayIndex = 0;
uint32_t Slot = 0;
GMM_DPF_ENTER;
switch(pTexInfo->BitsPerPixel)
{
case 128:
ArrayIndex = 0;
break;
case 64:
ArrayIndex = 1;
break;
case 32:
ArrayIndex = 2;
break;
case 16:
ArrayIndex = 3;
break;
case 8:
ArrayIndex = 4;
break;
default:
__GMM_ASSERT(0);
break;
}
if(pTexInfo->Type == RESOURCE_1D)
{
Slot = MipLevel - pTexInfo->Alignment.MipTailStartLod +
(pTexInfo->Flags.Info.TiledYf ? 4 : 0);
*OffsetX = Gen9MipTailSlotOffset1DSurface[Slot][ArrayIndex].X * pTexInfo->BitsPerPixel / 8;
*OffsetY = Gen9MipTailSlotOffset1DSurface[Slot][ArrayIndex].Y;
*OffsetZ = Gen9MipTailSlotOffset1DSurface[Slot][ArrayIndex].Z;
}
else if(pTexInfo->Type == RESOURCE_2D || pTexInfo->Type == RESOURCE_CUBE)
{
// clang-format off
Slot = MipLevel - pTexInfo->Alignment.MipTailStartLod +
// TileYs
((pTexInfo->Flags.Info.TiledYs && pTexInfo->MSAA.NumSamples == 16) ? 4 :
(pTexInfo->Flags.Info.TiledYs && pTexInfo->MSAA.NumSamples == 8) ? 3 :
(pTexInfo->Flags.Info.TiledYs && pTexInfo->MSAA.NumSamples == 4) ? 2 :
(pTexInfo->Flags.Info.TiledYs && pTexInfo->MSAA.NumSamples == 2) ? 1 :
(pTexInfo->Flags.Info.TiledYs ) ? 0 :
// TileYf
(pTexInfo->Flags.Info.TiledYf ) ? 4: 0);
// clang-format on
*OffsetX = Gen9MipTailSlotOffset2DSurface[Slot][ArrayIndex].X * pTexInfo->BitsPerPixel / 8;
*OffsetY = Gen9MipTailSlotOffset2DSurface[Slot][ArrayIndex].Y;
*OffsetZ = Gen9MipTailSlotOffset2DSurface[Slot][ArrayIndex].Z;
}
else if(pTexInfo->Type == RESOURCE_3D)
{
Slot = MipLevel - pTexInfo->Alignment.MipTailStartLod +
(pTexInfo->Flags.Info.TiledYf ? 4 : 0);
*OffsetX = Gen9MipTailSlotOffset3DSurface[Slot][ArrayIndex].X * pTexInfo->BitsPerPixel / 8;
*OffsetY = Gen9MipTailSlotOffset3DSurface[Slot][ArrayIndex].Y;
*OffsetZ = Gen9MipTailSlotOffset3DSurface[Slot][ArrayIndex].Z;
}
GMM_DPF_EXIT;
return;
}
/////////////////////////////////////////////////////////////////////////////////////
/// Allocates the 3D mip layout for surface state programming.
///
/// @param[in] pTexInfo: ptr to ::GMM_TEXTURE_INFO,
/// @param[in] pRestrictions: ptr to surface alignment and size restrictions
///
/// @return ::GMM_STATUS
/////////////////////////////////////////////////////////////////////////////////////
GMM_STATUS GMM_STDCALL GmmLib::GmmGen9TextureCalc::FillTex3D(GMM_TEXTURE_INFO * pTexInfo,
__GMM_BUFFER_TYPE *pRestrictions)
{
return FillTex2D(pTexInfo, pRestrictions);
}
/////////////////////////////////////////////////////////////////////////////////////
/// Calculates the cube layout for surface state programming.
///
/// @param[in] pTexInfo: ptr to ::GMM_TEXTURE_INFO,
/// @param[in] pRestrictions: ptr to surface alignment and size restrictions
///
/// @return ::GMM_STATUS
/////////////////////////////////////////////////////////////////////////////////////
GMM_STATUS GMM_STDCALL GmmLib::GmmGen9TextureCalc::FillTexCube(GMM_TEXTURE_INFO * pTexInfo,
__GMM_BUFFER_TYPE *pRestrictions)
{
return FillTex2D(pTexInfo, pRestrictions);
}
/////////////////////////////////////////////////////////////////////////////////////
/// This function does any special-case conversion from client-provided pseudo creation
/// parameters to actual parameters for CCS.
///
/// @param[in] pTexInfo: Reference to ::GMM_TEXTURE_INFO
///
/// @return ::GMM_STATUS
/////////////////////////////////////////////////////////////////////////////////////
GMM_STATUS GMM_STDCALL GmmLib::GmmGen9TextureCalc::MSAACCSUsage(GMM_TEXTURE_INFO *pTexInfo)
{
GMM_STATUS Status = GMM_SUCCESS;
if(pTexInfo->MSAA.NumSamples > 1) // CCS for MSAA Compression
{
Status = MSAACompression(pTexInfo);
}
else // Non-MSAA CCS Use (i.e. Render Target Fast Clear)
{
if(!pTexInfo->Flags.Info.TiledW &&
(!pTexInfo->Flags.Info.TiledX) &&
((!pTexInfo->Flags.Info.Linear) ||
(GMM_IS_4KB_TILE(pTexInfo->Flags) || GMM_IS_64KB_TILE(pTexInfo->Flags) ||
(pTexInfo->Type == RESOURCE_BUFFER && pTexInfo->Flags.Info.Linear))) && //!Yf - deprecate Yf
((pTexInfo->BitsPerPixel == 32) ||
(pTexInfo->BitsPerPixel == 64) ||
(pTexInfo->BitsPerPixel == 128)))
{
// For non-MSAA CCS usage, the four tables of
// requirements:
// (1) RT Alignment (GMM Don't Care: Occurs Naturally)
// (2) ClearRect Alignment
// (3) ClearRect Scaling (GMM Don't Care: GHAL3D Matter)
// (4) Non-MSAA CCS Sizing
// Gen8+:
// Since mip-mapped and arrayed surfaces are supported, we
// deal with alignment later at per mip level. Here, we set
// tiling type only. TileX is not supported on Gen9+.
// Pre-Gen8:
// (!) For all the above, there are separate entries for
// 32/64/128bpp--and then deals with PIXEL widths--Here,
// though, we will unify by considering 8bpp table entries
// (unlisted--i.e. do the math)--and deal with BYTE widths.
// (1) RT Alignment -- The surface width and height don't
// need to be padded to RT CL granularity. On HSW, all tiled
// RT's will have appropriate alignment (given 4KB surface
// base and no mip-map support) and appropriate padding
// (due to tile padding). On BDW+, GMM uses H/VALIGN that
// will guarantee the MCS RT alignment for all subresources.
// (2) ClearRect Alignment -- I.e. FastClears must be done
// with certain granularity:
// TileY: 512 Bytes x 128 Lines
// TileX: 1024 Bytes x 64 Lines
// So a CCS must be sized to match that granularity (though
// the RT itself need not be fully padded to that
// granularity to use FastClear).
// (4) Non-MSAA CCS Sizing -- CCS sizing is based on the
// size of the FastClear (with granularity padding) for the
// paired RT. CCS's (byte widths and heights) are scaled
// down from their RT's by:
// TileY: 32 x 32
// TileX: 64 x 16
// ### Example #############################################
// RT: 800x600, 32bpp, TileY
// 8bpp: 3200x600
// FastClear: 3584x640 (for TileY FastClear Granularity of 512x128)
// CCS: 112x20 (for TileY RT:CCS Sizing Downscale of 32x32)
pTexInfo->Flags.Gpu.__NonMsaaTileYCcs = pTexInfo->Flags.Info.TiledY || pTexInfo->Flags.Info.TiledYf || pTexInfo->Flags.Info.TiledYs;
pTexInfo->Flags.Gpu.__NonMsaaTileXCcs = pTexInfo->Flags.Info.TiledX;
}
else
{
GMM_ASSERTDPF(0, "Illegal CCS creation parameters!");
Status = GMM_ERROR;
}
}
return Status;
}
|