aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/include/sound/sof
diff options
context:
space:
mode:
authorKarol Trzcinski <karolx.trzcinski@linux.intel.com>2020-05-20 19:59:11 +0300
committerMark Brown <broonie@kernel.org>2020-05-25 14:59:37 +0100
commit4c4a975178ef06324c80baef0e95209f431645a5 (patch)
treef3a2ff7849d2a68433dd1e9a5dc3f03be049b67f /include/sound/sof
parentASoC: SOF: ext_manifest: parse windows (diff)
downloadwireguard-linux-4c4a975178ef06324c80baef0e95209f431645a5.tar.xz
wireguard-linux-4c4a975178ef06324c80baef0e95209f431645a5.zip
ASoC: SOF: ext_manifest: parse compiler version
The compiler version and description can be extracted from the extended manifest content. This information known at build time does not need to be provided in a mailbox. Signed-off-by: Karol Trzcinski <karolx.trzcinski@linux.intel.com> Signed-off-by: Kai Vehmanen <kai.vehmanen@linux.intel.com> Reviewed-by: Guennadi Liakhovetski <guennadi.liakhovetski@linux.intel.com> Reviewed-by: Ranjani Sridharan <ranjani.sridharan@linux.intel.com> Link: https://lore.kernel.org/r/20200520165911.21696-6-kai.vehmanen@linux.intel.com Signed-off-by: Mark Brown <broonie@kernel.org>
Diffstat (limited to 'include/sound/sof')
-rw-r--r--include/sound/sof/ext_manifest.h8
1 files changed, 8 insertions, 0 deletions
diff --git a/include/sound/sof/ext_manifest.h b/include/sound/sof/ext_manifest.h
index 0001fc5779ef..04359cda92dc 100644
--- a/include/sound/sof/ext_manifest.h
+++ b/include/sound/sof/ext_manifest.h
@@ -59,6 +59,7 @@ struct sof_ext_man_header {
enum sof_ext_man_elem_type {
SOF_EXT_MAN_ELEM_FW_VERSION = 0,
SOF_EXT_MAN_ELEM_WINDOW = SOF_IPC_EXT_WINDOW,
+ SOF_EXT_MAN_ELEM_CC_VERSION = SOF_IPC_EXT_CC_INFO,
};
/* extended manifest element header */
@@ -84,4 +85,11 @@ struct sof_ext_man_window {
struct sof_ipc_window ipc_window;
} __packed;
+/* Used C compiler description */
+struct sof_ext_man_cc_version {
+ struct sof_ext_man_elem_header hdr;
+ /* use sof_ipc struct because of code re-use */
+ struct sof_ipc_cc_version cc_version;
+} __packed;
+
#endif /* __SOF_FIRMWARE_EXT_MANIFEST_H__ */