aboutsummaryrefslogtreecommitdiffstats
path: root/net/nfc/nci/data.c
diff options
context:
space:
mode:
authorIlan Elias <ilane@ti.com>2011-09-18 04:19:35 -0400
committerJohn W. Linville <linville@tuxdriver.com>2011-09-20 14:43:49 -0400
commit6a2968aaf50c7a22fced77a5e24aa636281efca8 (patch)
treec3c9691da86f90d1eb13ee75e36189faad553496 /net/nfc/nci/data.c
parent55eb94f9e923cba376cdf48ea5ab28d81116bead (diff)
NFC: basic NCI protocol implementation
The NFC Controller Interface (NCI) is a standard communication protocol between an NFC Controller (NFCC) and a Device Host (DH), defined by the NFC Forum. Signed-off-by: Ilan Elias <ilane@ti.com> Signed-off-by: John W. Linville <linville@tuxdriver.com>
Diffstat (limited to 'net/nfc/nci/data.c')
-rw-r--r--net/nfc/nci/data.c245
1 files changed, 245 insertions, 0 deletions
diff --git a/net/nfc/nci/data.c b/net/nfc/nci/data.c
new file mode 100644
index 00000000000..141790ada4a
--- /dev/null
+++ b/net/nfc/nci/data.c
@@ -0,0 +1,245 @@
1/*
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 * This program is free software; you can redistribute it and/or modify
10 * it under the terms of the GNU General Public License version 2
11 * as published by the Free Software Foundation
12 *
13 * This program is distributed in the hope that it will be useful,
14 * but WITHOUT ANY WARRANTY; without even the implied warranty of
15 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 * GNU General Public License for more details.
17 *
18 * You should have received a copy of the GNU General Public License
19 * along with this program; if not, write to the Free Software
20 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
21 *
22 */
23
24#include <linux/types.h>
25#include <linux/interrupt.h>
26#include <linux/wait.h>
27#include <linux/bitops.h>
28#include <linux/skbuff.h>
29
30#include "../nfc.h"
31#include <net/nfc/nci.h>
32#include <net/nfc/nci_core.h>
33#include <linux/nfc.h>
34
35/* Complete data exchange transaction and forward skb to nfc core */
36void nci_data_exchange_complete(struct nci_dev *ndev,
37 struct sk_buff *skb,
38 int err)
39{
40 data_exchange_cb_t cb = ndev->data_exchange_cb;
41 void *cb_context = ndev->data_exchange_cb_context;
42
43 nfc_dbg("entry, len %d, err %d", ((skb) ? (skb->len) : (0)), err);
44
45 if (cb) {
46 ndev->data_exchange_cb = NULL;
47 ndev->data_exchange_cb_context = 0;
48
49 /* forward skb to nfc core */
50 cb(cb_context, skb, err);
51 } else if (skb) {
52 nfc_err("no rx callback, dropping rx data...");
53
54 /* no waiting callback, free skb */
55 kfree_skb(skb);
56 }
57}
58
59/* ----------------- NCI TX Data ----------------- */
60
61static inline void nci_push_data_hdr(struct nci_dev *ndev,
62 __u8 conn_id,
63 struct sk_buff *skb,
64 __u8 pbf)
65{
66 struct nci_data_hdr *hdr;
67 int plen = skb->len;
68
69 hdr = (struct nci_data_hdr *) skb_push(skb, NCI_DATA_HDR_SIZE);
70 hdr->conn_id = conn_id;
71 hdr->rfu = 0;
72 hdr->plen = plen;
73
74 nci_mt_set((__u8 *)hdr, NCI_MT_DATA_PKT);
75 nci_pbf_set((__u8 *)hdr, pbf);
76
77 skb->dev = (void *) ndev;
78}
79
80static int nci_queue_tx_data_frags(struct nci_dev *ndev,
81 __u8 conn_id,
82 struct sk_buff *skb) {
83 int total_len = skb->len;
84 unsigned char *data = skb->data;
85 unsigned long flags;
86 struct sk_buff_head frags_q;
87 struct sk_buff *skb_frag;
88 int frag_len;
89 int rc = 0;
90
91 nfc_dbg("entry, conn_id 0x%x, total_len %d", conn_id, total_len);
92
93 __skb_queue_head_init(&frags_q);
94
95 while (total_len) {
96 frag_len = min_t(int, total_len, ndev->max_pkt_payload_size);
97
98 skb_frag = nci_skb_alloc(ndev,
99 (NCI_DATA_HDR_SIZE + frag_len),
100 GFP_KERNEL);
101 if (skb_frag == NULL) {
102 rc = -ENOMEM;
103 goto free_exit;
104 }
105 skb_reserve(skb_frag, NCI_DATA_HDR_SIZE);
106
107 /* first, copy the data */
108 memcpy(skb_put(skb_frag, frag_len), data, frag_len);
109
110 /* second, set the header */
111 nci_push_data_hdr(ndev, conn_id, skb_frag,
112 ((total_len == frag_len) ? (NCI_PBF_LAST) : (NCI_PBF_CONT)));
113
114 __skb_queue_tail(&frags_q, skb_frag);
115
116 data += frag_len;
117 total_len -= frag_len;
118
119 nfc_dbg("frag_len %d, remaining total_len %d",
120 frag_len, total_len);
121 }
122
123 /* queue all fragments atomically */
124 spin_lock_irqsave(&ndev->tx_q.lock, flags);
125
126 while ((skb_frag = __skb_dequeue(&frags_q)) != NULL)
127 __skb_queue_tail(&ndev->tx_q, skb_frag);
128
129 spin_unlock_irqrestore(&ndev->tx_q.lock, flags);
130
131 /* free the original skb */
132 kfree_skb(skb);
133
134 goto exit;
135
136free_exit:
137 while ((skb_frag = __skb_dequeue(&frags_q)) != NULL)
138 kfree_skb(skb_frag);
139
140exit:
141 return rc;
142}
143
144/* Send NCI data */
145int nci_send_data(struct nci_dev *ndev, __u8 conn_id, struct sk_buff *skb)
146{
147 int rc = 0;
148
149 nfc_dbg("entry, conn_id 0x%x, plen %d", conn_id, skb->len);
150
151 /* check if the packet need to be fragmented */
152 if (skb->len <= ndev->max_pkt_payload_size) {
153 /* no need to fragment packet */
154 nci_push_data_hdr(ndev, conn_id, skb, NCI_PBF_LAST);
155
156 skb_queue_tail(&ndev->tx_q, skb);
157 } else {
158 /* fragment packet and queue the fragments */
159 rc = nci_queue_tx_data_frags(ndev, conn_id, skb);
160 if (rc) {
161 nfc_err("failed to fragment tx data packet");
162 goto free_exit;
163 }
164 }
165
166 queue_work(ndev->tx_wq, &ndev->tx_work);
167
168 goto exit;
169
170free_exit:
171 kfree_skb(skb);
172
173exit:
174 return rc;
175}
176
177/* ----------------- NCI RX Data ----------------- */
178
179static void nci_add_rx_data_frag(struct nci_dev *ndev,
180 struct sk_buff *skb,
181 __u8 pbf)
182{
183 int reassembly_len;
184 int err = 0;
185
186 if (ndev->rx_data_reassembly) {
187 reassembly_len = ndev->rx_data_reassembly->len;
188
189 /* first, make enough room for the already accumulated data */
190 if (skb_cow_head(skb, reassembly_len)) {
191 nfc_err("error adding room for accumulated rx data");
192
193 kfree_skb(skb);
194 skb = 0;
195
196 kfree_skb(ndev->rx_data_reassembly);
197 ndev->rx_data_reassembly = 0;
198
199 err = -ENOMEM;
200 goto exit;
201 }
202
203 /* second, combine the two fragments */
204 memcpy(skb_push(skb, reassembly_len),
205 ndev->rx_data_reassembly->data,
206 reassembly_len);
207
208 /* third, free old reassembly */
209 kfree_skb(ndev->rx_data_reassembly);
210 ndev->rx_data_reassembly = 0;
211 }
212
213 if (pbf == NCI_PBF_CONT) {
214 /* need to wait for next fragment, store skb and exit */
215 ndev->rx_data_reassembly = skb;
216 return;
217 }
218
219exit:
220 nci_data_exchange_complete(ndev, skb, err);
221}
222
223/* Rx Data packet */
224void nci_rx_data_packet(struct nci_dev *ndev, struct sk_buff *skb)
225{
226 __u8 pbf = nci_pbf(skb->data);
227
228 nfc_dbg("entry, len %d", skb->len);
229
230 nfc_dbg("NCI RX: MT=data, PBF=%d, conn_id=%d, plen=%d",
231 nci_pbf(skb->data),
232 nci_conn_id(skb->data),
233 nci_plen(skb->data));
234
235 /* strip the nci data header */
236 skb_pull(skb, NCI_DATA_HDR_SIZE);
237
238 if (ndev->target_active_prot == NFC_PROTO_MIFARE) {
239 /* frame I/F => remove the status byte */
240 nfc_dbg("NFC_PROTO_MIFARE => remove the status byte");
241 skb_trim(skb, (skb->len - 1));
242 }
243
244 nci_add_rx_data_frag(ndev, skb, pbf);
245}