core.c 36.3 KB
Newer Older
1
// SPDX-License-Identifier: GPL-2.0-only
2 3 4 5 6
/*
 *  The NFC Controller Interface is the communication protocol between an
 *  NFC Controller (NFCC) and a Device Host (DH).
 *
 *  Copyright (C) 2011 Texas Instruments, Inc.
7
 *  Copyright (C) 2014 Marvell International Ltd.
8 9 10 11 12 13 14 15
 *
 *  Written by Ilan Elias <ilane@ti.com>
 *
 *  Acknowledgements:
 *  This file is based on hci_core.c, which was written
 *  by Maxim Krasnyansky.
 */

16
#define pr_fmt(fmt) KBUILD_MODNAME ": %s: " fmt, __func__
Joe Perches's avatar
Joe Perches committed
17

18
#include <linux/module.h>
19
#include <linux/kernel.h>
20 21 22
#include <linux/types.h>
#include <linux/workqueue.h>
#include <linux/completion.h>
23
#include <linux/export.h>
24 25 26 27 28 29 30 31 32
#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>

33 34 35 36 37
struct core_conn_create_data {
	int length;
	struct nci_core_conn_create_cmd *cmd;
};

38 39 40 41
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);

42 43 44 45 46 47 48 49 50 51 52 53 54
struct nci_conn_info *nci_get_conn_info_by_conn_id(struct nci_dev *ndev,
						   int conn_id)
{
	struct nci_conn_info *conn_info;

	list_for_each_entry(conn_info, &ndev->conn_info_list, list) {
		if (conn_info->conn_id == conn_id)
			return conn_info;
	}

	return NULL;
}

55 56
int nci_get_conn_info_by_dest_type_params(struct nci_dev *ndev, u8 dest_type,
					  struct dest_spec_params *params)
57 58 59 60
{
	struct nci_conn_info *conn_info;

	list_for_each_entry(conn_info, &ndev->conn_info_list, list) {
61 62 63
		if (conn_info->dest_type == dest_type) {
			if (!params)
				return conn_info->conn_id;
64 65 66 67

			if (params->id == conn_info->dest_params->id &&
			    params->protocol == conn_info->dest_params->protocol)
				return conn_info->conn_id;
68
		}
69 70 71 72
	}

	return -EINVAL;
}
73
EXPORT_SYMBOL(nci_get_conn_info_by_dest_type_params);
74

75 76 77 78 79 80 81 82 83 84
/* ---- 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);
	}
}
85
EXPORT_SYMBOL(nci_req_complete);
86 87 88 89 90 91 92 93 94 95 96 97

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,
Samuel Ortiz's avatar
Samuel Ortiz committed
98 99
			 void (*req)(struct nci_dev *ndev, unsigned long opt),
			 unsigned long opt, __u32 timeout)
100 101
{
	int rc = 0;
102
	long completion_rc;
103 104 105

	ndev->req_status = NCI_REQ_PEND;

106
	reinit_completion(&ndev->req_completion);
107
	req(ndev, opt);
Samuel Ortiz's avatar
Samuel Ortiz committed
108 109 110
	completion_rc =
		wait_for_completion_interruptible_timeout(&ndev->req_completion,
							  timeout);
111

Joe Perches's avatar
Joe Perches committed
112
	pr_debug("wait_for_completion return %ld\n", completion_rc);
113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128

	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 {
Joe Perches's avatar
Joe Perches committed
129 130
		pr_err("wait_for_completion_interruptible_timeout failed %ld\n",
		       completion_rc);
131 132 133 134 135 136 137 138 139

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

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

	return rc;
}

140 141 142 143
inline int nci_request(struct nci_dev *ndev,
		       void (*req)(struct nci_dev *ndev,
				   unsigned long opt),
		       unsigned long opt, __u32 timeout)
144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159
{
	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)
{
160 161 162 163
	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);
164 165 166 167 168 169 170 171 172
}

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)
{
173 174 175
	struct nci_rf_disc_map_cmd cmd;
	struct disc_map_config *cfg = cmd.mapping_configs;
	__u8 *num = &cmd.num_mapping_configs;
176 177 178
	int i;

	/* set rf mapping configurations */
179
	*num = 0;
