diff options
author | Aaron Durbin <adurbin@chromium.org> | 2016-03-08 10:59:46 -0600 |
---|---|---|
committer | Aaron Durbin <adurbin@chromium.org> | 2016-03-09 16:46:32 +0100 |
commit | ac1c9ece23f9b0c7cdba3de68614a1081a3016b3 (patch) | |
tree | 5e1f39c95719d577523b6e70387eeda10f316500 /src/soc/intel | |
parent | e8845922092849c438685ee3ea580ad63537c6c7 (diff) | |
download | coreboot-ac1c9ece23f9b0c7cdba3de68614a1081a3016b3.tar.xz |
soc/intel/apollolake: correct comment to reference top of CAR
The memory provided to MemoryInit() for its own usage is at the
top of the CAR region.
Change-Id: I8685b5ab138182e24123b14cac6f7b32e5e784d2
Signed-off-by: Aaron Durbin <adurbin@chromium.org>
Reviewed-on: https://review.coreboot.org/13957
Reviewed-by: Furquan Shaikh <furquan@google.com>
Tested-by: build bot (Jenkins)
Reviewed-by: Andrey Petrov <andrey.petrov@intel.com>
Diffstat (limited to 'src/soc/intel')
-rw-r--r-- | src/soc/intel/apollolake/romstage.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/soc/intel/apollolake/romstage.c b/src/soc/intel/apollolake/romstage.c index 499417e2ec..29a966e641 100644 --- a/src/soc/intel/apollolake/romstage.c +++ b/src/soc/intel/apollolake/romstage.c @@ -142,7 +142,7 @@ void platform_fsp_memory_init_params_cb(struct FSPM_UPD *mupd) mupd->FspmConfig.FitTablePtr = read32((void*) FIT_POINTER); /* Reserve enough memory under TOLUD to save CBMEM header */ mupd->FspmArchUpd.BootLoaderTolumSize = cbmem_overhead_size(); - /* Let FSPM use memory right at the bottom of CAR */ + /* Let FSPM use memory right at the top of CAR */ /* TODO: Add checks to see if we collide with other areas */ mupd->FspmArchUpd.StackBase = _car_region_end - CONFIG_FSPM_STACK_SIZE; mupd->FspmArchUpd.StackSize = CONFIG_FSPM_STACK_SIZE; |