Commit 3e256b8f8dfa309a80b5dece388d85d9a9801a29

Authored by Lauro Ramos Venancio
Committed by John W. Linville
1 parent 2b4562dfd6

NFC: add nfc subsystem core

The NFC subsystem core is responsible for providing the device driver
interface. It is also responsible for providing an interface to the control
operations and data exchange.

Signed-off-by: Lauro Ramos Venancio <lauro.venancio@openbossa.org>
Signed-off-by: Aloisio Almeida Jr <aloisio.almeida@openbossa.org>
Signed-off-by: Samuel Ortiz <sameo@linux.intel.com>
Signed-off-by: John W. Linville <linville@tuxdriver.com>

Showing 11 changed files with 609 additions and 15 deletions Side-by-side Diff

... ... @@ -92,8 +92,6 @@
92 92  
93 93 source "drivers/leds/Kconfig"
94 94  
95   -source "drivers/nfc/Kconfig"
96   -
97 95 source "drivers/accessibility/Kconfig"
98 96  
99 97 source "drivers/infiniband/Kconfig"
... ... @@ -120,4 +120,5 @@
120 120 obj-y += clk/
121 121  
122 122 obj-$(CONFIG_HWSPINLOCK) += hwspinlock/
  123 +obj-$(CONFIG_NFC) += nfc/
... ... @@ -2,18 +2,9 @@
2 2 # Near Field Communication (NFC) devices
3 3 #
4 4  
5   -menuconfig NFC_DEVICES
6   - bool "Near Field Communication (NFC) devices"
7   - default n
8   - ---help---
9   - You'll have to say Y if your computer contains an NFC device that
10   - you want to use under Linux.
  5 +menu "Near Field Communication (NFC) devices"
  6 + depends on NFC
11 7  
12   - You can say N here if you don't have any Near Field Communication
13   - devices connected to your computer.
14   -
15   -if NFC_DEVICES
16   -
17 8 config PN544_NFC
18 9 tristate "PN544 NFC driver"
19 10 depends on I2C
... ... @@ -26,6 +17,5 @@
26 17 To compile this driver as a module, choose m here. The module will
27 18 be called pn544.
28 19  
29   -
30   -endif # NFC_DEVICES
  20 +endmenu
