lib/timestamp.c: Drop CAR_GLOBAL_MIGRATION support

Change-Id: I0ba97d7a2da02ba24de6932678c3bc936aa6554b
Signed-off-by: Arthur Heymans <arthur@aheymans.xyz>
Reviewed-on: https://review.coreboot.org/c/coreboot/+/37030
Reviewed-by: Kyösti Mälkki <kyosti.malkki@gmail.com>
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
This commit is contained in:
Arthur Heymans 2019-11-20 20:38:29 +01:00 committed by Patrick Georgi
parent 0ca944b16f
commit 1a71163675
1 changed files with 6 additions and 11 deletions

View File

@ -22,7 +22,6 @@
#include <symbols.h> #include <symbols.h>
#include <timer.h> #include <timer.h>
#include <timestamp.h> #include <timestamp.h>
#include <arch/early_variables.h>
#include <smp/node.h> #include <smp/node.h>
#define MAX_TIMESTAMPS 192 #define MAX_TIMESTAMPS 192
@ -31,7 +30,7 @@ DECLARE_OPTIONAL_REGION(timestamp);
/* This points to the active timestamp_table and can change within a stage /* This points to the active timestamp_table and can change within a stage
as CBMEM comes available. */ as CBMEM comes available. */
static struct timestamp_table *glob_ts_table CAR_GLOBAL; static struct timestamp_table *glob_ts_table;
static void timestamp_cache_init(struct timestamp_table *ts_cache, static void timestamp_cache_init(struct timestamp_table *ts_cache,
uint64_t base) uint64_t base)
@ -94,21 +93,17 @@ static int timestamp_should_run(void)
static struct timestamp_table *timestamp_table_get(void) static struct timestamp_table *timestamp_table_get(void)
{ {
struct timestamp_table *ts_table; if (glob_ts_table)
return glob_ts_table;
ts_table = car_get_ptr(glob_ts_table); glob_ts_table = timestamp_cache_get();
if (ts_table)
return ts_table;
ts_table = timestamp_cache_get(); return glob_ts_table;
car_set_ptr(glob_ts_table, ts_table);
return ts_table;
} }
static void timestamp_table_set(struct timestamp_table *ts) static void timestamp_table_set(struct timestamp_table *ts)
{ {
car_set_ptr(glob_ts_table, ts); glob_ts_table = ts;
} }
static const char *timestamp_name(enum timestamp_id id) static const char *timestamp_name(enum timestamp_id id)