mirror of
https://github.com/intel/compute-runtime.git
synced 2026-01-10 07:08:04 +08:00
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:
committed by
Compute-Runtime-Automation
parent
9a2fa1dcb1
commit
dcac701482
@@ -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)
|
||||
|
||||
@@ -70,6 +70,7 @@ class SkuInfoReceiver {
|
||||
RECEIVE_FTR(Unified3DMediaCompressionFormats);
|
||||
RECEIVE_FTR(57bGPUAddressing);
|
||||
RECEIVE_FTR(Tile64Optimization);
|
||||
RECEIVE_FTR(WalkerMTP);
|
||||
|
||||
#undef RECEIVE_FTR
|
||||
}
|
||||
|
||||
@@ -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;
|
||||
|
||||
Reference in New Issue
Block a user