drivers/nfc/Makefile
... ... @@ -3,4 +3,6 @@
3 3 #
4 4  
5 5 obj-$(CONFIG_PN544_NFC) += pn544.o
  6 +
  7 +ccflags-$(CONFIG_NFC_DEBUG) := -DDEBUG
  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 +
  24 +#ifndef __NET_NFC_H
  25 +#define __NET_NFC_H
  26 +
  27 +#include <linux/device.h>
  28 +#include <linux/skbuff.h>
  29 +
  30 +#define nfc_dev_info(dev, fmt, arg...) dev_info((dev), "NFC: " fmt "\n", ## arg)
  31 +#define nfc_dev_err(dev, fmt, arg...) dev_err((dev), "NFC: " fmt "\n", ## arg)
  32 +#define nfc_dev_dbg(dev, fmt, arg...) dev_dbg((dev), fmt "\n", ## arg)
  33 +
  34 +struct nfc_dev;
  35 +
  36 +/**
  37 + * data_exchange_cb_t - Definition of nfc_data_exchange callback
  38 + *
  39 + * @context: nfc_data_exchange cb_context parameter
  40 + * @skb: response data
  41 + * @err: If an error has occurred during data exchange, it is the
  42 + * error number. Zero means no error.
  43 + *
  44 + * When a rx or tx package is lost or corrupted or the target gets out
  45 + * of the operating field, err is -EIO.
  46 + */
  47 +typedef void (*data_exchange_cb_t)(void *context, struct sk_buff *skb,
  48 + int err);
  49 +
  50 +struct nfc_ops {
  51 + int (*start_poll)(struct nfc_dev *dev, u32 protocols);
  52 + void (*stop_poll)(struct nfc_dev *dev);
  53 + int (*activate_target)(struct nfc_dev *dev, u32 target_idx,
  54 + u32 protocol);
  55 + void (*deactivate_target)(struct nfc_dev *dev, u32 target_idx);
  56 + int (*data_exchange)(struct nfc_dev *dev, u32 target_idx,
  57 + struct sk_buff *skb, data_exchange_cb_t cb,
  58 + void *cb_context);
  59 +};
  60 +
  61 +struct nfc_dev {
  62 + unsigned idx;
  63 + struct device dev;
  64 + bool polling;
  65 + u32 supported_protocols;
  66 +
  67 + struct nfc_ops *ops;
  68 +};
  69 +#define to_nfc_dev(_dev) container_of(_dev, struct nfc_dev, dev)
  70 +
  71 +extern struct class nfc_class;
  72 +
  73 +struct nfc_dev *nfc_allocate_device(struct nfc_ops *ops,
  74 + u32 supported_protocols);
  75 +
  76 +/**
  77 + * nfc_free_device - free nfc device
  78 + *
  79 + * @dev: The nfc device to free
  80 + */
  81 +static inline void nfc_free_device(struct nfc_dev *dev)
  82 +{
  83 + put_device(&dev->dev);
  84 +}
  85 +
  86 +int nfc_register_device(struct nfc_dev *dev);
  87 +
  88 +void nfc_unregister_device(struct nfc_dev *dev);
  89 +
  90 +/**
  91 + * nfc_set_parent_dev - set the parent device
  92 + *
  93 + * @nfc_dev: The nfc device whose parent is being set
  94 + * @dev: The parent device
  95 + */
  96 +static inline void nfc_set_parent_dev(struct nfc_dev *nfc_dev,
  97 + struct device *dev)
  98 +{
  99 + nfc_dev->dev.parent = dev;
  100 +}
  101 +
  102 +/**
  103 + * nfc_set_drvdata - set driver specifc data
  104 + *
  105 + * @dev: The nfc device
  106 + * @data: Pointer to driver specifc data
  107 + */
  108 +static inline void nfc_set_drvdata(struct nfc_dev *dev, void *data)
  109 +{
  110 + dev_set_drvdata(&dev->dev, data);
  111 +}
  112 +
  113 +/**
  114 + * nfc_get_drvdata - get driver specifc data
  115 + *
  116 + * @dev: The nfc device
  117 + */
  118 +static inline void *nfc_get_drvdata(struct nfc_dev *dev)
  119 +{
  120 + return dev_get_drvdata(&dev->dev);
  121 +}
  122 +
  123 +/**
  124 + * nfc_device_name - get the nfc device name
  125 + *
  126 + * @dev: The nfc device whose name to return
  127 + */
  128 +static inline const char *nfc_device_name(struct nfc_dev *dev)
  129 +{
  130 + return dev_name(&dev->dev);
  131 +}
  132 +
  133 +struct sk_buff *nfc_alloc_skb(unsigned int size, gfp_t gfp);
  134 +
  135 +#endif /* __NET_NFC_H */
... ... @@ -322,6 +322,7 @@
322 322 source "net/9p/Kconfig"
323 323 source "net/caif/Kconfig"
324 324 source "net/ceph/Kconfig"
  325 +source "net/nfc/Kconfig"
