summaryrefslogtreecommitdiff
path: root/chip/mt_scp/build.mk
diff options
context:
space:
mode:
authorYilun Lin <yllin@google.com>2019-04-11 11:53:19 +0800
committerchrome-bot <chrome-bot@chromium.org>2019-04-13 01:31:44 -0700
commit596aa967d6adfffb054a176d1891478cbbd26483 (patch)
treec47302ea01a1b193273c6967dfad562c4ed0962d /chip/mt_scp/build.mk
parent3bf824742a20e1f31d180c3f97e26380d064dd48 (diff)
downloadchrome-ec-596aa967d6adfffb054a176d1891478cbbd26483.tar.gz
mt_scp: Move ROM_BASE to 0x0.
Removes stepping_stone regions, and move ROM_BASE from 0x800 to 0x0. stepping_stone region is to smooth SCP's bringing up stage for being compatible with both original and new implementation. Now that we have done the kernel side driver implementation, we can earn more SRAM space by removing the stepping_stone. TEST=run SCP on kukui, and see it boots. BRANCH=None BUG=b:120825336 Change-Id: I253904592fa0187f627b2eaa3f5d12a17db9960f Signed-off-by: Yilun Lin <yllin@google.com> Reviewed-on: https://chromium-review.googlesource.com/1563871 Commit-Ready: ChromeOS CL Exonerator Bot <chromiumos-cl-exonerator@appspot.gserviceaccount.com> Tested-by: Yilun Lin <yllin@chromium.org> Reviewed-by: Nicolas Boichat <drinkcat@chromium.org>
Diffstat (limited to 'chip/mt_scp/build.mk')
-rw-r--r--chip/mt_scp/build.mk2
1 files changed, 1 insertions, 1 deletions
diff --git a/chip/mt_scp/build.mk b/chip/mt_scp/build.mk
index 03937f8591..af1ba08170 100644
--- a/chip/mt_scp/build.mk
+++ b/chip/mt_scp/build.mk
@@ -10,7 +10,7 @@ CORE:=cortex-m
CFLAGS_CPU+=-march=armv7e-m -mcpu=cortex-m4
# Required chip modules
-chip-y=clock.o gpio.o memmap.o stepping_stone.o system.o uart.o
+chip-y=clock.o gpio.o memmap.o system.o uart.o
# Optional chip modules
chip-$(CONFIG_COMMON_TIMER)+=hrtimer.o