core.c 20.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/rfkill.h>
S
Samuel Ortiz 已提交
31
#include <linux/nfc.h>
32

33 34
#include <net/genetlink.h>

35 36 37 38
#include "nfc.h"

#define VERSION "0.1"

39 40
#define NFC_CHECK_PRES_FREQ_MS	2000

41 42 43
int nfc_devlist_generation;
DEFINE_MUTEX(nfc_devlist_mutex);

44 45 46
/* NFC device ID bitmap */
static DEFINE_IDA(nfc_index_ida);

47 48 49 50 51 52 53 54 55 56 57
/**
 * 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 已提交
58
	pr_debug("dev_name=%s\n", dev_name(&dev->dev));
59 60 61

	device_lock(&dev->dev);

S
Samuel Ortiz 已提交
62 63 64 65 66
	if (dev->rfkill && rfkill_blocked(dev->rfkill)) {
		rc = -ERFKILL;
		goto error;
	}

67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96
	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 已提交
97
	pr_debug("dev_name=%s\n", dev_name(&dev->dev));
98 99 100 101 102 103 104 105 106 107 108 109 110

	device_lock(&dev->dev);

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

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

111
	if (dev->polling || dev->active_target) {
112 113 114 115 116 117 118 119 120 121 122 123 124 125
		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;
}

S
Samuel Ortiz 已提交
126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143
static int nfc_rfkill_set_block(void *data, bool blocked)
{
	struct nfc_dev *dev = data;

	pr_debug("%s blocked %d", dev_name(&dev->dev), blocked);

	if (!blocked)
		return 0;

	nfc_dev_down(dev);

	return 0;
}

static const struct rfkill_ops nfc_rfkill_ops = {
	.set_block = nfc_rfkill_set_block,
};

144 145 146 147 148 149 150 151 152
/**
 * 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.
 */
153
int nfc_start_poll(struct nfc_dev *dev, u32 im_protocols, u32 tm_protocols)
154 155 156
{
	int rc;

157 158
	pr_debug("dev_name %s initiator protocols 0x%x target protocols 0x%x\n",
		 dev_name(&dev->dev), im_protocols, tm_protocols);
159

160
	if (!im_protocols && !tm_protocols)
161 162 163 164 165 166 167 168 169
		return -EINVAL;

	device_lock(&dev->dev);

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

170 171 172 173 174
	if (!dev->dev_up) {
		rc = -ENODEV;
		goto error;
	}

175 176 177 178 179
	if (dev->polling) {
		rc = -EBUSY;
		goto error;
	}

180
	rc = dev->ops->start_poll(dev, im_protocols, tm_protocols);
181
	if (!rc) {
182
		dev->polling = true;
183 184
		dev->rf_mode = NFC_RF_NONE;
	}
185 186 187 188 189 190 191 192 193 194 195 196 197 198 199

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 已提交
200
	pr_debug("dev_name=%s\n", dev_name(&dev->dev));
201 202 203 204 205 206 207 208 209 210 211 212 213 214 215

	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;
216
	dev->rf_mode = NFC_RF_NONE;
217 218 219 220 221 222

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

223 224 225 226 227 228 229
static struct nfc_target *nfc_find_target(struct nfc_dev *dev, u32 target_idx)
{
	int i;

	if (dev->n_targets == 0)
		return NULL;

230
	for (i = 0; i < dev->n_targets; i++) {
231 232 233 234 235 236 237
		if (dev->targets[i].idx == target_idx)
			return &dev->targets[i];
	}

	return NULL;
}

238
int nfc_dep_link_up(struct nfc_dev *dev, int target_index, u8 comm_mode)
239 240
{
	int rc = 0;
241 242
	u8 *gb;
	size_t gb_len;
243
	struct nfc_target *target;
244

245
	pr_debug("dev_name=%s comm %d\n", dev_name(&dev->dev), comm_mode);
246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261

	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;
	}

262 263 264 265 266 267
	gb = nfc_llcp_general_bytes(dev, &gb_len);
	if (gb_len > NFC_MAX_GT_LEN) {
		rc = -EINVAL;
		goto error;
	}

268 269 270 271 272 273 274
	target = nfc_find_target(dev, target_index);
	if (target == NULL) {
		rc = -ENOTCONN;
		goto error;
	}

	rc = dev->ops->dep_link_up(dev, target, comm_mode, gb, gb_len);
275
	if (!rc) {
276
		dev->active_target = target;
277 278
		dev->rf_mode = NFC_RF_INITIATOR;
	}
279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308

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;
	}

	rc = dev->ops->dep_link_down(dev);
	if (!rc) {
		dev->dep_link_up = false;
309
		dev->active_target = NULL;
310
		dev->rf_mode = NFC_RF_NONE;
S
Samuel Ortiz 已提交
311
		nfc_llcp_mac_is_down(dev);
312 313 314 315 316
		nfc_genl_dep_link_down_event(dev);
	}

