ntf.c 20.9 KB
Newer Older
1 2 3 4
/*
 *  The NFC Controller Interface is the communication protocol between an
 *  NFC Controller (NFCC) and a Device Host (DH).
 *
5
 *  Copyright (C) 2014 Marvell International Ltd.
6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23
 *  Copyright (C) 2011 Texas Instruments, Inc.
 *
 *  Written by Ilan Elias <ilane@ti.com>
 *
 *  Acknowledgements:
 *  This file is based on hci_event.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 31 32 33 34 35 36 37 38 39 40 41 42
#include <linux/types.h>
#include <linux/interrupt.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>

/* Handle NCI Notification packets */

static void nci_core_conn_credits_ntf_packet(struct nci_dev *ndev,
S
Samuel Ortiz 已提交
43
					     struct sk_buff *skb)
44 45 46 47
{
	struct nci_core_conn_credit_ntf *ntf = (void *) skb->data;
	int i;

48
	pr_debug("num_entries %d\n", ntf->num_entries);
49 50 51 52 53 54

	if (ntf->num_entries > NCI_MAX_NUM_CONN)
		ntf->num_entries = NCI_MAX_NUM_CONN;

	/* update the credits */
	for (i = 0; i < ntf->num_entries; i++) {
55 56 57
		ntf->conn_entries[i].conn_id =
			nci_conn_id(&ntf->conn_entries[i].conn_id);

J
Joe Perches 已提交
58 59 60
		pr_debug("entry[%d]: conn_id %d, credits %d\n",
			 i, ntf->conn_entries[i].conn_id,
			 ntf->conn_entries[i].credits);
61

62
		if (ntf->conn_entries[i].conn_id == NCI_STATIC_RF_CONN_ID) {
63 64
			/* found static rf connection */
			atomic_add(ntf->conn_entries[i].credits,
S
Samuel Ortiz 已提交
65
				   &ndev->credits_cnt);
66 67 68 69 70 71 72 73
		}
	}

	/* trigger the next tx */
	if (!skb_queue_empty(&ndev->tx_q))
		queue_work(ndev->tx_wq, &ndev->tx_work);
}

74
static void nci_core_generic_error_ntf_packet(struct nci_dev *ndev,
S
Samuel Ortiz 已提交
75
					      struct sk_buff *skb)
76 77 78 79 80 81 82
{
	__u8 status = skb->data[0];

	pr_debug("status 0x%x\n", status);

	if (atomic_read(&ndev->state) == NCI_W4_HOST_SELECT) {
		/* Activation failed, so complete the request
S
Samuel Ortiz 已提交
83
		   (the state remains the same) */
84 85 86 87
		nci_req_complete(ndev, status);
	}
}

88 89 90 91 92 93 94 95 96 97 98 99 100 101
static void nci_core_conn_intf_error_ntf_packet(struct nci_dev *ndev,
						struct sk_buff *skb)
{
	struct nci_core_intf_error_ntf *ntf = (void *) skb->data;

	ntf->conn_id = nci_conn_id(&ntf->conn_id);

	pr_debug("status 0x%x, conn_id %d\n", ntf->status, ntf->conn_id);

	/* complete the data exchange transaction, if exists */
	if (test_bit(NCI_DATA_EXCHANGE, &ndev->flags))
		nci_data_exchange_complete(ndev, NULL, -EIO);
}

102
static __u8 *nci_extract_rf_params_nfca_passive_poll(struct nci_dev *ndev,
103
			struct rf_tech_specific_params_nfca_poll *nfca_poll,
S
Samuel Ortiz 已提交
104
						     __u8 *data)
105 106 107 108
{
	nfca_poll->sens_res = __le16_to_cpu(*((__u16 *)data));
	data += 2;

109
	nfca_poll->nfcid1_len = min_t(__u8, *data++, NFC_NFCID1_MAXSIZE);
110

J
Joe Perches 已提交
111 112
	pr_debug("sens_res 0x%x, nfcid1_len %d\n",
		 nfca_poll->sens_res, nfca_poll->nfcid1_len);
113 114 115 116 117 118 119 120 121

	memcpy(nfca_poll->nfcid1, data, nfca_poll->nfcid1_len);
	data += nfca_poll->nfcid1_len;

	nfca_poll->sel_res_len = *data++;

	if (nfca_poll->sel_res_len != 0)
		nfca_poll->sel_res = *data++;

J
Joe Perches 已提交
122 123 124
	pr_debug("sel_res_len %d, sel_res 0x%x\n",
		 nfca_poll->sel_res_len,
		 nfca_poll->sel_res);
125 126 127 128

	return data;
}

