1# 2# Near Field Communication (NFC) devices 3# 4 5menu "Near Field Communication (NFC) devices" 6 depends on NFC 7 8config NFC_TRF7970A 9 tristate "Texas Instruments TRF7970a NFC driver" 10 depends on SPI && NFC_DIGITAL && GPIOLIB 11 help 12 This option enables the NFC driver for Texas Instruments' TRF7970a 13 device. Such device supports 5 different protocols: ISO14443A, 14 ISO14443B, FeLiCa, ISO15693 and ISO18000-3. 15 16 Say Y here to compile support for TRF7970a into the kernel or 17 say M to compile it as a module. The module will be called 18 trf7970a.ko. 19 20config NFC_MEI_PHY 21 tristate "MEI bus NFC device support" 22 depends on INTEL_MEI && NFC_HCI 23 help 24 This adds support to use an mei bus nfc device. Select this if you 25 will use an HCI NFC driver for an NFC chip connected behind an 26 Intel's Management Engine chip. 27 28 If unsure, say N. 29 30config NFC_SIM 31 tristate "NFC hardware simulator driver" 32 depends on NFC_DIGITAL 33 help 34 This driver declares two virtual NFC devices supporting NFC-DEP 35 protocol. An LLCP connection can be established between them and 36 all packets sent from one device is sent back to the other, acting as 37 loopback devices. 38 39 If unsure, say N. 40 41config NFC_PORT100 42 tristate "Sony NFC Port-100 Series USB device support" 43 depends on USB 44 depends on NFC_DIGITAL 45 help 46 This adds support for Sony Port-100 chip based USB devices such as the 47 RC-S380 dongle. 48 49 If unsure, say N. 50 51source "drivers/nfc/fdp/Kconfig" 52source "drivers/nfc/pn544/Kconfig" 53source "drivers/nfc/pn533/Kconfig" 54source "drivers/nfc/microread/Kconfig" 55source "drivers/nfc/nfcmrvl/Kconfig" 56source "drivers/nfc/st21nfca/Kconfig" 57source "drivers/nfc/st-nci/Kconfig" 58source "drivers/nfc/nxp-nci/Kconfig" 59source "drivers/nfc/s3fwrn5/Kconfig" 60source "drivers/nfc/st95hf/Kconfig" 61endmenu 62