Skip to content
Merged
Show file tree
Hide file tree
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
2 changes: 1 addition & 1 deletion src/platform/apollolake/include/platform/memory.h
Original file line number Diff line number Diff line change
Expand Up @@ -250,7 +250,7 @@

#define SOF_TEXT_START (HP_SRAM_VECBASE_RESET + 0x400)
#define SOF_TEXT_BASE (SOF_TEXT_START)
#define SOF_TEXT_SIZE (0x1a000 - 0x400)
#define SOF_TEXT_SIZE (0x1a000 - 0x400 + 0x1000)

/* initialized data */
#define SOF_DATA_START (SOF_TEXT_BASE + SOF_TEXT_SIZE)
Expand Down
2 changes: 1 addition & 1 deletion src/platform/cannonlake/include/platform/memory.h
Original file line number Diff line number Diff line change
Expand Up @@ -232,7 +232,7 @@
/* text and data share the same HP L2 SRAM on Cannonlake */
#define SOF_TEXT_START 0xBE040400
#define SOF_TEXT_BASE (SOF_TEXT_START)
#define SOF_TEXT_SIZE (0x1b000 - 0x400)
#define SOF_TEXT_SIZE (0x1b000 - 0x400 + 0x1000)

/* initialized data */
#define SOF_DATA_START (SOF_TEXT_BASE + SOF_TEXT_SIZE)
Expand Down
2 changes: 1 addition & 1 deletion src/platform/icelake/include/platform/memory.h
Original file line number Diff line number Diff line change
Expand Up @@ -232,7 +232,7 @@
/* text and data share the same HP L2 SRAM on Icelake */
#define SOF_TEXT_START 0xBE040400
#define SOF_TEXT_BASE (SOF_TEXT_START)
#define SOF_TEXT_SIZE (0x1a000 - 0x400)
#define SOF_TEXT_SIZE (0x1a000 - 0x400 + 0x1000)

/* initialized data */
#define SOF_DATA_START (SOF_TEXT_BASE + SOF_TEXT_SIZE)
Expand Down
2 changes: 1 addition & 1 deletion src/platform/suecreek/include/platform/memory.h
Original file line number Diff line number Diff line change
Expand Up @@ -172,7 +172,7 @@
#define SOF_TEXT_START (HP_SRAM_BASE + L2_VECTOR_SIZE)
#define SOF_TEXT_START_SIZE 0x400
#define SOF_TEXT_BASE (SOF_TEXT_START + SOF_TEXT_START_SIZE)
#define SOF_TEXT_SIZE (0x40000 - SOF_TEXT_START_SIZE)
#define SOF_TEXT_SIZE (0x40000 - SOF_TEXT_START_SIZE + 0x1000)

/* initialized data */
#if defined CONFIG_DMIC
Expand Down