core.c 20.8 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 24 25 26 27
/*
 *  The NFC Controller Interface is the communication protocol between an
 *  NFC Controller (NFCC) and a Device Host (DH).
 *
 *  Copyright (C) 2011 Texas Instruments, Inc.
 *
 *  Written by Ilan Elias <ilane@ti.com>
 *
 *  Acknowledgements:
 *  This file is based on hci_core.c, which was written
 *  by Maxim Krasnyansky.
 *
 *  This program is free software; you can redistribute it and/or modify
 *  it under the terms of the GNU General Public License version 2
 *  as published by the Free Software Foundation
 *
 *  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
 *
 */

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

30 31 32
#include <linux/types.h>
#include <linux/workqueue.h>
#include <linux/completion.h>
33
#include <linux/export.h>
34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68
#include <linux/sched.h>
#include <linux/bitops.h>
#include <linux/skbuff.h>

#include "../nfc.h"
#include <net/nfc/nci.h>
#include <net/nfc/nci_core.h>
#include <linux/nfc.h>

static void nci_cmd_work(struct work_struct *work);
static void nci_rx_work(struct work_struct *work);
static void nci_tx_work(struct work_struct *work);

/* ---- NCI requests ---- */

void nci_req_complete(struct nci_dev *ndev, int result)
{
	if (ndev->req_status == NCI_REQ_PEND) {
		ndev->req_result = result;
		ndev->req_status = NCI_REQ_DONE;
		complete(&ndev->req_completion);
	}
}

static void nci_req_cancel(struct nci_dev *ndev, int err)
{
	if (ndev->req_status == NCI_REQ_PEND) {
		ndev->req_result = err;
		ndev->req_status = NCI_REQ_CANCELED;
		complete(&ndev->req_completion);
	}
}

/* Execute request and wait for completion. */
static int __nci_request(struct nci_dev *ndev,
S
Samuel Ortiz 已提交
69 70
			 void (*req)(struct nci_dev *ndev, unsigned long opt),
			 unsigned long opt, __u32 timeout)
71 72
{
	int rc = 0;
73
	long completion_rc;
74 75 76 77 78

	ndev->req_status = NCI_REQ_PEND;

	init_completion(&ndev->req_completion);
	req(ndev, opt);
S
Samuel Ortiz 已提交
79 80 81
	completion_rc =
		wait_for_completion_interruptible_timeout(&ndev->req_completion,
							  timeout);
82

J
Joe Perches 已提交
83
	pr_debug("wait_for_completion return %ld\n", completion_rc);
84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99

	if (completion_rc > 0) {
		switch (ndev->req_status) {
		case NCI_REQ_DONE:
			rc = nci_to_errno(ndev->req_result);
			break;

		case NCI_REQ_CANCELED:
			rc = -ndev->req_result;
			break;

		default:
			rc = -ETIMEDOUT;
			break;
		}
	} else {
J
Joe Perches 已提交
100 101
		pr_err("wait_for_completion_interruptible_timeout failed %ld\n",
		       completion_rc);
102 103 104 105 106 107 108 109 110 111

		rc = ((completion_rc == 0) ? (-ETIMEDOUT) : (completion_rc));
	}

	ndev->req_status = ndev->req_result = 0;

	return rc;
}

static inline int nci_request(struct nci_dev *ndev,
S
Samuel Ortiz 已提交
112 113 114
			      void (*req)(struct nci_dev *ndev,
					  unsigned long opt),
			      unsigned long opt, __u32 timeout)
115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130
{
	int rc;

	if (!test_bit(NCI_UP, &ndev->flags))
		return -ENETDOWN;

	/* Serialize all requests */
	mutex_lock(&ndev->req_lock);
	rc = __nci_request(ndev, req, opt, timeout);
	mutex_unlock(&ndev->req_lock);

	return rc;
}

static void nci_reset_req(struct nci_dev *ndev, unsigned long opt)
{
131 132 133 134
	struct nci_core_reset_cmd cmd;

	cmd.reset_type = NCI_RESET_TYPE_RESET_CONFIG;
	nci_send_cmd(ndev, NCI_OP_CORE_RESET_CMD, 1, &cmd);
135 136 137 138 139 140 141 142 143
}

static void nci_init_req(struct nci_dev *ndev, unsigned long opt)
{
	nci_send_cmd(ndev, NCI_OP_CORE_INIT_CMD, 0, NULL);
}