180 181 182 183

	/* 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] ==
Samuel Ortiz's avatar
Samuel Ortiz committed
184
		    NCI_RF_INTERFACE_ISO_DEP) {
185
			cfg[*num].rf_protocol = NCI_RF_PROTOCOL_ISO_DEP;
186 187 188
			cfg[*num].mode = NCI_DISC_MAP_MODE_POLL |
				NCI_DISC_MAP_MODE_LISTEN;
			cfg[*num].rf_interface = NCI_RF_INTERFACE_ISO_DEP;
189
			(*num)++;
190
		} else if (ndev->supported_rf_interfaces[i] ==
Samuel Ortiz's avatar
Samuel Ortiz committed
191
			   NCI_RF_INTERFACE_NFC_DEP) {
192
			cfg[*num].rf_protocol = NCI_RF_PROTOCOL_NFC_DEP;
193 194 195
			cfg[*num].mode = NCI_DISC_MAP_MODE_POLL |
				NCI_DISC_MAP_MODE_LISTEN;
			cfg[*num].rf_interface = NCI_RF_INTERFACE_NFC_DEP;
196
			(*num)++;
197 198
		}

199
		if (*num == NCI_MAX_NUM_MAPPING_CONFIGS)
200 201 202 203
			break;
	}

	nci_send_cmd(ndev, NCI_OP_RF_DISCOVER_MAP_CMD,
Samuel Ortiz's avatar
Samuel Ortiz committed
204
		     (1 + ((*num) * sizeof(struct disc_map_config))), &cmd);
205 206
}

207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227
struct nci_set_config_param {
	__u8	id;
	size_t	len;
	__u8	*val;
};

static void nci_set_config_req(struct nci_dev *ndev, unsigned long opt)
{
	struct nci_set_config_param *param = (struct nci_set_config_param *)opt;
	struct nci_core_set_config_cmd cmd;

	BUG_ON(param->len > NCI_MAX_PARAM_LEN);

	cmd.num_params = 1;
	cmd.param.id = param->id;
	cmd.param.len = param->len;
	memcpy(cmd.param.val, param->val, param->len);

	nci_send_cmd(ndev, NCI_OP_CORE_SET_CONFIG_CMD, (3 + param->len), &cmd);
}

228 229 230 231 232
struct nci_rf_discover_param {
	__u32	im_protocols;
	__u32	tm_protocols;
};

233 234
static void nci_rf_discover_req(struct nci_dev *ndev, unsigned long opt)
{
235 236
	struct nci_rf_discover_param *param =
		(struct nci_rf_discover_param *)opt;
237 238 239 240 241
	struct nci_rf_disc_cmd cmd;

	cmd.num_disc_configs = 0;

	if ((cmd.num_disc_configs < NCI_MAX_NUM_RF_CONFIGS) &&
242 243 244 245
	    (param->im_protocols & NFC_PROTO_JEWEL_MASK ||
	     param->im_protocols & NFC_PROTO_MIFARE_MASK ||
	     param->im_protocols & NFC_PROTO_ISO14443_MASK ||
	     param->im_protocols & NFC_PROTO_NFC_DEP_MASK)) {
246
		cmd.disc_configs[cmd.num_disc_configs].rf_tech_and_mode =
Samuel Ortiz's avatar
Samuel Ortiz committed
247
			NCI_NFC_A_PASSIVE_POLL_MODE;
248 249 250 251 252
		cmd.disc_configs[cmd.num_disc_configs].frequency = 1;
		cmd.num_disc_configs++;
	}

	if ((cmd.num_disc_configs < NCI_MAX_NUM_RF_CONFIGS) &&
253
	    (param->im_protocols & NFC_PROTO_ISO14443_B_MASK)) {
254
		cmd.disc_configs[cmd.num_disc_configs].rf_tech_and_mode =
Samuel Ortiz's avatar
Samuel Ortiz committed
255
			NCI_NFC_B_PASSIVE_POLL_MODE;
256 257 258 259 260
		cmd.disc_configs[cmd.num_disc_configs].frequency = 1;
		cmd.num_disc_configs++;
	}

	if ((cmd.num_disc_configs < NCI_MAX_NUM_RF_CONFIGS) &&
261 262
	    (param->im_protocols & NFC_PROTO_FELICA_MASK ||
	     param->im_protocols & NFC_PROTO_NFC_DEP_MASK)) {
263
		cmd.disc_configs[cmd.num_disc_configs].rf_tech_and_mode =
Samuel Ortiz's avatar
Samuel Ortiz committed
264
			NCI_NFC_F_PASSIVE_POLL_MODE;
265 266 267 268
		cmd.disc_configs[cmd.num_disc_configs].frequency = 1;
		cmd.num_disc_configs++;
	}

269
	if ((cmd.num_disc_configs < NCI_MAX_NUM_RF_CONFIGS) &&
270
	    (param->im_protocols & NFC_PROTO_ISO15693_MASK)) {
271 272 273 274 275 276
		cmd.disc_configs[cmd.num_disc_configs].rf_tech_and_mode =
			NCI_NFC_V_PASSIVE_POLL_MODE;
		cmd.disc_configs[cmd.num_disc_configs].frequency = 1;
		cmd.num_disc_configs++;
	}

277 278 279 280 281 282 283 284 285 286 287 288
	if ((cmd.num_disc_configs < NCI_MAX_NUM_RF_CONFIGS - 1) &&
	    (param->tm_protocols & NFC_PROTO_NFC_DEP_MASK)) {
		cmd.disc_configs[cmd.num_disc_configs].rf_tech_and_mode =
			NCI_NFC_A_PASSIVE_LISTEN_MODE;
		cmd.disc_configs[cmd.num_disc_configs].frequency = 1;
		cmd.num_disc_configs++;
		cmd.disc_configs[cmd.num_disc_configs].rf_tech_and_mode =
			NCI_NFC_F_PASSIVE_LISTEN_MODE;
		cmd.disc_configs[cmd.num_disc_configs].frequency = 1;
		cmd.num_disc_configs++;
	}

289
	nci_send_cmd(ndev, NCI_OP_RF_DISCOVER_CMD,
Samuel Ortiz's avatar
Samuel Ortiz committed
290 291
		     (1 + (cmd.num_disc_configs * sizeof(struct disc_config))),
		     &cmd);
292 293
}

294 295 296 297 298 299 300 301
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 =
Samuel Ortiz's avatar
Samuel Ortiz committed
302
		(struct nci_rf_discover_select_param *)opt;
303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322
	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,
Samuel Ortiz's avatar
Samuel Ortiz committed
323
		     sizeof(struct nci_rf_discover_select_cmd), &cmd);
324 325
}

326 327 328 329
static void nci_rf_deactivate_req(struct nci_dev *ndev, unsigned long opt)
{
	struct nci_rf_deactivate_cmd cmd;

330
	cmd.type = opt;
331 332

	nci_send_cmd(ndev, NCI_OP_RF_DEACTIVATE_CMD,
Samuel Ortiz's avatar
Samuel Ortiz committed
333
		     sizeof(struct nci_rf_deactivate_cmd), &cmd);
334 335
}

336
struct nci_cmd_param {
337 338 339 340 341
	__u16 opcode;
	size_t len;
	__u8 *payload;
};

342
static void nci_generic_req(struct nci_dev *ndev, unsigned long opt)
343
{
344 345
	struct nci_cmd_param *param =
		(struct nci_cmd_param *)opt;
346 347 348 349 350 351

	nci_send_cmd(ndev, param->opcode, param->len, param->payload);
}

int nci_prop_cmd(struct nci_dev *ndev, __u8 oid, size_t len, __u8 *payload)
{
352
	struct nci_cmd_param param;
353 354 355 356 357

	param.opcode = nci_opcode_pack(NCI_GID_PROPRIETARY, oid);
	param.len = len;
	param.payload = payload;

358
	return __nci_request(ndev, nci_generic_req, (unsigned long)&param,
359 360 361 362
			     msecs_to_jiffies(NCI_CMD_TIMEOUT));
}
EXPORT_SYMBOL(nci_prop_cmd);

363 364 365 366 367 368 369 370 371 372 373 374 375
int nci_core_cmd(struct nci_dev *ndev, __u16 opcode, size_t len, __u8 *payload)
{
	struct nci_cmd_param param;

	param.opcode = opcode;
	param.len = len;
	param.payload = payload;

	return __nci_request(ndev, nci_generic_req, (unsigned long)&param,
			     msecs_to_jiffies(NCI_CMD_TIMEOUT));
}
EXPORT_SYMBOL(nci_core_cmd);

376 377 378 379 380 381 382 383 384 385 386 387 388 389
int nci_core_reset(struct nci_dev *ndev)
{
	return __nci_request(ndev, nci_reset_req, 0,
			     msecs_to_jiffies(NCI_RESET_TIMEOUT));
}
EXPORT_SYMBOL(nci_core_reset);

int nci_core_init(struct nci_dev *ndev)
{
	return __nci_request(ndev, nci_init_req, 0,
			     msecs_to_jiffies(NCI_INIT_TIMEOUT));
}
EXPORT_SYMBOL(nci_core_init);

390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451
struct nci_loopback_data {
	u8 conn_id;
	struct sk_buff *data;
};

static void nci_send_data_req(struct nci_dev *ndev, unsigned long opt)
{
	struct nci_loopback_data *data = (struct nci_loopback_data *)opt;

	nci_send_data(ndev, data->conn_id, data->data);
}

static void nci_nfcc_loopback_cb(void *context, struct sk_buff *skb, int err)
{
	struct nci_dev *ndev = (struct nci_dev *)context;
	struct nci_conn_info    *conn_info;

	conn_info = nci_get_conn_info_by_conn_id(ndev, ndev->cur_conn_id);
	if (!conn_info) {
		nci_req_complete(ndev, NCI_STATUS_REJECTED);
		return;
	}

	conn_info->rx_skb = skb;

	nci_req_complete(ndev, NCI_STATUS_OK);
}

int nci_nfcc_loopback(struct nci_dev *ndev, void *data, size_t data_len,
		      struct sk_buff **resp)
{
	int r;
	struct nci_loopback_data loopback_data;
	struct nci_conn_info *conn_info;
	struct sk_buff *skb;
	int conn_id = nci_get_conn_info_by_dest_type_params(ndev,
					NCI_DESTINATION_NFCC_LOOPBACK, NULL);

	if (conn_id < 0) {
		r = nci_core_conn_create(ndev, NCI_DESTINATION_NFCC_LOOPBACK,
					 0, 0, NULL);
		if (r != NCI_STATUS_OK)
			return r;

		conn_id = nci_get_conn_info_by_dest_type_params(ndev,
					NCI_DESTINATION_NFCC_LOOPBACK,
					NULL);
	}

	conn_info = nci_get_conn_info_by_conn_id(ndev, conn_id);
	if (!conn_info)
		return -EPROTO;

	/* store cb and context to be used on receiving data */
	conn_info->data_exchange_cb = nci_nfcc_loopback_cb;
	conn_info->data_exchange_cb_context = ndev;

	skb = nci_skb_alloc(ndev, NCI_DATA_HDR_SIZE + data_len, GFP_KERNEL);
	if (!skb)
		return -ENOMEM;

	skb_reserve(skb, NCI_DATA_HDR_SIZE);
