2 * The NFC Controller Interface is the communication protocol between an
3 * NFC Controller (NFCC) and a Device Host (DH).
5 * Copyright (C) 2011 Texas Instruments, Inc.
7 * Written by Ilan Elias <ilane@ti.com>
10 * This file is based on hci_event.c, which was written
11 * by Maxim Krasnyansky.
13 * This program is free software; you can redistribute it and/or modify
14 * it under the terms of the GNU General Public License version 2
15 * as published by the Free Software Foundation
17 * This program is distributed in the hope that it will be useful,
18 * but WITHOUT ANY WARRANTY; without even the implied warranty of
19 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
20 * GNU General Public License for more details.
22 * You should have received a copy of the GNU General Public License
23 * along with this program; if not, write to the Free Software
24 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
28 #define pr_fmt(fmt) KBUILD_MODNAME ": %s: " fmt, __func__
30 #include <linux/types.h>
31 #include <linux/interrupt.h>
32 #include <linux/bitops.h>
33 #include <linux/skbuff.h>
36 #include <net/nfc/nci.h>
37 #include <net/nfc/nci_core.h>
39 /* Handle NCI Response packets */
41 static void nci_core_reset_rsp_packet(struct nci_dev
*ndev
, struct sk_buff
*skb
)
43 struct nci_core_reset_rsp
*rsp
= (void *) skb
->data
;
45 pr_debug("status 0x%x\n", rsp
->status
);
47 if (rsp
->status
== NCI_STATUS_OK
) {
48 ndev
->nci_ver
= rsp
->nci_ver
;
49 pr_debug("nci_ver 0x%x, config_status 0x%x\n",
50 rsp
->nci_ver
, rsp
->config_status
);
53 nci_req_complete(ndev
, rsp
->status
);
56 static void nci_core_init_rsp_packet(struct nci_dev
*ndev
, struct sk_buff
*skb
)
58 struct nci_core_init_rsp_1
*rsp_1
= (void *) skb
->data
;
59 struct nci_core_init_rsp_2
*rsp_2
;
61 pr_debug("status 0x%x\n", rsp_1
->status
);
63 if (rsp_1
->status
!= NCI_STATUS_OK
)
66 ndev
->nfcc_features
= __le32_to_cpu(rsp_1
->nfcc_features
);
67 ndev
->num_supported_rf_interfaces
= rsp_1
->num_supported_rf_interfaces
;
69 if (ndev
->num_supported_rf_interfaces
>
70 NCI_MAX_SUPPORTED_RF_INTERFACES
) {
71 ndev
->num_supported_rf_interfaces
=
72 NCI_MAX_SUPPORTED_RF_INTERFACES
;
75 memcpy(ndev
->supported_rf_interfaces
,
76 rsp_1
->supported_rf_interfaces
,
77 ndev
->num_supported_rf_interfaces
);
79 rsp_2
= (void *) (skb
->data
+ 6 + rsp_1
->num_supported_rf_interfaces
);
81 ndev
->max_logical_connections
= rsp_2
->max_logical_connections
;
82 ndev
->max_routing_table_size
=
83 __le16_to_cpu(rsp_2
->max_routing_table_size
);
84 ndev
->max_ctrl_pkt_payload_len
=
85 rsp_2
->max_ctrl_pkt_payload_len
;
86 ndev
->max_size_for_large_params
=
87 __le16_to_cpu(rsp_2
->max_size_for_large_params
);
90 ndev
->manufact_specific_info
=
91 __le32_to_cpu(rsp_2
->manufact_specific_info
);
93 pr_debug("nfcc_features 0x%x\n",
95 pr_debug("num_supported_rf_interfaces %d\n",
96 ndev
->num_supported_rf_interfaces
);
97 pr_debug("supported_rf_interfaces[0] 0x%x\n",
98 ndev
->supported_rf_interfaces
[0]);
99 pr_debug("supported_rf_interfaces[1] 0x%x\n",
100 ndev
->supported_rf_interfaces
[1]);
101 pr_debug("supported_rf_interfaces[2] 0x%x\n",
102 ndev
->supported_rf_interfaces
[2]);
103 pr_debug("supported_rf_interfaces[3] 0x%x\n",
104 ndev
->supported_rf_interfaces
[3]);
105 pr_debug("max_logical_connections %d\n",
106 ndev
->max_logical_connections
);
107 pr_debug("max_routing_table_size %d\n",
108 ndev
->max_routing_table_size
);
109 pr_debug("max_ctrl_pkt_payload_len %d\n",
110 ndev
->max_ctrl_pkt_payload_len
);
111 pr_debug("max_size_for_large_params %d\n",
112 ndev
->max_size_for_large_params
);
113 pr_debug("manufact_id 0x%x\n",
115 pr_debug("manufact_specific_info 0x%x\n",
116 ndev
->manufact_specific_info
);
119 nci_req_complete(ndev
, rsp_1
->status
);
122 static void nci_core_set_config_rsp_packet(struct nci_dev
*ndev
,
125 struct nci_core_set_config_rsp
*rsp
= (void *) skb
->data
;
127 pr_debug("status 0x%x\n", rsp
->status
);
129 nci_req_complete(ndev
, rsp
->status
);
132 static void nci_rf_disc_map_rsp_packet(struct nci_dev
*ndev
,
135 __u8 status
= skb
->data
[0];
137 pr_debug("status 0x%x\n", status
);
139 nci_req_complete(ndev
, status
);
142 static void nci_rf_disc_rsp_packet(struct nci_dev
*ndev
, struct sk_buff
*skb
)
144 __u8 status
= skb
->data
[0];
146 pr_debug("status 0x%x\n", status
);
148 if (status
== NCI_STATUS_OK
)
149 atomic_set(&ndev
->state
, NCI_DISCOVERY
);
151 nci_req_complete(ndev
, status
);
154 static void nci_rf_disc_select_rsp_packet(struct nci_dev
*ndev
,
157 __u8 status
= skb
->data
[0];
159 pr_debug("status 0x%x\n", status
);
161 /* Complete the request on intf_activated_ntf or generic_error_ntf */
162 if (status
!= NCI_STATUS_OK
)
163 nci_req_complete(ndev
, status
);
166 static void nci_rf_deactivate_rsp_packet(struct nci_dev
*ndev
,
169 __u8 status
= skb
->data
[0];
171 pr_debug("status 0x%x\n", status
);
173 /* If target was active, complete the request only in deactivate_ntf */
174 if ((status
!= NCI_STATUS_OK
) ||
175 (atomic_read(&ndev
->state
) != NCI_POLL_ACTIVE
)) {
176 nci_clear_target_list(ndev
);
177 atomic_set(&ndev
->state
, NCI_IDLE
);
178 nci_req_complete(ndev
, status
);
182 void nci_rsp_packet(struct nci_dev
*ndev
, struct sk_buff
*skb
)
184 __u16 rsp_opcode
= nci_opcode(skb
->data
);
186 /* we got a rsp, stop the cmd timer */
187 del_timer(&ndev
->cmd_timer
);
189 pr_debug("NCI RX: MT=rsp, PBF=%d, GID=0x%x, OID=0x%x, plen=%d\n",
191 nci_opcode_gid(rsp_opcode
),
192 nci_opcode_oid(rsp_opcode
),
193 nci_plen(skb
->data
));
195 /* strip the nci control header */
196 skb_pull(skb
, NCI_CTRL_HDR_SIZE
);
198 switch (rsp_opcode
) {
199 case NCI_OP_CORE_RESET_RSP
:
200 nci_core_reset_rsp_packet(ndev
, skb
);
203 case NCI_OP_CORE_INIT_RSP
:
204 nci_core_init_rsp_packet(ndev
, skb
);
207 case NCI_OP_CORE_SET_CONFIG_RSP
:
208 nci_core_set_config_rsp_packet(ndev
, skb
);
211 case NCI_OP_RF_DISCOVER_MAP_RSP
:
212 nci_rf_disc_map_rsp_packet(ndev
, skb
);
215 case NCI_OP_RF_DISCOVER_RSP
:
216 nci_rf_disc_rsp_packet(ndev
, skb
);
219 case NCI_OP_RF_DISCOVER_SELECT_RSP
:
220 nci_rf_disc_select_rsp_packet(ndev
, skb
);
223 case NCI_OP_RF_DEACTIVATE_RSP
:
224 nci_rf_deactivate_rsp_packet(ndev
, skb
);
228 pr_err("unknown rsp opcode 0x%x\n", rsp_opcode
);
234 /* trigger the next cmd */
235 atomic_set(&ndev
->cmd_cnt
, 1);
236 if (!skb_queue_empty(&ndev
->cmd_q
))
237 queue_work(ndev
->cmd_wq
, &ndev
->cmd_work
);