data.c 7.2 KB
Newer Older
1 2 3 4 5
/*
 *  The NFC Controller Interface is the communication protocol between an
 *  NFC Controller (NFCC) and a Device Host (DH).
 *
 *  Copyright (C) 2011 Texas Instruments, Inc.
6
 *  Copyright (C) 2014 Marvell International Ltd.
7 8 9 10 11 12 13 14 15 16 17 18 19
 *
 *  Written by Ilan Elias <ilane@ti.com>
 *
 *  This program is free software; you can redistribute it and/or modify
 *  it under the terms of the GNU General Public License version 2
 *  as published by the Free Software Foundation
 *
 *  This program is distributed in the hope that it will be useful,
 *  but WITHOUT ANY WARRANTY; without even the implied warranty of
 *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 *  GNU General Public License for more details.
 *
 *  You should have received a copy of the GNU General Public License
20
 *  along with this program; if not, see <http://www.gnu.org/licenses/>.
21 22 23
 *
 */

24
#define pr_fmt(fmt) KBUILD_MODNAME ": %s: " fmt, __func__
J
Joe Perches 已提交
25

26 27 28 29 30 31 32 33 34 35 36 37
#include <linux/types.h>
#include <linux/interrupt.h>
#include <linux/wait.h>
#include <linux/bitops.h>
#include <linux/skbuff.h>

#include "../nfc.h"
#include <net/nfc/nci.h>
#include <net/nfc/nci_core.h>
#include <linux/nfc.h>

/* Complete data exchange transaction and forward skb to nfc core */
S
Samuel Ortiz 已提交
38
void nci_data_exchange_complete(struct nci_dev *ndev, struct sk_buff *skb,
39
				__u8 conn_id, int err)
40
{
41 42 43 44 45 46 47 48 49 50 51 52
	struct nci_conn_info    *conn_info;
	data_exchange_cb_t cb;
	void *cb_context;

	conn_info = nci_get_conn_info_by_conn_id(ndev, conn_id);
	if (!conn_info) {
		kfree_skb(skb);
		goto exit;
	}

	cb = conn_info->data_exchange_cb;
	cb_context = conn_info->data_exchange_cb_context;
53

54
	pr_debug("len %d, err %d\n", skb ? skb->len : 0, err);
55

I
Ilan Elias 已提交
56 57 58 59
	/* data exchange is complete, stop the data timer */
	del_timer_sync(&ndev->data_timer);
	clear_bit(NCI_DATA_EXCHANGE_TO, &ndev->flags);

60 61 62 63
	if (cb) {
		/* forward skb to nfc core */
		cb(cb_context, skb, err);
	} else if (skb) {
J
Joe Perches 已提交
64
		pr_err("no rx callback, dropping rx data...\n");
65 66 67 68

		/* no waiting callback, free skb */
		kfree_skb(skb);
	}
69

70
exit:
71
	clear_bit(NCI_DATA_EXCHANGE, &ndev->flags);
72 73 74 75 76
}

/* ----------------- NCI TX Data ----------------- */

static inline void nci_push_data_hdr(struct nci_dev *ndev,
S
Samuel Ortiz 已提交
77 78 79
				     __u8 conn_id,
				     struct sk_buff *skb,
				     __u8 pbf)
80 81 82 83 84 85 86 87 88 89 90 91 92 93
{
	struct nci_data_hdr *hdr;
	int plen = skb->len;

	hdr = (struct nci_data_hdr *) skb_push(skb, NCI_DATA_HDR_SIZE);
	hdr->conn_id = conn_id;
	hdr->rfu = 0;
	hdr->plen = plen;

	nci_mt_set((__u8 *)hdr, NCI_MT_DATA_PKT);
	nci_pbf_set((__u8 *)hdr, pbf);
}

