Files
compute-runtime/runtime/gen9/linux/hw_info_config_bxt.inl
Mateusz Jablonski 54f65c0243 Move headers to core
- hw_info
- hw_cmds
- kmd_notify_properties
- completion_stamp
- bxml_generator_glue

Related-To: NEO-3982
Change-Id: I3ed3ef81f42596f381e60c19250f6eb1296d47a4
Signed-off-by: Mateusz Jablonski <mateusz.jablonski@intel.com>
2019-12-02 14:20:45 +01:00

67 lines
2.2 KiB
C++

/*
* Copyright (C) 2017-2019 Intel Corporation
*
* SPDX-License-Identifier: MIT
*
*/
#include "core/helpers/hw_info.h"
#include "runtime/os_interface/hw_info_config.h"
#include "runtime/os_interface/linux/drm_neo.h"
#include "runtime/os_interface/linux/os_interface.h"
namespace NEO {
template <>
int HwInfoConfigHw<IGFX_BROXTON>::configureHardwareCustom(HardwareInfo *hwInfo, OSInterface *osIface) {
if (nullptr == osIface) {
return 0;
}
Drm *drm = osIface->get()->getDrm();
FeatureTable *featureTable = &hwInfo->featureTable;
GT_SYSTEM_INFO *gtSystemInfo = &hwInfo->gtSystemInfo;
gtSystemInfo->SliceCount = 1;
gtSystemInfo->VEBoxInfo.Instances.Bits.VEBox0Enabled = 1;
gtSystemInfo->VEBoxInfo.IsValid = true;
int enabled = 0;
int retVal = drm->getEnabledPooledEu(enabled);
if (retVal == 0) {
featureTable->ftrPooledEuEnabled = (enabled != 0);
}
if (enabled) {
int num = 0;
retVal = drm->getMinEuInPool(num);
if (retVal == 0 && ((num == 3) || (num == 6) || (num == 9))) {
gtSystemInfo->EuCountPerPoolMin = static_cast<uint32_t>(num);
}
//in case of failure or not getting right values, fallback to default
else {
if (gtSystemInfo->SubSliceCount == 3) {
// Native 3x6, PooledEU 2x9
gtSystemInfo->EuCountPerPoolMin = 9;
} else {
// Native 3x6 fused down to 2x6, PooledEU worst case 3+9
gtSystemInfo->EuCountPerPoolMin = 3;
}
}
gtSystemInfo->EuCountPerPoolMax = gtSystemInfo->EUCount - gtSystemInfo->EuCountPerPoolMin;
}
auto &kmdNotifyProperties = hwInfo->capabilityTable.kmdNotifyProperties;
kmdNotifyProperties.enableKmdNotify = true;
kmdNotifyProperties.enableQuickKmdSleep = true;
kmdNotifyProperties.enableQuickKmdSleepForSporadicWaits = true;
kmdNotifyProperties.delayKmdNotifyMicroseconds = 50000;
kmdNotifyProperties.delayQuickKmdSleepMicroseconds = 5000;
kmdNotifyProperties.delayQuickKmdSleepForSporadicWaitsMicroseconds = 200000;
return 0;
}
template class HwInfoConfigHw<IGFX_BROXTON>;
} // namespace NEO