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

PTL upstream #9185

Merged
merged 9 commits into from
Jun 24, 2024
Prev Previous commit
Next Next commit
ptl: lnl: memory: expand HEAPMEM_SIZE
FW infrastructure shall support buffering of historic data
from 1ch up to 6 channels 24bit samples in 24bit container.
For this reason, the heap should be extended.Increase HEAPMEM_SIZE
by 0x90000 because for audio format 16000Hz/6ch/24bit
history_buffer_size = 16 * 6 * 3 * 2100s = 604800 bytes (0x93A80)

Signed-off-by: Jaroslaw Stelter <Jaroslaw.Stelter@intel.com>
  • Loading branch information
jxstelter authored and pjdobrowolski committed Jun 20, 2024
commit d4be840fb16027a707c35cb14b9b89450ea1d7d2
2 changes: 1 addition & 1 deletion src/platform/pantherlake/include/platform/lib/memory.h
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@
/**
* size of HPSRAM system heap
*/
#define HEAPMEM_SIZE 0x40000
#define HEAPMEM_SIZE 0xD0000

#endif /* __PLATFORM_LIB_MEMORY_H__ */

Expand Down