static int nci_queue_tx_data_frags(struct nci_dev *ndev,
S
Samuel Ortiz 已提交
94 95
				   __u8 conn_id,
				   struct sk_buff *skb) {
96
	struct nci_conn_info    *conn_info;
97 98 99 100 101 102 103 104
	int total_len = skb->len;
	unsigned char *data = skb->data;
	unsigned long flags;
	struct sk_buff_head frags_q;
	struct sk_buff *skb_frag;
	int frag_len;
	int rc = 0;

105
	pr_debug("conn_id 0x%x, total_len %d\n", conn_id, total_len);
106

107 108 109 110 111 112
	conn_info = nci_get_conn_info_by_conn_id(ndev, conn_id);
	if (!conn_info) {
		rc = -EPROTO;
		goto free_exit;
	}

113 114 115
	__skb_queue_head_init(&frags_q);

	while (total_len) {
116
		frag_len =
117
			min_t(int, total_len, conn_info->max_pkt_payload_len);
118 119

		skb_frag = nci_skb_alloc(ndev,
S
Samuel Ortiz 已提交
120 121
					 (NCI_DATA_HDR_SIZE + frag_len),
					 GFP_KERNEL);
122 123 124 125 126 127 128 129 130 131 132
		if (skb_frag == NULL) {
			rc = -ENOMEM;
			goto free_exit;
		}
		skb_reserve(skb_frag, NCI_DATA_HDR_SIZE);

		/* first, copy the data */
		memcpy(skb_put(skb_frag, frag_len), data, frag_len);

		/* second, set the header */
		nci_push_data_hdr(ndev, conn_id, skb_frag,
S
Samuel Ortiz 已提交
133 134
				  ((total_len == frag_len) ?
				   (NCI_PBF_LAST) : (NCI_PBF_CONT)));
135 136 137 138 139 140

		__skb_queue_tail(&frags_q, skb_frag);

		data += frag_len;
		total_len -= frag_len;

J
Joe Perches 已提交
141 142
		pr_debug("frag_len %d, remaining total_len %d\n",
			 frag_len, total_len);
143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168
	}

	/* queue all fragments atomically */
	spin_lock_irqsave(&ndev->tx_q.lock, flags);

	while ((skb_frag = __skb_dequeue(&frags_q)) != NULL)
		__skb_queue_tail(&ndev->tx_q, skb_frag);

	spin_unlock_irqrestore(&ndev->tx_q.lock, flags);

	/* free the original skb */
	kfree_skb(skb);

	goto exit;

free_exit:
	while ((skb_frag = __skb_dequeue(&frags_q)) != NULL)
		kfree_skb(skb_frag);

exit:
	return rc;
}

/* Send NCI data */
int nci_send_data(struct nci_dev *ndev, __u8 conn_id, struct sk_buff *skb)
{
169
	struct nci_conn_info    *conn_info;
170 171
	int rc = 0;

172
	pr_debug("conn_id 0x%x, plen %d\n", conn_id, skb->len);
173

174 175 176 177 178 179
	conn_info = nci_get_conn_info_by_conn_id(ndev, conn_id);
	if (!conn_info) {
		rc = -EPROTO;
		goto free_exit;
	}

180
	/* check if the packet need to be fragmented */
181
	if (skb->len <= conn_info->max_pkt_payload_len) {
182 183 184 185 186 187 188 189
		/* no need to fragment packet */
		nci_push_data_hdr(ndev, conn_id, skb, NCI_PBF_LAST);

		skb_queue_tail(&ndev->tx_q, skb);
	} else {
		/* fragment packet and queue the fragments */
		rc = nci_queue_tx_data_frags(ndev, conn_id, skb);
		if (rc) {
J
Joe Perches 已提交
190
			pr_err("failed to fragment tx data packet\n");
191 192 193 194
			goto free_exit;
		}
	}

195
	ndev->cur_conn_id = conn_id;
196 197 198 199 200 201 202 203 204 205
	queue_work(ndev->tx_wq, &ndev->tx_work);

	goto exit;

free_exit:
	kfree_skb(skb);

exit:
	return rc;
}
R
Robert Dolca 已提交
206
EXPORT_SYMBOL(nci_send_data);
207 208 209 210

