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

ipc4: fw_reg: downgrade FW_REGS version to 0 to disable delay reporting #8868

Merged
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
5 changes: 4 additions & 1 deletion src/include/ipc4/fw_reg.h
Original file line number Diff line number Diff line change
Expand Up @@ -138,7 +138,10 @@ union ipc4_rom_info {
#define IPC4_MAX_LLP_SNDW_READING_SLOTS 16

/* Current ABI version of the FwRegisters layout. */
#define IPC4_FW_REGS_ABI_VER 1
/* NOTE: Set ABI_VER to 0 to disable delay reporting until
* https://github.com/thesofproject/linux/issues/4781 is fixed
*/
#define IPC4_FW_REGS_ABI_VER 0

/* FW Registers exposes additional DSP / FW state information to the driver. */
struct ipc4_fw_registers {
Expand Down
Loading