Skip to content

Commit fa1a0f3

Browse files
committed
ASoC: SOF: ipc3-loader: Handle PROBE_INFO ext_manifest
Merge series from Peter Ujfalusi <[email protected]>: The PROBE_INFO (ext_manifest type 3) is not used by the kernel, but at every tiem the firmware is loaded the following is printed in info level (user visible): unknown sof_ext_man header type 3 size 0x30 The type is known, but it is not handled, the print is misleading.
2 parents fa24fdc + 83e367c commit fa1a0f3

File tree

2 files changed

+4
-0
lines changed

2 files changed

+4
-0
lines changed

include/sound/sof/ext_manifest.h

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -60,6 +60,7 @@ enum sof_ext_man_elem_type {
6060
SOF_EXT_MAN_ELEM_FW_VERSION = 0,
6161
SOF_EXT_MAN_ELEM_WINDOW = 1,
6262
SOF_EXT_MAN_ELEM_CC_VERSION = 2,
63+
SOF_EXT_MAN_ELEM_PROBE_INFO = 3,
6364
SOF_EXT_MAN_ELEM_DBG_ABI = 4,
6465
SOF_EXT_MAN_ELEM_CONFIG_DATA = 5, /**< ABI3.17 */
6566
SOF_EXT_MAN_ELEM_PLATFORM_CONFIG_DATA = 6,

sound/soc/sof/ipc3-loader.c

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -193,6 +193,9 @@ static size_t sof_ipc3_fw_parse_ext_man(struct snd_sof_dev *sdev)
193193
case SOF_EXT_MAN_ELEM_CC_VERSION:
194194
ret = ipc3_fw_ext_man_get_cc_info(sdev, elem_hdr);
195195
break;
196+
case SOF_EXT_MAN_ELEM_PROBE_INFO:
197+
dev_dbg(sdev->dev, "Probe info (not parsed)\n");
198+
break;
196199
case SOF_EXT_MAN_ELEM_DBG_ABI:
197200
ret = ipc3_fw_ext_man_get_dbg_abi_info(sdev, elem_hdr);
198201
break;

0 commit comments

Comments
 (0)