forked from Mirrors/opensbi
		
	The SBI FWFT extension defines a set of function that can be called to control the configuration of some platform features (misaligned trap delegation, etc). This patch implements sbi_fwft_set() and sbi_fwft_get() as defined in the specification [1]. Link: https://lists.riscv.org/g/tech-prs/message/924 [1] Signed-off-by: Clément Léger <cleger@rivosinc.com> Reviewed-by: Anup Patel <anup@brainfault.org>
		
			
				
	
	
		
			66 lines
		
	
	
		
			1.0 KiB
		
	
	
	
		
			Plaintext
		
	
	
	
	
	
			
		
		
	
	
			66 lines
		
	
	
		
			1.0 KiB
		
	
	
	
		
			Plaintext
		
	
	
	
	
	
# SPDX-License-Identifier: BSD-2-Clause
 | 
						|
 | 
						|
menu "SBI Extension Support"
 | 
						|
 | 
						|
config SBI_ECALL_TIME
 | 
						|
	bool "Timer extension"
 | 
						|
	default y
 | 
						|
 | 
						|
config SBI_ECALL_RFENCE
 | 
						|
	bool "RFENCE extension"
 | 
						|
	default y
 | 
						|
 | 
						|
config SBI_ECALL_IPI
 | 
						|
	bool "IPI extension"
 | 
						|
	default y
 | 
						|
 | 
						|
config SBI_ECALL_HSM
 | 
						|
	bool "Hart State Management extension"
 | 
						|
	default y
 | 
						|
 | 
						|
config SBI_ECALL_SRST
 | 
						|
	bool "System Reset extension"
 | 
						|
	default y
 | 
						|
 | 
						|
config SBI_ECALL_SUSP
 | 
						|
	bool "System Suspend extension"
 | 
						|
	default y
 | 
						|
 | 
						|
config SBI_ECALL_PMU
 | 
						|
	bool "Performance Monitoring Unit extension"
 | 
						|
	default y
 | 
						|
 | 
						|
config SBI_ECALL_DBCN
 | 
						|
	bool "Debug Console extension"
 | 
						|
	default y
 | 
						|
 | 
						|
config SBI_ECALL_CPPC
 | 
						|
	bool "CPPC extension"
 | 
						|
	default y
 | 
						|
 | 
						|
config SBI_ECALL_FWFT
 | 
						|
	bool "Firmware Feature extension"
 | 
						|
	default y
 | 
						|
 | 
						|
config SBI_ECALL_LEGACY
 | 
						|
	bool "SBI v0.1 legacy extensions"
 | 
						|
	default y
 | 
						|
 | 
						|
config SBI_ECALL_VENDOR
 | 
						|
	bool "Platform-defined vendor extensions"
 | 
						|
	default y
 | 
						|
 | 
						|
config SBI_ECALL_DBTR
 | 
						|
	bool "Debug Trigger Extension"
 | 
						|
	default y
 | 
						|
 | 
						|
config SBIUNIT
 | 
						|
	bool "Enable SBIUNIT tests"
 | 
						|
	default n
 | 
						|
 | 
						|
config SBI_ECALL_SSE
 | 
						|
	bool "SSE extension"
 | 
						|
	default y
 | 
						|
 | 
						|
endmenu
 |