core.c 16.2 KB
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23
/*
 * Copyright (C) 2011 Instituto Nokia de Tecnologia
 *
 * Authors:
 *    Lauro Ramos Venancio <lauro.venancio@openbossa.org>
 *    Aloisio Almeida Jr <aloisio.almeida@openbossa.org>
 *
 * This program is free software; you can redistribute it and/or modify
 * it under the terms of the GNU General Public License as published by
 * the Free Software Foundation; either version 2 of the License, or
 * (at your option) any later version.
 *
 * This program is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
 * GNU General Public License for more details.
 *
 * You should have received a copy of the GNU General Public License
 * along with this program; if not, write to the
 * Free Software Foundation, Inc.,
 * 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
 */

24
#define pr_fmt(fmt) KBUILD_MODNAME ": %s: " fmt, __func__
J
Joe Perches 已提交
25

26 27 28 29
#include <linux/init.h>
#include <linux/kernel.h>
#include <linux/module.h>
#include <linux/slab.h>
S
Samuel Ortiz 已提交
30
#include <linux/nfc.h>
31 32 33 34 35

#include "nfc.h"

#define VERSION "0.1"

36 37
#define NFC_CHECK_PRES_FREQ_MS	2000

38 39 40
int nfc_devlist_generation;
DEFINE_MUTEX(nfc_devlist_mutex);

41 42 43 44 45 46 47 48 49 50 51
/**
 * nfc_dev_up - turn on the NFC device
 *
 * @dev: The nfc device to be turned on
 *
 * The device remains up until the nfc_dev_down function is called.
 */
int nfc_dev_up(struct nfc_dev *dev)
{
	int rc = 0;

J
Joe Perches 已提交
52
	pr_debug("dev_name=%s\n", dev_name(&dev->dev));
53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85

	device_lock(&dev->dev);

	if (!device_is_registered(&dev->dev)) {
		rc = -ENODEV;
		goto error;
	}

	if (dev->dev_up) {
		rc = -EALREADY;
		goto error;
	}

	if (dev->ops->dev_up)
		rc = dev->ops->dev_up(dev);

	if (!rc)
		dev->dev_up = true;

error:
	device_unlock(&dev->dev);
	return rc;
}

/**
 * nfc_dev_down - turn off the NFC device
 *
 * @dev: The nfc device to be turned off
 */
int nfc_dev_down(struct nfc_dev *dev)
{
	int rc = 0;

J
Joe Perches 已提交
86
	pr_debug("dev_name=%s\n", dev_name(&dev->dev));
87 88 89 90 91 92 93 94 95 96 97 98 99

	device_lock(&dev->dev);

	if (!device_is_registered(&dev->dev)) {
		rc = -ENODEV;
		goto error;
	}

	if (!dev->dev_up) {
		rc = -EALREADY;
		goto error;
	}

100
	if (dev->polling || dev->activated_target_idx != NFC_TARGET_IDX_NONE) {
101 102 103 104 105 106 107 108 109 110 111 112 113 114
		rc = -EBUSY;
		goto error;
	}

	if (dev->ops->dev_down)
		dev->ops->dev_down(dev);

	dev->dev_up = false;

error:
	device_unlock(&dev->dev);
	return rc;
}

115 116 117 118 119 120 121 122 123 124 125 126 127
/**
 * nfc_start_poll - start polling for nfc targets
 *
 * @dev: The nfc device that must start polling
 * @protocols: bitset of nfc protocols that must be used for polling
 *
 * The device remains polling for targets until a target is found or
 * the nfc_stop_poll function is called.
 */
int nfc_start_poll(struct nfc_dev *dev, u32 protocols)
{
	int rc;

J
Joe Perches 已提交
128 129
	pr_debug("dev_name=%s protocols=0x%x\n",
		 dev_name(&dev->dev), protocols);
130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163

	if (!protocols)
		return -EINVAL;

	device_lock(&dev->dev);

	if (!device_is_registered(&dev->dev)) {
		rc = -ENODEV;
		goto error;
	}

	if (dev->polling) {
		rc = -EBUSY;
		goto error;
	}

	rc = dev->ops->start_poll(dev, protocols);
	if (!rc)
		dev->polling = true;

error:
	device_unlock(&dev->dev);
	return rc;
}

