summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCarl Lee <carl.lee@amd.com>2026-05-12 12:55:11 +0300
committerDavid Heidelberg <david@ixit.cz>2026-06-11 21:21:32 +0300
commit791ccc8644b5a062bcc79f3e8f34a09097fb3280 (patch)
tree999643759c5952164f2771bc5fd389cd88f738ec
parent5251ffc72996ed9e447ca637db80141627476b09 (diff)
downloadlinux-791ccc8644b5a062bcc79f3e8f34a09097fb3280.tar.xz
nfc: nxp-nci: Add ISO15693 support
NXP NCI controllers such as PN7150 support ISO15693 Type 5 tags, but the driver does not currently advertise this protocol. Add NFC_PROTO_ISO15693_MASK so that ISO15693 tags can be detected through the Linux NFC stack. Signed-off-by: Carl Lee <carl.lee@amd.com> Link: https://patch.msgid.link/20260512-nfc-nxp-nci-add-iso15693-support-v1-1-3394e5b9dba9@amd.com Signed-off-by: David Heidelberg <david@ixit.cz>
-rw-r--r--drivers/nfc/nxp-nci/core.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/drivers/nfc/nxp-nci/core.c b/drivers/nfc/nxp-nci/core.c
index 66b198663387..448e5a4e7338 100644
--- a/drivers/nfc/nxp-nci/core.c
+++ b/drivers/nfc/nxp-nci/core.c
@@ -25,6 +25,7 @@
NFC_PROTO_FELICA_MASK | \
NFC_PROTO_ISO14443_MASK | \
NFC_PROTO_ISO14443_B_MASK | \
+ NFC_PROTO_ISO15693_MASK | \
NFC_PROTO_NFC_DEP_MASK)
#define NXP_NCI_RF_PLL_UNLOCKED_NTF nci_opcode_pack(NCI_GID_RF_MGMT, 0x21)