NFC: Export a new attribute nfcid1 in target info
authorIlan Elias <ilane@ti.com>
Thu, 22 Dec 2011 09:51:54 +0000 (11:51 +0200)
committerJohn W. Linville <linville@tuxdriver.com>
Wed, 4 Jan 2012 19:30:43 +0000 (14:30 -0500)
The nfcid1 is the NFC-A identifier.
It is exported as an attribute of the target info
(returned as a response to NFC_CMD_GET_TARGET).

Signed-off-by: Ilan Elias <ilane@ti.com>
Acked-by: Samuel Ortiz <sameo@linux.intel.com>
Signed-off-by: John W. Linville <linville@tuxdriver.com>
include/linux/nfc.h
include/net/nfc/nfc.h
net/nfc/nci/ntf.c
net/nfc/netlink.c

index 89fee4ab1904784e7c748a1cbcb95fb053c9e36b..01d4e5d60325bd58f51c12876a25e2bfc13550d9 100644 (file)
@@ -88,6 +88,7 @@ enum nfc_commands {
  * @NFC_ATTR_TARGET_SENS_RES: NFC-A targets extra information such as NFCID
  * @NFC_ATTR_TARGET_SEL_RES: NFC-A targets extra information (useful if the
  *     target is not NFC-Forum compliant)
+ * @NFC_ATTR_TARGET_NFCID1: NFC-A targets identifier, max 10 bytes
  * @NFC_ATTR_COMM_MODE: Passive or active mode
  * @NFC_ATTR_RF_MODE: Initiator or target
  */
@@ -99,6 +100,7 @@ enum nfc_attrs {
        NFC_ATTR_TARGET_INDEX,
        NFC_ATTR_TARGET_SENS_RES,
        NFC_ATTR_TARGET_SEL_RES,
+       NFC_ATTR_TARGET_NFCID1,
        NFC_ATTR_COMM_MODE,
        NFC_ATTR_RF_MODE,
 /* private: internal use only */
index ccfe757a94ec2d17a16bb4d9424cd21510823800..8696b773a6951c881cd202738a6cfbbcc7919714 100644 (file)
@@ -65,12 +65,15 @@ struct nfc_ops {
 
 #define NFC_TARGET_IDX_ANY -1
 #define NFC_MAX_GT_LEN 48
+#define NFC_MAX_NFCID1_LEN 10
 
 struct nfc_target {
        u32 idx;
        u32 supported_protocols;
        u16 sens_res;
        u8 sel_res;
+       u8 nfcid1_len;
+       u8 nfcid1[NFC_MAX_NFCID1_LEN];
 };
 
 struct nfc_genl_data {
index 352f7a2321d9041bfdda52f3313f8123d8565c72..b16a8dc2afbe7fcd457787791f887092985021e5 100644 (file)
@@ -154,6 +154,12 @@ static void nci_target_found(struct nci_dev *ndev,
 
        nfc_tgt.sens_res = ntf->rf_tech_specific_params.nfca_poll.sens_res;
        nfc_tgt.sel_res = ntf->rf_tech_specific_params.nfca_poll.sel_res;
+       nfc_tgt.nfcid1_len = ntf->rf_tech_specific_params.nfca_poll.nfcid1_len;
+       if (nfc_tgt.nfcid1_len > 0) {
+               memcpy(nfc_tgt.nfcid1,
+                       ntf->rf_tech_specific_params.nfca_poll.nfcid1,
+                       nfc_tgt.nfcid1_len);
+       }
 
        if (!(nfc_tgt.supported_protocols & ndev->poll_prots)) {
                pr_debug("the target found does not have the desired protocol\n");
index 43a1c47756a7dd18391f442373a45c811bc5fd03..6989dfa28ee21d585d0f91fe8274e493a5f73c36 100644 (file)
@@ -67,6 +67,9 @@ static int nfc_genl_send_target(struct sk_buff *msg, struct nfc_target *target,
                                target->supported_protocols);
        NLA_PUT_U16(msg, NFC_ATTR_TARGET_SENS_RES, target->sens_res);
        NLA_PUT_U8(msg, NFC_ATTR_TARGET_SEL_RES, target->sel_res);
+       if (target->nfcid1_len > 0)
+               NLA_PUT(msg, NFC_ATTR_TARGET_NFCID1, target->nfcid1_len,
+                               target->nfcid1);
 
        return genlmsg_end(msg, hdr);