2019-01-10 15:36:57 +01:00
|
|
|
/*
|
2022-05-13 10:00:27 +00:00
|
|
|
* Copyright (C) 2019-2022 Intel Corporation
|
2019-01-10 15:36:57 +01:00
|
|
|
*
|
|
|
|
|
* SPDX-License-Identifier: MIT
|
|
|
|
|
*
|
|
|
|
|
*/
|
|
|
|
|
|
2020-02-23 22:44:01 +01:00
|
|
|
#include "shared/source/gen11/hw_cmds.h"
|
2022-06-13 23:13:43 +00:00
|
|
|
#include "shared/source/helpers/compiler_aot_config_bdw_and_later.inl"
|
2021-10-26 15:25:20 +00:00
|
|
|
#include "shared/source/helpers/compiler_hw_info_config_base.inl"
|
2021-10-05 13:14:08 +00:00
|
|
|
#include "shared/source/helpers/compiler_hw_info_config_bdw_and_later.inl"
|
2021-10-12 18:58:51 +00:00
|
|
|
#include "shared/source/helpers/enable_product.inl"
|
2020-02-23 22:44:01 +01:00
|
|
|
#include "shared/source/os_interface/hw_info_config.h"
|
2020-02-24 10:22:30 +01:00
|
|
|
|
2019-01-10 15:36:57 +01:00
|
|
|
namespace NEO {
|
|
|
|
|
|
|
|
|
|
#ifdef SUPPORT_ICLLP
|
|
|
|
|
static EnableGfxProductHw<IGFX_ICELAKE_LP> enableGfxProductHwICLLP;
|
2021-10-05 13:14:08 +00:00
|
|
|
static EnableCompilerHwInfoConfig<IGFX_ICELAKE_LP> enableCompilerHwInfoConfigICLLP;
|
2019-01-10 15:36:57 +01:00
|
|
|
#endif
|
|
|
|
|
#ifdef SUPPORT_LKF
|
|
|
|
|
static EnableGfxProductHw<IGFX_LAKEFIELD> enableGfxProductHwLKF;
|
2021-10-05 13:14:08 +00:00
|
|
|
static EnableCompilerHwInfoConfig<IGFX_LAKEFIELD> enableCompilerHwInfoConfigLKF;
|
2019-01-10 15:36:57 +01:00
|
|
|
#endif
|
2019-06-27 10:28:03 +02:00
|
|
|
#ifdef SUPPORT_EHL
|
|
|
|
|
static EnableGfxProductHw<IGFX_ELKHARTLAKE> enableGfxProductHwEHL;
|
2021-10-05 13:14:08 +00:00
|
|
|
static EnableCompilerHwInfoConfig<IGFX_ELKHARTLAKE> enableCompilerHwInfoConfigEHL;
|
2019-06-27 10:28:03 +02:00
|
|
|
#endif
|
|
|
|
|
|
2019-01-10 15:36:57 +01:00
|
|
|
} // namespace NEO
|