Kconfig 956 B

12345678910111213141516171819202122232425262728293031
  1. # SPDX-License-Identifier: GPL-2.0-only
  2. config NFC_PN544
  3. tristate
  4. select CRC_CCITT
  5. help
  6. NXP PN544 core driver.
  7. This is a driver based on the HCI NFC kernel layers and
  8. will thus not work with NXP libnfc library.
  9. config NFC_PN544_I2C
  10. tristate "NXP PN544 device support (I2C)"
  11. depends on NFC_HCI && I2C && NFC_SHDLC
  12. select NFC_PN544
  13. help
  14. This module adds support for the NXP pn544 i2c interface.
  15. Select this if your platform is using the i2c bus.
  16. If you choose to build a module, it'll be called pn544_i2c.
  17. Say N if unsure.
  18. config NFC_PN544_MEI
  19. tristate "NXP PN544 device support (MEI)"
  20. depends on NFC_HCI && NFC_MEI_PHY
  21. select NFC_PN544
  22. help
  23. This module adds support for the mei interface of adapters using
  24. NXP pn544 chipsets. Select this if your pn544 chipset
  25. is handled by Intel's Management Engine Interface on your platform.
  26. If you choose to build a module, it'll be called pn544_mei.
  27. Say N if unsure.