mirror of
https://github.com/intel/compute-runtime.git
synced 2026-01-03 14:55:24 +08:00
Move hw_info_config files to shared
Related-To: NEO-5161 Signed-off-by: Filip Hazubski <filip.hazubski@intel.com>
This commit is contained in:
committed by
Compute-Runtime-Automation
parent
4abe4a96b8
commit
dca33e10ec
@@ -1,38 +0,0 @@
|
||||
/*
|
||||
* Copyright (C) 2017-2020 Intel Corporation
|
||||
*
|
||||
* SPDX-License-Identifier: MIT
|
||||
*
|
||||
*/
|
||||
|
||||
#include "shared/source/helpers/hw_info.h"
|
||||
#include "shared/source/os_interface/hw_info_config.h"
|
||||
|
||||
namespace NEO {
|
||||
|
||||
template <>
|
||||
int HwInfoConfigHw<IGFX_BROADWELL>::configureHardwareCustom(HardwareInfo *hwInfo, OSInterface *osIface) {
|
||||
if (nullptr == osIface) {
|
||||
return 0;
|
||||
}
|
||||
GT_SYSTEM_INFO *gtSystemInfo = &hwInfo->gtSystemInfo;
|
||||
|
||||
// There is no interface to read total slice count from drm/i915, so we
|
||||
// derive this from the number of EUs and subslices.
|
||||
// otherwise there is one slice.
|
||||
if (gtSystemInfo->SubSliceCount > 3) {
|
||||
gtSystemInfo->SliceCount = 2;
|
||||
} else {
|
||||
gtSystemInfo->SliceCount = 1;
|
||||
}
|
||||
|
||||
if (hwInfo->platform.usDeviceID == IBDW_GT3_HALO_MOBL_DEVICE_F0_ID ||
|
||||
hwInfo->platform.usDeviceID == IBDW_GT3_SERV_DEVICE_F0_ID) {
|
||||
gtSystemInfo->EdramSizeInKb = 128 * 1024;
|
||||
}
|
||||
return 0;
|
||||
}
|
||||
|
||||
template class HwInfoConfigHw<IGFX_BROADWELL>;
|
||||
|
||||
} // namespace NEO
|
||||
@@ -1,13 +0,0 @@
|
||||
/*
|
||||
* Copyright (C) 2018-2020 Intel Corporation
|
||||
*
|
||||
* SPDX-License-Identifier: MIT
|
||||
*
|
||||
*/
|
||||
|
||||
#include "shared/source/os_interface/hw_info_config.inl"
|
||||
#include "shared/source/os_interface/hw_info_config_bdw_plus.inl"
|
||||
|
||||
#ifdef SUPPORT_BDW
|
||||
#include "hw_info_config_bdw.inl"
|
||||
#endif
|
||||
Reference in New Issue
Block a user