129
static __u8 *nci_extract_rf_params_nfcb_passive_poll(struct nci_dev *ndev,
130
			struct rf_tech_specific_params_nfcb_poll *nfcb_poll,
S
Samuel Ortiz 已提交
131
						     __u8 *data)
132
{
133
	nfcb_poll->sensb_res_len = min_t(__u8, *data++, NFC_SENSB_RES_MAXSIZE);
134 135 136 137 138 139 140 141 142 143

	pr_debug("sensb_res_len %d\n", nfcb_poll->sensb_res_len);

	memcpy(nfcb_poll->sensb_res, data, nfcb_poll->sensb_res_len);
	data += nfcb_poll->sensb_res_len;

	return data;
}

static __u8 *nci_extract_rf_params_nfcf_passive_poll(struct nci_dev *ndev,
144
			struct rf_tech_specific_params_nfcf_poll *nfcf_poll,
S
Samuel Ortiz 已提交
145
						     __u8 *data)
146 147
{
	nfcf_poll->bit_rate = *data++;
148
	nfcf_poll->sensf_res_len = min_t(__u8, *data++, NFC_SENSF_RES_MAXSIZE);
149 150

	pr_debug("bit_rate %d, sensf_res_len %d\n",
S
Samuel Ortiz 已提交
151
		 nfcf_poll->bit_rate, nfcf_poll->sensf_res_len);
152 153 154 155 156 157 158

	memcpy(nfcf_poll->sensf_res, data, nfcf_poll->sensf_res_len);
	data += nfcf_poll->sensf_res_len;

	return data;
}

159 160 161 162 163 164 165 166 167 168 169
static __u8 *nci_extract_rf_params_nfcv_passive_poll(struct nci_dev *ndev,
			struct rf_tech_specific_params_nfcv_poll *nfcv_poll,
						     __u8 *data)
{
	++data;
	nfcv_poll->dsfid = *data++;
	memcpy(nfcv_poll->uid, data, NFC_ISO15693_UID_MAXSIZE);
	data += NFC_ISO15693_UID_MAXSIZE;
	return data;
}

170 171 172 173 174 175 176 177 178 179 180 181
static __u8 *nci_extract_rf_params_nfcf_passive_listen(struct nci_dev *ndev,
			struct rf_tech_specific_params_nfcf_listen *nfcf_listen,
						     __u8 *data)
{
	nfcf_listen->local_nfcid2_len = min_t(__u8, *data++,
					      NFC_NFCID2_MAXSIZE);
	memcpy(nfcf_listen->local_nfcid2, data, nfcf_listen->local_nfcid2_len);
	data += nfcf_listen->local_nfcid2_len;

	return data;
}

182
static __u32 nci_get_prop_rf_protocol(struct nci_dev *ndev, __u8 rf_protocol)
183 184 185 186 187 188
{
	if (ndev->ops->get_rfprotocol)
		return ndev->ops->get_rfprotocol(ndev, rf_protocol);
	return 0;
}

