Merge pull request #447 from tlauda/topic/fix_smp_build_cnl

arch: fix smp build on CNL and ICL
This commit is contained in:
Liam Girdwood 2018-10-01 16:10:14 +01:00 committed by GitHub
commit 4dd67d5754
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 2 deletions

View File

@ -230,7 +230,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 (0x18000 - 0x400)
#define SOF_TEXT_SIZE (0x1a000 - 0x400)
/* initialized data */
#define SOF_DATA_START (SOF_TEXT_BASE + SOF_TEXT_SIZE)

View File

@ -230,7 +230,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 (0x18000 - 0x400)
#define SOF_TEXT_SIZE (0x1a000 - 0x400)
/* initialized data */
#define SOF_DATA_START (SOF_TEXT_BASE + SOF_TEXT_SIZE)