Skip to content

Commit f2b96fa

Browse files
Adjust KMD Notify timeout for KBL
Change-Id: I8415bbe491bab793e8da57958c0cd198aa91fe2f
1 parent 9bdf014 commit f2b96fa

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

runtime/gen9/linux/hw_info_config_kbl.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -91,7 +91,7 @@ int HwInfoConfigHw<IGFX_KABYLAKE>::configureHardwareCustom(HardwareInfo *hwInfo,
9191
kmdNotifyProperties.enableQuickKmdSleep = true;
9292
kmdNotifyProperties.enableQuickKmdSleepForSporadicWaits = true;
9393
kmdNotifyProperties.delayKmdNotifyMicroseconds = 50000;
94-
kmdNotifyProperties.delayQuickKmdSleepMicroseconds = 500;
94+
kmdNotifyProperties.delayQuickKmdSleepMicroseconds = 5000;
9595
kmdNotifyProperties.delayQuickKmdSleepForSporadicWaitsMicroseconds = 200000;
9696

9797
return 0;

unit_tests/gen9/kbl/linux/hw_info_config_tests.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -170,7 +170,7 @@ KBLTEST_F(HwInfoConfigTestLinuxKbl, configureHwInfo) {
170170
EXPECT_TRUE(outKmdNotifyProperties.enableKmdNotify);
171171
EXPECT_EQ(50000, outKmdNotifyProperties.delayKmdNotifyMicroseconds);
172172
EXPECT_TRUE(outKmdNotifyProperties.enableQuickKmdSleep);
173-
EXPECT_EQ(500, outKmdNotifyProperties.delayQuickKmdSleepMicroseconds);
173+
EXPECT_EQ(5000, outKmdNotifyProperties.delayQuickKmdSleepMicroseconds);
174174
EXPECT_TRUE(outKmdNotifyProperties.enableQuickKmdSleepForSporadicWaits);
175175
EXPECT_EQ(200000, outKmdNotifyProperties.delayQuickKmdSleepForSporadicWaitsMicroseconds);
176176
}

0 commit comments

Comments
 (0)