Файловый менеджер - Редактировать - /var/www/xthruster/html/wp-content/uploads/flags/nfc.tar
Назад
Kconfig 0000644 00000003452 14722072300 0006050 0 ustar 00 # SPDX-License-Identifier: GPL-2.0-only # # Near Field Communication (NFC) devices # menu "Near Field Communication (NFC) devices" depends on NFC config NFC_TRF7970A tristate "Texas Instruments TRF7970a NFC driver" depends on SPI && NFC_DIGITAL && GPIOLIB help This option enables the NFC driver for Texas Instruments' TRF7970a device. Such device supports 5 different protocols: ISO14443A, ISO14443B, FeLiCa, ISO15693 and ISO18000-3. Say Y here to compile support for TRF7970a into the kernel or say M to compile it as a module. The module will be called trf7970a.ko. config NFC_MEI_PHY tristate "MEI bus NFC device support" depends on INTEL_MEI && NFC_HCI help This adds support to use an mei bus nfc device. Select this if you will use an HCI NFC driver for an NFC chip connected behind an Intel's Management Engine chip. If unsure, say N. config NFC_SIM tristate "NFC hardware simulator driver" depends on NFC_DIGITAL help This driver declares two virtual NFC devices supporting NFC-DEP protocol. An LLCP connection can be established between them and all packets sent from one device is sent back to the other, acting as loopback devices. If unsure, say N. config NFC_PORT100 tristate "Sony NFC Port-100 Series USB device support" depends on USB depends on NFC_DIGITAL help This adds support for Sony Port-100 chip based USB devices such as the RC-S380 dongle. If unsure, say N. source "drivers/nfc/fdp/Kconfig" source "drivers/nfc/pn544/Kconfig" source "drivers/nfc/pn533/Kconfig" source "drivers/nfc/microread/Kconfig" source "drivers/nfc/nfcmrvl/Kconfig" source "drivers/nfc/st21nfca/Kconfig" source "drivers/nfc/st-nci/Kconfig" source "drivers/nfc/nxp-nci/Kconfig" source "drivers/nfc/s3fwrn5/Kconfig" source "drivers/nfc/st95hf/Kconfig" endmenu hci/Kconfig 0000644 00000001052 14722072300 0006605 0 ustar 00 # SPDX-License-Identifier: GPL-2.0-only config NFC_HCI depends on NFC tristate "NFC HCI implementation" default n help Say Y here if you want to build support for a kernel NFC HCI implementation. This is mostly needed for devices that only process HCI frames, like for example the NXP pn544. config NFC_SHDLC depends on NFC_HCI select CRC_CCITT bool "SHDLC link layer for HCI based NFC drivers" default n ---help--- Say yes if you use an NFC HCI driver that requires SHDLC link layer. If unsure, say N here. hci/Makefile 0000644 00000000316 14722072300 0006744 0 ustar 00 # SPDX-License-Identifier: GPL-2.0-only # # Makefile for the Linux NFC HCI layer. # obj-$(CONFIG_NFC_HCI) += hci.o hci-y := core.o hcp.o command.o llc.o llc_nop.o hci-$(CONFIG_NFC_SHDLC) += llc_shdlc.o nci/Kconfig 0000644 00000001474 14722072300 0006623 0 ustar 00 # SPDX-License-Identifier: GPL-2.0-only config NFC_NCI depends on NFC tristate "NCI protocol support" default n help NCI (NFC Controller Interface) is a communication protocol between an NFC Controller (NFCC) and a Device Host (DH). Say Y here to compile NCI support into the kernel or say M to compile it as module (nci). config NFC_NCI_SPI depends on NFC_NCI && SPI select CRC_CCITT tristate "NCI over SPI protocol support" default n help NCI (NFC Controller Interface) is a communication protocol between an NFC Controller (NFCC) and a Device Host (DH). Say yes if you use an NCI driver that requires SPI link layer. config NFC_NCI_UART depends on NFC_NCI && TTY tristate "NCI over UART protocol support" default n help Say yes if you use an NCI driver that requires UART link layer. nci/Makefile 0000644 00000000434 14722072300 0006753 0 ustar 00 # SPDX-License-Identifier: GPL-2.0 # # Makefile for the Linux NFC NCI layer. # obj-$(CONFIG_NFC_NCI) += nci.o nci-objs := core.o data.o lib.o ntf.o rsp.o hci.o nci_spi-y += spi.o obj-$(CONFIG_NFC_NCI_SPI) += nci_spi.o nci_uart-y += uart.o obj-$(CONFIG_NFC_NCI_UART) += nci_uart.o Makefile 0000644 00000001116 14722072300 0006200 0 ustar 00 # SPDX-License-Identifier: GPL-2.0 # # Makefile for nfc devices # obj-$(CONFIG_NFC_FDP) += fdp/ obj-$(CONFIG_NFC_PN544) += pn544/ obj-$(CONFIG_NFC_MICROREAD) += microread/ obj-$(CONFIG_NFC_PN533) += pn533/ obj-$(CONFIG_NFC_MEI_PHY) += mei_phy.o obj-$(CONFIG_NFC_SIM) += nfcsim.o obj-$(CONFIG_NFC_PORT100) += port100.o obj-$(CONFIG_NFC_MRVL) += nfcmrvl/ obj-$(CONFIG_NFC_TRF7970A) += trf7970a.o obj-$(CONFIG_NFC_ST21NFCA) += st21nfca/ obj-$(CONFIG_NFC_ST_NCI) += st-nci/ obj-$(CONFIG_NFC_NXP_NCI) += nxp-nci/ obj-$(CONFIG_NFC_S3FWRN5) += s3fwrn5/ obj-$(CONFIG_NFC_ST95HF) += st95hf/ st95hf/Kconfig 0000644 00000000712 14722072766 0007206 0 ustar 00 # SPDX-License-Identifier: GPL-2.0-only config NFC_ST95HF tristate "ST95HF NFC Transceiver driver" depends on SPI && NFC_DIGITAL help This enables the ST NFC driver for ST95HF NFC transceiver. This makes use of SPI framework to communicate with transceiver and registered with NFC digital core to support Linux NFC framework. Say Y here to compile support for ST NFC transceiver ST95HF linux driver into the kernel or say M to compile it as module. st95hf/Makefile 0000644 00000000251 14722072766 0007341 0 ustar 00 # SPDX-License-Identifier: GPL-2.0-only # # Makefile for STMicroelectronics NFC transceiver ST95HF # obj-$(CONFIG_NFC_ST95HF) += st95hf.o st95hf-objs := spi.o core.o st-nci/Kconfig 0000644 00000001747 14722072766 0007272 0 ustar 00 # SPDX-License-Identifier: GPL-2.0-only config NFC_ST_NCI tristate ---help--- STMicroelectronics NFC NCI chips core driver. It implements the chipset NCI logic and hooks into the NFC kernel APIs. Physical layers will register against it. config NFC_ST_NCI_I2C tristate "STMicroelectronics ST NCI NFC driver (I2C)" depends on NFC_NCI && I2C select NFC_ST_NCI ---help--- This module adds support for an I2C interface to the STMicroelectronics NFC NCI chips family. Select this if your platform is using the i2c bus. If you choose to build a module, it'll be called st-nci_i2c. Say N if unsure. config NFC_ST_NCI_SPI tristate "STMicroelectronics ST NCI NFC driver (SPI)" depends on NFC_NCI && SPI select NFC_ST_NCI ---help--- This module adds support for an SPI interface to the STMicroelectronics NFC NCI chips family. Select this if your platform is using the spi bus. If you choose to build a module, it'll be called st-nci_spi. Say N if unsure. st-nci/Makefile 0000644 00000000467 14722072766 0007425 0 ustar 00 # SPDX-License-Identifier: GPL-2.0 # # Makefile for ST_NCI NCI based NFC driver # st-nci-objs = ndlc.o core.o se.o vendor_cmds.o obj-$(CONFIG_NFC_ST_NCI) += st-nci.o st-nci_i2c-objs = i2c.o obj-$(CONFIG_NFC_ST_NCI_I2C) += st-nci_i2c.o st-nci_spi-objs = spi.o obj-$(CONFIG_NFC_ST_NCI_SPI) += st-nci_spi.o pn533/Kconfig 0000644 00000001425 14722072766 0006736 0 ustar 00 # SPDX-License-Identifier: GPL-2.0-only config NFC_PN533 tristate help NXP PN533 core driver. This driver provides core functionality for NXP PN533 NFC devices. config NFC_PN533_USB tristate "NFC PN533 device support (USB)" depends on USB select NFC_PN533 ---help--- This module adds support for the NXP pn533 USB interface. Select this if your platform is using the USB bus. If you choose to build a module, it'll be called pn533_usb. Say N if unsure. config NFC_PN533_I2C tristate "NFC PN533 device support (I2C)" depends on I2C select NFC_PN533 ---help--- This module adds support for the NXP pn533 I2C interface. Select this if your platform is using the I2C bus. If you choose to build a module, it'll be called pn533_i2c. Say N if unsure. pn533/Makefile 0000644 00000000372 14722072766 0007073 0 ustar 00 # SPDX-License-Identifier: GPL-2.0-only # # Makefile for PN533 NFC driver # pn533_usb-objs = usb.o pn533_i2c-objs = i2c.o obj-$(CONFIG_NFC_PN533) += pn533.o obj-$(CONFIG_NFC_PN533_USB) += pn533_usb.o obj-$(CONFIG_NFC_PN533_I2C) += pn533_i2c.o microread/Kconfig 0000644 00000002173 14722072766 0010034 0 ustar 00 # SPDX-License-Identifier: GPL-2.0-only config NFC_MICROREAD tristate select CRC_CCITT ---help--- This module contains the main code for Inside Secure microread NFC chipsets. It implements the chipset HCI logic and hooks into the NFC kernel APIs. Physical layers will register against it. config NFC_MICROREAD_I2C tristate "Inside Secure Microread device support (I2C)" depends on NFC_HCI && I2C && NFC_SHDLC select NFC_MICROREAD ---help--- This module adds support for the i2c interface of adapters using Inside microread chipsets. Select this if your platform is using the i2c bus. If you choose to build a module, it'll be called microread_i2c. Say N if unsure. config NFC_MICROREAD_MEI tristate "Inside Secure Microread device support (MEI)" depends on NFC_HCI && NFC_MEI_PHY select NFC_MICROREAD ---help--- This module adds support for the mei interface of adapters using Inside microread chipsets. Select this if your microread chipset is handled by Intel's Management Engine Interface on your platform. If you choose to build a module, it'll be called microread_mei. Say N if unsure. microread/Makefile 0000644 00000000444 14722072766 0010170 0 ustar 00 # SPDX-License-Identifier: GPL-2.0 # # Makefile for Microread HCI based NFC driver # microread_i2c-objs = i2c.o microread_mei-objs = mei.o obj-$(CONFIG_NFC_MICROREAD) += microread.o obj-$(CONFIG_NFC_MICROREAD_I2C) += microread_i2c.o obj-$(CONFIG_NFC_MICROREAD_MEI) += microread_mei.o s3fwrn5/Kconfig 0000644 00000001171 14722072766 0007373 0 ustar 00 # SPDX-License-Identifier: GPL-2.0-only config NFC_S3FWRN5 tristate select CRYPTO ---help--- Core driver for Samsung S3FWRN5 NFC chip. Contains core utilities of chip. It's intended to be used by PHYs to avoid duplicating lots of common code. config NFC_S3FWRN5_I2C tristate "Samsung S3FWRN5 I2C support" depends on NFC_NCI && I2C select NFC_S3FWRN5 default n ---help--- This module adds support for an I2C interface to the S3FWRN5 chip. Select this if your platform is using the I2C bus. To compile this driver as a module, choose m here. The module will be called s3fwrn5_i2c.ko. Say N if unsure. s3fwrn5/Makefile 0000644 00000000356 14722072766 0007534 0 ustar 00 # SPDX-License-Identifier: GPL-2.0-only # # Makefile for Samsung S3FWRN5 NFC driver # s3fwrn5-objs = core.o firmware.o nci.o s3fwrn5_i2c-objs = i2c.o obj-$(CONFIG_NFC_S3FWRN5) += s3fwrn5.o obj-$(CONFIG_NFC_S3FWRN5_I2C) += s3fwrn5_i2c.o nfcmrvl/Kconfig 0000644 00000002763 14722072766 0007543 0 ustar 00 # SPDX-License-Identifier: GPL-2.0-only config NFC_MRVL tristate help The core driver to support Marvell NFC devices. This driver is required if you want to support Marvell NFC device 8897. config NFC_MRVL_USB tristate "Marvell NFC-over-USB driver" depends on NFC_NCI && USB select NFC_MRVL help Marvell NFC-over-USB driver. This driver provides support for Marvell NFC-over-USB devices: 8897. Say Y here to compile support for Marvell NFC-over-USB driver into the kernel or say M to compile it as module. config NFC_MRVL_UART tristate "Marvell NFC-over-UART driver" depends on NFC_NCI && NFC_NCI_UART select NFC_MRVL help Marvell NFC-over-UART driver. This driver provides support for Marvell NFC-over-UART devices Say Y here to compile support for Marvell NFC-over-UART driver into the kernel or say M to compile it as module. config NFC_MRVL_I2C tristate "Marvell NFC-over-I2C driver" depends on NFC_MRVL && I2C help Marvell NFC-over-I2C driver. This driver provides support for Marvell NFC-over-I2C devices. Say Y here to compile support for Marvell NFC-over-I2C driver into the kernel or say M to compile it as module. config NFC_MRVL_SPI tristate "Marvell NFC-over-SPI driver" depends on NFC_MRVL && NFC_NCI_SPI help Marvell NFC-over-SPI driver. This driver provides support for Marvell NFC-over-SPI devices. Say Y here to compile support for Marvell NFC-over-SPI driver into the kernel or say M to compile it as module. nfcmrvl/Makefile 0000644 00000000652 14722072766 0007673 0 ustar 00 # SPDX-License-Identifier: GPL-2.0 # # Makefile for NFCMRVL NCI based NFC driver # nfcmrvl-y += main.o fw_dnld.o obj-$(CONFIG_NFC_MRVL) += nfcmrvl.o nfcmrvl_usb-y += usb.o obj-$(CONFIG_NFC_MRVL_USB) += nfcmrvl_usb.o nfcmrvl_uart-y += uart.o obj-$(CONFIG_NFC_MRVL_UART) += nfcmrvl_uart.o nfcmrvl_i2c-y += i2c.o obj-$(CONFIG_NFC_MRVL_I2C) += nfcmrvl_i2c.o nfcmrvl_spi-y += spi.o obj-$(CONFIG_NFC_MRVL_SPI) += nfcmrvl_spi.o st21nfca/Kconfig 0000644 00000001177 14722072766 0007513 0 ustar 00 # SPDX-License-Identifier: GPL-2.0-only config NFC_ST21NFCA tristate select CRC_CCITT ---help--- STMicroelectronics ST21NFCA core driver. It implements the chipset HCI logic and hooks into the NFC kernel APIs. Physical layers will register against it. config NFC_ST21NFCA_I2C tristate "STMicroelectronics ST21NFCA NFC driver (I2C)" depends on NFC_HCI && I2C && NFC_SHDLC select NFC_ST21NFCA ---help--- This module adds support for the STMicroelectronics st21nfca i2c interface. Select this if your platform is using the i2c bus. If you choose to build a module, it'll be called st21nfca_i2c. Say N if unsure. st21nfca/Makefile 0000644 00000000414 14722072766 0007641 0 ustar 00 # SPDX-License-Identifier: GPL-2.0-only # # Makefile for ST21NFCA HCI based NFC driver # st21nfca_hci-objs = core.o dep.o se.o vendor_cmds.o obj-$(CONFIG_NFC_ST21NFCA) += st21nfca_hci.o st21nfca_i2c-objs = i2c.o obj-$(CONFIG_NFC_ST21NFCA_I2C) += st21nfca_i2c.o nxp-nci/Kconfig 0000644 00000001430 14722072766 0007436 0 ustar 00 # SPDX-License-Identifier: GPL-2.0-only config NFC_NXP_NCI tristate "NXP-NCI NFC driver" depends on NFC_NCI ---help--- Generic core driver for NXP NCI chips such as the NPC100 (PN547), NPC300 (PN548) or PN7150 families. This is a driver based on the NCI NFC kernel layers and will thus not work with NXP libnfc library. To compile this driver as a module, choose m here. The module will be called nxp_nci. Say N if unsure. config NFC_NXP_NCI_I2C tristate "NXP-NCI I2C support" depends on NFC_NXP_NCI && I2C ---help--- This module adds support for an I2C interface to the NXP NCI chips. Select this if your platform is using the I2C bus. To compile this driver as a module, choose m here. The module will be called nxp_nci_i2c. Say N if unsure. nxp-nci/Makefile 0000644 00000000340 14722072766 0007572 0 ustar 00 # SPDX-License-Identifier: GPL-2.0-only # # Makefile for NXP-NCI NFC driver # nxp-nci-objs = core.o firmware.o nxp-nci_i2c-objs = i2c.o obj-$(CONFIG_NFC_NXP_NCI) += nxp-nci.o obj-$(CONFIG_NFC_NXP_NCI_I2C) += nxp-nci_i2c.o pn544/Kconfig 0000644 00000001716 14722072766 0006743 0 ustar 00 # SPDX-License-Identifier: GPL-2.0-only config NFC_PN544 tristate select CRC_CCITT ---help--- NXP PN544 core driver. This is a driver based on the HCI NFC kernel layers and will thus not work with NXP libnfc library. config NFC_PN544_I2C tristate "NXP PN544 device support (I2C)" depends on NFC_HCI && I2C && NFC_SHDLC select NFC_PN544 ---help--- This module adds support for the NXP pn544 i2c interface. Select this if your platform is using the i2c bus. If you choose to build a module, it'll be called pn544_i2c. Say N if unsure. config NFC_PN544_MEI tristate "NXP PN544 device support (MEI)" depends on NFC_HCI && NFC_MEI_PHY select NFC_PN544 ---help--- This module adds support for the mei interface of adapters using NXP pn544 chipsets. Select this if your pn544 chipset is handled by Intel's Management Engine Interface on your platform. If you choose to build a module, it'll be called pn544_mei. Say N if unsure. pn544/Makefile 0000644 00000000405 14722072766 0007072 0 ustar 00 # SPDX-License-Identifier: GPL-2.0-only # # Makefile for PN544 HCI based NFC driver # pn544_i2c-objs = i2c.o pn544_mei-objs = mei.o obj-$(CONFIG_NFC_PN544) += pn544.o obj-$(CONFIG_NFC_PN544_I2C) += pn544_i2c.o obj-$(CONFIG_NFC_PN544_MEI) += pn544_mei.o fdp/Kconfig 0000644 00000001245 14722072766 0006637 0 ustar 00 # SPDX-License-Identifier: GPL-2.0-only config NFC_FDP tristate "Intel FDP NFC driver" depends on NFC_NCI select CRC_CCITT default n ---help--- Intel Fields Peak NFC controller core driver. This is a driver based on the NCI NFC kernel layers. To compile this driver as a module, choose m here. The module will be called fdp. Say N if unsure. config NFC_FDP_I2C tristate "NFC FDP i2c support" depends on NFC_FDP && I2C ---help--- This module adds support for the Intel Fields Peak NFC controller i2c interface. Select this if your platform is using the i2c bus. If you choose to build a module, it'll be called fdp_i2c. Say N if unsure. fdp/Makefile 0000644 00000000267 14722072766 0006777 0 ustar 00 # SPDX-License-Identifier: GPL-2.0-only # # Makefile for FDP NCI based NFC driver # obj-$(CONFIG_NFC_FDP) += fdp.o obj-$(CONFIG_NFC_FDP_I2C) += fdp_i2c.o fdp_i2c-objs = i2c.o
| ver. 1.4 |
Github
|
.
| PHP 7.4.3-4ubuntu2.24 | Генерация страницы: 0 |
proxy
|
phpinfo
|
Настройка