/**
 * nfc_stop_poll - stop polling for nfc targets
 *
 * @dev: The nfc device that must stop polling
 */
int nfc_stop_poll(struct nfc_dev *dev)
{
	int rc = 0;

J
Joe Perches 已提交
164
	pr_debug("dev_name=%s\n", dev_name(&dev->dev));
165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185

	device_lock(&dev->dev);

	if (!device_is_registered(&dev->dev)) {
		rc = -ENODEV;
		goto error;
	}

	if (!dev->polling) {
		rc = -EINVAL;
		goto error;
	}

	dev->ops->stop_poll(dev);
	dev->polling = false;

error:
	device_unlock(&dev->dev);
	return rc;
}

186
int nfc_dep_link_up(struct nfc_dev *dev, int target_index, u8 comm_mode)
187 188
{
	int rc = 0;
189 190
	u8 *gb;
	size_t gb_len;
191

192
	pr_debug("dev_name=%s comm %d\n", dev_name(&dev->dev), comm_mode);
193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208

	if (!dev->ops->dep_link_up)
		return -EOPNOTSUPP;

	device_lock(&dev->dev);

	if (!device_is_registered(&dev->dev)) {
		rc = -ENODEV;
		goto error;
	}

	if (dev->dep_link_up == true) {
		rc = -EALREADY;
		goto error;
	}

209 210 211 212 213 214 215
	gb = nfc_llcp_general_bytes(dev, &gb_len);
	if (gb_len > NFC_MAX_GT_LEN) {
		rc = -EINVAL;
		goto error;
	}

	rc = dev->ops->dep_link_up(dev, target_index, comm_mode, gb, gb_len);
216 217
	if (!rc)
		dev->activated_target_idx = target_index;
218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252

error:
	device_unlock(&dev->dev);
	return rc;
}

int nfc_dep_link_down(struct nfc_dev *dev)
{
	int rc = 0;

	pr_debug("dev_name=%s\n", dev_name(&dev->dev));

	if (!dev->ops->dep_link_down)
		return -EOPNOTSUPP;

	device_lock(&dev->dev);

	if (!device_is_registered(&dev->dev)) {
		rc = -ENODEV;
		goto error;
	}

	if (dev->dep_link_up == false) {
		rc = -EALREADY;
		goto error;
	}

	if (dev->dep_rf_mode == NFC_RF_TARGET) {
		rc = -EOPNOTSUPP;
		goto error;
	}

	rc = dev->ops->dep_link_down(dev);
	if (!rc) {
		dev->dep_link_up = false;
253
		dev->activated_target_idx = NFC_TARGET_IDX_NONE;
S
Samuel Ortiz 已提交
254
		nfc_llcp_mac_is_down(dev);
255 256 257 258 259 260 261 262 263
		nfc_genl_dep_link_down_event(dev);
	}

error:
	device_unlock(&dev->dev);
	return rc;
}

int nfc_dep_link_is_up(struct nfc_dev *dev, u32 target_idx,
S
Samuel Ortiz 已提交
264
		       u8 comm_mode, u8 rf_mode)
265 266 267 268
{
	dev->dep_link_up = true;
	dev->dep_rf_mode = rf_mode;

S
Samuel Ortiz 已提交
269 270
	nfc_llcp_mac_is_up(dev, target_idx, comm_mode, rf_mode);

271 272 273 274
	return nfc_genl_dep_link_up_event(dev, target_idx, comm_mode, rf_mode);
}
EXPORT_SYMBOL(nfc_dep_link_is_up);

275 276 277 278 279 280 281 282 283 284 285
/**
 * nfc_activate_target - prepare the target for data exchange
 *
 * @dev: The nfc device that found the target
 * @target_idx: index of the target that must be activated
 * @protocol: nfc protocol that will be used for data exchange
 */
int nfc_activate_target(struct nfc_dev *dev, u32 target_idx, u32 protocol)
{
	int rc;

J
Joe Perches 已提交
286 287
	pr_debug("dev_name=%s target_idx=%u protocol=%u\n",
		 dev_name(&dev->dev), target_idx, protocol);
288 289 290 291 292 293 294 295 296

	device_lock(&dev->dev);

	if (!device_is_registered(&dev->dev)) {
		rc = -ENODEV;
		goto error;
	}

	rc = dev->ops->activate_target(dev, target_idx, protocol);
297
	if (!rc) {
298
		dev->activated_target_idx = target_idx;
299

300 301 302 303
		if (dev->ops->check_presence)
			mod_timer(&dev->check_pres_timer, jiffies +
				  msecs_to_jiffies(NFC_CHECK_PRES_FREQ_MS));
	}
304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319

error:
	device_unlock(&dev->dev);
	return rc;
}

