mirror of
https://github.com/riscv-software-src/opensbi.git
synced 2025-08-25 07:41:42 +01:00
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>
This commit is contained in:
@@ -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[] = {
|
||||
|
Reference in New Issue
Block a user