/* ----------------- NCI RX Data ----------------- */

static void nci_add_rx_data_frag(struct nci_dev *ndev,
S
Samuel Ortiz 已提交
211
				 struct sk_buff *skb,
212
				 __u8 pbf, __u8 conn_id, __u8 status)
213 214 215 216
{
	int reassembly_len;
	int err = 0;

217 218 219 220 221
	if (status) {
		err = status;
		goto exit;
	}

222 223 224 225 226
	if (ndev->rx_data_reassembly) {
		reassembly_len = ndev->rx_data_reassembly->len;

		/* first, make enough room for the already accumulated data */
		if (skb_cow_head(skb, reassembly_len)) {
J
Joe Perches 已提交
227
			pr_err("error adding room for accumulated rx data\n");
228 229

			kfree_skb(skb);
230
			skb = NULL;
231 232

			kfree_skb(ndev->rx_data_reassembly);
233
			ndev->rx_data_reassembly = NULL;
234 235 236 237 238 239 240

			err = -ENOMEM;
			goto exit;
		}

		/* second, combine the two fragments */
		memcpy(skb_push(skb, reassembly_len),
S
Samuel Ortiz 已提交
241 242
		       ndev->rx_data_reassembly->data,
		       reassembly_len);
243 244 245

		/* third, free old reassembly */
		kfree_skb(ndev->rx_data_reassembly);
246
		ndev->rx_data_reassembly = NULL;
247 248 249 250 251 252 253 254 255
	}

	if (pbf == NCI_PBF_CONT) {
		/* need to wait for next fragment, store skb and exit */
		ndev->rx_data_reassembly = skb;
		return;
	}

exit:
256
	if (ndev->nfc_dev->rf_mode == NFC_RF_TARGET) {
257 258 259 260 261
		/* Data received in Target mode, forward to nfc core */
		err = nfc_tm_data_received(ndev->nfc_dev, skb);
		if (err)
			pr_err("unable to handle received data\n");
	} else {
262
		nci_data_exchange_complete(ndev, skb, conn_id, err);
263
	}
264 265 266 267 268 269
}

/* Rx Data packet */
void nci_rx_data_packet(struct nci_dev *ndev, struct sk_buff *skb)
{
	__u8 pbf = nci_pbf(skb->data);
270
	__u8 status = 0;
271 272
	__u8 conn_id = nci_conn_id(skb->data);
	struct nci_conn_info    *conn_info;
273

274
	pr_debug("len %d\n", skb->len);
275

J
Joe Perches 已提交
276 277 278 279
	pr_debug("NCI RX: MT=data, PBF=%d, conn_id=%d, plen=%d\n",
		 nci_pbf(skb->data),
		 nci_conn_id(skb->data),
		 nci_plen(skb->data));
280

281 282 283 284
	conn_info = nci_get_conn_info_by_conn_id(ndev, nci_conn_id(skb->data));
	if (!conn_info)
		return;

285 286 287
	/* strip the nci data header */
	skb_pull(skb, NCI_DATA_HDR_SIZE);

288 289 290 291
	if (ndev->target_active_prot == NFC_PROTO_MIFARE ||
	    ndev->target_active_prot == NFC_PROTO_JEWEL ||
	    ndev->target_active_prot == NFC_PROTO_FELICA ||
	    ndev->target_active_prot == NFC_PROTO_ISO15693) {
292
		/* frame I/F => remove the status byte */
293
		pr_debug("frame I/F => remove the status byte\n");
294
		status = skb->data[skb->len - 1];
295 296 297
		skb_trim(skb, (skb->len - 1));
	}

298
	nci_add_rx_data_frag(ndev, skb, pbf, conn_id, nci_to_errno(status));
299
}