xref: /OK3568_Linux_fs/kernel/drivers/nfc/microread/Kconfig (revision 4882a59341e53eb6f0b4789bf948001014eff981)
1*4882a593Smuzhiyun# SPDX-License-Identifier: GPL-2.0-only
2*4882a593Smuzhiyunconfig NFC_MICROREAD
3*4882a593Smuzhiyun	tristate
4*4882a593Smuzhiyun	select CRC_CCITT
5*4882a593Smuzhiyun	help
6*4882a593Smuzhiyun	  This module contains the main code for Inside Secure microread
7*4882a593Smuzhiyun	  NFC chipsets. It implements the chipset HCI logic and hooks into
8*4882a593Smuzhiyun	  the NFC kernel APIs. Physical layers will register against it.
9*4882a593Smuzhiyun
10*4882a593Smuzhiyunconfig NFC_MICROREAD_I2C
11*4882a593Smuzhiyun	tristate "Inside Secure Microread device support (I2C)"
12*4882a593Smuzhiyun	depends on NFC_HCI && I2C && NFC_SHDLC
13*4882a593Smuzhiyun	select NFC_MICROREAD
14*4882a593Smuzhiyun	help
15*4882a593Smuzhiyun	  This module adds support for the i2c interface of adapters using
16*4882a593Smuzhiyun	  Inside microread chipsets.  Select this if your platform is using
17*4882a593Smuzhiyun	  the i2c bus.
18*4882a593Smuzhiyun
19*4882a593Smuzhiyun	  If you choose to build a module, it'll be called microread_i2c.
20*4882a593Smuzhiyun	  Say N if unsure.
21*4882a593Smuzhiyun
22*4882a593Smuzhiyunconfig NFC_MICROREAD_MEI
23*4882a593Smuzhiyun	tristate "Inside Secure Microread device support (MEI)"
24*4882a593Smuzhiyun	depends on NFC_HCI && NFC_MEI_PHY
25*4882a593Smuzhiyun	select NFC_MICROREAD
26*4882a593Smuzhiyun	help
27*4882a593Smuzhiyun	  This module adds support for the mei interface of adapters using
28*4882a593Smuzhiyun	  Inside microread chipsets.  Select this if your microread chipset
29*4882a593Smuzhiyun	  is handled by Intel's Management Engine Interface on your platform.
30*4882a593Smuzhiyun
31*4882a593Smuzhiyun	  If you choose to build a module, it'll be called microread_mei.
32*4882a593Smuzhiyun	  Say N if unsure.
33