blob: c8813eda786554b8c89b875576d6b68b0f6216f4 [file] [log] [blame]
Ilan Elias6a2968a2011-09-18 11:19:35 +03001/*
2 * The NFC Controller Interface is the communication protocol between an
3 * NFC Controller (NFCC) and a Device Host (DH).
4 *
5 * Copyright (C) 2011 Texas Instruments, Inc.
6 *
7 * Written by Ilan Elias <ilane@ti.com>
8 *
9 * Acknowledgements:
10 * This file is based on hci_event.c, which was written
11 * by Maxim Krasnyansky.
12 *
13 * This program is free software; you can redistribute it and/or modify
14 * it under the terms of the GNU General Public License version 2
15 * as published by the Free Software Foundation
16 *
17 * This program is distributed in the hope that it will be useful,
18 * but WITHOUT ANY WARRANTY; without even the implied warranty of
19 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
20 * GNU General Public License for more details.
21 *
22 * You should have received a copy of the GNU General Public License
23 * along with this program; if not, write to the Free Software
24 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
25 *
26 */
27
Samuel Ortiz52858b52011-12-14 16:43:05 +010028#define pr_fmt(fmt) KBUILD_MODNAME ": %s: " fmt, __func__
Joe Perchesed1e0ad2011-11-29 11:37:32 -080029
Ilan Elias6a2968a2011-09-18 11:19:35 +030030#include <linux/types.h>
31#include <linux/interrupt.h>
32#include <linux/bitops.h>
33#include <linux/skbuff.h>
34
35#include "../nfc.h"
36#include <net/nfc/nci.h>
37#include <net/nfc/nci_core.h>
38#include <linux/nfc.h>
39
40/* Handle NCI Notification packets */
41
42static void nci_core_conn_credits_ntf_packet(struct nci_dev *ndev,
43 struct sk_buff *skb)
44{
45 struct nci_core_conn_credit_ntf *ntf = (void *) skb->data;
46 int i;
47
Joe Perches24bf3302011-11-29 11:37:35 -080048 pr_debug("num_entries %d\n", ntf->num_entries);
Ilan Elias6a2968a2011-09-18 11:19:35 +030049
50 if (ntf->num_entries > NCI_MAX_NUM_CONN)
51 ntf->num_entries = NCI_MAX_NUM_CONN;
52
53 /* update the credits */
54 for (i = 0; i < ntf->num_entries; i++) {
Ilan Elias637d85a2011-12-20 16:57:40 +020055 ntf->conn_entries[i].conn_id =
56 nci_conn_id(&ntf->conn_entries[i].conn_id);
57
Joe Perches20c239c2011-11-29 11:37:33 -080058 pr_debug("entry[%d]: conn_id %d, credits %d\n",
59 i, ntf->conn_entries[i].conn_id,
60 ntf->conn_entries[i].credits);
Ilan Elias6a2968a2011-09-18 11:19:35 +030061
Ilan Eliase8c0dac2011-11-09 12:09:14 +020062 if (ntf->conn_entries[i].conn_id == NCI_STATIC_RF_CONN_ID) {
Ilan Elias6a2968a2011-09-18 11:19:35 +030063 /* found static rf connection */
64 atomic_add(ntf->conn_entries[i].credits,
65 &ndev->credits_cnt);
66 }
67 }
68
69 /* trigger the next tx */
70 if (!skb_queue_empty(&ndev->tx_q))
71 queue_work(ndev->tx_wq, &ndev->tx_work);
72}
73
Ilan Eliase8c0dac2011-11-09 12:09:14 +020074static __u8 *nci_extract_rf_params_nfca_passive_poll(struct nci_dev *ndev,
75 struct nci_rf_intf_activated_ntf *ntf, __u8 *data)
Ilan Elias6a2968a2011-09-18 11:19:35 +030076{
77 struct rf_tech_specific_params_nfca_poll *nfca_poll;
Ilan Elias6a2968a2011-09-18 11:19:35 +030078
79 nfca_poll = &ntf->rf_tech_specific_params.nfca_poll;
Ilan Elias6a2968a2011-09-18 11:19:35 +030080
81 nfca_poll->sens_res = __le16_to_cpu(*((__u16 *)data));
82 data += 2;
83
84 nfca_poll->nfcid1_len = *data++;
85
Joe Perches20c239c2011-11-29 11:37:33 -080086 pr_debug("sens_res 0x%x, nfcid1_len %d\n",
87 nfca_poll->sens_res, nfca_poll->nfcid1_len);
Ilan Elias6a2968a2011-09-18 11:19:35 +030088
89 memcpy(nfca_poll->nfcid1, data, nfca_poll->nfcid1_len);
90 data += nfca_poll->nfcid1_len;
91
92 nfca_poll->sel_res_len = *data++;
93
94 if (nfca_poll->sel_res_len != 0)
95 nfca_poll->sel_res = *data++;
96
Joe Perches20c239c2011-11-29 11:37:33 -080097 pr_debug("sel_res_len %d, sel_res 0x%x\n",
98 nfca_poll->sel_res_len,
99 nfca_poll->sel_res);
Ilan Elias6a2968a2011-09-18 11:19:35 +0300100
Ilan Eliase8c0dac2011-11-09 12:09:14 +0200101 return data;
102}
103
104static int nci_extract_activation_params_iso_dep(struct nci_dev *ndev,
105 struct nci_rf_intf_activated_ntf *ntf, __u8 *data)
106{
107 struct activation_params_nfca_poll_iso_dep *nfca_poll;
108
109 switch (ntf->activation_rf_tech_and_mode) {
110 case NCI_NFC_A_PASSIVE_POLL_MODE:
111 nfca_poll = &ntf->activation_params.nfca_poll_iso_dep;
112 nfca_poll->rats_res_len = *data++;
113 if (nfca_poll->rats_res_len > 0) {
114 memcpy(nfca_poll->rats_res,
Ilan Elias6a2968a2011-09-18 11:19:35 +0300115 data,
Ilan Eliase8c0dac2011-11-09 12:09:14 +0200116 nfca_poll->rats_res_len);
Ilan Elias6a2968a2011-09-18 11:19:35 +0300117 }
118 break;
119
Ilan Elias6a2968a2011-09-18 11:19:35 +0300120 default:
Joe Perchesed1e0ad2011-11-29 11:37:32 -0800121 pr_err("unsupported activation_rf_tech_and_mode 0x%x\n",
122 ntf->activation_rf_tech_and_mode);
Ilan Elias6a2968a2011-09-18 11:19:35 +0300123 return -EPROTO;
124 }
125
126 return 0;
127}
128
129static void nci_target_found(struct nci_dev *ndev,
Ilan Eliase8c0dac2011-11-09 12:09:14 +0200130 struct nci_rf_intf_activated_ntf *ntf)
Ilan Elias6a2968a2011-09-18 11:19:35 +0300131{
132 struct nfc_target nfc_tgt;
133
134 if (ntf->rf_protocol == NCI_RF_PROTOCOL_T2T) /* T2T MifareUL */
135 nfc_tgt.supported_protocols = NFC_PROTO_MIFARE_MASK;
136 else if (ntf->rf_protocol == NCI_RF_PROTOCOL_ISO_DEP) /* 4A */
137 nfc_tgt.supported_protocols = NFC_PROTO_ISO14443_MASK;
Ilan Eliase8c0dac2011-11-09 12:09:14 +0200138 else
139 nfc_tgt.supported_protocols = 0;
Ilan Elias6a2968a2011-09-18 11:19:35 +0300140
141 nfc_tgt.sens_res = ntf->rf_tech_specific_params.nfca_poll.sens_res;
142 nfc_tgt.sel_res = ntf->rf_tech_specific_params.nfca_poll.sel_res;
143
144 if (!(nfc_tgt.supported_protocols & ndev->poll_prots)) {
Joe Perches20c239c2011-11-29 11:37:33 -0800145 pr_debug("the target found does not have the desired protocol\n");
Ilan Elias6a2968a2011-09-18 11:19:35 +0300146 return;
147 }
148
Joe Perches20c239c2011-11-29 11:37:33 -0800149 pr_debug("new target found, supported_protocols 0x%x\n",
150 nfc_tgt.supported_protocols);
Ilan Elias6a2968a2011-09-18 11:19:35 +0300151
152 ndev->target_available_prots = nfc_tgt.supported_protocols;
Ilan Elias637d85a2011-12-20 16:57:40 +0200153 ndev->max_data_pkt_payload_size = ntf->max_data_pkt_payload_size;
154 ndev->initial_num_credits = ntf->initial_num_credits;
155
156 /* set the available credits to initial value */
157 atomic_set(&ndev->credits_cnt, ndev->initial_num_credits);
Ilan Elias6a2968a2011-09-18 11:19:35 +0300158
159 nfc_targets_found(ndev->nfc_dev, &nfc_tgt, 1);
160}
161
Ilan Eliase8c0dac2011-11-09 12:09:14 +0200162static void nci_rf_intf_activated_ntf_packet(struct nci_dev *ndev,
163 struct sk_buff *skb)
Ilan Elias6a2968a2011-09-18 11:19:35 +0300164{
Ilan Eliase8c0dac2011-11-09 12:09:14 +0200165 struct nci_rf_intf_activated_ntf ntf;
Ilan Elias6a2968a2011-09-18 11:19:35 +0300166 __u8 *data = skb->data;
Ilan Eliase8c0dac2011-11-09 12:09:14 +0200167 int err = 0;
Ilan Elias6a2968a2011-09-18 11:19:35 +0300168
169 clear_bit(NCI_DISCOVERY, &ndev->flags);
170 set_bit(NCI_POLL_ACTIVE, &ndev->flags);
171
Ilan Eliase8c0dac2011-11-09 12:09:14 +0200172 ntf.rf_discovery_id = *data++;
Ilan Elias637d85a2011-12-20 16:57:40 +0200173 ntf.rf_interface = *data++;
Ilan Elias6a2968a2011-09-18 11:19:35 +0300174 ntf.rf_protocol = *data++;
Ilan Eliase8c0dac2011-11-09 12:09:14 +0200175 ntf.activation_rf_tech_and_mode = *data++;
Ilan Elias637d85a2011-12-20 16:57:40 +0200176 ntf.max_data_pkt_payload_size = *data++;
177 ntf.initial_num_credits = *data++;
Ilan Elias6a2968a2011-09-18 11:19:35 +0300178 ntf.rf_tech_specific_params_len = *data++;
179
Joe Perches20c239c2011-11-29 11:37:33 -0800180 pr_debug("rf_discovery_id %d\n", ntf.rf_discovery_id);
Ilan Elias637d85a2011-12-20 16:57:40 +0200181 pr_debug("rf_interface 0x%x\n", ntf.rf_interface);
Joe Perches20c239c2011-11-29 11:37:33 -0800182 pr_debug("rf_protocol 0x%x\n", ntf.rf_protocol);
183 pr_debug("activation_rf_tech_and_mode 0x%x\n",
184 ntf.activation_rf_tech_and_mode);
Ilan Elias637d85a2011-12-20 16:57:40 +0200185 pr_debug("max_data_pkt_payload_size 0x%x\n",
186 ntf.max_data_pkt_payload_size);
187 pr_debug("initial_num_credits 0x%x\n", ntf.initial_num_credits);
Joe Perches20c239c2011-11-29 11:37:33 -0800188 pr_debug("rf_tech_specific_params_len %d\n",
189 ntf.rf_tech_specific_params_len);
Ilan Elias6a2968a2011-09-18 11:19:35 +0300190
Ilan Eliase8c0dac2011-11-09 12:09:14 +0200191 if (ntf.rf_tech_specific_params_len > 0) {
192 switch (ntf.activation_rf_tech_and_mode) {
193 case NCI_NFC_A_PASSIVE_POLL_MODE:
194 data = nci_extract_rf_params_nfca_passive_poll(ndev,
195 &ntf, data);
196 break;
Ilan Elias6a2968a2011-09-18 11:19:35 +0300197
Ilan Eliase8c0dac2011-11-09 12:09:14 +0200198 default:
Joe Perchesed1e0ad2011-11-29 11:37:32 -0800199 pr_err("unsupported activation_rf_tech_and_mode 0x%x\n",
200 ntf.activation_rf_tech_and_mode);
Ilan Eliase8c0dac2011-11-09 12:09:14 +0200201 return;
202 }
Ilan Elias6a2968a2011-09-18 11:19:35 +0300203 }
204
Ilan Eliase8c0dac2011-11-09 12:09:14 +0200205 ntf.data_exch_rf_tech_and_mode = *data++;
206 ntf.data_exch_tx_bit_rate = *data++;
207 ntf.data_exch_rx_bit_rate = *data++;
208 ntf.activation_params_len = *data++;
209
Joe Perches20c239c2011-11-29 11:37:33 -0800210 pr_debug("data_exch_rf_tech_and_mode 0x%x\n",
211 ntf.data_exch_rf_tech_and_mode);
212 pr_debug("data_exch_tx_bit_rate 0x%x\n",
213 ntf.data_exch_tx_bit_rate);
214 pr_debug("data_exch_rx_bit_rate 0x%x\n",
215 ntf.data_exch_rx_bit_rate);
216 pr_debug("activation_params_len %d\n",
217 ntf.activation_params_len);
Ilan Eliase8c0dac2011-11-09 12:09:14 +0200218
219 if (ntf.activation_params_len > 0) {
Ilan Elias637d85a2011-12-20 16:57:40 +0200220 switch (ntf.rf_interface) {
Ilan Eliase8c0dac2011-11-09 12:09:14 +0200221 case NCI_RF_INTERFACE_ISO_DEP:
222 err = nci_extract_activation_params_iso_dep(ndev,
223 &ntf, data);
224 break;
225
226 case NCI_RF_INTERFACE_FRAME:
227 /* no activation params */
228 break;
229
230 default:
Ilan Elias637d85a2011-12-20 16:57:40 +0200231 pr_err("unsupported rf_interface 0x%x\n",
232 ntf.rf_interface);
Ilan Eliase8c0dac2011-11-09 12:09:14 +0200233 return;
234 }
235 }
236
237 if (!err)
Ilan Elias6a2968a2011-09-18 11:19:35 +0300238 nci_target_found(ndev, &ntf);
239}
240
241static void nci_rf_deactivate_ntf_packet(struct nci_dev *ndev,
242 struct sk_buff *skb)
243{
Ilan Eliase8c0dac2011-11-09 12:09:14 +0200244 struct nci_rf_deactivate_ntf *ntf = (void *) skb->data;
Ilan Elias6a2968a2011-09-18 11:19:35 +0300245
Joe Perches20c239c2011-11-29 11:37:33 -0800246 pr_debug("entry, type 0x%x, reason 0x%x\n", ntf->type, ntf->reason);
Ilan Elias6a2968a2011-09-18 11:19:35 +0300247
248 clear_bit(NCI_POLL_ACTIVE, &ndev->flags);
249 ndev->target_active_prot = 0;
250
251 /* drop tx data queue */
252 skb_queue_purge(&ndev->tx_q);
253
254 /* drop partial rx data packet */
255 if (ndev->rx_data_reassembly) {
256 kfree_skb(ndev->rx_data_reassembly);
257 ndev->rx_data_reassembly = 0;
258 }
259
260 /* complete the data exchange transaction, if exists */
Ilan Elias38f04c62011-09-22 11:36:19 +0300261 if (test_bit(NCI_DATA_EXCHANGE, &ndev->flags))
Ilan Elias6a2968a2011-09-18 11:19:35 +0300262 nci_data_exchange_complete(ndev, NULL, -EIO);
263}
264
265void nci_ntf_packet(struct nci_dev *ndev, struct sk_buff *skb)
266{
267 __u16 ntf_opcode = nci_opcode(skb->data);
268
Joe Perches20c239c2011-11-29 11:37:33 -0800269 pr_debug("NCI RX: MT=ntf, PBF=%d, GID=0x%x, OID=0x%x, plen=%d\n",
270 nci_pbf(skb->data),
271 nci_opcode_gid(ntf_opcode),
272 nci_opcode_oid(ntf_opcode),
273 nci_plen(skb->data));
Ilan Elias6a2968a2011-09-18 11:19:35 +0300274
275 /* strip the nci control header */
276 skb_pull(skb, NCI_CTRL_HDR_SIZE);
277
278 switch (ntf_opcode) {
279 case NCI_OP_CORE_CONN_CREDITS_NTF:
280 nci_core_conn_credits_ntf_packet(ndev, skb);
281 break;
282
Ilan Eliase8c0dac2011-11-09 12:09:14 +0200283 case NCI_OP_RF_INTF_ACTIVATED_NTF:
284 nci_rf_intf_activated_ntf_packet(ndev, skb);
Ilan Elias6a2968a2011-09-18 11:19:35 +0300285 break;
286
287 case NCI_OP_RF_DEACTIVATE_NTF:
288 nci_rf_deactivate_ntf_packet(ndev, skb);
289 break;
290
291 default:
Joe Perchesed1e0ad2011-11-29 11:37:32 -0800292 pr_err("unknown ntf opcode 0x%x\n", ntf_opcode);
Ilan Elias6a2968a2011-09-18 11:19:35 +0300293 break;
294 }
295
296 kfree_skb(skb);
297}