Merge tag 'trace-printf-v6.13' of git://git.kernel.org/pub/scm/linux/kernel/git/trace...
[drm/drm-misc.git] / include / uapi / sound / sof / abi.h
blobc1b158ec5dab55658646f61e496f8a12cb0831b3
1 /* SPDX-License-Identifier: ((GPL-2.0 WITH Linux-syscall-note) OR BSD-3-Clause) */
2 /*
3 * This file is provided under a dual BSD/GPLv2 license. When using or
4 * redistributing this file, you may do so under either license.
6 * Copyright(c) 2018 Intel Corporation
7 */
9 /**
10 * SOF ABI versioning is based on Semantic Versioning where we have a given
11 * MAJOR.MINOR.PATCH version number. See https://semver.org/
13 * Rules for incrementing or changing version :-
15 * 1) Increment MAJOR version if you make incompatible API changes. MINOR and
16 * PATCH should be reset to 0.
18 * 2) Increment MINOR version if you add backwards compatible features or
19 * changes. PATCH should be reset to 0.
21 * 3) Increment PATCH version if you add backwards compatible bug fixes.
24 #ifndef __INCLUDE_UAPI_SOUND_SOF_ABI_H__
25 #define __INCLUDE_UAPI_SOUND_SOF_ABI_H__
27 #include <linux/types.h>
29 /* SOF ABI version major, minor and patch numbers */
30 #define SOF_ABI_MAJOR 3
31 #define SOF_ABI_MINOR 23
32 #define SOF_ABI_PATCH 1
34 /* SOF ABI version number. Format within 32bit word is MMmmmppp */
35 #define SOF_ABI_MAJOR_SHIFT 24
36 #define SOF_ABI_MAJOR_MASK 0xff
37 #define SOF_ABI_MINOR_SHIFT 12
38 #define SOF_ABI_MINOR_MASK 0xfff
39 #define SOF_ABI_PATCH_SHIFT 0
40 #define SOF_ABI_PATCH_MASK 0xfff
42 #define SOF_ABI_VER(major, minor, patch) \
43 (((major) << SOF_ABI_MAJOR_SHIFT) | \
44 ((minor) << SOF_ABI_MINOR_SHIFT) | \
45 ((patch) << SOF_ABI_PATCH_SHIFT))
47 #define SOF_ABI_VERSION_MAJOR(version) \
48 (((version) >> SOF_ABI_MAJOR_SHIFT) & SOF_ABI_MAJOR_MASK)
49 #define SOF_ABI_VERSION_MINOR(version) \
50 (((version) >> SOF_ABI_MINOR_SHIFT) & SOF_ABI_MINOR_MASK)
51 #define SOF_ABI_VERSION_PATCH(version) \
52 (((version) >> SOF_ABI_PATCH_SHIFT) & SOF_ABI_PATCH_MASK)
54 #define SOF_ABI_VERSION_INCOMPATIBLE(sof_ver, client_ver) \
55 (SOF_ABI_VERSION_MAJOR((sof_ver)) != \
56 SOF_ABI_VERSION_MAJOR((client_ver)) \
59 #define SOF_ABI_VERSION SOF_ABI_VER(SOF_ABI_MAJOR, SOF_ABI_MINOR, SOF_ABI_PATCH)
61 /* SOF ABI magic number "SOF\0". */
62 #define SOF_ABI_MAGIC 0x00464F53
63 /* SOF IPC4 ABI magic number "SOF4". */
64 #define SOF_IPC4_ABI_MAGIC 0x34464F53
66 #endif