189 190 191 192 193 194 195 196 197
static int nci_add_new_protocol(struct nci_dev *ndev,
				struct nfc_target *target,
				__u8 rf_protocol,
				__u8 rf_tech_and_mode,
				void *params)
{
	struct rf_tech_specific_params_nfca_poll *nfca_poll;
	struct rf_tech_specific_params_nfcb_poll *nfcb_poll;
	struct rf_tech_specific_params_nfcf_poll *nfcf_poll;
198
	struct rf_tech_specific_params_nfcv_poll *nfcv_poll;
199 200
	__u32 protocol;

201 202 203
	if (rf_protocol == NCI_RF_PROTOCOL_T1T)
		protocol = NFC_PROTO_JEWEL_MASK;
	else if (rf_protocol == NCI_RF_PROTOCOL_T2T)
204 205
		protocol = NFC_PROTO_MIFARE_MASK;
	else if (rf_protocol == NCI_RF_PROTOCOL_ISO_DEP)
206 207 208 209
		if (rf_tech_and_mode == NCI_NFC_A_PASSIVE_POLL_MODE)
			protocol = NFC_PROTO_ISO14443_MASK;
		else
			protocol = NFC_PROTO_ISO14443_B_MASK;
210 211
	else if (rf_protocol == NCI_RF_PROTOCOL_T3T)
		protocol = NFC_PROTO_FELICA_MASK;
212 213
	else if (rf_protocol == NCI_RF_PROTOCOL_NFC_DEP)
		protocol = NFC_PROTO_NFC_DEP_MASK;
214 215
	else if (rf_protocol == NCI_RF_PROTOCOL_T5T)
		protocol = NFC_PROTO_ISO15693_MASK;
216
	else
217
		protocol = nci_get_prop_rf_protocol(ndev, rf_protocol);
218 219 220 221 222 223 224 225 226 227 228 229 230 231

	if (!(protocol & ndev->poll_prots)) {
		pr_err("the target found does not have the desired protocol\n");
		return -EPROTO;
	}

	if (rf_tech_and_mode == NCI_NFC_A_PASSIVE_POLL_MODE) {
		nfca_poll = (struct rf_tech_specific_params_nfca_poll *)params;

		target->sens_res = nfca_poll->sens_res;
		target->sel_res = nfca_poll->sel_res;
		target->nfcid1_len = nfca_poll->nfcid1_len;
		if (target->nfcid1_len > 0) {
			memcpy(target->nfcid1, nfca_poll->nfcid1,
S
Samuel Ortiz 已提交
232
			       target->nfcid1_len);
233 234 235 236 237 238 239
		}
	} else if (rf_tech_and_mode == NCI_NFC_B_PASSIVE_POLL_MODE) {
		nfcb_poll = (struct rf_tech_specific_params_nfcb_poll *)params;

		target->sensb_res_len = nfcb_poll->sensb_res_len;
		if (target->sensb_res_len > 0) {
			memcpy(target->sensb_res, nfcb_poll->sensb_res,
S
Samuel Ortiz 已提交
240
			       target->sensb_res_len);
241 242 243 244 245 246 247
		}
	} else if (rf_tech_and_mode == NCI_NFC_F_PASSIVE_POLL_MODE) {
		nfcf_poll = (struct rf_tech_specific_params_nfcf_poll *)params;

		target->sensf_res_len = nfcf_poll->sensf_res_len;
		if (target->sensf_res_len > 0) {
			memcpy(target->sensf_res, nfcf_poll->sensf_res,
S
Samuel Ortiz 已提交
248
			       target->sensf_res_len);
249
		}
250 251 252 253 254 255
	} else if (rf_tech_and_mode == NCI_NFC_V_PASSIVE_POLL_MODE) {
		nfcv_poll = (struct rf_tech_specific_params_nfcv_poll *)params;

		target->is_iso15693 = 1;
		target->iso15693_dsfid = nfcv_poll->dsfid;
		memcpy(target->iso15693_uid, nfcv_poll->uid, NFC_ISO15693_UID_MAXSIZE);
256 257 258 259 260 261 262 263 264 265 266 267 268
	} else {
		pr_err("unsupported rf_tech_and_mode 0x%x\n", rf_tech_and_mode);
		return -EPROTO;
	}

	target->supported_protocols |= protocol;

	pr_debug("protocol 0x%x\n", protocol);

	return 0;
}

static void nci_add_new_target(struct nci_dev *ndev,
S
Samuel Ortiz 已提交
269
			       struct nci_rf_discover_ntf *ntf)
