2017-12-21 07:45:38 +08:00
|
|
|
/*
|
2019-01-22 17:24:28 +08:00
|
|
|
* Copyright (C) 2017-2019 Intel Corporation
|
2017-12-21 07:45:38 +08:00
|
|
|
*
|
2018-09-18 15:11:08 +08:00
|
|
|
* SPDX-License-Identifier: MIT
|
2017-12-21 07:45:38 +08:00
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include "runtime/helpers/hw_info.h"
|
2018-03-15 22:03:51 +08:00
|
|
|
#include "runtime/os_interface/hw_info_config.h"
|
2017-12-21 07:45:38 +08:00
|
|
|
#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;
|
|
|
|
|
2019-01-22 17:24:28 +08:00
|
|
|
pSkuTable->ftrGpGpuMidBatchPreempt = true;
|
|
|
|
pSkuTable->ftrGpGpuThreadGroupLevelPreempt = true;
|
|
|
|
pSkuTable->ftrGpGpuMidThreadLevelPreempt = false;
|
|
|
|
pSkuTable->ftr3dMidBatchPreempt = true;
|
|
|
|
pSkuTable->ftr3dObjectLevelPreempt = true;
|
|
|
|
pSkuTable->ftrPerCtxtPreemptionGranularityControl = true;
|
2017-12-21 07:45:38 +08:00
|
|
|
|
2019-01-22 17:24:28 +08:00
|
|
|
pSkuTable->ftrLCIA = true;
|
|
|
|
pSkuTable->ftrPPGTT = true;
|
|
|
|
pSkuTable->ftrL3IACoherency = true;
|
|
|
|
pSkuTable->ftrIA32eGfxPTEs = true;
|
2017-12-21 07:45:38 +08:00
|
|
|
|
2019-01-22 17:24:28 +08:00
|
|
|
pSkuTable->ftrTranslationTable = true;
|
|
|
|
pSkuTable->ftrUserModeTranslationTable = true;
|
|
|
|
pSkuTable->ftrEnableGuC = true;
|
|
|
|
pSkuTable->ftrTileMappedResource = true;
|
|
|
|
pSkuTable->ftrULT = true;
|
|
|
|
pSkuTable->ftrAstcHdr2D = true;
|
|
|
|
pSkuTable->ftrAstcLdr2D = true;
|
|
|
|
pSkuTable->ftrTileY = true;
|
2017-12-21 07:45:38 +08:00
|
|
|
|
2019-01-22 17:24:28 +08:00
|
|
|
pWaTable->waLLCCachingUnsupported = true;
|
|
|
|
pWaTable->waMsaa8xTileYDepthPitchAlignment = true;
|
|
|
|
pWaTable->waFbcLinearSurfaceStride = true;
|
|
|
|
pWaTable->wa4kAlignUVOffsetNV12LinearSurface = true;
|
|
|
|
pWaTable->waEnablePreemptionGranularityControlByUMD = true;
|
|
|
|
pWaTable->waSendMIFLUSHBeforeVFE = true;
|
|
|
|
pWaTable->waForcePcBbFullCfgRestore = true;
|
|
|
|
pWaTable->waReportPerfCountUseGlobalContextID = true;
|
|
|
|
pWaTable->waSamplerCacheFlushBetweenRedescribedSurfaceReads = true;
|
2017-12-21 07:45:38 +08:00
|
|
|
|
|
|
|
int enabled = 0;
|
|
|
|
int retVal = drm->getEnabledPooledEu(enabled);
|
|
|
|
if (retVal == 0) {
|
2019-01-22 17:24:28 +08:00
|
|
|
pSkuTable->ftrPooledEuEnabled = (enabled != 0);
|
2017-12-21 07:45:38 +08:00
|
|
|
}
|
|
|
|
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;
|
|
|
|
}
|
|
|
|
|
2018-03-26 21:39:06 +08:00
|
|
|
auto &kmdNotifyProperties = hwInfo->capabilityTable.kmdNotifyProperties;
|
|
|
|
kmdNotifyProperties.enableKmdNotify = true;
|
|
|
|
kmdNotifyProperties.enableQuickKmdSleep = true;
|
|
|
|
kmdNotifyProperties.enableQuickKmdSleepForSporadicWaits = true;
|
|
|
|
kmdNotifyProperties.delayKmdNotifyMicroseconds = 50000;
|
2018-04-03 18:29:49 +08:00
|
|
|
kmdNotifyProperties.delayQuickKmdSleepMicroseconds = 5000;
|
2018-03-26 21:39:06 +08:00
|
|
|
kmdNotifyProperties.delayQuickKmdSleepForSporadicWaitsMicroseconds = 200000;
|
|
|
|
|
2017-12-21 07:45:38 +08:00
|
|
|
return 0;
|
|
|
|
}
|
2018-04-05 00:38:36 +08:00
|
|
|
|
|
|
|
template class HwInfoConfigHw<IGFX_GEMINILAKE>;
|
2017-12-21 07:45:38 +08:00
|
|
|
} // namespace OCLRT
|