452
	skb_put_data(skb, data, data_len);
453 454 455 456 457 458 459 460 461 462 463 464 465 466

	loopback_data.conn_id = conn_id;
	loopback_data.data = skb;

	ndev->cur_conn_id = conn_id;
	r = nci_request(ndev, nci_send_data_req, (unsigned long)&loopback_data,
			msecs_to_jiffies(NCI_DATA_TIMEOUT));
	if (r == NCI_STATUS_OK && resp)
		*resp = conn_info->rx_skb;

	return r;
}
EXPORT_SYMBOL(nci_nfcc_loopback);

467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486
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);

487 488 489 490 491 492 493
	if (ndev->ops->init)
		rc = ndev->ops->init(ndev);

	if (!rc) {
		rc = __nci_request(ndev, nci_reset_req, 0,
				   msecs_to_jiffies(NCI_RESET_TIMEOUT));
	}
494

495 496 497
	if (!rc && ndev->ops->setup) {
		rc = ndev->ops->setup(ndev);
	}
Amitkumar Karwar's avatar
Amitkumar Karwar committed
498

499 500
	if (!rc) {
		rc = __nci_request(ndev, nci_init_req, 0,
Samuel Ortiz's avatar
Samuel Ortiz committed
501
				   msecs_to_jiffies(NCI_INIT_TIMEOUT));
502 503
	}

504
	if (!rc && ndev->ops->post_setup)
505 506
		rc = ndev->ops->post_setup(ndev);

507 508
	if (!rc) {
		rc = __nci_request(ndev, nci_init_complete_req, 0,
Samuel Ortiz's avatar
Samuel Ortiz committed
509
				   msecs_to_jiffies(NCI_INIT_TIMEOUT));
510 511 512 513 514 515
	}

	clear_bit(NCI_INIT, &ndev->flags);

	if (!rc) {
		set_bit(NCI_UP, &ndev->flags);
516
		nci_clear_target_list(ndev);
517
		atomic_set(&ndev->state, NCI_IDLE);
518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539
	} 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);
Ilan Elias's avatar
Ilan Elias committed
540
		del_timer_sync(&ndev->data_timer);
541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558
		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,
Samuel Ortiz's avatar
Samuel Ortiz committed
559
		      msecs_to_jiffies(NCI_RESET_TIMEOUT));
560 561 562 563 564 565

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

566 567
	clear_bit(NCI_INIT, &ndev->flags);

568 569
	del_timer_sync(&ndev->cmd_timer);

570 571 572 573 574 575 576 577 578 579 580 581
	/* Flush cmd wq */
	flush_workqueue(ndev->cmd_wq);

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

	mutex_unlock(&ndev->req_lock);

	return 0;
}

/* NCI command timer function */
582
static void nci_cmd_timer(struct timer_list *t)
583
{
584
	struct nci_dev *ndev = from_timer(ndev, t, cmd_timer);
585 586 587 588 589

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

Ilan Elias's avatar
Ilan Elias committed
590
/* NCI data exchange timer function */
591
static void nci_data_timer(struct timer_list *t)
Ilan Elias's avatar
Ilan Elias committed
592
{
593
	struct nci_dev *ndev = from_timer(ndev, t, data_timer);
Ilan Elias's avatar
Ilan Elias committed
594 595 596 597 598

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

599 600 601 602 603 604 605 606 607 608 609 610 611 612
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);
}

613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628
int nci_set_config(struct nci_dev *ndev, __u8 id, size_t len, __u8 *val)
{
	struct nci_set_config_param param;

	if (!val || !len)
		return 0;

	param.id = id;
	param.len = len;
	param.val = val;

	return __nci_request(ndev, nci_set_config_req, (unsigned long)&param,
			     msecs_to_jiffies(NCI_SET_CONFIG_TIMEOUT));
}
EXPORT_SYMBOL(nci_set_config);