270 271 272 273 274 275
{
	struct nfc_target *target;
	int i, rc;

	for (i = 0; i < ndev->n_targets; i++) {
		target = &ndev->targets[i];
276
		if (target->logical_idx == ntf->rf_discovery_id) {
277 278
			/* This target already exists, add the new protocol */
			nci_add_new_protocol(ndev, target, ntf->rf_protocol,
S
Samuel Ortiz 已提交
279 280
					     ntf->rf_tech_and_mode,
					     &ntf->rf_tech_specific_params);
281 282 283 284 285 286 287 288 289 290 291 292 293
			return;
		}
	}

	/* This is a new target, check if we've enough room */
	if (ndev->n_targets == NCI_MAX_DISCOVERED_TARGETS) {
		pr_debug("not enough room, ignoring new target...\n");
		return;
	}

	target = &ndev->targets[ndev->n_targets];

	rc = nci_add_new_protocol(ndev, target, ntf->rf_protocol,
S
Samuel Ortiz 已提交
294 295
				  ntf->rf_tech_and_mode,
				  &ntf->rf_tech_specific_params);
296
	if (!rc) {
297
		target->logical_idx = ntf->rf_discovery_id;
298 299
		ndev->n_targets++;

300
		pr_debug("logical idx %d, n_targets %d\n", target->logical_idx,
S
Samuel Ortiz 已提交
301
			 ndev->n_targets);
302 303 304 305 306 307
	}
}

void nci_clear_target_list(struct nci_dev *ndev)
{
	memset(ndev->targets, 0,
S
Samuel Ortiz 已提交
308
	       (sizeof(struct nfc_target)*NCI_MAX_DISCOVERED_TARGETS));
309 310 311 312 313

	ndev->n_targets = 0;
}

static void nci_rf_discover_ntf_packet(struct nci_dev *ndev,
S
Samuel Ortiz 已提交
314
				       struct sk_buff *skb)
315 316 317 318 319 320 321 322 323 324 325 326 327 328
{
	struct nci_rf_discover_ntf ntf;
	__u8 *data = skb->data;
	bool add_target = true;

	ntf.rf_discovery_id = *data++;
	ntf.rf_protocol = *data++;
	ntf.rf_tech_and_mode = *data++;
	ntf.rf_tech_specific_params_len = *data++;

	pr_debug("rf_discovery_id %d\n", ntf.rf_discovery_id);
	pr_debug("rf_protocol 0x%x\n", ntf.rf_protocol);
	pr_debug("rf_tech_and_mode 0x%x\n", ntf.rf_tech_and_mode);
	pr_debug("rf_tech_specific_params_len %d\n",
S
Samuel Ortiz 已提交
329
		 ntf.rf_tech_specific_params_len);
330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347

	if (ntf.rf_tech_specific_params_len > 0) {
		switch (ntf.rf_tech_and_mode) {
		case NCI_NFC_A_PASSIVE_POLL_MODE:
			data = nci_extract_rf_params_nfca_passive_poll(ndev,
				&(ntf.rf_tech_specific_params.nfca_poll), data);
			break;

		case NCI_NFC_B_PASSIVE_POLL_MODE:
			data = nci_extract_rf_params_nfcb_passive_poll(ndev,
				&(ntf.rf_tech_specific_params.nfcb_poll), data);
			break;

		case NCI_NFC_F_PASSIVE_POLL_MODE:
			data = nci_extract_rf_params_nfcf_passive_poll(ndev,
				&(ntf.rf_tech_specific_params.nfcf_poll), data);
			break;

348 349 350 351 352
		case NCI_NFC_V_PASSIVE_POLL_MODE:
			data = nci_extract_rf_params_nfcv_passive_poll(ndev,
				&(ntf.rf_tech_specific_params.nfcv_poll), data);
			break;

353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371
		default:
			pr_err("unsupported rf_tech_and_mode 0x%x\n",
			       ntf.rf_tech_and_mode);
			data += ntf.rf_tech_specific_params_len;
			add_target = false;
		}
	}

	ntf.ntf_type = *data++;
	pr_debug("ntf_type %d\n", ntf.ntf_type);

	if (add_target == true)
		nci_add_new_target(ndev, &ntf);

	if (ntf.ntf_type == NCI_DISCOVER_NTF_TYPE_MORE) {
		atomic_set(&ndev->state, NCI_W4_ALL_DISCOVERIES);
	} else {
		atomic_set(&ndev->state, NCI_W4_HOST_SELECT);
		nfc_targets_found(ndev->nfc_dev, ndev->targets,
S
Samuel Ortiz 已提交
372
				  ndev->n_targets);
373 374 375
	}
}

