summaryrefslogtreecommitdiff
path: root/include/sbi_utils/sys
diff options
context:
space:
mode:
authorAnup Patel <anup.patel@wdc.com>2021-04-22 07:57:15 +0300
committerAnup Patel <anup@brainfault.org>2021-04-28 14:33:31 +0300
commitdc39c7b630a607b96c25f8ea50f0bb1af619928a (patch)
treef0c1d9ae8c5a68cc38e4ffba772f50f43111e715 /include/sbi_utils/sys
parent559a8f1d3be3210d4903c0db54c2d36e2f8d6ad4 (diff)
downloadopensbi-dc39c7b630a607b96c25f8ea50f0bb1af619928a.tar.xz
lib: sbi: Simplify ipi platform operations
Instead of having ipi_send() and ipi_clear() callbacks in platform operations, it will be much simpler for ipi driver to directly register these operations as a device to sbi_ipi implementation. Signed-off-by: Anup Patel <anup.patel@wdc.com> Reviewed-by: Alistair Francis <alistair.francis@wdc.com>
Diffstat (limited to 'include/sbi_utils/sys')
-rw-r--r--include/sbi_utils/sys/clint.h4
1 files changed, 0 insertions, 4 deletions
diff --git a/include/sbi_utils/sys/clint.h b/include/sbi_utils/sys/clint.h
index e102196..1e2b40b 100644
--- a/include/sbi_utils/sys/clint.h
+++ b/include/sbi_utils/sys/clint.h
@@ -29,10 +29,6 @@ struct clint_data {
void (*time_wr)(u64 value, volatile u64 *addr);
};
-void clint_ipi_send(u32 target_hart);
-
-void clint_ipi_clear(u32 target_hart);
-
int clint_warm_ipi_init(void);
int clint_cold_ipi_init(struct clint_data *clint);