error:
	device_unlock(&dev->dev);
317

318 319 320 321
	return rc;
}

int nfc_dep_link_is_up(struct nfc_dev *dev, u32 target_idx,
S
Samuel Ortiz 已提交
322
		       u8 comm_mode, u8 rf_mode)
323 324 325
{
	dev->dep_link_up = true;

S
Samuel Ortiz 已提交
326 327
	nfc_llcp_mac_is_up(dev, target_idx, comm_mode, rf_mode);

328 329 330 331
	return nfc_genl_dep_link_up_event(dev, target_idx, comm_mode, rf_mode);
}
EXPORT_SYMBOL(nfc_dep_link_is_up);

332 333 334 335 336 337 338 339 340 341
/**
 * 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;
342
	struct nfc_target *target;
343

J
Joe Perches 已提交
344 345
	pr_debug("dev_name=%s target_idx=%u protocol=%u\n",
		 dev_name(&dev->dev), target_idx, protocol);
346 347 348 349 350 351 352 353

	device_lock(&dev->dev);

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

354 355 356 357 358 359 360 361 362 363 364 365
	if (dev->active_target) {
		rc = -EBUSY;
		goto error;
	}

	target = nfc_find_target(dev, target_idx);
	if (target == NULL) {
		rc = -ENOTCONN;
		goto error;
	}

	rc = dev->ops->activate_target(dev, target, protocol);
366
	if (!rc) {
367
		dev->active_target = target;
368
		dev->rf_mode = NFC_RF_INITIATOR;
369

370
		if (dev->ops->check_presence && !dev->shutting_down)
371 372 373
			mod_timer(&dev->check_pres_timer, jiffies +
				  msecs_to_jiffies(NFC_CHECK_PRES_FREQ_MS));
	}
374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389

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 已提交
390 391
	pr_debug("dev_name=%s target_idx=%u\n",
		 dev_name(&dev->dev), target_idx);
392 393 394 395 396 397 398 399

	device_lock(&dev->dev);

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

400 401 402 403 404 405 406 407 408 409
	if (dev->active_target == NULL) {
		rc = -ENOTCONN;
		goto error;
	}

	if (dev->active_target->idx != target_idx) {
		rc = -ENOTCONN;
		goto error;
	}

410 411 412
	if (dev->ops->check_presence)
		del_timer_sync(&dev->check_pres_timer);

413 414
	dev->ops->deactivate_target(dev, dev->active_target);
	dev->active_target = NULL;
415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431

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 已提交
432 433
int nfc_data_exchange(struct nfc_dev *dev, u32 target_idx, struct sk_buff *skb,
		      data_exchange_cb_t cb, void *cb_context)
434 435 436
{
	int rc;

J
Joe Perches 已提交
437 438
	pr_debug("dev_name=%s target_idx=%u skb->len=%u\n",
		 dev_name(&dev->dev), target_idx, skb->len);
439 440 441 442 443 444 445 446 447

	device_lock(&dev->dev);

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

S
Samuel Ortiz 已提交
448 449 450 451 452 453
	if (dev->rf_mode == NFC_RF_INITIATOR && dev->active_target != NULL) {
		if (dev->active_target->idx != target_idx) {
			rc = -EADDRNOTAVAIL;
			kfree_skb(skb);
			goto error;
		}
454

S
Samuel Ortiz 已提交
455 456 457 458 459 460
		if (dev->ops->check_presence)
			del_timer_sync(&dev->check_pres_timer);

		rc = dev->ops->im_transceive(dev, dev->active_target, skb, cb,
					     cb_context);

461
		if (!rc && dev->ops->check_presence && !dev->shutting_down)
S
Samuel Ortiz 已提交
462 463 464 465 466 467
			mod_timer(&dev->check_pres_timer, jiffies +
				  msecs_to_jiffies(NFC_CHECK_PRES_FREQ_MS));
	} else if (dev->rf_mode == NFC_RF_TARGET && dev->ops->tm_send != NULL) {
		rc = dev->ops->tm_send(dev, skb);
	} else {
		rc = -ENOTCONN;
468 469 470 471
		kfree_skb(skb);
		goto error;
	}

472

473 474 475 476 477
error:
	device_unlock(&dev->dev);
	return rc;
}

S
Samuel Ortiz 已提交
478 479
int nfc_set_remote_general_bytes(struct nfc_dev *dev, u8 *gb, u8 gb_len)
{
S
Samuel Ortiz 已提交
480
	pr_debug("dev_name=%s gb_len=%d\n", dev_name(&dev->dev), gb_len);
S
Samuel Ortiz 已提交
481 482 483 484

	if (gb_len > NFC_MAX_GT_LEN)
		return -EINVAL;

S
Samuel Ortiz 已提交
485
	return nfc_llcp_set_remote_gb(dev, gb, gb_len);
S
Samuel Ortiz 已提交
486 487 488
}
EXPORT_SYMBOL(nfc_set_remote_general_bytes);

489 490 491 492 493 494 495 496
u8 *nfc_get_local_general_bytes(struct nfc_dev *dev, size_t *gb_len)
{
	pr_debug("dev_name=%s\n", dev_name(&dev->dev));

	return nfc_llcp_general_bytes(dev, gb_len);
}
EXPORT_SYMBOL(nfc_get_local_general_bytes);

497 498 499 500 501 502 503 504 505 506 507 508
int nfc_tm_data_received(struct nfc_dev *dev, struct sk_buff *skb)
{
	/* Only LLCP target mode for now */
	if (dev->dep_link_up == false) {
		kfree_skb(skb);
		return -ENOLINK;
	}

	return nfc_llcp_data_received(dev, skb);
}
EXPORT_SYMBOL(nfc_tm_data_received);

