2021-08-04 00:04:09 +00:00
|
|
|
/*
|
|
|
|
|
* Copyright (C) 2021 Intel Corporation
|
|
|
|
|
*
|
|
|
|
|
* SPDX-License-Identifier: MIT
|
|
|
|
|
*
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
#include "shared/source/gen12lp/helpers_gen12lp.h"
|
|
|
|
|
#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"
|
2021-08-03 11:48:35 +00:00
|
|
|
#include "shared/source/os_interface/hw_info_config_bdw_and_later.inl"
|
2021-08-04 00:04:09 +00:00
|
|
|
|
|
|
|
|
namespace NEO {
|
|
|
|
|
|
|
|
|
|
template <>
|
|
|
|
|
void HwInfoConfigHw<IGFX_ROCKETLAKE>::adjustPlatformForProductFamily(HardwareInfo *hwInfo) {
|
|
|
|
|
Gen12LPHelpers::adjustPlatformForProductFamily(hwInfo->platform, GFXCORE_FAMILY::IGFX_GEN12LP_CORE);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
template class HwInfoConfigHw<IGFX_ROCKETLAKE>;
|
|
|
|
|
|
|
|
|
|
} // namespace NEO
|