2018-06-04 10:20:09 +02:00
|
|
|
/*
|
2019-12-18 11:40:25 +01:00
|
|
|
* Copyright (C) 2018-2020 Intel Corporation
|
2018-09-18 09:11:08 +02:00
|
|
|
*
|
|
|
|
|
* SPDX-License-Identifier: MIT
|
|
|
|
|
*
|
|
|
|
|
*/
|
2018-06-04 10:20:09 +02:00
|
|
|
|
2019-11-29 15:41:47 +01:00
|
|
|
#include "core/gen9/hw_cmds.h"
|
2020-01-31 14:35:46 +01:00
|
|
|
#include "core/os_interface/hw_info_config.h"
|
2020-02-22 09:28:27 +01:00
|
|
|
|
|
|
|
|
#include "helpers/enable_product.inl"
|
2019-02-27 11:39:32 +01:00
|
|
|
|
2019-03-26 11:59:46 +01:00
|
|
|
namespace NEO {
|
2018-06-04 10:20:09 +02:00
|
|
|
|
|
|
|
|
#ifdef SUPPORT_BXT
|
|
|
|
|
static EnableGfxProductHw<IGFX_BROXTON> enableGfxProductHwBXT;
|
|
|
|
|
#endif
|
|
|
|
|
#ifdef SUPPORT_CFL
|
|
|
|
|
static EnableGfxProductHw<IGFX_COFFEELAKE> enableGfxProductHwCFL;
|
|
|
|
|
#endif
|
|
|
|
|
#ifdef SUPPORT_GLK
|
|
|
|
|
static EnableGfxProductHw<IGFX_GEMINILAKE> enableGfxProductHwGLK;
|
|
|
|
|
#endif
|
|
|
|
|
#ifdef SUPPORT_KBL
|
|
|
|
|
static EnableGfxProductHw<IGFX_KABYLAKE> enableGfxProductHwKBL;
|
|
|
|
|
#endif
|
|
|
|
|
#ifdef SUPPORT_SKL
|
|
|
|
|
static EnableGfxProductHw<IGFX_SKYLAKE> enableGfxProductHwSKL;
|
|
|
|
|
#endif
|
|
|
|
|
|
2019-03-26 11:59:46 +01:00
|
|
|
} // namespace NEO
|