mirror of
				https://github.com/riscv-software-src/opensbi
				synced 2025-11-04 05:50:22 +00:00 
			
		
		
		
	Currently the context save/restore helpers writes/reads the provided array using an index whose maximum value is determined by PLIC, which potentially may disagree with the caller to these helpers. Add a parameter to ask the caller to provide the size limit of the array to ensure no out-of-bound access happens. Signed-off-by: Bin Meng <bmeng@tinylab.org> Reviewed-by: Anup Patel <anup@brainfault.org>
		
			
				
	
	
		
			177 lines
		
	
	
		
			4.0 KiB
		
	
	
	
		
			C
		
	
	
	
	
	
			
		
		
	
	
			177 lines
		
	
	
		
			4.0 KiB
		
	
	
	
		
			C
		
	
	
	
	
	
/*
 | 
						|
 * SPDX-License-Identifier: BSD-2-Clause
 | 
						|
 *
 | 
						|
 * Copyright (c) 2020 Western Digital Corporation or its affiliates.
 | 
						|
 *
 | 
						|
 * Authors:
 | 
						|
 *   Anup Patel <anup.patel@wdc.com>
 | 
						|
 */
 | 
						|
 | 
						|
#include <libfdt.h>
 | 
						|
#include <sbi/riscv_asm.h>
 | 
						|
#include <sbi/riscv_io.h>
 | 
						|
#include <sbi/sbi_error.h>
 | 
						|
#include <sbi/sbi_hartmask.h>
 | 
						|
#include <sbi_utils/fdt/fdt_helper.h>
 | 
						|
#include <sbi_utils/irqchip/fdt_irqchip.h>
 | 
						|
#include <sbi_utils/irqchip/plic.h>
 | 
						|
 | 
						|
#define PLIC_MAX_NR			16
 | 
						|
 | 
						|
static unsigned long plic_count = 0;
 | 
						|
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, u32 num)
 | 
						|
{
 | 
						|
	struct plic_data *plic = plic_hartid2data[current_hartid()];
 | 
						|
 | 
						|
	plic_priority_save(plic, priority, num);
 | 
						|
}
 | 
						|
 | 
						|
void fdt_plic_priority_restore(const u8 *priority, u32 num)
 | 
						|
{
 | 
						|
	struct plic_data *plic = plic_hartid2data[current_hartid()];
 | 
						|
 | 
						|
	plic_priority_restore(plic, priority, num);
 | 
						|
}
 | 
						|
 | 
						|
void fdt_plic_context_save(bool smode, u32 *enable, u32 *threshold, u32 num)
 | 
						|
{
 | 
						|
	u32 hartid = current_hartid();
 | 
						|
 | 
						|
	plic_context_save(plic_hartid2data[hartid],
 | 
						|
			  plic_hartid2context[hartid][smode],
 | 
						|
			  enable, threshold, num);
 | 
						|
}
 | 
						|
 | 
						|
void fdt_plic_context_restore(bool smode, const u32 *enable, u32 threshold,
 | 
						|
			      u32 num)
 | 
						|
{
 | 
						|
	u32 hartid = current_hartid();
 | 
						|
 | 
						|
	plic_context_restore(plic_hartid2data[hartid],
 | 
						|
			     plic_hartid2context[hartid][smode],
 | 
						|
			     enable, threshold, num);
 | 
						|
}
 | 
						|
 | 
						|
static int irqchip_plic_warm_init(void)
 | 
						|
{
 | 
						|
	u32 hartid = current_hartid();
 | 
						|
 | 
						|
	return plic_warm_irqchip_init(plic_hartid2data[hartid],
 | 
						|
				      plic_hartid2context[hartid][0],
 | 
						|
				      plic_hartid2context[hartid][1]);
 | 
						|
}
 | 
						|
 | 
						|
