summaryrefslogtreecommitdiff
path: root/lib/utils/gpio/Kconfig
blob: 1a437e67d97a4c4cd91373bc3598a3027c8750e7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
# 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