core.c 30.0 KB
Newer Older
1 2 3 4 5
/*
 *  The NFC Controller Interface is the communication protocol between an
 *  NFC Controller (NFCC) and a Device Host (DH).
 *
 *  Copyright (C) 2011 Texas Instruments, Inc.
6
 *  Copyright (C) 2014 Marvell International Ltd.
7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23
 *
 *  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
24
 *  along with this program; if not, see <http://www.gnu.org/licenses/>.
25 26 27
 *
 */

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

30
#include <linux/module.h>
31 32 33
#include <linux/types.h>
#include <linux/workqueue.h>
#include <linux/completion.h>
34
#include <linux/export.h>
35 36 37 38 39 40 41 42 43 44 45 46 47
#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);

48 49 50 51 52 53 54 55 56 57 58 59 60
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;
}

61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82
/* ---- 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 已提交
83 84
			 void (*req)(struct nci_dev *ndev, unsigned long opt),
			 unsigned long opt, __u32 timeout)
85 86
{
	int rc = 0;
87
	long completion_rc;
88 89 90

	ndev->req_status = NCI_REQ_PEND;

91
	reinit_completion(&ndev->req_completion);
92
	req(ndev, opt);
S
Samuel Ortiz 已提交
93 94 95
	completion_rc =
		wait_for_completion_interruptible_timeout(&ndev->req_completion,
							  timeout);
96

J
Joe Perches 已提交
97
	pr_debug("wait_for_completion return %ld\n", completion_rc);
98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113

	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 已提交
114 115
		pr_err("wait_for_completion_interruptible_timeout failed %ld\n",
		       completion_rc);
116 117 118 119 120 121 122 123 124

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

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

	return rc;
}

125 126 127 128
inline int nci_request(struct nci_dev *ndev,
		       void (*req)(struct nci_dev *ndev,
				   unsigned long opt),
		       unsigned long opt, __u32 timeout)
129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144
{
	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)
{
145 146 147 148
	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);
149 150 151 152 153 154 155 156 157
}

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)
{
158 159 160
	struct nci_rf_disc_map_cmd cmd;
	struct disc_map_config *cfg = cmd.mapping_configs;
	__u8 *num = &cmd.num_mapping_configs;
161 162 163
	int i;

	/* set rf mapping configurations */
164
	*num = 0;