509 510 511 512 513 514 515 516 517 518 519 520 521 522 523
int nfc_tm_activated(struct nfc_dev *dev, u32 protocol, u8 comm_mode,
		     u8 *gb, size_t gb_len)
{
	int rc;

	device_lock(&dev->dev);

	dev->polling = false;

	if (gb != NULL) {
		rc = nfc_set_remote_general_bytes(dev, gb, gb_len);
		if (rc < 0)
			goto out;
	}

524 525
	dev->rf_mode = NFC_RF_TARGET;

526 527 528 529 530 531 532 533 534 535 536 537 538 539 540
	if (protocol == NFC_PROTO_NFC_DEP_MASK)
		nfc_dep_link_is_up(dev, 0, comm_mode, NFC_RF_TARGET);

	rc = nfc_genl_tm_activated(dev, protocol);

out:
	device_unlock(&dev->dev);

	return rc;
}
EXPORT_SYMBOL(nfc_tm_activated);

int nfc_tm_deactivated(struct nfc_dev *dev)
{
	dev->dep_link_up = false;
541
	dev->rf_mode = NFC_RF_NONE;
542 543 544 545 546

	return nfc_genl_tm_deactivated(dev);
}
EXPORT_SYMBOL(nfc_tm_deactivated);

547
/**
S
Samuel Ortiz 已提交
548
 * nfc_alloc_send_skb - allocate a skb for data exchange responses
549 550 551 552
 *
 * @size: size to allocate
 * @gfp: gfp flags
 */
S
Samuel Ortiz 已提交
553
struct sk_buff *nfc_alloc_send_skb(struct nfc_dev *dev, struct sock *sk,
S
Samuel Ortiz 已提交
554 555
				   unsigned int flags, unsigned int size,
				   unsigned int *err)
S
Samuel Ortiz 已提交
556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576
{
	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)
577 578 579 580 581 582 583 584 585 586 587 588
{
	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 已提交
589
EXPORT_SYMBOL(nfc_alloc_recv_skb);
590

591 592 593 594 595 596 597 598 599 600
/**
 * 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.
601 602
 * NOTE: This function can be called with targets=NULL and n_targets=0 to
 * notify a driver error, meaning that the polling operation cannot complete.
603 604 605
 * IMPORTANT: this function must not be called from an atomic context.
 * In addition, it must also not be called from a context that would prevent
 * the NFC Core to call other nfc ops entry point concurrently.
606
 */
S
Samuel Ortiz 已提交
607 608
int nfc_targets_found(struct nfc_dev *dev,
		      struct nfc_target *targets, int n_targets)
609
{
610 611
	int i;

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

614
	for (i = 0; i < n_targets; i++)
615
		targets[i].idx = dev->target_next_idx++;
616

617
	device_lock(&dev->dev);
618

619 620 621 622 623 624 625
	if (dev->polling == false) {
		device_unlock(&dev->dev);
		return 0;
	}

	dev->polling = false;

626 627 628
	dev->targets_generation++;

	kfree(dev->targets);
629
	dev->targets = NULL;
630

631 632 633 634 635 636 637 638 639 640
	if (targets) {
		dev->targets = kmemdup(targets,
				       n_targets * sizeof(struct nfc_target),
				       GFP_ATOMIC);

		if (!dev->targets) {
			dev->n_targets = 0;
			device_unlock(&dev->dev);
			return -ENOMEM;
		}
641 642 643
	}

	dev->n_targets = n_targets;
644
	device_unlock(&dev->dev);
645 646 647 648 649 650 651

	nfc_genl_targets_found(dev);

	return 0;
}
EXPORT_SYMBOL(nfc_targets_found);

652 653 654 655 656 657 658 659 660 661 662 663
/**
 * nfc_target_lost - inform that an activated target went out of field
 *
 * @dev: The nfc device that had the activated target in field
 * @target_idx: the nfc index of the target
 *
 * The device driver must call this function when the activated target
 * goes out of the field.
 * IMPORTANT: this function must not be called from an atomic context.
 * In addition, it must also not be called from a context that would prevent
 * the NFC Core to call other nfc ops entry point concurrently.
 */
E
Eric Lapuyade 已提交
664 665 666 667 668 669 670
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);

