2019-09-19 01:32:33 +08:00
|
|
|
/*
|
2019-12-18 18:40:25 +08:00
|
|
|
* Copyright (C) 2019-2020 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"
|
|
|
|
#include "shared/source/os_interface/hw_info_config.h"
|
2019-09-19 01:32:33 +08:00
|
|
|
|
|
|
|
namespace NEO {
|
|
|
|
|
|
|
|
#ifdef SUPPORT_TGLLP
|
|
|
|
static EnableProductHwInfoConfig<IGFX_TIGERLAKE_LP> enableTGLLP;
|
|
|
|
#endif
|
2020-06-16 20:18:59 +08:00
|
|
|
#ifdef SUPPORT_DG1
|
|
|
|
static EnableProductHwInfoConfig<IGFX_DG1> enableDG1;
|
|
|
|
#endif
|
2020-08-21 02:50:19 +08:00
|
|
|
#ifdef SUPPORT_RKL
|
|
|
|
static EnableProductHwInfoConfig<IGFX_ROCKETLAKE> enableRKL;
|
|
|
|
#endif
|
2020-10-08 21:40:40 +08:00
|
|
|
#ifdef SUPPORT_ADLS
|
|
|
|
static EnableProductHwInfoConfig<IGFX_ALDERLAKE_S> enableADLS;
|
|
|
|
#endif
|
2019-09-19 01:32:33 +08:00
|
|
|
} // namespace NEO
|