/**
 * nfc_deactivate_target - deactivate a nfc target
 *
 * @dev: The nfc device that found the target
 * @target_idx: index of the target that must be deactivated
 */
int nfc_deactivate_target(struct nfc_dev *dev, u32 target_idx)
{
	int rc = 0;

J
Joe Perches 已提交
320 321
	pr_debug("dev_name=%s target_idx=%u\n",
		 dev_name(&dev->dev), target_idx);
322 323 324 325 326 327 328 329

	device_lock(&dev->dev);

	if (!device_is_registered(&dev->dev)) {
		rc = -ENODEV;
		goto error;
	}

330 331 332
	if (dev->ops->check_presence)
		del_timer_sync(&dev->check_pres_timer);

333
	dev->ops->deactivate_target(dev, target_idx);
334
	dev->activated_target_idx = NFC_TARGET_IDX_NONE;
335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351

error:
	device_unlock(&dev->dev);
	return rc;
}

/**
 * nfc_data_exchange - transceive data
 *
 * @dev: The nfc device that found the target
 * @target_idx: index of the target
 * @skb: data to be sent
 * @cb: callback called when the response is received
 * @cb_context: parameter for the callback function
 *
 * The user must wait for the callback before calling this function again.
 */
S
Samuel Ortiz 已提交
352 353
int nfc_data_exchange(struct nfc_dev *dev, u32 target_idx, struct sk_buff *skb,
		      data_exchange_cb_t cb, void *cb_context)
354 355 356
{
	int rc;

J
Joe Perches 已提交
357 358
	pr_debug("dev_name=%s target_idx=%u skb->len=%u\n",
		 dev_name(&dev->dev), target_idx, skb->len);
359 360 361 362 363 364 365 366 367

	device_lock(&dev->dev);

	if (!device_is_registered(&dev->dev)) {
		rc = -ENODEV;
		kfree_skb(skb);
		goto error;
	}

368 369 370 371 372 373 374 375 376 377 378 379
	if (dev->activated_target_idx == NFC_TARGET_IDX_NONE) {
		rc = -ENOTCONN;
		kfree_skb(skb);
		goto error;
	}

	if (target_idx != dev->activated_target_idx) {
		rc = -EADDRNOTAVAIL;
		kfree_skb(skb);
		goto error;
	}

380 381 382
	if (dev->ops->check_presence)
		del_timer_sync(&dev->check_pres_timer);

383 384
	rc = dev->ops->data_exchange(dev, target_idx, skb, cb, cb_context);

385 386 387 388
	if (!rc && dev->ops->check_presence)
		mod_timer(&dev->check_pres_timer, jiffies +
			  msecs_to_jiffies(NFC_CHECK_PRES_FREQ_MS));

389 390 391 392 393
error:
	device_unlock(&dev->dev);
	return rc;
}

S
Samuel Ortiz 已提交
394 395
int nfc_set_remote_general_bytes(struct nfc_dev *dev, u8 *gb, u8 gb_len)
{
S
Samuel Ortiz 已提交
396
	pr_debug("dev_name=%s gb_len=%d\n", dev_name(&dev->dev), gb_len);
S
Samuel Ortiz 已提交
397 398 399 400

	if (gb_len > NFC_MAX_GT_LEN)
		return -EINVAL;

S
Samuel Ortiz 已提交
401
	return nfc_llcp_set_remote_gb(dev, gb, gb_len);
S
Samuel Ortiz 已提交
402 403 404
}
EXPORT_SYMBOL(nfc_set_remote_general_bytes);

405
/**
S
Samuel Ortiz 已提交
406
 * nfc_alloc_send_skb - allocate a skb for data exchange responses
407 408 409 410
 *
 * @size: size to allocate
 * @gfp: gfp flags
 */
S
Samuel Ortiz 已提交
411
struct sk_buff *nfc_alloc_send_skb(struct nfc_dev *dev, struct sock *sk,
S
Samuel Ortiz 已提交
412 413
				   unsigned int flags, unsigned int size,
				   unsigned int *err)