static void nci_init_complete_req(struct nci_dev *ndev, unsigned long opt)
{
144 145 146
	struct nci_rf_disc_map_cmd cmd;
	struct disc_map_config *cfg = cmd.mapping_configs;
	__u8 *num = &cmd.num_mapping_configs;
147 148 149
	int i;

	/* set rf mapping configurations */
150
	*num = 0;
151 152 153 154

	/* by default mapping is set to NCI_RF_INTERFACE_FRAME */
	for (i = 0; i < ndev->num_supported_rf_interfaces; i++) {
		if (ndev->supported_rf_interfaces[i] ==
S
Samuel Ortiz 已提交
155
		    NCI_RF_INTERFACE_ISO_DEP) {
156
			cfg[*num].rf_protocol = NCI_RF_PROTOCOL_ISO_DEP;
157 158 159
			cfg[*num].mode = NCI_DISC_MAP_MODE_POLL |
				NCI_DISC_MAP_MODE_LISTEN;
			cfg[*num].rf_interface = NCI_RF_INTERFACE_ISO_DEP;
160
			(*num)++;
161
		} else if (ndev->supported_rf_interfaces[i] ==
S
Samuel Ortiz 已提交
162
			   NCI_RF_INTERFACE_NFC_DEP) {
163
			cfg[*num].rf_protocol = NCI_RF_PROTOCOL_NFC_DEP;
164 165 166
			cfg[*num].mode = NCI_DISC_MAP_MODE_POLL |
				NCI_DISC_MAP_MODE_LISTEN;
			cfg[*num].rf_interface = NCI_RF_INTERFACE_NFC_DEP;
167
			(*num)++;
168 169
		}

170
		if (*num == NCI_MAX_NUM_MAPPING_CONFIGS)
171 172 173 174
			break;
	}

	nci_send_cmd(ndev, NCI_OP_RF_DISCOVER_MAP_CMD,
S
Samuel Ortiz 已提交
175
		     (1 + ((*num) * sizeof(struct disc_map_config))), &cmd);
176 177 178 179 180 181 182 183 184 185
}

static void nci_rf_discover_req(struct nci_dev *ndev, unsigned long opt)
{
	struct nci_rf_disc_cmd cmd;
	__u32 protocols = opt;

	cmd.num_disc_configs = 0;

	if ((cmd.num_disc_configs < NCI_MAX_NUM_RF_CONFIGS) &&
S
Samuel Ortiz 已提交
186 187 188 189
	    (protocols & NFC_PROTO_JEWEL_MASK
	     || protocols & NFC_PROTO_MIFARE_MASK
	     || protocols & NFC_PROTO_ISO14443_MASK
	     || protocols & NFC_PROTO_NFC_DEP_MASK)) {
190
		cmd.disc_configs[cmd.num_disc_configs].rf_tech_and_mode =
S
Samuel Ortiz 已提交
191
			NCI_NFC_A_PASSIVE_POLL_MODE;
192 193 194 195 196
		cmd.disc_configs[cmd.num_disc_configs].frequency = 1;
		cmd.num_disc_configs++;
	}

	if ((cmd.num_disc_configs < NCI_MAX_NUM_RF_CONFIGS) &&
S
Samuel Ortiz 已提交
197
	    (protocols & NFC_PROTO_ISO14443_MASK)) {
198
		cmd.disc_configs[cmd.num_disc_configs].rf_tech_and_mode =
S
Samuel Ortiz 已提交
199
			NCI_NFC_B_PASSIVE_POLL_MODE;
200 201 202 203 204
		cmd.disc_configs[cmd.num_disc_configs].frequency = 1;
		cmd.num_disc_configs++;
	}

	if ((cmd.num_disc_configs < NCI_MAX_NUM_RF_CONFIGS) &&
S
Samuel Ortiz 已提交
205 206
	    (protocols & NFC_PROTO_FELICA_MASK
	     || protocols & NFC_PROTO_NFC_DEP_MASK)) {
207
		cmd.disc_configs[cmd.num_disc_configs].rf_tech_and_mode =
S
Samuel Ortiz 已提交
208
			NCI_NFC_F_PASSIVE_POLL_MODE;
209 210 211 212 213
		cmd.disc_configs[cmd.num_disc_configs].frequency = 1;
		cmd.num_disc_configs++;
	}

	nci_send_cmd(ndev, NCI_OP_RF_DISCOVER_CMD,
S
Samuel Ortiz 已提交
214 215
		     (1 + (cmd.num_disc_configs * sizeof(struct disc_config))),
		     &cmd);
216 217
}

