Files
compute-runtime/runtime/gen9/linux/hw_info_config_glk.inl
Artur Harasimiuk 40146291ad Update copyright headers
Updating files modified in 2018 only. Older files remain with old style
copyright header

Change-Id: Ic99f2e190ad74b4b7f2bd79dd7b9fa5fbe36ec92
Signed-off-by: Artur Harasimiuk <artur.harasimiuk@intel.com>
2018-09-20 18:02:35 +02:00

92 lines
3.3 KiB
C++

/*
* Copyright (C) 2017-2018 Intel Corporation
*
* SPDX-License-Identifier: MIT
*
*/
#include "runtime/helpers/hw_info.h"
#include "runtime/os_interface/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 = 0;
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;
pWaTable->waSamplerCacheFlushBetweenRedescribedSurfaceReads = 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;
}
auto &kmdNotifyProperties = hwInfo->capabilityTable.kmdNotifyProperties;
kmdNotifyProperties.enableKmdNotify = true;
kmdNotifyProperties.enableQuickKmdSleep = true;
kmdNotifyProperties.enableQuickKmdSleepForSporadicWaits = true;
kmdNotifyProperties.delayKmdNotifyMicroseconds = 50000;
kmdNotifyProperties.delayQuickKmdSleepMicroseconds = 5000;
kmdNotifyProperties.delayQuickKmdSleepForSporadicWaitsMicroseconds = 200000;
return 0;
}
template class HwInfoConfigHw<IGFX_GEMINILAKE>;
} // namespace OCLRT