165 166 167 168

	/* 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 已提交
169
		    NCI_RF_INTERFACE_ISO_DEP) {
170
			cfg[*num].rf_protocol = NCI_RF_PROTOCOL_ISO_DEP;
171 172 173
			cfg[*num].mode = NCI_DISC_MAP_MODE_POLL |
				NCI_DISC_MAP_MODE_LISTEN;
			cfg[*num].rf_interface = NCI_RF_INTERFACE_ISO_DEP;
174
			(*num)++;
175
		} else if (ndev->supported_rf_interfaces[i] ==
S
Samuel Ortiz 已提交
176
			   NCI_RF_INTERFACE_NFC_DEP) {
177
			cfg[*num].rf_protocol = NCI_RF_PROTOCOL_NFC_DEP;
178 179 180
			cfg[*num].mode = NCI_DISC_MAP_MODE_POLL |
				NCI_DISC_MAP_MODE_LISTEN;
			cfg[*num].rf_interface = NCI_RF_INTERFACE_NFC_DEP;
181
			(*num)++;
182 183
		}

184
		if (*num == NCI_MAX_NUM_MAPPING_CONFIGS)
185 186 187 188
			break;
	}

	nci_send_cmd(ndev, NCI_OP_RF_DISCOVER_MAP_CMD,
S
Samuel Ortiz 已提交
189
		     (1 + ((*num) * sizeof(struct disc_map_config))), &cmd);
190 191
}

192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212
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);
}

213 214 215 216 217
struct nci_rf_discover_param {
	__u32	im_protocols;
	__u32	tm_protocols;
};

218 219
static void nci_rf_discover_req(struct nci_dev *ndev, unsigned long opt)
{
220 221
	struct nci_rf_discover_param *param =
		(struct nci_rf_discover_param *)opt;
222 223 224 225 226
	struct nci_rf_disc_cmd cmd;

	cmd.num_disc_configs = 0;

	if ((cmd.num_disc_configs < NCI_MAX_NUM_RF_CONFIGS) &&
227 228 229 230
	    (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)) {
231
		cmd.disc_configs[cmd.num_disc_configs].rf_tech_and_mode =
S
Samuel Ortiz 已提交
232
			NCI_NFC_A_PASSIVE_POLL_MODE;
233 234 235 236 237
		cmd.disc_configs[cmd.num_disc_configs].frequency = 1;
		cmd.num_disc_configs++;
	}

	if ((cmd.num_disc_configs < NCI_MAX_NUM_RF_CONFIGS) &&
238
	    (param->im_protocols & NFC_PROTO_ISO14443_B_MASK)) {
239
		cmd.disc_configs[cmd.num_disc_configs].rf_tech_and_mode =
S
Samuel Ortiz 已提交
240
			NCI_NFC_B_PASSIVE_POLL_MODE;
241 242 243 244 245
		cmd.disc_configs[cmd.num_disc_configs].frequency = 1;
		cmd.num_disc_configs++;
	}

	if ((cmd.num_disc_configs < NCI_MAX_NUM_RF_CONFIGS) &&
246 247
	    (param->im_protocols & NFC_PROTO_FELICA_MASK ||
	     param->im_protocols & NFC_PROTO_NFC_DEP_MASK)) {
248
		cmd.disc_configs[cmd.num_disc_configs].rf_tech_and_mode =
S
Samuel Ortiz 已提交
249
			NCI_NFC_F_PASSIVE_POLL_MODE;
250 251 252 253
		cmd.disc_configs[cmd.num_disc_configs].frequency = 1;
		cmd.num_disc_configs++;
	}

254
	if ((cmd.num_disc_configs < NCI_MAX_NUM_RF_CONFIGS) &&
255
	    (param->im_protocols & NFC_PROTO_ISO15693_MASK)) {
256 257 258 259 260 261
		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++;
	}

262 263 264 265 266 267 268 269 270 271 272 273
	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++;
	}

274
	nci_send_cmd(ndev, NCI_OP_RF_DISCOVER_CMD,
S
Samuel Ortiz 已提交
275 276
		     (1 + (cmd.num_disc_configs * sizeof(struct disc_config))),
		     &cmd);
277 278
}

279 280 281 282 283 284 285 286
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 已提交
287
		(struct nci_rf_discover_select_param *)opt;
288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307
	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 已提交
308
		     sizeof(struct nci_rf_discover_select_cmd), &cmd);
309 310
}

311 312 313 314
static void nci_rf_deactivate_req(struct nci_dev *ndev, unsigned long opt)
{
	struct nci_rf_deactivate_cmd cmd;

315
	cmd.type = opt;
316 317

	nci_send_cmd(ndev, NCI_OP_RF_DEACTIVATE_CMD,
S
Samuel Ortiz 已提交
318
		     sizeof(struct nci_rf_deactivate_cmd), &cmd);
319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341
}

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 已提交
342
			   msecs_to_jiffies(NCI_RESET_TIMEOUT));
343

344
	if (ndev->ops->setup)
A
Amitkumar Karwar 已提交
345 346
		ndev->ops->setup(ndev);

347 348
	if (!rc) {
		rc = __nci_request(ndev, nci_init_req, 0,
S
Samuel Ortiz 已提交
349
				   msecs_to_jiffies(NCI_INIT_TIMEOUT));
350 351 352 353
	}

	if (!rc) {
		rc = __nci_request(ndev, nci_init_complete_req, 0,
S
Samuel Ortiz 已提交
354
				   msecs_to_jiffies(NCI_INIT_TIMEOUT));
355 356 357 358 359 360
	}

	clear_bit(NCI_INIT, &ndev->flags);

	if (!rc) {
		set_bit(NCI_UP, &ndev->flags);
361
		nci_clear_target_list(ndev);
362
		atomic_set(&ndev->state, NCI_IDLE);
363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384
	} 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 已提交
385
		del_timer_sync(&ndev->data_timer);
386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403
		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 已提交
404
		      msecs_to_jiffies(NCI_RESET_TIMEOUT));
405 406
	clear_bit(NCI_INIT, &ndev->flags);

407 408
	del_timer_sync(&ndev->cmd_timer);

409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432
	/* 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 已提交
433 434 435 436 437 438 439 440 441
/* 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);
}

442 443 444 445 446 447 448 449 450 451 452 453 454 455
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);
}

A
Amitkumar Karwar 已提交
456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471
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);

472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488
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)
{
	return nci_request(ndev, nci_nfcee_discover_req, action,
				msecs_to_jiffies(NCI_CMD_TIMEOUT));
}
EXPORT_SYMBOL(nci_nfcee_discover);

489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509
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;

	return nci_request(ndev, nci_nfcee_mode_set_req, (unsigned long)&cmd,
			   msecs_to_jiffies(NCI_CMD_TIMEOUT));
}
EXPORT_SYMBOL(nci_nfcee_mode_set);

510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547
static void nci_core_conn_create_req(struct nci_dev *ndev, unsigned long opt)
{
	struct nci_core_conn_create_cmd cmd;
	struct core_conn_create_dest_spec_params *params =
				(struct core_conn_create_dest_spec_params *)opt;

	cmd.destination_type = NCI_DESTINATION_NFCEE;
	cmd.number_destination_params = 1;
	memcpy(&cmd.params.type, params,
	       sizeof(struct core_conn_create_dest_spec_params));
	nci_send_cmd(ndev, NCI_OP_CORE_CONN_CREATE_CMD,
		     sizeof(struct nci_core_conn_create_cmd), &cmd);
}

int nci_core_conn_create(struct nci_dev *ndev,
			 struct core_conn_create_dest_spec_params *params)
{
	ndev->cur_id = params->value.id;
	return nci_request(ndev, nci_core_conn_create_req,
			(unsigned long)params,
			msecs_to_jiffies(NCI_CMD_TIMEOUT));
}
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)
{
	return nci_request(ndev, nci_core_conn_close_req, conn_id,
				msecs_to_jiffies(NCI_CMD_TIMEOUT));
}
EXPORT_SYMBOL(nci_core_conn_close);

548 549 550 551
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;
552
	int rc;
553 554 555

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

558
	if (param.len > NFC_MAX_GT_LEN)
559 560 561 562
		return -EINVAL;

	param.id = NCI_PN_ATR_REQ_GEN_BYTES;

563 564 565 566 567 568 569
	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;

570 571
	return nci_request(ndev, nci_set_config_req, (unsigned long)&param,
			   msecs_to_jiffies(NCI_SET_CONFIG_TIMEOUT));
572 573
}

574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596
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);
}

597 598
static int nci_start_poll(struct nfc_dev *nfc_dev,
			  __u32 im_protocols, __u32 tm_protocols)
599 600
{
	struct nci_dev *ndev = nfc_get_drvdata(nfc_dev);
601
	struct nci_rf_discover_param param;
602 603
	int rc;

604
	if ((atomic_read(&ndev->state) == NCI_DISCOVERY) ||
S
Samuel Ortiz 已提交
605
	    (atomic_read(&ndev->state) == NCI_W4_ALL_DISCOVERIES)) {
J
Joe Perches 已提交
606
		pr_err("unable to start poll, since poll is already active\n");
607 608 609
		return -EBUSY;
	}

610
	if (ndev->target_active_prot) {
J
Joe Perches 已提交
611
		pr_err("there is an active target\n");
612 613 614
		return -EBUSY;
	}

615
	if ((atomic_read(&ndev->state) == NCI_W4_HOST_SELECT) ||
S
Samuel Ortiz 已提交
616
	    (atomic_read(&ndev->state) == NCI_POLL_ACTIVE)) {
617
		pr_debug("target active or w4 select, implicitly deactivate\n");
618

619 620
		rc = nci_request(ndev, nci_rf_deactivate_req,
				 NCI_DEACTIVATE_TYPE_IDLE_MODE,
S
Samuel Ortiz 已提交
621
				 msecs_to_jiffies(NCI_RF_DEACTIVATE_TIMEOUT));
622 623 624 625
		if (rc)
			return -EBUSY;
	}

626
	if ((im_protocols | tm_protocols) & NFC_PROTO_NFC_DEP_MASK) {
627 628 629 630 631 632 633
		rc = nci_set_local_general_bytes(nfc_dev);
		if (rc) {
			pr_err("failed to set local general bytes\n");
			return rc;
		}
	}

634 635 636 637 638 639
	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");
	}

640 641 642
	param.im_protocols = im_protocols;
	param.tm_protocols = tm_protocols;
	rc = nci_request(ndev, nci_rf_discover_req, (unsigned long)&param,
S
Samuel Ortiz 已提交
643
			 msecs_to_jiffies(NCI_RF_DISC_TIMEOUT));
644 645

	if (!rc)
646
		ndev->poll_prots = im_protocols;
647 648 649 650 651 652 653 654

	return rc;
}

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

655
	if ((atomic_read(&ndev->state) != NCI_DISCOVERY) &&
S
Samuel Ortiz 已提交
656
	    (atomic_read(&ndev->state) != NCI_W4_ALL_DISCOVERIES)) {
J
Joe Perches 已提交
657
		pr_err("unable to stop poll, since poll is not active\n");
658 659 660
		return;
	}

661
	nci_request(ndev, nci_rf_deactivate_req, NCI_DEACTIVATE_TYPE_IDLE_MODE,
S
Samuel Ortiz 已提交
662
		    msecs_to_jiffies(NCI_RF_DEACTIVATE_TIMEOUT));
663 664
}

665 666
static int nci_activate_target(struct nfc_dev *nfc_dev,
			       struct nfc_target *target, __u32 protocol)
667 668
{
	struct nci_dev *ndev = nfc_get_drvdata(nfc_dev);
669
	struct nci_rf_discover_select_param param;
670
	struct nfc_target *nci_target = NULL;
671 672
	int i;
	int rc = 0;
673

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

676
	if ((atomic_read(&ndev->state) != NCI_W4_HOST_SELECT) &&
S
Samuel Ortiz 已提交
677
	    (atomic_read(&ndev->state) != NCI_POLL_ACTIVE)) {
J
Joe Perches 已提交
678
		pr_err("there is no available target to activate\n");
679 680 681 682
		return -EINVAL;
	}

	if (ndev->target_active_prot) {
J
Joe Perches 已提交
683
		pr_err("there is already an active target\n");
684 685 686
		return -EBUSY;
	}

687
	for (i = 0; i < ndev->n_targets; i++) {
688 689
		if (ndev->targets[i].idx == target->idx) {
			nci_target = &ndev->targets[i];
690 691 692 693
			break;
		}
	}

694
	if (!nci_target) {
695 696 697 698
		pr_err("unable to find the selected target\n");
		return -EINVAL;
	}

699
	if (!(nci_target->supported_protocols & (1 << protocol))) {
J
Joe Perches 已提交
700 701
		pr_err("target does not support the requested protocol 0x%x\n",
		       protocol);
702 703 704
		return -EINVAL;
	}

705
	if (atomic_read(&ndev->state) == NCI_W4_HOST_SELECT) {
706
		param.rf_discovery_id = nci_target->logical_idx;
707 708 709 710 711 712 713

		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;
714 715
		else if (protocol == NFC_PROTO_ISO14443 ||
			 protocol == NFC_PROTO_ISO14443_B)
716 717 718 719 720
			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 已提交
721 722
				 (unsigned long)&param,
				 msecs_to_jiffies(NCI_RF_DISC_SELECT_TIMEOUT));
723
	}
724

725 726 727 728
	if (!rc)
		ndev->target_active_prot = protocol;

	return rc;
729 730
}

731 732
static void nci_deactivate_target(struct nfc_dev *nfc_dev,
				  struct nfc_target *target)
733 734 735
{
	struct nci_dev *ndev = nfc_get_drvdata(nfc_dev);

736
	pr_debug("entry\n");
737 738

	if (!ndev->target_active_prot) {
J
Joe Perches 已提交
739
		pr_err("unable to deactivate target, no active target\n");
740 741 742 743 744
		return;
	}

	ndev->target_active_prot = 0;

745
	if (atomic_read(&ndev->state) == NCI_POLL_ACTIVE) {
746 747
		nci_request(ndev, nci_rf_deactivate_req,
			    NCI_DEACTIVATE_TYPE_SLEEP_MODE,
S
Samuel Ortiz 已提交
748
			    msecs_to_jiffies(NCI_RF_DEACTIVATE_TIMEOUT));
749 750 751
	}
}

752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774
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)
{
775 776 777
	struct nci_dev *ndev = nfc_get_drvdata(nfc_dev);
	int rc;

778 779
	pr_debug("entry\n");

780 781 782 783 784 785 786 787 788 789 790 791 792
	if (nfc_dev->rf_mode == NFC_RF_INITIATOR) {
		nci_deactivate_target(nfc_dev, NULL);
	} 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");
	}
793 794 795 796 797

	return 0;
}


S
Samuel Ortiz 已提交
798 799 800
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)
801 802
{
	struct nci_dev *ndev = nfc_get_drvdata(nfc_dev);
803
	int rc;
804 805 806 807 808
	struct nci_conn_info    *conn_info;

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

810
	pr_debug("target_idx %d, len %d\n", target->idx, skb->len);
811 812

	if (!ndev->target_active_prot) {
J
Joe Perches 已提交
813
		pr_err("unable to exchange data, no active target\n");
814 815 816
		return -EINVAL;
	}

817 818 819
	if (test_and_set_bit(NCI_DATA_EXCHANGE, &ndev->flags))
		return -EBUSY;

820
	/* store cb and context to be used on receiving data */
