Kconfig 1.7 KB

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