forked from Mirrors/opensbi
		
	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>
		
			
				
	
	
		
			17 lines
		
	
	
		
			407 B
		
	
	
	
		
			Plaintext
		
	
	
	
	
	
			
		
		
	
	
			17 lines
		
	
	
		
			407 B
		
	
	
	
		
			Plaintext
		
	
	
	
	
	
# SPDX-License-Identifier: BSD-2-Clause
 | 
						|
 | 
						|
#
 | 
						|
# All mandatory drivers or libraries for this platform should
 | 
						|
# be directly selected by the PLATFORM_xyz kconfig symbol.
 | 
						|
#
 | 
						|
# All optional drivers or libraries for this platform should
 | 
						|
# be enabled via configs/defconfig of this platform.
 | 
						|
#
 | 
						|
config PLATFORM_TEMPLATE
 | 
						|
	bool
 | 
						|
	select IPI_MSWI
 | 
						|
	select IRQCHIP_PLIC
 | 
						|
	select SERIAL_UART8250
 | 
						|
	select TIMER_MTIMER
 | 
						|
	default y
 |