2 * Copyright (C) 2011 Instituto Nokia de Tecnologia
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, write to the
20 * Free Software Foundation, Inc.,
21 * 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
24 #include <linux/init.h>
25 #include <linux/kernel.h>
26 #include <linux/module.h>
27 #include <linux/slab.h>
33 int nfc_devlist_generation;
34 DEFINE_MUTEX(nfc_devlist_mutex);
36 int nfc_printk(const char *level, const char *format, ...)
42 va_start(args, format);
47 r = printk("%sNFC: %pV\n", level, &vaf);
53 EXPORT_SYMBOL(nfc_printk);
56 * nfc_start_poll - start polling for nfc targets
58 * @dev: The nfc device that must start polling
59 * @protocols: bitset of nfc protocols that must be used for polling
61 * The device remains polling for targets until a target is found or
62 * the nfc_stop_poll function is called.
64 int nfc_start_poll(struct nfc_dev *dev, u32 protocols)
68 nfc_dbg("dev_name=%s protocols=0x%x", dev_name(&dev->dev), protocols);
73 device_lock(&dev->dev);
75 if (!device_is_registered(&dev->dev)) {
85 rc = dev->ops->start_poll(dev, protocols);
90 device_unlock(&dev->dev);
95 * nfc_stop_poll - stop polling for nfc targets
97 * @dev: The nfc device that must stop polling
99 int nfc_stop_poll(struct nfc_dev *dev)
103 nfc_dbg("dev_name=%s", dev_name(&dev->dev));
105 device_lock(&dev->dev);
107 if (!device_is_registered(&dev->dev)) {
117 dev->ops->stop_poll(dev);
118 dev->polling = false;
121 device_unlock(&dev->dev);
126 * nfc_activate_target - prepare the target for data exchange
128 * @dev: The nfc device that found the target
129 * @target_idx: index of the target that must be activated
130 * @protocol: nfc protocol that will be used for data exchange
132 int nfc_activate_target(struct nfc_dev *dev, u32 target_idx, u32 protocol)
136 nfc_dbg("dev_name=%s target_idx=%u protocol=%u", dev_name(&dev->dev),
137 target_idx, protocol);
139 device_lock(&dev->dev);
141 if (!device_is_registered(&dev->dev)) {
146 rc = dev->ops->activate_target(dev, target_idx, protocol);
149 device_unlock(&dev->dev);
154 * nfc_deactivate_target - deactivate a nfc target
156 * @dev: The nfc device that found the target
157 * @target_idx: index of the target that must be deactivated
159 int nfc_deactivate_target(struct nfc_dev *dev, u32 target_idx)
163 nfc_dbg("dev_name=%s target_idx=%u", dev_name(&dev->dev), target_idx);
165 device_lock(&dev->dev);
167 if (!device_is_registered(&dev->dev)) {
172 dev->ops->deactivate_target(dev, target_idx);
175 device_unlock(&dev->dev);
180 * nfc_data_exchange - transceive data
182 * @dev: The nfc device that found the target
183 * @target_idx: index of the target
184 * @skb: data to be sent
185 * @cb: callback called when the response is received
186 * @cb_context: parameter for the callback function
188 * The user must wait for the callback before calling this function again.
190 int nfc_data_exchange(struct nfc_dev *dev, u32 target_idx,
192 data_exchange_cb_t cb,
197 nfc_dbg("dev_name=%s target_idx=%u skb->len=%u", dev_name(&dev->dev),
198 target_idx, skb->len);
200 device_lock(&dev->dev);
202 if (!device_is_registered(&dev->dev)) {
208 rc = dev->ops->data_exchange(dev, target_idx, skb, cb, cb_context);
211 device_unlock(&dev->dev);
216 * nfc_alloc_skb - allocate a skb for data exchange responses
218 * @size: size to allocate
221 struct sk_buff *nfc_alloc_skb(unsigned int size, gfp_t gfp)
224 unsigned int total_size;
226 total_size = size + 1;
227 skb = alloc_skb(total_size, gfp);
234 EXPORT_SYMBOL(nfc_alloc_skb);
237 * nfc_targets_found - inform that targets were found
239 * @dev: The nfc device that found the targets
240 * @targets: array of nfc targets found
241 * @ntargets: targets array size
243 * The device driver must call this function when one or many nfc targets
244 * are found. After calling this function, the device driver must stop
245 * polling for targets.
247 int nfc_targets_found(struct nfc_dev *dev, struct nfc_target *targets,
252 nfc_dbg("dev_name=%s n_targets=%d", dev_name(&dev->dev), n_targets);
254 dev->polling = false;
256 for (i = 0; i < n_targets; i++)
257 targets[i].idx = dev->target_idx++;
259 spin_lock_bh(&dev->targets_lock);
261 dev->targets_generation++;
264 dev->targets = kmemdup(targets, n_targets * sizeof(struct nfc_target),
269 spin_unlock_bh(&dev->targets_lock);
273 dev->n_targets = n_targets;
274 spin_unlock_bh(&dev->targets_lock);
276 nfc_genl_targets_found(dev);
280 EXPORT_SYMBOL(nfc_targets_found);
282 static void nfc_release(struct device *d)
284 struct nfc_dev *dev = to_nfc_dev(d);
286 nfc_dbg("dev_name=%s", dev_name(&dev->dev));
288 nfc_genl_data_exit(&dev->genl_data);
293 struct class nfc_class = {
295 .dev_release = nfc_release,
297 EXPORT_SYMBOL(nfc_class);
299 static int match_idx(struct device *d, void *data)
301 struct nfc_dev *dev = to_nfc_dev(d);
302 unsigned *idx = data;
304 return dev->idx == *idx;
307 struct nfc_dev *nfc_get_device(unsigned idx)
311 d = class_find_device(&nfc_class, NULL, &idx, match_idx);
315 return to_nfc_dev(d);
319 * nfc_allocate_device - allocate a new nfc device
321 * @ops: device operations
322 * @supported_protocols: NFC protocols supported by the device
324 struct nfc_dev *nfc_allocate_device(struct nfc_ops *ops,
325 u32 supported_protocols)
327 static atomic_t dev_no = ATOMIC_INIT(0);
330 if (!ops->start_poll || !ops->stop_poll || !ops->activate_target ||
331 !ops->deactivate_target || !ops->data_exchange)
334 if (!supported_protocols)
337 dev = kzalloc(sizeof(struct nfc_dev), GFP_KERNEL);
341 dev->dev.class = &nfc_class;
342 dev->idx = atomic_inc_return(&dev_no) - 1;
343 dev_set_name(&dev->dev, "nfc%d", dev->idx);
344 device_initialize(&dev->dev);
347 dev->supported_protocols = supported_protocols;
349 spin_lock_init(&dev->targets_lock);
350 nfc_genl_data_init(&dev->genl_data);
352 /* first generation must not be 0 */
353 dev->targets_generation = 1;
357 EXPORT_SYMBOL(nfc_allocate_device);
360 * nfc_register_device - register a nfc device in the nfc subsystem
362 * @dev: The nfc device to register
364 int nfc_register_device(struct nfc_dev *dev)
368 nfc_dbg("dev_name=%s", dev_name(&dev->dev));
370 mutex_lock(&nfc_devlist_mutex);
371 nfc_devlist_generation++;
372 rc = device_add(&dev->dev);
373 mutex_unlock(&nfc_devlist_mutex);
378 rc = nfc_genl_device_added(dev);
380 nfc_dbg("The userspace won't be notified that the device %s was"
381 " added", dev_name(&dev->dev));
386 EXPORT_SYMBOL(nfc_register_device);
389 * nfc_unregister_device - unregister a nfc device in the nfc subsystem
391 * @dev: The nfc device to unregister
393 void nfc_unregister_device(struct nfc_dev *dev)
397 nfc_dbg("dev_name=%s", dev_name(&dev->dev));
399 mutex_lock(&nfc_devlist_mutex);
400 nfc_devlist_generation++;
402 /* lock to avoid unregistering a device while an operation
404 device_lock(&dev->dev);
405 device_del(&dev->dev);
406 device_unlock(&dev->dev);
408 mutex_unlock(&nfc_devlist_mutex);
410 rc = nfc_genl_device_removed(dev);
412 nfc_dbg("The userspace won't be notified that the device %s"
413 " was removed", dev_name(&dev->dev));
416 EXPORT_SYMBOL(nfc_unregister_device);
418 static int __init nfc_init(void)
422 nfc_info("NFC Core ver %s", VERSION);
424 rc = class_register(&nfc_class);
428 rc = nfc_genl_init();
432 /* the first generation must not be 0 */
433 nfc_devlist_generation = 1;
450 class_unregister(&nfc_class);
454 static void __exit nfc_exit(void)
459 class_unregister(&nfc_class);
462 subsys_initcall(nfc_init);
463 module_exit(nfc_exit);
466 MODULE_DESCRIPTION("NFC Core ver " VERSION);
467 MODULE_VERSION(VERSION);
468 MODULE_LICENSE("GPL");