2017-12-27 22:12:27 +08:00
|
|
|
/*
|
2022-03-11 01:27:38 +08:00
|
|
|
* Copyright (C) 2021-2022 Intel Corporation
|
2017-12-27 22:12:27 +08:00
|
|
|
*
|
2018-09-18 15:11:08 +08:00
|
|
|
* SPDX-License-Identifier: MIT
|
2017-12-27 22:12:27 +08:00
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
2022-08-23 12:02:33 +08:00
|
|
|
#include "shared/source/gen9/hw_cmds_cfl.h"
|
2020-02-24 05:44:01 +08:00
|
|
|
#include "shared/source/helpers/hw_info.h"
|
|
|
|
#include "shared/source/os_interface/hw_info_config.h"
|
2021-08-04 08:04:09 +08:00
|
|
|
#include "shared/source/os_interface/hw_info_config.inl"
|
2021-08-03 19:48:35 +08:00
|
|
|
#include "shared/source/os_interface/hw_info_config_bdw_and_later.inl"
|
2017-12-27 22:12:27 +08:00
|
|
|
|
2022-03-11 01:27:38 +08:00
|
|
|
constexpr static auto gfxProduct = IGFX_COFFEELAKE;
|
2022-11-16 20:14:49 +08:00
|
|
|
|
2022-03-11 01:27:38 +08:00
|
|
|
#include "shared/source/gen9/cfl/os_agnostic_hw_info_config_cfl.inl"
|
2017-12-27 22:12:27 +08:00
|
|
|
|
2022-07-08 19:29:59 +08:00
|
|
|
namespace NEO {
|
2017-12-27 22:12:27 +08:00
|
|
|
template <>
|
2022-11-07 22:47:17 +08:00
|
|
|
int HwInfoConfigHw<gfxProduct>::configureHardwareCustom(HardwareInfo *hwInfo, OSInterface *osIface) const {
|
2019-04-09 19:37:17 +08:00
|
|
|
if (nullptr == osIface) {
|
|
|
|
return 0;
|
|
|
|
}
|
2019-05-08 22:00:24 +08:00
|
|
|
GT_SYSTEM_INFO *gtSystemInfo = &hwInfo->gtSystemInfo;
|
2017-12-27 22:12:27 +08:00
|
|
|
|
2019-05-08 22:00:24 +08:00
|
|
|
if (gtSystemInfo->SubSliceCount > 3) {
|
|
|
|
gtSystemInfo->SliceCount = 2;
|
2017-12-27 22:12:27 +08:00
|
|
|
} else {
|
2019-05-08 22:00:24 +08:00
|
|
|
gtSystemInfo->SliceCount = 1;
|
2017-12-27 22:12:27 +08:00
|
|
|
}
|
|
|
|
|
2019-05-08 22:00:24 +08:00
|
|
|
gtSystemInfo->VEBoxInfo.Instances.Bits.VEBox0Enabled = true;
|
|
|
|
gtSystemInfo->VEBoxInfo.IsValid = true;
|
2017-12-27 22:12:27 +08:00
|
|
|
|
2020-11-05 23:01:58 +08:00
|
|
|
if (hwInfo->platform.usDeviceID == 0x3EA8 ||
|
|
|
|
hwInfo->platform.usDeviceID == 0x3EA6) {
|
2019-05-08 22:00:24 +08:00
|
|
|
gtSystemInfo->EdramSizeInKb = 64 * 1024;
|
2017-12-27 22:12:27 +08:00
|
|
|
}
|
2018-03-26 21:39:06 +08:00
|
|
|
|
|
|
|
auto &kmdNotifyProperties = hwInfo->capabilityTable.kmdNotifyProperties;
|
|
|
|
kmdNotifyProperties.enableKmdNotify = true;
|
|
|
|
kmdNotifyProperties.enableQuickKmdSleep = true;
|
|
|
|
kmdNotifyProperties.enableQuickKmdSleepForSporadicWaits = true;
|
|
|
|
kmdNotifyProperties.delayKmdNotifyMicroseconds = 50000;
|
2018-04-03 18:29:49 +08:00
|
|
|
kmdNotifyProperties.delayQuickKmdSleepMicroseconds = 5000;
|
2018-03-26 21:39:06 +08:00
|
|
|
kmdNotifyProperties.delayQuickKmdSleepForSporadicWaitsMicroseconds = 200000;
|
|
|
|
|
2017-12-27 22:12:27 +08:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2022-03-11 01:27:38 +08:00
|
|
|
template class HwInfoConfigHw<gfxProduct>;
|
2019-03-26 18:59:46 +08:00
|
|
|
} // namespace NEO
|