2017-12-21 00:45:38 +01:00
|
|
|
/*
|
2020-02-22 22:21:06 +01:00
|
|
|
* Copyright (C) 2017-2020 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 18:46:50 +01:00
|
|
|
#include "gen8/hw_cmds.h"
|
2017-12-21 00:45:38 +01:00
|
|
|
#endif
|
|
|
|
|
#ifdef SUPPORT_GEN9
|
2020-02-23 18:46:50 +01:00
|
|
|
#include "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 18:46:50 +01:00
|
|
|
#include "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 18:46:50 +01:00
|
|
|
#include "gen12lp/hw_cmds.h"
|
2019-09-18 19:32:33 +02:00
|
|
|
#endif
|