376 377 378 379
static int nci_extract_activation_params_iso_dep(struct nci_dev *ndev,
			struct nci_rf_intf_activated_ntf *ntf, __u8 *data)
{
	struct activation_params_nfca_poll_iso_dep *nfca_poll;
380
	struct activation_params_nfcb_poll_iso_dep *nfcb_poll;
381 382 383 384

	switch (ntf->activation_rf_tech_and_mode) {
	case NCI_NFC_A_PASSIVE_POLL_MODE:
		nfca_poll = &ntf->activation_params.nfca_poll_iso_dep;
385
		nfca_poll->rats_res_len = min_t(__u8, *data++, 20);
386
		pr_debug("rats_res_len %d\n", nfca_poll->rats_res_len);
387 388
		if (nfca_poll->rats_res_len > 0) {
			memcpy(nfca_poll->rats_res,
S
Samuel Ortiz 已提交
389
			       data, nfca_poll->rats_res_len);
390 391 392
		}
		break;

393 394
	case NCI_NFC_B_PASSIVE_POLL_MODE:
		nfcb_poll = &ntf->activation_params.nfcb_poll_iso_dep;
395
		nfcb_poll->attrib_res_len = min_t(__u8, *data++, 50);
S
Samuel Ortiz 已提交
396
		pr_debug("attrib_res_len %d\n", nfcb_poll->attrib_res_len);
397 398
		if (nfcb_poll->attrib_res_len > 0) {
			memcpy(nfcb_poll->attrib_res,
S
Samuel Ortiz 已提交
399
			       data, nfcb_poll->attrib_res_len);
400 401 402
		}
		break;

403
	default:
J
Joe Perches 已提交
404 405
		pr_err("unsupported activation_rf_tech_and_mode 0x%x\n",
		       ntf->activation_rf_tech_and_mode);
406
		return NCI_STATUS_RF_PROTOCOL_ERROR;
407 408
	}

409
	return NCI_STATUS_OK;
410 411
}

412 413 414 415
static int nci_extract_activation_params_nfc_dep(struct nci_dev *ndev,
			struct nci_rf_intf_activated_ntf *ntf, __u8 *data)
{
	struct activation_params_poll_nfc_dep *poll;
416
	struct activation_params_listen_nfc_dep *listen;
417 418 419 420 421

	switch (ntf->activation_rf_tech_and_mode) {
	case NCI_NFC_A_PASSIVE_POLL_MODE:
	case NCI_NFC_F_PASSIVE_POLL_MODE:
		poll = &ntf->activation_params.poll_nfc_dep;
422 423
		poll->atr_res_len = min_t(__u8, *data++,
					  NFC_ATR_RES_MAXSIZE - 2);
424
		pr_debug("atr_res_len %d\n", poll->atr_res_len);
425 426
		if (poll->atr_res_len > 0)
			memcpy(poll->atr_res, data, poll->atr_res_len);
427 428
		break;

429 430 431 432 433 434 435 436 437 438
	case NCI_NFC_A_PASSIVE_LISTEN_MODE:
	case NCI_NFC_F_PASSIVE_LISTEN_MODE:
		listen = &ntf->activation_params.listen_nfc_dep;
		listen->atr_req_len = min_t(__u8, *data++,
					    NFC_ATR_REQ_MAXSIZE - 2);
		pr_debug("atr_req_len %d\n", listen->atr_req_len);
		if (listen->atr_req_len > 0)
			memcpy(listen->atr_req, data, listen->atr_req_len);
		break;

439 440 441 442 443 444 445 446 447
	default:
		pr_err("unsupported activation_rf_tech_and_mode 0x%x\n",
		       ntf->activation_rf_tech_and_mode);
		return NCI_STATUS_RF_PROTOCOL_ERROR;
	}

	return NCI_STATUS_OK;
}

448
static void nci_target_auto_activated(struct nci_dev *ndev,
S
Samuel Ortiz 已提交
449
				      struct nci_rf_intf_activated_ntf *ntf)
450
{
451 452
	struct nfc_target *target;
	int rc;
453

454
	target = &ndev->targets[ndev->n_targets];
455

456
	rc = nci_add_new_protocol(ndev, target, ntf->rf_protocol,
S
Samuel Ortiz 已提交
457 458
				  ntf->activation_rf_tech_and_mode,
				  &ntf->rf_tech_specific_params);
459
	if (rc)
460 461
		return;

462
	target->logical_idx = ntf->rf_discovery_id;
463
	ndev->n_targets++;
464

465 466
	pr_debug("logical idx %d, n_targets %d\n",
		 target->logical_idx, ndev->n_targets);
467

468
	nfc_targets_found(ndev->nfc_dev, ndev->targets, ndev->n_targets);
469 470
}

