feature: add support for receiving FtrWalkerMTP flag

Related-To: NEO-8188, NEO-10774

Signed-off-by: Mateusz Jablonski <mateusz.jablonski@intel.com>
This commit is contained in:
Mateusz Jablonski
2024-06-05 08:26:29 +00:00
committed by Compute-Runtime-Automation
parent 9a2fa1dcb1
commit dcac701482
6 changed files with 13 additions and 2 deletions

View File

@@ -96,6 +96,7 @@ struct SKU_FEATURE_TABLE_KMD : SKU_FEATURE_TABLE_GMM { // NOLINT(readability-ide
bool FtrLocalMemoryAllows4KB : 1; // NOLINT(readability-identifier-naming)
bool FtrHwScheduling : 1; // NOLINT(readability-identifier-naming)
bool FtrWalkerMTP : 1; // NOLINT(readability-identifier-naming)
};
struct WA_TABLE_KMD : WA_TABLE_GMM { // NOLINT(readability-identifier-naming)

View File

@@ -70,6 +70,7 @@ class SkuInfoReceiver {
RECEIVE_FTR(Unified3DMediaCompressionFormats);
RECEIVE_FTR(57bGPUAddressing);
RECEIVE_FTR(Tile64Optimization);
RECEIVE_FTR(WalkerMTP);
#undef RECEIVE_FTR
}

View File

@@ -1,5 +1,5 @@
/*
* Copyright (C) 2018-2023 Intel Corporation
* Copyright (C) 2018-2024 Intel Corporation
*
* SPDX-License-Identifier: MIT
*
@@ -66,7 +66,8 @@ struct FeatureTableBase {
uint32_t ftrUnified3DMediaCompressionFormats : 1;
uint32_t ftr57bGPUAddressing : 1;
uint32_t ftrTile64Optimization : 1;
uint32_t reserved : 22;
uint32_t ftrWalkerMTP : 1;
uint32_t reserved : 21;
};
BcsInfoMask ftrBcsInfo = 1;