summaryrefslogtreecommitdiffstats
path: root/include/linux/nfc/pn544.h
diff options
context:
space:
mode:
authorEric Lapuyade <eric.lapuyade@intel.com>2012-05-07 12:31:29 +0200
committerJohn W. Linville <linville@tuxdriver.com>2012-05-15 17:30:30 -0400
commitbbed0deefbb4bb1ab09e0dbc29e00fda86bb7838 (patch)
tree7199c66beb6473acf51360f1ecc9f40db2d6d168 /include/linux/nfc/pn544.h
parente5fe4cf8ee2bf15c0f44f9eba06147cdddbddf6d (diff)
downloadlinux-bbed0deefbb4bb1ab09e0dbc29e00fda86bb7838.tar.gz
linux-bbed0deefbb4bb1ab09e0dbc29e00fda86bb7838.tar.xz
linux-bbed0deefbb4bb1ab09e0dbc29e00fda86bb7838.zip
NFC: HCI based pn544 driver
This is an NFC driver for NXP pn544. Unlike pn544.c, this one is based on the NFC HCI and SHDLC kernel layers. Signed-off-by: Eric Lapuyade <eric.lapuyade@intel.com> Signed-off-by: Samuel Ortiz <sameo@linux.intel.com> Signed-off-by: John W. Linville <linville@tuxdriver.com>
Diffstat (limited to 'include/linux/nfc/pn544.h')
-rw-r--r--include/linux/nfc/pn544.h7
1 files changed, 7 insertions, 0 deletions
diff --git a/include/linux/nfc/pn544.h b/include/linux/nfc/pn544.h
index 7ab8521f2347..9890bbaf4328 100644
--- a/include/linux/nfc/pn544.h
+++ b/include/linux/nfc/pn544.h
@@ -84,6 +84,12 @@ struct pn544_fw_packet {
};
#ifdef __KERNEL__
+enum {
+ NFC_GPIO_ENABLE,
+ NFC_GPIO_FW_RESET,
+ NFC_GPIO_IRQ
+};
+
/* board config */
struct pn544_nfc_platform_data {
int (*request_resources) (struct i2c_client *client);
@@ -91,6 +97,7 @@ struct pn544_nfc_platform_data {
void (*enable) (int fw);
int (*test) (void);
void (*disable) (void);
+ int (*get_gpio)(int type);
};
#endif /* __KERNEL__ */