xref: /OK3568_Linux_fs/kernel/net/nfc/nci/Kconfig (revision 4882a59341e53eb6f0b4789bf948001014eff981)
1*4882a593Smuzhiyun# SPDX-License-Identifier: GPL-2.0-only
2*4882a593Smuzhiyunconfig NFC_NCI
3*4882a593Smuzhiyun	depends on NFC
4*4882a593Smuzhiyun	tristate "NCI protocol support"
5*4882a593Smuzhiyun	default n
6*4882a593Smuzhiyun	help
7*4882a593Smuzhiyun	  NCI (NFC Controller Interface) is a communication protocol between
8*4882a593Smuzhiyun	  an NFC Controller (NFCC) and a Device Host (DH).
9*4882a593Smuzhiyun
10*4882a593Smuzhiyun	  Say Y here to compile NCI support into the kernel or say M to
11*4882a593Smuzhiyun	  compile it as module (nci).
12*4882a593Smuzhiyun
13*4882a593Smuzhiyunconfig NFC_NCI_SPI
14*4882a593Smuzhiyun	depends on NFC_NCI && SPI
15*4882a593Smuzhiyun	select CRC_CCITT
16*4882a593Smuzhiyun	tristate "NCI over SPI protocol support"
17*4882a593Smuzhiyun	default n
18*4882a593Smuzhiyun	help
19*4882a593Smuzhiyun	  NCI (NFC Controller Interface) is a communication protocol between
20*4882a593Smuzhiyun	  an NFC Controller (NFCC) and a Device Host (DH).
21*4882a593Smuzhiyun
22*4882a593Smuzhiyun	  Say yes if you use an NCI driver that requires SPI link layer.
23*4882a593Smuzhiyun
24*4882a593Smuzhiyunconfig NFC_NCI_UART
25*4882a593Smuzhiyun	depends on NFC_NCI && TTY
26*4882a593Smuzhiyun	tristate "NCI over UART protocol support"
27*4882a593Smuzhiyun	default n
28*4882a593Smuzhiyun	help
29*4882a593Smuzhiyun	  Say yes if you use an NCI driver that requires UART link layer.
30