2 * Copyright (C) 2011 Instituto Nokia de Tecnologia
5 * Lauro Ramos Venancio <lauro.venancio@openbossa.org>
6 * Aloisio Almeida Jr <aloisio.almeida@openbossa.org>
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.
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.
18 * You should have received a copy of the GNU General Public License
19 * along with this program; if not, see <http://www.gnu.org/licenses/>.
22 #define pr_fmt(fmt) KBUILD_MODNAME ": %s: " fmt, __func__
24 #include <linux/init.h>
25 #include <linux/kernel.h>
26 #include <linux/module.h>
27 #include <linux/slab.h>
28 #include <linux/rfkill.h>
29 #include <linux/nfc.h>
31 #include <net/genetlink.h>
37 #define NFC_CHECK_PRES_FREQ_MS 2000
39 int nfc_devlist_generation;
40 DEFINE_MUTEX(nfc_devlist_mutex);
42 /* NFC device ID bitmap */
43 static DEFINE_IDA(nfc_index_ida);
45 int nfc_fw_download(struct nfc_dev *dev, const char *firmware_name)
49 pr_debug("%s do firmware %s\n", dev_name(&dev->dev), firmware_name);
51 device_lock(&dev->dev);
53 if (!device_is_registered(&dev->dev)) {
63 if (!dev->ops->fw_download) {
68 dev->fw_download_in_progress = true;
69 rc = dev->ops->fw_download(dev, firmware_name);
71 dev->fw_download_in_progress = false;
74 device_unlock(&dev->dev);
79 * nfc_fw_download_done - inform that a firmware download was completed
81 * @dev: The nfc device to which firmware was downloaded
82 * @firmware_name: The firmware filename
83 * @result: The positive value of a standard errno value
85 int nfc_fw_download_done(struct nfc_dev *dev, const char *firmware_name,
88 dev->fw_download_in_progress = false;
90 return nfc_genl_fw_download_done(dev, firmware_name, result);
92 EXPORT_SYMBOL(nfc_fw_download_done);
95 * nfc_dev_up - turn on the NFC device
97 * @dev: The nfc device to be turned on
99 * The device remains up until the nfc_dev_down function is called.
101 int nfc_dev_up(struct nfc_dev *dev)
105 pr_debug("dev_name=%s\n", dev_name(&dev->dev));
107 device_lock(&dev->dev);
109 if (dev->rfkill && rfkill_blocked(dev->rfkill)) {
114 if (!device_is_registered(&dev->dev)) {
119 if (dev->fw_download_in_progress) {
129 if (dev->ops->dev_up)
130 rc = dev->ops->dev_up(dev);
135 /* We have to enable the device before discovering SEs */
136 if (dev->ops->discover_se && dev->ops->discover_se(dev))
137 pr_err("SE discovery failed\n");
140 device_unlock(&dev->dev);
145 * nfc_dev_down - turn off the NFC device
147 * @dev: The nfc device to be turned off
149 int nfc_dev_down(struct nfc_dev *dev)
153 pr_debug("dev_name=%s\n", dev_name(&dev->dev));
155 device_lock(&dev->dev);
157 if (!device_is_registered(&dev->dev)) {
167 if (dev->polling || dev->active_target) {
172 if (dev->ops->dev_down)
173 dev->ops->dev_down(dev);
178 device_unlock(&dev->dev);
182 static int nfc_rfkill_set_block(void *data, bool blocked)
184 struct nfc_dev *dev = data;
186 pr_debug("%s blocked %d", dev_name(&dev->dev), blocked);
196 static const struct rfkill_ops nfc_rfkill_ops = {
197 .set_block = nfc_rfkill_set_block,
201 * nfc_start_poll - start polling for nfc targets
203 * @dev: The nfc device that must start polling
204 * @protocols: bitset of nfc protocols that must be used for polling
206 * The device remains polling for targets until a target is found or
207 * the nfc_stop_poll function is called.
209 int nfc_start_poll(struct nfc_dev *dev, u32 im_protocols, u32 tm_protocols)
213 pr_debug("dev_name %s initiator protocols 0x%x target protocols 0x%x\n",
214 dev_name(&dev->dev), im_protocols, tm_protocols);
216 if (!im_protocols && !tm_protocols)
219 device_lock(&dev->dev);
221 if (!device_is_registered(&dev->dev)) {
236 rc = dev->ops->start_poll(dev, im_protocols, tm_protocols);
239 dev->rf_mode = NFC_RF_NONE;
243 device_unlock(&dev->dev);
248 * nfc_stop_poll - stop polling for nfc targets
250 * @dev: The nfc device that must stop polling
252 int nfc_stop_poll(struct nfc_dev *dev)
256 pr_debug("dev_name=%s\n", dev_name(&dev->dev));
258 device_lock(&dev->dev);
260 if (!device_is_registered(&dev->dev)) {
270 dev->ops->stop_poll(dev);
271 dev->polling = false;
272 dev->rf_mode = NFC_RF_NONE;
275 device_unlock(&dev->dev);
279 static struct nfc_target *nfc_find_target(struct nfc_dev *dev, u32 target_idx)
283 for (i = 0; i < dev->n_targets; i++) {
284 if (dev->targets[i].idx == target_idx)
285 return &dev->targets[i];
291 int nfc_dep_link_up(struct nfc_dev *dev, int target_index, u8 comm_mode)
296 struct nfc_target *target;
298 pr_debug("dev_name=%s comm %d\n", dev_name(&dev->dev), comm_mode);
300 if (!dev->ops->dep_link_up)
303 device_lock(&dev->dev);
305 if (!device_is_registered(&dev->dev)) {
310 if (dev->dep_link_up == true) {
315 gb = nfc_llcp_general_bytes(dev, &gb_len);
316 if (gb_len > NFC_MAX_GT_LEN) {
321 target = nfc_find_target(dev, target_index);
322 if (target == NULL) {
327 rc = dev->ops->dep_link_up(dev, target, comm_mode, gb, gb_len);
329 dev->active_target = target;
330 dev->rf_mode = NFC_RF_INITIATOR;
334 device_unlock(&dev->dev);
338 int nfc_dep_link_down(struct nfc_dev *dev)
342 pr_debug("dev_name=%s\n", dev_name(&dev->dev));
344 if (!dev->ops->dep_link_down)
347 device_lock(&dev->dev);
349 if (!device_is_registered(&dev->dev)) {
354 if (dev->dep_link_up == false) {
359 rc = dev->ops->dep_link_down(dev);
361 dev->dep_link_up = false;
362 dev->active_target = NULL;
363 dev->rf_mode = NFC_RF_NONE;
364 nfc_llcp_mac_is_down(dev);
365 nfc_genl_dep_link_down_event(dev);
369 device_unlock(&dev->dev);
374 int nfc_dep_link_is_up(struct nfc_dev *dev, u32 target_idx,
375 u8 comm_mode, u8 rf_mode)
377 dev->dep_link_up = true;
379 if (!dev->active_target && rf_mode == NFC_RF_INITIATOR) {
380 struct nfc_target *target;
382 target = nfc_find_target(dev, target_idx);
386 dev->active_target = target;
389 dev->polling = false;
390 dev->rf_mode = rf_mode;
392 nfc_llcp_mac_is_up(dev, target_idx, comm_mode, rf_mode);
394 return nfc_genl_dep_link_up_event(dev, target_idx, comm_mode, rf_mode);
396 EXPORT_SYMBOL(nfc_dep_link_is_up);
399 * nfc_activate_target - prepare the target for data exchange
401 * @dev: The nfc device that found the target
402 * @target_idx: index of the target that must be activated
403 * @protocol: nfc protocol that will be used for data exchange
405 int nfc_activate_target(struct nfc_dev *dev, u32 target_idx, u32 protocol)
408 struct nfc_target *target;
410 pr_debug("dev_name=%s target_idx=%u protocol=%u\n",
411 dev_name(&dev->dev), target_idx, protocol);
413 device_lock(&dev->dev);
415 if (!device_is_registered(&dev->dev)) {
420 if (dev->active_target) {
425 target = nfc_find_target(dev, target_idx);
426 if (target == NULL) {
431 rc = dev->ops->activate_target(dev, target, protocol);
433 dev->active_target = target;
434 dev->rf_mode = NFC_RF_INITIATOR;
436 if (dev->ops->check_presence && !dev->shutting_down)
437 mod_timer(&dev->check_pres_timer, jiffies +
438 msecs_to_jiffies(NFC_CHECK_PRES_FREQ_MS));
442 device_unlock(&dev->dev);
447 * nfc_deactivate_target - deactivate a nfc target
449 * @dev: The nfc device that found the target
450 * @target_idx: index of the target that must be deactivated
452 int nfc_deactivate_target(struct nfc_dev *dev, u32 target_idx, u8 mode)
456 pr_debug("dev_name=%s target_idx=%u\n",
457 dev_name(&dev->dev), target_idx);
459 device_lock(&dev->dev);
461 if (!device_is_registered(&dev->dev)) {
466 if (dev->active_target == NULL) {
471 if (dev->active_target->idx != target_idx) {
476 if (dev->ops->check_presence)
477 del_timer_sync(&dev->check_pres_timer);
479 dev->ops->deactivate_target(dev, dev->active_target, mode);
480 dev->active_target = NULL;
483 device_unlock(&dev->dev);
488 * nfc_data_exchange - transceive data
490 * @dev: The nfc device that found the target
491 * @target_idx: index of the target
492 * @skb: data to be sent
493 * @cb: callback called when the response is received
494 * @cb_context: parameter for the callback function
496 * The user must wait for the callback before calling this function again.
498 int nfc_data_exchange(struct nfc_dev *dev, u32 target_idx, struct sk_buff *skb,
499 data_exchange_cb_t cb, void *cb_context)
503 pr_debug("dev_name=%s target_idx=%u skb->len=%u\n",
504 dev_name(&dev->dev), target_idx, skb->len);
506 device_lock(&dev->dev);
508 if (!device_is_registered(&dev->dev)) {
514 if (dev->rf_mode == NFC_RF_INITIATOR && dev->active_target != NULL) {
515 if (dev->active_target->idx != target_idx) {
521 if (dev->ops->check_presence)
522 del_timer_sync(&dev->check_pres_timer);
524 rc = dev->ops->im_transceive(dev, dev->active_target, skb, cb,
527 if (!rc && dev->ops->check_presence && !dev->shutting_down)
528 mod_timer(&dev->check_pres_timer, jiffies +
529 msecs_to_jiffies(NFC_CHECK_PRES_FREQ_MS));
530 } else if (dev->rf_mode == NFC_RF_TARGET && dev->ops->tm_send != NULL) {
531 rc = dev->ops->tm_send(dev, skb);
540 device_unlock(&dev->dev);
544 struct nfc_se *nfc_find_se(struct nfc_dev *dev, u32 se_idx)
548 list_for_each_entry(se, &dev->secure_elements, list)
549 if (se->idx == se_idx)
554 EXPORT_SYMBOL(nfc_find_se);
556 int nfc_enable_se(struct nfc_dev *dev, u32 se_idx)
561 pr_debug("%s se index %d\n", dev_name(&dev->dev), se_idx);
563 device_lock(&dev->dev);
565 if (!device_is_registered(&dev->dev)) {
580 if (!dev->ops->enable_se || !dev->ops->disable_se) {
585 se = nfc_find_se(dev, se_idx);
591 if (se->state == NFC_SE_ENABLED) {
596 rc = dev->ops->enable_se(dev, se_idx);
598 se->state = NFC_SE_ENABLED;
601 device_unlock(&dev->dev);
605 int nfc_disable_se(struct nfc_dev *dev, u32 se_idx)
610 pr_debug("%s se index %d\n", dev_name(&dev->dev), se_idx);
612 device_lock(&dev->dev);
614 if (!device_is_registered(&dev->dev)) {
624 if (!dev->ops->enable_se || !dev->ops->disable_se) {
629 se = nfc_find_se(dev, se_idx);
635 if (se->state == NFC_SE_DISABLED) {
640 rc = dev->ops->disable_se(dev, se_idx);
642 se->state = NFC_SE_DISABLED;
645 device_unlock(&dev->dev);
649 int nfc_set_remote_general_bytes(struct nfc_dev *dev, u8 *gb, u8 gb_len)
651 pr_debug("dev_name=%s gb_len=%d\n", dev_name(&dev->dev), gb_len);
653 return nfc_llcp_set_remote_gb(dev, gb, gb_len);
655 EXPORT_SYMBOL(nfc_set_remote_general_bytes);
657 u8 *nfc_get_local_general_bytes(struct nfc_dev *dev, size_t *gb_len)
659 pr_debug("dev_name=%s\n", dev_name(&dev->dev));
661 return nfc_llcp_general_bytes(dev, gb_len);
663 EXPORT_SYMBOL(nfc_get_local_general_bytes);
665 int nfc_tm_data_received(struct nfc_dev *dev, struct sk_buff *skb)
667 /* Only LLCP target mode for now */
668 if (dev->dep_link_up == false) {
673 return nfc_llcp_data_received(dev, skb);
675 EXPORT_SYMBOL(nfc_tm_data_received);
677 int nfc_tm_activated(struct nfc_dev *dev, u32 protocol, u8 comm_mode,
678 u8 *gb, size_t gb_len)
682 device_lock(&dev->dev);
684 dev->polling = false;
687 rc = nfc_set_remote_general_bytes(dev, gb, gb_len);
692 dev->rf_mode = NFC_RF_TARGET;
694 if (protocol == NFC_PROTO_NFC_DEP_MASK)
695 nfc_dep_link_is_up(dev, 0, comm_mode, NFC_RF_TARGET);
697 rc = nfc_genl_tm_activated(dev, protocol);
700 device_unlock(&dev->dev);
704 EXPORT_SYMBOL(nfc_tm_activated);
706 int nfc_tm_deactivated(struct nfc_dev *dev)
708 dev->dep_link_up = false;
709 dev->rf_mode = NFC_RF_NONE;
711 return nfc_genl_tm_deactivated(dev);
713 EXPORT_SYMBOL(nfc_tm_deactivated);
716 * nfc_alloc_send_skb - allocate a skb for data exchange responses
718 * @size: size to allocate
721 struct sk_buff *nfc_alloc_send_skb(struct nfc_dev *dev, struct sock *sk,
722 unsigned int flags, unsigned int size,
726 unsigned int total_size;
729 dev->tx_headroom + dev->tx_tailroom + NFC_HEADER_SIZE;
731 skb = sock_alloc_send_skb(sk, total_size, flags & MSG_DONTWAIT, err);
733 skb_reserve(skb, dev->tx_headroom + NFC_HEADER_SIZE);
739 * nfc_alloc_recv_skb - allocate a skb for data exchange responses
741 * @size: size to allocate
744 struct sk_buff *nfc_alloc_recv_skb(unsigned int size, gfp_t gfp)
747 unsigned int total_size;
749 total_size = size + 1;
750 skb = alloc_skb(total_size, gfp);
757 EXPORT_SYMBOL(nfc_alloc_recv_skb);
760 * nfc_targets_found - inform that targets were found
762 * @dev: The nfc device that found the targets
763 * @targets: array of nfc targets found
764 * @ntargets: targets array size
766 * The device driver must call this function when one or many nfc targets
767 * are found. After calling this function, the device driver must stop
768 * polling for targets.
769 * NOTE: This function can be called with targets=NULL and n_targets=0 to
770 * notify a driver error, meaning that the polling operation cannot complete.
771 * IMPORTANT: this function must not be called from an atomic context.
772 * In addition, it must also not be called from a context that would prevent
773 * the NFC Core to call other nfc ops entry point concurrently.
775 int nfc_targets_found(struct nfc_dev *dev,
776 struct nfc_target *targets, int n_targets)
780 pr_debug("dev_name=%s n_targets=%d\n", dev_name(&dev->dev), n_targets);
782 for (i = 0; i < n_targets; i++)
783 targets[i].idx = dev->target_next_idx++;
785 device_lock(&dev->dev);
787 if (dev->polling == false) {
788 device_unlock(&dev->dev);
792 dev->polling = false;
794 dev->targets_generation++;
800 dev->targets = kmemdup(targets,
801 n_targets * sizeof(struct nfc_target),
806 device_unlock(&dev->dev);
811 dev->n_targets = n_targets;
812 device_unlock(&dev->dev);
814 nfc_genl_targets_found(dev);
818 EXPORT_SYMBOL(nfc_targets_found);
821 * nfc_target_lost - inform that an activated target went out of field
823 * @dev: The nfc device that had the activated target in field
824 * @target_idx: the nfc index of the target
826 * The device driver must call this function when the activated target
827 * goes out of the field.
828 * IMPORTANT: this function must not be called from an atomic context.
829 * In addition, it must also not be called from a context that would prevent
830 * the NFC Core to call other nfc ops entry point concurrently.
832 int nfc_target_lost(struct nfc_dev *dev, u32 target_idx)
834 struct nfc_target *tg;
837 pr_debug("dev_name %s n_target %d\n", dev_name(&dev->dev), target_idx);
839 device_lock(&dev->dev);
841 for (i = 0; i < dev->n_targets; i++) {
842 tg = &dev->targets[i];
843 if (tg->idx == target_idx)
847 if (i == dev->n_targets) {
848 device_unlock(&dev->dev);
852 dev->targets_generation++;
854 dev->active_target = NULL;
856 if (dev->n_targets) {
857 memcpy(&dev->targets[i], &dev->targets[i + 1],
858 (dev->n_targets - i) * sizeof(struct nfc_target));
864 device_unlock(&dev->dev);
866 nfc_genl_target_lost(dev, target_idx);
870 EXPORT_SYMBOL(nfc_target_lost);
872 inline void nfc_driver_failure(struct nfc_dev *dev, int err)
874 nfc_targets_found(dev, NULL, 0);
876 EXPORT_SYMBOL(nfc_driver_failure);
878 int nfc_add_se(struct nfc_dev *dev, u32 se_idx, u16 type)
883 pr_debug("%s se index %d\n", dev_name(&dev->dev), se_idx);
885 se = nfc_find_se(dev, se_idx);
889 se = kzalloc(sizeof(struct nfc_se), GFP_KERNEL);
895 se->state = NFC_SE_DISABLED;
896 INIT_LIST_HEAD(&se->list);
898 list_add(&se->list, &dev->secure_elements);
900 rc = nfc_genl_se_added(dev, se_idx, type);
910 EXPORT_SYMBOL(nfc_add_se);
912 int nfc_remove_se(struct nfc_dev *dev, u32 se_idx)
914 struct nfc_se *se, *n;
917 pr_debug("%s se index %d\n", dev_name(&dev->dev), se_idx);
919 list_for_each_entry_safe(se, n, &dev->secure_elements, list)
920 if (se->idx == se_idx) {
921 rc = nfc_genl_se_removed(dev, se_idx);
933 EXPORT_SYMBOL(nfc_remove_se);
935 int nfc_se_transaction(struct nfc_dev *dev, u8 se_idx,
936 struct nfc_evt_transaction *evt_transaction)
940 pr_debug("transaction: %x\n", se_idx);
942 device_lock(&dev->dev);
944 if (!evt_transaction) {
949 rc = nfc_genl_se_transaction(dev, se_idx, evt_transaction);
951 device_unlock(&dev->dev);
954 EXPORT_SYMBOL(nfc_se_transaction);
956 int nfc_se_connectivity(struct nfc_dev *dev, u8 se_idx)
960 pr_debug("connectivity: %x\n", se_idx);
962 device_lock(&dev->dev);
963 rc = nfc_genl_se_connectivity(dev, se_idx);
964 device_unlock(&dev->dev);
967 EXPORT_SYMBOL(nfc_se_connectivity);
969 static void nfc_release(struct device *d)
971 struct nfc_dev *dev = to_nfc_dev(d);
972 struct nfc_se *se, *n;
974 pr_debug("dev_name=%s\n", dev_name(&dev->dev));
976 nfc_genl_data_exit(&dev->genl_data);
979 list_for_each_entry_safe(se, n, &dev->secure_elements, list) {
980 nfc_genl_se_removed(dev, se->idx);
988 static void nfc_check_pres_work(struct work_struct *work)
990 struct nfc_dev *dev = container_of(work, struct nfc_dev,
994 device_lock(&dev->dev);
996 if (dev->active_target && timer_pending(&dev->check_pres_timer) == 0) {
997 rc = dev->ops->check_presence(dev, dev->active_target);
998 if (rc == -EOPNOTSUPP)
1001 u32 active_target_idx = dev->active_target->idx;
1002 device_unlock(&dev->dev);
1003 nfc_target_lost(dev, active_target_idx);
1007 if (!dev->shutting_down)
1008 mod_timer(&dev->check_pres_timer, jiffies +
1009 msecs_to_jiffies(NFC_CHECK_PRES_FREQ_MS));
1013 device_unlock(&dev->dev);
1016 static void nfc_check_pres_timeout(unsigned long data)
1018 struct nfc_dev *dev = (struct nfc_dev *)data;
1020 schedule_work(&dev->check_pres_work);
1023 struct class nfc_class = {
1025 .dev_release = nfc_release,
1027 EXPORT_SYMBOL(nfc_class);
1029 static int match_idx(struct device *d, const void *data)
1031 struct nfc_dev *dev = to_nfc_dev(d);
1032 const unsigned int *idx = data;
1034 return dev->idx == *idx;
1037 struct nfc_dev *nfc_get_device(unsigned int idx)
1041 d = class_find_device(&nfc_class, NULL, &idx, match_idx);
1045 return to_nfc_dev(d);
1049 * nfc_allocate_device - allocate a new nfc device
1051 * @ops: device operations
1052 * @supported_protocols: NFC protocols supported by the device
1054 struct nfc_dev *nfc_allocate_device(struct nfc_ops *ops,
1055 u32 supported_protocols,
1056 int tx_headroom, int tx_tailroom)
1058 struct nfc_dev *dev;
1060 if (!ops->start_poll || !ops->stop_poll || !ops->activate_target ||
1061 !ops->deactivate_target || !ops->im_transceive)
1064 if (!supported_protocols)
1067 dev = kzalloc(sizeof(struct nfc_dev), GFP_KERNEL);
1072 dev->supported_protocols = supported_protocols;
1073 dev->tx_headroom = tx_headroom;
1074 dev->tx_tailroom = tx_tailroom;
1075 INIT_LIST_HEAD(&dev->secure_elements);
1077 nfc_genl_data_init(&dev->genl_data);
1079 dev->rf_mode = NFC_RF_NONE;
1081 /* first generation must not be 0 */
1082 dev->targets_generation = 1;
1084 if (ops->check_presence) {
1085 init_timer(&dev->check_pres_timer);
1086 dev->check_pres_timer.data = (unsigned long)dev;
1087 dev->check_pres_timer.function = nfc_check_pres_timeout;
1089 INIT_WORK(&dev->check_pres_work, nfc_check_pres_work);
1094 EXPORT_SYMBOL(nfc_allocate_device);
1097 * nfc_register_device - register a nfc device in the nfc subsystem
1099 * @dev: The nfc device to register
1101 int nfc_register_device(struct nfc_dev *dev)
1105 pr_debug("dev_name=%s\n", dev_name(&dev->dev));
1107 dev->idx = ida_simple_get(&nfc_index_ida, 0, 0, GFP_KERNEL);
1111 dev->dev.class = &nfc_class;
1112 dev_set_name(&dev->dev, "nfc%d", dev->idx);
1113 device_initialize(&dev->dev);
1115 mutex_lock(&nfc_devlist_mutex);
1116 nfc_devlist_generation++;
1117 rc = device_add(&dev->dev);
1118 mutex_unlock(&nfc_devlist_mutex);
1123 rc = nfc_llcp_register_device(dev);
1125 pr_err("Could not register llcp device\n");
1127 rc = nfc_genl_device_added(dev);
1129 pr_debug("The userspace won't be notified that the device %s was added\n",
1130 dev_name(&dev->dev));
1132 dev->rfkill = rfkill_alloc(dev_name(&dev->dev), &dev->dev,
1133 RFKILL_TYPE_NFC, &nfc_rfkill_ops, dev);
1135 if (rfkill_register(dev->rfkill) < 0) {
1136 rfkill_destroy(dev->rfkill);
1143 EXPORT_SYMBOL(nfc_register_device);
1146 * nfc_unregister_device - unregister a nfc device in the nfc subsystem
1148 * @dev: The nfc device to unregister
1150 void nfc_unregister_device(struct nfc_dev *dev)
1154 pr_debug("dev_name=%s\n", dev_name(&dev->dev));
1159 rfkill_unregister(dev->rfkill);
1160 rfkill_destroy(dev->rfkill);
1163 if (dev->ops->check_presence) {
1164 device_lock(&dev->dev);
1165 dev->shutting_down = true;
1166 device_unlock(&dev->dev);
1167 del_timer_sync(&dev->check_pres_timer);
1168 cancel_work_sync(&dev->check_pres_work);
1171 rc = nfc_genl_device_removed(dev);
1173 pr_debug("The userspace won't be notified that the device %s "
1174 "was removed\n", dev_name(&dev->dev));
1176 nfc_llcp_unregister_device(dev);
1178 mutex_lock(&nfc_devlist_mutex);
1179 nfc_devlist_generation++;
1180 device_del(&dev->dev);
1181 mutex_unlock(&nfc_devlist_mutex);
1183 ida_simple_remove(&nfc_index_ida, id);
1185 EXPORT_SYMBOL(nfc_unregister_device);
1187 static int __init nfc_init(void)
1191 pr_info("NFC Core ver %s\n", VERSION);
1193 rc = class_register(&nfc_class);
1197 rc = nfc_genl_init();
1201 /* the first generation must not be 0 */
1202 nfc_devlist_generation = 1;
1204 rc = rawsock_init();
1208 rc = nfc_llcp_init();
1225 class_unregister(&nfc_class);
1229 static void __exit nfc_exit(void)
1235 class_unregister(&nfc_class);
1238 subsys_initcall(nfc_init);
1239 module_exit(nfc_exit);
1241 MODULE_AUTHOR("Lauro Ramos Venancio <lauro.venancio@openbossa.org>");
1242 MODULE_DESCRIPTION("NFC Core ver " VERSION);
1243 MODULE_VERSION(VERSION);
1244 MODULE_LICENSE("GPL");
1245 MODULE_ALIAS_NETPROTO(PF_NFC);
1246 MODULE_ALIAS_GENL_FAMILY(NFC_GENL_NAME);