2017-12-21 00:45:38 +01:00
|
|
|
/*
|
2022-03-10 17:27:38 +00:00
|
|
|
* Copyright (C) 2021-2022 Intel Corporation
|
2017-12-21 00:45:38 +01:00
|
|
|
*
|
2018-09-18 09:11:08 +02:00
|
|
|
* SPDX-License-Identifier: MIT
|
2017-12-21 00:45:38 +01:00
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
2022-05-25 14:39:35 +00:00
|
|
|
#include "shared/source/gen9/hw_cmds_base.h"
|
2020-02-23 22:44:01 +01:00
|
|
|
#include "shared/source/helpers/hw_info.h"
|
|
|
|
#include "shared/source/os_interface/hw_info_config.h"
|
2021-08-04 00:04:09 +00:00
|
|
|
#include "shared/source/os_interface/hw_info_config.inl"
|
2021-08-03 11:48:35 +00:00
|
|
|
#include "shared/source/os_interface/hw_info_config_bdw_and_later.inl"
|
2020-02-23 22:44:01 +01:00
|
|
|
#include "shared/source/os_interface/linux/drm_neo.h"
|
2021-05-21 01:17:57 +02:00
|
|
|
#include "shared/source/os_interface/os_interface.h"
|
2017-12-21 00:45:38 +01:00
|
|
|
|
2022-06-20 12:16:05 +00:00
|
|
|
#include "platforms.h"
|
|
|
|
|
2019-03-26 11:59:46 +01:00
|
|
|
namespace NEO {
|
2022-03-10 17:27:38 +00:00
|
|
|
constexpr static auto gfxProduct = IGFX_BROXTON;
|
|
|
|
|
|
|
|
#include "shared/source/gen9/bxt/os_agnostic_hw_info_config_bxt.inl"
|
2017-12-21 00:45:38 +01:00
|
|
|
|
|
|
|
template <>
|
2022-03-10 17:27:38 +00:00
|
|
|
int HwInfoConfigHw<gfxProduct>::configureHardwareCustom(HardwareInfo *hwInfo, OSInterface *osIface) {
|
2019-04-09 13:37:17 +02:00
|
|
|
if (nullptr == osIface) {
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2021-05-21 01:17:57 +02:00
|
|
|
Drm *drm = osIface->getDriverModel()->as<Drm>();
|
2019-05-08 16:00:24 +02:00
|
|
|
FeatureTable *featureTable = &hwInfo->featureTable;
|
|
|
|
GT_SYSTEM_INFO *gtSystemInfo = &hwInfo->gtSystemInfo;
|
2017-12-21 00:45:38 +01:00
|
|
|
|
2019-05-08 16:00:24 +02:00
|
|
|
gtSystemInfo->SliceCount = 1;
|
2017-12-21 00:45:38 +01:00
|
|
|
|
2019-05-08 16:00:24 +02:00
|
|
|
gtSystemInfo->VEBoxInfo.Instances.Bits.VEBox0Enabled = 1;
|
|
|
|
gtSystemInfo->VEBoxInfo.IsValid = true;
|
2017-12-21 00:45:38 +01:00
|
|
|
|
|
|
|
int enabled = 0;
|
|
|
|
int retVal = drm->getEnabledPooledEu(enabled);
|
|
|
|
if (retVal == 0) {
|
2021-11-25 09:31:14 +00:00
|
|
|
featureTable->flags.ftrPooledEuEnabled = (enabled != 0);
|
2017-12-21 00:45:38 +01:00
|
|
|
}
|
|
|
|
if (enabled) {
|
|
|
|
int num = 0;
|
|
|
|
retVal = drm->getMinEuInPool(num);
|
|
|
|
if (retVal == 0 && ((num == 3) || (num == 6) || (num == 9))) {
|
2019-05-08 16:00:24 +02:00
|
|
|
gtSystemInfo->EuCountPerPoolMin = static_cast<uint32_t>(num);
|
2017-12-21 00:45:38 +01:00
|
|
|
}
|
2022-06-20 12:16:05 +00:00
|
|
|
// in case of failure or not getting right values, fallback to default
|
2017-12-21 00:45:38 +01:00
|
|
|
else {
|
2019-05-08 16:00:24 +02:00
|
|
|
if (gtSystemInfo->SubSliceCount == 3) {
|
2017-12-21 00:45:38 +01:00
|
|
|
// Native 3x6, PooledEU 2x9
|
2019-05-08 16:00:24 +02:00
|
|
|
gtSystemInfo->EuCountPerPoolMin = 9;
|
2017-12-21 00:45:38 +01:00
|
|
|
} else {
|
|
|
|
// Native 3x6 fused down to 2x6, PooledEU worst case 3+9
|
2019-05-08 16:00:24 +02:00
|
|
|
gtSystemInfo->EuCountPerPoolMin = 3;
|
2017-12-21 00:45:38 +01:00
|
|
|
}
|
|
|
|
}
|
2019-05-08 16:00:24 +02:00
|
|
|
gtSystemInfo->EuCountPerPoolMax = gtSystemInfo->EUCount - gtSystemInfo->EuCountPerPoolMin;
|
2017-12-21 00:45:38 +01:00
|
|
|
}
|
|
|
|
|
2018-03-26 15:39:06 +02:00
|
|
|
auto &kmdNotifyProperties = hwInfo->capabilityTable.kmdNotifyProperties;
|
|
|
|
kmdNotifyProperties.enableKmdNotify = true;
|
|
|
|
kmdNotifyProperties.enableQuickKmdSleep = true;
|
|
|
|
kmdNotifyProperties.enableQuickKmdSleepForSporadicWaits = true;
|
|
|
|
kmdNotifyProperties.delayKmdNotifyMicroseconds = 50000;
|
2018-04-03 12:29:49 +02:00
|
|
|
kmdNotifyProperties.delayQuickKmdSleepMicroseconds = 5000;
|
2018-03-26 15:39:06 +02:00
|
|
|
kmdNotifyProperties.delayQuickKmdSleepForSporadicWaitsMicroseconds = 200000;
|
|
|
|
|
2017-12-21 00:45:38 +01:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2022-03-10 17:27:38 +00:00
|
|
|
template class HwInfoConfigHw<gfxProduct>;
|
2019-03-26 11:59:46 +01:00
|
|
|
} // namespace NEO
|