Skip to content

Commit d51f2cd

Browse files
Adjust KMD Notify delay on SKL
Change-Id: I2fb2b5bb79e786a0902747bef2720359f0a30da3
1 parent d8199a4 commit d51f2cd

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

runtime/gen9/linux/hw_info_config_skl.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -110,7 +110,7 @@ int HwInfoConfigHw<IGFX_SKYLAKE>::configureHardwareCustom(HardwareInfo *hwInfo,
110110
kmdNotifyProperties.enableQuickKmdSleep = true;
111111
kmdNotifyProperties.enableQuickKmdSleepForSporadicWaits = true;
112112
kmdNotifyProperties.delayKmdNotifyMicroseconds = 50000;
113-
kmdNotifyProperties.delayQuickKmdSleepMicroseconds = 500;
113+
kmdNotifyProperties.delayQuickKmdSleepMicroseconds = 5000;
114114
kmdNotifyProperties.delayQuickKmdSleepForSporadicWaitsMicroseconds = 200000;
115115
return 0;
116116
}

unit_tests/gen9/skl/linux/hw_info_config_tests.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -175,7 +175,7 @@ SKLTEST_F(HwInfoConfigTestLinuxSkl, configureHwInfo) {
175175
EXPECT_TRUE(outKmdNotifyProperties.enableKmdNotify);
176176
EXPECT_EQ(50000, outKmdNotifyProperties.delayKmdNotifyMicroseconds);
177177
EXPECT_TRUE(outKmdNotifyProperties.enableQuickKmdSleep);
178-
EXPECT_EQ(500, outKmdNotifyProperties.delayQuickKmdSleepMicroseconds);
178+
EXPECT_EQ(5000, outKmdNotifyProperties.delayQuickKmdSleepMicroseconds);
179179
EXPECT_TRUE(outKmdNotifyProperties.enableQuickKmdSleepForSporadicWaits);
180180
EXPECT_EQ(200000, outKmdNotifyProperties.delayQuickKmdSleepForSporadicWaitsMicroseconds);
181181
}

0 commit comments

Comments
 (0)