629 630 631 632 633 634 635 636 637 638 639 640
static void nci_nfcee_discover_req(struct nci_dev *ndev, unsigned long opt)
{
	struct nci_nfcee_discover_cmd cmd;
	__u8 action = opt;

	cmd.discovery_action = action;

	nci_send_cmd(ndev, NCI_OP_NFCEE_DISCOVER_CMD, 1, &cmd);
}

int nci_nfcee_discover(struct nci_dev *ndev, u8 action)
{
641
	return __nci_request(ndev, nci_nfcee_discover_req, action,
642 643 644 645
				msecs_to_jiffies(NCI_CMD_TIMEOUT));
}
EXPORT_SYMBOL(nci_nfcee_discover);

646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661
static void nci_nfcee_mode_set_req(struct nci_dev *ndev, unsigned long opt)
{
	struct nci_nfcee_mode_set_cmd *cmd =
					(struct nci_nfcee_mode_set_cmd *)opt;

	nci_send_cmd(ndev, NCI_OP_NFCEE_MODE_SET_CMD,
		     sizeof(struct nci_nfcee_mode_set_cmd), cmd);
}

int nci_nfcee_mode_set(struct nci_dev *ndev, u8 nfcee_id, u8 nfcee_mode)
{
	struct nci_nfcee_mode_set_cmd cmd;

	cmd.nfcee_id = nfcee_id;
	cmd.nfcee_mode = nfcee_mode;

662 663 664
	return __nci_request(ndev, nci_nfcee_mode_set_req,
			     (unsigned long)&cmd,
			     msecs_to_jiffies(NCI_CMD_TIMEOUT));
665 666 667
}
EXPORT_SYMBOL(nci_nfcee_mode_set);

668 669
static void nci_core_conn_create_req(struct nci_dev *ndev, unsigned long opt)
{
670 671 672 673
	struct core_conn_create_data *data =
					(struct core_conn_create_data *)opt;

	nci_send_cmd(ndev, NCI_OP_CORE_CONN_CREATE_CMD, data->length, data->cmd);
674 675
}

676 677 678
int nci_core_conn_create(struct nci_dev *ndev, u8 destination_type,
			 u8 number_destination_params,
			 size_t params_len,
679 680
			 struct core_conn_create_dest_spec_params *params)
{
681 682 683 684 685 686 687 688 689 690 691 692 693
	int r;
	struct nci_core_conn_create_cmd *cmd;
	struct core_conn_create_data data;

	data.length = params_len + sizeof(struct nci_core_conn_create_cmd);
	cmd = kzalloc(data.length, GFP_KERNEL);
	if (!cmd)
		return -ENOMEM;

	cmd->destination_type = destination_type;
	cmd->number_destination_params = number_destination_params;

	data.cmd = cmd;
694

695 696 697
	if (params) {
		memcpy(cmd->params, params, params_len);
		if (params->length > 0)
698 699 700
			memcpy(&ndev->cur_params,
			       &params->value[DEST_SPEC_PARAMS_ID_INDEX],
			       sizeof(struct dest_spec_params));
701
		else
702
			ndev->cur_params.id = 0;
703
	} else {
704
		ndev->cur_params.id = 0;
705
	}
706
	ndev->cur_dest_type = destination_type;
707

708
	r = __nci_request(ndev, nci_core_conn_create_req, (unsigned long)&data,
709 710 711
			  msecs_to_jiffies(NCI_CMD_TIMEOUT));
	kfree(cmd);
	return r;
712 713 714 715 716 717 718 719 720 721 722 723
}
EXPORT_SYMBOL(nci_core_conn_create);

static void nci_core_conn_close_req(struct nci_dev *ndev, unsigned long opt)
{
	__u8 conn_id = opt;

	nci_send_cmd(ndev, NCI_OP_CORE_CONN_CLOSE_CMD, 1, &conn_id);
}

int nci_core_conn_close(struct nci_dev *ndev, u8 conn_id)
{
724
	ndev->cur_conn_id = conn_id;
725 726
	return __nci_request(ndev, nci_core_conn_close_req, conn_id,
			     msecs_to_jiffies(NCI_CMD_TIMEOUT));
727 728 729
}
EXPORT_SYMBOL(nci_core_conn_close);

730 731 732 733
static int nci_set_local_general_bytes(struct nfc_dev *nfc_dev)
{
	struct nci_dev *ndev = nfc_get_drvdata(nfc_dev);
	struct nci_set_config_param param;
734
	int rc;
735 736 737

	param.val = nfc_get_local_general_bytes(nfc_dev, &param.len);
	if ((param.val == NULL) || (param.len == 0))
738
		return 0;
739

740
	if (param.len > NFC_MAX_GT_LEN)
741 742 743 744
		return -EINVAL;

	param.id = NCI_PN_ATR_REQ_GEN_BYTES;

745 746 747 748 749 750 751
	rc = nci_request(ndev, nci_set_config_req, (unsigned long)&param,
			 msecs_to_jiffies(NCI_SET_CONFIG_TIMEOUT));
	if (rc)
		return rc;

	param.id = NCI_LN_ATR_RES_GEN_BYTES;

752 753
	return nci_request(ndev, nci_set_config_req, (unsigned long)&param,
			   msecs_to_jiffies(NCI_SET_CONFIG_TIMEOUT));
754 755
}

756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778
static int nci_set_listen_parameters(struct nfc_dev *nfc_dev)
{
	struct nci_dev *ndev = nfc_get_drvdata(nfc_dev);
	int rc;
	__u8 val;

	val = NCI_LA_SEL_INFO_NFC_DEP_MASK;

	rc = nci_set_config(ndev, NCI_LA_SEL_INFO, 1, &val);
	if (rc)
		return rc;

	val = NCI_LF_PROTOCOL_TYPE_NFC_DEP_MASK;

	rc = nci_set_config(ndev, NCI_LF_PROTOCOL_TYPE, 1, &val);
	if (rc)
		return rc;

	val = NCI_LF_CON_BITR_F_212 | NCI_LF_CON_BITR_F_424;

	return nci_set_config(ndev, NCI_LF_CON_BITR_F, 1, &val);
}

779 780
static int nci_start_poll(struct nfc_dev *nfc_dev,
			  __u32 im_protocols, __u32 tm_protocols)
