|
@@ -23,6 +23,7 @@
|
|
|
|
|
|
#include "st21nfca.h"
|
|
|
#include "st21nfca_dep.h"
|
|
|
+#include "st21nfca_se.h"
|
|
|
|
|
|
#define DRIVER_DESC "HCI NFC driver for ST21NFCA"
|
|
|
|
|
@@ -62,7 +63,6 @@
|
|
|
#define ST21NFCA_RF_CARD_F_DATARATE 0x08
|
|
|
#define ST21NFCA_RF_CARD_F_DATARATE_212_424 0x01
|
|
|
|
|
|
-#define ST21NFCA_DEVICE_MGNT_GATE 0x01
|
|
|
#define ST21NFCA_DEVICE_MGNT_PIPE 0x02
|
|
|
|
|
|
#define ST21NFCA_DM_GETINFO 0x13
|
|
@@ -78,6 +78,11 @@
|
|
|
|
|
|
#define ST21NFCA_NFC_MODE 0x03 /* NFC_MODE parameter*/
|
|
|
|
|
|
+#define ST21NFCA_EVT_HOT_PLUG 0x03
|
|
|
+#define ST21NFCA_EVT_HOT_PLUG_IS_INHIBITED(x) (x->data[0] & 0x80)
|
|
|
+
|
|
|
+#define ST21NFCA_SE_TO_PIPES 2000
|
|
|
+
|
|
|
static DECLARE_BITMAP(dev_mask, ST21NFCA_NUM_DEVICES);
|
|
|
|
|
|
static struct nfc_hci_gate st21nfca_gates[] = {
|
|
@@ -92,6 +97,10 @@ static struct nfc_hci_gate st21nfca_gates[] = {
|
|
|
{ST21NFCA_RF_READER_14443_3_A_GATE, NFC_HCI_INVALID_PIPE},
|
|
|
{ST21NFCA_RF_READER_ISO15693_GATE, NFC_HCI_INVALID_PIPE},
|
|
|
{ST21NFCA_RF_CARD_F_GATE, NFC_HCI_INVALID_PIPE},
|
|
|
+
|
|
|
+ /* Secure element pipes are created by secure element host */
|
|
|
+ {ST21NFCA_CONNECTIVITY_GATE, NFC_HCI_DO_NOT_CREATE_PIPE},
|
|
|
+ {ST21NFCA_APDU_READER_GATE, NFC_HCI_DO_NOT_CREATE_PIPE},
|
|
|
};
|
|
|
|
|
|
struct st21nfca_pipe_info {
|
|
@@ -118,18 +127,6 @@ static int st21nfca_hci_load_session(struct nfc_hci_dev *hdev)
|
|
|
NFC_HCI_TERMINAL_HOST_ID, 0
|
|
|
};
|
|
|
|
|
|
- skb_pipe_list = alloc_skb(ST21NFCA_HCI_LLC_MAX_SIZE, GFP_KERNEL);
|
|
|
- if (!skb_pipe_list) {
|
|
|
- r = -ENOMEM;
|
|
|
- goto free_list;
|
|
|
- }
|
|
|
-
|
|
|
- skb_pipe_info = alloc_skb(ST21NFCA_HCI_LLC_MAX_SIZE, GFP_KERNEL);
|
|
|
- if (!skb_pipe_info) {
|
|
|
- r = -ENOMEM;
|
|
|
- goto free_info;
|
|
|
- }
|
|
|
-
|
|
|
/* On ST21NFCA device pipes number are dynamics
|
|
|
* A maximum of 16 pipes can be created at the same time
|
|
|
* If pipes are already created, hci_dev_up will fail.
|
|
@@ -148,7 +145,8 @@ static int st21nfca_hci_load_session(struct nfc_hci_dev *hdev)
|
|
|
* Pipe can be closed and need to be open.
|
|
|
*/
|
|
|
r = nfc_hci_connect_gate(hdev, NFC_HCI_HOST_CONTROLLER_ID,
|
|
|
- ST21NFCA_DEVICE_MGNT_GATE, ST21NFCA_DEVICE_MGNT_PIPE);
|
|
|
+ ST21NFCA_DEVICE_MGNT_GATE,
|
|
|
+ ST21NFCA_DEVICE_MGNT_PIPE);
|
|
|
if (r < 0)
|
|
|
goto free_info;
|
|
|
|
|
@@ -179,17 +177,28 @@ static int st21nfca_hci_load_session(struct nfc_hci_dev *hdev)
|
|
|
* - destination gid (1byte)
|
|
|
*/
|
|
|
info = (struct st21nfca_pipe_info *) skb_pipe_info->data;
|
|
|
+ if (info->dst_gate_id == ST21NFCA_APDU_READER_GATE &&
|
|
|
+ info->src_host_id != ST21NFCA_ESE_HOST_ID) {
|
|
|
+ pr_err("Unexpected apdu_reader pipe on host %x\n",
|
|
|
+ info->src_host_id);
|
|
|
+ continue;
|
|
|
+ }
|
|
|
+
|
|
|
for (j = 0; (j < ARRAY_SIZE(st21nfca_gates)) &&
|
|
|
- (st21nfca_gates[j].gate != info->dst_gate_id);
|
|
|
- j++)
|
|
|
+ (st21nfca_gates[j].gate != info->dst_gate_id) ; j++)
|
|
|
;
|
|
|
|
|
|
if (j < ARRAY_SIZE(st21nfca_gates) &&
|
|
|
st21nfca_gates[j].gate == info->dst_gate_id &&
|
|
|
ST21NFCA_DM_IS_PIPE_OPEN(info->pipe_state)) {
|
|
|
st21nfca_gates[j].pipe = pipe_info[2];
|
|
|
+
|
|
|
hdev->gate2pipe[st21nfca_gates[j].gate] =
|
|
|
- st21nfca_gates[j].pipe;
|
|
|
+ st21nfca_gates[j].pipe;
|
|
|
+ hdev->pipes[st21nfca_gates[j].pipe].gate =
|
|
|
+ st21nfca_gates[j].gate;
|
|
|
+ hdev->pipes[st21nfca_gates[j].pipe].dest_host =
|
|
|
+ info->src_host_id;
|
|
|
}
|
|
|
}
|
|
|
|
|
@@ -199,7 +208,7 @@ static int st21nfca_hci_load_session(struct nfc_hci_dev *hdev)
|
|
|
*/
|
|
|
if (skb_pipe_list->len + 3 < ARRAY_SIZE(st21nfca_gates)) {
|
|
|
for (i = skb_pipe_list->len + 3;
|
|
|
- i < ARRAY_SIZE(st21nfca_gates); i++) {
|
|
|
+ i < ARRAY_SIZE(st21nfca_gates) - 2; i++) {
|
|
|
r = nfc_hci_connect_gate(hdev,
|
|
|
NFC_HCI_HOST_CONTROLLER_ID,
|
|
|
st21nfca_gates[i].gate,
|
|
@@ -212,7 +221,6 @@ static int st21nfca_hci_load_session(struct nfc_hci_dev *hdev)
|
|
|
memcpy(hdev->init_data.gates, st21nfca_gates, sizeof(st21nfca_gates));
|
|
|
free_info:
|
|
|
kfree_skb(skb_pipe_info);
|
|
|
-free_list:
|
|
|
kfree_skb(skb_pipe_list);
|
|
|
return r;
|
|
|
}
|
|
@@ -257,16 +265,33 @@ out:
|
|
|
|
|
|
static int st21nfca_hci_ready(struct nfc_hci_dev *hdev)
|
|
|
{
|
|
|
+ struct st21nfca_hci_info *info = nfc_hci_get_clientdata(hdev);
|
|
|
struct sk_buff *skb;
|
|
|
|
|
|
u8 param;
|
|
|
+ u8 white_list[2];
|
|
|
+ int wl_size = 0;
|
|
|
int r;
|
|
|
|
|
|
- param = NFC_HCI_UICC_HOST_ID;
|
|
|
- r = nfc_hci_set_param(hdev, NFC_HCI_ADMIN_GATE,
|
|
|
- NFC_HCI_ADMIN_WHITELIST, ¶m, 1);
|
|
|
- if (r < 0)
|
|
|
- return r;
|
|
|
+ if (info->se_status->is_ese_present &&
|
|
|
+ info->se_status->is_uicc_present) {
|
|
|
+ white_list[wl_size++] = NFC_HCI_UICC_HOST_ID;
|
|
|
+ white_list[wl_size++] = ST21NFCA_ESE_HOST_ID;
|
|
|
+ } else if (!info->se_status->is_ese_present &&
|
|
|
+ info->se_status->is_uicc_present) {
|
|
|
+ white_list[wl_size++] = NFC_HCI_UICC_HOST_ID;
|
|
|
+ } else if (info->se_status->is_ese_present &&
|
|
|
+ !info->se_status->is_uicc_present) {
|
|
|
+ white_list[wl_size++] = ST21NFCA_ESE_HOST_ID;
|
|
|
+ }
|
|
|
+
|
|
|
+ if (wl_size) {
|
|
|
+ r = nfc_hci_set_param(hdev, NFC_HCI_ADMIN_GATE,
|
|
|
+ NFC_HCI_ADMIN_WHITELIST,
|
|
|
+ (u8 *) &white_list, wl_size);
|
|
|
+ if (r < 0)
|
|
|
+ return r;
|
|
|
+ }
|
|
|
|
|
|
/* Set NFC_MODE in device management gate to enable */
|
|
|
r = nfc_hci_get_param(hdev, ST21NFCA_DEVICE_MGNT_GATE,
|
|
@@ -274,8 +299,9 @@ static int st21nfca_hci_ready(struct nfc_hci_dev *hdev)
|
|
|
if (r < 0)
|
|
|
return r;
|
|
|
|
|
|
- if (skb->data[0] == 0) {
|
|
|
- kfree_skb(skb);
|
|
|
+ param = skb->data[0];
|
|
|
+ kfree_skb(skb);
|
|
|
+ if (param == 0) {
|
|
|
param = 1;
|
|
|
|
|
|
r = nfc_hci_set_param(hdev, ST21NFCA_DEVICE_MGNT_GATE,
|
|
@@ -417,9 +443,12 @@ static int st21nfca_hci_start_poll(struct nfc_hci_dev *hdev,
|
|
|
r = nfc_hci_set_param(hdev, ST21NFCA_RF_CARD_F_GATE,
|
|
|
ST21NFCA_RF_CARD_F_DATARATE,
|
|
|
param, 1);
|
|
|
- if (r < 0)
|
|
|
+ if (r < 0) {
|
|
|
+ kfree_skb(datarate_skb);
|
|
|
return r;
|
|
|
+ }
|
|
|
}
|
|
|
+ kfree_skb(datarate_skb);
|
|
|
|
|
|
/*
|
|
|
* Configure sens_res
|
|
@@ -673,15 +702,15 @@ static int st21nfca_hci_complete_target_discovered(struct nfc_hci_dev *hdev,
|
|
|
struct nfc_target *target)
|
|
|
{
|
|
|
int r;
|
|
|
- struct sk_buff *nfcid2_skb = NULL, *nfcid1_skb;
|
|
|
+ struct sk_buff *nfcid_skb = NULL;
|
|
|
|
|
|
if (gate == ST21NFCA_RF_READER_F_GATE) {
|
|
|
r = nfc_hci_get_param(hdev, ST21NFCA_RF_READER_F_GATE,
|
|
|
- ST21NFCA_RF_READER_F_NFCID2, &nfcid2_skb);
|
|
|
+ ST21NFCA_RF_READER_F_NFCID2, &nfcid_skb);
|
|
|
if (r < 0)
|
|
|
goto exit;
|
|
|
|
|
|
- if (nfcid2_skb->len > NFC_SENSF_RES_MAXSIZE) {
|
|
|
+ if (nfcid_skb->len > NFC_SENSF_RES_MAXSIZE) {
|
|
|
r = -EPROTO;
|
|
|
goto exit;
|
|
|
}
|
|
@@ -693,11 +722,11 @@ static int st21nfca_hci_complete_target_discovered(struct nfc_hci_dev *hdev,
|
|
|
* - After the reception of SEL_RES with NFCIP-1 compliant bit
|
|
|
* set for type A frame NFCID1 will be updated
|
|
|
*/
|
|
|
- if (nfcid2_skb->len > 0) {
|
|
|
+ if (nfcid_skb->len > 0) {
|
|
|
/* P2P in type F */
|
|
|
- memcpy(target->sensf_res, nfcid2_skb->data,
|
|
|
- nfcid2_skb->len);
|
|
|
- target->sensf_res_len = nfcid2_skb->len;
|
|
|
+ memcpy(target->sensf_res, nfcid_skb->data,
|
|
|
+ nfcid_skb->len);
|
|
|
+ target->sensf_res_len = nfcid_skb->len;
|
|
|
/* NFC Forum Digital Protocol Table 44 */
|
|
|
if (target->sensf_res[0] == 0x01 &&
|
|
|
target->sensf_res[1] == 0xfe)
|
|
@@ -707,27 +736,28 @@ static int st21nfca_hci_complete_target_discovered(struct nfc_hci_dev *hdev,
|
|
|
target->supported_protocols =
|
|
|
NFC_PROTO_FELICA_MASK;
|
|
|
} else {
|
|
|
+ kfree_skb(nfcid_skb);
|
|
|
/* P2P in type A */
|
|
|
r = nfc_hci_get_param(hdev, ST21NFCA_RF_READER_F_GATE,
|
|
|
ST21NFCA_RF_READER_F_NFCID1,
|
|
|
- &nfcid1_skb);
|
|
|
+ &nfcid_skb);
|
|
|
if (r < 0)
|
|
|
goto exit;
|
|
|
|
|
|
- if (nfcid1_skb->len > NFC_NFCID1_MAXSIZE) {
|
|
|
+ if (nfcid_skb->len > NFC_NFCID1_MAXSIZE) {
|
|
|
r = -EPROTO;
|
|
|
goto exit;
|
|
|
}
|
|
|
- memcpy(target->sensf_res, nfcid1_skb->data,
|
|
|
- nfcid1_skb->len);
|
|
|
- target->sensf_res_len = nfcid1_skb->len;
|
|
|
+ memcpy(target->sensf_res, nfcid_skb->data,
|
|
|
+ nfcid_skb->len);
|
|
|
+ target->sensf_res_len = nfcid_skb->len;
|
|
|
target->supported_protocols = NFC_PROTO_NFC_DEP_MASK;
|
|
|
}
|
|
|
target->hci_reader_gate = ST21NFCA_RF_READER_F_GATE;
|
|
|
}
|
|
|
r = 1;
|
|
|
exit:
|
|
|
- kfree_skb(nfcid2_skb);
|
|
|
+ kfree_skb(nfcid_skb);
|
|
|
return r;
|
|
|
}
|
|
|
|
|
@@ -829,24 +859,82 @@ static int st21nfca_hci_check_presence(struct nfc_hci_dev *hdev,
|
|
|
}
|
|
|
}
|
|
|
|
|
|
+static void st21nfca_hci_cmd_received(struct nfc_hci_dev *hdev, u8 pipe, u8 cmd,
|
|
|
+ struct sk_buff *skb)
|
|
|
+{
|
|
|
+ struct st21nfca_hci_info *info = nfc_hci_get_clientdata(hdev);
|
|
|
+ u8 gate = hdev->pipes[pipe].gate;
|
|
|
+
|
|
|
+ pr_debug("cmd: %x\n", cmd);
|
|
|
+
|
|
|
+ switch (cmd) {
|
|
|
+ case NFC_HCI_ANY_OPEN_PIPE:
|
|
|
+ if (gate != ST21NFCA_APDU_READER_GATE &&
|
|
|
+ hdev->pipes[pipe].dest_host != NFC_HCI_UICC_HOST_ID)
|
|
|
+ info->se_info.count_pipes++;
|
|
|
+
|
|
|
+ if (info->se_info.count_pipes == info->se_info.expected_pipes) {
|
|
|
+ del_timer_sync(&info->se_info.se_active_timer);
|
|
|
+ info->se_info.se_active = false;
|
|
|
+ info->se_info.count_pipes = 0;
|
|
|
+ complete(&info->se_info.req_completion);
|
|
|
+ }
|
|
|
+ break;
|
|
|
+ }
|
|
|
+}
|
|
|
+
|
|
|
+static int st21nfca_admin_event_received(struct nfc_hci_dev *hdev, u8 event,
|
|
|
+ struct sk_buff *skb)
|
|
|
+{
|
|
|
+ struct st21nfca_hci_info *info = nfc_hci_get_clientdata(hdev);
|
|
|
+
|
|
|
+ pr_debug("admin event: %x\n", event);
|
|
|
+
|
|
|
+ switch (event) {
|
|
|
+ case ST21NFCA_EVT_HOT_PLUG:
|
|
|
+ if (info->se_info.se_active) {
|
|
|
+ if (!ST21NFCA_EVT_HOT_PLUG_IS_INHIBITED(skb)) {
|
|
|
+ del_timer_sync(&info->se_info.se_active_timer);
|
|
|
+ info->se_info.se_active = false;
|
|
|
+ complete(&info->se_info.req_completion);
|
|
|
+ } else {
|
|
|
+ mod_timer(&info->se_info.se_active_timer,
|
|
|
+ jiffies +
|
|
|
+ msecs_to_jiffies(ST21NFCA_SE_TO_PIPES));
|
|
|
+ }
|
|
|
+ }
|
|
|
+ break;
|
|
|
+ }
|
|
|
+ kfree_skb(skb);
|
|
|
+ return 0;
|
|
|
+}
|
|
|
+
|
|
|
/*
|
|
|
* Returns:
|
|
|
* <= 0: driver handled the event, skb consumed
|
|
|
* 1: driver does not handle the event, please do standard processing
|
|
|
*/
|
|
|
-static int st21nfca_hci_event_received(struct nfc_hci_dev *hdev, u8 gate,
|
|
|
+static int st21nfca_hci_event_received(struct nfc_hci_dev *hdev, u8 pipe,
|
|
|
u8 event, struct sk_buff *skb)
|
|
|
{
|
|
|
+ u8 gate = hdev->pipes[pipe].gate;
|
|
|
+ u8 host = hdev->pipes[pipe].dest_host;
|
|
|
+
|
|
|
pr_debug("hci event: %d gate: %x\n", event, gate);
|
|
|
|
|
|
switch (gate) {
|
|
|
+ case NFC_HCI_ADMIN_GATE:
|
|
|
+ return st21nfca_admin_event_received(hdev, event, skb);
|
|
|
case ST21NFCA_RF_CARD_F_GATE:
|
|
|
return st21nfca_dep_event_received(hdev, event, skb);
|
|
|
+ case ST21NFCA_CONNECTIVITY_GATE:
|
|
|
+ return st21nfca_connectivity_event_received(hdev, host,
|
|
|
+ event, skb);
|
|
|
+ case ST21NFCA_APDU_READER_GATE:
|
|
|
+ return st21nfca_apdu_reader_event_received(hdev, event, skb);
|
|
|
default:
|
|
|
return 1;
|
|
|
}
|
|
|
- kfree_skb(skb);
|
|
|
- return 0;
|
|
|
}
|
|
|
|
|
|
static struct nfc_hci_ops st21nfca_hci_ops = {
|
|
@@ -865,11 +953,17 @@ static struct nfc_hci_ops st21nfca_hci_ops = {
|
|
|
.tm_send = st21nfca_hci_tm_send,
|
|
|
.check_presence = st21nfca_hci_check_presence,
|
|
|
.event_received = st21nfca_hci_event_received,
|
|
|
+ .cmd_received = st21nfca_hci_cmd_received,
|
|
|
+ .discover_se = st21nfca_hci_discover_se,
|
|
|
+ .enable_se = st21nfca_hci_enable_se,
|
|
|
+ .disable_se = st21nfca_hci_disable_se,
|
|
|
+ .se_io = st21nfca_hci_se_io,
|
|
|
};
|
|
|
|
|
|
int st21nfca_hci_probe(void *phy_id, struct nfc_phy_ops *phy_ops,
|
|
|
char *llc_name, int phy_headroom, int phy_tailroom,
|
|
|
- int phy_payload, struct nfc_hci_dev **hdev)
|
|
|
+ int phy_payload, struct nfc_hci_dev **hdev,
|
|
|
+ struct st21nfca_se_status *se_status)
|
|
|
{
|
|
|
struct st21nfca_hci_info *info;
|
|
|
int r = 0;
|
|
@@ -929,6 +1023,8 @@ int st21nfca_hci_probe(void *phy_id, struct nfc_phy_ops *phy_ops,
|
|
|
goto err_alloc_hdev;
|
|
|
}
|
|
|
|
|
|
+ info->se_status = se_status;
|
|
|
+
|
|
|
nfc_hci_set_clientdata(info->hdev, info);
|
|
|
|
|
|
r = nfc_hci_register_device(info->hdev);
|
|
@@ -937,6 +1033,7 @@ int st21nfca_hci_probe(void *phy_id, struct nfc_phy_ops *phy_ops,
|
|
|
|
|
|
*hdev = info->hdev;
|
|
|
st21nfca_dep_init(info->hdev);
|
|
|
+ st21nfca_se_init(info->hdev);
|
|
|
|
|
|
return 0;
|
|
|
|
|
@@ -955,6 +1052,7 @@ void st21nfca_hci_remove(struct nfc_hci_dev *hdev)
|
|
|
struct st21nfca_hci_info *info = nfc_hci_get_clientdata(hdev);
|
|
|
|
|
|
st21nfca_dep_deinit(hdev);
|
|
|
+ st21nfca_se_deinit(hdev);
|
|
|
nfc_hci_unregister_device(hdev);
|
|
|
nfc_hci_free_device(hdev);
|
|
|
kfree(info);
|