2 * The NFC Controller Interface is the communication protocol between an
3 * NFC Controller (NFCC) and a Device Host (DH).
5 * Copyright (C) 2011 Texas Instruments, Inc.
6 * Copyright (C) 2014 Marvell International Ltd.
8 * Written by Ilan Elias <ilane@ti.com>
11 * This file is based on hci_core.c, which was written
12 * by Maxim Krasnyansky.
14 * This program is free software; you can redistribute it and/or modify
15 * it under the terms of the GNU General Public License version 2
16 * as published by the Free Software Foundation
18 * This program is distributed in the hope that it will be useful,
19 * but WITHOUT ANY WARRANTY; without even the implied warranty of
20 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
21 * GNU General Public License for more details.
23 * You should have received a copy of the GNU General Public License
24 * along with this program; if not, see <http://www.gnu.org/licenses/>.
28 #define pr_fmt(fmt) KBUILD_MODNAME ": %s: " fmt, __func__
30 #include <linux/module.h>
31 #include <linux/kernel.h>
32 #include <linux/types.h>
33 #include <linux/workqueue.h>
34 #include <linux/completion.h>
35 #include <linux/export.h>
36 #include <linux/sched.h>
37 #include <linux/bitops.h>
38 #include <linux/skbuff.h>
41 #include <net/nfc/nci.h>
42 #include <net/nfc/nci_core.h>
43 #include <linux/nfc.h>
45 struct core_conn_create_data
{
47 struct nci_core_conn_create_cmd
*cmd
;
50 static void nci_cmd_work(struct work_struct
*work
);
51 static void nci_rx_work(struct work_struct
*work
);
52 static void nci_tx_work(struct work_struct
*work
);
54 struct nci_conn_info
*nci_get_conn_info_by_conn_id(struct nci_dev
*ndev
,
57 struct nci_conn_info
*conn_info
;
59 list_for_each_entry(conn_info
, &ndev
->conn_info_list
, list
) {
60 if (conn_info
->conn_id
== conn_id
)
67 int nci_get_conn_info_by_dest_type_params(struct nci_dev
*ndev
, u8 dest_type
,
68 struct dest_spec_params
*params
)
70 struct nci_conn_info
*conn_info
;
72 list_for_each_entry(conn_info
, &ndev
->conn_info_list
, list
) {
73 if (conn_info
->dest_type
== dest_type
) {
75 return conn_info
->conn_id
;
77 if (params
->id
== conn_info
->dest_params
->id
&&
78 params
->protocol
== conn_info
->dest_params
->protocol
)
79 return conn_info
->conn_id
;
86 EXPORT_SYMBOL(nci_get_conn_info_by_dest_type_params
);
88 /* ---- NCI requests ---- */
90 void nci_req_complete(struct nci_dev
*ndev
, int result
)
92 if (ndev
->req_status
== NCI_REQ_PEND
) {
93 ndev
->req_result
= result
;
94 ndev
->req_status
= NCI_REQ_DONE
;
95 complete(&ndev
->req_completion
);
98 EXPORT_SYMBOL(nci_req_complete
);
100 static void nci_req_cancel(struct nci_dev
*ndev
, int err
)
102 if (ndev
->req_status
== NCI_REQ_PEND
) {
103 ndev
->req_result
= err
;
104 ndev
->req_status
= NCI_REQ_CANCELED
;
105 complete(&ndev
->req_completion
);
109 /* Execute request and wait for completion. */
110 static int __nci_request(struct nci_dev
*ndev
,
111 void (*req
)(struct nci_dev
*ndev
, unsigned long opt
),
112 unsigned long opt
, __u32 timeout
)
117 ndev
->req_status
= NCI_REQ_PEND
;
119 reinit_completion(&ndev
->req_completion
);
122 wait_for_completion_interruptible_timeout(&ndev
->req_completion
,
125 pr_debug("wait_for_completion return %ld\n", completion_rc
);
127 if (completion_rc
> 0) {
128 switch (ndev
->req_status
) {
130 rc
= nci_to_errno(ndev
->req_result
);
133 case NCI_REQ_CANCELED
:
134 rc
= -ndev
->req_result
;
142 pr_err("wait_for_completion_interruptible_timeout failed %ld\n",
145 rc
= ((completion_rc
== 0) ? (-ETIMEDOUT
) : (completion_rc
));
148 ndev
->req_status
= ndev
->req_result
= 0;
153 inline int nci_request(struct nci_dev
*ndev
,
154 void (*req
)(struct nci_dev
*ndev
,
156 unsigned long opt
, __u32 timeout
)
160 if (!test_bit(NCI_UP
, &ndev
->flags
))
163 /* Serialize all requests */
164 mutex_lock(&ndev
->req_lock
);
165 rc
= __nci_request(ndev
, req
, opt
, timeout
);
166 mutex_unlock(&ndev
->req_lock
);
171 static void nci_reset_req(struct nci_dev
*ndev
, unsigned long opt
)
173 struct nci_core_reset_cmd cmd
;
175 cmd
.reset_type
= NCI_RESET_TYPE_RESET_CONFIG
;
176 nci_send_cmd(ndev
, NCI_OP_CORE_RESET_CMD
, 1, &cmd
);
179 static void nci_init_req(struct nci_dev
*ndev
, unsigned long opt
)
181 nci_send_cmd(ndev
, NCI_OP_CORE_INIT_CMD
, 0, NULL
);
184 static void nci_init_complete_req(struct nci_dev
*ndev
, unsigned long opt
)
186 struct nci_rf_disc_map_cmd cmd
;
187 struct disc_map_config
*cfg
= cmd
.mapping_configs
;
188 __u8
*num
= &cmd
.num_mapping_configs
;
191 /* set rf mapping configurations */
194 /* by default mapping is set to NCI_RF_INTERFACE_FRAME */
195 for (i
= 0; i
< ndev
->num_supported_rf_interfaces
; i
++) {
196 if (ndev
->supported_rf_interfaces
[i
] ==
197 NCI_RF_INTERFACE_ISO_DEP
) {
198 cfg
[*num
].rf_protocol
= NCI_RF_PROTOCOL_ISO_DEP
;
199 cfg
[*num
].mode
= NCI_DISC_MAP_MODE_POLL
|
200 NCI_DISC_MAP_MODE_LISTEN
;
201 cfg
[*num
].rf_interface
= NCI_RF_INTERFACE_ISO_DEP
;
203 } else if (ndev
->supported_rf_interfaces
[i
] ==
204 NCI_RF_INTERFACE_NFC_DEP
) {
205 cfg
[*num
].rf_protocol
= NCI_RF_PROTOCOL_NFC_DEP
;
206 cfg
[*num
].mode
= NCI_DISC_MAP_MODE_POLL
|
207 NCI_DISC_MAP_MODE_LISTEN
;
208 cfg
[*num
].rf_interface
= NCI_RF_INTERFACE_NFC_DEP
;
212 if (*num
== NCI_MAX_NUM_MAPPING_CONFIGS
)
216 nci_send_cmd(ndev
, NCI_OP_RF_DISCOVER_MAP_CMD
,
217 (1 + ((*num
) * sizeof(struct disc_map_config
))), &cmd
);
220 struct nci_set_config_param
{
226 static void nci_set_config_req(struct nci_dev
*ndev
, unsigned long opt
)
228 struct nci_set_config_param
*param
= (struct nci_set_config_param
*)opt
;
229 struct nci_core_set_config_cmd cmd
;
231 BUG_ON(param
->len
> NCI_MAX_PARAM_LEN
);
234 cmd
.param
.id
= param
->id
;
235 cmd
.param
.len
= param
->len
;
236 memcpy(cmd
.param
.val
, param
->val
, param
->len
);
238 nci_send_cmd(ndev
, NCI_OP_CORE_SET_CONFIG_CMD
, (3 + param
->len
), &cmd
);
241 struct nci_rf_discover_param
{
246 static void nci_rf_discover_req(struct nci_dev
*ndev
, unsigned long opt
)
248 struct nci_rf_discover_param
*param
=
249 (struct nci_rf_discover_param
*)opt
;
250 struct nci_rf_disc_cmd cmd
;
252 cmd
.num_disc_configs
= 0;
254 if ((cmd
.num_disc_configs
< NCI_MAX_NUM_RF_CONFIGS
) &&
255 (param
->im_protocols
& NFC_PROTO_JEWEL_MASK
||
256 param
->im_protocols
& NFC_PROTO_MIFARE_MASK
||
257 param
->im_protocols
& NFC_PROTO_ISO14443_MASK
||
258 param
->im_protocols
& NFC_PROTO_NFC_DEP_MASK
)) {
259 cmd
.disc_configs
[cmd
.num_disc_configs
].rf_tech_and_mode
=
260 NCI_NFC_A_PASSIVE_POLL_MODE
;
261 cmd
.disc_configs
[cmd
.num_disc_configs
].frequency
= 1;
262 cmd
.num_disc_configs
++;
265 if ((cmd
.num_disc_configs
< NCI_MAX_NUM_RF_CONFIGS
) &&
266 (param
->im_protocols
& NFC_PROTO_ISO14443_B_MASK
)) {
267 cmd
.disc_configs
[cmd
.num_disc_configs
].rf_tech_and_mode
=
268 NCI_NFC_B_PASSIVE_POLL_MODE
;
269 cmd
.disc_configs
[cmd
.num_disc_configs
].frequency
= 1;
270 cmd
.num_disc_configs
++;
273 if ((cmd
.num_disc_configs
< NCI_MAX_NUM_RF_CONFIGS
) &&
274 (param
->im_protocols
& NFC_PROTO_FELICA_MASK
||
275 param
->im_protocols
& NFC_PROTO_NFC_DEP_MASK
)) {
276 cmd
.disc_configs
[cmd
.num_disc_configs
].rf_tech_and_mode
=
277 NCI_NFC_F_PASSIVE_POLL_MODE
;
278 cmd
.disc_configs
[cmd
.num_disc_configs
].frequency
= 1;
279 cmd
.num_disc_configs
++;
282 if ((cmd
.num_disc_configs
< NCI_MAX_NUM_RF_CONFIGS
) &&
283 (param
->im_protocols
& NFC_PROTO_ISO15693_MASK
)) {
284 cmd
.disc_configs
[cmd
.num_disc_configs
].rf_tech_and_mode
=
285 NCI_NFC_V_PASSIVE_POLL_MODE
;
286 cmd
.disc_configs
[cmd
.num_disc_configs
].frequency
= 1;
287 cmd
.num_disc_configs
++;
290 if ((cmd
.num_disc_configs
< NCI_MAX_NUM_RF_CONFIGS
- 1) &&
291 (param
->tm_protocols
& NFC_PROTO_NFC_DEP_MASK
)) {
292 cmd
.disc_configs
[cmd
.num_disc_configs
].rf_tech_and_mode
=
293 NCI_NFC_A_PASSIVE_LISTEN_MODE
;
294 cmd
.disc_configs
[cmd
.num_disc_configs
].frequency
= 1;
295 cmd
.num_disc_configs
++;
296 cmd
.disc_configs
[cmd
.num_disc_configs
].rf_tech_and_mode
=
297 NCI_NFC_F_PASSIVE_LISTEN_MODE
;
298 cmd
.disc_configs
[cmd
.num_disc_configs
].frequency
= 1;
299 cmd
.num_disc_configs
++;
302 nci_send_cmd(ndev
, NCI_OP_RF_DISCOVER_CMD
,
303 (1 + (cmd
.num_disc_configs
* sizeof(struct disc_config
))),
307 struct nci_rf_discover_select_param
{
308 __u8 rf_discovery_id
;
312 static void nci_rf_discover_select_req(struct nci_dev
*ndev
, unsigned long opt
)
314 struct nci_rf_discover_select_param
*param
=
315 (struct nci_rf_discover_select_param
*)opt
;
316 struct nci_rf_discover_select_cmd cmd
;
318 cmd
.rf_discovery_id
= param
->rf_discovery_id
;
319 cmd
.rf_protocol
= param
->rf_protocol
;
321 switch (cmd
.rf_protocol
) {
322 case NCI_RF_PROTOCOL_ISO_DEP
:
323 cmd
.rf_interface
= NCI_RF_INTERFACE_ISO_DEP
;
326 case NCI_RF_PROTOCOL_NFC_DEP
:
327 cmd
.rf_interface
= NCI_RF_INTERFACE_NFC_DEP
;
331 cmd
.rf_interface
= NCI_RF_INTERFACE_FRAME
;
335 nci_send_cmd(ndev
, NCI_OP_RF_DISCOVER_SELECT_CMD
,
336 sizeof(struct nci_rf_discover_select_cmd
), &cmd
);
339 static void nci_rf_deactivate_req(struct nci_dev
*ndev
, unsigned long opt
)
341 struct nci_rf_deactivate_cmd cmd
;
345 nci_send_cmd(ndev
, NCI_OP_RF_DEACTIVATE_CMD
,
346 sizeof(struct nci_rf_deactivate_cmd
), &cmd
);
349 struct nci_cmd_param
{
355 static void nci_generic_req(struct nci_dev
*ndev
, unsigned long opt
)
357 struct nci_cmd_param
*param
=
358 (struct nci_cmd_param
*)opt
;
360 nci_send_cmd(ndev
, param
->opcode
, param
->len
, param
->payload
);
363 int nci_prop_cmd(struct nci_dev
*ndev
, __u8 oid
, size_t len
, __u8
*payload
)
365 struct nci_cmd_param param
;
367 param
.opcode
= nci_opcode_pack(NCI_GID_PROPRIETARY
, oid
);
369 param
.payload
= payload
;
371 return __nci_request(ndev
, nci_generic_req
, (unsigned long)¶m
,
372 msecs_to_jiffies(NCI_CMD_TIMEOUT
));
374 EXPORT_SYMBOL(nci_prop_cmd
);
376 int nci_core_cmd(struct nci_dev
*ndev
, __u16 opcode
, size_t len
, __u8
*payload
)
378 struct nci_cmd_param param
;
380 param
.opcode
= opcode
;
382 param
.payload
= payload
;
384 return __nci_request(ndev
, nci_generic_req
, (unsigned long)¶m
,
385 msecs_to_jiffies(NCI_CMD_TIMEOUT
));
387 EXPORT_SYMBOL(nci_core_cmd
);
389 int nci_core_reset(struct nci_dev
*ndev
)
391 return __nci_request(ndev
, nci_reset_req
, 0,
392 msecs_to_jiffies(NCI_RESET_TIMEOUT
));
394 EXPORT_SYMBOL(nci_core_reset
);
396 int nci_core_init(struct nci_dev
*ndev
)
398 return __nci_request(ndev
, nci_init_req
, 0,
399 msecs_to_jiffies(NCI_INIT_TIMEOUT
));
401 EXPORT_SYMBOL(nci_core_init
);
403 struct nci_loopback_data
{
405 struct sk_buff
*data
;
408 static void nci_send_data_req(struct nci_dev
*ndev
, unsigned long opt
)
410 struct nci_loopback_data
*data
= (struct nci_loopback_data
*)opt
;
412 nci_send_data(ndev
, data
->conn_id
, data
->data
);
415 static void nci_nfcc_loopback_cb(void *context
, struct sk_buff
*skb
, int err
)
417 struct nci_dev
*ndev
= (struct nci_dev
*)context
;
418 struct nci_conn_info
*conn_info
;
420 conn_info
= nci_get_conn_info_by_conn_id(ndev
, ndev
->cur_conn_id
);
422 nci_req_complete(ndev
, NCI_STATUS_REJECTED
);
426 conn_info
->rx_skb
= skb
;
428 nci_req_complete(ndev
, NCI_STATUS_OK
);
431 int nci_nfcc_loopback(struct nci_dev
*ndev
, void *data
, size_t data_len
,
432 struct sk_buff
**resp
)
435 struct nci_loopback_data loopback_data
;
436 struct nci_conn_info
*conn_info
;
438 int conn_id
= nci_get_conn_info_by_dest_type_params(ndev
,
439 NCI_DESTINATION_NFCC_LOOPBACK
, NULL
);
442 r
= nci_core_conn_create(ndev
, NCI_DESTINATION_NFCC_LOOPBACK
,
444 if (r
!= NCI_STATUS_OK
)
447 conn_id
= nci_get_conn_info_by_dest_type_params(ndev
,
448 NCI_DESTINATION_NFCC_LOOPBACK
,
452 conn_info
= nci_get_conn_info_by_conn_id(ndev
, conn_id
);
456 /* store cb and context to be used on receiving data */
457 conn_info
->data_exchange_cb
= nci_nfcc_loopback_cb
;
458 conn_info
->data_exchange_cb_context
= ndev
;
460 skb
= nci_skb_alloc(ndev
, NCI_DATA_HDR_SIZE
+ data_len
, GFP_KERNEL
);
464 skb_reserve(skb
, NCI_DATA_HDR_SIZE
);
465 memcpy(skb_put(skb
, data_len
), data
, data_len
);
467 loopback_data
.conn_id
= conn_id
;
468 loopback_data
.data
= skb
;
470 ndev
->cur_conn_id
= conn_id
;
471 r
= nci_request(ndev
, nci_send_data_req
, (unsigned long)&loopback_data
,
472 msecs_to_jiffies(NCI_DATA_TIMEOUT
));
473 if (r
== NCI_STATUS_OK
&& resp
)
474 *resp
= conn_info
->rx_skb
;
478 EXPORT_SYMBOL(nci_nfcc_loopback
);
480 static int nci_open_device(struct nci_dev
*ndev
)
484 mutex_lock(&ndev
->req_lock
);
486 if (test_bit(NCI_UP
, &ndev
->flags
)) {
491 if (ndev
->ops
->open(ndev
)) {
496 atomic_set(&ndev
->cmd_cnt
, 1);
498 set_bit(NCI_INIT
, &ndev
->flags
);
501 rc
= ndev
->ops
->init(ndev
);
504 rc
= __nci_request(ndev
, nci_reset_req
, 0,
505 msecs_to_jiffies(NCI_RESET_TIMEOUT
));
508 if (!rc
&& ndev
->ops
->setup
) {
509 rc
= ndev
->ops
->setup(ndev
);
513 rc
= __nci_request(ndev
, nci_init_req
, 0,
514 msecs_to_jiffies(NCI_INIT_TIMEOUT
));
517 if (!rc
&& ndev
->ops
->post_setup
)
518 rc
= ndev
->ops
->post_setup(ndev
);
521 rc
= __nci_request(ndev
, nci_init_complete_req
, 0,
522 msecs_to_jiffies(NCI_INIT_TIMEOUT
));
525 clear_bit(NCI_INIT
, &ndev
->flags
);
528 set_bit(NCI_UP
, &ndev
->flags
);
529 nci_clear_target_list(ndev
);
530 atomic_set(&ndev
->state
, NCI_IDLE
);
532 /* Init failed, cleanup */
533 skb_queue_purge(&ndev
->cmd_q
);
534 skb_queue_purge(&ndev
->rx_q
);
535 skb_queue_purge(&ndev
->tx_q
);
537 ndev
->ops
->close(ndev
);
542 mutex_unlock(&ndev
->req_lock
);
546 static int nci_close_device(struct nci_dev
*ndev
)
548 nci_req_cancel(ndev
, ENODEV
);
549 mutex_lock(&ndev
->req_lock
);
551 if (!test_and_clear_bit(NCI_UP
, &ndev
->flags
)) {
552 del_timer_sync(&ndev
->cmd_timer
);
553 del_timer_sync(&ndev
->data_timer
);
554 mutex_unlock(&ndev
->req_lock
);
558 /* Drop RX and TX queues */
559 skb_queue_purge(&ndev
->rx_q
);
560 skb_queue_purge(&ndev
->tx_q
);
562 /* Flush RX and TX wq */
563 flush_workqueue(ndev
->rx_wq
);
564 flush_workqueue(ndev
->tx_wq
);
567 skb_queue_purge(&ndev
->cmd_q
);
568 atomic_set(&ndev
->cmd_cnt
, 1);
570 set_bit(NCI_INIT
, &ndev
->flags
);
571 __nci_request(ndev
, nci_reset_req
, 0,
572 msecs_to_jiffies(NCI_RESET_TIMEOUT
));
574 /* After this point our queues are empty
575 * and no works are scheduled.
577 ndev
->ops
->close(ndev
);
579 clear_bit(NCI_INIT
, &ndev
->flags
);
581 del_timer_sync(&ndev
->cmd_timer
);
584 flush_workqueue(ndev
->cmd_wq
);
589 mutex_unlock(&ndev
->req_lock
);
594 /* NCI command timer function */
595 static void nci_cmd_timer(unsigned long arg
)
597 struct nci_dev
*ndev
= (void *) arg
;
599 atomic_set(&ndev
->cmd_cnt
, 1);
600 queue_work(ndev
->cmd_wq
, &ndev
->cmd_work
);
603 /* NCI data exchange timer function */
604 static void nci_data_timer(unsigned long arg
)
606 struct nci_dev
*ndev
= (void *) arg
;
608 set_bit(NCI_DATA_EXCHANGE_TO
, &ndev
->flags
);
609 queue_work(ndev
->rx_wq
, &ndev
->rx_work
);
612 static int nci_dev_up(struct nfc_dev
*nfc_dev
)
614 struct nci_dev
*ndev
= nfc_get_drvdata(nfc_dev
);
616 return nci_open_device(ndev
);
619 static int nci_dev_down(struct nfc_dev
*nfc_dev
)
621 struct nci_dev
*ndev
= nfc_get_drvdata(nfc_dev
);
623 return nci_close_device(ndev
);
626 int nci_set_config(struct nci_dev
*ndev
, __u8 id
, size_t len
, __u8
*val
)
628 struct nci_set_config_param param
;
637 return __nci_request(ndev
, nci_set_config_req
, (unsigned long)¶m
,
638 msecs_to_jiffies(NCI_SET_CONFIG_TIMEOUT
));
640 EXPORT_SYMBOL(nci_set_config
);
642 static void nci_nfcee_discover_req(struct nci_dev
*ndev
, unsigned long opt
)
644 struct nci_nfcee_discover_cmd cmd
;
647 cmd
.discovery_action
= action
;
649 nci_send_cmd(ndev
, NCI_OP_NFCEE_DISCOVER_CMD
, 1, &cmd
);
652 int nci_nfcee_discover(struct nci_dev
*ndev
, u8 action
)
654 return __nci_request(ndev
, nci_nfcee_discover_req
, action
,
655 msecs_to_jiffies(NCI_CMD_TIMEOUT
));
657 EXPORT_SYMBOL(nci_nfcee_discover
);
659 static void nci_nfcee_mode_set_req(struct nci_dev
*ndev
, unsigned long opt
)
661 struct nci_nfcee_mode_set_cmd
*cmd
=
662 (struct nci_nfcee_mode_set_cmd
*)opt
;
664 nci_send_cmd(ndev
, NCI_OP_NFCEE_MODE_SET_CMD
,
665 sizeof(struct nci_nfcee_mode_set_cmd
), cmd
);
668 int nci_nfcee_mode_set(struct nci_dev
*ndev
, u8 nfcee_id
, u8 nfcee_mode
)
670 struct nci_nfcee_mode_set_cmd cmd
;
672 cmd
.nfcee_id
= nfcee_id
;
673 cmd
.nfcee_mode
= nfcee_mode
;
675 return __nci_request(ndev
, nci_nfcee_mode_set_req
,
677 msecs_to_jiffies(NCI_CMD_TIMEOUT
));
679 EXPORT_SYMBOL(nci_nfcee_mode_set
);
681 static void nci_core_conn_create_req(struct nci_dev
*ndev
, unsigned long opt
)
683 struct core_conn_create_data
*data
=
684 (struct core_conn_create_data
*)opt
;
686 nci_send_cmd(ndev
, NCI_OP_CORE_CONN_CREATE_CMD
, data
->length
, data
->cmd
);
689 int nci_core_conn_create(struct nci_dev
*ndev
, u8 destination_type
,
690 u8 number_destination_params
,
692 struct core_conn_create_dest_spec_params
*params
)
695 struct nci_core_conn_create_cmd
*cmd
;
696 struct core_conn_create_data data
;
698 data
.length
= params_len
+ sizeof(struct nci_core_conn_create_cmd
);
699 cmd
= kzalloc(data
.length
, GFP_KERNEL
);
703 cmd
->destination_type
= destination_type
;
704 cmd
->number_destination_params
= number_destination_params
;
709 memcpy(cmd
->params
, params
, params_len
);
710 if (params
->length
> 0)
711 memcpy(&ndev
->cur_params
,
712 ¶ms
->value
[DEST_SPEC_PARAMS_ID_INDEX
],
713 sizeof(struct dest_spec_params
));
715 ndev
->cur_params
.id
= 0;
717 ndev
->cur_params
.id
= 0;
719 ndev
->cur_dest_type
= destination_type
;
721 r
= __nci_request(ndev
, nci_core_conn_create_req
, (unsigned long)&data
,
722 msecs_to_jiffies(NCI_CMD_TIMEOUT
));
726 EXPORT_SYMBOL(nci_core_conn_create
);
728 static void nci_core_conn_close_req(struct nci_dev
*ndev
, unsigned long opt
)
732 nci_send_cmd(ndev
, NCI_OP_CORE_CONN_CLOSE_CMD
, 1, &conn_id
);
735 int nci_core_conn_close(struct nci_dev
*ndev
, u8 conn_id
)
737 ndev
->cur_conn_id
= conn_id
;
738 return __nci_request(ndev
, nci_core_conn_close_req
, conn_id
,
739 msecs_to_jiffies(NCI_CMD_TIMEOUT
));
741 EXPORT_SYMBOL(nci_core_conn_close
);
743 static int nci_set_local_general_bytes(struct nfc_dev
*nfc_dev
)
745 struct nci_dev
*ndev
= nfc_get_drvdata(nfc_dev
);
746 struct nci_set_config_param param
;
749 param
.val
= nfc_get_local_general_bytes(nfc_dev
, ¶m
.len
);
750 if ((param
.val
== NULL
) || (param
.len
== 0))
753 if (param
.len
> NFC_MAX_GT_LEN
)
756 param
.id
= NCI_PN_ATR_REQ_GEN_BYTES
;
758 rc
= nci_request(ndev
, nci_set_config_req
, (unsigned long)¶m
,
759 msecs_to_jiffies(NCI_SET_CONFIG_TIMEOUT
));
763 param
.id
= NCI_LN_ATR_RES_GEN_BYTES
;
765 return nci_request(ndev
, nci_set_config_req
, (unsigned long)¶m
,
766 msecs_to_jiffies(NCI_SET_CONFIG_TIMEOUT
));
769 static int nci_set_listen_parameters(struct nfc_dev
*nfc_dev
)
771 struct nci_dev
*ndev
= nfc_get_drvdata(nfc_dev
);
775 val
= NCI_LA_SEL_INFO_NFC_DEP_MASK
;
777 rc
= nci_set_config(ndev
, NCI_LA_SEL_INFO
, 1, &val
);
781 val
= NCI_LF_PROTOCOL_TYPE_NFC_DEP_MASK
;
783 rc
= nci_set_config(ndev
, NCI_LF_PROTOCOL_TYPE
, 1, &val
);
787 val
= NCI_LF_CON_BITR_F_212
| NCI_LF_CON_BITR_F_424
;
789 return nci_set_config(ndev
, NCI_LF_CON_BITR_F
, 1, &val
);
792 static int nci_start_poll(struct nfc_dev
*nfc_dev
,
793 __u32 im_protocols
, __u32 tm_protocols
)
795 struct nci_dev
*ndev
= nfc_get_drvdata(nfc_dev
);
796 struct nci_rf_discover_param param
;
799 if ((atomic_read(&ndev
->state
) == NCI_DISCOVERY
) ||
800 (atomic_read(&ndev
->state
) == NCI_W4_ALL_DISCOVERIES
)) {
801 pr_err("unable to start poll, since poll is already active\n");
805 if (ndev
->target_active_prot
) {
806 pr_err("there is an active target\n");
810 if ((atomic_read(&ndev
->state
) == NCI_W4_HOST_SELECT
) ||
811 (atomic_read(&ndev
->state
) == NCI_POLL_ACTIVE
)) {
812 pr_debug("target active or w4 select, implicitly deactivate\n");
814 rc
= nci_request(ndev
, nci_rf_deactivate_req
,
815 NCI_DEACTIVATE_TYPE_IDLE_MODE
,
816 msecs_to_jiffies(NCI_RF_DEACTIVATE_TIMEOUT
));
821 if ((im_protocols
| tm_protocols
) & NFC_PROTO_NFC_DEP_MASK
) {
822 rc
= nci_set_local_general_bytes(nfc_dev
);
824 pr_err("failed to set local general bytes\n");
829 if (tm_protocols
& NFC_PROTO_NFC_DEP_MASK
) {
830 rc
= nci_set_listen_parameters(nfc_dev
);
832 pr_err("failed to set listen parameters\n");
835 param
.im_protocols
= im_protocols
;
836 param
.tm_protocols
= tm_protocols
;
837 rc
= nci_request(ndev
, nci_rf_discover_req
, (unsigned long)¶m
,
838 msecs_to_jiffies(NCI_RF_DISC_TIMEOUT
));
841 ndev
->poll_prots
= im_protocols
;
846 static void nci_stop_poll(struct nfc_dev
*nfc_dev
)
848 struct nci_dev
*ndev
= nfc_get_drvdata(nfc_dev
);
850 if ((atomic_read(&ndev
->state
) != NCI_DISCOVERY
) &&
851 (atomic_read(&ndev
->state
) != NCI_W4_ALL_DISCOVERIES
)) {
852 pr_err("unable to stop poll, since poll is not active\n");
856 nci_request(ndev
, nci_rf_deactivate_req
, NCI_DEACTIVATE_TYPE_IDLE_MODE
,
857 msecs_to_jiffies(NCI_RF_DEACTIVATE_TIMEOUT
));
860 static int nci_activate_target(struct nfc_dev
*nfc_dev
,
861 struct nfc_target
*target
, __u32 protocol
)
863 struct nci_dev
*ndev
= nfc_get_drvdata(nfc_dev
);
864 struct nci_rf_discover_select_param param
;
865 struct nfc_target
*nci_target
= NULL
;
869 pr_debug("target_idx %d, protocol 0x%x\n", target
->idx
, protocol
);
871 if ((atomic_read(&ndev
->state
) != NCI_W4_HOST_SELECT
) &&
872 (atomic_read(&ndev
->state
) != NCI_POLL_ACTIVE
)) {
873 pr_err("there is no available target to activate\n");
877 if (ndev
->target_active_prot
) {
878 pr_err("there is already an active target\n");
882 for (i
= 0; i
< ndev
->n_targets
; i
++) {
883 if (ndev
->targets
[i
].idx
== target
->idx
) {
884 nci_target
= &ndev
->targets
[i
];
890 pr_err("unable to find the selected target\n");
894 if (!(nci_target
->supported_protocols
& (1 << protocol
))) {
895 pr_err("target does not support the requested protocol 0x%x\n",
900 if (atomic_read(&ndev
->state
) == NCI_W4_HOST_SELECT
) {
901 param
.rf_discovery_id
= nci_target
->logical_idx
;
903 if (protocol
== NFC_PROTO_JEWEL
)
904 param
.rf_protocol
= NCI_RF_PROTOCOL_T1T
;
905 else if (protocol
== NFC_PROTO_MIFARE
)
906 param
.rf_protocol
= NCI_RF_PROTOCOL_T2T
;
907 else if (protocol
== NFC_PROTO_FELICA
)
908 param
.rf_protocol
= NCI_RF_PROTOCOL_T3T
;
909 else if (protocol
== NFC_PROTO_ISO14443
||
910 protocol
== NFC_PROTO_ISO14443_B
)
911 param
.rf_protocol
= NCI_RF_PROTOCOL_ISO_DEP
;
913 param
.rf_protocol
= NCI_RF_PROTOCOL_NFC_DEP
;
915 rc
= nci_request(ndev
, nci_rf_discover_select_req
,
916 (unsigned long)¶m
,
917 msecs_to_jiffies(NCI_RF_DISC_SELECT_TIMEOUT
));
921 ndev
->target_active_prot
= protocol
;
926 static void nci_deactivate_target(struct nfc_dev
*nfc_dev
,
927 struct nfc_target
*target
,
930 struct nci_dev
*ndev
= nfc_get_drvdata(nfc_dev
);
931 u8 nci_mode
= NCI_DEACTIVATE_TYPE_IDLE_MODE
;
935 if (!ndev
->target_active_prot
) {
936 pr_err("unable to deactivate target, no active target\n");
940 ndev
->target_active_prot
= 0;
943 case NFC_TARGET_MODE_SLEEP
:
944 nci_mode
= NCI_DEACTIVATE_TYPE_SLEEP_MODE
;
948 if (atomic_read(&ndev
->state
) == NCI_POLL_ACTIVE
) {
949 nci_request(ndev
, nci_rf_deactivate_req
, nci_mode
,
950 msecs_to_jiffies(NCI_RF_DEACTIVATE_TIMEOUT
));
954 static int nci_dep_link_up(struct nfc_dev
*nfc_dev
, struct nfc_target
*target
,
955 __u8 comm_mode
, __u8
*gb
, size_t gb_len
)
957 struct nci_dev
*ndev
= nfc_get_drvdata(nfc_dev
);
960 pr_debug("target_idx %d, comm_mode %d\n", target
->idx
, comm_mode
);
962 rc
= nci_activate_target(nfc_dev
, target
, NFC_PROTO_NFC_DEP
);
966 rc
= nfc_set_remote_general_bytes(nfc_dev
, ndev
->remote_gb
,
967 ndev
->remote_gb_len
);
969 rc
= nfc_dep_link_is_up(nfc_dev
, target
->idx
, NFC_COMM_PASSIVE
,
975 static int nci_dep_link_down(struct nfc_dev
*nfc_dev
)
977 struct nci_dev
*ndev
= nfc_get_drvdata(nfc_dev
);
982 if (nfc_dev
->rf_mode
== NFC_RF_INITIATOR
) {
983 nci_deactivate_target(nfc_dev
, NULL
, NCI_DEACTIVATE_TYPE_IDLE_MODE
);
985 if (atomic_read(&ndev
->state
) == NCI_LISTEN_ACTIVE
||
986 atomic_read(&ndev
->state
) == NCI_DISCOVERY
) {
987 nci_request(ndev
, nci_rf_deactivate_req
, 0,
988 msecs_to_jiffies(NCI_RF_DEACTIVATE_TIMEOUT
));
991 rc
= nfc_tm_deactivated(nfc_dev
);
993 pr_err("error when signaling tm deactivation\n");
1000 static int nci_transceive(struct nfc_dev
*nfc_dev
, struct nfc_target
*target
,
1001 struct sk_buff
*skb
,
1002 data_exchange_cb_t cb
, void *cb_context
)
1004 struct nci_dev
*ndev
= nfc_get_drvdata(nfc_dev
);
1006 struct nci_conn_info
*conn_info
;
1008 conn_info
= ndev
->rf_conn_info
;
1012 pr_debug("target_idx %d, len %d\n", target
->idx
, skb
->len
);
1014 if (!ndev
->target_active_prot
) {
1015 pr_err("unable to exchange data, no active target\n");
1019 if (test_and_set_bit(NCI_DATA_EXCHANGE
, &ndev
->flags
))
1022 /* store cb and context to be used on receiving data */
1023 conn_info
->data_exchange_cb
= cb
;
1024 conn_info
->data_exchange_cb_context
= cb_context
;
1026 rc
= nci_send_data(ndev
, NCI_STATIC_RF_CONN_ID
, skb
);
1028 clear_bit(NCI_DATA_EXCHANGE
, &ndev
->flags
);
1033 static int nci_tm_send(struct nfc_dev
*nfc_dev
, struct sk_buff
*skb
)
1035 struct nci_dev
*ndev
= nfc_get_drvdata(nfc_dev
);
1038 rc
= nci_send_data(ndev
, NCI_STATIC_RF_CONN_ID
, skb
);
1040 pr_err("unable to send data\n");
1045 static int nci_enable_se(struct nfc_dev
*nfc_dev
, u32 se_idx
)
1047 struct nci_dev
*ndev
= nfc_get_drvdata(nfc_dev
);
1049 if (ndev
->ops
->enable_se
)
1050 return ndev
->ops
->enable_se(ndev
, se_idx
);
1055 static int nci_disable_se(struct nfc_dev
*nfc_dev
, u32 se_idx
)
1057 struct nci_dev
*ndev
= nfc_get_drvdata(nfc_dev
);
1059 if (ndev
->ops
->disable_se
)
1060 return ndev
->ops
->disable_se(ndev
, se_idx
);
1065 static int nci_discover_se(struct nfc_dev
*nfc_dev
)
1068 struct nci_dev
*ndev
= nfc_get_drvdata(nfc_dev
);
1070 if (ndev
->ops
->discover_se
) {
1071 r
= nci_nfcee_discover(ndev
, NCI_NFCEE_DISCOVERY_ACTION_ENABLE
);
1072 if (r
!= NCI_STATUS_OK
)
1075 return ndev
->ops
->discover_se(ndev
);
1081 static int nci_se_io(struct nfc_dev
*nfc_dev
, u32 se_idx
,
1082 u8
*apdu
, size_t apdu_length
,
1083 se_io_cb_t cb
, void *cb_context
)
1085 struct nci_dev
*ndev
= nfc_get_drvdata(nfc_dev
);
1087 if (ndev
->ops
->se_io
)
1088 return ndev
->ops
->se_io(ndev
, se_idx
, apdu
,
1089 apdu_length
, cb
, cb_context
);
1094 static int nci_fw_download(struct nfc_dev
*nfc_dev
, const char *firmware_name
)
1096 struct nci_dev
*ndev
= nfc_get_drvdata(nfc_dev
);
1098 if (!ndev
->ops
->fw_download
)
1101 return ndev
->ops
->fw_download(ndev
, firmware_name
);
1104 static struct nfc_ops nci_nfc_ops
= {
1105 .dev_up
= nci_dev_up
,
1106 .dev_down
= nci_dev_down
,
1107 .start_poll
= nci_start_poll
,
1108 .stop_poll
= nci_stop_poll
,
1109 .dep_link_up
= nci_dep_link_up
,
1110 .dep_link_down
= nci_dep_link_down
,
1111 .activate_target
= nci_activate_target
,
1112 .deactivate_target
= nci_deactivate_target
,
1113 .im_transceive
= nci_transceive
,
1114 .tm_send
= nci_tm_send
,
1115 .enable_se
= nci_enable_se
,
1116 .disable_se
= nci_disable_se
,
1117 .discover_se
= nci_discover_se
,
1119 .fw_download
= nci_fw_download
,
1122 /* ---- Interface to NCI drivers ---- */
1124 * nci_allocate_device - allocate a new nci device
1126 * @ops: device operations
1127 * @supported_protocols: NFC protocols supported by the device
1129 struct nci_dev
*nci_allocate_device(struct nci_ops
*ops
,
1130 __u32 supported_protocols
,
1131 int tx_headroom
, int tx_tailroom
)
1133 struct nci_dev
*ndev
;
1135 pr_debug("supported_protocols 0x%x\n", supported_protocols
);
1137 if (!ops
->open
|| !ops
->close
|| !ops
->send
)
1140 if (!supported_protocols
)
1143 ndev
= kzalloc(sizeof(struct nci_dev
), GFP_KERNEL
);
1149 if (ops
->n_prop_ops
> NCI_MAX_PROPRIETARY_CMD
) {
1150 pr_err("Too many proprietary commands: %zd\n",
1152 ops
->prop_ops
= NULL
;
1153 ops
->n_prop_ops
= 0;
1156 ndev
->tx_headroom
= tx_headroom
;
1157 ndev
->tx_tailroom
= tx_tailroom
;
1158 init_completion(&ndev
->req_completion
);
1160 ndev
->nfc_dev
= nfc_allocate_device(&nci_nfc_ops
,
1161 supported_protocols
,
1162 tx_headroom
+ NCI_DATA_HDR_SIZE
,
1167 ndev
->hci_dev
= nci_hci_allocate(ndev
);
1171 nfc_set_drvdata(ndev
->nfc_dev
, ndev
);
1176 kfree(ndev
->nfc_dev
);
1182 EXPORT_SYMBOL(nci_allocate_device
);
1185 * nci_free_device - deallocate nci device
1187 * @ndev: The nci device to deallocate
1189 void nci_free_device(struct nci_dev
*ndev
)
1191 nfc_free_device(ndev
->nfc_dev
);
1194 EXPORT_SYMBOL(nci_free_device
);
1197 * nci_register_device - register a nci device in the nfc subsystem
1199 * @dev: The nci device to register
1201 int nci_register_device(struct nci_dev
*ndev
)
1204 struct device
*dev
= &ndev
->nfc_dev
->dev
;
1209 INIT_WORK(&ndev
->cmd_work
, nci_cmd_work
);
1210 snprintf(name
, sizeof(name
), "%s_nci_cmd_wq", dev_name(dev
));
1211 ndev
->cmd_wq
= create_singlethread_workqueue(name
);
1212 if (!ndev
->cmd_wq
) {
1217 INIT_WORK(&ndev
->rx_work
, nci_rx_work
);
1218 snprintf(name
, sizeof(name
), "%s_nci_rx_wq", dev_name(dev
));
1219 ndev
->rx_wq
= create_singlethread_workqueue(name
);
1222 goto destroy_cmd_wq_exit
;
1225 INIT_WORK(&ndev
->tx_work
, nci_tx_work
);
1226 snprintf(name
, sizeof(name
), "%s_nci_tx_wq", dev_name(dev
));
1227 ndev
->tx_wq
= create_singlethread_workqueue(name
);
1230 goto destroy_rx_wq_exit
;
1233 skb_queue_head_init(&ndev
->cmd_q
);
1234 skb_queue_head_init(&ndev
->rx_q
);
1235 skb_queue_head_init(&ndev
->tx_q
);
1237 setup_timer(&ndev
->cmd_timer
, nci_cmd_timer
,
1238 (unsigned long) ndev
);
1239 setup_timer(&ndev
->data_timer
, nci_data_timer
,
1240 (unsigned long) ndev
);
1242 mutex_init(&ndev
->req_lock
);
1243 INIT_LIST_HEAD(&ndev
->conn_info_list
);
1245 rc
= nfc_register_device(ndev
->nfc_dev
);
1247 goto destroy_rx_wq_exit
;
1252 destroy_workqueue(ndev
->rx_wq
);
1254 destroy_cmd_wq_exit
:
1255 destroy_workqueue(ndev
->cmd_wq
);
1260 EXPORT_SYMBOL(nci_register_device
);
1263 * nci_unregister_device - unregister a nci device in the nfc subsystem
1265 * @dev: The nci device to unregister
1267 void nci_unregister_device(struct nci_dev
*ndev
)
1269 struct nci_conn_info
*conn_info
, *n
;
1271 nci_close_device(ndev
);
1273 destroy_workqueue(ndev
->cmd_wq
);
1274 destroy_workqueue(ndev
->rx_wq
);
1275 destroy_workqueue(ndev
->tx_wq
);
1277 list_for_each_entry_safe(conn_info
, n
, &ndev
->conn_info_list
, list
) {
1278 list_del(&conn_info
->list
);
1279 /* conn_info is allocated with devm_kzalloc */
1282 nfc_unregister_device(ndev
->nfc_dev
);
1284 EXPORT_SYMBOL(nci_unregister_device
);
1287 * nci_recv_frame - receive frame from NCI drivers
1289 * @ndev: The nci device
1290 * @skb: The sk_buff to receive
1292 int nci_recv_frame(struct nci_dev
*ndev
, struct sk_buff
*skb
)
1294 pr_debug("len %d\n", skb
->len
);
1296 if (!ndev
|| (!test_bit(NCI_UP
, &ndev
->flags
) &&
1297 !test_bit(NCI_INIT
, &ndev
->flags
))) {
1302 /* Queue frame for rx worker thread */
1303 skb_queue_tail(&ndev
->rx_q
, skb
);
1304 queue_work(ndev
->rx_wq
, &ndev
->rx_work
);
1308 EXPORT_SYMBOL(nci_recv_frame
);
1310 int nci_send_frame(struct nci_dev
*ndev
, struct sk_buff
*skb
)
1312 pr_debug("len %d\n", skb
->len
);
1319 /* Get rid of skb owner, prior to sending to the driver. */
1322 /* Send copy to sniffer */
1323 nfc_send_to_raw_sock(ndev
->nfc_dev
, skb
,
1324 RAW_PAYLOAD_NCI
, NFC_DIRECTION_TX
);
1326 return ndev
->ops
->send(ndev
, skb
);
1328 EXPORT_SYMBOL(nci_send_frame
);
1330 /* Send NCI command */
1331 int nci_send_cmd(struct nci_dev
*ndev
, __u16 opcode
, __u8 plen
, void *payload
)
1333 struct nci_ctrl_hdr
*hdr
;
1334 struct sk_buff
*skb
;
1336 pr_debug("opcode 0x%x, plen %d\n", opcode
, plen
);
1338 skb
= nci_skb_alloc(ndev
, (NCI_CTRL_HDR_SIZE
+ plen
), GFP_KERNEL
);
1340 pr_err("no memory for command\n");
1344 hdr
= (struct nci_ctrl_hdr
*) skb_put(skb
, NCI_CTRL_HDR_SIZE
);
1345 hdr
->gid
= nci_opcode_gid(opcode
);
1346 hdr
->oid
= nci_opcode_oid(opcode
);
1349 nci_mt_set((__u8
*)hdr
, NCI_MT_CMD_PKT
);
1350 nci_pbf_set((__u8
*)hdr
, NCI_PBF_LAST
);
1353 memcpy(skb_put(skb
, plen
), payload
, plen
);
1355 skb_queue_tail(&ndev
->cmd_q
, skb
);
1356 queue_work(ndev
->cmd_wq
, &ndev
->cmd_work
);
1360 EXPORT_SYMBOL(nci_send_cmd
);
1362 /* Proprietary commands API */
1363 static struct nci_driver_ops
*ops_cmd_lookup(struct nci_driver_ops
*ops
,
1368 struct nci_driver_ops
*op
;
1373 for (i
= 0; i
< n_ops
; i
++) {
1375 if (op
->opcode
== opcode
)
1382 static int nci_op_rsp_packet(struct nci_dev
*ndev
, __u16 rsp_opcode
,
1383 struct sk_buff
*skb
, struct nci_driver_ops
*ops
,
1386 struct nci_driver_ops
*op
;
1388 op
= ops_cmd_lookup(ops
, n_ops
, rsp_opcode
);
1389 if (!op
|| !op
->rsp
)
1392 return op
->rsp(ndev
, skb
);
1395 static int nci_op_ntf_packet(struct nci_dev
*ndev
, __u16 ntf_opcode
,
1396 struct sk_buff
*skb
, struct nci_driver_ops
*ops
,
1399 struct nci_driver_ops
*op
;
1401 op
= ops_cmd_lookup(ops
, n_ops
, ntf_opcode
);
1402 if (!op
|| !op
->ntf
)
1405 return op
->ntf(ndev
, skb
);
1408 int nci_prop_rsp_packet(struct nci_dev
*ndev
, __u16 opcode
,
1409 struct sk_buff
*skb
)
1411 return nci_op_rsp_packet(ndev
, opcode
, skb
, ndev
->ops
->prop_ops
,
1412 ndev
->ops
->n_prop_ops
);
1415 int nci_prop_ntf_packet(struct nci_dev
*ndev
, __u16 opcode
,
1416 struct sk_buff
*skb
)
1418 return nci_op_ntf_packet(ndev
, opcode
, skb
, ndev
->ops
->prop_ops
,
1419 ndev
->ops
->n_prop_ops
);
1422 int nci_core_rsp_packet(struct nci_dev
*ndev
, __u16 opcode
,
1423 struct sk_buff
*skb
)
1425 return nci_op_rsp_packet(ndev
, opcode
, skb
, ndev
->ops
->core_ops
,
1426 ndev
->ops
->n_core_ops
);
1429 int nci_core_ntf_packet(struct nci_dev
*ndev
, __u16 opcode
,
1430 struct sk_buff
*skb
)
1432 return nci_op_ntf_packet(ndev
, opcode
, skb
, ndev
->ops
->core_ops
,
1433 ndev
->ops
->n_core_ops
);
1436 /* ---- NCI TX Data worker thread ---- */
1438 static void nci_tx_work(struct work_struct
*work
)
1440 struct nci_dev
*ndev
= container_of(work
, struct nci_dev
, tx_work
);
1441 struct nci_conn_info
*conn_info
;
1442 struct sk_buff
*skb
;
1444 conn_info
= nci_get_conn_info_by_conn_id(ndev
, ndev
->cur_conn_id
);
1448 pr_debug("credits_cnt %d\n", atomic_read(&conn_info
->credits_cnt
));
1450 /* Send queued tx data */
1451 while (atomic_read(&conn_info
->credits_cnt
)) {
1452 skb
= skb_dequeue(&ndev
->tx_q
);
1456 /* Check if data flow control is used */
1457 if (atomic_read(&conn_info
->credits_cnt
) !=
1458 NCI_DATA_FLOW_CONTROL_NOT_USED
)
1459 atomic_dec(&conn_info
->credits_cnt
);
1461 pr_debug("NCI TX: MT=data, PBF=%d, conn_id=%d, plen=%d\n",
1463 nci_conn_id(skb
->data
),
1464 nci_plen(skb
->data
));
1466 nci_send_frame(ndev
, skb
);
1468 mod_timer(&ndev
->data_timer
,
1469 jiffies
+ msecs_to_jiffies(NCI_DATA_TIMEOUT
));
1473 /* ----- NCI RX worker thread (data & control) ----- */
1475 static void nci_rx_work(struct work_struct
*work
)
1477 struct nci_dev
*ndev
= container_of(work
, struct nci_dev
, rx_work
);
1478 struct sk_buff
*skb
;
1480 while ((skb
= skb_dequeue(&ndev
->rx_q
))) {
1482 /* Send copy to sniffer */
1483 nfc_send_to_raw_sock(ndev
->nfc_dev
, skb
,
1484 RAW_PAYLOAD_NCI
, NFC_DIRECTION_RX
);
1487 switch (nci_mt(skb
->data
)) {
1488 case NCI_MT_RSP_PKT
:
1489 nci_rsp_packet(ndev
, skb
);
1492 case NCI_MT_NTF_PKT
:
1493 nci_ntf_packet(ndev
, skb
);
1496 case NCI_MT_DATA_PKT
:
1497 nci_rx_data_packet(ndev
, skb
);
1501 pr_err("unknown MT 0x%x\n", nci_mt(skb
->data
));
1507 /* check if a data exchange timout has occurred */
1508 if (test_bit(NCI_DATA_EXCHANGE_TO
, &ndev
->flags
)) {
1509 /* complete the data exchange transaction, if exists */
1510 if (test_bit(NCI_DATA_EXCHANGE
, &ndev
->flags
))
1511 nci_data_exchange_complete(ndev
, NULL
,
1515 clear_bit(NCI_DATA_EXCHANGE_TO
, &ndev
->flags
);
1519 /* ----- NCI TX CMD worker thread ----- */
1521 static void nci_cmd_work(struct work_struct
*work
)
1523 struct nci_dev
*ndev
= container_of(work
, struct nci_dev
, cmd_work
);
1524 struct sk_buff
*skb
;
1526 pr_debug("cmd_cnt %d\n", atomic_read(&ndev
->cmd_cnt
));
1528 /* Send queued command */
1529 if (atomic_read(&ndev
->cmd_cnt
)) {
1530 skb
= skb_dequeue(&ndev
->cmd_q
);
1534 atomic_dec(&ndev
->cmd_cnt
);
1536 pr_debug("NCI TX: MT=cmd, PBF=%d, GID=0x%x, OID=0x%x, plen=%d\n",
1538 nci_opcode_gid(nci_opcode(skb
->data
)),
1539 nci_opcode_oid(nci_opcode(skb
->data
)),
1540 nci_plen(skb
->data
));
1542 nci_send_frame(ndev
, skb
);
1544 mod_timer(&ndev
->cmd_timer
,
1545 jiffies
+ msecs_to_jiffies(NCI_CMD_TIMEOUT
));
1549 MODULE_LICENSE("GPL");