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

Commit cfad1ba8 authored by Eric Lapuyade's avatar Eric Lapuyade Committed by Samuel Ortiz
Browse files

NFC: Initial support for Inside Secure microread



Inside Secure microread is an HCI based NFC chipset.
This initial support includes reader and p2p (Target and initiator) modes.

Signed-off-by: default avatarEric Lapuyade <eric.lapuyade@intel.com>
Signed-off-by: default avatarSamuel Ortiz <sameo@linux.intel.com>
parent 2323e6fc
Loading
Loading
Loading
Loading
+1 −0
Original line number Diff line number Diff line
@@ -27,5 +27,6 @@ config NFC_WILINK
	  into the kernel or say M to compile it as module.

source "drivers/nfc/pn544/Kconfig"
source "drivers/nfc/microread/Kconfig"

endmenu
+1 −0
Original line number Diff line number Diff line
@@ -3,6 +3,7 @@
#

obj-$(CONFIG_NFC_PN544)		+= pn544/
obj-$(CONFIG_NFC_MICROREAD)	+= microread/
obj-$(CONFIG_NFC_PN533)		+= pn533.o
obj-$(CONFIG_NFC_WILINK)	+= nfcwilink.o

+13 −0
Original line number Diff line number Diff line
config NFC_MICROREAD
	tristate "Inside Secure microread NFC driver"
	depends on NFC_HCI
	select CRC_CCITT
	default n
	---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.

	  To compile this driver as a module, choose m here. The module will
	  be called microread.
	  Say N if unsure.
+5 −0
Original line number Diff line number Diff line
#
# Makefile for Microread HCI based NFC driver
#

obj-$(CONFIG_NFC_MICROREAD)     += microread.o
+728 −0

File added.

Preview size limit exceeded, changes collapsed.

Loading