S
Samuel Ortiz 已提交
414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434
{
	struct sk_buff *skb;
	unsigned int total_size;

	total_size = size +
		dev->tx_headroom + dev->tx_tailroom + NFC_HEADER_SIZE;

	skb = sock_alloc_send_skb(sk, total_size, flags & MSG_DONTWAIT, err);
	if (skb)
		skb_reserve(skb, dev->tx_headroom + NFC_HEADER_SIZE);

	return skb;
}

/**
 * nfc_alloc_recv_skb - allocate a skb for data exchange responses
 *
 * @size: size to allocate
 * @gfp: gfp flags
 */
struct sk_buff *nfc_alloc_recv_skb(unsigned int size, gfp_t gfp)
435 436 437 438 439 440 441 442 443 444 445 446
{
	struct sk_buff *skb;
	unsigned int total_size;

	total_size = size + 1;
	skb = alloc_skb(total_size, gfp);

	if (skb)
		skb_reserve(skb, 1);

	return skb;
}
S
Samuel Ortiz 已提交
447
EXPORT_SYMBOL(nfc_alloc_recv_skb);
448

449 450 451 452 453 454 455 456 457 458 459
/**
 * nfc_targets_found - inform that targets were found
 *
 * @dev: The nfc device that found the targets
 * @targets: array of nfc targets found
 * @ntargets: targets array size
 *
 * The device driver must call this function when one or many nfc targets
 * are found. After calling this function, the device driver must stop
 * polling for targets.
 */
S
Samuel Ortiz 已提交
460 461
int nfc_targets_found(struct nfc_dev *dev,
		      struct nfc_target *targets, int n_targets)
462
{
463 464
	int i;

J
Joe Perches 已提交
465
	pr_debug("dev_name=%s n_targets=%d\n", dev_name(&dev->dev), n_targets);
466 467 468

	dev->polling = false;

469
	for (i = 0; i < n_targets; i++)
470
		targets[i].idx = dev->target_next_idx++;
471

472 473 474 475 476 477
	spin_lock_bh(&dev->targets_lock);

	dev->targets_generation++;

	kfree(dev->targets);
	dev->targets = kmemdup(targets, n_targets * sizeof(struct nfc_target),
S
Samuel Ortiz 已提交
478
			       GFP_ATOMIC);
479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494

	if (!dev->targets) {
		dev->n_targets = 0;
		spin_unlock_bh(&dev->targets_lock);
		return -ENOMEM;
	}

	dev->n_targets = n_targets;
	spin_unlock_bh(&dev->targets_lock);

	nfc_genl_targets_found(dev);

	return 0;
}
EXPORT_SYMBOL(nfc_targets_found);

E
Eric Lapuyade 已提交
495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516
int nfc_target_lost(struct nfc_dev *dev, u32 target_idx)
{
	struct nfc_target *tg;
	int i;

	pr_debug("dev_name %s n_target %d\n", dev_name(&dev->dev), target_idx);

	spin_lock_bh(&dev->targets_lock);

	for (i = 0; i < dev->n_targets; i++) {
		tg = &dev->targets[i];
		if (tg->idx == target_idx)
			break;
	}

	if (i == dev->n_targets) {
		spin_unlock_bh(&dev->targets_lock);
		return -EINVAL;
	}

	dev->targets_generation++;
	dev->n_targets--;
517
	dev->activated_target_idx = NFC_TARGET_IDX_NONE;
E
Eric Lapuyade 已提交
518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534

	if (dev->n_targets) {
		memcpy(&dev->targets[i], &dev->targets[i + 1],
		       (dev->n_targets - i) * sizeof(struct nfc_target));
	} else {
		kfree(dev->targets);
		dev->targets = NULL;
	}

	spin_unlock_bh(&dev->targets_lock);

	nfc_genl_target_lost(dev, target_idx);

	return 0;
}
EXPORT_SYMBOL(nfc_target_lost);

535 536 537 538
static void nfc_release(struct device *d)
{
	struct nfc_dev *dev = to_nfc_dev(d);

J
Joe Perches 已提交
539
	pr_debug("dev_name=%s\n", dev_name(&dev->dev));
540

541 542 543 544 545
	if (dev->ops->check_presence) {
		del_timer_sync(&dev->check_pres_timer);
		destroy_workqueue(dev->check_pres_wq);
	}

546 547
	nfc_genl_data_exit(&dev->genl_data);
	kfree(dev->targets);
548 549 550
	kfree(dev);
}

