From 69be3dff9df767c19a461fadf73ad7331b4bdb4c Mon Sep 17 00:00:00 2001 From: Samuel Holland Date: Sun, 12 Jun 2022 20:03:53 -0500 Subject: lib: utils/irqchip: Add FDT wrappers for PLIC save/restore functions These functions save/restore the state of the PLIC associated with the current hart. The context save/restore functions only manipulate a single context, since most likely the M-mode context is unused and does not need to be saved. Signed-off-by: Samuel Holland Reviewed-by: Anup Patel --- lib/utils/irqchip/fdt_irqchip_plic.c | 32 ++++++++++++++++++++++++++++++++ 1 file changed, 32 insertions(+) (limited to 'lib') diff --git a/lib/utils/irqchip/fdt_irqchip_plic.c b/lib/utils/irqchip/fdt_irqchip_plic.c index b2d2a1b..89b12d4 100644 --- a/lib/utils/irqchip/fdt_irqchip_plic.c +++ b/lib/utils/irqchip/fdt_irqchip_plic.c @@ -24,6 +24,38 @@ static struct plic_data plic[PLIC_MAX_NR]; static struct plic_data *plic_hartid2data[SBI_HARTMASK_MAX_BITS]; static int plic_hartid2context[SBI_HARTMASK_MAX_BITS][2]; +void fdt_plic_priority_save(u8 *priority) +{ + struct plic_data *plic = plic_hartid2data[current_hartid()]; + + plic_priority_save(plic, priority); +} + +void fdt_plic_priority_restore(const u8 *priority) +{ + struct plic_data *plic = plic_hartid2data[current_hartid()]; + + plic_priority_restore(plic, priority); +} + +void fdt_plic_context_save(bool smode, u32 *enable, u32 *threshold) +{ + u32 hartid = current_hartid(); + + plic_context_save(plic_hartid2data[hartid], + plic_hartid2context[hartid][smode], + enable, threshold); +} + +void fdt_plic_context_restore(bool smode, const u32 *enable, u32 threshold) +{ + u32 hartid = current_hartid(); + + plic_context_restore(plic_hartid2data[hartid], + plic_hartid2context[hartid][smode], + enable, threshold); +} + static int irqchip_plic_warm_init(void) { u32 hartid = current_hartid(); -- cgit v1.1