2017-12-27 22:12:27 +08:00
|
|
|
/*
|
2020-01-31 21:35:46 +08:00
|
|
|
* Copyright (C) 2018-2020 Intel Corporation
|
2017-12-27 22:12:27 +08:00
|
|
|
*
|
2018-09-18 15:11:08 +08:00
|
|
|
* SPDX-License-Identifier: MIT
|
2017-12-27 22:12:27 +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"
|
|
|
|
#include "shared/source/os_interface/hw_info_config.inl"
|
|
|
|
#include "shared/source/os_interface/hw_info_config_bdw_plus.inl"
|
2017-12-27 22:12:27 +08:00
|
|
|
|
2019-03-26 18:59:46 +08:00
|
|
|
namespace NEO {
|
2018-03-15 22:03:51 +08:00
|
|
|
|
2018-06-05 20:09:30 +08:00
|
|
|
#ifdef SUPPORT_BXT
|
|
|
|
template <>
|
|
|
|
int HwInfoConfigHw<IGFX_BROXTON>::configureHardwareCustom(HardwareInfo *hwInfo, OSInterface *osIface) {
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
template class HwInfoConfigHw<IGFX_BROXTON>;
|
|
|
|
#endif
|
|
|
|
#ifdef SUPPORT_CFL
|
2018-03-15 22:03:51 +08:00
|
|
|
template <>
|
|
|
|
int HwInfoConfigHw<IGFX_COFFEELAKE>::configureHardwareCustom(HardwareInfo *hwInfo, OSInterface *osIface) {
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2018-04-05 00:38:36 +08:00
|
|
|
template class HwInfoConfigHw<IGFX_COFFEELAKE>;
|
2018-06-05 20:09:30 +08:00
|
|
|
#endif
|
|
|
|
#ifdef SUPPORT_GLK
|
|
|
|
template <>
|
|
|
|
int HwInfoConfigHw<IGFX_GEMINILAKE>::configureHardwareCustom(HardwareInfo *hwInfo, OSInterface *osIface) {
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
template class HwInfoConfigHw<IGFX_GEMINILAKE>;
|
|
|
|
#endif
|
|
|
|
#ifdef SUPPORT_KBL
|
|
|
|
template <>
|
|
|
|
int HwInfoConfigHw<IGFX_KABYLAKE>::configureHardwareCustom(HardwareInfo *hwInfo, OSInterface *osIface) {
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
template class HwInfoConfigHw<IGFX_KABYLAKE>;
|
|
|
|
#endif
|
|
|
|
#ifdef SUPPORT_SKL
|
|
|
|
template <>
|
|
|
|
int HwInfoConfigHw<IGFX_SKYLAKE>::configureHardwareCustom(HardwareInfo *hwInfo, OSInterface *osIface) {
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
template class HwInfoConfigHw<IGFX_SKYLAKE>;
|
|
|
|
#endif
|
|
|
|
|
2019-03-26 18:59:46 +08:00
|
|
|
} // namespace NEO
|