static int irqchip_plic_update_hartid_table(void *fdt, int nodeoff,
 | 
						|
					    struct plic_data *pd)
 | 
						|
{
 | 
						|
	const fdt32_t *val;
 | 
						|
	u32 phandle, hwirq, hartid;
 | 
						|
	int i, err, count, cpu_offset, cpu_intc_offset;
 | 
						|
 | 
						|
	val = fdt_getprop(fdt, nodeoff, "interrupts-extended", &count);
 | 
						|
	if (!val || count < sizeof(fdt32_t))
 | 
						|
		return SBI_EINVAL;
 | 
						|
	count = count / sizeof(fdt32_t);
 | 
						|
 | 
						|
	for (i = 0; i < count; i += 2) {
 | 
						|
		phandle = fdt32_to_cpu(val[i]);
 | 
						|
		hwirq = fdt32_to_cpu(val[i + 1]);
 | 
						|
 | 
						|
		cpu_intc_offset = fdt_node_offset_by_phandle(fdt, phandle);
 | 
						|
		if (cpu_intc_offset < 0)
 | 
						|
			continue;
 | 
						|
 | 
						|
		cpu_offset = fdt_parent_offset(fdt, cpu_intc_offset);
 | 
						|
		if (cpu_offset < 0)
 | 
						|
			continue;
 | 
						|
 | 
						|
		err = fdt_parse_hart_id(fdt, cpu_offset, &hartid);
 | 
						|
		if (err)
 | 
						|
			continue;
 | 
						|
 | 
						|
		if (SBI_HARTMASK_MAX_BITS <= hartid)
 | 
						|
			continue;
 | 
						|
 | 
						|
		plic_hartid2data[hartid] = pd;
 | 
						|
		switch (hwirq) {
 | 
						|
		case IRQ_M_EXT:
 | 
						|
			plic_hartid2context[hartid][0] = i / 2;
 | 
						|
			break;
 | 
						|
		case IRQ_S_EXT:
 | 
						|
			plic_hartid2context[hartid][1] = i / 2;
 | 
						|
			break;
 | 
						|
		}
 | 
						|
	}
 | 
						|
 | 
						|
	return 0;
 | 
						|
}
 | 
						|
 | 
						|
static int irqchip_plic_cold_init(void *fdt, int nodeoff,
 | 
						|
				  const struct fdt_match *match)
 | 
						|
{
 | 
						|
	int i, rc;
 | 
						|
	struct plic_data *pd;
 | 
						|
 | 
						|
	if (PLIC_MAX_NR <= plic_count)
 | 
						|
		return SBI_ENOSPC;
 | 
						|
	pd = &plic[plic_count++];
 | 
						|
 | 
						|
	rc = fdt_parse_plic_node(fdt, nodeoff, pd);
 | 
						|
	if (rc)
 | 
						|
		return rc;
 | 
						|
 | 
						|
	if (match->data) {
 | 
						|
		void (*plic_plat_init)(struct plic_data *) = match->data;
 | 
						|
		plic_plat_init(pd);
 | 
						|
	}
 | 
						|
 | 
						|
	rc = plic_cold_irqchip_init(pd);
 | 
						|
	if (rc)
 | 
						|
		return rc;
 | 
						|
 | 
						|
	if (plic_count == 1) {
 | 
						|
		for (i = 0; i < SBI_HARTMASK_MAX_BITS; i++) {
 | 
						|
			plic_hartid2data[i] = NULL;
 | 
						|
			plic_hartid2context[i][0] = -1;
 | 
						|
			plic_hartid2context[i][1] = -1;
 | 
						|
		}
 | 
						|
	}
 | 
						|
 | 
						|
	return irqchip_plic_update_hartid_table(fdt, nodeoff, pd);
 | 
						|
}
 | 
						|
 | 
						|
#define THEAD_PLIC_CTRL_REG 0x1ffffc
 | 
						|
 | 
						|
static void thead_plic_plat_init(struct plic_data *pd)
 | 
						|
{
 | 
						|
	writel_relaxed(BIT(0), (char *)pd->addr + THEAD_PLIC_CTRL_REG);
 | 
						|
}
 | 
						|
 | 
						|
void thead_plic_restore(void)
 | 
						|
{
 | 
						|
	struct plic_data *plic = plic_hartid2data[current_hartid()];
 | 
						|
 | 
						|
	thead_plic_plat_init(plic);
 | 
						|
}
 | 
						|
 | 
						|
static const struct fdt_match irqchip_plic_match[] = {
 | 
						|
	{ .compatible = "andestech,nceplic100" },
 | 
						|
	{ .compatible = "riscv,plic0" },
 | 
						|
	{ .compatible = "sifive,plic-1.0.0" },
 | 
						|
	{ .compatible = "thead,c900-plic",
 | 
						|
	  .data = thead_plic_plat_init },
 | 
						|
	{ /* sentinel */ }
 | 
						|
};
 | 
						|
 | 
						|
struct fdt_irqchip fdt_irqchip_plic = {
 | 
						|
	.match_table = irqchip_plic_match,
 | 
						|
	.cold_init = irqchip_plic_cold_init,
 | 
						|
	.warm_init = irqchip_plic_warm_init,
 | 
						|
	.exit = NULL,
 | 
						|
};
 |