Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit cab47333 authored by Shikha Singh's avatar Shikha Singh Committed by Samuel Ortiz
Browse files

NFC: Add STMicroelectronics ST95HF driver

This driver supports STMicroelectronics NFC Transceiver
"ST95HF", in in initiator role to read/write ISO14443 Type 4A,
ISO14443 Type 4B and ISO15693 Type5 tags.

The ST95HF datasheet is available here:
http://www.st.com/web/en/resource/technical/document/datasheet/DM00102056.pdf



Signed-off-by: default avatarShikha Singh <shikha.singh@st.com>
Signed-off-by: default avatarSamuel Ortiz <sameo@linux.intel.com>
parent ce2e56cd
Loading
Loading
Loading
Loading
+1 −0
Original line number Original line Diff line number Diff line
@@ -76,4 +76,5 @@ source "drivers/nfc/st21nfca/Kconfig"
source "drivers/nfc/st-nci/Kconfig"
source "drivers/nfc/st-nci/Kconfig"
source "drivers/nfc/nxp-nci/Kconfig"
source "drivers/nfc/nxp-nci/Kconfig"
source "drivers/nfc/s3fwrn5/Kconfig"
source "drivers/nfc/s3fwrn5/Kconfig"
source "drivers/nfc/st95hf/Kconfig"
endmenu
endmenu
+1 −0
Original line number Original line Diff line number Diff line
@@ -16,3 +16,4 @@ obj-$(CONFIG_NFC_ST21NFCA) += st21nfca/
obj-$(CONFIG_NFC_ST_NCI)	+= st-nci/
obj-$(CONFIG_NFC_ST_NCI)	+= st-nci/
obj-$(CONFIG_NFC_NXP_NCI)	+= nxp-nci/
obj-$(CONFIG_NFC_NXP_NCI)	+= nxp-nci/
obj-$(CONFIG_NFC_S3FWRN5)	+= s3fwrn5/
obj-$(CONFIG_NFC_S3FWRN5)	+= s3fwrn5/
obj-$(CONFIG_NFC_ST95HF)	+= st95hf/
+10 −0
Original line number Original line Diff line number Diff line
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.
+6 −0
Original line number Original line Diff line number Diff line
#
# Makefile for STMicroelectronics NFC transceiver ST95HF
#

obj-$(CONFIG_NFC_ST95HF)	+= st95hf.o
st95hf-objs			:= spi.o core.o
Loading