NFC: nci: Add support for proprietary RF Protocols
authorChristophe Ricard <christophe.ricard@gmail.com>
Sat, 13 Sep 2014 08:28:49 +0000 (10:28 +0200)
committerSamuel Ortiz <sameo@linux.intel.com>
Wed, 24 Sep 2014 00:02:24 +0000 (02:02 +0200)
In NFC Forum NCI specification, some RF Protocol values are
reserved for proprietary use (from 0x80 to 0xfe).
Some CLF vendor may need to use one value within this range
for specific technology.
Furthermore, some CLF may not becompliant with NFC Froum NCI
specification 2.0 and therefore will not support RF Protocol
value 0x06 for PROTOCOL_T5T as mention in a draft specification
and in a recent push.

Adding get_rf_protocol handle to the nci_ops structure will
help to set the correct technology to target.

Signed-off-by: Christophe Ricard <christophe-h.ricard@st.com>
Signed-off-by: Samuel Ortiz <sameo@linux.intel.com>
drivers/nfc/st21nfcb/st21nfcb.c
include/net/nfc/nci_core.h
net/nfc/nci/ntf.c

index 90d37156169ef1e6e484bf9750ee5324ce7f2bf8..e72dae816e7261f9bbe2cf1720ec46fb69cabeaa 100644 (file)
@@ -25,6 +25,8 @@
 
 #define DRIVER_DESC "NCI NFC driver for ST21NFCB"
 
+#define ST21NFCB_NCI1_X_PROPRIETARY_ISO15693 0x83
+
 static int st21nfcb_nci_open(struct nci_dev *ndev)
 {
        struct st21nfcb_nci_info *info = nci_get_drvdata(ndev);
@@ -64,10 +66,18 @@ static int st21nfcb_nci_send(struct nci_dev *ndev, struct sk_buff *skb)
        return ndlc_send(info->ndlc, skb);
 }
 
+static __u32 st21nfcb_nci_get_rfprotocol(struct nci_dev *ndev,
+                                        __u8 rf_protocol)
+{
+       return rf_protocol == ST21NFCB_NCI1_X_PROPRIETARY_ISO15693 ?
+               NFC_PROTO_ISO15693_MASK : 0;
+}
+
 static struct nci_ops st21nfcb_nci_ops = {
        .open = st21nfcb_nci_open,
        .close = st21nfcb_nci_close,
        .send = st21nfcb_nci_send,
+       .get_rfprotocol = st21nfcb_nci_get_rfprotocol,
 };
 
 int st21nfcb_nci_probe(struct llt_ndlc *ndlc, int phy_headroom,
index 1f9a0f5272fe308735ba3ab2d0c892a2884165c7..75d10e625c4969b0ddc806e5588815347ad9e73d 100644 (file)
@@ -64,10 +64,11 @@ enum nci_state {
 struct nci_dev;
 
 struct nci_ops {
-       int (*open)(struct nci_dev *ndev);
-       int (*close)(struct nci_dev *ndev);
-       int (*send)(struct nci_dev *ndev, struct sk_buff *skb);
-       int (*setup)(struct nci_dev *ndev);
+       int   (*open)(struct nci_dev *ndev);
+       int   (*close)(struct nci_dev *ndev);
+       int   (*send)(struct nci_dev *ndev, struct sk_buff *skb);
+       int   (*setup)(struct nci_dev *ndev);
+       __u32 (*get_rfprotocol)(struct nci_dev *ndev, __u8 rf_protocol);
 };
 
 #define NCI_MAX_SUPPORTED_RF_INTERFACES                4
index 25e44cebd60a5f58d074c8be943a0253cb34bf48..205b35f666dba827d4daafd6d29c33483e73a609 100644 (file)
@@ -167,6 +167,13 @@ static __u8 *nci_extract_rf_params_nfcv_passive_poll(struct nci_dev *ndev,
        return data;
 }
 
+__u32 nci_get_prop_rf_protocol(struct nci_dev *ndev, __u8 rf_protocol)
+{
+       if (ndev->ops->get_rfprotocol)
+               return ndev->ops->get_rfprotocol(ndev, rf_protocol);
+       return 0;
+}
+
 static int nci_add_new_protocol(struct nci_dev *ndev,
                                struct nfc_target *target,
                                __u8 rf_protocol,
@@ -195,7 +202,7 @@ static int nci_add_new_protocol(struct nci_dev *ndev,
        else if (rf_protocol == NCI_RF_PROTOCOL_T5T)
                protocol = NFC_PROTO_ISO15693_MASK;
        else
-               protocol = 0;
+               protocol = nci_get_prop_rf_protocol(ndev, rf_protocol);
 
        if (!(protocol & ndev->poll_prots)) {
                pr_err("the target found does not have the desired protocol\n");