diff options
author | Anup Patel <anup.patel@wdc.com> | 2020-05-12 18:38:31 +0530 |
---|---|---|
committer | Anup Patel <anup@brainfault.org> | 2020-05-23 10:36:43 +0530 |
commit | a9a97511851198559e75640a9e5e67f65695dc2e (patch) | |
tree | 3c7a01bfa30aab552fbb049f5fea25b8007a2d83 /lib/utils/timer | |
parent | d30bb684481b6be642a0eaa9e7f0778d6519cc15 (diff) |
lib: utils: Allow CLINT functions to be used for multiple CLINTs
We extend CLINT cold init function to have a "struct clint_data *"
parameter pointing to CLINT details. This allows platforms to use
CLINT functions for multiple CLINT instances.
When multiple CLINTs are present, the platform can also provide
one of the CLINT as reference CLINT for other CLINTs. This will
help CLINTs to sync their time value with reference CLINT using
a time_delta computed in warm init function.
Signed-off-by: Anup Patel <anup.patel@wdc.com>
Reviewed-by: Atish Patra <atish.patra@wdc.com>
Diffstat (limited to 'lib/utils/timer')
-rw-r--r-- | lib/utils/timer/fdt_timer_clint.c | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/lib/utils/timer/fdt_timer_clint.c b/lib/utils/timer/fdt_timer_clint.c index 6aa6929..2f5f283 100644 --- a/lib/utils/timer/fdt_timer_clint.c +++ b/lib/utils/timer/fdt_timer_clint.c @@ -11,6 +11,8 @@ #include <sbi_utils/timer/fdt_timer.h> #include <sbi_utils/sys/clint.h> +static struct clint_data clint_timer; + static int timer_clint_cold_init(void *fdt, int nodeoff, const struct fdt_match *match) { @@ -27,7 +29,12 @@ static int timer_clint_cold_init(void *fdt, int nodeoff, return rc; /* TODO: We should figure-out CLINT has_64bit_mmio from DT node */ - return clint_cold_timer_init(addr, max_hartid + 1, TRUE); + clint_timer.addr = addr; + clint_timer.first_hartid = 0; + clint_timer.hart_count = max_hartid + 1; + clint_timer.has_64bit_mmio = TRUE; + + return clint_cold_timer_init(&clint_timer, NULL); } static const struct fdt_match timer_clint_match[] = { |