821 822
	conn_info->data_exchange_cb = cb;
	conn_info->data_exchange_cb_context = cb_context;
823

824
	rc = nci_send_data(ndev, NCI_STATIC_RF_CONN_ID, skb);
825 826 827 828
	if (rc)
		clear_bit(NCI_DATA_EXCHANGE, &ndev->flags);

	return rc;
829 830
}

831 832 833 834 835 836 837 838 839 840 841 842
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;
}

843 844
static int nci_enable_se(struct nfc_dev *nfc_dev, u32 se_idx)
{
845 846 847 848 849
	struct nci_dev *ndev = nfc_get_drvdata(nfc_dev);

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

850 851 852 853 854
	return 0;
}

static int nci_disable_se(struct nfc_dev *nfc_dev, u32 se_idx)
{
855 856 857 858 859
	struct nci_dev *ndev = nfc_get_drvdata(nfc_dev);

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

860 861 862 863 864
	return 0;
}

static int nci_discover_se(struct nfc_dev *nfc_dev)
{
865 866 867 868 869
	struct nci_dev *ndev = nfc_get_drvdata(nfc_dev);

	if (ndev->ops->discover_se)
		return ndev->ops->discover_se(ndev);

870 871 872
	return 0;
}

873 874 875 876 877 878 879 880 881 882 883 884 885
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;
}

