mirror of
https://github.com/AetherDroid/android_kernel_samsung_on5xelte.git
synced 2025-09-09 01:28:05 -04:00
Fixed MTP to work with TWRP
This commit is contained in:
commit
f6dfaef42e
50820 changed files with 20846062 additions and 0 deletions
21
net/nfc/nci/Kconfig
Normal file
21
net/nfc/nci/Kconfig
Normal file
|
@ -0,0 +1,21 @@
|
|||
config NFC_NCI
|
||||
depends on NFC
|
||||
tristate "NCI protocol support"
|
||||
default n
|
||||
help
|
||||
NCI (NFC Controller Interface) is a communication protocol between
|
||||
an NFC Controller (NFCC) and a Device Host (DH).
|
||||
|
||||
Say Y here to compile NCI support into the kernel or say M to
|
||||
compile it as module (nci).
|
||||
|
||||
config NFC_NCI_SPI
|
||||
depends on NFC_NCI && SPI
|
||||
select CRC_CCITT
|
||||
bool "NCI over SPI protocol support"
|
||||
default n
|
||||
help
|
||||
NCI (NFC Controller Interface) is a communication protocol between
|
||||
an NFC Controller (NFCC) and a Device Host (DH).
|
||||
|
||||
Say yes if you use an NCI driver that requires SPI link layer.
|
9
net/nfc/nci/Makefile
Normal file
9
net/nfc/nci/Makefile
Normal file
|
@ -0,0 +1,9 @@
|
|||
#
|
||||
# Makefile for the Linux NFC NCI layer.
|
||||
#
|
||||
|
||||
obj-$(CONFIG_NFC_NCI) += nci.o
|
||||
|
||||
nci-objs := core.o data.o lib.o ntf.o rsp.o
|
||||
|
||||
nci-$(CONFIG_NFC_NCI_SPI) += spi.o
|
1013
net/nfc/nci/core.c
Normal file
1013
net/nfc/nci/core.c
Normal file
File diff suppressed because it is too large
Load diff
254
net/nfc/nci/data.c
Normal file
254
net/nfc/nci/data.c
Normal file
|
@ -0,0 +1,254 @@
|
|||
/*
|
||||
* The NFC Controller Interface is the communication protocol between an
|
||||
* NFC Controller (NFCC) and a Device Host (DH).
|
||||
*
|
||||
* Copyright (C) 2011 Texas Instruments, Inc.
|
||||
*
|
||||
* Written by Ilan Elias <ilane@ti.com>
|
||||
*
|
||||
* This program is free software; you can redistribute it and/or modify
|
||||
* it under the terms of the GNU General Public License version 2
|
||||
* as published by the Free Software Foundation
|
||||
*
|
||||
* This program is distributed in the hope that it will be useful,
|
||||
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
* GNU General Public License for more details.
|
||||
*
|
||||
* You should have received a copy of the GNU General Public License
|
||||
* along with this program; if not, see <http://www.gnu.org/licenses/>.
|
||||
*
|
||||
*/
|
||||
|
||||
#define pr_fmt(fmt) KBUILD_MODNAME ": %s: " fmt, __func__
|
||||
|
||||
#include <linux/types.h>
|
||||
#include <linux/interrupt.h>
|
||||
#include <linux/wait.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>
|
||||
|
||||
/* Complete data exchange transaction and forward skb to nfc core */
|
||||
void nci_data_exchange_complete(struct nci_dev *ndev, struct sk_buff *skb,
|
||||
int err)
|
||||
{
|
||||
data_exchange_cb_t cb = ndev->data_exchange_cb;
|
||||
void *cb_context = ndev->data_exchange_cb_context;
|
||||
|
||||
pr_debug("len %d, err %d\n", skb ? skb->len : 0, err);
|
||||
|
||||
/* data exchange is complete, stop the data timer */
|
||||
del_timer_sync(&ndev->data_timer);
|
||||
clear_bit(NCI_DATA_EXCHANGE_TO, &ndev->flags);
|
||||
|
||||
if (cb) {
|
||||
ndev->data_exchange_cb = NULL;
|
||||
ndev->data_exchange_cb_context = NULL;
|
||||
|
||||
/* forward skb to nfc core */
|
||||
cb(cb_context, skb, err);
|
||||
} else if (skb) {
|
||||
pr_err("no rx callback, dropping rx data...\n");
|
||||
|
||||
/* no waiting callback, free skb */
|
||||
kfree_skb(skb);
|
||||
}
|
||||
|
||||
clear_bit(NCI_DATA_EXCHANGE, &ndev->flags);
|
||||
}
|
||||
|
||||
/* ----------------- NCI TX Data ----------------- */
|
||||
|
||||
static inline void nci_push_data_hdr(struct nci_dev *ndev,
|
||||
__u8 conn_id,
|
||||
struct sk_buff *skb,
|
||||
__u8 pbf)
|
||||
{
|
||||
struct nci_data_hdr *hdr;
|
||||
int plen = skb->len;
|
||||
|
||||
hdr = (struct nci_data_hdr *) skb_push(skb, NCI_DATA_HDR_SIZE);
|
||||
hdr->conn_id = conn_id;
|
||||
hdr->rfu = 0;
|
||||
hdr->plen = plen;
|
||||
|
||||
nci_mt_set((__u8 *)hdr, NCI_MT_DATA_PKT);
|
||||
nci_pbf_set((__u8 *)hdr, pbf);
|
||||
}
|
||||
|
||||
static int nci_queue_tx_data_frags(struct nci_dev *ndev,
|
||||
__u8 conn_id,
|
||||
struct sk_buff *skb) {
|
||||
int total_len = skb->len;
|
||||
unsigned char *data = skb->data;
|
||||
unsigned long flags;
|
||||
struct sk_buff_head frags_q;
|
||||
struct sk_buff *skb_frag;
|
||||
int frag_len;
|
||||
int rc = 0;
|
||||
|
||||
pr_debug("conn_id 0x%x, total_len %d\n", conn_id, total_len);
|
||||
|
||||
__skb_queue_head_init(&frags_q);
|
||||
|
||||
while (total_len) {
|
||||
frag_len =
|
||||
min_t(int, total_len, ndev->max_data_pkt_payload_size);
|
||||
|
||||
skb_frag = nci_skb_alloc(ndev,
|
||||
(NCI_DATA_HDR_SIZE + frag_len),
|
||||
GFP_KERNEL);
|
||||
if (skb_frag == NULL) {
|
||||
rc = -ENOMEM;
|
||||
goto free_exit;
|
||||
}
|
||||
skb_reserve(skb_frag, NCI_DATA_HDR_SIZE);
|
||||
|
||||
/* first, copy the data */
|
||||
memcpy(skb_put(skb_frag, frag_len), data, frag_len);
|
||||
|
||||
/* second, set the header */
|
||||
nci_push_data_hdr(ndev, conn_id, skb_frag,
|
||||
((total_len == frag_len) ?
|
||||
(NCI_PBF_LAST) : (NCI_PBF_CONT)));
|
||||
|
||||
__skb_queue_tail(&frags_q, skb_frag);
|
||||
|
||||
data += frag_len;
|
||||
total_len -= frag_len;
|
||||
|
||||
pr_debug("frag_len %d, remaining total_len %d\n",
|
||||
frag_len, total_len);
|
||||
}
|
||||
|
||||
/* queue all fragments atomically */
|
||||
spin_lock_irqsave(&ndev->tx_q.lock, flags);
|
||||
|
||||
while ((skb_frag = __skb_dequeue(&frags_q)) != NULL)
|
||||
__skb_queue_tail(&ndev->tx_q, skb_frag);
|
||||
|
||||
spin_unlock_irqrestore(&ndev->tx_q.lock, flags);
|
||||
|
||||
/* free the original skb */
|
||||
kfree_skb(skb);
|
||||
|
||||
goto exit;
|
||||
|
||||
free_exit:
|
||||
while ((skb_frag = __skb_dequeue(&frags_q)) != NULL)
|
||||
kfree_skb(skb_frag);
|
||||
|
||||
exit:
|
||||
return rc;
|
||||
}
|
||||
|
||||
/* Send NCI data */
|
||||
int nci_send_data(struct nci_dev *ndev, __u8 conn_id, struct sk_buff *skb)
|
||||
{
|
||||
int rc = 0;
|
||||
|
||||
pr_debug("conn_id 0x%x, plen %d\n", conn_id, skb->len);
|
||||
|
||||
/* check if the packet need to be fragmented */
|
||||
if (skb->len <= ndev->max_data_pkt_payload_size) {
|
||||
/* no need to fragment packet */
|
||||
nci_push_data_hdr(ndev, conn_id, skb, NCI_PBF_LAST);
|
||||
|
||||
skb_queue_tail(&ndev->tx_q, skb);
|
||||
} else {
|
||||
/* fragment packet and queue the fragments */
|
||||
rc = nci_queue_tx_data_frags(ndev, conn_id, skb);
|
||||
if (rc) {
|
||||
pr_err("failed to fragment tx data packet\n");
|
||||
goto free_exit;
|
||||
}
|
||||
}
|
||||
|
||||
queue_work(ndev->tx_wq, &ndev->tx_work);
|
||||
|
||||
goto exit;
|
||||
|
||||
free_exit:
|
||||
kfree_skb(skb);
|
||||
|
||||
exit:
|
||||
return rc;
|
||||
}
|
||||
|
||||
/* ----------------- NCI RX Data ----------------- */
|
||||
|
||||
static void nci_add_rx_data_frag(struct nci_dev *ndev,
|
||||
struct sk_buff *skb,
|
||||
__u8 pbf)
|
||||
{
|
||||
int reassembly_len;
|
||||
int err = 0;
|
||||
|
||||
if (ndev->rx_data_reassembly) {
|
||||
reassembly_len = ndev->rx_data_reassembly->len;
|
||||
|
||||
/* first, make enough room for the already accumulated data */
|
||||
if (skb_cow_head(skb, reassembly_len)) {
|
||||
pr_err("error adding room for accumulated rx data\n");
|
||||
|
||||
kfree_skb(skb);
|
||||
skb = NULL;
|
||||
|
||||
kfree_skb(ndev->rx_data_reassembly);
|
||||
ndev->rx_data_reassembly = NULL;
|
||||
|
||||
err = -ENOMEM;
|
||||
goto exit;
|
||||
}
|
||||
|
||||
/* second, combine the two fragments */
|
||||
memcpy(skb_push(skb, reassembly_len),
|
||||
ndev->rx_data_reassembly->data,
|
||||
reassembly_len);
|
||||
|
||||
/* third, free old reassembly */
|
||||
kfree_skb(ndev->rx_data_reassembly);
|
||||
ndev->rx_data_reassembly = NULL;
|
||||
}
|
||||
|
||||
if (pbf == NCI_PBF_CONT) {
|
||||
/* need to wait for next fragment, store skb and exit */
|
||||
ndev->rx_data_reassembly = skb;
|
||||
return;
|
||||
}
|
||||
|
||||
exit:
|
||||
nci_data_exchange_complete(ndev, skb, err);
|
||||
}
|
||||
|
||||
/* Rx Data packet */
|
||||
void nci_rx_data_packet(struct nci_dev *ndev, struct sk_buff *skb)
|
||||
{
|
||||
__u8 pbf = nci_pbf(skb->data);
|
||||
|
||||
pr_debug("len %d\n", skb->len);
|
||||
|
||||
pr_debug("NCI RX: MT=data, PBF=%d, conn_id=%d, plen=%d\n",
|
||||
nci_pbf(skb->data),
|
||||
nci_conn_id(skb->data),
|
||||
nci_plen(skb->data));
|
||||
|
||||
/* strip the nci data header */
|
||||
skb_pull(skb, NCI_DATA_HDR_SIZE);
|
||||
|
||||
if (ndev->target_active_prot == NFC_PROTO_MIFARE ||
|
||||
ndev->target_active_prot == NFC_PROTO_JEWEL ||
|
||||
ndev->target_active_prot == NFC_PROTO_FELICA ||
|
||||
ndev->target_active_prot == NFC_PROTO_ISO15693) {
|
||||
/* frame I/F => remove the status byte */
|
||||
pr_debug("frame I/F => remove the status byte\n");
|
||||
skb_trim(skb, (skb->len - 1));
|
||||
}
|
||||
|
||||
nci_add_rx_data_frag(ndev, skb, pbf);
|
||||
}
|
85
net/nfc/nci/lib.c
Normal file
85
net/nfc/nci/lib.c
Normal file
|
@ -0,0 +1,85 @@
|
|||
/*
|
||||
* The NFC Controller Interface is the communication protocol between an
|
||||
* NFC Controller (NFCC) and a Device Host (DH).
|
||||
*
|
||||
* Copyright (C) 2011 Texas Instruments, Inc.
|
||||
*
|
||||
* Written by Ilan Elias <ilane@ti.com>
|
||||
*
|
||||
* Acknowledgements:
|
||||
* This file is based on lib.c, which was written
|
||||
* by Maxim Krasnyansky.
|
||||
*
|
||||
* This program is free software; you can redistribute it and/or modify
|
||||
* it under the terms of the GNU General Public License version 2
|
||||
* as published by the Free Software Foundation
|
||||
*
|
||||
* This program is distributed in the hope that it will be useful,
|
||||
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
* GNU General Public License for more details.
|
||||
*
|
||||
* You should have received a copy of the GNU General Public License
|
||||
* along with this program; if not, see <http://www.gnu.org/licenses/>.
|
||||
*
|
||||
*/
|
||||
|
||||
#include <linux/module.h>
|
||||
#include <linux/kernel.h>
|
||||
#include <linux/types.h>
|
||||
#include <linux/errno.h>
|
||||
|
||||
#include <net/nfc/nci.h>
|
||||
#include <net/nfc/nci_core.h>
|
||||
|
||||
/* NCI status codes to Unix errno mapping */
|
||||
int nci_to_errno(__u8 code)
|
||||
{
|
||||
switch (code) {
|
||||
case NCI_STATUS_OK:
|
||||
return 0;
|
||||
|
||||
case NCI_STATUS_REJECTED:
|
||||
return -EBUSY;
|
||||
|
||||
case NCI_STATUS_RF_FRAME_CORRUPTED:
|
||||
return -EBADMSG;
|
||||
|
||||
case NCI_STATUS_NOT_INITIALIZED:
|
||||
return -EHOSTDOWN;
|
||||
|
||||
case NCI_STATUS_SYNTAX_ERROR:
|
||||
case NCI_STATUS_SEMANTIC_ERROR:
|
||||
case NCI_STATUS_INVALID_PARAM:
|
||||
case NCI_STATUS_RF_PROTOCOL_ERROR:
|
||||
case NCI_STATUS_NFCEE_PROTOCOL_ERROR:
|
||||
return -EPROTO;
|
||||
|
||||
case NCI_STATUS_UNKNOWN_GID:
|
||||
case NCI_STATUS_UNKNOWN_OID:
|
||||
return -EBADRQC;
|
||||
|
||||
case NCI_STATUS_MESSAGE_SIZE_EXCEEDED:
|
||||
return -EMSGSIZE;
|
||||
|
||||
case NCI_STATUS_DISCOVERY_ALREADY_STARTED:
|
||||
return -EALREADY;
|
||||
|
||||
case NCI_STATUS_DISCOVERY_TARGET_ACTIVATION_FAILED:
|
||||
case NCI_STATUS_NFCEE_INTERFACE_ACTIVATION_FAILED:
|
||||
return -ECONNREFUSED;
|
||||
|
||||
case NCI_STATUS_RF_TRANSMISSION_ERROR:
|
||||
case NCI_STATUS_NFCEE_TRANSMISSION_ERROR:
|
||||
return -ECOMM;
|
||||
|
||||
case NCI_STATUS_RF_TIMEOUT_ERROR:
|
||||
case NCI_STATUS_NFCEE_TIMEOUT_ERROR:
|
||||
return -ETIMEDOUT;
|
||||
|
||||
case NCI_STATUS_FAILED:
|
||||
default:
|
||||
return -ENOSYS;
|
||||
}
|
||||
}
|
||||
EXPORT_SYMBOL(nci_to_errno);
|
647
net/nfc/nci/ntf.c
Normal file
647
net/nfc/nci/ntf.c
Normal file
|
@ -0,0 +1,647 @@
|
|||
/*
|
||||
* The NFC Controller Interface is the communication protocol between an
|
||||
* NFC Controller (NFCC) and a Device Host (DH).
|
||||
*
|
||||
* Copyright (C) 2014 Marvell International Ltd.
|
||||
* 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
|
||||
* along with this program; if not, see <http://www.gnu.org/licenses/>.
|
||||
*
|
||||
*/
|
||||
|
||||
#define pr_fmt(fmt) KBUILD_MODNAME ": %s: " fmt, __func__
|
||||
|
||||
#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,
|
||||
struct sk_buff *skb)
|
||||
{
|
||||
struct nci_core_conn_credit_ntf *ntf = (void *) skb->data;
|
||||
int i;
|
||||
|
||||
pr_debug("num_entries %d\n", ntf->num_entries);
|
||||
|
||||
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++) {
|
||||
ntf->conn_entries[i].conn_id =
|
||||
nci_conn_id(&ntf->conn_entries[i].conn_id);
|
||||
|
||||
pr_debug("entry[%d]: conn_id %d, credits %d\n",
|
||||
i, ntf->conn_entries[i].conn_id,
|
||||
ntf->conn_entries[i].credits);
|
||||
|
||||
if (ntf->conn_entries[i].conn_id == NCI_STATIC_RF_CONN_ID) {
|
||||
/* found static rf connection */
|
||||
atomic_add(ntf->conn_entries[i].credits,
|
||||
&ndev->credits_cnt);
|
||||
}
|
||||
}
|
||||
|
||||
/* trigger the next tx */
|
||||
if (!skb_queue_empty(&ndev->tx_q))
|
||||
queue_work(ndev->tx_wq, &ndev->tx_work);
|
||||
}
|
||||
|
||||
static void nci_core_generic_error_ntf_packet(struct nci_dev *ndev,
|
||||
struct sk_buff *skb)
|
||||
{
|
||||
__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
|
||||
(the state remains the same) */
|
||||
nci_req_complete(ndev, status);
|
||||
}
|
||||
}
|
||||
|
||||
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);
|
||||
}
|
||||
|
||||
static __u8 *nci_extract_rf_params_nfca_passive_poll(struct nci_dev *ndev,
|
||||
struct rf_tech_specific_params_nfca_poll *nfca_poll,
|
||||
__u8 *data)
|
||||
{
|
||||
nfca_poll->sens_res = __le16_to_cpu(*((__u16 *)data));
|
||||
data += 2;
|
||||
|
||||
nfca_poll->nfcid1_len = min_t(__u8, *data++, NFC_NFCID1_MAXSIZE);
|
||||
|
||||
pr_debug("sens_res 0x%x, nfcid1_len %d\n",
|
||||
nfca_poll->sens_res, nfca_poll->nfcid1_len);
|
||||
|
||||
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++;
|
||||
|
||||
pr_debug("sel_res_len %d, sel_res 0x%x\n",
|
||||
nfca_poll->sel_res_len,
|
||||
nfca_poll->sel_res);
|
||||
|
||||
return data;
|
||||
}
|
||||
|
||||
static __u8 *nci_extract_rf_params_nfcb_passive_poll(struct nci_dev *ndev,
|
||||
struct rf_tech_specific_params_nfcb_poll *nfcb_poll,
|
||||
__u8 *data)
|
||||
{
|
||||
nfcb_poll->sensb_res_len = min_t(__u8, *data++, NFC_SENSB_RES_MAXSIZE);
|
||||
|
||||
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,
|
||||
struct rf_tech_specific_params_nfcf_poll *nfcf_poll,
|
||||
__u8 *data)
|
||||
{
|
||||
nfcf_poll->bit_rate = *data++;
|
||||
nfcf_poll->sensf_res_len = min_t(__u8, *data++, NFC_SENSF_RES_MAXSIZE);
|
||||
|
||||
pr_debug("bit_rate %d, sensf_res_len %d\n",
|
||||
nfcf_poll->bit_rate, nfcf_poll->sensf_res_len);
|
||||
|
||||
memcpy(nfcf_poll->sensf_res, data, nfcf_poll->sensf_res_len);
|
||||
data += nfcf_poll->sensf_res_len;
|
||||
|
||||
return data;
|
||||
}
|
||||
|
||||
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;
|
||||
}
|
||||
|
||||
__u32 nci_get_prop_rf_protocol(struct nci_dev *ndev, __u8 rf_protocol)
|
||||
{
|
||||
if (ndev->ops->get_rfprotocol)
|
||||
return ndev->ops->get_rfprotocol(ndev, rf_protocol);
|
||||
return 0;
|
||||
}
|
||||
|
||||
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;
|
||||
struct rf_tech_specific_params_nfcv_poll *nfcv_poll;
|
||||
__u32 protocol;
|
||||
|
||||
if (rf_protocol == NCI_RF_PROTOCOL_T1T)
|
||||
protocol = NFC_PROTO_JEWEL_MASK;
|
||||
else if (rf_protocol == NCI_RF_PROTOCOL_T2T)
|
||||
protocol = NFC_PROTO_MIFARE_MASK;
|
||||
else if (rf_protocol == NCI_RF_PROTOCOL_ISO_DEP)
|
||||
if (rf_tech_and_mode == NCI_NFC_A_PASSIVE_POLL_MODE)
|
||||
protocol = NFC_PROTO_ISO14443_MASK;
|
||||
else
|
||||
protocol = NFC_PROTO_ISO14443_B_MASK;
|
||||
else if (rf_protocol == NCI_RF_PROTOCOL_T3T)
|
||||
protocol = NFC_PROTO_FELICA_MASK;
|
||||
else if (rf_protocol == NCI_RF_PROTOCOL_NFC_DEP)
|
||||
protocol = NFC_PROTO_NFC_DEP_MASK;
|
||||
else if (rf_protocol == NCI_RF_PROTOCOL_T5T)
|
||||
protocol = NFC_PROTO_ISO15693_MASK;
|
||||
else
|
||||
protocol = nci_get_prop_rf_protocol(ndev, rf_protocol);
|
||||
|
||||
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,
|
||||
target->nfcid1_len);
|
||||
}
|
||||
} 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,
|
||||
target->sensb_res_len);
|
||||
}
|
||||
} 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,
|
||||
target->sensf_res_len);
|
||||
}
|
||||
} 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);
|
||||
} 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,
|
||||
struct nci_rf_discover_ntf *ntf)
|
||||
{
|
||||
struct nfc_target *target;
|
||||
int i, rc;
|
||||
|
||||
for (i = 0; i < ndev->n_targets; i++) {
|
||||
target = &ndev->targets[i];
|
||||
if (target->logical_idx == ntf->rf_discovery_id) {
|
||||
/* This target already exists, add the new protocol */
|
||||
nci_add_new_protocol(ndev, target, ntf->rf_protocol,
|
||||
ntf->rf_tech_and_mode,
|
||||
&ntf->rf_tech_specific_params);
|
||||
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,
|
||||
ntf->rf_tech_and_mode,
|
||||
&ntf->rf_tech_specific_params);
|
||||
if (!rc) {
|
||||
target->logical_idx = ntf->rf_discovery_id;
|
||||
ndev->n_targets++;
|
||||
|
||||
pr_debug("logical idx %d, n_targets %d\n", target->logical_idx,
|
||||
ndev->n_targets);
|
||||
}
|
||||
}
|
||||
|
||||
void nci_clear_target_list(struct nci_dev *ndev)
|
||||
{
|
||||
memset(ndev->targets, 0,
|
||||
(sizeof(struct nfc_target)*NCI_MAX_DISCOVERED_TARGETS));
|
||||
|
||||
ndev->n_targets = 0;
|
||||
}
|
||||
|
||||
static void nci_rf_discover_ntf_packet(struct nci_dev *ndev,
|
||||
struct sk_buff *skb)
|
||||
{
|
||||
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",
|
||||
ntf.rf_tech_specific_params_len);
|
||||
|
||||
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;
|
||||
|
||||
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;
|
||||
|
||||
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,
|
||||
ndev->n_targets);
|
||||
}
|
||||
}
|
||||
|
||||
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;
|
||||
struct activation_params_nfcb_poll_iso_dep *nfcb_poll;
|
||||
|
||||
switch (ntf->activation_rf_tech_and_mode) {
|
||||
case NCI_NFC_A_PASSIVE_POLL_MODE:
|
||||
nfca_poll = &ntf->activation_params.nfca_poll_iso_dep;
|
||||
nfca_poll->rats_res_len = min_t(__u8, *data++, 20);
|
||||
pr_debug("rats_res_len %d\n", nfca_poll->rats_res_len);
|
||||
if (nfca_poll->rats_res_len > 0) {
|
||||
memcpy(nfca_poll->rats_res,
|
||||
data, nfca_poll->rats_res_len);
|
||||
}
|
||||
break;
|
||||
|
||||
case NCI_NFC_B_PASSIVE_POLL_MODE:
|
||||
nfcb_poll = &ntf->activation_params.nfcb_poll_iso_dep;
|
||||
nfcb_poll->attrib_res_len = min_t(__u8, *data++, 50);
|
||||
pr_debug("attrib_res_len %d\n", nfcb_poll->attrib_res_len);
|
||||
if (nfcb_poll->attrib_res_len > 0) {
|
||||
memcpy(nfcb_poll->attrib_res,
|
||||
data, nfcb_poll->attrib_res_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;
|
||||
}
|
||||
|
||||
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;
|
||||
|
||||
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;
|
||||
poll->atr_res_len = min_t(__u8, *data++, 63);
|
||||
pr_debug("atr_res_len %d\n", poll->atr_res_len);
|
||||
if (poll->atr_res_len > 0)
|
||||
memcpy(poll->atr_res, data, poll->atr_res_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;
|
||||
}
|
||||
|
||||
static void nci_target_auto_activated(struct nci_dev *ndev,
|
||||
struct nci_rf_intf_activated_ntf *ntf)
|
||||
{
|
||||
struct nfc_target *target;
|
||||
int rc;
|
||||
|
||||
target = &ndev->targets[ndev->n_targets];
|
||||
|
||||
rc = nci_add_new_protocol(ndev, target, ntf->rf_protocol,
|
||||
ntf->activation_rf_tech_and_mode,
|
||||
&ntf->rf_tech_specific_params);
|
||||
if (rc)
|
||||
return;
|
||||
|
||||
target->logical_idx = ntf->rf_discovery_id;
|
||||
ndev->n_targets++;
|
||||
|
||||
pr_debug("logical idx %d, n_targets %d\n",
|
||||
target->logical_idx, ndev->n_targets);
|
||||
|
||||
nfc_targets_found(ndev->nfc_dev, ndev->targets, ndev->n_targets);
|
||||
}
|
||||
|
||||
static void nci_rf_intf_activated_ntf_packet(struct nci_dev *ndev,
|
||||
struct sk_buff *skb)
|
||||
{
|
||||
struct nci_rf_intf_activated_ntf ntf;
|
||||
__u8 *data = skb->data;
|
||||
int err = NCI_STATUS_OK;
|
||||
|
||||
ntf.rf_discovery_id = *data++;
|
||||
ntf.rf_interface = *data++;
|
||||
ntf.rf_protocol = *data++;
|
||||
ntf.activation_rf_tech_and_mode = *data++;
|
||||
ntf.max_data_pkt_payload_size = *data++;
|
||||
ntf.initial_num_credits = *data++;
|
||||
ntf.rf_tech_specific_params_len = *data++;
|
||||
|
||||
pr_debug("rf_discovery_id %d\n", ntf.rf_discovery_id);
|
||||
pr_debug("rf_interface 0x%x\n", ntf.rf_interface);
|
||||
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);
|
||||
pr_debug("max_data_pkt_payload_size 0x%x\n",
|
||||
ntf.max_data_pkt_payload_size);
|
||||
pr_debug("initial_num_credits 0x%x\n",
|
||||
ntf.initial_num_credits);
|
||||
pr_debug("rf_tech_specific_params_len %d\n",
|
||||
ntf.rf_tech_specific_params_len);
|
||||
|
||||
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,
|
||||
&(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;
|
||||
|
||||
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;
|
||||
|
||||
default:
|
||||
pr_err("unsupported activation_rf_tech_and_mode 0x%x\n",
|
||||
ntf.activation_rf_tech_and_mode);
|
||||
err = NCI_STATUS_RF_PROTOCOL_ERROR;
|
||||
goto exit;
|
||||
}
|
||||
}
|
||||
|
||||
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++;
|
||||
|
||||
pr_debug("data_exch_rf_tech_and_mode 0x%x\n",
|
||||
ntf.data_exch_rf_tech_and_mode);
|
||||
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);
|
||||
|
||||
if (ntf.activation_params_len > 0) {
|
||||
switch (ntf.rf_interface) {
|
||||
case NCI_RF_INTERFACE_ISO_DEP:
|
||||
err = nci_extract_activation_params_iso_dep(ndev,
|
||||
&ntf, data);
|
||||
break;
|
||||
|
||||
case NCI_RF_INTERFACE_NFC_DEP:
|
||||
err = nci_extract_activation_params_nfc_dep(ndev,
|
||||
&ntf, data);
|
||||
break;
|
||||
|
||||
case NCI_RF_INTERFACE_FRAME:
|
||||
/* no activation params */
|
||||
break;
|
||||
|
||||
default:
|
||||
pr_err("unsupported rf_interface 0x%x\n",
|
||||
ntf.rf_interface);
|
||||
err = NCI_STATUS_RF_PROTOCOL_ERROR;
|
||||
break;
|
||||
}
|
||||
}
|
||||
|
||||
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);
|
||||
|
||||
/* store general bytes to be reported later in dep_link_up */
|
||||
if (ntf.rf_interface == NCI_RF_INTERFACE_NFC_DEP) {
|
||||
ndev->remote_gb_len = 0;
|
||||
|
||||
if (ntf.activation_params_len > 0) {
|
||||
/* 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);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
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);
|
||||
}
|
||||
}
|
||||
|
||||
static void nci_rf_deactivate_ntf_packet(struct nci_dev *ndev,
|
||||
struct sk_buff *skb)
|
||||
{
|
||||
struct nci_rf_deactivate_ntf *ntf = (void *) skb->data;
|
||||
|
||||
pr_debug("entry, type 0x%x, reason 0x%x\n", ntf->type, ntf->reason);
|
||||
|
||||
/* 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);
|
||||
ndev->rx_data_reassembly = NULL;
|
||||
}
|
||||
|
||||
/* complete the data exchange transaction, if exists */
|
||||
if (test_bit(NCI_DATA_EXCHANGE, &ndev->flags))
|
||||
nci_data_exchange_complete(ndev, NULL, -EIO);
|
||||
|
||||
nci_clear_target_list(ndev);
|
||||
atomic_set(&ndev->state, NCI_IDLE);
|
||||
nci_req_complete(ndev, NCI_STATUS_OK);
|
||||
}
|
||||
|
||||
void nci_ntf_packet(struct nci_dev *ndev, struct sk_buff *skb)
|
||||
{
|
||||
__u16 ntf_opcode = nci_opcode(skb->data);
|
||||
|
||||
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));
|
||||
|
||||
/* 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;
|
||||
|
||||
case NCI_OP_CORE_GENERIC_ERROR_NTF:
|
||||
nci_core_generic_error_ntf_packet(ndev, skb);
|
||||
break;
|
||||
|
||||
case NCI_OP_CORE_INTF_ERROR_NTF:
|
||||
nci_core_conn_intf_error_ntf_packet(ndev, skb);
|
||||
break;
|
||||
|
||||
case NCI_OP_RF_DISCOVER_NTF:
|
||||
nci_rf_discover_ntf_packet(ndev, skb);
|
||||
break;
|
||||
|
||||
case NCI_OP_RF_INTF_ACTIVATED_NTF:
|
||||
nci_rf_intf_activated_ntf_packet(ndev, skb);
|
||||
break;
|
||||
|
||||
case NCI_OP_RF_DEACTIVATE_NTF:
|
||||
nci_rf_deactivate_ntf_packet(ndev, skb);
|
||||
break;
|
||||
|
||||
default:
|
||||
pr_err("unknown ntf opcode 0x%x\n", ntf_opcode);
|
||||
break;
|
||||
}
|
||||
|
||||
kfree_skb(skb);
|
||||
}
|
237
net/nfc/nci/rsp.c
Normal file
237
net/nfc/nci/rsp.c
Normal file
|
@ -0,0 +1,237 @@
|
|||
/*
|
||||
* The NFC Controller Interface is the communication protocol between an
|
||||
* NFC Controller (NFCC) and a Device Host (DH).
|
||||
*
|
||||
* Copyright (C) 2011 Texas Instruments, Inc.
|
||||
*
|
||||
* Written by Ilan Elias <ilane@ti.com>
|
||||
*
|
||||
* Acknowledgements:
|
||||
* This file is based on hci_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
|
||||
* along with this program; if not, see <http://www.gnu.org/licenses/>.
|
||||
*
|
||||
*/
|
||||
|
||||
#define pr_fmt(fmt) KBUILD_MODNAME ": %s: " fmt, __func__
|
||||
|
||||
#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>
|
||||
|
||||
/* Handle NCI Response packets */
|
||||
|
||||
static void nci_core_reset_rsp_packet(struct nci_dev *ndev, struct sk_buff *skb)
|
||||
{
|
||||
struct nci_core_reset_rsp *rsp = (void *) skb->data;
|
||||
|
||||
pr_debug("status 0x%x\n", rsp->status);
|
||||
|
||||
if (rsp->status == NCI_STATUS_OK) {
|
||||
ndev->nci_ver = rsp->nci_ver;
|
||||
pr_debug("nci_ver 0x%x, config_status 0x%x\n",
|
||||
rsp->nci_ver, rsp->config_status);
|
||||
}
|
||||
|
||||
nci_req_complete(ndev, rsp->status);
|
||||
}
|
||||
|
||||
static void nci_core_init_rsp_packet(struct nci_dev *ndev, struct sk_buff *skb)
|
||||
{
|
||||
struct nci_core_init_rsp_1 *rsp_1 = (void *) skb->data;
|
||||
struct nci_core_init_rsp_2 *rsp_2;
|
||||
|
||||
pr_debug("status 0x%x\n", rsp_1->status);
|
||||
|
||||
if (rsp_1->status != NCI_STATUS_OK)
|
||||
goto exit;
|
||||
|
||||
ndev->nfcc_features = __le32_to_cpu(rsp_1->nfcc_features);
|
||||
ndev->num_supported_rf_interfaces = rsp_1->num_supported_rf_interfaces;
|
||||
|
||||
if (ndev->num_supported_rf_interfaces >
|
||||
NCI_MAX_SUPPORTED_RF_INTERFACES) {
|
||||
ndev->num_supported_rf_interfaces =
|
||||
NCI_MAX_SUPPORTED_RF_INTERFACES;
|
||||
}
|
||||
|
||||
memcpy(ndev->supported_rf_interfaces,
|
||||
rsp_1->supported_rf_interfaces,
|
||||
ndev->num_supported_rf_interfaces);
|
||||
|
||||
rsp_2 = (void *) (skb->data + 6 + rsp_1->num_supported_rf_interfaces);
|
||||
|
||||
ndev->max_logical_connections = rsp_2->max_logical_connections;
|
||||
ndev->max_routing_table_size =
|
||||
__le16_to_cpu(rsp_2->max_routing_table_size);
|
||||
ndev->max_ctrl_pkt_payload_len =
|
||||
rsp_2->max_ctrl_pkt_payload_len;
|
||||
ndev->max_size_for_large_params =
|
||||
__le16_to_cpu(rsp_2->max_size_for_large_params);
|
||||
ndev->manufact_id =
|
||||
rsp_2->manufact_id;
|
||||
ndev->manufact_specific_info =
|
||||
__le32_to_cpu(rsp_2->manufact_specific_info);
|
||||
|
||||
pr_debug("nfcc_features 0x%x\n",
|
||||
ndev->nfcc_features);
|
||||
pr_debug("num_supported_rf_interfaces %d\n",
|
||||
ndev->num_supported_rf_interfaces);
|
||||
pr_debug("supported_rf_interfaces[0] 0x%x\n",
|
||||
ndev->supported_rf_interfaces[0]);
|
||||
pr_debug("supported_rf_interfaces[1] 0x%x\n",
|
||||
ndev->supported_rf_interfaces[1]);
|
||||
pr_debug("supported_rf_interfaces[2] 0x%x\n",
|
||||
ndev->supported_rf_interfaces[2]);
|
||||
pr_debug("supported_rf_interfaces[3] 0x%x\n",
|
||||
ndev->supported_rf_interfaces[3]);
|
||||
pr_debug("max_logical_connections %d\n",
|
||||
ndev->max_logical_connections);
|
||||
pr_debug("max_routing_table_size %d\n",
|
||||
ndev->max_routing_table_size);
|
||||
pr_debug("max_ctrl_pkt_payload_len %d\n",
|
||||
ndev->max_ctrl_pkt_payload_len);
|
||||
pr_debug("max_size_for_large_params %d\n",
|
||||
ndev->max_size_for_large_params);
|
||||
pr_debug("manufact_id 0x%x\n",
|
||||
ndev->manufact_id);
|
||||
pr_debug("manufact_specific_info 0x%x\n",
|
||||
ndev->manufact_specific_info);
|
||||
|
||||
exit:
|
||||
nci_req_complete(ndev, rsp_1->status);
|
||||
}
|
||||
|
||||
static void nci_core_set_config_rsp_packet(struct nci_dev *ndev,
|
||||
struct sk_buff *skb)
|
||||
{
|
||||
struct nci_core_set_config_rsp *rsp = (void *) skb->data;
|
||||
|
||||
pr_debug("status 0x%x\n", rsp->status);
|
||||
|
||||
nci_req_complete(ndev, rsp->status);
|
||||
}
|
||||
|
||||
static void nci_rf_disc_map_rsp_packet(struct nci_dev *ndev,
|
||||
struct sk_buff *skb)
|
||||
{
|
||||
__u8 status = skb->data[0];
|
||||
|
||||
pr_debug("status 0x%x\n", status);
|
||||
|
||||
nci_req_complete(ndev, status);
|
||||
}
|
||||
|
||||
static void nci_rf_disc_rsp_packet(struct nci_dev *ndev, struct sk_buff *skb)
|
||||
{
|
||||
__u8 status = skb->data[0];
|
||||
|
||||
pr_debug("status 0x%x\n", status);
|
||||
|
||||
if (status == NCI_STATUS_OK)
|
||||
atomic_set(&ndev->state, NCI_DISCOVERY);
|
||||
|
||||
nci_req_complete(ndev, status);
|
||||
}
|
||||
|
||||
static void nci_rf_disc_select_rsp_packet(struct nci_dev *ndev,
|
||||
struct sk_buff *skb)
|
||||
{
|
||||
__u8 status = skb->data[0];
|
||||
|
||||
pr_debug("status 0x%x\n", status);
|
||||
|
||||
/* Complete the request on intf_activated_ntf or generic_error_ntf */
|
||||
if (status != NCI_STATUS_OK)
|
||||
nci_req_complete(ndev, status);
|
||||
}
|
||||
|
||||
static void nci_rf_deactivate_rsp_packet(struct nci_dev *ndev,
|
||||
struct sk_buff *skb)
|
||||
{
|
||||
__u8 status = skb->data[0];
|
||||
|
||||
pr_debug("status 0x%x\n", status);
|
||||
|
||||
/* If target was active, complete the request only in deactivate_ntf */
|
||||
if ((status != NCI_STATUS_OK) ||
|
||||
(atomic_read(&ndev->state) != NCI_POLL_ACTIVE)) {
|
||||
nci_clear_target_list(ndev);
|
||||
atomic_set(&ndev->state, NCI_IDLE);
|
||||
nci_req_complete(ndev, status);
|
||||
}
|
||||
}
|
||||
|
||||
void nci_rsp_packet(struct nci_dev *ndev, struct sk_buff *skb)
|
||||
{
|
||||
__u16 rsp_opcode = nci_opcode(skb->data);
|
||||
|
||||
/* we got a rsp, stop the cmd timer */
|
||||
del_timer(&ndev->cmd_timer);
|
||||
|
||||
pr_debug("NCI RX: MT=rsp, PBF=%d, GID=0x%x, OID=0x%x, plen=%d\n",
|
||||
nci_pbf(skb->data),
|
||||
nci_opcode_gid(rsp_opcode),
|
||||
nci_opcode_oid(rsp_opcode),
|
||||
nci_plen(skb->data));
|
||||
|
||||
/* strip the nci control header */
|
||||
skb_pull(skb, NCI_CTRL_HDR_SIZE);
|
||||
|
||||
switch (rsp_opcode) {
|
||||
case NCI_OP_CORE_RESET_RSP:
|
||||
nci_core_reset_rsp_packet(ndev, skb);
|
||||
break;
|
||||
|
||||
case NCI_OP_CORE_INIT_RSP:
|
||||
nci_core_init_rsp_packet(ndev, skb);
|
||||
break;
|
||||
|
||||
case NCI_OP_CORE_SET_CONFIG_RSP:
|
||||
nci_core_set_config_rsp_packet(ndev, skb);
|
||||
break;
|
||||
|
||||
case NCI_OP_RF_DISCOVER_MAP_RSP:
|
||||
nci_rf_disc_map_rsp_packet(ndev, skb);
|
||||
break;
|
||||
|
||||
case NCI_OP_RF_DISCOVER_RSP:
|
||||
nci_rf_disc_rsp_packet(ndev, skb);
|
||||
break;
|
||||
|
||||
case NCI_OP_RF_DISCOVER_SELECT_RSP:
|
||||
nci_rf_disc_select_rsp_packet(ndev, skb);
|
||||
break;
|
||||
|
||||
case NCI_OP_RF_DEACTIVATE_RSP:
|
||||
nci_rf_deactivate_rsp_packet(ndev, skb);
|
||||
break;
|
||||
|
||||
default:
|
||||
pr_err("unknown rsp opcode 0x%x\n", rsp_opcode);
|
||||
break;
|
||||
}
|
||||
|
||||
kfree_skb(skb);
|
||||
|
||||
/* trigger the next cmd */
|
||||
atomic_set(&ndev->cmd_cnt, 1);
|
||||
if (!skb_queue_empty(&ndev->cmd_q))
|
||||
queue_work(ndev->cmd_wq, &ndev->cmd_work);
|
||||
}
|
322
net/nfc/nci/spi.c
Normal file
322
net/nfc/nci/spi.c
Normal file
|
@ -0,0 +1,322 @@
|
|||
/*
|
||||
* Copyright (C) 2013 Intel Corporation. All rights reserved.
|
||||
*
|
||||
* This program is free software; you can redistribute it and/or modify it
|
||||
* under the terms and conditions of the GNU General Public License,
|
||||
* version 2, as published by the Free Software Foundation.
|
||||
*
|
||||
* This program is distributed in the hope it will be useful, but WITHOUT
|
||||
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
|
||||
* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for
|
||||
* more details.
|
||||
*
|
||||
* You should have received a copy of the GNU General Public License along with
|
||||
* this program; if not, write to the Free Software Foundation, Inc.,
|
||||
* 51 Franklin St - Fifth Floor, Boston, MA 02110-1301 USA.
|
||||
*
|
||||
*/
|
||||
|
||||
#define pr_fmt(fmt) "nci_spi: %s: " fmt, __func__
|
||||
|
||||
#include <linux/export.h>
|
||||
#include <linux/spi/spi.h>
|
||||
#include <linux/crc-ccitt.h>
|
||||
#include <net/nfc/nci_core.h>
|
||||
|
||||
#define NCI_SPI_ACK_SHIFT 6
|
||||
#define NCI_SPI_MSB_PAYLOAD_MASK 0x3F
|
||||
|
||||
#define NCI_SPI_SEND_TIMEOUT (NCI_CMD_TIMEOUT > NCI_DATA_TIMEOUT ? \
|
||||
NCI_CMD_TIMEOUT : NCI_DATA_TIMEOUT)
|
||||
|
||||
#define NCI_SPI_DIRECT_WRITE 0x01
|
||||
#define NCI_SPI_DIRECT_READ 0x02
|
||||
|
||||
#define ACKNOWLEDGE_NONE 0
|
||||
#define ACKNOWLEDGE_ACK 1
|
||||
#define ACKNOWLEDGE_NACK 2
|
||||
|
||||
#define CRC_INIT 0xFFFF
|
||||
|
||||
static int __nci_spi_send(struct nci_spi *nspi, struct sk_buff *skb,
|
||||
int cs_change)
|
||||
{
|
||||
struct spi_message m;
|
||||
struct spi_transfer t;
|
||||
|
||||
memset(&t, 0, sizeof(struct spi_transfer));
|
||||
/* a NULL skb means we just want the SPI chip select line to raise */
|
||||
if (skb) {
|
||||
t.tx_buf = skb->data;
|
||||
t.len = skb->len;
|
||||
} else {
|
||||
/* still set tx_buf non NULL to make the driver happy */
|
||||
t.tx_buf = &t;
|
||||
t.len = 0;
|
||||
}
|
||||
t.cs_change = cs_change;
|
||||
t.delay_usecs = nspi->xfer_udelay;
|
||||
|
||||
spi_message_init(&m);
|
||||
spi_message_add_tail(&t, &m);
|
||||
|
||||
return spi_sync(nspi->spi, &m);
|
||||
}
|
||||
|
||||
int nci_spi_send(struct nci_spi *nspi,
|
||||
struct completion *write_handshake_completion,
|
||||
struct sk_buff *skb)
|
||||
{
|
||||
unsigned int payload_len = skb->len;
|
||||
unsigned char *hdr;
|
||||
int ret;
|
||||
long completion_rc;
|
||||
|
||||
/* add the NCI SPI header to the start of the buffer */
|
||||
hdr = skb_push(skb, NCI_SPI_HDR_LEN);
|
||||
hdr[0] = NCI_SPI_DIRECT_WRITE;
|
||||
hdr[1] = nspi->acknowledge_mode;
|
||||
hdr[2] = payload_len >> 8;
|
||||
hdr[3] = payload_len & 0xFF;
|
||||
|
||||
if (nspi->acknowledge_mode == NCI_SPI_CRC_ENABLED) {
|
||||
u16 crc;
|
||||
|
||||
crc = crc_ccitt(CRC_INIT, skb->data, skb->len);
|
||||
*skb_put(skb, 1) = crc >> 8;
|
||||
*skb_put(skb, 1) = crc & 0xFF;
|
||||
}
|
||||
|
||||
if (write_handshake_completion) {
|
||||
/* Trick SPI driver to raise chip select */
|
||||
ret = __nci_spi_send(nspi, NULL, 1);
|
||||
if (ret)
|
||||
goto done;
|
||||
|
||||
/* wait for NFC chip hardware handshake to complete */
|
||||
if (wait_for_completion_timeout(write_handshake_completion,
|
||||
msecs_to_jiffies(1000)) == 0) {
|
||||
ret = -ETIME;
|
||||
goto done;
|
||||
}
|
||||
}
|
||||
|
||||
ret = __nci_spi_send(nspi, skb, 0);
|
||||
if (ret != 0 || nspi->acknowledge_mode == NCI_SPI_CRC_DISABLED)
|
||||
goto done;
|
||||
|
||||
reinit_completion(&nspi->req_completion);
|
||||
completion_rc = wait_for_completion_interruptible_timeout(
|
||||
&nspi->req_completion,
|
||||
NCI_SPI_SEND_TIMEOUT);
|
||||
|
||||
if (completion_rc <= 0 || nspi->req_result == ACKNOWLEDGE_NACK)
|
||||
ret = -EIO;
|
||||
|
||||
done:
|
||||
kfree_skb(skb);
|
||||
|
||||
return ret;
|
||||
}
|
||||
EXPORT_SYMBOL_GPL(nci_spi_send);
|
||||
|
||||
/* ---- Interface to NCI SPI drivers ---- */
|
||||
|
||||
/**
|
||||
* nci_spi_allocate_spi - allocate a new nci spi
|
||||
*
|
||||
* @spi: SPI device
|
||||
* @acknowledge_mode: Acknowledge mode used by the NFC device
|
||||
* @delay: delay between transactions in us
|
||||
* @ndev: nci dev to send incoming nci frames to
|
||||
*/
|
||||
struct nci_spi *nci_spi_allocate_spi(struct spi_device *spi,
|
||||
u8 acknowledge_mode, unsigned int delay,
|
||||
struct nci_dev *ndev)
|
||||
{
|
||||
struct nci_spi *nspi;
|
||||
|
||||
nspi = devm_kzalloc(&spi->dev, sizeof(struct nci_spi), GFP_KERNEL);
|
||||
if (!nspi)
|
||||
return NULL;
|
||||
|
||||
nspi->acknowledge_mode = acknowledge_mode;
|
||||
nspi->xfer_udelay = delay;
|
||||
|
||||
nspi->spi = spi;
|
||||
nspi->ndev = ndev;
|
||||
init_completion(&nspi->req_completion);
|
||||
|
||||
return nspi;
|
||||
}
|
||||
EXPORT_SYMBOL_GPL(nci_spi_allocate_spi);
|
||||
|
||||
static int send_acknowledge(struct nci_spi *nspi, u8 acknowledge)
|
||||
{
|
||||
struct sk_buff *skb;
|
||||
unsigned char *hdr;
|
||||
u16 crc;
|
||||
int ret;
|
||||
|
||||
skb = nci_skb_alloc(nspi->ndev, 0, GFP_KERNEL);
|
||||
|
||||
/* add the NCI SPI header to the start of the buffer */
|
||||
hdr = skb_push(skb, NCI_SPI_HDR_LEN);
|
||||
hdr[0] = NCI_SPI_DIRECT_WRITE;
|
||||
hdr[1] = NCI_SPI_CRC_ENABLED;
|
||||
hdr[2] = acknowledge << NCI_SPI_ACK_SHIFT;
|
||||
hdr[3] = 0;
|
||||
|
||||
crc = crc_ccitt(CRC_INIT, skb->data, skb->len);
|
||||
*skb_put(skb, 1) = crc >> 8;
|
||||
*skb_put(skb, 1) = crc & 0xFF;
|
||||
|
||||
ret = __nci_spi_send(nspi, skb, 0);
|
||||
|
||||
kfree_skb(skb);
|
||||
|
||||
return ret;
|
||||
}
|
||||
|
||||
static struct sk_buff *__nci_spi_read(struct nci_spi *nspi)
|
||||
{
|
||||
struct sk_buff *skb;
|
||||
struct spi_message m;
|
||||
unsigned char req[2], resp_hdr[2];
|
||||
struct spi_transfer tx, rx;
|
||||
unsigned short rx_len = 0;
|
||||
int ret;
|
||||
|
||||
spi_message_init(&m);
|
||||
|
||||
memset(&tx, 0, sizeof(struct spi_transfer));
|
||||
req[0] = NCI_SPI_DIRECT_READ;
|
||||
req[1] = nspi->acknowledge_mode;
|
||||
tx.tx_buf = req;
|
||||
tx.len = 2;
|
||||
tx.cs_change = 0;
|
||||
spi_message_add_tail(&tx, &m);
|
||||
|
||||
memset(&rx, 0, sizeof(struct spi_transfer));
|
||||
rx.rx_buf = resp_hdr;
|
||||
rx.len = 2;
|
||||
rx.cs_change = 1;
|
||||
spi_message_add_tail(&rx, &m);
|
||||
|
||||
ret = spi_sync(nspi->spi, &m);
|
||||
if (ret)
|
||||
return NULL;
|
||||
|
||||
if (nspi->acknowledge_mode == NCI_SPI_CRC_ENABLED)
|
||||
rx_len = ((resp_hdr[0] & NCI_SPI_MSB_PAYLOAD_MASK) << 8) +
|
||||
resp_hdr[1] + NCI_SPI_CRC_LEN;
|
||||
else
|
||||
rx_len = (resp_hdr[0] << 8) | resp_hdr[1];
|
||||
|
||||
skb = nci_skb_alloc(nspi->ndev, rx_len, GFP_KERNEL);
|
||||
if (!skb)
|
||||
return NULL;
|
||||
|
||||
spi_message_init(&m);
|
||||
|
||||
memset(&rx, 0, sizeof(struct spi_transfer));
|
||||
rx.rx_buf = skb_put(skb, rx_len);
|
||||
rx.len = rx_len;
|
||||
rx.cs_change = 0;
|
||||
rx.delay_usecs = nspi->xfer_udelay;
|
||||
spi_message_add_tail(&rx, &m);
|
||||
|
||||
ret = spi_sync(nspi->spi, &m);
|
||||
if (ret)
|
||||
goto receive_error;
|
||||
|
||||
if (nspi->acknowledge_mode == NCI_SPI_CRC_ENABLED) {
|
||||
*skb_push(skb, 1) = resp_hdr[1];
|
||||
*skb_push(skb, 1) = resp_hdr[0];
|
||||
}
|
||||
|
||||
return skb;
|
||||
|
||||
receive_error:
|
||||
kfree_skb(skb);
|
||||
|
||||
return NULL;
|
||||
}
|
||||
|
||||
static int nci_spi_check_crc(struct sk_buff *skb)
|
||||
{
|
||||
u16 crc_data = (skb->data[skb->len - 2] << 8) |
|
||||
skb->data[skb->len - 1];
|
||||
int ret;
|
||||
|
||||
ret = (crc_ccitt(CRC_INIT, skb->data, skb->len - NCI_SPI_CRC_LEN)
|
||||
== crc_data);
|
||||
|
||||
skb_trim(skb, skb->len - NCI_SPI_CRC_LEN);
|
||||
|
||||
return ret;
|
||||
}
|
||||
|
||||
static u8 nci_spi_get_ack(struct sk_buff *skb)
|
||||
{
|
||||
u8 ret;
|
||||
|
||||
ret = skb->data[0] >> NCI_SPI_ACK_SHIFT;
|
||||
|
||||
/* Remove NFCC part of the header: ACK, NACK and MSB payload len */
|
||||
skb_pull(skb, 2);
|
||||
|
||||
return ret;
|
||||
}
|
||||
|
||||
/**
|
||||
* nci_spi_read - read frame from NCI SPI drivers
|
||||
*
|
||||
* @nspi: The nci spi
|
||||
* Context: can sleep
|
||||
*
|
||||
* This call may only be used from a context that may sleep. The sleep
|
||||
* is non-interruptible, and has no timeout.
|
||||
*
|
||||
* It returns an allocated skb containing the frame on success, or NULL.
|
||||
*/
|
||||
struct sk_buff *nci_spi_read(struct nci_spi *nspi)
|
||||
{
|
||||
struct sk_buff *skb;
|
||||
|
||||
/* Retrieve frame from SPI */
|
||||
skb = __nci_spi_read(nspi);
|
||||
if (!skb)
|
||||
goto done;
|
||||
|
||||
if (nspi->acknowledge_mode == NCI_SPI_CRC_ENABLED) {
|
||||
if (!nci_spi_check_crc(skb)) {
|
||||
send_acknowledge(nspi, ACKNOWLEDGE_NACK);
|
||||
goto done;
|
||||
}
|
||||
|
||||
/* In case of acknowledged mode: if ACK or NACK received,
|
||||
* unblock completion of latest frame sent.
|
||||
*/
|
||||
nspi->req_result = nci_spi_get_ack(skb);
|
||||
if (nspi->req_result)
|
||||
complete(&nspi->req_completion);
|
||||
}
|
||||
|
||||
/* If there is no payload (ACK/NACK only frame),
|
||||
* free the socket buffer
|
||||
*/
|
||||
if (!skb->len) {
|
||||
kfree_skb(skb);
|
||||
skb = NULL;
|
||||
goto done;
|
||||
}
|
||||
|
||||
if (nspi->acknowledge_mode == NCI_SPI_CRC_ENABLED)
|
||||
send_acknowledge(nspi, ACKNOWLEDGE_ACK);
|
||||
|
||||
done:
|
||||
|
||||
return skb;
|
||||
}
|
||||
EXPORT_SYMBOL_GPL(nci_spi_read);
|
Loading…
Add table
Add a link
Reference in a new issue