diff options
author | Kyösti Mälkki <kyosti.malkki@gmail.com> | 2019-09-12 13:45:15 +0300 |
---|---|---|
committer | Kyösti Mälkki <kyosti.malkki@gmail.com> | 2019-09-13 19:48:26 +0000 |
commit | 8b93689a358b0a65a334cc3adf6141e79fab032f (patch) | |
tree | 6d81db4b2ef72d0fc900f53ac175730afdb49a64 /src/include | |
parent | b6b13c9f2943a0f61a92d87127551ea8dc39a829 (diff) |
timestamps: Remove TIMESTAMP_CACHE_IN_BSS
This was implemented for LATE_CBMEM_INIT support which
has already been deprecated.
Change-Id: I39225ba675bc3389e051e15b400a905431969715
Signed-off-by: Kyösti Mälkki <kyosti.malkki@gmail.com>
Reviewed-on: https://review.coreboot.org/c/coreboot/+/35375
Reviewed-by: Furquan Shaikh <furquan@google.com>
Reviewed-by: Aaron Durbin <adurbin@chromium.org>
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Diffstat (limited to 'src/include')
-rw-r--r-- | src/include/timestamp.h | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/src/include/timestamp.h b/src/include/timestamp.h index 951032c1e7..f20fc6800a 100644 --- a/src/include/timestamp.h +++ b/src/include/timestamp.h @@ -28,8 +28,9 @@ */ void timestamp_init(uint64_t base); /* - * Add a new timestamp. Depending on cbmem is available or not, this timestamp - * will be stored to cbmem / timestamp cache. + * Add a new timestamp. For ENV_ROMSTAGE_OR_BEFORE, this timestamp will be stored + * inside REGION(timestamp) before cbmem comes online. For later stages, timestamps + * added before cbmem_[recovery|initialize] calls will be lost. */ void timestamp_add(enum timestamp_id id, uint64_t ts_time); /* Calls timestamp_add with current timestamp. */ |