886 887 888 889 890
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,
891 892
	.dep_link_up = nci_dep_link_up,
	.dep_link_down = nci_dep_link_down,
893 894
	.activate_target = nci_activate_target,
	.deactivate_target = nci_deactivate_target,
S
Samuel Ortiz 已提交
895
	.im_transceive = nci_transceive,
896
	.tm_send = nci_tm_send,
897 898 899
	.enable_se = nci_enable_se,
	.disable_se = nci_disable_se,
	.discover_se = nci_discover_se,
900
	.se_io = nci_se_io,
901 902 903 904 905 906 907 908 909 910
};

/* ---- 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 已提交
911 912
				    __u32 supported_protocols,
				    int tx_headroom, int tx_tailroom)
913
{
D
Dan Carpenter 已提交
914
	struct nci_dev *ndev;
915

916
	pr_debug("supported_protocols 0x%x\n", supported_protocols);
917 918

	if (!ops->open || !ops->close || !ops->send)
D
Dan Carpenter 已提交
919
		return NULL;
920 921

	if (!supported_protocols)
D
Dan Carpenter 已提交
922
		return NULL;
923 924 925

	ndev = kzalloc(sizeof(struct nci_dev), GFP_KERNEL);
	if (!ndev)
D
Dan Carpenter 已提交
926
		return NULL;
927 928 929 930

	ndev->ops = ops;
	ndev->tx_headroom = tx_headroom;
	ndev->tx_tailroom = tx_tailroom;
931
	init_completion(&ndev->req_completion);
932 933

	ndev->nfc_dev = nfc_allocate_device(&nci_nfc_ops,
S
Samuel Ortiz 已提交
934 935 936
					    supported_protocols,
					    tx_headroom + NCI_DATA_HDR_SIZE,
					    tx_tailroom);
937
	if (!ndev->nfc_dev)
938 939 940 941 942
		goto free_nci;

	ndev->hci_dev = nci_hci_allocate(ndev);
	if (!ndev->hci_dev)
		goto free_nfc;
943 944 945

	nfc_set_drvdata(ndev->nfc_dev, ndev);

D
Dan Carpenter 已提交
946
	return ndev;
947

948 949 950 951
free_nfc:
	kfree(ndev->nfc_dev);

free_nci:
952
	kfree(ndev);
D
Dan Carpenter 已提交
953
	return NULL;
954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986
}
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];

	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;
987
		goto exit;
988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010
	}

	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 已提交
1011
		    (unsigned long) ndev);
I
Ilan Elias 已提交
1012
	setup_timer(&ndev->data_timer, nci_data_timer,
S
Samuel Ortiz 已提交
1013
		    (unsigned long) ndev);
1014 1015

	mutex_init(&ndev->req_lock);
1016
	INIT_LIST_HEAD(&ndev->conn_info_list);
1017

1018 1019 1020 1021
	rc = nfc_register_device(ndev->nfc_dev);
	if (rc)
		goto destroy_rx_wq_exit;

1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041
	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
 *
 * @dev: The nci device to unregister
 */
