mirror of
https://github.com/intel/compute-runtime.git
synced 2026-01-11 16:45:25 +08:00
Change-Id: Iec00c137e332ac818ba6958e57c90dccf7629931 Signed-off-by: Dunajski, Bartosz <bartosz.dunajski@intel.com>
88 lines
3.1 KiB
C++
88 lines
3.1 KiB
C++
/*
|
|
* Copyright (C) 2017-2019 Intel Corporation
|
|
*
|
|
* SPDX-License-Identifier: MIT
|
|
*
|
|
*/
|
|
|
|
#include "runtime/helpers/hw_info.h"
|
|
#include "runtime/os_interface/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 = true;
|
|
|
|
pSkuTable->ftrGpGpuMidBatchPreempt = true;
|
|
pSkuTable->ftrGpGpuThreadGroupLevelPreempt = true;
|
|
pSkuTable->ftrGpGpuMidThreadLevelPreempt = false;
|
|
pSkuTable->ftr3dMidBatchPreempt = true;
|
|
pSkuTable->ftr3dObjectLevelPreempt = true;
|
|
pSkuTable->ftrPerCtxtPreemptionGranularityControl = true;
|
|
|
|
pSkuTable->ftrPPGTT = true;
|
|
pSkuTable->ftrSVM = true;
|
|
pSkuTable->ftrL3IACoherency = true;
|
|
pSkuTable->ftrIA32eGfxPTEs = true;
|
|
|
|
pSkuTable->ftrDisplayYTiling = true;
|
|
pSkuTable->ftrTranslationTable = true;
|
|
pSkuTable->ftrUserModeTranslationTable = true;
|
|
pSkuTable->ftrEnableGuC = true;
|
|
|
|
pSkuTable->ftrFbc = true;
|
|
pSkuTable->ftrFbc2AddressTranslation = true;
|
|
pSkuTable->ftrFbcBlitterTracking = true;
|
|
pSkuTable->ftrFbcCpuTracking = true;
|
|
pSkuTable->ftrTileY = true;
|
|
|
|
pWaTable->waEnablePreemptionGranularityControlByUMD = true;
|
|
pWaTable->waSendMIFLUSHBeforeVFE = true;
|
|
pWaTable->waReportPerfCountUseGlobalContextID = true;
|
|
pWaTable->waMsaa8xTileYDepthPitchAlignment = true;
|
|
pWaTable->waLosslessCompressionSurfaceStride = true;
|
|
pWaTable->waFbcLinearSurfaceStride = true;
|
|
pWaTable->wa4kAlignUVOffsetNV12LinearSurface = true;
|
|
pWaTable->waSamplerCacheFlushBetweenRedescribedSurfaceReads = true;
|
|
|
|
if (pPlatform->usRevId <= 0x6) {
|
|
pWaTable->waDisableLSQCROPERFforOCL = true;
|
|
pWaTable->waEncryptedEdramOnlyPartials = true;
|
|
}
|
|
if (pPlatform->usRevId <= 0x8) {
|
|
pWaTable->waForcePcBbFullCfgRestore = true;
|
|
}
|
|
|
|
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;
|
|
}
|
|
|
|
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_KABYLAKE>;
|
|
} // namespace OCLRT
|