Skip to content

Commit 8d330f1

Browse files
committed
ASoC: SOF: add debug ABI version
Add new debug ABI version to be increased when changing user space debug interfaces while the the main FW ABI is not affected. The abi_dbg_version share same defination with SOF_ABI_VER This change main ABI to 3.14.0 Signed-off-by: Pan Xiuli <xiuli.pan@linux.intel.com>
1 parent 68d25aa commit 8d330f1

1 file changed

Lines changed: 8 additions & 0 deletions

File tree

include/sound/sof/info.h

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -32,6 +32,7 @@ enum sof_ipc_ext_data {
3232
SOF_IPC_EXT_WINDOW = 1,
3333
SOF_IPC_EXT_CC_INFO = 2,
3434
SOF_IPC_EXT_PROBE_INFO = 3,
35+
SOF_IPC_EXT_USER_ABI_INFO = 4,
3536
};
3637

3738
/* FW version - SOF_IPC_GLB_VERSION */
@@ -126,4 +127,11 @@ struct sof_ipc_probe_support {
126127
uint32_t reserved[2];
127128
} __packed;
128129

130+
/* extended data: user abi version(s) */
131+
struct sof_ipc_user_abi_version {
132+
struct sof_ipc_ext_data_hdr ext_hdr;
133+
134+
uint32_t abi_dbg_version;
135+
} __packed;
136+
129137
#endif

0 commit comments

Comments
 (0)