218 219 220 221 222 223 224 225
struct nci_rf_discover_select_param {
	__u8	rf_discovery_id;
	__u8	rf_protocol;
};

static void nci_rf_discover_select_req(struct nci_dev *ndev, unsigned long opt)
{
	struct nci_rf_discover_select_param *param =
S
Samuel Ortiz 已提交
226
		(struct nci_rf_discover_select_param *)opt;
227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246
	struct nci_rf_discover_select_cmd cmd;

	cmd.rf_discovery_id = param->rf_discovery_id;
	cmd.rf_protocol = param->rf_protocol;

	switch (cmd.rf_protocol) {
	case NCI_RF_PROTOCOL_ISO_DEP:
		cmd.rf_interface = NCI_RF_INTERFACE_ISO_DEP;
		break;

	case NCI_RF_PROTOCOL_NFC_DEP:
		cmd.rf_interface = NCI_RF_INTERFACE_NFC_DEP;
		break;

	default:
		cmd.rf_interface = NCI_RF_INTERFACE_FRAME;
		break;
	}

	nci_send_cmd(ndev, NCI_OP_RF_DISCOVER_SELECT_CMD,
S
Samuel Ortiz 已提交
247
		     sizeof(struct nci_rf_discover_select_cmd), &cmd);
248 249
}

250 251 252 253 254 255 256
static void nci_rf_deactivate_req(struct nci_dev *ndev, unsigned long opt)
{
	struct nci_rf_deactivate_cmd cmd;

	cmd.type = NCI_DEACTIVATE_TYPE_IDLE_MODE;

	nci_send_cmd(ndev, NCI_OP_RF_DEACTIVATE_CMD,
S
Samuel Ortiz 已提交
257
		     sizeof(struct nci_rf_deactivate_cmd), &cmd);
258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280
}

static int nci_open_device(struct nci_dev *ndev)
{
	int rc = 0;

	mutex_lock(&ndev->req_lock);

	if (test_bit(NCI_UP, &ndev->flags)) {
		rc = -EALREADY;
		goto done;
	}

	if (ndev->ops->open(ndev)) {
		rc = -EIO;
		goto done;
	}

	atomic_set(&ndev->cmd_cnt, 1);

	set_bit(NCI_INIT, &ndev->flags);

	rc = __nci_request(ndev, nci_reset_req, 0,
S
Samuel Ortiz 已提交
281
			   msecs_to_jiffies(NCI_RESET_TIMEOUT));
282 283 284

	if (!rc) {
		rc = __nci_request(ndev, nci_init_req, 0,
S
Samuel Ortiz 已提交
285
				   msecs_to_jiffies(NCI_INIT_TIMEOUT));
286 287 288 289
	}

	if (!rc) {
		rc = __nci_request(ndev, nci_init_complete_req, 0,
S
Samuel Ortiz 已提交
290
				   msecs_to_jiffies(NCI_INIT_TIMEOUT));
291 292 293 294 295 296
	}

	clear_bit(NCI_INIT, &ndev->flags);

	if (!rc) {
		set_bit(NCI_UP, &ndev->flags);
297
		nci_clear_target_list(ndev);
298
		atomic_set(&ndev->state, NCI_IDLE);
299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320
	} else {
		/* Init failed, cleanup */
		skb_queue_purge(&ndev->cmd_q);
		skb_queue_purge(&ndev->rx_q);
		skb_queue_purge(&ndev->tx_q);

		ndev->ops->close(ndev);
		ndev->flags = 0;
	}

done:
	mutex_unlock(&ndev->req_lock);
	return rc;
}

