2017-12-21 07:45:38 +08:00
|
|
|
/*
|
2020-01-31 21:35:46 +08:00
|
|
|
* Copyright (C) 2017-2020 Intel Corporation
|
2017-12-21 07:45:38 +08:00
|
|
|
*
|
2018-09-18 15:11:08 +08:00
|
|
|
* SPDX-License-Identifier: MIT
|
2017-12-21 07:45:38 +08:00
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
2020-02-24 05:44:01 +08:00
|
|
|
#include "shared/source/helpers/hw_info.h"
|
|
|
|
#include "shared/source/os_interface/hw_info_config.h"
|
2017-12-21 07:45:38 +08:00
|
|
|
|
2020-07-30 21:02:11 +08:00
|
|
|
#include "hw_cmds.h"
|
|
|
|
|
2019-03-26 18:59:46 +08:00
|
|
|
namespace NEO {
|
2017-12-21 07:45:38 +08:00
|
|
|
|
|
|
|
template <>
|
|
|
|
int HwInfoConfigHw<IGFX_SKYLAKE>::configureHardwareCustom(HardwareInfo *hwInfo, OSInterface *osIface) {
|
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-21 07:45:38 +08:00
|
|
|
|
2019-05-08 22:00:24 +08:00
|
|
|
gtSystemInfo->VEBoxInfo.Instances.Bits.VEBox0Enabled = 1;
|
|
|
|
gtSystemInfo->VDBoxInfo.Instances.Bits.VDBox0Enabled = 1;
|
|
|
|
gtSystemInfo->VEBoxInfo.IsValid = true;
|
|
|
|
gtSystemInfo->VDBoxInfo.IsValid = true;
|
2017-12-21 07:45:38 +08:00
|
|
|
|
2019-05-08 22:00:24 +08:00
|
|
|
if (hwInfo->platform.usDeviceID == ISKL_GT3e_ULT_DEVICE_F0_ID_540 ||
|
|
|
|
hwInfo->platform.usDeviceID == ISKL_GT3e_ULT_DEVICE_F0_ID_550 ||
|
|
|
|
hwInfo->platform.usDeviceID == ISKL_GT3_MEDIA_SERV_DEVICE_F0_ID) {
|
|
|
|
gtSystemInfo->EdramSizeInKb = 64 * 1024;
|
2017-12-21 07:45:38 +08:00
|
|
|
}
|
|
|
|
|
2019-05-08 22:00:24 +08:00
|
|
|
if (hwInfo->platform.usDeviceID == ISKL_GT4_HALO_MOBL_DEVICE_F0_ID ||
|
|
|
|
hwInfo->platform.usDeviceID == ISKL_GT4_WRK_DEVICE_F0_ID) {
|
|
|
|
gtSystemInfo->EdramSizeInKb = 128 * 1024;
|
2017-12-21 07:45:38 +08:00
|
|
|
}
|
2018-03-23 02:48:03 +08:00
|
|
|
|
|
|
|
auto &kmdNotifyProperties = hwInfo->capabilityTable.kmdNotifyProperties;
|
|
|
|
kmdNotifyProperties.enableKmdNotify = true;
|
|
|
|
kmdNotifyProperties.enableQuickKmdSleep = true;
|
|
|
|
kmdNotifyProperties.enableQuickKmdSleepForSporadicWaits = true;
|
|
|
|
kmdNotifyProperties.delayKmdNotifyMicroseconds = 50000;
|
2018-04-04 14:49:24 +08:00
|
|
|
kmdNotifyProperties.delayQuickKmdSleepMicroseconds = 5000;
|
2018-03-23 02:48:03 +08:00
|
|
|
kmdNotifyProperties.delayQuickKmdSleepForSporadicWaitsMicroseconds = 200000;
|
2017-12-21 07:45:38 +08:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2018-04-05 00:38:36 +08:00
|
|
|
template class HwInfoConfigHw<IGFX_SKYLAKE>;
|
2019-03-26 18:59:46 +08:00
|
|
|
} // namespace NEO
|