firmware: Ignore abort check when no user-helper is used
[deliverable/linux.git] / net / nfc / core.c
CommitLineData
3e256b8f
LRV
1/*
2 * Copyright (C) 2011 Instituto Nokia de Tecnologia
3 *
4 * Authors:
5 * Lauro Ramos Venancio <lauro.venancio@openbossa.org>
6 * Aloisio Almeida Jr <aloisio.almeida@openbossa.org>
7 *
8 * This program is free software; you can redistribute it and/or modify
9 * it under the terms of the GNU General Public License as published by
10 * the Free Software Foundation; either version 2 of the License, or
11 * (at your option) any later version.
12 *
13 * This program is distributed in the hope that it will be useful,
14 * but WITHOUT ANY WARRANTY; without even the implied warranty of
15 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 * GNU General Public License for more details.
17 *
18 * You should have received a copy of the GNU General Public License
19 * along with this program; if not, write to the
20 * Free Software Foundation, Inc.,
21 * 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
22 */
23
52858b51 24#define pr_fmt(fmt) KBUILD_MODNAME ": %s: " fmt, __func__
ed1e0ad8 25
3e256b8f
LRV
26#include <linux/init.h>
27#include <linux/kernel.h>
28#include <linux/module.h>
29#include <linux/slab.h>
7c7cd3bf 30#include <linux/nfc.h>
3e256b8f 31
5df16cad
SO
32#include <net/genetlink.h>
33
3e256b8f
LRV
34#include "nfc.h"
35
36#define VERSION "0.1"
37
c8d56ae7
EL
38#define NFC_CHECK_PRES_FREQ_MS 2000
39
3e256b8f
LRV
40int nfc_devlist_generation;
41DEFINE_MUTEX(nfc_devlist_mutex);
42
7eda8b8e
SO
43/* NFC device ID bitmap */
44static DEFINE_IDA(nfc_index_ida);
45
8b3fe7b5
IE
46/**
47 * nfc_dev_up - turn on the NFC device
48 *
49 * @dev: The nfc device to be turned on
50 *
51 * The device remains up until the nfc_dev_down function is called.
52 */
53int nfc_dev_up(struct nfc_dev *dev)
54{
55 int rc = 0;
56
20c239c1 57 pr_debug("dev_name=%s\n", dev_name(&dev->dev));
8b3fe7b5
IE
58
59 device_lock(&dev->dev);
60
61 if (!device_is_registered(&dev->dev)) {
62 rc = -ENODEV;
63 goto error;
64 }
65
66 if (dev->dev_up) {
67 rc = -EALREADY;
68 goto error;
69 }
70
71 if (dev->ops->dev_up)
72 rc = dev->ops->dev_up(dev);
73
74 if (!rc)
75 dev->dev_up = true;
76
77error:
78 device_unlock(&dev->dev);
79 return rc;
80}
81
82/**
83 * nfc_dev_down - turn off the NFC device
84 *
85 * @dev: The nfc device to be turned off
86 */
87int nfc_dev_down(struct nfc_dev *dev)
88{
89 int rc = 0;
90
20c239c1 91 pr_debug("dev_name=%s\n", dev_name(&dev->dev));
8b3fe7b5
IE
92
93 device_lock(&dev->dev);
94
95 if (!device_is_registered(&dev->dev)) {
96 rc = -ENODEV;
97 goto error;
98 }
99
100 if (!dev->dev_up) {
101 rc = -EALREADY;
102 goto error;
103 }
104
90099433 105 if (dev->polling || dev->active_target) {
8b3fe7b5
IE
106 rc = -EBUSY;
107 goto error;
108 }
109
110 if (dev->ops->dev_down)
111 dev->ops->dev_down(dev);
112
113 dev->dev_up = false;
114
115error:
116 device_unlock(&dev->dev);
117 return rc;
118}
119
3e256b8f
LRV
120/**
121 * nfc_start_poll - start polling for nfc targets
122 *
123 * @dev: The nfc device that must start polling
124 * @protocols: bitset of nfc protocols that must be used for polling
125 *
126 * The device remains polling for targets until a target is found or
127 * the nfc_stop_poll function is called.
128 */
fe7c5800 129int nfc_start_poll(struct nfc_dev *dev, u32 im_protocols, u32 tm_protocols)
3e256b8f
LRV
130{
131 int rc;
132
fe7c5800
SO
133 pr_debug("dev_name %s initiator protocols 0x%x target protocols 0x%x\n",
134 dev_name(&dev->dev), im_protocols, tm_protocols);
3e256b8f 135
fe7c5800 136 if (!im_protocols && !tm_protocols)
3e256b8f
LRV
137 return -EINVAL;
138
139 device_lock(&dev->dev);
140
141 if (!device_is_registered(&dev->dev)) {
142 rc = -ENODEV;
143 goto error;
144 }
145
146 if (dev->polling) {
147 rc = -EBUSY;
148 goto error;
149 }
150
fe7c5800 151 rc = dev->ops->start_poll(dev, im_protocols, tm_protocols);
f212ad5e 152 if (!rc) {
3e256b8f 153 dev->polling = true;
f212ad5e
SO
154 dev->rf_mode = NFC_RF_NONE;
155 }
3e256b8f
LRV
156
157error:
158 device_unlock(&dev->dev);
159 return rc;
160}
161
162/**
163 * nfc_stop_poll - stop polling for nfc targets
164 *
165 * @dev: The nfc device that must stop polling
166 */
167int nfc_stop_poll(struct nfc_dev *dev)
168{
169 int rc = 0;
170
20c239c1 171 pr_debug("dev_name=%s\n", dev_name(&dev->dev));
3e256b8f
LRV
172
173 device_lock(&dev->dev);
174
175 if (!device_is_registered(&dev->dev)) {
176 rc = -ENODEV;
177 goto error;
178 }
179
180 if (!dev->polling) {
181 rc = -EINVAL;
182 goto error;
183 }
184
185 dev->ops->stop_poll(dev);
186 dev->polling = false;
5bcf099c 187 dev->rf_mode = NFC_RF_NONE;
3e256b8f
LRV
188
189error:
190 device_unlock(&dev->dev);
191 return rc;
192}
193
90099433
EL
194static struct nfc_target *nfc_find_target(struct nfc_dev *dev, u32 target_idx)
195{
196 int i;
197
198 if (dev->n_targets == 0)
199 return NULL;
200
0f450772 201 for (i = 0; i < dev->n_targets; i++) {
90099433
EL
202 if (dev->targets[i].idx == target_idx)
203 return &dev->targets[i];
204 }
205
206 return NULL;
207}
208
47807d3d 209int nfc_dep_link_up(struct nfc_dev *dev, int target_index, u8 comm_mode)
1ed28f61
SO
210{
211 int rc = 0;
47807d3d
SO
212 u8 *gb;
213 size_t gb_len;
90099433 214 struct nfc_target *target;
1ed28f61 215
47807d3d 216 pr_debug("dev_name=%s comm %d\n", dev_name(&dev->dev), comm_mode);
1ed28f61
SO
217
218 if (!dev->ops->dep_link_up)
219 return -EOPNOTSUPP;
220
221 device_lock(&dev->dev);
222
223 if (!device_is_registered(&dev->dev)) {
224 rc = -ENODEV;
225 goto error;
226 }
227
228 if (dev->dep_link_up == true) {
229 rc = -EALREADY;
230 goto error;
231 }
232
47807d3d
SO
233 gb = nfc_llcp_general_bytes(dev, &gb_len);
234 if (gb_len > NFC_MAX_GT_LEN) {
235 rc = -EINVAL;
236 goto error;
237 }
238
90099433
EL
239 target = nfc_find_target(dev, target_index);
240 if (target == NULL) {
241 rc = -ENOTCONN;
242 goto error;
243 }
244
245 rc = dev->ops->dep_link_up(dev, target, comm_mode, gb, gb_len);
f212ad5e 246 if (!rc) {
90099433 247 dev->active_target = target;
f212ad5e
SO
248 dev->rf_mode = NFC_RF_INITIATOR;
249 }
1ed28f61
SO
250
251error:
252 device_unlock(&dev->dev);
253 return rc;
254}
255
256int nfc_dep_link_down(struct nfc_dev *dev)
257{
258 int rc = 0;
259
260 pr_debug("dev_name=%s\n", dev_name(&dev->dev));
261
262 if (!dev->ops->dep_link_down)
263 return -EOPNOTSUPP;
264
265 device_lock(&dev->dev);
266
267 if (!device_is_registered(&dev->dev)) {
268 rc = -ENODEV;
269 goto error;
270 }
271
272 if (dev->dep_link_up == false) {
273 rc = -EALREADY;
274 goto error;
275 }
276
1ed28f61
SO
277 rc = dev->ops->dep_link_down(dev);
278 if (!rc) {
279 dev->dep_link_up = false;
90099433 280 dev->active_target = NULL;
5bcf099c 281 dev->rf_mode = NFC_RF_NONE;
d646960f 282 nfc_llcp_mac_is_down(dev);
1ed28f61
SO
283 nfc_genl_dep_link_down_event(dev);
284 }
285
286error:
287 device_unlock(&dev->dev);
5bcf099c 288
1ed28f61
SO
289 return rc;
290}
291
292int nfc_dep_link_is_up(struct nfc_dev *dev, u32 target_idx,
0a40acb2 293 u8 comm_mode, u8 rf_mode)
1ed28f61
SO
294{
295 dev->dep_link_up = true;
1ed28f61 296
d646960f
SO
297 nfc_llcp_mac_is_up(dev, target_idx, comm_mode, rf_mode);
298
1ed28f61
SO
299 return nfc_genl_dep_link_up_event(dev, target_idx, comm_mode, rf_mode);
300}
301EXPORT_SYMBOL(nfc_dep_link_is_up);
302
3e256b8f
LRV
303/**
304 * nfc_activate_target - prepare the target for data exchange
305 *
306 * @dev: The nfc device that found the target
307 * @target_idx: index of the target that must be activated
308 * @protocol: nfc protocol that will be used for data exchange
309 */
310int nfc_activate_target(struct nfc_dev *dev, u32 target_idx, u32 protocol)
311{
312 int rc;
90099433 313 struct nfc_target *target;
3e256b8f 314
20c239c1
JP
315 pr_debug("dev_name=%s target_idx=%u protocol=%u\n",
316 dev_name(&dev->dev), target_idx, protocol);
3e256b8f
LRV
317
318 device_lock(&dev->dev);
319
320 if (!device_is_registered(&dev->dev)) {
321 rc = -ENODEV;
322 goto error;
323 }
324
90099433
EL
325 if (dev->active_target) {
326 rc = -EBUSY;
327 goto error;
328 }
329
330 target = nfc_find_target(dev, target_idx);
331 if (target == NULL) {
332 rc = -ENOTCONN;
333 goto error;
334 }
335
336 rc = dev->ops->activate_target(dev, target, protocol);
c8d56ae7 337 if (!rc) {
90099433 338 dev->active_target = target;
f212ad5e 339 dev->rf_mode = NFC_RF_INITIATOR;
3e256b8f 340
c8d56ae7
EL
341 if (dev->ops->check_presence)
342 mod_timer(&dev->check_pres_timer, jiffies +
343 msecs_to_jiffies(NFC_CHECK_PRES_FREQ_MS));
344 }
3e256b8f
LRV
345
346error:
347 device_unlock(&dev->dev);
348 return rc;
349}
350
351/**
352 * nfc_deactivate_target - deactivate a nfc target
353 *
354 * @dev: The nfc device that found the target
355 * @target_idx: index of the target that must be deactivated
356 */
357int nfc_deactivate_target(struct nfc_dev *dev, u32 target_idx)
358{
359 int rc = 0;
360
20c239c1
JP
361 pr_debug("dev_name=%s target_idx=%u\n",
362 dev_name(&dev->dev), target_idx);
3e256b8f
LRV
363
364 device_lock(&dev->dev);
365
366 if (!device_is_registered(&dev->dev)) {
367 rc = -ENODEV;
368 goto error;
369 }
370
90099433
EL
371 if (dev->active_target == NULL) {
372 rc = -ENOTCONN;
373 goto error;
374 }
375
376 if (dev->active_target->idx != target_idx) {
377 rc = -ENOTCONN;
378 goto error;
379 }
380
c8d56ae7
EL
381 if (dev->ops->check_presence)
382 del_timer_sync(&dev->check_pres_timer);
383
90099433
EL
384 dev->ops->deactivate_target(dev, dev->active_target);
385 dev->active_target = NULL;
3e256b8f
LRV
386
387error:
388 device_unlock(&dev->dev);
389 return rc;
390}
391
392/**
393 * nfc_data_exchange - transceive data
394 *
395 * @dev: The nfc device that found the target
396 * @target_idx: index of the target
397 * @skb: data to be sent
398 * @cb: callback called when the response is received
399 * @cb_context: parameter for the callback function
400 *
401 * The user must wait for the callback before calling this function again.
402 */
0a40acb2
SO
403int nfc_data_exchange(struct nfc_dev *dev, u32 target_idx, struct sk_buff *skb,
404 data_exchange_cb_t cb, void *cb_context)
3e256b8f
LRV
405{
406 int rc;
407
20c239c1
JP
408 pr_debug("dev_name=%s target_idx=%u skb->len=%u\n",
409 dev_name(&dev->dev), target_idx, skb->len);
3e256b8f
LRV
410
411 device_lock(&dev->dev);
412
413 if (!device_is_registered(&dev->dev)) {
414 rc = -ENODEV;
415 kfree_skb(skb);
416 goto error;
417 }
418
be9ae4ce
SO
419 if (dev->rf_mode == NFC_RF_INITIATOR && dev->active_target != NULL) {
420 if (dev->active_target->idx != target_idx) {
421 rc = -EADDRNOTAVAIL;
422 kfree_skb(skb);
423 goto error;
424 }
144612ca 425
be9ae4ce
SO
426 if (dev->ops->check_presence)
427 del_timer_sync(&dev->check_pres_timer);
428
429 rc = dev->ops->im_transceive(dev, dev->active_target, skb, cb,
430 cb_context);
431
432 if (!rc && dev->ops->check_presence)
433 mod_timer(&dev->check_pres_timer, jiffies +
434 msecs_to_jiffies(NFC_CHECK_PRES_FREQ_MS));
435 } else if (dev->rf_mode == NFC_RF_TARGET && dev->ops->tm_send != NULL) {
436 rc = dev->ops->tm_send(dev, skb);
437 } else {
438 rc = -ENOTCONN;
144612ca
EL
439 kfree_skb(skb);
440 goto error;
441 }
442
c8d56ae7 443
3e256b8f
LRV
444error:
445 device_unlock(&dev->dev);
446 return rc;
447}
448
541d920b
SO
449int nfc_set_remote_general_bytes(struct nfc_dev *dev, u8 *gb, u8 gb_len)
450{
0a40acb2 451 pr_debug("dev_name=%s gb_len=%d\n", dev_name(&dev->dev), gb_len);
541d920b
SO
452
453 if (gb_len > NFC_MAX_GT_LEN)
454 return -EINVAL;
455
d646960f 456 return nfc_llcp_set_remote_gb(dev, gb, gb_len);
541d920b
SO
457}
458EXPORT_SYMBOL(nfc_set_remote_general_bytes);
459
ab73b751
SO
460u8 *nfc_get_local_general_bytes(struct nfc_dev *dev, size_t *gb_len)
461{
462 pr_debug("dev_name=%s\n", dev_name(&dev->dev));
463
464 return nfc_llcp_general_bytes(dev, gb_len);
465}
466EXPORT_SYMBOL(nfc_get_local_general_bytes);
467
73167ced
SO
468int nfc_tm_data_received(struct nfc_dev *dev, struct sk_buff *skb)
469{
470 /* Only LLCP target mode for now */
471 if (dev->dep_link_up == false) {
472 kfree_skb(skb);
473 return -ENOLINK;
474 }
475
476 return nfc_llcp_data_received(dev, skb);
477}
478EXPORT_SYMBOL(nfc_tm_data_received);
479
fc40a8c1
SO
480int nfc_tm_activated(struct nfc_dev *dev, u32 protocol, u8 comm_mode,
481 u8 *gb, size_t gb_len)
482{
483 int rc;
484
485 device_lock(&dev->dev);
486
487 dev->polling = false;
488
489 if (gb != NULL) {
490 rc = nfc_set_remote_general_bytes(dev, gb, gb_len);
491 if (rc < 0)
492 goto out;
493 }
494
f212ad5e
SO
495 dev->rf_mode = NFC_RF_TARGET;
496
fc40a8c1
SO
497 if (protocol == NFC_PROTO_NFC_DEP_MASK)
498 nfc_dep_link_is_up(dev, 0, comm_mode, NFC_RF_TARGET);
499
500 rc = nfc_genl_tm_activated(dev, protocol);
501
502out:
503 device_unlock(&dev->dev);
504
505 return rc;
506}
507EXPORT_SYMBOL(nfc_tm_activated);
508
509int nfc_tm_deactivated(struct nfc_dev *dev)
510{
511 dev->dep_link_up = false;
5bcf099c 512 dev->rf_mode = NFC_RF_NONE;
fc40a8c1
SO
513
514 return nfc_genl_tm_deactivated(dev);
515}
516EXPORT_SYMBOL(nfc_tm_deactivated);
517
3e256b8f 518/**
7c7cd3bf 519 * nfc_alloc_send_skb - allocate a skb for data exchange responses
3e256b8f
LRV
520 *
521 * @size: size to allocate
522 * @gfp: gfp flags
523 */
7c7cd3bf 524struct sk_buff *nfc_alloc_send_skb(struct nfc_dev *dev, struct sock *sk,
0a40acb2
SO
525 unsigned int flags, unsigned int size,
526 unsigned int *err)
7c7cd3bf
SO
527{
528 struct sk_buff *skb;
529 unsigned int total_size;
530
531 total_size = size +
532 dev->tx_headroom + dev->tx_tailroom + NFC_HEADER_SIZE;
533
534 skb = sock_alloc_send_skb(sk, total_size, flags & MSG_DONTWAIT, err);
535 if (skb)
536 skb_reserve(skb, dev->tx_headroom + NFC_HEADER_SIZE);
537
538 return skb;
539}
540
541/**
542 * nfc_alloc_recv_skb - allocate a skb for data exchange responses
543 *
544 * @size: size to allocate
545 * @gfp: gfp flags
546 */
547struct sk_buff *nfc_alloc_recv_skb(unsigned int size, gfp_t gfp)
3e256b8f
LRV
548{
549 struct sk_buff *skb;
550 unsigned int total_size;
551
552 total_size = size + 1;
553 skb = alloc_skb(total_size, gfp);
554
555 if (skb)
556 skb_reserve(skb, 1);
557
558 return skb;
559}
7c7cd3bf 560EXPORT_SYMBOL(nfc_alloc_recv_skb);
3e256b8f 561
4d12b8b1
LRV
562/**
563 * nfc_targets_found - inform that targets were found
564 *
565 * @dev: The nfc device that found the targets
566 * @targets: array of nfc targets found
567 * @ntargets: targets array size
568 *
569 * The device driver must call this function when one or many nfc targets
570 * are found. After calling this function, the device driver must stop
571 * polling for targets.
d94f9c55
EL
572 * NOTE: This function can be called with targets=NULL and n_targets=0 to
573 * notify a driver error, meaning that the polling operation cannot complete.
d4ccb132
EL
574 * IMPORTANT: this function must not be called from an atomic context.
575 * In addition, it must also not be called from a context that would prevent
576 * the NFC Core to call other nfc ops entry point concurrently.
4d12b8b1 577 */
0a40acb2
SO
578int nfc_targets_found(struct nfc_dev *dev,
579 struct nfc_target *targets, int n_targets)
4d12b8b1 580{
c4fbb651
SO
581 int i;
582
20c239c1 583 pr_debug("dev_name=%s n_targets=%d\n", dev_name(&dev->dev), n_targets);
4d12b8b1 584
c4fbb651 585 for (i = 0; i < n_targets; i++)
01ae0eea 586 targets[i].idx = dev->target_next_idx++;
c4fbb651 587
d4ccb132 588 device_lock(&dev->dev);
4d12b8b1 589
8668fdd6
EL
590 if (dev->polling == false) {
591 device_unlock(&dev->dev);
592 return 0;
593 }
594
595 dev->polling = false;
596
4d12b8b1
LRV
597 dev->targets_generation++;
598
599 kfree(dev->targets);
d94f9c55 600 dev->targets = NULL;
4d12b8b1 601
d94f9c55
EL
602 if (targets) {
603 dev->targets = kmemdup(targets,
604 n_targets * sizeof(struct nfc_target),
605 GFP_ATOMIC);
606
607 if (!dev->targets) {
608 dev->n_targets = 0;
609 device_unlock(&dev->dev);
610 return -ENOMEM;
611 }
4d12b8b1
LRV
612 }
613
614 dev->n_targets = n_targets;
d4ccb132 615 device_unlock(&dev->dev);
4d12b8b1
LRV
616
617 nfc_genl_targets_found(dev);
618
619 return 0;
620}
621EXPORT_SYMBOL(nfc_targets_found);
622
d4ccb132
EL
623/**
624 * nfc_target_lost - inform that an activated target went out of field
625 *
626 * @dev: The nfc device that had the activated target in field
627 * @target_idx: the nfc index of the target
628 *
629 * The device driver must call this function when the activated target
630 * goes out of the field.
631 * IMPORTANT: this function must not be called from an atomic context.
632 * In addition, it must also not be called from a context that would prevent
633 * the NFC Core to call other nfc ops entry point concurrently.
634 */
e1da0efa
EL
635int nfc_target_lost(struct nfc_dev *dev, u32 target_idx)
636{
637 struct nfc_target *tg;
638 int i;
639
640 pr_debug("dev_name %s n_target %d\n", dev_name(&dev->dev), target_idx);
641
d4ccb132 642 device_lock(&dev->dev);
e1da0efa
EL
643
644 for (i = 0; i < dev->n_targets; i++) {
645 tg = &dev->targets[i];
646 if (tg->idx == target_idx)
647 break;
648 }
649
650 if (i == dev->n_targets) {
d4ccb132 651 device_unlock(&dev->dev);
e1da0efa
EL
652 return -EINVAL;
653 }
654
655 dev->targets_generation++;
656 dev->n_targets--;
90099433 657 dev->active_target = NULL;
e1da0efa
EL
658
659 if (dev->n_targets) {
660 memcpy(&dev->targets[i], &dev->targets[i + 1],
661 (dev->n_targets - i) * sizeof(struct nfc_target));
662 } else {
663 kfree(dev->targets);
664 dev->targets = NULL;
665 }
666
d4ccb132 667 device_unlock(&dev->dev);
e1da0efa
EL
668
669 nfc_genl_target_lost(dev, target_idx);
670
671 return 0;
672}
673EXPORT_SYMBOL(nfc_target_lost);
674
9eb334ac 675inline void nfc_driver_failure(struct nfc_dev *dev, int err)
456411ca 676{
9eb334ac 677 nfc_targets_found(dev, NULL, 0);
456411ca
EL
678}
679EXPORT_SYMBOL(nfc_driver_failure);
680
3e256b8f
LRV
681static void nfc_release(struct device *d)
682{
683 struct nfc_dev *dev = to_nfc_dev(d);
684
20c239c1 685 pr_debug("dev_name=%s\n", dev_name(&dev->dev));
3e256b8f 686
c8d56ae7
EL
687 if (dev->ops->check_presence) {
688 del_timer_sync(&dev->check_pres_timer);
474fee3d 689 cancel_work_sync(&dev->check_pres_work);
c8d56ae7
EL
690 }
691
4d12b8b1
LRV
692 nfc_genl_data_exit(&dev->genl_data);
693 kfree(dev->targets);
3e256b8f
LRV
694 kfree(dev);
695}
696
c8d56ae7
EL
697static void nfc_check_pres_work(struct work_struct *work)
698{
699 struct nfc_dev *dev = container_of(work, struct nfc_dev,
700 check_pres_work);
701 int rc;
702
703 device_lock(&dev->dev);
704
90099433
EL
705 if (dev->active_target && timer_pending(&dev->check_pres_timer) == 0) {
706 rc = dev->ops->check_presence(dev, dev->active_target);
632c016a
EL
707 if (rc == -EOPNOTSUPP)
708 goto exit;
c8d56ae7
EL
709 if (!rc) {
710 mod_timer(&dev->check_pres_timer, jiffies +
711 msecs_to_jiffies(NFC_CHECK_PRES_FREQ_MS));
712 } else {
d4ccb132
EL
713 u32 active_target_idx = dev->active_target->idx;
714 device_unlock(&dev->dev);
715 nfc_target_lost(dev, active_target_idx);
716 return;
c8d56ae7
EL
717 }
718 }
719
632c016a 720exit:
c8d56ae7
EL
721 device_unlock(&dev->dev);
722}
723
724static void nfc_check_pres_timeout(unsigned long data)
725{
726 struct nfc_dev *dev = (struct nfc_dev *)data;
727
916082b0 728 schedule_work(&dev->check_pres_work);
c8d56ae7
EL
729}
730
3e256b8f
LRV
731struct class nfc_class = {
732 .name = "nfc",
733 .dev_release = nfc_release,
734};
735EXPORT_SYMBOL(nfc_class);
736
737static int match_idx(struct device *d, void *data)
738{
739 struct nfc_dev *dev = to_nfc_dev(d);
95c96174 740 unsigned int *idx = data;
3e256b8f
LRV
741
742 return dev->idx == *idx;
743}
744
95c96174 745struct nfc_dev *nfc_get_device(unsigned int idx)
3e256b8f
LRV
746{
747 struct device *d;
748
749 d = class_find_device(&nfc_class, NULL, &idx, match_idx);
750 if (!d)
751 return NULL;
752
753 return to_nfc_dev(d);
754}
755
756/**
757 * nfc_allocate_device - allocate a new nfc device
758 *
759 * @ops: device operations
760 * @supported_protocols: NFC protocols supported by the device
761 */
762struct nfc_dev *nfc_allocate_device(struct nfc_ops *ops,
0a40acb2
SO
763 u32 supported_protocols,
764 int tx_headroom, int tx_tailroom)
3e256b8f 765{
3e256b8f
LRV
766 struct nfc_dev *dev;
767
768 if (!ops->start_poll || !ops->stop_poll || !ops->activate_target ||
be9ae4ce 769 !ops->deactivate_target || !ops->im_transceive)
3e256b8f
LRV
770 return NULL;
771
772 if (!supported_protocols)
773 return NULL;
774
775 dev = kzalloc(sizeof(struct nfc_dev), GFP_KERNEL);
776 if (!dev)
777 return NULL;
778
3e256b8f
LRV
779 dev->ops = ops;
780 dev->supported_protocols = supported_protocols;
e8753043
SO
781 dev->tx_headroom = tx_headroom;
782 dev->tx_tailroom = tx_tailroom;
3e256b8f 783
4d12b8b1
LRV
784 nfc_genl_data_init(&dev->genl_data);
785
5bcf099c 786 dev->rf_mode = NFC_RF_NONE;
d4ccb132 787
4d12b8b1
LRV
788 /* first generation must not be 0 */
789 dev->targets_generation = 1;
790
c8d56ae7 791 if (ops->check_presence) {
c8d56ae7
EL
792 init_timer(&dev->check_pres_timer);
793 dev->check_pres_timer.data = (unsigned long)dev;
794 dev->check_pres_timer.function = nfc_check_pres_timeout;
795
796 INIT_WORK(&dev->check_pres_work, nfc_check_pres_work);
c8d56ae7
EL
797 }
798
3e256b8f
LRV
799 return dev;
800}
801EXPORT_SYMBOL(nfc_allocate_device);
802
803/**
804 * nfc_register_device - register a nfc device in the nfc subsystem
805 *
806 * @dev: The nfc device to register
807 */
808int nfc_register_device(struct nfc_dev *dev)
809{
810 int rc;
811
20c239c1 812 pr_debug("dev_name=%s\n", dev_name(&dev->dev));
3e256b8f 813
7eda8b8e
SO
814 dev->idx = ida_simple_get(&nfc_index_ida, 0, 0, GFP_KERNEL);
815 if (dev->idx < 0)
816 return dev->idx;
817
818 dev->dev.class = &nfc_class;
819 dev_set_name(&dev->dev, "nfc%d", dev->idx);
820 device_initialize(&dev->dev);
821
3e256b8f
LRV
822 mutex_lock(&nfc_devlist_mutex);
823 nfc_devlist_generation++;
824 rc = device_add(&dev->dev);
825 mutex_unlock(&nfc_devlist_mutex);
826
4d12b8b1
LRV
827 if (rc < 0)
828 return rc;
829
d646960f
SO
830 rc = nfc_llcp_register_device(dev);
831 if (rc)
832 pr_err("Could not register llcp device\n");
833
4d12b8b1
LRV
834 rc = nfc_genl_device_added(dev);
835 if (rc)
20c239c1
JP
836 pr_debug("The userspace won't be notified that the device %s was added\n",
837 dev_name(&dev->dev));
4d12b8b1
LRV
838
839 return 0;
3e256b8f
LRV
840}
841EXPORT_SYMBOL(nfc_register_device);
842
843/**
844 * nfc_unregister_device - unregister a nfc device in the nfc subsystem
845 *
846 * @dev: The nfc device to unregister
847 */
848void nfc_unregister_device(struct nfc_dev *dev)
849{
7eda8b8e 850 int rc, id;
4d12b8b1 851
20c239c1 852 pr_debug("dev_name=%s\n", dev_name(&dev->dev));
3e256b8f 853
7eda8b8e
SO
854 id = dev->idx;
855
3e256b8f
LRV
856 mutex_lock(&nfc_devlist_mutex);
857 nfc_devlist_generation++;
858
859 /* lock to avoid unregistering a device while an operation
860 is in progress */
861 device_lock(&dev->dev);
862 device_del(&dev->dev);
863 device_unlock(&dev->dev);
864
865 mutex_unlock(&nfc_devlist_mutex);
4d12b8b1 866
d646960f
SO
867 nfc_llcp_unregister_device(dev);
868
4d12b8b1
LRV
869 rc = nfc_genl_device_removed(dev);
870 if (rc)
20c239c1
JP
871 pr_debug("The userspace won't be notified that the device %s was removed\n",
872 dev_name(&dev->dev));
4d12b8b1 873
7eda8b8e
SO
874 ida_simple_remove(&nfc_index_ida, id);
875
3e256b8f
LRV
876}
877EXPORT_SYMBOL(nfc_unregister_device);
878
879static int __init nfc_init(void)
880{
4d12b8b1
LRV
881 int rc;
882
ed1e0ad8 883 pr_info("NFC Core ver %s\n", VERSION);
3e256b8f 884
4d12b8b1
LRV
885 rc = class_register(&nfc_class);
886 if (rc)
887 return rc;
888
889 rc = nfc_genl_init();
890 if (rc)
891 goto err_genl;
892
893 /* the first generation must not be 0 */
894 nfc_devlist_generation = 1;
895
23b7869c
LRV
896 rc = rawsock_init();
897 if (rc)
898 goto err_rawsock;
899
d646960f
SO
900 rc = nfc_llcp_init();
901 if (rc)
902 goto err_llcp_sock;
903
c7fe3b52
AAJ
904 rc = af_nfc_init();
905 if (rc)
906 goto err_af_nfc;
907
4d12b8b1
LRV
908 return 0;
909
c7fe3b52 910err_af_nfc:
d646960f
SO
911 nfc_llcp_exit();
912err_llcp_sock:
23b7869c
LRV
913 rawsock_exit();
914err_rawsock:
c7fe3b52 915 nfc_genl_exit();
4d12b8b1
LRV
916err_genl:
917 class_unregister(&nfc_class);
918 return rc;
3e256b8f
LRV
919}
920
921static void __exit nfc_exit(void)
922{
c7fe3b52 923 af_nfc_exit();
d646960f 924 nfc_llcp_exit();
23b7869c 925 rawsock_exit();
4d12b8b1 926 nfc_genl_exit();
3e256b8f
LRV
927 class_unregister(&nfc_class);
928}
929
930subsys_initcall(nfc_init);
931module_exit(nfc_exit);
932
933MODULE_AUTHOR("Lauro Ramos Venancio <lauro.venancio@openbossa.org>");
934MODULE_DESCRIPTION("NFC Core ver " VERSION);
935MODULE_VERSION(VERSION);
936MODULE_LICENSE("GPL");
1155bb61 937MODULE_ALIAS_NETPROTO(PF_NFC);
5df16cad 938MODULE_ALIAS_GENL_FAMILY(NFC_GENL_NAME);
This page took 0.155003 seconds and 5 git commands to generate.