671
	device_lock(&dev->dev);
E
Eric Lapuyade 已提交
672 673 674 675 676 677 678 679

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

	if (i == dev->n_targets) {
680
		device_unlock(&dev->dev);
E
Eric Lapuyade 已提交
681 682 683 684 685
		return -EINVAL;
	}

	dev->targets_generation++;
	dev->n_targets--;
686
	dev->active_target = NULL;
E
Eric Lapuyade 已提交
687 688 689 690 691 692 693 694 695

	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;
	}

696
	device_unlock(&dev->dev);
E
Eric Lapuyade 已提交
697 698 699 700 701 702 703

	nfc_genl_target_lost(dev, target_idx);

	return 0;
}
EXPORT_SYMBOL(nfc_target_lost);

704
inline void nfc_driver_failure(struct nfc_dev *dev, int err)
E
Eric Lapuyade 已提交
705
{
706
	nfc_targets_found(dev, NULL, 0);
E
Eric Lapuyade 已提交
707 708 709
}
EXPORT_SYMBOL(nfc_driver_failure);

710 711 712 713
static void nfc_release(struct device *d)
{
	struct nfc_dev *dev = to_nfc_dev(d);

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

716 717
	nfc_genl_data_exit(&dev->genl_data);
	kfree(dev->targets);
718 719 720
	kfree(dev);
}

721 722 723 724 725 726 727 728
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);

729 730
	if (dev->active_target && timer_pending(&dev->check_pres_timer) == 0) {
		rc = dev->ops->check_presence(dev, dev->active_target);
731 732
		if (rc == -EOPNOTSUPP)
			goto exit;
733
		if (rc) {
734 735 736 737
			u32 active_target_idx = dev->active_target->idx;
			device_unlock(&dev->dev);
			nfc_target_lost(dev, active_target_idx);
			return;
738
		}
739 740 741 742

		if (!dev->shutting_down)
			mod_timer(&dev->check_pres_timer, jiffies +
				  msecs_to_jiffies(NFC_CHECK_PRES_FREQ_MS));
743 744
	}

745
exit:
746 747 748 749 750 751 752
	device_unlock(&dev->dev);
}

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

753
	schedule_work(&dev->check_pres_work);
754 755
}

756 757 758 759 760 761
struct class nfc_class = {
	.name = "nfc",
	.dev_release = nfc_release,
};
EXPORT_SYMBOL(nfc_class);

762
static int match_idx(struct device *d, const void *data)
763 764
{
	struct nfc_dev *dev = to_nfc_dev(d);
765
	const unsigned int *idx = data;
766 767 768 769

	return dev->idx == *idx;
}

770
struct nfc_dev *nfc_get_device(unsigned int idx)
771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787
{
	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 已提交
788
				    u32 supported_protocols,
S
Samuel Ortiz 已提交
789
				    u32 supported_se,
S
Samuel Ortiz 已提交
790
				    int tx_headroom, int tx_tailroom)
791 792 793 794
{
	struct nfc_dev *dev;

	if (!ops->start_poll || !ops->stop_poll || !ops->activate_target ||
S
Samuel Ortiz 已提交
795
	    !ops->deactivate_target || !ops->im_transceive)
796 797 798 799 800 801 802 803 804 805 806
		return NULL;

	if (!supported_protocols)
		return NULL;

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

	dev->ops = ops;
	dev->supported_protocols = supported_protocols;
S
Samuel Ortiz 已提交
807 808
	dev->supported_se = supported_se;
	dev->active_se = NFC_SE_NONE;
809 810
	dev->tx_headroom = tx_headroom;
	dev->tx_tailroom = tx_tailroom;
811

812 813
	nfc_genl_data_init(&dev->genl_data);

814
	dev->rf_mode = NFC_RF_NONE;
815

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

819 820 821 822 823 824 825 826
	if (ops->check_presence) {
		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);
	}