static int nci_close_device(struct nci_dev *ndev)
{
	nci_req_cancel(ndev, ENODEV);
	mutex_lock(&ndev->req_lock);

	if (!test_and_clear_bit(NCI_UP, &ndev->flags)) {
		del_timer_sync(&ndev->cmd_timer);
I
Ilan Elias 已提交
321
		del_timer_sync(&ndev->data_timer);
322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339
		mutex_unlock(&ndev->req_lock);
		return 0;
	}

	/* Drop RX and TX queues */
	skb_queue_purge(&ndev->rx_q);
	skb_queue_purge(&ndev->tx_q);

	/* Flush RX and TX wq */
	flush_workqueue(ndev->rx_wq);
	flush_workqueue(ndev->tx_wq);

	/* Reset device */
	skb_queue_purge(&ndev->cmd_q);
	atomic_set(&ndev->cmd_cnt, 1);

	set_bit(NCI_INIT, &ndev->flags);
	__nci_request(ndev, nci_reset_req, 0,
S
Samuel Ortiz 已提交
340
		      msecs_to_jiffies(NCI_RESET_TIMEOUT));
341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366
	clear_bit(NCI_INIT, &ndev->flags);

	/* Flush cmd wq */
	flush_workqueue(ndev->cmd_wq);

	/* After this point our queues are empty
	 * and no works are scheduled. */
	ndev->ops->close(ndev);

	/* Clear flags */
	ndev->flags = 0;

	mutex_unlock(&ndev->req_lock);

	return 0;
}

/* NCI command timer function */
static void nci_cmd_timer(unsigned long arg)
{
	struct nci_dev *ndev = (void *) arg;

	atomic_set(&ndev->cmd_cnt, 1);
	queue_work(ndev->cmd_wq, &ndev->cmd_work);
}

I
Ilan Elias 已提交
367 368 369 370 371 372 373 374 375
/* NCI data exchange timer function */
static void nci_data_timer(unsigned long arg)
{
	struct nci_dev *ndev = (void *) arg;

	set_bit(NCI_DATA_EXCHANGE_TO, &ndev->flags);
	queue_work(ndev->rx_wq, &ndev->rx_work);
}

376 377 378 379 380 381 382 383 384 385 386 387 388 389
static int nci_dev_up(struct nfc_dev *nfc_dev)
{
	struct nci_dev *ndev = nfc_get_drvdata(nfc_dev);

	return nci_open_device(ndev);
}

static int nci_dev_down(struct nfc_dev *nfc_dev)
{
	struct nci_dev *ndev = nfc_get_drvdata(nfc_dev);

	return nci_close_device(ndev);
}

390 391
static int nci_start_poll(struct nfc_dev *nfc_dev,
			  __u32 im_protocols, __u32 tm_protocols)
392 393 394 395
{
	struct nci_dev *ndev = nfc_get_drvdata(nfc_dev);
	int rc;

396
	if ((atomic_read(&ndev->state) == NCI_DISCOVERY) ||
S
Samuel Ortiz 已提交
397
	    (atomic_read(&ndev->state) == NCI_W4_ALL_DISCOVERIES)) {
J
Joe Perches 已提交
398
		pr_err("unable to start poll, since poll is already active\n");
399 400 401
		return -EBUSY;
	}

402
	if (ndev->target_active_prot) {
J
Joe Perches 已提交
403
		pr_err("there is an active target\n");
404 405 406
		return -EBUSY;
	}

407
	if ((atomic_read(&ndev->state) == NCI_W4_HOST_SELECT) ||
S
Samuel Ortiz 已提交
408
	    (atomic_read(&ndev->state) == NCI_POLL_ACTIVE)) {
409
		pr_debug("target active or w4 select, implicitly deactivate\n");
410 411

		rc = nci_request(ndev, nci_rf_deactivate_req, 0,
S
Samuel Ortiz 已提交
412
				 msecs_to_jiffies(NCI_RF_DEACTIVATE_TIMEOUT));
413 414 415 416
		if (rc)
			return -EBUSY;
	}

417
	rc = nci_request(ndev, nci_rf_discover_req, im_protocols,
S
Samuel Ortiz 已提交
418
			 msecs_to_jiffies(NCI_RF_DISC_TIMEOUT));
419 420

	if (!rc)
421
		ndev->poll_prots = im_protocols;
422 423 424 425 426 427 428 429

	return rc;
}

