rsp.c 6.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225
  1. /*
  2. * The NFC Controller Interface is the communication protocol between an
  3. * NFC Controller (NFCC) and a Device Host (DH).
  4. *
  5. * Copyright (C) 2011 Texas Instruments, Inc.
  6. *
  7. * Written by Ilan Elias <ilane@ti.com>
  8. *
  9. * Acknowledgements:
  10. * This file is based on hci_event.c, which was written
  11. * by Maxim Krasnyansky.
  12. *
  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
  16. *
  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.
  21. *
  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
  25. *
  26. */
  27. #define pr_fmt(fmt) KBUILD_MODNAME ": %s: " fmt, __func__
  28. #include <linux/types.h>
  29. #include <linux/interrupt.h>
  30. #include <linux/bitops.h>
  31. #include <linux/skbuff.h>
  32. #include "../nfc.h"
  33. #include <net/nfc/nci.h>
  34. #include <net/nfc/nci_core.h>
  35. /* Handle NCI Response packets */
  36. static void nci_core_reset_rsp_packet(struct nci_dev *ndev, struct sk_buff *skb)
  37. {
  38. struct nci_core_reset_rsp *rsp = (void *) skb->data;
  39. pr_debug("status 0x%x\n", rsp->status);
  40. if (rsp->status == NCI_STATUS_OK) {
  41. ndev->nci_ver = rsp->nci_ver;
  42. pr_debug("nci_ver 0x%x, config_status 0x%x\n",
  43. rsp->nci_ver, rsp->config_status);
  44. }
  45. nci_req_complete(ndev, rsp->status);
  46. }
  47. static void nci_core_init_rsp_packet(struct nci_dev *ndev, struct sk_buff *skb)
  48. {
  49. struct nci_core_init_rsp_1 *rsp_1 = (void *) skb->data;
  50. struct nci_core_init_rsp_2 *rsp_2;
  51. pr_debug("status 0x%x\n", rsp_1->status);
  52. if (rsp_1->status != NCI_STATUS_OK)
  53. goto exit;
  54. ndev->nfcc_features = __le32_to_cpu(rsp_1->nfcc_features);
  55. ndev->num_supported_rf_interfaces = rsp_1->num_supported_rf_interfaces;
  56. if (ndev->num_supported_rf_interfaces >
  57. NCI_MAX_SUPPORTED_RF_INTERFACES) {
  58. ndev->num_supported_rf_interfaces =
  59. NCI_MAX_SUPPORTED_RF_INTERFACES;
  60. }
  61. memcpy(ndev->supported_rf_interfaces,
  62. rsp_1->supported_rf_interfaces,
  63. ndev->num_supported_rf_interfaces);
  64. rsp_2 = (void *) (skb->data + 6 + rsp_1->num_supported_rf_interfaces);
  65. ndev->max_logical_connections = rsp_2->max_logical_connections;
  66. ndev->max_routing_table_size =
  67. __le16_to_cpu(rsp_2->max_routing_table_size);
  68. ndev->max_ctrl_pkt_payload_len =
  69. rsp_2->max_ctrl_pkt_payload_len;
  70. ndev->max_size_for_large_params =
  71. __le16_to_cpu(rsp_2->max_size_for_large_params);
  72. ndev->manufact_id =
  73. rsp_2->manufact_id;
  74. ndev->manufact_specific_info =
  75. __le32_to_cpu(rsp_2->manufact_specific_info);
  76. pr_debug("nfcc_features 0x%x\n",
  77. ndev->nfcc_features);
  78. pr_debug("num_supported_rf_interfaces %d\n",
  79. ndev->num_supported_rf_interfaces);
  80. pr_debug("supported_rf_interfaces[0] 0x%x\n",
  81. ndev->supported_rf_interfaces[0]);
  82. pr_debug("supported_rf_interfaces[1] 0x%x\n",
  83. ndev->supported_rf_interfaces[1]);
  84. pr_debug("supported_rf_interfaces[2] 0x%x\n",
  85. ndev->supported_rf_interfaces[2]);
  86. pr_debug("supported_rf_interfaces[3] 0x%x\n",
  87. ndev->supported_rf_interfaces[3]);
  88. pr_debug("max_logical_connections %d\n",
  89. ndev->max_logical_connections);
  90. pr_debug("max_routing_table_size %d\n",
  91. ndev->max_routing_table_size);
  92. pr_debug("max_ctrl_pkt_payload_len %d\n",
  93. ndev->max_ctrl_pkt_payload_len);
  94. pr_debug("max_size_for_large_params %d\n",
  95. ndev->max_size_for_large_params);
  96. pr_debug("manufact_id 0x%x\n",
  97. ndev->manufact_id);
  98. pr_debug("manufact_specific_info 0x%x\n",
  99. ndev->manufact_specific_info);
  100. exit:
  101. nci_req_complete(ndev, rsp_1->status);
  102. }
  103. static void nci_rf_disc_map_rsp_packet(struct nci_dev *ndev,
  104. struct sk_buff *skb)
  105. {
  106. __u8 status = skb->data[0];
  107. pr_debug("status 0x%x\n", status);
  108. nci_req_complete(ndev, status);
  109. }
  110. static void nci_rf_disc_rsp_packet(struct nci_dev *ndev, struct sk_buff *skb)
  111. {
  112. __u8 status = skb->data[0];
  113. pr_debug("status 0x%x\n", status);
  114. if (status == NCI_STATUS_OK)
  115. atomic_set(&ndev->state, NCI_DISCOVERY);
  116. nci_req_complete(ndev, status);
  117. }
  118. static void nci_rf_disc_select_rsp_packet(struct nci_dev *ndev,
  119. struct sk_buff *skb)
  120. {
  121. __u8 status = skb->data[0];
  122. pr_debug("status 0x%x\n", status);
  123. /* Complete the request on intf_activated_ntf or generic_error_ntf */
  124. if (status != NCI_STATUS_OK)
  125. nci_req_complete(ndev, status);
  126. }
  127. static void nci_rf_deactivate_rsp_packet(struct nci_dev *ndev,
  128. struct sk_buff *skb)
  129. {
  130. __u8 status = skb->data[0];
  131. pr_debug("status 0x%x\n", status);
  132. /* If target was active, complete the request only in deactivate_ntf */
  133. if ((status != NCI_STATUS_OK) ||
  134. (atomic_read(&ndev->state) != NCI_POLL_ACTIVE)) {
  135. nci_clear_target_list(ndev);
  136. atomic_set(&ndev->state, NCI_IDLE);
  137. nci_req_complete(ndev, status);
  138. }
  139. }
  140. void nci_rsp_packet(struct nci_dev *ndev, struct sk_buff *skb)
  141. {
  142. __u16 rsp_opcode = nci_opcode(skb->data);
  143. /* we got a rsp, stop the cmd timer */
  144. del_timer(&ndev->cmd_timer);
  145. pr_debug("NCI RX: MT=rsp, PBF=%d, GID=0x%x, OID=0x%x, plen=%d\n",
  146. nci_pbf(skb->data),
  147. nci_opcode_gid(rsp_opcode),
  148. nci_opcode_oid(rsp_opcode),
  149. nci_plen(skb->data));
  150. /* strip the nci control header */
  151. skb_pull(skb, NCI_CTRL_HDR_SIZE);
  152. switch (rsp_opcode) {
  153. case NCI_OP_CORE_RESET_RSP:
  154. nci_core_reset_rsp_packet(ndev, skb);
  155. break;
  156. case NCI_OP_CORE_INIT_RSP:
  157. nci_core_init_rsp_packet(ndev, skb);
  158. break;
  159. case NCI_OP_RF_DISCOVER_MAP_RSP:
  160. nci_rf_disc_map_rsp_packet(ndev, skb);
  161. break;
  162. case NCI_OP_RF_DISCOVER_RSP:
  163. nci_rf_disc_rsp_packet(ndev, skb);
  164. break;
  165. case NCI_OP_RF_DISCOVER_SELECT_RSP:
  166. nci_rf_disc_select_rsp_packet(ndev, skb);
  167. break;
  168. case NCI_OP_RF_DEACTIVATE_RSP:
  169. nci_rf_deactivate_rsp_packet(ndev, skb);
  170. break;
  171. default:
  172. pr_err("unknown rsp opcode 0x%x\n", rsp_opcode);
  173. break;
  174. }
  175. kfree_skb(skb);
  176. /* trigger the next cmd */
  177. atomic_set(&ndev->cmd_cnt, 1);
  178. if (!skb_queue_empty(&ndev->cmd_q))
  179. queue_work(ndev->cmd_wq, &ndev->cmd_work);
  180. }