mirror of
				https://github.com/riscv-software-src/opensbi
				synced 2025-11-03 21:48:45 +00:00 
			
		
		
		
	Add a driver for the Synopsys DesignWare APB GPIO IP block found in many SoCs. Signed-off-by: Ben Dooks <ben.dooks@sifive.com> Reviewed-by: Anup Patel <anup@brainfault.org>
		
			
				
	
	
		
			31 lines
		
	
	
		
			428 B
		
	
	
	
		
			Plaintext
		
	
	
	
	
	
			
		
		
	
	
			31 lines
		
	
	
		
			428 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_DESIGNWARE
 | 
						|
	bool "DesignWare GPIO driver"
 | 
						|
	default n
 | 
						|
 | 
						|
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
 |