471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514
static int nci_store_general_bytes_nfc_dep(struct nci_dev *ndev,
		struct nci_rf_intf_activated_ntf *ntf)
{
	ndev->remote_gb_len = 0;

	if (ntf->activation_params_len <= 0)
		return NCI_STATUS_OK;

	switch (ntf->activation_rf_tech_and_mode) {
	case NCI_NFC_A_PASSIVE_POLL_MODE:
	case NCI_NFC_F_PASSIVE_POLL_MODE:
		/* ATR_RES general bytes at offset 15 */
		ndev->remote_gb_len = min_t(__u8,
			(ntf->activation_params.poll_nfc_dep.atr_res_len
						- NFC_ATR_RES_GT_OFFSET),
			NFC_MAX_GT_LEN);
		memcpy(ndev->remote_gb,
		       (ntf->activation_params.poll_nfc_dep .atr_res
						+ NFC_ATR_RES_GT_OFFSET),
		       ndev->remote_gb_len);
		break;

	case NCI_NFC_A_PASSIVE_LISTEN_MODE:
	case NCI_NFC_F_PASSIVE_LISTEN_MODE:
		/* ATR_REQ general bytes at offset 14 */
		ndev->remote_gb_len = min_t(__u8,
			(ntf->activation_params.listen_nfc_dep.atr_req_len
						- NFC_ATR_REQ_GT_OFFSET),
			NFC_MAX_GT_LEN);
		memcpy(ndev->remote_gb,
		       (ntf->activation_params.listen_nfc_dep.atr_req
						+ NFC_ATR_REQ_GT_OFFSET),
		       ndev->remote_gb_len);
		break;

	default:
		pr_err("unsupported activation_rf_tech_and_mode 0x%x\n",
		       ntf->activation_rf_tech_and_mode);
		return NCI_STATUS_RF_PROTOCOL_ERROR;
	}

	return NCI_STATUS_OK;
}

515
static void nci_rf_intf_activated_ntf_packet(struct nci_dev *ndev,
S
Samuel Ortiz 已提交
516
					     struct sk_buff *skb)
