forked from Mirrors/opensbi
		
	Add gpio driver and gpio reset function in Starfive JH7110 SOC platform. Signed-off-by: minda.chen <minda.chen@starfivetech.com> Reviewed-by: Anup Patel <anup@brainfault.org>
		
			
				
	
	
		
			27 lines
		
	
	
		
			358 B
		
	
	
	
		
			Plaintext
		
	
	
	
	
	
			
		
		
	
	
			27 lines
		
	
	
		
			358 B
		
	
	
	
		
			Plaintext
		
	
	
	
	
	
# SPDX-License-Identifier: BSD-2-Clause
 | 
						|
 | 
						|
menu "GPIO Support"
 | 
						|
 | 
						|
config FDT_GPIO
 | 
						|
	bool "FDT based GPIO drivers"
 | 
						|
	depends on FDT
 | 
						|
	select GPIO
 | 
						|
	default n
 | 
						|
 | 
						|
if FDT_GPIO
 | 
						|
 | 
						|
config FDT_GPIO_SIFIVE
 | 
						|
	bool "SiFive GPIO FDT driver"
 | 
						|
	default n
 | 
						|
 | 
						|
config FDT_GPIO_STARFIVE
 | 
						|
	bool "StarFive GPIO FDT driver"
 | 
						|
	default n
 | 
						|
endif
 | 
						|
 | 
						|
config GPIO
 | 
						|
	bool "GPIO support"
 | 
						|
	default n
 | 
						|
 | 
						|
endmenu
 |