static void nci_stop_poll(struct nfc_dev *nfc_dev)
{
	struct nci_dev *ndev = nfc_get_drvdata(nfc_dev);

430
	if ((atomic_read(&ndev->state) != NCI_DISCOVERY) &&
S
Samuel Ortiz 已提交
431
	    (atomic_read(&ndev->state) != NCI_W4_ALL_DISCOVERIES)) {
J
Joe Perches 已提交
432
		pr_err("unable to stop poll, since poll is not active\n");
433 434 435 436
		return;
	}

	nci_request(ndev, nci_rf_deactivate_req, 0,
S
Samuel Ortiz 已提交
437
		    msecs_to_jiffies(NCI_RF_DEACTIVATE_TIMEOUT));
438 439
}

440 441
static int nci_activate_target(struct nfc_dev *nfc_dev,
			       struct nfc_target *target, __u32 protocol)
442 443
{
	struct nci_dev *ndev = nfc_get_drvdata(nfc_dev);
444
	struct nci_rf_discover_select_param param;
445
	struct nfc_target *nci_target = NULL;
446 447
	int i;
	int rc = 0;
448

449
	pr_debug("target_idx %d, protocol 0x%x\n", target->idx, protocol);
450

451
	if ((atomic_read(&ndev->state) != NCI_W4_HOST_SELECT) &&
S
Samuel Ortiz 已提交
452
	    (atomic_read(&ndev->state) != NCI_POLL_ACTIVE)) {
J
Joe Perches 已提交
453
		pr_err("there is no available target to activate\n");
454 455 456 457
		return -EINVAL;
	}

	if (ndev->target_active_prot) {
J
Joe Perches 已提交
458
		pr_err("there is already an active target\n");
459 460 461
		return -EBUSY;
	}

462
	for (i = 0; i < ndev->n_targets; i++) {
463 464
		if (ndev->targets[i].idx == target->idx) {
			nci_target = &ndev->targets[i];
465 466 467 468
			break;
		}
	}

469
	if (!nci_target) {
470 471 472 473
		pr_err("unable to find the selected target\n");
		return -EINVAL;
	}

474
	if (!(nci_target->supported_protocols & (1 << protocol))) {
J
Joe Perches 已提交
475 476
		pr_err("target does not support the requested protocol 0x%x\n",
		       protocol);
477 478 479
		return -EINVAL;
	}

480
	if (atomic_read(&ndev->state) == NCI_W4_HOST_SELECT) {
481
		param.rf_discovery_id = nci_target->logical_idx;
482 483 484 485 486 487 488 489 490 491 492 493 494

		if (protocol == NFC_PROTO_JEWEL)
			param.rf_protocol = NCI_RF_PROTOCOL_T1T;
		else if (protocol == NFC_PROTO_MIFARE)
			param.rf_protocol = NCI_RF_PROTOCOL_T2T;
		else if (protocol == NFC_PROTO_FELICA)
			param.rf_protocol = NCI_RF_PROTOCOL_T3T;
		else if (protocol == NFC_PROTO_ISO14443)
			param.rf_protocol = NCI_RF_PROTOCOL_ISO_DEP;
		else
			param.rf_protocol = NCI_RF_PROTOCOL_NFC_DEP;

		rc = nci_request(ndev, nci_rf_discover_select_req,
S
Samuel Ortiz 已提交
495 496
				 (unsigned long)&param,
				 msecs_to_jiffies(NCI_RF_DISC_SELECT_TIMEOUT));
497
	}
498

499 500 501 502
	if (!rc)
		ndev->target_active_prot = protocol;

	return rc;
503 504
}

505 506
static void nci_deactivate_target(struct nfc_dev *nfc_dev,
				  struct nfc_target *target)
507 508 509
{
	struct nci_dev *ndev = nfc_get_drvdata(nfc_dev);

510
	pr_debug("target_idx %d\n", target->idx);
511 512

	if (!ndev->target_active_prot) {
J
Joe Perches 已提交
513
		pr_err("unable to deactivate target, no active target\n");
514 515 516 517 518
		return;
	}

	ndev->target_active_prot = 0;

519
	if (atomic_read(&ndev->state) == NCI_POLL_ACTIVE) {
520
		nci_request(ndev, nci_rf_deactivate_req, 0,
S
Samuel Ortiz 已提交
521
			    msecs_to_jiffies(NCI_RF_DEACTIVATE_TIMEOUT));
522 523 524
	}
}

525
static int nci_data_exchange(struct nfc_dev *nfc_dev, struct nfc_target *target,
S
Samuel Ortiz 已提交
526 527
			     struct sk_buff *skb,
			     data_exchange_cb_t cb, void *cb_context)