781 782
{
	struct nci_dev *ndev = nfc_get_drvdata(nfc_dev);
783
	struct nci_rf_discover_param param;
784 785
	int rc;

786
	if ((atomic_read(&ndev->state) == NCI_DISCOVERY) ||
Samuel Ortiz's avatar
Samuel Ortiz committed
787
	    (atomic_read(&ndev->state) == NCI_W4_ALL_DISCOVERIES)) {
Joe Perches's avatar
Joe Perches committed
788
		pr_err("unable to start poll, since poll is already active\n");
789 790 791
		return -EBUSY;
	}

792
	if (ndev->target_active_prot) {
Joe Perches's avatar
Joe Perches committed
793
		pr_err("there is an active target\n");
794 795 796
		return -EBUSY;
	}

797
	if ((atomic_read(&ndev->state) == NCI_W4_HOST_SELECT) ||
Samuel Ortiz's avatar
Samuel Ortiz committed
798
	    (atomic_read(&ndev->state) == NCI_POLL_ACTIVE)) {
799
		pr_debug("target active or w4 select, implicitly deactivate\n");
800

801 802
		rc = nci_request(ndev, nci_rf_deactivate_req,
				 NCI_DEACTIVATE_TYPE_IDLE_MODE,
Samuel Ortiz's avatar
Samuel Ortiz committed
803
				 msecs_to_jiffies(NCI_RF_DEACTIVATE_TIMEOUT));
804 805 806 807
		if (rc)
			return -EBUSY;
	}

808
	if ((im_protocols | tm_protocols) & NFC_PROTO_NFC_DEP_MASK) {
809 810 811 812 813 814 815
		rc = nci_set_local_general_bytes(nfc_dev);
		if (rc) {
			pr_err("failed to set local general bytes\n");
			return rc;
		}
	}

816 817 818 819 820 821
	if (tm_protocols & NFC_PROTO_NFC_DEP_MASK) {
		rc = nci_set_listen_parameters(nfc_dev);
		if (rc)
			pr_err("failed to set listen parameters\n");
	}

822 823 824
	param.im_protocols = im_protocols;
	param.tm_protocols = tm_protocols;
	rc = nci_request(ndev, nci_rf_discover_req, (unsigned long)&param,
Samuel Ortiz's avatar
Samuel Ortiz committed
825
			 msecs_to_jiffies(NCI_RF_DISC_TIMEOUT));
826 827

	if (!rc)
828
		ndev->poll_prots = im_protocols;
829 830 831 832 833 834 835 836

	return rc;
}

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

837
	if ((atomic_read(&ndev->state) != NCI_DISCOVERY) &&
Samuel Ortiz's avatar
Samuel Ortiz committed
838
	    (atomic_read(&ndev->state) != NCI_W4_ALL_DISCOVERIES)) {
Joe Perches's avatar
Joe Perches committed
839
		pr_err("unable to stop poll, since poll is not active\n");
840 841 842
		return;
	}

843
	nci_request(ndev, nci_rf_deactivate_req, NCI_DEACTIVATE_TYPE_IDLE_MODE,
Samuel Ortiz's avatar
Samuel Ortiz committed
844
		    msecs_to_jiffies(NCI_RF_DEACTIVATE_TIMEOUT));
845 846
}

847 848
static int nci_activate_target(struct nfc_dev *nfc_dev,
			       struct nfc_target *target, __u32 protocol)
849 850
{
	struct nci_dev *ndev = nfc_get_drvdata(nfc_dev);
851
	struct nci_rf_discover_select_param param;
852
	struct nfc_target *nci_target = NULL;
853 854
	int i;
	int rc = 0;
855

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

858
	if ((atomic_read(&ndev->state) != NCI_W4_HOST_SELECT) &&
Samuel Ortiz's avatar
Samuel Ortiz committed
859
	    (atomic_read(&ndev->state) != NCI_POLL_ACTIVE)) {
Joe Perches's avatar
Joe Perches committed
860
		pr_err("there is no available target to activate\n");
861 862 863 864
		return -EINVAL;
	}

	if (ndev->target_active_prot) {
Joe Perches's avatar
Joe Perches committed
865
		pr_err("there is already an active target\n");
866 867 868
		return -EBUSY;
	}

869
	for (i = 0; i < ndev->n_targets; i++) {
870 871
		if (ndev->targets[i].idx == target->idx) {
			nci_target = &ndev->targets[i];
872 873 874 875
			break;
		}
	}

876
	if (!nci_target) {
877 878 879 880
		pr_err("unable to find the selected target\n");
		return -EINVAL;
	}

881
	if (!(nci_target->supported_protocols & (1 << protocol))) {
Joe Perches's avatar
Joe Perches committed
882 883
		pr_err("target does not support the requested protocol 0x%x\n",
		       protocol);
884 885 886
		return -EINVAL;
	}

887
	if (atomic_read(&ndev->state) == NCI_W4_HOST_SELECT) {
888
		param.rf_discovery_id = nci_target->logical_idx;
889 890 891 892 893 894 895

		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;
896 897
		else if (protocol == NFC_PROTO_ISO14443 ||
			 protocol == NFC_PROTO_ISO14443_B)
898 899 900 901 902
			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,
Samuel Ortiz's avatar
Samuel Ortiz committed
903 904
				 (unsigned long)&param,
				 msecs_to_jiffies(NCI_RF_DISC_SELECT_TIMEOUT));
905
	}
906

907 908 909 910
	if (!rc)
		ndev->target_active_prot = protocol;

	return rc;
911 912
}

913
static void nci_deactivate_target(struct nfc_dev *nfc_dev,
914 915
				  struct nfc_target *target,
				  __u8 mode)
916 917
{
	struct nci_dev *ndev = nfc_get_drvdata(nfc_dev);
918
	u8 nci_mode = NCI_DEACTIVATE_TYPE_IDLE_MODE;
919

920
	pr_debug("entry\n");
921 922

	if (!ndev->target_active_prot) {
Joe Perches's avatar
Joe Perches committed
923
		pr_err("unable to deactivate target, no active target\n");
924 925 926 927 928
		return;
	}

	ndev->target_active_prot = 0;

929 930 931 932 933 934
	switch (mode) {
	case NFC_TARGET_MODE_SLEEP:
		nci_mode = NCI_DEACTIVATE_TYPE_SLEEP_MODE;
		break;
	}

935
	if (atomic_read(&ndev->state) == NCI_POLL_ACTIVE) {
936
		nci_request(ndev, nci_rf_deactivate_req, nci_mode,
Samuel Ortiz's avatar
Samuel Ortiz committed
937
			    msecs_to_jiffies(NCI_RF_DEACTIVATE_TIMEOUT));
938 939 940
	}
}

