forked from Mirrors/opensbi
		
	We update FDT support makefile to use kconfig for enabling/disabling. To avoid compilation errors, we also enable FDT 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>
		
			
				
	
	
		
			24 lines
		
	
	
		
			304 B
		
	
	
	
		
			Plaintext
		
	
	
	
	
	
			
		
		
	
	
			24 lines
		
	
	
		
			304 B
		
	
	
	
		
			Plaintext
		
	
	
	
	
	
# SPDX-License-Identifier: BSD-2-Clause
 | 
						|
 | 
						|
menu "IPI Device Support"
 | 
						|
 | 
						|
config FDT_IPI
 | 
						|
	bool "FDT based ipi drivers"
 | 
						|
	depends on FDT
 | 
						|
	default n
 | 
						|
 | 
						|
if FDT_IPI
 | 
						|
 | 
						|
config FDT_IPI_MSWI
 | 
						|
	bool "ACLINT MSWI FDT driver"
 | 
						|
	select IPI_MSWI
 | 
						|
	default n
 | 
						|
 | 
						|
endif
 | 
						|
 | 
						|
config IPI_MSWI
 | 
						|
	bool "ACLINT MSWI support"
 | 
						|
	default n
 | 
						|
 | 
						|
endmenu
 |