40 lines
1.2 KiB
C++
40 lines
1.2 KiB
C++
/*
|
|
* Copyright (C) 2021 Intel Corporation
|
|
*
|
|
* SPDX-License-Identifier: MIT
|
|
*
|
|
*/
|
|
|
|
#include "shared/source/helpers/hw_info.h"
|
|
#include "shared/source/os_interface/hw_info_config.h"
|
|
#include "shared/source/os_interface/hw_info_config.inl"
|
|
#include "shared/source/os_interface/hw_info_config_bdw_and_later.inl"
|
|
|
|
namespace NEO {
|
|
constexpr static auto gfxProduct = IGFX_DG1;
|
|
|
|
#include "shared/source/gen12lp/os_agnostic_hw_info_config_dg1.inl"
|
|
#include "shared/source/gen12lp/os_agnostic_hw_info_config_gen12lp.inl"
|
|
|
|
template <>
|
|
int HwInfoConfigHw<gfxProduct>::configureHardwareCustom(HardwareInfo *hwInfo, OSInterface *osIface) {
|
|
GT_SYSTEM_INFO *gtSystemInfo = &hwInfo->gtSystemInfo;
|
|
gtSystemInfo->SliceCount = 1;
|
|
|
|
enableBlitterOperationsSupport(hwInfo);
|
|
|
|
hwInfo->featureTable.flags.ftrGpGpuMidThreadLevelPreempt = false;
|
|
auto &kmdNotifyProperties = hwInfo->capabilityTable.kmdNotifyProperties;
|
|
kmdNotifyProperties.enableKmdNotify = true;
|
|
kmdNotifyProperties.delayKmdNotifyMicroseconds = 300;
|
|
return 0;
|
|
}
|
|
|
|
template <>
|
|
bool HwInfoConfigHw<gfxProduct>::overrideGfxPartitionLayoutForWsl() const {
|
|
return true;
|
|
}
|
|
|
|
template class HwInfoConfigHw<gfxProduct>;
|
|
} // namespace NEO
|