941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963
static int nci_dep_link_up(struct nfc_dev *nfc_dev, struct nfc_target *target,
			   __u8 comm_mode, __u8 *gb, size_t gb_len)
{
	struct nci_dev *ndev = nfc_get_drvdata(nfc_dev);
	int rc;

	pr_debug("target_idx %d, comm_mode %d\n", target->idx, comm_mode);

	rc = nci_activate_target(nfc_dev, target, NFC_PROTO_NFC_DEP);
	if (rc)
		return rc;

	rc = nfc_set_remote_general_bytes(nfc_dev, ndev->remote_gb,
					  ndev->remote_gb_len);
	if (!rc)
		rc = nfc_dep_link_is_up(nfc_dev, target->idx, NFC_COMM_PASSIVE,
					NFC_RF_INITIATOR);

	return rc;
}

static int nci_dep_link_down(struct nfc_dev *nfc_dev)
{
964 965 966
	struct nci_dev *ndev = nfc_get_drvdata(nfc_dev);
	int rc;

967 968
	pr_debug("entry\n");

969
	if (nfc_dev->rf_mode == NFC_RF_INITIATOR) {
970
		nci_deactivate_target(nfc_dev, NULL, NCI_DEACTIVATE_TYPE_IDLE_MODE);
971 972 973 974 975 976 977 978 979 980 981
	} else {
		if (atomic_read(&ndev->state) == NCI_LISTEN_ACTIVE ||
		    atomic_read(&ndev->state) == NCI_DISCOVERY) {
			nci_request(ndev, nci_rf_deactivate_req, 0,
				msecs_to_jiffies(NCI_RF_DEACTIVATE_TIMEOUT));
		}

		rc = nfc_tm_deactivated(nfc_dev);
		if (rc)
			pr_err("error when signaling tm deactivation\n");
	}
982 983 984 985 986

	return 0;
}


987 988 989
static int nci_transceive(struct nfc_dev *nfc_dev, struct nfc_target *target,
			  struct sk_buff *skb,
			  data_exchange_cb_t cb, void *cb_context)
990 991
{
	struct nci_dev *ndev = nfc_get_drvdata(nfc_dev);
992
	int rc;
993 994
	struct nci_conn_info    *conn_info;

995
	conn_info = ndev->rf_conn_info;
996 997
	if (!conn_info)
		return -EPROTO;
998

999
	pr_debug("target_idx %d, len %d\n", target->idx, skb->len);
1000 1001

	if (!ndev->target_active_prot) {
Joe Perches's avatar
Joe Perches committed
1002
		pr_err("unable to exchange data, no active target\n");
1003 1004 1005
		return -EINVAL;
	}

1006 1007 1008
	if (test_and_set_bit(NCI_DATA_EXCHANGE, &ndev->flags))
		return -EBUSY;

1009
	/* store cb and context to be used on receiving data */
1010 1011
	conn_info->data_exchange_cb = cb;
	conn_info->data_exchange_cb_context = cb_context;
1012

1013
	rc = nci_send_data(ndev, NCI_STATIC_RF_CONN_ID, skb);
1014 1015 1016 1017
	if (rc)
		clear_bit(NCI_DATA_EXCHANGE, &ndev->flags);

	return rc;
1018 1019
}

1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031
static int nci_tm_send(struct nfc_dev *nfc_dev, struct sk_buff *skb)
{
	struct nci_dev *ndev = nfc_get_drvdata(nfc_dev);
	int rc;

	rc = nci_send_data(ndev, NCI_STATIC_RF_CONN_ID, skb);
	if (rc)
		pr_err("unable to send data\n");

	return rc;
}

1032 1033
static int nci_enable_se(struct nfc_dev *nfc_dev, u32 se_idx)
{
1034 1035 1036 1037 1038
	struct nci_dev *ndev = nfc_get_drvdata(nfc_dev);

	if (ndev->ops->enable_se)
		return ndev->ops->enable_se(ndev, se_idx);

1039 1040 1041 1042 1043
	return 0;
}

static int nci_disable_se(struct nfc_dev *nfc_dev, u32 se_idx)
{
1044 1045 1046 1047 1048
	struct nci_dev *ndev = nfc_get_drvdata(nfc_dev);

	if (ndev->ops->disable_se)
		return ndev->ops->disable_se(ndev, se_idx);

1049 1050 1051 1052 1053
	return 0;
}

static int nci_discover_se(struct nfc_dev *nfc_dev)
{
1054
	int r;
1055 1056
	struct nci_dev *ndev = nfc_get_drvdata(nfc_dev);

1057 1058 1059 1060 1061
	if (ndev->ops->discover_se) {
		r = nci_nfcee_discover(ndev, NCI_NFCEE_DISCOVERY_ACTION_ENABLE);
		if (r != NCI_STATUS_OK)
			return -EPROTO;

1062
		return ndev->ops->discover_se(ndev);
1063
	}
1064

1065 1066 1067
	return 0;
}

1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080
static int nci_se_io(struct nfc_dev *nfc_dev, u32 se_idx,
		     u8 *apdu, size_t apdu_length,
		     se_io_cb_t cb, void *cb_context)
{
	struct nci_dev *ndev = nfc_get_drvdata(nfc_dev);

	if (ndev->ops->se_io)
		return ndev->ops->se_io(ndev, se_idx, apdu,
				apdu_length, cb, cb_context);

	return 0;
}

1081 1082 1083 1084 1085 1086 1087 1088 1089 1090
static int nci_fw_download(struct nfc_dev *nfc_dev, const char *firmware_name)
{
	struct nci_dev *ndev = nfc_get_drvdata(nfc_dev);

	if (!ndev->ops->fw_download)
		return -ENOTSUPP;

	return ndev->ops->fw_download(ndev, firmware_name);
}

1091 1092 1093 1094 1095
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,
1096 1097
	.dep_link_up = nci_dep_link_up,
	.dep_link_down = nci_dep_link_down,
1098 1099
	.activate_target = nci_activate_target,
	.deactivate_target = nci_deactivate_target,
1100
	.im_transceive = nci_transceive,
1101
	.tm_send = nci_tm_send,
