blob: a2de2a8cb00e2db62b46dc237f3538bc574b18b1 [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.
Julien Lefrique122c1952014-10-21 16:52:49 +02006 * Copyright (C) 2014 Marvell International Ltd.
Ilan Elias6a2968a2011-09-18 11:19:35 +03007 *
8 * Written by Ilan Elias <ilane@ti.com>
9 *
10 * This program is free software; you can redistribute it and/or modify
11 * it under the terms of the GNU General Public License version 2
12 * as published by the Free Software Foundation
13 *
14 * This program is distributed in the hope that it will be useful,
15 * but WITHOUT ANY WARRANTY; without even the implied warranty of
16 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
17 * GNU General Public License for more details.
18 *
19 * You should have received a copy of the GNU General Public License
Jeff Kirsher98b32de2013-12-06 08:56:16 -080020 * along with this program; if not, see <http://www.gnu.org/licenses/>.
Ilan Elias6a2968a2011-09-18 11:19:35 +030021 *
22 */
23
Samuel Ortiz52858b52011-12-14 16:43:05 +010024#define pr_fmt(fmt) KBUILD_MODNAME ": %s: " fmt, __func__
Joe Perchesed1e0ad2011-11-29 11:37:32 -080025
Ilan Elias6a2968a2011-09-18 11:19:35 +030026#include <linux/types.h>
27#include <linux/interrupt.h>
28#include <linux/wait.h>
29#include <linux/bitops.h>
30#include <linux/skbuff.h>
31
32#include "../nfc.h"
33#include <net/nfc/nci.h>
34#include <net/nfc/nci_core.h>
35#include <linux/nfc.h>
36
37/* Complete data exchange transaction and forward skb to nfc core */
Samuel Ortizeb9bc6e2012-03-05 01:03:54 +010038void nci_data_exchange_complete(struct nci_dev *ndev, struct sk_buff *skb,
Ilan Elias6a2968a2011-09-18 11:19:35 +030039 int err)
40{
41 data_exchange_cb_t cb = ndev->data_exchange_cb;
42 void *cb_context = ndev->data_exchange_cb_context;
43
Joe Perches24bf3302011-11-29 11:37:35 -080044 pr_debug("len %d, err %d\n", skb ? skb->len : 0, err);
Ilan Elias6a2968a2011-09-18 11:19:35 +030045
Ilan Eliasc4bf98b2012-01-17 12:03:50 +020046 /* data exchange is complete, stop the data timer */
47 del_timer_sync(&ndev->data_timer);
48 clear_bit(NCI_DATA_EXCHANGE_TO, &ndev->flags);
49
Ilan Elias6a2968a2011-09-18 11:19:35 +030050 if (cb) {
51 ndev->data_exchange_cb = NULL;
H Hartley Sweeten040487f2012-05-07 12:31:24 +020052 ndev->data_exchange_cb_context = NULL;
Ilan Elias6a2968a2011-09-18 11:19:35 +030053
54 /* forward skb to nfc core */
55 cb(cb_context, skb, err);
56 } else if (skb) {
Joe Perchesed1e0ad2011-11-29 11:37:32 -080057 pr_err("no rx callback, dropping rx data...\n");
Ilan Elias6a2968a2011-09-18 11:19:35 +030058
59 /* no waiting callback, free skb */
60 kfree_skb(skb);
61 }
Ilan Elias38f04c62011-09-22 11:36:19 +030062
63 clear_bit(NCI_DATA_EXCHANGE, &ndev->flags);
Ilan Elias6a2968a2011-09-18 11:19:35 +030064}
65
66/* ----------------- NCI TX Data ----------------- */
67
68static inline void nci_push_data_hdr(struct nci_dev *ndev,
Samuel Ortizeb9bc6e2012-03-05 01:03:54 +010069 __u8 conn_id,
70 struct sk_buff *skb,
71 __u8 pbf)
Ilan Elias6a2968a2011-09-18 11:19:35 +030072{
73 struct nci_data_hdr *hdr;
74 int plen = skb->len;
75
76 hdr = (struct nci_data_hdr *) skb_push(skb, NCI_DATA_HDR_SIZE);
77 hdr->conn_id = conn_id;
78 hdr->rfu = 0;
79 hdr->plen = plen;
80
81 nci_mt_set((__u8 *)hdr, NCI_MT_DATA_PKT);
82 nci_pbf_set((__u8 *)hdr, pbf);
Ilan Elias6a2968a2011-09-18 11:19:35 +030083}
84
85static int nci_queue_tx_data_frags(struct nci_dev *ndev,
Samuel Ortizeb9bc6e2012-03-05 01:03:54 +010086 __u8 conn_id,
87 struct sk_buff *skb) {
Ilan Elias6a2968a2011-09-18 11:19:35 +030088 int total_len = skb->len;
89 unsigned char *data = skb->data;
90 unsigned long flags;
91 struct sk_buff_head frags_q;
92 struct sk_buff *skb_frag;
93 int frag_len;
94 int rc = 0;
95
Joe Perches24bf3302011-11-29 11:37:35 -080096 pr_debug("conn_id 0x%x, total_len %d\n", conn_id, total_len);
Ilan Elias6a2968a2011-09-18 11:19:35 +030097
98 __skb_queue_head_init(&frags_q);
99
100 while (total_len) {
Ilan Eliase8c0dac2011-11-09 12:09:14 +0200101 frag_len =
102 min_t(int, total_len, ndev->max_data_pkt_payload_size);
Ilan Elias6a2968a2011-09-18 11:19:35 +0300103
104 skb_frag = nci_skb_alloc(ndev,
Samuel Ortizeb9bc6e2012-03-05 01:03:54 +0100105 (NCI_DATA_HDR_SIZE + frag_len),
106 GFP_KERNEL);
Ilan Elias6a2968a2011-09-18 11:19:35 +0300107 if (skb_frag == NULL) {
108 rc = -ENOMEM;
109 goto free_exit;
110 }
111 skb_reserve(skb_frag, NCI_DATA_HDR_SIZE);
112
113 /* first, copy the data */
114 memcpy(skb_put(skb_frag, frag_len), data, frag_len);
115
116 /* second, set the header */
117 nci_push_data_hdr(ndev, conn_id, skb_frag,
Samuel Ortizeb9bc6e2012-03-05 01:03:54 +0100118 ((total_len == frag_len) ?
119 (NCI_PBF_LAST) : (NCI_PBF_CONT)));
Ilan Elias6a2968a2011-09-18 11:19:35 +0300120
121 __skb_queue_tail(&frags_q, skb_frag);
122
123 data += frag_len;
124 total_len -= frag_len;
125
Joe Perches20c239c2011-11-29 11:37:33 -0800126 pr_debug("frag_len %d, remaining total_len %d\n",
127 frag_len, total_len);
Ilan Elias6a2968a2011-09-18 11:19:35 +0300128 }
129
130 /* queue all fragments atomically */
131 spin_lock_irqsave(&ndev->tx_q.lock, flags);
132
133 while ((skb_frag = __skb_dequeue(&frags_q)) != NULL)
134 __skb_queue_tail(&ndev->tx_q, skb_frag);
135
136 spin_unlock_irqrestore(&ndev->tx_q.lock, flags);
137
138 /* free the original skb */
139 kfree_skb(skb);
140
141 goto exit;
142
143free_exit:
144 while ((skb_frag = __skb_dequeue(&frags_q)) != NULL)
145 kfree_skb(skb_frag);
146
147exit:
148 return rc;
149}
150
151/* Send NCI data */
152int nci_send_data(struct nci_dev *ndev, __u8 conn_id, struct sk_buff *skb)
153{
154 int rc = 0;
155
Joe Perches24bf3302011-11-29 11:37:35 -0800156 pr_debug("conn_id 0x%x, plen %d\n", conn_id, skb->len);
Ilan Elias6a2968a2011-09-18 11:19:35 +0300157
158 /* check if the packet need to be fragmented */
Ilan Eliase8c0dac2011-11-09 12:09:14 +0200159 if (skb->len <= ndev->max_data_pkt_payload_size) {
Ilan Elias6a2968a2011-09-18 11:19:35 +0300160 /* no need to fragment packet */
161 nci_push_data_hdr(ndev, conn_id, skb, NCI_PBF_LAST);
162
163 skb_queue_tail(&ndev->tx_q, skb);
164 } else {
165 /* fragment packet and queue the fragments */
166 rc = nci_queue_tx_data_frags(ndev, conn_id, skb);
167 if (rc) {
Joe Perchesed1e0ad2011-11-29 11:37:32 -0800168 pr_err("failed to fragment tx data packet\n");
Ilan Elias6a2968a2011-09-18 11:19:35 +0300169 goto free_exit;
170 }
171 }
172
173 queue_work(ndev->tx_wq, &ndev->tx_work);
174
175 goto exit;
176
177free_exit:
178 kfree_skb(skb);
179
180exit:
181 return rc;
182}
183
184/* ----------------- NCI RX Data ----------------- */
185
186static void nci_add_rx_data_frag(struct nci_dev *ndev,
Samuel Ortizeb9bc6e2012-03-05 01:03:54 +0100187 struct sk_buff *skb,
Christophe Ricard98ff4162014-12-02 21:27:47 +0100188 __u8 pbf, __u8 status)
Ilan Elias6a2968a2011-09-18 11:19:35 +0300189{
190 int reassembly_len;
191 int err = 0;
192
Christophe Ricard98ff4162014-12-02 21:27:47 +0100193 if (status) {
194 err = status;
195 goto exit;
196 }
197
Ilan Elias6a2968a2011-09-18 11:19:35 +0300198 if (ndev->rx_data_reassembly) {
199 reassembly_len = ndev->rx_data_reassembly->len;
200
201 /* first, make enough room for the already accumulated data */
202 if (skb_cow_head(skb, reassembly_len)) {
Joe Perchesed1e0ad2011-11-29 11:37:32 -0800203 pr_err("error adding room for accumulated rx data\n");
Ilan Elias6a2968a2011-09-18 11:19:35 +0300204
205 kfree_skb(skb);
H Hartley Sweeten040487f2012-05-07 12:31:24 +0200206 skb = NULL;
Ilan Elias6a2968a2011-09-18 11:19:35 +0300207
208 kfree_skb(ndev->rx_data_reassembly);
H Hartley Sweeten040487f2012-05-07 12:31:24 +0200209 ndev->rx_data_reassembly = NULL;
Ilan Elias6a2968a2011-09-18 11:19:35 +0300210
211 err = -ENOMEM;
212 goto exit;
213 }
214
215 /* second, combine the two fragments */
216 memcpy(skb_push(skb, reassembly_len),
Samuel Ortizeb9bc6e2012-03-05 01:03:54 +0100217 ndev->rx_data_reassembly->data,
218 reassembly_len);
Ilan Elias6a2968a2011-09-18 11:19:35 +0300219
220 /* third, free old reassembly */
221 kfree_skb(ndev->rx_data_reassembly);
H Hartley Sweeten040487f2012-05-07 12:31:24 +0200222 ndev->rx_data_reassembly = NULL;
Ilan Elias6a2968a2011-09-18 11:19:35 +0300223 }
224
225 if (pbf == NCI_PBF_CONT) {
226 /* need to wait for next fragment, store skb and exit */
227 ndev->rx_data_reassembly = skb;
228 return;
229 }
230
231exit:
Julien Lefrique122c1952014-10-21 16:52:49 +0200232 if (ndev->nfc_dev->rf_mode == NFC_RF_INITIATOR) {
233 nci_data_exchange_complete(ndev, skb, err);
234 } else if (ndev->nfc_dev->rf_mode == NFC_RF_TARGET) {
235 /* Data received in Target mode, forward to nfc core */
236 err = nfc_tm_data_received(ndev->nfc_dev, skb);
237 if (err)
238 pr_err("unable to handle received data\n");
239 } else {
240 pr_err("rf mode unknown\n");
241 kfree_skb(skb);
242 }
Ilan Elias6a2968a2011-09-18 11:19:35 +0300243}
244
245/* Rx Data packet */
246void nci_rx_data_packet(struct nci_dev *ndev, struct sk_buff *skb)
247{
248 __u8 pbf = nci_pbf(skb->data);
Christophe Ricard98ff4162014-12-02 21:27:47 +0100249 __u8 status = 0;
Ilan Elias6a2968a2011-09-18 11:19:35 +0300250
Joe Perches24bf3302011-11-29 11:37:35 -0800251 pr_debug("len %d\n", skb->len);
Ilan Elias6a2968a2011-09-18 11:19:35 +0300252
Joe Perches20c239c2011-11-29 11:37:33 -0800253 pr_debug("NCI RX: MT=data, PBF=%d, conn_id=%d, plen=%d\n",
254 nci_pbf(skb->data),
255 nci_conn_id(skb->data),
256 nci_plen(skb->data));
Ilan Elias6a2968a2011-09-18 11:19:35 +0300257
258 /* strip the nci data header */
259 skb_pull(skb, NCI_DATA_HDR_SIZE);
260
Vincent Cuissard83724c32014-07-22 19:48:40 +0200261 if (ndev->target_active_prot == NFC_PROTO_MIFARE ||
262 ndev->target_active_prot == NFC_PROTO_JEWEL ||
263 ndev->target_active_prot == NFC_PROTO_FELICA ||
264 ndev->target_active_prot == NFC_PROTO_ISO15693) {
Ilan Elias6a2968a2011-09-18 11:19:35 +0300265 /* frame I/F => remove the status byte */
Vincent Cuissard83724c32014-07-22 19:48:40 +0200266 pr_debug("frame I/F => remove the status byte\n");
Christophe Ricard98ff4162014-12-02 21:27:47 +0100267 status = skb->data[skb->len - 1];
Ilan Elias6a2968a2011-09-18 11:19:35 +0300268 skb_trim(skb, (skb->len - 1));
269 }
270
Christophe Ricard98ff4162014-12-02 21:27:47 +0100271 nci_add_rx_data_frag(ndev, skb, pbf, nci_to_errno(status));
Ilan Elias6a2968a2011-09-18 11:19:35 +0300272}