forked from Mirrors/opensbi
lib: utils: Add simple FDT ipi framework
We add simple ipi framework which will select and use ipi driver based on details in FDT passed by previous booting stage. Signed-off-by: Anup Patel <anup.patel@wdc.com> Reviewed-by: Atish Patra <atish.patra@wdc.com>
This commit is contained in:
32
include/sbi_utils/ipi/fdt_ipi.h
Normal file
32
include/sbi_utils/ipi/fdt_ipi.h
Normal file
@@ -0,0 +1,32 @@
|
|||||||
|
/*
|
||||||
|
* SPDX-License-Identifier: BSD-2-Clause
|
||||||
|
*
|
||||||
|
* Copyright (c) 2020 Western Digital Corporation or its affiliates.
|
||||||
|
*
|
||||||
|
* Authors:
|
||||||
|
* Anup Patel <anup.patel@wdc.com>
|
||||||
|
*/
|
||||||
|
|
||||||
|
#ifndef __FDT_IPI_H__
|
||||||
|
#define __FDT_IPI_H__
|
||||||
|
|
||||||
|
#include <sbi/sbi_types.h>
|
||||||
|
|
||||||
|
struct fdt_ipi {
|
||||||
|
const struct fdt_match *match_table;
|
||||||
|
int (*cold_init)(void *fdt, int nodeoff, const struct fdt_match *match);
|
||||||
|
int (*warm_init)(void);
|
||||||
|
void (*exit)(void);
|
||||||
|
void (*send)(u32 target_hart);
|
||||||
|
void (*clear)(u32 target_hart);
|
||||||
|
};
|
||||||
|
|
||||||
|
void fdt_ipi_send(u32 target_hart);
|
||||||
|
|
||||||
|
void fdt_ipi_clear(u32 target_hart);
|
||||||
|
|
||||||
|
void fdt_ipi_exit(void);
|
||||||
|
|
||||||
|
int fdt_ipi_init(bool cold_boot);
|
||||||
|
|
||||||
|
#endif
|
99
lib/utils/ipi/fdt_ipi.c
Normal file
99
lib/utils/ipi/fdt_ipi.c
Normal file
@@ -0,0 +1,99 @@
|
|||||||
|
/*
|
||||||
|
* SPDX-License-Identifier: BSD-2-Clause
|
||||||
|
*
|
||||||
|
* Copyright (c) 2020 Western Digital Corporation or its affiliates.
|
||||||
|
*
|
||||||
|
* Authors:
|
||||||
|
* Anup Patel <anup.patel@wdc.com>
|
||||||
|
*/
|
||||||
|
|
||||||
|
#include <sbi/sbi_scratch.h>
|
||||||
|
#include <sbi_utils/fdt/fdt_helper.h>
|
||||||
|
#include <sbi_utils/ipi/fdt_ipi.h>
|
||||||
|
|
||||||
|
extern struct fdt_ipi fdt_ipi_clint;
|
||||||
|
|
||||||
|
static struct fdt_ipi *ipi_drivers[] = {
|
||||||
|
&fdt_ipi_clint
|
||||||
|
};
|
||||||
|
|
||||||
|
static void dummy_send(u32 target_hart)
|
||||||
|
{
|
||||||
|
}
|
||||||
|
|
||||||
|
static void dummy_clear(u32 target_hart)
|
||||||
|
{
|
||||||
|
}
|
||||||
|
|
||||||
|
static struct fdt_ipi dummy = {
|
||||||
|
.match_table = NULL,
|
||||||
|
.cold_init = NULL,
|
||||||
|
.warm_init = NULL,
|
||||||
|
.exit = NULL,
|
||||||
|
.send = dummy_send,
|
||||||
|
.clear = dummy_clear
|
||||||
|
};
|
||||||
|
|
||||||
|
static struct fdt_ipi *current_driver = &dummy;
|
||||||
|
|
||||||
|
void fdt_ipi_send(u32 target_hart)
|
||||||
|
{
|
||||||
|
current_driver->send(target_hart);
|
||||||
|
}
|
||||||
|
|
||||||
|
void fdt_ipi_clear(u32 target_hart)
|
||||||
|
{
|
||||||
|
current_driver->clear(target_hart);
|
||||||
|
}
|
||||||
|
|
||||||
|
void fdt_ipi_exit(void)
|
||||||
|
{
|
||||||
|
if (current_driver->exit)
|
||||||
|
current_driver->exit();
|
||||||
|
}
|
||||||
|
|
||||||
|
static int fdt_ipi_warm_init(void)
|
||||||
|
{
|
||||||
|
if (current_driver->warm_init)
|
||||||
|
return current_driver->warm_init();
|
||||||
|
return 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
static int fdt_ipi_cold_init(void)
|
||||||
|
{
|
||||||
|
int pos, noff, rc;
|
||||||
|
struct fdt_ipi *drv;
|
||||||
|
const struct fdt_match *match;
|
||||||
|
void *fdt = sbi_scratch_thishart_arg1_ptr();
|
||||||
|
|
||||||
|
for (pos = 0; pos < array_size(ipi_drivers); pos++) {
|
||||||
|
drv = ipi_drivers[pos];
|
||||||
|
|
||||||
|
noff = fdt_find_match(fdt, drv->match_table, &match);
|
||||||
|
if (noff < 0)
|
||||||
|
continue;
|
||||||
|
|
||||||
|
if (drv->cold_init) {
|
||||||
|
rc = drv->cold_init(fdt, noff, match);
|
||||||
|
if (rc)
|
||||||
|
return rc;
|
||||||
|
}
|
||||||
|
current_driver = drv;
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
|
||||||
|
return 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
int fdt_ipi_init(bool cold_boot)
|
||||||
|
{
|
||||||
|
int rc;
|
||||||
|
|
||||||
|
if (cold_boot) {
|
||||||
|
rc = fdt_ipi_cold_init();
|
||||||
|
if (rc)
|
||||||
|
return rc;
|
||||||
|
}
|
||||||
|
|
||||||
|
return fdt_ipi_warm_init();
|
||||||
|
}
|
44
lib/utils/ipi/fdt_ipi_clint.c
Normal file
44
lib/utils/ipi/fdt_ipi_clint.c
Normal file
@@ -0,0 +1,44 @@
|
|||||||
|
/*
|
||||||
|
* SPDX-License-Identifier: BSD-2-Clause
|
||||||
|
*
|
||||||
|
* Copyright (c) 2020 Western Digital Corporation or its affiliates.
|
||||||
|
*
|
||||||
|
* Authors:
|
||||||
|
* Anup Patel <anup.patel@wdc.com>
|
||||||
|
*/
|
||||||
|
|
||||||
|
#include <sbi_utils/fdt/fdt_helper.h>
|
||||||
|
#include <sbi_utils/ipi/fdt_ipi.h>
|
||||||
|
#include <sbi_utils/sys/clint.h>
|
||||||
|
|
||||||
|
static int ipi_clint_cold_init(void *fdt, int nodeoff,
|
||||||
|
const struct fdt_match *match)
|
||||||
|
{
|
||||||
|
int rc;
|
||||||
|
u32 max_hartid;
|
||||||
|
unsigned long addr;
|
||||||
|
|
||||||
|
rc = fdt_parse_max_hart_id(fdt, &max_hartid);
|
||||||
|
if (rc)
|
||||||
|
return rc;
|
||||||
|
|
||||||
|
rc = fdt_get_node_addr_size(fdt, nodeoff, &addr, NULL);
|
||||||
|
if (rc)
|
||||||
|
return rc;
|
||||||
|
|
||||||
|
return clint_cold_ipi_init(addr, max_hartid + 1);
|
||||||
|
}
|
||||||
|
|
||||||
|
static const struct fdt_match ipi_clint_match[] = {
|
||||||
|
{ .compatible = "riscv,clint0" },
|
||||||
|
{ },
|
||||||
|
};
|
||||||
|
|
||||||
|
struct fdt_ipi fdt_ipi_clint = {
|
||||||
|
.match_table = ipi_clint_match,
|
||||||
|
.cold_init = ipi_clint_cold_init,
|
||||||
|
.warm_init = clint_warm_ipi_init,
|
||||||
|
.exit = NULL,
|
||||||
|
.send = clint_ipi_send,
|
||||||
|
.clear = clint_ipi_clear,
|
||||||
|
};
|
11
lib/utils/ipi/objects.mk
Normal file
11
lib/utils/ipi/objects.mk
Normal file
@@ -0,0 +1,11 @@
|
|||||||
|
#
|
||||||
|
# SPDX-License-Identifier: BSD-2-Clause
|
||||||
|
#
|
||||||
|
# Copyright (c) 2020 Western Digital Corporation or its affiliates.
|
||||||
|
#
|
||||||
|
# Authors:
|
||||||
|
# Anup Patel <anup.patel@wdc.com>
|
||||||
|
#
|
||||||
|
|
||||||
|
libsbiutils-objs-y += ipi/fdt_ipi.o
|
||||||
|
libsbiutils-objs-y += ipi/fdt_ipi_clint.o
|
Reference in New Issue
Block a user