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