Kconfig 1.1 KB

1234567891011121314151617181920212223242526272829303132
  1. # SPDX-License-Identifier: GPL-2.0-only
  2. config NFC_MICROREAD
  3. tristate
  4. select CRC_CCITT
  5. help
  6. This module contains the main code for Inside Secure microread
  7. NFC chipsets. It implements the chipset HCI logic and hooks into
  8. the NFC kernel APIs. Physical layers will register against it.
  9. config NFC_MICROREAD_I2C
  10. tristate "Inside Secure Microread device support (I2C)"
  11. depends on NFC_HCI && I2C && NFC_SHDLC
  12. select NFC_MICROREAD
  13. help
  14. This module adds support for the i2c interface of adapters using
  15. Inside microread chipsets. Select this if your platform is using
  16. the i2c bus.
  17. If you choose to build a module, it'll be called microread_i2c.
  18. Say N if unsure.
  19. config NFC_MICROREAD_MEI
  20. tristate "Inside Secure Microread device support (MEI)"
  21. depends on NFC_HCI && NFC_MEI_PHY
  22. select NFC_MICROREAD
  23. help
  24. This module adds support for the mei interface of adapters using
  25. Inside microread chipsets. Select this if your microread chipset
  26. is handled by Intel's Management Engine Interface on your platform.
  27. If you choose to build a module, it'll be called microread_mei.
  28. Say N if unsure.