Kconfig 981 B

12345678910111213141516171819202122232425262728293031
  1. # SPDX-License-Identifier: GPL-2.0-only
  2. config NFC_ST_NCI
  3. tristate
  4. help
  5. STMicroelectronics NFC NCI chips core driver. It implements the chipset
  6. NCI logic and hooks into the NFC kernel APIs. Physical layers will
  7. register against it.
  8. config NFC_ST_NCI_I2C
  9. tristate "STMicroelectronics ST NCI NFC driver (I2C)"
  10. depends on NFC_NCI && I2C
  11. select NFC_ST_NCI
  12. help
  13. This module adds support for an I2C interface to the
  14. STMicroelectronics NFC NCI chips family.
  15. Select this if your platform is using the i2c bus.
  16. If you choose to build a module, it'll be called st-nci_i2c.
  17. Say N if unsure.
  18. config NFC_ST_NCI_SPI
  19. tristate "STMicroelectronics ST NCI NFC driver (SPI)"
  20. depends on NFC_NCI && SPI
  21. select NFC_ST_NCI
  22. help
  23. This module adds support for an SPI interface to the
  24. STMicroelectronics NFC NCI chips family.
  25. Select this if your platform is using the spi bus.
  26. If you choose to build a module, it'll be called st-nci_spi.
  27. Say N if unsure.