2019-09-18 19:32:33 +02:00
|
|
|
/*
|
2021-05-16 20:51:16 +02:00
|
|
|
* Copyright (C) 2020-2021 Intel Corporation
|
2019-09-18 19:32:33 +02:00
|
|
|
*
|
|
|
|
|
* SPDX-License-Identifier: MIT
|
|
|
|
|
*
|
|
|
|
|
*/
|
|
|
|
|
|
2020-02-23 22:44:01 +01:00
|
|
|
#include "shared/source/gen12lp/hw_cmds.h"
|
|
|
|
|
#include "shared/source/os_interface/hw_info_config.h"
|
2020-02-24 10:22:30 +01:00
|
|
|
|
2020-02-22 22:50:57 +01:00
|
|
|
#include "opencl/source/helpers/enable_product.inl"
|
2019-09-18 19:32:33 +02:00
|
|
|
|
|
|
|
|
namespace NEO {
|
|
|
|
|
|
|
|
|
|
#ifdef SUPPORT_TGLLP
|
|
|
|
|
static EnableGfxProductHw<IGFX_TIGERLAKE_LP> enableGfxProductHwTGLLP;
|
|
|
|
|
#endif
|
2020-06-16 14:18:59 +02:00
|
|
|
#ifdef SUPPORT_DG1
|
|
|
|
|
static EnableGfxProductHw<IGFX_DG1> enableGfxProductHwDG1;
|
|
|
|
|
#endif
|
2020-08-20 20:50:19 +02:00
|
|
|
#ifdef SUPPORT_RKL
|
|
|
|
|
static EnableGfxProductHw<IGFX_ROCKETLAKE> enableGfxProductHwRKL;
|
|
|
|
|
#endif
|
2020-10-08 15:40:40 +02:00
|
|
|
#ifdef SUPPORT_ADLS
|
|
|
|
|
static EnableGfxProductHw<IGFX_ALDERLAKE_S> enableGfxProductHwADLS;
|
|
|
|
|
#endif
|
2019-09-18 19:32:33 +02:00
|
|
|
} // namespace NEO
|