blob: 0fdb96f152b10bcbb74fc13ee171699e3a5a4e9f [file] [log] [blame]
Eric Lapuyade8b8d2e02012-04-10 19:43:06 +02001/*
2 * Copyright (C) 2012 Intel Corporation. All rights reserved.
3 *
4 * This program is free software; you can redistribute it and/or modify
5 * it under the terms of the GNU General Public License as published by
6 * the Free Software Foundation; either version 2 of the License, or
7 * (at your option) any later version.
8 *
9 * This program is distributed in the hope that it will be useful,
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 * GNU General Public License for more details.
13 *
14 * You should have received a copy of the GNU General Public License
15 * along with this program; if not, write to the
16 * Free Software Foundation, Inc.,
17 * 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
18 */
19
20#define pr_fmt(fmt) "hci: %s: " fmt, __func__
21
22#include <linux/init.h>
23#include <linux/kernel.h>
24#include <linux/module.h>
25#include <linux/nfc.h>
26
27#include <net/nfc/nfc.h>
28#include <net/nfc/hci.h>
29
30#include "hci.h"
31
32/* Largest headroom needed for outgoing HCI commands */
33#define HCI_CMDS_HEADROOM 1
34
35static void nfc_hci_msg_tx_work(struct work_struct *work)
36{
37 struct nfc_hci_dev *hdev = container_of(work, struct nfc_hci_dev,
38 msg_tx_work);
39 struct hci_msg *msg;
40 struct sk_buff *skb;
41 int r = 0;
42
43 mutex_lock(&hdev->msg_tx_mutex);
44
45 if (hdev->cmd_pending_msg) {
46 if (timer_pending(&hdev->cmd_timer) == 0) {
47 if (hdev->cmd_pending_msg->cb)
48 hdev->cmd_pending_msg->cb(hdev,
49 NFC_HCI_ANY_E_TIMEOUT,
50 NULL,
51 hdev->
52 cmd_pending_msg->
53 cb_context);
54 kfree(hdev->cmd_pending_msg);
55 hdev->cmd_pending_msg = NULL;
56 } else
57 goto exit;
58 }
59
60next_msg:
61 if (list_empty(&hdev->msg_tx_queue))
62 goto exit;
63
64 msg = list_first_entry(&hdev->msg_tx_queue, struct hci_msg, msg_l);
65 list_del(&msg->msg_l);
66
67 pr_debug("msg_tx_queue has a cmd to send\n");
68 while ((skb = skb_dequeue(&msg->msg_frags)) != NULL) {
69 r = hdev->ops->xmit(hdev, skb);
70 if (r < 0) {
71 kfree_skb(skb);
72 skb_queue_purge(&msg->msg_frags);
73 if (msg->cb)
74 msg->cb(hdev, NFC_HCI_ANY_E_NOK, NULL,
75 msg->cb_context);
76 kfree(msg);
77 break;
78 }
79 }
80
81 if (r)
82 goto next_msg;
83
84 if (msg->wait_response == false) {
85 kfree(msg);
86 goto next_msg;
87 }
88
89 hdev->cmd_pending_msg = msg;
90 mod_timer(&hdev->cmd_timer, jiffies +
91 msecs_to_jiffies(hdev->cmd_pending_msg->completion_delay));
92
93exit:
94 mutex_unlock(&hdev->msg_tx_mutex);
95}
96
97static void nfc_hci_msg_rx_work(struct work_struct *work)
98{
99 struct nfc_hci_dev *hdev = container_of(work, struct nfc_hci_dev,
100 msg_rx_work);
101 struct sk_buff *skb;
102 struct hcp_message *message;
103 u8 pipe;
104 u8 type;
105 u8 instruction;
106
107 while ((skb = skb_dequeue(&hdev->msg_rx_queue)) != NULL) {
108 pipe = skb->data[0];
109 skb_pull(skb, NFC_HCI_HCP_PACKET_HEADER_LEN);
110 message = (struct hcp_message *)skb->data;
111 type = HCP_MSG_GET_TYPE(message->header);
112 instruction = HCP_MSG_GET_CMD(message->header);
113 skb_pull(skb, NFC_HCI_HCP_MESSAGE_HEADER_LEN);
114
115 nfc_hci_hcp_message_rx(hdev, pipe, type, instruction, skb);
116 }
117}
118
119void nfc_hci_resp_received(struct nfc_hci_dev *hdev, u8 result,
120 struct sk_buff *skb)
121{
122 mutex_lock(&hdev->msg_tx_mutex);
123
124 if (hdev->cmd_pending_msg == NULL) {
125 kfree_skb(skb);
126 goto exit;
127 }
128
129 del_timer_sync(&hdev->cmd_timer);
130
131 if (hdev->cmd_pending_msg->cb)
132 hdev->cmd_pending_msg->cb(hdev, result, skb,
133 hdev->cmd_pending_msg->cb_context);
134 else
135 kfree_skb(skb);
136
137 kfree(hdev->cmd_pending_msg);
138 hdev->cmd_pending_msg = NULL;
139
140 queue_work(hdev->msg_tx_wq, &hdev->msg_tx_work);
141
142exit:
143 mutex_unlock(&hdev->msg_tx_mutex);
144}
145
146void nfc_hci_cmd_received(struct nfc_hci_dev *hdev, u8 pipe, u8 cmd,
147 struct sk_buff *skb)
148{
149 kfree_skb(skb);
150}
151
152static u32 nfc_hci_sak_to_protocol(u8 sak)
153{
154 switch (NFC_HCI_TYPE_A_SEL_PROT(sak)) {
155 case NFC_HCI_TYPE_A_SEL_PROT_MIFARE:
156 return NFC_PROTO_MIFARE_MASK;
157 case NFC_HCI_TYPE_A_SEL_PROT_ISO14443:
158 return NFC_PROTO_ISO14443_MASK;
159 case NFC_HCI_TYPE_A_SEL_PROT_DEP:
160 return NFC_PROTO_NFC_DEP_MASK;
161 case NFC_HCI_TYPE_A_SEL_PROT_ISO14443_DEP:
162 return NFC_PROTO_ISO14443_MASK | NFC_PROTO_NFC_DEP_MASK;
163 default:
164 return 0xffffffff;
165 }
166}
167
168static int nfc_hci_target_discovered(struct nfc_hci_dev *hdev, u8 gate)
169{
170 struct nfc_target *targets;
171 struct sk_buff *atqa_skb = NULL;
172 struct sk_buff *sak_skb = NULL;
173 int r;
174
175 pr_debug("from gate %d\n", gate);
176
177 targets = kzalloc(sizeof(struct nfc_target), GFP_KERNEL);
178 if (targets == NULL)
179 return -ENOMEM;
180
181 switch (gate) {
182 case NFC_HCI_RF_READER_A_GATE:
183 r = nfc_hci_get_param(hdev, NFC_HCI_RF_READER_A_GATE,
184 NFC_HCI_RF_READER_A_ATQA, &atqa_skb);
185 if (r < 0)
186 goto exit;
187
188 r = nfc_hci_get_param(hdev, NFC_HCI_RF_READER_A_GATE,
189 NFC_HCI_RF_READER_A_SAK, &sak_skb);
190 if (r < 0)
191 goto exit;
192
193 if (atqa_skb->len != 2 || sak_skb->len != 1) {
194 r = -EPROTO;
195 goto exit;
196 }
197
198 targets->supported_protocols =
199 nfc_hci_sak_to_protocol(sak_skb->data[0]);
200 if (targets->supported_protocols == 0xffffffff) {
201 r = -EPROTO;
202 goto exit;
203 }
204
205 targets->sens_res = be16_to_cpu(*(u16 *)atqa_skb->data);
206 targets->sel_res = sak_skb->data[0];
207
208 if (hdev->ops->complete_target_discovered) {
209 r = hdev->ops->complete_target_discovered(hdev, gate,
210 targets);
211 if (r < 0)
212 goto exit;
213 }
214 break;
215 case NFC_HCI_RF_READER_B_GATE:
216 targets->supported_protocols = NFC_PROTO_ISO14443_MASK;
217 break;
218 default:
219 if (hdev->ops->target_from_gate)
220 r = hdev->ops->target_from_gate(hdev, gate, targets);
221 else
222 r = -EPROTO;
223 if (r < 0)
224 goto exit;
225
226 if (hdev->ops->complete_target_discovered) {
227 r = hdev->ops->complete_target_discovered(hdev, gate,
228 targets);
229 if (r < 0)
230 goto exit;
231 }
232 break;
233 }
234
235 targets->hci_reader_gate = gate;
236
237 r = nfc_targets_found(hdev->ndev, targets, 1);
Eric Lapuyade8b8d2e02012-04-10 19:43:06 +0200238
239exit:
240 kfree(targets);
241 kfree_skb(atqa_skb);
242 kfree_skb(sak_skb);
243
244 return r;
245}
246
247void nfc_hci_event_received(struct nfc_hci_dev *hdev, u8 pipe, u8 event,
248 struct sk_buff *skb)
249{
250 int r = 0;
251
252 switch (event) {
253 case NFC_HCI_EVT_TARGET_DISCOVERED:
254 if (hdev->poll_started == false) {
255 r = -EPROTO;
256 goto exit;
257 }
258
259 if (skb->len < 1) { /* no status data? */
260 r = -EPROTO;
261 goto exit;
262 }
263
264 if (skb->data[0] == 3) {
265 /* TODO: Multiple targets in field, none activated
266 * poll is supposedly stopped, but there is no
267 * single target to activate, so nothing to report
268 * up.
269 * if we need to restart poll, we must save the
270 * protocols from the initial poll and reuse here.
271 */
272 }
273
274 if (skb->data[0] != 0) {
275 r = -EPROTO;
276 goto exit;
277 }
278
279 r = nfc_hci_target_discovered(hdev,
280 nfc_hci_pipe2gate(hdev, pipe));
281 break;
282 default:
283 /* TODO: Unknown events are hardware specific
284 * pass them to the driver (needs a new hci_ops) */
285 break;
286 }
287
288exit:
289 kfree_skb(skb);
290
291 if (r) {
292 /* TODO: There was an error dispatching the event,
293 * how to propagate up to nfc core?
294 */
295 }
296}
297
298static void nfc_hci_cmd_timeout(unsigned long data)
299{
300 struct nfc_hci_dev *hdev = (struct nfc_hci_dev *)data;
301
302 queue_work(hdev->msg_tx_wq, &hdev->msg_tx_work);
303}
304
305static int hci_dev_connect_gates(struct nfc_hci_dev *hdev, u8 gate_count,
306 u8 gates[])
307{
308 int r;
309 u8 *p = gates;
310 while (gate_count--) {
311 r = nfc_hci_connect_gate(hdev, NFC_HCI_HOST_CONTROLLER_ID, *p);
312 if (r < 0)
313 return r;
314 p++;
315 }
316
317 return 0;
318}
319
320static int hci_dev_session_init(struct nfc_hci_dev *hdev)
321{
322 struct sk_buff *skb = NULL;
323 int r;
324 u8 hci_gates[] = { /* NFC_HCI_ADMIN_GATE MUST be first */
325 NFC_HCI_ADMIN_GATE, NFC_HCI_LOOPBACK_GATE,
326 NFC_HCI_ID_MGMT_GATE, NFC_HCI_LINK_MGMT_GATE,
327 NFC_HCI_RF_READER_B_GATE, NFC_HCI_RF_READER_A_GATE
328 };
329
330 r = nfc_hci_connect_gate(hdev, NFC_HCI_HOST_CONTROLLER_ID,
331 NFC_HCI_ADMIN_GATE);
332 if (r < 0)
333 goto exit;
334
335 r = nfc_hci_get_param(hdev, NFC_HCI_ADMIN_GATE,
336 NFC_HCI_ADMIN_SESSION_IDENTITY, &skb);
337 if (r < 0)
338 goto disconnect_all;
339
340 if (skb->len && skb->len == strlen(hdev->init_data.session_id))
341 if (memcmp(hdev->init_data.session_id, skb->data,
342 skb->len) == 0) {
343 /* TODO ELa: restore gate<->pipe table from
344 * some TBD location.
345 * note: it doesn't seem possible to get the chip
346 * currently open gate/pipe table.
347 * It is only possible to obtain the supported
348 * gate list.
349 */
350
351 /* goto exit
352 * For now, always do a full initialization */
353 }
354
355 r = nfc_hci_disconnect_all_gates(hdev);
356 if (r < 0)
357 goto exit;
358
359 r = hci_dev_connect_gates(hdev, sizeof(hci_gates), hci_gates);
360 if (r < 0)
361 goto disconnect_all;
362
363 r = hci_dev_connect_gates(hdev, hdev->init_data.gate_count,
364 hdev->init_data.gates);
365 if (r < 0)
366 goto disconnect_all;
367
368 r = nfc_hci_set_param(hdev, NFC_HCI_ADMIN_GATE,
369 NFC_HCI_ADMIN_SESSION_IDENTITY,
370 hdev->init_data.session_id,
371 strlen(hdev->init_data.session_id));
372 if (r == 0)
373 goto exit;
374
375disconnect_all:
376 nfc_hci_disconnect_all_gates(hdev);
377
378exit:
379 if (skb)
380 kfree_skb(skb);
381
382 return r;
383}
384
385static int hci_dev_version(struct nfc_hci_dev *hdev)
386{
387 int r;
388 struct sk_buff *skb;
389
390 r = nfc_hci_get_param(hdev, NFC_HCI_ID_MGMT_GATE,
391 NFC_HCI_ID_MGMT_VERSION_SW, &skb);
392 if (r < 0)
393 return r;
394
395 if (skb->len != 3) {
396 kfree_skb(skb);
397 return -EINVAL;
398 }
399
400 hdev->sw_romlib = (skb->data[0] & 0xf0) >> 4;
401 hdev->sw_patch = skb->data[0] & 0x0f;
402 hdev->sw_flashlib_major = skb->data[1];
403 hdev->sw_flashlib_minor = skb->data[2];
404
405 kfree_skb(skb);
406
407 r = nfc_hci_get_param(hdev, NFC_HCI_ID_MGMT_GATE,
408 NFC_HCI_ID_MGMT_VERSION_HW, &skb);
409 if (r < 0)
410 return r;
411
412 if (skb->len != 3) {
413 kfree_skb(skb);
414 return -EINVAL;
415 }
416
417 hdev->hw_derivative = (skb->data[0] & 0xe0) >> 5;
418 hdev->hw_version = skb->data[0] & 0x1f;
419 hdev->hw_mpw = (skb->data[1] & 0xc0) >> 6;
420 hdev->hw_software = skb->data[1] & 0x3f;
421 hdev->hw_bsid = skb->data[2];
422
423 kfree_skb(skb);
424
425 pr_info("SOFTWARE INFO:\n");
426 pr_info("RomLib : %d\n", hdev->sw_romlib);
427 pr_info("Patch : %d\n", hdev->sw_patch);
428 pr_info("FlashLib Major : %d\n", hdev->sw_flashlib_major);
429 pr_info("FlashLib Minor : %d\n", hdev->sw_flashlib_minor);
430 pr_info("HARDWARE INFO:\n");
431 pr_info("Derivative : %d\n", hdev->hw_derivative);
432 pr_info("HW Version : %d\n", hdev->hw_version);
433 pr_info("#MPW : %d\n", hdev->hw_mpw);
434 pr_info("Software : %d\n", hdev->hw_software);
435 pr_info("BSID Version : %d\n", hdev->hw_bsid);
436
437 return 0;
438}
439
440static int hci_dev_up(struct nfc_dev *nfc_dev)
441{
442 struct nfc_hci_dev *hdev = nfc_get_drvdata(nfc_dev);
443 int r = 0;
444
445 if (hdev->ops->open) {
446 r = hdev->ops->open(hdev);
447 if (r < 0)
448 return r;
449 }
450
451 r = hci_dev_session_init(hdev);
452 if (r < 0)
453 goto exit;
454
455 r = nfc_hci_send_event(hdev, NFC_HCI_RF_READER_A_GATE,
456 NFC_HCI_EVT_END_OPERATION, NULL, 0);
457 if (r < 0)
458 goto exit;
459
460 if (hdev->ops->hci_ready) {
461 r = hdev->ops->hci_ready(hdev);
462 if (r < 0)
463 goto exit;
464 }
465
466 r = hci_dev_version(hdev);
467 if (r < 0)
468 goto exit;
469
470exit:
471 if (r < 0)
472 if (hdev->ops->close)
473 hdev->ops->close(hdev);
474 return r;
475}
476
477static int hci_dev_down(struct nfc_dev *nfc_dev)
478{
479 struct nfc_hci_dev *hdev = nfc_get_drvdata(nfc_dev);
480
481 if (hdev->ops->close)
482 hdev->ops->close(hdev);
483
484 memset(hdev->gate2pipe, NFC_HCI_INVALID_PIPE, sizeof(hdev->gate2pipe));
485
486 return 0;
487}
488
489static int hci_start_poll(struct nfc_dev *nfc_dev, u32 protocols)
490{
491 struct nfc_hci_dev *hdev = nfc_get_drvdata(nfc_dev);
492 int r;
493
494 if (hdev->ops->start_poll)
495 r = hdev->ops->start_poll(hdev, protocols);
496 else
497 r = nfc_hci_send_event(hdev, NFC_HCI_RF_READER_A_GATE,
498 NFC_HCI_EVT_READER_REQUESTED, NULL, 0);
499 if (r == 0)
500 hdev->poll_started = true;
501
502 return r;
503}
504
505static void hci_stop_poll(struct nfc_dev *nfc_dev)
506{
507 struct nfc_hci_dev *hdev = nfc_get_drvdata(nfc_dev);
508
509 if (hdev->poll_started) {
510 nfc_hci_send_event(hdev, NFC_HCI_RF_READER_A_GATE,
511 NFC_HCI_EVT_END_OPERATION, NULL, 0);
512 hdev->poll_started = false;
513 }
514}
515
Eric Lapuyade90099432012-05-07 12:31:13 +0200516static int hci_activate_target(struct nfc_dev *nfc_dev,
517 struct nfc_target *target, u32 protocol)
Eric Lapuyade8b8d2e02012-04-10 19:43:06 +0200518{
Eric Lapuyade8b8d2e02012-04-10 19:43:06 +0200519 return 0;
520}
521
Eric Lapuyade90099432012-05-07 12:31:13 +0200522static void hci_deactivate_target(struct nfc_dev *nfc_dev,
523 struct nfc_target *target)
Eric Lapuyade8b8d2e02012-04-10 19:43:06 +0200524{
525}
526
Eric Lapuyade90099432012-05-07 12:31:13 +0200527static int hci_data_exchange(struct nfc_dev *nfc_dev, struct nfc_target *target,
Eric Lapuyade8b8d2e02012-04-10 19:43:06 +0200528 struct sk_buff *skb, data_exchange_cb_t cb,
529 void *cb_context)
530{
531 struct nfc_hci_dev *hdev = nfc_get_drvdata(nfc_dev);
532 int r;
Eric Lapuyade8b8d2e02012-04-10 19:43:06 +0200533 struct sk_buff *res_skb = NULL;
534
Eric Lapuyade90099432012-05-07 12:31:13 +0200535 pr_debug("target_idx=%d\n", target->idx);
Eric Lapuyade8b8d2e02012-04-10 19:43:06 +0200536
537 switch (target->hci_reader_gate) {
538 case NFC_HCI_RF_READER_A_GATE:
539 case NFC_HCI_RF_READER_B_GATE:
540 if (hdev->ops->data_exchange) {
541 r = hdev->ops->data_exchange(hdev, target, skb,
542 &res_skb);
543 if (r <= 0) /* handled */
544 break;
545 }
546
547 *skb_push(skb, 1) = 0; /* CTR, see spec:10.2.2.1 */
548 r = nfc_hci_send_cmd(hdev, target->hci_reader_gate,
549 NFC_HCI_WR_XCHG_DATA,
550 skb->data, skb->len, &res_skb);
551 /*
552 * TODO: Check RF Error indicator to make sure data is valid.
553 * It seems that HCI cmd can complete without error, but data
554 * can be invalid if an RF error occured? Ignore for now.
555 */
556 if (r == 0)
557 skb_trim(res_skb, res_skb->len - 1); /* RF Err ind */
558 break;
559 default:
560 if (hdev->ops->data_exchange) {
561 r = hdev->ops->data_exchange(hdev, target, skb,
562 &res_skb);
563 if (r == 1)
564 r = -ENOTSUPP;
565 }
566 else
567 r = -ENOTSUPP;
568 }
569
570 kfree_skb(skb);
571
572 cb(cb_context, res_skb, r);
573
574 return 0;
575}
576
Eric Lapuyade1676f752012-05-07 12:31:16 +0200577static int hci_check_presence(struct nfc_dev *nfc_dev,
578 struct nfc_target *target)
579{
580 struct nfc_hci_dev *hdev = nfc_get_drvdata(nfc_dev);
581
582 if (hdev->ops->check_presence)
583 return hdev->ops->check_presence(hdev, target);
584
585 return 0;
586}
587
H Hartley Sweetenbd007be2012-05-07 12:31:27 +0200588static struct nfc_ops hci_nfc_ops = {
Eric Lapuyade8b8d2e02012-04-10 19:43:06 +0200589 .dev_up = hci_dev_up,
590 .dev_down = hci_dev_down,
591 .start_poll = hci_start_poll,
592 .stop_poll = hci_stop_poll,
593 .activate_target = hci_activate_target,
594 .deactivate_target = hci_deactivate_target,
595 .data_exchange = hci_data_exchange,
Eric Lapuyade1676f752012-05-07 12:31:16 +0200596 .check_presence = hci_check_presence,
Eric Lapuyade8b8d2e02012-04-10 19:43:06 +0200597};
598
599struct nfc_hci_dev *nfc_hci_allocate_device(struct nfc_hci_ops *ops,
600 struct nfc_hci_init_data *init_data,
601 u32 protocols,
602 int tx_headroom,
603 int tx_tailroom,
604 int max_link_payload)
605{
606 struct nfc_hci_dev *hdev;
607
608 if (ops->xmit == NULL)
609 return NULL;
610
611 if (protocols == 0)
612 return NULL;
613
614 hdev = kzalloc(sizeof(struct nfc_hci_dev), GFP_KERNEL);
615 if (hdev == NULL)
616 return NULL;
617
618 hdev->ndev = nfc_allocate_device(&hci_nfc_ops, protocols,
619 tx_headroom + HCI_CMDS_HEADROOM,
620 tx_tailroom);
621 if (!hdev->ndev) {
622 kfree(hdev);
623 return NULL;
624 }
625
626 hdev->ops = ops;
627 hdev->max_data_link_payload = max_link_payload;
628 hdev->init_data = *init_data;
629
630 nfc_set_drvdata(hdev->ndev, hdev);
631
632 memset(hdev->gate2pipe, NFC_HCI_INVALID_PIPE, sizeof(hdev->gate2pipe));
633
634 return hdev;
635}
636EXPORT_SYMBOL(nfc_hci_allocate_device);
637
638void nfc_hci_free_device(struct nfc_hci_dev *hdev)
639{
640 nfc_free_device(hdev->ndev);
641 kfree(hdev);
642}
643EXPORT_SYMBOL(nfc_hci_free_device);
644
645int nfc_hci_register_device(struct nfc_hci_dev *hdev)
646{
647 struct device *dev = &hdev->ndev->dev;
648 const char *devname = dev_name(dev);
649 char name[32];
650 int r = 0;
651
652 mutex_init(&hdev->msg_tx_mutex);
653
654 INIT_LIST_HEAD(&hdev->msg_tx_queue);
655
656 INIT_WORK(&hdev->msg_tx_work, nfc_hci_msg_tx_work);
657 snprintf(name, sizeof(name), "%s_hci_msg_tx_wq", devname);
658 hdev->msg_tx_wq = alloc_workqueue(name, WQ_NON_REENTRANT | WQ_UNBOUND |
659 WQ_MEM_RECLAIM, 1);
660 if (hdev->msg_tx_wq == NULL) {
661 r = -ENOMEM;
662 goto exit;
663 }
664
665 init_timer(&hdev->cmd_timer);
666 hdev->cmd_timer.data = (unsigned long)hdev;
667 hdev->cmd_timer.function = nfc_hci_cmd_timeout;
668
669 skb_queue_head_init(&hdev->rx_hcp_frags);
670
671 INIT_WORK(&hdev->msg_rx_work, nfc_hci_msg_rx_work);
672 snprintf(name, sizeof(name), "%s_hci_msg_rx_wq", devname);
673 hdev->msg_rx_wq = alloc_workqueue(name, WQ_NON_REENTRANT | WQ_UNBOUND |
674 WQ_MEM_RECLAIM, 1);
675 if (hdev->msg_rx_wq == NULL) {
676 r = -ENOMEM;
677 goto exit;
678 }
679
680 skb_queue_head_init(&hdev->msg_rx_queue);
681
682 r = nfc_register_device(hdev->ndev);
683
684exit:
685 if (r < 0) {
686 if (hdev->msg_tx_wq)
687 destroy_workqueue(hdev->msg_tx_wq);
688 if (hdev->msg_rx_wq)
689 destroy_workqueue(hdev->msg_rx_wq);
690 }
691
692 return r;
693}
694EXPORT_SYMBOL(nfc_hci_register_device);
695
696void nfc_hci_unregister_device(struct nfc_hci_dev *hdev)
697{
698 struct hci_msg *msg;
699
700 skb_queue_purge(&hdev->rx_hcp_frags);
701 skb_queue_purge(&hdev->msg_rx_queue);
702
703 while ((msg = list_first_entry(&hdev->msg_tx_queue, struct hci_msg,
704 msg_l)) != NULL) {
705 list_del(&msg->msg_l);
706 skb_queue_purge(&msg->msg_frags);
707 kfree(msg);
708 }
709
710 del_timer_sync(&hdev->cmd_timer);
711
712 nfc_unregister_device(hdev->ndev);
713
714 destroy_workqueue(hdev->msg_tx_wq);
715
716 destroy_workqueue(hdev->msg_rx_wq);
717}
718EXPORT_SYMBOL(nfc_hci_unregister_device);
719
720void nfc_hci_set_clientdata(struct nfc_hci_dev *hdev, void *clientdata)
721{
722 hdev->clientdata = clientdata;
723}
724EXPORT_SYMBOL(nfc_hci_set_clientdata);
725
726void *nfc_hci_get_clientdata(struct nfc_hci_dev *hdev)
727{
728 return hdev->clientdata;
729}
730EXPORT_SYMBOL(nfc_hci_get_clientdata);
731
732void nfc_hci_recv_frame(struct nfc_hci_dev *hdev, struct sk_buff *skb)
733{
734 struct hcp_packet *packet;
735 u8 type;
736 u8 instruction;
737 struct sk_buff *hcp_skb;
738 u8 pipe;
739 struct sk_buff *frag_skb;
740 int msg_len;
741
742 if (skb == NULL) {
743 /* TODO ELa: lower layer had permanent failure, need to
744 * propagate that up
745 */
746
747 skb_queue_purge(&hdev->rx_hcp_frags);
748
749 return;
750 }
751
752 packet = (struct hcp_packet *)skb->data;
753 if ((packet->header & ~NFC_HCI_FRAGMENT) == 0) {
754 skb_queue_tail(&hdev->rx_hcp_frags, skb);
755 return;
756 }
757
758 /* it's the last fragment. Does it need re-aggregation? */
759 if (skb_queue_len(&hdev->rx_hcp_frags)) {
760 pipe = packet->header & NFC_HCI_FRAGMENT;
761 skb_queue_tail(&hdev->rx_hcp_frags, skb);
762
763 msg_len = 0;
764 skb_queue_walk(&hdev->rx_hcp_frags, frag_skb) {
765 msg_len += (frag_skb->len -
766 NFC_HCI_HCP_PACKET_HEADER_LEN);
767 }
768
769 hcp_skb = nfc_alloc_recv_skb(NFC_HCI_HCP_PACKET_HEADER_LEN +
770 msg_len, GFP_KERNEL);
771 if (hcp_skb == NULL) {
772 /* TODO ELa: cannot deliver HCP message. How to
773 * propagate error up?
774 */
775 }
776
777 *skb_put(hcp_skb, NFC_HCI_HCP_PACKET_HEADER_LEN) = pipe;
778
779 skb_queue_walk(&hdev->rx_hcp_frags, frag_skb) {
780 msg_len = frag_skb->len - NFC_HCI_HCP_PACKET_HEADER_LEN;
781 memcpy(skb_put(hcp_skb, msg_len),
782 frag_skb->data + NFC_HCI_HCP_PACKET_HEADER_LEN,
783 msg_len);
784 }
785
786 skb_queue_purge(&hdev->rx_hcp_frags);
787 } else {
788 packet->header &= NFC_HCI_FRAGMENT;
789 hcp_skb = skb;
790 }
791
792 /* if this is a response, dispatch immediately to
793 * unblock waiting cmd context. Otherwise, enqueue to dispatch
794 * in separate context where handler can also execute command.
795 */
796 packet = (struct hcp_packet *)hcp_skb->data;
797 type = HCP_MSG_GET_TYPE(packet->message.header);
798 if (type == NFC_HCI_HCP_RESPONSE) {
799 pipe = packet->header;
800 instruction = HCP_MSG_GET_CMD(packet->message.header);
801 skb_pull(hcp_skb, NFC_HCI_HCP_PACKET_HEADER_LEN +
802 NFC_HCI_HCP_MESSAGE_HEADER_LEN);
803 nfc_hci_hcp_message_rx(hdev, pipe, type, instruction, hcp_skb);
804 } else {
805 skb_queue_tail(&hdev->msg_rx_queue, hcp_skb);
806 queue_work(hdev->msg_rx_wq, &hdev->msg_rx_work);
807 }
808}
809EXPORT_SYMBOL(nfc_hci_recv_frame);
810
811MODULE_LICENSE("GPL");