2 * Texas Instrument's NFC Driver For Shared Transport.
4 * NFC Driver acts as interface between NCI core and
5 * TI Shared Transport Layer.
7 * Copyright (C) 2011 Texas Instruments, Inc.
9 * Written by Ilan Elias <ilane@ti.com>
12 * This file is based on btwilink.c, which was written
13 * by Raja Mani and Pavan Savoy.
15 * This program is free software; you can redistribute it and/or modify
16 * it under the terms of the GNU General Public License version 2 as
17 * published by the Free Software Foundation.
19 * This program is distributed in the hope that it will be useful,
20 * but WITHOUT ANY WARRANTY; without even the implied warranty of
21 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
22 * GNU General Public License for more details.
24 * You should have received a copy of the GNU General Public License
25 * along with this program; if not, write to the Free Software
26 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
29 #include <linux/platform_device.h>
30 #include <linux/module.h>
31 #include <linux/types.h>
32 #include <linux/firmware.h>
33 #include <linux/nfc.h>
34 #include <net/nfc/nci.h>
35 #include <net/nfc/nci_core.h>
36 #include <linux/ti_wilink_st.h>
38 #define NFCWILINK_CHNL 12
39 #define NFCWILINK_OPCODE 7
40 #define NFCWILINK_MAX_FRAME_SIZE 300
41 #define NFCWILINK_HDR_LEN 4
42 #define NFCWILINK_OFFSET_LEN_IN_HDR 1
43 #define NFCWILINK_LEN_SIZE 2
44 #define NFCWILINK_REGISTER_TIMEOUT 8000 /* 8 sec */
45 #define NFCWILINK_CMD_TIMEOUT 5000 /* 5 sec */
47 #define BTS_FILE_NAME_MAX_SIZE 40
48 #define BTS_FILE_HDR_MAGIC 0x42535442
49 #define BTS_FILE_CMD_MAX_LEN 0xff
50 #define BTS_FILE_ACTION_TYPE_SEND_CMD 1
52 #define NCI_VS_NFCC_INFO_CMD_GID 0x2f
53 #define NCI_VS_NFCC_INFO_CMD_OID 0x12
54 #define NCI_VS_NFCC_INFO_RSP_GID 0x4f
55 #define NCI_VS_NFCC_INFO_RSP_OID 0x12
57 struct nfcwilink_hdr {
63 struct nci_vs_nfcc_info_cmd {
69 struct nci_vs_nfcc_info_rsp {
87 struct bts_file_action {
94 struct platform_device *pdev;
98 char st_register_cb_status;
99 long (*st_write) (struct sk_buff *);
101 struct completion completed;
103 struct nci_vs_nfcc_info_rsp nfcc_info;
106 /* NFCWILINK driver flags */
109 NFCWILINK_FW_DOWNLOAD,
112 static int nfcwilink_send(struct nci_dev *ndev, struct sk_buff *skb);
114 static inline struct sk_buff *nfcwilink_skb_alloc(unsigned int len, gfp_t how)
118 skb = alloc_skb(len + NFCWILINK_HDR_LEN, how);
120 skb_reserve(skb, NFCWILINK_HDR_LEN);
125 static void nfcwilink_fw_download_receive(struct nfcwilink *drv,
128 struct nci_vs_nfcc_info_rsp *rsp = (void *)skb->data;
130 /* Detect NCI_VS_NFCC_INFO_RSP and store the result */
131 if ((skb->len > 3) && (rsp->gid == NCI_VS_NFCC_INFO_RSP_GID) &&
132 (rsp->oid == NCI_VS_NFCC_INFO_RSP_OID)) {
133 memcpy(&drv->nfcc_info, rsp,
134 sizeof(struct nci_vs_nfcc_info_rsp));
139 complete(&drv->completed);
142 static int nfcwilink_get_bts_file_name(struct nfcwilink *drv, char *file_name)
144 struct nci_vs_nfcc_info_cmd *cmd;
146 unsigned long comp_ret;
149 nfc_dev_dbg(&drv->pdev->dev, "get_bts_file_name entry");
151 skb = nfcwilink_skb_alloc(sizeof(struct nci_vs_nfcc_info_cmd),
154 nfc_dev_err(&drv->pdev->dev,
155 "no memory for nci_vs_nfcc_info_cmd");
159 cmd = (struct nci_vs_nfcc_info_cmd *)
160 skb_put(skb, sizeof(struct nci_vs_nfcc_info_cmd));
161 cmd->gid = NCI_VS_NFCC_INFO_CMD_GID;
162 cmd->oid = NCI_VS_NFCC_INFO_CMD_OID;
165 drv->nfcc_info.plen = 0;
167 rc = nfcwilink_send(drv->ndev, skb);
171 comp_ret = wait_for_completion_timeout(&drv->completed,
172 msecs_to_jiffies(NFCWILINK_CMD_TIMEOUT));
173 nfc_dev_dbg(&drv->pdev->dev, "wait_for_completion_timeout returned %ld",
176 nfc_dev_err(&drv->pdev->dev,
177 "timeout on wait_for_completion_timeout");
181 nfc_dev_dbg(&drv->pdev->dev, "nci_vs_nfcc_info_rsp: plen %d, status %d",
183 drv->nfcc_info.status);
185 if ((drv->nfcc_info.plen != 5) || (drv->nfcc_info.status != 0)) {
186 nfc_dev_err(&drv->pdev->dev,
187 "invalid nci_vs_nfcc_info_rsp");
191 snprintf(file_name, BTS_FILE_NAME_MAX_SIZE,
192 "TINfcInit_%d.%d.%d.%d.bts",
193 drv->nfcc_info.hw_id,
194 drv->nfcc_info.sw_ver_x,
195 drv->nfcc_info.sw_ver_z,
196 drv->nfcc_info.patch_id);
198 nfc_dev_info(&drv->pdev->dev, "nfcwilink FW file name: %s", file_name);
203 static int nfcwilink_send_bts_cmd(struct nfcwilink *drv, __u8 *data, int len)
205 struct nfcwilink_hdr *hdr = (struct nfcwilink_hdr *)data;
207 unsigned long comp_ret;
210 nfc_dev_dbg(&drv->pdev->dev, "send_bts_cmd entry");
212 /* verify valid cmd for the NFC channel */
213 if ((len <= sizeof(struct nfcwilink_hdr)) ||
214 (len > BTS_FILE_CMD_MAX_LEN) ||
215 (hdr->chnl != NFCWILINK_CHNL) ||
216 (hdr->opcode != NFCWILINK_OPCODE)) {
217 nfc_dev_err(&drv->pdev->dev,
218 "ignoring invalid bts cmd, len %d, chnl %d, opcode %d",
219 len, hdr->chnl, hdr->opcode);
223 /* remove the ST header */
224 len -= sizeof(struct nfcwilink_hdr);
225 data += sizeof(struct nfcwilink_hdr);
227 skb = nfcwilink_skb_alloc(len, GFP_KERNEL);
229 nfc_dev_err(&drv->pdev->dev, "no memory for bts cmd");
233 memcpy(skb_put(skb, len), data, len);
235 rc = nfcwilink_send(drv->ndev, skb);
239 comp_ret = wait_for_completion_timeout(&drv->completed,
240 msecs_to_jiffies(NFCWILINK_CMD_TIMEOUT));
241 nfc_dev_dbg(&drv->pdev->dev, "wait_for_completion_timeout returned %ld",
244 nfc_dev_err(&drv->pdev->dev,
245 "timeout on wait_for_completion_timeout");
252 static int nfcwilink_download_fw(struct nfcwilink *drv)
254 unsigned char file_name[BTS_FILE_NAME_MAX_SIZE];
255 const struct firmware *fw;
256 __u16 action_type, action_len;
260 nfc_dev_dbg(&drv->pdev->dev, "download_fw entry");
262 set_bit(NFCWILINK_FW_DOWNLOAD, &drv->flags);
264 rc = nfcwilink_get_bts_file_name(drv, file_name);
268 rc = request_firmware(&fw, file_name, &drv->pdev->dev);
270 nfc_dev_err(&drv->pdev->dev, "request_firmware failed %d", rc);
272 /* if the file is not found, don't exit with failure */
280 ptr = (__u8 *)fw->data;
282 if ((len == 0) || (ptr == NULL)) {
283 nfc_dev_dbg(&drv->pdev->dev,
284 "request_firmware returned size %d", len);
288 if (__le32_to_cpu(((struct bts_file_hdr *)ptr)->magic) !=
289 BTS_FILE_HDR_MAGIC) {
290 nfc_dev_err(&drv->pdev->dev, "wrong bts magic number");
295 /* remove the BTS header */
296 len -= sizeof(struct bts_file_hdr);
297 ptr += sizeof(struct bts_file_hdr);
301 __le16_to_cpu(((struct bts_file_action *)ptr)->type);
303 __le16_to_cpu(((struct bts_file_action *)ptr)->len);
305 nfc_dev_dbg(&drv->pdev->dev, "bts_file_action type %d, len %d",
306 action_type, action_len);
308 switch (action_type) {
309 case BTS_FILE_ACTION_TYPE_SEND_CMD:
310 rc = nfcwilink_send_bts_cmd(drv,
311 ((struct bts_file_action *)ptr)->data,
318 /* advance to the next action */
319 len -= (sizeof(struct bts_file_action) + action_len);
320 ptr += (sizeof(struct bts_file_action) + action_len);
324 release_firmware(fw);
327 clear_bit(NFCWILINK_FW_DOWNLOAD, &drv->flags);
331 /* Called by ST when registration is complete */
332 static void nfcwilink_register_complete(void *priv_data, char data)
334 struct nfcwilink *drv = priv_data;
336 nfc_dev_dbg(&drv->pdev->dev, "register_complete entry");
338 /* store ST registration status */
339 drv->st_register_cb_status = data;
341 /* complete the wait in nfc_st_open() */
342 complete(&drv->completed);
345 /* Called by ST when receive data is available */
346 static long nfcwilink_receive(void *priv_data, struct sk_buff *skb)
348 struct nfcwilink *drv = priv_data;
359 nfc_dev_dbg(&drv->pdev->dev, "receive entry, len %d", skb->len);
361 /* strip the ST header
362 (apart for the chnl byte, which is not received in the hdr) */
363 skb_pull(skb, (NFCWILINK_HDR_LEN-1));
365 if (test_bit(NFCWILINK_FW_DOWNLOAD, &drv->flags)) {
366 nfcwilink_fw_download_receive(drv, skb);
370 /* Forward skb to NCI core layer */
371 rc = nci_recv_frame(drv->ndev, skb);
373 nfc_dev_err(&drv->pdev->dev, "nci_recv_frame failed %d", rc);
380 /* protocol structure registered with ST */
381 static struct st_proto_s nfcwilink_proto = {
382 .chnl_id = NFCWILINK_CHNL,
383 .max_frame_size = NFCWILINK_MAX_FRAME_SIZE,
384 .hdr_len = (NFCWILINK_HDR_LEN-1), /* not including chnl byte */
385 .offset_len_in_hdr = NFCWILINK_OFFSET_LEN_IN_HDR,
386 .len_size = NFCWILINK_LEN_SIZE,
388 .recv = nfcwilink_receive,
389 .reg_complete_cb = nfcwilink_register_complete,
393 static int nfcwilink_open(struct nci_dev *ndev)
395 struct nfcwilink *drv = nci_get_drvdata(ndev);
396 unsigned long comp_ret;
399 nfc_dev_dbg(&drv->pdev->dev, "open entry");
401 if (test_and_set_bit(NFCWILINK_RUNNING, &drv->flags)) {
406 nfcwilink_proto.priv_data = drv;
408 init_completion(&drv->completed);
409 drv->st_register_cb_status = -EINPROGRESS;
411 rc = st_register(&nfcwilink_proto);
413 if (rc == -EINPROGRESS) {
414 comp_ret = wait_for_completion_timeout(
416 msecs_to_jiffies(NFCWILINK_REGISTER_TIMEOUT));
418 nfc_dev_dbg(&drv->pdev->dev,
419 "wait_for_completion_timeout returned %ld",
426 } else if (drv->st_register_cb_status != 0) {
427 rc = drv->st_register_cb_status;
428 nfc_dev_err(&drv->pdev->dev,
429 "st_register_cb failed %d", rc);
433 nfc_dev_err(&drv->pdev->dev,
434 "st_register failed %d", rc);
439 /* st_register MUST fill the write callback */
440 BUG_ON(nfcwilink_proto.write == NULL);
441 drv->st_write = nfcwilink_proto.write;
443 if (nfcwilink_download_fw(drv)) {
444 nfc_dev_err(&drv->pdev->dev, "nfcwilink_download_fw failed %d",
446 /* open should succeed, even if the FW download failed */
452 clear_bit(NFCWILINK_RUNNING, &drv->flags);
458 static int nfcwilink_close(struct nci_dev *ndev)
460 struct nfcwilink *drv = nci_get_drvdata(ndev);
463 nfc_dev_dbg(&drv->pdev->dev, "close entry");
465 if (!test_and_clear_bit(NFCWILINK_RUNNING, &drv->flags))
468 rc = st_unregister(&nfcwilink_proto);
470 nfc_dev_err(&drv->pdev->dev, "st_unregister failed %d", rc);
472 drv->st_write = NULL;
477 static int nfcwilink_send(struct nci_dev *ndev, struct sk_buff *skb)
479 struct nfcwilink *drv = nci_get_drvdata(ndev);
480 struct nfcwilink_hdr hdr = {NFCWILINK_CHNL, NFCWILINK_OPCODE, 0x0000};
483 nfc_dev_dbg(&drv->pdev->dev, "send entry, len %d", skb->len);
485 if (!test_bit(NFCWILINK_RUNNING, &drv->flags)) {
490 /* add the ST hdr to the start of the buffer */
491 hdr.len = cpu_to_le16(skb->len);
492 memcpy(skb_push(skb, NFCWILINK_HDR_LEN), &hdr, NFCWILINK_HDR_LEN);
494 /* Insert skb to shared transport layer's transmit queue.
495 * Freeing skb memory is taken care in shared transport layer,
496 * so don't free skb memory here.
498 len = drv->st_write(skb);
501 nfc_dev_err(&drv->pdev->dev, "st_write failed %ld", len);
508 static struct nci_ops nfcwilink_ops = {
509 .open = nfcwilink_open,
510 .close = nfcwilink_close,
511 .send = nfcwilink_send,
514 static int nfcwilink_probe(struct platform_device *pdev)
516 static struct nfcwilink *drv;
520 nfc_dev_dbg(&pdev->dev, "probe entry");
522 drv = devm_kzalloc(&pdev->dev, sizeof(struct nfcwilink), GFP_KERNEL);
530 protocols = NFC_PROTO_JEWEL_MASK
531 | NFC_PROTO_MIFARE_MASK | NFC_PROTO_FELICA_MASK
532 | NFC_PROTO_ISO14443_MASK
533 | NFC_PROTO_ISO14443_B_MASK
534 | NFC_PROTO_NFC_DEP_MASK;
536 drv->ndev = nci_allocate_device(&nfcwilink_ops,
541 nfc_dev_err(&pdev->dev, "nci_allocate_device failed");
546 nci_set_parent_dev(drv->ndev, &pdev->dev);
547 nci_set_drvdata(drv->ndev, drv);
549 rc = nci_register_device(drv->ndev);
551 nfc_dev_err(&pdev->dev, "nci_register_device failed %d", rc);
555 dev_set_drvdata(&pdev->dev, drv);
560 nci_free_device(drv->ndev);
566 static int nfcwilink_remove(struct platform_device *pdev)
568 struct nfcwilink *drv = dev_get_drvdata(&pdev->dev);
569 struct nci_dev *ndev;
571 nfc_dev_dbg(&pdev->dev, "remove entry");
578 nci_unregister_device(ndev);
579 nci_free_device(ndev);
581 dev_set_drvdata(&pdev->dev, NULL);
586 static struct platform_driver nfcwilink_driver = {
587 .probe = nfcwilink_probe,
588 .remove = nfcwilink_remove,
591 .owner = THIS_MODULE,
595 module_platform_driver(nfcwilink_driver);
597 /* ------ Module Info ------ */
599 MODULE_AUTHOR("Ilan Elias <ilane@ti.com>");
600 MODULE_DESCRIPTION("NFC Driver for TI Shared Transport");
601 MODULE_LICENSE("GPL");