1 /* SPDX-License-Identifier: BSD-3-Clause
2  *
3  * Copyright(c) 2018 Intel Corporation. All rights reserved.
4  *
5  * Author: Bartosz Kokoszko <bartoszx.kokoszko@linux.intel.com>
6  */
7 
8 #ifndef __CAVS_VERSION_H__
9 #define __CAVS_VERSION_H__
10 
11 #define CAVS_VERSION_1_5 0x10500
12 #define CAVS_VERSION_1_8 0x10800
13 #define CAVS_VERSION_2_0 0x20000
14 #define CAVS_VERSION_2_5 0x20500
15 
16 /* CAVS version defined by CONFIG_CAVS_VER_*/
17 #if CONFIG_CAVS_VERSION_1_5
18 #define CAVS_VERSION CAVS_VERSION_1_5
19 #elif CONFIG_CAVS_VERSION_1_8
20 #define CAVS_VERSION CAVS_VERSION_1_8
21 #elif CONFIG_CAVS_VERSION_2_0
22 #define CAVS_VERSION CAVS_VERSION_2_0
23 #elif CONFIG_CAVS_VERSION_2_5
24 #define CAVS_VERSION CAVS_VERSION_2_5
25 #endif
26 
27 #endif /* __CAVS_VERSION_H__ */
28