Kconfig 1.8 KB

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