827 828 829 830 831 832 833 834 835 836 837 838 839
	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 已提交
840
	pr_debug("dev_name=%s\n", dev_name(&dev->dev));
841

842 843 844 845 846 847 848 849
	dev->idx = ida_simple_get(&nfc_index_ida, 0, 0, GFP_KERNEL);
	if (dev->idx < 0)
		return dev->idx;

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

850 851 852 853 854
	mutex_lock(&nfc_devlist_mutex);
	nfc_devlist_generation++;
	rc = device_add(&dev->dev);
	mutex_unlock(&nfc_devlist_mutex);

855 856 857
	if (rc < 0)
		return rc;

S
Samuel Ortiz 已提交
858 859 860 861
	rc = nfc_llcp_register_device(dev);
	if (rc)
		pr_err("Could not register llcp device\n");

862 863
	rc = nfc_genl_device_added(dev);
	if (rc)
J
Joe Perches 已提交
864 865
		pr_debug("The userspace won't be notified that the device %s was added\n",
			 dev_name(&dev->dev));
866

S
Samuel Ortiz 已提交
867 868 869 870 871 872 873 874 875
	dev->rfkill = rfkill_alloc(dev_name(&dev->dev), &dev->dev,
				   RFKILL_TYPE_NFC, &nfc_rfkill_ops, dev);
	if (dev->rfkill) {
		if (rfkill_register(dev->rfkill) < 0) {
			rfkill_destroy(dev->rfkill);
			dev->rfkill = NULL;
		}
	}

876
	return 0;
877 878 879 880 881 882 883 884 885 886
}
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)
{
887
	int rc, id;
888

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

891 892
	id = dev->idx;

S
Samuel Ortiz 已提交
893 894 895 896 897
	if (dev->rfkill) {
		rfkill_unregister(dev->rfkill);
		rfkill_destroy(dev->rfkill);
	}

898 899 900 901 902 903 904
	if (dev->ops->check_presence) {
		device_lock(&dev->dev);
		dev->shutting_down = true;
		device_unlock(&dev->dev);
		del_timer_sync(&dev->check_pres_timer);
		cancel_work_sync(&dev->check_pres_work);
	}
905

906 907 908 909
	rc = nfc_genl_device_removed(dev);
	if (rc)
		pr_debug("The userspace won't be notified that the device %s "
			 "was removed\n", dev_name(&dev->dev));
910

S
Samuel Ortiz 已提交
911 912
	nfc_llcp_unregister_device(dev);

913 914 915 916
	mutex_lock(&nfc_devlist_mutex);
	nfc_devlist_generation++;
	device_del(&dev->dev);
	mutex_unlock(&nfc_devlist_mutex);
917

918
	ida_simple_remove(&nfc_index_ida, id);
919 920 921 922 923
}
EXPORT_SYMBOL(nfc_unregister_device);

static int __init nfc_init(void)
{
924 925
	int rc;

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

928 929 930 931 932 933 934 935 936 937 938
	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;

939 940 941 942
	rc = rawsock_init();
	if (rc)
		goto err_rawsock;

S
Samuel Ortiz 已提交
943 944 945 946
	rc = nfc_llcp_init();
	if (rc)
		goto err_llcp_sock;

A
Aloisio Almeida Jr 已提交
947 948 949 950
	rc = af_nfc_init();
	if (rc)
		goto err_af_nfc;

951 952
	return 0;

A
Aloisio Almeida Jr 已提交
953
err_af_nfc:
S
Samuel Ortiz 已提交
954 955
	nfc_llcp_exit();
err_llcp_sock:
956 957
	rawsock_exit();
err_rawsock:
A
Aloisio Almeida Jr 已提交
958
	nfc_genl_exit();
959 960 961
err_genl:
	class_unregister(&nfc_class);
	return rc;
962 963 964 965
}

static void __exit nfc_exit(void)
{
A
Aloisio Almeida Jr 已提交
966
	af_nfc_exit();
S
Samuel Ortiz 已提交
967
	nfc_llcp_exit();
968
	rawsock_exit();
969
	nfc_genl_exit();
970 971 972 973 974 975 976 977 978 979
	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");
980
MODULE_ALIAS_NETPROTO(PF_NFC);
981
MODULE_ALIAS_GENL_FAMILY(NFC_GENL_NAME);