diff options
author | Venkat Thogaru <quic_thogaru@quicinc.com> | 2023-01-31 18:17:53 +0530 |
---|---|---|
committer | Shelley Chen <shchen@google.com> | 2023-02-01 18:48:02 +0000 |
commit | b9b4bb4bdd27d015b9dfd7665762ff83c404e21d (patch) | |
tree | d5dc4e8992f4a8667c2ecd8feed15907dd676fb4 | |
parent | 0d30a86aaa707badebe84c19606bff721a480ebf (diff) |
soc/qualcomm/sc7280: Memlayout change to support new Crypto sha update
With New Crypto upgrade we need to have 1 block of 4Kb increase in
romstage, by which we can see an improvement of Boot performance
by 100 msec.
BUG=b:218406702
TEST=Validated on qualcomm sc7280 development board
Boot performance improved by 100 msec observed.
Change-Id: I9f5c8a79993fc1c529fae5cea4c4182663643ddd
Signed-off-by: Sudheer Kumar Amrabadi <quic_samrabad@quicinc.com>
Reviewed-on: https://review.coreboot.org/c/coreboot/+/72646
Reviewed-by: Shelley Chen <shchen@google.com>
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Reviewed-by: Yidi Lin <yidilin@google.com>
-rw-r--r-- | src/soc/qualcomm/sc7280/memlayout.ld | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/soc/qualcomm/sc7280/memlayout.ld b/src/soc/qualcomm/sc7280/memlayout.ld index bf5272e2f6..95824c7aa9 100644 --- a/src/soc/qualcomm/sc7280/memlayout.ld +++ b/src/soc/qualcomm/sc7280/memlayout.ld @@ -25,8 +25,8 @@ SECTIONS AOPSRAM_END(0x0B100000) SSRAM_START(0x14680000) - OVERLAP_DECOMPRESSOR_VERSTAGE_ROMSTAGE(0x14680000, 100K) - REGION(qcsdi, 0x14699000, 48K, 4K) + OVERLAP_DECOMPRESSOR_VERSTAGE_ROMSTAGE(0x14680000, 104K) + REGION(qcsdi, 0x1469A000, 44K, 4K) REGION(modem_id, 0x146A5D00, 4, 4) SSRAM_END(0x146AB000) |