mirror of
https://github.com/riscv-software-src/opensbi.git
synced 2025-08-24 23:41:23 +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:
@@ -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;
|
||||
}
|
||||
|
Reference in New Issue
Block a user