551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580
static void nfc_check_pres_work(struct work_struct *work)
{
	struct nfc_dev *dev = container_of(work, struct nfc_dev,
					   check_pres_work);
	int rc;

	device_lock(&dev->dev);

	if (dev->activated_target_idx != NFC_TARGET_IDX_NONE &&
	    timer_pending(&dev->check_pres_timer) == 0) {
		rc = dev->ops->check_presence(dev, dev->activated_target_idx);
		if (!rc) {
			mod_timer(&dev->check_pres_timer, jiffies +
				  msecs_to_jiffies(NFC_CHECK_PRES_FREQ_MS));
		} else {
			nfc_target_lost(dev, dev->activated_target_idx);
			dev->activated_target_idx = NFC_TARGET_IDX_NONE;
		}
	}

	device_unlock(&dev->dev);
}

static void nfc_check_pres_timeout(unsigned long data)
{
	struct nfc_dev *dev = (struct nfc_dev *)data;

	queue_work(dev->check_pres_wq, &dev->check_pres_work);
}

581 582 583 584 585 586 587 588 589
struct class nfc_class = {
	.name = "nfc",
	.dev_release = nfc_release,
};
EXPORT_SYMBOL(nfc_class);

static int match_idx(struct device *d, void *data)
{
	struct nfc_dev *dev = to_nfc_dev(d);
590
	unsigned int *idx = data;
591 592 593 594

	return dev->idx == *idx;
}

595
struct nfc_dev *nfc_get_device(unsigned int idx)
596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612
{
	struct device *d;

	d = class_find_device(&nfc_class, NULL, &idx, match_idx);
	if (!d)
		return NULL;

	return to_nfc_dev(d);
}

/**
 * nfc_allocate_device - allocate a new nfc device
 *
 * @ops: device operations
 * @supported_protocols: NFC protocols supported by the device
 */
struct nfc_dev *nfc_allocate_device(struct nfc_ops *ops,
S
Samuel Ortiz 已提交
613 614
				    u32 supported_protocols,
				    int tx_headroom, int tx_tailroom)
615 616 617 618 619
{
	static atomic_t dev_no = ATOMIC_INIT(0);
	struct nfc_dev *dev;

	if (!ops->start_poll || !ops->stop_poll || !ops->activate_target ||
S
Samuel Ortiz 已提交
620
	    !ops->deactivate_target || !ops->data_exchange)
621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636
		return NULL;

	if (!supported_protocols)
		return NULL;

	dev = kzalloc(sizeof(struct nfc_dev), GFP_KERNEL);
	if (!dev)
		return NULL;

	dev->dev.class = &nfc_class;
	dev->idx = atomic_inc_return(&dev_no) - 1;
	dev_set_name(&dev->dev, "nfc%d", dev->idx);
	device_initialize(&dev->dev);

	dev->ops = ops;
	dev->supported_protocols = supported_protocols;
637 638
	dev->tx_headroom = tx_headroom;
	dev->tx_tailroom = tx_tailroom;
639

640 641 642 643 644 645
	spin_lock_init(&dev->targets_lock);
	nfc_genl_data_init(&dev->genl_data);

	/* first generation must not be 0 */
	dev->targets_generation = 1;

646 647
	dev->activated_target_idx = NFC_TARGET_IDX_NONE;

648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665
	if (ops->check_presence) {
		char name[32];
		init_timer(&dev->check_pres_timer);
		dev->check_pres_timer.data = (unsigned long)dev;
		dev->check_pres_timer.function = nfc_check_pres_timeout;

		INIT_WORK(&dev->check_pres_work, nfc_check_pres_work);
		snprintf(name, sizeof(name), "nfc%d_check_pres_wq", dev->idx);
		dev->check_pres_wq = alloc_workqueue(name, WQ_NON_REENTRANT |
						     WQ_UNBOUND |
						     WQ_MEM_RECLAIM, 1);
		if (dev->check_pres_wq == NULL) {
			kfree(dev);
			return NULL;
		}
	}


666 667 668 669 670 671 672 673 674 675 676 677 678
	return dev;
}
EXPORT_SYMBOL(nfc_allocate_device);