325 326  
326 327  
327 328 endif # if NET
... ... @@ -68,4 +68,5 @@
68 68 obj-$(CONFIG_DNS_RESOLVER) += dns_resolver/
69 69 obj-$(CONFIG_CEPH_LIB) += ceph/
70 70 obj-$(CONFIG_BATMAN_ADV) += batman-adv/
  71 +obj-$(CONFIG_NFC) += nfc/
  1 +#
  2 +# NFC sybsystem configuration
  3 +#
  4 +
  5 +menuconfig NFC
  6 + depends on NET && EXPERIMENTAL
  7 + tristate "NFC subsystem support (EXPERIMENTAL)"
  8 + default n
  9 + help
  10 + Say Y here if you want to build support for NFC (Near field
  11 + communication) devices.
  12 +
  13 + To compile this support as a module, choose M here: the module will
  14 + be called nfc.
  15 +
  16 +source "drivers/nfc/Kconfig"
  1 +#
  2 +# Makefile for the Linux NFC subsystem.
  3 +#
  4 +
  5 +obj-$(CONFIG_NFC) += nfc.o
  6 +
  7 +nfc-objs := core.o
  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 +
  24 +#include <linux/init.h>
  25 +#include <linux/kernel.h>
  26 +#include <linux/module.h>
  27 +#include <linux/slab.h>
  28 +
  29 +#include "nfc.h"
  30 +
  31 +#define VERSION "0.1"
  32 +
  33 +int nfc_devlist_generation;
  34 +DEFINE_MUTEX(nfc_devlist_mutex);
  35 +
  36 +int nfc_printk(const char *level, const char *format, ...)
  37 +{
  38 + struct va_format vaf;
  39 + va_list args;
  40 + int r;
  41 +
  42 + va_start(args, format);
  43 +
  44 + vaf.fmt = format;
  45 + vaf.va = &args;
  46 +
  47 + r = printk("%sNFC: %pV\n", level, &vaf);
  48 +
  49 + va_end(args);
  50 +
  51 + return r;
  52 +}
  53 +EXPORT_SYMBOL(nfc_printk);
  54 +
  55 +/**
  56 + * nfc_start_poll - start polling for nfc targets
  57 + *
  58 + * @dev: The nfc device that must start polling
  59 + * @protocols: bitset of nfc protocols that must be used for polling
  60 + *
  61 + * The device remains polling for targets until a target is found or
  62 + * the nfc_stop_poll function is called.
  63 + */
  64 +int nfc_start_poll(struct nfc_dev *dev, u32 protocols)
  65 +{
  66 + int rc;
  67 +
  68 + nfc_dbg("dev_name=%s protocols=0x%x", dev_name(&dev->dev), protocols);
  69 +
  70 + if (!protocols)
  71 + return -EINVAL;
  72 +
  73 + device_lock(&dev->dev);
  74 +
  75 + if (!device_is_registered(&dev->dev)) {
  76 + rc = -ENODEV;
  77 + goto error;
  78 + }
  79 +
  80 + if (dev->polling) {
  81 + rc = -EBUSY;
  82 + goto error;
  83 + }
  84 +
  85 + rc = dev->ops->start_poll(dev, protocols);
  86 + if (!rc)
  87 + dev->polling = true;
  88 +
  89 +error:
  90 + device_unlock(&dev->dev);
  91 + return rc;
  92 +}
  93 +
  94 +/**
  95 + * nfc_stop_poll - stop polling for nfc targets
  96 + *
  97 + * @dev: The nfc device that must stop polling
  98 + */
  99 +int nfc_stop_poll(struct nfc_dev *dev)
  100 +{
  101 + int rc = 0;
  102 +
  103 + nfc_dbg("dev_name=%s", dev_name(&dev->dev));
  104 +
  105 + device_lock(&dev->dev);
  106 +
  107 + if (!device_is_registered(&dev->dev)) {
  108 + rc = -ENODEV;
  109 + goto error;
  110 + }
  111 +
  112 + if (!dev->polling) {
  113 + rc = -EINVAL;
  114 + goto error;
  115 + }
  116 +
  117 + dev->ops->stop_poll(dev);
  118 + dev->polling = false;
  119 +
  120 +error:
  121 + device_unlock(&dev->dev);
  122 + return rc;
  123 +}
  124 +
  125 +/**
  126 + * nfc_activate_target - prepare the target for data exchange
  127 + *
  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
  131 + */
  132 +int nfc_activate_target(struct nfc_dev *dev, u32 target_idx, u32 protocol)
  133 +{
  134 + int rc;
  135 +
  136 + nfc_dbg("dev_name=%s target_idx=%u protocol=%u", dev_name(&dev->dev),
  137 + target_idx, protocol);
  138 +
  139 + device_lock(&dev->dev);
  140 +
  141 + if (!device_is_registered(&dev->dev)) {
  142 + rc = -ENODEV;
  143 + goto error;
  144 + }
  145 +
  146 + rc = dev->ops->activate_target(dev, target_idx, protocol);
  147 +
  148 +error:
  149 + device_unlock(&dev->dev);
  150 + return rc;
  151 +}
  152 +
  153 +/**
  154 + * nfc_deactivate_target - deactivate a nfc target
  155 + *
  156 + * @dev: The nfc device that found the target
  157 + * @target_idx: index of the target that must be deactivated
  158 + */
  159 +int nfc_deactivate_target(struct nfc_dev *dev, u32 target_idx)
  160 +{
  161 + int rc = 0;
  162 +
  163 + nfc_dbg("dev_name=%s target_idx=%u", dev_name(&dev->dev), target_idx);
  164 +
  165 + device_lock(&dev->dev);
  166 +
  167 + if (!device_is_registered(&dev->dev)) {
  168 + rc = -ENODEV;
  169 + goto error;
  170 + }
  171 +
  172 + dev->ops->deactivate_target(dev, target_idx);
  173 +
  174 +error:
  175 + device_unlock(&dev->dev);
  176 + return rc;
  177 +}
  178 +
  179 +/**
  180 + * nfc_data_exchange - transceive data
  181 + *
  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
  187 + *
  188 + * The user must wait for the callback before calling this function again.
  189 + */
  190 +int nfc_data_exchange(struct nfc_dev *dev, u32 target_idx,
  191 + struct sk_buff *skb,
  192 + data_exchange_cb_t cb,
  193 + void *cb_context)
  194 +{
  195 + int rc;
  196 +
  197 + nfc_dbg("dev_name=%s target_idx=%u skb->len=%u", dev_name(&dev->dev),
  198 + target_idx, skb->len);
  199 +
  200 + device_lock(&dev->dev);
  201 +
  202 + if (!device_is_registered(&dev->dev)) {
  203 + rc = -ENODEV;
  204 + kfree_skb(skb);
  205 + goto error;
  206 + }
  207 +
  208 + rc = dev->ops->data_exchange(dev, target_idx, skb, cb, cb_context);
  209 +
  210 +error:
  211 + device_unlock(&dev->dev);
  212 + return rc;
  213 +}
  214 +
  215 +/**
  216 + * nfc_alloc_skb - allocate a skb for data exchange responses
  217 + *
  218 + * @size: size to allocate
  219 + * @gfp: gfp flags
  220 + */
  221 +struct sk_buff *nfc_alloc_skb(unsigned int size, gfp_t gfp)
  222 +{
  223 + struct sk_buff *skb;
  224 + unsigned int total_size;
  225 +
  226 + total_size = size + 1;
  227 + skb = alloc_skb(total_size, gfp);
  228 +
  229 + if (skb)
  230 + skb_reserve(skb, 1);
  231 +
  232 + return skb;
  233 +}
  234 +EXPORT_SYMBOL(nfc_alloc_skb);
  235 +
  236 +static void nfc_release(struct device *d)
  237 +{
  238 + struct nfc_dev *dev = to_nfc_dev(d);
  239 +
  240 + nfc_dbg("dev_name=%s", dev_name(&dev->dev));
  241 +
  242 + kfree(dev);
  243 +}
  244 +
  245 +struct class nfc_class = {
  246 + .name = "nfc",
  247 + .dev_release = nfc_release,
  248 +};
  249 +EXPORT_SYMBOL(nfc_class);
  250 +
  251 +static int match_idx(struct device *d, void *data)
  252 +{
  253 + struct nfc_dev *dev = to_nfc_dev(d);
  254 + unsigned *idx = data;
  255 +
  256 + return dev->idx == *idx;
  257 +}
  258 +
  259 +struct nfc_dev *nfc_get_device(unsigned idx)
  260 +{
  261 + struct device *d;
  262 +
  263 + d = class_find_device(&nfc_class, NULL, &idx, match_idx);
  264 + if (!d)
  265 + return NULL;
  266 +
  267 + return to_nfc_dev(d);
  268 +}
  269 +
  270 +/**
  271 + * nfc_allocate_device - allocate a new nfc device
  272 + *
  273 + * @ops: device operations
  274 + * @supported_protocols: NFC protocols supported by the device
  275 + */
  276 +struct nfc_dev *nfc_allocate_device(struct nfc_ops *ops,
  277 + u32 supported_protocols)
  278 +{
  279 + static atomic_t dev_no = ATOMIC_INIT(0);
  280 + struct nfc_dev *dev;
  281 +
  282 + if (!ops->start_poll || !ops->stop_poll || !ops->activate_target ||
  283 + !ops->deactivate_target || !ops->data_exchange)
  284 + return NULL;
  285 +
  286 + if (!supported_protocols)
  287 + return NULL;
  288 +
  289 + dev = kzalloc(sizeof(struct nfc_dev), GFP_KERNEL);
  290 + if (!dev)
  291 + return NULL;
  292 +
  293 + dev->dev.class = &nfc_class;
  294 + dev->idx = atomic_inc_return(&dev_no) - 1;
  295 + dev_set_name(&dev->dev, "nfc%d", dev->idx);
  296 + device_initialize(&dev->dev);
  297 +
  298 + dev->ops = ops;
  299 + dev->supported_protocols = supported_protocols;
  300 +
  301 + return dev;
  302 +}
  303 +EXPORT_SYMBOL(nfc_allocate_device);
  304 +
  305 +/**
  306 + * nfc_register_device - register a nfc device in the nfc subsystem
  307 + *
  308 + * @dev: The nfc device to register
  309 + */
  310 +int nfc_register_device(struct nfc_dev *dev)
  311 +{
  312 + int rc;
  313 +
  314 + nfc_dbg("dev_name=%s", dev_name(&dev->dev));
  315 +
  316 + mutex_lock(&nfc_devlist_mutex);
  317 + nfc_devlist_generation++;
  318 + rc = device_add(&dev->dev);
  319 + mutex_unlock(&nfc_devlist_mutex);
  320 +
  321 + return rc;
  322 +}
  323 +EXPORT_SYMBOL(nfc_register_device);
  324 +
  325 +/**
  326 + * nfc_unregister_device - unregister a nfc device in the nfc subsystem
  327 + *
  328 + * @dev: The nfc device to unregister
  329 + */
  330 +void nfc_unregister_device(struct nfc_dev *dev)
  331 +{
  332 + nfc_dbg("dev_name=%s", dev_name(&dev->dev));
  333 +
  334 + mutex_lock(&nfc_devlist_mutex);
  335 + nfc_devlist_generation++;
  336 +
  337 + /* lock to avoid unregistering a device while an operation
  338 + is in progress */
  339 + device_lock(&dev->dev);
  340 + device_del(&dev->dev);
  341 + device_unlock(&dev->dev);
  342 +
  343 + mutex_unlock(&nfc_devlist_mutex);
  344 +}
  345 +EXPORT_SYMBOL(nfc_unregister_device);
  346 +
  347 +static int __init nfc_init(void)
  348 +{
  349 + nfc_info("NFC Core ver %s", VERSION);
  350 +
  351 + return class_register(&nfc_class);
  352 +}
  353 +
  354 +static void __exit nfc_exit(void)
  355 +{
  356 + class_unregister(&nfc_class);
  357 +}
  358 +
  359 +subsys_initcall(nfc_init);
  360 +module_exit(nfc_exit);
  361 +
  362 +MODULE_AUTHOR("Lauro Ramos Venancio <lauro.venancio@openbossa.org>");
  363 +MODULE_DESCRIPTION("NFC Core ver " VERSION);
  364 +MODULE_VERSION(VERSION);
  365 +MODULE_LICENSE("GPL");
  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 +
  24 +#ifndef __LOCAL_NFC_H
  25 +#define __LOCAL_NFC_H
  26 +
  27 +#include <net/nfc.h>
  28 +
  29 +__attribute__((format (printf, 2, 3)))
  30 +int nfc_printk(const char *level, const char *fmt, ...);
  31 +
  32 +#define nfc_info(fmt, arg...) nfc_printk(KERN_INFO, fmt, ##arg)
  33 +#define nfc_err(fmt, arg...) nfc_printk(KERN_ERR, fmt, ##arg)
  34 +#define nfc_dbg(fmt, arg...) pr_debug(fmt "\n", ##arg)
  35 +
  36 +extern int nfc_devlist_generation;
  37 +extern struct mutex nfc_devlist_mutex;
  38 +
  39 +struct nfc_dev *nfc_get_device(unsigned idx);
  40 +
  41 +static inline void nfc_put_device(struct nfc_dev *dev)
  42 +{
  43 + put_device(&dev->dev);
  44 +}
  45 +
  46 +static inline void nfc_device_iter_init(struct class_dev_iter *iter)
  47 +{
  48 + class_dev_iter_init(iter, &nfc_class, NULL, NULL);
  49 +}
  50 +
  51 +static inline struct nfc_dev *nfc_device_iter_next(struct class_dev_iter *iter)
  52 +{
  53 + struct device *d = class_dev_iter_next(iter);
  54 + if (!d)
  55 + return NULL;
  56 +
  57 + return to_nfc_dev(d);
  58 +}
  59 +
  60 +static inline void nfc_device_iter_exit(struct class_dev_iter *iter)
  61 +{
  62 + class_dev_iter_exit(iter);
  63 +}
  64 +
  65 +int nfc_start_poll(struct nfc_dev *dev, u32 protocols);
  66 +
  67 +int nfc_stop_poll(struct nfc_dev *dev);
  68 +
  69 +int nfc_activate_target(struct nfc_dev *dev, u32 target_idx, u32 protocol);
  70 +
  71 +int nfc_deactivate_target(struct nfc_dev *dev, u32 target_idx);
  72 +
  73 +int nfc_data_exchange(struct nfc_dev *dev, u32 target_idx,
  74 + struct sk_buff *skb,
  75 + data_exchange_cb_t cb,
  76 + void *cb_context);
  77 +
  78 +#endif /* __LOCAL_NFC_H */