mirror of
https://github.com/intel/compute-runtime.git
synced 2026-01-06 02:18:05 +08:00
Update aub/tbx stepping handling
For the stepping value use hardware value. Resolves: NEO-5475 Signed-off-by: Filip Hazubski <filip.hazubski@intel.com>
This commit is contained in:
committed by
Compute-Runtime-Automation
parent
c35f560971
commit
7d01074ee4
@@ -1,5 +1,5 @@
|
||||
/*
|
||||
* Copyright (C) 2019-2020 Intel Corporation
|
||||
* Copyright (C) 2019-2021 Intel Corporation
|
||||
*
|
||||
* SPDX-License-Identifier: MIT
|
||||
*
|
||||
@@ -23,10 +23,14 @@ uint32_t getHwRevIdFromStepping(uint32_t stepping, const HardwareInfo &hwInfo) {
|
||||
return CommonConstants::invalidStepping;
|
||||
}
|
||||
|
||||
uint32_t getSteppingFromHwRevId(uint32_t hwRevId, const HardwareInfo &hwInfo) {
|
||||
uint32_t getSteppingFromHwRevId(const HardwareInfo &hwInfo) {
|
||||
return CommonConstants::invalidStepping;
|
||||
}
|
||||
|
||||
uint32_t getAubStreamSteppingFromHwRevId(const HardwareInfo &hwInfo) {
|
||||
return AubMemDump::SteppingValues::A;
|
||||
}
|
||||
|
||||
bool imagePitchAlignmentWaRequired(PRODUCT_FAMILY productFamily) {
|
||||
return (productFamily == PRODUCT_FAMILY::IGFX_TIGERLAKE_LP);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user