WIP FPC-III support
[linux/fpc-iii.git] / net / nfc / digital_core.c
blobda7e2112771f2c6890cc11ac1d2544d9ec318d02
1 // SPDX-License-Identifier: GPL-2.0-only
2 /*
3 * NFC Digital Protocol stack
4 * Copyright (c) 2013, Intel Corporation.
5 */
7 #define pr_fmt(fmt) "digital: %s: " fmt, __func__
9 #include <linux/module.h>
11 #include "digital.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
27 struct digital_cmd {
28 struct list_head queue;
30 u8 type;
31 u8 pending;
33 u16 timeout;
34 struct sk_buff *req;
35 struct sk_buff *resp;
36 struct digital_tg_mdaa_params *mdaa_params;
38 nfc_digital_cmd_complete_t cmd_cb;
39 void *cb_context;
42 struct sk_buff *digital_skb_alloc(struct nfc_digital_dev *ddev,
43 unsigned int len)
45 struct sk_buff *skb;
47 skb = alloc_skb(len + ddev->tx_headroom + ddev->tx_tailroom,
48 GFP_KERNEL);
49 if (skb)
50 skb_reserve(skb, ddev->tx_headroom);
52 return skb;
55 void digital_skb_add_crc(struct sk_buff *skb, crc_func_t crc_func, u16 init,
56 u8 bitwise_inv, u8 msb_first)
58 u16 crc;
60 crc = crc_func(init, skb->data, skb->len);
62 if (bitwise_inv)
63 crc = ~crc;
65 if (msb_first)
66 crc = __fswab16(crc);
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)
75 int rc;
76 u16 crc;
78 if (skb->len <= 2)
79 return -EIO;
81 crc = crc_func(crc_init, skb->data, skb->len - 2);
83 if (bitwise_inv)
84 crc = ~crc;
86 if (msb_first)
87 crc = __swab16(crc);
89 rc = (skb->data[skb->len - 2] - (crc & 0xFF)) +
90 (skb->data[skb->len - 1] - ((crc >> 8) & 0xFF));
92 if (rc)
93 return -EIO;
95 skb_trim(skb, skb->len - 2);
97 return 0;
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,
115 cmd_complete_work);
117 mutex_lock(&ddev->cmd_lock);
119 cmd = list_first_entry_or_null(&ddev->cmd_queue, struct digital_cmd,
120 queue);
121 if (!cmd) {
122 mutex_unlock(&ddev->cmd_lock);
123 return;
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);
137 kfree(cmd);
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;
147 cmd->resp = resp;
149 schedule_work(&ddev->cmd_complete_work);
152 static void digital_wq_cmd(struct work_struct *work)
154 int rc;
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,
159 cmd_work);
161 mutex_lock(&ddev->cmd_lock);
163 cmd = list_first_entry_or_null(&ddev->cmd_queue, struct digital_cmd,
164 queue);
165 if (!cmd || cmd->pending) {
166 mutex_unlock(&ddev->cmd_lock);
167 return;
170 cmd->pending = 1;
172 mutex_unlock(&ddev->cmd_lock);
174 if (cmd->req)
175 print_hex_dump_debug("DIGITAL TX: ", DUMP_PREFIX_NONE, 16, 1,
176 cmd->req->data, cmd->req->len, false);
178 switch (cmd->type) {
179 case DIGITAL_CMD_IN_SEND:
180 rc = ddev->ops->in_send_cmd(ddev, cmd->req, cmd->timeout,
181 digital_send_cmd_complete, cmd);
182 break;
184 case DIGITAL_CMD_TG_SEND:
185 rc = ddev->ops->tg_send_cmd(ddev, cmd->req, cmd->timeout,
186 digital_send_cmd_complete, cmd);
187 break;
189 case DIGITAL_CMD_TG_LISTEN:
190 rc = ddev->ops->tg_listen(ddev, cmd->timeout,
191 digital_send_cmd_complete, cmd);
192 break;
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);
199 break;
201 case DIGITAL_CMD_TG_LISTEN_MD:
202 rc = ddev->ops->tg_listen_md(ddev, cmd->timeout,
203 digital_send_cmd_complete, cmd);
204 break;
206 default:
207 pr_err("Unknown cmd type %d\n", cmd->type);
208 return;
211 if (!rc)
212 return;
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);
220 kfree_skb(cmd->req);
221 kfree(cmd->mdaa_params);
222 kfree(cmd);
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,
230 void *cb_context)
232 struct digital_cmd *cmd;
234 cmd = kzalloc(sizeof(*cmd), GFP_KERNEL);
235 if (!cmd)
236 return -ENOMEM;
238 cmd->type = cmd_type;
239 cmd->timeout = timeout;
240 cmd->req = skb;
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);
252 return 0;
255 int digital_in_configure_hw(struct nfc_digital_dev *ddev, int type, int param)
257 int rc;
259 rc = ddev->ops->in_configure_hw(ddev, type, param);
260 if (rc)
261 pr_err("in_configure_hw failed: %d\n", rc);
263 return rc;
266 int digital_tg_configure_hw(struct nfc_digital_dev *ddev, int type, int param)
268 int rc;
270 rc = ddev->ops->tg_configure_hw(ddev, type, param);
271 if (rc)
272 pr_err("tg_configure_hw failed: %d\n", rc);
274 return 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);
282 if (!params)
283 return -ENOMEM;
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)
307 int rc;
308 u8 framing;
309 u8 rf_tech;
310 u8 poll_tech_count;
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;
316 switch (protocol) {
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;
321 break;
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;
327 break;
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;
333 break;
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;
340 } else {
341 framing = NFC_DIGITAL_FRAMING_NFCF_NFC_DEP;
342 check_crc = digital_skb_check_crc_f;
343 add_crc = digital_skb_add_crc_f;
345 break;
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;
351 break;
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;
357 break;
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;
363 break;
365 default:
366 pr_err("Invalid protocol %d\n", protocol);
367 return -EINVAL;
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;
377 } else {
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);
383 if (rc)
384 return rc;
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);
392 if (rc) {
393 ddev->poll_tech_count = poll_tech_count;
394 return rc;
397 return 0;
400 void digital_poll_next_tech(struct nfc_digital_dev *ddev)
402 u8 rand_mod;
404 digital_switch_rf(ddev, 0);
406 mutex_lock(&ddev->poll_lock);
408 if (!ddev->poll_tech_count) {
409 mutex_unlock(&ddev->poll_lock);
410 return;
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)
424 int rc;
425 struct digital_poll_tech *poll_tech;
426 struct nfc_digital_dev *ddev = container_of(work,
427 struct nfc_digital_dev,
428 poll_work.work);
429 mutex_lock(&ddev->poll_lock);
431 if (!ddev->poll_tech_count) {
432 mutex_unlock(&ddev->poll_lock);
433 return;
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);
441 if (rc)
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)
451 return;
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,
472 __u32 tm_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");
485 return -EINVAL;
488 if (ddev->poll_tech_count) {
489 pr_err("Already polling\n");
490 return -EBUSY;
493 if (ddev->curr_protocol) {
494 pr_err("A target is already active\n");
495 return -EBUSY;
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);
528 } else {
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);
543 return -EINVAL;
546 schedule_delayed_work(&ddev->poll_work, 0);
548 return 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);
560 return;
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);
578 return 0;
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);
587 return 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);
595 int rc;
597 rc = digital_in_send_atr_req(ddev, target, comm_mode, gb, gb_len);
599 if (!rc)
600 ddev->curr_protocol = NFC_PROTO_NFC_DEP;
602 return rc;
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;
613 return 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");
623 return -EBUSY;
626 if (ddev->curr_protocol) {
627 pr_err("A target is already active\n");
628 return -EBUSY;
631 ddev->curr_protocol = protocol;
633 return 0;
636 static void digital_deactivate_target(struct nfc_dev *nfc_dev,
637 struct nfc_target *target,
638 u8 mode)
640 struct nfc_digital_dev *ddev = nfc_get_drvdata(nfc_dev);
642 if (!ddev->curr_protocol) {
643 pr_err("No active target\n");
644 return;
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;
662 int rc;
664 if (IS_ERR(resp)) {
665 rc = PTR_ERR(resp);
666 resp = NULL;
667 goto done;
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() */
673 goto done;
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);
679 if (rc)
680 goto done;
683 rc = ddev->skb_check_crc(resp);
685 done:
686 if (rc) {
687 kfree_skb(resp);
688 resp = NULL;
691 data_exch->cb(data_exch->cb_context, resp, rc);
693 kfree(data_exch);
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,
698 void *cb_context)
700 struct nfc_digital_dev *ddev = nfc_get_drvdata(nfc_dev);
701 struct digital_data_exch *data_exch;
702 int rc;
704 data_exch = kzalloc(sizeof(*data_exch), GFP_KERNEL);
705 if (!data_exch)
706 return -ENOMEM;
708 data_exch->cb = cb;
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);
713 goto exit;
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);
719 if (rc)
720 goto exit;
723 ddev->skb_add_crc(skb);
725 rc = digital_in_send_cmd(ddev, skb, 500, digital_in_send_complete,
726 data_exch);
728 exit:
729 if (rc)
730 kfree(data_exch);
732 return rc;
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))
758 return NULL;
760 ddev = kzalloc(sizeof(*ddev), GFP_KERNEL);
761 if (!ddev)
762 return NULL;
764 ddev->driver_capabilities = driver_capabilities;
765 ddev->ops = ops;
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,
795 ddev->tx_headroom,
796 ddev->tx_tailroom);
797 if (!ddev->nfc_dev) {
798 pr_err("nfc_allocate_device failed\n");
799 goto free_dev;
802 nfc_set_drvdata(ddev->nfc_dev, ddev);
804 return ddev;
806 free_dev:
807 kfree(ddev);
809 return NULL;
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);
816 kfree(ddev);
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
845 * allocated buffer.
847 if (cmd->cmd_cb)
848 cmd->cmd_cb(ddev, cmd->cb_context, ERR_PTR(-ENODEV));
850 kfree(cmd->mdaa_params);
851 kfree(cmd);
854 EXPORT_SYMBOL(nfc_digital_unregister_device);
856 MODULE_LICENSE("GPL");