2 * NFC Digital Protocol stack
3 * Copyright (c) 2013, Intel Corporation.
5 * This program is free software; you can redistribute it and/or modify it
6 * under the terms and conditions of the GNU General Public License,
7 * version 2, as published by the Free Software Foundation.
9 * This program is distributed in the hope it will be useful, but WITHOUT
10 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
11 * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for
16 #define pr_fmt(fmt) "digital: %s: " fmt, __func__
18 #include <linux/module.h>
22 #define DIGITAL_PROTO_NFCA_RF_TECH \
23 (NFC_PROTO_JEWEL_MASK | NFC_PROTO_MIFARE_MASK | NFC_PROTO_NFC_DEP_MASK)
25 #define DIGITAL_PROTO_NFCB_RF_TECH NFC_PROTO_ISO14443_B_MASK
27 #define DIGITAL_PROTO_NFCF_RF_TECH \
28 (NFC_PROTO_FELICA_MASK | NFC_PROTO_NFC_DEP_MASK)
30 #define DIGITAL_PROTO_ISO15693_RF_TECH NFC_PROTO_ISO15693_MASK
33 struct list_head queue
;
41 struct digital_tg_mdaa_params
*mdaa_params
;
43 nfc_digital_cmd_complete_t cmd_cb
;
47 struct sk_buff
*digital_skb_alloc(struct nfc_digital_dev
*ddev
,
52 skb
= alloc_skb(len
+ ddev
->tx_headroom
+ ddev
->tx_tailroom
,
55 skb_reserve(skb
, ddev
->tx_headroom
);
60 void digital_skb_add_crc(struct sk_buff
*skb
, crc_func_t crc_func
, u16 init
,
61 u8 bitwise_inv
, u8 msb_first
)
65 crc
= crc_func(init
, skb
->data
, skb
->len
);
73 *skb_put(skb
, 1) = crc
& 0xFF;
74 *skb_put(skb
, 1) = (crc
>> 8) & 0xFF;
77 int digital_skb_check_crc(struct sk_buff
*skb
, crc_func_t crc_func
,
78 u16 crc_init
, u8 bitwise_inv
, u8 msb_first
)
86 crc
= crc_func(crc_init
, skb
->data
, skb
->len
- 2);
94 rc
= (skb
->data
[skb
->len
- 2] - (crc
& 0xFF)) +
95 (skb
->data
[skb
->len
- 1] - ((crc
>> 8) & 0xFF));
100 skb_trim(skb
, skb
->len
- 2);
105 static inline void digital_switch_rf(struct nfc_digital_dev
*ddev
, bool on
)
107 ddev
->ops
->switch_rf(ddev
, on
);
110 static inline void digital_abort_cmd(struct nfc_digital_dev
*ddev
)
112 ddev
->ops
->abort_cmd(ddev
);
115 static void digital_wq_cmd_complete(struct work_struct
*work
)
117 struct digital_cmd
*cmd
;
118 struct nfc_digital_dev
*ddev
= container_of(work
,
119 struct nfc_digital_dev
,
122 mutex_lock(&ddev
->cmd_lock
);
124 cmd
= list_first_entry_or_null(&ddev
->cmd_queue
, struct digital_cmd
,
127 mutex_unlock(&ddev
->cmd_lock
);
131 list_del(&cmd
->queue
);
133 mutex_unlock(&ddev
->cmd_lock
);
135 if (!IS_ERR(cmd
->resp
))
136 print_hex_dump_debug("DIGITAL RX: ", DUMP_PREFIX_NONE
, 16, 1,
137 cmd
->resp
->data
, cmd
->resp
->len
, false);
139 cmd
->cmd_cb(ddev
, cmd
->cb_context
, cmd
->resp
);
141 kfree(cmd
->mdaa_params
);
144 schedule_work(&ddev
->cmd_work
);
147 static void digital_send_cmd_complete(struct nfc_digital_dev
*ddev
,
148 void *arg
, struct sk_buff
*resp
)
150 struct digital_cmd
*cmd
= arg
;
154 schedule_work(&ddev
->cmd_complete_work
);
157 static void digital_wq_cmd(struct work_struct
*work
)
160 struct digital_cmd
*cmd
;
161 struct digital_tg_mdaa_params
*params
;
162 struct nfc_digital_dev
*ddev
= container_of(work
,
163 struct nfc_digital_dev
,
166 mutex_lock(&ddev
->cmd_lock
);
168 cmd
= list_first_entry_or_null(&ddev
->cmd_queue
, struct digital_cmd
,
170 if (!cmd
|| cmd
->pending
) {
171 mutex_unlock(&ddev
->cmd_lock
);
175 mutex_unlock(&ddev
->cmd_lock
);
178 print_hex_dump_debug("DIGITAL TX: ", DUMP_PREFIX_NONE
, 16, 1,
179 cmd
->req
->data
, cmd
->req
->len
, false);
182 case DIGITAL_CMD_IN_SEND
:
183 rc
= ddev
->ops
->in_send_cmd(ddev
, cmd
->req
, cmd
->timeout
,
184 digital_send_cmd_complete
, cmd
);
187 case DIGITAL_CMD_TG_SEND
:
188 rc
= ddev
->ops
->tg_send_cmd(ddev
, cmd
->req
, cmd
->timeout
,
189 digital_send_cmd_complete
, cmd
);
192 case DIGITAL_CMD_TG_LISTEN
:
193 rc
= ddev
->ops
->tg_listen(ddev
, cmd
->timeout
,
194 digital_send_cmd_complete
, cmd
);
197 case DIGITAL_CMD_TG_LISTEN_MDAA
:
198 params
= cmd
->mdaa_params
;
200 rc
= ddev
->ops
->tg_listen_mdaa(ddev
, params
, cmd
->timeout
,
201 digital_send_cmd_complete
, cmd
);
205 pr_err("Unknown cmd type %d\n", cmd
->type
);
212 pr_err("in_send_command returned err %d\n", rc
);
214 mutex_lock(&ddev
->cmd_lock
);
215 list_del(&cmd
->queue
);
216 mutex_unlock(&ddev
->cmd_lock
);
219 kfree(cmd
->mdaa_params
);
222 schedule_work(&ddev
->cmd_work
);
225 int digital_send_cmd(struct nfc_digital_dev
*ddev
, u8 cmd_type
,
226 struct sk_buff
*skb
, struct digital_tg_mdaa_params
*params
,
227 u16 timeout
, nfc_digital_cmd_complete_t cmd_cb
,
230 struct digital_cmd
*cmd
;
232 cmd
= kzalloc(sizeof(struct digital_cmd
), GFP_KERNEL
);
236 cmd
->type
= cmd_type
;
237 cmd
->timeout
= timeout
;
239 cmd
->mdaa_params
= params
;
240 cmd
->cmd_cb
= cmd_cb
;
241 cmd
->cb_context
= cb_context
;
242 INIT_LIST_HEAD(&cmd
->queue
);
244 mutex_lock(&ddev
->cmd_lock
);
245 list_add_tail(&cmd
->queue
, &ddev
->cmd_queue
);
246 mutex_unlock(&ddev
->cmd_lock
);
248 schedule_work(&ddev
->cmd_work
);
253 int digital_in_configure_hw(struct nfc_digital_dev
*ddev
, int type
, int param
)
257 rc
= ddev
->ops
->in_configure_hw(ddev
, type
, param
);
259 pr_err("in_configure_hw failed: %d\n", rc
);
264 int digital_tg_configure_hw(struct nfc_digital_dev
*ddev
, int type
, int param
)
268 rc
= ddev
->ops
->tg_configure_hw(ddev
, type
, param
);
270 pr_err("tg_configure_hw failed: %d\n", rc
);
275 static int digital_tg_listen_mdaa(struct nfc_digital_dev
*ddev
, u8 rf_tech
)
277 struct digital_tg_mdaa_params
*params
;
279 params
= kzalloc(sizeof(struct digital_tg_mdaa_params
), GFP_KERNEL
);
283 params
->sens_res
= DIGITAL_SENS_RES_NFC_DEP
;
284 get_random_bytes(params
->nfcid1
, sizeof(params
->nfcid1
));
285 params
->sel_res
= DIGITAL_SEL_RES_NFC_DEP
;
287 params
->nfcid2
[0] = DIGITAL_SENSF_NFCID2_NFC_DEP_B1
;
288 params
->nfcid2
[1] = DIGITAL_SENSF_NFCID2_NFC_DEP_B2
;
289 get_random_bytes(params
->nfcid2
+ 2, NFC_NFCID2_MAXSIZE
- 2);
290 params
->sc
= DIGITAL_SENSF_FELICA_SC
;
292 return digital_send_cmd(ddev
, DIGITAL_CMD_TG_LISTEN_MDAA
, NULL
, params
,
293 500, digital_tg_recv_atr_req
, NULL
);
296 int digital_target_found(struct nfc_digital_dev
*ddev
,
297 struct nfc_target
*target
, u8 protocol
)
302 int (*check_crc
)(struct sk_buff
*skb
);
303 void (*add_crc
)(struct sk_buff
*skb
);
305 rf_tech
= ddev
->poll_techs
[ddev
->poll_tech_index
].rf_tech
;
308 case NFC_PROTO_JEWEL
:
309 framing
= NFC_DIGITAL_FRAMING_NFCA_T1T
;
310 check_crc
= digital_skb_check_crc_b
;
311 add_crc
= digital_skb_add_crc_b
;
314 case NFC_PROTO_MIFARE
:
315 framing
= NFC_DIGITAL_FRAMING_NFCA_T2T
;
316 check_crc
= digital_skb_check_crc_a
;
317 add_crc
= digital_skb_add_crc_a
;
320 case NFC_PROTO_FELICA
:
321 framing
= NFC_DIGITAL_FRAMING_NFCF_T3T
;
322 check_crc
= digital_skb_check_crc_f
;
323 add_crc
= digital_skb_add_crc_f
;
326 case NFC_PROTO_NFC_DEP
:
327 if (rf_tech
== NFC_DIGITAL_RF_TECH_106A
) {
328 framing
= NFC_DIGITAL_FRAMING_NFCA_NFC_DEP
;
329 check_crc
= digital_skb_check_crc_a
;
330 add_crc
= digital_skb_add_crc_a
;
332 framing
= NFC_DIGITAL_FRAMING_NFCF_NFC_DEP
;
333 check_crc
= digital_skb_check_crc_f
;
334 add_crc
= digital_skb_add_crc_f
;
338 case NFC_PROTO_ISO15693
:
339 framing
= NFC_DIGITAL_FRAMING_ISO15693_T5T
;
340 check_crc
= digital_skb_check_crc_b
;
341 add_crc
= digital_skb_add_crc_b
;
344 case NFC_PROTO_ISO14443
:
345 framing
= NFC_DIGITAL_FRAMING_NFCA_T4T
;
346 check_crc
= digital_skb_check_crc_a
;
347 add_crc
= digital_skb_add_crc_a
;
350 case NFC_PROTO_ISO14443_B
:
351 framing
= NFC_DIGITAL_FRAMING_NFCB_T4T
;
352 check_crc
= digital_skb_check_crc_b
;
353 add_crc
= digital_skb_add_crc_b
;
357 pr_err("Invalid protocol %d\n", protocol
);
361 pr_debug("rf_tech=%d, protocol=%d\n", rf_tech
, protocol
);
363 ddev
->curr_rf_tech
= rf_tech
;
365 if (DIGITAL_DRV_CAPS_IN_CRC(ddev
)) {
366 ddev
->skb_add_crc
= digital_skb_add_crc_none
;
367 ddev
->skb_check_crc
= digital_skb_check_crc_none
;
369 ddev
->skb_add_crc
= add_crc
;
370 ddev
->skb_check_crc
= check_crc
;
373 rc
= digital_in_configure_hw(ddev
, NFC_DIGITAL_CONFIG_FRAMING
, framing
);
377 target
->supported_protocols
= (1 << protocol
);
378 rc
= nfc_targets_found(ddev
->nfc_dev
, target
, 1);
382 ddev
->poll_tech_count
= 0;
387 void digital_poll_next_tech(struct nfc_digital_dev
*ddev
)
391 digital_switch_rf(ddev
, 0);
393 mutex_lock(&ddev
->poll_lock
);
395 if (!ddev
->poll_tech_count
) {
396 mutex_unlock(&ddev
->poll_lock
);
400 get_random_bytes(&rand_mod
, sizeof(rand_mod
));
401 ddev
->poll_tech_index
= rand_mod
% ddev
->poll_tech_count
;
403 mutex_unlock(&ddev
->poll_lock
);
405 schedule_work(&ddev
->poll_work
);
408 static void digital_wq_poll(struct work_struct
*work
)
411 struct digital_poll_tech
*poll_tech
;
412 struct nfc_digital_dev
*ddev
= container_of(work
,
413 struct nfc_digital_dev
,
415 mutex_lock(&ddev
->poll_lock
);
417 if (!ddev
->poll_tech_count
) {
418 mutex_unlock(&ddev
->poll_lock
);
422 poll_tech
= &ddev
->poll_techs
[ddev
->poll_tech_index
];
424 mutex_unlock(&ddev
->poll_lock
);
426 rc
= poll_tech
->poll_func(ddev
, poll_tech
->rf_tech
);
428 digital_poll_next_tech(ddev
);
431 static void digital_add_poll_tech(struct nfc_digital_dev
*ddev
, u8 rf_tech
,
432 digital_poll_t poll_func
)
434 struct digital_poll_tech
*poll_tech
;
436 if (ddev
->poll_tech_count
>= NFC_DIGITAL_POLL_MODE_COUNT_MAX
)
439 poll_tech
= &ddev
->poll_techs
[ddev
->poll_tech_count
++];
441 poll_tech
->rf_tech
= rf_tech
;
442 poll_tech
->poll_func
= poll_func
;
446 * start_poll operation
448 * For every supported protocol, the corresponding polling function is added
449 * to the table of polling technologies (ddev->poll_techs[]) using
450 * digital_add_poll_tech().
451 * When a polling function fails (by timeout or protocol error) the next one is
452 * schedule by digital_poll_next_tech() on the poll workqueue (ddev->poll_work).
454 static int digital_start_poll(struct nfc_dev
*nfc_dev
, __u32 im_protocols
,
457 struct nfc_digital_dev
*ddev
= nfc_get_drvdata(nfc_dev
);
458 u32 matching_im_protocols
, matching_tm_protocols
;
460 pr_debug("protocols: im 0x%x, tm 0x%x, supported 0x%x\n", im_protocols
,
461 tm_protocols
, ddev
->protocols
);
463 matching_im_protocols
= ddev
->protocols
& im_protocols
;
464 matching_tm_protocols
= ddev
->protocols
& tm_protocols
;
466 if (!matching_im_protocols
&& !matching_tm_protocols
) {
467 pr_err("Unknown protocol\n");
471 if (ddev
->poll_tech_count
) {
472 pr_err("Already polling\n");
476 if (ddev
->curr_protocol
) {
477 pr_err("A target is already active\n");
481 ddev
->poll_tech_count
= 0;
482 ddev
->poll_tech_index
= 0;
484 if (matching_im_protocols
& DIGITAL_PROTO_NFCA_RF_TECH
)
485 digital_add_poll_tech(ddev
, NFC_DIGITAL_RF_TECH_106A
,
486 digital_in_send_sens_req
);
488 if (matching_im_protocols
& DIGITAL_PROTO_NFCB_RF_TECH
)
489 digital_add_poll_tech(ddev
, NFC_DIGITAL_RF_TECH_106B
,
490 digital_in_send_sensb_req
);
492 if (matching_im_protocols
& DIGITAL_PROTO_NFCF_RF_TECH
) {
493 digital_add_poll_tech(ddev
, NFC_DIGITAL_RF_TECH_212F
,
494 digital_in_send_sensf_req
);
496 digital_add_poll_tech(ddev
, NFC_DIGITAL_RF_TECH_424F
,
497 digital_in_send_sensf_req
);
500 if (matching_im_protocols
& DIGITAL_PROTO_ISO15693_RF_TECH
)
501 digital_add_poll_tech(ddev
, NFC_DIGITAL_RF_TECH_ISO15693
,
502 digital_in_send_iso15693_inv_req
);
504 if (matching_tm_protocols
& NFC_PROTO_NFC_DEP_MASK
) {
505 if (ddev
->ops
->tg_listen_mdaa
) {
506 digital_add_poll_tech(ddev
, 0,
507 digital_tg_listen_mdaa
);
509 digital_add_poll_tech(ddev
, NFC_DIGITAL_RF_TECH_106A
,
510 digital_tg_listen_nfca
);
512 digital_add_poll_tech(ddev
, NFC_DIGITAL_RF_TECH_212F
,
513 digital_tg_listen_nfcf
);
515 digital_add_poll_tech(ddev
, NFC_DIGITAL_RF_TECH_424F
,
516 digital_tg_listen_nfcf
);
520 if (!ddev
->poll_tech_count
) {
521 pr_err("Unsupported protocols: im=0x%x, tm=0x%x\n",
522 matching_im_protocols
, matching_tm_protocols
);
526 schedule_work(&ddev
->poll_work
);
531 static void digital_stop_poll(struct nfc_dev
*nfc_dev
)
533 struct nfc_digital_dev
*ddev
= nfc_get_drvdata(nfc_dev
);
535 mutex_lock(&ddev
->poll_lock
);
537 if (!ddev
->poll_tech_count
) {
538 pr_err("Polling operation was not running\n");
539 mutex_unlock(&ddev
->poll_lock
);
543 ddev
->poll_tech_count
= 0;
545 mutex_unlock(&ddev
->poll_lock
);
547 cancel_work_sync(&ddev
->poll_work
);
549 digital_abort_cmd(ddev
);
552 static int digital_dev_up(struct nfc_dev
*nfc_dev
)
554 struct nfc_digital_dev
*ddev
= nfc_get_drvdata(nfc_dev
);
556 digital_switch_rf(ddev
, 1);
561 static int digital_dev_down(struct nfc_dev
*nfc_dev
)
563 struct nfc_digital_dev
*ddev
= nfc_get_drvdata(nfc_dev
);
565 digital_switch_rf(ddev
, 0);
570 static int digital_dep_link_up(struct nfc_dev
*nfc_dev
,
571 struct nfc_target
*target
,
572 __u8 comm_mode
, __u8
*gb
, size_t gb_len
)
574 struct nfc_digital_dev
*ddev
= nfc_get_drvdata(nfc_dev
);
577 rc
= digital_in_send_atr_req(ddev
, target
, comm_mode
, gb
, gb_len
);
580 ddev
->curr_protocol
= NFC_PROTO_NFC_DEP
;
585 static int digital_dep_link_down(struct nfc_dev
*nfc_dev
)
587 struct nfc_digital_dev
*ddev
= nfc_get_drvdata(nfc_dev
);
589 ddev
->curr_protocol
= 0;
594 static int digital_activate_target(struct nfc_dev
*nfc_dev
,
595 struct nfc_target
*target
, __u32 protocol
)
597 struct nfc_digital_dev
*ddev
= nfc_get_drvdata(nfc_dev
);
599 if (ddev
->poll_tech_count
) {
600 pr_err("Can't activate a target while polling\n");
604 if (ddev
->curr_protocol
) {
605 pr_err("A target is already active\n");
609 ddev
->curr_protocol
= protocol
;
614 static void digital_deactivate_target(struct nfc_dev
*nfc_dev
,
615 struct nfc_target
*target
)
617 struct nfc_digital_dev
*ddev
= nfc_get_drvdata(nfc_dev
);
619 if (!ddev
->curr_protocol
) {
620 pr_err("No active target\n");
624 ddev
->curr_protocol
= 0;
627 static int digital_tg_send(struct nfc_dev
*dev
, struct sk_buff
*skb
)
629 struct nfc_digital_dev
*ddev
= nfc_get_drvdata(dev
);
631 return digital_tg_send_dep_res(ddev
, skb
);
634 static void digital_in_send_complete(struct nfc_digital_dev
*ddev
, void *arg
,
635 struct sk_buff
*resp
)
637 struct digital_data_exch
*data_exch
= arg
;
646 if (ddev
->curr_protocol
== NFC_PROTO_MIFARE
) {
647 rc
= digital_in_recv_mifare_res(resp
);
648 /* crc check is done in digital_in_recv_mifare_res() */
652 if ((ddev
->curr_protocol
== NFC_PROTO_ISO14443
) ||
653 (ddev
->curr_protocol
== NFC_PROTO_ISO14443_B
)) {
654 rc
= digital_in_iso_dep_pull_sod(ddev
, resp
);
659 rc
= ddev
->skb_check_crc(resp
);
667 data_exch
->cb(data_exch
->cb_context
, resp
, rc
);
672 static int digital_in_send(struct nfc_dev
*nfc_dev
, struct nfc_target
*target
,
673 struct sk_buff
*skb
, data_exchange_cb_t cb
,
676 struct nfc_digital_dev
*ddev
= nfc_get_drvdata(nfc_dev
);
677 struct digital_data_exch
*data_exch
;
680 data_exch
= kzalloc(sizeof(struct digital_data_exch
), GFP_KERNEL
);
682 pr_err("Failed to allocate data_exch struct\n");
687 data_exch
->cb_context
= cb_context
;
689 if (ddev
->curr_protocol
== NFC_PROTO_NFC_DEP
) {
690 rc
= digital_in_send_dep_req(ddev
, target
, skb
, data_exch
);
694 if ((ddev
->curr_protocol
== NFC_PROTO_ISO14443
) ||
695 (ddev
->curr_protocol
== NFC_PROTO_ISO14443_B
)) {
696 rc
= digital_in_iso_dep_push_sod(ddev
, skb
);
701 ddev
->skb_add_crc(skb
);
703 rc
= digital_in_send_cmd(ddev
, skb
, 500, digital_in_send_complete
,
713 static struct nfc_ops digital_nfc_ops
= {
714 .dev_up
= digital_dev_up
,
715 .dev_down
= digital_dev_down
,
716 .start_poll
= digital_start_poll
,
717 .stop_poll
= digital_stop_poll
,
718 .dep_link_up
= digital_dep_link_up
,
719 .dep_link_down
= digital_dep_link_down
,
720 .activate_target
= digital_activate_target
,
721 .deactivate_target
= digital_deactivate_target
,
722 .tm_send
= digital_tg_send
,
723 .im_transceive
= digital_in_send
,
726 struct nfc_digital_dev
*nfc_digital_allocate_device(struct nfc_digital_ops
*ops
,
727 __u32 supported_protocols
,
728 __u32 driver_capabilities
,
729 int tx_headroom
, int tx_tailroom
)
731 struct nfc_digital_dev
*ddev
;
733 if (!ops
->in_configure_hw
|| !ops
->in_send_cmd
|| !ops
->tg_listen
||
734 !ops
->tg_configure_hw
|| !ops
->tg_send_cmd
|| !ops
->abort_cmd
||
738 ddev
= kzalloc(sizeof(struct nfc_digital_dev
), GFP_KERNEL
);
742 ddev
->driver_capabilities
= driver_capabilities
;
745 mutex_init(&ddev
->cmd_lock
);
746 INIT_LIST_HEAD(&ddev
->cmd_queue
);
748 INIT_WORK(&ddev
->cmd_work
, digital_wq_cmd
);
749 INIT_WORK(&ddev
->cmd_complete_work
, digital_wq_cmd_complete
);
751 mutex_init(&ddev
->poll_lock
);
752 INIT_WORK(&ddev
->poll_work
, digital_wq_poll
);
754 if (supported_protocols
& NFC_PROTO_JEWEL_MASK
)
755 ddev
->protocols
|= NFC_PROTO_JEWEL_MASK
;
756 if (supported_protocols
& NFC_PROTO_MIFARE_MASK
)
757 ddev
->protocols
|= NFC_PROTO_MIFARE_MASK
;
758 if (supported_protocols
& NFC_PROTO_FELICA_MASK
)
759 ddev
->protocols
|= NFC_PROTO_FELICA_MASK
;
760 if (supported_protocols
& NFC_PROTO_NFC_DEP_MASK
)
761 ddev
->protocols
|= NFC_PROTO_NFC_DEP_MASK
;
762 if (supported_protocols
& NFC_PROTO_ISO15693_MASK
)
763 ddev
->protocols
|= NFC_PROTO_ISO15693_MASK
;
764 if (supported_protocols
& NFC_PROTO_ISO14443_MASK
)
765 ddev
->protocols
|= NFC_PROTO_ISO14443_MASK
;
766 if (supported_protocols
& NFC_PROTO_ISO14443_B_MASK
)
767 ddev
->protocols
|= NFC_PROTO_ISO14443_B_MASK
;
769 ddev
->tx_headroom
= tx_headroom
+ DIGITAL_MAX_HEADER_LEN
;
770 ddev
->tx_tailroom
= tx_tailroom
+ DIGITAL_CRC_LEN
;
772 ddev
->nfc_dev
= nfc_allocate_device(&digital_nfc_ops
, ddev
->protocols
,
775 if (!ddev
->nfc_dev
) {
776 pr_err("nfc_allocate_device failed\n");
780 nfc_set_drvdata(ddev
->nfc_dev
, ddev
);
789 EXPORT_SYMBOL(nfc_digital_allocate_device
);
791 void nfc_digital_free_device(struct nfc_digital_dev
*ddev
)
793 nfc_free_device(ddev
->nfc_dev
);
796 EXPORT_SYMBOL(nfc_digital_free_device
);
798 int nfc_digital_register_device(struct nfc_digital_dev
*ddev
)
800 return nfc_register_device(ddev
->nfc_dev
);
802 EXPORT_SYMBOL(nfc_digital_register_device
);
804 void nfc_digital_unregister_device(struct nfc_digital_dev
*ddev
)
806 struct digital_cmd
*cmd
, *n
;
808 nfc_unregister_device(ddev
->nfc_dev
);
810 mutex_lock(&ddev
->poll_lock
);
811 ddev
->poll_tech_count
= 0;
812 mutex_unlock(&ddev
->poll_lock
);
814 cancel_work_sync(&ddev
->poll_work
);
815 cancel_work_sync(&ddev
->cmd_work
);
816 cancel_work_sync(&ddev
->cmd_complete_work
);
818 list_for_each_entry_safe(cmd
, n
, &ddev
->cmd_queue
, queue
) {
819 list_del(&cmd
->queue
);
820 kfree(cmd
->mdaa_params
);
824 EXPORT_SYMBOL(nfc_digital_unregister_device
);
826 MODULE_LICENSE("GPL");