mirror of
https://github.com/intel/compute-runtime.git
synced 2026-01-08 22:12:59 +08:00
Initial commit
Change-Id: I4bf1707bd3dfeadf2c17b0a7daff372b1925ebbd
This commit is contained in:
30
runtime/gen9/linux/command_stream_receiver.cpp
Normal file
30
runtime/gen9/linux/command_stream_receiver.cpp
Normal file
@@ -0,0 +1,30 @@
|
||||
/*
|
||||
* 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 "runtime/os_interface/linux/device_command_stream.inl"
|
||||
#include "runtime/os_interface/linux/drm_command_stream.inl"
|
||||
|
||||
namespace OCLRT {
|
||||
|
||||
template class DeviceCommandStreamReceiver<SKLFamily>;
|
||||
template class DrmCommandStreamReceiver<SKLFamily>;
|
||||
}
|
||||
37
runtime/gen9/linux/drm_engine_mapper.cpp
Normal file
37
runtime/gen9/linux/drm_engine_mapper.cpp
Normal file
@@ -0,0 +1,37 @@
|
||||
/*
|
||||
* 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 "hw_cmds.h"
|
||||
#include "runtime/os_interface/linux/drm_engine_mapper.h"
|
||||
|
||||
namespace OCLRT {
|
||||
|
||||
template <>
|
||||
bool DrmEngineMapper<SKLFamily>::engineNodeMap(EngineType engineType, unsigned int &flag) {
|
||||
if (engineType == EngineType::ENGINE_RCS) {
|
||||
flag = I915_EXEC_RENDER;
|
||||
return true;
|
||||
}
|
||||
return false;
|
||||
}
|
||||
|
||||
} // namespace OCLRT
|
||||
28
runtime/gen9/linux/enable_bxt.cpp
Normal file
28
runtime/gen9/linux/enable_bxt.cpp
Normal file
@@ -0,0 +1,28 @@
|
||||
/*
|
||||
* 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 "hw_cmds.h"
|
||||
#include "runtime/os_interface/linux/hw_info_config.h"
|
||||
|
||||
namespace OCLRT {
|
||||
static LinuxEnableGfxProductHw<IGFX_BROXTON> enableLinuxGfxProductHw;
|
||||
} // namespace OCLRT
|
||||
28
runtime/gen9/linux/enable_glk.cpp
Normal file
28
runtime/gen9/linux/enable_glk.cpp
Normal file
@@ -0,0 +1,28 @@
|
||||
/*
|
||||
* 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 "hw_cmds.h"
|
||||
#include "runtime/os_interface/linux/hw_info_config.h"
|
||||
|
||||
namespace OCLRT {
|
||||
static LinuxEnableGfxProductHw<IGFX_GEMINILAKE> enableLinuxGfxProductHw;
|
||||
} // namespace OCLRT
|
||||
28
runtime/gen9/linux/enable_kbl.cpp
Normal file
28
runtime/gen9/linux/enable_kbl.cpp
Normal file
@@ -0,0 +1,28 @@
|
||||
/*
|
||||
* 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 "hw_cmds.h"
|
||||
#include "runtime/os_interface/linux/hw_info_config.h"
|
||||
|
||||
namespace OCLRT {
|
||||
static LinuxEnableGfxProductHw<IGFX_KABYLAKE> enableLinuxGfxProductHw;
|
||||
} // namespace OCLRT
|
||||
28
runtime/gen9/linux/enable_skl.cpp
Normal file
28
runtime/gen9/linux/enable_skl.cpp
Normal file
@@ -0,0 +1,28 @@
|
||||
/*
|
||||
* 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 "hw_cmds.h"
|
||||
#include "runtime/os_interface/linux/hw_info_config.h"
|
||||
|
||||
namespace OCLRT {
|
||||
static LinuxEnableGfxProductHw<IGFX_SKYLAKE> enableLinuxGfxProductHw;
|
||||
} // namespace OCLRT
|
||||
107
runtime/gen9/linux/hw_info_config_bxt.cpp
Normal file
107
runtime/gen9/linux/hw_info_config_bxt.cpp
Normal file
@@ -0,0 +1,107 @@
|
||||
/*
|
||||
* 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 "runtime/helpers/hw_info.h"
|
||||
#include "runtime/os_interface/linux/hw_info_config.h"
|
||||
#include "runtime/os_interface/linux/drm_neo.h"
|
||||
#include "runtime/os_interface/linux/os_interface.h"
|
||||
|
||||
namespace OCLRT {
|
||||
|
||||
template <>
|
||||
int HwInfoConfigHw<IGFX_BROXTON>::configureHardwareCustom(HardwareInfo *hwInfo, OSInterface *osIface) {
|
||||
Drm *drm = osIface->get()->getDrm();
|
||||
PLATFORM *pPlatform = const_cast<PLATFORM *>(hwInfo->pPlatform);
|
||||
FeatureTable *pSkuTable = const_cast<FeatureTable *>(hwInfo->pSkuTable);
|
||||
GT_SYSTEM_INFO *pSysInfo = const_cast<GT_SYSTEM_INFO *>(hwInfo->pSysInfo);
|
||||
WorkaroundTable *pWaTable = const_cast<WorkaroundTable *>(hwInfo->pWaTable);
|
||||
|
||||
pSysInfo->SliceCount = 1;
|
||||
|
||||
pSysInfo->VEBoxInfo.Instances.Bits.VEBox0Enabled = 1;
|
||||
pSysInfo->VEBoxInfo.IsValid = true;
|
||||
pSkuTable->ftrVEBOX = 1;
|
||||
pSkuTable->ftrULT = 1;
|
||||
|
||||
pSkuTable->ftrGpGpuMidBatchPreempt = 1;
|
||||
pSkuTable->ftrGpGpuThreadGroupLevelPreempt = 1;
|
||||
pSkuTable->ftrGpGpuMidThreadLevelPreempt = 1;
|
||||
pSkuTable->ftr3dMidBatchPreempt = 1;
|
||||
pSkuTable->ftr3dObjectLevelPreempt = 1;
|
||||
pSkuTable->ftrPerCtxtPreemptionGranularityControl = 1;
|
||||
|
||||
pSkuTable->ftrLCIA = 1;
|
||||
pSkuTable->ftrPPGTT = 1;
|
||||
pSkuTable->ftrL3IACoherency = 1;
|
||||
pSkuTable->ftrIA32eGfxPTEs = 1;
|
||||
|
||||
pSkuTable->ftrDisplayYTiling = 1;
|
||||
pSkuTable->ftrTranslationTable = 1;
|
||||
pSkuTable->ftrUserModeTranslationTable = 1;
|
||||
pSkuTable->ftrEnableGuC = 1;
|
||||
|
||||
pSkuTable->ftrFbc = 1;
|
||||
pSkuTable->ftrFbc2AddressTranslation = 1;
|
||||
pSkuTable->ftrFbcBlitterTracking = 1;
|
||||
pSkuTable->ftrFbcCpuTracking = 1;
|
||||
|
||||
if (pPlatform->usRevId >= 3) {
|
||||
pSkuTable->ftrGttCacheInvalidation = 1;
|
||||
}
|
||||
|
||||
pWaTable->waLLCCachingUnsupported = 1;
|
||||
pWaTable->waMsaa8xTileYDepthPitchAlignment = 1;
|
||||
pWaTable->waFbcLinearSurfaceStride = 1;
|
||||
pWaTable->wa4kAlignUVOffsetNV12LinearSurface = 1;
|
||||
pWaTable->waEnablePreemptionGranularityControlByUMD = 1;
|
||||
pWaTable->waSendMIFLUSHBeforeVFE = 1;
|
||||
pWaTable->waForcePcBbFullCfgRestore = 1;
|
||||
pWaTable->waReportPerfCountUseGlobalContextID = 1;
|
||||
|
||||
int enabled = 0;
|
||||
int retVal = drm->getEnabledPooledEu(enabled);
|
||||
if (retVal == 0) {
|
||||
pSkuTable->ftrPooledEuEnabled = (enabled != 0) ? 1 : 0;
|
||||
}
|
||||
if (enabled) {
|
||||
int num = 0;
|
||||
retVal = drm->getMinEuInPool(num);
|
||||
if (retVal == 0 && ((num == 3) || (num == 6) || (num == 9))) {
|
||||
pSysInfo->EuCountPerPoolMin = static_cast<uint32_t>(num);
|
||||
}
|
||||
//in case of failure or not getting right values, fallback to default
|
||||
else {
|
||||
if (pSysInfo->SubSliceCount == 3) {
|
||||
// Native 3x6, PooledEU 2x9
|
||||
pSysInfo->EuCountPerPoolMin = 9;
|
||||
} else {
|
||||
// Native 3x6 fused down to 2x6, PooledEU worst case 3+9
|
||||
pSysInfo->EuCountPerPoolMin = 3;
|
||||
}
|
||||
}
|
||||
pSysInfo->EuCountPerPoolMax = pSysInfo->EUCount - pSysInfo->EuCountPerPoolMin;
|
||||
}
|
||||
|
||||
return 0;
|
||||
}
|
||||
|
||||
} // namespace OCLRT
|
||||
95
runtime/gen9/linux/hw_info_config_glk.cpp
Normal file
95
runtime/gen9/linux/hw_info_config_glk.cpp
Normal file
@@ -0,0 +1,95 @@
|
||||
/*
|
||||
* 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 "runtime/helpers/hw_info.h"
|
||||
#include "runtime/os_interface/linux/hw_info_config.h"
|
||||
#include "runtime/os_interface/linux/drm_neo.h"
|
||||
#include "runtime/os_interface/linux/os_interface.h"
|
||||
|
||||
namespace OCLRT {
|
||||
|
||||
template <>
|
||||
int HwInfoConfigHw<IGFX_GEMINILAKE>::configureHardwareCustom(HardwareInfo *hwInfo, OSInterface *osIface) {
|
||||
Drm *drm = osIface->get()->getDrm();
|
||||
FeatureTable *pSkuTable = const_cast<FeatureTable *>(hwInfo->pSkuTable);
|
||||
GT_SYSTEM_INFO *pSysInfo = const_cast<GT_SYSTEM_INFO *>(hwInfo->pSysInfo);
|
||||
WorkaroundTable *pWaTable = const_cast<WorkaroundTable *>(hwInfo->pWaTable);
|
||||
|
||||
pSysInfo->VEBoxInfo.Instances.Bits.VEBox0Enabled = 1;
|
||||
pSysInfo->VEBoxInfo.IsValid = true;
|
||||
|
||||
pSkuTable->ftrGpGpuMidBatchPreempt = 1;
|
||||
pSkuTable->ftrGpGpuThreadGroupLevelPreempt = 1;
|
||||
pSkuTable->ftrGpGpuMidThreadLevelPreempt = 1;
|
||||
pSkuTable->ftr3dMidBatchPreempt = 1;
|
||||
pSkuTable->ftr3dObjectLevelPreempt = 1;
|
||||
pSkuTable->ftrPerCtxtPreemptionGranularityControl = 1;
|
||||
|
||||
pSkuTable->ftrLCIA = 1;
|
||||
pSkuTable->ftrPPGTT = 1;
|
||||
pSkuTable->ftrL3IACoherency = 1;
|
||||
pSkuTable->ftrIA32eGfxPTEs = 1;
|
||||
|
||||
pSkuTable->ftrTranslationTable = 1;
|
||||
pSkuTable->ftrUserModeTranslationTable = 1;
|
||||
pSkuTable->ftrEnableGuC = 1;
|
||||
pSkuTable->ftrTileMappedResource = 1;
|
||||
pSkuTable->ftrULT = 1;
|
||||
pSkuTable->ftrAstcHdr2D = 1;
|
||||
pSkuTable->ftrAstcLdr2D = 1;
|
||||
|
||||
pWaTable->waLLCCachingUnsupported = 1;
|
||||
pWaTable->waMsaa8xTileYDepthPitchAlignment = 1;
|
||||
pWaTable->waFbcLinearSurfaceStride = 1;
|
||||
pWaTable->wa4kAlignUVOffsetNV12LinearSurface = 1;
|
||||
pWaTable->waEnablePreemptionGranularityControlByUMD = 1;
|
||||
pWaTable->waSendMIFLUSHBeforeVFE = 1;
|
||||
pWaTable->waForcePcBbFullCfgRestore = 1;
|
||||
pWaTable->waReportPerfCountUseGlobalContextID = 1;
|
||||
|
||||
int enabled = 0;
|
||||
int retVal = drm->getEnabledPooledEu(enabled);
|
||||
if (retVal == 0) {
|
||||
pSkuTable->ftrPooledEuEnabled = (enabled != 0) ? 1 : 0;
|
||||
}
|
||||
if (enabled) {
|
||||
int num = 0;
|
||||
retVal = drm->getMinEuInPool(num);
|
||||
if (retVal == 0 && ((num == 3) || (num == 6) || (num == 9))) {
|
||||
pSysInfo->EuCountPerPoolMin = static_cast<uint32_t>(num);
|
||||
}
|
||||
//in case of failure or not getting right values, fallback to default
|
||||
else {
|
||||
if (pSysInfo->SubSliceCount == 3) {
|
||||
// Native 3x6, PooledEU 2x9
|
||||
pSysInfo->EuCountPerPoolMin = 9;
|
||||
} else {
|
||||
// Native 3x6 fused down to 2x6, PooledEU worst case 3+9
|
||||
pSysInfo->EuCountPerPoolMin = 3;
|
||||
}
|
||||
}
|
||||
pSysInfo->EuCountPerPoolMax = pSysInfo->EUCount - pSysInfo->EuCountPerPoolMin;
|
||||
}
|
||||
|
||||
return 0;
|
||||
}
|
||||
} // namespace OCLRT
|
||||
90
runtime/gen9/linux/hw_info_config_kbl.cpp
Normal file
90
runtime/gen9/linux/hw_info_config_kbl.cpp
Normal file
@@ -0,0 +1,90 @@
|
||||
/*
|
||||
* 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 "runtime/helpers/hw_info.h"
|
||||
#include "runtime/os_interface/linux/hw_info_config.h"
|
||||
|
||||
namespace OCLRT {
|
||||
|
||||
template <>
|
||||
int HwInfoConfigHw<IGFX_KABYLAKE>::configureHardwareCustom(HardwareInfo *hwInfo, OSInterface *osIface) {
|
||||
PLATFORM *pPlatform = const_cast<PLATFORM *>(hwInfo->pPlatform);
|
||||
FeatureTable *pSkuTable = const_cast<FeatureTable *>(hwInfo->pSkuTable);
|
||||
GT_SYSTEM_INFO *pSysInfo = const_cast<GT_SYSTEM_INFO *>(hwInfo->pSysInfo);
|
||||
WorkaroundTable *pWaTable = const_cast<WorkaroundTable *>(hwInfo->pWaTable);
|
||||
|
||||
if (pSysInfo->SubSliceCount > 3) {
|
||||
pSysInfo->SliceCount = 2;
|
||||
} else {
|
||||
pSysInfo->SliceCount = 1;
|
||||
}
|
||||
|
||||
pSysInfo->VEBoxInfo.Instances.Bits.VEBox0Enabled = 1;
|
||||
pSysInfo->VEBoxInfo.IsValid = true;
|
||||
pSkuTable->ftrVEBOX = 1;
|
||||
|
||||
pSkuTable->ftrGpGpuMidBatchPreempt = 1;
|
||||
pSkuTable->ftrGpGpuThreadGroupLevelPreempt = 1;
|
||||
pSkuTable->ftrGpGpuMidThreadLevelPreempt = 1;
|
||||
pSkuTable->ftr3dMidBatchPreempt = 1;
|
||||
pSkuTable->ftr3dObjectLevelPreempt = 1;
|
||||
pSkuTable->ftrPerCtxtPreemptionGranularityControl = 1;
|
||||
|
||||
pSkuTable->ftrPPGTT = 1;
|
||||
pSkuTable->ftrSVM = 1;
|
||||
pSkuTable->ftrL3IACoherency = 1;
|
||||
pSkuTable->ftrIA32eGfxPTEs = 1;
|
||||
|
||||
pSkuTable->ftrDisplayYTiling = 1;
|
||||
pSkuTable->ftrTranslationTable = 1;
|
||||
pSkuTable->ftrUserModeTranslationTable = 1;
|
||||
pSkuTable->ftrEnableGuC = 1;
|
||||
|
||||
pSkuTable->ftrFbc = 1;
|
||||
pSkuTable->ftrFbc2AddressTranslation = 1;
|
||||
pSkuTable->ftrFbcBlitterTracking = 1;
|
||||
pSkuTable->ftrFbcCpuTracking = 1;
|
||||
|
||||
pWaTable->waEnablePreemptionGranularityControlByUMD = 1;
|
||||
pWaTable->waSendMIFLUSHBeforeVFE = 1;
|
||||
pWaTable->waReportPerfCountUseGlobalContextID = 1;
|
||||
pWaTable->waMsaa8xTileYDepthPitchAlignment = 1;
|
||||
pWaTable->waLosslessCompressionSurfaceStride = 1;
|
||||
pWaTable->waFbcLinearSurfaceStride = 1;
|
||||
pWaTable->wa4kAlignUVOffsetNV12LinearSurface = 1;
|
||||
|
||||
if (pPlatform->usRevId <= 0x6) {
|
||||
pWaTable->waDisableLSQCROPERFforOCL = 1;
|
||||
pWaTable->waEncryptedEdramOnlyPartials = 1;
|
||||
}
|
||||
if (pPlatform->usRevId <= 0x8) {
|
||||
pWaTable->waForcePcBbFullCfgRestore = 1;
|
||||
}
|
||||
|
||||
if (hwInfo->pPlatform->usDeviceID == IKBL_GT3_28W_ULT_DEVICE_F0_ID ||
|
||||
hwInfo->pPlatform->usDeviceID == IKBL_GT3_15W_ULT_DEVICE_F0_ID) {
|
||||
pSysInfo->EdramSizeInKb = 64 * 1024;
|
||||
}
|
||||
return 0;
|
||||
}
|
||||
|
||||
} // namespace OCLRT
|
||||
105
runtime/gen9/linux/hw_info_config_skl.cpp
Normal file
105
runtime/gen9/linux/hw_info_config_skl.cpp
Normal file
@@ -0,0 +1,105 @@
|
||||
/*
|
||||
* 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 "runtime/helpers/hw_info.h"
|
||||
#include "runtime/os_interface/linux/hw_info_config.h"
|
||||
#include "runtime/gen9/hw_cmds_skl.h"
|
||||
|
||||
namespace OCLRT {
|
||||
|
||||
template <>
|
||||
int HwInfoConfigHw<IGFX_SKYLAKE>::configureHardwareCustom(HardwareInfo *hwInfo, OSInterface *osIface) {
|
||||
FeatureTable *pSkuTable = const_cast<FeatureTable *>(hwInfo->pSkuTable);
|
||||
GT_SYSTEM_INFO *pSysInfo = const_cast<GT_SYSTEM_INFO *>(hwInfo->pSysInfo);
|
||||
WorkaroundTable *pWaTable = const_cast<WorkaroundTable *>(hwInfo->pWaTable);
|
||||
|
||||
if (pSysInfo->SubSliceCount > 3) {
|
||||
pSysInfo->SliceCount = 2;
|
||||
} else {
|
||||
pSysInfo->SliceCount = 1;
|
||||
}
|
||||
|
||||
pSysInfo->VEBoxInfo.Instances.Bits.VEBox0Enabled = 1;
|
||||
pSysInfo->VDBoxInfo.Instances.Bits.VDBox0Enabled = 1;
|
||||
pSysInfo->VEBoxInfo.IsValid = true;
|
||||
pSysInfo->VDBoxInfo.IsValid = true;
|
||||
|
||||
pSkuTable->ftrGpGpuMidBatchPreempt = 1;
|
||||
pSkuTable->ftrGpGpuThreadGroupLevelPreempt = 1;
|
||||
pSkuTable->ftrGpGpuMidThreadLevelPreempt = 1;
|
||||
pSkuTable->ftr3dMidBatchPreempt = 1;
|
||||
pSkuTable->ftr3dObjectLevelPreempt = 1;
|
||||
pSkuTable->ftrPerCtxtPreemptionGranularityControl = 1;
|
||||
|
||||
pSkuTable->ftrPPGTT = 1;
|
||||
pSkuTable->ftrSVM = 1;
|
||||
pSkuTable->ftrL3IACoherency = 1;
|
||||
pSkuTable->ftrIA32eGfxPTEs = 1;
|
||||
|
||||
pSkuTable->ftrDisplayYTiling = 1;
|
||||
pSkuTable->ftrTranslationTable = 1;
|
||||
pSkuTable->ftrUserModeTranslationTable = 1;
|
||||
|
||||
pSkuTable->ftrEnableGuC = 1;
|
||||
|
||||
pSkuTable->ftrFbc = 1;
|
||||
pSkuTable->ftrFbc2AddressTranslation = 1;
|
||||
pSkuTable->ftrFbcBlitterTracking = 1;
|
||||
pSkuTable->ftrFbcCpuTracking = 1;
|
||||
|
||||
pSkuTable->ftrVcs2 = pSkuTable->ftrGT3 || pSkuTable->ftrGT4;
|
||||
pSkuTable->ftrVEBOX = 1;
|
||||
pSkuTable->ftrSingleVeboxSlice = pSkuTable->ftrGT1 || pSkuTable->ftrGT2;
|
||||
|
||||
pWaTable->waEnablePreemptionGranularityControlByUMD = 1;
|
||||
pWaTable->waSendMIFLUSHBeforeVFE = 1;
|
||||
pWaTable->waReportPerfCountUseGlobalContextID = 1;
|
||||
pWaTable->waDisableLSQCROPERFforOCL = 1;
|
||||
pWaTable->waMsaa8xTileYDepthPitchAlignment = 1;
|
||||
pWaTable->waLosslessCompressionSurfaceStride = 1;
|
||||
pWaTable->waFbcLinearSurfaceStride = 1;
|
||||
pWaTable->wa4kAlignUVOffsetNV12LinearSurface = 1;
|
||||
pWaTable->waEncryptedEdramOnlyPartials = 1;
|
||||
pWaTable->waDisableEdramForDisplayRT = 1;
|
||||
pWaTable->waForcePcBbFullCfgRestore = 1;
|
||||
|
||||
if ((1 << hwInfo->pPlatform->usRevId) & 0x0eu) {
|
||||
pWaTable->waCompressedResourceRequiresConstVA21 = 1;
|
||||
}
|
||||
if ((1 << hwInfo->pPlatform->usRevId) & 0x0fu) {
|
||||
pWaTable->waDisablePerCtxtPreemptionGranularityControl = 1;
|
||||
}
|
||||
|
||||
if (hwInfo->pPlatform->usDeviceID == ISKL_GT3e_ULT_DEVICE_F0_ID_540 ||
|
||||
hwInfo->pPlatform->usDeviceID == ISKL_GT3e_ULT_DEVICE_F0_ID_550 ||
|
||||
hwInfo->pPlatform->usDeviceID == ISKL_GT3_MEDIA_SERV_DEVICE_F0_ID) {
|
||||
pSysInfo->EdramSizeInKb = 64 * 1024;
|
||||
}
|
||||
|
||||
if (hwInfo->pPlatform->usDeviceID == ISKL_GT4_HALO_MOBL_DEVICE_F0_ID ||
|
||||
hwInfo->pPlatform->usDeviceID == ISKL_GT4_WRK_DEVICE_F0_ID) {
|
||||
pSysInfo->EdramSizeInKb = 128 * 1024;
|
||||
}
|
||||
return 0;
|
||||
}
|
||||
|
||||
} // namespace OCLRT
|
||||
Reference in New Issue
Block a user