cachepc-linux

Fork of AMDESE/linux with modifications for CachePC side-channel attack
git clone https://git.sinitax.com/sinitax/cachepc-linux
Log | Files | Refs | README | LICENSE | sfeed.txt

Kconfig (2151B)


      1# SPDX-License-Identifier: GPL-2.0-only
      2#
      3# Near Field Communication (NFC) devices
      4#
      5
      6menu "Near Field Communication (NFC) devices"
      7	depends on NFC
      8
      9config NFC_TRF7970A
     10	tristate "Texas Instruments TRF7970a NFC driver"
     11	depends on SPI && NFC_DIGITAL && GPIOLIB
     12	help
     13	  This option enables the NFC driver for Texas Instruments' TRF7970a
     14	  device. Such device supports 5 different protocols: ISO14443A,
     15	  ISO14443B, FeLiCa, ISO15693 and ISO18000-3.
     16
     17	  Say Y here to compile support for TRF7970a into the kernel or
     18	  say M  to compile it as a module. The module will be called
     19	  trf7970a.ko.
     20
     21config NFC_MEI_PHY
     22	tristate "MEI bus NFC device support"
     23	depends on INTEL_MEI && NFC_HCI
     24	help
     25	  This adds support to use an mei bus nfc device. Select this if you
     26	  will use an HCI NFC driver for an NFC chip connected behind an
     27	  Intel's Management Engine chip.
     28
     29	  If unsure, say N.
     30
     31config 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
     40	  If unsure, say N.
     41
     42config NFC_PORT100
     43	tristate "Sony NFC Port-100 Series USB device support"
     44	depends on USB
     45	depends on NFC_DIGITAL
     46	help
     47	  This adds support for Sony Port-100 chip based USB devices such as the
     48	  RC-S380 dongle.
     49
     50	  If unsure, say N.
     51
     52config NFC_VIRTUAL_NCI
     53	tristate "NCI device simulator driver"
     54	depends on NFC_NCI
     55	help
     56	  NCI virtual device simulates a NCI device to the user.
     57	  It can be used to validate the NCI module and applications.
     58	  This driver supports communication between the virtual NCI device and
     59	  module.
     60
     61	  If unsure, say N.
     62
     63source "drivers/nfc/fdp/Kconfig"
     64source "drivers/nfc/pn544/Kconfig"
     65source "drivers/nfc/pn533/Kconfig"
     66source "drivers/nfc/microread/Kconfig"
     67source "drivers/nfc/nfcmrvl/Kconfig"
     68source "drivers/nfc/st21nfca/Kconfig"
     69source "drivers/nfc/st-nci/Kconfig"
     70source "drivers/nfc/nxp-nci/Kconfig"
     71source "drivers/nfc/s3fwrn5/Kconfig"
     72source "drivers/nfc/st95hf/Kconfig"
     73endmenu