2019-09-19 01:32:33 +08:00
|
|
|
/*
|
2023-03-10 20:28:11 +08:00
|
|
|
* Copyright (C) 2020-2023 Intel Corporation
|
2019-09-19 01:32:33 +08:00
|
|
|
*
|
|
|
|
* SPDX-License-Identifier: MIT
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
2020-02-24 05:44:01 +08:00
|
|
|
#include "shared/source/gen12lp/hw_cmds.h"
|
2022-06-27 22:58:29 +08:00
|
|
|
#include "shared/source/helpers/cache_policy_bdw_and_later.inl"
|
2021-10-13 02:58:51 +08:00
|
|
|
#include "shared/source/helpers/enable_product.inl"
|
2023-03-10 20:28:11 +08:00
|
|
|
#include "shared/source/os_interface/product_helper.h"
|
2020-02-24 17:22:30 +08:00
|
|
|
|
2019-09-19 01:32:33 +08:00
|
|
|
namespace NEO {
|
|
|
|
|
|
|
|
#ifdef SUPPORT_TGLLP
|
2022-07-14 18:37:55 +08:00
|
|
|
template struct L1CachePolicyHelper<IGFX_TIGERLAKE_LP>;
|
2019-09-19 01:32:33 +08:00
|
|
|
static EnableGfxProductHw<IGFX_TIGERLAKE_LP> enableGfxProductHwTGLLP;
|
2022-12-12 22:59:04 +08:00
|
|
|
|
2019-09-19 01:32:33 +08:00
|
|
|
#endif
|
2020-06-16 20:18:59 +08:00
|
|
|
#ifdef SUPPORT_DG1
|
2022-07-14 18:37:55 +08:00
|
|
|
template struct L1CachePolicyHelper<IGFX_DG1>;
|
2020-06-16 20:18:59 +08:00
|
|
|
static EnableGfxProductHw<IGFX_DG1> enableGfxProductHwDG1;
|
2022-12-12 22:59:04 +08:00
|
|
|
|
2020-06-16 20:18:59 +08:00
|
|
|
#endif
|
2020-08-21 02:50:19 +08:00
|
|
|
#ifdef SUPPORT_RKL
|
2022-07-14 18:37:55 +08:00
|
|
|
template struct L1CachePolicyHelper<IGFX_ROCKETLAKE>;
|
2020-08-21 02:50:19 +08:00
|
|
|
static EnableGfxProductHw<IGFX_ROCKETLAKE> enableGfxProductHwRKL;
|
2021-10-26 23:25:20 +08:00
|
|
|
|
2020-08-21 02:50:19 +08:00
|
|
|
#endif
|
2020-10-08 21:40:40 +08:00
|
|
|
#ifdef SUPPORT_ADLS
|
2022-07-14 18:37:55 +08:00
|
|
|
template struct L1CachePolicyHelper<IGFX_ALDERLAKE_S>;
|
2020-10-08 21:40:40 +08:00
|
|
|
static EnableGfxProductHw<IGFX_ALDERLAKE_S> enableGfxProductHwADLS;
|
2022-12-12 22:59:04 +08:00
|
|
|
|
2020-10-08 21:40:40 +08:00
|
|
|
#endif
|
2021-07-28 22:45:43 +08:00
|
|
|
#ifdef SUPPORT_ADLP
|
2022-07-14 18:37:55 +08:00
|
|
|
template struct L1CachePolicyHelper<IGFX_ALDERLAKE_P>;
|
2021-07-28 22:45:43 +08:00
|
|
|
static EnableGfxProductHw<IGFX_ALDERLAKE_P> enableGfxProductHwADLP;
|
2022-12-12 22:59:04 +08:00
|
|
|
|
2021-07-28 22:45:43 +08:00
|
|
|
#endif
|
2022-06-02 23:12:55 +08:00
|
|
|
#ifdef SUPPORT_ADLN
|
2022-07-14 18:37:55 +08:00
|
|
|
template struct L1CachePolicyHelper<IGFX_ALDERLAKE_N>;
|
2022-06-02 23:12:55 +08:00
|
|
|
static EnableGfxProductHw<IGFX_ALDERLAKE_N> enableGfxProductHwADLN;
|
|
|
|
#endif
|
2019-09-19 01:32:33 +08:00
|
|
|
} // namespace NEO
|