Kconfig 828 B

1234567891011121314151617181920212223242526272829
  1. # SPDX-License-Identifier: GPL-2.0-only
  2. config NFC_NCI
  3. depends on NFC
  4. tristate "NCI protocol support"
  5. default n
  6. help
  7. NCI (NFC Controller Interface) is a communication protocol between
  8. an NFC Controller (NFCC) and a Device Host (DH).
  9. Say Y here to compile NCI support into the kernel or say M to
  10. compile it as module (nci).
  11. config NFC_NCI_SPI
  12. depends on NFC_NCI && SPI
  13. select CRC_CCITT
  14. tristate "NCI over SPI protocol support"
  15. default n
  16. help
  17. NCI (NFC Controller Interface) is a communication protocol between
  18. an NFC Controller (NFCC) and a Device Host (DH).
  19. Say yes if you use an NCI driver that requires SPI link layer.
  20. config NFC_NCI_UART
  21. depends on NFC_NCI && TTY
  22. tristate "NCI over UART protocol support"
  23. default n
  24. help
  25. Say yes if you use an NCI driver that requires UART link layer.