mirror of
				https://github.com/riscv-software-src/opensbi
				synced 2025-11-04 05:50:22 +00:00 
			
		
		
		
	We update irqchip drivers makefile to use kconfig for enabling/disabling drivers. To avoid compile errors, we also enable appropriate irqchip drivers for each platform. Signed-off-by: Anup Patel <apatel@ventanamicro.com> Tested-by: Andrew Jones <ajones@ventanamicro.com> Acked-by: Atish Patra <atishp@rivosinc.com> Tested-by: Atish Patra <atishp@rivosinc.com>
		
			
				
	
	
		
			37 lines
		
	
	
		
			668 B
		
	
	
	
		
			C
		
	
	
	
	
	
			
		
		
	
	
			37 lines
		
	
	
		
			668 B
		
	
	
	
		
			C
		
	
	
	
	
	
/*
 | 
						|
 * SPDX-License-Identifier: BSD-2-Clause
 | 
						|
 *
 | 
						|
 * Copyright (c) 2020 Western Digital Corporation or its affiliates.
 | 
						|
 *
 | 
						|
 * Authors:
 | 
						|
 *   Anup Patel <anup.patel@wdc.com>
 | 
						|
 */
 | 
						|
 | 
						|
#ifndef __FDT_IRQCHIP_H__
 | 
						|
#define __FDT_IRQCHIP_H__
 | 
						|
 | 
						|
#include <sbi/sbi_types.h>
 | 
						|
 | 
						|
#ifdef CONFIG_FDT_IRQCHIP
 | 
						|
 | 
						|
struct fdt_irqchip {
 | 
						|
	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 fdt_irqchip_exit(void);
 | 
						|
 | 
						|
int fdt_irqchip_init(bool cold_boot);
 | 
						|
 | 
						|
#else
 | 
						|
 | 
						|
static inline void fdt_irqchip_exit(void) { }
 | 
						|
 | 
						|
static inline int fdt_irqchip_init(bool cold_boot) { return 0; }
 | 
						|
 | 
						|
#endif
 | 
						|
 | 
						|
#endif
 |