1102 1103 1104
	.enable_se = nci_enable_se,
	.disable_se = nci_disable_se,
	.discover_se = nci_discover_se,
1105
	.se_io = nci_se_io,
1106
	.fw_download = nci_fw_download,
1107 1108 1109 1110 1111 1112 1113 1114 1115 1116
};

/* ---- 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,
Samuel Ortiz's avatar
Samuel Ortiz committed
1117 1118
				    __u32 supported_protocols,
				    int tx_headroom, int tx_tailroom)
1119
{
Dan Carpenter's avatar
Dan Carpenter committed
1120
	struct nci_dev *ndev;
1121

1122
	pr_debug("supported_protocols 0x%x\n", supported_protocols);
1123 1124

	if (!ops->open || !ops->close || !ops->send)
Dan Carpenter's avatar
Dan Carpenter committed
1125
		return NULL;
1126 1127

	if (!supported_protocols)
Dan Carpenter's avatar
Dan Carpenter committed
1128
		return NULL;
1129 1130 1131

	ndev = kzalloc(sizeof(struct nci_dev), GFP_KERNEL);
	if (!ndev)
Dan Carpenter's avatar
Dan Carpenter committed
1132
		return NULL;
1133 1134

	ndev->ops = ops;
1135 1136 1137 1138 1139 1140 1141 1142

	if (ops->n_prop_ops > NCI_MAX_PROPRIETARY_CMD) {
		pr_err("Too many proprietary commands: %zd\n",
		       ops->n_prop_ops);
		ops->prop_ops = NULL;
		ops->n_prop_ops = 0;
	}

1143 1144
	ndev->tx_headroom = tx_headroom;
	ndev->tx_tailroom = tx_tailroom;
1145
	init_completion(&ndev->req_completion);
1146 1147

	ndev->nfc_dev = nfc_allocate_device(&nci_nfc_ops,
Samuel Ortiz's avatar
Samuel Ortiz committed
1148 1149 1150
					    supported_protocols,
					    tx_headroom + NCI_DATA_HDR_SIZE,
					    tx_tailroom);
1151
	if (!ndev->nfc_dev)
1152 1153 1154 1155 1156
		goto free_nci;

	ndev->hci_dev = nci_hci_allocate(ndev);
	if (!ndev->hci_dev)
		goto free_nfc;
1157 1158 1159

	nfc_set_drvdata(ndev->nfc_dev, ndev);

Dan Carpenter's avatar
Dan Carpenter committed
1160
	return ndev;
1161

1162
free_nfc:
1163
	nfc_free_device(ndev->nfc_dev);
1164
free_nci:
1165
	kfree(ndev);
Dan Carpenter's avatar
Dan Carpenter committed
1166
	return NULL;
1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184
}
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
 *
Andrew Lunn's avatar
Andrew Lunn committed
1185
 * @ndev: The nci device to register
1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199
 */
int nci_register_device(struct nci_dev *ndev)
{
	int rc;
	struct device *dev = &ndev->nfc_dev->dev;
	char name[32];

	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;
1200
		goto exit;
1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222
	}

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

1223 1224
	timer_setup(&ndev->cmd_timer, nci_cmd_timer, 0);
	timer_setup(&ndev->data_timer, nci_data_timer, 0);
1225 1226

	mutex_init(&ndev->req_lock);
1227
	INIT_LIST_HEAD(&ndev->conn_info_list);
1228

1229 1230 1231 1232
	rc = nfc_register_device(ndev->nfc_dev);
	if (rc)
		goto destroy_rx_wq_exit;

1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248
	goto exit;

destroy_rx_wq_exit:
	destroy_workqueue(ndev->rx_wq);

destroy_cmd_wq_exit:
	destroy_workqueue(ndev->cmd_wq);

exit:
	return rc;
}
EXPORT_SYMBOL(nci_register_device);

/**
 * nci_unregister_device - unregister a nci device in the nfc subsystem
 *
Andrew Lunn's avatar
Andrew Lunn committed
1249
 * @ndev: The nci device to unregister
1250 1251 1252
 */
void nci_unregister_device(struct nci_dev *ndev)
{
1253 1254
	struct nci_conn_info    *conn_info, *n;

1255 1256 1257 1258 1259 1260
	nci_close_device(ndev);

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

1261 1262 1263 1264 1265
	list_for_each_entry_safe(conn_info, n, &ndev->conn_info_list, list) {
		list_del(&conn_info->list);
		/* conn_info is allocated with devm_kzalloc */
	}

1266 1267 1268 1269 1270 1271 1272
	nfc_unregister_device(ndev->nfc_dev);
}
EXPORT_SYMBOL(nci_unregister_device);

/**
 * nci_recv_frame - receive frame from NCI drivers
 *
Frederic Danis's avatar
Frederic Danis committed
1273
 * @ndev: The nci device
1274 1275
 * @skb: The sk_buff to receive
 */
