1 // SPDX-License-Identifier: GPL-2.0-or-later
3 * Copyright (C) 2012 Intel Corporation. All rights reserved.
6 #define pr_fmt(fmt) "hci: %s: " fmt, __func__
8 #include <linux/init.h>
9 #include <linux/kernel.h>
10 #include <linux/module.h>
11 #include <linux/nfc.h>
13 #include <net/nfc/nfc.h>
14 #include <net/nfc/hci.h>
15 #include <net/nfc/llc.h>
19 /* Largest headroom needed for outgoing HCI commands */
20 #define HCI_CMDS_HEADROOM 1
22 int nfc_hci_result_to_errno(u8 result
)
27 case NFC_HCI_ANY_E_REG_PAR_UNKNOWN
:
29 case NFC_HCI_ANY_E_TIMEOUT
:
35 EXPORT_SYMBOL(nfc_hci_result_to_errno
);
37 void nfc_hci_reset_pipes(struct nfc_hci_dev
*hdev
)
41 for (i
= 0; i
< NFC_HCI_MAX_PIPES
; i
++) {
42 hdev
->pipes
[i
].gate
= NFC_HCI_INVALID_GATE
;
43 hdev
->pipes
[i
].dest_host
= NFC_HCI_INVALID_HOST
;
45 memset(hdev
->gate2pipe
, NFC_HCI_INVALID_PIPE
, sizeof(hdev
->gate2pipe
));
47 EXPORT_SYMBOL(nfc_hci_reset_pipes
);
49 void nfc_hci_reset_pipes_per_host(struct nfc_hci_dev
*hdev
, u8 host
)
53 for (i
= 0; i
< NFC_HCI_MAX_PIPES
; i
++) {
54 if (hdev
->pipes
[i
].dest_host
!= host
)
57 hdev
->pipes
[i
].gate
= NFC_HCI_INVALID_GATE
;
58 hdev
->pipes
[i
].dest_host
= NFC_HCI_INVALID_HOST
;
61 EXPORT_SYMBOL(nfc_hci_reset_pipes_per_host
);
63 static void nfc_hci_msg_tx_work(struct work_struct
*work
)
65 struct nfc_hci_dev
*hdev
= container_of(work
, struct nfc_hci_dev
,
71 mutex_lock(&hdev
->msg_tx_mutex
);
72 if (hdev
->shutting_down
)
75 if (hdev
->cmd_pending_msg
) {
76 if (timer_pending(&hdev
->cmd_timer
) == 0) {
77 if (hdev
->cmd_pending_msg
->cb
)
78 hdev
->cmd_pending_msg
->cb(hdev
->
83 kfree(hdev
->cmd_pending_msg
);
84 hdev
->cmd_pending_msg
= NULL
;
91 if (list_empty(&hdev
->msg_tx_queue
))
94 msg
= list_first_entry(&hdev
->msg_tx_queue
, struct hci_msg
, msg_l
);
95 list_del(&msg
->msg_l
);
97 pr_debug("msg_tx_queue has a cmd to send\n");
98 while ((skb
= skb_dequeue(&msg
->msg_frags
)) != NULL
) {
99 r
= nfc_llc_xmit_from_hci(hdev
->llc
, skb
);
102 skb_queue_purge(&msg
->msg_frags
);
104 msg
->cb(msg
->cb_context
, NULL
, r
);
113 if (msg
->wait_response
== false) {
118 hdev
->cmd_pending_msg
= msg
;
119 mod_timer(&hdev
->cmd_timer
, jiffies
+
120 msecs_to_jiffies(hdev
->cmd_pending_msg
->completion_delay
));
123 mutex_unlock(&hdev
->msg_tx_mutex
);
126 static void nfc_hci_msg_rx_work(struct work_struct
*work
)
128 struct nfc_hci_dev
*hdev
= container_of(work
, struct nfc_hci_dev
,
131 const struct hcp_message
*message
;
136 while ((skb
= skb_dequeue(&hdev
->msg_rx_queue
)) != NULL
) {
138 skb_pull(skb
, NFC_HCI_HCP_PACKET_HEADER_LEN
);
139 message
= (struct hcp_message
*)skb
->data
;
140 type
= HCP_MSG_GET_TYPE(message
->header
);
141 instruction
= HCP_MSG_GET_CMD(message
->header
);
142 skb_pull(skb
, NFC_HCI_HCP_MESSAGE_HEADER_LEN
);
144 nfc_hci_hcp_message_rx(hdev
, pipe
, type
, instruction
, skb
);
148 static void __nfc_hci_cmd_completion(struct nfc_hci_dev
*hdev
, int err
,
151 del_timer_sync(&hdev
->cmd_timer
);
153 if (hdev
->cmd_pending_msg
->cb
)
154 hdev
->cmd_pending_msg
->cb(hdev
->cmd_pending_msg
->cb_context
,
159 kfree(hdev
->cmd_pending_msg
);
160 hdev
->cmd_pending_msg
= NULL
;
162 schedule_work(&hdev
->msg_tx_work
);
165 void nfc_hci_resp_received(struct nfc_hci_dev
*hdev
, u8 result
,
168 mutex_lock(&hdev
->msg_tx_mutex
);
170 if (hdev
->cmd_pending_msg
== NULL
) {
175 __nfc_hci_cmd_completion(hdev
, nfc_hci_result_to_errno(result
), skb
);
178 mutex_unlock(&hdev
->msg_tx_mutex
);
181 void nfc_hci_cmd_received(struct nfc_hci_dev
*hdev
, u8 pipe
, u8 cmd
,
184 u8 status
= NFC_HCI_ANY_OK
;
185 const struct hci_create_pipe_resp
*create_info
;
186 const struct hci_delete_pipe_noti
*delete_info
;
187 const struct hci_all_pipe_cleared_noti
*cleared_info
;
190 pr_debug("from pipe %x cmd %x\n", pipe
, cmd
);
192 if (pipe
>= NFC_HCI_MAX_PIPES
) {
193 status
= NFC_HCI_ANY_E_NOK
;
197 gate
= hdev
->pipes
[pipe
].gate
;
200 case NFC_HCI_ADM_NOTIFY_PIPE_CREATED
:
202 status
= NFC_HCI_ANY_E_NOK
;
205 create_info
= (struct hci_create_pipe_resp
*)skb
->data
;
207 if (create_info
->pipe
>= NFC_HCI_MAX_PIPES
) {
208 status
= NFC_HCI_ANY_E_NOK
;
212 /* Save the new created pipe and bind with local gate,
213 * the description for skb->data[3] is destination gate id
214 * but since we received this cmd from host controller, we
215 * are the destination and it is our local gate
217 hdev
->gate2pipe
[create_info
->dest_gate
] = create_info
->pipe
;
218 hdev
->pipes
[create_info
->pipe
].gate
= create_info
->dest_gate
;
219 hdev
->pipes
[create_info
->pipe
].dest_host
=
220 create_info
->src_host
;
222 case NFC_HCI_ANY_OPEN_PIPE
:
223 if (gate
== NFC_HCI_INVALID_GATE
) {
224 status
= NFC_HCI_ANY_E_NOK
;
228 case NFC_HCI_ADM_NOTIFY_PIPE_DELETED
:
230 status
= NFC_HCI_ANY_E_NOK
;
233 delete_info
= (struct hci_delete_pipe_noti
*)skb
->data
;
235 if (delete_info
->pipe
>= NFC_HCI_MAX_PIPES
) {
236 status
= NFC_HCI_ANY_E_NOK
;
240 hdev
->pipes
[delete_info
->pipe
].gate
= NFC_HCI_INVALID_GATE
;
241 hdev
->pipes
[delete_info
->pipe
].dest_host
= NFC_HCI_INVALID_HOST
;
243 case NFC_HCI_ADM_NOTIFY_ALL_PIPE_CLEARED
:
245 status
= NFC_HCI_ANY_E_NOK
;
248 cleared_info
= (struct hci_all_pipe_cleared_noti
*)skb
->data
;
250 nfc_hci_reset_pipes_per_host(hdev
, cleared_info
->host
);
253 pr_info("Discarded unknown cmd %x to gate %x\n", cmd
, gate
);
257 if (hdev
->ops
->cmd_received
)
258 hdev
->ops
->cmd_received(hdev
, pipe
, cmd
, skb
);
261 nfc_hci_hcp_message_tx(hdev
, pipe
, NFC_HCI_HCP_RESPONSE
,
262 status
, NULL
, 0, NULL
, NULL
, 0);
267 u32
nfc_hci_sak_to_protocol(u8 sak
)
269 switch (NFC_HCI_TYPE_A_SEL_PROT(sak
)) {
270 case NFC_HCI_TYPE_A_SEL_PROT_MIFARE
:
271 return NFC_PROTO_MIFARE_MASK
;
272 case NFC_HCI_TYPE_A_SEL_PROT_ISO14443
:
273 return NFC_PROTO_ISO14443_MASK
;
274 case NFC_HCI_TYPE_A_SEL_PROT_DEP
:
275 return NFC_PROTO_NFC_DEP_MASK
;
276 case NFC_HCI_TYPE_A_SEL_PROT_ISO14443_DEP
:
277 return NFC_PROTO_ISO14443_MASK
| NFC_PROTO_NFC_DEP_MASK
;
282 EXPORT_SYMBOL(nfc_hci_sak_to_protocol
);
284 int nfc_hci_target_discovered(struct nfc_hci_dev
*hdev
, u8 gate
)
286 struct nfc_target
*targets
;
287 struct sk_buff
*atqa_skb
= NULL
;
288 struct sk_buff
*sak_skb
= NULL
;
289 struct sk_buff
*uid_skb
= NULL
;
292 pr_debug("from gate %d\n", gate
);
294 targets
= kzalloc(sizeof(struct nfc_target
), GFP_KERNEL
);
299 case NFC_HCI_RF_READER_A_GATE
:
300 r
= nfc_hci_get_param(hdev
, NFC_HCI_RF_READER_A_GATE
,
301 NFC_HCI_RF_READER_A_ATQA
, &atqa_skb
);
305 r
= nfc_hci_get_param(hdev
, NFC_HCI_RF_READER_A_GATE
,
306 NFC_HCI_RF_READER_A_SAK
, &sak_skb
);
310 if (atqa_skb
->len
!= 2 || sak_skb
->len
!= 1) {
315 targets
->supported_protocols
=
316 nfc_hci_sak_to_protocol(sak_skb
->data
[0]);
317 if (targets
->supported_protocols
== 0xffffffff) {
322 targets
->sens_res
= be16_to_cpu(*(__be16
*)atqa_skb
->data
);
323 targets
->sel_res
= sak_skb
->data
[0];
325 r
= nfc_hci_get_param(hdev
, NFC_HCI_RF_READER_A_GATE
,
326 NFC_HCI_RF_READER_A_UID
, &uid_skb
);
330 if (uid_skb
->len
== 0 || uid_skb
->len
> NFC_NFCID1_MAXSIZE
) {
335 memcpy(targets
->nfcid1
, uid_skb
->data
, uid_skb
->len
);
336 targets
->nfcid1_len
= uid_skb
->len
;
338 if (hdev
->ops
->complete_target_discovered
) {
339 r
= hdev
->ops
->complete_target_discovered(hdev
, gate
,
345 case NFC_HCI_RF_READER_B_GATE
:
346 targets
->supported_protocols
= NFC_PROTO_ISO14443_B_MASK
;
349 if (hdev
->ops
->target_from_gate
)
350 r
= hdev
->ops
->target_from_gate(hdev
, gate
, targets
);
356 if (hdev
->ops
->complete_target_discovered
) {
357 r
= hdev
->ops
->complete_target_discovered(hdev
, gate
,
365 /* if driver set the new gate, we will skip the old one */
366 if (targets
->hci_reader_gate
== 0x00)
367 targets
->hci_reader_gate
= gate
;
369 r
= nfc_targets_found(hdev
->ndev
, targets
, 1);
379 EXPORT_SYMBOL(nfc_hci_target_discovered
);
381 void nfc_hci_event_received(struct nfc_hci_dev
*hdev
, u8 pipe
, u8 event
,
387 if (pipe
>= NFC_HCI_MAX_PIPES
) {
388 pr_err("Discarded event %x to invalid pipe %x\n", event
, pipe
);
392 gate
= hdev
->pipes
[pipe
].gate
;
393 if (gate
== NFC_HCI_INVALID_GATE
) {
394 pr_err("Discarded event %x to unopened pipe %x\n", event
, pipe
);
398 if (hdev
->ops
->event_received
) {
399 r
= hdev
->ops
->event_received(hdev
, pipe
, event
, skb
);
405 case NFC_HCI_EVT_TARGET_DISCOVERED
:
406 if (skb
->len
< 1) { /* no status data? */
411 if (skb
->data
[0] == 3) {
412 /* TODO: Multiple targets in field, none activated
413 * poll is supposedly stopped, but there is no
414 * single target to activate, so nothing to report
416 * if we need to restart poll, we must save the
417 * protocols from the initial poll and reuse here.
421 if (skb
->data
[0] != 0) {
426 r
= nfc_hci_target_discovered(hdev
, gate
);
429 pr_info("Discarded unknown event %x to gate %x\n", event
, gate
);
439 nfc_hci_driver_failure(hdev
, r
);
442 static void nfc_hci_cmd_timeout(struct timer_list
*t
)
444 struct nfc_hci_dev
*hdev
= from_timer(hdev
, t
, cmd_timer
);
446 schedule_work(&hdev
->msg_tx_work
);
449 static int hci_dev_connect_gates(struct nfc_hci_dev
*hdev
, u8 gate_count
,
450 const struct nfc_hci_gate
*gates
)
453 while (gate_count
--) {
454 r
= nfc_hci_connect_gate(hdev
, NFC_HCI_HOST_CONTROLLER_ID
,
455 gates
->gate
, gates
->pipe
);
464 static int hci_dev_session_init(struct nfc_hci_dev
*hdev
)
466 struct sk_buff
*skb
= NULL
;
469 if (hdev
->init_data
.gates
[0].gate
!= NFC_HCI_ADMIN_GATE
)
472 r
= nfc_hci_connect_gate(hdev
, NFC_HCI_HOST_CONTROLLER_ID
,
473 hdev
->init_data
.gates
[0].gate
,
474 hdev
->init_data
.gates
[0].pipe
);
478 r
= nfc_hci_get_param(hdev
, NFC_HCI_ADMIN_GATE
,
479 NFC_HCI_ADMIN_SESSION_IDENTITY
, &skb
);
483 if (skb
->len
&& skb
->len
== strlen(hdev
->init_data
.session_id
) &&
484 (memcmp(hdev
->init_data
.session_id
, skb
->data
,
485 skb
->len
) == 0) && hdev
->ops
->load_session
) {
486 /* Restore gate<->pipe table from some proprietary location. */
488 r
= hdev
->ops
->load_session(hdev
);
494 r
= nfc_hci_disconnect_all_gates(hdev
);
498 r
= hci_dev_connect_gates(hdev
, hdev
->init_data
.gate_count
,
499 hdev
->init_data
.gates
);
503 r
= nfc_hci_set_param(hdev
, NFC_HCI_ADMIN_GATE
,
504 NFC_HCI_ADMIN_SESSION_IDENTITY
,
505 hdev
->init_data
.session_id
,
506 strlen(hdev
->init_data
.session_id
));
512 nfc_hci_disconnect_all_gates(hdev
);
520 static int hci_dev_version(struct nfc_hci_dev
*hdev
)
525 r
= nfc_hci_get_param(hdev
, NFC_HCI_ID_MGMT_GATE
,
526 NFC_HCI_ID_MGMT_VERSION_SW
, &skb
);
527 if (r
== -EOPNOTSUPP
) {
528 pr_info("Software/Hardware info not available\n");
539 hdev
->sw_romlib
= (skb
->data
[0] & 0xf0) >> 4;
540 hdev
->sw_patch
= skb
->data
[0] & 0x0f;
541 hdev
->sw_flashlib_major
= skb
->data
[1];
542 hdev
->sw_flashlib_minor
= skb
->data
[2];
546 r
= nfc_hci_get_param(hdev
, NFC_HCI_ID_MGMT_GATE
,
547 NFC_HCI_ID_MGMT_VERSION_HW
, &skb
);
556 hdev
->hw_derivative
= (skb
->data
[0] & 0xe0) >> 5;
557 hdev
->hw_version
= skb
->data
[0] & 0x1f;
558 hdev
->hw_mpw
= (skb
->data
[1] & 0xc0) >> 6;
559 hdev
->hw_software
= skb
->data
[1] & 0x3f;
560 hdev
->hw_bsid
= skb
->data
[2];
564 pr_info("SOFTWARE INFO:\n");
565 pr_info("RomLib : %d\n", hdev
->sw_romlib
);
566 pr_info("Patch : %d\n", hdev
->sw_patch
);
567 pr_info("FlashLib Major : %d\n", hdev
->sw_flashlib_major
);
568 pr_info("FlashLib Minor : %d\n", hdev
->sw_flashlib_minor
);
569 pr_info("HARDWARE INFO:\n");
570 pr_info("Derivative : %d\n", hdev
->hw_derivative
);
571 pr_info("HW Version : %d\n", hdev
->hw_version
);
572 pr_info("#MPW : %d\n", hdev
->hw_mpw
);
573 pr_info("Software : %d\n", hdev
->hw_software
);
574 pr_info("BSID Version : %d\n", hdev
->hw_bsid
);
579 static int hci_dev_up(struct nfc_dev
*nfc_dev
)
581 struct nfc_hci_dev
*hdev
= nfc_get_drvdata(nfc_dev
);
584 if (hdev
->ops
->open
) {
585 r
= hdev
->ops
->open(hdev
);
590 r
= nfc_llc_start(hdev
->llc
);
594 r
= hci_dev_session_init(hdev
);
598 r
= nfc_hci_send_event(hdev
, NFC_HCI_RF_READER_A_GATE
,
599 NFC_HCI_EVT_END_OPERATION
, NULL
, 0);
603 if (hdev
->ops
->hci_ready
) {
604 r
= hdev
->ops
->hci_ready(hdev
);
609 r
= hci_dev_version(hdev
);
616 nfc_llc_stop(hdev
->llc
);
619 if (hdev
->ops
->close
)
620 hdev
->ops
->close(hdev
);
625 static int hci_dev_down(struct nfc_dev
*nfc_dev
)
627 struct nfc_hci_dev
*hdev
= nfc_get_drvdata(nfc_dev
);
629 nfc_llc_stop(hdev
->llc
);
631 if (hdev
->ops
->close
)
632 hdev
->ops
->close(hdev
);
634 nfc_hci_reset_pipes(hdev
);
639 static int hci_start_poll(struct nfc_dev
*nfc_dev
,
640 u32 im_protocols
, u32 tm_protocols
)
642 struct nfc_hci_dev
*hdev
= nfc_get_drvdata(nfc_dev
);
644 if (hdev
->ops
->start_poll
)
645 return hdev
->ops
->start_poll(hdev
, im_protocols
, tm_protocols
);
647 return nfc_hci_send_event(hdev
, NFC_HCI_RF_READER_A_GATE
,
648 NFC_HCI_EVT_READER_REQUESTED
,
652 static void hci_stop_poll(struct nfc_dev
*nfc_dev
)
654 struct nfc_hci_dev
*hdev
= nfc_get_drvdata(nfc_dev
);
656 if (hdev
->ops
->stop_poll
)
657 hdev
->ops
->stop_poll(hdev
);
659 nfc_hci_send_event(hdev
, NFC_HCI_RF_READER_A_GATE
,
660 NFC_HCI_EVT_END_OPERATION
, NULL
, 0);
663 static int hci_dep_link_up(struct nfc_dev
*nfc_dev
, struct nfc_target
*target
,
664 __u8 comm_mode
, __u8
*gb
, size_t gb_len
)
666 struct nfc_hci_dev
*hdev
= nfc_get_drvdata(nfc_dev
);
668 if (!hdev
->ops
->dep_link_up
)
671 return hdev
->ops
->dep_link_up(hdev
, target
, comm_mode
,
675 static int hci_dep_link_down(struct nfc_dev
*nfc_dev
)
677 struct nfc_hci_dev
*hdev
= nfc_get_drvdata(nfc_dev
);
679 if (!hdev
->ops
->dep_link_down
)
682 return hdev
->ops
->dep_link_down(hdev
);
685 static int hci_activate_target(struct nfc_dev
*nfc_dev
,
686 struct nfc_target
*target
, u32 protocol
)
691 static void hci_deactivate_target(struct nfc_dev
*nfc_dev
,
692 struct nfc_target
*target
,
697 #define HCI_CB_TYPE_TRANSCEIVE 1
699 static void hci_transceive_cb(void *context
, struct sk_buff
*skb
, int err
)
701 struct nfc_hci_dev
*hdev
= context
;
703 switch (hdev
->async_cb_type
) {
704 case HCI_CB_TYPE_TRANSCEIVE
:
706 * TODO: Check RF Error indicator to make sure data is valid.
707 * It seems that HCI cmd can complete without error, but data
708 * can be invalid if an RF error occurred? Ignore for now.
711 skb_trim(skb
, skb
->len
- 1); /* RF Err ind */
713 hdev
->async_cb(hdev
->async_cb_context
, skb
, err
);
722 static int hci_transceive(struct nfc_dev
*nfc_dev
, struct nfc_target
*target
,
723 struct sk_buff
*skb
, data_exchange_cb_t cb
,
726 struct nfc_hci_dev
*hdev
= nfc_get_drvdata(nfc_dev
);
729 pr_debug("target_idx=%d\n", target
->idx
);
731 switch (target
->hci_reader_gate
) {
732 case NFC_HCI_RF_READER_A_GATE
:
733 case NFC_HCI_RF_READER_B_GATE
:
734 if (hdev
->ops
->im_transceive
) {
735 r
= hdev
->ops
->im_transceive(hdev
, target
, skb
, cb
,
737 if (r
<= 0) /* handled */
741 *(u8
*)skb_push(skb
, 1) = 0; /* CTR, see spec:10.2.2.1 */
743 hdev
->async_cb_type
= HCI_CB_TYPE_TRANSCEIVE
;
745 hdev
->async_cb_context
= cb_context
;
747 r
= nfc_hci_send_cmd_async(hdev
, target
->hci_reader_gate
,
748 NFC_HCI_WR_XCHG_DATA
, skb
->data
,
749 skb
->len
, hci_transceive_cb
, hdev
);
752 if (hdev
->ops
->im_transceive
) {
753 r
= hdev
->ops
->im_transceive(hdev
, target
, skb
, cb
,
768 static int hci_tm_send(struct nfc_dev
*nfc_dev
, struct sk_buff
*skb
)
770 struct nfc_hci_dev
*hdev
= nfc_get_drvdata(nfc_dev
);
772 if (!hdev
->ops
->tm_send
) {
777 return hdev
->ops
->tm_send(hdev
, skb
);
780 static int hci_check_presence(struct nfc_dev
*nfc_dev
,
781 struct nfc_target
*target
)
783 struct nfc_hci_dev
*hdev
= nfc_get_drvdata(nfc_dev
);
785 if (!hdev
->ops
->check_presence
)
788 return hdev
->ops
->check_presence(hdev
, target
);
791 static int hci_discover_se(struct nfc_dev
*nfc_dev
)
793 struct nfc_hci_dev
*hdev
= nfc_get_drvdata(nfc_dev
);
795 if (hdev
->ops
->discover_se
)
796 return hdev
->ops
->discover_se(hdev
);
801 static int hci_enable_se(struct nfc_dev
*nfc_dev
, u32 se_idx
)
803 struct nfc_hci_dev
*hdev
= nfc_get_drvdata(nfc_dev
);
805 if (hdev
->ops
->enable_se
)
806 return hdev
->ops
->enable_se(hdev
, se_idx
);
811 static int hci_disable_se(struct nfc_dev
*nfc_dev
, u32 se_idx
)
813 struct nfc_hci_dev
*hdev
= nfc_get_drvdata(nfc_dev
);
815 if (hdev
->ops
->disable_se
)
816 return hdev
->ops
->disable_se(hdev
, se_idx
);
821 static int hci_se_io(struct nfc_dev
*nfc_dev
, u32 se_idx
,
822 u8
*apdu
, size_t apdu_length
,
823 se_io_cb_t cb
, void *cb_context
)
825 struct nfc_hci_dev
*hdev
= nfc_get_drvdata(nfc_dev
);
827 if (hdev
->ops
->se_io
)
828 return hdev
->ops
->se_io(hdev
, se_idx
, apdu
,
829 apdu_length
, cb
, cb_context
);
834 static void nfc_hci_failure(struct nfc_hci_dev
*hdev
, int err
)
836 mutex_lock(&hdev
->msg_tx_mutex
);
838 if (hdev
->cmd_pending_msg
== NULL
) {
839 nfc_driver_failure(hdev
->ndev
, err
);
843 __nfc_hci_cmd_completion(hdev
, err
, NULL
);
846 mutex_unlock(&hdev
->msg_tx_mutex
);
849 static void nfc_hci_llc_failure(struct nfc_hci_dev
*hdev
, int err
)
851 nfc_hci_failure(hdev
, err
);
854 static void nfc_hci_recv_from_llc(struct nfc_hci_dev
*hdev
, struct sk_buff
*skb
)
856 struct hcp_packet
*packet
;
859 struct sk_buff
*hcp_skb
;
861 struct sk_buff
*frag_skb
;
864 packet
= (struct hcp_packet
*)skb
->data
;
865 if ((packet
->header
& ~NFC_HCI_FRAGMENT
) == 0) {
866 skb_queue_tail(&hdev
->rx_hcp_frags
, skb
);
870 /* it's the last fragment. Does it need re-aggregation? */
871 if (skb_queue_len(&hdev
->rx_hcp_frags
)) {
872 pipe
= packet
->header
& NFC_HCI_FRAGMENT
;
873 skb_queue_tail(&hdev
->rx_hcp_frags
, skb
);
876 skb_queue_walk(&hdev
->rx_hcp_frags
, frag_skb
) {
877 msg_len
+= (frag_skb
->len
-
878 NFC_HCI_HCP_PACKET_HEADER_LEN
);
881 hcp_skb
= nfc_alloc_recv_skb(NFC_HCI_HCP_PACKET_HEADER_LEN
+
882 msg_len
, GFP_KERNEL
);
883 if (hcp_skb
== NULL
) {
884 nfc_hci_failure(hdev
, -ENOMEM
);
888 skb_put_u8(hcp_skb
, pipe
);
890 skb_queue_walk(&hdev
->rx_hcp_frags
, frag_skb
) {
891 msg_len
= frag_skb
->len
- NFC_HCI_HCP_PACKET_HEADER_LEN
;
892 skb_put_data(hcp_skb
,
893 frag_skb
->data
+ NFC_HCI_HCP_PACKET_HEADER_LEN
,
897 skb_queue_purge(&hdev
->rx_hcp_frags
);
899 packet
->header
&= NFC_HCI_FRAGMENT
;
903 /* if this is a response, dispatch immediately to
904 * unblock waiting cmd context. Otherwise, enqueue to dispatch
905 * in separate context where handler can also execute command.
907 packet
= (struct hcp_packet
*)hcp_skb
->data
;
908 type
= HCP_MSG_GET_TYPE(packet
->message
.header
);
909 if (type
== NFC_HCI_HCP_RESPONSE
) {
910 pipe
= packet
->header
;
911 instruction
= HCP_MSG_GET_CMD(packet
->message
.header
);
912 skb_pull(hcp_skb
, NFC_HCI_HCP_PACKET_HEADER_LEN
+
913 NFC_HCI_HCP_MESSAGE_HEADER_LEN
);
914 nfc_hci_hcp_message_rx(hdev
, pipe
, type
, instruction
, hcp_skb
);
916 skb_queue_tail(&hdev
->msg_rx_queue
, hcp_skb
);
917 schedule_work(&hdev
->msg_rx_work
);
921 static int hci_fw_download(struct nfc_dev
*nfc_dev
, const char *firmware_name
)
923 struct nfc_hci_dev
*hdev
= nfc_get_drvdata(nfc_dev
);
925 if (!hdev
->ops
->fw_download
)
928 return hdev
->ops
->fw_download(hdev
, firmware_name
);
931 static const struct nfc_ops hci_nfc_ops
= {
932 .dev_up
= hci_dev_up
,
933 .dev_down
= hci_dev_down
,
934 .start_poll
= hci_start_poll
,
935 .stop_poll
= hci_stop_poll
,
936 .dep_link_up
= hci_dep_link_up
,
937 .dep_link_down
= hci_dep_link_down
,
938 .activate_target
= hci_activate_target
,
939 .deactivate_target
= hci_deactivate_target
,
940 .im_transceive
= hci_transceive
,
941 .tm_send
= hci_tm_send
,
942 .check_presence
= hci_check_presence
,
943 .fw_download
= hci_fw_download
,
944 .discover_se
= hci_discover_se
,
945 .enable_se
= hci_enable_se
,
946 .disable_se
= hci_disable_se
,
950 struct nfc_hci_dev
*nfc_hci_allocate_device(const struct nfc_hci_ops
*ops
,
951 struct nfc_hci_init_data
*init_data
,
952 unsigned long quirks
,
954 const char *llc_name
,
957 int max_link_payload
)
959 struct nfc_hci_dev
*hdev
;
961 if (ops
->xmit
== NULL
)
967 hdev
= kzalloc(sizeof(struct nfc_hci_dev
), GFP_KERNEL
);
971 hdev
->llc
= nfc_llc_allocate(llc_name
, hdev
, ops
->xmit
,
972 nfc_hci_recv_from_llc
, tx_headroom
,
973 tx_tailroom
, nfc_hci_llc_failure
);
974 if (hdev
->llc
== NULL
) {
979 hdev
->ndev
= nfc_allocate_device(&hci_nfc_ops
, protocols
,
980 tx_headroom
+ HCI_CMDS_HEADROOM
,
983 nfc_llc_free(hdev
->llc
);
989 hdev
->max_data_link_payload
= max_link_payload
;
990 hdev
->init_data
= *init_data
;
992 nfc_set_drvdata(hdev
->ndev
, hdev
);
994 nfc_hci_reset_pipes(hdev
);
996 hdev
->quirks
= quirks
;
1000 EXPORT_SYMBOL(nfc_hci_allocate_device
);
1002 void nfc_hci_free_device(struct nfc_hci_dev
*hdev
)
1004 nfc_free_device(hdev
->ndev
);
1005 nfc_llc_free(hdev
->llc
);
1008 EXPORT_SYMBOL(nfc_hci_free_device
);
1010 int nfc_hci_register_device(struct nfc_hci_dev
*hdev
)
1012 mutex_init(&hdev
->msg_tx_mutex
);
1014 INIT_LIST_HEAD(&hdev
->msg_tx_queue
);
1016 INIT_WORK(&hdev
->msg_tx_work
, nfc_hci_msg_tx_work
);
1018 timer_setup(&hdev
->cmd_timer
, nfc_hci_cmd_timeout
, 0);
1020 skb_queue_head_init(&hdev
->rx_hcp_frags
);
1022 INIT_WORK(&hdev
->msg_rx_work
, nfc_hci_msg_rx_work
);
1024 skb_queue_head_init(&hdev
->msg_rx_queue
);
1026 return nfc_register_device(hdev
->ndev
);
1028 EXPORT_SYMBOL(nfc_hci_register_device
);
1030 void nfc_hci_unregister_device(struct nfc_hci_dev
*hdev
)
1032 struct hci_msg
*msg
, *n
;
1034 mutex_lock(&hdev
->msg_tx_mutex
);
1036 if (hdev
->cmd_pending_msg
) {
1037 if (hdev
->cmd_pending_msg
->cb
)
1038 hdev
->cmd_pending_msg
->cb(
1039 hdev
->cmd_pending_msg
->cb_context
,
1041 kfree(hdev
->cmd_pending_msg
);
1042 hdev
->cmd_pending_msg
= NULL
;
1045 hdev
->shutting_down
= true;
1047 mutex_unlock(&hdev
->msg_tx_mutex
);
1049 del_timer_sync(&hdev
->cmd_timer
);
1050 cancel_work_sync(&hdev
->msg_tx_work
);
1052 cancel_work_sync(&hdev
->msg_rx_work
);
1054 nfc_unregister_device(hdev
->ndev
);
1056 skb_queue_purge(&hdev
->rx_hcp_frags
);
1057 skb_queue_purge(&hdev
->msg_rx_queue
);
1059 list_for_each_entry_safe(msg
, n
, &hdev
->msg_tx_queue
, msg_l
) {
1060 list_del(&msg
->msg_l
);
1061 skb_queue_purge(&msg
->msg_frags
);
1065 EXPORT_SYMBOL(nfc_hci_unregister_device
);
1067 void nfc_hci_set_clientdata(struct nfc_hci_dev
*hdev
, void *clientdata
)
1069 hdev
->clientdata
= clientdata
;
1071 EXPORT_SYMBOL(nfc_hci_set_clientdata
);
1073 void *nfc_hci_get_clientdata(struct nfc_hci_dev
*hdev
)
1075 return hdev
->clientdata
;
1077 EXPORT_SYMBOL(nfc_hci_get_clientdata
);
1079 void nfc_hci_driver_failure(struct nfc_hci_dev
*hdev
, int err
)
1081 nfc_hci_failure(hdev
, err
);
1083 EXPORT_SYMBOL(nfc_hci_driver_failure
);
1085 void nfc_hci_recv_frame(struct nfc_hci_dev
*hdev
, struct sk_buff
*skb
)
1087 nfc_llc_rcv_from_drv(hdev
->llc
, skb
);
1089 EXPORT_SYMBOL(nfc_hci_recv_frame
);
1091 static int __init
nfc_hci_init(void)
1093 return nfc_llc_init();
1096 static void __exit
nfc_hci_exit(void)
1101 subsys_initcall(nfc_hci_init
);
1102 module_exit(nfc_hci_exit
);
1104 MODULE_LICENSE("GPL");
1105 MODULE_DESCRIPTION("NFC HCI Core");