/**
 * nfc_register_device - register a nfc device in the nfc subsystem
 *
 * @dev: The nfc device to register
 */
int nfc_register_device(struct nfc_dev *dev)
{
	int rc;

J
Joe Perches 已提交
679
	pr_debug("dev_name=%s\n", dev_name(&dev->dev));
680 681 682 683 684 685

	mutex_lock(&nfc_devlist_mutex);
	nfc_devlist_generation++;
	rc = device_add(&dev->dev);
	mutex_unlock(&nfc_devlist_mutex);

686 687 688
	if (rc < 0)
		return rc;

S
Samuel Ortiz 已提交
689 690 691 692
	rc = nfc_llcp_register_device(dev);
	if (rc)
		pr_err("Could not register llcp device\n");

693 694
	rc = nfc_genl_device_added(dev);
	if (rc)
J
Joe Perches 已提交
695 696
		pr_debug("The userspace won't be notified that the device %s was added\n",
			 dev_name(&dev->dev));
697 698

	return 0;
699 700 701 702 703 704 705 706 707 708
}
EXPORT_SYMBOL(nfc_register_device);

/**
 * nfc_unregister_device - unregister a nfc device in the nfc subsystem
 *
 * @dev: The nfc device to unregister
 */
void nfc_unregister_device(struct nfc_dev *dev)
{
709 710
	int rc;

J
Joe Perches 已提交
711
	pr_debug("dev_name=%s\n", dev_name(&dev->dev));
712 713 714 715 716 717 718 719 720 721 722

	mutex_lock(&nfc_devlist_mutex);
	nfc_devlist_generation++;

	/* lock to avoid unregistering a device while an operation
	   is in progress */
	device_lock(&dev->dev);
	device_del(&dev->dev);
	device_unlock(&dev->dev);

	mutex_unlock(&nfc_devlist_mutex);
723

S
Samuel Ortiz 已提交
724 725
	nfc_llcp_unregister_device(dev);

726 727
	rc = nfc_genl_device_removed(dev);
	if (rc)
J
Joe Perches 已提交
728 729
		pr_debug("The userspace won't be notified that the device %s was removed\n",
			 dev_name(&dev->dev));
730

731 732 733 734 735
}
EXPORT_SYMBOL(nfc_unregister_device);

static int __init nfc_init(void)
{
736 737
	int rc;

J
Joe Perches 已提交
738
	pr_info("NFC Core ver %s\n", VERSION);
739

740 741 742 743 744 745 746 747 748 749 750
	rc = class_register(&nfc_class);
	if (rc)
		return rc;

	rc = nfc_genl_init();
	if (rc)
		goto err_genl;

	/* the first generation must not be 0 */
	nfc_devlist_generation = 1;

751 752 753 754
	rc = rawsock_init();
	if (rc)
		goto err_rawsock;

S
Samuel Ortiz 已提交
755 756 757 758
	rc = nfc_llcp_init();
	if (rc)
		goto err_llcp_sock;

A
Aloisio Almeida Jr 已提交
759 760 761 762
	rc = af_nfc_init();
	if (rc)
		goto err_af_nfc;

763 764
	return 0;

A
Aloisio Almeida Jr 已提交
765
err_af_nfc:
S
Samuel Ortiz 已提交
766 767
	nfc_llcp_exit();
err_llcp_sock:
768 769
	rawsock_exit();
err_rawsock:
A
Aloisio Almeida Jr 已提交
770
	nfc_genl_exit();
771 772 773
err_genl:
	class_unregister(&nfc_class);
	return rc;
774 775 776 777
}

static void __exit nfc_exit(void)
{
A
Aloisio Almeida Jr 已提交
778
	af_nfc_exit();
S
Samuel Ortiz 已提交
779
	nfc_llcp_exit();
780
	rawsock_exit();
781
	nfc_genl_exit();
782 783 784 785 786 787 788 789 790 791
	class_unregister(&nfc_class);
}

subsys_initcall(nfc_init);
module_exit(nfc_exit);

MODULE_AUTHOR("Lauro Ramos Venancio <lauro.venancio@openbossa.org>");
MODULE_DESCRIPTION("NFC Core ver " VERSION);
MODULE_VERSION(VERSION);
MODULE_LICENSE("GPL");