Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

ext_manifest: include probe information by CONFIG_PROBE #9675

Merged
merged 1 commit into from
Nov 25, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions src/init/ext_manifest.c
Original file line number Diff line number Diff line change
Expand Up @@ -60,6 +60,7 @@ const struct ext_man_cc_version ext_man_cc_ver
},
};

#if CONFIG_PROBE
const struct ext_man_probe_support ext_man_probe
__aligned(EXT_MAN_ALIGN) __section(".fw_metadata") = {
.hdr.type = EXT_MAN_ELEM_PROBE_INFO,
Expand All @@ -69,12 +70,11 @@ const struct ext_man_probe_support ext_man_probe
.ext_hdr.hdr.size = sizeof(struct sof_ipc_probe_support),
.ext_hdr.hdr.cmd = SOF_IPC_FW_READY,
.ext_hdr.type = SOF_IPC_EXT_PROBE_INFO,
#if CONFIG_PROBE
.probe_points_max = CONFIG_PROBE_POINTS_MAX,
.injection_dmas_max = CONFIG_PROBE_DMA_MAX
#endif
},
};
#endif

const struct ext_man_dbg_abi ext_man_dbg_info
__aligned(EXT_MAN_ALIGN) __section(".fw_metadata") = {
Expand Down
Loading