528 529
{
	struct nci_dev *ndev = nfc_get_drvdata(nfc_dev);
530
	int rc;
531

532
	pr_debug("target_idx %d, len %d\n", target->idx, skb->len);
533 534

	if (!ndev->target_active_prot) {
J
Joe Perches 已提交
535
		pr_err("unable to exchange data, no active target\n");
536 537 538
		return -EINVAL;
	}

539 540 541
	if (test_and_set_bit(NCI_DATA_EXCHANGE, &ndev->flags))
		return -EBUSY;

542 543 544 545
	/* store cb and context to be used on receiving data */
	ndev->data_exchange_cb = cb;
	ndev->data_exchange_cb_context = cb_context;

546
	rc = nci_send_data(ndev, NCI_STATIC_RF_CONN_ID, skb);
547 548 549 550
	if (rc)
		clear_bit(NCI_DATA_EXCHANGE, &ndev->flags);

	return rc;
551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571
}

static struct nfc_ops nci_nfc_ops = {
	.dev_up = nci_dev_up,
	.dev_down = nci_dev_down,
	.start_poll = nci_start_poll,
	.stop_poll = nci_stop_poll,
	.activate_target = nci_activate_target,
	.deactivate_target = nci_deactivate_target,
	.data_exchange = nci_data_exchange,
};

/* ---- Interface to NCI drivers ---- */

/**
 * nci_allocate_device - allocate a new nci device
 *
 * @ops: device operations
 * @supported_protocols: NFC protocols supported by the device
 */
struct nci_dev *nci_allocate_device(struct nci_ops *ops,
S
Samuel Ortiz 已提交
572 573
				    __u32 supported_protocols,
				    int tx_headroom, int tx_tailroom)
574
{
D
Dan Carpenter 已提交
575
	struct nci_dev *ndev;
576

577
	pr_debug("supported_protocols 0x%x\n", supported_protocols);
578 579

	if (!ops->open || !ops->close || !ops->send)
D
Dan Carpenter 已提交
580
		return NULL;
581 582

	if (!supported_protocols)
D
Dan Carpenter 已提交
583
		return NULL;
584 585 586

	ndev = kzalloc(sizeof(struct nci_dev), GFP_KERNEL);
	if (!ndev)
D
Dan Carpenter 已提交
587
		return NULL;
588 589 590 591 592 593

	ndev->ops = ops;
	ndev->tx_headroom = tx_headroom;
	ndev->tx_tailroom = tx_tailroom;

	ndev->nfc_dev = nfc_allocate_device(&nci_nfc_ops,
S
Samuel Ortiz 已提交
594 595 596
					    supported_protocols,
					    tx_headroom + NCI_DATA_HDR_SIZE,
					    tx_tailroom);
597 598 599 600 601
	if (!ndev->nfc_dev)
		goto free_exit;

	nfc_set_drvdata(ndev->nfc_dev, ndev);

D
Dan Carpenter 已提交
602
	return ndev;
603 604 605

free_exit:
	kfree(ndev);
D
Dan Carpenter 已提交
606
	return NULL;
607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667
}
EXPORT_SYMBOL(nci_allocate_device);

/**
 * nci_free_device - deallocate nci device
 *
 * @ndev: The nci device to deallocate
 */
void nci_free_device(struct nci_dev *ndev)
{
	nfc_free_device(ndev->nfc_dev);
	kfree(ndev);
}
EXPORT_SYMBOL(nci_free_device);

/**
 * nci_register_device - register a nci device in the nfc subsystem
 *
 * @dev: The nci device to register
 */