Frederic Danis's avatar
Frederic Danis committed
1276
int nci_recv_frame(struct nci_dev *ndev, struct sk_buff *skb)
1277
{
1278
	pr_debug("len %d\n", skb->len);
1279

1280 1281
	if (!ndev || (!test_bit(NCI_UP, &ndev->flags) &&
	    !test_bit(NCI_INIT, &ndev->flags))) {
1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293
		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);

1294
int nci_send_frame(struct nci_dev *ndev, struct sk_buff *skb)
1295
{
1296
	pr_debug("len %d\n", skb->len);
1297 1298 1299 1300 1301 1302 1303 1304 1305

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

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

1306 1307 1308 1309
	/* Send copy to sniffer */
	nfc_send_to_raw_sock(ndev->nfc_dev, skb,
			     RAW_PAYLOAD_NCI, NFC_DIRECTION_TX);

Frederic Danis's avatar
Frederic Danis committed
1310
	return ndev->ops->send(ndev, skb);
1311
}
1312
EXPORT_SYMBOL(nci_send_frame);
1313 1314 1315 1316 1317 1318 1319

/* 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;

1320
	pr_debug("opcode 0x%x, plen %d\n", opcode, plen);
1321 1322 1323

	skb = nci_skb_alloc(ndev, (NCI_CTRL_HDR_SIZE + plen), GFP_KERNEL);
	if (!skb) {
Joe Perches's avatar
Joe Perches committed
1324
		pr_err("no memory for command\n");
1325 1326 1327
		return -ENOMEM;
	}

1328
	hdr = skb_put(skb, NCI_CTRL_HDR_SIZE);
1329 1330 1331 1332 1333 1334 1335 1336
	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)
1337
		skb_put_data(skb, payload, plen);
1338 1339 1340 1341 1342 1343

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

	return 0;
}
1344
EXPORT_SYMBOL(nci_send_cmd);
1345

1346
/* Proprietary commands API */
1347 1348 1349
static struct nci_driver_ops *ops_cmd_lookup(struct nci_driver_ops *ops,
					     size_t n_ops,
					     __u16 opcode)
1350 1351
{
	size_t i;
1352
	struct nci_driver_ops *op;
1353

1354
	if (!ops || !n_ops)
1355 1356
		return NULL;

1357 1358 1359 1360
	for (i = 0; i < n_ops; i++) {
		op = &ops[i];
		if (op->opcode == opcode)
			return op;
1361 1362 1363 1364 1365
	}

	return NULL;
}

1366
static int nci_op_rsp_packet(struct nci_dev *ndev, __u16 rsp_opcode,
1367
			     struct sk_buff *skb, struct nci_driver_ops *ops,
1368
			     size_t n_ops)
1369
{
1370
	struct nci_driver_ops *op;
1371

1372 1373
	op = ops_cmd_lookup(ops, n_ops, rsp_opcode);
	if (!op || !op->rsp)
1374 1375
		return -ENOTSUPP;

1376
	return op->rsp(ndev, skb);
1377 1378
}

1379
static int nci_op_ntf_packet(struct nci_dev *ndev, __u16 ntf_opcode,
1380
			     struct sk_buff *skb, struct nci_driver_ops *ops,
1381
			     size_t n_ops)
1382
{
1383
	struct nci_driver_ops *op;
1384

1385 1386
	op = ops_cmd_lookup(ops, n_ops, ntf_opcode);
	if (!op || !op->ntf)
1387 1388
		return -ENOTSUPP;

1389 1390 1391
	return op->ntf(ndev, skb);
}

1392 1393
int nci_prop_rsp_packet(struct nci_dev *ndev, __u16 opcode,
			struct sk_buff *skb)
1394 1395 1396 1397 1398
{
	return nci_op_rsp_packet(ndev, opcode, skb, ndev->ops->prop_ops,
				 ndev->ops->n_prop_ops);
}

1399 1400
int nci_prop_ntf_packet(struct nci_dev *ndev, __u16 opcode,
			struct sk_buff *skb)
1401 1402 1403 1404 1405
{
	return nci_op_ntf_packet(ndev, opcode, skb, ndev->ops->prop_ops,
				 ndev->ops->n_prop_ops);
}

1406 1407
int nci_core_rsp_packet(struct nci_dev *ndev, __u16 opcode,
			struct sk_buff *skb)
1408 1409 1410 1411 1412
{
	return nci_op_rsp_packet(ndev, opcode, skb, ndev->ops->core_ops,
				  ndev->ops->n_core_ops);
}

1413 1414
int nci_core_ntf_packet(struct nci_dev *ndev, __u16 opcode,
			struct sk_buff *skb)
1415 1416 1417
{
	return nci_op_ntf_packet(ndev, opcode, skb, ndev->ops->core_ops,
				 ndev->ops->n_core_ops);
1418 1419
}

1420 1421 1422 1423 1424
/* ---- 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);
1425
	struct nci_conn_info    *conn_info;
1426 1427
	struct sk_buff *skb;

1428 1429 1430 1431 1432
	conn_info = nci_get_conn_info_by_conn_id(ndev, ndev->cur_conn_id);
	if (!conn_info)
		return;

	pr_debug("credits_cnt %d\n", atomic_read(&conn_info->credits_cnt));
1433 1434

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

1440
		/* Check if data flow control is used */
1441
		if (atomic_read(&conn_info->credits_cnt) !=
Samuel Ortiz's avatar
Samuel Ortiz committed
1442
		    NCI_DATA_FLOW_CONTROL_NOT_USED)
1443
			atomic_dec(&conn_info->credits_cnt);
1444

Joe Perches's avatar
Joe Perches committed
1445 1446 1447 1448
		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));
1449

Frederic Danis's avatar
Frederic Danis committed
1450
		nci_send_frame(ndev, skb);
Ilan Elias's avatar
Ilan Elias committed
1451 1452

		mod_timer(&ndev->data_timer,
Samuel Ortiz's avatar
Samuel Ortiz committed
1453
			  jiffies + msecs_to_jiffies(NCI_DATA_TIMEOUT));
1454 1455 1456 1457 1458 1459 1460 1461 1462 1463 1464
	}
}

/* ----- 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))) {
1465 1466 1467 1468 1469

		/* Send copy to sniffer */
		nfc_send_to_raw_sock(ndev->nfc_dev, skb,
				     RAW_PAYLOAD_NCI, NFC_DIRECTION_RX);

1470 1471 1472 1473 1474 1475 1476 1477 1478 1479 1480 1481 1482 1483 1484
		/* 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:
Joe Perches's avatar
Joe Perches committed
1485
			pr_err("unknown MT 0x%x\n", nci_mt(skb->data));
1486 1487 1488 1489
			kfree_skb(skb);
			break;
		}
	}
Ilan Elias's avatar
Ilan Elias committed
1490 1491 1492 1493 1494

	/* 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))
1495 1496 1497
			nci_data_exchange_complete(ndev, NULL,
						   ndev->cur_conn_id,
						   -ETIMEDOUT);
Ilan Elias's avatar
Ilan Elias committed
1498 1499 1500

		clear_bit(NCI_DATA_EXCHANGE_TO, &ndev->flags);
	}
1501 1502 1503 1504 1505 1506 1507 1508 1509
}

/* ----- 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;

1510
	pr_debug("cmd_cnt %d\n", atomic_read(&ndev->cmd_cnt));
1511 1512 1513 1514 1515 1516 1517 1518 1519

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

		atomic_dec(&ndev->cmd_cnt);

Joe Perches's avatar
Joe Perches committed
1520 1521 1522 1523 1524
		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));
1525

Frederic Danis's avatar
Frederic Danis committed
1526
		nci_send_frame(ndev, skb);
1527 1528

		mod_timer(&ndev->cmd_timer,
Samuel Ortiz's avatar
Samuel Ortiz committed
1529
			  jiffies + msecs_to_jiffies(NCI_CMD_TIMEOUT));
1530 1531
	}
}
1532 1533

MODULE_LICENSE("GPL");