blob: 47403705197e85930d9f3e480d2e2d5dbd2012fa [file] [log] [blame]
Eric Lapuyade8b8d2e02012-04-10 19:43:06 +02001/*
2 * Copyright (C) 2012 Intel Corporation. All rights reserved.
3 *
4 * This program is free software; you can redistribute it and/or modify
5 * it under the terms of the GNU General Public License as published by
6 * the Free Software Foundation; either version 2 of the License, or
7 * (at your option) any later version.
8 *
9 * This program is distributed in the hope that it will be useful,
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 * GNU General Public License for more details.
13 *
14 * You should have received a copy of the GNU General Public License
Jeff Kirsher98b32de2013-12-06 08:56:16 -080015 * along with this program; if not, see <http://www.gnu.org/licenses/>.
Eric Lapuyade8b8d2e02012-04-10 19:43:06 +020016 */
17
18#define pr_fmt(fmt) "hci: %s: " fmt, __func__
19
20#include <linux/init.h>
21#include <linux/kernel.h>
22#include <linux/module.h>
23#include <linux/nfc.h>
24
25#include <net/nfc/nfc.h>
26#include <net/nfc/hci.h>
Eric Lapuyade67cccfe2012-09-13 17:10:00 +020027#include <net/nfc/llc.h>
Eric Lapuyade8b8d2e02012-04-10 19:43:06 +020028
29#include "hci.h"
30
31/* Largest headroom needed for outgoing HCI commands */
32#define HCI_CMDS_HEADROOM 1
33
Eric Lapuyade84d48192012-10-17 16:50:10 +020034int nfc_hci_result_to_errno(u8 result)
Eric Lapuyade6c1c5b92012-05-03 15:35:25 +020035{
36 switch (result) {
37 case NFC_HCI_ANY_OK:
38 return 0;
Eric Lapuyade23f7e6d2012-10-17 16:48:21 +020039 case NFC_HCI_ANY_E_REG_PAR_UNKNOWN:
40 return -EOPNOTSUPP;
Eric Lapuyade6c1c5b92012-05-03 15:35:25 +020041 case NFC_HCI_ANY_E_TIMEOUT:
42 return -ETIME;
43 default:
44 return -1;
45 }
46}
Eric Lapuyade84d48192012-10-17 16:50:10 +020047EXPORT_SYMBOL(nfc_hci_result_to_errno);
Eric Lapuyade6c1c5b92012-05-03 15:35:25 +020048
Eric Lapuyade8b8d2e02012-04-10 19:43:06 +020049static void nfc_hci_msg_tx_work(struct work_struct *work)
50{
51 struct nfc_hci_dev *hdev = container_of(work, struct nfc_hci_dev,
52 msg_tx_work);
53 struct hci_msg *msg;
54 struct sk_buff *skb;
55 int r = 0;
56
57 mutex_lock(&hdev->msg_tx_mutex);
Eric Lapuyadef0c91032012-11-26 18:06:27 +010058 if (hdev->shutting_down)
59 goto exit;
Eric Lapuyade8b8d2e02012-04-10 19:43:06 +020060
61 if (hdev->cmd_pending_msg) {
62 if (timer_pending(&hdev->cmd_timer) == 0) {
63 if (hdev->cmd_pending_msg->cb)
Eric Lapuyadeb5faa642012-09-11 10:41:41 +020064 hdev->cmd_pending_msg->cb(hdev->
Eric Lapuyade8b8d2e02012-04-10 19:43:06 +020065 cmd_pending_msg->
Eric Lapuyadeb5faa642012-09-11 10:41:41 +020066 cb_context,
67 NULL,
68 -ETIME);
Eric Lapuyade8b8d2e02012-04-10 19:43:06 +020069 kfree(hdev->cmd_pending_msg);
70 hdev->cmd_pending_msg = NULL;
Szymon Janc0f450772012-10-17 15:23:39 +020071 } else {
Eric Lapuyade8b8d2e02012-04-10 19:43:06 +020072 goto exit;
Szymon Janc0f450772012-10-17 15:23:39 +020073 }
Eric Lapuyade8b8d2e02012-04-10 19:43:06 +020074 }
75
76next_msg:
77 if (list_empty(&hdev->msg_tx_queue))
78 goto exit;
79
80 msg = list_first_entry(&hdev->msg_tx_queue, struct hci_msg, msg_l);
81 list_del(&msg->msg_l);
82
83 pr_debug("msg_tx_queue has a cmd to send\n");
84 while ((skb = skb_dequeue(&msg->msg_frags)) != NULL) {
Eric Lapuyade412fda52012-09-18 19:45:48 +020085 r = nfc_llc_xmit_from_hci(hdev->llc, skb);
Eric Lapuyade8b8d2e02012-04-10 19:43:06 +020086 if (r < 0) {
87 kfree_skb(skb);
88 skb_queue_purge(&msg->msg_frags);
89 if (msg->cb)
Eric Lapuyadeb5faa642012-09-11 10:41:41 +020090 msg->cb(msg->cb_context, NULL, r);
Eric Lapuyade8b8d2e02012-04-10 19:43:06 +020091 kfree(msg);
92 break;
93 }
94 }
95
96 if (r)
97 goto next_msg;
98
99 if (msg->wait_response == false) {
100 kfree(msg);
101 goto next_msg;
102 }
103
104 hdev->cmd_pending_msg = msg;
105 mod_timer(&hdev->cmd_timer, jiffies +
106 msecs_to_jiffies(hdev->cmd_pending_msg->completion_delay));
107
108exit:
109 mutex_unlock(&hdev->msg_tx_mutex);
110}
111
112static void nfc_hci_msg_rx_work(struct work_struct *work)
113{
114 struct nfc_hci_dev *hdev = container_of(work, struct nfc_hci_dev,
115 msg_rx_work);
116 struct sk_buff *skb;
117 struct hcp_message *message;
118 u8 pipe;
119 u8 type;
120 u8 instruction;
121
122 while ((skb = skb_dequeue(&hdev->msg_rx_queue)) != NULL) {
123 pipe = skb->data[0];
124 skb_pull(skb, NFC_HCI_HCP_PACKET_HEADER_LEN);
125 message = (struct hcp_message *)skb->data;
126 type = HCP_MSG_GET_TYPE(message->header);
127 instruction = HCP_MSG_GET_CMD(message->header);
128 skb_pull(skb, NFC_HCI_HCP_MESSAGE_HEADER_LEN);
129
130 nfc_hci_hcp_message_rx(hdev, pipe, type, instruction, skb);
131 }
132}
133
Eric Lapuyadeccca0d62012-05-03 15:59:37 +0200134static void __nfc_hci_cmd_completion(struct nfc_hci_dev *hdev, int err,
135 struct sk_buff *skb)
136{
137 del_timer_sync(&hdev->cmd_timer);
138
139 if (hdev->cmd_pending_msg->cb)
Eric Lapuyadeb5faa642012-09-11 10:41:41 +0200140 hdev->cmd_pending_msg->cb(hdev->cmd_pending_msg->cb_context,
141 skb, err);
Eric Lapuyadeccca0d62012-05-03 15:59:37 +0200142 else
143 kfree_skb(skb);
144
145 kfree(hdev->cmd_pending_msg);
146 hdev->cmd_pending_msg = NULL;
147
Linus Torvalds916082b2012-10-02 16:01:31 -0700148 schedule_work(&hdev->msg_tx_work);
Eric Lapuyadeccca0d62012-05-03 15:59:37 +0200149}
150
Eric Lapuyade8b8d2e02012-04-10 19:43:06 +0200151void nfc_hci_resp_received(struct nfc_hci_dev *hdev, u8 result,
152 struct sk_buff *skb)
153{
154 mutex_lock(&hdev->msg_tx_mutex);
155
156 if (hdev->cmd_pending_msg == NULL) {
157 kfree_skb(skb);
158 goto exit;
159 }
160
Eric Lapuyadeccca0d62012-05-03 15:59:37 +0200161 __nfc_hci_cmd_completion(hdev, nfc_hci_result_to_errno(result), skb);
Eric Lapuyade8b8d2e02012-04-10 19:43:06 +0200162
163exit:
164 mutex_unlock(&hdev->msg_tx_mutex);
165}
166
167void nfc_hci_cmd_received(struct nfc_hci_dev *hdev, u8 pipe, u8 cmd,
168 struct sk_buff *skb)
169{
170 kfree_skb(skb);
171}
172
Eric Lapuyade9c5121a2012-10-23 11:37:43 +0200173u32 nfc_hci_sak_to_protocol(u8 sak)
Eric Lapuyade8b8d2e02012-04-10 19:43:06 +0200174{
175 switch (NFC_HCI_TYPE_A_SEL_PROT(sak)) {
176 case NFC_HCI_TYPE_A_SEL_PROT_MIFARE:
177 return NFC_PROTO_MIFARE_MASK;
178 case NFC_HCI_TYPE_A_SEL_PROT_ISO14443:
179 return NFC_PROTO_ISO14443_MASK;
180 case NFC_HCI_TYPE_A_SEL_PROT_DEP:
181 return NFC_PROTO_NFC_DEP_MASK;
182 case NFC_HCI_TYPE_A_SEL_PROT_ISO14443_DEP:
183 return NFC_PROTO_ISO14443_MASK | NFC_PROTO_NFC_DEP_MASK;
184 default:
185 return 0xffffffff;
186 }
187}
Eric Lapuyade9c5121a2012-10-23 11:37:43 +0200188EXPORT_SYMBOL(nfc_hci_sak_to_protocol);
Eric Lapuyade8b8d2e02012-04-10 19:43:06 +0200189
Arron Wangf7a5f6c2012-09-27 17:32:55 +0800190int nfc_hci_target_discovered(struct nfc_hci_dev *hdev, u8 gate)
Eric Lapuyade8b8d2e02012-04-10 19:43:06 +0200191{
192 struct nfc_target *targets;
193 struct sk_buff *atqa_skb = NULL;
194 struct sk_buff *sak_skb = NULL;
Eric Lapuyade81b30392012-07-12 20:27:54 +0200195 struct sk_buff *uid_skb = NULL;
Eric Lapuyade8b8d2e02012-04-10 19:43:06 +0200196 int r;
197
198 pr_debug("from gate %d\n", gate);
199
200 targets = kzalloc(sizeof(struct nfc_target), GFP_KERNEL);
201 if (targets == NULL)
202 return -ENOMEM;
203
204 switch (gate) {
205 case NFC_HCI_RF_READER_A_GATE:
206 r = nfc_hci_get_param(hdev, NFC_HCI_RF_READER_A_GATE,
207 NFC_HCI_RF_READER_A_ATQA, &atqa_skb);
208 if (r < 0)
209 goto exit;
210
211 r = nfc_hci_get_param(hdev, NFC_HCI_RF_READER_A_GATE,
212 NFC_HCI_RF_READER_A_SAK, &sak_skb);
213 if (r < 0)
214 goto exit;
215
216 if (atqa_skb->len != 2 || sak_skb->len != 1) {
217 r = -EPROTO;
218 goto exit;
219 }
220
221 targets->supported_protocols =
222 nfc_hci_sak_to_protocol(sak_skb->data[0]);
223 if (targets->supported_protocols == 0xffffffff) {
224 r = -EPROTO;
225 goto exit;
226 }
227
Christophe Ricard74157ef2014-04-01 00:34:01 +0200228 targets->sens_res = be16_to_cpu(*(__be16 *)atqa_skb->data);
Eric Lapuyade8b8d2e02012-04-10 19:43:06 +0200229 targets->sel_res = sak_skb->data[0];
230
Eric Lapuyade81b30392012-07-12 20:27:54 +0200231 r = nfc_hci_get_param(hdev, NFC_HCI_RF_READER_A_GATE,
232 NFC_HCI_RF_READER_A_UID, &uid_skb);
233 if (r < 0)
234 goto exit;
235
236 if (uid_skb->len == 0 || uid_skb->len > NFC_NFCID1_MAXSIZE) {
237 r = -EPROTO;
238 goto exit;
239 }
240
241 memcpy(targets->nfcid1, uid_skb->data, uid_skb->len);
242 targets->nfcid1_len = uid_skb->len;
243
Eric Lapuyade8b8d2e02012-04-10 19:43:06 +0200244 if (hdev->ops->complete_target_discovered) {
245 r = hdev->ops->complete_target_discovered(hdev, gate,
246 targets);
247 if (r < 0)
248 goto exit;
249 }
250 break;
251 case NFC_HCI_RF_READER_B_GATE:
Samuel Ortiz01d719a2012-07-04 00:14:04 +0200252 targets->supported_protocols = NFC_PROTO_ISO14443_B_MASK;
Eric Lapuyade8b8d2e02012-04-10 19:43:06 +0200253 break;
254 default:
255 if (hdev->ops->target_from_gate)
256 r = hdev->ops->target_from_gate(hdev, gate, targets);
257 else
258 r = -EPROTO;
259 if (r < 0)
260 goto exit;
261
262 if (hdev->ops->complete_target_discovered) {
263 r = hdev->ops->complete_target_discovered(hdev, gate,
264 targets);
265 if (r < 0)
266 goto exit;
267 }
268 break;
269 }
270
Arron Wang928326f2012-09-27 17:32:56 +0800271 /* if driver set the new gate, we will skip the old one */
272 if (targets->hci_reader_gate == 0x00)
273 targets->hci_reader_gate = gate;
Eric Lapuyade8b8d2e02012-04-10 19:43:06 +0200274
275 r = nfc_targets_found(hdev->ndev, targets, 1);
Eric Lapuyade8b8d2e02012-04-10 19:43:06 +0200276
277exit:
278 kfree(targets);
279 kfree_skb(atqa_skb);
280 kfree_skb(sak_skb);
Eric Lapuyade81b30392012-07-12 20:27:54 +0200281 kfree_skb(uid_skb);
Eric Lapuyade8b8d2e02012-04-10 19:43:06 +0200282
283 return r;
284}
Arron Wangf7a5f6c2012-09-27 17:32:55 +0800285EXPORT_SYMBOL(nfc_hci_target_discovered);
Eric Lapuyade8b8d2e02012-04-10 19:43:06 +0200286
287void nfc_hci_event_received(struct nfc_hci_dev *hdev, u8 pipe, u8 event,
288 struct sk_buff *skb)
289{
290 int r = 0;
Eric Lapuyade74a5b962012-10-17 16:49:12 +0200291 u8 gate = nfc_hci_pipe2gate(hdev, pipe);
292
293 if (gate == 0xff) {
294 pr_err("Discarded event %x to unopened pipe %x\n", event, pipe);
295 goto exit;
296 }
Eric Lapuyade8b8d2e02012-04-10 19:43:06 +0200297
Eric Lapuyade40d06d32012-12-04 16:43:24 +0100298 if (hdev->ops->event_received) {
299 r = hdev->ops->event_received(hdev, gate, event, skb);
300 if (r <= 0)
301 goto exit_noskb;
302 }
303
Eric Lapuyade8b8d2e02012-04-10 19:43:06 +0200304 switch (event) {
305 case NFC_HCI_EVT_TARGET_DISCOVERED:
Eric Lapuyade8b8d2e02012-04-10 19:43:06 +0200306 if (skb->len < 1) { /* no status data? */
307 r = -EPROTO;
308 goto exit;
309 }
310
311 if (skb->data[0] == 3) {
312 /* TODO: Multiple targets in field, none activated
313 * poll is supposedly stopped, but there is no
314 * single target to activate, so nothing to report
315 * up.
316 * if we need to restart poll, we must save the
317 * protocols from the initial poll and reuse here.
318 */
319 }
320
321 if (skb->data[0] != 0) {
322 r = -EPROTO;
323 goto exit;
324 }
325
Eric Lapuyade74a5b962012-10-17 16:49:12 +0200326 r = nfc_hci_target_discovered(hdev, gate);
Eric Lapuyade8b8d2e02012-04-10 19:43:06 +0200327 break;
328 default:
Eric Lapuyade40d06d32012-12-04 16:43:24 +0100329 pr_info("Discarded unknown event %x to gate %x\n", event, gate);
330 r = -EINVAL;
Eric Lapuyade8b8d2e02012-04-10 19:43:06 +0200331 break;
332 }
333
334exit:
335 kfree_skb(skb);
336
Eric Lapuyade27c31192012-11-28 15:48:44 +0100337exit_noskb:
Samuel Ortiz249eb5b2013-11-13 01:00:07 +0100338 if (r)
339 nfc_hci_driver_failure(hdev, r);
Eric Lapuyade8b8d2e02012-04-10 19:43:06 +0200340}
341
342static void nfc_hci_cmd_timeout(unsigned long data)
343{
344 struct nfc_hci_dev *hdev = (struct nfc_hci_dev *)data;
345
Linus Torvalds916082b2012-10-02 16:01:31 -0700346 schedule_work(&hdev->msg_tx_work);
Eric Lapuyade8b8d2e02012-04-10 19:43:06 +0200347}
348
349static int hci_dev_connect_gates(struct nfc_hci_dev *hdev, u8 gate_count,
Eric Lapuyadea10d5952012-06-05 14:42:11 +0200350 struct nfc_hci_gate *gates)
Eric Lapuyade8b8d2e02012-04-10 19:43:06 +0200351{
352 int r;
Eric Lapuyade8b8d2e02012-04-10 19:43:06 +0200353 while (gate_count--) {
Eric Lapuyadea10d5952012-06-05 14:42:11 +0200354 r = nfc_hci_connect_gate(hdev, NFC_HCI_HOST_CONTROLLER_ID,
355 gates->gate, gates->pipe);
Eric Lapuyade8b8d2e02012-04-10 19:43:06 +0200356 if (r < 0)
357 return r;
Eric Lapuyadea10d5952012-06-05 14:42:11 +0200358 gates++;
Eric Lapuyade8b8d2e02012-04-10 19:43:06 +0200359 }
360
361 return 0;
362}
363
364static int hci_dev_session_init(struct nfc_hci_dev *hdev)
365{
366 struct sk_buff *skb = NULL;
367 int r;
Eric Lapuyadea10d5952012-06-05 14:42:11 +0200368
369 if (hdev->init_data.gates[0].gate != NFC_HCI_ADMIN_GATE)
370 return -EPROTO;
Eric Lapuyade8b8d2e02012-04-10 19:43:06 +0200371
372 r = nfc_hci_connect_gate(hdev, NFC_HCI_HOST_CONTROLLER_ID,
Eric Lapuyadea10d5952012-06-05 14:42:11 +0200373 hdev->init_data.gates[0].gate,
374 hdev->init_data.gates[0].pipe);
Eric Lapuyade8b8d2e02012-04-10 19:43:06 +0200375 if (r < 0)
376 goto exit;
377
378 r = nfc_hci_get_param(hdev, NFC_HCI_ADMIN_GATE,
379 NFC_HCI_ADMIN_SESSION_IDENTITY, &skb);
380 if (r < 0)
381 goto disconnect_all;
382
Christophe Ricarde240bc32014-03-25 06:51:49 +0100383 if (skb->len && skb->len == strlen(hdev->init_data.session_id) &&
384 (memcmp(hdev->init_data.session_id, skb->data,
385 skb->len) == 0) && hdev->ops->load_session) {
386 /* Restore gate<->pipe table from some proprietary location. */
Eric Lapuyade8b8d2e02012-04-10 19:43:06 +0200387
Christophe Ricarde240bc32014-03-25 06:51:49 +0100388 r = hdev->ops->load_session(hdev);
Eric Lapuyade8b8d2e02012-04-10 19:43:06 +0200389
Christophe Ricarde240bc32014-03-25 06:51:49 +0100390 if (r < 0)
391 goto disconnect_all;
392 } else {
Eric Lapuyade8b8d2e02012-04-10 19:43:06 +0200393
Christophe Ricarde240bc32014-03-25 06:51:49 +0100394 r = nfc_hci_disconnect_all_gates(hdev);
395 if (r < 0)
396 goto exit;
Eric Lapuyade8b8d2e02012-04-10 19:43:06 +0200397
Christophe Ricarde240bc32014-03-25 06:51:49 +0100398 r = hci_dev_connect_gates(hdev, hdev->init_data.gate_count,
399 hdev->init_data.gates);
400 if (r < 0)
401 goto disconnect_all;
402
403 r = nfc_hci_set_param(hdev, NFC_HCI_ADMIN_GATE,
404 NFC_HCI_ADMIN_SESSION_IDENTITY,
405 hdev->init_data.session_id,
406 strlen(hdev->init_data.session_id));
407 }
Eric Lapuyade8b8d2e02012-04-10 19:43:06 +0200408 if (r == 0)
409 goto exit;
410
411disconnect_all:
412 nfc_hci_disconnect_all_gates(hdev);
413
414exit:
Wei Yongjun33e59712012-08-28 21:02:40 +0800415 kfree_skb(skb);
Eric Lapuyade8b8d2e02012-04-10 19:43:06 +0200416
417 return r;
418}
419
420static int hci_dev_version(struct nfc_hci_dev *hdev)
421{
422 int r;
423 struct sk_buff *skb;
424
425 r = nfc_hci_get_param(hdev, NFC_HCI_ID_MGMT_GATE,
426 NFC_HCI_ID_MGMT_VERSION_SW, &skb);
Eric Lapuyade23f7e6d2012-10-17 16:48:21 +0200427 if (r == -EOPNOTSUPP) {
428 pr_info("Software/Hardware info not available\n");
429 return 0;
430 }
Eric Lapuyade8b8d2e02012-04-10 19:43:06 +0200431 if (r < 0)
432 return r;
433
434 if (skb->len != 3) {
435 kfree_skb(skb);
436 return -EINVAL;
437 }
438
439 hdev->sw_romlib = (skb->data[0] & 0xf0) >> 4;
440 hdev->sw_patch = skb->data[0] & 0x0f;
441 hdev->sw_flashlib_major = skb->data[1];
442 hdev->sw_flashlib_minor = skb->data[2];
443
444 kfree_skb(skb);
445
446 r = nfc_hci_get_param(hdev, NFC_HCI_ID_MGMT_GATE,
447 NFC_HCI_ID_MGMT_VERSION_HW, &skb);
448 if (r < 0)
449 return r;
450
451 if (skb->len != 3) {
452 kfree_skb(skb);
453 return -EINVAL;
454 }
455
456 hdev->hw_derivative = (skb->data[0] & 0xe0) >> 5;
457 hdev->hw_version = skb->data[0] & 0x1f;
458 hdev->hw_mpw = (skb->data[1] & 0xc0) >> 6;
459 hdev->hw_software = skb->data[1] & 0x3f;
460 hdev->hw_bsid = skb->data[2];
461
462 kfree_skb(skb);
463
464 pr_info("SOFTWARE INFO:\n");
465 pr_info("RomLib : %d\n", hdev->sw_romlib);
466 pr_info("Patch : %d\n", hdev->sw_patch);
467 pr_info("FlashLib Major : %d\n", hdev->sw_flashlib_major);
468 pr_info("FlashLib Minor : %d\n", hdev->sw_flashlib_minor);
469 pr_info("HARDWARE INFO:\n");
470 pr_info("Derivative : %d\n", hdev->hw_derivative);
471 pr_info("HW Version : %d\n", hdev->hw_version);
472 pr_info("#MPW : %d\n", hdev->hw_mpw);
473 pr_info("Software : %d\n", hdev->hw_software);
474 pr_info("BSID Version : %d\n", hdev->hw_bsid);
475
476 return 0;
477}
478
479static int hci_dev_up(struct nfc_dev *nfc_dev)
480{
481 struct nfc_hci_dev *hdev = nfc_get_drvdata(nfc_dev);
482 int r = 0;
483
484 if (hdev->ops->open) {
485 r = hdev->ops->open(hdev);
486 if (r < 0)
487 return r;
488 }
489
Eric Lapuyade412fda52012-09-18 19:45:48 +0200490 r = nfc_llc_start(hdev->llc);
491 if (r < 0)
492 goto exit_close;
493
Eric Lapuyade8b8d2e02012-04-10 19:43:06 +0200494 r = hci_dev_session_init(hdev);
495 if (r < 0)
Eric Lapuyade412fda52012-09-18 19:45:48 +0200496 goto exit_llc;
Eric Lapuyade8b8d2e02012-04-10 19:43:06 +0200497
498 r = nfc_hci_send_event(hdev, NFC_HCI_RF_READER_A_GATE,
499 NFC_HCI_EVT_END_OPERATION, NULL, 0);
500 if (r < 0)
Eric Lapuyade412fda52012-09-18 19:45:48 +0200501 goto exit_llc;
Eric Lapuyade8b8d2e02012-04-10 19:43:06 +0200502
503 if (hdev->ops->hci_ready) {
504 r = hdev->ops->hci_ready(hdev);
505 if (r < 0)
Eric Lapuyade412fda52012-09-18 19:45:48 +0200506 goto exit_llc;
Eric Lapuyade8b8d2e02012-04-10 19:43:06 +0200507 }
508
509 r = hci_dev_version(hdev);
510 if (r < 0)
Eric Lapuyade412fda52012-09-18 19:45:48 +0200511 goto exit_llc;
Eric Lapuyade8b8d2e02012-04-10 19:43:06 +0200512
Eric Lapuyade412fda52012-09-18 19:45:48 +0200513 return 0;
514
515exit_llc:
516 nfc_llc_stop(hdev->llc);
517
518exit_close:
519 if (hdev->ops->close)
520 hdev->ops->close(hdev);
521
Eric Lapuyade8b8d2e02012-04-10 19:43:06 +0200522 return r;
523}
524
525static int hci_dev_down(struct nfc_dev *nfc_dev)
526{
527 struct nfc_hci_dev *hdev = nfc_get_drvdata(nfc_dev);
528
Eric Lapuyade412fda52012-09-18 19:45:48 +0200529 nfc_llc_stop(hdev->llc);
530
Eric Lapuyade8b8d2e02012-04-10 19:43:06 +0200531 if (hdev->ops->close)
532 hdev->ops->close(hdev);
533
534 memset(hdev->gate2pipe, NFC_HCI_INVALID_PIPE, sizeof(hdev->gate2pipe));
535
536 return 0;
537}
538
Samuel Ortizfe7c5802012-05-15 15:57:06 +0200539static int hci_start_poll(struct nfc_dev *nfc_dev,
540 u32 im_protocols, u32 tm_protocols)
Eric Lapuyade8b8d2e02012-04-10 19:43:06 +0200541{
542 struct nfc_hci_dev *hdev = nfc_get_drvdata(nfc_dev);
Eric Lapuyade8b8d2e02012-04-10 19:43:06 +0200543
544 if (hdev->ops->start_poll)
Samuel Ortizfe7c5802012-05-15 15:57:06 +0200545 return hdev->ops->start_poll(hdev, im_protocols, tm_protocols);
Eric Lapuyade8b8d2e02012-04-10 19:43:06 +0200546 else
Eric Lapuyade03bed292012-05-07 12:31:31 +0200547 return nfc_hci_send_event(hdev, NFC_HCI_RF_READER_A_GATE,
Szymon Janc0f450772012-10-17 15:23:39 +0200548 NFC_HCI_EVT_READER_REQUESTED,
549 NULL, 0);
Eric Lapuyade8b8d2e02012-04-10 19:43:06 +0200550}
551
552static void hci_stop_poll(struct nfc_dev *nfc_dev)
553{
554 struct nfc_hci_dev *hdev = nfc_get_drvdata(nfc_dev);
555
Eric Lapuyade03bed292012-05-07 12:31:31 +0200556 nfc_hci_send_event(hdev, NFC_HCI_RF_READER_A_GATE,
557 NFC_HCI_EVT_END_OPERATION, NULL, 0);
Eric Lapuyade8b8d2e02012-04-10 19:43:06 +0200558}
559
Arron Wangc40d1742012-09-27 17:32:57 +0800560static int hci_dep_link_up(struct nfc_dev *nfc_dev, struct nfc_target *target,
561 __u8 comm_mode, __u8 *gb, size_t gb_len)
562{
563 struct nfc_hci_dev *hdev = nfc_get_drvdata(nfc_dev);
564
Samuel Ortiza3952982013-05-25 01:21:21 +0200565 if (!hdev->ops->dep_link_up)
566 return 0;
Arron Wangc40d1742012-09-27 17:32:57 +0800567
Samuel Ortiza3952982013-05-25 01:21:21 +0200568 return hdev->ops->dep_link_up(hdev, target, comm_mode,
569 gb, gb_len);
Arron Wangc40d1742012-09-27 17:32:57 +0800570}
571
572static int hci_dep_link_down(struct nfc_dev *nfc_dev)
573{
574 struct nfc_hci_dev *hdev = nfc_get_drvdata(nfc_dev);
575
Samuel Ortiza3952982013-05-25 01:21:21 +0200576 if (!hdev->ops->dep_link_down)
577 return 0;
Arron Wangc40d1742012-09-27 17:32:57 +0800578
Samuel Ortiza3952982013-05-25 01:21:21 +0200579 return hdev->ops->dep_link_down(hdev);
Arron Wangc40d1742012-09-27 17:32:57 +0800580}
581
Eric Lapuyade90099432012-05-07 12:31:13 +0200582static int hci_activate_target(struct nfc_dev *nfc_dev,
583 struct nfc_target *target, u32 protocol)
Eric Lapuyade8b8d2e02012-04-10 19:43:06 +0200584{
Eric Lapuyade8b8d2e02012-04-10 19:43:06 +0200585 return 0;
586}
587
Eric Lapuyade90099432012-05-07 12:31:13 +0200588static void hci_deactivate_target(struct nfc_dev *nfc_dev,
589 struct nfc_target *target)
Eric Lapuyade8b8d2e02012-04-10 19:43:06 +0200590{
591}
592
Eric Lapuyadef3e8fb52012-09-11 10:43:50 +0200593#define HCI_CB_TYPE_TRANSCEIVE 1
594
595static void hci_transceive_cb(void *context, struct sk_buff *skb, int err)
596{
597 struct nfc_hci_dev *hdev = context;
598
599 switch (hdev->async_cb_type) {
600 case HCI_CB_TYPE_TRANSCEIVE:
601 /*
602 * TODO: Check RF Error indicator to make sure data is valid.
603 * It seems that HCI cmd can complete without error, but data
604 * can be invalid if an RF error occured? Ignore for now.
605 */
606 if (err == 0)
607 skb_trim(skb, skb->len - 1); /* RF Err ind */
608
609 hdev->async_cb(hdev->async_cb_context, skb, err);
610 break;
611 default:
612 if (err == 0)
613 kfree_skb(skb);
614 break;
615 }
616}
617
Samuel Ortizbe9ae4c2012-05-16 15:55:48 +0200618static int hci_transceive(struct nfc_dev *nfc_dev, struct nfc_target *target,
619 struct sk_buff *skb, data_exchange_cb_t cb,
620 void *cb_context)
Eric Lapuyade8b8d2e02012-04-10 19:43:06 +0200621{
622 struct nfc_hci_dev *hdev = nfc_get_drvdata(nfc_dev);
623 int r;
Eric Lapuyade8b8d2e02012-04-10 19:43:06 +0200624
Eric Lapuyade90099432012-05-07 12:31:13 +0200625 pr_debug("target_idx=%d\n", target->idx);
Eric Lapuyade8b8d2e02012-04-10 19:43:06 +0200626
627 switch (target->hci_reader_gate) {
628 case NFC_HCI_RF_READER_A_GATE:
629 case NFC_HCI_RF_READER_B_GATE:
Arron Wange8107622012-09-27 17:32:58 +0800630 if (hdev->ops->im_transceive) {
631 r = hdev->ops->im_transceive(hdev, target, skb, cb,
Eric Lapuyadef3e8fb52012-09-11 10:43:50 +0200632 cb_context);
Eric Lapuyade8b8d2e02012-04-10 19:43:06 +0200633 if (r <= 0) /* handled */
634 break;
635 }
636
637 *skb_push(skb, 1) = 0; /* CTR, see spec:10.2.2.1 */
Eric Lapuyadef3e8fb52012-09-11 10:43:50 +0200638
639 hdev->async_cb_type = HCI_CB_TYPE_TRANSCEIVE;
640 hdev->async_cb = cb;
641 hdev->async_cb_context = cb_context;
642
643 r = nfc_hci_send_cmd_async(hdev, target->hci_reader_gate,
644 NFC_HCI_WR_XCHG_DATA, skb->data,
645 skb->len, hci_transceive_cb, hdev);
Eric Lapuyade8b8d2e02012-04-10 19:43:06 +0200646 break;
647 default:
Arron Wange8107622012-09-27 17:32:58 +0800648 if (hdev->ops->im_transceive) {
649 r = hdev->ops->im_transceive(hdev, target, skb, cb,
Eric Lapuyadef3e8fb52012-09-11 10:43:50 +0200650 cb_context);
Eric Lapuyade8b8d2e02012-04-10 19:43:06 +0200651 if (r == 1)
652 r = -ENOTSUPP;
Szymon Janc0f450772012-10-17 15:23:39 +0200653 } else {
Eric Lapuyade8b8d2e02012-04-10 19:43:06 +0200654 r = -ENOTSUPP;
Szymon Janc0f450772012-10-17 15:23:39 +0200655 }
Eric Lapuyadef3e8fb52012-09-11 10:43:50 +0200656 break;
Eric Lapuyade8b8d2e02012-04-10 19:43:06 +0200657 }
658
659 kfree_skb(skb);
660
Eric Lapuyadef3e8fb52012-09-11 10:43:50 +0200661 return r;
Eric Lapuyade8b8d2e02012-04-10 19:43:06 +0200662}
663
Arron Wang984d3342012-10-08 14:54:39 +0800664static int hci_tm_send(struct nfc_dev *nfc_dev, struct sk_buff *skb)
Arron Wange8107622012-09-27 17:32:58 +0800665{
666 struct nfc_hci_dev *hdev = nfc_get_drvdata(nfc_dev);
667
Samuel Ortiza3952982013-05-25 01:21:21 +0200668 if (!hdev->ops->tm_send) {
669 kfree_skb(skb);
670 return -ENOTSUPP;
671 }
Eric Lapuyade924d4a02012-12-04 16:44:25 +0100672
Samuel Ortiza3952982013-05-25 01:21:21 +0200673 return hdev->ops->tm_send(hdev, skb);
Arron Wange8107622012-09-27 17:32:58 +0800674}
675
Eric Lapuyade1676f752012-05-07 12:31:16 +0200676static int hci_check_presence(struct nfc_dev *nfc_dev,
677 struct nfc_target *target)
678{
679 struct nfc_hci_dev *hdev = nfc_get_drvdata(nfc_dev);
680
Samuel Ortiza3952982013-05-25 01:21:21 +0200681 if (!hdev->ops->check_presence)
682 return 0;
Eric Lapuyade1676f752012-05-07 12:31:16 +0200683
Samuel Ortiza3952982013-05-25 01:21:21 +0200684 return hdev->ops->check_presence(hdev, target);
Eric Lapuyade1676f752012-05-07 12:31:16 +0200685}
686
Samuel Ortiz0a946302013-05-10 11:57:06 +0200687static int hci_discover_se(struct nfc_dev *nfc_dev)
688{
689 struct nfc_hci_dev *hdev = nfc_get_drvdata(nfc_dev);
690
691 if (hdev->ops->discover_se)
692 return hdev->ops->discover_se(hdev);
693
694 return 0;
695}
696
697static int hci_enable_se(struct nfc_dev *nfc_dev, u32 se_idx)
698{
699 struct nfc_hci_dev *hdev = nfc_get_drvdata(nfc_dev);
700
701 if (hdev->ops->enable_se)
702 return hdev->ops->enable_se(hdev, se_idx);
703
704 return 0;
705}
706
707static int hci_disable_se(struct nfc_dev *nfc_dev, u32 se_idx)
708{
709 struct nfc_hci_dev *hdev = nfc_get_drvdata(nfc_dev);
710
711 if (hdev->ops->disable_se)
Dan Carpenter4eba11e2013-06-18 01:48:26 +0300712 return hdev->ops->disable_se(hdev, se_idx);
Samuel Ortiz0a946302013-05-10 11:57:06 +0200713
714 return 0;
715}
716
Eric Lapuyade72b06f72012-06-11 13:36:52 +0200717static void nfc_hci_failure(struct nfc_hci_dev *hdev, int err)
Eric Lapuyadea9a741a2012-04-30 18:21:51 +0200718{
Eric Lapuyadea070c852012-06-11 15:06:56 +0200719 mutex_lock(&hdev->msg_tx_mutex);
720
721 if (hdev->cmd_pending_msg == NULL) {
722 nfc_driver_failure(hdev->ndev, err);
723 goto exit;
724 }
725
726 __nfc_hci_cmd_completion(hdev, err, NULL);
727
728exit:
729 mutex_unlock(&hdev->msg_tx_mutex);
Eric Lapuyadea9a741a2012-04-30 18:21:51 +0200730}
Eric Lapuyade72b06f72012-06-11 13:36:52 +0200731
Eric Lapuyade412fda52012-09-18 19:45:48 +0200732static void nfc_hci_llc_failure(struct nfc_hci_dev *hdev, int err)
Eric Lapuyade72b06f72012-06-11 13:36:52 +0200733{
734 nfc_hci_failure(hdev, err);
735}
Eric Lapuyadea9a741a2012-04-30 18:21:51 +0200736
Eric Lapuyade412fda52012-09-18 19:45:48 +0200737static void nfc_hci_recv_from_llc(struct nfc_hci_dev *hdev, struct sk_buff *skb)
Eric Lapuyade8b8d2e02012-04-10 19:43:06 +0200738{
739 struct hcp_packet *packet;
740 u8 type;
741 u8 instruction;
742 struct sk_buff *hcp_skb;
743 u8 pipe;
744 struct sk_buff *frag_skb;
745 int msg_len;
746
Eric Lapuyade8b8d2e02012-04-10 19:43:06 +0200747 packet = (struct hcp_packet *)skb->data;
748 if ((packet->header & ~NFC_HCI_FRAGMENT) == 0) {
749 skb_queue_tail(&hdev->rx_hcp_frags, skb);
750 return;
751 }
752
753 /* it's the last fragment. Does it need re-aggregation? */
754 if (skb_queue_len(&hdev->rx_hcp_frags)) {
755 pipe = packet->header & NFC_HCI_FRAGMENT;
756 skb_queue_tail(&hdev->rx_hcp_frags, skb);
757
758 msg_len = 0;
759 skb_queue_walk(&hdev->rx_hcp_frags, frag_skb) {
760 msg_len += (frag_skb->len -
761 NFC_HCI_HCP_PACKET_HEADER_LEN);
762 }
763
764 hcp_skb = nfc_alloc_recv_skb(NFC_HCI_HCP_PACKET_HEADER_LEN +
765 msg_len, GFP_KERNEL);
766 if (hcp_skb == NULL) {
Eric Lapuyade72b06f72012-06-11 13:36:52 +0200767 nfc_hci_failure(hdev, -ENOMEM);
768 return;
Eric Lapuyade8b8d2e02012-04-10 19:43:06 +0200769 }
770
771 *skb_put(hcp_skb, NFC_HCI_HCP_PACKET_HEADER_LEN) = pipe;
772
773 skb_queue_walk(&hdev->rx_hcp_frags, frag_skb) {
774 msg_len = frag_skb->len - NFC_HCI_HCP_PACKET_HEADER_LEN;
775 memcpy(skb_put(hcp_skb, msg_len),
776 frag_skb->data + NFC_HCI_HCP_PACKET_HEADER_LEN,
777 msg_len);
778 }
779
780 skb_queue_purge(&hdev->rx_hcp_frags);
781 } else {
782 packet->header &= NFC_HCI_FRAGMENT;
783 hcp_skb = skb;
784 }
785
786 /* if this is a response, dispatch immediately to
787 * unblock waiting cmd context. Otherwise, enqueue to dispatch
788 * in separate context where handler can also execute command.
789 */
790 packet = (struct hcp_packet *)hcp_skb->data;
791 type = HCP_MSG_GET_TYPE(packet->message.header);
792 if (type == NFC_HCI_HCP_RESPONSE) {
793 pipe = packet->header;
794 instruction = HCP_MSG_GET_CMD(packet->message.header);
795 skb_pull(hcp_skb, NFC_HCI_HCP_PACKET_HEADER_LEN +
796 NFC_HCI_HCP_MESSAGE_HEADER_LEN);
797 nfc_hci_hcp_message_rx(hdev, pipe, type, instruction, hcp_skb);
798 } else {
799 skb_queue_tail(&hdev->msg_rx_queue, hcp_skb);
Linus Torvalds916082b2012-10-02 16:01:31 -0700800 schedule_work(&hdev->msg_rx_work);
Eric Lapuyade8b8d2e02012-04-10 19:43:06 +0200801 }
802}
Eric Lapuyade412fda52012-09-18 19:45:48 +0200803
Samuel Ortiz9ea71872013-07-31 01:19:43 +0200804static int hci_fw_download(struct nfc_dev *nfc_dev, const char *firmware_name)
Eric Lapuyade9a695d22013-04-29 17:47:42 +0200805{
806 struct nfc_hci_dev *hdev = nfc_get_drvdata(nfc_dev);
807
Samuel Ortiz9ea71872013-07-31 01:19:43 +0200808 if (!hdev->ops->fw_download)
Samuel Ortiza3952982013-05-25 01:21:21 +0200809 return -ENOTSUPP;
Eric Lapuyade9a695d22013-04-29 17:47:42 +0200810
Samuel Ortiz9ea71872013-07-31 01:19:43 +0200811 return hdev->ops->fw_download(hdev, firmware_name);
Eric Lapuyade9a695d22013-04-29 17:47:42 +0200812}
813
Eric Lapuyade412fda52012-09-18 19:45:48 +0200814static struct nfc_ops hci_nfc_ops = {
815 .dev_up = hci_dev_up,
816 .dev_down = hci_dev_down,
817 .start_poll = hci_start_poll,
818 .stop_poll = hci_stop_poll,
Arron Wangc40d1742012-09-27 17:32:57 +0800819 .dep_link_up = hci_dep_link_up,
820 .dep_link_down = hci_dep_link_down,
Eric Lapuyade412fda52012-09-18 19:45:48 +0200821 .activate_target = hci_activate_target,
822 .deactivate_target = hci_deactivate_target,
823 .im_transceive = hci_transceive,
Arron Wange8107622012-09-27 17:32:58 +0800824 .tm_send = hci_tm_send,
Eric Lapuyade412fda52012-09-18 19:45:48 +0200825 .check_presence = hci_check_presence,
Samuel Ortiz9ea71872013-07-31 01:19:43 +0200826 .fw_download = hci_fw_download,
Samuel Ortiz0a946302013-05-10 11:57:06 +0200827 .discover_se = hci_discover_se,
828 .enable_se = hci_enable_se,
829 .disable_se = hci_disable_se,
Eric Lapuyade412fda52012-09-18 19:45:48 +0200830};
831
832struct nfc_hci_dev *nfc_hci_allocate_device(struct nfc_hci_ops *ops,
833 struct nfc_hci_init_data *init_data,
Eric Lapuyadebf71ab82012-12-18 14:15:49 +0100834 unsigned long quirks,
Eric Lapuyade412fda52012-09-18 19:45:48 +0200835 u32 protocols,
836 const char *llc_name,
837 int tx_headroom,
838 int tx_tailroom,
839 int max_link_payload)
840{
841 struct nfc_hci_dev *hdev;
842
843 if (ops->xmit == NULL)
844 return NULL;
845
846 if (protocols == 0)
847 return NULL;
848
849 hdev = kzalloc(sizeof(struct nfc_hci_dev), GFP_KERNEL);
850 if (hdev == NULL)
851 return NULL;
852
853 hdev->llc = nfc_llc_allocate(llc_name, hdev, ops->xmit,
854 nfc_hci_recv_from_llc, tx_headroom,
855 tx_tailroom, nfc_hci_llc_failure);
856 if (hdev->llc == NULL) {
857 kfree(hdev);
858 return NULL;
859 }
860
Samuel Ortiz0b456c42013-05-07 19:22:11 +0200861 hdev->ndev = nfc_allocate_device(&hci_nfc_ops, protocols,
Eric Lapuyade412fda52012-09-18 19:45:48 +0200862 tx_headroom + HCI_CMDS_HEADROOM,
863 tx_tailroom);
864 if (!hdev->ndev) {
865 nfc_llc_free(hdev->llc);
866 kfree(hdev);
867 return NULL;
868 }
869
870 hdev->ops = ops;
871 hdev->max_data_link_payload = max_link_payload;
872 hdev->init_data = *init_data;
873
874 nfc_set_drvdata(hdev->ndev, hdev);
875
876 memset(hdev->gate2pipe, NFC_HCI_INVALID_PIPE, sizeof(hdev->gate2pipe));
877
Eric Lapuyadebf71ab82012-12-18 14:15:49 +0100878 hdev->quirks = quirks;
879
Eric Lapuyade412fda52012-09-18 19:45:48 +0200880 return hdev;
881}
882EXPORT_SYMBOL(nfc_hci_allocate_device);
883
884void nfc_hci_free_device(struct nfc_hci_dev *hdev)
885{
886 nfc_free_device(hdev->ndev);
887 nfc_llc_free(hdev->llc);
888 kfree(hdev);
889}
890EXPORT_SYMBOL(nfc_hci_free_device);
891
892int nfc_hci_register_device(struct nfc_hci_dev *hdev)
893{
894 mutex_init(&hdev->msg_tx_mutex);
895
896 INIT_LIST_HEAD(&hdev->msg_tx_queue);
897
898 INIT_WORK(&hdev->msg_tx_work, nfc_hci_msg_tx_work);
899
900 init_timer(&hdev->cmd_timer);
901 hdev->cmd_timer.data = (unsigned long)hdev;
902 hdev->cmd_timer.function = nfc_hci_cmd_timeout;
903
904 skb_queue_head_init(&hdev->rx_hcp_frags);
905
906 INIT_WORK(&hdev->msg_rx_work, nfc_hci_msg_rx_work);
907
908 skb_queue_head_init(&hdev->msg_rx_queue);
909
910 return nfc_register_device(hdev->ndev);
911}
912EXPORT_SYMBOL(nfc_hci_register_device);
913
914void nfc_hci_unregister_device(struct nfc_hci_dev *hdev)
915{
916 struct hci_msg *msg, *n;
917
Eric Lapuyadef0c91032012-11-26 18:06:27 +0100918 mutex_lock(&hdev->msg_tx_mutex);
919
920 if (hdev->cmd_pending_msg) {
921 if (hdev->cmd_pending_msg->cb)
922 hdev->cmd_pending_msg->cb(
923 hdev->cmd_pending_msg->cb_context,
924 NULL, -ESHUTDOWN);
925 kfree(hdev->cmd_pending_msg);
926 hdev->cmd_pending_msg = NULL;
927 }
928
929 hdev->shutting_down = true;
930
931 mutex_unlock(&hdev->msg_tx_mutex);
932
933 del_timer_sync(&hdev->cmd_timer);
934 cancel_work_sync(&hdev->msg_tx_work);
935
936 cancel_work_sync(&hdev->msg_rx_work);
937
938 nfc_unregister_device(hdev->ndev);
939
Eric Lapuyade412fda52012-09-18 19:45:48 +0200940 skb_queue_purge(&hdev->rx_hcp_frags);
941 skb_queue_purge(&hdev->msg_rx_queue);
942
943 list_for_each_entry_safe(msg, n, &hdev->msg_tx_queue, msg_l) {
944 list_del(&msg->msg_l);
945 skb_queue_purge(&msg->msg_frags);
946 kfree(msg);
947 }
Eric Lapuyade412fda52012-09-18 19:45:48 +0200948}
949EXPORT_SYMBOL(nfc_hci_unregister_device);
950
951void nfc_hci_set_clientdata(struct nfc_hci_dev *hdev, void *clientdata)
952{
953 hdev->clientdata = clientdata;
954}
955EXPORT_SYMBOL(nfc_hci_set_clientdata);
956
957void *nfc_hci_get_clientdata(struct nfc_hci_dev *hdev)
958{
959 return hdev->clientdata;
960}
961EXPORT_SYMBOL(nfc_hci_get_clientdata);
962
963void nfc_hci_driver_failure(struct nfc_hci_dev *hdev, int err)
964{
965 nfc_hci_failure(hdev, err);
966}
967EXPORT_SYMBOL(nfc_hci_driver_failure);
968
Szymon Janc0f450772012-10-17 15:23:39 +0200969void nfc_hci_recv_frame(struct nfc_hci_dev *hdev, struct sk_buff *skb)
Eric Lapuyade412fda52012-09-18 19:45:48 +0200970{
971 nfc_llc_rcv_from_drv(hdev->llc, skb);
972}
Eric Lapuyade8b8d2e02012-04-10 19:43:06 +0200973EXPORT_SYMBOL(nfc_hci_recv_frame);
974
Eric Lapuyade67cccfe2012-09-13 17:10:00 +0200975static int __init nfc_hci_init(void)
976{
977 return nfc_llc_init();
978}
979
980static void __exit nfc_hci_exit(void)
981{
982 nfc_llc_exit();
983}
984
Eric Lapuyade412fda52012-09-18 19:45:48 +0200985subsys_initcall(nfc_hci_init);
Eric Lapuyade67cccfe2012-09-13 17:10:00 +0200986module_exit(nfc_hci_exit);
987
Eric Lapuyade8b8d2e02012-04-10 19:43:06 +0200988MODULE_LICENSE("GPL");
Eric Lapuyade80faa592012-09-18 19:25:38 +0200989MODULE_DESCRIPTION("NFC HCI Core");