void nci_unregister_device(struct nci_dev *ndev)
{
1042 1043
	struct nci_conn_info    *conn_info, *n;

1044 1045 1046 1047 1048 1049
	nci_close_device(ndev);

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

1050 1051 1052 1053 1054
	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 */
	}

1055 1056 1057 1058 1059 1060 1061
	nfc_unregister_device(ndev->nfc_dev);
}
EXPORT_SYMBOL(nci_unregister_device);

/**
 * nci_recv_frame - receive frame from NCI drivers
 *
F
Frederic Danis 已提交
1062
 * @ndev: The nci device
1063 1064
 * @skb: The sk_buff to receive
 */
F
Frederic Danis 已提交
1065
int nci_recv_frame(struct nci_dev *ndev, struct sk_buff *skb)
1066
{
1067
	pr_debug("len %d\n", skb->len);
1068

1069 1070
	if (!ndev || (!test_bit(NCI_UP, &ndev->flags) &&
	    !test_bit(NCI_INIT, &ndev->flags))) {
1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082
		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);

F
Frederic Danis 已提交
1083
static int nci_send_frame(struct nci_dev *ndev, struct sk_buff *skb)
1084
{
1085
	pr_debug("len %d\n", skb->len);
1086 1087 1088 1089 1090 1091 1092 1093 1094

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

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

1095 1096 1097 1098
	/* Send copy to sniffer */
	nfc_send_to_raw_sock(ndev->nfc_dev, skb,
			     RAW_PAYLOAD_NCI, NFC_DIRECTION_TX);

F
Frederic Danis 已提交
1099
	return ndev->ops->send(ndev, skb);
1100 1101 1102 1103 1104 1105 1106 1107
}

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

1108
	pr_debug("opcode 0x%x, plen %d\n", opcode, plen);
1109 1110 1111

	skb = nci_skb_alloc(ndev, (NCI_CTRL_HDR_SIZE + plen), GFP_KERNEL);
	if (!skb) {
J
Joe Perches 已提交
1112
		pr_err("no memory for command\n");
1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137
		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_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);
1138
	struct nci_conn_info    *conn_info;
1139 1140
	struct sk_buff *skb;

1141 1142 1143 1144 1145
	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));
