2 * Copyright (C) 2012 Intel Corporation. All rights reserved.
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.
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.
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.
20 #define pr_fmt(fmt) "hci: %s: " fmt, __func__
22 #include <linux/init.h>
23 #include <linux/kernel.h>
24 #include <linux/module.h>
25 #include <linux/nfc.h>
27 #include <net/nfc/nfc.h>
28 #include <net/nfc/hci.h>
29 #include <net/nfc/llc.h>
33 /* Largest headroom needed for outgoing HCI commands */
34 #define HCI_CMDS_HEADROOM 1
36 int nfc_hci_result_to_errno(u8 result
)
41 case NFC_HCI_ANY_E_REG_PAR_UNKNOWN
:
43 case NFC_HCI_ANY_E_TIMEOUT
:
49 EXPORT_SYMBOL(nfc_hci_result_to_errno
);
51 static void nfc_hci_msg_tx_work(struct work_struct
*work
)
53 struct nfc_hci_dev
*hdev
= container_of(work
, struct nfc_hci_dev
,
59 mutex_lock(&hdev
->msg_tx_mutex
);
61 if (hdev
->cmd_pending_msg
) {
62 if (timer_pending(&hdev
->cmd_timer
) == 0) {
63 if (hdev
->cmd_pending_msg
->cb
)
64 hdev
->cmd_pending_msg
->cb(hdev
->
69 kfree(hdev
->cmd_pending_msg
);
70 hdev
->cmd_pending_msg
= NULL
;
77 if (list_empty(&hdev
->msg_tx_queue
))
80 msg
= list_first_entry(&hdev
->msg_tx_queue
, struct hci_msg
, msg_l
);
81 list_del(&msg
->msg_l
);
83 pr_debug("msg_tx_queue has a cmd to send\n");
84 while ((skb
= skb_dequeue(&msg
->msg_frags
)) != NULL
) {
85 r
= nfc_llc_xmit_from_hci(hdev
->llc
, skb
);
88 skb_queue_purge(&msg
->msg_frags
);
90 msg
->cb(msg
->cb_context
, NULL
, r
);
99 if (msg
->wait_response
== false) {
104 hdev
->cmd_pending_msg
= msg
;
105 mod_timer(&hdev
->cmd_timer
, jiffies
+
106 msecs_to_jiffies(hdev
->cmd_pending_msg
->completion_delay
));
109 mutex_unlock(&hdev
->msg_tx_mutex
);
112 static void nfc_hci_msg_rx_work(struct work_struct
*work
)
114 struct nfc_hci_dev
*hdev
= container_of(work
, struct nfc_hci_dev
,
117 struct hcp_message
*message
;
122 while ((skb
= skb_dequeue(&hdev
->msg_rx_queue
)) != NULL
) {
124 skb_pull(skb
, NFC_HCI_HCP_PACKET_HEADER_LEN
);
125 message
= (struct hcp_message
*)skb
->data
;
126 type
= HCP_MSG_GET_TYPE(message
->header
);
127 instruction
= HCP_MSG_GET_CMD(message
->header
);
128 skb_pull(skb
, NFC_HCI_HCP_MESSAGE_HEADER_LEN
);
130 nfc_hci_hcp_message_rx(hdev
, pipe
, type
, instruction
, skb
);
134 static void __nfc_hci_cmd_completion(struct nfc_hci_dev
*hdev
, int err
,
137 del_timer_sync(&hdev
->cmd_timer
);
139 if (hdev
->cmd_pending_msg
->cb
)
140 hdev
->cmd_pending_msg
->cb(hdev
->cmd_pending_msg
->cb_context
,
145 kfree(hdev
->cmd_pending_msg
);
146 hdev
->cmd_pending_msg
= NULL
;
148 schedule_work(&hdev
->msg_tx_work
);
151 void nfc_hci_resp_received(struct nfc_hci_dev
*hdev
, u8 result
,
154 mutex_lock(&hdev
->msg_tx_mutex
);
156 if (hdev
->cmd_pending_msg
== NULL
) {
161 __nfc_hci_cmd_completion(hdev
, nfc_hci_result_to_errno(result
), skb
);
164 mutex_unlock(&hdev
->msg_tx_mutex
);
167 void nfc_hci_cmd_received(struct nfc_hci_dev
*hdev
, u8 pipe
, u8 cmd
,
173 u32
nfc_hci_sak_to_protocol(u8 sak
)
175 switch (NFC_HCI_TYPE_A_SEL_PROT(sak
)) {
176 case NFC_HCI_TYPE_A_SEL_PROT_MIFARE
:
177 return NFC_PROTO_MIFARE_MASK
;
178 case NFC_HCI_TYPE_A_SEL_PROT_ISO14443
:
179 return NFC_PROTO_ISO14443_MASK
;
180 case NFC_HCI_TYPE_A_SEL_PROT_DEP
:
181 return NFC_PROTO_NFC_DEP_MASK
;
182 case NFC_HCI_TYPE_A_SEL_PROT_ISO14443_DEP
:
183 return NFC_PROTO_ISO14443_MASK
| NFC_PROTO_NFC_DEP_MASK
;
188 EXPORT_SYMBOL(nfc_hci_sak_to_protocol
);
190 int nfc_hci_target_discovered(struct nfc_hci_dev
*hdev
, u8 gate
)
192 struct nfc_target
*targets
;
193 struct sk_buff
*atqa_skb
= NULL
;
194 struct sk_buff
*sak_skb
= NULL
;
195 struct sk_buff
*uid_skb
= NULL
;
198 pr_debug("from gate %d\n", gate
);
200 targets
= kzalloc(sizeof(struct nfc_target
), GFP_KERNEL
);
205 case NFC_HCI_RF_READER_A_GATE
:
206 r
= nfc_hci_get_param(hdev
, NFC_HCI_RF_READER_A_GATE
,
207 NFC_HCI_RF_READER_A_ATQA
, &atqa_skb
);
211 r
= nfc_hci_get_param(hdev
, NFC_HCI_RF_READER_A_GATE
,
212 NFC_HCI_RF_READER_A_SAK
, &sak_skb
);
216 if (atqa_skb
->len
!= 2 || sak_skb
->len
!= 1) {
221 targets
->supported_protocols
=
222 nfc_hci_sak_to_protocol(sak_skb
->data
[0]);
223 if (targets
->supported_protocols
== 0xffffffff) {
228 targets
->sens_res
= be16_to_cpu(*(u16
*)atqa_skb
->data
);
229 targets
->sel_res
= sak_skb
->data
[0];
231 r
= nfc_hci_get_param(hdev
, NFC_HCI_RF_READER_A_GATE
,
232 NFC_HCI_RF_READER_A_UID
, &uid_skb
);
236 if (uid_skb
->len
== 0 || uid_skb
->len
> NFC_NFCID1_MAXSIZE
) {
241 memcpy(targets
->nfcid1
, uid_skb
->data
, uid_skb
->len
);
242 targets
->nfcid1_len
= uid_skb
->len
;
244 if (hdev
->ops
->complete_target_discovered
) {
245 r
= hdev
->ops
->complete_target_discovered(hdev
, gate
,
251 case NFC_HCI_RF_READER_B_GATE
:
252 targets
->supported_protocols
= NFC_PROTO_ISO14443_B_MASK
;
255 if (hdev
->ops
->target_from_gate
)
256 r
= hdev
->ops
->target_from_gate(hdev
, gate
, targets
);
262 if (hdev
->ops
->complete_target_discovered
) {
263 r
= hdev
->ops
->complete_target_discovered(hdev
, gate
,
271 /* if driver set the new gate, we will skip the old one */
272 if (targets
->hci_reader_gate
== 0x00)
273 targets
->hci_reader_gate
= gate
;
275 r
= nfc_targets_found(hdev
->ndev
, targets
, 1);
285 EXPORT_SYMBOL(nfc_hci_target_discovered
);
287 void nfc_hci_event_received(struct nfc_hci_dev
*hdev
, u8 pipe
, u8 event
,
291 u8 gate
= nfc_hci_pipe2gate(hdev
, pipe
);
294 pr_err("Discarded event %x to unopened pipe %x\n", event
, pipe
);
299 case NFC_HCI_EVT_TARGET_DISCOVERED
:
300 if (skb
->len
< 1) { /* no status data? */
305 if (skb
->data
[0] == 3) {
306 /* TODO: Multiple targets in field, none activated
307 * poll is supposedly stopped, but there is no
308 * single target to activate, so nothing to report
310 * if we need to restart poll, we must save the
311 * protocols from the initial poll and reuse here.
315 if (skb
->data
[0] != 0) {
320 r
= nfc_hci_target_discovered(hdev
, gate
);
323 if (hdev
->ops
->event_received
) {
324 hdev
->ops
->event_received(hdev
, gate
, event
, skb
);
335 /* TODO: There was an error dispatching the event,
336 * how to propagate up to nfc core?
341 static void nfc_hci_cmd_timeout(unsigned long data
)
343 struct nfc_hci_dev
*hdev
= (struct nfc_hci_dev
*)data
;
345 schedule_work(&hdev
->msg_tx_work
);
348 static int hci_dev_connect_gates(struct nfc_hci_dev
*hdev
, u8 gate_count
,
349 struct nfc_hci_gate
*gates
)
352 while (gate_count
--) {
353 r
= nfc_hci_connect_gate(hdev
, NFC_HCI_HOST_CONTROLLER_ID
,
354 gates
->gate
, gates
->pipe
);
363 static int hci_dev_session_init(struct nfc_hci_dev
*hdev
)
365 struct sk_buff
*skb
= NULL
;
368 if (hdev
->init_data
.gates
[0].gate
!= NFC_HCI_ADMIN_GATE
)
371 r
= nfc_hci_connect_gate(hdev
, NFC_HCI_HOST_CONTROLLER_ID
,
372 hdev
->init_data
.gates
[0].gate
,
373 hdev
->init_data
.gates
[0].pipe
);
377 r
= nfc_hci_get_param(hdev
, NFC_HCI_ADMIN_GATE
,
378 NFC_HCI_ADMIN_SESSION_IDENTITY
, &skb
);
382 if (skb
->len
&& skb
->len
== strlen(hdev
->init_data
.session_id
))
383 if (memcmp(hdev
->init_data
.session_id
, skb
->data
,
385 /* TODO ELa: restore gate<->pipe table from
387 * note: it doesn't seem possible to get the chip
388 * currently open gate/pipe table.
389 * It is only possible to obtain the supported
394 * For now, always do a full initialization */
397 r
= nfc_hci_disconnect_all_gates(hdev
);
401 r
= hci_dev_connect_gates(hdev
, hdev
->init_data
.gate_count
,
402 hdev
->init_data
.gates
);
406 r
= nfc_hci_set_param(hdev
, NFC_HCI_ADMIN_GATE
,
407 NFC_HCI_ADMIN_SESSION_IDENTITY
,
408 hdev
->init_data
.session_id
,
409 strlen(hdev
->init_data
.session_id
));
414 nfc_hci_disconnect_all_gates(hdev
);
422 static int hci_dev_version(struct nfc_hci_dev
*hdev
)
427 r
= nfc_hci_get_param(hdev
, NFC_HCI_ID_MGMT_GATE
,
428 NFC_HCI_ID_MGMT_VERSION_SW
, &skb
);
429 if (r
== -EOPNOTSUPP
) {
430 pr_info("Software/Hardware info not available\n");
441 hdev
->sw_romlib
= (skb
->data
[0] & 0xf0) >> 4;
442 hdev
->sw_patch
= skb
->data
[0] & 0x0f;
443 hdev
->sw_flashlib_major
= skb
->data
[1];
444 hdev
->sw_flashlib_minor
= skb
->data
[2];
448 r
= nfc_hci_get_param(hdev
, NFC_HCI_ID_MGMT_GATE
,
449 NFC_HCI_ID_MGMT_VERSION_HW
, &skb
);
458 hdev
->hw_derivative
= (skb
->data
[0] & 0xe0) >> 5;
459 hdev
->hw_version
= skb
->data
[0] & 0x1f;
460 hdev
->hw_mpw
= (skb
->data
[1] & 0xc0) >> 6;
461 hdev
->hw_software
= skb
->data
[1] & 0x3f;
462 hdev
->hw_bsid
= skb
->data
[2];
466 pr_info("SOFTWARE INFO:\n");
467 pr_info("RomLib : %d\n", hdev
->sw_romlib
);
468 pr_info("Patch : %d\n", hdev
->sw_patch
);
469 pr_info("FlashLib Major : %d\n", hdev
->sw_flashlib_major
);
470 pr_info("FlashLib Minor : %d\n", hdev
->sw_flashlib_minor
);
471 pr_info("HARDWARE INFO:\n");
472 pr_info("Derivative : %d\n", hdev
->hw_derivative
);
473 pr_info("HW Version : %d\n", hdev
->hw_version
);
474 pr_info("#MPW : %d\n", hdev
->hw_mpw
);
475 pr_info("Software : %d\n", hdev
->hw_software
);
476 pr_info("BSID Version : %d\n", hdev
->hw_bsid
);
481 static int hci_dev_up(struct nfc_dev
*nfc_dev
)
483 struct nfc_hci_dev
*hdev
= nfc_get_drvdata(nfc_dev
);
486 if (hdev
->ops
->open
) {
487 r
= hdev
->ops
->open(hdev
);
492 r
= nfc_llc_start(hdev
->llc
);
496 r
= hci_dev_session_init(hdev
);
500 r
= nfc_hci_send_event(hdev
, NFC_HCI_RF_READER_A_GATE
,
501 NFC_HCI_EVT_END_OPERATION
, NULL
, 0);
505 if (hdev
->ops
->hci_ready
) {
506 r
= hdev
->ops
->hci_ready(hdev
);
511 r
= hci_dev_version(hdev
);
518 nfc_llc_stop(hdev
->llc
);
521 if (hdev
->ops
->close
)
522 hdev
->ops
->close(hdev
);
527 static int hci_dev_down(struct nfc_dev
*nfc_dev
)
529 struct nfc_hci_dev
*hdev
= nfc_get_drvdata(nfc_dev
);
531 nfc_llc_stop(hdev
->llc
);
533 if (hdev
->ops
->close
)
534 hdev
->ops
->close(hdev
);
536 memset(hdev
->gate2pipe
, NFC_HCI_INVALID_PIPE
, sizeof(hdev
->gate2pipe
));
541 static int hci_start_poll(struct nfc_dev
*nfc_dev
,
542 u32 im_protocols
, u32 tm_protocols
)
544 struct nfc_hci_dev
*hdev
= nfc_get_drvdata(nfc_dev
);
546 if (hdev
->ops
->start_poll
)
547 return hdev
->ops
->start_poll(hdev
, im_protocols
, tm_protocols
);
549 return nfc_hci_send_event(hdev
, NFC_HCI_RF_READER_A_GATE
,
550 NFC_HCI_EVT_READER_REQUESTED
,
554 static void hci_stop_poll(struct nfc_dev
*nfc_dev
)
556 struct nfc_hci_dev
*hdev
= nfc_get_drvdata(nfc_dev
);
558 nfc_hci_send_event(hdev
, NFC_HCI_RF_READER_A_GATE
,
559 NFC_HCI_EVT_END_OPERATION
, NULL
, 0);
562 static int hci_dep_link_up(struct nfc_dev
*nfc_dev
, struct nfc_target
*target
,
563 __u8 comm_mode
, __u8
*gb
, size_t gb_len
)
565 struct nfc_hci_dev
*hdev
= nfc_get_drvdata(nfc_dev
);
567 if (hdev
->ops
->dep_link_up
)
568 return hdev
->ops
->dep_link_up(hdev
, target
, comm_mode
,
574 static int hci_dep_link_down(struct nfc_dev
*nfc_dev
)
576 struct nfc_hci_dev
*hdev
= nfc_get_drvdata(nfc_dev
);
578 if (hdev
->ops
->dep_link_down
)
579 return hdev
->ops
->dep_link_down(hdev
);
584 static int hci_activate_target(struct nfc_dev
*nfc_dev
,
585 struct nfc_target
*target
, u32 protocol
)
590 static void hci_deactivate_target(struct nfc_dev
*nfc_dev
,
591 struct nfc_target
*target
)
595 #define HCI_CB_TYPE_TRANSCEIVE 1
597 static void hci_transceive_cb(void *context
, struct sk_buff
*skb
, int err
)
599 struct nfc_hci_dev
*hdev
= context
;
601 switch (hdev
->async_cb_type
) {
602 case HCI_CB_TYPE_TRANSCEIVE
:
604 * TODO: Check RF Error indicator to make sure data is valid.
605 * It seems that HCI cmd can complete without error, but data
606 * can be invalid if an RF error occured? Ignore for now.
609 skb_trim(skb
, skb
->len
- 1); /* RF Err ind */
611 hdev
->async_cb(hdev
->async_cb_context
, skb
, err
);
620 static int hci_transceive(struct nfc_dev
*nfc_dev
, struct nfc_target
*target
,
621 struct sk_buff
*skb
, data_exchange_cb_t cb
,
624 struct nfc_hci_dev
*hdev
= nfc_get_drvdata(nfc_dev
);
627 pr_debug("target_idx=%d\n", target
->idx
);
629 switch (target
->hci_reader_gate
) {
630 case NFC_HCI_RF_READER_A_GATE
:
631 case NFC_HCI_RF_READER_B_GATE
:
632 if (hdev
->ops
->im_transceive
) {
633 r
= hdev
->ops
->im_transceive(hdev
, target
, skb
, cb
,
635 if (r
<= 0) /* handled */
639 *skb_push(skb
, 1) = 0; /* CTR, see spec:10.2.2.1 */
641 hdev
->async_cb_type
= HCI_CB_TYPE_TRANSCEIVE
;
643 hdev
->async_cb_context
= cb_context
;
645 r
= nfc_hci_send_cmd_async(hdev
, target
->hci_reader_gate
,
646 NFC_HCI_WR_XCHG_DATA
, skb
->data
,
647 skb
->len
, hci_transceive_cb
, hdev
);
650 if (hdev
->ops
->im_transceive
) {
651 r
= hdev
->ops
->im_transceive(hdev
, target
, skb
, cb
,
666 static int hci_tm_send(struct nfc_dev
*nfc_dev
, struct sk_buff
*skb
)
668 struct nfc_hci_dev
*hdev
= nfc_get_drvdata(nfc_dev
);
670 if (hdev
->ops
->tm_send
)
671 return hdev
->ops
->tm_send(hdev
, skb
);
676 static int hci_check_presence(struct nfc_dev
*nfc_dev
,
677 struct nfc_target
*target
)
679 struct nfc_hci_dev
*hdev
= nfc_get_drvdata(nfc_dev
);
681 if (hdev
->ops
->check_presence
)
682 return hdev
->ops
->check_presence(hdev
, target
);
687 static void nfc_hci_failure(struct nfc_hci_dev
*hdev
, int err
)
689 mutex_lock(&hdev
->msg_tx_mutex
);
691 if (hdev
->cmd_pending_msg
== NULL
) {
692 nfc_driver_failure(hdev
->ndev
, err
);
696 __nfc_hci_cmd_completion(hdev
, err
, NULL
);
699 mutex_unlock(&hdev
->msg_tx_mutex
);
702 static void nfc_hci_llc_failure(struct nfc_hci_dev
*hdev
, int err
)
704 nfc_hci_failure(hdev
, err
);
707 static void nfc_hci_recv_from_llc(struct nfc_hci_dev
*hdev
, struct sk_buff
*skb
)
709 struct hcp_packet
*packet
;
712 struct sk_buff
*hcp_skb
;
714 struct sk_buff
*frag_skb
;
717 packet
= (struct hcp_packet
*)skb
->data
;
718 if ((packet
->header
& ~NFC_HCI_FRAGMENT
) == 0) {
719 skb_queue_tail(&hdev
->rx_hcp_frags
, skb
);
723 /* it's the last fragment. Does it need re-aggregation? */
724 if (skb_queue_len(&hdev
->rx_hcp_frags
)) {
725 pipe
= packet
->header
& NFC_HCI_FRAGMENT
;
726 skb_queue_tail(&hdev
->rx_hcp_frags
, skb
);
729 skb_queue_walk(&hdev
->rx_hcp_frags
, frag_skb
) {
730 msg_len
+= (frag_skb
->len
-
731 NFC_HCI_HCP_PACKET_HEADER_LEN
);
734 hcp_skb
= nfc_alloc_recv_skb(NFC_HCI_HCP_PACKET_HEADER_LEN
+
735 msg_len
, GFP_KERNEL
);
736 if (hcp_skb
== NULL
) {
737 nfc_hci_failure(hdev
, -ENOMEM
);
741 *skb_put(hcp_skb
, NFC_HCI_HCP_PACKET_HEADER_LEN
) = pipe
;
743 skb_queue_walk(&hdev
->rx_hcp_frags
, frag_skb
) {
744 msg_len
= frag_skb
->len
- NFC_HCI_HCP_PACKET_HEADER_LEN
;
745 memcpy(skb_put(hcp_skb
, msg_len
),
746 frag_skb
->data
+ NFC_HCI_HCP_PACKET_HEADER_LEN
,
750 skb_queue_purge(&hdev
->rx_hcp_frags
);
752 packet
->header
&= NFC_HCI_FRAGMENT
;
756 /* if this is a response, dispatch immediately to
757 * unblock waiting cmd context. Otherwise, enqueue to dispatch
758 * in separate context where handler can also execute command.
760 packet
= (struct hcp_packet
*)hcp_skb
->data
;
761 type
= HCP_MSG_GET_TYPE(packet
->message
.header
);
762 if (type
== NFC_HCI_HCP_RESPONSE
) {
763 pipe
= packet
->header
;
764 instruction
= HCP_MSG_GET_CMD(packet
->message
.header
);
765 skb_pull(hcp_skb
, NFC_HCI_HCP_PACKET_HEADER_LEN
+
766 NFC_HCI_HCP_MESSAGE_HEADER_LEN
);
767 nfc_hci_hcp_message_rx(hdev
, pipe
, type
, instruction
, hcp_skb
);
769 skb_queue_tail(&hdev
->msg_rx_queue
, hcp_skb
);
770 schedule_work(&hdev
->msg_rx_work
);
774 static struct nfc_ops hci_nfc_ops
= {
775 .dev_up
= hci_dev_up
,
776 .dev_down
= hci_dev_down
,
777 .start_poll
= hci_start_poll
,
778 .stop_poll
= hci_stop_poll
,
779 .dep_link_up
= hci_dep_link_up
,
780 .dep_link_down
= hci_dep_link_down
,
781 .activate_target
= hci_activate_target
,
782 .deactivate_target
= hci_deactivate_target
,
783 .im_transceive
= hci_transceive
,
784 .tm_send
= hci_tm_send
,
785 .check_presence
= hci_check_presence
,
788 struct nfc_hci_dev
*nfc_hci_allocate_device(struct nfc_hci_ops
*ops
,
789 struct nfc_hci_init_data
*init_data
,
791 const char *llc_name
,
794 int max_link_payload
)
796 struct nfc_hci_dev
*hdev
;
798 if (ops
->xmit
== NULL
)
804 hdev
= kzalloc(sizeof(struct nfc_hci_dev
), GFP_KERNEL
);
808 hdev
->llc
= nfc_llc_allocate(llc_name
, hdev
, ops
->xmit
,
809 nfc_hci_recv_from_llc
, tx_headroom
,
810 tx_tailroom
, nfc_hci_llc_failure
);
811 if (hdev
->llc
== NULL
) {
816 hdev
->ndev
= nfc_allocate_device(&hci_nfc_ops
, protocols
,
817 tx_headroom
+ HCI_CMDS_HEADROOM
,
820 nfc_llc_free(hdev
->llc
);
826 hdev
->max_data_link_payload
= max_link_payload
;
827 hdev
->init_data
= *init_data
;
829 nfc_set_drvdata(hdev
->ndev
, hdev
);
831 memset(hdev
->gate2pipe
, NFC_HCI_INVALID_PIPE
, sizeof(hdev
->gate2pipe
));
835 EXPORT_SYMBOL(nfc_hci_allocate_device
);
837 void nfc_hci_free_device(struct nfc_hci_dev
*hdev
)
839 nfc_free_device(hdev
->ndev
);
840 nfc_llc_free(hdev
->llc
);
843 EXPORT_SYMBOL(nfc_hci_free_device
);
845 int nfc_hci_register_device(struct nfc_hci_dev
*hdev
)
847 mutex_init(&hdev
->msg_tx_mutex
);
849 INIT_LIST_HEAD(&hdev
->msg_tx_queue
);
851 INIT_WORK(&hdev
->msg_tx_work
, nfc_hci_msg_tx_work
);
853 init_timer(&hdev
->cmd_timer
);
854 hdev
->cmd_timer
.data
= (unsigned long)hdev
;
855 hdev
->cmd_timer
.function
= nfc_hci_cmd_timeout
;
857 skb_queue_head_init(&hdev
->rx_hcp_frags
);
859 INIT_WORK(&hdev
->msg_rx_work
, nfc_hci_msg_rx_work
);
861 skb_queue_head_init(&hdev
->msg_rx_queue
);
863 return nfc_register_device(hdev
->ndev
);
865 EXPORT_SYMBOL(nfc_hci_register_device
);
867 void nfc_hci_unregister_device(struct nfc_hci_dev
*hdev
)
869 struct hci_msg
*msg
, *n
;
871 skb_queue_purge(&hdev
->rx_hcp_frags
);
872 skb_queue_purge(&hdev
->msg_rx_queue
);
874 list_for_each_entry_safe(msg
, n
, &hdev
->msg_tx_queue
, msg_l
) {
875 list_del(&msg
->msg_l
);
876 skb_queue_purge(&msg
->msg_frags
);
880 del_timer_sync(&hdev
->cmd_timer
);
882 nfc_unregister_device(hdev
->ndev
);
884 cancel_work_sync(&hdev
->msg_tx_work
);
885 cancel_work_sync(&hdev
->msg_rx_work
);
887 EXPORT_SYMBOL(nfc_hci_unregister_device
);
889 void nfc_hci_set_clientdata(struct nfc_hci_dev
*hdev
, void *clientdata
)
891 hdev
->clientdata
= clientdata
;
893 EXPORT_SYMBOL(nfc_hci_set_clientdata
);
895 void *nfc_hci_get_clientdata(struct nfc_hci_dev
*hdev
)
897 return hdev
->clientdata
;
899 EXPORT_SYMBOL(nfc_hci_get_clientdata
);
901 void nfc_hci_driver_failure(struct nfc_hci_dev
*hdev
, int err
)
903 nfc_hci_failure(hdev
, err
);
905 EXPORT_SYMBOL(nfc_hci_driver_failure
);
907 void nfc_hci_recv_frame(struct nfc_hci_dev
*hdev
, struct sk_buff
*skb
)
909 nfc_llc_rcv_from_drv(hdev
->llc
, skb
);
911 EXPORT_SYMBOL(nfc_hci_recv_frame
);
913 static int __init
nfc_hci_init(void)
915 return nfc_llc_init();
918 static void __exit
nfc_hci_exit(void)
923 subsys_initcall(nfc_hci_init
);
924 module_exit(nfc_hci_exit
);
926 MODULE_LICENSE("GPL");
927 MODULE_DESCRIPTION("NFC HCI Core");