Kconfig 2.2 KB

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