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

Commit dece4585 authored by Clément Perrochaud's avatar Clément Perrochaud Committed by Samuel Ortiz
Browse files

NFC: nxp-nci: Add support for NXP NCI chips



Add support for NXP NCI NFC controllers such as the NPC100 or PN7150
families.

Signed-off-by: default avatarClément Perrochaud <clement.perrochaud@effinnov.com>
Signed-off-by: default avatarSamuel Ortiz <sameo@linux.intel.com>
parent 25af01ed
Loading
Loading
Loading
Loading
+7 −0
Original line number Original line Diff line number Diff line
@@ -6937,6 +6937,13 @@ S: Supported
F:	drivers/block/nvme*
F:	drivers/block/nvme*
F:	include/linux/nvme.h
F:	include/linux/nvme.h


NXP-NCI NFC DRIVER
M:	Clément Perrochaud <clement.perrochaud@effinnov.com>
R:	Charles Gorand <charles.gorand@effinnov.com>
L:	linux-nfc@lists.01.org (moderated for non-subscribers)
S:	Supported
F:	drivers/nfc/nxp-nci

NXP TDA998X DRM DRIVER
NXP TDA998X DRM DRIVER
M:	Russell King <rmk+kernel@arm.linux.org.uk>
M:	Russell King <rmk+kernel@arm.linux.org.uk>
S:	Supported
S:	Supported
+1 −0
Original line number Original line Diff line number Diff line
@@ -73,4 +73,5 @@ source "drivers/nfc/microread/Kconfig"
source "drivers/nfc/nfcmrvl/Kconfig"
source "drivers/nfc/nfcmrvl/Kconfig"
source "drivers/nfc/st21nfca/Kconfig"
source "drivers/nfc/st21nfca/Kconfig"
source "drivers/nfc/st21nfcb/Kconfig"
source "drivers/nfc/st21nfcb/Kconfig"
source "drivers/nfc/nxp-nci/Kconfig"
endmenu
endmenu
+1 −0
Original line number Original line Diff line number Diff line
@@ -13,5 +13,6 @@ obj-$(CONFIG_NFC_MRVL) += nfcmrvl/
obj-$(CONFIG_NFC_TRF7970A)	+= trf7970a.o
obj-$(CONFIG_NFC_TRF7970A)	+= trf7970a.o
obj-$(CONFIG_NFC_ST21NFCA)  	+= st21nfca/
obj-$(CONFIG_NFC_ST21NFCA)  	+= st21nfca/
obj-$(CONFIG_NFC_ST21NFCB)	+= st21nfcb/
obj-$(CONFIG_NFC_ST21NFCB)	+= st21nfcb/
obj-$(CONFIG_NFC_NXP_NCI)	+= nxp-nci/


ccflags-$(CONFIG_NFC_DEBUG) := -DDEBUG
ccflags-$(CONFIG_NFC_DEBUG) := -DDEBUG
+13 −0
Original line number Original line Diff line number Diff line
config NFC_NXP_NCI
	tristate "NXP-NCI NFC driver"
	depends on NFC_NCI
	default n
	---help---
	  Generic core driver for NXP NCI chips such as the NPC100
	  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.
+9 −0
Original line number Original line Diff line number Diff line
#
# Makefile for NXP-NCI NFC driver
#

nxp-nci-objs = core.o firmware.o

obj-$(CONFIG_NFC_NXP_NCI) += nxp-nci.o

ccflags-$(CONFIG_NFC_DEBUG) := -DDEBUG
Loading