2017-12-21 00:45:38 +01:00
|
|
|
/*
|
2024-07-09 09:29:17 +00:00
|
|
|
* Copyright (C) 2019-2024 Intel Corporation
|
2017-12-21 00:45:38 +01:00
|
|
|
*
|
2018-09-18 09:11:08 +02:00
|
|
|
* SPDX-License-Identifier: MIT
|
2017-12-21 00:45:38 +01:00
|
|
|
*
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
#pragma once
|
|
|
|
|
#ifdef SUPPORT_GEN8
|
2020-02-23 22:44:01 +01:00
|
|
|
#include "shared/source/gen8/hw_cmds.h"
|
2017-12-21 00:45:38 +01:00
|
|
|
#endif
|
|
|
|
|
#ifdef SUPPORT_GEN9
|
2020-02-23 22:44:01 +01:00
|
|
|
#include "shared/source/gen9/hw_cmds.h"
|
2018-04-06 13:48:49 +02:00
|
|
|
#endif
|
2019-01-10 15:36:57 +01:00
|
|
|
#ifdef SUPPORT_GEN11
|
2020-02-23 22:44:01 +01:00
|
|
|
#include "shared/source/gen11/hw_cmds.h"
|
2019-01-10 15:36:57 +01:00
|
|
|
#endif
|
2019-09-18 19:32:33 +02:00
|
|
|
#ifdef SUPPORT_GEN12LP
|
2020-02-23 22:44:01 +01:00
|
|
|
#include "shared/source/gen12lp/hw_cmds.h"
|
2019-09-18 19:32:33 +02:00
|
|
|
#endif
|
2021-04-23 16:43:48 +00:00
|
|
|
#ifdef SUPPORT_XE_HP_CORE
|
|
|
|
|
#include "shared/source/xe_hp_core/hw_cmds.h"
|
2021-11-15 12:23:07 +00:00
|
|
|
#endif
|
|
|
|
|
#ifdef SUPPORT_XE_HPG_CORE
|
|
|
|
|
#include "shared/source/xe_hpg_core/hw_cmds.h"
|
2021-11-16 11:12:22 +00:00
|
|
|
#endif
|
|
|
|
|
#ifdef SUPPORT_XE_HPC_CORE
|
|
|
|
|
#include "shared/source/xe_hpc_core/hw_cmds.h"
|
|
|
|
|
#endif
|
2024-07-09 09:29:17 +00:00
|
|
|
#ifdef SUPPORT_XE2_HPG_CORE
|
|
|
|
|
#include "shared/source/xe2_hpg_core/hw_cmds.h"
|
|
|
|
|
#endif
|