517
{
518
	struct nci_rf_intf_activated_ntf ntf;
519
	__u8 *data = skb->data;
520
	int err = NCI_STATUS_OK;
521

522
	ntf.rf_discovery_id = *data++;
523
	ntf.rf_interface = *data++;
524
	ntf.rf_protocol = *data++;
525
	ntf.activation_rf_tech_and_mode = *data++;
526 527
	ntf.max_data_pkt_payload_size = *data++;
	ntf.initial_num_credits = *data++;
528 529
	ntf.rf_tech_specific_params_len = *data++;

J
Joe Perches 已提交
530
	pr_debug("rf_discovery_id %d\n", ntf.rf_discovery_id);
531
	pr_debug("rf_interface 0x%x\n", ntf.rf_interface);
J
Joe Perches 已提交
532 533 534
	pr_debug("rf_protocol 0x%x\n", ntf.rf_protocol);
	pr_debug("activation_rf_tech_and_mode 0x%x\n",
		 ntf.activation_rf_tech_and_mode);
535 536
	pr_debug("max_data_pkt_payload_size 0x%x\n",
		 ntf.max_data_pkt_payload_size);
S
Samuel Ortiz 已提交
537 538
	pr_debug("initial_num_credits 0x%x\n",
		 ntf.initial_num_credits);
J
Joe Perches 已提交
539 540
	pr_debug("rf_tech_specific_params_len %d\n",
		 ntf.rf_tech_specific_params_len);
541

542 543 544 545
	if (ntf.rf_tech_specific_params_len > 0) {
		switch (ntf.activation_rf_tech_and_mode) {
		case NCI_NFC_A_PASSIVE_POLL_MODE:
			data = nci_extract_rf_params_nfca_passive_poll(ndev,
546
				&(ntf.rf_tech_specific_params.nfca_poll), data);
547 548
			break;

549 550
		case NCI_NFC_B_PASSIVE_POLL_MODE:
			data = nci_extract_rf_params_nfcb_passive_poll(ndev,
551
				&(ntf.rf_tech_specific_params.nfcb_poll), data);
552 553 554 555
			break;

		case NCI_NFC_F_PASSIVE_POLL_MODE:
			data = nci_extract_rf_params_nfcf_passive_poll(ndev,
556
				&(ntf.rf_tech_specific_params.nfcf_poll), data);
557 558
			break;

559 560 561 562 563
		case NCI_NFC_V_PASSIVE_POLL_MODE:
			data = nci_extract_rf_params_nfcv_passive_poll(ndev,
				&(ntf.rf_tech_specific_params.nfcv_poll), data);
			break;

564 565 566 567 568 569 570 571 572 573
		case NCI_NFC_A_PASSIVE_LISTEN_MODE:
			/* no RF technology specific parameters */
			break;

		case NCI_NFC_F_PASSIVE_LISTEN_MODE:
			data = nci_extract_rf_params_nfcf_passive_listen(ndev,
				&(ntf.rf_tech_specific_params.nfcf_listen),
				data);
			break;

574
		default:
J
Joe Perches 已提交
575 576
			pr_err("unsupported activation_rf_tech_and_mode 0x%x\n",
			       ntf.activation_rf_tech_and_mode);
577 578
			err = NCI_STATUS_RF_PROTOCOL_ERROR;
			goto exit;
579 580
		}
	}
581

582 583 584 585 586
	ntf.data_exch_rf_tech_and_mode = *data++;
	ntf.data_exch_tx_bit_rate = *data++;
	ntf.data_exch_rx_bit_rate = *data++;
	ntf.activation_params_len = *data++;

J
Joe Perches 已提交
587 588
	pr_debug("data_exch_rf_tech_and_mode 0x%x\n",
		 ntf.data_exch_rf_tech_and_mode);
S
Samuel Ortiz 已提交
589 590 591
	pr_debug("data_exch_tx_bit_rate 0x%x\n", ntf.data_exch_tx_bit_rate);
	pr_debug("data_exch_rx_bit_rate 0x%x\n", ntf.data_exch_rx_bit_rate);
	pr_debug("activation_params_len %d\n", ntf.activation_params_len);
592 593

	if (ntf.activation_params_len > 0) {
594
		switch (ntf.rf_interface) {
595 596
		case NCI_RF_INTERFACE_ISO_DEP:
			err = nci_extract_activation_params_iso_dep(ndev,
S
Samuel Ortiz 已提交
597
								    &ntf, data);
598 599
			break;

600 601 602 603 604
		case NCI_RF_INTERFACE_NFC_DEP:
			err = nci_extract_activation_params_nfc_dep(ndev,
								    &ntf, data);
			break;

605 606 607 608 609
		case NCI_RF_INTERFACE_FRAME:
			/* no activation params */
			break;

		default:
610 611
			pr_err("unsupported rf_interface 0x%x\n",
			       ntf.rf_interface);
612 613
			err = NCI_STATUS_RF_PROTOCOL_ERROR;
			break;
614
		}
615 616
	}

617 618 619 620 621 622 623
exit:
	if (err == NCI_STATUS_OK) {
		ndev->max_data_pkt_payload_size = ntf.max_data_pkt_payload_size;
		ndev->initial_num_credits = ntf.initial_num_credits;

		/* set the available credits to initial value */
		atomic_set(&ndev->credits_cnt, ndev->initial_num_credits);
624 625 626

		/* store general bytes to be reported later in dep_link_up */
		if (ntf.rf_interface == NCI_RF_INTERFACE_NFC_DEP) {
627 628 629
			err = nci_store_general_bytes_nfc_dep(ndev, &ntf);
			if (err != NCI_STATUS_OK)
				pr_err("unable to store general bytes\n");
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
	if (!(ntf.activation_rf_tech_and_mode & NCI_RF_TECH_MODE_LISTEN_MASK)) {
		/* Poll mode */
		if (atomic_read(&ndev->state) == NCI_DISCOVERY) {
			/* A single target was found and activated
			 * automatically */
			atomic_set(&ndev->state, NCI_POLL_ACTIVE);
			if (err == NCI_STATUS_OK)
				nci_target_auto_activated(ndev, &ntf);
		} else {	/* ndev->state == NCI_W4_HOST_SELECT */
			/* A selected target was activated, so complete the
			 * request */
			atomic_set(&ndev->state, NCI_POLL_ACTIVE);
			nci_req_complete(ndev, err);
		}
	} else {
		/* Listen mode */
		atomic_set(&ndev->state, NCI_LISTEN_ACTIVE);
		if (err == NCI_STATUS_OK &&
		    ntf.rf_protocol == NCI_RF_PROTOCOL_NFC_DEP) {
			err = nfc_tm_activated(ndev->nfc_dev,
					       NFC_PROTO_NFC_DEP_MASK,
					       NFC_COMM_PASSIVE,
					       ndev->remote_gb,
					       ndev->remote_gb_len);
			if (err != NCI_STATUS_OK)
				pr_err("error when signaling tm activation\n");
		}
660
	}
661 662 663
}

static void nci_rf_deactivate_ntf_packet(struct nci_dev *ndev,
S
Samuel Ortiz 已提交
664
					 struct sk_buff *skb)
665
{
666
	struct nci_rf_deactivate_ntf *ntf = (void *) skb->data;
667

J
Joe Perches 已提交
668
	pr_debug("entry, type 0x%x, reason 0x%x\n", ntf->type, ntf->reason);
669 670 671 672 673 674 675

	/* drop tx data queue */
	skb_queue_purge(&ndev->tx_q);

	/* drop partial rx data packet */
	if (ndev->rx_data_reassembly) {
		kfree_skb(ndev->rx_data_reassembly);
676
		ndev->rx_data_reassembly = NULL;
677 678 679
	}

	/* complete the data exchange transaction, if exists */
680
	if (test_bit(NCI_DATA_EXCHANGE, &ndev->flags))
681
		nci_data_exchange_complete(ndev, NULL, -EIO);
682

683
	nci_clear_target_list(ndev);
684 685 686 687
	if (ntf->type == NCI_DEACTIVATE_TYPE_DISCOVERY)
		atomic_set(&ndev->state, NCI_DISCOVERY);
	else
		atomic_set(&ndev->state, NCI_IDLE);
688
	nci_req_complete(ndev, NCI_STATUS_OK);
689 690 691 692 693 694
}

void nci_ntf_packet(struct nci_dev *ndev, struct sk_buff *skb)
{
	__u16 ntf_opcode = nci_opcode(skb->data);

J
Joe Perches 已提交
695 696 697 698 699
	pr_debug("NCI RX: MT=ntf, PBF=%d, GID=0x%x, OID=0x%x, plen=%d\n",
		 nci_pbf(skb->data),
		 nci_opcode_gid(ntf_opcode),
		 nci_opcode_oid(ntf_opcode),
		 nci_plen(skb->data));
700 701 702 703 704 705 706 707 708

	/* strip the nci control header */
	skb_pull(skb, NCI_CTRL_HDR_SIZE);

	switch (ntf_opcode) {
	case NCI_OP_CORE_CONN_CREDITS_NTF:
		nci_core_conn_credits_ntf_packet(ndev, skb);
		break;

709 710 711 712
	case NCI_OP_CORE_GENERIC_ERROR_NTF:
		nci_core_generic_error_ntf_packet(ndev, skb);
		break;

713 714 715 716
	case NCI_OP_CORE_INTF_ERROR_NTF:
		nci_core_conn_intf_error_ntf_packet(ndev, skb);
		break;

717 718 719 720
	case NCI_OP_RF_DISCOVER_NTF:
		nci_rf_discover_ntf_packet(ndev, skb);
		break;

721 722
	case NCI_OP_RF_INTF_ACTIVATED_NTF:
		nci_rf_intf_activated_ntf_packet(ndev, skb);
723 724 725 726 727 728 729
		break;

	case NCI_OP_RF_DEACTIVATE_NTF:
		nci_rf_deactivate_ntf_packet(ndev, skb);
		break;

	default:
J
Joe Perches 已提交
730
		pr_err("unknown ntf opcode 0x%x\n", ntf_opcode);
731 732 733 734 735
		break;
	}

	kfree_skb(skb);
}