Increase KMD notify delay for DG1 platform

Related-To: NEO-4759

Signed-off-by: Zbigniew Zdanowicz <zbigniew.zdanowicz@intel.com>
This commit is contained in:
Zbigniew Zdanowicz
2021-05-05 15:42:12 +02:00
committed by Compute-Runtime-Automation
parent c6e81d3ed5
commit 24bc854f90
2 changed files with 2 additions and 2 deletions

View File

@ -30,5 +30,5 @@ DG1TEST_F(HwHelperTestGen12Lp, GivenDG1WhenConfigureHardwareCustomThenKmdNotifyI
OSInterface osIface;
hwInfoConfig->configureHardwareCustom(&hardwareInfo, &osIface);
EXPECT_TRUE(hardwareInfo.capabilityTable.kmdNotifyProperties.enableKmdNotify);
EXPECT_EQ(100ll, hardwareInfo.capabilityTable.kmdNotifyProperties.delayKmdNotifyMicroseconds);
EXPECT_EQ(300ll, hardwareInfo.capabilityTable.kmdNotifyProperties.delayKmdNotifyMicroseconds);
}

View File

@ -20,7 +20,7 @@ int HwInfoConfigHw<IGFX_DG1>::configureHardwareCustom(HardwareInfo *hwInfo, OSIn
hwInfo->featureTable.ftrGpGpuMidThreadLevelPreempt = false;
auto &kmdNotifyProperties = hwInfo->capabilityTable.kmdNotifyProperties;
kmdNotifyProperties.enableKmdNotify = true;
kmdNotifyProperties.delayKmdNotifyMicroseconds = 100;
kmdNotifyProperties.delayKmdNotifyMicroseconds = 300;
return 0;
}