1 // SPDX-License-Identifier: GPL-2.0-only
3 * NFC Digital Protocol stack
4 * Copyright (c) 2013, Intel Corporation.
7 #define pr_fmt(fmt) "digital: %s: " fmt, __func__
9 #include <linux/module.h>
13 #define DIGITAL_PROTO_NFCA_RF_TECH \
14 (NFC_PROTO_JEWEL_MASK | NFC_PROTO_MIFARE_MASK | \
15 NFC_PROTO_NFC_DEP_MASK | NFC_PROTO_ISO14443_MASK)
17 #define DIGITAL_PROTO_NFCB_RF_TECH NFC_PROTO_ISO14443_B_MASK
19 #define DIGITAL_PROTO_NFCF_RF_TECH \
20 (NFC_PROTO_FELICA_MASK | NFC_PROTO_NFC_DEP_MASK)
22 #define DIGITAL_PROTO_ISO15693_RF_TECH NFC_PROTO_ISO15693_MASK
24 /* Delay between each poll frame (ms) */
25 #define DIGITAL_POLL_INTERVAL 10
28 struct list_head queue
;
36 struct digital_tg_mdaa_params
*mdaa_params
;
38 nfc_digital_cmd_complete_t cmd_cb
;
42 struct sk_buff
*digital_skb_alloc(struct nfc_digital_dev
*ddev
,
47 skb
= alloc_skb(len
+ ddev
->tx_headroom
+ ddev
->tx_tailroom
,
50 skb_reserve(skb
, ddev
->tx_headroom
);
55 void digital_skb_add_crc(struct sk_buff
*skb
, crc_func_t crc_func
, u16 init
,
56 u8 bitwise_inv
, u8 msb_first
)
60 crc
= crc_func(init
, skb
->data
, skb
->len
);
68 skb_put_u8(skb
, crc
& 0xFF);
69 skb_put_u8(skb
, (crc
>> 8) & 0xFF);
72 int digital_skb_check_crc(struct sk_buff
*skb
, crc_func_t crc_func
,
73 u16 crc_init
, u8 bitwise_inv
, u8 msb_first
)
81 crc
= crc_func(crc_init
, skb
->data
, skb
->len
- 2);
89 rc
= (skb
->data
[skb
->len
- 2] - (crc
& 0xFF)) +
90 (skb
->data
[skb
->len
- 1] - ((crc
>> 8) & 0xFF));
95 skb_trim(skb
, skb
->len
- 2);
100 static inline void digital_switch_rf(struct nfc_digital_dev
*ddev
, bool on
)
102 ddev
->ops
->switch_rf(ddev
, on
);
105 static inline void digital_abort_cmd(struct nfc_digital_dev
*ddev
)
107 ddev
->ops
->abort_cmd(ddev
);
110 static void digital_wq_cmd_complete(struct work_struct
*work
)
112 struct digital_cmd
*cmd
;
113 struct nfc_digital_dev
*ddev
= container_of(work
,
114 struct nfc_digital_dev
,
117 mutex_lock(&ddev
->cmd_lock
);
119 cmd
= list_first_entry_or_null(&ddev
->cmd_queue
, struct digital_cmd
,
122 mutex_unlock(&ddev
->cmd_lock
);
126 list_del(&cmd
->queue
);
128 mutex_unlock(&ddev
->cmd_lock
);
130 if (!IS_ERR(cmd
->resp
))
131 print_hex_dump_debug("DIGITAL RX: ", DUMP_PREFIX_NONE
, 16, 1,
132 cmd
->resp
->data
, cmd
->resp
->len
, false);
134 cmd
->cmd_cb(ddev
, cmd
->cb_context
, cmd
->resp
);
136 kfree(cmd
->mdaa_params
);
139 schedule_work(&ddev
->cmd_work
);
142 static void digital_send_cmd_complete(struct nfc_digital_dev
*ddev
,
143 void *arg
, struct sk_buff
*resp
)
145 struct digital_cmd
*cmd
= arg
;
149 schedule_work(&ddev
->cmd_complete_work
);
152 static void digital_wq_cmd(struct work_struct
*work
)
155 struct digital_cmd
*cmd
;
156 struct digital_tg_mdaa_params
*params
;
157 struct nfc_digital_dev
*ddev
= container_of(work
,
158 struct nfc_digital_dev
,
161 mutex_lock(&ddev
->cmd_lock
);
163 cmd
= list_first_entry_or_null(&ddev
->cmd_queue
, struct digital_cmd
,
165 if (!cmd
|| cmd
->pending
) {
166 mutex_unlock(&ddev
->cmd_lock
);
172 mutex_unlock(&ddev
->cmd_lock
);
175 print_hex_dump_debug("DIGITAL TX: ", DUMP_PREFIX_NONE
, 16, 1,
176 cmd
->req
->data
, cmd
->req
->len
, false);
179 case DIGITAL_CMD_IN_SEND
:
180 rc
= ddev
->ops
->in_send_cmd(ddev
, cmd
->req
, cmd
->timeout
,
181 digital_send_cmd_complete
, cmd
);
184 case DIGITAL_CMD_TG_SEND
:
185 rc
= ddev
->ops
->tg_send_cmd(ddev
, cmd
->req
, cmd
->timeout
,
186 digital_send_cmd_complete
, cmd
);
189 case DIGITAL_CMD_TG_LISTEN
:
190 rc
= ddev
->ops
->tg_listen(ddev
, cmd
->timeout
,
191 digital_send_cmd_complete
, cmd
);
194 case DIGITAL_CMD_TG_LISTEN_MDAA
:
195 params
= cmd
->mdaa_params
;
197 rc
= ddev
->ops
->tg_listen_mdaa(ddev
, params
, cmd
->timeout
,
198 digital_send_cmd_complete
, cmd
);
201 case DIGITAL_CMD_TG_LISTEN_MD
:
202 rc
= ddev
->ops
->tg_listen_md(ddev
, cmd
->timeout
,
203 digital_send_cmd_complete
, cmd
);
207 pr_err("Unknown cmd type %d\n", cmd
->type
);
214 pr_err("in_send_command returned err %d\n", rc
);
216 mutex_lock(&ddev
->cmd_lock
);
217 list_del(&cmd
->queue
);
218 mutex_unlock(&ddev
->cmd_lock
);
221 kfree(cmd
->mdaa_params
);
224 schedule_work(&ddev
->cmd_work
);
227 int digital_send_cmd(struct nfc_digital_dev
*ddev
, u8 cmd_type
,
228 struct sk_buff
*skb
, struct digital_tg_mdaa_params
*params
,
229 u16 timeout
, nfc_digital_cmd_complete_t cmd_cb
,
232 struct digital_cmd
*cmd
;
234 cmd
= kzalloc(sizeof(*cmd
), GFP_KERNEL
);
238 cmd
->type
= cmd_type
;
239 cmd
->timeout
= timeout
;
241 cmd
->mdaa_params
= params
;
242 cmd
->cmd_cb
= cmd_cb
;
243 cmd
->cb_context
= cb_context
;
244 INIT_LIST_HEAD(&cmd
->queue
);
246 mutex_lock(&ddev
->cmd_lock
);
247 list_add_tail(&cmd
->queue
, &ddev
->cmd_queue
);
248 mutex_unlock(&ddev
->cmd_lock
);
250 schedule_work(&ddev
->cmd_work
);
255 int digital_in_configure_hw(struct nfc_digital_dev
*ddev
, int type
, int param
)
259 rc
= ddev
->ops
->in_configure_hw(ddev
, type
, param
);
261 pr_err("in_configure_hw failed: %d\n", rc
);
266 int digital_tg_configure_hw(struct nfc_digital_dev
*ddev
, int type
, int param
)
270 rc
= ddev
->ops
->tg_configure_hw(ddev
, type
, param
);
272 pr_err("tg_configure_hw failed: %d\n", rc
);
277 static int digital_tg_listen_mdaa(struct nfc_digital_dev
*ddev
, u8 rf_tech
)
279 struct digital_tg_mdaa_params
*params
;
281 params
= kzalloc(sizeof(*params
), GFP_KERNEL
);
285 params
->sens_res
= DIGITAL_SENS_RES_NFC_DEP
;
286 get_random_bytes(params
->nfcid1
, sizeof(params
->nfcid1
));
287 params
->sel_res
= DIGITAL_SEL_RES_NFC_DEP
;
289 params
->nfcid2
[0] = DIGITAL_SENSF_NFCID2_NFC_DEP_B1
;
290 params
->nfcid2
[1] = DIGITAL_SENSF_NFCID2_NFC_DEP_B2
;
291 get_random_bytes(params
->nfcid2
+ 2, NFC_NFCID2_MAXSIZE
- 2);
292 params
->sc
= DIGITAL_SENSF_FELICA_SC
;
294 return digital_send_cmd(ddev
, DIGITAL_CMD_TG_LISTEN_MDAA
, NULL
, params
,
295 500, digital_tg_recv_atr_req
, NULL
);
298 static int digital_tg_listen_md(struct nfc_digital_dev
*ddev
, u8 rf_tech
)
300 return digital_send_cmd(ddev
, DIGITAL_CMD_TG_LISTEN_MD
, NULL
, NULL
, 500,
301 digital_tg_recv_md_req
, NULL
);
304 int digital_target_found(struct nfc_digital_dev
*ddev
,
305 struct nfc_target
*target
, u8 protocol
)
311 int (*check_crc
)(struct sk_buff
*skb
);
312 void (*add_crc
)(struct sk_buff
*skb
);
314 rf_tech
= ddev
->poll_techs
[ddev
->poll_tech_index
].rf_tech
;
317 case NFC_PROTO_JEWEL
:
318 framing
= NFC_DIGITAL_FRAMING_NFCA_T1T
;
319 check_crc
= digital_skb_check_crc_b
;
320 add_crc
= digital_skb_add_crc_b
;
323 case NFC_PROTO_MIFARE
:
324 framing
= NFC_DIGITAL_FRAMING_NFCA_T2T
;
325 check_crc
= digital_skb_check_crc_a
;
326 add_crc
= digital_skb_add_crc_a
;
329 case NFC_PROTO_FELICA
:
330 framing
= NFC_DIGITAL_FRAMING_NFCF_T3T
;
331 check_crc
= digital_skb_check_crc_f
;
332 add_crc
= digital_skb_add_crc_f
;
335 case NFC_PROTO_NFC_DEP
:
336 if (rf_tech
== NFC_DIGITAL_RF_TECH_106A
) {
337 framing
= NFC_DIGITAL_FRAMING_NFCA_NFC_DEP
;
338 check_crc
= digital_skb_check_crc_a
;
339 add_crc
= digital_skb_add_crc_a
;
341 framing
= NFC_DIGITAL_FRAMING_NFCF_NFC_DEP
;
342 check_crc
= digital_skb_check_crc_f
;
343 add_crc
= digital_skb_add_crc_f
;
347 case NFC_PROTO_ISO15693
:
348 framing
= NFC_DIGITAL_FRAMING_ISO15693_T5T
;
349 check_crc
= digital_skb_check_crc_b
;
350 add_crc
= digital_skb_add_crc_b
;
353 case NFC_PROTO_ISO14443
:
354 framing
= NFC_DIGITAL_FRAMING_NFCA_T4T
;
355 check_crc
= digital_skb_check_crc_a
;
356 add_crc
= digital_skb_add_crc_a
;
359 case NFC_PROTO_ISO14443_B
:
360 framing
= NFC_DIGITAL_FRAMING_NFCB_T4T
;
361 check_crc
= digital_skb_check_crc_b
;
362 add_crc
= digital_skb_add_crc_b
;
366 pr_err("Invalid protocol %d\n", protocol
);
370 pr_debug("rf_tech=%d, protocol=%d\n", rf_tech
, protocol
);
372 ddev
->curr_rf_tech
= rf_tech
;
374 if (DIGITAL_DRV_CAPS_IN_CRC(ddev
)) {
375 ddev
->skb_add_crc
= digital_skb_add_crc_none
;
376 ddev
->skb_check_crc
= digital_skb_check_crc_none
;
378 ddev
->skb_add_crc
= add_crc
;
379 ddev
->skb_check_crc
= check_crc
;
382 rc
= digital_in_configure_hw(ddev
, NFC_DIGITAL_CONFIG_FRAMING
, framing
);
386 target
->supported_protocols
= (1 << protocol
);
388 poll_tech_count
= ddev
->poll_tech_count
;
389 ddev
->poll_tech_count
= 0;
391 rc
= nfc_targets_found(ddev
->nfc_dev
, target
, 1);
393 ddev
->poll_tech_count
= poll_tech_count
;
400 void digital_poll_next_tech(struct nfc_digital_dev
*ddev
)
404 digital_switch_rf(ddev
, 0);
406 mutex_lock(&ddev
->poll_lock
);
408 if (!ddev
->poll_tech_count
) {
409 mutex_unlock(&ddev
->poll_lock
);
413 get_random_bytes(&rand_mod
, sizeof(rand_mod
));
414 ddev
->poll_tech_index
= rand_mod
% ddev
->poll_tech_count
;
416 mutex_unlock(&ddev
->poll_lock
);
418 schedule_delayed_work(&ddev
->poll_work
,
419 msecs_to_jiffies(DIGITAL_POLL_INTERVAL
));
422 static void digital_wq_poll(struct work_struct
*work
)
425 struct digital_poll_tech
*poll_tech
;
426 struct nfc_digital_dev
*ddev
= container_of(work
,
427 struct nfc_digital_dev
,
429 mutex_lock(&ddev
->poll_lock
);
431 if (!ddev
->poll_tech_count
) {
432 mutex_unlock(&ddev
->poll_lock
);
436 poll_tech
= &ddev
->poll_techs
[ddev
->poll_tech_index
];
438 mutex_unlock(&ddev
->poll_lock
);
440 rc
= poll_tech
->poll_func(ddev
, poll_tech
->rf_tech
);
442 digital_poll_next_tech(ddev
);
445 static void digital_add_poll_tech(struct nfc_digital_dev
*ddev
, u8 rf_tech
,
446 digital_poll_t poll_func
)
448 struct digital_poll_tech
*poll_tech
;
450 if (ddev
->poll_tech_count
>= NFC_DIGITAL_POLL_MODE_COUNT_MAX
)
453 poll_tech
= &ddev
->poll_techs
[ddev
->poll_tech_count
++];
455 poll_tech
->rf_tech
= rf_tech
;
456 poll_tech
->poll_func
= poll_func
;
460 * start_poll operation
461 * @nfc_dev: device to be polled
462 * @im_protocols: bitset of nfc initiator protocols to be used for polling
463 * @tm_protocols: bitset of nfc transport protocols to be used for polling
465 * For every supported protocol, the corresponding polling function is added
466 * to the table of polling technologies (ddev->poll_techs[]) using
467 * digital_add_poll_tech().
468 * When a polling function fails (by timeout or protocol error) the next one is
469 * schedule by digital_poll_next_tech() on the poll workqueue (ddev->poll_work).
471 static int digital_start_poll(struct nfc_dev
*nfc_dev
, __u32 im_protocols
,
474 struct nfc_digital_dev
*ddev
= nfc_get_drvdata(nfc_dev
);
475 u32 matching_im_protocols
, matching_tm_protocols
;
477 pr_debug("protocols: im 0x%x, tm 0x%x, supported 0x%x\n", im_protocols
,
478 tm_protocols
, ddev
->protocols
);
480 matching_im_protocols
= ddev
->protocols
& im_protocols
;
481 matching_tm_protocols
= ddev
->protocols
& tm_protocols
;
483 if (!matching_im_protocols
&& !matching_tm_protocols
) {
484 pr_err("Unknown protocol\n");
488 if (ddev
->poll_tech_count
) {
489 pr_err("Already polling\n");
493 if (ddev
->curr_protocol
) {
494 pr_err("A target is already active\n");
498 ddev
->poll_tech_count
= 0;
499 ddev
->poll_tech_index
= 0;
501 if (matching_im_protocols
& DIGITAL_PROTO_NFCA_RF_TECH
)
502 digital_add_poll_tech(ddev
, NFC_DIGITAL_RF_TECH_106A
,
503 digital_in_send_sens_req
);
505 if (matching_im_protocols
& DIGITAL_PROTO_NFCB_RF_TECH
)
506 digital_add_poll_tech(ddev
, NFC_DIGITAL_RF_TECH_106B
,
507 digital_in_send_sensb_req
);
509 if (matching_im_protocols
& DIGITAL_PROTO_NFCF_RF_TECH
) {
510 digital_add_poll_tech(ddev
, NFC_DIGITAL_RF_TECH_212F
,
511 digital_in_send_sensf_req
);
513 digital_add_poll_tech(ddev
, NFC_DIGITAL_RF_TECH_424F
,
514 digital_in_send_sensf_req
);
517 if (matching_im_protocols
& DIGITAL_PROTO_ISO15693_RF_TECH
)
518 digital_add_poll_tech(ddev
, NFC_DIGITAL_RF_TECH_ISO15693
,
519 digital_in_send_iso15693_inv_req
);
521 if (matching_tm_protocols
& NFC_PROTO_NFC_DEP_MASK
) {
522 if (ddev
->ops
->tg_listen_mdaa
) {
523 digital_add_poll_tech(ddev
, 0,
524 digital_tg_listen_mdaa
);
525 } else if (ddev
->ops
->tg_listen_md
) {
526 digital_add_poll_tech(ddev
, 0,
527 digital_tg_listen_md
);
529 digital_add_poll_tech(ddev
, NFC_DIGITAL_RF_TECH_106A
,
530 digital_tg_listen_nfca
);
532 digital_add_poll_tech(ddev
, NFC_DIGITAL_RF_TECH_212F
,
533 digital_tg_listen_nfcf
);
535 digital_add_poll_tech(ddev
, NFC_DIGITAL_RF_TECH_424F
,
536 digital_tg_listen_nfcf
);
540 if (!ddev
->poll_tech_count
) {
541 pr_err("Unsupported protocols: im=0x%x, tm=0x%x\n",
542 matching_im_protocols
, matching_tm_protocols
);
546 schedule_delayed_work(&ddev
->poll_work
, 0);
551 static void digital_stop_poll(struct nfc_dev
*nfc_dev
)
553 struct nfc_digital_dev
*ddev
= nfc_get_drvdata(nfc_dev
);
555 mutex_lock(&ddev
->poll_lock
);
557 if (!ddev
->poll_tech_count
) {
558 pr_err("Polling operation was not running\n");
559 mutex_unlock(&ddev
->poll_lock
);
563 ddev
->poll_tech_count
= 0;
565 mutex_unlock(&ddev
->poll_lock
);
567 cancel_delayed_work_sync(&ddev
->poll_work
);
569 digital_abort_cmd(ddev
);
572 static int digital_dev_up(struct nfc_dev
*nfc_dev
)
574 struct nfc_digital_dev
*ddev
= nfc_get_drvdata(nfc_dev
);
576 digital_switch_rf(ddev
, 1);
581 static int digital_dev_down(struct nfc_dev
*nfc_dev
)
583 struct nfc_digital_dev
*ddev
= nfc_get_drvdata(nfc_dev
);
585 digital_switch_rf(ddev
, 0);
590 static int digital_dep_link_up(struct nfc_dev
*nfc_dev
,
591 struct nfc_target
*target
,
592 __u8 comm_mode
, __u8
*gb
, size_t gb_len
)
594 struct nfc_digital_dev
*ddev
= nfc_get_drvdata(nfc_dev
);
597 rc
= digital_in_send_atr_req(ddev
, target
, comm_mode
, gb
, gb_len
);
600 ddev
->curr_protocol
= NFC_PROTO_NFC_DEP
;
605 static int digital_dep_link_down(struct nfc_dev
*nfc_dev
)
607 struct nfc_digital_dev
*ddev
= nfc_get_drvdata(nfc_dev
);
609 digital_abort_cmd(ddev
);
611 ddev
->curr_protocol
= 0;
616 static int digital_activate_target(struct nfc_dev
*nfc_dev
,
617 struct nfc_target
*target
, __u32 protocol
)
619 struct nfc_digital_dev
*ddev
= nfc_get_drvdata(nfc_dev
);
621 if (ddev
->poll_tech_count
) {
622 pr_err("Can't activate a target while polling\n");
626 if (ddev
->curr_protocol
) {
627 pr_err("A target is already active\n");
631 ddev
->curr_protocol
= protocol
;
636 static void digital_deactivate_target(struct nfc_dev
*nfc_dev
,
637 struct nfc_target
*target
,
640 struct nfc_digital_dev
*ddev
= nfc_get_drvdata(nfc_dev
);
642 if (!ddev
->curr_protocol
) {
643 pr_err("No active target\n");
647 digital_abort_cmd(ddev
);
648 ddev
->curr_protocol
= 0;
651 static int digital_tg_send(struct nfc_dev
*dev
, struct sk_buff
*skb
)
653 struct nfc_digital_dev
*ddev
= nfc_get_drvdata(dev
);
655 return digital_tg_send_dep_res(ddev
, skb
);
658 static void digital_in_send_complete(struct nfc_digital_dev
*ddev
, void *arg
,
659 struct sk_buff
*resp
)
661 struct digital_data_exch
*data_exch
= arg
;
670 if (ddev
->curr_protocol
== NFC_PROTO_MIFARE
) {
671 rc
= digital_in_recv_mifare_res(resp
);
672 /* crc check is done in digital_in_recv_mifare_res() */
676 if ((ddev
->curr_protocol
== NFC_PROTO_ISO14443
) ||
677 (ddev
->curr_protocol
== NFC_PROTO_ISO14443_B
)) {
678 rc
= digital_in_iso_dep_pull_sod(ddev
, resp
);
683 rc
= ddev
->skb_check_crc(resp
);
691 data_exch
->cb(data_exch
->cb_context
, resp
, rc
);
696 static int digital_in_send(struct nfc_dev
*nfc_dev
, struct nfc_target
*target
,
697 struct sk_buff
*skb
, data_exchange_cb_t cb
,
700 struct nfc_digital_dev
*ddev
= nfc_get_drvdata(nfc_dev
);
701 struct digital_data_exch
*data_exch
;
704 data_exch
= kzalloc(sizeof(*data_exch
), GFP_KERNEL
);
709 data_exch
->cb_context
= cb_context
;
711 if (ddev
->curr_protocol
== NFC_PROTO_NFC_DEP
) {
712 rc
= digital_in_send_dep_req(ddev
, target
, skb
, data_exch
);
716 if ((ddev
->curr_protocol
== NFC_PROTO_ISO14443
) ||
717 (ddev
->curr_protocol
== NFC_PROTO_ISO14443_B
)) {
718 rc
= digital_in_iso_dep_push_sod(ddev
, skb
);
723 ddev
->skb_add_crc(skb
);
725 rc
= digital_in_send_cmd(ddev
, skb
, 500, digital_in_send_complete
,
735 static struct nfc_ops digital_nfc_ops
= {
736 .dev_up
= digital_dev_up
,
737 .dev_down
= digital_dev_down
,
738 .start_poll
= digital_start_poll
,
739 .stop_poll
= digital_stop_poll
,
740 .dep_link_up
= digital_dep_link_up
,
741 .dep_link_down
= digital_dep_link_down
,
742 .activate_target
= digital_activate_target
,
743 .deactivate_target
= digital_deactivate_target
,
744 .tm_send
= digital_tg_send
,
745 .im_transceive
= digital_in_send
,
748 struct nfc_digital_dev
*nfc_digital_allocate_device(struct nfc_digital_ops
*ops
,
749 __u32 supported_protocols
,
750 __u32 driver_capabilities
,
751 int tx_headroom
, int tx_tailroom
)
753 struct nfc_digital_dev
*ddev
;
755 if (!ops
->in_configure_hw
|| !ops
->in_send_cmd
|| !ops
->tg_listen
||
756 !ops
->tg_configure_hw
|| !ops
->tg_send_cmd
|| !ops
->abort_cmd
||
757 !ops
->switch_rf
|| (ops
->tg_listen_md
&& !ops
->tg_get_rf_tech
))
760 ddev
= kzalloc(sizeof(*ddev
), GFP_KERNEL
);
764 ddev
->driver_capabilities
= driver_capabilities
;
767 mutex_init(&ddev
->cmd_lock
);
768 INIT_LIST_HEAD(&ddev
->cmd_queue
);
770 INIT_WORK(&ddev
->cmd_work
, digital_wq_cmd
);
771 INIT_WORK(&ddev
->cmd_complete_work
, digital_wq_cmd_complete
);
773 mutex_init(&ddev
->poll_lock
);
774 INIT_DELAYED_WORK(&ddev
->poll_work
, digital_wq_poll
);
776 if (supported_protocols
& NFC_PROTO_JEWEL_MASK
)
777 ddev
->protocols
|= NFC_PROTO_JEWEL_MASK
;
778 if (supported_protocols
& NFC_PROTO_MIFARE_MASK
)
779 ddev
->protocols
|= NFC_PROTO_MIFARE_MASK
;
780 if (supported_protocols
& NFC_PROTO_FELICA_MASK
)
781 ddev
->protocols
|= NFC_PROTO_FELICA_MASK
;
782 if (supported_protocols
& NFC_PROTO_NFC_DEP_MASK
)
783 ddev
->protocols
|= NFC_PROTO_NFC_DEP_MASK
;
784 if (supported_protocols
& NFC_PROTO_ISO15693_MASK
)
785 ddev
->protocols
|= NFC_PROTO_ISO15693_MASK
;
786 if (supported_protocols
& NFC_PROTO_ISO14443_MASK
)
787 ddev
->protocols
|= NFC_PROTO_ISO14443_MASK
;
788 if (supported_protocols
& NFC_PROTO_ISO14443_B_MASK
)
789 ddev
->protocols
|= NFC_PROTO_ISO14443_B_MASK
;
791 ddev
->tx_headroom
= tx_headroom
+ DIGITAL_MAX_HEADER_LEN
;
792 ddev
->tx_tailroom
= tx_tailroom
+ DIGITAL_CRC_LEN
;
794 ddev
->nfc_dev
= nfc_allocate_device(&digital_nfc_ops
, ddev
->protocols
,
797 if (!ddev
->nfc_dev
) {
798 pr_err("nfc_allocate_device failed\n");
802 nfc_set_drvdata(ddev
->nfc_dev
, ddev
);
811 EXPORT_SYMBOL(nfc_digital_allocate_device
);
813 void nfc_digital_free_device(struct nfc_digital_dev
*ddev
)
815 nfc_free_device(ddev
->nfc_dev
);
818 EXPORT_SYMBOL(nfc_digital_free_device
);
820 int nfc_digital_register_device(struct nfc_digital_dev
*ddev
)
822 return nfc_register_device(ddev
->nfc_dev
);
824 EXPORT_SYMBOL(nfc_digital_register_device
);
826 void nfc_digital_unregister_device(struct nfc_digital_dev
*ddev
)
828 struct digital_cmd
*cmd
, *n
;
830 nfc_unregister_device(ddev
->nfc_dev
);
832 mutex_lock(&ddev
->poll_lock
);
833 ddev
->poll_tech_count
= 0;
834 mutex_unlock(&ddev
->poll_lock
);
836 cancel_delayed_work_sync(&ddev
->poll_work
);
837 cancel_work_sync(&ddev
->cmd_work
);
838 cancel_work_sync(&ddev
->cmd_complete_work
);
840 list_for_each_entry_safe(cmd
, n
, &ddev
->cmd_queue
, queue
) {
841 list_del(&cmd
->queue
);
843 /* Call the command callback if any and pass it a ENODEV error.
844 * This gives a chance to the command issuer to free any
848 cmd
->cmd_cb(ddev
, cmd
->cb_context
, ERR_PTR(-ENODEV
));
850 kfree(cmd
->mdaa_params
);
854 EXPORT_SYMBOL(nfc_digital_unregister_device
);
856 MODULE_LICENSE("GPL");