-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge tag 'nfc-next-3.9-2' of git://git.kernel.org/pub/scm/linux/kern…
…el/git/sameo/nfc-next Samuel says: "This is the 2nd NFC pull request. With this one we have a new NFC driver for Inside Secure microread and a few pn533 fixes. Microread is an HCI based NFC IP and the driver we're pushing supports tags R/W, and NFC p2p. It's supported over the i2c and MEI busses." Signed-off-by: John W. Linville <linville@tuxdriver.com>
- Loading branch information
Showing
10 changed files
with
1,427 additions
and
5 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,35 @@ | ||
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. | ||
|
||
config NFC_MICROREAD_I2C | ||
tristate "NFC Microread i2c support" | ||
depends on NFC_MICROREAD && I2C && NFC_SHDLC | ||
---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 "NFC Microread MEI support" | ||
depends on NFC_MICROREAD && INTEL_MEI_BUS_NFC | ||
---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. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
# | ||
# 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 |
Oops, something went wrong.