int nci_register_device(struct nci_dev *ndev)
{
	int rc;
	struct device *dev = &ndev->nfc_dev->dev;
	char name[32];

	rc = nfc_register_device(ndev->nfc_dev);
	if (rc)
		goto exit;

	ndev->flags = 0;

	INIT_WORK(&ndev->cmd_work, nci_cmd_work);
	snprintf(name, sizeof(name), "%s_nci_cmd_wq", dev_name(dev));
	ndev->cmd_wq = create_singlethread_workqueue(name);
	if (!ndev->cmd_wq) {
		rc = -ENOMEM;
		goto unreg_exit;
	}

	INIT_WORK(&ndev->rx_work, nci_rx_work);
	snprintf(name, sizeof(name), "%s_nci_rx_wq", dev_name(dev));
	ndev->rx_wq = create_singlethread_workqueue(name);
	if (!ndev->rx_wq) {
		rc = -ENOMEM;
		goto destroy_cmd_wq_exit;
	}

	INIT_WORK(&ndev->tx_work, nci_tx_work);
	snprintf(name, sizeof(name), "%s_nci_tx_wq", dev_name(dev));
	ndev->tx_wq = create_singlethread_workqueue(name);
	if (!ndev->tx_wq) {
		rc = -ENOMEM;
		goto destroy_rx_wq_exit;
	}

	skb_queue_head_init(&ndev->cmd_q);
	skb_queue_head_init(&ndev->rx_q);
	skb_queue_head_init(&ndev->tx_q);

	setup_timer(&ndev->cmd_timer, nci_cmd_timer,
S
Samuel Ortiz 已提交
668
		    (unsigned long) ndev);
I
Ilan Elias 已提交
669
	setup_timer(&ndev->data_timer, nci_data_timer,
S
Samuel Ortiz 已提交
670
		    (unsigned long) ndev);
671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715

	mutex_init(&ndev->req_lock);

	goto exit;

destroy_rx_wq_exit:
	destroy_workqueue(ndev->rx_wq);

destroy_cmd_wq_exit:
	destroy_workqueue(ndev->cmd_wq);

unreg_exit:
	nfc_unregister_device(ndev->nfc_dev);

exit:
	return rc;
}
EXPORT_SYMBOL(nci_register_device);

/**
 * nci_unregister_device - unregister a nci device in the nfc subsystem
 *
 * @dev: The nci device to unregister
 */
void nci_unregister_device(struct nci_dev *ndev)
{
	nci_close_device(ndev);

	destroy_workqueue(ndev->cmd_wq);
	destroy_workqueue(ndev->rx_wq);
	destroy_workqueue(ndev->tx_wq);

	nfc_unregister_device(ndev->nfc_dev);
}
EXPORT_SYMBOL(nci_unregister_device);

/**
 * nci_recv_frame - receive frame from NCI drivers
 *
 * @skb: The sk_buff to receive
 */
int nci_recv_frame(struct sk_buff *skb)
{
	struct nci_dev *ndev = (struct nci_dev *) skb->dev;

716
	pr_debug("len %d\n", skb->len);
717 718

	if (!ndev || (!test_bit(NCI_UP, &ndev->flags)
S
Samuel Ortiz 已提交
719
		      && !test_bit(NCI_INIT, &ndev->flags))) {
720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735
		kfree_skb(skb);
		return -ENXIO;
	}

	/* Queue frame for rx worker thread */
	skb_queue_tail(&ndev->rx_q, skb);
	queue_work(ndev->rx_wq, &ndev->rx_work);

	return 0;
}
EXPORT_SYMBOL(nci_recv_frame);

static int nci_send_frame(struct sk_buff *skb)
{
	struct nci_dev *ndev = (struct nci_dev *) skb->dev;

736
	pr_debug("len %d\n", skb->len);
737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754

	if (!ndev) {
		kfree_skb(skb);
		return -ENODEV;
	}

	/* Get rid of skb owner, prior to sending to the driver. */
	skb_orphan(skb);

	return ndev->ops->send(skb);
}

/* Send NCI command */
int nci_send_cmd(struct nci_dev *ndev, __u16 opcode, __u8 plen, void *payload)
{
	struct nci_ctrl_hdr *hdr;
	struct sk_buff *skb;

755
	pr_debug("opcode 0x%x, plen %d\n", opcode, plen);
756 757 758

	skb = nci_skb_alloc(ndev, (NCI_CTRL_HDR_SIZE + plen), GFP_KERNEL);
	if (!skb) {
J
Joe Perches 已提交
759
		pr_err("no memory for command\n");
760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788
		return -ENOMEM;
	}

	hdr = (struct nci_ctrl_hdr *) skb_put(skb, NCI_CTRL_HDR_SIZE);
	hdr->gid = nci_opcode_gid(opcode);
	hdr->oid = nci_opcode_oid(opcode);
	hdr->plen = plen;

	nci_mt_set((__u8 *)hdr, NCI_MT_CMD_PKT);
	nci_pbf_set((__u8 *)hdr, NCI_PBF_LAST);

	if (plen)
		memcpy(skb_put(skb, plen), payload, plen);

	skb->dev = (void *) ndev;

	skb_queue_tail(&ndev->cmd_q, skb);
	queue_work(ndev->cmd_wq, &ndev->cmd_work);

	return 0;
}