1146 1147

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

1153
		/* Check if data flow control is used */
1154
		if (atomic_read(&conn_info->credits_cnt) !=
S
Samuel Ortiz 已提交
1155
		    NCI_DATA_FLOW_CONTROL_NOT_USED)
1156
			atomic_dec(&conn_info->credits_cnt);
1157

J
Joe Perches 已提交
1158 1159 1160 1161
		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));
1162

F
Frederic Danis 已提交
1163
		nci_send_frame(ndev, skb);
I
Ilan Elias 已提交
1164 1165

		mod_timer(&ndev->data_timer,
S
Samuel Ortiz 已提交
1166
			  jiffies + msecs_to_jiffies(NCI_DATA_TIMEOUT));
1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177
	}
}

/* ----- 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))) {
1178 1179 1180 1181 1182

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

1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197
		/* 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 已提交
1198
			pr_err("unknown MT 0x%x\n", nci_mt(skb->data));
1199 1200 1201 1202
			kfree_skb(skb);
			break;
		}
	}
I
Ilan Elias 已提交
1203 1204 1205 1206 1207

	/* 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))
1208 1209 1210
			nci_data_exchange_complete(ndev, NULL,
						   ndev->cur_conn_id,
						   -ETIMEDOUT);
I
Ilan Elias 已提交
1211 1212 1213

		clear_bit(NCI_DATA_EXCHANGE_TO, &ndev->flags);
	}
1214 1215 1216 1217 1218 1219 1220 1221 1222
}

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

1223
	pr_debug("cmd_cnt %d\n", atomic_read(&ndev->cmd_cnt));
1224 1225 1226 1227 1228 1229 1230 1231 1232

	/* 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 已提交
1233 1234 1235 1236 1237
		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));
1238

F
Frederic Danis 已提交
1239
		nci_send_frame(ndev, skb);
1240 1241

		mod_timer(&ndev->cmd_timer,
S
Samuel Ortiz 已提交
1242
			  jiffies + msecs_to_jiffies(NCI_CMD_TIMEOUT));
1243 1244
	}
}
1245 1246

MODULE_LICENSE("GPL");