summaryrefslogtreecommitdiff
path: root/drivers/button/Kconfig
blob: 6b3ec7e55de539fb349a7a2c4f30d3ae93a78176 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
menu "Button Support"

config BUTTON
	bool "Enable button support"
	depends on DM
	help
	  Many boards have buttons which can be used to change behaviour (reset, ...).
	  U-Boot provides a uclass API to implement this feature. Button drivers
	  can provide access to board-specific buttons. Use of the device tree
	  for configuration is encouraged.

config BUTTON_GPIO
	bool "Button gpio"
	depends on BUTTON
	help
	  Enable support for buttons which are connected to GPIO lines. These
	  GPIOs may be on the SoC or some other device which provides GPIOs.
	  The GPIO driver must used driver model. Buttons are configured using
	  the device tree.

endmenu