/* ---- NCI TX Data worker thread ---- */

static void nci_tx_work(struct work_struct *work)
{
	struct nci_dev *ndev = container_of(work, struct nci_dev, tx_work);
	struct sk_buff *skb;

789
	pr_debug("credits_cnt %d\n", atomic_read(&ndev->credits_cnt));
790 791 792 793 794 795 796

	/* Send queued tx data */
	while (atomic_read(&ndev->credits_cnt)) {
		skb = skb_dequeue(&ndev->tx_q);
		if (!skb)
			return;

797 798
		/* Check if data flow control is used */
		if (atomic_read(&ndev->credits_cnt) !=
S
Samuel Ortiz 已提交
799
		    NCI_DATA_FLOW_CONTROL_NOT_USED)
800
			atomic_dec(&ndev->credits_cnt);
801

J
Joe Perches 已提交
802 803 804 805
		pr_debug("NCI TX: MT=data, PBF=%d, conn_id=%d, plen=%d\n",
			 nci_pbf(skb->data),
			 nci_conn_id(skb->data),
			 nci_plen(skb->data));
806 807

		nci_send_frame(skb);
I
Ilan Elias 已提交
808 809

		mod_timer(&ndev->data_timer,
S
Samuel Ortiz 已提交
810
			  jiffies + msecs_to_jiffies(NCI_DATA_TIMEOUT));
811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836
	}
}

/* ----- NCI RX worker thread (data & control) ----- */

static void nci_rx_work(struct work_struct *work)
{
	struct nci_dev *ndev = container_of(work, struct nci_dev, rx_work);
	struct sk_buff *skb;

	while ((skb = skb_dequeue(&ndev->rx_q))) {
		/* Process frame */
		switch (nci_mt(skb->data)) {
		case NCI_MT_RSP_PKT:
			nci_rsp_packet(ndev, skb);
			break;

		case NCI_MT_NTF_PKT:
			nci_ntf_packet(ndev, skb);
			break;

		case NCI_MT_DATA_PKT:
			nci_rx_data_packet(ndev, skb);
			break;

		default:
J
Joe Perches 已提交
837
			pr_err("unknown MT 0x%x\n", nci_mt(skb->data));
838 839 840 841
			kfree_skb(skb);
			break;
		}
	}
I
Ilan Elias 已提交
842 843 844 845 846 847 848 849 850

	/* check if a data exchange timout has occurred */
	if (test_bit(NCI_DATA_EXCHANGE_TO, &ndev->flags)) {
		/* complete the data exchange transaction, if exists */
		if (test_bit(NCI_DATA_EXCHANGE, &ndev->flags))
			nci_data_exchange_complete(ndev, NULL, -ETIMEDOUT);

		clear_bit(NCI_DATA_EXCHANGE_TO, &ndev->flags);
	}
851 852 853 854 855 856 857 858 859
}

/* ----- NCI TX CMD worker thread ----- */

static void nci_cmd_work(struct work_struct *work)
{
	struct nci_dev *ndev = container_of(work, struct nci_dev, cmd_work);
	struct sk_buff *skb;

860
	pr_debug("cmd_cnt %d\n", atomic_read(&ndev->cmd_cnt));
861 862 863 864 865 866 867 868 869

	/* Send queued command */
	if (atomic_read(&ndev->cmd_cnt)) {
		skb = skb_dequeue(&ndev->cmd_q);
		if (!skb)
			return;

		atomic_dec(&ndev->cmd_cnt);

J
Joe Perches 已提交
870 871 872 873 874
		pr_debug("NCI TX: MT=cmd, PBF=%d, GID=0x%x, OID=0x%x, plen=%d\n",
			 nci_pbf(skb->data),
			 nci_opcode_gid(nci_opcode(skb->data)),
			 nci_opcode_oid(nci_opcode(skb->data)),
			 nci_plen(skb->data));
875 876 877 878

		nci_send_frame(skb);

		mod_timer(&ndev->cmd_timer,
S
Samuel Ortiz 已提交
879
			  jiffies + msecs_to_jiffies(NCI_CMD_TIMEOUT));
880 881
	}
}