Skip to content

Commit

Permalink
NFC: Initial support for Inside Secure microread
Browse files Browse the repository at this point in the history
Inside Secure microread is an HCI based NFC chipset.
This initial support includes reader and p2p (Target and initiator) modes.

Signed-off-by: Eric Lapuyade <eric.lapuyade@intel.com>
Signed-off-by: Samuel Ortiz <sameo@linux.intel.com>
  • Loading branch information
Eric Lapuyade authored and Samuel Ortiz committed Feb 3, 2013
1 parent 2323e6f commit cfad1ba
Show file tree
Hide file tree
Showing 7 changed files with 816 additions and 0 deletions.
1 change: 1 addition & 0 deletions drivers/nfc/Kconfig
Original file line number Diff line number Diff line change
Expand Up @@ -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 change: 1 addition & 0 deletions drivers/nfc/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down
13 changes: 13 additions & 0 deletions drivers/nfc/microread/Kconfig
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
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 changes: 5 additions & 0 deletions drivers/nfc/microread/Makefile
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
#
# Makefile for Microread HCI based NFC driver
#

obj-$(CONFIG_NFC_MICROREAD) += microread.o
Loading

0 comments on commit cfad1ba

Please sign in to comment.