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 /platform/kendryte | |
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 'platform/kendryte')
-rw-r--r-- | platform/kendryte/k210/platform.c | 13 |
1 files changed, 9 insertions, 4 deletions
diff --git a/platform/kendryte/k210/platform.c b/platform/kendryte/k210/platform.c index db2186a..ef0f18f 100644 --- a/platform/kendryte/k210/platform.c +++ b/platform/kendryte/k210/platform.c @@ -22,6 +22,13 @@ static struct plic_data plic = { .num_src = K210_PLIC_NUM_SOURCES, }; +static struct clint_data clint = { + .addr = K210_CLINT_BASE_ADDR, + .first_hartid = 0, + .hart_count = K210_HART_COUNT, + .has_64bit_mmio = TRUE, +}; + static u32 k210_get_clk_freq(void) { u32 clksel0, pll0; @@ -76,8 +83,7 @@ static int k210_ipi_init(bool cold_boot) int rc; if (cold_boot) { - rc = clint_cold_ipi_init(K210_CLINT_BASE_ADDR, - K210_HART_COUNT); + rc = clint_cold_ipi_init(&clint); if (rc) return rc; } @@ -90,8 +96,7 @@ static int k210_timer_init(bool cold_boot) int rc; if (cold_boot) { - rc = clint_cold_timer_init(K210_CLINT_BASE_ADDR, - K210_HART_COUNT, TRUE); + rc = clint_cold_timer_init(&clint, NULL); if (rc) return rc; } |