Kconfig 2.0 KB

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