2021-08-04 00:04:09 +00:00
|
|
|
/*
|
2022-03-10 17:27:38 +00:00
|
|
|
* Copyright (C) 2021-2022 Intel Corporation
|
2021-08-04 00:04:09 +00:00
|
|
|
*
|
|
|
|
|
* 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"
|
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 {
|
2021-08-19 11:06:49 +00:00
|
|
|
constexpr static auto gfxProduct = IGFX_ALDERLAKE_S;
|
|
|
|
|
|
2022-03-10 17:27:38 +00:00
|
|
|
#include "shared/source/gen12lp/adls/os_agnostic_hw_info_config_adls.inl"
|
2021-08-19 11:06:49 +00:00
|
|
|
#include "shared/source/gen12lp/os_agnostic_hw_info_config_gen12lp.inl"
|
2021-08-04 00:04:09 +00:00
|
|
|
|
2021-08-25 15:39:07 +00:00
|
|
|
template class HwInfoConfigHw<gfxProduct>;
|
2021-08-04 00:04:09 +00:00
|
|
|
} // namespace NEO
|