mirror of
				https://github.com/riscv-software-src/opensbi
				synced 2025-11-04 05:50:22 +00:00 
			
		
		
		
	The irqchip handlers will typically not need pointer to trap registers so remove regs parameter of sbi_irqchip_process(). Signed-off-by: Anup Patel <apatel@ventanamicro.com> Reviewed-by: Samuel Holland <samuel.holland@sifive.com> Tested-by: Samuel Holland <samuel.holland@sifive.com> Reviewed-by: Clément Léger <cleger@rivosinc.com>
		
			
				
	
	
		
			55 lines
		
	
	
		
			963 B
		
	
	
	
		
			C
		
	
	
	
	
	
			
		
		
	
	
			55 lines
		
	
	
		
			963 B
		
	
	
	
		
			C
		
	
	
	
	
	
/*
 | 
						|
 * SPDX-License-Identifier: BSD-2-Clause
 | 
						|
 *
 | 
						|
 * Copyright (c) 2022 Ventana Micro Systems Inc.
 | 
						|
 *
 | 
						|
 * Authors:
 | 
						|
 *   Anup Patel <apatel@ventanamicro.com>
 | 
						|
 */
 | 
						|
 | 
						|
#include <sbi/sbi_irqchip.h>
 | 
						|
#include <sbi/sbi_platform.h>
 | 
						|
 | 
						|
static int default_irqfn(void)
 | 
						|
{
 | 
						|
	return SBI_ENODEV;
 | 
						|
}
 | 
						|
 | 
						|
static int (*ext_irqfn)(void) = default_irqfn;
 | 
						|
 | 
						|
void sbi_irqchip_set_irqfn(int (*fn)(void))
 | 
						|
{
 | 
						|
	if (fn)
 | 
						|
		ext_irqfn = fn;
 | 
						|
}
 | 
						|
 | 
						|
int sbi_irqchip_process(void)
 | 
						|
{
 | 
						|
	return ext_irqfn();
 | 
						|
}
 | 
						|
 | 
						|
int sbi_irqchip_init(struct sbi_scratch *scratch, bool cold_boot)
 | 
						|
{
 | 
						|
	int rc;
 | 
						|
	const struct sbi_platform *plat = sbi_platform_ptr(scratch);
 | 
						|
 | 
						|
	rc = sbi_platform_irqchip_init(plat, cold_boot);
 | 
						|
	if (rc)
 | 
						|
		return rc;
 | 
						|
 | 
						|
	if (ext_irqfn != default_irqfn)
 | 
						|
		csr_set(CSR_MIE, MIP_MEIP);
 | 
						|
 | 
						|
	return 0;
 | 
						|
}
 | 
						|
 | 
						|
void sbi_irqchip_exit(struct sbi_scratch *scratch)
 | 
						|
{
 | 
						|
	const struct sbi_platform *plat = sbi_platform_ptr(scratch);
 | 
						|
 | 
						|
	if (ext_irqfn != default_irqfn)
 | 
						|
		csr_clear(CSR_MIE, MIP_MEIP);
 | 
						|
 | 
						|
	sbi_platform_irqchip_exit(plat);
 | 
						|
}
 |